commit 59e2aa084a8087c3c9b9c866f20c77ab68c7708e Author: Zi Xing Date: Tue Dec 21 11:05:08 2021 -0500 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d163863 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ \ No newline at end of file diff --git a/.ppm_package b/.ppm_package new file mode 100644 index 0000000..3ed09ab --- /dev/null +++ b/.ppm_package @@ -0,0 +1 @@ +assets/ \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..35181bb --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +clean: + rm -rf build + +build: + mkdir build + ppm --no-intro --compile="assets" --directory="build" + +update: + ppm --generate-package="assets" + +install: + ppm --no-intro --no-prompt --fix-conflict --install="build/net.intellivoid.accounts_template.ppm" + +install_fast: + ppm --no-intro --no-prompt --fix-conflict --skip-dependencies --install="build/net.intellivoid.accounts_template" \ No newline at end of file diff --git a/assets/css/animate.css b/assets/css/animate.css new file mode 100644 index 0000000..d26682f --- /dev/null +++ b/assets/css/animate.css @@ -0,0 +1,3625 @@ +@charset "UTF-8"; + +/*! + * animate.css -https://daneden.github.io/animate.css/ + * Version - 3.7.2 + * Licensed under the MIT license - http://opensource.org/licenses/MIT + * + * Copyright (c) 2019 Daniel Eden + */ + +@-webkit-keyframes bounce { + from, + 20%, + 53%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 40%, + 43% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); + } + + 70% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0); + } + + 90% { + -webkit-transform: translate3d(0, -4px, 0); + transform: translate3d(0, -4px, 0); + } +} + +@keyframes bounce { + from, + 20%, + 53%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 40%, + 43% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); + } + + 70% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0); + } + + 90% { + -webkit-transform: translate3d(0, -4px, 0); + transform: translate3d(0, -4px, 0); + } +} + +.bounce { + -webkit-animation-name: bounce; + animation-name: bounce; + -webkit-transform-origin: center bottom; + transform-origin: center bottom; +} + +@-webkit-keyframes flash { + from, + 50%, + to { + opacity: 1; + } + + 25%, + 75% { + opacity: 0; + } +} + +@keyframes flash { + from, + 50%, + to { + opacity: 1; + } + + 25%, + 75% { + opacity: 0; + } +} + +.flash { + -webkit-animation-name: flash; + animation-name: flash; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes pulse { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes pulse { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.pulse { + -webkit-animation-name: pulse; + animation-name: pulse; +} + +@-webkit-keyframes rubberBand { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 30% { + -webkit-transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + -webkit-transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + -webkit-transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + -webkit-transform: scale3d(0.95, 1.05, 1); + transform: scale3d(0.95, 1.05, 1); + } + + 75% { + -webkit-transform: scale3d(1.05, 0.95, 1); + transform: scale3d(1.05, 0.95, 1); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes rubberBand { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 30% { + -webkit-transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + -webkit-transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + -webkit-transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + -webkit-transform: scale3d(0.95, 1.05, 1); + transform: scale3d(0.95, 1.05, 1); + } + + 75% { + -webkit-transform: scale3d(1.05, 0.95, 1); + transform: scale3d(1.05, 0.95, 1); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.rubberBand { + -webkit-animation-name: rubberBand; + animation-name: rubberBand; +} + +@-webkit-keyframes shake { + from, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 10%, + 30%, + 50%, + 70%, + 90% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 20%, + 40%, + 60%, + 80% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } +} + +@keyframes shake { + from, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 10%, + 30%, + 50%, + 70%, + 90% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 20%, + 40%, + 60%, + 80% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } +} + +.shake { + -webkit-animation-name: shake; + animation-name: shake; +} + +@-webkit-keyframes headShake { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + } + + 6.5% { + -webkit-transform: translateX(-6px) rotateY(-9deg); + transform: translateX(-6px) rotateY(-9deg); + } + + 18.5% { + -webkit-transform: translateX(5px) rotateY(7deg); + transform: translateX(5px) rotateY(7deg); + } + + 31.5% { + -webkit-transform: translateX(-3px) rotateY(-5deg); + transform: translateX(-3px) rotateY(-5deg); + } + + 43.5% { + -webkit-transform: translateX(2px) rotateY(3deg); + transform: translateX(2px) rotateY(3deg); + } + + 50% { + -webkit-transform: translateX(0); + transform: translateX(0); + } +} + +@keyframes headShake { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + } + + 6.5% { + -webkit-transform: translateX(-6px) rotateY(-9deg); + transform: translateX(-6px) rotateY(-9deg); + } + + 18.5% { + -webkit-transform: translateX(5px) rotateY(7deg); + transform: translateX(5px) rotateY(7deg); + } + + 31.5% { + -webkit-transform: translateX(-3px) rotateY(-5deg); + transform: translateX(-3px) rotateY(-5deg); + } + + 43.5% { + -webkit-transform: translateX(2px) rotateY(3deg); + transform: translateX(2px) rotateY(3deg); + } + + 50% { + -webkit-transform: translateX(0); + transform: translateX(0); + } +} + +.headShake { + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + -webkit-animation-name: headShake; + animation-name: headShake; +} + +@-webkit-keyframes swing { + 20% { + -webkit-transform: rotate3d(0, 0, 1, 15deg); + transform: rotate3d(0, 0, 1, 15deg); + } + + 40% { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); + } + + 60% { + -webkit-transform: rotate3d(0, 0, 1, 5deg); + transform: rotate3d(0, 0, 1, 5deg); + } + + 80% { + -webkit-transform: rotate3d(0, 0, 1, -5deg); + transform: rotate3d(0, 0, 1, -5deg); + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); + } +} + +@keyframes swing { + 20% { + -webkit-transform: rotate3d(0, 0, 1, 15deg); + transform: rotate3d(0, 0, 1, 15deg); + } + + 40% { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); + } + + 60% { + -webkit-transform: rotate3d(0, 0, 1, 5deg); + transform: rotate3d(0, 0, 1, 5deg); + } + + 80% { + -webkit-transform: rotate3d(0, 0, 1, -5deg); + transform: rotate3d(0, 0, 1, -5deg); + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); + } +} + +.swing { + -webkit-transform-origin: top center; + transform-origin: top center; + -webkit-animation-name: swing; + animation-name: swing; +} + +@-webkit-keyframes tada { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 10%, + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + } + + 30%, + 50%, + 70%, + 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + } + + 40%, + 60%, + 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes tada { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 10%, + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + } + + 30%, + 50%, + 70%, + 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + } + + 40%, + 60%, + 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.tada { + -webkit-animation-name: tada; + animation-name: tada; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes wobble { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes wobble { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.wobble { + -webkit-animation-name: wobble; + animation-name: wobble; +} + +@-webkit-keyframes jello { + from, + 11.1%, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 22.2% { + -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); + transform: skewX(-12.5deg) skewY(-12.5deg); + } + + 33.3% { + -webkit-transform: skewX(6.25deg) skewY(6.25deg); + transform: skewX(6.25deg) skewY(6.25deg); + } + + 44.4% { + -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); + transform: skewX(-3.125deg) skewY(-3.125deg); + } + + 55.5% { + -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); + transform: skewX(1.5625deg) skewY(1.5625deg); + } + + 66.6% { + -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); + transform: skewX(-0.78125deg) skewY(-0.78125deg); + } + + 77.7% { + -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); + transform: skewX(0.390625deg) skewY(0.390625deg); + } + + 88.8% { + -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + } +} + +@keyframes jello { + from, + 11.1%, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 22.2% { + -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); + transform: skewX(-12.5deg) skewY(-12.5deg); + } + + 33.3% { + -webkit-transform: skewX(6.25deg) skewY(6.25deg); + transform: skewX(6.25deg) skewY(6.25deg); + } + + 44.4% { + -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); + transform: skewX(-3.125deg) skewY(-3.125deg); + } + + 55.5% { + -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); + transform: skewX(1.5625deg) skewY(1.5625deg); + } + + 66.6% { + -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); + transform: skewX(-0.78125deg) skewY(-0.78125deg); + } + + 77.7% { + -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); + transform: skewX(0.390625deg) skewY(0.390625deg); + } + + 88.8% { + -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + } +} + +.jello { + -webkit-animation-name: jello; + animation-name: jello; + -webkit-transform-origin: center; + transform-origin: center; +} + +@-webkit-keyframes heartBeat { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + + 14% { + -webkit-transform: scale(1.3); + transform: scale(1.3); + } + + 28% { + -webkit-transform: scale(1); + transform: scale(1); + } + + 42% { + -webkit-transform: scale(1.3); + transform: scale(1.3); + } + + 70% { + -webkit-transform: scale(1); + transform: scale(1); + } +} + +@keyframes heartBeat { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + + 14% { + -webkit-transform: scale(1.3); + transform: scale(1.3); + } + + 28% { + -webkit-transform: scale(1); + transform: scale(1); + } + + 42% { + -webkit-transform: scale(1.3); + transform: scale(1.3); + } + + 70% { + -webkit-transform: scale(1); + transform: scale(1); + } +} + +.heartBeat { + -webkit-animation-name: heartBeat; + animation-name: heartBeat; + -webkit-animation-duration: 1.3s; + animation-duration: 1.3s; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; +} + +@-webkit-keyframes bounceIn { + from, + 20%, + 40%, + 60%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + 40% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03); + } + + 80% { + -webkit-transform: scale3d(0.97, 0.97, 0.97); + transform: scale3d(0.97, 0.97, 0.97); + } + + to { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes bounceIn { + from, + 20%, + 40%, + 60%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + 40% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03); + } + + 80% { + -webkit-transform: scale3d(0.97, 0.97, 0.97); + transform: scale3d(0.97, 0.97, 0.97); + } + + to { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.bounceIn { + -webkit-animation-duration: 0.75s; + animation-duration: 0.75s; + -webkit-animation-name: bounceIn; + animation-name: bounceIn; +} + +@-webkit-keyframes bounceInDown { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0); + transform: translate3d(0, 25px, 0); + } + + 75% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 90% { + -webkit-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes bounceInDown { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0); + transform: translate3d(0, 25px, 0); + } + + 75% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 90% { + -webkit-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.bounceInDown { + -webkit-animation-name: bounceInDown; + animation-name: bounceInDown; +} + +@-webkit-keyframes bounceInLeft { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0); + transform: translate3d(25px, 0, 0); + } + + 75% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 90% { + -webkit-transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes bounceInLeft { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0); + transform: translate3d(25px, 0, 0); + } + + 75% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 90% { + -webkit-transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.bounceInLeft { + -webkit-animation-name: bounceInLeft; + animation-name: bounceInLeft; +} + +@-webkit-keyframes bounceInRight { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + from { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0); + transform: translate3d(-25px, 0, 0); + } + + 75% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } + + 90% { + -webkit-transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes bounceInRight { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + from { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0); + transform: translate3d(-25px, 0, 0); + } + + 75% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } + + 90% { + -webkit-transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.bounceInRight { + -webkit-animation-name: bounceInRight; + animation-name: bounceInRight; +} + +@-webkit-keyframes bounceInUp { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + from { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + 75% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 90% { + -webkit-transform: translate3d(0, -5px, 0); + transform: translate3d(0, -5px, 0); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes bounceInUp { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + from { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + 75% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 90% { + -webkit-transform: translate3d(0, -5px, 0); + transform: translate3d(0, -5px, 0); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.bounceInUp { + -webkit-animation-name: bounceInUp; + animation-name: bounceInUp; +} + +@-webkit-keyframes bounceOut { + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); + } + + 50%, + 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } +} + +@keyframes bounceOut { + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); + } + + 50%, + 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } +} + +.bounceOut { + -webkit-animation-duration: 0.75s; + animation-duration: 0.75s; + -webkit-animation-name: bounceOut; + animation-name: bounceOut; +} + +@-webkit-keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +@keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +.bounceOutDown { + -webkit-animation-name: bounceOutDown; + animation-name: bounceOutDown; +} + +@-webkit-keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +@keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +.bounceOutLeft { + -webkit-animation-name: bounceOutLeft; + animation-name: bounceOutLeft; +} + +@-webkit-keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +@keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +.bounceOutRight { + -webkit-animation-name: bounceOutRight; + animation-name: bounceOutRight; +} + +@-webkit-keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +@keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +.bounceOutUp { + -webkit-animation-name: bounceOutUp; + animation-name: bounceOutUp; +} + +@-webkit-keyframes fadeIn { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} + +@keyframes fadeIn { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} + +.fadeIn { + -webkit-animation-name: fadeIn; + animation-name: fadeIn; +} + +@-webkit-keyframes fadeInDown { + from { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInDown { + from { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInDown { + -webkit-animation-name: fadeInDown; + animation-name: fadeInDown; +} + +@-webkit-keyframes fadeInDownBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInDownBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInDownBig { + -webkit-animation-name: fadeInDownBig; + animation-name: fadeInDownBig; +} + +@-webkit-keyframes fadeInLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInLeft { + -webkit-animation-name: fadeInLeft; + animation-name: fadeInLeft; +} + +@-webkit-keyframes fadeInLeftBig { + from { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInLeftBig { + from { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInLeftBig { + -webkit-animation-name: fadeInLeftBig; + animation-name: fadeInLeftBig; +} + +@-webkit-keyframes fadeInRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInRight { + -webkit-animation-name: fadeInRight; + animation-name: fadeInRight; +} + +@-webkit-keyframes fadeInRightBig { + from { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInRightBig { + from { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInRightBig { + -webkit-animation-name: fadeInRightBig; + animation-name: fadeInRightBig; +} + +@-webkit-keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInUp { + -webkit-animation-name: fadeInUp; + animation-name: fadeInUp; +} + +@-webkit-keyframes fadeInUpBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInUpBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInUpBig { + -webkit-animation-name: fadeInUpBig; + animation-name: fadeInUpBig; +} + +@-webkit-keyframes fadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + } +} + +@keyframes fadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + } +} + +.fadeOut { + -webkit-animation-name: fadeOut; + animation-name: fadeOut; +} + +@-webkit-keyframes fadeOutDown { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +@keyframes fadeOutDown { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +.fadeOutDown { + -webkit-animation-name: fadeOutDown; + animation-name: fadeOutDown; +} + +@-webkit-keyframes fadeOutDownBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +@keyframes fadeOutDownBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +.fadeOutDownBig { + -webkit-animation-name: fadeOutDownBig; + animation-name: fadeOutDownBig; +} + +@-webkit-keyframes fadeOutLeft { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +@keyframes fadeOutLeft { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +.fadeOutLeft { + -webkit-animation-name: fadeOutLeft; + animation-name: fadeOutLeft; +} + +@-webkit-keyframes fadeOutLeftBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +@keyframes fadeOutLeftBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +.fadeOutLeftBig { + -webkit-animation-name: fadeOutLeftBig; + animation-name: fadeOutLeftBig; +} + +@-webkit-keyframes fadeOutRight { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +@keyframes fadeOutRight { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +.fadeOutRight { + -webkit-animation-name: fadeOutRight; + animation-name: fadeOutRight; +} + +@-webkit-keyframes fadeOutRightBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +@keyframes fadeOutRightBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +.fadeOutRightBig { + -webkit-animation-name: fadeOutRightBig; + animation-name: fadeOutRightBig; +} + +@-webkit-keyframes fadeOutUp { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +@keyframes fadeOutUp { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +.fadeOutUp { + -webkit-animation-name: fadeOutUp; + animation-name: fadeOutUp; +} + +@-webkit-keyframes fadeOutUpBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +@keyframes fadeOutUpBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +.fadeOutUpBig { + -webkit-animation-name: fadeOutUpBig; + animation-name: fadeOutUpBig; +} + +@-webkit-keyframes flip { + from { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) + rotate3d(0, 1, 0, -360deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 40% { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -190deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 50% { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -170deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 80% { + -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + to { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} + +@keyframes flip { + from { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) + rotate3d(0, 1, 0, -360deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 40% { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -190deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 50% { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -170deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 80% { + -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + to { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} + +.animated.flip { + -webkit-backface-visibility: visible; + backface-visibility: visible; + -webkit-animation-name: flip; + animation-name: flip; +} + +@-webkit-keyframes flipInX { + from { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +@keyframes flipInX { + from { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +.flipInX { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInX; + animation-name: flipInX; +} + +@-webkit-keyframes flipInY { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +@keyframes flipInY { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +.flipInY { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInY; + animation-name: flipInY; +} + +@-webkit-keyframes flipOutX { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; + } +} + +@keyframes flipOutX { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; + } +} + +.flipOutX { + -webkit-animation-duration: 0.75s; + animation-duration: 0.75s; + -webkit-animation-name: flipOutX; + animation-name: flipOutX; + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; +} + +@-webkit-keyframes flipOutY { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; + } +} + +@keyframes flipOutY { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; + } +} + +.flipOutY { + -webkit-animation-duration: 0.75s; + animation-duration: 0.75s; + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipOutY; + animation-name: flipOutY; +} + +@-webkit-keyframes lightSpeedIn { + from { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; + } + + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1; + } + + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes lightSpeedIn { + from { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; + } + + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1; + } + + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.lightSpeedIn { + -webkit-animation-name: lightSpeedIn; + animation-name: lightSpeedIn; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; +} + +@-webkit-keyframes lightSpeedOut { + from { + opacity: 1; + } + + to { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; + } +} + +@keyframes lightSpeedOut { + from { + opacity: 1; + } + + to { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; + } +} + +.lightSpeedOut { + -webkit-animation-name: lightSpeedOut; + animation-name: lightSpeedOut; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; +} + +@-webkit-keyframes rotateIn { + from { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, -200deg); + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; + } + + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +@keyframes rotateIn { + from { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, -200deg); + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; + } + + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +.rotateIn { + -webkit-animation-name: rotateIn; + animation-name: rotateIn; +} + +@-webkit-keyframes rotateInDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +@keyframes rotateInDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +.rotateInDownLeft { + -webkit-animation-name: rotateInDownLeft; + animation-name: rotateInDownLeft; +} + +@-webkit-keyframes rotateInDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +@keyframes rotateInDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +.rotateInDownRight { + -webkit-animation-name: rotateInDownRight; + animation-name: rotateInDownRight; +} + +@-webkit-keyframes rotateInUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +@keyframes rotateInUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +.rotateInUpLeft { + -webkit-animation-name: rotateInUpLeft; + animation-name: rotateInUpLeft; +} + +@-webkit-keyframes rotateInUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -90deg); + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +@keyframes rotateInUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -90deg); + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +.rotateInUpRight { + -webkit-animation-name: rotateInUpRight; + animation-name: rotateInUpRight; +} + +@-webkit-keyframes rotateOut { + from { + -webkit-transform-origin: center; + transform-origin: center; + opacity: 1; + } + + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, 200deg); + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; + } +} + +@keyframes rotateOut { + from { + -webkit-transform-origin: center; + transform-origin: center; + opacity: 1; + } + + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, 200deg); + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; + } +} + +.rotateOut { + -webkit-animation-name: rotateOut; + animation-name: rotateOut; +} + +@-webkit-keyframes rotateOutDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } +} + +@keyframes rotateOutDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } +} + +.rotateOutDownLeft { + -webkit-animation-name: rotateOutDownLeft; + animation-name: rotateOutDownLeft; +} + +@-webkit-keyframes rotateOutDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +@keyframes rotateOutDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +.rotateOutDownRight { + -webkit-animation-name: rotateOutDownRight; + animation-name: rotateOutDownRight; +} + +@-webkit-keyframes rotateOutUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +@keyframes rotateOutUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +.rotateOutUpLeft { + -webkit-animation-name: rotateOutUpLeft; + animation-name: rotateOutUpLeft; +} + +@-webkit-keyframes rotateOutUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 90deg); + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; + } +} + +@keyframes rotateOutUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 90deg); + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; + } +} + +.rotateOutUpRight { + -webkit-animation-name: rotateOutUpRight; + animation-name: rotateOutUpRight; +} + +@-webkit-keyframes hinge { + 0% { + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 20%, + 60% { + -webkit-transform: rotate3d(0, 0, 1, 80deg); + transform: rotate3d(0, 0, 1, 80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 40%, + 80% { + -webkit-transform: rotate3d(0, 0, 1, 60deg); + transform: rotate3d(0, 0, 1, 60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; + } + + to { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0; + } +} + +@keyframes hinge { + 0% { + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 20%, + 60% { + -webkit-transform: rotate3d(0, 0, 1, 80deg); + transform: rotate3d(0, 0, 1, 80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 40%, + 80% { + -webkit-transform: rotate3d(0, 0, 1, 60deg); + transform: rotate3d(0, 0, 1, 60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; + } + + to { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0; + } +} + +.hinge { + -webkit-animation-duration: 2s; + animation-duration: 2s; + -webkit-animation-name: hinge; + animation-name: hinge; +} + +@-webkit-keyframes jackInTheBox { + from { + opacity: 0; + -webkit-transform: scale(0.1) rotate(30deg); + transform: scale(0.1) rotate(30deg); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + } + + 50% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg); + } + + 70% { + -webkit-transform: rotate(3deg); + transform: rotate(3deg); + } + + to { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } +} + +@keyframes jackInTheBox { + from { + opacity: 0; + -webkit-transform: scale(0.1) rotate(30deg); + transform: scale(0.1) rotate(30deg); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + } + + 50% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg); + } + + 70% { + -webkit-transform: rotate(3deg); + transform: rotate(3deg); + } + + to { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } +} + +.jackInTheBox { + -webkit-animation-name: jackInTheBox; + animation-name: jackInTheBox; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes rollIn { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes rollIn { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.rollIn { + -webkit-animation-name: rollIn; + animation-name: rollIn; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes rollOut { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + } +} + +@keyframes rollOut { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + } +} + +.rollOut { + -webkit-animation-name: rollOut; + animation-name: rollOut; +} + +@-webkit-keyframes zoomIn { + from { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + 50% { + opacity: 1; + } +} + +@keyframes zoomIn { + from { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + 50% { + opacity: 1; + } +} + +.zoomIn { + -webkit-animation-name: zoomIn; + animation-name: zoomIn; +} + +@-webkit-keyframes zoomInDown { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +@keyframes zoomInDown { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +.zoomInDown { + -webkit-animation-name: zoomInDown; + animation-name: zoomInDown; +} + +@-webkit-keyframes zoomInLeft { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +@keyframes zoomInLeft { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +.zoomInLeft { + -webkit-animation-name: zoomInLeft; + animation-name: zoomInLeft; +} + +@-webkit-keyframes zoomInRight { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +@keyframes zoomInRight { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +.zoomInRight { + -webkit-animation-name: zoomInRight; + animation-name: zoomInRight; +} + +@-webkit-keyframes zoomInUp { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +@keyframes zoomInUp { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +.zoomInUp { + -webkit-animation-name: zoomInUp; + animation-name: zoomInUp; +} + +@-webkit-keyframes zoomOut { + from { + opacity: 1; + } + + 50% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + to { + opacity: 0; + } +} + +@keyframes zoomOut { + from { + opacity: 1; + } + + 50% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + to { + opacity: 0; + } +} + +.zoomOut { + -webkit-animation-name: zoomOut; + animation-name: zoomOut; +} + +@-webkit-keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +@keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +.zoomOutDown { + -webkit-animation-name: zoomOutDown; + animation-name: zoomOutDown; +} + +@-webkit-keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); + transform: scale(0.1) translate3d(-2000px, 0, 0); + -webkit-transform-origin: left center; + transform-origin: left center; + } +} + +@keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); + transform: scale(0.1) translate3d(-2000px, 0, 0); + -webkit-transform-origin: left center; + transform-origin: left center; + } +} + +.zoomOutLeft { + -webkit-animation-name: zoomOutLeft; + animation-name: zoomOutLeft; +} + +@-webkit-keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); + transform: scale(0.1) translate3d(2000px, 0, 0); + -webkit-transform-origin: right center; + transform-origin: right center; + } +} + +@keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); + transform: scale(0.1) translate3d(2000px, 0, 0); + -webkit-transform-origin: right center; + transform-origin: right center; + } +} + +.zoomOutRight { + -webkit-animation-name: zoomOutRight; + animation-name: zoomOutRight; +} + +@-webkit-keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +@keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +.zoomOutUp { + -webkit-animation-name: zoomOutUp; + animation-name: zoomOutUp; +} + +@-webkit-keyframes slideInDown { + from { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInDown { + from { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInDown { + -webkit-animation-name: slideInDown; + animation-name: slideInDown; +} + +@-webkit-keyframes slideInLeft { + from { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInLeft { + from { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInLeft { + -webkit-animation-name: slideInLeft; + animation-name: slideInLeft; +} + +@-webkit-keyframes slideInRight { + from { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInRight { + from { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInRight { + -webkit-animation-name: slideInRight; + animation-name: slideInRight; +} + +@-webkit-keyframes slideInUp { + from { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInUp { + from { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInUp { + -webkit-animation-name: slideInUp; + animation-name: slideInUp; +} + +@-webkit-keyframes slideOutDown { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +@keyframes slideOutDown { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +.slideOutDown { + -webkit-animation-name: slideOutDown; + animation-name: slideOutDown; +} + +@-webkit-keyframes slideOutLeft { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +@keyframes slideOutLeft { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +.slideOutLeft { + -webkit-animation-name: slideOutLeft; + animation-name: slideOutLeft; +} + +@-webkit-keyframes slideOutRight { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +@keyframes slideOutRight { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +.slideOutRight { + -webkit-animation-name: slideOutRight; + animation-name: slideOutRight; +} + +@-webkit-keyframes slideOutUp { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +@keyframes slideOutUp { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +.slideOutUp { + -webkit-animation-name: slideOutUp; + animation-name: slideOutUp; +} + +.animated { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} + +.animated.infinite { + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; +} + +.animated.delay-1s { + -webkit-animation-delay: 1s; + animation-delay: 1s; +} + +.animated.delay-2s { + -webkit-animation-delay: 2s; + animation-delay: 2s; +} + +.animated.delay-3s { + -webkit-animation-delay: 3s; + animation-delay: 3s; +} + +.animated.delay-4s { + -webkit-animation-delay: 4s; + animation-delay: 4s; +} + +.animated.delay-5s { + -webkit-animation-delay: 5s; + animation-delay: 5s; +} + +.animated.fast { + -webkit-animation-duration: 800ms; + animation-duration: 800ms; +} + +.animated.faster { + -webkit-animation-duration: 500ms; + animation-duration: 500ms; +} + +.animated.slow { + -webkit-animation-duration: 2s; + animation-duration: 2s; +} + +.animated.slower { + -webkit-animation-duration: 3s; + animation-duration: 3s; +} + +@media (print), (prefers-reduced-motion: reduce) { + .animated { + -webkit-animation-duration: 1ms !important; + animation-duration: 1ms !important; + -webkit-transition-duration: 1ms !important; + transition-duration: 1ms !important; + -webkit-animation-iteration-count: 1 !important; + animation-iteration-count: 1 !important; + } +} diff --git a/assets/css/bootstrap-extended.css b/assets/css/bootstrap-extended.css new file mode 100644 index 0000000..1d000e4 --- /dev/null +++ b/assets/css/bootstrap-extended.css @@ -0,0 +1,2587 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +a:focus { + outline: none; } + +.font-small-1 { + font-size: 0.7rem !important; } + +.font-small-2 { + font-size: 0.8rem !important; } + +.font-small-3 { + font-size: 0.9rem !important; } + +.font-medium-1 { + font-size: 1.1rem !important; } + +.font-medium-2 { + font-size: 1.2rem !important; } + +.font-medium-3 { + font-size: 1.3rem !important; } + +.font-medium-4 { + font-size: 1.4rem !important; } + +.font-medium-5 { + font-size: 1.5rem !important; } + +.font-large-1 { + font-size: 2rem !important; } + +.font-large-2 { + font-size: 3rem !important; } + +.font-large-3 { + font-size: 4rem !important; } + +.font-large-4 { + font-size: 5rem !important; } + +.font-large-5 { + font-size: 6rem !important; } + +.text-bold-300 { + font-weight: 300; } + +.text-bold-400 { + font-weight: 400; } + +.text-bold-500 { + font-weight: 500; } + +.text-bold-600 { + font-weight: 600; } + +.text-bold-700 { + font-weight: 700; } + +.text-italic { + font-style: italic; } + +.text-highlight { + padding: 4px 6px; } + +code { + padding: .1rem .4rem; + font-size: 90%; + color: #e83e8c; + background-color: #eee; + border-radius: 0.25rem; } + +pre { + background-color: #f7f7f9; } + pre code { + background-color: transparent !important; } + +.bd-example-row .row + .row { + margin-top: 1rem; } + +.bd-example-row .row > .col, +.bd-example-row .row > [class^="col-"] { + padding-top: .75rem; + padding-bottom: .75rem; + background-color: rgba(86, 61, 124, 0.15); + border: 1px solid rgba(86, 61, 124, 0.2); } + +.bd-example-row .flex-items-top, +.bd-example-row .flex-items-middle, +.bd-example-row .flex-items-bottom { + min-height: 6rem; + background-color: rgba(255, 0, 0, 0.1); } + +.bd-example-row-flex-cols .row { + min-height: 10rem; + background-color: rgba(255, 0, 0, 0.1); } + +.bd-highlight { + background-color: rgba(86, 61, 124, 0.15); + border: 1px solid rgba(86, 61, 124, 0.15); } + +.example-container { + width: 800px; + width: 100%; + padding-right: 14px; + padding-left: 14px; + margin-right: auto; + margin-left: auto; } + +.example-row { + display: flex; + flex-wrap: wrap; + margin-right: -14px; + margin-left: -14px; } + +.example-content-main { + position: relative; + width: 100%; + padding-right: 14px; + padding-left: 14px; } + @media (min-width: 576px) { + .example-content-main { + flex: 0 0 50%; + max-width: 50%; } } + @media (min-width: 992px) { + .example-content-main { + flex: 0 0 66.66667%; + max-width: 66.66667%; } } + +.example-content-secondary { + position: relative; + width: 100%; + padding-right: 14px; + padding-left: 14px; } + @media (min-width: 576px) { + .example-content-secondary { + flex: 0 0 50%; + max-width: 50%; } } + @media (min-width: 992px) { + .example-content-secondary { + flex: 0 0 33.33333%; + max-width: 33.33333%; } } + +.table-white-space th, +.table-white-space td { + white-space: nowrap; } + +.table thead th { + vertical-align: top; } + +.table th, +.table td { + padding: 1rem; + vertical-align: middle; } + +.table th { + font-size: 0.85rem; } + +.table-inverse { + color: #fff; + background-color: #00cfe8; } + +.table-hover-animation { + background-color: #f8f8f8; } + .table-hover-animation thead th { + border-top: 2px solid #f8f8f8; + border-bottom: 0; + background-color: #fff; } + .table-hover-animation th, + .table-hover-animation td { + border: 0; } + .table-hover-animation tbody tr { + transition: all 0.25s ease; + background-color: #fff; } + .table-hover-animation tbody tr:hover { + transform: translateY(-4px); } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .table-hover-animation tr:hover { + border-bottom-color: #f8f8f8; } } + +.form-control::placeholder { + font-size: 0.85rem; + color: rgba(34, 41, 47, 0.4); + transition: all .2s ease; } + +.form-control:-ms-input-placeholder { + color: #c5c5c5; } + +.form-control:focus::placeholder { + transform: translate(5px); + transition: all .2s ease; } + +.form-control:focus ~ .form-control-position i { + color: #3a50dc; } + +/* Form specific Scss */ +label { + color: #464646; + font-size: 0.85rem; + margin-bottom: 0; + padding-left: 0.2rem; } + +textarea.form-control { + line-height: 1.6rem; + font-size: 1rem; } + +.form-group { + margin-bottom: 1.5rem; } + +.form-control { + border: 1px solid #d9d9d9; + color: #5f5f5f; } + +.form-section { + color: #b8c2cc; + line-height: 3rem; + margin-bottom: 20px; + border-bottom: 1px solid #b8c2cc; } + .form-section i { + font-size: 20px; + margin-left: 5px; + margin-right: 10px; } + +/* .form-body{ + overflow: hidden; +} */ +.form-actions { + border-top: 1px solid #dfdfdf; + padding: 20px 0; + margin-top: 20px; } + .form-actions.filled { + background-color: #f8f8f8; } + .form-actions.center { + text-align: center; } + .form-actions.right { + text-align: right; } + .form-actions.top { + border-top: 0; + border-bottom: 1px solid #dfdfdf; + margin-top: 0; + margin-bottom: 20px; } + @media (max-width: 767.98px) { + .form-actions .buttons-group { + float: left !important; + margin-bottom: 10px; } } + +@media (min-width: 576px) { + .form-horizontal .form-group .label-control { + text-align: right; } } + +.form-control.form-control-lg { + padding: 1rem; } + .form-control.form-control-lg::placeholder { + font-size: 1.25rem; } + +.form-control.form-control-sm { + padding: 0.6rem; } + .form-control.form-control-sm::placeholder { + font-size: 0.7rem; } + +.custom-file-label { + padding: 0.375rem 0.75rem; } + .custom-file-label::after { + padding: 0.375rem 0.75rem; + height: auto; } + +select.form-control:not([multiple="multiple"]) { + background-image: url("/assets/images/arrow-down.png"); + background-position: calc(100% - 12px) 13px, calc(100% - 20px) 13px, 100% 0; + background-size: 12px 12px, 10px 10px; + background-repeat: no-repeat; + -webkit-appearance: none; + -moz-appearance: none; + padding-right: 1.5rem; } + +.custom-select { + -moz-appearance: none; + -webkit-appearance: none; } + +.input-group-addon { + background-color: #ECEFF1; + border-color: #BABFC7; } + +.custom-control-label::before, .custom-control-label::after { + width: 1.143rem; + height: 1.143rem; + top: 0.08rem; } + +.custom-control-input:not(:disabled):active ~ .custom-control-label::before { + background-color: #3a50dc; + border-color: #3a50dc; } + +/* Floating label Group */ +.form-label-group { + position: relative; + margin-bottom: 1.5rem; } + .form-label-group .form-control-lg ~ label { + font-size: 1.25rem; + padding: 1rem; } + .form-label-group .form-control-sm ~ label { + font-size: 0.7rem; } + .form-label-group > label { + position: absolute; + top: 0; + left: 0; + display: block; + transition: all .25s ease-in-out; + padding: .6rem; + pointer-events: none; + cursor: text; + color: rgba(34, 41, 47, 0.4); + font-size: .85rem; + opacity: 0; } + .form-label-group > input, .form-label-group textarea { + padding: .6rem; } + .form-label-group > input:focus:not(:placeholder-shown) ~ label, .form-label-group > input:not(:active):not(:placeholder-shown) ~ label, .form-label-group textarea:focus:not(:placeholder-shown) ~ label, .form-label-group textarea:not(:active):not(:placeholder-shown) ~ label { + color: #3a50dc !important; + transition: all .25s ease-in-out; + opacity: 1; } + .form-label-group > input:not(:focus):not(:placeholder-shown) ~ label, .form-label-group textarea:not(:focus):not(:placeholder-shown) ~ label { + color: rgba(34, 41, 47, 0.4) !important; } + .form-label-group > input:not(:placeholder-shown) ~ label, .form-label-group textarea:not(:placeholder-shown) ~ label { + padding: .25rem 0; + font-size: .7rem; + top: -20px; + left: 3px; } + .form-label-group.has-icon-left > label { + left: 36px; } + +/* Vuexy Custom Checkbox */ +.vs-checkbox-con { + position: relative; + display: flex; + align-items: center; + justify-content: flex-start; + margin: .25rem 0; } + .vs-checkbox-con input { + position: absolute; + width: 100%; + height: 100%; + opacity: 0; + z-index: 200; + cursor: pointer; + top: 0; } + .vs-checkbox-con input:checked ~ .vs-checkbox { + transform: rotate(0deg); + border-color: #3a50dc; } + .vs-checkbox-con input:checked ~ .vs-checkbox .vs-checkbox--check { + transform: translate(0); + background-color: #3a50dc; } + .vs-checkbox-con input:checked ~ .vs-checkbox .vs-checkbox--check .vs-icon { + transform: translate(0); + line-height: 1.2; + opacity: 1; } + .vs-checkbox-con input:checked ~ .vs-checkbox.vs-checkbox-sm .vs-checkbox--check .vs-icon { + font-size: 0.75rem; } + .vs-checkbox-con input:checked ~ .vs-checkbox.vs-checkbox-lg .vs-checkbox--check .vs-icon { + font-size: 1.2rem; } + .vs-checkbox-con input:active:checked + .vs-checkbox .vs-checkbox--check { + transform: translate(3px); + background-color: #3a50dc; } + .vs-checkbox-con input:active:checked + .vs-checkbox .vs-checkbox--check .vs-icon { + opacity: 1; + transform: translate(6px); } + .vs-checkbox-con input:disabled { + cursor: default; + pointer-events: none; } + .vs-checkbox-con input:disabled + .vs-checkbox { + cursor: default; + opacity: .5; } + .vs-checkbox-con .vs-checkbox { + cursor: pointer; + position: relative; + width: 20px; + height: 20px; + border-width: 2px; + border-style: solid; + border-color: #b8c2cc; + border-radius: 2px; + transform: rotate(-90deg); + transition: all .2s ease; + overflow: hidden; + margin-right: .5rem; } + .vs-checkbox-con .vs-checkbox.vs-checkbox-sm { + width: 15px; + height: 15px; } + .vs-checkbox-con .vs-checkbox.vs-checkbox-lg { + width: 24px; + height: 24px; } + .vs-checkbox-con .vs-checkbox .vs-checkbox--check { + width: 100%; + height: 100%; + position: absolute; + left: 0; + transform: translate(100%); + transform-origin: right; + transition: all .2s ease; + z-index: 10; } + .vs-checkbox-con .vs-checkbox .vs-checkbox--check .vs-icon { + display: flex; + justify-content: center; + align-items: center; + color: #fff; } + +/* Vuexy Custom Radio */ +.vs-radio-con { + position: relative; + display: flex; + align-items: center; + justify-content: flex-start; + margin: .25rem 0; } + .vs-radio-con input { + position: absolute; + width: 100%; + height: 100%; + opacity: 0; + z-index: 200; + cursor: pointer; } + .vs-radio-con input:checked ~ .vs-radio { + transform: rotate(0deg); + outline: 0; } + .vs-radio-con input:checked ~ .vs-radio .vs-radio--circle { + background: #3a50dc; + box-shadow: 0 3px 12px 0 rgba(115, 103, 240, 0.4); + opacity: 1; + transform: scale(1); } + .vs-radio-con input:checked ~ .vs-radio .vs-radio--border { + opacity: 0; + transform: scale(0.3); } + .vs-radio-con input:disabled { + cursor: default; + pointer-events: none; } + .vs-radio-con input:disabled + .vs-radio { + cursor: default; + opacity: .5; } + .vs-radio-con input:active ~ .vs-radio { + transform: scale(1.1); } + .vs-radio-con .vs-radio { + cursor: pointer; + position: relative; + width: 18px; + height: 18px; + transition: all .2s ease; + margin-right: .5rem; } + .vs-radio-con .vs-radio.vs-radio-sm { + width: 13px; + height: 13px; } + .vs-radio-con .vs-radio.vs-radio-lg { + width: 22px; + height: 22px; } + .vs-radio-con .vs-radio .vs-radio--border, .vs-radio-con .vs-radio .vs-radio--circle { + width: 100%; + height: 100%; + position: absolute; + left: 0; + transition: all .25s ease; + top: 0; + border-radius: 50%; } + .vs-radio-con .vs-radio .vs-radio--border { + background: transparent; + border: 2px solid #b8c2cc; } + .vs-radio-con .vs-radio .vs-radio--circle { + opacity: 0; + transform: scale(0.1); } + +/* Switches */ +.custom-switch { + padding-left: 0; + /*For Switch label*/ + /*For Switch Handle Animation*/ } + .custom-switch .custom-control-label { + height: 1.571rem; + width: 3.1rem; + padding: 0; + /* For bg color of switch*/ + /*For Switch handle*/ + /*For Switch text*/ } + .custom-switch .custom-control-label::before { + border: none; + background-color: #e2e2e2; + height: 1.571rem; + left: -.2857rem; + box-shadow: none !important; + transition: all .25s ease; + cursor: pointer; + user-select: none; + top: 0; + left: 0; } + .custom-switch .custom-control-label:after { + position: absolute; + top: 2px; + left: 2px; + box-shadow: none; + background-color: #fff; + transition: all .25s ease; + cursor: pointer; + user-select: none; } + .custom-switch .custom-control-label .switch-text-left, .custom-switch .custom-control-label .switch-text-right, + .custom-switch .custom-control-label .switch-icon-left, .custom-switch .custom-control-label .switch-icon-right { + position: absolute; + top: 5px; + font-size: .7rem; + cursor: pointer; + user-select: none; } + .custom-switch .custom-control-label .switch-text-left, .custom-switch .custom-control-label .switch-icon-left { + left: 7px; + color: #fff; } + .custom-switch .custom-control-label .switch-text-right, .custom-switch .custom-control-label .switch-icon-right { + right: 7px; } + .custom-switch .custom-control-label:focus { + outline: 0; } + .custom-switch .switch-label { + padding-left: 1rem; } + .custom-switch .custom-control-input:checked ~ .custom-control-label::before { + box-shadow: none; } + .custom-switch .custom-control-input:checked ~ .custom-control-label::after { + transform: translateX(1.4rem); } + .custom-switch .custom-control-input:not(:checked) ~ .custom-control-label .switch-text-left { + opacity: 0; } + .custom-switch .custom-control-input:not(:checked) ~ .custom-control-label .switch-text-right { + opacity: 1; } + .custom-switch .custom-control-input:checked ~ .custom-control-label .switch-text-right { + opacity: 0; } + .custom-switch .custom-control-input:checked ~ .custom-control-label .switch-text-left { + opacity: 1; } + .custom-switch .custom-control-input:not(:disabled):active ~ .custom-control-label::before { + background-color: #e2e2e2; } + .custom-switch.switch-md .custom-control-label { + width: 4rem; + height: 1.571rem; } + .custom-switch.switch-md .custom-control-label::before { + width: 4rem; + border: none; + background-color: #e2e2e2; + height: 1.571rem; + left: -.2857rem; + box-shadow: none !important; + transition: all .25s ease; + cursor: pointer; + user-select: none; } + .custom-switch.switch-md .custom-control-label:after { + box-shadow: none; + background-color: #fff; + transition: all .25s ease; + cursor: pointer; + user-select: none; + position: absolute; + top: 2px; + left: -2px; } + .custom-switch.switch-md .custom-control-label .switch-text-right, .custom-switch.switch-md .custom-control-label .switch-icon-right { + right: 9px; } + .custom-switch.switch-md .custom-control-label .switch-text-left, .custom-switch.switch-md .custom-control-label .switch-icon-left { + left: 5px; } + .custom-switch.switch-md .custom-control-input:checked ~ .custom-control-label::after { + transform: translateX(2.3rem); } + .custom-switch.switch-lg .custom-control-label { + width: 5.5rem; + height: 1.571rem; } + .custom-switch.switch-lg .custom-control-label::before { + width: 5.5rem; + border: none; + background-color: #e2e2e2; + height: 1.571rem; + left: -.2857rem; + box-shadow: none !important; + transition: all .25s ease; + cursor: pointer; + user-select: none; } + .custom-switch.switch-lg .custom-control-label:after { + position: absolute; + top: 2px; + left: -2px; + box-shadow: none; + background-color: #fff; + transition: all .25s ease; + cursor: pointer; + user-select: none; } + .custom-switch.switch-lg .custom-control-label .switch-text-right, .custom-switch.switch-lg .custom-control-label .switch-icon-right { + right: 10px; } + .custom-switch.switch-lg .custom-control-input:checked ~ .custom-control-label::after { + transform: translateX(3.8rem); } + +/* Textarea with Counter */ +.counter-value { + background-color: #3a50dc; + color: #fff; + padding: 1px 6px; + font-size: .6rem; + border-radius: 0 0 5px 5px; + margin-right: 1rem; } + +/* Input box with icon divider */ +.form-group.input-divider-left .form-control-position i { + padding: 0.2rem 0.5rem; + border-right: 1px solid #d9d9d9; } + +.form-group.input-divider-right .form-control-position i { + padding: 0.2rem 0.5rem; + border-left: 1px solid #d9d9d9; } + +/* input-groups-lg and input-groups-sm */ +.input-group-lg .form-control, .input-group-sm .form-control { + padding: 0.7rem; } + +/* Bootstrap touchspin */ +.bootstrap-touchspin.input-group { + width: 8.4rem; + align-items: center; } + .bootstrap-touchspin.input-group .form-control { + padding: 5px; + height: auto; + border: 0; + background-color: #f8f8f8; + border-radius: 5px !important; + text-align: center; + font-weight: 500; } + .bootstrap-touchspin.input-group .form-control:focus { + z-index: 1; + box-shadow: none; } + +.bootstrap-touchspin .bootstrap-touchspin-injected { + margin: 0 !important; } + .bootstrap-touchspin .bootstrap-touchspin-injected .bootstrap-touchspin-down, .bootstrap-touchspin .bootstrap-touchspin-injected .bootstrap-touchspin-up { + padding: 0; + min-width: 22px; + min-height: 22px; + border-radius: 5px !important; + position: relative; } + .bootstrap-touchspin .bootstrap-touchspin-injected .bootstrap-touchspin-down i, .bootstrap-touchspin .bootstrap-touchspin-injected .bootstrap-touchspin-up i { + font-size: 0.8rem; + position: relative; + top: -1px; } + .bootstrap-touchspin .bootstrap-touchspin-injected .bootstrap-touchspin-down { + left: 12px; } + .bootstrap-touchspin .bootstrap-touchspin-injected .bootstrap-touchspin-up { + right: 12px; } + +.bootstrap-touchspin.disabled-touchspin .bootstrap-touchspin-down, .bootstrap-touchspin.disabled-touchspin .bootstrap-touchspin-up { + background-color: rgba(0, 0, 0, 0.5) !important; + cursor: default; + opacity: .5; } + +.bootstrap-touchspin.input-group-lg { + width: 9.375rem; } + .bootstrap-touchspin.input-group-lg .touchspin.form-control { + height: auto !important; } + .bootstrap-touchspin.input-group-lg .bootstrap-touchspin-down i, .bootstrap-touchspin.input-group-lg .bootstrap-touchspin-up i { + font-size: 1rem; } + +.bootstrap-touchspin.input-group-sm { + width: 6.25rem; } + .bootstrap-touchspin.input-group-sm .touchspin.form-control { + height: auto !important; } + .bootstrap-touchspin.input-group-sm .bootstrap-touchspin-injected .bootstrap-touchspin-down, .bootstrap-touchspin.input-group-sm .bootstrap-touchspin-injected .bootstrap-touchspin-up { + min-width: 16px; + min-height: 16px; + padding-top: 2.2px; } + .bootstrap-touchspin.input-group-sm .bootstrap-touchspin-injected .bootstrap-touchspin-down i, .bootstrap-touchspin.input-group-sm .bootstrap-touchspin-injected .bootstrap-touchspin-up i { + font-size: 0.6rem; } + +.btn.disabled-max-min { + background-color: rgba(0, 0, 0, 0.5) !important; + cursor: default; } + +/* Number Type Input Box Scss for - Remove arrow on hover */ +input[type=number]::-webkit-inner-spin-button, +input[type=number]::-webkit-outer-spin-button { + -webkit-appearance: none; } + +/* Number Type Input Box Scss for Touchspin - Remove arrow for firefox */ +.bootstrap-touchspin.input-group input[type=number] { + -moz-appearance: textfield; } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .form-label-group label { + display: none; } + select.form-control:not([multiple="multiple"]) { + background: none; } + .custom-file-label::after { + padding: 1.34rem 0.7rem 1.25rem; } } + +.picker__input.form-control { + background-color: #fff; } + +.input-group .form-control { + height: auto; } + +.input-group .input-group-prepend .dropdown-toggle::after, .input-group .input-group-append .dropdown-toggle::after { + left: 0; } + +.input-group .input-group-prepend .vs-checkbox-con, .input-group .input-group-prepend .vs-checkbox, .input-group .input-group-prepend .vs-radio-con, .input-group .input-group-prepend .vs-radio, .input-group .input-group-append .vs-checkbox-con, .input-group .input-group-append .vs-checkbox, .input-group .input-group-append .vs-radio-con, .input-group .input-group-append .vs-radio { + margin: 0; } + +.input-group.input-group-lg .form-control::placeholder { + font-size: 1.25rem; } + +.input-group.input-group-lg .input-group-prepend .btn, .input-group.input-group-lg .input-group-append .btn { + line-height: 1.3; + font-size: 1.3rem; } + +.input-group.input-group-sm .form-control::placeholder { + font-size: 0.7rem; } + +.btn:disabled { + cursor: default; } + +.btn.btn-white { + color: #626262; } + .btn.btn-white:hover, .btn.btn-white:focus, .btn.btn-white:active { + color: #626262 !important; } + +.btn[class*="bg-gradient-"]:hover { + box-shadow: 0 8px 25px -8px #aaa; } + +.btn.btn-secondary { + color: #fff; } + .btn.btn-secondary:hover { + box-shadow: 0 8px 25px -8px #6c757d; } + +.btn.btn-dark:hover { + box-shadow: 0 8px 25px -8px #343a40; } + +.btn.btn-light:hover { + box-shadow: 0 8px 25px -8px #f8f9fa; } + +.btn.btn-outline-secondary, .btn.btn-outline-dark, .btn.btn-outline-light { + border: 1px solid; } + +.btn.btn-flat-secondary:hover { + background-color: rgba(108, 117, 125, 0.1); } + +.btn.btn-flat-secondary:active, .btn.btn-flat-secondary:focus { + background: #6c757d; } + +.btn.btn-flat-dark:hover { + background-color: rgba(52, 58, 64, 0.1); } + +.btn.btn-flat-dark:active, .btn.btn-flat-dark:focus { + background: #343a40; + color: #fff; } + +.btn.btn-flat-light:hover { + background-color: rgba(248, 249, 250, 0.1); } + +.btn.btn-flat-light:active, .btn.btn-flat-light:focus { + background: #f8f9fa; } + +.btn[class*="btn-outline-"] { + padding-top: calc(0.9rem - 1px); + padding-bottom: calc(0.9rem - 1px); } + .btn[class*="btn-outline-"].btn-sm { + padding-top: calc(0.5rem - 1px); + padding-bottom: calc(0.5rem - 1px); } + +.btn.btn-relief-secondary { + background-color: #6c757d; + box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); + color: #fff; } + .btn.btn-relief-secondary:hover { + color: #fff; } + .btn.btn-relief-secondary:active, .btn.btn-relief-secondary:focus { + outline: none; + transform: translateY(3px); } + +.btn.btn-relief-light { + box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); + color: #fff; } + .btn.btn-relief-light:hover { + color: #fff; } + .btn.btn-relief-light:active, .btn.btn-relief-light:focus { + outline: none; + transform: translateY(3px); } + +.btn.btn-relief-dark { + background-color: #343a40; + box-shadow: inset 0 -3px 0 0 rgba(255, 255, 255, 0.1); + color: #fff; } + .btn.btn-relief-dark:hover { + color: #fff; } + .btn.btn-relief-dark:active, .btn.btn-relief-dark:focus { + outline: none; + transform: translateY(3px); } + +.btn.btn-icon { + padding: .715rem .736rem; } + +.btn.btn-sm.btn-icon { + padding: .5rem; } + +.btn.btn-lg.btn-icon { + padding: 1rem; } + +.btn.btn-square { + border-radius: 0; } + +.btn.btn-round { + border-radius: 2rem; } + +.btn:focus, .btn.focus, .btn:active, .btn.active { + outline: none; + box-shadow: none !important; } + +.btn.btn-icon i { + font-size: 1.1rem; } + +.btn.btn-outline-white:hover, +.btn-white:hover { + color: #22292f !important; } + +button, +html [type="button"], +[type="reset"], +[type="submit"] { + cursor: pointer; } + +.waves-button-input { + padding: unset; } + +.collapse-icon .card-header { + position: relative; } + +.collapse-icon [data-toggle="collapse"]:after { + position: absolute; + top: 48%; + right: 20px; + margin-top: -8px; + font-family: 'feather'; + content: "\e845"; + transition: all 300ms linear 0s; + font-size: 0.9rem; } + +.collapse-icon [data-toggle="collapse"]:before { + position: absolute; + top: 48%; + right: 20px; + margin-top: -8px; + font-family: 'feather'; + content: "\e842"; + transition: all 300ms linear 0s; + font-size: 0.9rem; } + +.collapse-icon.left a { + padding-left: 28px; } + .collapse-icon.left a:before, .collapse-icon.left a:after { + left: 20px; + right: auto; } + +.collapse-icon [aria-expanded="true"]:before { + opacity: 0; } + +.collapse-icon [aria-expanded="false"]:after { + opacity: 0; } + +.collapse-icon.accordion-icon-rotate [aria-expanded="true"]:before { + transform: rotate(180deg); } + +.collapse-icon.accordion-icon-rotate [aria-expanded="false"]:after { + transform: rotate(-180deg); } + +.dropdown.show .btn-outline-warning.dropdown-toggle, +.dropdown.show .btn-outline-light.dropdown-toggle { + color: #fff; } + +.dropdown .btn:not(.btn-sm):not(.btn-lg), +.dropdown .btn:not(.btn-sm):not(.btn-lg).dropdown-toggle { + padding: 0.85rem 1.5rem; } + .dropdown .btn:not(.btn-sm):not(.btn-lg).btn-round, + .dropdown .btn:not(.btn-sm):not(.btn-lg).dropdown-toggle.btn-round { + border-radius: 2rem; } + +.dropdown .btn.dropdown-toggle.dropdown-toggle-split { + padding: 0.85rem 1rem; + border-left-color: rgba(255, 255, 255, 0.2) !important; + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.dropdown [class*="btn-outline-"].dropdown-toggle.dropdown-toggle-split { + border-left: 0 !important; } + .dropdown [class*="btn-outline-"].dropdown-toggle.dropdown-toggle-split:active { + color: #fff; } + +.dropdown .dropdown-menu { + border: 1px solid rgba(0, 0, 0, 0.05); + border-radius: 5px; + transform: scale(1, 0); + box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1); + min-width: 8rem; } + .dropdown .dropdown-menu::before { + content: ""; + position: absolute; + top: -1px; + left: 1.2rem; + width: 0.75rem; + height: 0.75rem; + display: block; + background: #fff; + transform: rotate(45deg) translate(-7px); + border-top: 1px solid rgba(0, 0, 0, 0.1); + border-left: 1px solid rgba(0, 0, 0, 0.1); + z-index: 10; + box-sizing: border-box; } + .dropdown .dropdown-menu.dropdown-menu-right::before { + right: 0.6rem; + left: auto; } + .dropdown .dropdown-menu .dropdown-header { + padding: 0.714rem 1.428rem; + margin-top: 0.714rem; } + .dropdown .dropdown-menu .dropdown-item { + padding: 0.5rem 1rem; + color: #626262; + width: auto; + cursor: pointer; } + .dropdown .dropdown-menu .dropdown-item:hover { + background-color: #f8f8f8; + color: #3a50dc; } + .dropdown .dropdown-menu .dropdown-item.active { + color: #fff; } + .dropdown .dropdown-menu .dropdown-item:active { + background-color: transparent; + color: #212529; } + +.dropdown i { + margin-right: 0.5rem; } + +.dropdown.no-arrow .dropdown-toggle:after { + display: none; } + +.dropdown.no-arrow .dropdown-toggle i { + margin-right: 0; } + +.dropdown, +.dropup, +.dropright, +.dropleft { + position: relative; } + .dropdown .dropdown-menu .dropdown-item, + .dropup .dropdown-menu .dropdown-item, + .dropright .dropdown-menu .dropdown-item, + .dropleft .dropdown-menu .dropdown-item { + padding: 0.714rem 1.428rem; } + +.show > .dropdown-menu { + transform: scale(1, 1); + opacity: 1; + display: block; } + +.dropdown-toggle::after { + border: none !important; + font-family: "feather"; + content: "\e842" !important; + position: relative; + top: 1px; + right: 0px; + left: 0.714rem; + padding: 0; + margin: 0; + vertical-align: 0; } + +.dropdown-toggle.dropdown-toggle-split { + border-left: 1px solid rgba(255, 255, 255, 0.2); } + .dropdown-toggle.dropdown-toggle-split:after { + left: 0; } + +.dropdown-toggle.nav-hide-arrow::after { + display: none; } + +.dropdown-toggle:focus { + outline: 0; } + +/* .dropdown-menu-right { + left: auto !important; // Input group with dropdown issue for dropdown-menu-right + right: 0; +} */ +.btn-secondary ~ .dropdown-menu .dropdown-item.active, .btn-secondary ~ .dropdown-menu .dropdown-item:hover { + background-color: #cccccc; } + +.dropup { + position: relative; } + .dropup .btn, + .dropup .btn.dropdown-toggle { + padding: 0.85rem 1.5rem; } + .dropup .btn.dropdown-toggle.dropdown-toggle-split { + padding: 0.85rem 1rem; + border-color: rgba(255, 255, 255, 0.2) !important; } + .dropup .dropdown-toggle::after { + content: "\e845" !important; + vertical-align: 0.05rem; } + .dropup .dropdown-menu::before { + content: ""; + position: absolute; + bottom: -0.714rem; + left: 1.214rem; + width: 0.714rem; + height: 0.714rem; + display: block; + background: #fff; + transform: rotate(45deg) translate(-7px); + border-bottom: 1px solid rgba(0, 0, 0, 0.1); + border-right: 1px solid rgba(0, 0, 0, 0.1); + z-index: 10; + box-sizing: border-box; } + .dropup .dropdown-menu.dropdown-menu-right::before { + left: auto; + right: 0.714rem; } + .dropup .dropdown-submenu .dropdown-menu { + bottom: auto; + top: 0; } + +.dropleft .btn, +.dropleft .btn.dropdown-toggle { + padding: 0.85rem 1.5rem; } + +.dropleft .btn.dropdown-toggle.dropdown-toggle-split { + padding: 0.85rem 1rem; } + +.dropleft .dropdown-toggle::before { + border: none !important; + font-family: "feather"; + content: "\e843" !important; } + +.dropleft .dropdown-menu::before { + content: ""; + position: absolute; + top: 1.285rem; + right: 0; + width: 0.714rem; + height: 0.714rem; + display: block; + background: #fff; + transform: rotate(130deg) translate(-8px); + border-top: 1px solid rgba(0, 0, 0, 0.1); + border-left: 1px solid rgba(0, 0, 0, 0.1); + z-index: 10; + box-sizing: border-box; } + +.dropright .btn, +.dropright .btn.dropdown-toggle { + padding: 0.85rem 1.5rem; } + +.dropright .btn.dropdown-toggle.dropdown-toggle-split { + padding: 0.85rem 1rem; } + +.dropright .dropdown-toggle::after { + border: none !important; + font-family: "feather"; + content: "\e844" !important; } + +.dropright .dropdown-menu::before { + content: ""; + position: absolute; + top: 1.285rem; + left: -0.9rem; + width: 0.714rem; + height: 0.714rem; + display: block; + background: #fff; + transform: rotate(140deg) translate(-9px); + border-bottom: 1px solid rgba(0, 0, 0, 0.1); + border-right: 1px solid rgba(0, 0, 0, 0.1); + z-index: 10; + box-sizing: border-box; } + +.dropdown.dropdown-icon-wrapper .dropdown-toggle:after, +.dropup.dropdown-icon-wrapper .dropdown-toggle:after { + display: none; } + +.dropdown.dropdown-icon-wrapper .dropdown-menu, +.dropup.dropdown-icon-wrapper .dropdown-menu { + min-width: auto; } + .dropdown.dropdown-icon-wrapper .dropdown-menu .dropdown-item, + .dropup.dropdown-icon-wrapper .dropdown-menu .dropdown-item { + padding: 0.5rem 1.1rem; + cursor: pointer; } + .dropdown.dropdown-icon-wrapper .dropdown-menu .dropdown-item i, + .dropup.dropdown-icon-wrapper .dropdown-menu .dropdown-item i { + font-size: 1.3rem; + color: #626262; } + .dropdown.dropdown-icon-wrapper .dropdown-menu .dropdown-item:hover, + .dropup.dropdown-icon-wrapper .dropdown-menu .dropdown-item:hover { + color: #fff; } + +.btn.btn-white ~ .dropdown-menu .dropdown-item:not(.acitve):hover { + color: #626262 !important; } + +.btn.btn-white ~ .dropdown-menu .dropdown-item.active { + color: #626262; } + +.horizontal-menu-wrapper .dropdown-menu, +.header-navbar .dropdown-menu { + animation-duration: 0.3s; + animation-fill-mode: both; + animation-name: slideIn; } + +@keyframes slideIn { + 0% { + transform: translateY(1rem); + opacity: 0; } + 100% { + transform: translateY(0rem); + opacity: 1; } + 0% { + transform: translateY(1rem); + opacity: 0; } } + +/* =============================================================================================== + File Name: navbar.scss + Description: Contain header navigation bar, vertical main navigation bar and + horiznotal main navigation bar related SCSS. + ---------------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +================================================================================================*/ +.navbar-dark .hamburger-inner, +.navbar-dark .hamburger-inner::before, +.navbar-dark .hamburger-inner::after { + background-color: #fff; } + +.header-navbar-shadow { + display: none; } + +.navbar-floating .header-navbar-shadow { + display: block; + background: linear-gradient(180deg, rgba(248, 248, 248, 0.95) 44%, rgba(248, 248, 248, 0.46) 73%, rgba(255, 255, 255, 0)); + padding-top: 2.2rem; + background-repeat: repeat; + width: 100%; + height: 102px; + position: fixed; + top: 0; + z-index: 11; } + +.header-navbar { + padding: 0px; + min-height: 4.5rem; + font-family: "Montserrat", Helvetica, Arial, serif; + transition: 300ms ease all; + background: linear-gradient(180deg, rgba(248, 248, 248, 0.95) 44%, rgba(248, 248, 248, 0.46) 73%, rgba(255, 255, 255, 0)); + z-index: 997; + /* For sm screen*/ } + .header-navbar.fixed-top { + left: 260px; } + .header-navbar[class*="bg-"] .navbar-nav .nav-item > a { + color: #fff !important; } + .header-navbar[class*="bg-"] .navbar-nav .nav-item > a i, + .header-navbar[class*="bg-"] .navbar-nav .nav-item > a span { + color: #fff !important; } + .header-navbar[class*="bg-"] .navbar-nav .nav-item .dropdown-menu i { + color: inherit !important; } + .header-navbar[class*="bg-"] .navbar-nav .search-input .input, + .header-navbar[class*="bg-"] .navbar-nav .search-input .search-list .auto-suggestion span { + color: #626262 !important; } + .header-navbar.floating-nav { + margin: 1.3rem 2.2rem 0; + border-radius: 0.5rem; + position: fixed; + width: calc(100vw - (100vw - 100%) - calc(2.2rem * 2) - 260px); + z-index: 12; + right: 0; } + .header-navbar.navbar-static-top { + background: transparent; + box-shadow: none !important; + top: 0; + right: 0; + left: 260px; + width: calc(100vw - (100vw - 100%) - 260px); } + .header-navbar .navbar-wrapper { + width: 100%; } + .header-navbar.navbar-border { + border-bottom: 1px solid #E4E7ED; } + .header-navbar.navbar-dark.navbar-border { + border-bottom: 1px solid #8596B5; } + .header-navbar.navbar-shadow { + box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05); } + .header-navbar:not(.navbar-horizontal) .nav-link.dropdown-toggle::after { + display: none; } + .header-navbar .navbar-container ul.nav li.dropdown-language { + padding-right: 0; } + .header-navbar .navbar-container ul.nav li.dropdown-language .selected-language { + font-size: 0.97rem; + letter-spacing: -0.25px; + font-weight: 500; } + .header-navbar .navbar-container { + padding-left: 1rem; + transition: 300ms ease all; + background: inherit; + margin-left: 0; } + .header-navbar .navbar-container .bookmark-wrapper ul.nav li > a.nav-link { + padding: 1.4rem 0.5rem 1.35rem; } + .header-navbar .navbar-container .bookmark-wrapper ul.nav li > a.nav-link i:hover { + color: #3a50dc; } + .header-navbar .navbar-container .bookmark-input { + z-index: 1; } + .header-navbar .navbar-container ul.nav li.dropdown .dropdown-menu { + top: 48px; } + .header-navbar .navbar-container ul.nav li .badge { + padding: 0.42em 0.6em 0.25rem; } + .header-navbar .navbar-container ul.nav li .badge.badge-up { + position: absolute; + top: 12px; + right: -2px; } + .header-navbar .navbar-container ul.nav li.dropdown-language > a.nav-link { + padding: 1.65rem 0.5rem; } + .header-navbar .navbar-container ul.nav li > a.nav-link { + color: #626262; + padding: 1.6rem 0.5rem 1.35rem 1rem; } + .header-navbar .navbar-container ul.nav li > a.nav-link i.flag-icon { + margin-right: 0.5rem; } + .header-navbar .navbar-container ul.nav li.dropdown-user .dropdown-menu-right { + right: 12px; + left: auto; + padding: 0.5rem; } + .header-navbar .navbar-container ul.nav li.dropdown-user .dropdown-menu-right .dropdown-item { + padding: 10px; } + .header-navbar .navbar-container ul.nav li.dropdown-user .dropdown-menu-right .dropdown-item:hover, .header-navbar .navbar-container ul.nav li.dropdown-user .dropdown-menu-right .dropdown-item:active { + background: #3a50dc; + color: #fff !important; } + .header-navbar .navbar-container ul.nav li a.dropdown-user-link { + padding: 0.7rem 1rem; + display: flex; + align-items: center; } + .header-navbar .navbar-container ul.nav li a.dropdown-user-link .user-name { + display: inline-block; + margin-bottom: 0.435rem; + margin-left: 0.2rem; } + .header-navbar .navbar-container ul.nav li a.dropdown-user-link .user-status { + font-size: smaller; } + .header-navbar .navbar-container ul.nav li a.dropdown-user-link img { + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08); } + .header-navbar .navbar-container ul.nav li a.menu-toggle { + padding: 1.34rem 0.22rem 1.35rem 0; } + .header-navbar .navbar-container ul.nav li a.menu-toggle i { + font-size: 1.75rem; } + .header-navbar .navbar-container ul.nav li a.nav-link-label { + padding: 1.6rem 0rem 1.35rem 0.8rem; } + .header-navbar .navbar-container ul.nav li a.dropdown-user-link .user-nav { + display: flex; + flex-direction: column; + align-items: flex-end; + float: left; + margin-right: 0.8rem; } + .header-navbar .navbar-container ul.nav li div.input-group { + padding: 0.7rem 1rem; } + .header-navbar .navbar-container ul.nav li i.ficon { + font-size: 1.5rem; + color: #626262; } + .header-navbar .navbar-container ul.nav li i.ficon:hover { + color: #3a50dc; } + .header-navbar .navbar-container ul.nav li .media-list { + max-height: 18.2rem; } + .header-navbar .navbar-container ul.nav li .scrollable-container { + position: relative; } + .header-navbar .navbar-container .dropdown-menu-media { + width: 26rem; } + .header-navbar .navbar-container .dropdown-menu-media .media-list .media { + padding: 1rem; + border: none; + border-bottom: 1px solid #dae1e7; } + .header-navbar .navbar-container .dropdown-menu-media .media-list .media:hover { + background: #f8f8f8; } + .header-navbar .navbar-container .dropdown-menu-media .media-list .media .media-meta { + color: #626262; } + .header-navbar .navbar-container .dropdown-menu-media .media-list a:last-of-type .media { + border-bottom: none; } + .header-navbar .navbar-container .dropdown-menu-media .dropdown-menu-header { + border-bottom: 1px solid #dae1e7; } + .header-navbar .navbar-container .dropdown-menu-media .dropdown-menu-footer a { + padding: 0.3rem; + border-top: 1px solid #dae1e7; } + .header-navbar.navbar-without-menu .navbar-container { + margin-left: 0; } + .header-navbar .nav-item + .nav-item { + margin-left: 0rem; } + @media (max-width: 767.98px) { + .header-navbar .navbar-header { + width: 100% !important; + padding: 0.5rem 1rem; + position: relative; } + .header-navbar .navbar-header .menu-toggle { + top: 2px; + position: relative; } + .header-navbar .navbar-header .open-navbar-container i { + font-size: 1.8rem; } + .header-navbar .navbar-header .navbar-brand { + position: absolute; + left: 50%; + top: 0; + transform: translate(-50%, 0); } + .header-navbar.navbar-with-menu .navbar-container { + width: 100%; + display: table; + margin: 0; + height: auto; } } + +/* Modern menu For md screen*/ +@media (max-width: 991.98px) { + [data-menu="vertical-menu-modern"] .header-navbar .navbar-header { + width: 100% !important; + padding: 0.5rem 1rem; + position: relative; } + [data-menu="vertical-menu-modern"] .header-navbar .navbar-header .menu-toggle { + top: 2px; + position: relative; } + [data-menu="vertical-menu-modern"] .header-navbar .navbar-header .open-navbar-container i { + font-size: 1.8rem; } + [data-menu="vertical-menu-modern"] .header-navbar .navbar-header .navbar-brand { + position: absolute; + left: 50%; + top: 0; + transform: translate(-50%, 0); } + [data-menu="vertical-menu-modern"] .header-navbar.navbar-with-menu .navbar-container { + width: 100%; + display: table; + margin: 0; + height: auto; } + [data-menu="vertical-menu-modern"] .navbar-dark .navbar-header .navbar-nav .nav-link, + [data-menu="vertical-menu-modern"] .navbar-semi-dark .navbar-header .navbar-nav .nav-link { + color: #fff; } + [data-menu="vertical-menu-modern"] .navbar-dark .navbar-container .navbar-nav .nav-link, + [data-menu="vertical-menu-modern"] .navbar-semi-dark .navbar-container .navbar-nav .nav-link { + color: #b8c2cc; } + [data-menu="vertical-menu-modern"] .navbar-light .navbar-header .navbar-nav .nav-link { + color: #b8c2cc; } } + +.navbar-light { + background: #fff; } + .navbar-light.navbar-horizontal { + background: #fff; } + .navbar-light .navbar-nav li { + line-height: 1; } + .navbar-light .navbar-nav .active.nav-link { + background-color: rgba(0, 0, 0, 0.03); } + .navbar-light .navbar-nav .disabled.nav-link { + color: #6c757d; } + +.navbar-dark { + background: #b8c2cc; } + .navbar-dark .navbar-brand { + color: #fff !important; } + .navbar-dark.navbar-horizontal { + background: #b8c2cc; } + .navbar-dark .nav-search .form-control, + .navbar-dark .nav-search .btn-secondary { + color: #fff; + background: #b8c2cc; } + .navbar-dark .navbar-nav li { + line-height: 1; } + .navbar-dark .navbar-nav .active.nav-link { + background-color: rgba(255, 255, 255, 0.05); } + .navbar-dark .navbar-nav .disabled.nav-link { + color: #dae1e7; } + +.navbar-semi-dark { + background: #fff; } + .navbar-semi-dark .navbar-header { + background: #b8c2cc; } + .navbar-semi-dark .navbar-header .brand-text { + color: #fff; } + .navbar-semi-dark .navbar-nav li { + line-height: 1; } + .navbar-semi-dark .navbar-nav .nav-link { + color: #b8c2cc; } + .navbar-semi-dark .navbar-nav .active.nav-link { + background-color: rgba(0, 0, 0, 0.03); } + .navbar-semi-dark .navbar-nav .disabled.nav-link { + color: #6c757d; } + +.navbar-semi-light { + background: #b8c2cc; } + .navbar-semi-light .navbar-header { + background: #fff; } + .navbar-semi-light .navbar-header .brand-text { + color: #b8c2cc; } + .navbar-semi-light .navbar-nav li { + line-height: 1; } + .navbar-semi-light .navbar-nav .nav-link { + color: #fff; } + .navbar-semi-light .navbar-nav .active.nav-link { + background-color: rgba(0, 0, 0, 0.03); } + .navbar-semi-light .navbar-nav .disabled.nav-link { + color: #6c757d; } + +@-moz-document url-prefix() { + ul li a .children-in { + position: relative; + right: 3px; + top: -14px; } } + +.navbar-menu-icon span { + display: block; + position: absolute; + height: 2px; + width: 100%; + background: #b8c2cc; + border-radius: 9px; + opacity: 1; + left: 0; + transform: rotate(0deg); + transition: .25s ease-in-out; } + +.navbar-menu-icon span:nth-child(1) { + top: 0px; } + +.navbar-menu-icon span:nth-child(2) { + top: 10px; } + +.navbar-menu-icon span:nth-child(3) { + top: 20px; } + +.navbar-menu-icon.show span:nth-child(1) { + top: 10px; + transform: rotate(135deg); } + +.navbar-menu-icon.show span:nth-child(2) { + opacity: 0; + left: -60px; } + +.navbar-menu-icon.show span:nth-child(3) { + top: 10px; + transform: rotate(-135deg); } + +@media (max-width: 767.98px) { + .header-navbar .navbar-nav .show { + position: static; } + .header-navbar .navbar-nav .open-navbar-container { + padding-top: 0.625rem; } + .header-navbar .navbar-container .show .dropdown-menu { + right: 0; + left: 0 !important; + float: none; + width: auto; + margin-top: 0; + max-height: 400px; + overflow-x: hidden; } + .header-navbar .navbar-container .dropdown-user .dropdown-menu-right { + right: 0 !important; } + .header-navbar .navbar-container ul.nav li.nav-item i { + margin-right: 0.2rem; } + .header-navbar .navbar-container ul.nav li a.dropdown-user-link { + padding: 0.8rem 0.6rem; } + .header-navbar .navbar-container ul.nav li .dropdown-toggle::after { + margin-right: 0; + margin-left: -2px; } + .navbar-dark .hamburger-inner, + .navbar-dark .hamburger-inner::before, + .navbar-dark .hamburger-inner::after, + .navbar-semi-dark .hamburger-inner, + .navbar-semi-dark .hamburger-inner::before, + .navbar-semi-dark .hamburger-inner::after { + background-color: #fff; } + .navbar-dark .navbar-header .navbar-nav .nav-link, + .navbar-semi-dark .navbar-header .navbar-nav .nav-link { + color: #fff; } + .navbar-dark .navbar-container .navbar-nav .nav-link, + .navbar-semi-dark .navbar-container .navbar-nav .nav-link { + color: #b8c2cc; } + .navbar-light .navbar-header .navbar-nav .nav-link, + .navbar-semi-light .navbar-header .navbar-nav .nav-link { + color: #b8c2cc; } + .navbar-light .navbar-container .navbar-nav .nav-link, + .navbar-semi-light .navbar-container .navbar-nav .nav-link { + color: #b8c2cc; } } + +.headroom { + will-change: transform; + transition: transform 200ms linear; } + +.headroom--pinned-top { + transform: translateY(0%); } + +.headroom--unpinned-top { + transform: translateY(-100%); } + +.headroom--pinned-bottom { + transform: translateY(0%); } + +.headroom--unpinned-bottom { + transform: translateY(100%); } + +@media (max-width: 575.98px) { + .header-navbar .navbar-container ul.nav li .selected-language { + display: none; } } + +body[data-col="1-column"] .header-navbar.floating-nav { + width: calc(100vw - (100vw - 100%) - calc(2.2rem * 2)); } + +@media (min-width: 1200px) and (-ms-high-contrast: active), (-ms-high-contrast: none) { + body:not([data-col="1-columns"]) .header-navbar.floating-nav { + width: calc(100vw - (100vw - 100%) - 60px - 260px); } } + +@media (max-width: 1199.98px) { + .header-navbar .navbar-container ul.nav li a.dropdown-user-link { + padding: 0.7rem 1.23rem; } + .header-navbar .navbar-container ul.nav li .dropdown-toggle::after { + margin-right: 0; + margin-left: -2px; } + .header-navbar.navbar-static-top { + left: 0; + width: 100%; } } + +@media (max-width: 767px) { + #navbar-mobile.navbar-collapse .navbar-nav { + margin: 0; + flex-flow: row wrap; } + #navbar-mobile.navbar-collapse .navbar-nav .dropdown-menu { + position: absolute; } + #navbar-mobile.navbar-collapse .navbar-nav .nav-item { + float: left; } } + +@media (max-width: 991.98px) { + #navbar-mobile.navbar-collapse .navbar-nav { + margin: 0; + flex-flow: row wrap; } + #navbar-mobile.navbar-collapse .navbar-nav .dropdown-menu { + position: absolute; } + #navbar-mobile.navbar-collapse .navbar-nav .nav-item { + float: left; } } + +/* ----------- iPhone 5, 5S iPhone 6----------- */ +/* Landscape */ +@media only screen and (min-device-width: 26.78em) and (max-device-width: 47.64em) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) { + .header-navbar .navbar-container .show .dropdown-menu { + max-height: 180px; } } + +/* ----------- iPhone 6+ ----------- */ +/* Landscape */ +@media only screen and (min-device-width: 29.57em) and (max-device-width: 52.57em) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) { + .header-navbar .navbar-container .show .dropdown-menu { + max-height: 280px; } } + +/*----------------------------- For Navbar Component -------------------------*/ +#navbar-component .navbar { + z-index: auto !important; } + #navbar-component .navbar.floating-nav { + border-radius: .5rem; } + #navbar-component .navbar .navbar-nav .nav-item a { + color: inherit; } + #navbar-component .navbar.header-navbar.navbar-dark .navbar-nav .nav-link { + color: #fff; } + #navbar-component .navbar.header-navbar.navbar-dark .navbar-nav .nav-link i { + color: #fff; } + #navbar-component .navbar .navbar-nav .dropdown-language.show, + #navbar-component .navbar .navbar-nav .dropdown-notification.show, + #navbar-component .navbar .navbar-nav .dropdown-user.show { + position: relative; } + #navbar-component .navbar .navbar-nav .dropdown-language .dropdown-menu.show, + #navbar-component .navbar .navbar-nav .dropdown-notification .dropdown-menu.show, + #navbar-component .navbar .navbar-nav .dropdown-user .dropdown-menu.show { + position: absolute; + right: 0; + left: auto !important; } + #navbar-component .navbar.navbar-dark .navbar-toggler, #navbar-component .navbar.navbar-light .navbar-toggler { + font-size: 1.2rem; } + #navbar-component .navbar.navbar-dark .navbar-toggler:focus, #navbar-component .navbar.navbar-light .navbar-toggler:focus { + outline: 0; } + +#navbar-component #navbar-collapsed .navbar { + border-radius: 0; } + +@media (min-width: 992px) { + #navbar-component .navbar .navbar-container { + background: inherit; } + #navbar-component .nav .dropdown-language { + float: right; } } + +@media (max-width: 992px) { + #navbar-component .navbar .navbar-container { + background: inherit; } + #navbar-component .navbar .navbar-container .navbar-nav { + flex-direction: row; } } + +@media (max-width: 1201px) { + .header-navbar.fixed-top { + left: 0; } + .horizontal-layout .header-navbar .navbar-container { + padding-left: 1.5rem; + padding-right: 1.2rem; } } + +@media (max-width: 1199px) { + .header-navbar .navbar-container ul.nav li a.dropdown-user-link .user-name { + margin-bottom: 0; } } + +@media (max-width: 768px) { + #navbar-component .navbar .navbar-nav .dropdown-notification.show { + position: static; } } + +@media (max-width: 575.98px) { + .header-navbar.floating-nav { + width: calc(100vw - (100vw - 100%) - 3.5rem) !important; + margin-left: 1.2rem; + margin-right: 1.2rem; } + .content.app-content .content-area-wrapper { + margin-left: 1.2rem !important; + margin-right: 1.2rem !important; } + .header-navbar .navbar-container { + padding-left: 1rem !important; + padding-right: 0 !important; } } + +@media (max-width: 992px) { + .navbar-container #navbar-mobile .nav-back { + margin-top: 5px; } } + +.card-group, .card-deck { + margin-bottom: 0.75rem; } + +.card { + margin-bottom: 2.2rem; + border: none; + border-radius: 0.5rem; + box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1); + transition: all .3s ease-in-out; } + .card .card { + box-shadow: none !important; } + .card .card-subtitle { + margin-top: .5rem; } + .card .card-title { + font-weight: 500; + letter-spacing: 0.05rem; + font-size: 1.32rem; + margin-bottom: 0.5rem; } + .card .card-bordered { + border: 1px solid rgba(0, 0, 0, 0.125); } + .card .card-img { + object-fit: cover; } + .card .card-img-overlay { + border-radius: 0.25rem; } + .card.card-fullscreen { + display: block; + z-index: 9999; + position: fixed; + width: 100% !important; + height: 100% !important; + top: 0; + right: 0; + left: 0; + bottom: 0; + overflow: auto; } + .card .card-body[class*='border-bottom-'] { + border-bottom-width: 2px !important; } + .card .card-img-overlay.bg-overlay { + background: rgba(0, 0, 0, 0.45); } + .card .card-img-overlay .text-muted { + color: #1e1e1e !important; } + .card.card-minimal { + border: none; + box-shadow: none; } + .card .card-header { + display: flex; + align-items: center; + flex-wrap: wrap; + justify-content: space-between; + border-bottom: none; + padding: 1.5rem 1.5rem 0; + background-color: transparent; } + .card .card-header .card-title { + margin-bottom: 0; } + .card .card-header .heading-elements, + .card .card-header .heading-elements-toggle { + background-color: inherit; + position: absolute; + top: 17px; + right: 21px; + cursor: pointer; } + .card .card-header .heading-elements.heading-top-elements .page-item, + .card .card-header .heading-elements-toggle.heading-top-elements .page-item { + display: inline-block; } + .card .card-header .heading-elements a, + .card .card-header .heading-elements-toggle a { + padding: 0; + padding-left: 8px; } + .card .card-header .heading-elements a.btn, + .card .card-header .heading-elements-toggle a.btn { + padding-top: 6px; + padding-bottom: 6px; } + .card .card-header .heading-elements a[data-action="collapse"] i, + .card .card-header .heading-elements-toggle a[data-action="collapse"] i { + transition: all .25s ease-out; + display: inline-block; } + .card .card-header .heading-elements a[data-action="collapse"].rotate i, + .card .card-header .heading-elements-toggle a[data-action="collapse"].rotate i { + transform: rotate(-180deg); } + .card .card-footer { + border-top: 1px solid #dae1e7; } + +.card-columns .card { + margin-bottom: 2.2rem; } + +.text-white .card-text { + color: white; } + +.text-white .card-img-overlay .text-muted { + color: #fff !important; } + +.text-white code { + background-color: white; } + +.text-white .heading-elements i { + color: #fff; } + +.card-head-inverse { + color: #fff; } + .card-head-inverse .heading-elements i { + color: #fff; } + +.card-transparent { + background-color: transparent; } + +@media (max-width: 991.98px) { + .heading-elements { + text-align: center; } + .heading-elements .list-inline { + display: none; } + .heading-elements.visible { + top: 22px !important; + display: block; + margin-top: 0; + top: 100%; + top: 50px; + height: auto; + left: 0px; + z-index: 997; + position: absolute; + width: 100%; } + .heading-elements.visible .list-inline { + background-color: #fff; + display: block; + position: absolute; + top: 12px; + right: 15px; } } + +@media (min-width: 992px) { + .heading-elements-toggle { + display: none; } } + +.overlay-img-card .card-img-overlay, .overlay-img-card img { + max-height: 34.64rem; } + +.activity-timeline.timeline-left { + border-left: 2px solid #dae1e7; + padding-left: 40px; + margin-left: 1.5rem; } + .activity-timeline.timeline-left li { + position: relative; + margin-bottom: 20px; } + .activity-timeline.timeline-left li p { + margin-bottom: 0; } + .activity-timeline.timeline-left li .timeline-icon { + position: absolute; + top: 0; + left: -4.3rem; + padding: .7rem; + display: flex; + align-items: center; + border-radius: 50%; + color: #fff; } + .activity-timeline.timeline-left li .timeline-icon i { + vertical-align: sub; } + +.activity-timeline.timeline-right { + border-right: 2px solid #dae1e7; + padding-right: 40px; + margin-right: 1.5rem; } + .activity-timeline.timeline-right li { + position: relative; + margin-bottom: 20px; + text-align: right; } + .activity-timeline.timeline-right li p { + margin-bottom: 0; } + .activity-timeline.timeline-right li .timeline-icon { + position: absolute; + top: 0; + right: -4.3rem; + padding: .6rem .7rem; + border-radius: 50%; + color: #fff; } + .activity-timeline.timeline-right li .timeline-icon i { + vertical-align: sub; } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .card-body, .card-content { + min-height: 1px; } + .profile-card-2 .card .card-header { + display: block; } + .profile-card-1 .card .avatar, + .profile-card-3 .card .avatar { + margin-left: auto; + margin-right: auto; } } + +.breadcrumb { + font-size: 1rem; + font-family: "Montserrat", Helvetica, Arial, serif; + background-color: transparent; + padding: 0.5rem 0 0.5rem 1rem !important; + border-left: 1px solid #d6dce1; + border-radius: 0; + /* .breadcrumb-item:first-child{ + a{ + &:after{ + content: "\e965"; + font-family: 'feather'; + } + } + } */ } + .breadcrumb > li + li::before { + padding-right: .6rem; + padding-left: .6rem; } + .breadcrumb .breadcrumb-item + .breadcrumb-item { + padding-left: 0; } + .breadcrumb .breadcrumb-item + .breadcrumb-item:before { + content: "\e847"; + font-family: 'feather'; + color: #626262; } + .breadcrumb .breadcrumb-item.active { + color: #626262; } + +/* Custom scss for page headers style */ +.breadcrumbs-right .breadcrumb { + float: right; } + +.breadcrumbs-top .breadcrumb { + margin: 0; + padding: 0; } + +/* Component Specific */ +#component-breadcrumbs .breadcrumb { + border: none; } + #component-breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item:before { + font-family: none; + padding: 0 1rem; } + +#component-breadcrumbs .default-breadcrumb.breadcrumb .breadcrumb-item + .breadcrumb-item:before { + content: "/"; } + +#component-breadcrumbs .breadcrumb-dots.breadcrumb .breadcrumb-item + .breadcrumb-item:before { + content: "."; + position: relative; + top: -4px; } + +#component-breadcrumbs .breadcrumb-dashes.breadcrumb .breadcrumb-item + .breadcrumb-item:before { + content: "-"; } + +#component-breadcrumbs .breadcrumb-pipes.breadcrumb .breadcrumb-item + .breadcrumb-item:before { + content: "|"; } + +#component-breadcrumbs .breadcrumb-chevron.breadcrumb .breadcrumb-item + .breadcrumb-item:before { + content: "\e844"; + font-family: 'feather'; + position: relative; + top: 1px; } + +#breadcrumb-alignment .breadcrumb-wrapper { + box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1); + padding: 1px; + border-radius: 10px; } + #breadcrumb-alignment .breadcrumb-wrapper .breadcrumb { + margin-top: .8rem; } + +.badge { + color: #fff; + background-color: #3a50dc; + font-weight: 400; } + .badge[class*='badge-'] [class*='icon-'] { + line-height: 1; } + .badge[class*='badge-'] a { + color: #fff; } + .badge[class*='badge-'] i { + vertical-align: middle; } + .badge[class*='badge-'] .dropdown-toggle span, .badge[class*='badge-'] .dropdown-toggle i, .badge[class*='badge-'].dropdown-toggle span, .badge[class*='badge-'].dropdown-toggle i { + vertical-align: text-top; } + .badge[class*='badge-'] .dropdown-toggle i, .badge[class*='badge-'].dropdown-toggle i { + padding-left: .2rem; } + .badge[class*='badge-'] .dropdown-toggle::after, .badge[class*='badge-'].dropdown-toggle::after { + position: relative; + top: 0; + left: 0; + font-size: 1rem; } + .badge[class*='badge-'] .dropdown-menu a { + color: #212529; } + .badge.badge-square { + border-radius: 0; } + .badge.badge-up { + position: absolute; + top: -1rem; + right: -1rem; } + .badge.badge-up.badge-sm { + top: -.5rem; + right: -.5rem; } + +.badge-xl { + font-size: 1.8rem; } + +.badge-lg { + font-size: 1.2rem; } + +.badge-md { + font-size: 1rem; } + +.badge-sm { + font-size: 0.7rem; } + +.badge-icon i { + font-size: 100%; + margin-right: 5px; } + +.dropup .badge { + cursor: pointer; } + +.nav { + border-radius: 0.25rem; } + .nav.wrap-border { + border: 1px solid #ddd; } + .nav.wrap-border li.nav-header { + margin: 0 0.5rem; } + .nav.wrap-border li.nav-item, + .nav.wrap-border div { + padding: 2px .714rem; } + .nav.square-border { + border-radius: 0; } + .nav.square-border .nav-item .nav-link.active { + border-radius: 0; } + .nav .modern-nav-toggle { + padding: 1.571rem 0; } + .nav.nav-pills { + margin-bottom: 1rem; } + .nav.nav-pills .nav-item .nav-link { + border-radius: .357rem; + padding: .2rem 1rem; + padding-top: .3rem; + font-size: 0.98rem; + margin-right: 0.5rem; + color: #000; } + .nav.nav-pills .nav-item .nav-link.active { + color: #fff; } + .nav.nav-pills .nav-item .nav-link.disabled { + color: #b8c2cc; } + .nav.nav-pills .nav-item .nav-link.dropdown-toggle::after { + top: 1px; + left: 1px; } + .nav.nav-pills .nav-item.dropdown.show .nav-link { + color: #fff; } + .nav.nav-pills .nav-item.dropdown.show .dropdown-item.active:hover { + color: #3a50dc; } + .nav.nav-pills.nav-justified { + width: 100%; } + .nav.nav-pills.nav-justified .nav-item { + float: none; } + .nav.nav-pills.nav-justified .nav-link { + text-align: center; + margin-bottom: 5px; } + .nav.nav-pills.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; } + @media (min-width: 576px) { + .nav.nav-pills.nav-justified .nav-item { + display: block; + width: 1%; } + .nav.nav-pills.nav-justified .nav-link { + margin-bottom: 0; } } + .nav.nav-pills.nav-justified .nav-link { + margin-right: 0; + border-radius: 0.5rem; } + @media (min-width: 576px) { + .nav.nav-pills.nav-justified .nav-link.active, + .nav.nav-pills.nav-justified .nav-link.active:hover, + .nav.nav-pills.nav-justified .nav-link.active:focus { + border-bottom-color: transparent; } } + .nav.nav-pills.nav-justified .nav-link { + display: block; } + .nav.nav-pills.nav-justified .nav-link.active { + border: none; } + .nav.nav-pills.nav-justified .nav-link.active:hover, .nav.nav-pills.nav-justified .nav-link.active:focus { + border: none; } + .nav.nav-pills.nav-active-bordered-pill .nav-item a.nav-link.active { + border: 1px solid #3a50dc; + border-radius: 0.25rem; + color: #3a50dc; + background-color: #fff; } + .nav.nav-tabs { + border: none; + margin-bottom: 1rem; + position: relative; + border-radius: 0; } + .nav.nav-tabs .nav-item { + position: relative; } + .nav.nav-tabs .nav-item .nav-link { + color: #626262; + font-size: 0.95rem; + border: none; + min-width: auto; + font-weight: 450; + padding: .61rem .635rem; + border-radius: 0; } + .nav.nav-tabs .nav-item .nav-link.active { + border: none; + position: relative; + color: #3a50dc; + transition: all .2s ease; + background-color: transparent; } + .nav.nav-tabs .nav-item .nav-link.active:after { + content: attr(data-before); + height: 2px; + width: 100%; + left: 0; + position: absolute; + bottom: 0; + top: 100%; + background: linear-gradient(30deg, #3a50dc, rgba(115, 103, 240, 0.5)) !important; + box-shadow: 0 0 8px 0 rgba(115, 103, 240, 0.5) !important; + transform: translateY(0px); + transition: all .2s linear; } + .nav.nav-tabs .nav-item .nav-link.dropdown-toggle::after { + top: 1px; + left: 1px; } + .nav.nav-tabs .nav-item .nav-link.disabled { + color: #adb5bd; } + .nav.nav-tabs.nav-justified { + width: 100%; } + .nav.nav-tabs.nav-justified .nav-item { + float: none; } + .nav.nav-tabs.nav-justified .nav-link { + text-align: center; + margin-bottom: 5px; } + .nav.nav-tabs.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; } + @media (min-width: 576px) { + .nav.nav-tabs.nav-justified .nav-item { + display: block; + width: 1%; } + .nav.nav-tabs.nav-justified .nav-link { + margin-bottom: 0; } } + .nav.nav-tabs.nav-justified .nav-link { + margin-right: 0; + border-radius: 0.5rem; } + @media (min-width: 576px) { + .nav.nav-tabs.nav-justified .nav-link.active, + .nav.nav-tabs.nav-justified .nav-link.active:hover, + .nav.nav-tabs.nav-justified .nav-link.active:focus { + border-bottom-color: transparent; } } + .nav.nav-tabs.nav-justified .nav-item a.nav-link { + display: block; + border-radius: 0; } + .nav.nav-tabs.nav-justified .nav-item a.nav-link.active { + border: none; + background-color: #fff; } + .nav.nav-tabs.nav-justified .nav-item a.nav-link:hover { + border-color: transparent; } + +.nav-vertical { + overflow: hidden; } + .nav-vertical .nav.nav-tabs .nav-item .nav-link { + border: none; + margin-bottom: 0; } + .nav-vertical .nav.nav-tabs .nav-item .nav-link.active { + border: none; + border-radius: 0; } + .nav-vertical .nav.nav-tabs .nav-item .nav-link.active:after { + transform: rotate(90deg); + left: auto; + right: -1.5rem; + bottom: 100%; + top: 1.25rem; + width: 2.14rem; } + .nav-vertical .nav.nav-tabs .nav-item .nav-link:hover { + border-right: none; } + .nav-vertical .nav.nav-tabs.nav-left { + float: left; + display: table; + margin-right: 1rem; } + .nav-vertical .nav.nav-tabs.nav-left ~ .tab-content .tab-pane { + display: none; + background-color: #fff; + overflow-y: auto; } + .nav-vertical .nav.nav-tabs.nav-left ~ .tab-content .tab-pane.active { + display: block; } + .nav-vertical .nav.nav-tabs.nav-right { + float: right; + display: table; + margin-left: 1rem; } + .nav-vertical .nav.nav-tabs.nav-right .nav-item .nav-link.active:after { + left: -1.5rem; } + .nav-vertical .nav.nav-tabs.nav-right ~ .tab-content .tab-pane { + display: none; + background-color: #fff; + overflow-y: auto; + padding-right: 1rem; } + .nav-vertical .nav.nav-tabs.nav-right ~ .tab-content .tab-pane.active { + display: block; } + +@media (max-width: 576px) { + .nav-vertical .nav.nav-tabs .nav-item .nav-link.active:after { + height: 0; } } + +.alert { + font-weight: 500; + border: none; } + .alert .close:focus { + outline: 0; } + .alert p { + font-weight: 500; + padding: 2px 0; + margin-bottom: 0; + vertical-align: middle; } + .alert span { + vertical-align: middle; } + .alert .alert-heading { + font-weight: 700; + font-size: 0.9rem; + padding: 0; + padding-bottom: 8px; } + .alert.alert-dark .alert-heading { + box-shadow: rgba(52, 58, 64, 0.4) 0px 6px 15px -7px; } + .alert.alert-light .alert-heading { + box-shadow: rgba(248, 249, 250, 0.4) 0px 6px 15px -7px; } + +.media-list .media { + padding: 1.25rem; + width: 100%; + margin-top: 0; } + .media-list .media .media-left { + padding-right: 1rem; } + .media-list .media .media-right { + padding-left: 1rem; } + +.media-list a.media { + color: #b8c2cc !important; } + +.media-bordered .media { + border-top: 1px solid #E4E7ED; } + .media-bordered .media:first-child { + border-top: 0; } + +/*========================================================================================= + File Name: progress.scss + Description: Extended bootstrap progress bar scss. + ---------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent + ---------------------------------------------------------------------------------------- + + Modifiers: `progress-lg` + `progress-md` + `progress-sm` + `progress-xs` + +==========================================================================================*/ +.progress { + margin-bottom: 3rem; } + .progress:last-child { + margin-bottom: 1rem; } + .progress.progress-xl { + height: 1.14rem; } + .progress.progress-lg { + height: 0.857rem; } + .progress.progress-md { + height: 0.57rem; } + .progress.progress-sm { + height: 0.143rem; } + .progress .progress-bar { + border-radius: 1.28rem; } + +/* =============================================================================================== + File Name: list-group.scss + Description: Contain list item, list group related extended SCSS. + ---------------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +================================================================================================*/ +ul.list-inline li { + display: inline-block; } + +ul.list-inline.list-inline-pipe > li + li:before { + content: ' | '; + padding-right: 2px; } + +.list-group .list-group-item { + line-height: 1.5; } + .list-group .list-group-item.active:hover { + background-color: #3a50dc; } + .list-group .list-group-item.active:focus { + outline: 0; } + .list-group .list-group-item.active:focus:hover { + color: #fff; } + .list-group .list-group-item:hover { + background-color: #f8f8f8; } + .list-group .list-group-item i { + font-size: 1.2rem; + font-weight: 100; + position: relative; } + .list-group .list-group-item:not(.active):focus:active { + color: inherit; } + +.list-group .list-group-item-action:focus { + outline: 0; } + +.list-group-item.gu-mirror { + border-radius: 0; } + +.users-list li + li { + margin-left: -.785rem; } + +.users-list li img { + border: 2px solid #fff; + box-shadow: 0px 2px 10px 0px rgba(184, 194, 204, 0.3); } + +.users-list li .badge { + color: #22292f; } + +.toast-bs-container { + z-index: 1040; + position: fixed; + top: 0; + left: 0; + width: 100%; } + .toast-bs-container .toast-position { + position: relative; + top: 0; + right: 0; + display: flex; + flex-direction: column; + flex-wrap: wrap-reverse; } + .toast-bs-container .toast-position .toast.show { + opacity: 1; + z-index: 1030; } + +.toast-placement { + position: static; + top: 0; } + .toast-placement .toast { + position: fixed; + top: 0; + z-index: 1030; } + +.toast { + display: none; + background-color: white; + margin-top: .75rem; } + .toast .toast-header .close:focus, .toast .toast-header .close:active { + outline: none; } + +.toast.show.toast-wrapper { + position: static; } + +.toast.toast-translucent { + opacity: 1; + display: block; } + +.toast-header img { + width: 35px; + height: 24px; } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .toast-bs-container { + position: fixed !important; + left: 74% !important; } } + +_:-ms-lang(x), +.toast-bs-container { + position: fixed !important; + left: 74% !important; } + +.accordion .collapse-title, +.collapse-bordered .collapse-title { + font-weight: 400; + font-size: 1.2rem; } + +.accordion .card-header, +.collapse-bordered .card-header { + cursor: pointer; } + +.collapse-title { + color: inherit; } + .collapse-title:hover { + color: inherit; } + +.collapse-bordered .card:first-child { + border-top: 0; } + +.collapse-bordered .card:last-child { + border-bottom: 0; } + +.collapse-bordered .card { + margin-bottom: 0; + border-bottom: 1px solid rgba(0, 0, 0, 0.04); + border-radius: 0; } + .collapse-bordered .card .card-header { + padding: 1rem; } + .collapse-bordered .card .card-body { + padding: 1rem; + line-height: 1.5; } + +.accordion .collapse-border-item.card { + border: 1px solid rgba(0, 0, 0, 0.1); + margin-bottom: 0; } + .accordion .collapse-border-item.card:first-child { + border-bottom: 0; } + .accordion .collapse-border-item.card .card-header { + padding: 1rem; } + .accordion .collapse-border-item.card .card-body { + padding: 1rem; + line-height: 1.5; } + +.accordion-shadow { + box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.1); + padding: .15rem .75rem; + border-radius: 0.5rem; } + .accordion-shadow .card.open { + border-radius: 0.571rem; + margin: 10px 0; + border: 0; + box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1) !important; } + .accordion-shadow .card:first-child { + border-top-left-radius: 0.571rem; + border-top-right-radius: 0.571rem; } + .accordion-shadow .card:last-child { + border-bottom-left-radius: 0.571rem; + border-bottom-right-radius: 0.571rem; } + +.collapse-border { + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 0.5rem; } + .collapse-border + .collapse.show { + border: 1px solid rgba(0, 0, 0, 0.1); } + +.collapse-margin { + margin-top: .71rem; + margin-bottom: .71rem !important; + box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.05); + border-radius: 5px; + border-bottom: 0 solid transparent !important; } + .collapse-margin .card-header { + padding: 1rem; + border-radius: 5px; } + .collapse-margin .card-body { + padding: 1rem; + line-height: 1.5rem; } + +.pagination .page-item { + border-radius: 5rem; } + .pagination .page-item.prev-item .page-link, .pagination .page-item.next-item .page-link, .pagination .page-item.first .page-link, .pagination .page-item.last .page-link { + color: #3a50dc; } + .pagination .page-item.prev-item.disabled .page-link, .pagination .page-item.next-item.disabled .page-link, .pagination .page-item.first.disabled .page-link, .pagination .page-item.last.disabled .page-link { + color: #6c757d; } + .pagination .page-item:not(.prev-item) .page-link, .pagination .page-item:not(.next-item) .page-link, .pagination .page-item:not(.first) .page-link, .pagination .page-item:not(.last) .page-link, .pagination .page-item:not(.active) .page-link { + line-height: 1.3; } + .pagination .page-item.prev-item { + margin-right: .3571rem; } + .pagination .page-item.prev-item .page-link { + background-color: #f0f0f0; + padding: 0.572rem 0.651rem; + border-radius: 50%; } + .pagination .page-item.prev-item .page-link:before { + content: "\e843"; + font-family: 'feather'; } + .pagination .page-item.prev-item .page-link:hover { + background: #3a50dc; + color: #fff; } + .pagination .page-item.prev-item ~ .page-item:nth-child(2) { + border-top-left-radius: 5rem; + border-bottom-left-radius: 5rem; } + .pagination .page-item.prev-item ~ .page-item:nth-child(2) .page-link { + border-top-left-radius: 5rem !important; + border-bottom-left-radius: 5rem !important; } + .pagination .page-item.prev-item ~ .page-item:nth-last-child(2) { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; } + .pagination .page-item.prev-item ~ .page-item:nth-last-child(2) .page-link { + border-top-right-radius: 5rem !important; + border-bottom-right-radius: 5rem !important; } + .pagination .page-item.next-item { + margin-left: .3571rem; } + .pagination .page-item.next-item .page-link { + background-color: #f0f0f0; + padding: 0.572rem 0.651rem; + border-radius: 50%; } + .pagination .page-item.next-item .page-link:after { + content: "\e844"; + font-family: 'feather'; } + .pagination .page-item.next-item .page-link:hover { + background: #3a50dc; + color: #fff; } + .pagination .page-item.prev .page-link:before, .pagination .page-item.previous .page-link:before { + content: "\e843"; + font-family: 'feather'; } + .pagination .page-item.next .page-link:after { + content: "\e844"; + font-family: 'feather'; } + .pagination .page-item .page-link { + border: none; + margin: 0; + color: rgba(0, 0, 0, 0.6); + background-color: #f0f0f0; + margin-left: 0; + font-size: 1rem; + font-weight: 700; } + .pagination .page-item .page-link i { + position: relative; + top: 1px; } + .pagination .page-item .page-link:focus { + box-shadow: none; } + .pagination .page-item .page-link:hover { + color: #3a50dc; } + .pagination .page-item.active { + background-color: #f0f0f0; + border-radius: 0; } + .pagination .page-item.active .page-link { + z-index: 3; + border-radius: 5rem; + background-color: #3a50dc; + color: #fff; + transform: scale(1.05); } + .pagination .page-item:first-child:not(.prev-item).active { + border-top-left-radius: 1.428rem; + border-bottom-left-radius: 1.428rem; } + .pagination .page-item:first-child:not(.prev-item).active .page-link { + border-radius: 5rem; } + .pagination .page-item:first-child:not(.prev-item) .page-link { + border-top-left-radius: 1.428rem; + border-bottom-left-radius: 1.428rem; } + .pagination .page-item:last-child:not(.next-item).active { + border-top-right-radius: 1.428rem; + border-bottom-right-radius: 1.428rem; } + .pagination .page-item:last-child:not(.next-item).active .page-link { + border-radius: 5rem; } + .pagination .page-item:last-child:not(.next-item) .page-link { + border-top-right-radius: 1.428rem; + border-bottom-right-radius: 1.428rem; } + +.pagination.pagination-lg .page-item .page-link { + font-size: 1.5rem; + transform: scale(1); } + +.modal .modal-header { + background-color: #f8f8f8; + border-radius: .42rem; + padding: .8rem; + border-bottom: none; } + .modal .modal-header .close { + padding: .2rem .62rem; + box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1); + border-radius: .357rem; + background: #fff; + opacity: 1; + transition: all .23s ease .1s; + position: relative; + transform: translate(8px, -2px); } + .modal .modal-header .close span { + font-weight: 400; + font-size: 2rem; + color: #3a50dc; } + .modal .modal-header .close:hover, .modal .modal-header .close:focus, .modal .modal-header .close:active { + opacity: 1; + outline: none; + transform: translate(5px, 3px); + box-shadow: none; } + .modal .modal-header[class*="bg-"] { + color: #fff; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; } + .modal .modal-header[class*="bg-"] .modal-title { + color: #fff; } + .modal .modal-header.bg-primary .close span { + color: #3a50dc; } + .modal .modal-header.bg-success .close span { + color: #28a745; } + .modal .modal-header.bg-info .close span { + color: #00cfe8; } + .modal .modal-header.bg-danger .close span { + color: #dc3545; } + .modal .modal-header.bg-warning .close span { + color: #ff9f43; } + .modal .modal-header.bg-dark .close span { + color: #343a40; } + +.modal .modal-content { + border: none; + overflow: visible; + box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1); } + +.modal .modal-footer { + border-color: rgba(0, 0, 0, 0.05); } + +.modal-sm { + max-width: 400px; } + +.modal-xs { + max-width: 300px; } + +.modal-xl { + max-width: 94%; + margin-left: 3%; + margin-right: 3%; } + +@media (max-width: 576px) { + .modal { + padding-right: 1rem; + padding-left: 1rem; } + .modal .modal-xs, + .modal .modal-sm { + max-width: unset; } } + +.popover { + z-index: 10; } + .popover .popover-header { + color: #fff; + border: none; + border-top-left-radius: 0.3rem; + border-top-right-radius: 0.3rem; } + .popover.bs-popover-bottom .arrow:after { + border-bottom-color: #3a50dc; } + +.icon-bg-circle { + color: #fff; + padding: 0.5rem; + border-radius: 50%; } + +.icon-left { + margin-right: 0.5rem; } + +.icon-right { + margin-right: 0.5rem; } + +.icon-spin { + display: inline-block; + animation: spin 1s infinite linear; } + +.blockOverlay { + z-index: 1050 !important; } + +.blockElement, .blockPage { + z-index: 1051 !important; } + +@-moz-keyframes spin { + from { + -moz-transform: rotate(0deg); } + to { + -moz-transform: rotate(360deg); } } + +@-webkit-keyframes spin { + from { + -webkit-transform: rotate(0deg); } + to { + -webkit-transform: rotate(360deg); } } + +@keyframes spin { + from { + transform: rotate(0deg); } + to { + transform: rotate(360deg); } } + +.hidden { + display: none; + visibility: hidden; } + +a:hover { + cursor: pointer; } + +.round { + border-radius: 1.5rem; } + +.square { + border-radius: 0; } + +.icon-line-height { + line-height: 1.5rem !important; } + +.table-middle td { + vertical-align: middle; } + +.spinner { + display: inline-block; + -webkit-animation: spin 1s linear infinite; + -o-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; } + +@keyframes spin { + 0% { + transform: rotate(0deg); } + 100% { + transform: rotate(360deg); } } + +button:focus { + outline: none; } diff --git a/assets/css/bootstrap-extended.min.css b/assets/css/bootstrap-extended.min.css new file mode 100644 index 0000000..358a571 --- /dev/null +++ b/assets/css/bootstrap-extended.min.css @@ -0,0 +1 @@ +a:focus{outline:0}.font-small-1{font-size:.7rem!important}.font-small-2{font-size:.8rem!important}.font-small-3{font-size:.9rem!important}.font-medium-1{font-size:1.1rem!important}.font-medium-2{font-size:1.2rem!important}.font-medium-3{font-size:1.3rem!important}.font-medium-4{font-size:1.4rem!important}.font-medium-5{font-size:1.5rem!important}.font-large-1{font-size:2rem!important}.font-large-2{font-size:3rem!important}.font-large-3{font-size:4rem!important}.font-large-4{font-size:5rem!important}.font-large-5{font-size:6rem!important}.text-bold-300{font-weight:300}.text-bold-400{font-weight:400}.text-bold-500{font-weight:500}.text-bold-600{font-weight:600}.text-bold-700{font-weight:700}.text-italic{font-style:italic}.text-highlight{padding:4px 6px}code{padding:.1rem .4rem;font-size:90%;color:#E83E8C;background-color:#EEE;border-radius:.25rem}.table th,label{font-size:.85rem}pre{background-color:#F7F7F9}pre code{background-color:transparent!important}.bd-example-row .row+.row{margin-top:1rem}.bd-example-row .row>.col,.bd-example-row .row>[class^=col-]{padding-top:.75rem;padding-bottom:.75rem;background-color:rgba(86,61,124,.15);border:1px solid rgba(86,61,124,.2)}.bd-example-row .flex-items-bottom,.bd-example-row .flex-items-middle,.bd-example-row .flex-items-top{min-height:6rem;background-color:rgba(255,0,0,.1)}.bd-example-row-flex-cols .row{min-height:10rem;background-color:rgba(255,0,0,.1)}.bd-highlight{background-color:rgba(86,61,124,.15);border:1px solid rgba(86,61,124,.15)}.example-container{width:800px;width:100%;padding-right:14px;padding-left:14px;margin-right:auto;margin-left:auto}.example-content-main,.example-content-secondary{width:100%;padding-right:14px;padding-left:14px;position:relative}.example-row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-14px;margin-left:-14px}@media (min-width:576px){.example-content-main{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}}@media (min-width:992px){.example-content-main{-webkit-box-flex:0;-webkit-flex:0 0 66.66667%;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}}@media (min-width:576px){.example-content-secondary{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}}@media (min-width:992px){.example-content-secondary{-webkit-box-flex:0;-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}}.table-white-space td,.table-white-space th{white-space:nowrap}.table thead th{vertical-align:top}.table td,.table th{padding:1rem;vertical-align:middle}.table-inverse{color:#FFF;background-color:#00CFE8}.table-hover-animation{background-color:#F8F8F8}.table-hover-animation thead th{border-top:2px solid #F8F8F8;border-bottom:0;background-color:#FFF}.table-hover-animation td,.table-hover-animation th{border:0}.table-hover-animation tbody tr{-webkit-transition:all .25s ease;transition:all .25s ease;background-color:#FFF}.table-hover-animation tbody tr:hover{-webkit-transform:translateY(-4px);-ms-transform:translateY(-4px);transform:translateY(-4px)}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.table-hover-animation tr:hover{border-bottom-color:#F8F8F8}}.form-control::-webkit-input-placeholder{font-size:.85rem;color:rgba(34,41,47,.4);-webkit-transition:all .2s ease;transition:all .2s ease}.form-control::-moz-placeholder{font-size:.85rem;color:rgba(34,41,47,.4);-webkit-transition:all .2s ease;transition:all .2s ease}.form-control:-ms-input-placeholder{font-size:.85rem;-webkit-transition:all .2s ease;transition:all .2s ease}.form-control::-ms-input-placeholder{font-size:.85rem;color:rgba(34,41,47,.4);-webkit-transition:all .2s ease;transition:all .2s ease}.form-control::placeholder{font-size:.85rem;color:rgba(34,41,47,.4);-webkit-transition:all .2s ease;transition:all .2s ease}.form-control:-ms-input-placeholder{color:#C5C5C5}.form-control:focus::-webkit-input-placeholder{-webkit-transform:translate(5px);transform:translate(5px);-webkit-transition:all .2s ease;transition:all .2s ease}.form-control:focus::-moz-placeholder{transform:translate(5px);-webkit-transition:all .2s ease;transition:all .2s ease}.form-control:focus:-ms-input-placeholder{-ms-transform:translate(5px);transform:translate(5px);-webkit-transition:all .2s ease;transition:all .2s ease}.form-control:focus::-ms-input-placeholder{-ms-transform:translate(5px);transform:translate(5px);-webkit-transition:all .2s ease;transition:all .2s ease}.form-control:focus::placeholder{-webkit-transform:translate(5px);-ms-transform:translate(5px);transform:translate(5px);-webkit-transition:all .2s ease;transition:all .2s ease}.form-control:focus~.form-control-position i{color:#7367F0}label{color:#464646;margin-bottom:0;padding-left:.2rem}textarea.form-control{line-height:1.6rem;font-size:1rem}.form-group{margin-bottom:1.5rem}.form-control{border:1px solid #D9D9D9;color:#5F5F5F}.form-section{color:#B8C2CC;line-height:3rem;margin-bottom:20px;border-bottom:1px solid #B8C2CC}.form-section i{font-size:20px;margin-left:5px;margin-right:10px}.form-actions{border-top:1px solid #DFDFDF;padding:20px 0;margin-top:20px}.form-actions.filled{background-color:#F8F8F8}.form-actions.center{text-align:center}.form-actions.right{text-align:right}.form-actions.top{border-top:0;border-bottom:1px solid #DFDFDF;margin-top:0;margin-bottom:20px}@media (max-width:767.98px){.form-actions .buttons-group{float:left!important;margin-bottom:10px}}@media (min-width:576px){.form-horizontal .form-group .label-control{text-align:right}}.form-control.form-control-lg{padding:1rem}.form-control.form-control-lg::-webkit-input-placeholder{font-size:1.25rem}.form-control.form-control-lg::-moz-placeholder{font-size:1.25rem}.form-control.form-control-lg:-ms-input-placeholder{font-size:1.25rem}.form-control.form-control-lg::-ms-input-placeholder{font-size:1.25rem}.form-control.form-control-lg::placeholder{font-size:1.25rem}.form-control.form-control-sm{padding:.6rem}.form-control.form-control-sm::-webkit-input-placeholder{font-size:.7rem}.form-control.form-control-sm::-moz-placeholder{font-size:.7rem}.form-control.form-control-sm:-ms-input-placeholder{font-size:.7rem}.form-control.form-control-sm::-ms-input-placeholder{font-size:.7rem}.form-control.form-control-sm::placeholder{font-size:.7rem}.custom-file-label{padding:.375rem .75rem}.custom-file-label::after{padding:.375rem .75rem;height:auto}select.form-control:not([multiple=multiple]){background-image:url(/assets/images/arrow-down.png);background-position:calc(100% - 12px) 13px,calc(100% - 20px) 13px,100% 0;background-size:12px 12px,10px 10px;background-repeat:no-repeat;-webkit-appearance:none;-moz-appearance:none;padding-right:1.5rem}.custom-select{-moz-appearance:none;-webkit-appearance:none}.input-group-addon{background-color:#ECEFF1;border-color:#BABFC7}.custom-control-label::after,.custom-control-label::before{width:1.143rem;height:1.143rem;top:.08rem}.custom-control-input:not(:disabled):active~.custom-control-label::before{background-color:#7367F0;border-color:#7367F0}.form-label-group{position:relative;margin-bottom:1.5rem}.form-label-group .form-control-lg~label{font-size:1.25rem;padding:1rem}.form-label-group .form-control-sm~label{font-size:.7rem}.form-label-group>label{position:absolute;top:0;left:0;display:block;-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out;padding:.6rem;pointer-events:none;cursor:text;color:rgba(34,41,47,.4);font-size:.85rem;opacity:0}.form-label-group textarea,.form-label-group>input{padding:.6rem}.form-label-group textarea:focus:not(:placeholder-shown)~label,.form-label-group textarea:not(:active):not(:placeholder-shown)~label,.form-label-group>input:focus:not(:placeholder-shown)~label,.form-label-group>input:not(:active):not(:placeholder-shown)~label{color:#7367F0!important;-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out;opacity:1}.form-label-group textarea:not(:focus):not(:placeholder-shown)~label,.form-label-group>input:not(:focus):not(:placeholder-shown)~label{color:rgba(34,41,47,.4)!important}.form-label-group textarea:not(:placeholder-shown)~label,.form-label-group>input:not(:placeholder-shown)~label{padding:.25rem 0;font-size:.7rem;top:-20px;left:3px}.form-label-group.has-icon-left>label{left:36px}.vs-checkbox-con{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;margin:.25rem 0}.vs-checkbox-con input{position:absolute;width:100%;height:100%;opacity:0;z-index:200;cursor:pointer;top:0}.vs-checkbox-con input:checked~.vs-checkbox{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);border-color:#7367F0}.vs-checkbox-con input:checked~.vs-checkbox .vs-checkbox--check{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);background-color:#7367F0}.vs-checkbox-con input:checked~.vs-checkbox .vs-checkbox--check .vs-icon{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);line-height:1.2;opacity:1}.vs-checkbox-con input:checked~.vs-checkbox.vs-checkbox-sm .vs-checkbox--check .vs-icon{font-size:.75rem}.vs-checkbox-con input:checked~.vs-checkbox.vs-checkbox-lg .vs-checkbox--check .vs-icon{font-size:1.2rem}.vs-checkbox-con input:active:checked+.vs-checkbox .vs-checkbox--check{-webkit-transform:translate(3px);-ms-transform:translate(3px);transform:translate(3px);background-color:#7367F0}.vs-checkbox-con input:active:checked+.vs-checkbox .vs-checkbox--check .vs-icon{opacity:1;-webkit-transform:translate(6px);-ms-transform:translate(6px);transform:translate(6px)}.vs-checkbox-con input:disabled{cursor:default;pointer-events:none}.vs-checkbox-con input:disabled+.vs-checkbox{cursor:default;opacity:.5}.vs-checkbox-con .vs-checkbox{cursor:pointer;position:relative;width:20px;height:20px;border-width:2px;border-style:solid;border-color:#B8C2CC;border-radius:2px;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transition:all .2s ease;transition:all .2s ease;overflow:hidden;margin-right:.5rem}.vs-checkbox-con .vs-checkbox.vs-checkbox-sm{width:15px;height:15px}.vs-checkbox-con .vs-checkbox.vs-checkbox-lg{width:24px;height:24px}.vs-checkbox-con .vs-checkbox .vs-checkbox--check{width:100%;height:100%;position:absolute;left:0;-webkit-transform:translate(100%);-ms-transform:translate(100%);transform:translate(100%);-webkit-transform-origin:right;-ms-transform-origin:right;transform-origin:right;-webkit-transition:all .2s ease;transition:all .2s ease;z-index:10}.vs-checkbox-con .vs-checkbox .vs-checkbox--check .vs-icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;color:#FFF}.vs-radio-con{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;margin:.25rem 0}.vs-radio-con input{position:absolute;width:100%;height:100%;opacity:0;z-index:200;cursor:pointer}.vs-radio-con input:checked~.vs-radio{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);outline:0}.vs-radio-con input:checked~.vs-radio .vs-radio--circle{background:#7367F0;box-shadow:0 3px 12px 0 rgba(115,103,240,.4);opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.vs-radio-con input:checked~.vs-radio .vs-radio--border{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}.vs-radio-con input:disabled{cursor:default;pointer-events:none}.vs-radio-con input:disabled+.vs-radio{cursor:default;opacity:.5}.vs-radio-con input:active~.vs-radio{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.vs-radio-con .vs-radio{cursor:pointer;position:relative;width:18px;height:18px;-webkit-transition:all .2s ease;transition:all .2s ease;margin-right:.5rem}.vs-radio-con .vs-radio.vs-radio-sm{width:13px;height:13px}.vs-radio-con .vs-radio.vs-radio-lg{width:22px;height:22px}.vs-radio-con .vs-radio .vs-radio--border,.vs-radio-con .vs-radio .vs-radio--circle{width:100%;height:100%;position:absolute;left:0;-webkit-transition:all .25s ease;transition:all .25s ease;top:0;border-radius:50%}.vs-radio-con .vs-radio .vs-radio--border{background:0 0;border:2px solid #B8C2CC}.vs-radio-con .vs-radio .vs-radio--circle{opacity:0;-webkit-transform:scale(.1);-ms-transform:scale(.1);transform:scale(.1)}.custom-switch{padding-left:0}.custom-switch .custom-control-label{height:1.571rem;width:3.1rem;padding:0}.custom-switch .custom-control-label::before{border:none;background-color:#E2E2E2;height:1.571rem;box-shadow:none!important;-webkit-transition:all .25s ease;transition:all .25s ease;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;top:0;left:0}.custom-switch .custom-control-label:after{position:absolute;top:2px;left:2px;box-shadow:none;background-color:#FFF;-webkit-transition:all .25s ease;transition:all .25s ease;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.custom-switch .custom-control-label .switch-icon-left,.custom-switch .custom-control-label .switch-icon-right,.custom-switch .custom-control-label .switch-text-left,.custom-switch .custom-control-label .switch-text-right{position:absolute;top:5px;font-size:.7rem;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.custom-switch .custom-control-label .switch-icon-left,.custom-switch .custom-control-label .switch-text-left{left:7px;color:#FFF}.custom-switch .custom-control-label .switch-icon-right,.custom-switch .custom-control-label .switch-text-right{right:7px}.custom-switch .custom-control-label:focus{outline:0}.custom-switch .switch-label{padding-left:1rem}.custom-switch .custom-control-input:checked~.custom-control-label::before{box-shadow:none}.custom-switch .custom-control-input:checked~.custom-control-label::after{-webkit-transform:translateX(1.4rem);-ms-transform:translateX(1.4rem);transform:translateX(1.4rem)}.custom-switch .custom-control-input:not(:checked)~.custom-control-label .switch-text-left{opacity:0}.custom-switch .custom-control-input:not(:checked)~.custom-control-label .switch-text-right{opacity:1}.custom-switch .custom-control-input:checked~.custom-control-label .switch-text-right{opacity:0}.custom-switch .custom-control-input:checked~.custom-control-label .switch-text-left{opacity:1}.custom-switch .custom-control-input:not(:disabled):active~.custom-control-label::before{background-color:#E2E2E2}.custom-switch.switch-md .custom-control-label{width:4rem;height:1.571rem}.custom-switch.switch-md .custom-control-label::before{width:4rem;border:none;background-color:#E2E2E2;height:1.571rem;left:-.2857rem;box-shadow:none!important;-webkit-transition:all .25s ease;transition:all .25s ease;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.custom-switch.switch-lg .custom-control-label::before,.custom-switch.switch-md .custom-control-label:after{-webkit-transition:all .25s ease;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;cursor:pointer}.custom-switch.switch-md .custom-control-label:after{box-shadow:none;background-color:#FFF;transition:all .25s ease;user-select:none;position:absolute;top:2px;left:-2px}.custom-switch.switch-md .custom-control-label .switch-icon-right,.custom-switch.switch-md .custom-control-label .switch-text-right{right:9px}.custom-switch.switch-md .custom-control-label .switch-icon-left,.custom-switch.switch-md .custom-control-label .switch-text-left{left:5px}.custom-switch.switch-md .custom-control-input:checked~.custom-control-label::after{-webkit-transform:translateX(2.3rem);-ms-transform:translateX(2.3rem);transform:translateX(2.3rem)}.custom-switch.switch-lg .custom-control-label{width:5.5rem;height:1.571rem}.custom-switch.switch-lg .custom-control-label::before{width:5.5rem;border:none;background-color:#E2E2E2;height:1.571rem;left:-.2857rem;box-shadow:none!important;transition:all .25s ease;user-select:none}.custom-switch.switch-lg .custom-control-label:after{position:absolute;top:2px;left:-2px;box-shadow:none;background-color:#FFF;-webkit-transition:all .25s ease;transition:all .25s ease;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.custom-switch.switch-lg .custom-control-label .switch-icon-right,.custom-switch.switch-lg .custom-control-label .switch-text-right{right:10px}.custom-switch.switch-lg .custom-control-input:checked~.custom-control-label::after{-webkit-transform:translateX(3.8rem);-ms-transform:translateX(3.8rem);transform:translateX(3.8rem)}.counter-value{background-color:#7367F0;color:#FFF;padding:1px 6px;font-size:.6rem;border-radius:0 0 5px 5px;margin-right:1rem}.form-group.input-divider-left .form-control-position i{padding:.2rem .5rem;border-right:1px solid #D9D9D9}.form-group.input-divider-right .form-control-position i{padding:.2rem .5rem;border-left:1px solid #D9D9D9}.input-group-lg .form-control,.input-group-sm .form-control{padding:.7rem}.bootstrap-touchspin.input-group{width:8.4rem;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.bootstrap-touchspin.input-group .form-control{padding:5px;height:auto;border:0;background-color:#F8F8F8;border-radius:5px!important;text-align:center;font-weight:500}.bootstrap-touchspin.input-group-lg .touchspin.form-control,.bootstrap-touchspin.input-group-sm .touchspin.form-control{height:auto!important}.bootstrap-touchspin.input-group .form-control:focus{z-index:1;box-shadow:none}.bootstrap-touchspin .bootstrap-touchspin-injected{margin:0!important}.bootstrap-touchspin .bootstrap-touchspin-injected .bootstrap-touchspin-down,.bootstrap-touchspin .bootstrap-touchspin-injected .bootstrap-touchspin-up{padding:0;min-width:22px;min-height:22px;border-radius:5px!important;position:relative}.bootstrap-touchspin .bootstrap-touchspin-injected .bootstrap-touchspin-down i,.bootstrap-touchspin .bootstrap-touchspin-injected .bootstrap-touchspin-up i{font-size:.8rem;position:relative;top:-1px}.bootstrap-touchspin .bootstrap-touchspin-injected .bootstrap-touchspin-down{left:12px}.bootstrap-touchspin .bootstrap-touchspin-injected .bootstrap-touchspin-up{right:12px}.bootstrap-touchspin.disabled-touchspin .bootstrap-touchspin-down,.bootstrap-touchspin.disabled-touchspin .bootstrap-touchspin-up{background-color:rgba(0,0,0,.5)!important;cursor:default;opacity:.5}.bootstrap-touchspin.input-group-lg{width:9.375rem}.bootstrap-touchspin.input-group-lg .bootstrap-touchspin-down i,.bootstrap-touchspin.input-group-lg .bootstrap-touchspin-up i{font-size:1rem}.bootstrap-touchspin.input-group-sm{width:6.25rem}.bootstrap-touchspin.input-group-sm .bootstrap-touchspin-injected .bootstrap-touchspin-down,.bootstrap-touchspin.input-group-sm .bootstrap-touchspin-injected .bootstrap-touchspin-up{min-width:16px;min-height:16px;padding-top:2.2px}.bootstrap-touchspin.input-group-sm .bootstrap-touchspin-injected .bootstrap-touchspin-down i,.bootstrap-touchspin.input-group-sm .bootstrap-touchspin-injected .bootstrap-touchspin-up i{font-size:.6rem}.btn.disabled-max-min{background-color:rgba(0,0,0,.5)!important;cursor:default}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none}.bootstrap-touchspin.input-group input[type=number]{-moz-appearance:textfield}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.form-label-group label{display:none}select.form-control:not([multiple=multiple]){background:0 0}.custom-file-label::after{padding:1.34rem .7rem 1.25rem}}.picker__input.form-control{background-color:#FFF}.input-group .form-control{height:auto}.input-group .input-group-append .dropdown-toggle::after,.input-group .input-group-prepend .dropdown-toggle::after{left:0}.input-group .input-group-append .vs-checkbox,.input-group .input-group-append .vs-checkbox-con,.input-group .input-group-append .vs-radio,.input-group .input-group-append .vs-radio-con,.input-group .input-group-prepend .vs-checkbox,.input-group .input-group-prepend .vs-checkbox-con,.input-group .input-group-prepend .vs-radio,.input-group .input-group-prepend .vs-radio-con{margin:0}.input-group.input-group-lg .form-control::-webkit-input-placeholder{font-size:1.25rem}.input-group.input-group-lg .form-control::-moz-placeholder{font-size:1.25rem}.input-group.input-group-lg .form-control:-ms-input-placeholder{font-size:1.25rem}.input-group.input-group-lg .form-control::-ms-input-placeholder{font-size:1.25rem}.input-group.input-group-lg .form-control::placeholder{font-size:1.25rem}.input-group.input-group-lg .input-group-append .btn,.input-group.input-group-lg .input-group-prepend .btn{line-height:1.3;font-size:1.3rem}.badge[class*=badge-] [class*=icon-],.navbar-dark .navbar-nav li,.navbar-light .navbar-nav li,.navbar-semi-dark .navbar-nav li,.navbar-semi-light .navbar-nav li{line-height:1}.input-group.input-group-sm .form-control::-webkit-input-placeholder{font-size:.7rem}.input-group.input-group-sm .form-control::-moz-placeholder{font-size:.7rem}.input-group.input-group-sm .form-control:-ms-input-placeholder{font-size:.7rem}.input-group.input-group-sm .form-control::-ms-input-placeholder{font-size:.7rem}.input-group.input-group-sm .form-control::placeholder{font-size:.7rem}.btn:disabled{cursor:default}.btn.btn-white{color:#626262}.btn.btn-white:active,.btn.btn-white:focus,.btn.btn-white:hover{color:#626262!important}.btn[class*=bg-gradient-]:hover{box-shadow:0 8px 25px -8px #AAA}.btn.btn-secondary{color:#FFF}.btn.btn-secondary:hover{box-shadow:0 8px 25px -8px #6C757D}.btn.btn-dark:hover{box-shadow:0 8px 25px -8px #343A40}.btn.btn-light:hover{box-shadow:0 8px 25px -8px #F8F9FA}.btn.btn-relief-light,.btn.btn-relief-secondary{box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.2);color:#FFF}.btn.btn-outline-dark,.btn.btn-outline-light,.btn.btn-outline-secondary{border:1px solid}.btn.btn-flat-secondary:hover{background-color:rgba(108,117,125,.1)}.btn.btn-flat-secondary:active,.btn.btn-flat-secondary:focus{background:#6C757D}.btn.btn-flat-dark:hover{background-color:rgba(52,58,64,.1)}.btn.btn-flat-dark:active,.btn.btn-flat-dark:focus{background:#343A40;color:#FFF}.btn.btn-flat-light:hover{background-color:rgba(248,249,250,.1)}.btn.btn-flat-light:active,.btn.btn-flat-light:focus{background:#F8F9FA}.btn[class*=btn-outline-]{padding-top:calc(.9rem - 1px);padding-bottom:calc(.9rem - 1px)}.btn[class*=btn-outline-].btn-sm{padding-top:calc(.5rem - 1px);padding-bottom:calc(.5rem - 1px)}.btn.btn-relief-secondary{background-color:#6C757D}.btn.btn-relief-secondary:hover{color:#FFF}.btn.btn-relief-secondary:active,.btn.btn-relief-secondary:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn.btn-relief-light:hover{color:#FFF}.btn.btn-relief-light:active,.btn.btn-relief-light:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn.btn-relief-dark{background-color:#343A40;box-shadow:inset 0 -3px 0 0 rgba(255,255,255,.1);color:#FFF}.btn.btn-relief-dark:hover{color:#FFF}.btn.btn-relief-dark:active,.btn.btn-relief-dark:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn.btn-icon{padding:.715rem .736rem}.btn.btn-sm.btn-icon{padding:.5rem}.btn.btn-lg.btn-icon{padding:1rem}.btn.btn-square{border-radius:0}.btn.btn-round,.dropdown .btn:not(.btn-sm):not(.btn-lg).btn-round,.dropdown .btn:not(.btn-sm):not(.btn-lg).dropdown-toggle.btn-round{border-radius:2rem}.btn.active,.btn.focus,.btn:active,.btn:focus{outline:0;box-shadow:none!important}.btn.btn-icon i{font-size:1.1rem}.btn-white:hover,.btn.btn-outline-white:hover{color:#22292F!important}.dropdown [class*=btn-outline-].dropdown-toggle.dropdown-toggle-split:active,.dropdown.show .btn-outline-light.dropdown-toggle,.dropdown.show .btn-outline-warning.dropdown-toggle{color:#FFF}[type=reset],[type=submit],button,html [type=button]{cursor:pointer}.waves-button-input{padding:unset}.collapse-icon .card-header{position:relative}.collapse-icon [data-toggle=collapse]:after{position:absolute;top:48%;right:20px;margin-top:-8px;font-family:feather;content:'\e845';-webkit-transition:all .3s linear 0s;transition:all .3s linear 0s;font-size:.9rem}.collapse-icon [data-toggle=collapse]:before{position:absolute;top:48%;right:20px;margin-top:-8px;font-family:feather;content:'\e842';-webkit-transition:all .3s linear 0s;transition:all .3s linear 0s;font-size:.9rem}.collapse-icon.left a{padding-left:28px}.collapse-icon.left a:after,.collapse-icon.left a:before{left:20px;right:auto}.collapse-icon [aria-expanded=true]:before,.collapse-icon [aria-expanded=false]:after{opacity:0}.collapse-icon.accordion-icon-rotate [aria-expanded=true]:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.collapse-icon.accordion-icon-rotate [aria-expanded=false]:after{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.dropdown .btn:not(.btn-sm):not(.btn-lg),.dropdown .btn:not(.btn-sm):not(.btn-lg).dropdown-toggle{padding:.85rem 1.5rem}.dropdown .btn.dropdown-toggle.dropdown-toggle-split{padding:.85rem 1rem;border-left-color:rgba(255,255,255,.2)!important;border-top-left-radius:0;border-bottom-left-radius:0}.dropdown [class*=btn-outline-].dropdown-toggle.dropdown-toggle-split{border-left:0!important}.dropdown .dropdown-menu{border:1px solid rgba(0,0,0,.05);border-radius:5px;-webkit-transform:scale(1,0);-ms-transform:scale(1,0);transform:scale(1,0);box-shadow:0 5px 25px rgba(0,0,0,.1);min-width:8rem}.dropdown .dropdown-menu::before{content:'';position:absolute;top:-1px;left:1.2rem;width:.75rem;height:.75rem;display:block;background:#FFF;-webkit-transform:rotate(45deg) translate(-7px);-ms-transform:rotate(45deg) translate(-7px);transform:rotate(45deg) translate(-7px);border-top:1px solid rgba(0,0,0,.1);border-left:1px solid rgba(0,0,0,.1);z-index:10;box-sizing:border-box}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown .dropdown-menu.dropdown-menu-right::before{right:.6rem;left:auto}.dropdown .dropdown-menu .dropdown-header{padding:.714rem 1.428rem;margin-top:.714rem}.dropdown .dropdown-menu .dropdown-item{color:#626262;width:auto;cursor:pointer}.dropdown .dropdown-menu .dropdown-item:hover{background-color:#F8F8F8;color:#7367F0}.dropdown .dropdown-menu .dropdown-item.active{color:#FFF}.dropdown .dropdown-menu .dropdown-item:active{background-color:transparent;color:#212529}.dropdown i{margin-right:.5rem}.dropdown.no-arrow .dropdown-toggle:after{display:none}.dropdown.no-arrow .dropdown-toggle i{margin-right:0}.dropdown .dropdown-menu .dropdown-item,.dropleft .dropdown-menu .dropdown-item,.dropright .dropdown-menu .dropdown-item,.dropup .dropdown-menu .dropdown-item{padding:.714rem 1.428rem}.show>.dropdown-menu{-webkit-transform:scale(1,1);-ms-transform:scale(1,1);transform:scale(1,1);opacity:1;display:block}.dropdown-toggle::after{border:none!important;font-family:feather;content:'\e842'!important;position:relative;top:1px;right:0;left:.714rem;padding:0;margin:0;vertical-align:0}.dropdown-toggle.dropdown-toggle-split{border-left:1px solid rgba(255,255,255,.2)}.dropdown-toggle.dropdown-toggle-split:after{left:0}.dropdown-toggle.nav-hide-arrow::after{display:none}.dropdown-toggle:focus{outline:0}.btn-secondary~.dropdown-menu .dropdown-item.active,.btn-secondary~.dropdown-menu .dropdown-item:hover{background-color:#CCC}.dropup .btn,.dropup .btn.dropdown-toggle{padding:.85rem 1.5rem}.dropup .btn.dropdown-toggle.dropdown-toggle-split{padding:.85rem 1rem;border-color:rgba(255,255,255,.2)!important}.dropup .dropdown-toggle::after{content:'\e845'!important;vertical-align:.05rem}.activity-timeline.timeline-left li .timeline-icon i,.activity-timeline.timeline-right li .timeline-icon i{vertical-align:sub}.dropup .dropdown-menu::before{content:'';position:absolute;bottom:-.714rem;left:1.214rem;width:.714rem;height:.714rem;display:block;background:#FFF;-webkit-transform:rotate(45deg) translate(-7px);-ms-transform:rotate(45deg) translate(-7px);transform:rotate(45deg) translate(-7px);border-bottom:1px solid rgba(0,0,0,.1);border-right:1px solid rgba(0,0,0,.1);z-index:10;box-sizing:border-box}.dropup .dropdown-menu.dropdown-menu-right::before{left:auto;right:.714rem}.dropup .dropdown-submenu .dropdown-menu{bottom:auto;top:0}.dropleft .dropdown-menu::before,.dropright .dropdown-menu::before{position:absolute;top:1.285rem;width:.714rem;height:.714rem;display:block;background:#FFF;z-index:10;box-sizing:border-box}.dropleft .btn,.dropleft .btn.dropdown-toggle{padding:.85rem 1.5rem}.dropleft .btn.dropdown-toggle.dropdown-toggle-split{padding:.85rem 1rem}.dropleft .dropdown-toggle::before{border:none!important;font-family:feather;content:'\e843'!important}.dropleft .dropdown-menu::before{content:'';right:0;-webkit-transform:rotate(130deg) translate(-8px);-ms-transform:rotate(130deg) translate(-8px);transform:rotate(130deg) translate(-8px);border-top:1px solid rgba(0,0,0,.1);border-left:1px solid rgba(0,0,0,.1)}.dropright .btn,.dropright .btn.dropdown-toggle{padding:.85rem 1.5rem}.dropright .btn.dropdown-toggle.dropdown-toggle-split{padding:.85rem 1rem}.dropright .dropdown-toggle::after{border:none!important;font-family:feather;content:'\e844'!important}.breadcrumb,.header-navbar{font-family:Montserrat,Helvetica,Arial,serif}.dropright .dropdown-menu::before{content:'';left:-.9rem;-webkit-transform:rotate(140deg) translate(-9px);-ms-transform:rotate(140deg) translate(-9px);transform:rotate(140deg) translate(-9px);border-bottom:1px solid rgba(0,0,0,.1);border-right:1px solid rgba(0,0,0,.1)}.dropdown.dropdown-icon-wrapper .dropdown-toggle:after,.dropup.dropdown-icon-wrapper .dropdown-toggle:after,.header-navbar-shadow{display:none}.dropdown.dropdown-icon-wrapper .dropdown-menu,.dropup.dropdown-icon-wrapper .dropdown-menu{min-width:auto}.dropdown.dropdown-icon-wrapper .dropdown-menu .dropdown-item,.dropup.dropdown-icon-wrapper .dropdown-menu .dropdown-item{padding:.5rem 1.1rem;cursor:pointer}.dropdown.dropdown-icon-wrapper .dropdown-menu .dropdown-item i,.dropup.dropdown-icon-wrapper .dropdown-menu .dropdown-item i{font-size:1.3rem;color:#626262}.dropdown.dropdown-icon-wrapper .dropdown-menu .dropdown-item:hover,.dropup.dropdown-icon-wrapper .dropdown-menu .dropdown-item:hover{color:#FFF}.btn.btn-white~.dropdown-menu .dropdown-item:not(.acitve):hover{color:#626262!important}.btn.btn-white~.dropdown-menu .dropdown-item.active{color:#626262}.header-navbar .dropdown-menu,.horizontal-menu-wrapper .dropdown-menu{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-name:slideIn;animation-name:slideIn}@-webkit-keyframes slideIn{100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}0%{-webkit-transform:translateY(1rem);transform:translateY(1rem);opacity:0}}@keyframes slideIn{100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}0%{-webkit-transform:translateY(1rem);transform:translateY(1rem);opacity:0}}.navbar-dark .hamburger-inner,.navbar-dark .hamburger-inner::after,.navbar-dark .hamburger-inner::before{background-color:#FFF}.navbar-floating .header-navbar-shadow{display:block;background:-webkit-linear-gradient(top,rgba(248,248,248,.95) 44%,rgba(248,248,248,.46) 73%,rgba(255,255,255,0));background:linear-gradient(180deg,rgba(248,248,248,.95) 44%,rgba(248,248,248,.46) 73%,rgba(255,255,255,0));padding-top:2.2rem;background-repeat:repeat;width:100%;height:102px;position:fixed;top:0;z-index:11}.header-navbar{padding:0;min-height:4.5rem;-webkit-transition:.3s ease all;transition:.3s ease all;background:-webkit-linear-gradient(top,rgba(248,248,248,.95) 44%,rgba(248,248,248,.46) 73%,rgba(255,255,255,0));background:linear-gradient(180deg,rgba(248,248,248,.95) 44%,rgba(248,248,248,.46) 73%,rgba(255,255,255,0));z-index:997}.header-navbar.fixed-top{left:260px}.header-navbar[class*=bg-] .navbar-nav .nav-item>a,.header-navbar[class*=bg-] .navbar-nav .nav-item>a i,.header-navbar[class*=bg-] .navbar-nav .nav-item>a span{color:#FFF!important}.header-navbar[class*=bg-] .navbar-nav .nav-item .dropdown-menu i{color:inherit!important}.header-navbar[class*=bg-] .navbar-nav .search-input .input,.header-navbar[class*=bg-] .navbar-nav .search-input .search-list .auto-suggestion span{color:#626262!important}.header-navbar.floating-nav{margin:1.3rem 2.2rem 0;border-radius:.5rem;position:fixed;width:calc(100vw - (100vw - 100%) - calc(2.2rem * 2) - 260px);z-index:12;right:0}.header-navbar.navbar-static-top{background:0 0;box-shadow:none!important;top:0;right:0;left:260px;width:calc(100vw - (100vw - 100%) - 260px)}.header-navbar .navbar-wrapper{width:100%}.header-navbar.navbar-border{border-bottom:1px solid #E4E7ED}.header-navbar.navbar-dark.navbar-border{border-bottom:1px solid #8596B5}.header-navbar.navbar-shadow{box-shadow:0 4px 20px 0 rgba(0,0,0,.05)}.header-navbar:not(.navbar-horizontal) .nav-link.dropdown-toggle::after{display:none}.header-navbar .navbar-container ul.nav li.dropdown-language{padding-right:0}.header-navbar .navbar-container ul.nav li.dropdown-language .selected-language{font-size:.97rem;letter-spacing:-.25px;font-weight:500}.header-navbar .navbar-container{padding-left:1rem;-webkit-transition:.3s ease all;transition:.3s ease all;background:inherit;margin-left:0}.header-navbar .navbar-container .bookmark-wrapper ul.nav li>a.nav-link{padding:1.4rem .5rem 1.35rem}.header-navbar .navbar-container .bookmark-wrapper ul.nav li>a.nav-link i:hover{color:#7367F0}.header-navbar .navbar-container .bookmark-input{z-index:1}.header-navbar .navbar-container ul.nav li.dropdown .dropdown-menu{top:48px}.header-navbar .navbar-container ul.nav li .badge{padding:.42em .6em .25rem}.header-navbar .navbar-container ul.nav li .badge.badge-up{position:absolute;top:12px;right:-2px}.header-navbar .navbar-container ul.nav li.dropdown-language>a.nav-link{padding:1.65rem .5rem}.header-navbar .navbar-container ul.nav li>a.nav-link{color:#626262;padding:1.6rem .5rem 1.35rem 1rem}.header-navbar .navbar-container ul.nav li>a.nav-link i.flag-icon{margin-right:.5rem}.header-navbar .navbar-container ul.nav li.dropdown-user .dropdown-menu-right{right:12px;left:auto;padding:.5rem}.header-navbar .navbar-container ul.nav li.dropdown-user .dropdown-menu-right .dropdown-item{padding:10px}.header-navbar .navbar-container ul.nav li.dropdown-user .dropdown-menu-right .dropdown-item:active,.header-navbar .navbar-container ul.nav li.dropdown-user .dropdown-menu-right .dropdown-item:hover{background:#7367F0;color:#FFF!important}.header-navbar .navbar-container ul.nav li a.dropdown-user-link{padding:.7rem 1rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.header-navbar .navbar-container ul.nav li a.dropdown-user-link .user-name{display:inline-block;margin-bottom:.435rem;margin-left:.2rem}.header-navbar .navbar-container ul.nav li a.dropdown-user-link .user-status{font-size:smaller}.header-navbar .navbar-container ul.nav li a.dropdown-user-link img{box-shadow:0 4px 8px 0 rgba(0,0,0,.12),0 2px 4px 0 rgba(0,0,0,.08)}.header-navbar .navbar-container ul.nav li a.menu-toggle{padding:1.34rem .22rem 1.35rem 0}.header-navbar .navbar-container ul.nav li a.menu-toggle i{font-size:1.75rem}.header-navbar .navbar-container ul.nav li a.nav-link-label{padding:1.6rem 0 1.35rem .8rem}.header-navbar .navbar-container ul.nav li a.dropdown-user-link .user-nav{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end;float:left;margin-right:.8rem}.header-navbar .navbar-container ul.nav li div.input-group{padding:.7rem 1rem}.header-navbar .navbar-container ul.nav li i.ficon{font-size:1.5rem;color:#626262}.header-navbar .navbar-container ul.nav li i.ficon:hover{color:#7367F0}.header-navbar .navbar-container ul.nav li .media-list{max-height:18.2rem}.header-navbar .navbar-container ul.nav li .scrollable-container{position:relative}.header-navbar .navbar-container .dropdown-menu-media{width:26rem}.header-navbar .navbar-container .dropdown-menu-media .media-list .media{padding:1rem;border:none;border-bottom:1px solid #DAE1E7}.header-navbar .navbar-container .dropdown-menu-media .media-list .media:hover{background:#F8F8F8}.header-navbar .navbar-container .dropdown-menu-media .media-list .media .media-meta{color:#626262}.header-navbar .navbar-container .dropdown-menu-media .media-list a:last-of-type .media{border-bottom:none}.header-navbar .navbar-container .dropdown-menu-media .dropdown-menu-header{border-bottom:1px solid #DAE1E7}.header-navbar .navbar-container .dropdown-menu-media .dropdown-menu-footer a{padding:.3rem;border-top:1px solid #DAE1E7}.header-navbar .nav-item+.nav-item,.header-navbar.navbar-without-menu .navbar-container{margin-left:0}@media (max-width:767.98px){.header-navbar .navbar-header{width:100%!important;padding:.5rem 1rem;position:relative}.header-navbar .navbar-header .menu-toggle{top:2px;position:relative}.header-navbar .navbar-header .open-navbar-container i{font-size:1.8rem}.header-navbar .navbar-header .navbar-brand{position:absolute;left:50%;top:0;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}.header-navbar.navbar-with-menu .navbar-container{width:100%;display:table;margin:0;height:auto}}@media (max-width:991.98px){[data-menu=vertical-menu-modern] .header-navbar .navbar-header{width:100%!important;padding:.5rem 1rem;position:relative}[data-menu=vertical-menu-modern] .header-navbar .navbar-header .menu-toggle{top:2px;position:relative}[data-menu=vertical-menu-modern] .header-navbar .navbar-header .open-navbar-container i{font-size:1.8rem}[data-menu=vertical-menu-modern] .header-navbar .navbar-header .navbar-brand{position:absolute;left:50%;top:0;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}[data-menu=vertical-menu-modern] .header-navbar.navbar-with-menu .navbar-container{width:100%;display:table;margin:0;height:auto}[data-menu=vertical-menu-modern] .navbar-dark .navbar-header .navbar-nav .nav-link,[data-menu=vertical-menu-modern] .navbar-semi-dark .navbar-header .navbar-nav .nav-link{color:#FFF}[data-menu=vertical-menu-modern] .navbar-dark .navbar-container .navbar-nav .nav-link,[data-menu=vertical-menu-modern] .navbar-light .navbar-header .navbar-nav .nav-link,[data-menu=vertical-menu-modern] .navbar-semi-dark .navbar-container .navbar-nav .nav-link{color:#B8C2CC}}.navbar-light,.navbar-light.navbar-horizontal{background:#FFF}.navbar-light .navbar-nav .active.nav-link{background-color:rgba(0,0,0,.03)}.navbar-dark,.navbar-dark.navbar-horizontal{background:#B8C2CC}.navbar-light .navbar-nav .disabled.nav-link{color:#6C757D}.navbar-dark .navbar-brand{color:#FFF!important}.navbar-dark .nav-search .btn-secondary,.navbar-dark .nav-search .form-control{color:#FFF;background:#B8C2CC}.navbar-dark .navbar-nav .active.nav-link{background-color:rgba(255,255,255,.05)}.navbar-dark .navbar-nav .disabled.nav-link{color:#DAE1E7}.navbar-semi-dark{background:#FFF}.navbar-semi-dark .navbar-header{background:#B8C2CC}.navbar-semi-dark .navbar-header .brand-text{color:#FFF}.navbar-semi-dark .navbar-nav .nav-link{color:#B8C2CC}.navbar-semi-dark .navbar-nav .active.nav-link{background-color:rgba(0,0,0,.03)}.navbar-semi-dark .navbar-nav .disabled.nav-link{color:#6C757D}.navbar-semi-light{background:#B8C2CC}.navbar-semi-light .navbar-header{background:#FFF}.navbar-semi-light .navbar-header .brand-text{color:#B8C2CC}.navbar-semi-light .navbar-nav .nav-link{color:#FFF}.navbar-semi-light .navbar-nav .active.nav-link{background-color:rgba(0,0,0,.03)}.navbar-semi-light .navbar-nav .disabled.nav-link{color:#6C757D}@-moz-document url-prefix(){ul li a .children-in{position:relative;right:3px;top:-14px}}.navbar-menu-icon span{display:block;position:absolute;height:2px;width:100%;background:#B8C2CC;border-radius:9px;opacity:1;left:0;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transition:.25s ease-in-out;transition:.25s ease-in-out}.navbar-menu-icon span:nth-child(1){top:0}.navbar-menu-icon span:nth-child(2){top:10px}.navbar-menu-icon span:nth-child(3){top:20px}.navbar-menu-icon.show span:nth-child(1){top:10px;-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.navbar-menu-icon.show span:nth-child(2){opacity:0;left:-60px}.navbar-menu-icon.show span:nth-child(3){top:10px;-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}@media (max-width:767.98px){.header-navbar .navbar-nav .show{position:static}.header-navbar .navbar-nav .open-navbar-container{padding-top:.625rem}.header-navbar .navbar-container .show .dropdown-menu{right:0;left:0!important;float:none;width:auto;margin-top:0;max-height:400px;overflow-x:hidden}.header-navbar .navbar-container .dropdown-user .dropdown-menu-right{right:0!important}.header-navbar .navbar-container ul.nav li.nav-item i{margin-right:.2rem}.header-navbar .navbar-container ul.nav li a.dropdown-user-link{padding:.8rem .6rem}.header-navbar .navbar-container ul.nav li .dropdown-toggle::after{margin-right:0;margin-left:-2px}.navbar-dark .hamburger-inner,.navbar-dark .hamburger-inner::after,.navbar-dark .hamburger-inner::before,.navbar-semi-dark .hamburger-inner,.navbar-semi-dark .hamburger-inner::after,.navbar-semi-dark .hamburger-inner::before{background-color:#FFF}.navbar-dark .navbar-header .navbar-nav .nav-link,.navbar-semi-dark .navbar-header .navbar-nav .nav-link{color:#FFF}.navbar-dark .navbar-container .navbar-nav .nav-link,.navbar-light .navbar-container .navbar-nav .nav-link,.navbar-light .navbar-header .navbar-nav .nav-link,.navbar-semi-dark .navbar-container .navbar-nav .nav-link,.navbar-semi-light .navbar-container .navbar-nav .nav-link,.navbar-semi-light .navbar-header .navbar-nav .nav-link{color:#B8C2CC}}.headroom{will-change:transform;-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear}.headroom--pinned-top{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.headroom--unpinned-top{-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.headroom--pinned-bottom{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.headroom--unpinned-bottom{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}body[data-col='1-column'] .header-navbar.floating-nav{width:calc(100vw - (100vw - 100%) - calc(2.2rem * 2))}@media (min-width:1200px) and (-ms-high-contrast:active),(-ms-high-contrast:none){body:not([data-col='1-columns']) .header-navbar.floating-nav{width:calc(100vw - (100vw - 100%) - 60px - 260px)}}@media (max-width:1199.98px){.header-navbar .navbar-container ul.nav li a.dropdown-user-link{padding:.7rem 1.23rem}.header-navbar .navbar-container ul.nav li .dropdown-toggle::after{margin-right:0;margin-left:-2px}.header-navbar.navbar-static-top{left:0;width:100%}}@media (max-width:767px){#navbar-mobile.navbar-collapse .navbar-nav{margin:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}#navbar-mobile.navbar-collapse .navbar-nav .dropdown-menu{position:absolute}#navbar-mobile.navbar-collapse .navbar-nav .nav-item{float:left}}@media (max-width:991.98px){#navbar-mobile.navbar-collapse .navbar-nav{margin:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}#navbar-mobile.navbar-collapse .navbar-nav .dropdown-menu{position:absolute}#navbar-mobile.navbar-collapse .navbar-nav .nav-item{float:left}}@media only screen and (min-device-width:26.78em) and (max-device-width:47.64em) and (-webkit-min-device-pixel-ratio:2) and (orientation:landscape){.header-navbar .navbar-container .show .dropdown-menu{max-height:180px}}@media only screen and (min-device-width:29.57em) and (max-device-width:52.57em) and (-webkit-min-device-pixel-ratio:3) and (orientation:landscape){.header-navbar .navbar-container .show .dropdown-menu{max-height:280px}}#navbar-component .navbar{z-index:auto!important}#navbar-component .navbar.floating-nav{border-radius:.5rem}#navbar-component .navbar .navbar-nav .nav-item a{color:inherit}#navbar-component .navbar.header-navbar.navbar-dark .navbar-nav .nav-link,#navbar-component .navbar.header-navbar.navbar-dark .navbar-nav .nav-link i{color:#FFF}#navbar-component .navbar .navbar-nav .dropdown-language.show,#navbar-component .navbar .navbar-nav .dropdown-notification.show,#navbar-component .navbar .navbar-nav .dropdown-user.show{position:relative}#navbar-component .navbar .navbar-nav .dropdown-language .dropdown-menu.show,#navbar-component .navbar .navbar-nav .dropdown-notification .dropdown-menu.show,#navbar-component .navbar .navbar-nav .dropdown-user .dropdown-menu.show{position:absolute;right:0;left:auto!important}#navbar-component .navbar.navbar-dark .navbar-toggler,#navbar-component .navbar.navbar-light .navbar-toggler{font-size:1.2rem}#navbar-component .navbar.navbar-dark .navbar-toggler:focus,#navbar-component .navbar.navbar-light .navbar-toggler:focus{outline:0}#navbar-component #navbar-collapsed .navbar{border-radius:0}@media (min-width:992px){#navbar-component .navbar .navbar-container{background:inherit}#navbar-component .nav .dropdown-language{float:right}}@media (max-width:1201px){.header-navbar.fixed-top{left:0}.horizontal-layout .header-navbar .navbar-container{padding-left:1.5rem;padding-right:1.2rem}}@media (max-width:1199px){.header-navbar .navbar-container ul.nav li a.dropdown-user-link .user-name{margin-bottom:0}}@media (max-width:768px){#navbar-component .navbar .navbar-nav .dropdown-notification.show{position:static}}@media (max-width:575.98px){.header-navbar .navbar-container ul.nav li .selected-language{display:none}.header-navbar.floating-nav{width:calc(100vw - (100vw - 100%) - 3.5rem)!important;margin-left:1.2rem;margin-right:1.2rem}.content.app-content .content-area-wrapper{margin-left:1.2rem!important;margin-right:1.2rem!important}.header-navbar .navbar-container{padding-left:1rem!important;padding-right:0!important}}@media (max-width:992px){#navbar-component .navbar .navbar-container{background:inherit}#navbar-component .navbar .navbar-container .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-container #navbar-mobile .nav-back{margin-top:5px}}.card-deck,.card-group{margin-bottom:.75rem}.card{margin-bottom:2.2rem;border:none;border-radius:.5rem;box-shadow:0 4px 25px 0 rgba(0,0,0,.1);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.card .card{box-shadow:none!important}.card .card-subtitle{margin-top:.5rem}.card .card-title{font-weight:500;letter-spacing:.05rem;font-size:1.32rem;margin-bottom:.5rem}.card .card-bordered{border:1px solid rgba(0,0,0,.125)}.card .card-img{-o-object-fit:cover;object-fit:cover}.card .card-img-overlay{border-radius:.25rem}.card.card-fullscreen{display:block;z-index:9999;position:fixed;width:100%!important;height:100%!important;top:0;right:0;left:0;bottom:0;overflow:auto}.card .card-body[class*=border-bottom-]{border-bottom-width:2px!important}.card .card-img-overlay.bg-overlay{background:rgba(0,0,0,.45)}.card .card-img-overlay .text-muted{color:#1E1E1E!important}.card.card-minimal{border:none;box-shadow:none}.card .card-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;border-bottom:none;padding:1.5rem 1.5rem 0;background-color:transparent}.card .card-header .card-title{margin-bottom:0}.card .card-header .heading-elements,.card .card-header .heading-elements-toggle{background-color:inherit;position:absolute;top:17px;right:21px;cursor:pointer}.card .card-header .heading-elements-toggle.heading-top-elements .page-item,.card .card-header .heading-elements.heading-top-elements .page-item{display:inline-block}.card .card-header .heading-elements a,.card .card-header .heading-elements-toggle a{padding:0 0 0 8px}.card .card-header .heading-elements a.btn,.card .card-header .heading-elements-toggle a.btn{padding-top:6px;padding-bottom:6px}.card .card-header .heading-elements a[data-action=collapse] i,.card .card-header .heading-elements-toggle a[data-action=collapse] i{-webkit-transition:all .25s ease-out;transition:all .25s ease-out;display:inline-block}.card .card-header .heading-elements a[data-action=collapse].rotate i,.card .card-header .heading-elements-toggle a[data-action=collapse].rotate i{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.card .card-footer{border-top:1px solid #DAE1E7}.card-columns .card{margin-bottom:2.2rem}.text-white .card-text{color:#fff}.text-white .card-img-overlay .text-muted{color:#FFF!important}.text-white code{background-color:#fff}.card-head-inverse,.card-head-inverse .heading-elements i,.text-white .heading-elements i{color:#FFF}.card-transparent{background-color:transparent}@media (max-width:991.98px){.heading-elements{text-align:center}.heading-elements .list-inline{display:none}.heading-elements.visible{top:22px!important;display:block;margin-top:0;height:auto;left:0;z-index:997;position:absolute;width:100%}.heading-elements.visible .list-inline{background-color:#FFF;display:block;position:absolute;top:12px;right:15px}}@media (min-width:992px){.heading-elements-toggle{display:none}}.overlay-img-card .card-img-overlay,.overlay-img-card img{max-height:34.64rem}.activity-timeline.timeline-left{border-left:2px solid #DAE1E7;padding-left:40px;margin-left:1.5rem}.activity-timeline.timeline-left li{position:relative;margin-bottom:20px}.activity-timeline.timeline-left li p{margin-bottom:0}.activity-timeline.timeline-left li .timeline-icon{position:absolute;top:0;left:-4.3rem;padding:.7rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;border-radius:50%;color:#FFF}.activity-timeline.timeline-right{border-right:2px solid #DAE1E7;padding-right:40px;margin-right:1.5rem}.activity-timeline.timeline-right li{position:relative;margin-bottom:20px;text-align:right}.activity-timeline.timeline-right li p{margin-bottom:0}.activity-timeline.timeline-right li .timeline-icon{position:absolute;top:0;right:-4.3rem;padding:.6rem .7rem;border-radius:50%;color:#FFF}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.card-body,.card-content{min-height:1px}.profile-card-2 .card .card-header{display:block}.profile-card-1 .card .avatar,.profile-card-3 .card .avatar{margin-left:auto;margin-right:auto}}.breadcrumb{font-size:1rem;background-color:transparent;padding:.5rem 0 .5rem 1rem!important;border-left:1px solid #D6DCE1;border-radius:0}.breadcrumb>li+li::before{padding-right:.6rem;padding-left:.6rem}.breadcrumb .breadcrumb-item+.breadcrumb-item{padding-left:0}.breadcrumb .breadcrumb-item+.breadcrumb-item:before{content:'\e847';font-family:feather;color:#626262}.breadcrumb .breadcrumb-item.active{color:#626262}.badge,.badge[class*=badge-] a{color:#FFF}.breadcrumbs-right .breadcrumb{float:right}.nav.nav-pills.nav-justified .nav-item,.nav.nav-tabs.nav-justified .nav-item{float:none}.breadcrumbs-top .breadcrumb{margin:0;padding:0}#component-breadcrumbs .breadcrumb{border:none}#component-breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item:before{font-family:none;padding:0 1rem}#component-breadcrumbs .default-breadcrumb.breadcrumb .breadcrumb-item+.breadcrumb-item:before{content:'/'}#component-breadcrumbs .breadcrumb-dots.breadcrumb .breadcrumb-item+.breadcrumb-item:before{content:'.';position:relative;top:-4px}#component-breadcrumbs .breadcrumb-dashes.breadcrumb .breadcrumb-item+.breadcrumb-item:before{content:'-'}#component-breadcrumbs .breadcrumb-pipes.breadcrumb .breadcrumb-item+.breadcrumb-item:before{content:'|'}#component-breadcrumbs .breadcrumb-chevron.breadcrumb .breadcrumb-item+.breadcrumb-item:before{content:'\e844';font-family:feather;position:relative;top:1px}#breadcrumb-alignment .breadcrumb-wrapper{box-shadow:1px 1px 10px rgba(0,0,0,.1);padding:1px;border-radius:10px}#breadcrumb-alignment .breadcrumb-wrapper .breadcrumb{margin-top:.8rem}.badge{background-color:#7367F0;font-weight:400}.badge[class*=badge-] i{vertical-align:middle}.badge[class*=badge-] .dropdown-toggle i,.badge[class*=badge-] .dropdown-toggle span,.badge[class*=badge-].dropdown-toggle i,.badge[class*=badge-].dropdown-toggle span{vertical-align:text-top}.alert p,.alert span,.table-middle td{vertical-align:middle}.badge[class*=badge-] .dropdown-toggle i,.badge[class*=badge-].dropdown-toggle i{padding-left:.2rem}.badge[class*=badge-] .dropdown-toggle::after,.badge[class*=badge-].dropdown-toggle::after{position:relative;top:0;left:0;font-size:1rem}.badge[class*=badge-] .dropdown-menu a{color:#212529}.badge.badge-square{border-radius:0}.badge.badge-up{position:absolute;top:-1rem;right:-1rem}.nav.nav-tabs,.nav.nav-tabs .nav-item{position:relative}.badge.badge-up.badge-sm{top:-.5rem;right:-.5rem}.badge-xl{font-size:1.8rem}.badge-lg{font-size:1.2rem}.badge-md{font-size:1rem}.badge-sm{font-size:.7rem}.badge-icon i{font-size:100%;margin-right:5px}.dropup .badge{cursor:pointer}.nav{border-radius:.25rem}.nav.wrap-border{border:1px solid #DDD}.nav.wrap-border li.nav-header{margin:0 .5rem}.nav.wrap-border div,.nav.wrap-border li.nav-item{padding:2px .714rem}.nav.square-border,.nav.square-border .nav-item .nav-link.active{border-radius:0}.nav .modern-nav-toggle{padding:1.571rem 0}.nav.nav-pills{margin-bottom:1rem}.nav.nav-pills .nav-item .nav-link{border-radius:.357rem;padding:.3rem 1rem .2rem;font-size:.98rem;margin-right:.5rem;color:#000}.nav.nav-pills .nav-item .nav-link.active{color:#FFF}.nav.nav-pills .nav-item .nav-link.disabled{color:#B8C2CC}.nav.nav-pills .nav-item .nav-link.dropdown-toggle::after{top:1px;left:1px}.nav.nav-pills .nav-item.dropdown.show .nav-link{color:#FFF}.nav.nav-pills .nav-item.dropdown.show .dropdown-item.active:hover{color:#7367F0}.nav.nav-pills.nav-justified{width:100%}.nav.nav-pills.nav-justified .nav-link{text-align:center;margin-bottom:5px;margin-right:0;border-radius:.5rem;display:block}.nav.nav-pills.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:576px){.nav.nav-pills.nav-justified .nav-item{display:block;width:1%}.nav.nav-pills.nav-justified .nav-link{margin-bottom:0}.nav.nav-pills.nav-justified .nav-link.active,.nav.nav-pills.nav-justified .nav-link.active:focus,.nav.nav-pills.nav-justified .nav-link.active:hover{border-bottom-color:transparent}}.nav.nav-pills.nav-justified .nav-link.active,.nav.nav-pills.nav-justified .nav-link.active:focus,.nav.nav-pills.nav-justified .nav-link.active:hover{border:none}.nav.nav-pills.nav-active-bordered-pill .nav-item a.nav-link.active{border:1px solid #7367F0;border-radius:.25rem;color:#7367F0;background-color:#FFF}.nav.nav-tabs{border:none;margin-bottom:1rem;border-radius:0}.nav.nav-tabs .nav-item .nav-link{color:#626262;font-size:.95rem;border:none;min-width:auto;font-weight:450;padding:.61rem .635rem;border-radius:0}.alert,.alert p{font-weight:500}.nav.nav-tabs .nav-item .nav-link.active{border:none;position:relative;color:#7367F0;-webkit-transition:all .2s ease;transition:all .2s ease;background-color:transparent}.nav.nav-tabs .nav-item .nav-link.active:after{content:attr(data-before);height:2px;width:100%;left:0;position:absolute;bottom:0;top:100%;background:-webkit-linear-gradient(60deg,#7367F0,rgba(115,103,240,.5))!important;background:linear-gradient(30deg,#1b3fb4,rgb(33, 98, 242))!important;box-shadow:0 0 8px 0 rgba(115,103,240,.5)!important;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);-webkit-transition:all .2s linear;transition:all .2s linear}.nav.nav-tabs .nav-item .nav-link.dropdown-toggle::after{top:1px;left:1px}.nav.nav-tabs .nav-item .nav-link.disabled{color:#ADB5BD}.nav.nav-tabs.nav-justified{width:100%}.nav.nav-tabs.nav-justified .nav-link{text-align:center;margin-bottom:5px;margin-right:0;border-radius:.5rem}.nav.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:576px){.nav.nav-tabs.nav-justified .nav-item{display:block;width:1%}.nav.nav-tabs.nav-justified .nav-link{margin-bottom:0}.nav.nav-tabs.nav-justified .nav-link.active,.nav.nav-tabs.nav-justified .nav-link.active:focus,.nav.nav-tabs.nav-justified .nav-link.active:hover{border-bottom-color:transparent}}.nav.nav-tabs.nav-justified .nav-item a.nav-link{display:block;border-radius:0}.nav.nav-tabs.nav-justified .nav-item a.nav-link.active{border:none;background-color:#FFF}.nav.nav-tabs.nav-justified .nav-item a.nav-link:hover{border-color:transparent}.nav-vertical{overflow:hidden}.nav-vertical .nav.nav-tabs .nav-item .nav-link{border:none;margin-bottom:0}.nav-vertical .nav.nav-tabs .nav-item .nav-link.active{border:none;border-radius:0}.nav-vertical .nav.nav-tabs .nav-item .nav-link.active:after{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);left:auto;right:-1.5rem;bottom:100%;top:1.25rem;width:2.14rem}.nav-vertical .nav.nav-tabs .nav-item .nav-link:hover{border-right:none}.nav-vertical .nav.nav-tabs.nav-left{float:left;display:table;margin-right:1rem}.nav-vertical .nav.nav-tabs.nav-left~.tab-content .tab-pane{display:none;background-color:#FFF;overflow-y:auto}.nav-vertical .nav.nav-tabs.nav-left~.tab-content .tab-pane.active{display:block}.nav-vertical .nav.nav-tabs.nav-right{float:right;display:table;margin-left:1rem}.nav-vertical .nav.nav-tabs.nav-right .nav-item .nav-link.active:after{left:-1.5rem}.nav-vertical .nav.nav-tabs.nav-right~.tab-content .tab-pane{display:none;background-color:#FFF;overflow-y:auto;padding-right:1rem}.nav-vertical .nav.nav-tabs.nav-right~.tab-content .tab-pane.active{display:block}@media (max-width:576px){.nav-vertical .nav.nav-tabs .nav-item .nav-link.active:after{height:0}}.alert{border:none}.alert .close:focus{outline:0}.alert p{padding:2px 0;margin-bottom:0}.alert .alert-heading{font-weight:700;font-size:.9rem;padding:0 0 8px}.alert.alert-dark .alert-heading{box-shadow:rgba(52,58,64,.4) 0 6px 15px -7px}.alert.alert-light .alert-heading{box-shadow:rgba(248,249,250,.4) 0 6px 15px -7px}.media-list .media{padding:1.25rem;width:100%;margin-top:0}.media-list .media .media-left{padding-right:1rem}.media-list .media .media-right{padding-left:1rem}.media-list a.media{color:#B8C2CC!important}.media-bordered .media{border-top:1px solid #E4E7ED}.media-bordered .media:first-child{border-top:0}.progress{margin-bottom:3rem}.progress:last-child{margin-bottom:1rem}.progress.progress-xl{height:1.14rem}.progress.progress-lg{height:.857rem}.progress.progress-md{height:.57rem}.progress.progress-sm{height:.143rem}.progress .progress-bar{border-radius:1.28rem}ul.list-inline li{display:inline-block}ul.list-inline.list-inline-pipe>li+li:before{content:' | ';padding-right:2px}.list-group .list-group-item{line-height:1.5}.list-group .list-group-item.active:hover{background-color:#7367F0}.list-group .list-group-item.active:focus{outline:0}.list-group .list-group-item.active:focus:hover{color:#FFF}.list-group .list-group-item:hover{background-color:#F8F8F8}.list-group .list-group-item i{font-size:1.2rem;font-weight:100;position:relative}.list-group .list-group-item:not(.active):focus:active{color:inherit}.list-group .list-group-item-action:focus{outline:0}.list-group-item.gu-mirror{border-radius:0}.users-list li+li{margin-left:-.785rem}.users-list li img{border:2px solid #FFF;box-shadow:0 2px 10px 0 rgba(184,194,204,.3)}.users-list li .badge{color:#22292F}.toast-bs-container{z-index:1040;position:fixed;top:0;left:0;width:100%}.toast-bs-container .toast-position{position:relative;top:0;right:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-flex-wrap:wrap-reverse;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.toast-bs-container .toast-position .toast.show{opacity:1;z-index:1030}.toast-placement{position:static;top:0}.toast-placement .toast{position:fixed;top:0;z-index:1030}.toast{display:none;background-color:#fff;margin-top:.75rem}.toast .toast-header .close:active,.toast .toast-header .close:focus{outline:0}.toast.show.toast-wrapper{position:static}.toast.toast-translucent{opacity:1;display:block}.toast-header img{width:35px;height:24px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.toast-bs-container{position:fixed!important;left:74%!important}}.toast-bs-container,_:-ms-lang(x){position:fixed!important;left:74%!important}.accordion .collapse-title,.collapse-bordered .collapse-title{font-weight:400;font-size:1.2rem}.accordion .card-header,.collapse-bordered .card-header{cursor:pointer}.collapse-title,.collapse-title:hover{color:inherit}.collapse-bordered .card:first-child{border-top:0}.collapse-bordered .card:last-child{border-bottom:0}.collapse-bordered .card{margin-bottom:0;border-bottom:1px solid rgba(0,0,0,.04);border-radius:0}.collapse-bordered .card .card-header{padding:1rem}.collapse-bordered .card .card-body{padding:1rem;line-height:1.5}.accordion .collapse-border-item.card{border:1px solid rgba(0,0,0,.1);margin-bottom:0}.accordion .collapse-border-item.card:first-child{border-bottom:0}.accordion .collapse-border-item.card .card-header{padding:1rem}.accordion .collapse-border-item.card .card-body{padding:1rem;line-height:1.5}.accordion-shadow{box-shadow:0 0 4px 0 rgba(0,0,0,.1);padding:.15rem .75rem;border-radius:.5rem}.accordion-shadow .card.open{border-radius:.571rem;margin:10px 0;border:0;box-shadow:0 0 8px 0 rgba(0,0,0,.1)!important}.accordion-shadow .card:first-child{border-top-left-radius:.571rem;border-top-right-radius:.571rem}.accordion-shadow .card:last-child{border-bottom-left-radius:.571rem;border-bottom-right-radius:.571rem}.collapse-border{border:1px solid rgba(0,0,0,.1);border-radius:.5rem}.collapse-border+.collapse.show{border:1px solid rgba(0,0,0,.1)}.collapse-margin{margin-top:.71rem;margin-bottom:.71rem!important;box-shadow:0 2px 15px 0 rgba(0,0,0,.05);border-radius:5px;border-bottom:0 solid transparent!important}.collapse-margin .card-header{padding:1rem;border-radius:5px}.collapse-margin .card-body{padding:1rem;line-height:1.5rem}.pagination .page-item{border-radius:5rem}.pagination .page-item.first .page-link,.pagination .page-item.last .page-link,.pagination .page-item.next-item .page-link,.pagination .page-item.prev-item .page-link{color:#7367F0}.pagination .page-item.first.disabled .page-link,.pagination .page-item.last.disabled .page-link,.pagination .page-item.next-item.disabled .page-link,.pagination .page-item.prev-item.disabled .page-link{color:#6C757D}.pagination .page-item:not(.active) .page-link,.pagination .page-item:not(.first) .page-link,.pagination .page-item:not(.last) .page-link,.pagination .page-item:not(.next-item) .page-link,.pagination .page-item:not(.prev-item) .page-link{line-height:1.3}.pagination .page-item.prev-item{margin-right:.3571rem}.pagination .page-item.prev-item .page-link{background-color:#F0F0F0;padding:.572rem .651rem;border-radius:50%}.pagination .page-item.prev-item .page-link:before{content:'\e843';font-family:feather}.pagination .page-item.prev-item .page-link:hover{background:#7367F0;color:#FFF}.pagination .page-item.prev-item~.page-item:nth-child(2){border-top-left-radius:5rem;border-bottom-left-radius:5rem}.pagination .page-item.prev-item~.page-item:nth-child(2) .page-link{border-top-left-radius:5rem!important;border-bottom-left-radius:5rem!important}.pagination .page-item.prev-item~.page-item:nth-last-child(2){border-top-right-radius:5rem;border-bottom-right-radius:5rem}.pagination .page-item.prev-item~.page-item:nth-last-child(2) .page-link{border-top-right-radius:5rem!important;border-bottom-right-radius:5rem!important}.pagination .page-item.next-item{margin-left:.3571rem}.pagination .page-item.next-item .page-link{background-color:#F0F0F0;padding:.572rem .651rem;border-radius:50%}.pagination .page-item.next-item .page-link:after{content:'\e844';font-family:feather}.pagination .page-item.next-item .page-link:hover{background:#7367F0;color:#FFF}.pagination .page-item.prev .page-link:before,.pagination .page-item.previous .page-link:before{content:'\e843';font-family:feather}.pagination .page-item.next .page-link:after{content:'\e844';font-family:feather}.pagination .page-item .page-link{border:none;margin:0;color:rgba(0,0,0,.6);background-color:#F0F0F0;font-size:1rem;font-weight:700}.pagination .page-item .page-link i{position:relative;top:1px}.pagination .page-item .page-link:focus{box-shadow:none}.pagination .page-item .page-link:hover{color:#7367F0}.pagination .page-item.active{background-color:#F0F0F0;border-radius:0}.pagination .page-item.active .page-link{z-index:3;border-radius:5rem;background-color:#7367F0;color:#FFF;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}.pagination .page-item:first-child:not(.prev-item).active{border-top-left-radius:1.428rem;border-bottom-left-radius:1.428rem}.pagination .page-item:first-child:not(.prev-item).active .page-link{border-radius:5rem}.pagination .page-item:first-child:not(.prev-item) .page-link{border-top-left-radius:1.428rem;border-bottom-left-radius:1.428rem}.pagination .page-item:last-child:not(.next-item).active{border-top-right-radius:1.428rem;border-bottom-right-radius:1.428rem}.pagination .page-item:last-child:not(.next-item).active .page-link{border-radius:5rem}.pagination .page-item:last-child:not(.next-item) .page-link{border-top-right-radius:1.428rem;border-bottom-right-radius:1.428rem}.pagination.pagination-lg .page-item .page-link{font-size:1.5rem;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.modal .modal-header{background-color:#F8F8F8;border-radius:.42rem;padding:.8rem;border-bottom:none}.modal .modal-header .close{padding:.2rem .62rem;box-shadow:0 5px 20px 0 rgba(0,0,0,.1);border-radius:.357rem;background:#FFF;opacity:1;-webkit-transition:all .23s ease .1s;transition:all .23s ease .1s;position:relative;-webkit-transform:translate(8px,-2px);-ms-transform:translate(8px,-2px);transform:translate(8px,-2px)}.modal .modal-header .close span{font-weight:400;font-size:2rem;color:#7367F0}.modal .modal-header .close:active,.modal .modal-header .close:focus,.modal .modal-header .close:hover{opacity:1;outline:0;-webkit-transform:translate(5px,3px);-ms-transform:translate(5px,3px);transform:translate(5px,3px);box-shadow:none}.modal .modal-header[class*=bg-]{color:#FFF;border-bottom-left-radius:5px;border-bottom-right-radius:5px}.modal .modal-header[class*=bg-] .modal-title{color:#FFF}.modal .modal-header.bg-primary .close span{color:#7367F0}.modal .modal-header.bg-success .close span{color:#28A745}.modal .modal-header.bg-info .close span{color:#00CFE8}.modal .modal-header.bg-danger .close span{color:#DC3545}.modal .modal-header.bg-warning .close span{color:#FF9F43}.modal .modal-header.bg-dark .close span{color:#343A40}.modal .modal-content{border:none;overflow:visible;box-shadow:0 5px 20px 0 rgba(0,0,0,.1)}.modal .modal-footer{border-color:rgba(0,0,0,.05)}.modal-sm{max-width:400px}.modal-xs{max-width:300px}.modal-xl{max-width:94%;margin-left:3%;margin-right:3%}@media (max-width:576px){.modal{padding-right:1rem;padding-left:1rem}.modal .modal-sm,.modal .modal-xs{max-width:unset}}.popover{z-index:10}.popover .popover-header{color:#FFF;border:none;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.popover.bs-popover-bottom .arrow:after{border-bottom-color:#7367F0}.icon-bg-circle{color:#FFF;padding:.5rem;border-radius:50%}.icon-left,.icon-right{margin-right:.5rem}.icon-spin{display:inline-block;-webkit-animation:spin 1s infinite linear;animation:spin 1s infinite linear}.blockOverlay{z-index:1050!important}.blockElement,.blockPage{z-index:1051!important}@-webkit-keyframes spin{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}.hidden{display:none;visibility:hidden}a:hover{cursor:pointer}.round{border-radius:1.5rem}.square{border-radius:0}.icon-line-height{line-height:1.5rem!important}.spinner{display:inline-block;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@keyframes spin{0%,from{-webkit-transform:rotate(0);transform:rotate(0)}100%,to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}button:focus{outline:0} \ No newline at end of file diff --git a/assets/css/bootstrap.css b/assets/css/bootstrap.css new file mode 100644 index 0000000..dce0fc4 --- /dev/null +++ b/assets/css/bootstrap.css @@ -0,0 +1,7717 @@ +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +:root { + --blue: #00cfe8; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #ea5455; + --orange: #ff9f43; + --yellow: #ffc107; + --green: #28c76f; + --teal: #20c997; + --cyan: #3a50dc; + --white: #fff; + --gray: #b8c2cc; + --gray-dark: #1e1e1e; + --primary: #3a50dc; + --secondary: #b8c2cc; + --success: #28c76f; + --info: #00cfe8; + --warning: #ff9f43; + --danger: #ea5455; + --light: #babfc7; + --dark: #1e1e1e; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: "Montserrat", Helvetica, Arial, serif; + --font-family-monospace: "Montserrat", Helvetica, Arial, serif; } + +*, +*::before, +*::after { + box-sizing: border-box; } + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(34, 41, 47, 0); } + +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; } + +body { + margin: 0; + font-family: "Montserrat", Helvetica, Arial, serif; + font-size: 1rem; + font-weight: 400; + line-height: 1.45; + color: #626262; + text-align: left; + background-color: #f8f8f8; } + +[tabindex="-1"]:focus { + outline: 0 !important; } + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; } + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; } + +p { + margin-top: 0; + margin-bottom: 1rem; } + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + text-decoration-skip-ink: none; } + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; } + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; } + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; } + +dt { + font-weight: 700; } + +dd { + margin-bottom: .5rem; + margin-left: 0; } + +blockquote { + margin: 0 0 1rem; } + +b, +strong { + font-weight: bolder; } + +small { + font-size: 80%; } + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; } + +sub { + bottom: -.25em; } + +sup { + top: -.5em; } + +a { + color: #3a50dc; + text-decoration: none; + background-color: transparent; } + a:hover { + color: #3a50dc; + text-decoration: none; } + +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; } + a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { + color: inherit; + text-decoration: none; } + a:not([href]):not([tabindex]):focus { + outline: 0; } + +pre, +code, +kbd, +samp { + font-family: "Montserrat", Helvetica, Arial, serif; + font-size: 1em; } + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; } + +figure { + margin: 0 0 1rem; } + +img { + vertical-align: middle; + border-style: none; } + +svg { + overflow: hidden; + vertical-align: middle; } + +table { + border-collapse: collapse; } + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #b8c2cc; + text-align: left; + caption-side: bottom; } + +th { + text-align: inherit; } + +label { + display: inline-block; + margin-bottom: 0.5rem; } + +button { + border-radius: 0; } + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; } + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; } + +button, +input { + overflow: visible; } + +button, +select { + text-transform: none; } + +select { + word-wrap: normal; } + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; } + +button:not(:disabled), +[type="button"]:not(:disabled), +[type="reset"]:not(:disabled), +[type="submit"]:not(:disabled) { + cursor: pointer; } + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; } + +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; } + +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; } + +textarea { + overflow: auto; + resize: vertical; } + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; } + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; } + +progress { + vertical-align: baseline; } + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; } + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; } + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; } + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; } + +output { + display: inline-block; } + +summary { + display: list-item; + cursor: pointer; } + +template { + display: none; } + +[hidden] { + display: none !important; } + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-family: inherit; + font-weight: 500; + line-height: 1.2; + color: #2c2c2c; } + +h1, .h1 { + font-size: 2rem; } + +h2, .h2 { + font-size: 1.74rem; } + +h3, .h3 { + font-size: 1.51rem; } + +h4, .h4 { + font-size: 1.32rem; } + +h5, .h5 { + font-size: 1.14rem; } + +h6, .h6 { + font-size: 1rem; } + +.lead { + font-size: 1.25rem; + font-weight: 300; } + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; } + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; } + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; } + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; } + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(34, 41, 47, 0.1); } + +small, +.small { + font-size: smaller; + font-weight: 400; } + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; } + +.list-unstyled { + padding-left: 0; + list-style: none; } + +.list-inline { + padding-left: 0; + list-style: none; } + +.list-inline-item { + display: inline-block; } + .list-inline-item:not(:last-child) { + margin-right: 0.5rem; } + +.initialism { + font-size: 90%; + text-transform: uppercase; } + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; } + +.blockquote-footer { + display: block; + font-size: smaller; + color: #b8c2cc; } + .blockquote-footer::before { + content: "\2014\00A0"; } + +.img-fluid { + max-width: 100%; + height: auto; } + +.img-thumbnail { + padding: 0.25rem; + background-color: #f8f8f8; + border: 1px solid #dae1e7; + border-radius: 0.5rem; + max-width: 100%; + height: auto; } + +.figure { + display: inline-block; } + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; } + +.figure-caption { + font-size: 90%; + color: #b8c2cc; } + +code { + font-size: 90%; + color: #e83e8c; + word-break: break-word; } + a > code { + color: inherit; } + +kbd { + padding: 0.2rem 0.4rem; + font-size: 90%; + color: #fff; + background-color: #eee; + border-radius: 0.25rem; } + kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; } + +pre { + display: block; + font-size: 90%; + color: #2a2e30; } + pre code { + font-size: inherit; + color: inherit; + word-break: normal; } + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; } + +.container { + width: 100%; + padding-right: 14px; + padding-left: 14px; + margin-right: auto; + margin-left: auto; } + @media (min-width: 576px) { + .container { + max-width: 540px; } } + @media (min-width: 768px) { + .container { + max-width: 720px; } } + @media (min-width: 992px) { + .container { + max-width: 960px; } } + @media (min-width: 1200px) { + .container { + max-width: 1140px; } } + +.container-fluid { + width: 100%; + padding-right: 14px; + padding-left: 14px; + margin-right: auto; + margin-left: auto; } + +.row { + display: flex; + flex-wrap: wrap; + margin-right: -14px; + margin-left: -14px; } + +.no-gutters { + margin-right: 0; + margin-left: 0; } + .no-gutters > .col, + .no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; } + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + padding-right: 14px; + padding-left: 14px; } + +.col { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + +.col-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; } + +.col-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + +.col-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + +.col-3 { + flex: 0 0 25%; + max-width: 25%; } + +.col-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + +.col-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + +.col-6 { + flex: 0 0 50%; + max-width: 50%; } + +.col-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + +.col-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + +.col-9 { + flex: 0 0 75%; + max-width: 75%; } + +.col-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + +.col-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + +.col-12 { + flex: 0 0 100%; + max-width: 100%; } + +.order-first { + order: -1; } + +.order-last { + order: 13; } + +.order-0 { + order: 0; } + +.order-1 { + order: 1; } + +.order-2 { + order: 2; } + +.order-3 { + order: 3; } + +.order-4 { + order: 4; } + +.order-5 { + order: 5; } + +.order-6 { + order: 6; } + +.order-7 { + order: 7; } + +.order-8 { + order: 8; } + +.order-9 { + order: 9; } + +.order-10 { + order: 10; } + +.order-11 { + order: 11; } + +.order-12 { + order: 12; } + +.offset-1 { + margin-left: 8.33333%; } + +.offset-2 { + margin-left: 16.66667%; } + +.offset-3 { + margin-left: 25%; } + +.offset-4 { + margin-left: 33.33333%; } + +.offset-5 { + margin-left: 41.66667%; } + +.offset-6 { + margin-left: 50%; } + +.offset-7 { + margin-left: 58.33333%; } + +.offset-8 { + margin-left: 66.66667%; } + +.offset-9 { + margin-left: 75%; } + +.offset-10 { + margin-left: 83.33333%; } + +.offset-11 { + margin-left: 91.66667%; } + +@media (min-width: 576px) { + .col-sm { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-sm-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-sm-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-sm-3 { + flex: 0 0 25%; + max-width: 25%; } + .col-sm-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-sm-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-sm-6 { + flex: 0 0 50%; + max-width: 50%; } + .col-sm-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-sm-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-sm-9 { + flex: 0 0 75%; + max-width: 75%; } + .col-sm-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-sm-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-sm-12 { + flex: 0 0 100%; + max-width: 100%; } + .order-sm-first { + order: -1; } + .order-sm-last { + order: 13; } + .order-sm-0 { + order: 0; } + .order-sm-1 { + order: 1; } + .order-sm-2 { + order: 2; } + .order-sm-3 { + order: 3; } + .order-sm-4 { + order: 4; } + .order-sm-5 { + order: 5; } + .order-sm-6 { + order: 6; } + .order-sm-7 { + order: 7; } + .order-sm-8 { + order: 8; } + .order-sm-9 { + order: 9; } + .order-sm-10 { + order: 10; } + .order-sm-11 { + order: 11; } + .order-sm-12 { + order: 12; } + .offset-sm-0 { + margin-left: 0; } + .offset-sm-1 { + margin-left: 8.33333%; } + .offset-sm-2 { + margin-left: 16.66667%; } + .offset-sm-3 { + margin-left: 25%; } + .offset-sm-4 { + margin-left: 33.33333%; } + .offset-sm-5 { + margin-left: 41.66667%; } + .offset-sm-6 { + margin-left: 50%; } + .offset-sm-7 { + margin-left: 58.33333%; } + .offset-sm-8 { + margin-left: 66.66667%; } + .offset-sm-9 { + margin-left: 75%; } + .offset-sm-10 { + margin-left: 83.33333%; } + .offset-sm-11 { + margin-left: 91.66667%; } } + +@media (min-width: 768px) { + .col-md { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + .col-md-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-md-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-md-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-md-3 { + flex: 0 0 25%; + max-width: 25%; } + .col-md-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-md-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-md-6 { + flex: 0 0 50%; + max-width: 50%; } + .col-md-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-md-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-md-9 { + flex: 0 0 75%; + max-width: 75%; } + .col-md-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-md-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-md-12 { + flex: 0 0 100%; + max-width: 100%; } + .order-md-first { + order: -1; } + .order-md-last { + order: 13; } + .order-md-0 { + order: 0; } + .order-md-1 { + order: 1; } + .order-md-2 { + order: 2; } + .order-md-3 { + order: 3; } + .order-md-4 { + order: 4; } + .order-md-5 { + order: 5; } + .order-md-6 { + order: 6; } + .order-md-7 { + order: 7; } + .order-md-8 { + order: 8; } + .order-md-9 { + order: 9; } + .order-md-10 { + order: 10; } + .order-md-11 { + order: 11; } + .order-md-12 { + order: 12; } + .offset-md-0 { + margin-left: 0; } + .offset-md-1 { + margin-left: 8.33333%; } + .offset-md-2 { + margin-left: 16.66667%; } + .offset-md-3 { + margin-left: 25%; } + .offset-md-4 { + margin-left: 33.33333%; } + .offset-md-5 { + margin-left: 41.66667%; } + .offset-md-6 { + margin-left: 50%; } + .offset-md-7 { + margin-left: 58.33333%; } + .offset-md-8 { + margin-left: 66.66667%; } + .offset-md-9 { + margin-left: 75%; } + .offset-md-10 { + margin-left: 83.33333%; } + .offset-md-11 { + margin-left: 91.66667%; } } + +@media (min-width: 992px) { + .col-lg { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-lg-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-lg-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-lg-3 { + flex: 0 0 25%; + max-width: 25%; } + .col-lg-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-lg-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-lg-6 { + flex: 0 0 50%; + max-width: 50%; } + .col-lg-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-lg-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-lg-9 { + flex: 0 0 75%; + max-width: 75%; } + .col-lg-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-lg-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-lg-12 { + flex: 0 0 100%; + max-width: 100%; } + .order-lg-first { + order: -1; } + .order-lg-last { + order: 13; } + .order-lg-0 { + order: 0; } + .order-lg-1 { + order: 1; } + .order-lg-2 { + order: 2; } + .order-lg-3 { + order: 3; } + .order-lg-4 { + order: 4; } + .order-lg-5 { + order: 5; } + .order-lg-6 { + order: 6; } + .order-lg-7 { + order: 7; } + .order-lg-8 { + order: 8; } + .order-lg-9 { + order: 9; } + .order-lg-10 { + order: 10; } + .order-lg-11 { + order: 11; } + .order-lg-12 { + order: 12; } + .offset-lg-0 { + margin-left: 0; } + .offset-lg-1 { + margin-left: 8.33333%; } + .offset-lg-2 { + margin-left: 16.66667%; } + .offset-lg-3 { + margin-left: 25%; } + .offset-lg-4 { + margin-left: 33.33333%; } + .offset-lg-5 { + margin-left: 41.66667%; } + .offset-lg-6 { + margin-left: 50%; } + .offset-lg-7 { + margin-left: 58.33333%; } + .offset-lg-8 { + margin-left: 66.66667%; } + .offset-lg-9 { + margin-left: 75%; } + .offset-lg-10 { + margin-left: 83.33333%; } + .offset-lg-11 { + margin-left: 91.66667%; } } + +@media (min-width: 1200px) { + .col-xl { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-xl-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-xl-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-xl-3 { + flex: 0 0 25%; + max-width: 25%; } + .col-xl-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-xl-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-xl-6 { + flex: 0 0 50%; + max-width: 50%; } + .col-xl-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-xl-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-xl-9 { + flex: 0 0 75%; + max-width: 75%; } + .col-xl-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-xl-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-xl-12 { + flex: 0 0 100%; + max-width: 100%; } + .order-xl-first { + order: -1; } + .order-xl-last { + order: 13; } + .order-xl-0 { + order: 0; } + .order-xl-1 { + order: 1; } + .order-xl-2 { + order: 2; } + .order-xl-3 { + order: 3; } + .order-xl-4 { + order: 4; } + .order-xl-5 { + order: 5; } + .order-xl-6 { + order: 6; } + .order-xl-7 { + order: 7; } + .order-xl-8 { + order: 8; } + .order-xl-9 { + order: 9; } + .order-xl-10 { + order: 10; } + .order-xl-11 { + order: 11; } + .order-xl-12 { + order: 12; } + .offset-xl-0 { + margin-left: 0; } + .offset-xl-1 { + margin-left: 8.33333%; } + .offset-xl-2 { + margin-left: 16.66667%; } + .offset-xl-3 { + margin-left: 25%; } + .offset-xl-4 { + margin-left: 33.33333%; } + .offset-xl-5 { + margin-left: 41.66667%; } + .offset-xl-6 { + margin-left: 50%; } + .offset-xl-7 { + margin-left: 58.33333%; } + .offset-xl-8 { + margin-left: 66.66667%; } + .offset-xl-9 { + margin-left: 75%; } + .offset-xl-10 { + margin-left: 83.33333%; } + .offset-xl-11 { + margin-left: 91.66667%; } } + +.table { + width: 100%; + margin-bottom: 1rem; + color: #626262; } + .table th, + .table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #f8f8f8; } + .table thead th { + vertical-align: bottom; + border-bottom: 2px solid #f8f8f8; } + .table tbody + tbody { + border-top: 2px solid #f8f8f8; } + +.table-sm th, +.table-sm td { + padding: 0.3rem; } + +.table-bordered { + border: 1px solid #f8f8f8; } + .table-bordered th, + .table-bordered td { + border: 1px solid #f8f8f8; } + .table-bordered thead th, + .table-bordered thead td { + border-bottom-width: 2px; } + +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; } + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(34, 41, 47, 0.05); } + +.table-hover tbody tr:hover { + color: #626262; + background-color: rgba(34, 41, 47, 0.075); } + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #d8d4fb; } + +.table-primary th, +.table-primary td, +.table-primary thead th, +.table-primary tbody + tbody { + border-color: #b6b0f7; } + +.table-hover .table-primary:hover { + background-color: #c3bdf9; } + .table-hover .table-primary:hover > td, + .table-hover .table-primary:hover > th { + background-color: #c3bdf9; } + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #ebeef1; } + +.table-secondary th, +.table-secondary td, +.table-secondary thead th, +.table-secondary tbody + tbody { + border-color: #dadfe4; } + +.table-hover .table-secondary:hover { + background-color: #dce1e7; } + .table-hover .table-secondary:hover > td, + .table-hover .table-secondary:hover > th { + background-color: #dce1e7; } + +.table-success, +.table-success > th, +.table-success > td { + background-color: #c3efd7; } + +.table-success th, +.table-success td, +.table-success thead th, +.table-success tbody + tbody { + border-color: #8fe2b4; } + +.table-hover .table-success:hover { + background-color: #afeaca; } + .table-hover .table-success:hover > td, + .table-hover .table-success:hover > th { + background-color: #afeaca; } + +.table-info, +.table-info > th, +.table-info > td { + background-color: #b8f2f9; } + +.table-info th, +.table-info td, +.table-info thead th, +.table-info tbody + tbody { + border-color: #7ae6f3; } + +.table-hover .table-info:hover { + background-color: #a0eef7; } + .table-hover .table-info:hover > td, + .table-hover .table-info:hover > th { + background-color: #a0eef7; } + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffe4ca; } + +.table-warning th, +.table-warning td, +.table-warning thead th, +.table-warning tbody + tbody { + border-color: #ffcd9d; } + +.table-hover .table-warning:hover { + background-color: #ffd7b1; } + .table-hover .table-warning:hover > td, + .table-hover .table-warning:hover > th { + background-color: #ffd7b1; } + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f9cfcf; } + +.table-danger th, +.table-danger td, +.table-danger thead th, +.table-danger tbody + tbody { + border-color: #f4a6a7; } + +.table-hover .table-danger:hover { + background-color: #f6b8b8; } + .table-hover .table-danger:hover > td, + .table-hover .table-danger:hover > th { + background-color: #f6b8b8; } + +.table-light, +.table-light > th, +.table-light > td { + background-color: #ecedef; } + +.table-light th, +.table-light td, +.table-light thead th, +.table-light tbody + tbody { + border-color: #dbdee2; } + +.table-hover .table-light:hover { + background-color: #dee0e3; } + .table-hover .table-light:hover > td, + .table-hover .table-light:hover > th { + background-color: #dee0e3; } + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: silver; } + +.table-dark th, +.table-dark td, +.table-dark thead th, +.table-dark tbody + tbody { + border-color: #8a8a8a; } + +.table-hover .table-dark:hover { + background-color: #b3b3b3; } + .table-hover .table-dark:hover > td, + .table-hover .table-dark:hover > th { + background-color: #b3b3b3; } + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(34, 41, 47, 0.075); } + +.table-hover .table-active:hover { + background-color: rgba(23, 28, 32, 0.075); } + .table-hover .table-active:hover > td, + .table-hover .table-active:hover > th { + background-color: rgba(23, 28, 32, 0.075); } + +.table .thead-dark th { + color: #fff; + background-color: #1e1e1e; + border-color: #313131; } + +.table .thead-light th { + color: #4e5154; + background-color: #ededed; + border-color: #f8f8f8; } + +.table-dark { + color: #fff; + background-color: #1e1e1e; } + .table-dark th, + .table-dark td, + .table-dark thead th { + border-color: #313131; } + .table-dark.table-bordered { + border: 0; } + .table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); } + .table-dark.table-hover tbody tr:hover { + color: #fff; + background-color: rgba(255, 255, 255, 0.075); } + +@media (max-width: 575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-sm > .table-bordered { + border: 0; } } + +@media (max-width: 767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-md > .table-bordered { + border: 0; } } + +@media (max-width: 991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-lg > .table-bordered { + border: 0; } } + +@media (max-width: 1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-xl > .table-bordered { + border: 0; } } + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive > .table-bordered { + border: 0; } + +.form-control { + display: block; + width: 100%; + height: calc( 1.25em + 1.4rem + 1px); + padding: 0.7rem 0.7rem; + font-size: 0.96rem; + font-weight: 400; + line-height: 1.25; + color: #4e5154; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .form-control { + transition: none; } } + .form-control::-ms-expand { + background-color: transparent; + border: 0; } + .form-control:focus { + color: #4e5154; + background-color: #fff; + border-color: #3a50dc; + outline: 0; + box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15); } + .form-control::placeholder { + color: rgba(0, 0, 0, 0.5); + opacity: 1; } + .form-control:disabled, .form-control[readonly] { + background-color: #f5f5f1; + opacity: 1; } + +select.form-control:focus::-ms-value { + color: #4e5154; + background-color: #fff; } + +.form-control-file, +.form-control-range { + display: block; + width: 100%; } + +.col-form-label { + padding-top: calc(0.7rem + 1px); + padding-bottom: calc(0.7rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.25; } + +.col-form-label-lg { + padding-top: calc(1rem + 1px); + padding-bottom: calc(1rem + 1px); + font-size: 1.25rem; + line-height: 1.25; } + +.col-form-label-sm { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 0.7rem; + line-height: 1; } + +.form-control-plaintext { + display: block; + width: 100%; + padding-top: 0.7rem; + padding-bottom: 0.7rem; + margin-bottom: 0; + line-height: 1.25; + color: #adb5bd; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; } + .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; } + +.form-control-sm { + height: calc(1em + 1rem + 2px); + padding: 0.5rem 1.5rem; + font-size: 0.7rem; + line-height: 1; + border-radius: 4px; } + +.form-control-lg { + height: calc(1.25em + 2rem + 2px); + padding: 1rem 2.5rem; + font-size: 1.25rem; + line-height: 1.25; + border-radius: 6px; } + +select.form-control[size], select.form-control[multiple] { + height: auto; } + +textarea.form-control { + height: auto; } + +.form-group { + margin-bottom: 1rem; } + +.form-text { + display: block; + margin-top: 0.25rem; } + +.form-row { + display: flex; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; } + .form-row > .col, + .form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; } + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; } + +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; } + .form-check-input:disabled ~ .form-check-label { + color: #b8c2cc; } + +.form-check-label { + margin-bottom: 0; } + +.form-check-inline { + display: inline-flex; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; } + .form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; } + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: smaller; + color: #28c76f; } + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.4rem 0.775rem; + margin-top: .1rem; + font-size: 0.857rem; + line-height: 1.45; + color: #fff; + background-color: #28c76f; + border-radius: 0.428rem; } + +.was-validated .form-control:valid, .form-control.is-valid { + border-color: #28c76f; + padding-right: calc(1.25em + 1.4rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328c76f' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center right calc(0.3125em + 0.35rem); + background-size: calc(0.625em + 0.7rem) calc(0.625em + 0.7rem); } + .was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: #28c76f; + box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.25); } + .was-validated .form-control:valid ~ .valid-feedback, + .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, + .form-control.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.25em + 1.4rem); + background-position: top calc(0.3125em + 0.35rem) right calc(0.3125em + 0.35rem); } + +.was-validated .custom-select:valid, .custom-select.is-valid { + border-color: #28c76f; + padding-right: calc((1em + 1.4rem) * 3 / 4 + 1.7rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%231e1e1e' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.7rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328c76f' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.7rem/calc(0.625em + 0.7rem) calc(0.625em + 0.7rem); } + .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { + border-color: #28c76f; + box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.25); } + .was-validated .custom-select:valid ~ .valid-feedback, + .was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, + .custom-select.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .form-control-file:valid ~ .valid-feedback, +.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, +.form-control-file.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #28c76f; } + +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #28c76f; } + .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + border-color: #28c76f; } + +.was-validated .custom-control-input:valid ~ .valid-feedback, +.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, +.custom-control-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + border-color: #48da89; + background-color: #48da89; } + +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.25); } + +.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #28c76f; } + +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #28c76f; } + +.was-validated .custom-file-input:valid ~ .valid-feedback, +.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, +.custom-file-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + border-color: #28c76f; + box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.25); } + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: smaller; + color: #ea5455; } + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.4rem 0.775rem; + margin-top: .1rem; + font-size: 0.857rem; + line-height: 1.45; + color: #fff; + background-color: #ea5455; + border-radius: 0.428rem; } + +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: #ea5455; + padding-right: calc(1.25em + 1.4rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea5455' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23ea5455' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E"); + background-repeat: no-repeat; + background-position: center right calc(0.3125em + 0.35rem); + background-size: calc(0.625em + 0.7rem) calc(0.625em + 0.7rem); } + .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: #ea5455; + box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.25); } + .was-validated .form-control:invalid ~ .invalid-feedback, + .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, + .form-control.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.25em + 1.4rem); + background-position: top calc(0.3125em + 0.35rem) right calc(0.3125em + 0.35rem); } + +.was-validated .custom-select:invalid, .custom-select.is-invalid { + border-color: #ea5455; + padding-right: calc((1em + 1.4rem) * 3 / 4 + 1.7rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%231e1e1e' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.7rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea5455' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23ea5455' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.7rem/calc(0.625em + 0.7rem) calc(0.625em + 0.7rem); } + .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { + border-color: #ea5455; + box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.25); } + .was-validated .custom-select:invalid ~ .invalid-feedback, + .was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, + .custom-select.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .form-control-file:invalid ~ .invalid-feedback, +.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, +.form-control-file.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #ea5455; } + +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #ea5455; } + .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + border-color: #ea5455; } + +.was-validated .custom-control-input:invalid ~ .invalid-feedback, +.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, +.custom-control-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + border-color: #f08182; + background-color: #f08182; } + +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.25); } + +.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #ea5455; } + +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #ea5455; } + +.was-validated .custom-file-input:invalid ~ .invalid-feedback, +.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, +.custom-file-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + border-color: #ea5455; + box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.25); } + +.form-inline { + display: flex; + flex-flow: row wrap; + align-items: center; } + .form-inline .form-check { + width: 100%; } + @media (min-width: 576px) { + .form-inline label { + display: flex; + align-items: center; + justify-content: center; + margin-bottom: 0; } + .form-inline .form-group { + display: flex; + flex: 0 0 auto; + flex-flow: row wrap; + align-items: center; + margin-bottom: 0; } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; } + .form-inline .form-control-plaintext { + display: inline-block; } + .form-inline .input-group, + .form-inline .custom-select { + width: auto; } + .form-inline .form-check { + display: flex; + align-items: center; + justify-content: center; + width: auto; + padding-left: 0; } + .form-inline .form-check-input { + position: relative; + flex-shrink: 0; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; } + .form-inline .custom-control { + align-items: center; + justify-content: center; } + .form-inline .custom-control-label { + margin-bottom: 0; } } + +.btn { + display: inline-block; + font-weight: 400; + color: #626262; + text-align: center; + vertical-align: middle; + user-select: none; + background-color: transparent; + border: 0 solid transparent; + padding: 0.9rem 2rem; + font-size: 1rem; + line-height: 1; + border-radius: 0.4285rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .btn { + transition: none; } } + .btn:hover { + color: #626262; + text-decoration: none; } + .btn:focus, .btn.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.25); } + .btn.disabled, .btn:disabled { + opacity: 0.65; } + +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; } + +.btn-primary { + color: #fff; + background-color: #3a50dc; + border-color: #3a50dc; } + .btn-primary:hover { + color: #fff; + background-color: #5344ed; + border-color: #3a50dc; } + .btn-primary:focus, .btn-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(136, 126, 242, 0.5); } + .btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #3a50dc; + border-color: #3a50dc; } + .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, + .show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #3a50dc; + border-color: #3e2dea; } + .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, + .show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(136, 126, 242, 0.5); } + +.btn-secondary { + color: #2a2e30; + background-color: #b8c2cc; + border-color: #b8c2cc; } + .btn-secondary:hover { + color: #2a2e30; + background-color: #a2afbc; + border-color: #9aa9b7; } + .btn-secondary:focus, .btn-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(163, 172, 181, 0.5); } + .btn-secondary.disabled, .btn-secondary:disabled { + color: #2a2e30; + background-color: #b8c2cc; + border-color: #b8c2cc; } + .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, + .show > .btn-secondary.dropdown-toggle { + color: #2a2e30; + background-color: #9aa9b7; + border-color: #93a2b1; } + .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(163, 172, 181, 0.5); } + +.btn-success { + color: #fff; + background-color: #28c76f; + border-color: #28c76f; } + .btn-success:hover { + color: #fff; + background-color: #22a75d; + border-color: #1f9d57; } + .btn-success:focus, .btn-success.focus { + box-shadow: 0 0 0 0.2rem rgba(72, 207, 133, 0.5); } + .btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #28c76f; + border-color: #28c76f; } + .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, + .show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #1f9d57; + border-color: #1d9251; } + .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(72, 207, 133, 0.5); } + +.btn-info { + color: #fff; + background-color: #00cfe8; + border-color: #00cfe8; } + .btn-info:hover { + color: #fff; + background-color: #00adc2; + border-color: #00a1b5; } + .btn-info:focus, .btn-info.focus { + box-shadow: 0 0 0 0.2rem rgba(38, 214, 235, 0.5); } + .btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #00cfe8; + border-color: #00cfe8; } + .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, + .show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #00a1b5; + border-color: #0096a8; } + .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, + .show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(38, 214, 235, 0.5); } + +.btn-warning { + color: #2a2e30; + background-color: #ff9f43; + border-color: #ff9f43; } + .btn-warning:hover { + color: #2a2e30; + background-color: #ff8b1d; + border-color: #ff8510; } + .btn-warning:focus, .btn-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(223, 142, 64, 0.5); } + .btn-warning.disabled, .btn-warning:disabled { + color: #2a2e30; + background-color: #ff9f43; + border-color: #ff9f43; } + .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, + .show > .btn-warning.dropdown-toggle { + color: #2a2e30; + background-color: #ff8510; + border-color: #ff7e03; } + .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(223, 142, 64, 0.5); } + +.btn-danger { + color: #fff; + background-color: #ea5455; + border-color: #ea5455; } + .btn-danger:hover { + color: #fff; + background-color: #e63233; + border-color: #e42728; } + .btn-danger:focus, .btn-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(237, 110, 111, 0.5); } + .btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #ea5455; + border-color: #ea5455; } + .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, + .show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #e42728; + border-color: #e21c1d; } + .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(237, 110, 111, 0.5); } + +.btn-light { + color: #2a2e30; + background-color: #babfc7; + border-color: #babfc7; } + .btn-light:hover { + color: #2a2e30; + background-color: #a5abb6; + border-color: #9ea5b0; } + .btn-light:focus, .btn-light.focus { + box-shadow: 0 0 0 0.2rem rgba(164, 169, 176, 0.5); } + .btn-light.disabled, .btn-light:disabled { + color: #2a2e30; + background-color: #babfc7; + border-color: #babfc7; } + .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, + .show > .btn-light.dropdown-toggle { + color: #2a2e30; + background-color: #9ea5b0; + border-color: #979eaa; } + .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(164, 169, 176, 0.5); } + +.btn-dark { + color: #fff; + background-color: #1e1e1e; + border-color: #1e1e1e; } + .btn-dark:hover { + color: #fff; + background-color: #0b0b0b; + border-color: #050505; } + .btn-dark:focus, .btn-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(64, 64, 64, 0.5); } + .btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #1e1e1e; + border-color: #1e1e1e; } + .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, + .show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #050505; + border-color: black; } + .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(64, 64, 64, 0.5); } + +.btn-outline-primary { + color: #3a50dc; + border-color: #3a50dc; } + .btn-outline-primary:hover { + color: #fff; + background-color: #3a50dc; + border-color: #3a50dc; } + .btn-outline-primary:focus, .btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.5); } + .btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #3a50dc; + background-color: transparent; } + .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, + .show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #3a50dc; + border-color: #3a50dc; } + .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.5); } + +.btn-outline-secondary { + color: #b8c2cc; + border-color: #b8c2cc; } + .btn-outline-secondary:hover { + color: #2a2e30; + background-color: #b8c2cc; + border-color: #b8c2cc; } + .btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(184, 194, 204, 0.5); } + .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #b8c2cc; + background-color: transparent; } + .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, + .show > .btn-outline-secondary.dropdown-toggle { + color: #2a2e30; + background-color: #b8c2cc; + border-color: #b8c2cc; } + .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(184, 194, 204, 0.5); } + +.btn-outline-success { + color: #28c76f; + border-color: #28c76f; } + .btn-outline-success:hover { + color: #fff; + background-color: #28c76f; + border-color: #28c76f; } + .btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.5); } + .btn-outline-success.disabled, .btn-outline-success:disabled { + color: #28c76f; + background-color: transparent; } + .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, + .show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28c76f; + border-color: #28c76f; } + .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.5); } + +.btn-outline-info { + color: #00cfe8; + border-color: #00cfe8; } + .btn-outline-info:hover { + color: #fff; + background-color: #00cfe8; + border-color: #00cfe8; } + .btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5); } + .btn-outline-info.disabled, .btn-outline-info:disabled { + color: #00cfe8; + background-color: transparent; } + .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, + .show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #00cfe8; + border-color: #00cfe8; } + .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5); } + +.btn-outline-warning { + color: #ff9f43; + border-color: #ff9f43; } + .btn-outline-warning:hover { + color: #2a2e30; + background-color: #ff9f43; + border-color: #ff9f43; } + .btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 159, 67, 0.5); } + .btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ff9f43; + background-color: transparent; } + .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, + .show > .btn-outline-warning.dropdown-toggle { + color: #2a2e30; + background-color: #ff9f43; + border-color: #ff9f43; } + .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 159, 67, 0.5); } + +.btn-outline-danger { + color: #ea5455; + border-color: #ea5455; } + .btn-outline-danger:hover { + color: #fff; + background-color: #ea5455; + border-color: #ea5455; } + .btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.5); } + .btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #ea5455; + background-color: transparent; } + .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, + .show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #ea5455; + border-color: #ea5455; } + .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.5); } + +.btn-outline-light { + color: #babfc7; + border-color: #babfc7; } + .btn-outline-light:hover { + color: #2a2e30; + background-color: #babfc7; + border-color: #babfc7; } + .btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(186, 191, 199, 0.5); } + .btn-outline-light.disabled, .btn-outline-light:disabled { + color: #babfc7; + background-color: transparent; } + .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, + .show > .btn-outline-light.dropdown-toggle { + color: #2a2e30; + background-color: #babfc7; + border-color: #babfc7; } + .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(186, 191, 199, 0.5); } + +.btn-outline-dark { + color: #1e1e1e; + border-color: #1e1e1e; } + .btn-outline-dark:hover { + color: #fff; + background-color: #1e1e1e; + border-color: #1e1e1e; } + .btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(30, 30, 30, 0.5); } + .btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #1e1e1e; + background-color: transparent; } + .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, + .show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #1e1e1e; + border-color: #1e1e1e; } + .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(30, 30, 30, 0.5); } + +.btn-link { + font-weight: 400; + color: #3a50dc; + text-decoration: none; } + .btn-link:hover { + color: #3a50dc; + text-decoration: none; } + .btn-link:focus, .btn-link.focus { + text-decoration: none; + box-shadow: none; } + .btn-link:disabled, .btn-link.disabled { + color: #b8c2cc; + pointer-events: none; } + +.btn-lg, .btn-group-lg > .btn { + padding: 1rem 2.5rem; + font-size: 1.25rem; + line-height: 1.25; + border-radius: 0.4285rem; } + +.btn-sm, .btn-group-sm > .btn { + padding: 0.5rem 1.5rem; + font-size: 0.7rem; + line-height: 1; + border-radius: 0.4285rem; } + +.btn-block { + display: block; + width: 100%; } + .btn-block + .btn-block { + margin-top: 0.5rem; } + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; } + +.fade { + transition: opacity 0.15s linear; } + @media (prefers-reduced-motion: reduce) { + .fade { + transition: none; } } + .fade:not(.show) { + opacity: 0; } + +.collapse:not(.show) { + display: none; } + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition: height 0.35s ease; } + @media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; } } + +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; } + +.dropdown-toggle { + white-space: nowrap; } + .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; } + .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 10; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.5rem 0 0; + font-size: 0.9375rem; + color: #626262; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(34, 41, 47, 0.15); + border-radius: 5px; } + +.dropdown-menu-left { + right: auto; + left: 0; } + +.dropdown-menu-right { + right: 0; + left: auto; } + +@media (min-width: 576px) { + .dropdown-menu-sm-left { + right: auto; + left: 0; } + .dropdown-menu-sm-right { + right: 0; + left: auto; } } + +@media (min-width: 768px) { + .dropdown-menu-md-left { + right: auto; + left: 0; } + .dropdown-menu-md-right { + right: 0; + left: auto; } } + +@media (min-width: 992px) { + .dropdown-menu-lg-left { + right: auto; + left: 0; } + .dropdown-menu-lg-right { + right: 0; + left: auto; } } + +@media (min-width: 1200px) { + .dropdown-menu-xl-left { + right: auto; + left: 0; } + .dropdown-menu-xl-right { + right: 0; + left: auto; } } + +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.5rem; } + +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; } + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.5rem; } + +.dropright .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; } + +.dropright .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropright .dropdown-toggle::after { + vertical-align: 0; } + +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.5rem; } + +.dropleft .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; } + +.dropleft .dropdown-toggle::after { + display: none; } + +.dropleft .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; } + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropleft .dropdown-toggle::before { + vertical-align: 0; } + +.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { + right: auto; + bottom: auto; } + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid rgba(0, 0, 0, 0.08); } + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #2a2e30; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; } + .dropdown-item:hover, .dropdown-item:focus { + color: #1e2122; + text-decoration: none; + background-color: #f8f8f8; } + .dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #3a50dc; } + .dropdown-item.disabled, .dropdown-item:disabled { + color: #b8c2cc; + pointer-events: none; + background-color: transparent; } + +.dropdown-menu.show { + display: block; } + +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 1rem; + color: #b8c2cc; + white-space: nowrap; } + +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #2a2e30; } + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle; } + .btn-group > .btn, + .btn-group-vertical > .btn { + position: relative; + flex: 1 1 auto; } + .btn-group > .btn:hover, + .btn-group-vertical > .btn:hover { + z-index: 1; } + .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, + .btn-group-vertical > .btn:focus, + .btn-group-vertical > .btn:active, + .btn-group-vertical > .btn.active { + z-index: 1; } + +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; } + .btn-toolbar .input-group { + width: auto; } + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: 0; } + +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.dropdown-toggle-split { + padding-right: 1.5rem; + padding-left: 1.5rem; } + .dropdown-toggle-split::after, + .dropup .dropdown-toggle-split::after, + .dropright .dropdown-toggle-split::after { + margin-left: 0; } + .dropleft .dropdown-toggle-split::before { + margin-right: 0; } + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 1.125rem; + padding-left: 1.125rem; } + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 1.875rem; + padding-left: 1.875rem; } + +.btn-group-vertical { + flex-direction: column; + align-items: flex-start; + justify-content: center; } + .btn-group-vertical > .btn, + .btn-group-vertical > .btn-group { + width: 100%; } + .btn-group-vertical > .btn:not(:first-child), + .btn-group-vertical > .btn-group:not(:first-child) { + margin-top: 0; } + .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), + .btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } + .btn-group-vertical > .btn:not(:first-child), + .btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; } + .btn-group-toggle > .btn input[type="radio"], + .btn-group-toggle > .btn input[type="checkbox"], + .btn-group-toggle > .btn-group > .btn input[type="radio"], + .btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; } + +.input-group { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: stretch; + width: 100%; } + .input-group > .form-control, + .input-group > .form-control-plaintext, + .input-group > .custom-select, + .input-group > .custom-file { + position: relative; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; } + .input-group > .form-control + .form-control, + .input-group > .form-control + .custom-select, + .input-group > .form-control + .custom-file, + .input-group > .form-control-plaintext + .form-control, + .input-group > .form-control-plaintext + .custom-select, + .input-group > .form-control-plaintext + .custom-file, + .input-group > .custom-select + .form-control, + .input-group > .custom-select + .custom-select, + .input-group > .custom-select + .custom-file, + .input-group > .custom-file + .form-control, + .input-group > .custom-file + .custom-select, + .input-group > .custom-file + .custom-file { + margin-left: -1px; } + .input-group > .form-control:focus, + .input-group > .custom-select:focus, + .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; } + .input-group > .custom-file .custom-file-input:focus { + z-index: 4; } + .input-group > .form-control:not(:last-child), + .input-group > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .input-group > .form-control:not(:first-child), + .input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .input-group > .custom-file { + display: flex; + align-items: center; } + .input-group > .custom-file:not(:last-child) .custom-file-label, + .input-group > .custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.input-group-prepend, +.input-group-append { + display: flex; } + .input-group-prepend .btn, + .input-group-append .btn { + position: relative; + z-index: 2; } + .input-group-prepend .btn:focus, + .input-group-append .btn:focus { + z-index: 3; } + .input-group-prepend .btn + .btn, + .input-group-prepend .btn + .input-group-text, + .input-group-prepend .input-group-text + .input-group-text, + .input-group-prepend .input-group-text + .btn, + .input-group-append .btn + .btn, + .input-group-append .btn + .input-group-text, + .input-group-append .input-group-text + .input-group-text, + .input-group-append .input-group-text + .btn { + margin-left: -1px; } + +.input-group-prepend { + margin-right: -1px; } + +.input-group-append { + margin-left: -1px; } + +.input-group-text { + display: flex; + align-items: center; + padding: 0.7rem 0.7rem; + margin-bottom: 0; + font-size: 0.96rem; + font-weight: 400; + line-height: 1.25; + color: #4e5154; + text-align: center; + white-space: nowrap; + background-color: #ededed; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; } + .input-group-text input[type="radio"], + .input-group-text input[type="checkbox"] { + margin-top: 0; } + +.input-group-lg > .form-control:not(textarea), +.input-group-lg > .custom-select { + height: calc(1.25em + 2rem + 2px); } + +.input-group-lg > .form-control, +.input-group-lg > .custom-select, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 1rem 2.5rem; + font-size: 1.25rem; + line-height: 1.25; + border-radius: 6px; } + +.input-group-sm > .form-control:not(textarea), +.input-group-sm > .custom-select { + height: calc(1em + 1rem + 2px); } + +.input-group-sm > .form-control, +.input-group-sm > .custom-select, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.5rem 1.5rem; + font-size: 0.7rem; + line-height: 1; + border-radius: 4px; } + +.input-group-lg > .custom-select, +.input-group-sm > .custom-select { + padding-right: 1.7rem; } + +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, +.input-group > .input-group-append:not(:last-child) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.custom-control { + position: relative; + display: block; + min-height: 1.45rem; + padding-left: 1.5rem; } + +.custom-control-inline { + display: inline-flex; + margin-right: 1rem; } + +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0; } + .custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + border-color: #3a50dc; + background-color: #3a50dc; } + .custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15); } + .custom-control-input:focus:not(:checked) ~ .custom-control-label::before { + border-color: #3a50dc; } + .custom-control-input:not(:disabled):active ~ .custom-control-label::before { + color: #fff; + background-color: white; + border-color: white; } + .custom-control-input:disabled ~ .custom-control-label { + color: #b8c2cc; } + .custom-control-input:disabled ~ .custom-control-label::before { + background-color: #f5f5f1; } + +.custom-control-label { + position: relative; + margin-bottom: 0; + vertical-align: top; } + .custom-control-label::before { + position: absolute; + top: 0.225rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + background-color: #fff; + border: #adb5bd solid 1px; } + .custom-control-label::after { + position: absolute; + top: 0.225rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background: no-repeat 50% / 50% 50%; } + +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; } + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); } + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + border-color: #3a50dc; + background-color: #3a50dc; } + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); } + +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(115, 103, 240, 0.5); } + +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(115, 103, 240, 0.5); } + +.custom-radio .custom-control-label::before { + border-radius: 50%; } + +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); } + +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(115, 103, 240, 0.5); } + +.custom-switch { + padding-left: 3.5rem; } + .custom-switch .custom-control-label::before { + left: -3.5rem; + width: 3rem; + pointer-events: all; + border-radius: 0.857rem; } + .custom-switch .custom-control-label::after { + top: calc(0.225rem + 2px); + left: calc(-3.5rem + 2px); + width: 1.286rem; + height: 1.286rem; + background-color: #adb5bd; + border-radius: 0.857rem; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .custom-switch .custom-control-label::after { + transition: none; } } + .custom-switch .custom-control-input:checked ~ .custom-control-label::after { + background-color: #fff; + transform: translateX(2rem); } + .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(115, 103, 240, 0.5); } + +.custom-select { + display: inline-block; + width: 100%; + height: calc( 1.25em + 1.4rem + 1px); + padding: 0.7rem 1.7rem 0.7rem 0.7rem; + font-size: 0.96rem; + font-weight: 400; + line-height: 1.25; + color: #4e5154; + vertical-align: middle; + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%231e1e1e' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.7rem center/8px 10px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + appearance: none; } + .custom-select:focus { + border-color: #3a50dc; + outline: 0; + box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15); } + .custom-select:focus::-ms-value { + color: #4e5154; + background-color: #fff; } + .custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.7rem; + background-image: none; } + .custom-select:disabled { + color: #b8c2cc; + background-color: #ededed; } + .custom-select::-ms-expand { + display: none; } + +.custom-select-sm { + height: calc(1em + 1rem + 2px); + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1.5rem; + font-size: 0.7rem; } + +.custom-select-lg { + height: calc(1.25em + 2rem + 2px); + padding-top: 1rem; + padding-bottom: 1rem; + padding-left: 2.5rem; + font-size: 1.25rem; } + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc( 1.25em + 1.4rem + 1px); + margin-bottom: 0; } + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc( 1.25em + 1.4rem + 1px); + margin: 0; + opacity: 0; } + .custom-file-input:focus ~ .custom-file-label { + border-color: #3a50dc; + box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15); } + .custom-file-input:disabled ~ .custom-file-label { + background-color: #f5f5f1; } + .custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; } + .custom-file-input ~ .custom-file-label[data-browse]::after { + content: attr(data-browse); } + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc( 1.25em + 1.4rem + 1px); + padding: 0.7rem 0.7rem; + font-weight: 400; + line-height: 1.5rem; + color: #4e5154; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; } + .custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(1.25em + 1.4rem); + padding: 0.7rem 0.7rem; + line-height: 1.5rem; + color: #4e5154; + content: "Browse"; + background-color: #ededed; + border-left: inherit; + border-radius: 0 5px 5px 0; } + +.custom-range { + width: 100%; + height: calc(1rem + 0.4rem); + padding: 0; + background-color: transparent; + appearance: none; } + .custom-range:focus { + outline: none; } + .custom-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #f8f8f8, 0 3px 10px 0 rgba(0, 0, 0, 0.15); } + .custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #f8f8f8, 0 3px 10px 0 rgba(0, 0, 0, 0.15); } + .custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #f8f8f8, 0 3px 10px 0 rgba(0, 0, 0, 0.15); } + .custom-range::-moz-focus-outer { + border: 0; } + .custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #3a50dc; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .custom-range::-webkit-slider-thumb { + transition: none; } } + .custom-range::-webkit-slider-thumb:active { + background-color: white; } + .custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dae1e7; + border-color: transparent; + border-radius: 1rem; } + .custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #3a50dc; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .custom-range::-moz-range-thumb { + transition: none; } } + .custom-range::-moz-range-thumb:active { + background-color: white; } + .custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dae1e7; + border-color: transparent; + border-radius: 1rem; } + .custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: 0.2rem; + margin-left: 0.2rem; + background-color: #3a50dc; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .custom-range::-ms-thumb { + transition: none; } } + .custom-range::-ms-thumb:active { + background-color: white; } + .custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; } + .custom-range::-ms-fill-lower { + background-color: #dae1e7; + border-radius: 1rem; } + .custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dae1e7; + border-radius: 1rem; } + .custom-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; } + .custom-range:disabled::-webkit-slider-runnable-track { + cursor: default; } + .custom-range:disabled::-moz-range-thumb { + background-color: #adb5bd; } + .custom-range:disabled::-moz-range-track { + cursor: default; } + .custom-range:disabled::-ms-thumb { + background-color: #adb5bd; } + +.custom-control-label::before, +.custom-file-label, +.custom-select { + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .custom-control-label::before, + .custom-file-label, + .custom-select { + transition: none; } } + +.nav { + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + +.nav-link { + display: block; + padding: 0.357rem 0.5rem; } + .nav-link:hover, .nav-link:focus { + text-decoration: none; } + .nav-link.disabled { + color: #b8c2cc; + pointer-events: none; + cursor: default; } + +.nav-tabs { + border-bottom: 1px solid #dae1e7; } + .nav-tabs .nav-item { + margin-bottom: -1px; } + .nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } + .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #ededed #ededed #dae1e7; } + .nav-tabs .nav-link.disabled { + color: #b8c2cc; + background-color: transparent; + border-color: transparent; } + .nav-tabs .nav-link.active, + .nav-tabs .nav-item.show .nav-link { + color: #4e5154; + background-color: #f8f8f8; + border-color: #dae1e7 #dae1e7 #f8f8f8; } + .nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.nav-pills .nav-link { + border-radius: 0.5rem; } + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #3a50dc; } + +.nav-fill .nav-item { + flex: 1 1 auto; + text-align: center; } + +.nav-justified .nav-item { + flex-basis: 0; + flex-grow: 1; + text-align: center; } + +.tab-content > .tab-pane { + display: none; } + +.tab-content > .active { + display: block; } + +.navbar { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; + padding: 0.5rem 1rem; } + .navbar > .container, + .navbar > .container-fluid { + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; } + +.navbar-brand { + display: inline-block; + padding-top: -0.368rem; + padding-bottom: -0.368rem; + margin-right: 1rem; + font-size: 2rem; + line-height: inherit; + white-space: nowrap; } + .navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; } + +.navbar-nav { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + .navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; } + .navbar-nav .dropdown-menu { + position: static; + float: none; } + +.navbar-text { + display: inline-block; + padding-top: 0.357rem; + padding-bottom: 0.357rem; } + +.navbar-collapse { + flex-basis: 100%; + flex-grow: 1; + align-items: center; } + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 2rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.4285rem; } + .navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; } + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; } + +@media (max-width: 575.98px) { + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 576px) { + .navbar-expand-sm { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand-sm .navbar-nav { + flex-direction: row; } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + flex-wrap: nowrap; } + .navbar-expand-sm .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-sm .navbar-toggler { + display: none; } } + +@media (max-width: 767.98px) { + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 768px) { + .navbar-expand-md { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand-md .navbar-nav { + flex-direction: row; } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + flex-wrap: nowrap; } + .navbar-expand-md .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-md .navbar-toggler { + display: none; } } + +@media (max-width: 991.98px) { + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 992px) { + .navbar-expand-lg { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand-lg .navbar-nav { + flex-direction: row; } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + flex-wrap: nowrap; } + .navbar-expand-lg .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-lg .navbar-toggler { + display: none; } } + +@media (max-width: 1199.98px) { + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 1200px) { + .navbar-expand-xl { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand-xl .navbar-nav { + flex-direction: row; } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + flex-wrap: nowrap; } + .navbar-expand-xl .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-xl .navbar-toggler { + display: none; } } + +.navbar-expand { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand > .container, + .navbar-expand > .container-fluid { + padding-right: 0; + padding-left: 0; } + .navbar-expand .navbar-nav { + flex-direction: row; } + .navbar-expand .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand > .container, + .navbar-expand > .container-fluid { + flex-wrap: nowrap; } + .navbar-expand .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand .navbar-toggler { + display: none; } + +.navbar-light .navbar-brand { + color: rgba(34, 41, 47, 0.9); } + .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(34, 41, 47, 0.9); } + +.navbar-light .navbar-nav .nav-link { + color: rgba(34, 41, 47, 0.5); } + .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(34, 41, 47, 0.7); } + .navbar-light .navbar-nav .nav-link.disabled { + color: rgba(34, 41, 47, 0.3); } + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(34, 41, 47, 0.9); } + +.navbar-light .navbar-toggler { + color: rgba(34, 41, 47, 0.5); + border-color: rgba(34, 41, 47, 0.1); } + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(34, 41, 47, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } + +.navbar-light .navbar-text { + color: rgba(34, 41, 47, 0.5); } + .navbar-light .navbar-text a { + color: rgba(34, 41, 47, 0.9); } + .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(34, 41, 47, 0.9); } + +.navbar-dark .navbar-brand { + color: #fff; } + .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; } + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); } + .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); } + .navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); } + +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; } + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); } + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); } + .navbar-dark .navbar-text a { + color: #fff; } + .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; } + +.card { + position: relative; + display: flex; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(34, 41, 47, 0.125); + border-radius: 0.5rem; } + .card > hr { + margin-right: 0; + margin-left: 0; } + .card > .list-group:first-child .list-group-item:first-child { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } + .card > .list-group:last-child .list-group-item:last-child { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } + +.card-body { + flex: 1 1 auto; + padding: 1.5rem; } + +.card-title { + margin-bottom: 1.5rem; } + +.card-subtitle { + margin-top: -0.75rem; + margin-bottom: 0; } + +.card-text:last-child { + margin-bottom: 0; } + +.card-link:hover { + text-decoration: none; } + +.card-link + .card-link { + margin-left: 1.5rem; } + +.card-header { + padding: 1.5rem 1.5rem; + margin-bottom: 0; + background-color: rgba(34, 41, 47, 0.03); + border-bottom: 1px solid rgba(34, 41, 47, 0.125); } + .card-header:first-child { + border-radius: calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0; } + .card-header + .list-group .list-group-item:first-child { + border-top: 0; } + +.card-footer { + padding: 1.5rem 1.5rem; + background-color: rgba(34, 41, 47, 0.03); + border-top: 1px solid rgba(34, 41, 47, 0.125); } + .card-footer:last-child { + border-radius: 0 0 calc(0.5rem - 1px) calc(0.5rem - 1px); } + +.card-header-tabs { + margin-right: -0.75rem; + margin-bottom: -1.5rem; + margin-left: -0.75rem; + border-bottom: 0; } + +.card-header-pills { + margin-right: -0.75rem; + margin-left: -0.75rem; } + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; } + +.card-img { + width: 100%; + border-radius: calc(0.5rem - 1px); } + +.card-img-top { + width: 100%; + border-top-left-radius: calc(0.5rem - 1px); + border-top-right-radius: calc(0.5rem - 1px); } + +.card-img-bottom { + width: 100%; + border-bottom-right-radius: calc(0.5rem - 1px); + border-bottom-left-radius: calc(0.5rem - 1px); } + +.card-deck { + display: flex; + flex-direction: column; } + .card-deck .card { + margin-bottom: 14px; } + @media (min-width: 576px) { + .card-deck { + flex-flow: row wrap; + margin-right: -14px; + margin-left: -14px; } + .card-deck .card { + display: flex; + flex: 1 0 0%; + flex-direction: column; + margin-right: 14px; + margin-bottom: 0; + margin-left: 14px; } } + +.card-group { + display: flex; + flex-direction: column; } + .card-group > .card { + margin-bottom: 14px; } + @media (min-width: 576px) { + .card-group { + flex-flow: row wrap; } + .card-group > .card { + flex: 1 0 0%; + margin-bottom: 0; } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; } + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .card-group > .card:not(:last-child) .card-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; } + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; } + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .card-group > .card:not(:first-child) .card-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; } + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; } } + +.card-columns .card { + margin-bottom: 1.5rem; } + +@media (min-width: 576px) { + .card-columns { + column-count: 3; + column-gap: 1.25rem; + orphans: 1; + widows: 1; } + .card-columns .card { + display: inline-block; + width: 100%; } } + +.accordion > .card { + overflow: hidden; } + .accordion > .card:not(:first-of-type) .card-header:first-child { + border-radius: 0; } + .accordion > .card:not(:first-of-type):not(:last-of-type) { + border-bottom: 0; + border-radius: 0; } + .accordion > .card:first-of-type { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } + .accordion > .card:last-of-type { + border-top-left-radius: 0; + border-top-right-radius: 0; } + .accordion > .card .card-header { + margin-bottom: -1px; } + +.breadcrumb { + display: flex; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #ededed; + border-radius: 0.5rem; } + +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; } + .breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + color: #b8c2cc; + content: "/"; } + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; } + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; } + +.breadcrumb-item.active { + color: #b8c2cc; } + +.pagination { + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.5rem; } + +.page-link { + position: relative; + display: block; + padding: 0.65rem 0.911rem; + margin-left: -1px; + line-height: 1.25; + color: #3a50dc; + background-color: #fff; + border: 1px solid #dae1e7; } + .page-link:hover { + z-index: 2; + color: #3a50dc; + text-decoration: none; + background-color: #ededed; + border-color: #dae1e7; } + .page-link:focus { + z-index: 2; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.25); } + +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } + +.page-item:last-child .page-link { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } + +.page-item.active .page-link { + z-index: 1; + color: #fff; + background-color: #3a50dc; + border-color: #3a50dc; } + +.page-item.disabled .page-link { + color: #b8c2cc; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dae1e7; } + +.pagination-lg .page-link { + padding: 0.5rem 1rem; + font-size: 2rem; + line-height: 1.25; } + +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.6rem; + border-bottom-left-radius: 0.6rem; } + +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.6rem; + border-bottom-right-radius: 0.6rem; } + +.pagination-sm .page-link { + padding: 0.5rem 0.75rem; + font-size: 1rem; + line-height: 1; } + +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } + +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } + +.badge { + display: inline-block; + padding: 0.35em 0.4em; + font-size: 80%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .badge { + transition: none; } } + a.badge:hover, a.badge:focus { + text-decoration: none; } + .badge:empty { + display: none; } + +.btn .badge { + position: relative; + top: -1px; } + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; } + +.badge-primary { + color: #fff; + background-color: #3a50dc; } + a.badge-primary:hover, a.badge-primary:focus { + color: #fff; + background-color: #3a50dc; } + a.badge-primary:focus, a.badge-primary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.5); } + +.badge-secondary { + color: #2a2e30; + background-color: #b8c2cc; } + a.badge-secondary:hover, a.badge-secondary:focus { + color: #2a2e30; + background-color: #9aa9b7; } + a.badge-secondary:focus, a.badge-secondary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(184, 194, 204, 0.5); } + +.badge-success { + color: #fff; + background-color: #28c76f; } + a.badge-success:hover, a.badge-success:focus { + color: #fff; + background-color: #1f9d57; } + a.badge-success:focus, a.badge-success.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.5); } + +.badge-info { + color: #fff; + background-color: #00cfe8; } + a.badge-info:hover, a.badge-info:focus { + color: #fff; + background-color: #00a1b5; } + a.badge-info:focus, a.badge-info.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5); } + +.badge-warning { + color: #2a2e30; + background-color: #ff9f43; } + a.badge-warning:hover, a.badge-warning:focus { + color: #2a2e30; + background-color: #ff8510; } + a.badge-warning:focus, a.badge-warning.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 159, 67, 0.5); } + +.badge-danger { + color: #fff; + background-color: #ea5455; } + a.badge-danger:hover, a.badge-danger:focus { + color: #fff; + background-color: #e42728; } + a.badge-danger:focus, a.badge-danger.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.5); } + +.badge-light { + color: #2a2e30; + background-color: #babfc7; } + a.badge-light:hover, a.badge-light:focus { + color: #2a2e30; + background-color: #9ea5b0; } + a.badge-light:focus, a.badge-light.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(186, 191, 199, 0.5); } + +.badge-dark { + color: #fff; + background-color: #1e1e1e; } + a.badge-dark:hover, a.badge-dark:focus { + color: #fff; + background-color: #050505; } + a.badge-dark:focus, a.badge-dark.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(30, 30, 30, 0.5); } + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #ededed; + border-radius: 0.6rem; } + @media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; } } + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; } + +.alert { + position: relative; + padding: 0.71rem 0.71rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.5rem; } + +.alert-heading { + color: inherit; } + +.alert-link { + font-weight: 700; } + +.alert-dismissible { + padding-right: 2.92rem; } + .alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.71rem 0.71rem; + color: inherit; } + +.alert-primary { + color: #4c4993; + background-color: #e3e1fc; + border-color: #d8d4fb; } + .alert-primary hr { + border-top-color: #c3bdf9; } + .alert-primary .alert-link { + color: #3a3871; } + +.alert-secondary { + color: #707981; + background-color: #f1f3f5; + border-color: #ebeef1; } + .alert-secondary hr { + border-top-color: #dce1e7; } + .alert-secondary .alert-link { + color: #585f66; } + +.alert-success { + color: #257b50; + background-color: #d4f4e2; + border-color: #c3efd7; } + .alert-success hr { + border-top-color: #afeaca; } + .alert-success .alert-link { + color: #195437; } + +.alert-info { + color: #107f8f; + background-color: #ccf5fa; + border-color: #b8f2f9; } + .alert-info hr { + border-top-color: #a0eef7; } + .alert-info .alert-link { + color: #0b5661; } + +.alert-warning { + color: #956639; + background-color: #ffecd9; + border-color: #ffe4ca; } + .alert-warning hr { + border-top-color: #ffd7b1; } + .alert-warning .alert-link { + color: #704d2b; } + +.alert-danger { + color: #8a3f43; + background-color: #fbdddd; + border-color: #f9cfcf; } + .alert-danger hr { + border-top-color: #f6b8b8; } + .alert-danger .alert-link { + color: #672f32; } + +.alert-light { + color: #71777e; + background-color: #f1f2f4; + border-color: #ecedef; } + .alert-light hr { + border-top-color: #dee0e3; } + .alert-light .alert-link { + color: #595e63; } + +.alert-dark { + color: #202326; + background-color: #d2d2d2; + border-color: silver; } + .alert-dark hr { + border-top-color: #b3b3b3; } + .alert-dark .alert-link { + color: #090a0a; } + +@keyframes progress-bar-stripes { + from { + background-position: 0.357rem 0; } + to { + background-position: 0 0; } } + +.progress { + display: flex; + height: 0.357rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #ededed; + border-radius: 1.28rem; } + +.progress-bar { + display: flex; + flex-direction: column; + justify-content: center; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #3a50dc; + transition: width 0.6s ease; } + @media (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; } } + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 0.357rem 0.357rem; } + +.progress-bar-animated { + animation: progress-bar-stripes 1s linear infinite; } + @media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + animation: none; } } + +.media { + display: flex; + align-items: flex-start; } + +.media-body { + flex: 1; } + +.list-group { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; } + +.list-group-item-action { + width: 100%; + color: #4e5154; + text-align: inherit; } + .list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #4e5154; + text-decoration: none; + background-color: #babfc7; } + .list-group-item-action:active { + color: #626262; + background-color: #ededed; } + +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(34, 41, 47, 0.125); } + .list-group-item:first-child { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } + .list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } + .list-group-item.disabled, .list-group-item:disabled { + color: #b8c2cc; + pointer-events: none; + background-color: #fff; } + .list-group-item.active { + z-index: 2; + color: #fff; + background-color: #3a50dc; + border-color: #3a50dc; } + +.list-group-horizontal { + flex-direction: row; } + .list-group-horizontal .list-group-item { + margin-right: -1px; + margin-bottom: 0; } + .list-group-horizontal .list-group-item:first-child { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + border-top-right-radius: 0; } + .list-group-horizontal .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0; } + +@media (min-width: 576px) { + .list-group-horizontal-sm { + flex-direction: row; } + .list-group-horizontal-sm .list-group-item { + margin-right: -1px; + margin-bottom: 0; } + .list-group-horizontal-sm .list-group-item:first-child { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + border-top-right-radius: 0; } + .list-group-horizontal-sm .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0; } } + +@media (min-width: 768px) { + .list-group-horizontal-md { + flex-direction: row; } + .list-group-horizontal-md .list-group-item { + margin-right: -1px; + margin-bottom: 0; } + .list-group-horizontal-md .list-group-item:first-child { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + border-top-right-radius: 0; } + .list-group-horizontal-md .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0; } } + +@media (min-width: 992px) { + .list-group-horizontal-lg { + flex-direction: row; } + .list-group-horizontal-lg .list-group-item { + margin-right: -1px; + margin-bottom: 0; } + .list-group-horizontal-lg .list-group-item:first-child { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + border-top-right-radius: 0; } + .list-group-horizontal-lg .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0; } } + +@media (min-width: 1200px) { + .list-group-horizontal-xl { + flex-direction: row; } + .list-group-horizontal-xl .list-group-item { + margin-right: -1px; + margin-bottom: 0; } + .list-group-horizontal-xl .list-group-item:first-child { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + border-top-right-radius: 0; } + .list-group-horizontal-xl .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0; } } + +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; + border-radius: 0; } + .list-group-flush .list-group-item:last-child { + margin-bottom: -1px; } + +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; } + +.list-group-flush:last-child .list-group-item:last-child { + margin-bottom: 0; + border-bottom: 0; } + +.list-group-item-primary { + color: #4c4993; + background-color: #d8d4fb; } + .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #4c4993; + background-color: #c3bdf9; } + .list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #4c4993; + border-color: #4c4993; } + +.list-group-item-secondary { + color: #707981; + background-color: #ebeef1; } + .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #707981; + background-color: #dce1e7; } + .list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #707981; + border-color: #707981; } + +.list-group-item-success { + color: #257b50; + background-color: #c3efd7; } + .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #257b50; + background-color: #afeaca; } + .list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #257b50; + border-color: #257b50; } + +.list-group-item-info { + color: #107f8f; + background-color: #b8f2f9; } + .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #107f8f; + background-color: #a0eef7; } + .list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #107f8f; + border-color: #107f8f; } + +.list-group-item-warning { + color: #956639; + background-color: #ffe4ca; } + .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #956639; + background-color: #ffd7b1; } + .list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #956639; + border-color: #956639; } + +.list-group-item-danger { + color: #8a3f43; + background-color: #f9cfcf; } + .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #8a3f43; + background-color: #f6b8b8; } + .list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #8a3f43; + border-color: #8a3f43; } + +.list-group-item-light { + color: #71777e; + background-color: #ecedef; } + .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #71777e; + background-color: #dee0e3; } + .list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #71777e; + border-color: #71777e; } + +.list-group-item-dark { + color: #202326; + background-color: silver; } + .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #202326; + background-color: #b3b3b3; } + .list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #202326; + border-color: #202326; } + +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #22292f; + text-shadow: 0 1px 0 #fff; + opacity: .5; } + .close:hover { + color: #22292f; + text-decoration: none; } + .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + opacity: .75; } + +button.close { + padding: 0; + background-color: transparent; + border: 0; + appearance: none; } + +a.close.disabled { + pointer-events: none; } + +.toast { + max-width: 350px; + overflow: hidden; + font-size: 0.875rem; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: 0 0.25rem 0.75rem rgba(34, 41, 47, 0.1); + backdrop-filter: blur(10px); + opacity: 0; + border-radius: 0.25rem; } + .toast:not(:last-child) { + margin-bottom: 0.75rem; } + .toast.showing { + opacity: 1; } + .toast.show { + display: block; + opacity: 1; } + .toast.hide { + display: none; } + +.toast-header { + display: flex; + align-items: center; + padding: 0.25rem 0.75rem; + color: #b8c2cc; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); } + +.toast-body { + padding: 0.75rem; } + +.modal-open { + overflow: hidden; } + .modal-open .modal { + overflow-x: hidden; + overflow-y: auto; } + +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; } + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; } + .modal.fade .modal-dialog { + transition: transform 0.3s ease-out; + transform: translate(0, -50px); } + @media (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + transition: none; } } + .modal.show .modal-dialog { + transform: none; } + +.modal-dialog-scrollable { + display: flex; + max-height: calc(100% - 1rem); } + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 1rem); + overflow: hidden; } + .modal-dialog-scrollable .modal-header, + .modal-dialog-scrollable .modal-footer { + flex-shrink: 0; } + .modal-dialog-scrollable .modal-body { + overflow-y: auto; } + +.modal-dialog-centered { + display: flex; + align-items: center; + min-height: calc(100% - 1rem); } + .modal-dialog-centered::before { + display: block; + height: calc(100vh - 1rem); + content: ""; } + .modal-dialog-centered.modal-dialog-scrollable { + flex-direction: column; + justify-content: center; + height: 100%; } + .modal-dialog-centered.modal-dialog-scrollable .modal-content { + max-height: none; } + .modal-dialog-centered.modal-dialog-scrollable::before { + content: none; } + +.modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(34, 41, 47, 0.2); + border-radius: 0.6rem; + outline: 0; } + +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #22292f; } + .modal-backdrop.fade { + opacity: 0; } + .modal-backdrop.show { + opacity: 0.5; } + +.modal-header { + display: flex; + align-items: flex-start; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #ededed; + border-top-left-radius: 0.6rem; + border-top-right-radius: 0.6rem; } + .modal-header .close { + padding: 1rem 1rem; + margin: -1rem -1rem -1rem auto; } + +.modal-title { + margin-bottom: 0; + line-height: 1.45; } + +.modal-body { + position: relative; + flex: 1 1 auto; + padding: 1rem; } + +.modal-footer { + display: flex; + align-items: center; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #ededed; + border-bottom-right-radius: 0.6rem; + border-bottom-left-radius: 0.6rem; } + .modal-footer > :not(:first-child) { + margin-left: .25rem; } + .modal-footer > :not(:last-child) { + margin-right: .25rem; } + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; } + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; } + .modal-dialog-scrollable { + max-height: calc(100% - 3.5rem); } + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 3.5rem); } + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); } + .modal-dialog-centered::before { + height: calc(100vh - 3.5rem); } + .modal-sm { + max-width: 300px; } } + +@media (min-width: 992px) { + .modal-lg, + .modal-xl { + max-width: 800px; } } + +@media (min-width: 1200px) { + .modal-xl { + max-width: 1140px; } } + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: "Montserrat", Helvetica, Arial, serif; + font-style: normal; + font-weight: 400; + line-height: 1.45; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.857rem; + word-wrap: break-word; + opacity: 0; } + .tooltip.show { + opacity: 1; } + .tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; } + .tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; } + .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; } + .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #323232; } + +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; } + .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #323232; } + +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; } + .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; } + .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #323232; } + +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; } + .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #323232; } + +.tooltip-inner { + max-width: 220px; + padding: 0.4rem 0.775rem; + color: #fff; + text-align: center; + background-color: #323232; + border-radius: 0.428rem; } + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: "Montserrat", Helvetica, Arial, serif; + font-style: normal; + font-weight: 400; + line-height: 1.45; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.857rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(34, 41, 47, 0.2); + border-radius: 0.428rem; } + .popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.6rem; } + .popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; } + .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { + bottom: calc((0.5rem + 1px) * -1); } + .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(34, 41, 47, 0.25); } + .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; } + +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; } + .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { + left: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.6rem 0; } + .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(34, 41, 47, 0.25); } + .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; } + +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; } + .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { + top: calc((0.5rem + 1px) * -1); } + .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(34, 41, 47, 0.25); } + .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; } + .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #3a50dc; } + +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; } + .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { + right: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.6rem 0; } + .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(34, 41, 47, 0.25); } + .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; } + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + color: #2c2c2c; + background-color: #3a50dc; + border-bottom: 1px solid #3a50dc; + border-top-left-radius: calc(0.6rem - 1px); + border-top-right-radius: calc(0.6rem - 1px); } + .popover-header:empty { + display: none; } + +.popover-body { + padding: 0.5rem 0.75rem; + color: #626262; } + +.carousel { + position: relative; } + +.carousel.pointer-event { + touch-action: pan-y; } + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; } + .carousel-inner::after { + display: block; + clear: both; + content: ""; } + +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + backface-visibility: hidden; + transition: transform 0.6s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; } } + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; } + +.carousel-item-next:not(.carousel-item-left), +.active.carousel-item-right { + transform: translateX(100%); } + +.carousel-item-prev:not(.carousel-item-right), +.active.carousel-item-left { + transform: translateX(-100%); } + +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + transform: none; } + +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + z-index: 1; + opacity: 1; } + +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + z-index: 0; + opacity: 0; + transition: 0s 0.6s opacity; } + @media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-right { + transition: none; } } + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: flex; + align-items: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; + transition: opacity 0.15s ease; } + @media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + transition: none; } } + .carousel-control-prev:hover, .carousel-control-prev:focus, + .carousel-control-next:hover, + .carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; } + +.carousel-control-prev { + left: 0; } + +.carousel-control-next { + right: 0; } + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: no-repeat 50% / 100% 100%; } + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); } + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); } + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 15; + display: flex; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; } + .carousel-indicators li { + box-sizing: content-box; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + transition: opacity 0.6s ease; } + @media (prefers-reduced-motion: reduce) { + .carousel-indicators li { + transition: none; } } + .carousel-indicators .active { + opacity: 1; } + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; } + +@keyframes spinner-border { + to { + transform: rotate(360deg); } } + +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + animation: spinner-border .75s linear infinite; } + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; } + +@keyframes spinner-grow { + 0% { + transform: scale(0); } + 50% { + opacity: 1; } } + +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + animation: spinner-grow .75s linear infinite; } + +.spinner-grow-sm { + width: 1rem; + height: 1rem; } + +.align-baseline { + vertical-align: baseline !important; } + +.align-top { + vertical-align: top !important; } + +.align-middle { + vertical-align: middle !important; } + +.align-bottom { + vertical-align: bottom !important; } + +.align-text-bottom { + vertical-align: text-bottom !important; } + +.align-text-top { + vertical-align: text-top !important; } + +.bg-primary { + background-color: #3a50dc !important; } + +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #3a50dc !important; } + +.bg-secondary { + background-color: #b8c2cc !important; } + +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #9aa9b7 !important; } + +.bg-success { + background-color: #28c76f !important; } + +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #1f9d57 !important; } + +.bg-info { + background-color: #00cfe8 !important; } + +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #00a1b5 !important; } + +.bg-warning { + background-color: #ff9f43 !important; } + +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #ff8510 !important; } + +.bg-danger { + background-color: #ea5455 !important; } + +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #e42728 !important; } + +.bg-light { + background-color: #babfc7 !important; } + +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #9ea5b0 !important; } + +.bg-dark { + background-color: #1e1e1e !important; } + +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #050505 !important; } + +.bg-white { + background-color: #fff !important; } + +.bg-transparent { + background-color: transparent !important; } + +.border { + border: 1px solid #ededed !important; } + +.border-top { + border-top: 1px solid #ededed !important; } + +.border-right { + border-right: 1px solid #ededed !important; } + +.border-bottom { + border-bottom: 1px solid #ededed !important; } + +.border-left { + border-left: 1px solid #ededed !important; } + +.border-0 { + border: 0 !important; } + +.border-top-0 { + border-top: 0 !important; } + +.border-right-0 { + border-right: 0 !important; } + +.border-bottom-0 { + border-bottom: 0 !important; } + +.border-left-0 { + border-left: 0 !important; } + +.border-primary { + border-color: #3a50dc !important; } + +.border-secondary { + border-color: #b8c2cc !important; } + +.border-success { + border-color: #28c76f !important; } + +.border-info { + border-color: #00cfe8 !important; } + +.border-warning { + border-color: #ff9f43 !important; } + +.border-danger { + border-color: #ea5455 !important; } + +.border-light { + border-color: #babfc7 !important; } + +.border-dark { + border-color: #1e1e1e !important; } + +.border-white { + border-color: #fff !important; } + +.rounded-sm { + border-radius: 0.25rem !important; } + +.rounded { + border-radius: 0.5rem !important; } + +.rounded-top { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; } + +.rounded-right { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; } + +.rounded-bottom { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } + +.rounded-left { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } + +.rounded-lg { + border-radius: 0.6rem !important; } + +.rounded-circle { + border-radius: 50% !important; } + +.rounded-pill { + border-radius: 50rem !important; } + +.rounded-0 { + border-radius: 0 !important; } + +.clearfix::after { + display: block; + clear: both; + content: ""; } + +.d-none { + display: none !important; } + +.d-inline { + display: inline !important; } + +.d-inline-block { + display: inline-block !important; } + +.d-block { + display: block !important; } + +.d-table { + display: table !important; } + +.d-table-row { + display: table-row !important; } + +.d-table-cell { + display: table-cell !important; } + +.d-flex { + display: flex !important; } + +.d-inline-flex { + display: inline-flex !important; } + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; } + .d-sm-inline { + display: inline !important; } + .d-sm-inline-block { + display: inline-block !important; } + .d-sm-block { + display: block !important; } + .d-sm-table { + display: table !important; } + .d-sm-table-row { + display: table-row !important; } + .d-sm-table-cell { + display: table-cell !important; } + .d-sm-flex { + display: flex !important; } + .d-sm-inline-flex { + display: inline-flex !important; } } + +@media (min-width: 768px) { + .d-md-none { + display: none !important; } + .d-md-inline { + display: inline !important; } + .d-md-inline-block { + display: inline-block !important; } + .d-md-block { + display: block !important; } + .d-md-table { + display: table !important; } + .d-md-table-row { + display: table-row !important; } + .d-md-table-cell { + display: table-cell !important; } + .d-md-flex { + display: flex !important; } + .d-md-inline-flex { + display: inline-flex !important; } } + +@media (min-width: 992px) { + .d-lg-none { + display: none !important; } + .d-lg-inline { + display: inline !important; } + .d-lg-inline-block { + display: inline-block !important; } + .d-lg-block { + display: block !important; } + .d-lg-table { + display: table !important; } + .d-lg-table-row { + display: table-row !important; } + .d-lg-table-cell { + display: table-cell !important; } + .d-lg-flex { + display: flex !important; } + .d-lg-inline-flex { + display: inline-flex !important; } } + +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; } + .d-xl-inline { + display: inline !important; } + .d-xl-inline-block { + display: inline-block !important; } + .d-xl-block { + display: block !important; } + .d-xl-table { + display: table !important; } + .d-xl-table-row { + display: table-row !important; } + .d-xl-table-cell { + display: table-cell !important; } + .d-xl-flex { + display: flex !important; } + .d-xl-inline-flex { + display: inline-flex !important; } } + +@media print { + .d-print-none { + display: none !important; } + .d-print-inline { + display: inline !important; } + .d-print-inline-block { + display: inline-block !important; } + .d-print-block { + display: block !important; } + .d-print-table { + display: table !important; } + .d-print-table-row { + display: table-row !important; } + .d-print-table-cell { + display: table-cell !important; } + .d-print-flex { + display: flex !important; } + .d-print-inline-flex { + display: inline-flex !important; } } + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; } + .embed-responsive::before { + display: block; + content: ""; } + .embed-responsive .embed-responsive-item, + .embed-responsive iframe, + .embed-responsive embed, + .embed-responsive object, + .embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; } + +.embed-responsive-21by9::before { + padding-top: 42.85714%; } + +.embed-responsive-16by9::before { + padding-top: 56.25%; } + +.embed-responsive-4by3::before { + padding-top: 75%; } + +.embed-responsive-1by1::before { + padding-top: 100%; } + +.embed-responsive-21by9::before { + padding-top: 42.85714%; } + +.embed-responsive-16by9::before { + padding-top: 56.25%; } + +.embed-responsive-4by3::before { + padding-top: 75%; } + +.embed-responsive-1by1::before { + padding-top: 100%; } + +.flex-row { + flex-direction: row !important; } + +.flex-column { + flex-direction: column !important; } + +.flex-row-reverse { + flex-direction: row-reverse !important; } + +.flex-column-reverse { + flex-direction: column-reverse !important; } + +.flex-wrap { + flex-wrap: wrap !important; } + +.flex-nowrap { + flex-wrap: nowrap !important; } + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; } + +.flex-fill { + flex: 1 1 auto !important; } + +.flex-grow-0 { + flex-grow: 0 !important; } + +.flex-grow-1 { + flex-grow: 1 !important; } + +.flex-shrink-0 { + flex-shrink: 0 !important; } + +.flex-shrink-1 { + flex-shrink: 1 !important; } + +.justify-content-start { + justify-content: flex-start !important; } + +.justify-content-end { + justify-content: flex-end !important; } + +.justify-content-center { + justify-content: center !important; } + +.justify-content-between { + justify-content: space-between !important; } + +.justify-content-around { + justify-content: space-around !important; } + +.align-items-start { + align-items: flex-start !important; } + +.align-items-end { + align-items: flex-end !important; } + +.align-items-center { + align-items: center !important; } + +.align-items-baseline { + align-items: baseline !important; } + +.align-items-stretch { + align-items: stretch !important; } + +.align-content-start { + align-content: flex-start !important; } + +.align-content-end { + align-content: flex-end !important; } + +.align-content-center { + align-content: center !important; } + +.align-content-between { + align-content: space-between !important; } + +.align-content-around { + align-content: space-around !important; } + +.align-content-stretch { + align-content: stretch !important; } + +.align-self-auto { + align-self: auto !important; } + +.align-self-start { + align-self: flex-start !important; } + +.align-self-end { + align-self: flex-end !important; } + +.align-self-center { + align-self: center !important; } + +.align-self-baseline { + align-self: baseline !important; } + +.align-self-stretch { + align-self: stretch !important; } + +@media (min-width: 576px) { + .flex-sm-row { + flex-direction: row !important; } + .flex-sm-column { + flex-direction: column !important; } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; } + .flex-sm-wrap { + flex-wrap: wrap !important; } + .flex-sm-nowrap { + flex-wrap: nowrap !important; } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; } + .flex-sm-fill { + flex: 1 1 auto !important; } + .flex-sm-grow-0 { + flex-grow: 0 !important; } + .flex-sm-grow-1 { + flex-grow: 1 !important; } + .flex-sm-shrink-0 { + flex-shrink: 0 !important; } + .flex-sm-shrink-1 { + flex-shrink: 1 !important; } + .justify-content-sm-start { + justify-content: flex-start !important; } + .justify-content-sm-end { + justify-content: flex-end !important; } + .justify-content-sm-center { + justify-content: center !important; } + .justify-content-sm-between { + justify-content: space-between !important; } + .justify-content-sm-around { + justify-content: space-around !important; } + .align-items-sm-start { + align-items: flex-start !important; } + .align-items-sm-end { + align-items: flex-end !important; } + .align-items-sm-center { + align-items: center !important; } + .align-items-sm-baseline { + align-items: baseline !important; } + .align-items-sm-stretch { + align-items: stretch !important; } + .align-content-sm-start { + align-content: flex-start !important; } + .align-content-sm-end { + align-content: flex-end !important; } + .align-content-sm-center { + align-content: center !important; } + .align-content-sm-between { + align-content: space-between !important; } + .align-content-sm-around { + align-content: space-around !important; } + .align-content-sm-stretch { + align-content: stretch !important; } + .align-self-sm-auto { + align-self: auto !important; } + .align-self-sm-start { + align-self: flex-start !important; } + .align-self-sm-end { + align-self: flex-end !important; } + .align-self-sm-center { + align-self: center !important; } + .align-self-sm-baseline { + align-self: baseline !important; } + .align-self-sm-stretch { + align-self: stretch !important; } } + +@media (min-width: 768px) { + .flex-md-row { + flex-direction: row !important; } + .flex-md-column { + flex-direction: column !important; } + .flex-md-row-reverse { + flex-direction: row-reverse !important; } + .flex-md-column-reverse { + flex-direction: column-reverse !important; } + .flex-md-wrap { + flex-wrap: wrap !important; } + .flex-md-nowrap { + flex-wrap: nowrap !important; } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; } + .flex-md-fill { + flex: 1 1 auto !important; } + .flex-md-grow-0 { + flex-grow: 0 !important; } + .flex-md-grow-1 { + flex-grow: 1 !important; } + .flex-md-shrink-0 { + flex-shrink: 0 !important; } + .flex-md-shrink-1 { + flex-shrink: 1 !important; } + .justify-content-md-start { + justify-content: flex-start !important; } + .justify-content-md-end { + justify-content: flex-end !important; } + .justify-content-md-center { + justify-content: center !important; } + .justify-content-md-between { + justify-content: space-between !important; } + .justify-content-md-around { + justify-content: space-around !important; } + .align-items-md-start { + align-items: flex-start !important; } + .align-items-md-end { + align-items: flex-end !important; } + .align-items-md-center { + align-items: center !important; } + .align-items-md-baseline { + align-items: baseline !important; } + .align-items-md-stretch { + align-items: stretch !important; } + .align-content-md-start { + align-content: flex-start !important; } + .align-content-md-end { + align-content: flex-end !important; } + .align-content-md-center { + align-content: center !important; } + .align-content-md-between { + align-content: space-between !important; } + .align-content-md-around { + align-content: space-around !important; } + .align-content-md-stretch { + align-content: stretch !important; } + .align-self-md-auto { + align-self: auto !important; } + .align-self-md-start { + align-self: flex-start !important; } + .align-self-md-end { + align-self: flex-end !important; } + .align-self-md-center { + align-self: center !important; } + .align-self-md-baseline { + align-self: baseline !important; } + .align-self-md-stretch { + align-self: stretch !important; } } + +@media (min-width: 992px) { + .flex-lg-row { + flex-direction: row !important; } + .flex-lg-column { + flex-direction: column !important; } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; } + .flex-lg-wrap { + flex-wrap: wrap !important; } + .flex-lg-nowrap { + flex-wrap: nowrap !important; } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; } + .flex-lg-fill { + flex: 1 1 auto !important; } + .flex-lg-grow-0 { + flex-grow: 0 !important; } + .flex-lg-grow-1 { + flex-grow: 1 !important; } + .flex-lg-shrink-0 { + flex-shrink: 0 !important; } + .flex-lg-shrink-1 { + flex-shrink: 1 !important; } + .justify-content-lg-start { + justify-content: flex-start !important; } + .justify-content-lg-end { + justify-content: flex-end !important; } + .justify-content-lg-center { + justify-content: center !important; } + .justify-content-lg-between { + justify-content: space-between !important; } + .justify-content-lg-around { + justify-content: space-around !important; } + .align-items-lg-start { + align-items: flex-start !important; } + .align-items-lg-end { + align-items: flex-end !important; } + .align-items-lg-center { + align-items: center !important; } + .align-items-lg-baseline { + align-items: baseline !important; } + .align-items-lg-stretch { + align-items: stretch !important; } + .align-content-lg-start { + align-content: flex-start !important; } + .align-content-lg-end { + align-content: flex-end !important; } + .align-content-lg-center { + align-content: center !important; } + .align-content-lg-between { + align-content: space-between !important; } + .align-content-lg-around { + align-content: space-around !important; } + .align-content-lg-stretch { + align-content: stretch !important; } + .align-self-lg-auto { + align-self: auto !important; } + .align-self-lg-start { + align-self: flex-start !important; } + .align-self-lg-end { + align-self: flex-end !important; } + .align-self-lg-center { + align-self: center !important; } + .align-self-lg-baseline { + align-self: baseline !important; } + .align-self-lg-stretch { + align-self: stretch !important; } } + +@media (min-width: 1200px) { + .flex-xl-row { + flex-direction: row !important; } + .flex-xl-column { + flex-direction: column !important; } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; } + .flex-xl-wrap { + flex-wrap: wrap !important; } + .flex-xl-nowrap { + flex-wrap: nowrap !important; } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; } + .flex-xl-fill { + flex: 1 1 auto !important; } + .flex-xl-grow-0 { + flex-grow: 0 !important; } + .flex-xl-grow-1 { + flex-grow: 1 !important; } + .flex-xl-shrink-0 { + flex-shrink: 0 !important; } + .flex-xl-shrink-1 { + flex-shrink: 1 !important; } + .justify-content-xl-start { + justify-content: flex-start !important; } + .justify-content-xl-end { + justify-content: flex-end !important; } + .justify-content-xl-center { + justify-content: center !important; } + .justify-content-xl-between { + justify-content: space-between !important; } + .justify-content-xl-around { + justify-content: space-around !important; } + .align-items-xl-start { + align-items: flex-start !important; } + .align-items-xl-end { + align-items: flex-end !important; } + .align-items-xl-center { + align-items: center !important; } + .align-items-xl-baseline { + align-items: baseline !important; } + .align-items-xl-stretch { + align-items: stretch !important; } + .align-content-xl-start { + align-content: flex-start !important; } + .align-content-xl-end { + align-content: flex-end !important; } + .align-content-xl-center { + align-content: center !important; } + .align-content-xl-between { + align-content: space-between !important; } + .align-content-xl-around { + align-content: space-around !important; } + .align-content-xl-stretch { + align-content: stretch !important; } + .align-self-xl-auto { + align-self: auto !important; } + .align-self-xl-start { + align-self: flex-start !important; } + .align-self-xl-end { + align-self: flex-end !important; } + .align-self-xl-center { + align-self: center !important; } + .align-self-xl-baseline { + align-self: baseline !important; } + .align-self-xl-stretch { + align-self: stretch !important; } } + +.float-left { + float: left !important; } + +.float-right { + float: right !important; } + +.float-none { + float: none !important; } + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; } + .float-sm-right { + float: right !important; } + .float-sm-none { + float: none !important; } } + +@media (min-width: 768px) { + .float-md-left { + float: left !important; } + .float-md-right { + float: right !important; } + .float-md-none { + float: none !important; } } + +@media (min-width: 992px) { + .float-lg-left { + float: left !important; } + .float-lg-right { + float: right !important; } + .float-lg-none { + float: none !important; } } + +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; } + .float-xl-right { + float: right !important; } + .float-xl-none { + float: none !important; } } + +.overflow-auto { + overflow: auto !important; } + +.overflow-hidden { + overflow: hidden !important; } + +.position-static { + position: static !important; } + +.position-relative { + position: relative !important; } + +.position-absolute { + position: absolute !important; } + +.position-fixed { + position: fixed !important; } + +.position-sticky { + position: sticky !important; } + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; } + +.fixed-footer .footer { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; } + +@supports (position: sticky) { + .sticky-top { + position: sticky; + top: 0; + z-index: 1020; } } + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; } + +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(34, 41, 47, 0.075) !important; } + +.shadow { + box-shadow: 0 0.5rem 1rem rgba(34, 41, 47, 0.15) !important; } + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(34, 41, 47, 0.175) !important; } + +.shadow-none { + box-shadow: none !important; } + +.w-25 { + width: 25% !important; } + +.w-50 { + width: 50% !important; } + +.w-75 { + width: 75% !important; } + +.w-100 { + width: 100% !important; } + +.w-auto { + width: auto !important; } + +.h-25 { + height: 25% !important; } + +.h-50 { + height: 50% !important; } + +.h-75 { + height: 75% !important; } + +.h-100 { + height: 100% !important; } + +.h-auto { + height: auto !important; } + +.mw-100 { + max-width: 100% !important; } + +.mh-100 { + max-height: 100% !important; } + +.min-vw-100 { + min-width: 100vw !important; } + +.min-vh-100 { + min-height: 100vh !important; } + +.vw-100 { + width: 100vw !important; } + +.vh-100 { + height: 100vh !important; } + +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + pointer-events: auto; + content: ""; + background-color: rgba(0, 0, 0, 0); } + +.m-0 { + margin: 0 !important; } + +.mt-0, +.my-0 { + margin-top: 0 !important; } + +.mr-0, +.mx-0 { + margin-right: 0 !important; } + +.mb-0, +.my-0 { + margin-bottom: 0 !important; } + +.ml-0, +.mx-0 { + margin-left: 0 !important; } + +.m-1 { + margin: 1rem !important; } + +.mt-1, +.my-1 { + margin-top: 1rem !important; } + +.mr-1, +.mx-1 { + margin-right: 1rem !important; } + +.mb-1, +.my-1 { + margin-bottom: 1rem !important; } + +.ml-1, +.mx-1 { + margin-left: 1rem !important; } + +.m-2 { + margin: 1.5rem !important; } + +.mt-2, +.my-2 { + margin-top: 1.5rem !important; } + +.mr-2, +.mx-2 { + margin-right: 1.5rem !important; } + +.mb-2, +.my-2 { + margin-bottom: 1.5rem !important; } + +.ml-2, +.mx-2 { + margin-left: 1.5rem !important; } + +.m-3 { + margin: 3rem !important; } + +.mt-3, +.my-3 { + margin-top: 3rem !important; } + +.mr-3, +.mx-3 { + margin-right: 3rem !important; } + +.mb-3, +.my-3 { + margin-bottom: 3rem !important; } + +.ml-3, +.mx-3 { + margin-left: 3rem !important; } + +.m-4 { + margin: 3.5rem !important; } + +.mt-4, +.my-4 { + margin-top: 3.5rem !important; } + +.mr-4, +.mx-4 { + margin-right: 3.5rem !important; } + +.mb-4, +.my-4 { + margin-bottom: 3.5rem !important; } + +.ml-4, +.mx-4 { + margin-left: 3.5rem !important; } + +.m-5 { + margin: 4rem !important; } + +.mt-5, +.my-5 { + margin-top: 4rem !important; } + +.mr-5, +.mx-5 { + margin-right: 4rem !important; } + +.mb-5, +.my-5 { + margin-bottom: 4rem !important; } + +.ml-5, +.mx-5 { + margin-left: 4rem !important; } + +.m-25 { + margin: 0.25rem !important; } + +.mt-25, +.my-25 { + margin-top: 0.25rem !important; } + +.mr-25, +.mx-25 { + margin-right: 0.25rem !important; } + +.mb-25, +.my-25 { + margin-bottom: 0.25rem !important; } + +.ml-25, +.mx-25 { + margin-left: 0.25rem !important; } + +.m-50 { + margin: 0.5rem !important; } + +.mt-50, +.my-50 { + margin-top: 0.5rem !important; } + +.mr-50, +.mx-50 { + margin-right: 0.5rem !important; } + +.mb-50, +.my-50 { + margin-bottom: 0.5rem !important; } + +.ml-50, +.mx-50 { + margin-left: 0.5rem !important; } + +.m-75 { + margin: 0.75rem !important; } + +.mt-75, +.my-75 { + margin-top: 0.75rem !important; } + +.mr-75, +.mx-75 { + margin-right: 0.75rem !important; } + +.mb-75, +.my-75 { + margin-bottom: 0.75rem !important; } + +.ml-75, +.mx-75 { + margin-left: 0.75rem !important; } + +.p-0 { + padding: 0 !important; } + +.pt-0, +.py-0 { + padding-top: 0 !important; } + +.pr-0, +.px-0 { + padding-right: 0 !important; } + +.pb-0, +.py-0 { + padding-bottom: 0 !important; } + +.pl-0, +.px-0 { + padding-left: 0 !important; } + +.p-1 { + padding: 1rem !important; } + +.pt-1, +.py-1 { + padding-top: 1rem !important; } + +.pr-1, +.px-1 { + padding-right: 1rem !important; } + +.pb-1, +.py-1 { + padding-bottom: 1rem !important; } + +.pl-1, +.px-1 { + padding-left: 1rem !important; } + +.p-2 { + padding: 1.5rem !important; } + +.pt-2, +.py-2 { + padding-top: 1.5rem !important; } + +.pr-2, +.px-2 { + padding-right: 1.5rem !important; } + +.pb-2, +.py-2 { + padding-bottom: 1.5rem !important; } + +.pl-2, +.px-2 { + padding-left: 1.5rem !important; } + +.p-3 { + padding: 3rem !important; } + +.pt-3, +.py-3 { + padding-top: 3rem !important; } + +.pr-3, +.px-3 { + padding-right: 3rem !important; } + +.pb-3, +.py-3 { + padding-bottom: 3rem !important; } + +.pl-3, +.px-3 { + padding-left: 3rem !important; } + +.p-4 { + padding: 3.5rem !important; } + +.pt-4, +.py-4 { + padding-top: 3.5rem !important; } + +.pr-4, +.px-4 { + padding-right: 3.5rem !important; } + +.pb-4, +.py-4 { + padding-bottom: 3.5rem !important; } + +.pl-4, +.px-4 { + padding-left: 3.5rem !important; } + +.p-5 { + padding: 4rem !important; } + +.pt-5, +.py-5 { + padding-top: 4rem !important; } + +.pr-5, +.px-5 { + padding-right: 4rem !important; } + +.pb-5, +.py-5 { + padding-bottom: 4rem !important; } + +.pl-5, +.px-5 { + padding-left: 4rem !important; } + +.p-25 { + padding: 0.25rem !important; } + +.pt-25, +.py-25 { + padding-top: 0.25rem !important; } + +.pr-25, +.px-25 { + padding-right: 0.25rem !important; } + +.pb-25, +.py-25 { + padding-bottom: 0.25rem !important; } + +.pl-25, +.px-25 { + padding-left: 0.25rem !important; } + +.p-50 { + padding: 0.5rem !important; } + +.pt-50, +.py-50 { + padding-top: 0.5rem !important; } + +.pr-50, +.px-50 { + padding-right: 0.5rem !important; } + +.pb-50, +.py-50 { + padding-bottom: 0.5rem !important; } + +.pl-50, +.px-50 { + padding-left: 0.5rem !important; } + +.p-75 { + padding: 0.75rem !important; } + +.pt-75, +.py-75 { + padding-top: 0.75rem !important; } + +.pr-75, +.px-75 { + padding-right: 0.75rem !important; } + +.pb-75, +.py-75 { + padding-bottom: 0.75rem !important; } + +.pl-75, +.px-75 { + padding-left: 0.75rem !important; } + +.m-n1 { + margin: -1rem !important; } + +.mt-n1, +.my-n1 { + margin-top: -1rem !important; } + +.mr-n1, +.mx-n1 { + margin-right: -1rem !important; } + +.mb-n1, +.my-n1 { + margin-bottom: -1rem !important; } + +.ml-n1, +.mx-n1 { + margin-left: -1rem !important; } + +.m-n2 { + margin: -1.5rem !important; } + +.mt-n2, +.my-n2 { + margin-top: -1.5rem !important; } + +.mr-n2, +.mx-n2 { + margin-right: -1.5rem !important; } + +.mb-n2, +.my-n2 { + margin-bottom: -1.5rem !important; } + +.ml-n2, +.mx-n2 { + margin-left: -1.5rem !important; } + +.m-n3 { + margin: -3rem !important; } + +.mt-n3, +.my-n3 { + margin-top: -3rem !important; } + +.mr-n3, +.mx-n3 { + margin-right: -3rem !important; } + +.mb-n3, +.my-n3 { + margin-bottom: -3rem !important; } + +.ml-n3, +.mx-n3 { + margin-left: -3rem !important; } + +.m-n4 { + margin: -3.5rem !important; } + +.mt-n4, +.my-n4 { + margin-top: -3.5rem !important; } + +.mr-n4, +.mx-n4 { + margin-right: -3.5rem !important; } + +.mb-n4, +.my-n4 { + margin-bottom: -3.5rem !important; } + +.ml-n4, +.mx-n4 { + margin-left: -3.5rem !important; } + +.m-n5 { + margin: -4rem !important; } + +.mt-n5, +.my-n5 { + margin-top: -4rem !important; } + +.mr-n5, +.mx-n5 { + margin-right: -4rem !important; } + +.mb-n5, +.my-n5 { + margin-bottom: -4rem !important; } + +.ml-n5, +.mx-n5 { + margin-left: -4rem !important; } + +.m-n25 { + margin: -0.25rem !important; } + +.mt-n25, +.my-n25 { + margin-top: -0.25rem !important; } + +.mr-n25, +.mx-n25 { + margin-right: -0.25rem !important; } + +.mb-n25, +.my-n25 { + margin-bottom: -0.25rem !important; } + +.ml-n25, +.mx-n25 { + margin-left: -0.25rem !important; } + +.m-n50 { + margin: -0.5rem !important; } + +.mt-n50, +.my-n50 { + margin-top: -0.5rem !important; } + +.mr-n50, +.mx-n50 { + margin-right: -0.5rem !important; } + +.mb-n50, +.my-n50 { + margin-bottom: -0.5rem !important; } + +.ml-n50, +.mx-n50 { + margin-left: -0.5rem !important; } + +.m-n75 { + margin: -0.75rem !important; } + +.mt-n75, +.my-n75 { + margin-top: -0.75rem !important; } + +.mr-n75, +.mx-n75 { + margin-right: -0.75rem !important; } + +.mb-n75, +.my-n75 { + margin-bottom: -0.75rem !important; } + +.ml-n75, +.mx-n75 { + margin-left: -0.75rem !important; } + +.m-auto { + margin: auto !important; } + +.mt-auto, +.my-auto { + margin-top: auto !important; } + +.mr-auto, +.mx-auto { + margin-right: auto !important; } + +.mb-auto, +.my-auto { + margin-bottom: auto !important; } + +.ml-auto, +.mx-auto { + margin-left: auto !important; } + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; } + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; } + .m-sm-1 { + margin: 1rem !important; } + .mt-sm-1, + .my-sm-1 { + margin-top: 1rem !important; } + .mr-sm-1, + .mx-sm-1 { + margin-right: 1rem !important; } + .mb-sm-1, + .my-sm-1 { + margin-bottom: 1rem !important; } + .ml-sm-1, + .mx-sm-1 { + margin-left: 1rem !important; } + .m-sm-2 { + margin: 1.5rem !important; } + .mt-sm-2, + .my-sm-2 { + margin-top: 1.5rem !important; } + .mr-sm-2, + .mx-sm-2 { + margin-right: 1.5rem !important; } + .mb-sm-2, + .my-sm-2 { + margin-bottom: 1.5rem !important; } + .ml-sm-2, + .mx-sm-2 { + margin-left: 1.5rem !important; } + .m-sm-3 { + margin: 3rem !important; } + .mt-sm-3, + .my-sm-3 { + margin-top: 3rem !important; } + .mr-sm-3, + .mx-sm-3 { + margin-right: 3rem !important; } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 3rem !important; } + .ml-sm-3, + .mx-sm-3 { + margin-left: 3rem !important; } + .m-sm-4 { + margin: 3.5rem !important; } + .mt-sm-4, + .my-sm-4 { + margin-top: 3.5rem !important; } + .mr-sm-4, + .mx-sm-4 { + margin-right: 3.5rem !important; } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 3.5rem !important; } + .ml-sm-4, + .mx-sm-4 { + margin-left: 3.5rem !important; } + .m-sm-5 { + margin: 4rem !important; } + .mt-sm-5, + .my-sm-5 { + margin-top: 4rem !important; } + .mr-sm-5, + .mx-sm-5 { + margin-right: 4rem !important; } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 4rem !important; } + .ml-sm-5, + .mx-sm-5 { + margin-left: 4rem !important; } + .m-sm-25 { + margin: 0.25rem !important; } + .mt-sm-25, + .my-sm-25 { + margin-top: 0.25rem !important; } + .mr-sm-25, + .mx-sm-25 { + margin-right: 0.25rem !important; } + .mb-sm-25, + .my-sm-25 { + margin-bottom: 0.25rem !important; } + .ml-sm-25, + .mx-sm-25 { + margin-left: 0.25rem !important; } + .m-sm-50 { + margin: 0.5rem !important; } + .mt-sm-50, + .my-sm-50 { + margin-top: 0.5rem !important; } + .mr-sm-50, + .mx-sm-50 { + margin-right: 0.5rem !important; } + .mb-sm-50, + .my-sm-50 { + margin-bottom: 0.5rem !important; } + .ml-sm-50, + .mx-sm-50 { + margin-left: 0.5rem !important; } + .m-sm-75 { + margin: 0.75rem !important; } + .mt-sm-75, + .my-sm-75 { + margin-top: 0.75rem !important; } + .mr-sm-75, + .mx-sm-75 { + margin-right: 0.75rem !important; } + .mb-sm-75, + .my-sm-75 { + margin-bottom: 0.75rem !important; } + .ml-sm-75, + .mx-sm-75 { + margin-left: 0.75rem !important; } + .p-sm-0 { + padding: 0 !important; } + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; } + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; } + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; } + .p-sm-1 { + padding: 1rem !important; } + .pt-sm-1, + .py-sm-1 { + padding-top: 1rem !important; } + .pr-sm-1, + .px-sm-1 { + padding-right: 1rem !important; } + .pb-sm-1, + .py-sm-1 { + padding-bottom: 1rem !important; } + .pl-sm-1, + .px-sm-1 { + padding-left: 1rem !important; } + .p-sm-2 { + padding: 1.5rem !important; } + .pt-sm-2, + .py-sm-2 { + padding-top: 1.5rem !important; } + .pr-sm-2, + .px-sm-2 { + padding-right: 1.5rem !important; } + .pb-sm-2, + .py-sm-2 { + padding-bottom: 1.5rem !important; } + .pl-sm-2, + .px-sm-2 { + padding-left: 1.5rem !important; } + .p-sm-3 { + padding: 3rem !important; } + .pt-sm-3, + .py-sm-3 { + padding-top: 3rem !important; } + .pr-sm-3, + .px-sm-3 { + padding-right: 3rem !important; } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 3rem !important; } + .pl-sm-3, + .px-sm-3 { + padding-left: 3rem !important; } + .p-sm-4 { + padding: 3.5rem !important; } + .pt-sm-4, + .py-sm-4 { + padding-top: 3.5rem !important; } + .pr-sm-4, + .px-sm-4 { + padding-right: 3.5rem !important; } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 3.5rem !important; } + .pl-sm-4, + .px-sm-4 { + padding-left: 3.5rem !important; } + .p-sm-5 { + padding: 4rem !important; } + .pt-sm-5, + .py-sm-5 { + padding-top: 4rem !important; } + .pr-sm-5, + .px-sm-5 { + padding-right: 4rem !important; } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 4rem !important; } + .pl-sm-5, + .px-sm-5 { + padding-left: 4rem !important; } + .p-sm-25 { + padding: 0.25rem !important; } + .pt-sm-25, + .py-sm-25 { + padding-top: 0.25rem !important; } + .pr-sm-25, + .px-sm-25 { + padding-right: 0.25rem !important; } + .pb-sm-25, + .py-sm-25 { + padding-bottom: 0.25rem !important; } + .pl-sm-25, + .px-sm-25 { + padding-left: 0.25rem !important; } + .p-sm-50 { + padding: 0.5rem !important; } + .pt-sm-50, + .py-sm-50 { + padding-top: 0.5rem !important; } + .pr-sm-50, + .px-sm-50 { + padding-right: 0.5rem !important; } + .pb-sm-50, + .py-sm-50 { + padding-bottom: 0.5rem !important; } + .pl-sm-50, + .px-sm-50 { + padding-left: 0.5rem !important; } + .p-sm-75 { + padding: 0.75rem !important; } + .pt-sm-75, + .py-sm-75 { + padding-top: 0.75rem !important; } + .pr-sm-75, + .px-sm-75 { + padding-right: 0.75rem !important; } + .pb-sm-75, + .py-sm-75 { + padding-bottom: 0.75rem !important; } + .pl-sm-75, + .px-sm-75 { + padding-left: 0.75rem !important; } + .m-sm-n1 { + margin: -1rem !important; } + .mt-sm-n1, + .my-sm-n1 { + margin-top: -1rem !important; } + .mr-sm-n1, + .mx-sm-n1 { + margin-right: -1rem !important; } + .mb-sm-n1, + .my-sm-n1 { + margin-bottom: -1rem !important; } + .ml-sm-n1, + .mx-sm-n1 { + margin-left: -1rem !important; } + .m-sm-n2 { + margin: -1.5rem !important; } + .mt-sm-n2, + .my-sm-n2 { + margin-top: -1.5rem !important; } + .mr-sm-n2, + .mx-sm-n2 { + margin-right: -1.5rem !important; } + .mb-sm-n2, + .my-sm-n2 { + margin-bottom: -1.5rem !important; } + .ml-sm-n2, + .mx-sm-n2 { + margin-left: -1.5rem !important; } + .m-sm-n3 { + margin: -3rem !important; } + .mt-sm-n3, + .my-sm-n3 { + margin-top: -3rem !important; } + .mr-sm-n3, + .mx-sm-n3 { + margin-right: -3rem !important; } + .mb-sm-n3, + .my-sm-n3 { + margin-bottom: -3rem !important; } + .ml-sm-n3, + .mx-sm-n3 { + margin-left: -3rem !important; } + .m-sm-n4 { + margin: -3.5rem !important; } + .mt-sm-n4, + .my-sm-n4 { + margin-top: -3.5rem !important; } + .mr-sm-n4, + .mx-sm-n4 { + margin-right: -3.5rem !important; } + .mb-sm-n4, + .my-sm-n4 { + margin-bottom: -3.5rem !important; } + .ml-sm-n4, + .mx-sm-n4 { + margin-left: -3.5rem !important; } + .m-sm-n5 { + margin: -4rem !important; } + .mt-sm-n5, + .my-sm-n5 { + margin-top: -4rem !important; } + .mr-sm-n5, + .mx-sm-n5 { + margin-right: -4rem !important; } + .mb-sm-n5, + .my-sm-n5 { + margin-bottom: -4rem !important; } + .ml-sm-n5, + .mx-sm-n5 { + margin-left: -4rem !important; } + .m-sm-n25 { + margin: -0.25rem !important; } + .mt-sm-n25, + .my-sm-n25 { + margin-top: -0.25rem !important; } + .mr-sm-n25, + .mx-sm-n25 { + margin-right: -0.25rem !important; } + .mb-sm-n25, + .my-sm-n25 { + margin-bottom: -0.25rem !important; } + .ml-sm-n25, + .mx-sm-n25 { + margin-left: -0.25rem !important; } + .m-sm-n50 { + margin: -0.5rem !important; } + .mt-sm-n50, + .my-sm-n50 { + margin-top: -0.5rem !important; } + .mr-sm-n50, + .mx-sm-n50 { + margin-right: -0.5rem !important; } + .mb-sm-n50, + .my-sm-n50 { + margin-bottom: -0.5rem !important; } + .ml-sm-n50, + .mx-sm-n50 { + margin-left: -0.5rem !important; } + .m-sm-n75 { + margin: -0.75rem !important; } + .mt-sm-n75, + .my-sm-n75 { + margin-top: -0.75rem !important; } + .mr-sm-n75, + .mx-sm-n75 { + margin-right: -0.75rem !important; } + .mb-sm-n75, + .my-sm-n75 { + margin-bottom: -0.75rem !important; } + .ml-sm-n75, + .mx-sm-n75 { + margin-left: -0.75rem !important; } + .m-sm-auto { + margin: auto !important; } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; } } + +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; } + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; } + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; } + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; } + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; } + .m-md-1 { + margin: 1rem !important; } + .mt-md-1, + .my-md-1 { + margin-top: 1rem !important; } + .mr-md-1, + .mx-md-1 { + margin-right: 1rem !important; } + .mb-md-1, + .my-md-1 { + margin-bottom: 1rem !important; } + .ml-md-1, + .mx-md-1 { + margin-left: 1rem !important; } + .m-md-2 { + margin: 1.5rem !important; } + .mt-md-2, + .my-md-2 { + margin-top: 1.5rem !important; } + .mr-md-2, + .mx-md-2 { + margin-right: 1.5rem !important; } + .mb-md-2, + .my-md-2 { + margin-bottom: 1.5rem !important; } + .ml-md-2, + .mx-md-2 { + margin-left: 1.5rem !important; } + .m-md-3 { + margin: 3rem !important; } + .mt-md-3, + .my-md-3 { + margin-top: 3rem !important; } + .mr-md-3, + .mx-md-3 { + margin-right: 3rem !important; } + .mb-md-3, + .my-md-3 { + margin-bottom: 3rem !important; } + .ml-md-3, + .mx-md-3 { + margin-left: 3rem !important; } + .m-md-4 { + margin: 3.5rem !important; } + .mt-md-4, + .my-md-4 { + margin-top: 3.5rem !important; } + .mr-md-4, + .mx-md-4 { + margin-right: 3.5rem !important; } + .mb-md-4, + .my-md-4 { + margin-bottom: 3.5rem !important; } + .ml-md-4, + .mx-md-4 { + margin-left: 3.5rem !important; } + .m-md-5 { + margin: 4rem !important; } + .mt-md-5, + .my-md-5 { + margin-top: 4rem !important; } + .mr-md-5, + .mx-md-5 { + margin-right: 4rem !important; } + .mb-md-5, + .my-md-5 { + margin-bottom: 4rem !important; } + .ml-md-5, + .mx-md-5 { + margin-left: 4rem !important; } + .m-md-25 { + margin: 0.25rem !important; } + .mt-md-25, + .my-md-25 { + margin-top: 0.25rem !important; } + .mr-md-25, + .mx-md-25 { + margin-right: 0.25rem !important; } + .mb-md-25, + .my-md-25 { + margin-bottom: 0.25rem !important; } + .ml-md-25, + .mx-md-25 { + margin-left: 0.25rem !important; } + .m-md-50 { + margin: 0.5rem !important; } + .mt-md-50, + .my-md-50 { + margin-top: 0.5rem !important; } + .mr-md-50, + .mx-md-50 { + margin-right: 0.5rem !important; } + .mb-md-50, + .my-md-50 { + margin-bottom: 0.5rem !important; } + .ml-md-50, + .mx-md-50 { + margin-left: 0.5rem !important; } + .m-md-75 { + margin: 0.75rem !important; } + .mt-md-75, + .my-md-75 { + margin-top: 0.75rem !important; } + .mr-md-75, + .mx-md-75 { + margin-right: 0.75rem !important; } + .mb-md-75, + .my-md-75 { + margin-bottom: 0.75rem !important; } + .ml-md-75, + .mx-md-75 { + margin-left: 0.75rem !important; } + .p-md-0 { + padding: 0 !important; } + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; } + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; } + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; } + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; } + .p-md-1 { + padding: 1rem !important; } + .pt-md-1, + .py-md-1 { + padding-top: 1rem !important; } + .pr-md-1, + .px-md-1 { + padding-right: 1rem !important; } + .pb-md-1, + .py-md-1 { + padding-bottom: 1rem !important; } + .pl-md-1, + .px-md-1 { + padding-left: 1rem !important; } + .p-md-2 { + padding: 1.5rem !important; } + .pt-md-2, + .py-md-2 { + padding-top: 1.5rem !important; } + .pr-md-2, + .px-md-2 { + padding-right: 1.5rem !important; } + .pb-md-2, + .py-md-2 { + padding-bottom: 1.5rem !important; } + .pl-md-2, + .px-md-2 { + padding-left: 1.5rem !important; } + .p-md-3 { + padding: 3rem !important; } + .pt-md-3, + .py-md-3 { + padding-top: 3rem !important; } + .pr-md-3, + .px-md-3 { + padding-right: 3rem !important; } + .pb-md-3, + .py-md-3 { + padding-bottom: 3rem !important; } + .pl-md-3, + .px-md-3 { + padding-left: 3rem !important; } + .p-md-4 { + padding: 3.5rem !important; } + .pt-md-4, + .py-md-4 { + padding-top: 3.5rem !important; } + .pr-md-4, + .px-md-4 { + padding-right: 3.5rem !important; } + .pb-md-4, + .py-md-4 { + padding-bottom: 3.5rem !important; } + .pl-md-4, + .px-md-4 { + padding-left: 3.5rem !important; } + .p-md-5 { + padding: 4rem !important; } + .pt-md-5, + .py-md-5 { + padding-top: 4rem !important; } + .pr-md-5, + .px-md-5 { + padding-right: 4rem !important; } + .pb-md-5, + .py-md-5 { + padding-bottom: 4rem !important; } + .pl-md-5, + .px-md-5 { + padding-left: 4rem !important; } + .p-md-25 { + padding: 0.25rem !important; } + .pt-md-25, + .py-md-25 { + padding-top: 0.25rem !important; } + .pr-md-25, + .px-md-25 { + padding-right: 0.25rem !important; } + .pb-md-25, + .py-md-25 { + padding-bottom: 0.25rem !important; } + .pl-md-25, + .px-md-25 { + padding-left: 0.25rem !important; } + .p-md-50 { + padding: 0.5rem !important; } + .pt-md-50, + .py-md-50 { + padding-top: 0.5rem !important; } + .pr-md-50, + .px-md-50 { + padding-right: 0.5rem !important; } + .pb-md-50, + .py-md-50 { + padding-bottom: 0.5rem !important; } + .pl-md-50, + .px-md-50 { + padding-left: 0.5rem !important; } + .p-md-75 { + padding: 0.75rem !important; } + .pt-md-75, + .py-md-75 { + padding-top: 0.75rem !important; } + .pr-md-75, + .px-md-75 { + padding-right: 0.75rem !important; } + .pb-md-75, + .py-md-75 { + padding-bottom: 0.75rem !important; } + .pl-md-75, + .px-md-75 { + padding-left: 0.75rem !important; } + .m-md-n1 { + margin: -1rem !important; } + .mt-md-n1, + .my-md-n1 { + margin-top: -1rem !important; } + .mr-md-n1, + .mx-md-n1 { + margin-right: -1rem !important; } + .mb-md-n1, + .my-md-n1 { + margin-bottom: -1rem !important; } + .ml-md-n1, + .mx-md-n1 { + margin-left: -1rem !important; } + .m-md-n2 { + margin: -1.5rem !important; } + .mt-md-n2, + .my-md-n2 { + margin-top: -1.5rem !important; } + .mr-md-n2, + .mx-md-n2 { + margin-right: -1.5rem !important; } + .mb-md-n2, + .my-md-n2 { + margin-bottom: -1.5rem !important; } + .ml-md-n2, + .mx-md-n2 { + margin-left: -1.5rem !important; } + .m-md-n3 { + margin: -3rem !important; } + .mt-md-n3, + .my-md-n3 { + margin-top: -3rem !important; } + .mr-md-n3, + .mx-md-n3 { + margin-right: -3rem !important; } + .mb-md-n3, + .my-md-n3 { + margin-bottom: -3rem !important; } + .ml-md-n3, + .mx-md-n3 { + margin-left: -3rem !important; } + .m-md-n4 { + margin: -3.5rem !important; } + .mt-md-n4, + .my-md-n4 { + margin-top: -3.5rem !important; } + .mr-md-n4, + .mx-md-n4 { + margin-right: -3.5rem !important; } + .mb-md-n4, + .my-md-n4 { + margin-bottom: -3.5rem !important; } + .ml-md-n4, + .mx-md-n4 { + margin-left: -3.5rem !important; } + .m-md-n5 { + margin: -4rem !important; } + .mt-md-n5, + .my-md-n5 { + margin-top: -4rem !important; } + .mr-md-n5, + .mx-md-n5 { + margin-right: -4rem !important; } + .mb-md-n5, + .my-md-n5 { + margin-bottom: -4rem !important; } + .ml-md-n5, + .mx-md-n5 { + margin-left: -4rem !important; } + .m-md-n25 { + margin: -0.25rem !important; } + .mt-md-n25, + .my-md-n25 { + margin-top: -0.25rem !important; } + .mr-md-n25, + .mx-md-n25 { + margin-right: -0.25rem !important; } + .mb-md-n25, + .my-md-n25 { + margin-bottom: -0.25rem !important; } + .ml-md-n25, + .mx-md-n25 { + margin-left: -0.25rem !important; } + .m-md-n50 { + margin: -0.5rem !important; } + .mt-md-n50, + .my-md-n50 { + margin-top: -0.5rem !important; } + .mr-md-n50, + .mx-md-n50 { + margin-right: -0.5rem !important; } + .mb-md-n50, + .my-md-n50 { + margin-bottom: -0.5rem !important; } + .ml-md-n50, + .mx-md-n50 { + margin-left: -0.5rem !important; } + .m-md-n75 { + margin: -0.75rem !important; } + .mt-md-n75, + .my-md-n75 { + margin-top: -0.75rem !important; } + .mr-md-n75, + .mx-md-n75 { + margin-right: -0.75rem !important; } + .mb-md-n75, + .my-md-n75 { + margin-bottom: -0.75rem !important; } + .ml-md-n75, + .mx-md-n75 { + margin-left: -0.75rem !important; } + .m-md-auto { + margin: auto !important; } + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; } + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; } + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; } } + +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; } + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; } + .m-lg-1 { + margin: 1rem !important; } + .mt-lg-1, + .my-lg-1 { + margin-top: 1rem !important; } + .mr-lg-1, + .mx-lg-1 { + margin-right: 1rem !important; } + .mb-lg-1, + .my-lg-1 { + margin-bottom: 1rem !important; } + .ml-lg-1, + .mx-lg-1 { + margin-left: 1rem !important; } + .m-lg-2 { + margin: 1.5rem !important; } + .mt-lg-2, + .my-lg-2 { + margin-top: 1.5rem !important; } + .mr-lg-2, + .mx-lg-2 { + margin-right: 1.5rem !important; } + .mb-lg-2, + .my-lg-2 { + margin-bottom: 1.5rem !important; } + .ml-lg-2, + .mx-lg-2 { + margin-left: 1.5rem !important; } + .m-lg-3 { + margin: 3rem !important; } + .mt-lg-3, + .my-lg-3 { + margin-top: 3rem !important; } + .mr-lg-3, + .mx-lg-3 { + margin-right: 3rem !important; } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 3rem !important; } + .ml-lg-3, + .mx-lg-3 { + margin-left: 3rem !important; } + .m-lg-4 { + margin: 3.5rem !important; } + .mt-lg-4, + .my-lg-4 { + margin-top: 3.5rem !important; } + .mr-lg-4, + .mx-lg-4 { + margin-right: 3.5rem !important; } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 3.5rem !important; } + .ml-lg-4, + .mx-lg-4 { + margin-left: 3.5rem !important; } + .m-lg-5 { + margin: 4rem !important; } + .mt-lg-5, + .my-lg-5 { + margin-top: 4rem !important; } + .mr-lg-5, + .mx-lg-5 { + margin-right: 4rem !important; } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 4rem !important; } + .ml-lg-5, + .mx-lg-5 { + margin-left: 4rem !important; } + .m-lg-25 { + margin: 0.25rem !important; } + .mt-lg-25, + .my-lg-25 { + margin-top: 0.25rem !important; } + .mr-lg-25, + .mx-lg-25 { + margin-right: 0.25rem !important; } + .mb-lg-25, + .my-lg-25 { + margin-bottom: 0.25rem !important; } + .ml-lg-25, + .mx-lg-25 { + margin-left: 0.25rem !important; } + .m-lg-50 { + margin: 0.5rem !important; } + .mt-lg-50, + .my-lg-50 { + margin-top: 0.5rem !important; } + .mr-lg-50, + .mx-lg-50 { + margin-right: 0.5rem !important; } + .mb-lg-50, + .my-lg-50 { + margin-bottom: 0.5rem !important; } + .ml-lg-50, + .mx-lg-50 { + margin-left: 0.5rem !important; } + .m-lg-75 { + margin: 0.75rem !important; } + .mt-lg-75, + .my-lg-75 { + margin-top: 0.75rem !important; } + .mr-lg-75, + .mx-lg-75 { + margin-right: 0.75rem !important; } + .mb-lg-75, + .my-lg-75 { + margin-bottom: 0.75rem !important; } + .ml-lg-75, + .mx-lg-75 { + margin-left: 0.75rem !important; } + .p-lg-0 { + padding: 0 !important; } + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; } + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; } + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; } + .p-lg-1 { + padding: 1rem !important; } + .pt-lg-1, + .py-lg-1 { + padding-top: 1rem !important; } + .pr-lg-1, + .px-lg-1 { + padding-right: 1rem !important; } + .pb-lg-1, + .py-lg-1 { + padding-bottom: 1rem !important; } + .pl-lg-1, + .px-lg-1 { + padding-left: 1rem !important; } + .p-lg-2 { + padding: 1.5rem !important; } + .pt-lg-2, + .py-lg-2 { + padding-top: 1.5rem !important; } + .pr-lg-2, + .px-lg-2 { + padding-right: 1.5rem !important; } + .pb-lg-2, + .py-lg-2 { + padding-bottom: 1.5rem !important; } + .pl-lg-2, + .px-lg-2 { + padding-left: 1.5rem !important; } + .p-lg-3 { + padding: 3rem !important; } + .pt-lg-3, + .py-lg-3 { + padding-top: 3rem !important; } + .pr-lg-3, + .px-lg-3 { + padding-right: 3rem !important; } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 3rem !important; } + .pl-lg-3, + .px-lg-3 { + padding-left: 3rem !important; } + .p-lg-4 { + padding: 3.5rem !important; } + .pt-lg-4, + .py-lg-4 { + padding-top: 3.5rem !important; } + .pr-lg-4, + .px-lg-4 { + padding-right: 3.5rem !important; } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 3.5rem !important; } + .pl-lg-4, + .px-lg-4 { + padding-left: 3.5rem !important; } + .p-lg-5 { + padding: 4rem !important; } + .pt-lg-5, + .py-lg-5 { + padding-top: 4rem !important; } + .pr-lg-5, + .px-lg-5 { + padding-right: 4rem !important; } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 4rem !important; } + .pl-lg-5, + .px-lg-5 { + padding-left: 4rem !important; } + .p-lg-25 { + padding: 0.25rem !important; } + .pt-lg-25, + .py-lg-25 { + padding-top: 0.25rem !important; } + .pr-lg-25, + .px-lg-25 { + padding-right: 0.25rem !important; } + .pb-lg-25, + .py-lg-25 { + padding-bottom: 0.25rem !important; } + .pl-lg-25, + .px-lg-25 { + padding-left: 0.25rem !important; } + .p-lg-50 { + padding: 0.5rem !important; } + .pt-lg-50, + .py-lg-50 { + padding-top: 0.5rem !important; } + .pr-lg-50, + .px-lg-50 { + padding-right: 0.5rem !important; } + .pb-lg-50, + .py-lg-50 { + padding-bottom: 0.5rem !important; } + .pl-lg-50, + .px-lg-50 { + padding-left: 0.5rem !important; } + .p-lg-75 { + padding: 0.75rem !important; } + .pt-lg-75, + .py-lg-75 { + padding-top: 0.75rem !important; } + .pr-lg-75, + .px-lg-75 { + padding-right: 0.75rem !important; } + .pb-lg-75, + .py-lg-75 { + padding-bottom: 0.75rem !important; } + .pl-lg-75, + .px-lg-75 { + padding-left: 0.75rem !important; } + .m-lg-n1 { + margin: -1rem !important; } + .mt-lg-n1, + .my-lg-n1 { + margin-top: -1rem !important; } + .mr-lg-n1, + .mx-lg-n1 { + margin-right: -1rem !important; } + .mb-lg-n1, + .my-lg-n1 { + margin-bottom: -1rem !important; } + .ml-lg-n1, + .mx-lg-n1 { + margin-left: -1rem !important; } + .m-lg-n2 { + margin: -1.5rem !important; } + .mt-lg-n2, + .my-lg-n2 { + margin-top: -1.5rem !important; } + .mr-lg-n2, + .mx-lg-n2 { + margin-right: -1.5rem !important; } + .mb-lg-n2, + .my-lg-n2 { + margin-bottom: -1.5rem !important; } + .ml-lg-n2, + .mx-lg-n2 { + margin-left: -1.5rem !important; } + .m-lg-n3 { + margin: -3rem !important; } + .mt-lg-n3, + .my-lg-n3 { + margin-top: -3rem !important; } + .mr-lg-n3, + .mx-lg-n3 { + margin-right: -3rem !important; } + .mb-lg-n3, + .my-lg-n3 { + margin-bottom: -3rem !important; } + .ml-lg-n3, + .mx-lg-n3 { + margin-left: -3rem !important; } + .m-lg-n4 { + margin: -3.5rem !important; } + .mt-lg-n4, + .my-lg-n4 { + margin-top: -3.5rem !important; } + .mr-lg-n4, + .mx-lg-n4 { + margin-right: -3.5rem !important; } + .mb-lg-n4, + .my-lg-n4 { + margin-bottom: -3.5rem !important; } + .ml-lg-n4, + .mx-lg-n4 { + margin-left: -3.5rem !important; } + .m-lg-n5 { + margin: -4rem !important; } + .mt-lg-n5, + .my-lg-n5 { + margin-top: -4rem !important; } + .mr-lg-n5, + .mx-lg-n5 { + margin-right: -4rem !important; } + .mb-lg-n5, + .my-lg-n5 { + margin-bottom: -4rem !important; } + .ml-lg-n5, + .mx-lg-n5 { + margin-left: -4rem !important; } + .m-lg-n25 { + margin: -0.25rem !important; } + .mt-lg-n25, + .my-lg-n25 { + margin-top: -0.25rem !important; } + .mr-lg-n25, + .mx-lg-n25 { + margin-right: -0.25rem !important; } + .mb-lg-n25, + .my-lg-n25 { + margin-bottom: -0.25rem !important; } + .ml-lg-n25, + .mx-lg-n25 { + margin-left: -0.25rem !important; } + .m-lg-n50 { + margin: -0.5rem !important; } + .mt-lg-n50, + .my-lg-n50 { + margin-top: -0.5rem !important; } + .mr-lg-n50, + .mx-lg-n50 { + margin-right: -0.5rem !important; } + .mb-lg-n50, + .my-lg-n50 { + margin-bottom: -0.5rem !important; } + .ml-lg-n50, + .mx-lg-n50 { + margin-left: -0.5rem !important; } + .m-lg-n75 { + margin: -0.75rem !important; } + .mt-lg-n75, + .my-lg-n75 { + margin-top: -0.75rem !important; } + .mr-lg-n75, + .mx-lg-n75 { + margin-right: -0.75rem !important; } + .mb-lg-n75, + .my-lg-n75 { + margin-bottom: -0.75rem !important; } + .ml-lg-n75, + .mx-lg-n75 { + margin-left: -0.75rem !important; } + .m-lg-auto { + margin: auto !important; } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; } } + +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; } + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; } + .m-xl-1 { + margin: 1rem !important; } + .mt-xl-1, + .my-xl-1 { + margin-top: 1rem !important; } + .mr-xl-1, + .mx-xl-1 { + margin-right: 1rem !important; } + .mb-xl-1, + .my-xl-1 { + margin-bottom: 1rem !important; } + .ml-xl-1, + .mx-xl-1 { + margin-left: 1rem !important; } + .m-xl-2 { + margin: 1.5rem !important; } + .mt-xl-2, + .my-xl-2 { + margin-top: 1.5rem !important; } + .mr-xl-2, + .mx-xl-2 { + margin-right: 1.5rem !important; } + .mb-xl-2, + .my-xl-2 { + margin-bottom: 1.5rem !important; } + .ml-xl-2, + .mx-xl-2 { + margin-left: 1.5rem !important; } + .m-xl-3 { + margin: 3rem !important; } + .mt-xl-3, + .my-xl-3 { + margin-top: 3rem !important; } + .mr-xl-3, + .mx-xl-3 { + margin-right: 3rem !important; } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 3rem !important; } + .ml-xl-3, + .mx-xl-3 { + margin-left: 3rem !important; } + .m-xl-4 { + margin: 3.5rem !important; } + .mt-xl-4, + .my-xl-4 { + margin-top: 3.5rem !important; } + .mr-xl-4, + .mx-xl-4 { + margin-right: 3.5rem !important; } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 3.5rem !important; } + .ml-xl-4, + .mx-xl-4 { + margin-left: 3.5rem !important; } + .m-xl-5 { + margin: 4rem !important; } + .mt-xl-5, + .my-xl-5 { + margin-top: 4rem !important; } + .mr-xl-5, + .mx-xl-5 { + margin-right: 4rem !important; } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 4rem !important; } + .ml-xl-5, + .mx-xl-5 { + margin-left: 4rem !important; } + .m-xl-25 { + margin: 0.25rem !important; } + .mt-xl-25, + .my-xl-25 { + margin-top: 0.25rem !important; } + .mr-xl-25, + .mx-xl-25 { + margin-right: 0.25rem !important; } + .mb-xl-25, + .my-xl-25 { + margin-bottom: 0.25rem !important; } + .ml-xl-25, + .mx-xl-25 { + margin-left: 0.25rem !important; } + .m-xl-50 { + margin: 0.5rem !important; } + .mt-xl-50, + .my-xl-50 { + margin-top: 0.5rem !important; } + .mr-xl-50, + .mx-xl-50 { + margin-right: 0.5rem !important; } + .mb-xl-50, + .my-xl-50 { + margin-bottom: 0.5rem !important; } + .ml-xl-50, + .mx-xl-50 { + margin-left: 0.5rem !important; } + .m-xl-75 { + margin: 0.75rem !important; } + .mt-xl-75, + .my-xl-75 { + margin-top: 0.75rem !important; } + .mr-xl-75, + .mx-xl-75 { + margin-right: 0.75rem !important; } + .mb-xl-75, + .my-xl-75 { + margin-bottom: 0.75rem !important; } + .ml-xl-75, + .mx-xl-75 { + margin-left: 0.75rem !important; } + .p-xl-0 { + padding: 0 !important; } + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; } + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; } + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; } + .p-xl-1 { + padding: 1rem !important; } + .pt-xl-1, + .py-xl-1 { + padding-top: 1rem !important; } + .pr-xl-1, + .px-xl-1 { + padding-right: 1rem !important; } + .pb-xl-1, + .py-xl-1 { + padding-bottom: 1rem !important; } + .pl-xl-1, + .px-xl-1 { + padding-left: 1rem !important; } + .p-xl-2 { + padding: 1.5rem !important; } + .pt-xl-2, + .py-xl-2 { + padding-top: 1.5rem !important; } + .pr-xl-2, + .px-xl-2 { + padding-right: 1.5rem !important; } + .pb-xl-2, + .py-xl-2 { + padding-bottom: 1.5rem !important; } + .pl-xl-2, + .px-xl-2 { + padding-left: 1.5rem !important; } + .p-xl-3 { + padding: 3rem !important; } + .pt-xl-3, + .py-xl-3 { + padding-top: 3rem !important; } + .pr-xl-3, + .px-xl-3 { + padding-right: 3rem !important; } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 3rem !important; } + .pl-xl-3, + .px-xl-3 { + padding-left: 3rem !important; } + .p-xl-4 { + padding: 3.5rem !important; } + .pt-xl-4, + .py-xl-4 { + padding-top: 3.5rem !important; } + .pr-xl-4, + .px-xl-4 { + padding-right: 3.5rem !important; } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 3.5rem !important; } + .pl-xl-4, + .px-xl-4 { + padding-left: 3.5rem !important; } + .p-xl-5 { + padding: 4rem !important; } + .pt-xl-5, + .py-xl-5 { + padding-top: 4rem !important; } + .pr-xl-5, + .px-xl-5 { + padding-right: 4rem !important; } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 4rem !important; } + .pl-xl-5, + .px-xl-5 { + padding-left: 4rem !important; } + .p-xl-25 { + padding: 0.25rem !important; } + .pt-xl-25, + .py-xl-25 { + padding-top: 0.25rem !important; } + .pr-xl-25, + .px-xl-25 { + padding-right: 0.25rem !important; } + .pb-xl-25, + .py-xl-25 { + padding-bottom: 0.25rem !important; } + .pl-xl-25, + .px-xl-25 { + padding-left: 0.25rem !important; } + .p-xl-50 { + padding: 0.5rem !important; } + .pt-xl-50, + .py-xl-50 { + padding-top: 0.5rem !important; } + .pr-xl-50, + .px-xl-50 { + padding-right: 0.5rem !important; } + .pb-xl-50, + .py-xl-50 { + padding-bottom: 0.5rem !important; } + .pl-xl-50, + .px-xl-50 { + padding-left: 0.5rem !important; } + .p-xl-75 { + padding: 0.75rem !important; } + .pt-xl-75, + .py-xl-75 { + padding-top: 0.75rem !important; } + .pr-xl-75, + .px-xl-75 { + padding-right: 0.75rem !important; } + .pb-xl-75, + .py-xl-75 { + padding-bottom: 0.75rem !important; } + .pl-xl-75, + .px-xl-75 { + padding-left: 0.75rem !important; } + .m-xl-n1 { + margin: -1rem !important; } + .mt-xl-n1, + .my-xl-n1 { + margin-top: -1rem !important; } + .mr-xl-n1, + .mx-xl-n1 { + margin-right: -1rem !important; } + .mb-xl-n1, + .my-xl-n1 { + margin-bottom: -1rem !important; } + .ml-xl-n1, + .mx-xl-n1 { + margin-left: -1rem !important; } + .m-xl-n2 { + margin: -1.5rem !important; } + .mt-xl-n2, + .my-xl-n2 { + margin-top: -1.5rem !important; } + .mr-xl-n2, + .mx-xl-n2 { + margin-right: -1.5rem !important; } + .mb-xl-n2, + .my-xl-n2 { + margin-bottom: -1.5rem !important; } + .ml-xl-n2, + .mx-xl-n2 { + margin-left: -1.5rem !important; } + .m-xl-n3 { + margin: -3rem !important; } + .mt-xl-n3, + .my-xl-n3 { + margin-top: -3rem !important; } + .mr-xl-n3, + .mx-xl-n3 { + margin-right: -3rem !important; } + .mb-xl-n3, + .my-xl-n3 { + margin-bottom: -3rem !important; } + .ml-xl-n3, + .mx-xl-n3 { + margin-left: -3rem !important; } + .m-xl-n4 { + margin: -3.5rem !important; } + .mt-xl-n4, + .my-xl-n4 { + margin-top: -3.5rem !important; } + .mr-xl-n4, + .mx-xl-n4 { + margin-right: -3.5rem !important; } + .mb-xl-n4, + .my-xl-n4 { + margin-bottom: -3.5rem !important; } + .ml-xl-n4, + .mx-xl-n4 { + margin-left: -3.5rem !important; } + .m-xl-n5 { + margin: -4rem !important; } + .mt-xl-n5, + .my-xl-n5 { + margin-top: -4rem !important; } + .mr-xl-n5, + .mx-xl-n5 { + margin-right: -4rem !important; } + .mb-xl-n5, + .my-xl-n5 { + margin-bottom: -4rem !important; } + .ml-xl-n5, + .mx-xl-n5 { + margin-left: -4rem !important; } + .m-xl-n25 { + margin: -0.25rem !important; } + .mt-xl-n25, + .my-xl-n25 { + margin-top: -0.25rem !important; } + .mr-xl-n25, + .mx-xl-n25 { + margin-right: -0.25rem !important; } + .mb-xl-n25, + .my-xl-n25 { + margin-bottom: -0.25rem !important; } + .ml-xl-n25, + .mx-xl-n25 { + margin-left: -0.25rem !important; } + .m-xl-n50 { + margin: -0.5rem !important; } + .mt-xl-n50, + .my-xl-n50 { + margin-top: -0.5rem !important; } + .mr-xl-n50, + .mx-xl-n50 { + margin-right: -0.5rem !important; } + .mb-xl-n50, + .my-xl-n50 { + margin-bottom: -0.5rem !important; } + .ml-xl-n50, + .mx-xl-n50 { + margin-left: -0.5rem !important; } + .m-xl-n75 { + margin: -0.75rem !important; } + .mt-xl-n75, + .my-xl-n75 { + margin-top: -0.75rem !important; } + .mr-xl-n75, + .mx-xl-n75 { + margin-right: -0.75rem !important; } + .mb-xl-n75, + .my-xl-n75 { + margin-bottom: -0.75rem !important; } + .ml-xl-n75, + .mx-xl-n75 { + margin-left: -0.75rem !important; } + .m-xl-auto { + margin: auto !important; } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; } } + +.text-monospace { + font-family: "Montserrat", Helvetica, Arial, serif !important; } + +.text-justify { + text-align: justify !important; } + +.text-wrap { + white-space: normal !important; } + +.text-nowrap { + white-space: nowrap !important; } + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } + +.text-left { + text-align: left !important; } + +.text-right { + text-align: right !important; } + +.text-center { + text-align: center !important; } + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; } + .text-sm-right { + text-align: right !important; } + .text-sm-center { + text-align: center !important; } } + +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; } + .text-md-right { + text-align: right !important; } + .text-md-center { + text-align: center !important; } } + +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; } + .text-lg-right { + text-align: right !important; } + .text-lg-center { + text-align: center !important; } } + +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; } + .text-xl-right { + text-align: right !important; } + .text-xl-center { + text-align: center !important; } } + +.text-lowercase { + text-transform: lowercase !important; } + +.text-uppercase { + text-transform: uppercase !important; } + +.text-capitalize { + text-transform: capitalize !important; } + +.font-weight-light { + font-weight: 300 !important; } + +.font-weight-lighter { + font-weight: lighter !important; } + +.font-weight-normal { + font-weight: 400 !important; } + +.font-weight-bold { + font-weight: 700 !important; } + +.font-weight-bolder { + font-weight: bolder !important; } + +.font-italic { + font-style: italic !important; } + +.text-white { + color: #fff !important; } + +.text-primary { + color: #3a50dc !important; } + +a.text-primary:hover, a.text-primary:focus { + color: #3321e9 !important; } + +.text-secondary { + color: #b8c2cc !important; } + +a.text-secondary:hover, a.text-secondary:focus { + color: #8b9cac !important; } + +.text-success { + color: #28c76f !important; } + +a.text-success:hover, a.text-success:focus { + color: #1b874b !important; } + +.text-info { + color: #00cfe8 !important; } + +a.text-info:hover, a.text-info:focus { + color: #008b9c !important; } + +.text-warning { + color: #ff9f43 !important; } + +a.text-warning:hover, a.text-warning:focus { + color: #f67800 !important; } + +.text-danger { + color: #ea5455 !important; } + +a.text-danger:hover, a.text-danger:focus { + color: #d71a1c !important; } + +.text-light { + color: #babfc7 !important; } + +a.text-light:hover, a.text-light:focus { + color: #9098a5 !important; } + +.text-dark { + color: #1e1e1e !important; } + +a.text-dark:hover, a.text-dark:focus { + color: black !important; } + +.text-body { + color: #626262 !important; } + +.text-muted { + color: #b8c2cc !important; } + +.text-black-50 { + color: rgba(34, 41, 47, 0.5) !important; } + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; } + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; } + +.text-decoration-none { + text-decoration: none !important; } + +.text-break { + word-break: break-word !important; + overflow-wrap: break-word !important; } + +.text-reset { + color: inherit !important; } + +.visible { + visibility: visible !important; } + +.invisible { + visibility: hidden !important; } + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; } + a:not(.btn) { + text-decoration: underline; } + abbr[title]::after { + content: " (" attr(title) ")"; } + pre { + white-space: pre-wrap !important; } + pre, + blockquote { + border: 1px solid #adb5bd; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } + @page { + size: a3; } + body { + min-width: 992px !important; } + .container { + min-width: 992px !important; } + .navbar { + display: none; } + .badge { + border: 1px solid #22292f; } + .table { + border-collapse: collapse !important; } + .table td, + .table th { + background-color: #fff !important; } + .table-bordered th, + .table-bordered td { + border: 1px solid #dae1e7 !important; } + .table-dark { + color: inherit; } + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #f8f8f8; } + .table .thead-dark th { + color: inherit; + border-color: #f8f8f8; } } diff --git a/assets/css/bootstrap.min.css b/assets/css/bootstrap.min.css new file mode 100644 index 0000000..8d56d53 --- /dev/null +++ b/assets/css/bootstrap.min.css @@ -0,0 +1,11 @@ +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */dl,h1,h2,h3,h4,h5,h6,ol,p,pre,ul{margin-top:0}address,dl,ol,p,pre,ul{margin-bottom:1rem}img,svg{vertical-align:middle}body,caption{text-align:left}dd,h1,h2,h3,h4,h5,h6,label{margin-bottom:.5rem}pre,textarea{overflow:auto}article,aside,figcaption,figure,footer,header,hgroup,legend,main,nav,section{display:block}address,legend{line-height:inherit}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover,legend{color:inherit}progress,sub,sup{vertical-align:baseline}label,output{display:inline-block}button,hr,input{overflow:visible}.dropdown-menu,.nav,.navbar-nav{list-style:none}:root{--blue:#00CFE8;--indigo:#6610F2;--purple:#6F42C1;--pink:#E83E8C;--red:#EA5455;--orange:#FF9F43;--yellow:#FFC107;--green:#28C76F;--teal:#20C997;--cyan:#7367F0;--white:#FFFFFF;--gray:#B8C2CC;--gray-dark:#1E1E1E;--primary:#7367F0;--secondary:#B8C2CC;--success:#28C76F;--info:#00CFE8;--warning:#FF9F43;--danger:#EA5455;--light:#BABFC7;--dark:#1E1E1E;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:'Montserrat',Helvetica,Arial,serif;--font-family-monospace:'Montserrat',Helvetica,Arial,serif}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(34,41,47,0)}body,code,kbd,pre,samp{font-family:Montserrat,Helvetica,Arial,serif}body{margin:0;font-size:1rem;font-weight:400;line-height:1.45;color:#626262;background-color:#F8F8F8}[tabindex='-1']:focus{outline:0!important}abbr[data-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}.breadcrumb-item+.breadcrumb-item:hover::before,.btn-link,.btn-link.focus,.btn-link:focus,.btn-link:hover,.btn:hover,.card-link:hover,.close:hover,.dropdown-item:focus,.dropdown-item:hover,.list-group-item-action:focus,.list-group-item-action:hover,.nav-link:focus,.nav-link:hover,.navbar-brand:focus,.navbar-brand:hover,.navbar-toggler:focus,.navbar-toggler:hover,.page-link:hover,a,a.badge:focus,a.badge:hover,a:hover,a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{text-decoration:none}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled),summary{cursor:pointer}address{font-style:normal}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-left:0}blockquote,figure{margin:0 0 1rem}b,strong{font-weight:bolder}sub,sup{position:relative;font-size:75%;line-height:0}sub{bottom:-.25em}sup{top:-.5em}a{color:#7367F0;background-color:transparent}a:hover{color:#5E50EE}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-size:1em}img{border-style:none}svg{overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#B8C2CC;caption-side:bottom}th{text-align:inherit}button{border-radius:0}button:focus{outline:dotted 1px;outline:-webkit-focus-ring-color auto 5px}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=radio],input[type=checkbox]{box-sizing:border-box;padding:0}input[type=month],input[type=date],input[type=time],input[type=datetime-local]{-webkit-appearance:listbox}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;white-space:normal}.badge,.dropdown-header,.dropdown-item,.dropdown-toggle,.input-group-text,.navbar-brand,.progress-bar{white-space:nowrap}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}.display-1,.display-2,.display-3,.display-4{line-height:1.2}summary{display:list-item}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2;color:#2C2C2C}.blockquote,hr{margin-bottom:1rem}.display-1,.display-2,.display-3,.display-4,.lead{font-weight:300}.h1,h1{font-size:2rem}.h2,h2{font-size:1.74rem}.h3,h3{font-size:1.51rem}.h4,h4{font-size:1.32rem}.h5,h5{font-size:1.14rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem}.display-1{font-size:6rem}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-4{font-size:3.5rem}hr{box-sizing:content-box;height:0;margin-top:1rem;border:0;border-top:1px solid rgba(34,41,47,.1)}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.small,small{font-size:smaller;font-weight:400}.mark,mark{padding:.2em;background-color:#FCF8E3}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{font-size:1.25rem}.blockquote-footer{display:block;font-size:smaller;color:#B8C2CC}code,kbd{font-size:90%}.blockquote-footer::before{content:'\2014\00A0'}.img-thumbnail{padding:.25rem;background-color:#F8F8F8;border:1px solid #DAE1E7;border-radius:.5rem}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#B8C2CC}a>code,pre code{color:inherit}code{color:#E83E8C;word-break:break-word}kbd{padding:.2rem .4rem;color:#FFF;background-color:#EEE;border-radius:.25rem}kbd kbd{padding:0;font-size:100%;font-weight:700}.container,.container-fluid{padding-right:14px;padding-left:14px;margin-right:auto;margin-left:auto;width:100%}.btn,.btn-link,.custom-select,.dropdown-item,.form-control,.input-group-text{font-weight:400}pre{display:block;font-size:90%;color:#2A2E30}pre code{font-size:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.col,.col-auto{max-width:100%}.row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-14px;margin-left:-14px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:14px;padding-left:14px}.col{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.col-1,.col-auto{-webkit-box-flex:0}.col-auto{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-1{-webkit-flex:0 0 8.33333%;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-2,.col-3{-webkit-box-flex:0}.col-2{-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-3{-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4,.col-5{-webkit-box-flex:0}.col-4{-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-5{-webkit-flex:0 0 41.66667%;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-6,.col-7{-webkit-box-flex:0}.col-6{-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-flex:0 0 58.33333%;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-8,.col-9{-webkit-box-flex:0}.col-8{-webkit-flex:0 0 66.66667%;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-9{-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10,.col-11{-webkit-box-flex:0}.col-10{-webkit-flex:0 0 83.33333%;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-11{-webkit-flex:0 0 91.66667%;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-webkit-order:13;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-webkit-order:4;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-webkit-order:5;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-webkit-order:6;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-webkit-order:7;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-webkit-order:8;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-webkit-order:9;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-webkit-order:10;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-webkit-order:11;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-webkit-order:12;-ms-flex-order:12;order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}@media (min-width:576px){.col-sm{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-webkit-box-flex:0;-webkit-flex:0 0 8.33333%;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-sm-2{-webkit-box-flex:0;-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-sm-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-sm-5{-webkit-box-flex:0;-webkit-flex:0 0 41.66667%;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-sm-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-webkit-flex:0 0 58.33333%;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-sm-8{-webkit-box-flex:0;-webkit-flex:0 0 66.66667%;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-sm-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-webkit-flex:0 0 83.33333%;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-sm-11{-webkit-box-flex:0;-webkit-flex:0 0 91.66667%;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-sm-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-webkit-order:13;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-webkit-order:4;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-webkit-order:5;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-webkit-order:6;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-webkit-order:7;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-webkit-order:8;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-webkit-order:9;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-webkit-order:10;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-webkit-order:11;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-webkit-order:12;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}}@media (min-width:768px){.col-md{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-webkit-box-flex:0;-webkit-flex:0 0 8.33333%;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-md-2{-webkit-box-flex:0;-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-md-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-md-5{-webkit-box-flex:0;-webkit-flex:0 0 41.66667%;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-md-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-webkit-flex:0 0 58.33333%;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-md-8{-webkit-box-flex:0;-webkit-flex:0 0 66.66667%;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-md-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-webkit-flex:0 0 83.33333%;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-md-11{-webkit-box-flex:0;-webkit-flex:0 0 91.66667%;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-md-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-webkit-order:13;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-webkit-order:4;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-webkit-order:5;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-webkit-order:6;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-webkit-order:7;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-webkit-order:8;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-webkit-order:9;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-webkit-order:10;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-webkit-order:11;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-webkit-order:12;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}}@media (min-width:992px){.col-lg{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-webkit-box-flex:0;-webkit-flex:0 0 8.33333%;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-lg-2{-webkit-box-flex:0;-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-lg-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-lg-5{-webkit-box-flex:0;-webkit-flex:0 0 41.66667%;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-lg-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-webkit-flex:0 0 58.33333%;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-lg-8{-webkit-box-flex:0;-webkit-flex:0 0 66.66667%;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-lg-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-webkit-flex:0 0 83.33333%;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-lg-11{-webkit-box-flex:0;-webkit-flex:0 0 91.66667%;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-lg-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-webkit-order:13;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-webkit-order:4;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-webkit-order:5;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-webkit-order:6;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-webkit-order:7;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-webkit-order:8;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-webkit-order:9;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-webkit-order:10;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-webkit-order:11;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-webkit-order:12;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}}@media (min-width:1200px){.col-xl{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.33333%;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-xl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.66667%;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-xl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-xl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.66667%;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-xl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.33333%;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-xl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.66667%;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-xl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.33333%;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-xl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.66667%;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-xl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-webkit-order:13;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-webkit-order:4;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-webkit-order:5;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-webkit-order:6;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-webkit-order:7;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-webkit-order:8;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-webkit-order:9;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-webkit-order:10;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-webkit-order:11;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-webkit-order:12;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}}.table{width:100%;margin-bottom:1rem;color:#626262}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #F8F8F8}.table thead th{vertical-align:bottom;border-bottom:2px solid #F8F8F8}.table tbody+tbody{border-top:2px solid #F8F8F8}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #F8F8F8}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(34,41,47,.05)}.table-hover tbody tr:hover{color:#626262;background-color:rgba(34,41,47,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#D8D4FB}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#B6B0F7}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#C3BDF9}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#EBEEF1}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#DADFE4}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#DCE1E7}.table-success,.table-success>td,.table-success>th{background-color:#C3EFD7}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8FE2B4}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#AFEACA}.table-info,.table-info>td,.table-info>th{background-color:#B8F2F9}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#7AE6F3}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#A0EEF7}.table-warning,.table-warning>td,.table-warning>th{background-color:#FFE4CA}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#FFCD9D}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#FFD7B1}.table-danger,.table-danger>td,.table-danger>th{background-color:#F9CFCF}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#F4A6A7}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#F6B8B8}.table-light,.table-light>td,.table-light>th{background-color:#ECEDEF}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#DBDEE2}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#DEE0E3}.table-dark,.table-dark>td,.table-dark>th{background-color:silver}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#8A8A8A}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#B3B3B3}.table-active,.table-active>td,.table-active>th{background-color:rgba(34,41,47,.075)}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(23,28,32,.075)}.table .thead-dark th{color:#FFF;background-color:#1E1E1E;border-color:#313131}.table .thead-light th{color:#4E5154;background-color:#EDEDED;border-color:#F8F8F8}.table-dark{color:#FFF;background-color:#1E1E1E}.table-dark td,.table-dark th,.table-dark thead th{border-color:#313131}.table-dark.table-bordered,.table-responsive>.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#FFF;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.accordion>.card,.collapsing,.modal-open,.progress,.toast{overflow:hidden}.form-control{display:block;width:100%;height:calc(1.25em + 1.4rem + 1px);padding:.7rem;font-size:.96rem;line-height:1.25;color:#4E5154;background-color:#FFF;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:5px;-webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{-webkit-transition:none;transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#4E5154;background-color:#FFF;border-color:#7367F0;outline:0;box-shadow:0 3px 10px 0 rgba(0,0,0,.15)}.form-control::-webkit-input-placeholder{color:rgba(0,0,0,.5);opacity:1}.form-control::-moz-placeholder{color:rgba(0,0,0,.5);opacity:1}.form-control:-ms-input-placeholder{color:rgba(0,0,0,.5);opacity:1}.form-control::-ms-input-placeholder{color:rgba(0,0,0,.5);opacity:1}.form-control::placeholder{color:rgba(0,0,0,.5);opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#F5F5F1;opacity:1}select.form-control:focus::-ms-value{color:#4E5154;background-color:#FFF}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.7rem + 1px);padding-bottom:calc(.7rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.25}.col-form-label-lg{padding-top:calc(1rem + 1px);padding-bottom:calc(1rem + 1px);font-size:1.25rem;line-height:1.25}.col-form-label-sm{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:.7rem;line-height:1}.form-control-plaintext{display:block;width:100%;padding-top:.7rem;padding-bottom:.7rem;margin-bottom:0;line-height:1.25;color:#ADB5BD;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1em + 1rem + 2px);padding:.5rem 1.5rem;font-size:.7rem;line-height:1;border-radius:4px}.form-control-lg{height:calc(1.25em + 2rem + 2px);padding:1rem 2.5rem;font-size:1.25rem;line-height:1.25;border-radius:6px}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#B8C2CC}.form-check-label{margin-bottom:0}.form-check-inline{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.invalid-tooltip,.valid-tooltip{position:absolute;z-index:5;max-width:100%;line-height:1.45;border-radius:.428rem;top:100%}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:smaller;color:#28C76F}.valid-tooltip{display:none;padding:.4rem .775rem;margin-top:.1rem;font-size:.857rem;color:#FFF;background-color:#28C76F}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.form-check-input.is-valid~.form-check-label,.was-validated .custom-control-input:valid~.custom-control-label,.was-validated .form-check-input:valid~.form-check-label{color:#28C76F}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28C76F;padding-right:calc(1.25em + 1.4rem);background-image:url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 8 8\'%3e%3cpath fill=\'%2328c76f\' d=\'M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z\'/%3e%3c/svg%3e');background-repeat:no-repeat;background-position:center right calc(.3125em + .35rem);background-size:calc(.625em + .7rem) calc(.625em + .7rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28C76F;box-shadow:0 0 0 .2rem rgba(40,199,111,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.25em + 1.4rem);background-position:top calc(.3125em + .35rem) right calc(.3125em + .35rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28C76F;padding-right:calc((1em + 1.4rem) * 3 / 4 + 1.7rem);background:url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 4 5\'%3e%3cpath fill=\'%231e1e1e\' d=\'M2 0L0 2h4zm0 5L0 3h4z\'/%3e%3c/svg%3e') right .7rem center/8px 10px no-repeat,url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 8 8\'%3e%3cpath fill=\'%2328c76f\' d=\'M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z\'/%3e%3c/svg%3e') center right 1.7rem/calc(.625em + .7rem) calc(.625em + .7rem) no-repeat #FFF}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28C76F;box-shadow:0 0 0 .2rem rgba(40,199,111,.25)}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28C76F}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#48DA89;background-color:#48DA89}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,199,111,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28C76F}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28C76F;box-shadow:0 0 0 .2rem rgba(40,199,111,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:smaller;color:#EA5455}.invalid-tooltip{display:none;padding:.4rem .775rem;margin-top:.1rem;font-size:.857rem;color:#FFF;background-color:#EA5455}.collapsing,.dropdown,.dropleft,.dropright,.dropup{position:relative}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.form-check-input.is-invalid~.form-check-label,.was-validated .custom-control-input:invalid~.custom-control-label,.was-validated .form-check-input:invalid~.form-check-label{color:#EA5455}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#EA5455;padding-right:calc(1.25em + 1.4rem);background-image:url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'%23ea5455\' viewBox=\'-2 -2 7 7\'%3e%3cpath stroke=\'%23ea5455\' d=\'M0 0l3 3m0-3L0 3\'/%3e%3ccircle r=\'.5\'/%3e%3ccircle cx=\'3\' r=\'.5\'/%3e%3ccircle cy=\'3\' r=\'.5\'/%3e%3ccircle cx=\'3\' cy=\'3\' r=\'.5\'/%3e%3c/svg%3E');background-repeat:no-repeat;background-position:center right calc(.3125em + .35rem);background-size:calc(.625em + .7rem) calc(.625em + .7rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#EA5455;box-shadow:0 0 0 .2rem rgba(234,84,85,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.25em + 1.4rem);background-position:top calc(.3125em + .35rem) right calc(.3125em + .35rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#EA5455;padding-right:calc((1em + 1.4rem) * 3 / 4 + 1.7rem);background:url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 4 5\'%3e%3cpath fill=\'%231e1e1e\' d=\'M2 0L0 2h4zm0 5L0 3h4z\'/%3e%3c/svg%3e') right .7rem center/8px 10px no-repeat,url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'%23ea5455\' viewBox=\'-2 -2 7 7\'%3e%3cpath stroke=\'%23ea5455\' d=\'M0 0l3 3m0-3L0 3\'/%3e%3ccircle r=\'.5\'/%3e%3ccircle cx=\'3\' r=\'.5\'/%3e%3ccircle cy=\'3\' r=\'.5\'/%3e%3ccircle cx=\'3\' cy=\'3\' r=\'.5\'/%3e%3c/svg%3E') center right 1.7rem/calc(.625em + .7rem) calc(.625em + .7rem) no-repeat #FFF}.dropdown-menu,.modal-content,.popover,.toast,.toast-header{background-clip:padding-box}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#EA5455;box-shadow:0 0 0 .2rem rgba(234,84,85,.25)}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#EA5455}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#F08182;background-color:#F08182}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(234,84,85,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#EA5455}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#EA5455;box-shadow:0 0 0 .2rem rgba(234,84,85,.25)}.form-inline{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn-group-vertical,.navbar-nav{-webkit-box-orient:vertical;-webkit-box-direction:normal}.btn-block,input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.btn{display:inline-block;color:#626262;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:0 solid transparent;padding:.9rem 2rem;font-size:1rem;line-height:1;border-radius:.4285rem;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.dropdown-toggle::after,.dropup .dropdown-toggle::after{vertical-align:.255em;content:''}@media (prefers-reduced-motion:reduce){.btn{-webkit-transition:none;transition:none}}.btn:hover{color:#626262}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(115,103,240,.25)}.btn-primary.focus,.btn-primary:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(136,126,242,.5)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#FFF;background-color:#7367F0;border-color:#7367F0}.btn-primary:hover{color:#FFF;background-color:#5344ED;border-color:#4839EB}.btn-primary.disabled,.btn-primary:disabled{color:#FFF;background-color:#7367F0;border-color:#7367F0}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#FFF;background-color:#4839EB;border-color:#3E2DEA}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(163,172,181,.5)}.btn-secondary{color:#2A2E30;background-color:#B8C2CC;border-color:#B8C2CC}.btn-secondary:hover{color:#2A2E30;background-color:#A2AFBC;border-color:#9AA9B7}.btn-secondary.disabled,.btn-secondary:disabled{color:#2A2E30;background-color:#B8C2CC;border-color:#B8C2CC}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#2A2E30;background-color:#9AA9B7;border-color:#93A2B1}.btn-success.focus,.btn-success:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,207,133,.5)}.btn-success{color:#FFF;background-color:#28C76F;border-color:#28C76F}.btn-success:hover{color:#FFF;background-color:#22A75D;border-color:#1F9D57}.btn-success.disabled,.btn-success:disabled{color:#FFF;background-color:#28C76F;border-color:#28C76F}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#FFF;background-color:#1F9D57;border-color:#1D9251}.btn-info.focus,.btn-info:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,214,235,.5)}.btn-info{color:#FFF;background-color:#00CFE8;border-color:#00CFE8}.btn-info:hover{color:#FFF;background-color:#00ADC2;border-color:#00A1B5}.btn-info.disabled,.btn-info:disabled{color:#FFF;background-color:#00CFE8;border-color:#00CFE8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#FFF;background-color:#00A1B5;border-color:#0096A8}.btn-warning.focus,.btn-warning:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(223,142,64,.5)}.btn-warning{color:#2A2E30;background-color:#FF9F43;border-color:#FF9F43}.btn-warning:hover{color:#2A2E30;background-color:#FF8B1D;border-color:#FF8510}.btn-warning.disabled,.btn-warning:disabled{color:#2A2E30;background-color:#FF9F43;border-color:#FF9F43}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#2A2E30;background-color:#FF8510;border-color:#FF7E03}.btn-danger.focus,.btn-danger:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(237,110,111,.5)}.btn-danger{color:#FFF;background-color:#EA5455;border-color:#EA5455}.btn-danger:hover{color:#FFF;background-color:#E63233;border-color:#E42728}.btn-danger.disabled,.btn-danger:disabled{color:#FFF;background-color:#EA5455;border-color:#EA5455}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#FFF;background-color:#E42728;border-color:#E21C1D}.btn-light.focus,.btn-light:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(164,169,176,.5)}.btn-light{color:#2A2E30;background-color:#BABFC7;border-color:#BABFC7}.btn-light:hover{color:#2A2E30;background-color:#A5ABB6;border-color:#9EA5B0}.btn-light.disabled,.btn-light:disabled{color:#2A2E30;background-color:#BABFC7;border-color:#BABFC7}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#2A2E30;background-color:#9EA5B0;border-color:#979EAA}.btn-dark.focus,.btn-dark:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(64,64,64,.5)}.btn-dark{color:#FFF;background-color:#1E1E1E;border-color:#1E1E1E}.btn-dark:hover{color:#FFF;background-color:#0B0B0B;border-color:#050505}.btn-dark.disabled,.btn-dark:disabled{color:#FFF;background-color:#1E1E1E;border-color:#1E1E1E}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#FFF;background-color:#050505;border-color:#000}.btn-outline-primary.focus,.btn-outline-primary:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(115,103,240,.5)}.btn-outline-primary{color:#7367F0;border-color:#7367F0}.btn-outline-primary:hover{color:#FFF;background-color:#7367F0;border-color:#7367F0}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#7367F0;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#FFF;background-color:#7367F0;border-color:#7367F0}.btn-outline-secondary.focus,.btn-outline-secondary:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(184,194,204,.5)}.btn-outline-secondary{color:#B8C2CC;border-color:#B8C2CC}.btn-outline-secondary:hover{color:#2A2E30;background-color:#B8C2CC;border-color:#B8C2CC}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#B8C2CC;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#2A2E30;background-color:#B8C2CC;border-color:#B8C2CC}.btn-outline-success.focus,.btn-outline-success:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,199,111,.5)}.btn-outline-success{color:#28C76F;border-color:#28C76F}.btn-outline-success:hover{color:#FFF;background-color:#28C76F;border-color:#28C76F}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28C76F;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#FFF;background-color:#28C76F;border-color:#28C76F}.btn-outline-info.focus,.btn-outline-info:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,207,232,.5)}.btn-outline-info{color:#00CFE8;border-color:#00CFE8}.btn-outline-info:hover{color:#FFF;background-color:#00CFE8;border-color:#00CFE8}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#00CFE8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#FFF;background-color:#00CFE8;border-color:#00CFE8}.btn-outline-warning.focus,.btn-outline-warning:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,159,67,.5)}.btn-outline-warning{color:#FF9F43;border-color:#FF9F43}.btn-outline-warning:hover{color:#2A2E30;background-color:#FF9F43;border-color:#FF9F43}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#FF9F43;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#2A2E30;background-color:#FF9F43;border-color:#FF9F43}.btn-outline-danger.focus,.btn-outline-danger:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(234,84,85,.5)}.btn-outline-danger{color:#EA5455;border-color:#EA5455}.btn-outline-danger:hover{color:#FFF;background-color:#EA5455;border-color:#EA5455}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#EA5455;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#FFF;background-color:#EA5455;border-color:#EA5455}.btn-outline-light.focus,.btn-outline-light:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(186,191,199,.5)}.btn-outline-light{color:#BABFC7;border-color:#BABFC7}.btn-outline-light:hover{color:#2A2E30;background-color:#BABFC7;border-color:#BABFC7}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#BABFC7;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#2A2E30;background-color:#BABFC7;border-color:#BABFC7}.btn-outline-dark.focus,.btn-outline-dark:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(30,30,30,.5)}.btn-outline-dark{color:#1E1E1E;border-color:#1E1E1E}.btn-outline-dark:hover{color:#FFF;background-color:#1E1E1E;border-color:#1E1E1E}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#1E1E1E;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#FFF;background-color:#1E1E1E;border-color:#1E1E1E}.btn-link{color:#7367F0}.btn-link:hover{color:#5E50EE}.btn-link.focus,.btn-link:focus{box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#B8C2CC;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:1rem 2.5rem;font-size:1.25rem;line-height:1.25;border-radius:.4285rem}.btn-group-sm>.btn,.btn-sm{padding:.5rem 1.5rem;font-size:.7rem;line-height:1;border-radius:.4285rem}.btn-block{display:block}.btn-block+.btn-block{margin-top:.5rem}.fade{-webkit-transition:opacity .15s linear;transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{-webkit-transition:none;transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;-webkit-transition:height .35s ease;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{-webkit-transition:none;transition:none}}.dropdown-toggle::after{display:inline-block;margin-left:.255em;border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:10;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.5rem 0 0;font-size:.9375rem;color:#626262;text-align:left;background-color:#FFF;border:1px solid rgba(34,41,47,.15);border-radius:5px}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.5rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropleft .dropdown-toggle::before,.dropright .dropdown-toggle::after{content:'';border-top:.3em solid transparent;border-bottom:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.5rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;border-right:0;border-left:.3em solid;vertical-align:0}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.5rem}.dropleft .dropdown-toggle::after{margin-left:.255em;vertical-align:.255em;content:'';display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;border-right:.3em solid;vertical-align:0}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropdown-menu[x-placement^=top],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.08)}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child),.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child),.input-group-text input[type=radio],.input-group-text input[type=checkbox]{margin-top:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn,.custom-control-label,.custom-file,.dropdown-header,.input-group-text,.nav{margin-bottom:0}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;color:#2A2E30;text-align:inherit;background-color:transparent;border:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after,.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child),.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-item:focus,.dropdown-item:hover{color:#1E2122;background-color:#F8F8F8}.dropdown-item.active,.dropdown-item:active{color:#FFF;text-decoration:none;background-color:#7367F0}.dropdown-item.disabled,.dropdown-item:disabled{color:#B8C2CC;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;font-size:1rem;color:#B8C2CC}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#2A2E30}.btn-group,.btn-group-vertical{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-toolbar,.input-group{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.dropdown-toggle-split{padding-right:1.5rem;padding-left:1.5rem}.input-group-append,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text,.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:1.125rem;padding-left:1.125rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:1.875rem;padding-left:1.875rem}.btn-group-vertical{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-file{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.input-group-append,.input-group-prepend{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.input-group-text,.nav,.navbar{display:-webkit-box}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-prepend{margin-right:-1px}.input-group-text{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding:.7rem;font-size:.96rem;line-height:1.25;color:#4E5154;text-align:center;background-color:#EDEDED;border:1px solid rgba(0,0,0,.2);border-radius:5px}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.25em + 2rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:1rem 2.5rem;font-size:1.25rem;line-height:1.25;border-radius:6px}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1em + 1rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.5rem 1.5rem;font-size:.7rem;line-height:1;border-radius:4px}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.7rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.45rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#FFF;border-color:#7367F0;background-color:#7367F0}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 3px 10px 0 rgba(0,0,0,.15)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#7367F0}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#FFF;background-color:#fff;border-color:#fff}.custom-control-input:disabled~.custom-control-label{color:#B8C2CC}.custom-control-input:disabled~.custom-control-label::before{background-color:#F5F5F1}.custom-control-label{position:relative;vertical-align:top}.custom-control-label::after,.custom-control-label::before{position:absolute;top:.225rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:''}.custom-control-label::before{pointer-events:none;background-color:#FFF;border:1px solid #ADB5BD}.custom-control-label::after{background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 8 8\'%3e%3cpath fill=\'%23fff\' d=\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\'/%3e%3c/svg%3e')}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#7367F0;background-color:#7367F0}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before,.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before,.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(115,103,240,.5)}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 4 4\'%3e%3cpath stroke=\'%23fff\' d=\'M0 2h4\'/%3e%3c/svg%3e')}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'-4 -4 8 8\'%3e%3ccircle r=\'3\' fill=\'%23fff\'/%3e%3c/svg%3e')}.custom-switch{padding-left:3.5rem}.custom-switch .custom-control-label::before{left:-3.5rem;width:3rem;pointer-events:all;border-radius:.857rem}.custom-switch .custom-control-label::after{top:calc(.225rem + 2px);left:calc(-3.5rem + 2px);width:1.286rem;height:1.286rem;background-color:#ADB5BD;border-radius:.857rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{-webkit-transition:none;transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#FFF;-webkit-transform:translateX(2rem);-ms-transform:translateX(2rem);transform:translateX(2rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(115,103,240,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.25em + 1.4rem + 1px);padding:.7rem 1.7rem .7rem .7rem;font-size:.96rem;line-height:1.25;color:#4E5154;vertical-align:middle;background:url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 4 5\'%3e%3cpath fill=\'%231e1e1e\' d=\'M2 0L0 2h4zm0 5L0 3h4z\'/%3e%3c/svg%3e') right .7rem center/8px 10px no-repeat #FFF;border:1px solid rgba(0,0,0,.2);border-radius:5px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-file-input:focus~.custom-file-label,.custom-select:focus{border-color:#7367F0;box-shadow:0 3px 10px 0 rgba(0,0,0,.15)}.custom-select:focus{outline:0}.custom-select:focus::-ms-value{color:#4E5154;background-color:#FFF}.custom-select[multiple],.custom-select[size]:not([size='1']){height:auto;padding-right:.7rem;background-image:none}.custom-select:disabled{color:#B8C2CC;background-color:#EDEDED}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1.5rem;font-size:.7rem}.custom-select-lg{height:calc(1.25em + 2rem + 2px);padding-top:1rem;padding-bottom:1rem;padding-left:2.5rem;font-size:1.25rem}.custom-file,.custom-file-input,.custom-file-label{height:calc(1.25em + 1.4rem + 1px)}.custom-file{position:relative;display:inline-block;width:100%}.custom-file-input{position:relative;z-index:2;width:100%;margin:0;opacity:0}.custom-file-label,.custom-file-label::after{position:absolute;padding:.7rem;line-height:1.5rem;color:#4E5154;top:0;right:0}.custom-file-input:disabled~.custom-file-label{background-color:#F5F5F1}.custom-file-input:lang(en)~.custom-file-label::after{content:'Browse'}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{left:0;z-index:1;font-weight:400;background-color:#FFF;border:1px solid rgba(0,0,0,.2);border-radius:5px}.alert-link,.badge,.close{font-weight:700}.custom-file-label::after{bottom:0;z-index:3;display:block;height:calc(1.25em + 1.4rem);content:'Browse';background-color:#EDEDED;border-left:inherit;border-radius:0 5px 5px 0}.nav,.navbar{display:-webkit-flex;display:-ms-flexbox;-webkit-flex-wrap:wrap}.custom-range{width:100%;height:calc(1rem + .4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #F8F8F8,0 3px 10px 0 rgba(0,0,0,.15)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #F8F8F8,0 3px 10px 0 rgba(0,0,0,.15)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #F8F8F8,0 3px 10px 0 rgba(0,0,0,.15)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#7367F0;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#fff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#DAE1E7;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#7367F0;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-webkit-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#fff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#DAE1E7;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#7367F0;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-webkit-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#fff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#DAE1E7;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#DAE1E7;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#ADB5BD}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#ADB5BD}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#ADB5BD}.custom-control-label::before,.custom-file-label,.custom-select{-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{-webkit-transition:none;transition:none}}.nav{display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0}.nav-link{display:block;padding:.357rem .5rem}.nav-link.disabled{color:#B8C2CC;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #DAE1E7}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.5rem;border-top-right-radius:.5rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#EDEDED #EDEDED #DAE1E7}.nav-tabs .nav-link.disabled{color:#B8C2CC;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#4E5154;background-color:#F8F8F8;border-color:#DAE1E7 #DAE1E7 #F8F8F8}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.5rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#FFF;background-color:#7367F0}.nav-fill .nav-item{-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;margin-right:1rem;font-size:2rem;line-height:inherit}.card,.navbar-nav{display:-ms-flexbox}.navbar-nav{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.357rem;padding-bottom:.357rem}.navbar-collapse{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:2rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.4285rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:'';background:center center no-repeat;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm,.navbar-expand-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-sm{-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md,.navbar-expand-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-md{-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg,.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-lg{-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl,.navbar-expand-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-xl{-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.card,.card-deck{-webkit-box-orient:vertical;-webkit-box-direction:normal}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(34,41,47,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(34,41,47,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(34,41,47,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(34,41,47,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(34,41,47,.9)}.navbar-light .navbar-toggler{color:rgba(34,41,47,.5);border-color:rgba(34,41,47,.1)}.navbar-light .navbar-toggler-icon{background-image:url('data:image/svg+xml,%3csvg viewBox=\'0 0 30 30\' xmlns=\'http://www.w3.org/2000/svg\'%3e%3cpath stroke=\'rgba(34, 41, 47, 0.5)\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-miterlimit=\'10\' d=\'M4 7h22M4 15h22M4 23h22\'/%3e%3c/svg%3e')}.navbar-light .navbar-text{color:rgba(34,41,47,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(34,41,47,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#FFF}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#FFF}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url('data:image/svg+xml,%3csvg viewBox=\'0 0 30 30\' xmlns=\'http://www.w3.org/2000/svg\'%3e%3cpath stroke=\'rgba(255, 255, 255, 0.5)\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-miterlimit=\'10\' d=\'M4 7h22M4 15h22M4 23h22\'/%3e%3c/svg%3e')}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#FFF}.card{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#FFF;background-clip:border-box;border:1px solid rgba(34,41,47,.125);border-radius:.5rem}.card-footer,.card-header{padding:1.5rem;background-color:rgba(34,41,47,.03)}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.card-body{-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;padding:1.5rem}.card-title{margin-bottom:1.5rem}.card-header,.card-subtitle,.card-text:last-child{margin-bottom:0}.card-subtitle{margin-top:-.75rem}.card-link+.card-link{margin-left:1.5rem}.card-header-pills,.card-header-tabs{margin-right:-.75rem;margin-left:-.75rem}.card-header{border-bottom:1px solid rgba(34,41,47,.125)}.card-header:first-child{border-radius:calc(.5rem - 1px) calc(.5rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{border-top:1px solid rgba(34,41,47,.125)}.card-footer:last-child{border-radius:0 0 calc(.5rem - 1px) calc(.5rem - 1px)}.card-header-tabs{margin-bottom:-1.5rem;border-bottom:0}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.alert,.btn .badge,.page-link{position:relative}.card-img{width:100%;border-radius:calc(.5rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.5rem - 1px);border-top-right-radius:calc(.5rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.5rem - 1px);border-bottom-left-radius:calc(.5rem - 1px)}.card-deck{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:14px}@media (min-width:576px){.card-deck,.card-deck .card{-webkit-box-direction:normal}.card-deck{-webkit-box-orient:horizontal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-14px;margin-left:-14px}.card-deck .card{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0;-webkit-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-right:14px;margin-bottom:0;margin-left:14px}}.card-group{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:14px}@media (min-width:576px){.card-group{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-webkit-box-flex:1;-webkit-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.list-group,.progress-bar{-webkit-box-orient:vertical}.card-columns .card{margin-bottom:1.5rem}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.breadcrumb,.pagination{border-radius:.5rem;list-style:none}.accordion>.card .card-header{margin-bottom:-1px}.breadcrumb{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;background-color:#EDEDED}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#B8C2CC;content:'/'}.pagination,.progress{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.breadcrumb-item.active{color:#B8C2CC}.pagination{display:flex;padding-left:0}.page-link{display:block;padding:.65rem .911rem;margin-left:-1px;line-height:1.25;color:#7367F0;background-color:#FFF;border:1px solid #DAE1E7}.page-link:hover{z-index:2;color:#5E50EE;background-color:#EDEDED;border-color:#DAE1E7}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(115,103,240,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.page-item:last-child .page-link{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.page-item.active .page-link{z-index:1;color:#FFF;background-color:#7367F0;border-color:#7367F0}.page-item.disabled .page-link{color:#B8C2CC;pointer-events:none;cursor:auto;background-color:#FFF;border-color:#DAE1E7}.pagination-lg .page-link{padding:.5rem 1rem;font-size:2rem;line-height:1.25}.badge,.close{line-height:1}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.6rem;border-bottom-left-radius:.6rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.6rem;border-bottom-right-radius:.6rem}.pagination-sm .page-link{padding:.5rem .75rem;font-size:1rem;line-height:1}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.badge{display:inline-block;padding:.35em .4em;font-size:80%;text-align:center;vertical-align:baseline;border-radius:.25rem;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{-webkit-transition:none;transition:none}}.badge:empty{display:none}.btn .badge{top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#FFF;background-color:#7367F0}a.badge-primary:focus,a.badge-primary:hover{color:#FFF;background-color:#4839EB}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(115,103,240,.5)}.badge-secondary{color:#2A2E30;background-color:#B8C2CC}a.badge-secondary:focus,a.badge-secondary:hover{color:#2A2E30;background-color:#9AA9B7}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(184,194,204,.5)}.badge-success{color:#FFF;background-color:#28C76F}a.badge-success:focus,a.badge-success:hover{color:#FFF;background-color:#1F9D57}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,199,111,.5)}.badge-info{color:#FFF;background-color:#00CFE8}a.badge-info:focus,a.badge-info:hover{color:#FFF;background-color:#00A1B5}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,207,232,.5)}.badge-warning{color:#2A2E30;background-color:#FF9F43}a.badge-warning:focus,a.badge-warning:hover{color:#2A2E30;background-color:#FF8510}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,159,67,.5)}.badge-danger{color:#FFF;background-color:#EA5455}a.badge-danger:focus,a.badge-danger:hover{color:#FFF;background-color:#E42728}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(234,84,85,.5)}.badge-light{color:#2A2E30;background-color:#BABFC7}a.badge-light:focus,a.badge-light:hover{color:#2A2E30;background-color:#9EA5B0}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(186,191,199,.5)}.badge-dark{color:#FFF;background-color:#1E1E1E}a.badge-dark:focus,a.badge-dark:hover{color:#FFF;background-color:#050505}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,30,30,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#EDEDED;border-radius:.6rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{padding:.71rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.5rem}.alert-heading{color:inherit}.alert-dismissible{padding-right:2.92rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.71rem;color:inherit}.alert-primary{color:#4C4993;background-color:#E3E1FC;border-color:#D8D4FB}.alert-primary hr{border-top-color:#C3BDF9}.alert-primary .alert-link{color:#3A3871}.alert-secondary{color:#707981;background-color:#F1F3F5;border-color:#EBEEF1}.alert-secondary hr{border-top-color:#DCE1E7}.alert-secondary .alert-link{color:#585F66}.alert-success{color:#257B50;background-color:#D4F4E2;border-color:#C3EFD7}.alert-success hr{border-top-color:#AFEACA}.alert-success .alert-link{color:#195437}.alert-info{color:#107F8F;background-color:#CCF5FA;border-color:#B8F2F9}.alert-info hr{border-top-color:#A0EEF7}.alert-info .alert-link{color:#0B5661}.alert-warning{color:#956639;background-color:#FFECD9;border-color:#FFE4CA}.alert-warning hr{border-top-color:#FFD7B1}.alert-warning .alert-link{color:#704D2B}.alert-danger{color:#8A3F43;background-color:#FBDDDD;border-color:#F9CFCF}.alert-danger hr{border-top-color:#F6B8B8}.alert-danger .alert-link{color:#672F32}.alert-light{color:#71777E;background-color:#F1F2F4;border-color:#ECEDEF}.alert-light hr{border-top-color:#DEE0E3}.alert-light .alert-link{color:#595E63}.alert-dark{color:#202326;background-color:#D2D2D2;border-color:silver}.alert-dark hr{border-top-color:#B3B3B3}.alert-dark .alert-link{color:#090A0A}@-webkit-keyframes progress-bar-stripes{from{background-position:.357rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:.357rem 0}to{background-position:0 0}}.progress{display:flex;height:.357rem;font-size:.75rem;background-color:#EDEDED;border-radius:1.28rem}.media,.progress-bar{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.progress-bar{display:flex;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;color:#FFF;text-align:center;background-color:#7367F0;-webkit-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:.357rem .357rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar{-webkit-transition:none;transition:none}.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.media-body{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.list-group,.modal-dialog-centered.modal-dialog-scrollable{-webkit-flex-direction:column;-webkit-box-direction:normal}.list-group{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#4E5154;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#4E5154;background-color:#BABFC7}.list-group-item-action:active{color:#626262;background-color:#EDEDED}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#FFF;border:1px solid rgba(34,41,47,.125)}.list-group-item:first-child{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.list-group-item.disabled,.list-group-item:disabled{color:#B8C2CC;pointer-events:none;background-color:#FFF}.list-group-item.active{z-index:2;color:#FFF;background-color:#7367F0;border-color:#7367F0}.list-group-horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:.5rem;border-bottom-right-radius:.5rem;border-bottom-left-radius:0}@media (min-width:576px){.list-group-horizontal-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:.5rem;border-bottom-right-radius:.5rem;border-bottom-left-radius:0}}@media (min-width:768px){.list-group-horizontal-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:.5rem;border-bottom-right-radius:.5rem;border-bottom-left-radius:0}}@media (min-width:992px){.list-group-horizontal-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:.5rem;border-bottom-right-radius:.5rem;border-bottom-left-radius:0}}@media (min-width:1200px){.list-group-horizontal-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:.5rem;border-bottom-right-radius:.5rem;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#4C4993;background-color:#D8D4FB}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#4C4993;background-color:#C3BDF9}.list-group-item-primary.list-group-item-action.active{color:#FFF;background-color:#4C4993;border-color:#4C4993}.list-group-item-secondary{color:#707981;background-color:#EBEEF1}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#707981;background-color:#DCE1E7}.list-group-item-secondary.list-group-item-action.active{color:#FFF;background-color:#707981;border-color:#707981}.list-group-item-success{color:#257B50;background-color:#C3EFD7}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#257B50;background-color:#AFEACA}.list-group-item-success.list-group-item-action.active{color:#FFF;background-color:#257B50;border-color:#257B50}.list-group-item-info{color:#107F8F;background-color:#B8F2F9}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#107F8F;background-color:#A0EEF7}.list-group-item-info.list-group-item-action.active{color:#FFF;background-color:#107F8F;border-color:#107F8F}.list-group-item-warning{color:#956639;background-color:#FFE4CA}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#956639;background-color:#FFD7B1}.list-group-item-warning.list-group-item-action.active{color:#FFF;background-color:#956639;border-color:#956639}.list-group-item-danger{color:#8A3F43;background-color:#F9CFCF}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#8A3F43;background-color:#F6B8B8}.list-group-item-danger.list-group-item-action.active{color:#FFF;background-color:#8A3F43;border-color:#8A3F43}.list-group-item-light{color:#71777E;background-color:#ECEDEF}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#71777E;background-color:#DEE0E3}.list-group-item-light.list-group-item-action.active{color:#FFF;background-color:#71777E;border-color:#71777E}.list-group-item-dark{color:#202326;background-color:silver}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#202326;background-color:#B3B3B3}.list-group-item-dark.list-group-item-action.active{color:#FFF;background-color:#202326;border-color:#202326}.close{float:right;font-size:1.5rem;color:#22292F;text-shadow:0 1px 0 #FFF;opacity:.5}.close:hover{color:#22292F}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.toast,.toast-header{background-color:rgba(255,255,255,.85)}a.close.disabled{pointer-events:none}.toast{max-width:350px;font-size:.875rem;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(34,41,47,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.popover,.tooltip{font-family:Montserrat,Helvetica,Arial,serif;font-style:normal;font-weight:400;line-height:1.45;text-align:left;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.857rem;word-wrap:break-word;text-decoration:none;text-shadow:none}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.modal-dialog-scrollable,.toast-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.toast-header{display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#B8C2CC;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);-ms-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{-webkit-transition:none;transition:none}}.modal.show .modal-dialog{-webkit-transform:none;-ms-transform:none;transform:none}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:''}.modal-content,.modal-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.modal-dialog-centered.modal-dialog-scrollable{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.carousel-inner::after,.clearfix::after,.embed-responsive::before,.popover .arrow::after,.popover .arrow::before,.stretched-link::after,.tooltip .arrow::before{content:''}.modal-content{position:relative;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#FFF;border:1px solid rgba(34,41,47,.2);border-radius:.6rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#22292F}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #EDEDED;border-top-left-radius:.6rem;border-top-right-radius:.6rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.45}.modal-body{position:relative;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #EDEDED;border-bottom-right-radius:.6rem;border-bottom-left-radius:.6rem}.popover,.popover .arrow,.popover .arrow::after,.popover .arrow::before,.tooltip,.tooltip .arrow{position:absolute;display:block}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{z-index:1070;margin:0;text-align:start;opacity:0}.tooltip.show{opacity:1}.tooltip .arrow{width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#323232}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#323232}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#323232}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#323232}.tooltip-inner{max-width:220px;padding:.4rem .775rem;color:#FFF;text-align:center;background-color:#323232;border-radius:.428rem}.popover{top:0;left:0;z-index:1060;max-width:276px;text-align:start;background-color:#FFF;border:1px solid rgba(34,41,47,.2);border-radius:.428rem}.popover .arrow{width:1rem;height:.5rem;margin:0 .6rem}.popover .arrow::after,.popover .arrow::before{border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(34,41,47,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#FFF}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.6rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(34,41,47,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#FFF}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(34,41,47,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#FFF}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:'';border-bottom:1px solid #7367F0}.carousel,.carousel-inner,.carousel-item{position:relative}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.6rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(34,41,47,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#FFF}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:#2C2C2C;background-color:#7367F0;border-bottom:1px solid #5E50EE;border-top-left-radius:calc(.6rem - 1px);border-top-right-radius:calc(.6rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#626262}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both}.carousel-item{display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{-webkit-transition:none;transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transform:none;-ms-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;-webkit-transition:0s .6s opacity;transition:0s .6s opacity}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{-webkit-transition:none;transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#FFF;text-align:center;opacity:.5;-webkit-transition:opacity .15s ease;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{-webkit-transition:none;transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#FFF;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}.carousel-control-prev-icon{background-image:url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'%23fff\' viewBox=\'0 0 8 8\'%3e%3cpath d=\'M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z\'/%3e%3c/svg%3e')}.carousel-control-next-icon{background-image:url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'%23fff\' viewBox=\'0 0 8 8\'%3e%3cpath d=\'M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z\'/%3e%3c/svg%3e')}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.spinner-border,.spinner-grow{display:inline-block;vertical-align:text-bottom}.carousel-indicators li{box-sizing:content-box;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#FFF;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;-webkit-transition:opacity .6s ease;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{-webkit-transition:none;transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#FFF;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{width:2rem;height:2rem;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{width:2rem;height:2rem;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#7367F0!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#4839EB!important}.bg-secondary{background-color:#B8C2CC!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#9AA9B7!important}.bg-success{background-color:#28C76F!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1F9D57!important}.bg-info{background-color:#00CFE8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#00A1B5!important}.bg-warning{background-color:#FF9F43!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#FF8510!important}.bg-danger{background-color:#EA5455!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#E42728!important}.bg-light{background-color:#BABFC7!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#9EA5B0!important}.bg-dark{background-color:#1E1E1E!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#050505!important}.bg-white{background-color:#FFF!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #EDEDED!important}.border-top{border-top:1px solid #EDEDED!important}.border-right{border-right:1px solid #EDEDED!important}.border-bottom{border-bottom:1px solid #EDEDED!important}.border-left{border-left:1px solid #EDEDED!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#7367F0!important}.border-secondary{border-color:#B8C2CC!important}.border-success{border-color:#28C76F!important}.border-info{border-color:#00CFE8!important}.border-warning{border-color:#FF9F43!important}.border-danger{border-color:#EA5455!important}.border-light{border-color:#BABFC7!important}.border-dark{border-color:#1E1E1E!important}.border-white{border-color:#FFF!important}.rounded-sm{border-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.5rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.5rem!important}.rounded-left,.rounded-top{border-top-left-radius:.5rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.5rem!important}.rounded{border-radius:.5rem!important}.rounded-lg{border-radius:.6rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.85714%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-column-reverse,.flex-row-reverse{-webkit-box-direction:reverse!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-webkit-flex-shrink:0!important;-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-webkit-flex-shrink:1!important;-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-footer .footer,.fixed-top{position:fixed;z-index:1030;right:0;left:0}.fixed-top{top:0}.fixed-footer .footer{bottom:0}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(34,41,47,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(34,41,47,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(34,41,47,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;background-color:rgba(0,0,0,0)}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:1rem!important}.mt-1,.my-1{margin-top:1rem!important}.mr-1,.mx-1{margin-right:1rem!important}.mb-1,.my-1{margin-bottom:1rem!important}.ml-1,.mx-1{margin-left:1rem!important}.m-2{margin:1.5rem!important}.mt-2,.my-2{margin-top:1.5rem!important}.mr-2,.mx-2{margin-right:1.5rem!important}.mb-2,.my-2{margin-bottom:1.5rem!important}.ml-2,.mx-2{margin-left:1.5rem!important}.m-3{margin:3rem!important}.mt-3,.my-3{margin-top:3rem!important}.mr-3,.mx-3{margin-right:3rem!important}.mb-3,.my-3{margin-bottom:3rem!important}.ml-3,.mx-3{margin-left:3rem!important}.m-4{margin:3.5rem!important}.mt-4,.my-4{margin-top:3.5rem!important}.mr-4,.mx-4{margin-right:3.5rem!important}.mb-4,.my-4{margin-bottom:3.5rem!important}.ml-4,.mx-4{margin-left:3.5rem!important}.m-5{margin:4rem!important}.mt-5,.my-5{margin-top:4rem!important}.mr-5,.mx-5{margin-right:4rem!important}.mb-5,.my-5{margin-bottom:4rem!important}.ml-5,.mx-5{margin-left:4rem!important}.m-25{margin:.25rem!important}.mt-25,.my-25{margin-top:.25rem!important}.mr-25,.mx-25{margin-right:.25rem!important}.mb-25,.my-25{margin-bottom:.25rem!important}.ml-25,.mx-25{margin-left:.25rem!important}.m-50{margin:.5rem!important}.mt-50,.my-50{margin-top:.5rem!important}.mr-50,.mx-50{margin-right:.5rem!important}.mb-50,.my-50{margin-bottom:.5rem!important}.ml-50,.mx-50{margin-left:.5rem!important}.m-75{margin:.75rem!important}.mt-75,.my-75{margin-top:.75rem!important}.mr-75,.mx-75{margin-right:.75rem!important}.mb-75,.my-75{margin-bottom:.75rem!important}.ml-75,.mx-75{margin-left:.75rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:1rem!important}.pt-1,.py-1{padding-top:1rem!important}.pr-1,.px-1{padding-right:1rem!important}.pb-1,.py-1{padding-bottom:1rem!important}.pl-1,.px-1{padding-left:1rem!important}.p-2{padding:1.5rem!important}.pt-2,.py-2{padding-top:1.5rem!important}.pr-2,.px-2{padding-right:1.5rem!important}.pb-2,.py-2{padding-bottom:1.5rem!important}.pl-2,.px-2{padding-left:1.5rem!important}.p-3{padding:3rem!important}.pt-3,.py-3{padding-top:3rem!important}.pr-3,.px-3{padding-right:3rem!important}.pb-3,.py-3{padding-bottom:3rem!important}.pl-3,.px-3{padding-left:3rem!important}.p-4{padding:3.5rem!important}.pt-4,.py-4{padding-top:3.5rem!important}.pr-4,.px-4{padding-right:3.5rem!important}.pb-4,.py-4{padding-bottom:3.5rem!important}.pl-4,.px-4{padding-left:3.5rem!important}.p-5{padding:4rem!important}.pt-5,.py-5{padding-top:4rem!important}.pr-5,.px-5{padding-right:4rem!important}.pb-5,.py-5{padding-bottom:4rem!important}.pl-5,.px-5{padding-left:4rem!important}.p-25{padding:.25rem!important}.pt-25,.py-25{padding-top:.25rem!important}.pr-25,.px-25{padding-right:.25rem!important}.pb-25,.py-25{padding-bottom:.25rem!important}.pl-25,.px-25{padding-left:.25rem!important}.p-50{padding:.5rem!important}.pt-50,.py-50{padding-top:.5rem!important}.pr-50,.px-50{padding-right:.5rem!important}.pb-50,.py-50{padding-bottom:.5rem!important}.pl-50,.px-50{padding-left:.5rem!important}.p-75{padding:.75rem!important}.pt-75,.py-75{padding-top:.75rem!important}.pr-75,.px-75{padding-right:.75rem!important}.pb-75,.py-75{padding-bottom:.75rem!important}.pl-75,.px-75{padding-left:.75rem!important}.m-n1{margin:-1rem!important}.mt-n1,.my-n1{margin-top:-1rem!important}.mr-n1,.mx-n1{margin-right:-1rem!important}.mb-n1,.my-n1{margin-bottom:-1rem!important}.ml-n1,.mx-n1{margin-left:-1rem!important}.m-n2{margin:-1.5rem!important}.mt-n2,.my-n2{margin-top:-1.5rem!important}.mr-n2,.mx-n2{margin-right:-1.5rem!important}.mb-n2,.my-n2{margin-bottom:-1.5rem!important}.ml-n2,.mx-n2{margin-left:-1.5rem!important}.m-n3{margin:-3rem!important}.mt-n3,.my-n3{margin-top:-3rem!important}.mr-n3,.mx-n3{margin-right:-3rem!important}.mb-n3,.my-n3{margin-bottom:-3rem!important}.ml-n3,.mx-n3{margin-left:-3rem!important}.m-n4{margin:-3.5rem!important}.mt-n4,.my-n4{margin-top:-3.5rem!important}.mr-n4,.mx-n4{margin-right:-3.5rem!important}.mb-n4,.my-n4{margin-bottom:-3.5rem!important}.ml-n4,.mx-n4{margin-left:-3.5rem!important}.m-n5{margin:-4rem!important}.mt-n5,.my-n5{margin-top:-4rem!important}.mr-n5,.mx-n5{margin-right:-4rem!important}.mb-n5,.my-n5{margin-bottom:-4rem!important}.ml-n5,.mx-n5{margin-left:-4rem!important}.m-n25{margin:-.25rem!important}.mt-n25,.my-n25{margin-top:-.25rem!important}.mr-n25,.mx-n25{margin-right:-.25rem!important}.mb-n25,.my-n25{margin-bottom:-.25rem!important}.ml-n25,.mx-n25{margin-left:-.25rem!important}.m-n50{margin:-.5rem!important}.mt-n50,.my-n50{margin-top:-.5rem!important}.mr-n50,.mx-n50{margin-right:-.5rem!important}.mb-n50,.my-n50{margin-bottom:-.5rem!important}.ml-n50,.mx-n50{margin-left:-.5rem!important}.m-n75{margin:-.75rem!important}.mt-n75,.my-n75{margin-top:-.75rem!important}.mr-n75,.mx-n75{margin-right:-.75rem!important}.mb-n75,.my-n75{margin-bottom:-.75rem!important}.ml-n75,.mx-n75{margin-left:-.75rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}.text-monospace{font-family:Montserrat,Helvetica,Arial,serif!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.flex-sm-column,.flex-sm-row{-webkit-box-direction:normal!important}.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-webkit-box-orient:vertical!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-webkit-flex-shrink:0!important;-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-webkit-flex-shrink:1!important;-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:1rem!important}.mt-sm-1,.my-sm-1{margin-top:1rem!important}.mr-sm-1,.mx-sm-1{margin-right:1rem!important}.mb-sm-1,.my-sm-1{margin-bottom:1rem!important}.ml-sm-1,.mx-sm-1{margin-left:1rem!important}.m-sm-2{margin:1.5rem!important}.mt-sm-2,.my-sm-2{margin-top:1.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:1.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:1.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:1.5rem!important}.m-sm-3{margin:3rem!important}.mt-sm-3,.my-sm-3{margin-top:3rem!important}.mr-sm-3,.mx-sm-3{margin-right:3rem!important}.mb-sm-3,.my-sm-3{margin-bottom:3rem!important}.ml-sm-3,.mx-sm-3{margin-left:3rem!important}.m-sm-4{margin:3.5rem!important}.mt-sm-4,.my-sm-4{margin-top:3.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:3.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:3.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:3.5rem!important}.m-sm-5{margin:4rem!important}.mt-sm-5,.my-sm-5{margin-top:4rem!important}.mr-sm-5,.mx-sm-5{margin-right:4rem!important}.mb-sm-5,.my-sm-5{margin-bottom:4rem!important}.ml-sm-5,.mx-sm-5{margin-left:4rem!important}.m-sm-25{margin:.25rem!important}.mt-sm-25,.my-sm-25{margin-top:.25rem!important}.mr-sm-25,.mx-sm-25{margin-right:.25rem!important}.mb-sm-25,.my-sm-25{margin-bottom:.25rem!important}.ml-sm-25,.mx-sm-25{margin-left:.25rem!important}.m-sm-50{margin:.5rem!important}.mt-sm-50,.my-sm-50{margin-top:.5rem!important}.mr-sm-50,.mx-sm-50{margin-right:.5rem!important}.mb-sm-50,.my-sm-50{margin-bottom:.5rem!important}.ml-sm-50,.mx-sm-50{margin-left:.5rem!important}.m-sm-75{margin:.75rem!important}.mt-sm-75,.my-sm-75{margin-top:.75rem!important}.mr-sm-75,.mx-sm-75{margin-right:.75rem!important}.mb-sm-75,.my-sm-75{margin-bottom:.75rem!important}.ml-sm-75,.mx-sm-75{margin-left:.75rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:1rem!important}.pt-sm-1,.py-sm-1{padding-top:1rem!important}.pr-sm-1,.px-sm-1{padding-right:1rem!important}.pb-sm-1,.py-sm-1{padding-bottom:1rem!important}.pl-sm-1,.px-sm-1{padding-left:1rem!important}.p-sm-2{padding:1.5rem!important}.pt-sm-2,.py-sm-2{padding-top:1.5rem!important}.pr-sm-2,.px-sm-2{padding-right:1.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:1.5rem!important}.pl-sm-2,.px-sm-2{padding-left:1.5rem!important}.p-sm-3{padding:3rem!important}.pt-sm-3,.py-sm-3{padding-top:3rem!important}.pr-sm-3,.px-sm-3{padding-right:3rem!important}.pb-sm-3,.py-sm-3{padding-bottom:3rem!important}.pl-sm-3,.px-sm-3{padding-left:3rem!important}.p-sm-4{padding:3.5rem!important}.pt-sm-4,.py-sm-4{padding-top:3.5rem!important}.pr-sm-4,.px-sm-4{padding-right:3.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:3.5rem!important}.pl-sm-4,.px-sm-4{padding-left:3.5rem!important}.p-sm-5{padding:4rem!important}.pt-sm-5,.py-sm-5{padding-top:4rem!important}.pr-sm-5,.px-sm-5{padding-right:4rem!important}.pb-sm-5,.py-sm-5{padding-bottom:4rem!important}.pl-sm-5,.px-sm-5{padding-left:4rem!important}.p-sm-25{padding:.25rem!important}.pt-sm-25,.py-sm-25{padding-top:.25rem!important}.pr-sm-25,.px-sm-25{padding-right:.25rem!important}.pb-sm-25,.py-sm-25{padding-bottom:.25rem!important}.pl-sm-25,.px-sm-25{padding-left:.25rem!important}.p-sm-50{padding:.5rem!important}.pt-sm-50,.py-sm-50{padding-top:.5rem!important}.pr-sm-50,.px-sm-50{padding-right:.5rem!important}.pb-sm-50,.py-sm-50{padding-bottom:.5rem!important}.pl-sm-50,.px-sm-50{padding-left:.5rem!important}.p-sm-75{padding:.75rem!important}.pt-sm-75,.py-sm-75{padding-top:.75rem!important}.pr-sm-75,.px-sm-75{padding-right:.75rem!important}.pb-sm-75,.py-sm-75{padding-bottom:.75rem!important}.pl-sm-75,.px-sm-75{padding-left:.75rem!important}.m-sm-n1{margin:-1rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-1rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-1rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-1rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-1rem!important}.m-sm-n2{margin:-1.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-1.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-1.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-1.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-1.5rem!important}.m-sm-n3{margin:-3rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-3rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-3rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-3rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-3rem!important}.m-sm-n4{margin:-3.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-3.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-3.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-3.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-3.5rem!important}.m-sm-n5{margin:-4rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-4rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-4rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-4rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-4rem!important}.m-sm-n25{margin:-.25rem!important}.mt-sm-n25,.my-sm-n25{margin-top:-.25rem!important}.mr-sm-n25,.mx-sm-n25{margin-right:-.25rem!important}.mb-sm-n25,.my-sm-n25{margin-bottom:-.25rem!important}.ml-sm-n25,.mx-sm-n25{margin-left:-.25rem!important}.m-sm-n50{margin:-.5rem!important}.mt-sm-n50,.my-sm-n50{margin-top:-.5rem!important}.mr-sm-n50,.mx-sm-n50{margin-right:-.5rem!important}.mb-sm-n50,.my-sm-n50{margin-bottom:-.5rem!important}.ml-sm-n50,.mx-sm-n50{margin-left:-.5rem!important}.m-sm-n75{margin:-.75rem!important}.mt-sm-n75,.my-sm-n75{margin-top:-.75rem!important}.mr-sm-n75,.mx-sm-n75{margin-right:-.75rem!important}.mb-sm-n75,.my-sm-n75{margin-bottom:-.75rem!important}.ml-sm-n75,.mx-sm-n75{margin-left:-.75rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.flex-md-column,.flex-md-row{-webkit-box-direction:normal!important}.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-webkit-box-orient:vertical!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-webkit-flex-shrink:0!important;-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-webkit-flex-shrink:1!important;-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:1rem!important}.mt-md-1,.my-md-1{margin-top:1rem!important}.mr-md-1,.mx-md-1{margin-right:1rem!important}.mb-md-1,.my-md-1{margin-bottom:1rem!important}.ml-md-1,.mx-md-1{margin-left:1rem!important}.m-md-2{margin:1.5rem!important}.mt-md-2,.my-md-2{margin-top:1.5rem!important}.mr-md-2,.mx-md-2{margin-right:1.5rem!important}.mb-md-2,.my-md-2{margin-bottom:1.5rem!important}.ml-md-2,.mx-md-2{margin-left:1.5rem!important}.m-md-3{margin:3rem!important}.mt-md-3,.my-md-3{margin-top:3rem!important}.mr-md-3,.mx-md-3{margin-right:3rem!important}.mb-md-3,.my-md-3{margin-bottom:3rem!important}.ml-md-3,.mx-md-3{margin-left:3rem!important}.m-md-4{margin:3.5rem!important}.mt-md-4,.my-md-4{margin-top:3.5rem!important}.mr-md-4,.mx-md-4{margin-right:3.5rem!important}.mb-md-4,.my-md-4{margin-bottom:3.5rem!important}.ml-md-4,.mx-md-4{margin-left:3.5rem!important}.m-md-5{margin:4rem!important}.mt-md-5,.my-md-5{margin-top:4rem!important}.mr-md-5,.mx-md-5{margin-right:4rem!important}.mb-md-5,.my-md-5{margin-bottom:4rem!important}.ml-md-5,.mx-md-5{margin-left:4rem!important}.m-md-25{margin:.25rem!important}.mt-md-25,.my-md-25{margin-top:.25rem!important}.mr-md-25,.mx-md-25{margin-right:.25rem!important}.mb-md-25,.my-md-25{margin-bottom:.25rem!important}.ml-md-25,.mx-md-25{margin-left:.25rem!important}.m-md-50{margin:.5rem!important}.mt-md-50,.my-md-50{margin-top:.5rem!important}.mr-md-50,.mx-md-50{margin-right:.5rem!important}.mb-md-50,.my-md-50{margin-bottom:.5rem!important}.ml-md-50,.mx-md-50{margin-left:.5rem!important}.m-md-75{margin:.75rem!important}.mt-md-75,.my-md-75{margin-top:.75rem!important}.mr-md-75,.mx-md-75{margin-right:.75rem!important}.mb-md-75,.my-md-75{margin-bottom:.75rem!important}.ml-md-75,.mx-md-75{margin-left:.75rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:1rem!important}.pt-md-1,.py-md-1{padding-top:1rem!important}.pr-md-1,.px-md-1{padding-right:1rem!important}.pb-md-1,.py-md-1{padding-bottom:1rem!important}.pl-md-1,.px-md-1{padding-left:1rem!important}.p-md-2{padding:1.5rem!important}.pt-md-2,.py-md-2{padding-top:1.5rem!important}.pr-md-2,.px-md-2{padding-right:1.5rem!important}.pb-md-2,.py-md-2{padding-bottom:1.5rem!important}.pl-md-2,.px-md-2{padding-left:1.5rem!important}.p-md-3{padding:3rem!important}.pt-md-3,.py-md-3{padding-top:3rem!important}.pr-md-3,.px-md-3{padding-right:3rem!important}.pb-md-3,.py-md-3{padding-bottom:3rem!important}.pl-md-3,.px-md-3{padding-left:3rem!important}.p-md-4{padding:3.5rem!important}.pt-md-4,.py-md-4{padding-top:3.5rem!important}.pr-md-4,.px-md-4{padding-right:3.5rem!important}.pb-md-4,.py-md-4{padding-bottom:3.5rem!important}.pl-md-4,.px-md-4{padding-left:3.5rem!important}.p-md-5{padding:4rem!important}.pt-md-5,.py-md-5{padding-top:4rem!important}.pr-md-5,.px-md-5{padding-right:4rem!important}.pb-md-5,.py-md-5{padding-bottom:4rem!important}.pl-md-5,.px-md-5{padding-left:4rem!important}.p-md-25{padding:.25rem!important}.pt-md-25,.py-md-25{padding-top:.25rem!important}.pr-md-25,.px-md-25{padding-right:.25rem!important}.pb-md-25,.py-md-25{padding-bottom:.25rem!important}.pl-md-25,.px-md-25{padding-left:.25rem!important}.p-md-50{padding:.5rem!important}.pt-md-50,.py-md-50{padding-top:.5rem!important}.pr-md-50,.px-md-50{padding-right:.5rem!important}.pb-md-50,.py-md-50{padding-bottom:.5rem!important}.pl-md-50,.px-md-50{padding-left:.5rem!important}.p-md-75{padding:.75rem!important}.pt-md-75,.py-md-75{padding-top:.75rem!important}.pr-md-75,.px-md-75{padding-right:.75rem!important}.pb-md-75,.py-md-75{padding-bottom:.75rem!important}.pl-md-75,.px-md-75{padding-left:.75rem!important}.m-md-n1{margin:-1rem!important}.mt-md-n1,.my-md-n1{margin-top:-1rem!important}.mr-md-n1,.mx-md-n1{margin-right:-1rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-1rem!important}.ml-md-n1,.mx-md-n1{margin-left:-1rem!important}.m-md-n2{margin:-1.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-1.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-1.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-1.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-1.5rem!important}.m-md-n3{margin:-3rem!important}.mt-md-n3,.my-md-n3{margin-top:-3rem!important}.mr-md-n3,.mx-md-n3{margin-right:-3rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-3rem!important}.ml-md-n3,.mx-md-n3{margin-left:-3rem!important}.m-md-n4{margin:-3.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-3.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-3.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-3.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-3.5rem!important}.m-md-n5{margin:-4rem!important}.mt-md-n5,.my-md-n5{margin-top:-4rem!important}.mr-md-n5,.mx-md-n5{margin-right:-4rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-4rem!important}.ml-md-n5,.mx-md-n5{margin-left:-4rem!important}.m-md-n25{margin:-.25rem!important}.mt-md-n25,.my-md-n25{margin-top:-.25rem!important}.mr-md-n25,.mx-md-n25{margin-right:-.25rem!important}.mb-md-n25,.my-md-n25{margin-bottom:-.25rem!important}.ml-md-n25,.mx-md-n25{margin-left:-.25rem!important}.m-md-n50{margin:-.5rem!important}.mt-md-n50,.my-md-n50{margin-top:-.5rem!important}.mr-md-n50,.mx-md-n50{margin-right:-.5rem!important}.mb-md-n50,.my-md-n50{margin-bottom:-.5rem!important}.ml-md-n50,.mx-md-n50{margin-left:-.5rem!important}.m-md-n75{margin:-.75rem!important}.mt-md-n75,.my-md-n75{margin-top:-.75rem!important}.mr-md-n75,.mx-md-n75{margin-right:-.75rem!important}.mb-md-n75,.my-md-n75{margin-bottom:-.75rem!important}.ml-md-n75,.mx-md-n75{margin-left:-.75rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.flex-lg-column,.flex-lg-row{-webkit-box-direction:normal!important}.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-webkit-box-orient:vertical!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-webkit-flex-shrink:0!important;-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-webkit-flex-shrink:1!important;-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:1rem!important}.mt-lg-1,.my-lg-1{margin-top:1rem!important}.mr-lg-1,.mx-lg-1{margin-right:1rem!important}.mb-lg-1,.my-lg-1{margin-bottom:1rem!important}.ml-lg-1,.mx-lg-1{margin-left:1rem!important}.m-lg-2{margin:1.5rem!important}.mt-lg-2,.my-lg-2{margin-top:1.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:1.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:1.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:1.5rem!important}.m-lg-3{margin:3rem!important}.mt-lg-3,.my-lg-3{margin-top:3rem!important}.mr-lg-3,.mx-lg-3{margin-right:3rem!important}.mb-lg-3,.my-lg-3{margin-bottom:3rem!important}.ml-lg-3,.mx-lg-3{margin-left:3rem!important}.m-lg-4{margin:3.5rem!important}.mt-lg-4,.my-lg-4{margin-top:3.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:3.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:3.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:3.5rem!important}.m-lg-5{margin:4rem!important}.mt-lg-5,.my-lg-5{margin-top:4rem!important}.mr-lg-5,.mx-lg-5{margin-right:4rem!important}.mb-lg-5,.my-lg-5{margin-bottom:4rem!important}.ml-lg-5,.mx-lg-5{margin-left:4rem!important}.m-lg-25{margin:.25rem!important}.mt-lg-25,.my-lg-25{margin-top:.25rem!important}.mr-lg-25,.mx-lg-25{margin-right:.25rem!important}.mb-lg-25,.my-lg-25{margin-bottom:.25rem!important}.ml-lg-25,.mx-lg-25{margin-left:.25rem!important}.m-lg-50{margin:.5rem!important}.mt-lg-50,.my-lg-50{margin-top:.5rem!important}.mr-lg-50,.mx-lg-50{margin-right:.5rem!important}.mb-lg-50,.my-lg-50{margin-bottom:.5rem!important}.ml-lg-50,.mx-lg-50{margin-left:.5rem!important}.m-lg-75{margin:.75rem!important}.mt-lg-75,.my-lg-75{margin-top:.75rem!important}.mr-lg-75,.mx-lg-75{margin-right:.75rem!important}.mb-lg-75,.my-lg-75{margin-bottom:.75rem!important}.ml-lg-75,.mx-lg-75{margin-left:.75rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:1rem!important}.pt-lg-1,.py-lg-1{padding-top:1rem!important}.pr-lg-1,.px-lg-1{padding-right:1rem!important}.pb-lg-1,.py-lg-1{padding-bottom:1rem!important}.pl-lg-1,.px-lg-1{padding-left:1rem!important}.p-lg-2{padding:1.5rem!important}.pt-lg-2,.py-lg-2{padding-top:1.5rem!important}.pr-lg-2,.px-lg-2{padding-right:1.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:1.5rem!important}.pl-lg-2,.px-lg-2{padding-left:1.5rem!important}.p-lg-3{padding:3rem!important}.pt-lg-3,.py-lg-3{padding-top:3rem!important}.pr-lg-3,.px-lg-3{padding-right:3rem!important}.pb-lg-3,.py-lg-3{padding-bottom:3rem!important}.pl-lg-3,.px-lg-3{padding-left:3rem!important}.p-lg-4{padding:3.5rem!important}.pt-lg-4,.py-lg-4{padding-top:3.5rem!important}.pr-lg-4,.px-lg-4{padding-right:3.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:3.5rem!important}.pl-lg-4,.px-lg-4{padding-left:3.5rem!important}.p-lg-5{padding:4rem!important}.pt-lg-5,.py-lg-5{padding-top:4rem!important}.pr-lg-5,.px-lg-5{padding-right:4rem!important}.pb-lg-5,.py-lg-5{padding-bottom:4rem!important}.pl-lg-5,.px-lg-5{padding-left:4rem!important}.p-lg-25{padding:.25rem!important}.pt-lg-25,.py-lg-25{padding-top:.25rem!important}.pr-lg-25,.px-lg-25{padding-right:.25rem!important}.pb-lg-25,.py-lg-25{padding-bottom:.25rem!important}.pl-lg-25,.px-lg-25{padding-left:.25rem!important}.p-lg-50{padding:.5rem!important}.pt-lg-50,.py-lg-50{padding-top:.5rem!important}.pr-lg-50,.px-lg-50{padding-right:.5rem!important}.pb-lg-50,.py-lg-50{padding-bottom:.5rem!important}.pl-lg-50,.px-lg-50{padding-left:.5rem!important}.p-lg-75{padding:.75rem!important}.pt-lg-75,.py-lg-75{padding-top:.75rem!important}.pr-lg-75,.px-lg-75{padding-right:.75rem!important}.pb-lg-75,.py-lg-75{padding-bottom:.75rem!important}.pl-lg-75,.px-lg-75{padding-left:.75rem!important}.m-lg-n1{margin:-1rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-1rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-1rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-1rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-1rem!important}.m-lg-n2{margin:-1.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-1.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-1.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-1.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-1.5rem!important}.m-lg-n3{margin:-3rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-3rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-3rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-3rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-3rem!important}.m-lg-n4{margin:-3.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-3.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-3.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-3.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-3.5rem!important}.m-lg-n5{margin:-4rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-4rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-4rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-4rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-4rem!important}.m-lg-n25{margin:-.25rem!important}.mt-lg-n25,.my-lg-n25{margin-top:-.25rem!important}.mr-lg-n25,.mx-lg-n25{margin-right:-.25rem!important}.mb-lg-n25,.my-lg-n25{margin-bottom:-.25rem!important}.ml-lg-n25,.mx-lg-n25{margin-left:-.25rem!important}.m-lg-n50{margin:-.5rem!important}.mt-lg-n50,.my-lg-n50{margin-top:-.5rem!important}.mr-lg-n50,.mx-lg-n50{margin-right:-.5rem!important}.mb-lg-n50,.my-lg-n50{margin-bottom:-.5rem!important}.ml-lg-n50,.mx-lg-n50{margin-left:-.5rem!important}.m-lg-n75{margin:-.75rem!important}.mt-lg-n75,.my-lg-n75{margin-top:-.75rem!important}.mr-lg-n75,.mx-lg-n75{margin-right:-.75rem!important}.mb-lg-n75,.my-lg-n75{margin-bottom:-.75rem!important}.ml-lg-n75,.mx-lg-n75{margin-left:-.75rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.flex-xl-column,.flex-xl-row{-webkit-box-direction:normal!important}.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-webkit-box-orient:vertical!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-webkit-flex-shrink:0!important;-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-webkit-flex-shrink:1!important;-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:1rem!important}.mt-xl-1,.my-xl-1{margin-top:1rem!important}.mr-xl-1,.mx-xl-1{margin-right:1rem!important}.mb-xl-1,.my-xl-1{margin-bottom:1rem!important}.ml-xl-1,.mx-xl-1{margin-left:1rem!important}.m-xl-2{margin:1.5rem!important}.mt-xl-2,.my-xl-2{margin-top:1.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:1.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:1.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:1.5rem!important}.m-xl-3{margin:3rem!important}.mt-xl-3,.my-xl-3{margin-top:3rem!important}.mr-xl-3,.mx-xl-3{margin-right:3rem!important}.mb-xl-3,.my-xl-3{margin-bottom:3rem!important}.ml-xl-3,.mx-xl-3{margin-left:3rem!important}.m-xl-4{margin:3.5rem!important}.mt-xl-4,.my-xl-4{margin-top:3.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:3.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:3.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:3.5rem!important}.m-xl-5{margin:4rem!important}.mt-xl-5,.my-xl-5{margin-top:4rem!important}.mr-xl-5,.mx-xl-5{margin-right:4rem!important}.mb-xl-5,.my-xl-5{margin-bottom:4rem!important}.ml-xl-5,.mx-xl-5{margin-left:4rem!important}.m-xl-25{margin:.25rem!important}.mt-xl-25,.my-xl-25{margin-top:.25rem!important}.mr-xl-25,.mx-xl-25{margin-right:.25rem!important}.mb-xl-25,.my-xl-25{margin-bottom:.25rem!important}.ml-xl-25,.mx-xl-25{margin-left:.25rem!important}.m-xl-50{margin:.5rem!important}.mt-xl-50,.my-xl-50{margin-top:.5rem!important}.mr-xl-50,.mx-xl-50{margin-right:.5rem!important}.mb-xl-50,.my-xl-50{margin-bottom:.5rem!important}.ml-xl-50,.mx-xl-50{margin-left:.5rem!important}.m-xl-75{margin:.75rem!important}.mt-xl-75,.my-xl-75{margin-top:.75rem!important}.mr-xl-75,.mx-xl-75{margin-right:.75rem!important}.mb-xl-75,.my-xl-75{margin-bottom:.75rem!important}.ml-xl-75,.mx-xl-75{margin-left:.75rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:1rem!important}.pt-xl-1,.py-xl-1{padding-top:1rem!important}.pr-xl-1,.px-xl-1{padding-right:1rem!important}.pb-xl-1,.py-xl-1{padding-bottom:1rem!important}.pl-xl-1,.px-xl-1{padding-left:1rem!important}.p-xl-2{padding:1.5rem!important}.pt-xl-2,.py-xl-2{padding-top:1.5rem!important}.pr-xl-2,.px-xl-2{padding-right:1.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:1.5rem!important}.pl-xl-2,.px-xl-2{padding-left:1.5rem!important}.p-xl-3{padding:3rem!important}.pt-xl-3,.py-xl-3{padding-top:3rem!important}.pr-xl-3,.px-xl-3{padding-right:3rem!important}.pb-xl-3,.py-xl-3{padding-bottom:3rem!important}.pl-xl-3,.px-xl-3{padding-left:3rem!important}.p-xl-4{padding:3.5rem!important}.pt-xl-4,.py-xl-4{padding-top:3.5rem!important}.pr-xl-4,.px-xl-4{padding-right:3.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:3.5rem!important}.pl-xl-4,.px-xl-4{padding-left:3.5rem!important}.p-xl-5{padding:4rem!important}.pt-xl-5,.py-xl-5{padding-top:4rem!important}.pr-xl-5,.px-xl-5{padding-right:4rem!important}.pb-xl-5,.py-xl-5{padding-bottom:4rem!important}.pl-xl-5,.px-xl-5{padding-left:4rem!important}.p-xl-25{padding:.25rem!important}.pt-xl-25,.py-xl-25{padding-top:.25rem!important}.pr-xl-25,.px-xl-25{padding-right:.25rem!important}.pb-xl-25,.py-xl-25{padding-bottom:.25rem!important}.pl-xl-25,.px-xl-25{padding-left:.25rem!important}.p-xl-50{padding:.5rem!important}.pt-xl-50,.py-xl-50{padding-top:.5rem!important}.pr-xl-50,.px-xl-50{padding-right:.5rem!important}.pb-xl-50,.py-xl-50{padding-bottom:.5rem!important}.pl-xl-50,.px-xl-50{padding-left:.5rem!important}.p-xl-75{padding:.75rem!important}.pt-xl-75,.py-xl-75{padding-top:.75rem!important}.pr-xl-75,.px-xl-75{padding-right:.75rem!important}.pb-xl-75,.py-xl-75{padding-bottom:.75rem!important}.pl-xl-75,.px-xl-75{padding-left:.75rem!important}.m-xl-n1{margin:-1rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-1rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-1rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-1rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-1rem!important}.m-xl-n2{margin:-1.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-1.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-1.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-1.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-1.5rem!important}.m-xl-n3{margin:-3rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-3rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-3rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-3rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-3rem!important}.m-xl-n4{margin:-3.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-3.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-3.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-3.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-3.5rem!important}.m-xl-n5{margin:-4rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-4rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-4rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-4rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-4rem!important}.m-xl-n25{margin:-.25rem!important}.mt-xl-n25,.my-xl-n25{margin-top:-.25rem!important}.mr-xl-n25,.mx-xl-n25{margin-right:-.25rem!important}.mb-xl-n25,.my-xl-n25{margin-bottom:-.25rem!important}.ml-xl-n25,.mx-xl-n25{margin-left:-.25rem!important}.m-xl-n50{margin:-.5rem!important}.mt-xl-n50,.my-xl-n50{margin-top:-.5rem!important}.mr-xl-n50,.mx-xl-n50{margin-right:-.5rem!important}.mb-xl-n50,.my-xl-n50{margin-bottom:-.5rem!important}.ml-xl-n50,.mx-xl-n50{margin-left:-.5rem!important}.m-xl-n75{margin:-.75rem!important}.mt-xl-n75,.my-xl-n75{margin-top:-.75rem!important}.mr-xl-n75,.mx-xl-n75{margin-right:-.75rem!important}.mb-xl-n75,.my-xl-n75{margin-bottom:-.75rem!important}.ml-xl-n75,.mx-xl-n75{margin-left:-.75rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#FFF!important}.text-primary{color:#7367F0!important}a.text-primary:focus,a.text-primary:hover{color:#3321E9!important}.text-secondary{color:#B8C2CC!important}a.text-secondary:focus,a.text-secondary:hover{color:#8B9CAC!important}.text-success{color:#28C76F!important}a.text-success:focus,a.text-success:hover{color:#1B874B!important}.text-info{color:#00CFE8!important}a.text-info:focus,a.text-info:hover{color:#008B9C!important}.text-warning{color:#FF9F43!important}a.text-warning:focus,a.text-warning:hover{color:#F67800!important}.text-danger{color:#EA5455!important}a.text-danger:focus,a.text-danger:hover{color:#D71A1C!important}.text-light{color:#BABFC7!important}a.text-light:focus,a.text-light:hover{color:#9098A5!important}.text-dark{color:#1E1E1E!important}a.text-dark:focus,a.text-dark:hover{color:#000!important}.text-body{color:#626262!important}.text-muted{color:#B8C2CC!important}.text-black-50{color:rgba(34,41,47,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{blockquote,img,pre,tr{page-break-inside:avoid}*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:' (' attr(title) ')'}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #ADB5BD}thead{display:table-header-group}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #22292F}.table{border-collapse:collapse!important}.table td,.table th{background-color:#FFF!important}.table-bordered td,.table-bordered th{border:1px solid #DAE1E7!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#F8F8F8}.table .thead-dark th{color:inherit;border-color:#F8F8F8}} \ No newline at end of file diff --git a/assets/css/colors.css b/assets/css/colors.css new file mode 100644 index 0000000..ba9eb32 --- /dev/null +++ b/assets/css/colors.css @@ -0,0 +1,6155 @@ +.white { + color: #FFFFFF !important; } + +.bg-white { + background-color: #FFFFFF !important; } + .bg-white .card-header, + .bg-white .card-footer { + background-color: transparent; } + +.alert-white { + background: rgba(255, 255, 255, 0.2) !important; + color: #FFFFFF !important; } + .alert-white .alert-heading { + box-shadow: rgba(255, 255, 255, 0.4) 0px 6px 15px -7px; } + .alert-white .alert-link { + color: #f2f2f2 !important; } + +.bg-rgba-white { + background: rgba(255, 255, 255, 0.15) !important; } + +.border-white { + border: 1px solid #FFFFFF !important; } + +.border-top-white { + border-top: 1px solid #FFFFFF; } + +.border-bottom-white { + border-bottom: 1px solid #FFFFFF; } + +.border-left-white { + border-left: 1px solid #FFFFFF; } + +.border-right-white { + border-right: 1px solid #FFFFFF; } + +.bg-white.badge-glow, +.border-white.badge-glow, +.badge-white.badge-glow { + box-shadow: 0px 0px 10px #FFFFFF; } + +.badge.badge-white { + background-color: #FFFFFF; } + +.badge.badge-light-white { + color: #FFFFFF !important; + font-weight: 500; } + +.overlay-white { + background: #FFFFFF; + /* The Fallback */ + background: rgba(255, 255, 255, 0.6); } + +.btn-white { + border-color: !important; + background-color: #FFFFFF !important; + color: #fff; } + .btn-white:hover { + border-color: !important; + color: #fff !important; + box-shadow: 0 8px 25px -8px white; } + .btn-white:focus, .btn-white:active { + color: #fff !important; } + +.btn-flat-white { + background-color: transparent; + color: #FFFFFF; } + .btn-flat-white:hover { + color: #FFFFFF; + background-color: rgba(255, 255, 255, 0.1); } + .btn-flat-white:active, .btn-flat-white:focus { + background-color: #FFFFFF; + color: #fff !important; } + +.btn-relief-white { + background-color: #FFFFFF; + box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); + color: #fff; } + .btn-relief-white:hover { + color: #fff; } + .btn-relief-white:active, .btn-relief-white:focus { + outline: none; + transform: translateY(3px); } + +.btn-outline-white { + border: 1px solid #FFFFFF; + background-color: transparent; + color: #FFFFFF; } + .btn-outline-white:hover { + background-color: rgba(255, 255, 255, 0.08); + color: #FFFFFF; } + .btn-outline-white:active { + color: #fff !important; } + +.btn-white ~ .dropdown-menu .dropdown-item.active, +.btn-outline-white ~ .dropdown-menu .dropdown-item.active, +.btn-flat-white ~ .dropdown-menu .dropdown-item.active { + background-color: #FFFFFF; + color: #fff; } + .btn-white ~ .dropdown-menu .dropdown-item.active:hover, + .btn-outline-white ~ .dropdown-menu .dropdown-item.active:hover, + .btn-flat-white ~ .dropdown-menu .dropdown-item.active:hover { + color: #fff; } + +.btn-white ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-outline-white ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-flat-white ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover { + color: #FFFFFF; } + +.dropdown.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:hover i { + color: #FFFFFF; } + +.dropdown.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:active i { + color: #fff; } + +.bullet.bullet-white { + background-color: #FFFFFF; } + +.pagination-white .page-item.active .page-link { + background: #FFFFFF; + color: #fff; } + .pagination-white .page-item.active .page-link:hover { + color: #fff; } + +.pagination-white .page-item .page-link:hover { + color: #FFFFFF; } + +.pagination-white .page-item.prev-item .page-link:hover, .pagination-white .page-item.next-item .page-link:hover { + background: #FFFFFF; + color: #fff; } + +.nav-pill-white .nav-item .nav-link.active { + color: #fff; + background-color: #FFFFFF !important; } + +.progress-bar-white { + background-color: rgba(255, 255, 255, 0.1); } + .progress-bar-white .progress-bar { + background-color: #FFFFFF; } + +.chip-white { + background-color: #FFFFFF !important; } + .chip-white .chip-body { + color: #fff !important; } + +.divider.divider-white .divider-text:before, .divider.divider-white .divider-text:after { + border-color: #FFFFFF !important; } + +input[type="checkbox"].bg-white + .custom-control-label:before, input[type="radio"].bg-white + .custom-control-label:before { + background-color: #FFFFFF !important; } + +input:focus ~ .bg-white { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFFFFF !important; } + +.vs-checkbox-white input:checked ~ .vs-checkbox { + border-color: #FFFFFF !important; } + .vs-checkbox-white input:checked ~ .vs-checkbox .vs-checkbox--check { + background-color: #FFFFFF !important; } + +.vs-checkbox-white input:active:checked + .vs-checkbox .vs-checkbox--check { + background-color: #FFFFFF !important; } + +.custom-switch-white .custom-control-input:checked ~ .custom-control-label::before { + background-color: #FFFFFF !important; + color: #fff; + transition: all .2s ease-out; } + +.vs-radio-white input:checked ~ .vs-radio .vs-radio--circle { + background: white !important; + box-shadow: 0 3px 12px 0 rgba(255, 255, 255, 0.4) !important; } + +.black { + color: #000000 !important; } + +.bg-black { + background-color: #000000 !important; } + .bg-black .card-header, + .bg-black .card-footer { + background-color: transparent; } + +.alert-black { + background: rgba(0, 0, 0, 0.2) !important; + color: #000000 !important; } + .alert-black .alert-heading { + box-shadow: rgba(0, 0, 0, 0.4) 0px 6px 15px -7px; } + .alert-black .alert-link { + color: black !important; } + +.bg-rgba-black { + background: rgba(0, 0, 0, 0.15) !important; } + +.border-black { + border: 1px solid #000000 !important; } + +.border-top-black { + border-top: 1px solid #000000; } + +.border-bottom-black { + border-bottom: 1px solid #000000; } + +.border-left-black { + border-left: 1px solid #000000; } + +.border-right-black { + border-right: 1px solid #000000; } + +.bg-black.badge-glow, +.border-black.badge-glow, +.badge-black.badge-glow { + box-shadow: 0px 0px 10px #000000; } + +.badge.badge-black { + background-color: #000000; } + +.badge.badge-light-black { + color: #000000 !important; + font-weight: 500; } + +.overlay-black { + background: #000000; + /* The Fallback */ + background: rgba(0, 0, 0, 0.6); } + +.btn-black { + border-color: !important; + background-color: #000000 !important; + color: #fff; } + .btn-black:hover { + border-color: !important; + color: #fff !important; + box-shadow: 0 8px 25px -8px black; } + .btn-black:focus, .btn-black:active { + color: #fff !important; } + +.btn-flat-black { + background-color: transparent; + color: #000000; } + .btn-flat-black:hover { + color: #000000; + background-color: rgba(0, 0, 0, 0.1); } + .btn-flat-black:active, .btn-flat-black:focus { + background-color: #000000; + color: #fff !important; } + +.btn-relief-black { + background-color: #000000; + box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); + color: #fff; } + .btn-relief-black:hover { + color: #fff; } + .btn-relief-black:active, .btn-relief-black:focus { + outline: none; + transform: translateY(3px); } + +.btn-outline-black { + border: 1px solid #000000; + background-color: transparent; + color: #000000; } + .btn-outline-black:hover { + background-color: rgba(0, 0, 0, 0.08); + color: #000000; } + .btn-outline-black:active { + color: #fff !important; } + +.btn-black ~ .dropdown-menu .dropdown-item.active, +.btn-outline-black ~ .dropdown-menu .dropdown-item.active, +.btn-flat-black ~ .dropdown-menu .dropdown-item.active { + background-color: #000000; + color: #fff; } + .btn-black ~ .dropdown-menu .dropdown-item.active:hover, + .btn-outline-black ~ .dropdown-menu .dropdown-item.active:hover, + .btn-flat-black ~ .dropdown-menu .dropdown-item.active:hover { + color: #fff; } + +.btn-black ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-outline-black ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-flat-black ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover { + color: #000000; } + +.dropdown.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:hover i { + color: #000000; } + +.dropdown.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:active i { + color: #fff; } + +.bullet.bullet-black { + background-color: #000000; } + +.pagination-black .page-item.active .page-link { + background: #000000; + color: #fff; } + .pagination-black .page-item.active .page-link:hover { + color: #fff; } + +.pagination-black .page-item .page-link:hover { + color: #000000; } + +.pagination-black .page-item.prev-item .page-link:hover, .pagination-black .page-item.next-item .page-link:hover { + background: #000000; + color: #fff; } + +.nav-pill-black .nav-item .nav-link.active { + color: #fff; + background-color: #000000 !important; } + +.progress-bar-black { + background-color: rgba(0, 0, 0, 0.1); } + .progress-bar-black .progress-bar { + background-color: #000000; } + +.chip-black { + background-color: #000000 !important; } + .chip-black .chip-body { + color: #fff !important; } + +.divider.divider-black .divider-text:before, .divider.divider-black .divider-text:after { + border-color: #000000 !important; } + +input[type="checkbox"].bg-black + .custom-control-label:before, input[type="radio"].bg-black + .custom-control-label:before { + background-color: #000000 !important; } + +input:focus ~ .bg-black { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #000000 !important; } + +.vs-checkbox-black input:checked ~ .vs-checkbox { + border-color: #000000 !important; } + .vs-checkbox-black input:checked ~ .vs-checkbox .vs-checkbox--check { + background-color: #000000 !important; } + +.vs-checkbox-black input:active:checked + .vs-checkbox .vs-checkbox--check { + background-color: #000000 !important; } + +.custom-switch-black .custom-control-input:checked ~ .custom-control-label::before { + background-color: #000000 !important; + color: #fff; + transition: all .2s ease-out; } + +.vs-radio-black input:checked ~ .vs-radio .vs-radio--circle { + background: black !important; + box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.4) !important; } + +.dark { + color: #1e1e1e !important; } + +.bg-dark { + background-color: #1e1e1e !important; } + .bg-dark .card-header, + .bg-dark .card-footer { + background-color: transparent; } + +.alert-dark { + background: rgba(30, 30, 30, 0.2) !important; + color: #1e1e1e !important; } + .alert-dark .alert-heading { + box-shadow: rgba(30, 30, 30, 0.4) 0px 6px 15px -7px; } + .alert-dark .alert-link { + color: #111111 !important; } + +.bg-rgba-dark { + background: rgba(30, 30, 30, 0.15) !important; } + +.border-dark { + border: 1px solid #1e1e1e !important; } + +.border-top-dark { + border-top: 1px solid #1e1e1e; } + +.border-bottom-dark { + border-bottom: 1px solid #1e1e1e; } + +.border-left-dark { + border-left: 1px solid #1e1e1e; } + +.border-right-dark { + border-right: 1px solid #1e1e1e; } + +.bg-dark.badge-glow, +.border-dark.badge-glow, +.badge-dark.badge-glow { + box-shadow: 0px 0px 10px #1e1e1e; } + +.badge.badge-dark { + background-color: #1e1e1e; } + +.badge.badge-light-dark { + color: #1e1e1e !important; + font-weight: 500; } + +.overlay-dark { + background: #1e1e1e; + /* The Fallback */ + background: rgba(30, 30, 30, 0.6); } + +.btn-dark { + border-color: !important; + background-color: #1e1e1e !important; + color: #fff; } + .btn-dark:hover { + border-color: !important; + color: #fff !important; + box-shadow: 0 8px 25px -8px #1e1e1e; } + .btn-dark:focus, .btn-dark:active { + color: #fff !important; } + +.btn-flat-dark { + background-color: transparent; + color: #1e1e1e; } + .btn-flat-dark:hover { + color: #1e1e1e; + background-color: rgba(30, 30, 30, 0.1); } + .btn-flat-dark:active, .btn-flat-dark:focus { + background-color: #1e1e1e; + color: #fff !important; } + +.btn-relief-dark { + background-color: #1e1e1e; + box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); + color: #fff; } + .btn-relief-dark:hover { + color: #fff; } + .btn-relief-dark:active, .btn-relief-dark:focus { + outline: none; + transform: translateY(3px); } + +.btn-outline-dark { + border: 1px solid #1e1e1e; + background-color: transparent; + color: #1e1e1e; } + .btn-outline-dark:hover { + background-color: rgba(30, 30, 30, 0.08); + color: #1e1e1e; } + .btn-outline-dark:active { + color: #fff !important; } + +.btn-dark ~ .dropdown-menu .dropdown-item.active, +.btn-outline-dark ~ .dropdown-menu .dropdown-item.active, +.btn-flat-dark ~ .dropdown-menu .dropdown-item.active { + background-color: #1e1e1e; + color: #fff; } + .btn-dark ~ .dropdown-menu .dropdown-item.active:hover, + .btn-outline-dark ~ .dropdown-menu .dropdown-item.active:hover, + .btn-flat-dark ~ .dropdown-menu .dropdown-item.active:hover { + color: #fff; } + +.btn-dark ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-outline-dark ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-flat-dark ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover { + color: #1e1e1e; } + +.dropdown.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:hover i { + color: #1e1e1e; } + +.dropdown.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:active i { + color: #fff; } + +.bullet.bullet-dark { + background-color: #1e1e1e; } + +.pagination-dark .page-item.active .page-link { + background: #1e1e1e; + color: #fff; } + .pagination-dark .page-item.active .page-link:hover { + color: #fff; } + +.pagination-dark .page-item .page-link:hover { + color: #1e1e1e; } + +.pagination-dark .page-item.prev-item .page-link:hover, .pagination-dark .page-item.next-item .page-link:hover { + background: #1e1e1e; + color: #fff; } + +.nav-pill-dark .nav-item .nav-link.active { + color: #fff; + background-color: #1e1e1e !important; } + +.progress-bar-dark { + background-color: rgba(30, 30, 30, 0.1); } + .progress-bar-dark .progress-bar { + background-color: #1e1e1e; } + +.chip-dark { + background-color: #1e1e1e !important; } + .chip-dark .chip-body { + color: #fff !important; } + +.divider.divider-dark .divider-text:before, .divider.divider-dark .divider-text:after { + border-color: #1e1e1e !important; } + +input[type="checkbox"].bg-dark + .custom-control-label:before, input[type="radio"].bg-dark + .custom-control-label:before { + background-color: #1e1e1e !important; } + +input:focus ~ .bg-dark { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #1e1e1e !important; } + +.vs-checkbox-dark input:checked ~ .vs-checkbox { + border-color: #1e1e1e !important; } + .vs-checkbox-dark input:checked ~ .vs-checkbox .vs-checkbox--check { + background-color: #1e1e1e !important; } + +.vs-checkbox-dark input:active:checked + .vs-checkbox .vs-checkbox--check { + background-color: #1e1e1e !important; } + +.custom-switch-dark .custom-control-input:checked ~ .custom-control-label::before { + background-color: #1e1e1e !important; + color: #fff; + transition: all .2s ease-out; } + +.vs-radio-dark input:checked ~ .vs-radio .vs-radio--circle { + background: #1e1e1e !important; + box-shadow: 0 3px 12px 0 rgba(30, 30, 30, 0.4) !important; } + +.dark.gradient-bg { + color: #640064 !important; } + +.bg-dark.bg-gradient-bg { + background-color: #640064 !important; } + +.btn-dark.btn-gradient-bg { + border-color: !important; + background-color: #640064 !important; } + .btn-dark.btn-gradient-bg:hover { + border-color: !important; + background-color: !important; } + .btn-dark.btn-gradient-bg:focus, .btn-dark.btn-gradient-bg:active { + border-color: !important; + background-color: !important; } + +.btn-outline-dark.btn-outline-gradient-bg { + border-color: #640064 !important; + color: #640064 !important; } + .btn-outline-dark.btn-outline-gradient-bg:hover { + background-color: #640064 !important; } + +input:focus ~ .bg-dark { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #640064 !important; } + +.border-dark.border-gradient-bg { + border: 1px solid #640064 !important; } + +.border-top-dark.border-top-gradient-bg { + border-top: 1px solid #640064 !important; } + +.border-bottom-dark.border-bottom-gradient-bg { + border-bottom: 1px solid #640064 !important; } + +.border-left-dark.border-left-gradient-bg { + border-left: 1px solid #640064 !important; } + +.border-right-dark.border-right-gradient-bg { + border-right: 1px solid #640064 !important; } + +.overlay-dark.overlay-gradient-bg { + background: #640064; + /* The Fallback */ + background: rgba(100, 0, 100, 0.6); } + +.light { + color: #babfc7 !important; } + +.bg-light { + background-color: #babfc7 !important; } + .bg-light .card-header, + .bg-light .card-footer { + background-color: transparent; } + +.alert-light { + background: rgba(186, 191, 199, 0.2) !important; + color: #babfc7 !important; } + .alert-light .alert-heading { + box-shadow: rgba(186, 191, 199, 0.4) 0px 6px 15px -7px; } + .alert-light .alert-link { + color: #acb2bc !important; } + +.bg-rgba-light { + background: rgba(186, 191, 199, 0.15) !important; } + +.border-light { + border: 1px solid #babfc7 !important; } + +.border-top-light { + border-top: 1px solid #babfc7; } + +.border-bottom-light { + border-bottom: 1px solid #babfc7; } + +.border-left-light { + border-left: 1px solid #babfc7; } + +.border-right-light { + border-right: 1px solid #babfc7; } + +.bg-light.badge-glow, +.border-light.badge-glow, +.badge-light.badge-glow { + box-shadow: 0px 0px 10px #babfc7; } + +.badge.badge-light { + background-color: #babfc7; } + +.badge.badge-light-light { + color: #babfc7 !important; + font-weight: 500; } + +.overlay-light { + background: #babfc7; + /* The Fallback */ + background: rgba(186, 191, 199, 0.6); } + +.btn-light { + border-color: !important; + background-color: #babfc7 !important; + color: #fff; } + .btn-light:hover { + border-color: !important; + color: #fff !important; + box-shadow: 0 8px 25px -8px #babfc7; } + .btn-light:focus, .btn-light:active { + color: #fff !important; } + +.btn-flat-light { + background-color: transparent; + color: #babfc7; } + .btn-flat-light:hover { + color: #babfc7; + background-color: rgba(186, 191, 199, 0.1); } + .btn-flat-light:active, .btn-flat-light:focus { + background-color: #babfc7; + color: #fff !important; } + +.btn-relief-light { + background-color: #babfc7; + box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); + color: #fff; } + .btn-relief-light:hover { + color: #fff; } + .btn-relief-light:active, .btn-relief-light:focus { + outline: none; + transform: translateY(3px); } + +.btn-outline-light { + border: 1px solid #babfc7; + background-color: transparent; + color: #babfc7; } + .btn-outline-light:hover { + background-color: rgba(186, 191, 199, 0.08); + color: #babfc7; } + .btn-outline-light:active { + color: #fff !important; } + +.btn-light ~ .dropdown-menu .dropdown-item.active, +.btn-outline-light ~ .dropdown-menu .dropdown-item.active, +.btn-flat-light ~ .dropdown-menu .dropdown-item.active { + background-color: #babfc7; + color: #fff; } + .btn-light ~ .dropdown-menu .dropdown-item.active:hover, + .btn-outline-light ~ .dropdown-menu .dropdown-item.active:hover, + .btn-flat-light ~ .dropdown-menu .dropdown-item.active:hover { + color: #fff; } + +.btn-light ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-outline-light ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-flat-light ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover { + color: #babfc7; } + +.dropdown.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:hover i { + color: #babfc7; } + +.dropdown.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:active i { + color: #fff; } + +.bullet.bullet-light { + background-color: #babfc7; } + +.pagination-light .page-item.active .page-link { + background: #babfc7; + color: #fff; } + .pagination-light .page-item.active .page-link:hover { + color: #fff; } + +.pagination-light .page-item .page-link:hover { + color: #babfc7; } + +.pagination-light .page-item.prev-item .page-link:hover, .pagination-light .page-item.next-item .page-link:hover { + background: #babfc7; + color: #fff; } + +.nav-pill-light .nav-item .nav-link.active { + color: #fff; + background-color: #babfc7 !important; } + +.progress-bar-light { + background-color: rgba(186, 191, 199, 0.1); } + .progress-bar-light .progress-bar { + background-color: #babfc7; } + +.chip-light { + background-color: #babfc7 !important; } + .chip-light .chip-body { + color: #fff !important; } + +.divider.divider-light .divider-text:before, .divider.divider-light .divider-text:after { + border-color: #babfc7 !important; } + +input[type="checkbox"].bg-light + .custom-control-label:before, input[type="radio"].bg-light + .custom-control-label:before { + background-color: #babfc7 !important; } + +input:focus ~ .bg-light { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #babfc7 !important; } + +.vs-checkbox-light input:checked ~ .vs-checkbox { + border-color: #babfc7 !important; } + .vs-checkbox-light input:checked ~ .vs-checkbox .vs-checkbox--check { + background-color: #babfc7 !important; } + +.vs-checkbox-light input:active:checked + .vs-checkbox .vs-checkbox--check { + background-color: #babfc7 !important; } + +.custom-switch-light .custom-control-input:checked ~ .custom-control-label::before { + background-color: #babfc7 !important; + color: #fff; + transition: all .2s ease-out; } + +.vs-radio-light input:checked ~ .vs-radio .vs-radio--circle { + background: #babfc7 !important; + box-shadow: 0 3px 12px 0 rgba(186, 191, 199, 0.4) !important; } + +.light.gradient-bg { + color: #640064 !important; } + +.bg-light.bg-gradient-bg { + background-color: #640064 !important; } + +.btn-light.btn-gradient-bg { + border-color: !important; + background-color: #640064 !important; } + .btn-light.btn-gradient-bg:hover { + border-color: !important; + background-color: !important; } + .btn-light.btn-gradient-bg:focus, .btn-light.btn-gradient-bg:active { + border-color: !important; + background-color: !important; } + +.btn-outline-light.btn-outline-gradient-bg { + border-color: #640064 !important; + color: #640064 !important; } + .btn-outline-light.btn-outline-gradient-bg:hover { + background-color: #640064 !important; } + +input:focus ~ .bg-light { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #640064 !important; } + +.border-light.border-gradient-bg { + border: 1px solid #640064 !important; } + +.border-top-light.border-top-gradient-bg { + border-top: 1px solid #640064 !important; } + +.border-bottom-light.border-bottom-gradient-bg { + border-bottom: 1px solid #640064 !important; } + +.border-left-light.border-left-gradient-bg { + border-left: 1px solid #640064 !important; } + +.border-right-light.border-right-gradient-bg { + border-right: 1px solid #640064 !important; } + +.overlay-light.overlay-gradient-bg { + background: #640064; + /* The Fallback */ + background: rgba(100, 0, 100, 0.6); } + +.primary.gradient-light { + color: #ce9ffc !important; } + +.bg-primary.bg-gradient-light { + background-color: #ce9ffc !important; } + +.btn-primary.btn-gradient-light { + border-color: #3a50dc !important; + background-color: #ce9ffc !important; } + .btn-primary.btn-gradient-light:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-gradient-light:focus, .btn-primary.btn-gradient-light:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-gradient-light { + border-color: #ce9ffc !important; + color: #ce9ffc !important; } + .btn-outline-primary.btn-outline-gradient-light:hover { + background-color: #ce9ffc !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ce9ffc !important; } + +.border-primary.border-gradient-light { + border: 1px solid #ce9ffc !important; } + +.border-top-primary.border-top-gradient-light { + border-top: 1px solid #ce9ffc !important; } + +.border-bottom-primary.border-bottom-gradient-light { + border-bottom: 1px solid #ce9ffc !important; } + +.border-left-primary.border-left-gradient-light { + border-left: 1px solid #ce9ffc !important; } + +.border-right-primary.border-right-gradient-light { + border-right: 1px solid #ce9ffc !important; } + +.overlay-primary.overlay-gradient-light { + background: #ce9ffc; + /* The Fallback */ + background: rgba(206, 159, 252, 0.6); } + +.primary.light-badge { + color: #dedbfb !important; } + +.bg-primary.bg-light-badge { + background-color: #dedbfb !important; } + +.btn-primary.btn-light-badge { + border-color: #3a50dc !important; + background-color: #dedbfb !important; } + .btn-primary.btn-light-badge:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-light-badge:focus, .btn-primary.btn-light-badge:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-light-badge { + border-color: #dedbfb !important; + color: #dedbfb !important; } + .btn-outline-primary.btn-outline-light-badge:hover { + background-color: #dedbfb !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #dedbfb !important; } + +.border-primary.border-light-badge { + border: 1px solid #dedbfb !important; } + +.border-top-primary.border-top-light-badge { + border-top: 1px solid #dedbfb !important; } + +.border-bottom-primary.border-bottom-light-badge { + border-bottom: 1px solid #dedbfb !important; } + +.border-left-primary.border-left-light-badge { + border-left: 1px solid #dedbfb !important; } + +.border-right-primary.border-right-light-badge { + border-right: 1px solid #dedbfb !important; } + +.overlay-primary.overlay-light-badge { + background: #dedbfb; + /* The Fallback */ + background: rgba(222, 219, 251, 0.6); } + +.primary.lighten-5 { + color: #dedbfb !important; } + +.bg-primary.bg-lighten-5 { + background-color: #dedbfb !important; } + +.btn-primary.btn-lighten-5 { + border-color: #3a50dc !important; + background-color: #dedbfb !important; } + .btn-primary.btn-lighten-5:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-lighten-5:focus, .btn-primary.btn-lighten-5:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-lighten-5 { + border-color: #dedbfb !important; + color: #dedbfb !important; } + .btn-outline-primary.btn-outline-lighten-5:hover { + background-color: #dedbfb !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #dedbfb !important; } + +.border-primary.border-lighten-5 { + border: 1px solid #dedbfb !important; } + +.border-top-primary.border-top-lighten-5 { + border-top: 1px solid #dedbfb !important; } + +.border-bottom-primary.border-bottom-lighten-5 { + border-bottom: 1px solid #dedbfb !important; } + +.border-left-primary.border-left-lighten-5 { + border-left: 1px solid #dedbfb !important; } + +.border-right-primary.border-right-lighten-5 { + border-right: 1px solid #dedbfb !important; } + +.overlay-primary.overlay-lighten-5 { + background: #dedbfb; + /* The Fallback */ + background: rgba(222, 219, 251, 0.6); } + +.primary.lighten-4 { + color: #c9c4f9 !important; } + +.bg-primary.bg-lighten-4 { + background-color: #c9c4f9 !important; } + +.btn-primary.btn-lighten-4 { + border-color: #3a50dc !important; + background-color: #c9c4f9 !important; } + .btn-primary.btn-lighten-4:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-lighten-4:focus, .btn-primary.btn-lighten-4:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-lighten-4 { + border-color: #c9c4f9 !important; + color: #c9c4f9 !important; } + .btn-outline-primary.btn-outline-lighten-4:hover { + background-color: #c9c4f9 !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #c9c4f9 !important; } + +.border-primary.border-lighten-4 { + border: 1px solid #c9c4f9 !important; } + +.border-top-primary.border-top-lighten-4 { + border-top: 1px solid #c9c4f9 !important; } + +.border-bottom-primary.border-bottom-lighten-4 { + border-bottom: 1px solid #c9c4f9 !important; } + +.border-left-primary.border-left-lighten-4 { + border-left: 1px solid #c9c4f9 !important; } + +.border-right-primary.border-right-lighten-4 { + border-right: 1px solid #c9c4f9 !important; } + +.overlay-primary.overlay-lighten-4 { + background: #c9c4f9; + /* The Fallback */ + background: rgba(201, 196, 249, 0.6); } + +.primary.lighten-3 { + color: #b3adf7 !important; } + +.bg-primary.bg-lighten-3 { + background-color: #b3adf7 !important; } + +.btn-primary.btn-lighten-3 { + border-color: #3a50dc !important; + background-color: #b3adf7 !important; } + .btn-primary.btn-lighten-3:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-lighten-3:focus, .btn-primary.btn-lighten-3:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-lighten-3 { + border-color: #b3adf7 !important; + color: #b3adf7 !important; } + .btn-outline-primary.btn-outline-lighten-3:hover { + background-color: #b3adf7 !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #b3adf7 !important; } + +.border-primary.border-lighten-3 { + border: 1px solid #b3adf7 !important; } + +.border-top-primary.border-top-lighten-3 { + border-top: 1px solid #b3adf7 !important; } + +.border-bottom-primary.border-bottom-lighten-3 { + border-bottom: 1px solid #b3adf7 !important; } + +.border-left-primary.border-left-lighten-3 { + border-left: 1px solid #b3adf7 !important; } + +.border-right-primary.border-right-lighten-3 { + border-right: 1px solid #b3adf7 !important; } + +.overlay-primary.overlay-lighten-3 { + background: #b3adf7; + /* The Fallback */ + background: rgba(179, 173, 247, 0.6); } + +.primary.lighten-2 { + color: #9e95f5 !important; } + +.bg-primary.bg-lighten-2 { + background-color: #9e95f5 !important; } + +.btn-primary.btn-lighten-2 { + border-color: #3a50dc !important; + background-color: #9e95f5 !important; } + .btn-primary.btn-lighten-2:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-lighten-2:focus, .btn-primary.btn-lighten-2:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-lighten-2 { + border-color: #9e95f5 !important; + color: #9e95f5 !important; } + .btn-outline-primary.btn-outline-lighten-2:hover { + background-color: #9e95f5 !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #9e95f5 !important; } + +.border-primary.border-lighten-2 { + border: 1px solid #9e95f5 !important; } + +.border-top-primary.border-top-lighten-2 { + border-top: 1px solid #9e95f5 !important; } + +.border-bottom-primary.border-bottom-lighten-2 { + border-bottom: 1px solid #9e95f5 !important; } + +.border-left-primary.border-left-lighten-2 { + border-left: 1px solid #9e95f5 !important; } + +.border-right-primary.border-right-lighten-2 { + border-right: 1px solid #9e95f5 !important; } + +.overlay-primary.overlay-lighten-2 { + background: #9e95f5; + /* The Fallback */ + background: rgba(158, 149, 245, 0.6); } + +.primary.lighten-1 { + color: #887ef2 !important; } + +.bg-primary.bg-lighten-1 { + background-color: #887ef2 !important; } + +.btn-primary.btn-lighten-1 { + border-color: #3a50dc !important; + background-color: #887ef2 !important; } + .btn-primary.btn-lighten-1:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-lighten-1:focus, .btn-primary.btn-lighten-1:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-lighten-1 { + border-color: #887ef2 !important; + color: #887ef2 !important; } + .btn-outline-primary.btn-outline-lighten-1:hover { + background-color: #887ef2 !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #887ef2 !important; } + +.border-primary.border-lighten-1 { + border: 1px solid #887ef2 !important; } + +.border-top-primary.border-top-lighten-1 { + border-top: 1px solid #887ef2 !important; } + +.border-bottom-primary.border-bottom-lighten-1 { + border-bottom: 1px solid #887ef2 !important; } + +.border-left-primary.border-left-lighten-1 { + border-left: 1px solid #887ef2 !important; } + +.border-right-primary.border-right-lighten-1 { + border-right: 1px solid #887ef2 !important; } + +.overlay-primary.overlay-lighten-1 { + background: #887ef2; + /* The Fallback */ + background: rgba(136, 126, 242, 0.6); } + +.primary { + color: #3a50dc !important; } + +.bg-primary { + background-color: #3a50dc !important; } + .bg-primary .card-header, + .bg-primary .card-footer { + background-color: transparent; } + +.alert-primary { + background: rgba(115, 103, 240, 0.2) !important; + color: #3a50dc !important; } + .alert-primary .alert-heading { + box-shadow: rgba(115, 103, 240, 0.4) 0px 6px 15px -7px; } + .alert-primary .alert-link { + color: #3a50dc !important; } + +.bg-rgba-primary { + background: rgba(115, 103, 240, 0.15) !important; } + +.border-primary { + border: 1px solid #3a50dc !important; } + +.border-top-primary { + border-top: 1px solid #3a50dc; } + +.border-bottom-primary { + border-bottom: 1px solid #3a50dc; } + +.border-left-primary { + border-left: 1px solid #3a50dc; } + +.border-right-primary { + border-right: 1px solid #3a50dc; } + +.bg-primary.badge-glow, +.border-primary.badge-glow, +.badge-primary.badge-glow { + box-shadow: 0px 0px 10px #3a50dc; } + +.badge.badge-primary { + background-color: #3a50dc; } + +.badge.badge-light-primary { + background-color: #dedbfb; + color: #3a50dc !important; + font-weight: 500; } + +.overlay-primary { + background: #3a50dc; + /* The Fallback */ + background: rgba(115, 103, 240, 0.6); } + +.btn-primary { + border-color: #3a50dc !important; + background-color: #3a50dc !important; + color: #fff; } + .btn-primary:hover { + border-color: #3a50dc !important; + color: #fff !important; + box-shadow: 0 8px 25px -8px #3a50dc; } + .btn-primary:focus, .btn-primary:active { + color: #fff !important; } + +.btn-flat-primary { + background-color: transparent; + color: #3a50dc; } + .btn-flat-primary:hover { + color: #3a50dc; + background-color: rgba(115, 103, 240, 0.1); } + .btn-flat-primary:active, .btn-flat-primary:focus { + background-color: #3a50dc; + color: #fff !important; } + +.btn-relief-primary { + background-color: #3a50dc; + box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); + color: #fff; } + .btn-relief-primary:hover { + color: #fff; } + .btn-relief-primary:active, .btn-relief-primary:focus { + outline: none; + transform: translateY(3px); } + +.btn-outline-primary { + border: 1px solid #3a50dc; + background-color: transparent; + color: #3a50dc; } + .btn-outline-primary:hover { + background-color: rgba(115, 103, 240, 0.08); + color: #3a50dc; } + .btn-outline-primary:active { + color: #fff !important; } + +.btn-primary ~ .dropdown-menu .dropdown-item.active, +.btn-outline-primary ~ .dropdown-menu .dropdown-item.active, +.btn-flat-primary ~ .dropdown-menu .dropdown-item.active { + background-color: #3a50dc; + color: #fff; } + .btn-primary ~ .dropdown-menu .dropdown-item.active:hover, + .btn-outline-primary ~ .dropdown-menu .dropdown-item.active:hover, + .btn-flat-primary ~ .dropdown-menu .dropdown-item.active:hover { + color: #fff; } + +.btn-primary ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-outline-primary ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-flat-primary ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover { + color: #3a50dc; } + +.dropdown.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:hover i { + color: #3a50dc; } + +.dropdown.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:active i { + color: #fff; } + +.bullet.bullet-primary { + background-color: #3a50dc; } + +.pagination-primary .page-item.active .page-link { + background: #3a50dc; + color: #fff; } + .pagination-primary .page-item.active .page-link:hover { + color: #fff; } + +.pagination-primary .page-item .page-link:hover { + color: #3a50dc; } + +.pagination-primary .page-item.prev-item .page-link:hover, .pagination-primary .page-item.next-item .page-link:hover { + background: #3a50dc; + color: #fff; } + +.nav-pill-primary .nav-item .nav-link.active { + color: #fff; + background-color: #3a50dc !important; } + +.progress-bar-primary { + background-color: rgba(115, 103, 240, 0.1); } + .progress-bar-primary .progress-bar { + background-color: #3a50dc; } + +.chip-primary { + background-color: #3a50dc !important; } + .chip-primary .chip-body { + color: #fff !important; } + +.divider.divider-primary .divider-text:before, .divider.divider-primary .divider-text:after { + border-color: #3a50dc !important; } + +input[type="checkbox"].bg-primary + .custom-control-label:before, input[type="radio"].bg-primary + .custom-control-label:before { + background-color: #3a50dc !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #3a50dc !important; } + +.vs-checkbox-primary input:checked ~ .vs-checkbox { + border-color: #3a50dc !important; } + .vs-checkbox-primary input:checked ~ .vs-checkbox .vs-checkbox--check { + background-color: #3a50dc !important; } + +.vs-checkbox-primary input:active:checked + .vs-checkbox .vs-checkbox--check { + background-color: #3a50dc !important; } + +.custom-switch-primary .custom-control-input:checked ~ .custom-control-label::before { + background-color: #3a50dc !important; + color: #fff; + transition: all .2s ease-out; } + +.vs-radio-primary input:checked ~ .vs-radio .vs-radio--circle { + background: #3a50dc !important; + box-shadow: 0 3px 12px 0 rgba(115, 103, 240, 0.4) !important; } + +.primary.darken-1 { + color: #3a50dc !important; } + +.bg-primary.bg-darken-1 { + background-color: #3a50dc !important; } + +.btn-primary.btn-darken-1 { + border-color: #3a50dc !important; + background-color: #3a50dc !important; } + .btn-primary.btn-darken-1:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-darken-1:focus, .btn-primary.btn-darken-1:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-darken-1 { + border-color: #3a50dc !important; + color: #3a50dc !important; } + .btn-outline-primary.btn-outline-darken-1:hover { + background-color: #3a50dc !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #3a50dc !important; } + +.border-primary.border-darken-1 { + border: 1px solid #3a50dc !important; } + +.border-top-primary.border-top-darken-1 { + border-top: 1px solid #3a50dc !important; } + +.border-bottom-primary.border-bottom-darken-1 { + border-bottom: 1px solid #3a50dc !important; } + +.border-left-primary.border-left-darken-1 { + border-left: 1px solid #3a50dc !important; } + +.border-right-primary.border-right-darken-1 { + border-right: 1px solid #3a50dc !important; } + +.overlay-primary.overlay-darken-1 { + background: #3a50dc; + /* The Fallback */ + background: rgba(94, 80, 238, 0.6); } + +.primary.darken-2 { + color: #3a50dc !important; } + +.bg-primary.bg-darken-2 { + background-color: #3a50dc !important; } + +.btn-primary.btn-darken-2 { + border-color: #3a50dc !important; + background-color: #3a50dc !important; } + .btn-primary.btn-darken-2:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-darken-2:focus, .btn-primary.btn-darken-2:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-darken-2 { + border-color: #3a50dc !important; + color: #3a50dc !important; } + .btn-outline-primary.btn-outline-darken-2:hover { + background-color: #3a50dc !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #3a50dc !important; } + +.border-primary.border-darken-2 { + border: 1px solid #3a50dc !important; } + +.border-top-primary.border-top-darken-2 { + border-top: 1px solid #3a50dc !important; } + +.border-bottom-primary.border-bottom-darken-2 { + border-bottom: 1px solid #3a50dc !important; } + +.border-left-primary.border-left-darken-2 { + border-left: 1px solid #3a50dc !important; } + +.border-right-primary.border-right-darken-2 { + border-right: 1px solid #3a50dc !important; } + +.overlay-primary.overlay-darken-2 { + background: #3a50dc; + /* The Fallback */ + background: rgba(72, 57, 235, 0.6); } + +.primary.darken-3 { + color: #3321e9 !important; } + +.bg-primary.bg-darken-3 { + background-color: #3321e9 !important; } + +.btn-primary.btn-darken-3 { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-darken-3:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-darken-3:focus, .btn-primary.btn-darken-3:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-darken-3 { + border-color: #3321e9 !important; + color: #3321e9 !important; } + .btn-outline-primary.btn-outline-darken-3:hover { + background-color: #3321e9 !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #3321e9 !important; } + +.border-primary.border-darken-3 { + border: 1px solid #3321e9 !important; } + +.border-top-primary.border-top-darken-3 { + border-top: 1px solid #3321e9 !important; } + +.border-bottom-primary.border-bottom-darken-3 { + border-bottom: 1px solid #3321e9 !important; } + +.border-left-primary.border-left-darken-3 { + border-left: 1px solid #3321e9 !important; } + +.border-right-primary.border-right-darken-3 { + border-right: 1px solid #3321e9 !important; } + +.overlay-primary.overlay-darken-3 { + background: #3321e9; + /* The Fallback */ + background: rgba(51, 33, 233, 0.6); } + +.primary.darken-4 { + color: #2716db !important; } + +.bg-primary.bg-darken-4 { + background-color: #2716db !important; } + +.btn-primary.btn-darken-4 { + border-color: #3a50dc !important; + background-color: #2716db !important; } + .btn-primary.btn-darken-4:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-darken-4:focus, .btn-primary.btn-darken-4:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-darken-4 { + border-color: #2716db !important; + color: #2716db !important; } + .btn-outline-primary.btn-outline-darken-4:hover { + background-color: #2716db !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #2716db !important; } + +.border-primary.border-darken-4 { + border: 1px solid #2716db !important; } + +.border-top-primary.border-top-darken-4 { + border-top: 1px solid #2716db !important; } + +.border-bottom-primary.border-bottom-darken-4 { + border-bottom: 1px solid #2716db !important; } + +.border-left-primary.border-left-darken-4 { + border-left: 1px solid #2716db !important; } + +.border-right-primary.border-right-darken-4 { + border-right: 1px solid #2716db !important; } + +.overlay-primary.overlay-darken-4 { + background: #2716db; + /* The Fallback */ + background: rgba(39, 22, 219, 0.6); } + +.primary.accent-1 { + color: #BDFDFF !important; } + +.bg-primary.bg-accent-1 { + background-color: #BDFDFF !important; } + +.btn-primary.btn-accent-1 { + border-color: #3a50dc !important; + background-color: #BDFDFF !important; } + .btn-primary.btn-accent-1:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-accent-1:focus, .btn-primary.btn-accent-1:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-accent-1 { + border-color: #BDFDFF !important; + color: #BDFDFF !important; } + .btn-outline-primary.btn-outline-accent-1:hover { + background-color: #BDFDFF !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #BDFDFF !important; } + +.border-primary.border-accent-1 { + border: 1px solid #BDFDFF !important; } + +.border-top-primary.border-top-accent-1 { + border-top: 1px solid #BDFDFF !important; } + +.border-bottom-primary.border-bottom-accent-1 { + border-bottom: 1px solid #BDFDFF !important; } + +.border-left-primary.border-left-accent-1 { + border-left: 1px solid #BDFDFF !important; } + +.border-right-primary.border-right-accent-1 { + border-right: 1px solid #BDFDFF !important; } + +.overlay-primary.overlay-accent-1 { + background: #BDFDFF; + /* The Fallback */ + background: rgba(189, 253, 255, 0.6); } + +.primary.accent-2 { + color: #8AFBFF !important; } + +.bg-primary.bg-accent-2 { + background-color: #8AFBFF !important; } + +.btn-primary.btn-accent-2 { + border-color: #3a50dc !important; + background-color: #8AFBFF !important; } + .btn-primary.btn-accent-2:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-accent-2:focus, .btn-primary.btn-accent-2:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-accent-2 { + border-color: #8AFBFF !important; + color: #8AFBFF !important; } + .btn-outline-primary.btn-outline-accent-2:hover { + background-color: #8AFBFF !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #8AFBFF !important; } + +.border-primary.border-accent-2 { + border: 1px solid #8AFBFF !important; } + +.border-top-primary.border-top-accent-2 { + border-top: 1px solid #8AFBFF !important; } + +.border-bottom-primary.border-bottom-accent-2 { + border-bottom: 1px solid #8AFBFF !important; } + +.border-left-primary.border-left-accent-2 { + border-left: 1px solid #8AFBFF !important; } + +.border-right-primary.border-right-accent-2 { + border-right: 1px solid #8AFBFF !important; } + +.overlay-primary.overlay-accent-2 { + background: #8AFBFF; + /* The Fallback */ + background: rgba(138, 251, 255, 0.6); } + +.primary.accent-3 { + color: #57FAFF !important; } + +.bg-primary.bg-accent-3 { + background-color: #57FAFF !important; } + +.btn-primary.btn-accent-3 { + border-color: #3a50dc !important; + background-color: #57FAFF !important; } + .btn-primary.btn-accent-3:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-accent-3:focus, .btn-primary.btn-accent-3:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-accent-3 { + border-color: #57FAFF !important; + color: #57FAFF !important; } + .btn-outline-primary.btn-outline-accent-3:hover { + background-color: #57FAFF !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #57FAFF !important; } + +.border-primary.border-accent-3 { + border: 1px solid #57FAFF !important; } + +.border-top-primary.border-top-accent-3 { + border-top: 1px solid #57FAFF !important; } + +.border-bottom-primary.border-bottom-accent-3 { + border-bottom: 1px solid #57FAFF !important; } + +.border-left-primary.border-left-accent-3 { + border-left: 1px solid #57FAFF !important; } + +.border-right-primary.border-right-accent-3 { + border-right: 1px solid #57FAFF !important; } + +.overlay-primary.overlay-accent-3 { + background: #57FAFF; + /* The Fallback */ + background: rgba(87, 250, 255, 0.6); } + +.primary.accent-4 { + color: #3DF9FF !important; } + +.bg-primary.bg-accent-4 { + background-color: #3DF9FF !important; } + +.btn-primary.btn-accent-4 { + border-color: #3a50dc !important; + background-color: #3DF9FF !important; } + .btn-primary.btn-accent-4:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-accent-4:focus, .btn-primary.btn-accent-4:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-accent-4 { + border-color: #3DF9FF !important; + color: #3DF9FF !important; } + .btn-outline-primary.btn-outline-accent-4:hover { + background-color: #3DF9FF !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #3DF9FF !important; } + +.border-primary.border-accent-4 { + border: 1px solid #3DF9FF !important; } + +.border-top-primary.border-top-accent-4 { + border-top: 1px solid #3DF9FF !important; } + +.border-bottom-primary.border-bottom-accent-4 { + border-bottom: 1px solid #3DF9FF !important; } + +.border-left-primary.border-left-accent-4 { + border-left: 1px solid #3DF9FF !important; } + +.border-right-primary.border-right-accent-4 { + border-right: 1px solid #3DF9FF !important; } + +.overlay-primary.overlay-accent-4 { + background: #3DF9FF; + /* The Fallback */ + background: rgba(61, 249, 255, 0.6); } + +.primary.gradient-bg { + color: #640064 !important; } + +.bg-primary.bg-gradient-bg { + background-color: #640064 !important; } + +.btn-primary.btn-gradient-bg { + border-color: #3a50dc !important; + background-color: #640064 !important; } + .btn-primary.btn-gradient-bg:hover { + border-color: #3a50dc !important; + background-color: #3321e9 !important; } + .btn-primary.btn-gradient-bg:focus, .btn-primary.btn-gradient-bg:active { + border-color: #3321e9 !important; + background-color: #2716db !important; } + +.btn-outline-primary.btn-outline-gradient-bg { + border-color: #640064 !important; + color: #640064 !important; } + .btn-outline-primary.btn-outline-gradient-bg:hover { + background-color: #640064 !important; } + +input:focus ~ .bg-primary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #640064 !important; } + +.border-primary.border-gradient-bg { + border: 1px solid #640064 !important; } + +.border-top-primary.border-top-gradient-bg { + border-top: 1px solid #640064 !important; } + +.border-bottom-primary.border-bottom-gradient-bg { + border-bottom: 1px solid #640064 !important; } + +.border-left-primary.border-left-gradient-bg { + border-left: 1px solid #640064 !important; } + +.border-right-primary.border-right-gradient-bg { + border-right: 1px solid #640064 !important; } + +.overlay-primary.overlay-gradient-bg { + background: #640064; + /* The Fallback */ + background: rgba(100, 0, 100, 0.6); } + +.secondary.gradient-light { + color: #dcdeec !important; } + +.bg-secondary.bg-gradient-light { + background-color: #dcdeec !important; } + +.btn-secondary.btn-gradient-light { + border-color: #9aa9b7 !important; + background-color: #dcdeec !important; } + .btn-secondary.btn-gradient-light:hover { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-gradient-light:focus, .btn-secondary.btn-gradient-light:active { + border-color: #8b9cac !important; + background-color: #7d8fa1 !important; } + +.btn-outline-secondary.btn-outline-gradient-light { + border-color: #dcdeec !important; + color: #dcdeec !important; } + .btn-outline-secondary.btn-outline-gradient-light:hover { + background-color: #dcdeec !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #dcdeec !important; } + +.border-secondary.border-gradient-light { + border: 1px solid #dcdeec !important; } + +.border-top-secondary.border-top-gradient-light { + border-top: 1px solid #dcdeec !important; } + +.border-bottom-secondary.border-bottom-gradient-light { + border-bottom: 1px solid #dcdeec !important; } + +.border-left-secondary.border-left-gradient-light { + border-left: 1px solid #dcdeec !important; } + +.border-right-secondary.border-right-gradient-light { + border-right: 1px solid #dcdeec !important; } + +.overlay-secondary.overlay-gradient-light { + background: #dcdeec; + /* The Fallback */ + background: rgba(220, 222, 236, 0.6); } + +.secondary.light-badge { + color: white !important; } + +.bg-secondary.bg-light-badge { + background-color: white !important; } + +.btn-secondary.btn-light-badge { + border-color: #9aa9b7 !important; + background-color: white !important; } + .btn-secondary.btn-light-badge:hover { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-light-badge:focus, .btn-secondary.btn-light-badge:active { + border-color: #8b9cac !important; + background-color: #7d8fa1 !important; } + +.btn-outline-secondary.btn-outline-light-badge { + border-color: white !important; + color: white !important; } + .btn-outline-secondary.btn-outline-light-badge:hover { + background-color: white !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem white !important; } + +.border-secondary.border-light-badge { + border: 1px solid white !important; } + +.border-top-secondary.border-top-light-badge { + border-top: 1px solid white !important; } + +.border-bottom-secondary.border-bottom-light-badge { + border-bottom: 1px solid white !important; } + +.border-left-secondary.border-left-light-badge { + border-left: 1px solid white !important; } + +.border-right-secondary.border-right-light-badge { + border-right: 1px solid white !important; } + +.overlay-secondary.overlay-light-badge { + background: white; + /* The Fallback */ + background: rgba(255, 255, 255, 0.6); } + +.secondary.lighten-5 { + color: white !important; } + +.bg-secondary.bg-lighten-5 { + background-color: white !important; } + +.btn-secondary.btn-lighten-5 { + border-color: #9aa9b7 !important; + background-color: white !important; } + .btn-secondary.btn-lighten-5:hover { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-lighten-5:focus, .btn-secondary.btn-lighten-5:active { + border-color: #8b9cac !important; + background-color: #7d8fa1 !important; } + +.btn-outline-secondary.btn-outline-lighten-5 { + border-color: white !important; + color: white !important; } + .btn-outline-secondary.btn-outline-lighten-5:hover { + background-color: white !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem white !important; } + +.border-secondary.border-lighten-5 { + border: 1px solid white !important; } + +.border-top-secondary.border-top-lighten-5 { + border-top: 1px solid white !important; } + +.border-bottom-secondary.border-bottom-lighten-5 { + border-bottom: 1px solid white !important; } + +.border-left-secondary.border-left-lighten-5 { + border-left: 1px solid white !important; } + +.border-right-secondary.border-right-lighten-5 { + border-right: 1px solid white !important; } + +.overlay-secondary.overlay-lighten-5 { + background: white; + /* The Fallback */ + background: rgba(255, 255, 255, 0.6); } + +.secondary.lighten-4 { + color: #f3f5f7 !important; } + +.bg-secondary.bg-lighten-4 { + background-color: #f3f5f7 !important; } + +.btn-secondary.btn-lighten-4 { + border-color: #9aa9b7 !important; + background-color: #f3f5f7 !important; } + .btn-secondary.btn-lighten-4:hover { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-lighten-4:focus, .btn-secondary.btn-lighten-4:active { + border-color: #8b9cac !important; + background-color: #7d8fa1 !important; } + +.btn-outline-secondary.btn-outline-lighten-4 { + border-color: #f3f5f7 !important; + color: #f3f5f7 !important; } + .btn-outline-secondary.btn-outline-lighten-4:hover { + background-color: #f3f5f7 !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f3f5f7 !important; } + +.border-secondary.border-lighten-4 { + border: 1px solid #f3f5f7 !important; } + +.border-top-secondary.border-top-lighten-4 { + border-top: 1px solid #f3f5f7 !important; } + +.border-bottom-secondary.border-bottom-lighten-4 { + border-bottom: 1px solid #f3f5f7 !important; } + +.border-left-secondary.border-left-lighten-4 { + border-left: 1px solid #f3f5f7 !important; } + +.border-right-secondary.border-right-lighten-4 { + border-right: 1px solid #f3f5f7 !important; } + +.overlay-secondary.overlay-lighten-4 { + background: #f3f5f7; + /* The Fallback */ + background: rgba(243, 245, 247, 0.6); } + +.secondary.lighten-3 { + color: #e5e8ec !important; } + +.bg-secondary.bg-lighten-3 { + background-color: #e5e8ec !important; } + +.btn-secondary.btn-lighten-3 { + border-color: #9aa9b7 !important; + background-color: #e5e8ec !important; } + .btn-secondary.btn-lighten-3:hover { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-lighten-3:focus, .btn-secondary.btn-lighten-3:active { + border-color: #8b9cac !important; + background-color: #7d8fa1 !important; } + +.btn-outline-secondary.btn-outline-lighten-3 { + border-color: #e5e8ec !important; + color: #e5e8ec !important; } + .btn-outline-secondary.btn-outline-lighten-3:hover { + background-color: #e5e8ec !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #e5e8ec !important; } + +.border-secondary.border-lighten-3 { + border: 1px solid #e5e8ec !important; } + +.border-top-secondary.border-top-lighten-3 { + border-top: 1px solid #e5e8ec !important; } + +.border-bottom-secondary.border-bottom-lighten-3 { + border-bottom: 1px solid #e5e8ec !important; } + +.border-left-secondary.border-left-lighten-3 { + border-left: 1px solid #e5e8ec !important; } + +.border-right-secondary.border-right-lighten-3 { + border-right: 1px solid #e5e8ec !important; } + +.overlay-secondary.overlay-lighten-3 { + background: #e5e8ec; + /* The Fallback */ + background: rgba(229, 232, 236, 0.6); } + +.secondary.lighten-2 { + color: #d6dce1 !important; } + +.bg-secondary.bg-lighten-2 { + background-color: #d6dce1 !important; } + +.btn-secondary.btn-lighten-2 { + border-color: #9aa9b7 !important; + background-color: #d6dce1 !important; } + .btn-secondary.btn-lighten-2:hover { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-lighten-2:focus, .btn-secondary.btn-lighten-2:active { + border-color: #8b9cac !important; + background-color: #7d8fa1 !important; } + +.btn-outline-secondary.btn-outline-lighten-2 { + border-color: #d6dce1 !important; + color: #d6dce1 !important; } + .btn-outline-secondary.btn-outline-lighten-2:hover { + background-color: #d6dce1 !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #d6dce1 !important; } + +.border-secondary.border-lighten-2 { + border: 1px solid #d6dce1 !important; } + +.border-top-secondary.border-top-lighten-2 { + border-top: 1px solid #d6dce1 !important; } + +.border-bottom-secondary.border-bottom-lighten-2 { + border-bottom: 1px solid #d6dce1 !important; } + +.border-left-secondary.border-left-lighten-2 { + border-left: 1px solid #d6dce1 !important; } + +.border-right-secondary.border-right-lighten-2 { + border-right: 1px solid #d6dce1 !important; } + +.overlay-secondary.overlay-lighten-2 { + background: #d6dce1; + /* The Fallback */ + background: rgba(214, 220, 225, 0.6); } + +.secondary.lighten-1 { + color: #c7cfd7 !important; } + +.bg-secondary.bg-lighten-1 { + background-color: #c7cfd7 !important; } + +.btn-secondary.btn-lighten-1 { + border-color: #9aa9b7 !important; + background-color: #c7cfd7 !important; } + .btn-secondary.btn-lighten-1:hover { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-lighten-1:focus, .btn-secondary.btn-lighten-1:active { + border-color: #8b9cac !important; + background-color: #7d8fa1 !important; } + +.btn-outline-secondary.btn-outline-lighten-1 { + border-color: #c7cfd7 !important; + color: #c7cfd7 !important; } + .btn-outline-secondary.btn-outline-lighten-1:hover { + background-color: #c7cfd7 !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #c7cfd7 !important; } + +.border-secondary.border-lighten-1 { + border: 1px solid #c7cfd7 !important; } + +.border-top-secondary.border-top-lighten-1 { + border-top: 1px solid #c7cfd7 !important; } + +.border-bottom-secondary.border-bottom-lighten-1 { + border-bottom: 1px solid #c7cfd7 !important; } + +.border-left-secondary.border-left-lighten-1 { + border-left: 1px solid #c7cfd7 !important; } + +.border-right-secondary.border-right-lighten-1 { + border-right: 1px solid #c7cfd7 !important; } + +.overlay-secondary.overlay-lighten-1 { + background: #c7cfd7; + /* The Fallback */ + background: rgba(199, 207, 215, 0.6); } + +.secondary { + color: #b8c2cc !important; } + +.bg-secondary { + background-color: #b8c2cc !important; } + .bg-secondary .card-header, + .bg-secondary .card-footer { + background-color: transparent; } + +.alert-secondary { + background: rgba(184, 194, 204, 0.2) !important; + color: #b8c2cc !important; } + .alert-secondary .alert-heading { + box-shadow: rgba(184, 194, 204, 0.4) 0px 6px 15px -7px; } + .alert-secondary .alert-link { + color: #a9b5c1 !important; } + +.bg-rgba-secondary { + background: rgba(184, 194, 204, 0.15) !important; } + +.border-secondary { + border: 1px solid #b8c2cc !important; } + +.border-top-secondary { + border-top: 1px solid #b8c2cc; } + +.border-bottom-secondary { + border-bottom: 1px solid #b8c2cc; } + +.border-left-secondary { + border-left: 1px solid #b8c2cc; } + +.border-right-secondary { + border-right: 1px solid #b8c2cc; } + +.bg-secondary.badge-glow, +.border-secondary.badge-glow, +.badge-secondary.badge-glow { + box-shadow: 0px 0px 10px #b8c2cc; } + +.badge.badge-secondary { + background-color: #b8c2cc; } + +.badge.badge-light-secondary { + background-color: white; + color: #b8c2cc !important; + font-weight: 500; } + +.overlay-secondary { + background: #b8c2cc; + /* The Fallback */ + background: rgba(184, 194, 204, 0.6); } + +.btn-secondary { + border-color: #9aa9b7 !important; + background-color: #b8c2cc !important; + color: #fff; } + .btn-secondary:hover { + border-color: #a9b5c1 !important; + color: #fff !important; + box-shadow: 0 8px 25px -8px #b8c2cc; } + .btn-secondary:focus, .btn-secondary:active { + color: #fff !important; } + +.btn-flat-secondary { + background-color: transparent; + color: #b8c2cc; } + .btn-flat-secondary:hover { + color: #b8c2cc; + background-color: rgba(184, 194, 204, 0.1); } + .btn-flat-secondary:active, .btn-flat-secondary:focus { + background-color: #b8c2cc; + color: #fff !important; } + +.btn-relief-secondary { + background-color: #b8c2cc; + box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); + color: #fff; } + .btn-relief-secondary:hover { + color: #fff; } + .btn-relief-secondary:active, .btn-relief-secondary:focus { + outline: none; + transform: translateY(3px); } + +.btn-outline-secondary { + border: 1px solid #b8c2cc; + background-color: transparent; + color: #b8c2cc; } + .btn-outline-secondary:hover { + background-color: rgba(184, 194, 204, 0.08); + color: #b8c2cc; } + .btn-outline-secondary:active { + color: #fff !important; } + +.btn-secondary ~ .dropdown-menu .dropdown-item.active, +.btn-outline-secondary ~ .dropdown-menu .dropdown-item.active, +.btn-flat-secondary ~ .dropdown-menu .dropdown-item.active { + background-color: #b8c2cc; + color: #fff; } + .btn-secondary ~ .dropdown-menu .dropdown-item.active:hover, + .btn-outline-secondary ~ .dropdown-menu .dropdown-item.active:hover, + .btn-flat-secondary ~ .dropdown-menu .dropdown-item.active:hover { + color: #fff; } + +.btn-secondary ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-outline-secondary ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-flat-secondary ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover { + color: #b8c2cc; } + +.dropdown.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:hover i { + color: #b8c2cc; } + +.dropdown.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:active i { + color: #fff; } + +.bullet.bullet-secondary { + background-color: #b8c2cc; } + +.pagination-secondary .page-item.active .page-link { + background: #b8c2cc; + color: #fff; } + .pagination-secondary .page-item.active .page-link:hover { + color: #fff; } + +.pagination-secondary .page-item .page-link:hover { + color: #b8c2cc; } + +.pagination-secondary .page-item.prev-item .page-link:hover, .pagination-secondary .page-item.next-item .page-link:hover { + background: #b8c2cc; + color: #fff; } + +.nav-pill-secondary .nav-item .nav-link.active { + color: #fff; + background-color: #b8c2cc !important; } + +.progress-bar-secondary { + background-color: rgba(184, 194, 204, 0.1); } + .progress-bar-secondary .progress-bar { + background-color: #b8c2cc; } + +.chip-secondary { + background-color: #b8c2cc !important; } + .chip-secondary .chip-body { + color: #fff !important; } + +.divider.divider-secondary .divider-text:before, .divider.divider-secondary .divider-text:after { + border-color: #b8c2cc !important; } + +input[type="checkbox"].bg-secondary + .custom-control-label:before, input[type="radio"].bg-secondary + .custom-control-label:before { + background-color: #b8c2cc !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #b8c2cc !important; } + +.vs-checkbox-secondary input:checked ~ .vs-checkbox { + border-color: #b8c2cc !important; } + .vs-checkbox-secondary input:checked ~ .vs-checkbox .vs-checkbox--check { + background-color: #b8c2cc !important; } + +.vs-checkbox-secondary input:active:checked + .vs-checkbox .vs-checkbox--check { + background-color: #b8c2cc !important; } + +.custom-switch-secondary .custom-control-input:checked ~ .custom-control-label::before { + background-color: #b8c2cc !important; + color: #fff; + transition: all .2s ease-out; } + +.vs-radio-secondary input:checked ~ .vs-radio .vs-radio--circle { + background: #b8c2cc !important; + box-shadow: 0 3px 12px 0 rgba(184, 194, 204, 0.4) !important; } + +.secondary.darken-1 { + color: #a9b5c1 !important; } + +.bg-secondary.bg-darken-1 { + background-color: #a9b5c1 !important; } + +.btn-secondary.btn-darken-1 { + border-color: #9aa9b7 !important; + background-color: #a9b5c1 !important; } + .btn-secondary.btn-darken-1:hover { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-darken-1:focus, .btn-secondary.btn-darken-1:active { + border-color: #8b9cac !important; + background-color: #7d8fa1 !important; } + +.btn-outline-secondary.btn-outline-darken-1 { + border-color: #a9b5c1 !important; + color: #a9b5c1 !important; } + .btn-outline-secondary.btn-outline-darken-1:hover { + background-color: #a9b5c1 !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #a9b5c1 !important; } + +.border-secondary.border-darken-1 { + border: 1px solid #a9b5c1 !important; } + +.border-top-secondary.border-top-darken-1 { + border-top: 1px solid #a9b5c1 !important; } + +.border-bottom-secondary.border-bottom-darken-1 { + border-bottom: 1px solid #a9b5c1 !important; } + +.border-left-secondary.border-left-darken-1 { + border-left: 1px solid #a9b5c1 !important; } + +.border-right-secondary.border-right-darken-1 { + border-right: 1px solid #a9b5c1 !important; } + +.overlay-secondary.overlay-darken-1 { + background: #a9b5c1; + /* The Fallback */ + background: rgba(169, 181, 193, 0.6); } + +.secondary.darken-2 { + color: #9aa9b7 !important; } + +.bg-secondary.bg-darken-2 { + background-color: #9aa9b7 !important; } + +.btn-secondary.btn-darken-2 { + border-color: #9aa9b7 !important; + background-color: #9aa9b7 !important; } + .btn-secondary.btn-darken-2:hover { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-darken-2:focus, .btn-secondary.btn-darken-2:active { + border-color: #8b9cac !important; + background-color: #7d8fa1 !important; } + +.btn-outline-secondary.btn-outline-darken-2 { + border-color: #9aa9b7 !important; + color: #9aa9b7 !important; } + .btn-outline-secondary.btn-outline-darken-2:hover { + background-color: #9aa9b7 !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #9aa9b7 !important; } + +.border-secondary.border-darken-2 { + border: 1px solid #9aa9b7 !important; } + +.border-top-secondary.border-top-darken-2 { + border-top: 1px solid #9aa9b7 !important; } + +.border-bottom-secondary.border-bottom-darken-2 { + border-bottom: 1px solid #9aa9b7 !important; } + +.border-left-secondary.border-left-darken-2 { + border-left: 1px solid #9aa9b7 !important; } + +.border-right-secondary.border-right-darken-2 { + border-right: 1px solid #9aa9b7 !important; } + +.overlay-secondary.overlay-darken-2 { + background: #9aa9b7; + /* The Fallback */ + background: rgba(154, 169, 183, 0.6); } + +.secondary.darken-3 { + color: #8b9cac !important; } + +.bg-secondary.bg-darken-3 { + background-color: #8b9cac !important; } + +.btn-secondary.btn-darken-3 { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-darken-3:hover { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-darken-3:focus, .btn-secondary.btn-darken-3:active { + border-color: #8b9cac !important; + background-color: #7d8fa1 !important; } + +.btn-outline-secondary.btn-outline-darken-3 { + border-color: #8b9cac !important; + color: #8b9cac !important; } + .btn-outline-secondary.btn-outline-darken-3:hover { + background-color: #8b9cac !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #8b9cac !important; } + +.border-secondary.border-darken-3 { + border: 1px solid #8b9cac !important; } + +.border-top-secondary.border-top-darken-3 { + border-top: 1px solid #8b9cac !important; } + +.border-bottom-secondary.border-bottom-darken-3 { + border-bottom: 1px solid #8b9cac !important; } + +.border-left-secondary.border-left-darken-3 { + border-left: 1px solid #8b9cac !important; } + +.border-right-secondary.border-right-darken-3 { + border-right: 1px solid #8b9cac !important; } + +.overlay-secondary.overlay-darken-3 { + background: #8b9cac; + /* The Fallback */ + background: rgba(139, 156, 172, 0.6); } + +.secondary.darken-4 { + color: #7d8fa1 !important; } + +.bg-secondary.bg-darken-4 { + background-color: #7d8fa1 !important; } + +.btn-secondary.btn-darken-4 { + border-color: #9aa9b7 !important; + background-color: #7d8fa1 !important; } + .btn-secondary.btn-darken-4:hover { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-darken-4:focus, .btn-secondary.btn-darken-4:active { + border-color: #8b9cac !important; + background-color: #7d8fa1 !important; } + +.btn-outline-secondary.btn-outline-darken-4 { + border-color: #7d8fa1 !important; + color: #7d8fa1 !important; } + .btn-outline-secondary.btn-outline-darken-4:hover { + background-color: #7d8fa1 !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #7d8fa1 !important; } + +.border-secondary.border-darken-4 { + border: 1px solid #7d8fa1 !important; } + +.border-top-secondary.border-top-darken-4 { + border-top: 1px solid #7d8fa1 !important; } + +.border-bottom-secondary.border-bottom-darken-4 { + border-bottom: 1px solid #7d8fa1 !important; } + +.border-left-secondary.border-left-darken-4 { + border-left: 1px solid #7d8fa1 !important; } + +.border-right-secondary.border-right-darken-4 { + border-right: 1px solid #7d8fa1 !important; } + +.overlay-secondary.overlay-darken-4 { + background: #7d8fa1; + /* The Fallback */ + background: rgba(125, 143, 161, 0.6); } + +.secondary.gradient-bg { + color: #640064 !important; } + +.bg-secondary.bg-gradient-bg { + background-color: #640064 !important; } + +.btn-secondary.btn-gradient-bg { + border-color: #9aa9b7 !important; + background-color: #640064 !important; } + .btn-secondary.btn-gradient-bg:hover { + border-color: #9aa9b7 !important; + background-color: #8b9cac !important; } + .btn-secondary.btn-gradient-bg:focus, .btn-secondary.btn-gradient-bg:active { + border-color: #8b9cac !important; + background-color: #7d8fa1 !important; } + +.btn-outline-secondary.btn-outline-gradient-bg { + border-color: #640064 !important; + color: #640064 !important; } + .btn-outline-secondary.btn-outline-gradient-bg:hover { + background-color: #640064 !important; } + +input:focus ~ .bg-secondary { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #640064 !important; } + +.border-secondary.border-gradient-bg { + border: 1px solid #640064 !important; } + +.border-top-secondary.border-top-gradient-bg { + border-top: 1px solid #640064 !important; } + +.border-bottom-secondary.border-bottom-gradient-bg { + border-bottom: 1px solid #640064 !important; } + +.border-left-secondary.border-left-gradient-bg { + border-left: 1px solid #640064 !important; } + +.border-right-secondary.border-right-gradient-bg { + border-right: 1px solid #640064 !important; } + +.overlay-secondary.overlay-gradient-bg { + background: #640064; + /* The Fallback */ + background: rgba(100, 0, 100, 0.6); } + +.success.gradient-light { + color: #4ae9d3 !important; } + +.bg-success.bg-gradient-light { + background-color: #4ae9d3 !important; } + +.btn-success.btn-gradient-light { + border-color: #1f9d57 !important; + background-color: #4ae9d3 !important; } + .btn-success.btn-gradient-light:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-gradient-light:focus, .btn-success.btn-gradient-light:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-gradient-light { + border-color: #4ae9d3 !important; + color: #4ae9d3 !important; } + .btn-outline-success.btn-outline-gradient-light:hover { + background-color: #4ae9d3 !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #4ae9d3 !important; } + +.border-success.border-gradient-light { + border: 1px solid #4ae9d3 !important; } + +.border-top-success.border-top-gradient-light { + border-top: 1px solid #4ae9d3 !important; } + +.border-bottom-success.border-bottom-gradient-light { + border-bottom: 1px solid #4ae9d3 !important; } + +.border-left-success.border-left-gradient-light { + border-left: 1px solid #4ae9d3 !important; } + +.border-right-success.border-right-gradient-light { + border-right: 1px solid #4ae9d3 !important; } + +.overlay-success.overlay-gradient-light { + background: #4ae9d3; + /* The Fallback */ + background: rgba(74, 233, 211, 0.6); } + +.success.light-badge { + color: #c7f4db !important; } + +.bg-success.bg-light-badge { + background-color: #c7f4db !important; } + +.btn-success.btn-light-badge { + border-color: #1f9d57 !important; + background-color: #c7f4db !important; } + .btn-success.btn-light-badge:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-light-badge:focus, .btn-success.btn-light-badge:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-light-badge { + border-color: #c7f4db !important; + color: #c7f4db !important; } + .btn-outline-success.btn-outline-light-badge:hover { + background-color: #c7f4db !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #c7f4db !important; } + +.border-success.border-light-badge { + border: 1px solid #c7f4db !important; } + +.border-top-success.border-top-light-badge { + border-top: 1px solid #c7f4db !important; } + +.border-bottom-success.border-bottom-light-badge { + border-bottom: 1px solid #c7f4db !important; } + +.border-left-success.border-left-light-badge { + border-left: 1px solid #c7f4db !important; } + +.border-right-success.border-right-light-badge { + border-right: 1px solid #c7f4db !important; } + +.overlay-success.overlay-light-badge { + background: #c7f4db; + /* The Fallback */ + background: rgba(199, 244, 219, 0.6); } + +.success.lighten-5 { + color: #88e7b2 !important; } + +.bg-success.bg-lighten-5 { + background-color: #88e7b2 !important; } + +.btn-success.btn-lighten-5 { + border-color: #1f9d57 !important; + background-color: #88e7b2 !important; } + .btn-success.btn-lighten-5:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-lighten-5:focus, .btn-success.btn-lighten-5:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-lighten-5 { + border-color: #88e7b2 !important; + color: #88e7b2 !important; } + .btn-outline-success.btn-outline-lighten-5:hover { + background-color: #88e7b2 !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #88e7b2 !important; } + +.border-success.border-lighten-5 { + border: 1px solid #88e7b2 !important; } + +.border-top-success.border-top-lighten-5 { + border-top: 1px solid #88e7b2 !important; } + +.border-bottom-success.border-bottom-lighten-5 { + border-bottom: 1px solid #88e7b2 !important; } + +.border-left-success.border-left-lighten-5 { + border-left: 1px solid #88e7b2 !important; } + +.border-right-success.border-right-lighten-5 { + border-right: 1px solid #88e7b2 !important; } + +.overlay-success.overlay-lighten-5 { + background: #88e7b2; + /* The Fallback */ + background: rgba(136, 231, 178, 0.6); } + +.success.lighten-4 { + color: #72e3a4 !important; } + +.bg-success.bg-lighten-4 { + background-color: #72e3a4 !important; } + +.btn-success.btn-lighten-4 { + border-color: #1f9d57 !important; + background-color: #72e3a4 !important; } + .btn-success.btn-lighten-4:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-lighten-4:focus, .btn-success.btn-lighten-4:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-lighten-4 { + border-color: #72e3a4 !important; + color: #72e3a4 !important; } + .btn-outline-success.btn-outline-lighten-4:hover { + background-color: #72e3a4 !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #72e3a4 !important; } + +.border-success.border-lighten-4 { + border: 1px solid #72e3a4 !important; } + +.border-top-success.border-top-lighten-4 { + border-top: 1px solid #72e3a4 !important; } + +.border-bottom-success.border-bottom-lighten-4 { + border-bottom: 1px solid #72e3a4 !important; } + +.border-left-success.border-left-lighten-4 { + border-left: 1px solid #72e3a4 !important; } + +.border-right-success.border-right-lighten-4 { + border-right: 1px solid #72e3a4 !important; } + +.overlay-success.overlay-lighten-4 { + background: #72e3a4; + /* The Fallback */ + background: rgba(114, 227, 164, 0.6); } + +.success.lighten-3 { + color: #5dde97 !important; } + +.bg-success.bg-lighten-3 { + background-color: #5dde97 !important; } + +.btn-success.btn-lighten-3 { + border-color: #1f9d57 !important; + background-color: #5dde97 !important; } + .btn-success.btn-lighten-3:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-lighten-3:focus, .btn-success.btn-lighten-3:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-lighten-3 { + border-color: #5dde97 !important; + color: #5dde97 !important; } + .btn-outline-success.btn-outline-lighten-3:hover { + background-color: #5dde97 !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #5dde97 !important; } + +.border-success.border-lighten-3 { + border: 1px solid #5dde97 !important; } + +.border-top-success.border-top-lighten-3 { + border-top: 1px solid #5dde97 !important; } + +.border-bottom-success.border-bottom-lighten-3 { + border-bottom: 1px solid #5dde97 !important; } + +.border-left-success.border-left-lighten-3 { + border-left: 1px solid #5dde97 !important; } + +.border-right-success.border-right-lighten-3 { + border-right: 1px solid #5dde97 !important; } + +.overlay-success.overlay-lighten-3 { + background: #5dde97; + /* The Fallback */ + background: rgba(93, 222, 151, 0.6); } + +.success.lighten-2 { + color: #48da89 !important; } + +.bg-success.bg-lighten-2 { + background-color: #48da89 !important; } + +.btn-success.btn-lighten-2 { + border-color: #1f9d57 !important; + background-color: #48da89 !important; } + .btn-success.btn-lighten-2:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-lighten-2:focus, .btn-success.btn-lighten-2:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-lighten-2 { + border-color: #48da89 !important; + color: #48da89 !important; } + .btn-outline-success.btn-outline-lighten-2:hover { + background-color: #48da89 !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #48da89 !important; } + +.border-success.border-lighten-2 { + border: 1px solid #48da89 !important; } + +.border-top-success.border-top-lighten-2 { + border-top: 1px solid #48da89 !important; } + +.border-bottom-success.border-bottom-lighten-2 { + border-bottom: 1px solid #48da89 !important; } + +.border-left-success.border-left-lighten-2 { + border-left: 1px solid #48da89 !important; } + +.border-right-success.border-right-lighten-2 { + border-right: 1px solid #48da89 !important; } + +.overlay-success.overlay-lighten-2 { + background: #48da89; + /* The Fallback */ + background: rgba(72, 218, 137, 0.6); } + +.success.lighten-1 { + color: #33d67c !important; } + +.bg-success.bg-lighten-1 { + background-color: #33d67c !important; } + +.btn-success.btn-lighten-1 { + border-color: #1f9d57 !important; + background-color: #33d67c !important; } + .btn-success.btn-lighten-1:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-lighten-1:focus, .btn-success.btn-lighten-1:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-lighten-1 { + border-color: #33d67c !important; + color: #33d67c !important; } + .btn-outline-success.btn-outline-lighten-1:hover { + background-color: #33d67c !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #33d67c !important; } + +.border-success.border-lighten-1 { + border: 1px solid #33d67c !important; } + +.border-top-success.border-top-lighten-1 { + border-top: 1px solid #33d67c !important; } + +.border-bottom-success.border-bottom-lighten-1 { + border-bottom: 1px solid #33d67c !important; } + +.border-left-success.border-left-lighten-1 { + border-left: 1px solid #33d67c !important; } + +.border-right-success.border-right-lighten-1 { + border-right: 1px solid #33d67c !important; } + +.overlay-success.overlay-lighten-1 { + background: #33d67c; + /* The Fallback */ + background: rgba(51, 214, 124, 0.6); } + +.success { + color: #28c76f !important; } + +.bg-success { + background-color: #28c76f !important; } + .bg-success .card-header, + .bg-success .card-footer { + background-color: transparent; } + +.alert-success { + background: rgba(40, 199, 111, 0.2) !important; + color: #28c76f !important; } + .alert-success .alert-heading { + box-shadow: rgba(40, 199, 111, 0.4) 0px 6px 15px -7px; } + .alert-success .alert-link { + color: #24b263 !important; } + +.bg-rgba-success { + background: rgba(40, 199, 111, 0.15) !important; } + +.border-success { + border: 1px solid #28c76f !important; } + +.border-top-success { + border-top: 1px solid #28c76f; } + +.border-bottom-success { + border-bottom: 1px solid #28c76f; } + +.border-left-success { + border-left: 1px solid #28c76f; } + +.border-right-success { + border-right: 1px solid #28c76f; } + +.bg-success.badge-glow, +.border-success.badge-glow, +.badge-success.badge-glow { + box-shadow: 0px 0px 10px #28c76f; } + +.badge.badge-success { + background-color: #28c76f; } + +.badge.badge-light-success { + background-color: #c7f4db; + color: #28c76f !important; + font-weight: 500; } + +.overlay-success { + background: #28c76f; + /* The Fallback */ + background: rgba(40, 199, 111, 0.6); } + +.btn-success { + border-color: #1f9d57 !important; + background-color: #28c76f !important; + color: #fff; } + .btn-success:hover { + border-color: #24b263 !important; + color: #fff !important; + box-shadow: 0 8px 25px -8px #28c76f; } + .btn-success:focus, .btn-success:active { + color: #fff !important; } + +.btn-flat-success { + background-color: transparent; + color: #28c76f; } + .btn-flat-success:hover { + color: #28c76f; + background-color: rgba(40, 199, 111, 0.1); } + .btn-flat-success:active, .btn-flat-success:focus { + background-color: #28c76f; + color: #fff !important; } + +.btn-relief-success { + background-color: #28c76f; + box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); + color: #fff; } + .btn-relief-success:hover { + color: #fff; } + .btn-relief-success:active, .btn-relief-success:focus { + outline: none; + transform: translateY(3px); } + +.btn-outline-success { + border: 1px solid #28c76f; + background-color: transparent; + color: #28c76f; } + .btn-outline-success:hover { + background-color: rgba(40, 199, 111, 0.08); + color: #28c76f; } + .btn-outline-success:active { + color: #fff !important; } + +.btn-success ~ .dropdown-menu .dropdown-item.active, +.btn-outline-success ~ .dropdown-menu .dropdown-item.active, +.btn-flat-success ~ .dropdown-menu .dropdown-item.active { + background-color: #28c76f; + color: #fff; } + .btn-success ~ .dropdown-menu .dropdown-item.active:hover, + .btn-outline-success ~ .dropdown-menu .dropdown-item.active:hover, + .btn-flat-success ~ .dropdown-menu .dropdown-item.active:hover { + color: #fff; } + +.btn-success ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-outline-success ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-flat-success ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover { + color: #28c76f; } + +.dropdown.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:hover i { + color: #28c76f; } + +.dropdown.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:active i { + color: #fff; } + +.bullet.bullet-success { + background-color: #28c76f; } + +.pagination-success .page-item.active .page-link { + background: #28c76f; + color: #fff; } + .pagination-success .page-item.active .page-link:hover { + color: #fff; } + +.pagination-success .page-item .page-link:hover { + color: #28c76f; } + +.pagination-success .page-item.prev-item .page-link:hover, .pagination-success .page-item.next-item .page-link:hover { + background: #28c76f; + color: #fff; } + +.nav-pill-success .nav-item .nav-link.active { + color: #fff; + background-color: #28c76f !important; } + +.progress-bar-success { + background-color: rgba(40, 199, 111, 0.1); } + .progress-bar-success .progress-bar { + background-color: #28c76f; } + +.chip-success { + background-color: #28c76f !important; } + .chip-success .chip-body { + color: #fff !important; } + +.divider.divider-success .divider-text:before, .divider.divider-success .divider-text:after { + border-color: #28c76f !important; } + +input[type="checkbox"].bg-success + .custom-control-label:before, input[type="radio"].bg-success + .custom-control-label:before { + background-color: #28c76f !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #28c76f !important; } + +.vs-checkbox-success input:checked ~ .vs-checkbox { + border-color: #28c76f !important; } + .vs-checkbox-success input:checked ~ .vs-checkbox .vs-checkbox--check { + background-color: #28c76f !important; } + +.vs-checkbox-success input:active:checked + .vs-checkbox .vs-checkbox--check { + background-color: #28c76f !important; } + +.custom-switch-success .custom-control-input:checked ~ .custom-control-label::before { + background-color: #28c76f !important; + color: #fff; + transition: all .2s ease-out; } + +.vs-radio-success input:checked ~ .vs-radio .vs-radio--circle { + background: #28c76f !important; + box-shadow: 0 3px 12px 0 rgba(40, 199, 111, 0.4) !important; } + +.success.darken-1 { + color: #24b263 !important; } + +.bg-success.bg-darken-1 { + background-color: #24b263 !important; } + +.btn-success.btn-darken-1 { + border-color: #1f9d57 !important; + background-color: #24b263 !important; } + .btn-success.btn-darken-1:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-darken-1:focus, .btn-success.btn-darken-1:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-darken-1 { + border-color: #24b263 !important; + color: #24b263 !important; } + .btn-outline-success.btn-outline-darken-1:hover { + background-color: #24b263 !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #24b263 !important; } + +.border-success.border-darken-1 { + border: 1px solid #24b263 !important; } + +.border-top-success.border-top-darken-1 { + border-top: 1px solid #24b263 !important; } + +.border-bottom-success.border-bottom-darken-1 { + border-bottom: 1px solid #24b263 !important; } + +.border-left-success.border-left-darken-1 { + border-left: 1px solid #24b263 !important; } + +.border-right-success.border-right-darken-1 { + border-right: 1px solid #24b263 !important; } + +.overlay-success.overlay-darken-1 { + background: #24b263; + /* The Fallback */ + background: rgba(36, 178, 99, 0.6); } + +.success.darken-2 { + color: #1f9d57 !important; } + +.bg-success.bg-darken-2 { + background-color: #1f9d57 !important; } + +.btn-success.btn-darken-2 { + border-color: #1f9d57 !important; + background-color: #1f9d57 !important; } + .btn-success.btn-darken-2:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-darken-2:focus, .btn-success.btn-darken-2:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-darken-2 { + border-color: #1f9d57 !important; + color: #1f9d57 !important; } + .btn-outline-success.btn-outline-darken-2:hover { + background-color: #1f9d57 !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #1f9d57 !important; } + +.border-success.border-darken-2 { + border: 1px solid #1f9d57 !important; } + +.border-top-success.border-top-darken-2 { + border-top: 1px solid #1f9d57 !important; } + +.border-bottom-success.border-bottom-darken-2 { + border-bottom: 1px solid #1f9d57 !important; } + +.border-left-success.border-left-darken-2 { + border-left: 1px solid #1f9d57 !important; } + +.border-right-success.border-right-darken-2 { + border-right: 1px solid #1f9d57 !important; } + +.overlay-success.overlay-darken-2 { + background: #1f9d57; + /* The Fallback */ + background: rgba(31, 157, 87, 0.6); } + +.success.darken-3 { + color: #1b874b !important; } + +.bg-success.bg-darken-3 { + background-color: #1b874b !important; } + +.btn-success.btn-darken-3 { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-darken-3:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-darken-3:focus, .btn-success.btn-darken-3:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-darken-3 { + border-color: #1b874b !important; + color: #1b874b !important; } + .btn-outline-success.btn-outline-darken-3:hover { + background-color: #1b874b !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #1b874b !important; } + +.border-success.border-darken-3 { + border: 1px solid #1b874b !important; } + +.border-top-success.border-top-darken-3 { + border-top: 1px solid #1b874b !important; } + +.border-bottom-success.border-bottom-darken-3 { + border-bottom: 1px solid #1b874b !important; } + +.border-left-success.border-left-darken-3 { + border-left: 1px solid #1b874b !important; } + +.border-right-success.border-right-darken-3 { + border-right: 1px solid #1b874b !important; } + +.overlay-success.overlay-darken-3 { + background: #1b874b; + /* The Fallback */ + background: rgba(27, 135, 75, 0.6); } + +.success.darken-4 { + color: #177240 !important; } + +.bg-success.bg-darken-4 { + background-color: #177240 !important; } + +.btn-success.btn-darken-4 { + border-color: #1f9d57 !important; + background-color: #177240 !important; } + .btn-success.btn-darken-4:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-darken-4:focus, .btn-success.btn-darken-4:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-darken-4 { + border-color: #177240 !important; + color: #177240 !important; } + .btn-outline-success.btn-outline-darken-4:hover { + background-color: #177240 !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #177240 !important; } + +.border-success.border-darken-4 { + border: 1px solid #177240 !important; } + +.border-top-success.border-top-darken-4 { + border-top: 1px solid #177240 !important; } + +.border-bottom-success.border-bottom-darken-4 { + border-bottom: 1px solid #177240 !important; } + +.border-left-success.border-left-darken-4 { + border-left: 1px solid #177240 !important; } + +.border-right-success.border-right-darken-4 { + border-right: 1px solid #177240 !important; } + +.overlay-success.overlay-darken-4 { + background: #177240; + /* The Fallback */ + background: rgba(23, 114, 64, 0.6); } + +.success.accent-1 { + color: #E1FFF1 !important; } + +.bg-success.bg-accent-1 { + background-color: #E1FFF1 !important; } + +.btn-success.btn-accent-1 { + border-color: #1f9d57 !important; + background-color: #E1FFF1 !important; } + .btn-success.btn-accent-1:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-accent-1:focus, .btn-success.btn-accent-1:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-accent-1 { + border-color: #E1FFF1 !important; + color: #E1FFF1 !important; } + .btn-outline-success.btn-outline-accent-1:hover { + background-color: #E1FFF1 !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #E1FFF1 !important; } + +.border-success.border-accent-1 { + border: 1px solid #E1FFF1 !important; } + +.border-top-success.border-top-accent-1 { + border-top: 1px solid #E1FFF1 !important; } + +.border-bottom-success.border-bottom-accent-1 { + border-bottom: 1px solid #E1FFF1 !important; } + +.border-left-success.border-left-accent-1 { + border-left: 1px solid #E1FFF1 !important; } + +.border-right-success.border-right-accent-1 { + border-right: 1px solid #E1FFF1 !important; } + +.overlay-success.overlay-accent-1 { + background: #E1FFF1; + /* The Fallback */ + background: rgba(225, 255, 241, 0.6); } + +.success.accent-2 { + color: #AEFFD9 !important; } + +.bg-success.bg-accent-2 { + background-color: #AEFFD9 !important; } + +.btn-success.btn-accent-2 { + border-color: #1f9d57 !important; + background-color: #AEFFD9 !important; } + .btn-success.btn-accent-2:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-accent-2:focus, .btn-success.btn-accent-2:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-accent-2 { + border-color: #AEFFD9 !important; + color: #AEFFD9 !important; } + .btn-outline-success.btn-outline-accent-2:hover { + background-color: #AEFFD9 !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #AEFFD9 !important; } + +.border-success.border-accent-2 { + border: 1px solid #AEFFD9 !important; } + +.border-top-success.border-top-accent-2 { + border-top: 1px solid #AEFFD9 !important; } + +.border-bottom-success.border-bottom-accent-2 { + border-bottom: 1px solid #AEFFD9 !important; } + +.border-left-success.border-left-accent-2 { + border-left: 1px solid #AEFFD9 !important; } + +.border-right-success.border-right-accent-2 { + border-right: 1px solid #AEFFD9 !important; } + +.overlay-success.overlay-accent-2 { + background: #AEFFD9; + /* The Fallback */ + background: rgba(174, 255, 217, 0.6); } + +.success.accent-3 { + color: #7BFFC1 !important; } + +.bg-success.bg-accent-3 { + background-color: #7BFFC1 !important; } + +.btn-success.btn-accent-3 { + border-color: #1f9d57 !important; + background-color: #7BFFC1 !important; } + .btn-success.btn-accent-3:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-accent-3:focus, .btn-success.btn-accent-3:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-accent-3 { + border-color: #7BFFC1 !important; + color: #7BFFC1 !important; } + .btn-outline-success.btn-outline-accent-3:hover { + background-color: #7BFFC1 !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #7BFFC1 !important; } + +.border-success.border-accent-3 { + border: 1px solid #7BFFC1 !important; } + +.border-top-success.border-top-accent-3 { + border-top: 1px solid #7BFFC1 !important; } + +.border-bottom-success.border-bottom-accent-3 { + border-bottom: 1px solid #7BFFC1 !important; } + +.border-left-success.border-left-accent-3 { + border-left: 1px solid #7BFFC1 !important; } + +.border-right-success.border-right-accent-3 { + border-right: 1px solid #7BFFC1 !important; } + +.overlay-success.overlay-accent-3 { + background: #7BFFC1; + /* The Fallback */ + background: rgba(123, 255, 193, 0.6); } + +.success.accent-4 { + color: #62FFB5 !important; } + +.bg-success.bg-accent-4 { + background-color: #62FFB5 !important; } + +.btn-success.btn-accent-4 { + border-color: #1f9d57 !important; + background-color: #62FFB5 !important; } + .btn-success.btn-accent-4:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-accent-4:focus, .btn-success.btn-accent-4:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-accent-4 { + border-color: #62FFB5 !important; + color: #62FFB5 !important; } + .btn-outline-success.btn-outline-accent-4:hover { + background-color: #62FFB5 !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #62FFB5 !important; } + +.border-success.border-accent-4 { + border: 1px solid #62FFB5 !important; } + +.border-top-success.border-top-accent-4 { + border-top: 1px solid #62FFB5 !important; } + +.border-bottom-success.border-bottom-accent-4 { + border-bottom: 1px solid #62FFB5 !important; } + +.border-left-success.border-left-accent-4 { + border-left: 1px solid #62FFB5 !important; } + +.border-right-success.border-right-accent-4 { + border-right: 1px solid #62FFB5 !important; } + +.overlay-success.overlay-accent-4 { + background: #62FFB5; + /* The Fallback */ + background: rgba(98, 255, 181, 0.6); } + +.success.gradient-bg { + color: #0064fa !important; } + +.bg-success.bg-gradient-bg { + background-color: #0064fa !important; } + +.btn-success.btn-gradient-bg { + border-color: #1f9d57 !important; + background-color: #0064fa !important; } + .btn-success.btn-gradient-bg:hover { + border-color: #1f9d57 !important; + background-color: #1b874b !important; } + .btn-success.btn-gradient-bg:focus, .btn-success.btn-gradient-bg:active { + border-color: #1b874b !important; + background-color: #177240 !important; } + +.btn-outline-success.btn-outline-gradient-bg { + border-color: #0064fa !important; + color: #0064fa !important; } + .btn-outline-success.btn-outline-gradient-bg:hover { + background-color: #0064fa !important; } + +input:focus ~ .bg-success { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #0064fa !important; } + +.border-success.border-gradient-bg { + border: 1px solid #0064fa !important; } + +.border-top-success.border-top-gradient-bg { + border-top: 1px solid #0064fa !important; } + +.border-bottom-success.border-bottom-gradient-bg { + border-bottom: 1px solid #0064fa !important; } + +.border-left-success.border-left-gradient-bg { + border-left: 1px solid #0064fa !important; } + +.border-right-success.border-right-gradient-bg { + border-right: 1px solid #0064fa !important; } + +.overlay-success.overlay-gradient-bg { + background: #0064fa; + /* The Fallback */ + background: rgba(0, 100, 250, 0.6); } + +.info.gradient-light { + color: #2d91ff !important; } + +.bg-info.bg-gradient-light { + background-color: #2d91ff !important; } + +.btn-info.btn-gradient-light { + border-color: #00a1b5 !important; + background-color: #2d91ff !important; } + .btn-info.btn-gradient-light:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-gradient-light:focus, .btn-info.btn-gradient-light:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-gradient-light { + border-color: #2d91ff !important; + color: #2d91ff !important; } + .btn-outline-info.btn-outline-gradient-light:hover { + background-color: #2d91ff !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #2d91ff !important; } + +.border-info.border-gradient-light { + border: 1px solid #2d91ff !important; } + +.border-top-info.border-top-gradient-light { + border-top: 1px solid #2d91ff !important; } + +.border-bottom-info.border-bottom-gradient-light { + border-bottom: 1px solid #2d91ff !important; } + +.border-left-info.border-left-gradient-light { + border-left: 1px solid #2d91ff !important; } + +.border-right-info.border-right-gradient-light { + border-right: 1px solid #2d91ff !important; } + +.overlay-info.overlay-gradient-light { + background: #2d91ff; + /* The Fallback */ + background: rgba(45, 145, 255, 0.6); } + +.info.light-badge { + color: #b5f7ff !important; } + +.bg-info.bg-light-badge { + background-color: #b5f7ff !important; } + +.btn-info.btn-light-badge { + border-color: #00a1b5 !important; + background-color: #b5f7ff !important; } + .btn-info.btn-light-badge:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-light-badge:focus, .btn-info.btn-light-badge:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-light-badge { + border-color: #b5f7ff !important; + color: #b5f7ff !important; } + .btn-outline-info.btn-outline-light-badge:hover { + background-color: #b5f7ff !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #b5f7ff !important; } + +.border-info.border-light-badge { + border: 1px solid #b5f7ff !important; } + +.border-top-info.border-top-light-badge { + border-top: 1px solid #b5f7ff !important; } + +.border-bottom-info.border-bottom-light-badge { + border-bottom: 1px solid #b5f7ff !important; } + +.border-left-info.border-left-light-badge { + border-left: 1px solid #b5f7ff !important; } + +.border-right-info.border-right-light-badge { + border-right: 1px solid #b5f7ff !important; } + +.overlay-info.overlay-light-badge { + background: #b5f7ff; + /* The Fallback */ + background: rgba(181, 247, 255, 0.6); } + +.info.lighten-5 { + color: #69efff !important; } + +.bg-info.bg-lighten-5 { + background-color: #69efff !important; } + +.btn-info.btn-lighten-5 { + border-color: #00a1b5 !important; + background-color: #69efff !important; } + .btn-info.btn-lighten-5:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-lighten-5:focus, .btn-info.btn-lighten-5:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-lighten-5 { + border-color: #69efff !important; + color: #69efff !important; } + .btn-outline-info.btn-outline-lighten-5:hover { + background-color: #69efff !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #69efff !important; } + +.border-info.border-lighten-5 { + border: 1px solid #69efff !important; } + +.border-top-info.border-top-lighten-5 { + border-top: 1px solid #69efff !important; } + +.border-bottom-info.border-bottom-lighten-5 { + border-bottom: 1px solid #69efff !important; } + +.border-left-info.border-left-lighten-5 { + border-left: 1px solid #69efff !important; } + +.border-right-info.border-right-lighten-5 { + border-right: 1px solid #69efff !important; } + +.overlay-info.overlay-lighten-5 { + background: #69efff; + /* The Fallback */ + background: rgba(105, 239, 255, 0.6); } + +.info.lighten-4 { + color: #4fecff !important; } + +.bg-info.bg-lighten-4 { + background-color: #4fecff !important; } + +.btn-info.btn-lighten-4 { + border-color: #00a1b5 !important; + background-color: #4fecff !important; } + .btn-info.btn-lighten-4:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-lighten-4:focus, .btn-info.btn-lighten-4:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-lighten-4 { + border-color: #4fecff !important; + color: #4fecff !important; } + .btn-outline-info.btn-outline-lighten-4:hover { + background-color: #4fecff !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #4fecff !important; } + +.border-info.border-lighten-4 { + border: 1px solid #4fecff !important; } + +.border-top-info.border-top-lighten-4 { + border-top: 1px solid #4fecff !important; } + +.border-bottom-info.border-bottom-lighten-4 { + border-bottom: 1px solid #4fecff !important; } + +.border-left-info.border-left-lighten-4 { + border-left: 1px solid #4fecff !important; } + +.border-right-info.border-right-lighten-4 { + border-right: 1px solid #4fecff !important; } + +.overlay-info.overlay-lighten-4 { + background: #4fecff; + /* The Fallback */ + background: rgba(79, 236, 255, 0.6); } + +.info.lighten-3 { + color: #36e9ff !important; } + +.bg-info.bg-lighten-3 { + background-color: #36e9ff !important; } + +.btn-info.btn-lighten-3 { + border-color: #00a1b5 !important; + background-color: #36e9ff !important; } + .btn-info.btn-lighten-3:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-lighten-3:focus, .btn-info.btn-lighten-3:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-lighten-3 { + border-color: #36e9ff !important; + color: #36e9ff !important; } + .btn-outline-info.btn-outline-lighten-3:hover { + background-color: #36e9ff !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #36e9ff !important; } + +.border-info.border-lighten-3 { + border: 1px solid #36e9ff !important; } + +.border-top-info.border-top-lighten-3 { + border-top: 1px solid #36e9ff !important; } + +.border-bottom-info.border-bottom-lighten-3 { + border-bottom: 1px solid #36e9ff !important; } + +.border-left-info.border-left-lighten-3 { + border-left: 1px solid #36e9ff !important; } + +.border-right-info.border-right-lighten-3 { + border-right: 1px solid #36e9ff !important; } + +.overlay-info.overlay-lighten-3 { + background: #36e9ff; + /* The Fallback */ + background: rgba(54, 233, 255, 0.6); } + +.info.lighten-2 { + color: #1ce7ff !important; } + +.bg-info.bg-lighten-2 { + background-color: #1ce7ff !important; } + +.btn-info.btn-lighten-2 { + border-color: #00a1b5 !important; + background-color: #1ce7ff !important; } + .btn-info.btn-lighten-2:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-lighten-2:focus, .btn-info.btn-lighten-2:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-lighten-2 { + border-color: #1ce7ff !important; + color: #1ce7ff !important; } + .btn-outline-info.btn-outline-lighten-2:hover { + background-color: #1ce7ff !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #1ce7ff !important; } + +.border-info.border-lighten-2 { + border: 1px solid #1ce7ff !important; } + +.border-top-info.border-top-lighten-2 { + border-top: 1px solid #1ce7ff !important; } + +.border-bottom-info.border-bottom-lighten-2 { + border-bottom: 1px solid #1ce7ff !important; } + +.border-left-info.border-left-lighten-2 { + border-left: 1px solid #1ce7ff !important; } + +.border-right-info.border-right-lighten-2 { + border-right: 1px solid #1ce7ff !important; } + +.overlay-info.overlay-lighten-2 { + background: #1ce7ff; + /* The Fallback */ + background: rgba(28, 231, 255, 0.6); } + +.info.lighten-1 { + color: #03e4ff !important; } + +.bg-info.bg-lighten-1 { + background-color: #03e4ff !important; } + +.btn-info.btn-lighten-1 { + border-color: #00a1b5 !important; + background-color: #03e4ff !important; } + .btn-info.btn-lighten-1:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-lighten-1:focus, .btn-info.btn-lighten-1:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-lighten-1 { + border-color: #03e4ff !important; + color: #03e4ff !important; } + .btn-outline-info.btn-outline-lighten-1:hover { + background-color: #03e4ff !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #03e4ff !important; } + +.border-info.border-lighten-1 { + border: 1px solid #03e4ff !important; } + +.border-top-info.border-top-lighten-1 { + border-top: 1px solid #03e4ff !important; } + +.border-bottom-info.border-bottom-lighten-1 { + border-bottom: 1px solid #03e4ff !important; } + +.border-left-info.border-left-lighten-1 { + border-left: 1px solid #03e4ff !important; } + +.border-right-info.border-right-lighten-1 { + border-right: 1px solid #03e4ff !important; } + +.overlay-info.overlay-lighten-1 { + background: #03e4ff; + /* The Fallback */ + background: rgba(3, 228, 255, 0.6); } + +.info { + color: #00cfe8 !important; } + +.bg-info { + background-color: #00cfe8 !important; } + .bg-info .card-header, + .bg-info .card-footer { + background-color: transparent; } + +.alert-info { + background: rgba(0, 207, 232, 0.2) !important; + color: #00cfe8 !important; } + .alert-info .alert-heading { + box-shadow: rgba(0, 207, 232, 0.4) 0px 6px 15px -7px; } + .alert-info .alert-link { + color: #00b8cf !important; } + +.bg-rgba-info { + background: rgba(0, 207, 232, 0.15) !important; } + +.border-info { + border: 1px solid #00cfe8 !important; } + +.border-top-info { + border-top: 1px solid #00cfe8; } + +.border-bottom-info { + border-bottom: 1px solid #00cfe8; } + +.border-left-info { + border-left: 1px solid #00cfe8; } + +.border-right-info { + border-right: 1px solid #00cfe8; } + +.bg-info.badge-glow, +.border-info.badge-glow, +.badge-info.badge-glow { + box-shadow: 0px 0px 10px #00cfe8; } + +.badge.badge-info { + background-color: #00cfe8; } + +.badge.badge-light-info { + background-color: #b5f7ff; + color: #00cfe8 !important; + font-weight: 500; } + +.overlay-info { + background: #00cfe8; + /* The Fallback */ + background: rgba(0, 207, 232, 0.6); } + +.btn-info { + border-color: #00a1b5 !important; + background-color: #00cfe8 !important; + color: #fff; } + .btn-info:hover { + border-color: #00b8cf !important; + color: #fff !important; + box-shadow: 0 8px 25px -8px #00cfe8; } + .btn-info:focus, .btn-info:active { + color: #fff !important; } + +.btn-flat-info { + background-color: transparent; + color: #00cfe8; } + .btn-flat-info:hover { + color: #00cfe8; + background-color: rgba(0, 207, 232, 0.1); } + .btn-flat-info:active, .btn-flat-info:focus { + background-color: #00cfe8; + color: #fff !important; } + +.btn-relief-info { + background-color: #00cfe8; + box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); + color: #fff; } + .btn-relief-info:hover { + color: #fff; } + .btn-relief-info:active, .btn-relief-info:focus { + outline: none; + transform: translateY(3px); } + +.btn-outline-info { + border: 1px solid #00cfe8; + background-color: transparent; + color: #00cfe8; } + .btn-outline-info:hover { + background-color: rgba(0, 207, 232, 0.08); + color: #00cfe8; } + .btn-outline-info:active { + color: #fff !important; } + +.btn-info ~ .dropdown-menu .dropdown-item.active, +.btn-outline-info ~ .dropdown-menu .dropdown-item.active, +.btn-flat-info ~ .dropdown-menu .dropdown-item.active { + background-color: #00cfe8; + color: #fff; } + .btn-info ~ .dropdown-menu .dropdown-item.active:hover, + .btn-outline-info ~ .dropdown-menu .dropdown-item.active:hover, + .btn-flat-info ~ .dropdown-menu .dropdown-item.active:hover { + color: #fff; } + +.btn-info ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-outline-info ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-flat-info ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover { + color: #00cfe8; } + +.dropdown.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:hover i { + color: #00cfe8; } + +.dropdown.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:active i { + color: #fff; } + +.bullet.bullet-info { + background-color: #00cfe8; } + +.pagination-info .page-item.active .page-link { + background: #00cfe8; + color: #fff; } + .pagination-info .page-item.active .page-link:hover { + color: #fff; } + +.pagination-info .page-item .page-link:hover { + color: #00cfe8; } + +.pagination-info .page-item.prev-item .page-link:hover, .pagination-info .page-item.next-item .page-link:hover { + background: #00cfe8; + color: #fff; } + +.nav-pill-info .nav-item .nav-link.active { + color: #fff; + background-color: #00cfe8 !important; } + +.progress-bar-info { + background-color: rgba(0, 207, 232, 0.1); } + .progress-bar-info .progress-bar { + background-color: #00cfe8; } + +.chip-info { + background-color: #00cfe8 !important; } + .chip-info .chip-body { + color: #fff !important; } + +.divider.divider-info .divider-text:before, .divider.divider-info .divider-text:after { + border-color: #00cfe8 !important; } + +input[type="checkbox"].bg-info + .custom-control-label:before, input[type="radio"].bg-info + .custom-control-label:before { + background-color: #00cfe8 !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #00cfe8 !important; } + +.vs-checkbox-info input:checked ~ .vs-checkbox { + border-color: #00cfe8 !important; } + .vs-checkbox-info input:checked ~ .vs-checkbox .vs-checkbox--check { + background-color: #00cfe8 !important; } + +.vs-checkbox-info input:active:checked + .vs-checkbox .vs-checkbox--check { + background-color: #00cfe8 !important; } + +.custom-switch-info .custom-control-input:checked ~ .custom-control-label::before { + background-color: #00cfe8 !important; + color: #fff; + transition: all .2s ease-out; } + +.vs-radio-info input:checked ~ .vs-radio .vs-radio--circle { + background: #00cfe8 !important; + box-shadow: 0 3px 12px 0 rgba(0, 207, 232, 0.4) !important; } + +.info.darken-1 { + color: #00b8cf !important; } + +.bg-info.bg-darken-1 { + background-color: #00b8cf !important; } + +.btn-info.btn-darken-1 { + border-color: #00a1b5 !important; + background-color: #00b8cf !important; } + .btn-info.btn-darken-1:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-darken-1:focus, .btn-info.btn-darken-1:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-darken-1 { + border-color: #00b8cf !important; + color: #00b8cf !important; } + .btn-outline-info.btn-outline-darken-1:hover { + background-color: #00b8cf !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #00b8cf !important; } + +.border-info.border-darken-1 { + border: 1px solid #00b8cf !important; } + +.border-top-info.border-top-darken-1 { + border-top: 1px solid #00b8cf !important; } + +.border-bottom-info.border-bottom-darken-1 { + border-bottom: 1px solid #00b8cf !important; } + +.border-left-info.border-left-darken-1 { + border-left: 1px solid #00b8cf !important; } + +.border-right-info.border-right-darken-1 { + border-right: 1px solid #00b8cf !important; } + +.overlay-info.overlay-darken-1 { + background: #00b8cf; + /* The Fallback */ + background: rgba(0, 184, 207, 0.6); } + +.info.darken-2 { + color: #00a1b5 !important; } + +.bg-info.bg-darken-2 { + background-color: #00a1b5 !important; } + +.btn-info.btn-darken-2 { + border-color: #00a1b5 !important; + background-color: #00a1b5 !important; } + .btn-info.btn-darken-2:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-darken-2:focus, .btn-info.btn-darken-2:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-darken-2 { + border-color: #00a1b5 !important; + color: #00a1b5 !important; } + .btn-outline-info.btn-outline-darken-2:hover { + background-color: #00a1b5 !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #00a1b5 !important; } + +.border-info.border-darken-2 { + border: 1px solid #00a1b5 !important; } + +.border-top-info.border-top-darken-2 { + border-top: 1px solid #00a1b5 !important; } + +.border-bottom-info.border-bottom-darken-2 { + border-bottom: 1px solid #00a1b5 !important; } + +.border-left-info.border-left-darken-2 { + border-left: 1px solid #00a1b5 !important; } + +.border-right-info.border-right-darken-2 { + border-right: 1px solid #00a1b5 !important; } + +.overlay-info.overlay-darken-2 { + background: #00a1b5; + /* The Fallback */ + background: rgba(0, 161, 181, 0.6); } + +.info.darken-3 { + color: #008b9c !important; } + +.bg-info.bg-darken-3 { + background-color: #008b9c !important; } + +.btn-info.btn-darken-3 { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-darken-3:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-darken-3:focus, .btn-info.btn-darken-3:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-darken-3 { + border-color: #008b9c !important; + color: #008b9c !important; } + .btn-outline-info.btn-outline-darken-3:hover { + background-color: #008b9c !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #008b9c !important; } + +.border-info.border-darken-3 { + border: 1px solid #008b9c !important; } + +.border-top-info.border-top-darken-3 { + border-top: 1px solid #008b9c !important; } + +.border-bottom-info.border-bottom-darken-3 { + border-bottom: 1px solid #008b9c !important; } + +.border-left-info.border-left-darken-3 { + border-left: 1px solid #008b9c !important; } + +.border-right-info.border-right-darken-3 { + border-right: 1px solid #008b9c !important; } + +.overlay-info.overlay-darken-3 { + background: #008b9c; + /* The Fallback */ + background: rgba(0, 139, 156, 0.6); } + +.info.darken-4 { + color: #007482 !important; } + +.bg-info.bg-darken-4 { + background-color: #007482 !important; } + +.btn-info.btn-darken-4 { + border-color: #00a1b5 !important; + background-color: #007482 !important; } + .btn-info.btn-darken-4:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-darken-4:focus, .btn-info.btn-darken-4:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-darken-4 { + border-color: #007482 !important; + color: #007482 !important; } + .btn-outline-info.btn-outline-darken-4:hover { + background-color: #007482 !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #007482 !important; } + +.border-info.border-darken-4 { + border: 1px solid #007482 !important; } + +.border-top-info.border-top-darken-4 { + border-top: 1px solid #007482 !important; } + +.border-bottom-info.border-bottom-darken-4 { + border-bottom: 1px solid #007482 !important; } + +.border-left-info.border-left-darken-4 { + border-left: 1px solid #007482 !important; } + +.border-right-info.border-right-darken-4 { + border-right: 1px solid #007482 !important; } + +.overlay-info.overlay-darken-4 { + background: #007482; + /* The Fallback */ + background: rgba(0, 116, 130, 0.6); } + +.info.accent-1 { + color: #FEFFFF !important; } + +.bg-info.bg-accent-1 { + background-color: #FEFFFF !important; } + +.btn-info.btn-accent-1 { + border-color: #00a1b5 !important; + background-color: #FEFFFF !important; } + .btn-info.btn-accent-1:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-accent-1:focus, .btn-info.btn-accent-1:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-accent-1 { + border-color: #FEFFFF !important; + color: #FEFFFF !important; } + .btn-outline-info.btn-outline-accent-1:hover { + background-color: #FEFFFF !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FEFFFF !important; } + +.border-info.border-accent-1 { + border: 1px solid #FEFFFF !important; } + +.border-top-info.border-top-accent-1 { + border-top: 1px solid #FEFFFF !important; } + +.border-bottom-info.border-bottom-accent-1 { + border-bottom: 1px solid #FEFFFF !important; } + +.border-left-info.border-left-accent-1 { + border-left: 1px solid #FEFFFF !important; } + +.border-right-info.border-right-accent-1 { + border-right: 1px solid #FEFFFF !important; } + +.overlay-info.overlay-accent-1 { + background: #FEFFFF; + /* The Fallback */ + background: rgba(254, 255, 255, 0.6); } + +.info.accent-2 { + color: #CBF5FF !important; } + +.bg-info.bg-accent-2 { + background-color: #CBF5FF !important; } + +.btn-info.btn-accent-2 { + border-color: #00a1b5 !important; + background-color: #CBF5FF !important; } + .btn-info.btn-accent-2:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-accent-2:focus, .btn-info.btn-accent-2:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-accent-2 { + border-color: #CBF5FF !important; + color: #CBF5FF !important; } + .btn-outline-info.btn-outline-accent-2:hover { + background-color: #CBF5FF !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #CBF5FF !important; } + +.border-info.border-accent-2 { + border: 1px solid #CBF5FF !important; } + +.border-top-info.border-top-accent-2 { + border-top: 1px solid #CBF5FF !important; } + +.border-bottom-info.border-bottom-accent-2 { + border-bottom: 1px solid #CBF5FF !important; } + +.border-left-info.border-left-accent-2 { + border-left: 1px solid #CBF5FF !important; } + +.border-right-info.border-right-accent-2 { + border-right: 1px solid #CBF5FF !important; } + +.overlay-info.overlay-accent-2 { + background: #CBF5FF; + /* The Fallback */ + background: rgba(203, 245, 255, 0.6); } + +.info.accent-3 { + color: #98ECFF !important; } + +.bg-info.bg-accent-3 { + background-color: #98ECFF !important; } + +.btn-info.btn-accent-3 { + border-color: #00a1b5 !important; + background-color: #98ECFF !important; } + .btn-info.btn-accent-3:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-accent-3:focus, .btn-info.btn-accent-3:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-accent-3 { + border-color: #98ECFF !important; + color: #98ECFF !important; } + .btn-outline-info.btn-outline-accent-3:hover { + background-color: #98ECFF !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #98ECFF !important; } + +.border-info.border-accent-3 { + border: 1px solid #98ECFF !important; } + +.border-top-info.border-top-accent-3 { + border-top: 1px solid #98ECFF !important; } + +.border-bottom-info.border-bottom-accent-3 { + border-bottom: 1px solid #98ECFF !important; } + +.border-left-info.border-left-accent-3 { + border-left: 1px solid #98ECFF !important; } + +.border-right-info.border-right-accent-3 { + border-right: 1px solid #98ECFF !important; } + +.overlay-info.overlay-accent-3 { + background: #98ECFF; + /* The Fallback */ + background: rgba(152, 236, 255, 0.6); } + +.info.accent-4 { + color: #7FE7FF !important; } + +.bg-info.bg-accent-4 { + background-color: #7FE7FF !important; } + +.btn-info.btn-accent-4 { + border-color: #00a1b5 !important; + background-color: #7FE7FF !important; } + .btn-info.btn-accent-4:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-accent-4:focus, .btn-info.btn-accent-4:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-accent-4 { + border-color: #7FE7FF !important; + color: #7FE7FF !important; } + .btn-outline-info.btn-outline-accent-4:hover { + background-color: #7FE7FF !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #7FE7FF !important; } + +.border-info.border-accent-4 { + border: 1px solid #7FE7FF !important; } + +.border-top-info.border-top-accent-4 { + border-top: 1px solid #7FE7FF !important; } + +.border-bottom-info.border-bottom-accent-4 { + border-bottom: 1px solid #7FE7FF !important; } + +.border-left-info.border-left-accent-4 { + border-left: 1px solid #7FE7FF !important; } + +.border-right-info.border-right-accent-4 { + border-right: 1px solid #7FE7FF !important; } + +.overlay-info.overlay-accent-4 { + background: #7FE7FF; + /* The Fallback */ + background: rgba(127, 231, 255, 0.6); } + +.info.gradient-bg { + color: #640064 !important; } + +.bg-info.bg-gradient-bg { + background-color: #640064 !important; } + +.btn-info.btn-gradient-bg { + border-color: #00a1b5 !important; + background-color: #640064 !important; } + .btn-info.btn-gradient-bg:hover { + border-color: #00a1b5 !important; + background-color: #008b9c !important; } + .btn-info.btn-gradient-bg:focus, .btn-info.btn-gradient-bg:active { + border-color: #008b9c !important; + background-color: #007482 !important; } + +.btn-outline-info.btn-outline-gradient-bg { + border-color: #640064 !important; + color: #640064 !important; } + .btn-outline-info.btn-outline-gradient-bg:hover { + background-color: #640064 !important; } + +input:focus ~ .bg-info { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #640064 !important; } + +.border-info.border-gradient-bg { + border: 1px solid #640064 !important; } + +.border-top-info.border-top-gradient-bg { + border-top: 1px solid #640064 !important; } + +.border-bottom-info.border-bottom-gradient-bg { + border-bottom: 1px solid #640064 !important; } + +.border-left-info.border-left-gradient-bg { + border-left: 1px solid #640064 !important; } + +.border-right-info.border-right-gradient-bg { + border-right: 1px solid #640064 !important; } + +.overlay-info.overlay-gradient-bg { + background: #640064; + /* The Fallback */ + background: rgba(100, 0, 100, 0.6); } + +.warning.gradient-light { + color: #fff487 !important; } + +.bg-warning.bg-gradient-light { + background-color: #fff487 !important; } + +.btn-warning.btn-gradient-light { + border-color: #ff8510 !important; + background-color: #fff487 !important; } + .btn-warning.btn-gradient-light:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-gradient-light:focus, .btn-warning.btn-gradient-light:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-gradient-light { + border-color: #fff487 !important; + color: #fff487 !important; } + .btn-outline-warning.btn-outline-gradient-light:hover { + background-color: #fff487 !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #fff487 !important; } + +.border-warning.border-gradient-light { + border: 1px solid #fff487 !important; } + +.border-top-warning.border-top-gradient-light { + border-top: 1px solid #fff487 !important; } + +.border-bottom-warning.border-bottom-gradient-light { + border-bottom: 1px solid #fff487 !important; } + +.border-left-warning.border-left-gradient-light { + border-left: 1px solid #fff487 !important; } + +.border-right-warning.border-right-gradient-light { + border-right: 1px solid #fff487 !important; } + +.overlay-warning.overlay-gradient-light { + background: #fff487; + /* The Fallback */ + background: rgba(255, 244, 135, 0.6); } + +.warning.light-badge { + color: #ffe0c3 !important; } + +.bg-warning.bg-light-badge { + background-color: #ffe0c3 !important; } + +.btn-warning.btn-light-badge { + border-color: #ff8510 !important; + background-color: #ffe0c3 !important; } + .btn-warning.btn-light-badge:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-light-badge:focus, .btn-warning.btn-light-badge:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-light-badge { + border-color: #ffe0c3 !important; + color: #ffe0c3 !important; } + .btn-outline-warning.btn-outline-light-badge:hover { + background-color: #ffe0c3 !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffe0c3 !important; } + +.border-warning.border-light-badge { + border: 1px solid #ffe0c3 !important; } + +.border-top-warning.border-top-light-badge { + border-top: 1px solid #ffe0c3 !important; } + +.border-bottom-warning.border-bottom-light-badge { + border-bottom: 1px solid #ffe0c3 !important; } + +.border-left-warning.border-left-light-badge { + border-left: 1px solid #ffe0c3 !important; } + +.border-right-warning.border-right-light-badge { + border-right: 1px solid #ffe0c3 !important; } + +.overlay-warning.overlay-light-badge { + background: #ffe0c3; + /* The Fallback */ + background: rgba(255, 224, 195, 0.6); } + +.warning.lighten-5 { + color: #ffe0c3 !important; } + +.bg-warning.bg-lighten-5 { + background-color: #ffe0c3 !important; } + +.btn-warning.btn-lighten-5 { + border-color: #ff8510 !important; + background-color: #ffe0c3 !important; } + .btn-warning.btn-lighten-5:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-lighten-5:focus, .btn-warning.btn-lighten-5:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-lighten-5 { + border-color: #ffe0c3 !important; + color: #ffe0c3 !important; } + .btn-outline-warning.btn-outline-lighten-5:hover { + background-color: #ffe0c3 !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffe0c3 !important; } + +.border-warning.border-lighten-5 { + border: 1px solid #ffe0c3 !important; } + +.border-top-warning.border-top-lighten-5 { + border-top: 1px solid #ffe0c3 !important; } + +.border-bottom-warning.border-bottom-lighten-5 { + border-bottom: 1px solid #ffe0c3 !important; } + +.border-left-warning.border-left-lighten-5 { + border-left: 1px solid #ffe0c3 !important; } + +.border-right-warning.border-right-lighten-5 { + border-right: 1px solid #ffe0c3 !important; } + +.overlay-warning.overlay-lighten-5 { + background: #ffe0c3; + /* The Fallback */ + background: rgba(255, 224, 195, 0.6); } + +.warning.lighten-4 { + color: #ffd3a9 !important; } + +.bg-warning.bg-lighten-4 { + background-color: #ffd3a9 !important; } + +.btn-warning.btn-lighten-4 { + border-color: #ff8510 !important; + background-color: #ffd3a9 !important; } + .btn-warning.btn-lighten-4:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-lighten-4:focus, .btn-warning.btn-lighten-4:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-lighten-4 { + border-color: #ffd3a9 !important; + color: #ffd3a9 !important; } + .btn-outline-warning.btn-outline-lighten-4:hover { + background-color: #ffd3a9 !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffd3a9 !important; } + +.border-warning.border-lighten-4 { + border: 1px solid #ffd3a9 !important; } + +.border-top-warning.border-top-lighten-4 { + border-top: 1px solid #ffd3a9 !important; } + +.border-bottom-warning.border-bottom-lighten-4 { + border-bottom: 1px solid #ffd3a9 !important; } + +.border-left-warning.border-left-lighten-4 { + border-left: 1px solid #ffd3a9 !important; } + +.border-right-warning.border-right-lighten-4 { + border-right: 1px solid #ffd3a9 !important; } + +.overlay-warning.overlay-lighten-4 { + background: #ffd3a9; + /* The Fallback */ + background: rgba(255, 211, 169, 0.6); } + +.warning.lighten-3 { + color: #ffc690 !important; } + +.bg-warning.bg-lighten-3 { + background-color: #ffc690 !important; } + +.btn-warning.btn-lighten-3 { + border-color: #ff8510 !important; + background-color: #ffc690 !important; } + .btn-warning.btn-lighten-3:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-lighten-3:focus, .btn-warning.btn-lighten-3:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-lighten-3 { + border-color: #ffc690 !important; + color: #ffc690 !important; } + .btn-outline-warning.btn-outline-lighten-3:hover { + background-color: #ffc690 !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffc690 !important; } + +.border-warning.border-lighten-3 { + border: 1px solid #ffc690 !important; } + +.border-top-warning.border-top-lighten-3 { + border-top: 1px solid #ffc690 !important; } + +.border-bottom-warning.border-bottom-lighten-3 { + border-bottom: 1px solid #ffc690 !important; } + +.border-left-warning.border-left-lighten-3 { + border-left: 1px solid #ffc690 !important; } + +.border-right-warning.border-right-lighten-3 { + border-right: 1px solid #ffc690 !important; } + +.overlay-warning.overlay-lighten-3 { + background: #ffc690; + /* The Fallback */ + background: rgba(255, 198, 144, 0.6); } + +.warning.lighten-2 { + color: #ffb976 !important; } + +.bg-warning.bg-lighten-2 { + background-color: #ffb976 !important; } + +.btn-warning.btn-lighten-2 { + border-color: #ff8510 !important; + background-color: #ffb976 !important; } + .btn-warning.btn-lighten-2:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-lighten-2:focus, .btn-warning.btn-lighten-2:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-lighten-2 { + border-color: #ffb976 !important; + color: #ffb976 !important; } + .btn-outline-warning.btn-outline-lighten-2:hover { + background-color: #ffb976 !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffb976 !important; } + +.border-warning.border-lighten-2 { + border: 1px solid #ffb976 !important; } + +.border-top-warning.border-top-lighten-2 { + border-top: 1px solid #ffb976 !important; } + +.border-bottom-warning.border-bottom-lighten-2 { + border-bottom: 1px solid #ffb976 !important; } + +.border-left-warning.border-left-lighten-2 { + border-left: 1px solid #ffb976 !important; } + +.border-right-warning.border-right-lighten-2 { + border-right: 1px solid #ffb976 !important; } + +.overlay-warning.overlay-lighten-2 { + background: #ffb976; + /* The Fallback */ + background: rgba(255, 185, 118, 0.6); } + +.warning.lighten-1 { + color: #ffac5d !important; } + +.bg-warning.bg-lighten-1 { + background-color: #ffac5d !important; } + +.btn-warning.btn-lighten-1 { + border-color: #ff8510 !important; + background-color: #ffac5d !important; } + .btn-warning.btn-lighten-1:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-lighten-1:focus, .btn-warning.btn-lighten-1:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-lighten-1 { + border-color: #ffac5d !important; + color: #ffac5d !important; } + .btn-outline-warning.btn-outline-lighten-1:hover { + background-color: #ffac5d !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffac5d !important; } + +.border-warning.border-lighten-1 { + border: 1px solid #ffac5d !important; } + +.border-top-warning.border-top-lighten-1 { + border-top: 1px solid #ffac5d !important; } + +.border-bottom-warning.border-bottom-lighten-1 { + border-bottom: 1px solid #ffac5d !important; } + +.border-left-warning.border-left-lighten-1 { + border-left: 1px solid #ffac5d !important; } + +.border-right-warning.border-right-lighten-1 { + border-right: 1px solid #ffac5d !important; } + +.overlay-warning.overlay-lighten-1 { + background: #ffac5d; + /* The Fallback */ + background: rgba(255, 172, 93, 0.6); } + +.warning { + color: #ff9f43 !important; } + +.bg-warning { + background-color: #ff9f43 !important; } + .bg-warning .card-header, + .bg-warning .card-footer { + background-color: transparent; } + +.alert-warning { + background: rgba(255, 159, 67, 0.2) !important; + color: #ff9f43 !important; } + .alert-warning .alert-heading { + box-shadow: rgba(255, 159, 67, 0.4) 0px 6px 15px -7px; } + .alert-warning .alert-link { + color: #ff922a !important; } + +.bg-rgba-warning { + background: rgba(255, 159, 67, 0.15) !important; } + +.border-warning { + border: 1px solid #ff9f43 !important; } + +.border-top-warning { + border-top: 1px solid #ff9f43; } + +.border-bottom-warning { + border-bottom: 1px solid #ff9f43; } + +.border-left-warning { + border-left: 1px solid #ff9f43; } + +.border-right-warning { + border-right: 1px solid #ff9f43; } + +.bg-warning.badge-glow, +.border-warning.badge-glow, +.badge-warning.badge-glow { + box-shadow: 0px 0px 10px #ff9f43; } + +.badge.badge-warning { + background-color: #ff9f43; } + +.badge.badge-light-warning { + background-color: #ffe0c3; + color: #ff9f43 !important; + font-weight: 500; } + +.overlay-warning { + background: #ff9f43; + /* The Fallback */ + background: rgba(255, 159, 67, 0.6); } + +.btn-warning { + border-color: #ff8510 !important; + background-color: #ff9f43 !important; + color: #fff; } + .btn-warning:hover { + border-color: #ff922a !important; + color: #fff !important; + box-shadow: 0 8px 25px -8px #ff9f43; } + .btn-warning:focus, .btn-warning:active { + color: #fff !important; } + +.btn-flat-warning { + background-color: transparent; + color: #ff9f43; } + .btn-flat-warning:hover { + color: #ff9f43; + background-color: rgba(255, 159, 67, 0.1); } + .btn-flat-warning:active, .btn-flat-warning:focus { + background-color: #ff9f43; + color: #fff !important; } + +.btn-relief-warning { + background-color: #ff9f43; + box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); + color: #fff; } + .btn-relief-warning:hover { + color: #fff; } + .btn-relief-warning:active, .btn-relief-warning:focus { + outline: none; + transform: translateY(3px); } + +.btn-outline-warning { + border: 1px solid #ff9f43; + background-color: transparent; + color: #ff9f43; } + .btn-outline-warning:hover { + background-color: rgba(255, 159, 67, 0.08); + color: #ff9f43; } + .btn-outline-warning:active { + color: #fff !important; } + +.btn-warning ~ .dropdown-menu .dropdown-item.active, +.btn-outline-warning ~ .dropdown-menu .dropdown-item.active, +.btn-flat-warning ~ .dropdown-menu .dropdown-item.active { + background-color: #ff9f43; + color: #fff; } + .btn-warning ~ .dropdown-menu .dropdown-item.active:hover, + .btn-outline-warning ~ .dropdown-menu .dropdown-item.active:hover, + .btn-flat-warning ~ .dropdown-menu .dropdown-item.active:hover { + color: #fff; } + +.btn-warning ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-outline-warning ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-flat-warning ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover { + color: #ff9f43; } + +.dropdown.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:hover i { + color: #ff9f43; } + +.dropdown.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:active i { + color: #fff; } + +.bullet.bullet-warning { + background-color: #ff9f43; } + +.pagination-warning .page-item.active .page-link { + background: #ff9f43; + color: #fff; } + .pagination-warning .page-item.active .page-link:hover { + color: #fff; } + +.pagination-warning .page-item .page-link:hover { + color: #ff9f43; } + +.pagination-warning .page-item.prev-item .page-link:hover, .pagination-warning .page-item.next-item .page-link:hover { + background: #ff9f43; + color: #fff; } + +.nav-pill-warning .nav-item .nav-link.active { + color: #fff; + background-color: #ff9f43 !important; } + +.progress-bar-warning { + background-color: rgba(255, 159, 67, 0.1); } + .progress-bar-warning .progress-bar { + background-color: #ff9f43; } + +.chip-warning { + background-color: #ff9f43 !important; } + .chip-warning .chip-body { + color: #fff !important; } + +.divider.divider-warning .divider-text:before, .divider.divider-warning .divider-text:after { + border-color: #ff9f43 !important; } + +input[type="checkbox"].bg-warning + .custom-control-label:before, input[type="radio"].bg-warning + .custom-control-label:before { + background-color: #ff9f43 !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ff9f43 !important; } + +.vs-checkbox-warning input:checked ~ .vs-checkbox { + border-color: #ff9f43 !important; } + .vs-checkbox-warning input:checked ~ .vs-checkbox .vs-checkbox--check { + background-color: #ff9f43 !important; } + +.vs-checkbox-warning input:active:checked + .vs-checkbox .vs-checkbox--check { + background-color: #ff9f43 !important; } + +.custom-switch-warning .custom-control-input:checked ~ .custom-control-label::before { + background-color: #ff9f43 !important; + color: #fff; + transition: all .2s ease-out; } + +.vs-radio-warning input:checked ~ .vs-radio .vs-radio--circle { + background: #ff9f43 !important; + box-shadow: 0 3px 12px 0 rgba(255, 159, 67, 0.4) !important; } + +.warning.darken-1 { + color: #ff922a !important; } + +.bg-warning.bg-darken-1 { + background-color: #ff922a !important; } + +.btn-warning.btn-darken-1 { + border-color: #ff8510 !important; + background-color: #ff922a !important; } + .btn-warning.btn-darken-1:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-darken-1:focus, .btn-warning.btn-darken-1:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-darken-1 { + border-color: #ff922a !important; + color: #ff922a !important; } + .btn-outline-warning.btn-outline-darken-1:hover { + background-color: #ff922a !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ff922a !important; } + +.border-warning.border-darken-1 { + border: 1px solid #ff922a !important; } + +.border-top-warning.border-top-darken-1 { + border-top: 1px solid #ff922a !important; } + +.border-bottom-warning.border-bottom-darken-1 { + border-bottom: 1px solid #ff922a !important; } + +.border-left-warning.border-left-darken-1 { + border-left: 1px solid #ff922a !important; } + +.border-right-warning.border-right-darken-1 { + border-right: 1px solid #ff922a !important; } + +.overlay-warning.overlay-darken-1 { + background: #ff922a; + /* The Fallback */ + background: rgba(255, 146, 42, 0.6); } + +.warning.darken-2 { + color: #ff8510 !important; } + +.bg-warning.bg-darken-2 { + background-color: #ff8510 !important; } + +.btn-warning.btn-darken-2 { + border-color: #ff8510 !important; + background-color: #ff8510 !important; } + .btn-warning.btn-darken-2:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-darken-2:focus, .btn-warning.btn-darken-2:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-darken-2 { + border-color: #ff8510 !important; + color: #ff8510 !important; } + .btn-outline-warning.btn-outline-darken-2:hover { + background-color: #ff8510 !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ff8510 !important; } + +.border-warning.border-darken-2 { + border: 1px solid #ff8510 !important; } + +.border-top-warning.border-top-darken-2 { + border-top: 1px solid #ff8510 !important; } + +.border-bottom-warning.border-bottom-darken-2 { + border-bottom: 1px solid #ff8510 !important; } + +.border-left-warning.border-left-darken-2 { + border-left: 1px solid #ff8510 !important; } + +.border-right-warning.border-right-darken-2 { + border-right: 1px solid #ff8510 !important; } + +.overlay-warning.overlay-darken-2 { + background: #ff8510; + /* The Fallback */ + background: rgba(255, 133, 16, 0.6); } + +.warning.darken-3 { + color: #f67800 !important; } + +.bg-warning.bg-darken-3 { + background-color: #f67800 !important; } + +.btn-warning.btn-darken-3 { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-darken-3:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-darken-3:focus, .btn-warning.btn-darken-3:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-darken-3 { + border-color: #f67800 !important; + color: #f67800 !important; } + .btn-outline-warning.btn-outline-darken-3:hover { + background-color: #f67800 !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f67800 !important; } + +.border-warning.border-darken-3 { + border: 1px solid #f67800 !important; } + +.border-top-warning.border-top-darken-3 { + border-top: 1px solid #f67800 !important; } + +.border-bottom-warning.border-bottom-darken-3 { + border-bottom: 1px solid #f67800 !important; } + +.border-left-warning.border-left-darken-3 { + border-left: 1px solid #f67800 !important; } + +.border-right-warning.border-right-darken-3 { + border-right: 1px solid #f67800 !important; } + +.overlay-warning.overlay-darken-3 { + background: #f67800; + /* The Fallback */ + background: rgba(246, 120, 0, 0.6); } + +.warning.darken-4 { + color: #dc6c00 !important; } + +.bg-warning.bg-darken-4 { + background-color: #dc6c00 !important; } + +.btn-warning.btn-darken-4 { + border-color: #ff8510 !important; + background-color: #dc6c00 !important; } + .btn-warning.btn-darken-4:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-darken-4:focus, .btn-warning.btn-darken-4:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-darken-4 { + border-color: #dc6c00 !important; + color: #dc6c00 !important; } + .btn-outline-warning.btn-outline-darken-4:hover { + background-color: #dc6c00 !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #dc6c00 !important; } + +.border-warning.border-darken-4 { + border: 1px solid #dc6c00 !important; } + +.border-top-warning.border-top-darken-4 { + border-top: 1px solid #dc6c00 !important; } + +.border-bottom-warning.border-bottom-darken-4 { + border-bottom: 1px solid #dc6c00 !important; } + +.border-left-warning.border-left-darken-4 { + border-left: 1px solid #dc6c00 !important; } + +.border-right-warning.border-right-darken-4 { + border-right: 1px solid #dc6c00 !important; } + +.overlay-warning.overlay-darken-4 { + background: #dc6c00; + /* The Fallback */ + background: rgba(220, 108, 0, 0.6); } + +.warning.accent-1 { + color: #FFF5EF !important; } + +.bg-warning.bg-accent-1 { + background-color: #FFF5EF !important; } + +.btn-warning.btn-accent-1 { + border-color: #ff8510 !important; + background-color: #FFF5EF !important; } + .btn-warning.btn-accent-1:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-accent-1:focus, .btn-warning.btn-accent-1:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-accent-1 { + border-color: #FFF5EF !important; + color: #FFF5EF !important; } + .btn-outline-warning.btn-outline-accent-1:hover { + background-color: #FFF5EF !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFF5EF !important; } + +.border-warning.border-accent-1 { + border: 1px solid #FFF5EF !important; } + +.border-top-warning.border-top-accent-1 { + border-top: 1px solid #FFF5EF !important; } + +.border-bottom-warning.border-bottom-accent-1 { + border-bottom: 1px solid #FFF5EF !important; } + +.border-left-warning.border-left-accent-1 { + border-left: 1px solid #FFF5EF !important; } + +.border-right-warning.border-right-accent-1 { + border-right: 1px solid #FFF5EF !important; } + +.overlay-warning.overlay-accent-1 { + background: #FFF5EF; + /* The Fallback */ + background: rgba(255, 245, 239, 0.6); } + +.warning.accent-2 { + color: #FFE5D8 !important; } + +.bg-warning.bg-accent-2 { + background-color: #FFE5D8 !important; } + +.btn-warning.btn-accent-2 { + border-color: #ff8510 !important; + background-color: #FFE5D8 !important; } + .btn-warning.btn-accent-2:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-accent-2:focus, .btn-warning.btn-accent-2:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-accent-2 { + border-color: #FFE5D8 !important; + color: #FFE5D8 !important; } + .btn-outline-warning.btn-outline-accent-2:hover { + background-color: #FFE5D8 !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFE5D8 !important; } + +.border-warning.border-accent-2 { + border: 1px solid #FFE5D8 !important; } + +.border-top-warning.border-top-accent-2 { + border-top: 1px solid #FFE5D8 !important; } + +.border-bottom-warning.border-bottom-accent-2 { + border-bottom: 1px solid #FFE5D8 !important; } + +.border-left-warning.border-left-accent-2 { + border-left: 1px solid #FFE5D8 !important; } + +.border-right-warning.border-right-accent-2 { + border-right: 1px solid #FFE5D8 !important; } + +.overlay-warning.overlay-accent-2 { + background: #FFE5D8; + /* The Fallback */ + background: rgba(255, 229, 216, 0.6); } + +.warning.accent-3 { + color: #FFF6F3 !important; } + +.bg-warning.bg-accent-3 { + background-color: #FFF6F3 !important; } + +.btn-warning.btn-accent-3 { + border-color: #ff8510 !important; + background-color: #FFF6F3 !important; } + .btn-warning.btn-accent-3:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-accent-3:focus, .btn-warning.btn-accent-3:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-accent-3 { + border-color: #FFF6F3 !important; + color: #FFF6F3 !important; } + .btn-outline-warning.btn-outline-accent-3:hover { + background-color: #FFF6F3 !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFF6F3 !important; } + +.border-warning.border-accent-3 { + border: 1px solid #FFF6F3 !important; } + +.border-top-warning.border-top-accent-3 { + border-top: 1px solid #FFF6F3 !important; } + +.border-bottom-warning.border-bottom-accent-3 { + border-bottom: 1px solid #FFF6F3 !important; } + +.border-left-warning.border-left-accent-3 { + border-left: 1px solid #FFF6F3 !important; } + +.border-right-warning.border-right-accent-3 { + border-right: 1px solid #FFF6F3 !important; } + +.overlay-warning.overlay-accent-3 { + background: #FFF6F3; + /* The Fallback */ + background: rgba(255, 246, 243, 0.6); } + +.warning.accent-4 { + color: #FFE3DA !important; } + +.bg-warning.bg-accent-4 { + background-color: #FFE3DA !important; } + +.btn-warning.btn-accent-4 { + border-color: #ff8510 !important; + background-color: #FFE3DA !important; } + .btn-warning.btn-accent-4:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-accent-4:focus, .btn-warning.btn-accent-4:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-accent-4 { + border-color: #FFE3DA !important; + color: #FFE3DA !important; } + .btn-outline-warning.btn-outline-accent-4:hover { + background-color: #FFE3DA !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFE3DA !important; } + +.border-warning.border-accent-4 { + border: 1px solid #FFE3DA !important; } + +.border-top-warning.border-top-accent-4 { + border-top: 1px solid #FFE3DA !important; } + +.border-bottom-warning.border-bottom-accent-4 { + border-bottom: 1px solid #FFE3DA !important; } + +.border-left-warning.border-left-accent-4 { + border-left: 1px solid #FFE3DA !important; } + +.border-right-warning.border-right-accent-4 { + border-right: 1px solid #FFE3DA !important; } + +.overlay-warning.overlay-accent-4 { + background: #FFE3DA; + /* The Fallback */ + background: rgba(255, 227, 218, 0.6); } + +.warning.gradient-bg { + color: #fafafa !important; } + +.bg-warning.bg-gradient-bg { + background-color: #fafafa !important; } + +.btn-warning.btn-gradient-bg { + border-color: #ff8510 !important; + background-color: #fafafa !important; } + .btn-warning.btn-gradient-bg:hover { + border-color: #ff8510 !important; + background-color: #f67800 !important; } + .btn-warning.btn-gradient-bg:focus, .btn-warning.btn-gradient-bg:active { + border-color: #f67800 !important; + background-color: #dc6c00 !important; } + +.btn-outline-warning.btn-outline-gradient-bg { + border-color: #fafafa !important; + color: #fafafa !important; } + .btn-outline-warning.btn-outline-gradient-bg:hover { + background-color: #fafafa !important; } + +input:focus ~ .bg-warning { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #fafafa !important; } + +.border-warning.border-gradient-bg { + border: 1px solid #fafafa !important; } + +.border-top-warning.border-top-gradient-bg { + border-top: 1px solid #fafafa !important; } + +.border-bottom-warning.border-bottom-gradient-bg { + border-bottom: 1px solid #fafafa !important; } + +.border-left-warning.border-left-gradient-bg { + border-left: 1px solid #fafafa !important; } + +.border-right-warning.border-right-gradient-bg { + border-right: 1px solid #fafafa !important; } + +.overlay-warning.overlay-gradient-bg { + background: #fafafa; + /* The Fallback */ + background: rgba(250, 250, 250, 0.6); } + +.danger.gradient-light { + color: #f9b789 !important; } + +.bg-danger.bg-gradient-light { + background-color: #f9b789 !important; } + +.btn-danger.btn-gradient-light { + border-color: #e42728 !important; + background-color: #f9b789 !important; } + .btn-danger.btn-gradient-light:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-gradient-light:focus, .btn-danger.btn-gradient-light:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-gradient-light { + border-color: #f9b789 !important; + color: #f9b789 !important; } + .btn-outline-danger.btn-outline-gradient-light:hover { + background-color: #f9b789 !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f9b789 !important; } + +.border-danger.border-gradient-light { + border: 1px solid #f9b789 !important; } + +.border-top-danger.border-top-gradient-light { + border-top: 1px solid #f9b789 !important; } + +.border-bottom-danger.border-bottom-gradient-light { + border-bottom: 1px solid #f9b789 !important; } + +.border-left-danger.border-left-gradient-light { + border-left: 1px solid #f9b789 !important; } + +.border-right-danger.border-right-gradient-light { + border-right: 1px solid #f9b789 !important; } + +.overlay-danger.overlay-gradient-light { + background: #f9b789; + /* The Fallback */ + background: rgba(249, 183, 137, 0.6); } + +.danger.light-badge { + color: #fbdcdc !important; } + +.bg-danger.bg-light-badge { + background-color: #fbdcdc !important; } + +.btn-danger.btn-light-badge { + border-color: #e42728 !important; + background-color: #fbdcdc !important; } + .btn-danger.btn-light-badge:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-light-badge:focus, .btn-danger.btn-light-badge:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-light-badge { + border-color: #fbdcdc !important; + color: #fbdcdc !important; } + .btn-outline-danger.btn-outline-light-badge:hover { + background-color: #fbdcdc !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #fbdcdc !important; } + +.border-danger.border-light-badge { + border: 1px solid #fbdcdc !important; } + +.border-top-danger.border-top-light-badge { + border-top: 1px solid #fbdcdc !important; } + +.border-bottom-danger.border-bottom-light-badge { + border-bottom: 1px solid #fbdcdc !important; } + +.border-left-danger.border-left-light-badge { + border-left: 1px solid #fbdcdc !important; } + +.border-right-danger.border-right-light-badge { + border-right: 1px solid #fbdcdc !important; } + +.overlay-danger.overlay-light-badge { + background: #fbdcdc; + /* The Fallback */ + background: rgba(251, 220, 220, 0.6); } + +.danger.lighten-5 { + color: #f8c6c6 !important; } + +.bg-danger.bg-lighten-5 { + background-color: #f8c6c6 !important; } + +.btn-danger.btn-lighten-5 { + border-color: #e42728 !important; + background-color: #f8c6c6 !important; } + .btn-danger.btn-lighten-5:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-lighten-5:focus, .btn-danger.btn-lighten-5:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-lighten-5 { + border-color: #f8c6c6 !important; + color: #f8c6c6 !important; } + .btn-outline-danger.btn-outline-lighten-5:hover { + background-color: #f8c6c6 !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f8c6c6 !important; } + +.border-danger.border-lighten-5 { + border: 1px solid #f8c6c6 !important; } + +.border-top-danger.border-top-lighten-5 { + border-top: 1px solid #f8c6c6 !important; } + +.border-bottom-danger.border-bottom-lighten-5 { + border-bottom: 1px solid #f8c6c6 !important; } + +.border-left-danger.border-left-lighten-5 { + border-left: 1px solid #f8c6c6 !important; } + +.border-right-danger.border-right-lighten-5 { + border-right: 1px solid #f8c6c6 !important; } + +.overlay-danger.overlay-lighten-5 { + background: #f8c6c6; + /* The Fallback */ + background: rgba(248, 198, 198, 0.6); } + +.danger.lighten-4 { + color: #f5afaf !important; } + +.bg-danger.bg-lighten-4 { + background-color: #f5afaf !important; } + +.btn-danger.btn-lighten-4 { + border-color: #e42728 !important; + background-color: #f5afaf !important; } + .btn-danger.btn-lighten-4:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-lighten-4:focus, .btn-danger.btn-lighten-4:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-lighten-4 { + border-color: #f5afaf !important; + color: #f5afaf !important; } + .btn-outline-danger.btn-outline-lighten-4:hover { + background-color: #f5afaf !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f5afaf !important; } + +.border-danger.border-lighten-4 { + border: 1px solid #f5afaf !important; } + +.border-top-danger.border-top-lighten-4 { + border-top: 1px solid #f5afaf !important; } + +.border-bottom-danger.border-bottom-lighten-4 { + border-bottom: 1px solid #f5afaf !important; } + +.border-left-danger.border-left-lighten-4 { + border-left: 1px solid #f5afaf !important; } + +.border-right-danger.border-right-lighten-4 { + border-right: 1px solid #f5afaf !important; } + +.overlay-danger.overlay-lighten-4 { + background: #f5afaf; + /* The Fallback */ + background: rgba(245, 175, 175, 0.6); } + +.danger.lighten-3 { + color: #f29899 !important; } + +.bg-danger.bg-lighten-3 { + background-color: #f29899 !important; } + +.btn-danger.btn-lighten-3 { + border-color: #e42728 !important; + background-color: #f29899 !important; } + .btn-danger.btn-lighten-3:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-lighten-3:focus, .btn-danger.btn-lighten-3:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-lighten-3 { + border-color: #f29899 !important; + color: #f29899 !important; } + .btn-outline-danger.btn-outline-lighten-3:hover { + background-color: #f29899 !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f29899 !important; } + +.border-danger.border-lighten-3 { + border: 1px solid #f29899 !important; } + +.border-top-danger.border-top-lighten-3 { + border-top: 1px solid #f29899 !important; } + +.border-bottom-danger.border-bottom-lighten-3 { + border-bottom: 1px solid #f29899 !important; } + +.border-left-danger.border-left-lighten-3 { + border-left: 1px solid #f29899 !important; } + +.border-right-danger.border-right-lighten-3 { + border-right: 1px solid #f29899 !important; } + +.overlay-danger.overlay-lighten-3 { + background: #f29899; + /* The Fallback */ + background: rgba(242, 152, 153, 0.6); } + +.danger.lighten-2 { + color: #f08182 !important; } + +.bg-danger.bg-lighten-2 { + background-color: #f08182 !important; } + +.btn-danger.btn-lighten-2 { + border-color: #e42728 !important; + background-color: #f08182 !important; } + .btn-danger.btn-lighten-2:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-lighten-2:focus, .btn-danger.btn-lighten-2:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-lighten-2 { + border-color: #f08182 !important; + color: #f08182 !important; } + .btn-outline-danger.btn-outline-lighten-2:hover { + background-color: #f08182 !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f08182 !important; } + +.border-danger.border-lighten-2 { + border: 1px solid #f08182 !important; } + +.border-top-danger.border-top-lighten-2 { + border-top: 1px solid #f08182 !important; } + +.border-bottom-danger.border-bottom-lighten-2 { + border-bottom: 1px solid #f08182 !important; } + +.border-left-danger.border-left-lighten-2 { + border-left: 1px solid #f08182 !important; } + +.border-right-danger.border-right-lighten-2 { + border-right: 1px solid #f08182 !important; } + +.overlay-danger.overlay-lighten-2 { + background: #f08182; + /* The Fallback */ + background: rgba(240, 129, 130, 0.6); } + +.danger.lighten-1 { + color: #ed6b6c !important; } + +.bg-danger.bg-lighten-1 { + background-color: #ed6b6c !important; } + +.btn-danger.btn-lighten-1 { + border-color: #e42728 !important; + background-color: #ed6b6c !important; } + .btn-danger.btn-lighten-1:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-lighten-1:focus, .btn-danger.btn-lighten-1:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-lighten-1 { + border-color: #ed6b6c !important; + color: #ed6b6c !important; } + .btn-outline-danger.btn-outline-lighten-1:hover { + background-color: #ed6b6c !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ed6b6c !important; } + +.border-danger.border-lighten-1 { + border: 1px solid #ed6b6c !important; } + +.border-top-danger.border-top-lighten-1 { + border-top: 1px solid #ed6b6c !important; } + +.border-bottom-danger.border-bottom-lighten-1 { + border-bottom: 1px solid #ed6b6c !important; } + +.border-left-danger.border-left-lighten-1 { + border-left: 1px solid #ed6b6c !important; } + +.border-right-danger.border-right-lighten-1 { + border-right: 1px solid #ed6b6c !important; } + +.overlay-danger.overlay-lighten-1 { + background: #ed6b6c; + /* The Fallback */ + background: rgba(237, 107, 108, 0.6); } + +.danger { + color: #ea5455 !important; } + +.bg-danger { + background-color: #ea5455 !important; } + .bg-danger .card-header, + .bg-danger .card-footer { + background-color: transparent; } + +.alert-danger { + background: rgba(234, 84, 85, 0.2) !important; + color: #ea5455 !important; } + .alert-danger .alert-heading { + box-shadow: rgba(234, 84, 85, 0.4) 0px 6px 15px -7px; } + .alert-danger .alert-link { + color: #e73d3e !important; } + +.bg-rgba-danger { + background: rgba(234, 84, 85, 0.15) !important; } + +.border-danger { + border: 1px solid #ea5455 !important; } + +.border-top-danger { + border-top: 1px solid #ea5455; } + +.border-bottom-danger { + border-bottom: 1px solid #ea5455; } + +.border-left-danger { + border-left: 1px solid #ea5455; } + +.border-right-danger { + border-right: 1px solid #ea5455; } + +.bg-danger.badge-glow, +.border-danger.badge-glow, +.badge-danger.badge-glow { + box-shadow: 0px 0px 10px #ea5455; } + +.badge.badge-danger { + background-color: #ea5455; } + +.badge.badge-light-danger { + background-color: #fbdcdc; + color: #ea5455 !important; + font-weight: 500; } + +.overlay-danger { + background: #ea5455; + /* The Fallback */ + background: rgba(234, 84, 85, 0.6); } + +.btn-danger { + border-color: #e42728 !important; + background-color: #ea5455 !important; + color: #fff; } + .btn-danger:hover { + border-color: #e73d3e !important; + color: #fff !important; + box-shadow: 0 8px 25px -8px #ea5455; } + .btn-danger:focus, .btn-danger:active { + color: #fff !important; } + +.btn-flat-danger { + background-color: transparent; + color: #ea5455; } + .btn-flat-danger:hover { + color: #ea5455; + background-color: rgba(234, 84, 85, 0.1); } + .btn-flat-danger:active, .btn-flat-danger:focus { + background-color: #ea5455; + color: #fff !important; } + +.btn-relief-danger { + background-color: #ea5455; + box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); + color: #fff; } + .btn-relief-danger:hover { + color: #fff; } + .btn-relief-danger:active, .btn-relief-danger:focus { + outline: none; + transform: translateY(3px); } + +.btn-outline-danger { + border: 1px solid #ea5455; + background-color: transparent; + color: #ea5455; } + .btn-outline-danger:hover { + background-color: rgba(234, 84, 85, 0.08); + color: #ea5455; } + .btn-outline-danger:active { + color: #fff !important; } + +.btn-danger ~ .dropdown-menu .dropdown-item.active, +.btn-outline-danger ~ .dropdown-menu .dropdown-item.active, +.btn-flat-danger ~ .dropdown-menu .dropdown-item.active { + background-color: #ea5455; + color: #fff; } + .btn-danger ~ .dropdown-menu .dropdown-item.active:hover, + .btn-outline-danger ~ .dropdown-menu .dropdown-item.active:hover, + .btn-flat-danger ~ .dropdown-menu .dropdown-item.active:hover { + color: #fff; } + +.btn-danger ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-outline-danger ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover, +.btn-flat-danger ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover { + color: #ea5455; } + +.dropdown.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:hover i, +.dropdown.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:hover i, +.dropup.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:hover i, +.dropright.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:hover i, +.dropleft.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:hover i { + color: #ea5455; } + +.dropdown.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:active i, +.dropdown.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:active i, +.dropup.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:active i, +.dropright.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:active i, +.dropleft.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:active i { + color: #fff; } + +.bullet.bullet-danger { + background-color: #ea5455; } + +.pagination-danger .page-item.active .page-link { + background: #ea5455; + color: #fff; } + .pagination-danger .page-item.active .page-link:hover { + color: #fff; } + +.pagination-danger .page-item .page-link:hover { + color: #ea5455; } + +.pagination-danger .page-item.prev-item .page-link:hover, .pagination-danger .page-item.next-item .page-link:hover { + background: #ea5455; + color: #fff; } + +.nav-pill-danger .nav-item .nav-link.active { + color: #fff; + background-color: #ea5455 !important; } + +.progress-bar-danger { + background-color: rgba(234, 84, 85, 0.1); } + .progress-bar-danger .progress-bar { + background-color: #ea5455; } + +.chip-danger { + background-color: #ea5455 !important; } + .chip-danger .chip-body { + color: #fff !important; } + +.divider.divider-danger .divider-text:before, .divider.divider-danger .divider-text:after { + border-color: #ea5455 !important; } + +input[type="checkbox"].bg-danger + .custom-control-label:before, input[type="radio"].bg-danger + .custom-control-label:before { + background-color: #ea5455 !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ea5455 !important; } + +.vs-checkbox-danger input:checked ~ .vs-checkbox { + border-color: #ea5455 !important; } + .vs-checkbox-danger input:checked ~ .vs-checkbox .vs-checkbox--check { + background-color: #ea5455 !important; } + +.vs-checkbox-danger input:active:checked + .vs-checkbox .vs-checkbox--check { + background-color: #ea5455 !important; } + +.custom-switch-danger .custom-control-input:checked ~ .custom-control-label::before { + background-color: #ea5455 !important; + color: #fff; + transition: all .2s ease-out; } + +.vs-radio-danger input:checked ~ .vs-radio .vs-radio--circle { + background: #ea5455 !important; + box-shadow: 0 3px 12px 0 rgba(234, 84, 85, 0.4) !important; } + +.danger.darken-1 { + color: #e73d3e !important; } + +.bg-danger.bg-darken-1 { + background-color: #e73d3e !important; } + +.btn-danger.btn-darken-1 { + border-color: #e42728 !important; + background-color: #e73d3e !important; } + .btn-danger.btn-darken-1:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-darken-1:focus, .btn-danger.btn-darken-1:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-darken-1 { + border-color: #e73d3e !important; + color: #e73d3e !important; } + .btn-outline-danger.btn-outline-darken-1:hover { + background-color: #e73d3e !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #e73d3e !important; } + +.border-danger.border-darken-1 { + border: 1px solid #e73d3e !important; } + +.border-top-danger.border-top-darken-1 { + border-top: 1px solid #e73d3e !important; } + +.border-bottom-danger.border-bottom-darken-1 { + border-bottom: 1px solid #e73d3e !important; } + +.border-left-danger.border-left-darken-1 { + border-left: 1px solid #e73d3e !important; } + +.border-right-danger.border-right-darken-1 { + border-right: 1px solid #e73d3e !important; } + +.overlay-danger.overlay-darken-1 { + background: #e73d3e; + /* The Fallback */ + background: rgba(231, 61, 62, 0.6); } + +.danger.darken-2 { + color: #e42728 !important; } + +.bg-danger.bg-darken-2 { + background-color: #e42728 !important; } + +.btn-danger.btn-darken-2 { + border-color: #e42728 !important; + background-color: #e42728 !important; } + .btn-danger.btn-darken-2:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-darken-2:focus, .btn-danger.btn-darken-2:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-darken-2 { + border-color: #e42728 !important; + color: #e42728 !important; } + .btn-outline-danger.btn-outline-darken-2:hover { + background-color: #e42728 !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #e42728 !important; } + +.border-danger.border-darken-2 { + border: 1px solid #e42728 !important; } + +.border-top-danger.border-top-darken-2 { + border-top: 1px solid #e42728 !important; } + +.border-bottom-danger.border-bottom-darken-2 { + border-bottom: 1px solid #e42728 !important; } + +.border-left-danger.border-left-darken-2 { + border-left: 1px solid #e42728 !important; } + +.border-right-danger.border-right-darken-2 { + border-right: 1px solid #e42728 !important; } + +.overlay-danger.overlay-darken-2 { + background: #e42728; + /* The Fallback */ + background: rgba(228, 39, 40, 0.6); } + +.danger.darken-3 { + color: #d71a1c !important; } + +.bg-danger.bg-darken-3 { + background-color: #d71a1c !important; } + +.btn-danger.btn-darken-3 { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-darken-3:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-darken-3:focus, .btn-danger.btn-darken-3:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-darken-3 { + border-color: #d71a1c !important; + color: #d71a1c !important; } + .btn-outline-danger.btn-outline-darken-3:hover { + background-color: #d71a1c !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #d71a1c !important; } + +.border-danger.border-darken-3 { + border: 1px solid #d71a1c !important; } + +.border-top-danger.border-top-darken-3 { + border-top: 1px solid #d71a1c !important; } + +.border-bottom-danger.border-bottom-darken-3 { + border-bottom: 1px solid #d71a1c !important; } + +.border-left-danger.border-left-darken-3 { + border-left: 1px solid #d71a1c !important; } + +.border-right-danger.border-right-darken-3 { + border-right: 1px solid #d71a1c !important; } + +.overlay-danger.overlay-darken-3 { + background: #d71a1c; + /* The Fallback */ + background: rgba(215, 26, 28, 0.6); } + +.danger.darken-4 { + color: #c01819 !important; } + +.bg-danger.bg-darken-4 { + background-color: #c01819 !important; } + +.btn-danger.btn-darken-4 { + border-color: #e42728 !important; + background-color: #c01819 !important; } + .btn-danger.btn-darken-4:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-darken-4:focus, .btn-danger.btn-darken-4:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-darken-4 { + border-color: #c01819 !important; + color: #c01819 !important; } + .btn-outline-danger.btn-outline-darken-4:hover { + background-color: #c01819 !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #c01819 !important; } + +.border-danger.border-darken-4 { + border: 1px solid #c01819 !important; } + +.border-top-danger.border-top-darken-4 { + border-top: 1px solid #c01819 !important; } + +.border-bottom-danger.border-bottom-darken-4 { + border-bottom: 1px solid #c01819 !important; } + +.border-left-danger.border-left-darken-4 { + border-left: 1px solid #c01819 !important; } + +.border-right-danger.border-right-darken-4 { + border-right: 1px solid #c01819 !important; } + +.overlay-danger.overlay-darken-4 { + background: #c01819; + /* The Fallback */ + background: rgba(192, 24, 25, 0.6); } + +.danger.accent-1 { + color: #FFEEF1 !important; } + +.bg-danger.bg-accent-1 { + background-color: #FFEEF1 !important; } + +.btn-danger.btn-accent-1 { + border-color: #e42728 !important; + background-color: #FFEEF1 !important; } + .btn-danger.btn-accent-1:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-accent-1:focus, .btn-danger.btn-accent-1:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-accent-1 { + border-color: #FFEEF1 !important; + color: #FFEEF1 !important; } + .btn-outline-danger.btn-outline-accent-1:hover { + background-color: #FFEEF1 !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFEEF1 !important; } + +.border-danger.border-accent-1 { + border: 1px solid #FFEEF1 !important; } + +.border-top-danger.border-top-accent-1 { + border-top: 1px solid #FFEEF1 !important; } + +.border-bottom-danger.border-bottom-accent-1 { + border-bottom: 1px solid #FFEEF1 !important; } + +.border-left-danger.border-left-accent-1 { + border-left: 1px solid #FFEEF1 !important; } + +.border-right-danger.border-right-accent-1 { + border-right: 1px solid #FFEEF1 !important; } + +.overlay-danger.overlay-accent-1 { + background: #FFEEF1; + /* The Fallback */ + background: rgba(255, 238, 241, 0.6); } + +.danger.accent-2 { + color: #FFD6DB !important; } + +.bg-danger.bg-accent-2 { + background-color: #FFD6DB !important; } + +.btn-danger.btn-accent-2 { + border-color: #e42728 !important; + background-color: #FFD6DB !important; } + .btn-danger.btn-accent-2:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-accent-2:focus, .btn-danger.btn-accent-2:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-accent-2 { + border-color: #FFD6DB !important; + color: #FFD6DB !important; } + .btn-outline-danger.btn-outline-accent-2:hover { + background-color: #FFD6DB !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFD6DB !important; } + +.border-danger.border-accent-2 { + border: 1px solid #FFD6DB !important; } + +.border-top-danger.border-top-accent-2 { + border-top: 1px solid #FFD6DB !important; } + +.border-bottom-danger.border-bottom-accent-2 { + border-bottom: 1px solid #FFD6DB !important; } + +.border-left-danger.border-left-accent-2 { + border-left: 1px solid #FFD6DB !important; } + +.border-right-danger.border-right-accent-2 { + border-right: 1px solid #FFD6DB !important; } + +.overlay-danger.overlay-accent-2 { + background: #FFD6DB; + /* The Fallback */ + background: rgba(255, 214, 219, 0.6); } + +.danger.accent-3 { + color: #FFECEE !important; } + +.bg-danger.bg-accent-3 { + background-color: #FFECEE !important; } + +.btn-danger.btn-accent-3 { + border-color: #e42728 !important; + background-color: #FFECEE !important; } + .btn-danger.btn-accent-3:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-accent-3:focus, .btn-danger.btn-accent-3:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-accent-3 { + border-color: #FFECEE !important; + color: #FFECEE !important; } + .btn-outline-danger.btn-outline-accent-3:hover { + background-color: #FFECEE !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFECEE !important; } + +.border-danger.border-accent-3 { + border: 1px solid #FFECEE !important; } + +.border-top-danger.border-top-accent-3 { + border-top: 1px solid #FFECEE !important; } + +.border-bottom-danger.border-bottom-accent-3 { + border-bottom: 1px solid #FFECEE !important; } + +.border-left-danger.border-left-accent-3 { + border-left: 1px solid #FFECEE !important; } + +.border-right-danger.border-right-accent-3 { + border-right: 1px solid #FFECEE !important; } + +.overlay-danger.overlay-accent-3 { + background: #FFECEE; + /* The Fallback */ + background: rgba(255, 236, 238, 0.6); } + +.danger.accent-4 { + color: #FFD3D7 !important; } + +.bg-danger.bg-accent-4 { + background-color: #FFD3D7 !important; } + +.btn-danger.btn-accent-4 { + border-color: #e42728 !important; + background-color: #FFD3D7 !important; } + .btn-danger.btn-accent-4:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-accent-4:focus, .btn-danger.btn-accent-4:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-accent-4 { + border-color: #FFD3D7 !important; + color: #FFD3D7 !important; } + .btn-outline-danger.btn-outline-accent-4:hover { + background-color: #FFD3D7 !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFD3D7 !important; } + +.border-danger.border-accent-4 { + border: 1px solid #FFD3D7 !important; } + +.border-top-danger.border-top-accent-4 { + border-top: 1px solid #FFD3D7 !important; } + +.border-bottom-danger.border-bottom-accent-4 { + border-bottom: 1px solid #FFD3D7 !important; } + +.border-left-danger.border-left-accent-4 { + border-left: 1px solid #FFD3D7 !important; } + +.border-right-danger.border-right-accent-4 { + border-right: 1px solid #FFD3D7 !important; } + +.overlay-danger.overlay-accent-4 { + background: #FFD3D7; + /* The Fallback */ + background: rgba(255, 211, 215, 0.6); } + +.danger.gradient-bg { + color: #640064 !important; } + +.bg-danger.bg-gradient-bg { + background-color: #640064 !important; } + +.btn-danger.btn-gradient-bg { + border-color: #e42728 !important; + background-color: #640064 !important; } + .btn-danger.btn-gradient-bg:hover { + border-color: #e42728 !important; + background-color: #d71a1c !important; } + .btn-danger.btn-gradient-bg:focus, .btn-danger.btn-gradient-bg:active { + border-color: #d71a1c !important; + background-color: #c01819 !important; } + +.btn-outline-danger.btn-outline-gradient-bg { + border-color: #640064 !important; + color: #640064 !important; } + .btn-outline-danger.btn-outline-gradient-bg:hover { + background-color: #640064 !important; } + +input:focus ~ .bg-danger { + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #640064 !important; } + +.border-danger.border-gradient-bg { + border: 1px solid #640064 !important; } + +.border-top-danger.border-top-gradient-bg { + border-top: 1px solid #640064 !important; } + +.border-bottom-danger.border-bottom-gradient-bg { + border-bottom: 1px solid #640064 !important; } + +.border-left-danger.border-left-gradient-bg { + border-left: 1px solid #640064 !important; } + +.border-right-danger.border-right-gradient-bg { + border-right: 1px solid #640064 !important; } + +.overlay-danger.overlay-gradient-bg { + background: #640064; + /* The Fallback */ + background: rgba(100, 0, 100, 0.6); } diff --git a/assets/css/colors.min.css b/assets/css/colors.min.css new file mode 100644 index 0000000..0f6b9ea --- /dev/null +++ b/assets/css/colors.min.css @@ -0,0 +1 @@ +.alert-white,.white{color:#FFF!important}.bg-white{background-color:#FFF!important}.bg-white .card-footer,.bg-white .card-header{background-color:transparent}.alert-white{background:rgba(255,255,255,.2)!important}.alert-white .alert-heading{box-shadow:rgba(255,255,255,.4) 0 6px 15px -7px}.alert-white .alert-link{color:#F2F2F2!important}.bg-rgba-white{background:rgba(255,255,255,.15)!important}.border-white{border:1px solid #FFF!important}.border-top-white{border-top:1px solid #FFF}.border-bottom-white{border-bottom:1px solid #FFF}.border-left-white{border-left:1px solid #FFF}.border-right-white{border-right:1px solid #FFF}.badge-white.badge-glow,.bg-white.badge-glow,.border-white.badge-glow{box-shadow:0 0 10px #FFF}.badge.badge-white{background-color:#FFF}.badge.badge-light-white{color:#FFF!important;font-weight:500}.overlay-white{background:#FFF;background:rgba(255,255,255,.6)}.btn-white{background-color:#FFF!important;color:#FFF}.btn-white:active,.btn-white:focus,.btn-white:hover{color:#FFF!important}.btn-white:hover{box-shadow:0 8px 25px -8px #fff}.btn-flat-white{background-color:transparent;color:#FFF}.btn-flat-white:hover{color:#FFF;background-color:rgba(255,255,255,.1)}.btn-flat-white:active,.btn-flat-white:focus{background-color:#FFF;color:#FFF!important}.btn-relief-white{background-color:#FFF;box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.2);color:#FFF}.btn-relief-white:hover{color:#FFF}.btn-relief-white:active,.btn-relief-white:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn-outline-white{border:1px solid #FFF;background-color:transparent;color:#FFF}.divider.divider-white .divider-text:after,.divider.divider-white .divider-text:before,.vs-checkbox-white input:checked~.vs-checkbox{border-color:#FFF!important}.btn-outline-white:hover{background-color:rgba(255,255,255,.08);color:#FFF}.btn-outline-white:active{color:#FFF!important}.btn-flat-white~.dropdown-menu .dropdown-item.active,.btn-outline-white~.dropdown-menu .dropdown-item.active,.btn-white~.dropdown-menu .dropdown-item.active{background-color:#FFF;color:#FFF}.btn-flat-white~.dropdown-menu .dropdown-item.active:hover,.btn-flat-white~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-outline-white~.dropdown-menu .dropdown-item.active:hover,.btn-outline-white~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-white~.dropdown-menu .dropdown-item.active:hover,.btn-white~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.dropdown.dropdown-icon-wrapper .btn-flat-white~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-flat-white~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-outline-white~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-outline-white~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-white~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-white~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-flat-white~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-flat-white~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-outline-white~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-outline-white~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-white~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-white~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-flat-white~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-flat-white~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-outline-white~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-outline-white~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-white~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-white~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-flat-white~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-flat-white~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-outline-white~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-outline-white~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-white~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-white~.dropdown-menu .dropdown-item:hover i{color:#FFF}.bullet.bullet-white{background-color:#FFF}.pagination-white .page-item.active .page-link{background:#FFF;color:#FFF}.pagination-white .page-item .page-link:hover,.pagination-white .page-item.active .page-link:hover{color:#FFF}.pagination-white .page-item.next-item .page-link:hover,.pagination-white .page-item.prev-item .page-link:hover{background:#FFF;color:#FFF}.nav-pill-white .nav-item .nav-link.active{color:#FFF;background-color:#FFF!important}.progress-bar-white{background-color:rgba(255,255,255,.1)}.progress-bar-white .progress-bar{background-color:#FFF}.chip-white,.vs-checkbox-white input:active:checked+.vs-checkbox .vs-checkbox--check,.vs-checkbox-white input:checked~.vs-checkbox .vs-checkbox--check,input[type=checkbox].bg-white+.custom-control-label:before,input[type=radio].bg-white+.custom-control-label:before{background-color:#FFF!important}.chip-white .chip-body{color:#FFF!important}input:focus~.bg-white{box-shadow:0 0 0 .075rem #FFF,0 0 0 .21rem #FFF!important}.custom-switch-white .custom-control-input:checked~.custom-control-label::before{background-color:#FFF!important;color:#FFF;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.alert-black,.alert-black .alert-link,.black{color:#000!important}.vs-radio-white input:checked~.vs-radio .vs-radio--circle{background:#fff!important;box-shadow:0 3px 12px 0 rgba(255,255,255,.4)!important}.bg-black{background-color:#000!important}.bg-black .card-footer,.bg-black .card-header{background-color:transparent}.alert-black{background:rgba(0,0,0,.2)!important}.alert-black .alert-heading{box-shadow:rgba(0,0,0,.4) 0 6px 15px -7px}.bg-rgba-black{background:rgba(0,0,0,.15)!important}.border-black{border:1px solid #000!important}.border-top-black{border-top:1px solid #000}.border-bottom-black{border-bottom:1px solid #000}.border-left-black{border-left:1px solid #000}.border-right-black{border-right:1px solid #000}.badge-black.badge-glow,.bg-black.badge-glow,.border-black.badge-glow{box-shadow:0 0 10px #000}.badge.badge-black{background-color:#000}.badge.badge-light-black{color:#000!important;font-weight:500}.overlay-black{background:#000;background:rgba(0,0,0,.6)}.btn-black{background-color:#000!important;color:#FFF}.btn-black:active,.btn-black:focus,.btn-black:hover{color:#FFF!important}.btn-black:hover{box-shadow:0 8px 25px -8px #000}.btn-flat-black{background-color:transparent;color:#000}.btn-flat-black:hover{color:#000;background-color:rgba(0,0,0,.1)}.btn-flat-black:active,.btn-flat-black:focus{background-color:#000;color:#FFF!important}.btn-relief-black{background-color:#000;box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.2);color:#FFF}.btn-relief-black:hover{color:#FFF}.btn-relief-black:active,.btn-relief-black:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn-outline-black{border:1px solid #000;background-color:transparent;color:#000}.divider.divider-black .divider-text:after,.divider.divider-black .divider-text:before,.vs-checkbox-black input:checked~.vs-checkbox{border-color:#000!important}.btn-outline-black:hover{background-color:rgba(0,0,0,.08);color:#000}.btn-outline-black:active{color:#FFF!important}.btn-black~.dropdown-menu .dropdown-item.active,.btn-flat-black~.dropdown-menu .dropdown-item.active,.btn-outline-black~.dropdown-menu .dropdown-item.active{background-color:#000;color:#FFF}.btn-black~.dropdown-menu .dropdown-item.active:hover,.btn-flat-black~.dropdown-menu .dropdown-item.active:hover,.btn-outline-black~.dropdown-menu .dropdown-item.active:hover{color:#FFF}.btn-black~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-flat-black~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-outline-black~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.dropdown.dropdown-icon-wrapper .btn-black~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-flat-black~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-outline-black~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-black~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-flat-black~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-outline-black~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-black~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-flat-black~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-outline-black~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-black~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-flat-black~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-outline-black~.dropdown-menu .dropdown-item:hover i{color:#000}.dropdown.dropdown-icon-wrapper .btn-black~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-flat-black~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-outline-black~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-black~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-flat-black~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-outline-black~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-black~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-flat-black~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-outline-black~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-black~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-flat-black~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-outline-black~.dropdown-menu .dropdown-item:active i,.pagination-black .page-item.active .page-link:hover{color:#FFF}.bullet.bullet-black{background-color:#000}.pagination-black .page-item.active .page-link{background:#000;color:#FFF}.pagination-black .page-item .page-link:hover{color:#000}.pagination-black .page-item.next-item .page-link:hover,.pagination-black .page-item.prev-item .page-link:hover{background:#000;color:#FFF}.nav-pill-black .nav-item .nav-link.active{color:#FFF;background-color:#000!important}.progress-bar-black{background-color:rgba(0,0,0,.1)}.progress-bar-black .progress-bar{background-color:#000}.chip-black,.vs-checkbox-black input:active:checked+.vs-checkbox .vs-checkbox--check,.vs-checkbox-black input:checked~.vs-checkbox .vs-checkbox--check,input[type=checkbox].bg-black+.custom-control-label:before,input[type=radio].bg-black+.custom-control-label:before{background-color:#000!important}.chip-black .chip-body{color:#FFF!important}input:focus~.bg-black{box-shadow:0 0 0 .075rem #FFF,0 0 0 .21rem #000!important}.custom-switch-black .custom-control-input:checked~.custom-control-label::before{background-color:#000!important;color:#FFF;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.alert-dark,.dark{color:#1E1E1E!important}.vs-radio-black input:checked~.vs-radio .vs-radio--circle{background:#000!important;box-shadow:0 3px 12px 0 rgba(0,0,0,.4)!important}.bg-dark{background-color:#1E1E1E!important}.bg-dark .card-footer,.bg-dark .card-header{background-color:transparent}.alert-dark{background:rgba(30,30,30,.2)!important}.alert-dark .alert-heading{box-shadow:rgba(30,30,30,.4) 0 6px 15px -7px}.alert-dark .alert-link{color:#111!important}.bg-rgba-dark{background:rgba(30,30,30,.15)!important}.border-dark{border:1px solid #1E1E1E!important}.border-top-dark{border-top:1px solid #1E1E1E}.border-bottom-dark{border-bottom:1px solid #1E1E1E}.border-left-dark{border-left:1px solid #1E1E1E}.border-right-dark{border-right:1px solid #1E1E1E}.badge-dark.badge-glow,.bg-dark.badge-glow,.border-dark.badge-glow{box-shadow:0 0 10px #1E1E1E}.badge.badge-dark{background-color:#1E1E1E}.badge.badge-light-dark{color:#1E1E1E!important;font-weight:500}.overlay-dark{background:#1E1E1E;background:rgba(30,30,30,.6)}.btn-dark{background-color:#1E1E1E!important;color:#FFF}.btn-dark:active,.btn-dark:focus,.btn-dark:hover{color:#FFF!important}.btn-dark:hover{box-shadow:0 8px 25px -8px #1E1E1E}.btn-flat-dark{background-color:transparent;color:#1E1E1E}.btn-flat-dark:hover{color:#1E1E1E;background-color:rgba(30,30,30,.1)}.btn-flat-dark:active,.btn-flat-dark:focus{background-color:#1E1E1E;color:#FFF!important}.btn-relief-dark{background-color:#1E1E1E;box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.2);color:#FFF}.btn-relief-dark:hover{color:#FFF}.btn-relief-dark:active,.btn-relief-dark:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn-outline-dark{border:1px solid #1E1E1E;background-color:transparent;color:#1E1E1E}.divider.divider-dark .divider-text:after,.divider.divider-dark .divider-text:before,.vs-checkbox-dark input:checked~.vs-checkbox{border-color:#1E1E1E!important}.btn-outline-dark:hover{background-color:rgba(30,30,30,.08);color:#1E1E1E}.btn-outline-dark:active{color:#FFF!important}.btn-dark~.dropdown-menu .dropdown-item.active,.btn-flat-dark~.dropdown-menu .dropdown-item.active,.btn-outline-dark~.dropdown-menu .dropdown-item.active{background-color:#1E1E1E;color:#FFF}.btn-dark~.dropdown-menu .dropdown-item.active:hover,.btn-flat-dark~.dropdown-menu .dropdown-item.active:hover,.btn-outline-dark~.dropdown-menu .dropdown-item.active:hover{color:#FFF}.btn-dark~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-flat-dark~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-outline-dark~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.dropdown.dropdown-icon-wrapper .btn-dark~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-flat-dark~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-outline-dark~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-dark~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-flat-dark~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-outline-dark~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-dark~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-flat-dark~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-outline-dark~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-dark~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-flat-dark~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-outline-dark~.dropdown-menu .dropdown-item:hover i{color:#1E1E1E}.dropdown.dropdown-icon-wrapper .btn-dark~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-flat-dark~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-outline-dark~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-dark~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-flat-dark~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-outline-dark~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-dark~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-flat-dark~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-outline-dark~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-dark~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-flat-dark~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-outline-dark~.dropdown-menu .dropdown-item:active i,.pagination-dark .page-item.active .page-link:hover{color:#FFF}.bullet.bullet-dark{background-color:#1E1E1E}.pagination-dark .page-item.active .page-link{background:#1E1E1E;color:#FFF}.pagination-dark .page-item .page-link:hover{color:#1E1E1E}.pagination-dark .page-item.next-item .page-link:hover,.pagination-dark .page-item.prev-item .page-link:hover{background:#1E1E1E;color:#FFF}.nav-pill-dark .nav-item .nav-link.active{color:#FFF;background-color:#1E1E1E!important}.progress-bar-dark{background-color:rgba(30,30,30,.1)}.progress-bar-dark .progress-bar{background-color:#1E1E1E}.chip-dark,.vs-checkbox-dark input:active:checked+.vs-checkbox .vs-checkbox--check,.vs-checkbox-dark input:checked~.vs-checkbox .vs-checkbox--check,input[type=checkbox].bg-dark+.custom-control-label:before,input[type=radio].bg-dark+.custom-control-label:before{background-color:#1E1E1E!important}.chip-dark .chip-body{color:#FFF!important}.custom-switch-dark .custom-control-input:checked~.custom-control-label::before{background-color:#1E1E1E!important;color:#FFF;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.vs-radio-dark input:checked~.vs-radio .vs-radio--circle{background:#1E1E1E!important;box-shadow:0 3px 12px 0 rgba(30,30,30,.4)!important}.bg-dark.bg-gradient-bg,.btn-dark.btn-gradient-bg,.btn-outline-dark.btn-outline-gradient-bg:hover{background-color:#640064!important}.dark.gradient-bg{color:#640064!important}.btn-outline-dark.btn-outline-gradient-bg{border-color:#640064!important;color:#640064!important}.alert-light,.light{color:#BABFC7!important}input:focus~.bg-dark{box-shadow:0 0 0 .075rem #FFF,0 0 0 .21rem #640064!important}.border-dark.border-gradient-bg{border:1px solid #640064!important}.border-top-dark.border-top-gradient-bg{border-top:1px solid #640064!important}.border-bottom-dark.border-bottom-gradient-bg{border-bottom:1px solid #640064!important}.border-left-dark.border-left-gradient-bg{border-left:1px solid #640064!important}.border-right-dark.border-right-gradient-bg{border-right:1px solid #640064!important}.overlay-dark.overlay-gradient-bg{background:#640064;background:rgba(100,0,100,.6)}.bg-light{background-color:#BABFC7!important}.bg-light .card-footer,.bg-light .card-header{background-color:transparent}.alert-light{background:rgba(186,191,199,.2)!important}.alert-light .alert-heading{box-shadow:rgba(186,191,199,.4) 0 6px 15px -7px}.alert-light .alert-link{color:#ACB2BC!important}.bg-rgba-light{background:rgba(186,191,199,.15)!important}.border-light{border:1px solid #BABFC7!important}.border-top-light{border-top:1px solid #BABFC7}.border-bottom-light{border-bottom:1px solid #BABFC7}.border-left-light{border-left:1px solid #BABFC7}.border-right-light{border-right:1px solid #BABFC7}.badge-light.badge-glow,.bg-light.badge-glow,.border-light.badge-glow{box-shadow:0 0 10px #BABFC7}.badge.badge-light{background-color:#BABFC7}.badge.badge-light-light{color:#BABFC7!important;font-weight:500}.overlay-light{background:#BABFC7;background:rgba(186,191,199,.6)}.btn-light{background-color:#BABFC7!important;color:#FFF}.btn-light:active,.btn-light:focus,.btn-light:hover{color:#FFF!important}.btn-light:hover{box-shadow:0 8px 25px -8px #BABFC7}.btn-flat-light{background-color:transparent;color:#BABFC7}.btn-flat-light:hover{color:#BABFC7;background-color:rgba(186,191,199,.1)}.btn-flat-light:active,.btn-flat-light:focus{background-color:#BABFC7;color:#FFF!important}.btn-relief-light{background-color:#BABFC7;box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.2);color:#FFF}.btn-relief-light:hover{color:#FFF}.btn-relief-light:active,.btn-relief-light:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn-outline-light{border:1px solid #BABFC7;background-color:transparent;color:#BABFC7}.divider.divider-light .divider-text:after,.divider.divider-light .divider-text:before,.vs-checkbox-light input:checked~.vs-checkbox{border-color:#BABFC7!important}.btn-outline-light:hover{background-color:rgba(186,191,199,.08);color:#BABFC7}.btn-outline-light:active{color:#FFF!important}.btn-flat-light~.dropdown-menu .dropdown-item.active,.btn-light~.dropdown-menu .dropdown-item.active,.btn-outline-light~.dropdown-menu .dropdown-item.active{background-color:#BABFC7;color:#FFF}.btn-flat-light~.dropdown-menu .dropdown-item.active:hover,.btn-light~.dropdown-menu .dropdown-item.active:hover,.btn-outline-light~.dropdown-menu .dropdown-item.active:hover{color:#FFF}.btn-flat-light~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-light~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-outline-light~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.dropdown.dropdown-icon-wrapper .btn-flat-light~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-light~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-outline-light~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-flat-light~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-light~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-outline-light~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-flat-light~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-light~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-outline-light~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-flat-light~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-light~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-outline-light~.dropdown-menu .dropdown-item:hover i{color:#BABFC7}.dropdown.dropdown-icon-wrapper .btn-flat-light~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-light~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-outline-light~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-flat-light~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-light~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-outline-light~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-flat-light~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-light~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-outline-light~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-flat-light~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-light~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-outline-light~.dropdown-menu .dropdown-item:active i,.pagination-light .page-item.active .page-link:hover{color:#FFF}.bullet.bullet-light{background-color:#BABFC7}.pagination-light .page-item.active .page-link{background:#BABFC7;color:#FFF}.pagination-light .page-item .page-link:hover{color:#BABFC7}.pagination-light .page-item.next-item .page-link:hover,.pagination-light .page-item.prev-item .page-link:hover{background:#BABFC7;color:#FFF}.nav-pill-light .nav-item .nav-link.active{color:#FFF;background-color:#BABFC7!important}.progress-bar-light{background-color:rgba(186,191,199,.1)}.progress-bar-light .progress-bar{background-color:#BABFC7}.chip-light,.vs-checkbox-light input:active:checked+.vs-checkbox .vs-checkbox--check,.vs-checkbox-light input:checked~.vs-checkbox .vs-checkbox--check,input[type=checkbox].bg-light+.custom-control-label:before,input[type=radio].bg-light+.custom-control-label:before{background-color:#BABFC7!important}.chip-light .chip-body{color:#FFF!important}.custom-switch-light .custom-control-input:checked~.custom-control-label::before{background-color:#BABFC7!important;color:#FFF;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.vs-radio-light input:checked~.vs-radio .vs-radio--circle{background:#BABFC7!important;box-shadow:0 3px 12px 0 rgba(186,191,199,.4)!important}.bg-light.bg-gradient-bg,.btn-light.btn-gradient-bg,.btn-outline-light.btn-outline-gradient-bg:hover{background-color:#640064!important}.light.gradient-bg{color:#640064!important}.btn-outline-light.btn-outline-gradient-bg{border-color:#640064!important;color:#640064!important}input:focus~.bg-light{box-shadow:0 0 0 .075rem #FFF,0 0 0 .21rem #640064!important}.border-light.border-gradient-bg{border:1px solid #640064!important}.border-top-light.border-top-gradient-bg{border-top:1px solid #640064!important}.border-bottom-light.border-bottom-gradient-bg{border-bottom:1px solid #640064!important}.border-left-light.border-left-gradient-bg{border-left:1px solid #640064!important}.border-right-light.border-right-gradient-bg{border-right:1px solid #640064!important}.overlay-light.overlay-gradient-bg{background:#640064;background:rgba(100,0,100,.6)}.bg-primary.bg-gradient-light,.btn-primary.btn-gradient-light{background-color:#CE9FFC!important}.primary.gradient-light{color:#CE9FFC!important}.btn-primary.btn-gradient-light{border-color:#4839EB!important}.btn-primary.btn-gradient-light:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-gradient-light:active,.btn-primary.btn-gradient-light:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-gradient-light{border-color:#CE9FFC!important;color:#CE9FFC!important}.btn-outline-primary.btn-outline-lighten-5,.primary.light-badge,.primary.lighten-5{color:#DEDBFB!important}.btn-outline-primary.btn-outline-gradient-light:hover{background-color:#CE9FFC!important}.border-primary.border-gradient-light{border:1px solid #CE9FFC!important}.border-top-primary.border-top-gradient-light{border-top:1px solid #CE9FFC!important}.border-bottom-primary.border-bottom-gradient-light{border-bottom:1px solid #CE9FFC!important}.border-left-primary.border-left-gradient-light{border-left:1px solid #CE9FFC!important}.border-right-primary.border-right-gradient-light{border-right:1px solid #CE9FFC!important}.overlay-primary.overlay-gradient-light{background:#CE9FFC;background:rgba(206,159,252,.6)}.bg-primary.bg-light-badge,.btn-primary.btn-light-badge{background-color:#DEDBFB!important}.btn-primary.btn-light-badge{border-color:#4839EB!important}.btn-primary.btn-light-badge:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-light-badge:active,.btn-primary.btn-light-badge:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-light-badge{border-color:#DEDBFB!important;color:#DEDBFB!important}.btn-outline-primary.btn-outline-light-badge:hover{background-color:#DEDBFB!important}.border-primary.border-light-badge{border:1px solid #DEDBFB!important}.border-top-primary.border-top-light-badge{border-top:1px solid #DEDBFB!important}.border-bottom-primary.border-bottom-light-badge{border-bottom:1px solid #DEDBFB!important}.border-left-primary.border-left-light-badge{border-left:1px solid #DEDBFB!important}.border-right-primary.border-right-light-badge{border-right:1px solid #DEDBFB!important}.overlay-primary.overlay-light-badge{background:#DEDBFB;background:rgba(222,219,251,.6)}.bg-primary.bg-lighten-5,.btn-primary.btn-lighten-5{background-color:#DEDBFB!important}.btn-primary.btn-lighten-5{border-color:#4839EB!important}.btn-primary.btn-lighten-5:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-lighten-5:active,.btn-primary.btn-lighten-5:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-lighten-5{border-color:#DEDBFB!important}.btn-outline-primary.btn-outline-lighten-5:hover{background-color:#DEDBFB!important}.border-primary.border-lighten-5{border:1px solid #DEDBFB!important}.border-top-primary.border-top-lighten-5{border-top:1px solid #DEDBFB!important}.border-bottom-primary.border-bottom-lighten-5{border-bottom:1px solid #DEDBFB!important}.border-left-primary.border-left-lighten-5{border-left:1px solid #DEDBFB!important}.border-right-primary.border-right-lighten-5{border-right:1px solid #DEDBFB!important}.overlay-primary.overlay-lighten-5{background:#DEDBFB;background:rgba(222,219,251,.6)}.bg-primary.bg-lighten-4,.btn-primary.btn-lighten-4{background-color:#C9C4F9!important}.primary.lighten-4{color:#C9C4F9!important}.btn-primary.btn-lighten-4{border-color:#4839EB!important}.btn-primary.btn-lighten-4:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-lighten-4:active,.btn-primary.btn-lighten-4:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-lighten-4{border-color:#C9C4F9!important;color:#C9C4F9!important}.btn-outline-primary.btn-outline-lighten-4:hover{background-color:#C9C4F9!important}.border-primary.border-lighten-4{border:1px solid #C9C4F9!important}.border-top-primary.border-top-lighten-4{border-top:1px solid #C9C4F9!important}.border-bottom-primary.border-bottom-lighten-4{border-bottom:1px solid #C9C4F9!important}.border-left-primary.border-left-lighten-4{border-left:1px solid #C9C4F9!important}.border-right-primary.border-right-lighten-4{border-right:1px solid #C9C4F9!important}.overlay-primary.overlay-lighten-4{background:#C9C4F9;background:rgba(201,196,249,.6)}.bg-primary.bg-lighten-3,.btn-primary.btn-lighten-3{background-color:#B3ADF7!important}.primary.lighten-3{color:#B3ADF7!important}.btn-primary.btn-lighten-3{border-color:#4839EB!important}.btn-primary.btn-lighten-3:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-lighten-3:active,.btn-primary.btn-lighten-3:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-lighten-3{border-color:#B3ADF7!important;color:#B3ADF7!important}.btn-outline-primary.btn-outline-lighten-3:hover{background-color:#B3ADF7!important}.border-primary.border-lighten-3{border:1px solid #B3ADF7!important}.border-top-primary.border-top-lighten-3{border-top:1px solid #B3ADF7!important}.border-bottom-primary.border-bottom-lighten-3{border-bottom:1px solid #B3ADF7!important}.border-left-primary.border-left-lighten-3{border-left:1px solid #B3ADF7!important}.border-right-primary.border-right-lighten-3{border-right:1px solid #B3ADF7!important}.overlay-primary.overlay-lighten-3{background:#B3ADF7;background:rgba(179,173,247,.6)}.bg-primary.bg-lighten-2,.btn-primary.btn-lighten-2{background-color:#9E95F5!important}.primary.lighten-2{color:#9E95F5!important}.btn-primary.btn-lighten-2{border-color:#4839EB!important}.btn-primary.btn-lighten-2:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-lighten-2:active,.btn-primary.btn-lighten-2:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-lighten-2{border-color:#9E95F5!important;color:#9E95F5!important}.btn-outline-primary.btn-outline-lighten-2:hover{background-color:#9E95F5!important}.border-primary.border-lighten-2{border:1px solid #9E95F5!important}.border-top-primary.border-top-lighten-2{border-top:1px solid #9E95F5!important}.border-bottom-primary.border-bottom-lighten-2{border-bottom:1px solid #9E95F5!important}.border-left-primary.border-left-lighten-2{border-left:1px solid #9E95F5!important}.border-right-primary.border-right-lighten-2{border-right:1px solid #9E95F5!important}.overlay-primary.overlay-lighten-2{background:#9E95F5;background:rgba(158,149,245,.6)}.bg-primary.bg-lighten-1,.btn-primary.btn-lighten-1{background-color:#887EF2!important}.primary.lighten-1{color:#887EF2!important}.btn-primary.btn-lighten-1{border-color:#4839EB!important}.btn-primary.btn-lighten-1:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-lighten-1:active,.btn-primary.btn-lighten-1:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-lighten-1{border-color:#887EF2!important;color:#887EF2!important}.alert-primary,.primary{color:#7367F0!important}.btn-outline-primary.btn-outline-lighten-1:hover{background-color:#887EF2!important}.border-primary.border-lighten-1{border:1px solid #887EF2!important}.border-top-primary.border-top-lighten-1{border-top:1px solid #887EF2!important}.border-bottom-primary.border-bottom-lighten-1{border-bottom:1px solid #887EF2!important}.border-left-primary.border-left-lighten-1{border-left:1px solid #887EF2!important}.border-right-primary.border-right-lighten-1{border-right:1px solid #887EF2!important}.overlay-primary.overlay-lighten-1{background:#887EF2;background:rgba(136,126,242,.6)}.bg-primary{background-color:#7367F0!important}.bg-primary .card-footer,.bg-primary .card-header{background-color:transparent}.alert-primary{background:rgba(115,103,240,.2)!important}.alert-primary .alert-heading{box-shadow:rgba(115,103,240,.4) 0 6px 15px -7px}.alert-primary .alert-link{color:#5E50EE!important}.bg-rgba-primary{background:rgba(115,103,240,.15)!important}.border-primary{border:1px solid #7367F0!important}.border-top-primary{border-top:1px solid #7367F0}.border-bottom-primary{border-bottom:1px solid #7367F0}.border-left-primary{border-left:1px solid #7367F0}.border-right-primary{border-right:1px solid #7367F0}.badge-primary.badge-glow,.bg-primary.badge-glow,.border-primary.badge-glow{box-shadow:0 0 10px #7367F0}.badge.badge-primary{background-color:#7367F0}.badge.badge-light-primary{background-color:#DEDBFB;color:#7367F0!important;font-weight:500}.overlay-primary{background:#7367F0;background:rgba(115,103,240,.6)}.btn-primary{border-color:#4839EB!important;background-color:#7367F0!important;color:#FFF}.btn-primary:active,.btn-primary:focus,.btn-primary:hover{color:#FFF!important}.btn-primary:hover{border-color:#5E50EE!important;box-shadow:0 8px 25px -8px #7367F0}.btn-flat-primary{background-color:transparent;color:#7367F0}.btn-flat-primary:hover{color:#7367F0;background-color:rgba(115,103,240,.1)}.btn-flat-primary:active,.btn-flat-primary:focus{background-color:#7367F0;color:#FFF!important}.btn-relief-primary{background-color:#7367F0;box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.2);color:#FFF}.btn-relief-primary:hover{color:#FFF}.btn-relief-primary:active,.btn-relief-primary:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn-outline-primary{border:1px solid #7367F0;background-color:transparent;color:#7367F0}.divider.divider-primary .divider-text:after,.divider.divider-primary .divider-text:before,.vs-checkbox-primary input:checked~.vs-checkbox{border-color:#7367F0!important}.btn-outline-primary:hover{background-color:rgba(115,103,240,.08);color:#7367F0}.btn-outline-primary:active{color:#FFF!important}.btn-flat-primary~.dropdown-menu .dropdown-item.active,.btn-outline-primary~.dropdown-menu .dropdown-item.active,.btn-primary~.dropdown-menu .dropdown-item.active{background-color:#7367F0;color:#FFF}.btn-flat-primary~.dropdown-menu .dropdown-item.active:hover,.btn-outline-primary~.dropdown-menu .dropdown-item.active:hover,.btn-primary~.dropdown-menu .dropdown-item.active:hover{color:#FFF}.btn-flat-primary~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-outline-primary~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-primary~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.dropdown.dropdown-icon-wrapper .btn-flat-primary~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-outline-primary~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-primary~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-flat-primary~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-outline-primary~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-primary~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-flat-primary~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-outline-primary~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-primary~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-flat-primary~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-outline-primary~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-primary~.dropdown-menu .dropdown-item:hover i{color:#7367F0}.dropdown.dropdown-icon-wrapper .btn-flat-primary~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-outline-primary~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-primary~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-flat-primary~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-outline-primary~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-primary~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-flat-primary~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-outline-primary~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-primary~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-flat-primary~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-outline-primary~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-primary~.dropdown-menu .dropdown-item:active i,.pagination-primary .page-item.active .page-link:hover{color:#FFF}.bullet.bullet-primary{background-color:#7367F0}.pagination-primary .page-item.active .page-link{background:#7367F0;color:#FFF}.pagination-primary .page-item .page-link:hover{color:#7367F0}.pagination-primary .page-item.next-item .page-link:hover,.pagination-primary .page-item.prev-item .page-link:hover{background:#7367F0;color:#FFF}.nav-pill-primary .nav-item .nav-link.active{color:#FFF;background-color:#7367F0!important}.progress-bar-primary{background-color:rgba(115,103,240,.1)}.progress-bar-primary .progress-bar{background-color:#7367F0}.chip-primary,.vs-checkbox-primary input:active:checked+.vs-checkbox .vs-checkbox--check,.vs-checkbox-primary input:checked~.vs-checkbox .vs-checkbox--check,input[type=checkbox].bg-primary+.custom-control-label:before,input[type=radio].bg-primary+.custom-control-label:before{background-color:#7367F0!important}.chip-primary .chip-body{color:#FFF!important}.custom-switch-primary .custom-control-input:checked~.custom-control-label::before{background-color:#7367F0!important;color:#FFF;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.vs-radio-primary input:checked~.vs-radio .vs-radio--circle{background:#7367F0!important;box-shadow:0 3px 12px 0 rgba(115,103,240,.4)!important}.bg-primary.bg-darken-1,.btn-primary.btn-darken-1{background-color:#5E50EE!important}.primary.darken-1{color:#5E50EE!important}.btn-primary.btn-darken-1{border-color:#4839EB!important}.btn-primary.btn-darken-1:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-darken-1:active,.btn-primary.btn-darken-1:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-darken-1{border-color:#5E50EE!important;color:#5E50EE!important}.btn-outline-primary.btn-outline-darken-1:hover{background-color:#5E50EE!important}.border-primary.border-darken-1{border:1px solid #5E50EE!important}.border-top-primary.border-top-darken-1{border-top:1px solid #5E50EE!important}.border-bottom-primary.border-bottom-darken-1{border-bottom:1px solid #5E50EE!important}.border-left-primary.border-left-darken-1{border-left:1px solid #5E50EE!important}.border-right-primary.border-right-darken-1{border-right:1px solid #5E50EE!important}.overlay-primary.overlay-darken-1{background:#5E50EE;background:rgba(94,80,238,.6)}.bg-primary.bg-darken-2,.btn-primary.btn-darken-2{background-color:#4839EB!important}.primary.darken-2{color:#4839EB!important}.btn-primary.btn-darken-2{border-color:#4839EB!important}.btn-primary.btn-darken-2:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-darken-2:active,.btn-primary.btn-darken-2:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-darken-2{border-color:#4839EB!important;color:#4839EB!important}.btn-outline-primary.btn-outline-darken-2:hover{background-color:#4839EB!important}.border-primary.border-darken-2{border:1px solid #4839EB!important}.border-top-primary.border-top-darken-2{border-top:1px solid #4839EB!important}.border-bottom-primary.border-bottom-darken-2{border-bottom:1px solid #4839EB!important}.border-left-primary.border-left-darken-2{border-left:1px solid #4839EB!important}.border-right-primary.border-right-darken-2{border-right:1px solid #4839EB!important}.overlay-primary.overlay-darken-2{background:#4839EB;background:rgba(72,57,235,.6)}.primary.darken-3{color:#3321E9!important}.bg-primary.bg-darken-3{background-color:#3321E9!important}.btn-primary.btn-darken-3,.btn-primary.btn-darken-3:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-darken-3:active,.btn-primary.btn-darken-3:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-darken-3{border-color:#3321E9!important;color:#3321E9!important}.btn-outline-primary.btn-outline-darken-3:hover{background-color:#3321E9!important}.border-primary.border-darken-3{border:1px solid #3321E9!important}.border-top-primary.border-top-darken-3{border-top:1px solid #3321E9!important}.border-bottom-primary.border-bottom-darken-3{border-bottom:1px solid #3321E9!important}.border-left-primary.border-left-darken-3{border-left:1px solid #3321E9!important}.border-right-primary.border-right-darken-3{border-right:1px solid #3321E9!important}.overlay-primary.overlay-darken-3{background:#3321E9;background:rgba(51,33,233,.6)}.bg-primary.bg-darken-4,.btn-primary.btn-darken-4{background-color:#2716DB!important}.primary.darken-4{color:#2716DB!important}.btn-primary.btn-darken-4{border-color:#4839EB!important}.btn-primary.btn-darken-4:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-darken-4:active,.btn-primary.btn-darken-4:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-darken-4{border-color:#2716DB!important;color:#2716DB!important}.btn-outline-primary.btn-outline-darken-4:hover{background-color:#2716DB!important}.border-primary.border-darken-4{border:1px solid #2716DB!important}.border-top-primary.border-top-darken-4{border-top:1px solid #2716DB!important}.border-bottom-primary.border-bottom-darken-4{border-bottom:1px solid #2716DB!important}.border-left-primary.border-left-darken-4{border-left:1px solid #2716DB!important}.border-right-primary.border-right-darken-4{border-right:1px solid #2716DB!important}.overlay-primary.overlay-darken-4{background:#2716DB;background:rgba(39,22,219,.6)}.bg-primary.bg-accent-1,.btn-primary.btn-accent-1{background-color:#BDFDFF!important}.primary.accent-1{color:#BDFDFF!important}.btn-primary.btn-accent-1{border-color:#4839EB!important}.btn-primary.btn-accent-1:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-accent-1:active,.btn-primary.btn-accent-1:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-accent-1{border-color:#BDFDFF!important;color:#BDFDFF!important}.btn-outline-primary.btn-outline-accent-1:hover{background-color:#BDFDFF!important}.border-primary.border-accent-1{border:1px solid #BDFDFF!important}.border-top-primary.border-top-accent-1{border-top:1px solid #BDFDFF!important}.border-bottom-primary.border-bottom-accent-1{border-bottom:1px solid #BDFDFF!important}.border-left-primary.border-left-accent-1{border-left:1px solid #BDFDFF!important}.border-right-primary.border-right-accent-1{border-right:1px solid #BDFDFF!important}.overlay-primary.overlay-accent-1{background:#BDFDFF;background:rgba(189,253,255,.6)}.bg-primary.bg-accent-2,.btn-primary.btn-accent-2{background-color:#8AFBFF!important}.primary.accent-2{color:#8AFBFF!important}.btn-primary.btn-accent-2{border-color:#4839EB!important}.btn-primary.btn-accent-2:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-accent-2:active,.btn-primary.btn-accent-2:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-accent-2{border-color:#8AFBFF!important;color:#8AFBFF!important}.btn-outline-primary.btn-outline-accent-2:hover{background-color:#8AFBFF!important}.border-primary.border-accent-2{border:1px solid #8AFBFF!important}.border-top-primary.border-top-accent-2{border-top:1px solid #8AFBFF!important}.border-bottom-primary.border-bottom-accent-2{border-bottom:1px solid #8AFBFF!important}.border-left-primary.border-left-accent-2{border-left:1px solid #8AFBFF!important}.border-right-primary.border-right-accent-2{border-right:1px solid #8AFBFF!important}.overlay-primary.overlay-accent-2{background:#8AFBFF;background:rgba(138,251,255,.6)}.bg-primary.bg-accent-3,.btn-primary.btn-accent-3{background-color:#57FAFF!important}.primary.accent-3{color:#57FAFF!important}.btn-primary.btn-accent-3{border-color:#4839EB!important}.btn-primary.btn-accent-3:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-accent-3:active,.btn-primary.btn-accent-3:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-accent-3{border-color:#57FAFF!important;color:#57FAFF!important}.btn-outline-primary.btn-outline-accent-3:hover{background-color:#57FAFF!important}.border-primary.border-accent-3{border:1px solid #57FAFF!important}.border-top-primary.border-top-accent-3{border-top:1px solid #57FAFF!important}.border-bottom-primary.border-bottom-accent-3{border-bottom:1px solid #57FAFF!important}.border-left-primary.border-left-accent-3{border-left:1px solid #57FAFF!important}.border-right-primary.border-right-accent-3{border-right:1px solid #57FAFF!important}.overlay-primary.overlay-accent-3{background:#57FAFF;background:rgba(87,250,255,.6)}.bg-primary.bg-accent-4,.btn-primary.btn-accent-4{background-color:#3DF9FF!important}.primary.accent-4{color:#3DF9FF!important}.btn-primary.btn-accent-4{border-color:#4839EB!important}.btn-primary.btn-accent-4:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-accent-4:active,.btn-primary.btn-accent-4:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-accent-4{border-color:#3DF9FF!important;color:#3DF9FF!important}.btn-outline-primary.btn-outline-accent-4:hover{background-color:#3DF9FF!important}.border-primary.border-accent-4{border:1px solid #3DF9FF!important}.border-top-primary.border-top-accent-4{border-top:1px solid #3DF9FF!important}.border-bottom-primary.border-bottom-accent-4{border-bottom:1px solid #3DF9FF!important}.border-left-primary.border-left-accent-4{border-left:1px solid #3DF9FF!important}.border-right-primary.border-right-accent-4{border-right:1px solid #3DF9FF!important}.overlay-primary.overlay-accent-4{background:#3DF9FF;background:rgba(61,249,255,.6)}.bg-primary.bg-gradient-bg,.btn-primary.btn-gradient-bg{background-color:#640064!important}.primary.gradient-bg{color:#640064!important}.btn-primary.btn-gradient-bg{border-color:#4839EB!important}.btn-primary.btn-gradient-bg:hover{border-color:#4839EB!important;background-color:#3321E9!important}.btn-primary.btn-gradient-bg:active,.btn-primary.btn-gradient-bg:focus{border-color:#3321E9!important;background-color:#2716DB!important}.btn-outline-primary.btn-outline-gradient-bg{border-color:#640064!important;color:#640064!important}.btn-outline-primary.btn-outline-gradient-bg:hover{background-color:#640064!important}input:focus~.bg-primary{box-shadow:0 0 0 .075rem #FFF,0 0 0 .21rem #640064!important}.border-primary.border-gradient-bg{border:1px solid #640064!important}.border-top-primary.border-top-gradient-bg{border-top:1px solid #640064!important}.border-bottom-primary.border-bottom-gradient-bg{border-bottom:1px solid #640064!important}.border-left-primary.border-left-gradient-bg{border-left:1px solid #640064!important}.border-right-primary.border-right-gradient-bg{border-right:1px solid #640064!important}.overlay-primary.overlay-gradient-bg{background:#640064;background:rgba(100,0,100,.6)}.bg-secondary.bg-gradient-light,.btn-secondary.btn-gradient-light{background-color:#DCDEEC!important}.secondary.gradient-light{color:#DCDEEC!important}.btn-secondary.btn-gradient-light{border-color:#9AA9B7!important}.btn-secondary.btn-gradient-light:hover{border-color:#9AA9B7!important;background-color:#8B9CAC!important}.btn-secondary.btn-gradient-light:active,.btn-secondary.btn-gradient-light:focus{border-color:#8B9CAC!important;background-color:#7D8FA1!important}.btn-outline-secondary.btn-outline-gradient-light{border-color:#DCDEEC!important;color:#DCDEEC!important}.btn-outline-secondary.btn-outline-gradient-light:hover{background-color:#DCDEEC!important}.border-secondary.border-gradient-light{border:1px solid #DCDEEC!important}.border-top-secondary.border-top-gradient-light{border-top:1px solid #DCDEEC!important}.border-bottom-secondary.border-bottom-gradient-light{border-bottom:1px solid #DCDEEC!important}.border-left-secondary.border-left-gradient-light{border-left:1px solid #DCDEEC!important}.border-right-secondary.border-right-gradient-light{border-right:1px solid #DCDEEC!important}.overlay-secondary.overlay-gradient-light{background:#DCDEEC;background:rgba(220,222,236,.6)}.bg-secondary.bg-light-badge,.btn-secondary.btn-light-badge{background-color:#fff!important}.secondary.light-badge{color:#fff!important}.btn-secondary.btn-light-badge{border-color:#9AA9B7!important}.btn-secondary.btn-light-badge:hover{border-color:#9AA9B7!important;background-color:#8B9CAC!important}.btn-secondary.btn-light-badge:active,.btn-secondary.btn-light-badge:focus{border-color:#8B9CAC!important;background-color:#7D8FA1!important}.btn-outline-secondary.btn-outline-light-badge{border-color:#fff!important;color:#fff!important}.btn-outline-secondary.btn-outline-light-badge:hover{background-color:#fff!important}.border-secondary.border-light-badge{border:1px solid #fff!important}.border-top-secondary.border-top-light-badge{border-top:1px solid #fff!important}.border-bottom-secondary.border-bottom-light-badge{border-bottom:1px solid #fff!important}.border-left-secondary.border-left-light-badge{border-left:1px solid #fff!important}.border-right-secondary.border-right-light-badge{border-right:1px solid #fff!important}.overlay-secondary.overlay-light-badge{background:#fff;background:rgba(255,255,255,.6)}.bg-secondary.bg-lighten-5,.btn-secondary.btn-lighten-5{background-color:#fff!important}.secondary.lighten-5{color:#fff!important}.btn-secondary.btn-lighten-5{border-color:#9AA9B7!important}.btn-secondary.btn-lighten-5:hover{border-color:#9AA9B7!important;background-color:#8B9CAC!important}.btn-secondary.btn-lighten-5:active,.btn-secondary.btn-lighten-5:focus{border-color:#8B9CAC!important;background-color:#7D8FA1!important}.btn-outline-secondary.btn-outline-lighten-5{border-color:#fff!important;color:#fff!important}.btn-outline-secondary.btn-outline-lighten-5:hover{background-color:#fff!important}.border-secondary.border-lighten-5{border:1px solid #fff!important}.border-top-secondary.border-top-lighten-5{border-top:1px solid #fff!important}.border-bottom-secondary.border-bottom-lighten-5{border-bottom:1px solid #fff!important}.border-left-secondary.border-left-lighten-5{border-left:1px solid #fff!important}.border-right-secondary.border-right-lighten-5{border-right:1px solid #fff!important}.overlay-secondary.overlay-lighten-5{background:#fff;background:rgba(255,255,255,.6)}.bg-secondary.bg-lighten-4,.btn-secondary.btn-lighten-4{background-color:#F3F5F7!important}.secondary.lighten-4{color:#F3F5F7!important}.btn-secondary.btn-lighten-4{border-color:#9AA9B7!important}.btn-secondary.btn-lighten-4:hover{border-color:#9AA9B7!important;background-color:#8B9CAC!important}.btn-secondary.btn-lighten-4:active,.btn-secondary.btn-lighten-4:focus{border-color:#8B9CAC!important;background-color:#7D8FA1!important}.btn-outline-secondary.btn-outline-lighten-4{border-color:#F3F5F7!important;color:#F3F5F7!important}.btn-outline-secondary.btn-outline-lighten-4:hover{background-color:#F3F5F7!important}.border-secondary.border-lighten-4{border:1px solid #F3F5F7!important}.border-top-secondary.border-top-lighten-4{border-top:1px solid #F3F5F7!important}.border-bottom-secondary.border-bottom-lighten-4{border-bottom:1px solid #F3F5F7!important}.border-left-secondary.border-left-lighten-4{border-left:1px solid #F3F5F7!important}.border-right-secondary.border-right-lighten-4{border-right:1px solid #F3F5F7!important}.overlay-secondary.overlay-lighten-4{background:#F3F5F7;background:rgba(243,245,247,.6)}.bg-secondary.bg-lighten-3,.btn-secondary.btn-lighten-3{background-color:#E5E8EC!important}.secondary.lighten-3{color:#E5E8EC!important}.btn-secondary.btn-lighten-3{border-color:#9AA9B7!important}.btn-secondary.btn-lighten-3:hover{border-color:#9AA9B7!important;background-color:#8B9CAC!important}.btn-secondary.btn-lighten-3:active,.btn-secondary.btn-lighten-3:focus{border-color:#8B9CAC!important;background-color:#7D8FA1!important}.btn-outline-secondary.btn-outline-lighten-3{border-color:#E5E8EC!important;color:#E5E8EC!important}.btn-outline-secondary.btn-outline-lighten-3:hover{background-color:#E5E8EC!important}.border-secondary.border-lighten-3{border:1px solid #E5E8EC!important}.border-top-secondary.border-top-lighten-3{border-top:1px solid #E5E8EC!important}.border-bottom-secondary.border-bottom-lighten-3{border-bottom:1px solid #E5E8EC!important}.border-left-secondary.border-left-lighten-3{border-left:1px solid #E5E8EC!important}.border-right-secondary.border-right-lighten-3{border-right:1px solid #E5E8EC!important}.overlay-secondary.overlay-lighten-3{background:#E5E8EC;background:rgba(229,232,236,.6)}.bg-secondary.bg-lighten-2,.btn-secondary.btn-lighten-2{background-color:#D6DCE1!important}.secondary.lighten-2{color:#D6DCE1!important}.btn-secondary.btn-lighten-2{border-color:#9AA9B7!important}.btn-secondary.btn-lighten-2:hover{border-color:#9AA9B7!important;background-color:#8B9CAC!important}.btn-secondary.btn-lighten-2:active,.btn-secondary.btn-lighten-2:focus{border-color:#8B9CAC!important;background-color:#7D8FA1!important}.btn-outline-secondary.btn-outline-lighten-2{border-color:#D6DCE1!important;color:#D6DCE1!important}.btn-outline-secondary.btn-outline-lighten-2:hover{background-color:#D6DCE1!important}.border-secondary.border-lighten-2{border:1px solid #D6DCE1!important}.border-top-secondary.border-top-lighten-2{border-top:1px solid #D6DCE1!important}.border-bottom-secondary.border-bottom-lighten-2{border-bottom:1px solid #D6DCE1!important}.border-left-secondary.border-left-lighten-2{border-left:1px solid #D6DCE1!important}.border-right-secondary.border-right-lighten-2{border-right:1px solid #D6DCE1!important}.overlay-secondary.overlay-lighten-2{background:#D6DCE1;background:rgba(214,220,225,.6)}.bg-secondary.bg-lighten-1,.btn-secondary.btn-lighten-1{background-color:#C7CFD7!important}.secondary.lighten-1{color:#C7CFD7!important}.btn-secondary.btn-lighten-1{border-color:#9AA9B7!important}.btn-secondary.btn-lighten-1:hover{border-color:#9AA9B7!important;background-color:#8B9CAC!important}.btn-secondary.btn-lighten-1:active,.btn-secondary.btn-lighten-1:focus{border-color:#8B9CAC!important;background-color:#7D8FA1!important}.btn-outline-secondary.btn-outline-lighten-1{border-color:#C7CFD7!important;color:#C7CFD7!important}.alert-secondary,.secondary{color:#B8C2CC!important}.btn-outline-secondary.btn-outline-lighten-1:hover{background-color:#C7CFD7!important}.border-secondary.border-lighten-1{border:1px solid #C7CFD7!important}.border-top-secondary.border-top-lighten-1{border-top:1px solid #C7CFD7!important}.border-bottom-secondary.border-bottom-lighten-1{border-bottom:1px solid #C7CFD7!important}.border-left-secondary.border-left-lighten-1{border-left:1px solid #C7CFD7!important}.border-right-secondary.border-right-lighten-1{border-right:1px solid #C7CFD7!important}.overlay-secondary.overlay-lighten-1{background:#C7CFD7;background:rgba(199,207,215,.6)}.bg-secondary{background-color:#B8C2CC!important}.bg-secondary .card-footer,.bg-secondary .card-header{background-color:transparent}.alert-secondary{background:rgba(184,194,204,.2)!important}.alert-secondary .alert-heading{box-shadow:rgba(184,194,204,.4) 0 6px 15px -7px}.alert-secondary .alert-link{color:#A9B5C1!important}.bg-rgba-secondary{background:rgba(184,194,204,.15)!important}.border-secondary{border:1px solid #B8C2CC!important}.border-top-secondary{border-top:1px solid #B8C2CC}.border-bottom-secondary{border-bottom:1px solid #B8C2CC}.border-left-secondary{border-left:1px solid #B8C2CC}.border-right-secondary{border-right:1px solid #B8C2CC}.badge-secondary.badge-glow,.bg-secondary.badge-glow,.border-secondary.badge-glow{box-shadow:0 0 10px #B8C2CC}.badge.badge-secondary{background-color:#B8C2CC}.badge.badge-light-secondary{background-color:#fff;color:#B8C2CC!important;font-weight:500}.overlay-secondary{background:#B8C2CC;background:rgba(184,194,204,.6)}.btn-secondary{border-color:#9AA9B7!important;background-color:#B8C2CC!important;color:#FFF}.btn-secondary:active,.btn-secondary:focus,.btn-secondary:hover{color:#FFF!important}.btn-secondary:hover{border-color:#A9B5C1!important;box-shadow:0 8px 25px -8px #B8C2CC}.btn-flat-secondary{background-color:transparent;color:#B8C2CC}.btn-flat-secondary:hover{color:#B8C2CC;background-color:rgba(184,194,204,.1)}.btn-flat-secondary:active,.btn-flat-secondary:focus{background-color:#B8C2CC;color:#FFF!important}.btn-relief-secondary{background-color:#B8C2CC;box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.2);color:#FFF}.btn-relief-secondary:hover{color:#FFF}.btn-relief-secondary:active,.btn-relief-secondary:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn-outline-secondary{border:1px solid #B8C2CC;background-color:transparent;color:#B8C2CC}.divider.divider-secondary .divider-text:after,.divider.divider-secondary .divider-text:before,.vs-checkbox-secondary input:checked~.vs-checkbox{border-color:#B8C2CC!important}.btn-outline-secondary:hover{background-color:rgba(184,194,204,.08);color:#B8C2CC}.btn-outline-secondary:active{color:#FFF!important}.btn-flat-secondary~.dropdown-menu .dropdown-item.active,.btn-outline-secondary~.dropdown-menu .dropdown-item.active,.btn-secondary~.dropdown-menu .dropdown-item.active{background-color:#B8C2CC;color:#FFF}.btn-flat-secondary~.dropdown-menu .dropdown-item.active:hover,.btn-outline-secondary~.dropdown-menu .dropdown-item.active:hover,.btn-secondary~.dropdown-menu .dropdown-item.active:hover{color:#FFF}.btn-flat-secondary~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-outline-secondary~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-secondary~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.dropdown.dropdown-icon-wrapper .btn-flat-secondary~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-outline-secondary~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-secondary~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-flat-secondary~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-outline-secondary~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-secondary~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-flat-secondary~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-outline-secondary~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-secondary~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-flat-secondary~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-outline-secondary~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-secondary~.dropdown-menu .dropdown-item:hover i{color:#B8C2CC}.dropdown.dropdown-icon-wrapper .btn-flat-secondary~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-outline-secondary~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-secondary~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-flat-secondary~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-outline-secondary~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-secondary~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-flat-secondary~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-outline-secondary~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-secondary~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-flat-secondary~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-outline-secondary~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-secondary~.dropdown-menu .dropdown-item:active i,.pagination-secondary .page-item.active .page-link:hover{color:#FFF}.bullet.bullet-secondary{background-color:#B8C2CC}.pagination-secondary .page-item.active .page-link{background:#B8C2CC;color:#FFF}.pagination-secondary .page-item .page-link:hover{color:#B8C2CC}.pagination-secondary .page-item.next-item .page-link:hover,.pagination-secondary .page-item.prev-item .page-link:hover{background:#B8C2CC;color:#FFF}.nav-pill-secondary .nav-item .nav-link.active{color:#FFF;background-color:#B8C2CC!important}.progress-bar-secondary{background-color:rgba(184,194,204,.1)}.progress-bar-secondary .progress-bar{background-color:#B8C2CC}.chip-secondary,.vs-checkbox-secondary input:active:checked+.vs-checkbox .vs-checkbox--check,.vs-checkbox-secondary input:checked~.vs-checkbox .vs-checkbox--check,input[type=checkbox].bg-secondary+.custom-control-label:before,input[type=radio].bg-secondary+.custom-control-label:before{background-color:#B8C2CC!important}.chip-secondary .chip-body{color:#FFF!important}.custom-switch-secondary .custom-control-input:checked~.custom-control-label::before{background-color:#B8C2CC!important;color:#FFF;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.vs-radio-secondary input:checked~.vs-radio .vs-radio--circle{background:#B8C2CC!important;box-shadow:0 3px 12px 0 rgba(184,194,204,.4)!important}.bg-secondary.bg-darken-1,.btn-secondary.btn-darken-1{background-color:#A9B5C1!important}.secondary.darken-1{color:#A9B5C1!important}.btn-secondary.btn-darken-1{border-color:#9AA9B7!important}.btn-secondary.btn-darken-1:hover{border-color:#9AA9B7!important;background-color:#8B9CAC!important}.btn-secondary.btn-darken-1:active,.btn-secondary.btn-darken-1:focus{border-color:#8B9CAC!important;background-color:#7D8FA1!important}.btn-outline-secondary.btn-outline-darken-1{border-color:#A9B5C1!important;color:#A9B5C1!important}.btn-outline-secondary.btn-outline-darken-1:hover{background-color:#A9B5C1!important}.border-secondary.border-darken-1{border:1px solid #A9B5C1!important}.border-top-secondary.border-top-darken-1{border-top:1px solid #A9B5C1!important}.border-bottom-secondary.border-bottom-darken-1{border-bottom:1px solid #A9B5C1!important}.border-left-secondary.border-left-darken-1{border-left:1px solid #A9B5C1!important}.border-right-secondary.border-right-darken-1{border-right:1px solid #A9B5C1!important}.overlay-secondary.overlay-darken-1{background:#A9B5C1;background:rgba(169,181,193,.6)}.bg-secondary.bg-darken-2,.btn-secondary.btn-darken-2{background-color:#9AA9B7!important}.secondary.darken-2{color:#9AA9B7!important}.btn-secondary.btn-darken-2{border-color:#9AA9B7!important}.btn-secondary.btn-darken-2:hover{border-color:#9AA9B7!important;background-color:#8B9CAC!important}.btn-secondary.btn-darken-2:active,.btn-secondary.btn-darken-2:focus{border-color:#8B9CAC!important;background-color:#7D8FA1!important}.btn-outline-secondary.btn-outline-darken-2{border-color:#9AA9B7!important;color:#9AA9B7!important}.btn-outline-secondary.btn-outline-darken-2:hover{background-color:#9AA9B7!important}.border-secondary.border-darken-2{border:1px solid #9AA9B7!important}.border-top-secondary.border-top-darken-2{border-top:1px solid #9AA9B7!important}.border-bottom-secondary.border-bottom-darken-2{border-bottom:1px solid #9AA9B7!important}.border-left-secondary.border-left-darken-2{border-left:1px solid #9AA9B7!important}.border-right-secondary.border-right-darken-2{border-right:1px solid #9AA9B7!important}.overlay-secondary.overlay-darken-2{background:#9AA9B7;background:rgba(154,169,183,.6)}.secondary.darken-3{color:#8B9CAC!important}.bg-secondary.bg-darken-3{background-color:#8B9CAC!important}.btn-secondary.btn-darken-3,.btn-secondary.btn-darken-3:hover{border-color:#9AA9B7!important;background-color:#8B9CAC!important}.btn-secondary.btn-darken-3:active,.btn-secondary.btn-darken-3:focus{border-color:#8B9CAC!important;background-color:#7D8FA1!important}.btn-outline-secondary.btn-outline-darken-3{border-color:#8B9CAC!important;color:#8B9CAC!important}.btn-outline-secondary.btn-outline-darken-3:hover{background-color:#8B9CAC!important}.border-secondary.border-darken-3{border:1px solid #8B9CAC!important}.border-top-secondary.border-top-darken-3{border-top:1px solid #8B9CAC!important}.border-bottom-secondary.border-bottom-darken-3{border-bottom:1px solid #8B9CAC!important}.border-left-secondary.border-left-darken-3{border-left:1px solid #8B9CAC!important}.border-right-secondary.border-right-darken-3{border-right:1px solid #8B9CAC!important}.overlay-secondary.overlay-darken-3{background:#8B9CAC;background:rgba(139,156,172,.6)}.bg-secondary.bg-darken-4,.btn-secondary.btn-darken-4{background-color:#7D8FA1!important}.secondary.darken-4{color:#7D8FA1!important}.btn-secondary.btn-darken-4{border-color:#9AA9B7!important}.btn-secondary.btn-darken-4:hover{border-color:#9AA9B7!important;background-color:#8B9CAC!important}.btn-secondary.btn-darken-4:active,.btn-secondary.btn-darken-4:focus{border-color:#8B9CAC!important;background-color:#7D8FA1!important}.btn-outline-secondary.btn-outline-darken-4{border-color:#7D8FA1!important;color:#7D8FA1!important}.btn-outline-secondary.btn-outline-darken-4:hover{background-color:#7D8FA1!important}.border-secondary.border-darken-4{border:1px solid #7D8FA1!important}.border-top-secondary.border-top-darken-4{border-top:1px solid #7D8FA1!important}.border-bottom-secondary.border-bottom-darken-4{border-bottom:1px solid #7D8FA1!important}.border-left-secondary.border-left-darken-4{border-left:1px solid #7D8FA1!important}.border-right-secondary.border-right-darken-4{border-right:1px solid #7D8FA1!important}.overlay-secondary.overlay-darken-4{background:#7D8FA1;background:rgba(125,143,161,.6)}.bg-secondary.bg-gradient-bg,.btn-secondary.btn-gradient-bg{background-color:#640064!important}.secondary.gradient-bg{color:#640064!important}.btn-secondary.btn-gradient-bg{border-color:#9AA9B7!important}.btn-secondary.btn-gradient-bg:hover{border-color:#9AA9B7!important;background-color:#8B9CAC!important}.btn-secondary.btn-gradient-bg:active,.btn-secondary.btn-gradient-bg:focus{border-color:#8B9CAC!important;background-color:#7D8FA1!important}.btn-outline-secondary.btn-outline-gradient-bg{border-color:#640064!important;color:#640064!important}.btn-outline-secondary.btn-outline-gradient-bg:hover{background-color:#640064!important}input:focus~.bg-secondary{box-shadow:0 0 0 .075rem #FFF,0 0 0 .21rem #640064!important}.border-secondary.border-gradient-bg{border:1px solid #640064!important}.border-top-secondary.border-top-gradient-bg{border-top:1px solid #640064!important}.border-bottom-secondary.border-bottom-gradient-bg{border-bottom:1px solid #640064!important}.border-left-secondary.border-left-gradient-bg{border-left:1px solid #640064!important}.border-right-secondary.border-right-gradient-bg{border-right:1px solid #640064!important}.overlay-secondary.overlay-gradient-bg{background:#640064;background:rgba(100,0,100,.6)}.bg-success.bg-gradient-light,.btn-success.btn-gradient-light{background-color:#4AE9D3!important}.success.gradient-light{color:#4AE9D3!important}.btn-success.btn-gradient-light{border-color:#1F9D57!important}.btn-success.btn-gradient-light:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-gradient-light:active,.btn-success.btn-gradient-light:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-gradient-light{border-color:#4AE9D3!important;color:#4AE9D3!important}.btn-outline-success.btn-outline-gradient-light:hover{background-color:#4AE9D3!important}.border-success.border-gradient-light{border:1px solid #4AE9D3!important}.border-top-success.border-top-gradient-light{border-top:1px solid #4AE9D3!important}.border-bottom-success.border-bottom-gradient-light{border-bottom:1px solid #4AE9D3!important}.border-left-success.border-left-gradient-light{border-left:1px solid #4AE9D3!important}.border-right-success.border-right-gradient-light{border-right:1px solid #4AE9D3!important}.overlay-success.overlay-gradient-light{background:#4AE9D3;background:rgba(74,233,211,.6)}.bg-success.bg-light-badge,.btn-success.btn-light-badge{background-color:#C7F4DB!important}.success.light-badge{color:#C7F4DB!important}.btn-success.btn-light-badge{border-color:#1F9D57!important}.btn-success.btn-light-badge:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-light-badge:active,.btn-success.btn-light-badge:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-light-badge{border-color:#C7F4DB!important;color:#C7F4DB!important}.btn-outline-success.btn-outline-light-badge:hover{background-color:#C7F4DB!important}.border-success.border-light-badge{border:1px solid #C7F4DB!important}.border-top-success.border-top-light-badge{border-top:1px solid #C7F4DB!important}.border-bottom-success.border-bottom-light-badge{border-bottom:1px solid #C7F4DB!important}.border-left-success.border-left-light-badge{border-left:1px solid #C7F4DB!important}.border-right-success.border-right-light-badge{border-right:1px solid #C7F4DB!important}.overlay-success.overlay-light-badge{background:#C7F4DB;background:rgba(199,244,219,.6)}.bg-success.bg-lighten-5,.btn-success.btn-lighten-5{background-color:#88E7B2!important}.success.lighten-5{color:#88E7B2!important}.btn-success.btn-lighten-5{border-color:#1F9D57!important}.btn-success.btn-lighten-5:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-lighten-5:active,.btn-success.btn-lighten-5:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-lighten-5{border-color:#88E7B2!important;color:#88E7B2!important}.btn-outline-success.btn-outline-lighten-5:hover{background-color:#88E7B2!important}.border-success.border-lighten-5{border:1px solid #88E7B2!important}.border-top-success.border-top-lighten-5{border-top:1px solid #88E7B2!important}.border-bottom-success.border-bottom-lighten-5{border-bottom:1px solid #88E7B2!important}.border-left-success.border-left-lighten-5{border-left:1px solid #88E7B2!important}.border-right-success.border-right-lighten-5{border-right:1px solid #88E7B2!important}.overlay-success.overlay-lighten-5{background:#88E7B2;background:rgba(136,231,178,.6)}.bg-success.bg-lighten-4,.btn-success.btn-lighten-4{background-color:#72E3A4!important}.success.lighten-4{color:#72E3A4!important}.btn-success.btn-lighten-4{border-color:#1F9D57!important}.btn-success.btn-lighten-4:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-lighten-4:active,.btn-success.btn-lighten-4:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-lighten-4{border-color:#72E3A4!important;color:#72E3A4!important}.btn-outline-success.btn-outline-lighten-4:hover{background-color:#72E3A4!important}.border-success.border-lighten-4{border:1px solid #72E3A4!important}.border-top-success.border-top-lighten-4{border-top:1px solid #72E3A4!important}.border-bottom-success.border-bottom-lighten-4{border-bottom:1px solid #72E3A4!important}.border-left-success.border-left-lighten-4{border-left:1px solid #72E3A4!important}.border-right-success.border-right-lighten-4{border-right:1px solid #72E3A4!important}.overlay-success.overlay-lighten-4{background:#72E3A4;background:rgba(114,227,164,.6)}.bg-success.bg-lighten-3,.btn-success.btn-lighten-3{background-color:#5DDE97!important}.success.lighten-3{color:#5DDE97!important}.btn-success.btn-lighten-3{border-color:#1F9D57!important}.btn-success.btn-lighten-3:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-lighten-3:active,.btn-success.btn-lighten-3:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-lighten-3{border-color:#5DDE97!important;color:#5DDE97!important}.btn-outline-success.btn-outline-lighten-3:hover{background-color:#5DDE97!important}.border-success.border-lighten-3{border:1px solid #5DDE97!important}.border-top-success.border-top-lighten-3{border-top:1px solid #5DDE97!important}.border-bottom-success.border-bottom-lighten-3{border-bottom:1px solid #5DDE97!important}.border-left-success.border-left-lighten-3{border-left:1px solid #5DDE97!important}.border-right-success.border-right-lighten-3{border-right:1px solid #5DDE97!important}.overlay-success.overlay-lighten-3{background:#5DDE97;background:rgba(93,222,151,.6)}.bg-success.bg-lighten-2,.btn-success.btn-lighten-2{background-color:#48DA89!important}.success.lighten-2{color:#48DA89!important}.btn-success.btn-lighten-2{border-color:#1F9D57!important}.btn-success.btn-lighten-2:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-lighten-2:active,.btn-success.btn-lighten-2:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-lighten-2{border-color:#48DA89!important;color:#48DA89!important}.btn-outline-success.btn-outline-lighten-2:hover{background-color:#48DA89!important}.border-success.border-lighten-2{border:1px solid #48DA89!important}.border-top-success.border-top-lighten-2{border-top:1px solid #48DA89!important}.border-bottom-success.border-bottom-lighten-2{border-bottom:1px solid #48DA89!important}.border-left-success.border-left-lighten-2{border-left:1px solid #48DA89!important}.border-right-success.border-right-lighten-2{border-right:1px solid #48DA89!important}.overlay-success.overlay-lighten-2{background:#48DA89;background:rgba(72,218,137,.6)}.bg-success.bg-lighten-1,.btn-success.btn-lighten-1{background-color:#33D67C!important}.success.lighten-1{color:#33D67C!important}.btn-success.btn-lighten-1{border-color:#1F9D57!important}.btn-success.btn-lighten-1:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-lighten-1:active,.btn-success.btn-lighten-1:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-lighten-1{border-color:#33D67C!important;color:#33D67C!important}.alert-success,.success{color:#28C76F!important}.btn-outline-success.btn-outline-lighten-1:hover{background-color:#33D67C!important}.border-success.border-lighten-1{border:1px solid #33D67C!important}.border-top-success.border-top-lighten-1{border-top:1px solid #33D67C!important}.border-bottom-success.border-bottom-lighten-1{border-bottom:1px solid #33D67C!important}.border-left-success.border-left-lighten-1{border-left:1px solid #33D67C!important}.border-right-success.border-right-lighten-1{border-right:1px solid #33D67C!important}.overlay-success.overlay-lighten-1{background:#33D67C;background:rgba(51,214,124,.6)}.bg-success{background-color:#28C76F!important}.bg-success .card-footer,.bg-success .card-header{background-color:transparent}.alert-success{background:rgba(40,199,111,.2)!important}.alert-success .alert-heading{box-shadow:rgba(40,199,111,.4) 0 6px 15px -7px}.alert-success .alert-link{color:#24B263!important}.bg-rgba-success{background:rgba(40,199,111,.15)!important}.border-success{border:1px solid #28C76F!important}.border-top-success{border-top:1px solid #28C76F}.border-bottom-success{border-bottom:1px solid #28C76F}.border-left-success{border-left:1px solid #28C76F}.border-right-success{border-right:1px solid #28C76F}.badge-success.badge-glow,.bg-success.badge-glow,.border-success.badge-glow{box-shadow:0 0 10px #28C76F}.badge.badge-success{background-color:#28C76F}.badge.badge-light-success{background-color:#C7F4DB;color:#28C76F!important;font-weight:500}.overlay-success{background:#28C76F;background:rgba(40,199,111,.6)}.btn-success{border-color:#1F9D57!important;background-color:#28C76F!important;color:#FFF}.btn-success:active,.btn-success:focus,.btn-success:hover{color:#FFF!important}.btn-success:hover{border-color:#24B263!important;box-shadow:0 8px 25px -8px #28C76F}.btn-flat-success{background-color:transparent;color:#28C76F}.btn-flat-success:hover{color:#28C76F;background-color:rgba(40,199,111,.1)}.btn-flat-success:active,.btn-flat-success:focus{background-color:#28C76F;color:#FFF!important}.btn-relief-success{background-color:#28C76F;box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.2);color:#FFF}.btn-relief-success:hover{color:#FFF}.btn-relief-success:active,.btn-relief-success:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn-outline-success{border:1px solid #28C76F;background-color:transparent;color:#28C76F}.divider.divider-success .divider-text:after,.divider.divider-success .divider-text:before,.vs-checkbox-success input:checked~.vs-checkbox{border-color:#28C76F!important}.btn-outline-success:hover{background-color:rgba(40,199,111,.08);color:#28C76F}.btn-outline-success:active{color:#FFF!important}.btn-flat-success~.dropdown-menu .dropdown-item.active,.btn-outline-success~.dropdown-menu .dropdown-item.active,.btn-success~.dropdown-menu .dropdown-item.active{background-color:#28C76F;color:#FFF}.btn-flat-success~.dropdown-menu .dropdown-item.active:hover,.btn-outline-success~.dropdown-menu .dropdown-item.active:hover,.btn-success~.dropdown-menu .dropdown-item.active:hover{color:#FFF}.btn-flat-success~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-outline-success~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-success~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.dropdown.dropdown-icon-wrapper .btn-flat-success~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-outline-success~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-success~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-flat-success~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-outline-success~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-success~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-flat-success~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-outline-success~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-success~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-flat-success~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-outline-success~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-success~.dropdown-menu .dropdown-item:hover i{color:#28C76F}.dropdown.dropdown-icon-wrapper .btn-flat-success~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-outline-success~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-success~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-flat-success~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-outline-success~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-success~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-flat-success~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-outline-success~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-success~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-flat-success~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-outline-success~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-success~.dropdown-menu .dropdown-item:active i,.pagination-success .page-item.active .page-link:hover{color:#FFF}.bullet.bullet-success{background-color:#28C76F}.pagination-success .page-item.active .page-link{background:#28C76F;color:#FFF}.pagination-success .page-item .page-link:hover{color:#28C76F}.pagination-success .page-item.next-item .page-link:hover,.pagination-success .page-item.prev-item .page-link:hover{background:#28C76F;color:#FFF}.nav-pill-success .nav-item .nav-link.active{color:#FFF;background-color:#28C76F!important}.progress-bar-success{background-color:rgba(40,199,111,.1)}.progress-bar-success .progress-bar{background-color:#28C76F}.chip-success,.vs-checkbox-success input:active:checked+.vs-checkbox .vs-checkbox--check,.vs-checkbox-success input:checked~.vs-checkbox .vs-checkbox--check,input[type=checkbox].bg-success+.custom-control-label:before,input[type=radio].bg-success+.custom-control-label:before{background-color:#28C76F!important}.chip-success .chip-body{color:#FFF!important}.custom-switch-success .custom-control-input:checked~.custom-control-label::before{background-color:#28C76F!important;color:#FFF;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.vs-radio-success input:checked~.vs-radio .vs-radio--circle{background:#28C76F!important;box-shadow:0 3px 12px 0 rgba(40,199,111,.4)!important}.bg-success.bg-darken-1,.btn-success.btn-darken-1{background-color:#24B263!important}.success.darken-1{color:#24B263!important}.btn-success.btn-darken-1{border-color:#1F9D57!important}.btn-success.btn-darken-1:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-darken-1:active,.btn-success.btn-darken-1:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-darken-1{border-color:#24B263!important;color:#24B263!important}.btn-outline-success.btn-outline-darken-1:hover{background-color:#24B263!important}.border-success.border-darken-1{border:1px solid #24B263!important}.border-top-success.border-top-darken-1{border-top:1px solid #24B263!important}.border-bottom-success.border-bottom-darken-1{border-bottom:1px solid #24B263!important}.border-left-success.border-left-darken-1{border-left:1px solid #24B263!important}.border-right-success.border-right-darken-1{border-right:1px solid #24B263!important}.overlay-success.overlay-darken-1{background:#24B263;background:rgba(36,178,99,.6)}.bg-success.bg-darken-2,.btn-success.btn-darken-2{background-color:#1F9D57!important}.success.darken-2{color:#1F9D57!important}.btn-success.btn-darken-2{border-color:#1F9D57!important}.btn-success.btn-darken-2:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-darken-2:active,.btn-success.btn-darken-2:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-darken-2{border-color:#1F9D57!important;color:#1F9D57!important}.btn-outline-success.btn-outline-darken-2:hover{background-color:#1F9D57!important}.border-success.border-darken-2{border:1px solid #1F9D57!important}.border-top-success.border-top-darken-2{border-top:1px solid #1F9D57!important}.border-bottom-success.border-bottom-darken-2{border-bottom:1px solid #1F9D57!important}.border-left-success.border-left-darken-2{border-left:1px solid #1F9D57!important}.border-right-success.border-right-darken-2{border-right:1px solid #1F9D57!important}.overlay-success.overlay-darken-2{background:#1F9D57;background:rgba(31,157,87,.6)}.success.darken-3{color:#1B874B!important}.bg-success.bg-darken-3{background-color:#1B874B!important}.btn-success.btn-darken-3,.btn-success.btn-darken-3:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-darken-3:active,.btn-success.btn-darken-3:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-darken-3{border-color:#1B874B!important;color:#1B874B!important}.btn-outline-success.btn-outline-darken-3:hover{background-color:#1B874B!important}.border-success.border-darken-3{border:1px solid #1B874B!important}.border-top-success.border-top-darken-3{border-top:1px solid #1B874B!important}.border-bottom-success.border-bottom-darken-3{border-bottom:1px solid #1B874B!important}.border-left-success.border-left-darken-3{border-left:1px solid #1B874B!important}.border-right-success.border-right-darken-3{border-right:1px solid #1B874B!important}.overlay-success.overlay-darken-3{background:#1B874B;background:rgba(27,135,75,.6)}.bg-success.bg-darken-4,.btn-success.btn-darken-4{background-color:#177240!important}.success.darken-4{color:#177240!important}.btn-success.btn-darken-4{border-color:#1F9D57!important}.btn-success.btn-darken-4:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-darken-4:active,.btn-success.btn-darken-4:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-darken-4{border-color:#177240!important;color:#177240!important}.btn-outline-success.btn-outline-darken-4:hover{background-color:#177240!important}.border-success.border-darken-4{border:1px solid #177240!important}.border-top-success.border-top-darken-4{border-top:1px solid #177240!important}.border-bottom-success.border-bottom-darken-4{border-bottom:1px solid #177240!important}.border-left-success.border-left-darken-4{border-left:1px solid #177240!important}.border-right-success.border-right-darken-4{border-right:1px solid #177240!important}.overlay-success.overlay-darken-4{background:#177240;background:rgba(23,114,64,.6)}.bg-success.bg-accent-1,.btn-success.btn-accent-1{background-color:#E1FFF1!important}.success.accent-1{color:#E1FFF1!important}.btn-success.btn-accent-1{border-color:#1F9D57!important}.btn-success.btn-accent-1:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-accent-1:active,.btn-success.btn-accent-1:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-accent-1{border-color:#E1FFF1!important;color:#E1FFF1!important}.btn-outline-success.btn-outline-accent-1:hover{background-color:#E1FFF1!important}.border-success.border-accent-1{border:1px solid #E1FFF1!important}.border-top-success.border-top-accent-1{border-top:1px solid #E1FFF1!important}.border-bottom-success.border-bottom-accent-1{border-bottom:1px solid #E1FFF1!important}.border-left-success.border-left-accent-1{border-left:1px solid #E1FFF1!important}.border-right-success.border-right-accent-1{border-right:1px solid #E1FFF1!important}.overlay-success.overlay-accent-1{background:#E1FFF1;background:rgba(225,255,241,.6)}.bg-success.bg-accent-2,.btn-success.btn-accent-2{background-color:#AEFFD9!important}.success.accent-2{color:#AEFFD9!important}.btn-success.btn-accent-2{border-color:#1F9D57!important}.btn-success.btn-accent-2:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-accent-2:active,.btn-success.btn-accent-2:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-accent-2{border-color:#AEFFD9!important;color:#AEFFD9!important}.btn-outline-success.btn-outline-accent-2:hover{background-color:#AEFFD9!important}.border-success.border-accent-2{border:1px solid #AEFFD9!important}.border-top-success.border-top-accent-2{border-top:1px solid #AEFFD9!important}.border-bottom-success.border-bottom-accent-2{border-bottom:1px solid #AEFFD9!important}.border-left-success.border-left-accent-2{border-left:1px solid #AEFFD9!important}.border-right-success.border-right-accent-2{border-right:1px solid #AEFFD9!important}.overlay-success.overlay-accent-2{background:#AEFFD9;background:rgba(174,255,217,.6)}.bg-success.bg-accent-3,.btn-success.btn-accent-3{background-color:#7BFFC1!important}.success.accent-3{color:#7BFFC1!important}.btn-success.btn-accent-3{border-color:#1F9D57!important}.btn-success.btn-accent-3:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-accent-3:active,.btn-success.btn-accent-3:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-accent-3{border-color:#7BFFC1!important;color:#7BFFC1!important}.btn-outline-success.btn-outline-accent-3:hover{background-color:#7BFFC1!important}.border-success.border-accent-3{border:1px solid #7BFFC1!important}.border-top-success.border-top-accent-3{border-top:1px solid #7BFFC1!important}.border-bottom-success.border-bottom-accent-3{border-bottom:1px solid #7BFFC1!important}.border-left-success.border-left-accent-3{border-left:1px solid #7BFFC1!important}.border-right-success.border-right-accent-3{border-right:1px solid #7BFFC1!important}.overlay-success.overlay-accent-3{background:#7BFFC1;background:rgba(123,255,193,.6)}.bg-success.bg-accent-4,.btn-success.btn-accent-4{background-color:#62FFB5!important}.success.accent-4{color:#62FFB5!important}.btn-success.btn-accent-4{border-color:#1F9D57!important}.btn-success.btn-accent-4:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-accent-4:active,.btn-success.btn-accent-4:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-accent-4{border-color:#62FFB5!important;color:#62FFB5!important}.btn-outline-success.btn-outline-accent-4:hover{background-color:#62FFB5!important}.border-success.border-accent-4{border:1px solid #62FFB5!important}.border-top-success.border-top-accent-4{border-top:1px solid #62FFB5!important}.border-bottom-success.border-bottom-accent-4{border-bottom:1px solid #62FFB5!important}.border-left-success.border-left-accent-4{border-left:1px solid #62FFB5!important}.border-right-success.border-right-accent-4{border-right:1px solid #62FFB5!important}.overlay-success.overlay-accent-4{background:#62FFB5;background:rgba(98,255,181,.6)}.bg-success.bg-gradient-bg,.btn-success.btn-gradient-bg{background-color:#0064FA!important}.success.gradient-bg{color:#0064FA!important}.btn-success.btn-gradient-bg{border-color:#1F9D57!important}.btn-success.btn-gradient-bg:hover{border-color:#1F9D57!important;background-color:#1B874B!important}.btn-success.btn-gradient-bg:active,.btn-success.btn-gradient-bg:focus{border-color:#1B874B!important;background-color:#177240!important}.btn-outline-success.btn-outline-gradient-bg{border-color:#0064FA!important;color:#0064FA!important}.btn-outline-success.btn-outline-gradient-bg:hover{background-color:#0064FA!important}input:focus~.bg-success{box-shadow:0 0 0 .075rem #FFF,0 0 0 .21rem #0064FA!important}.border-success.border-gradient-bg{border:1px solid #0064FA!important}.border-top-success.border-top-gradient-bg{border-top:1px solid #0064FA!important}.border-bottom-success.border-bottom-gradient-bg{border-bottom:1px solid #0064FA!important}.border-left-success.border-left-gradient-bg{border-left:1px solid #0064FA!important}.border-right-success.border-right-gradient-bg{border-right:1px solid #0064FA!important}.overlay-success.overlay-gradient-bg{background:#0064FA;background:rgba(0,100,250,.6)}.bg-info.bg-gradient-light,.btn-info.btn-gradient-light{background-color:#2D91FF!important}.info.gradient-light{color:#2D91FF!important}.btn-info.btn-gradient-light{border-color:#00A1B5!important}.btn-info.btn-gradient-light:hover{border-color:#00A1B5!important;background-color:#008B9C!important}.btn-info.btn-gradient-light:active,.btn-info.btn-gradient-light:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-gradient-light{border-color:#2D91FF!important;color:#2D91FF!important}.btn-outline-info.btn-outline-gradient-light:hover{background-color:#2D91FF!important}.border-info.border-gradient-light{border:1px solid #2D91FF!important}.border-top-info.border-top-gradient-light{border-top:1px solid #2D91FF!important}.border-bottom-info.border-bottom-gradient-light{border-bottom:1px solid #2D91FF!important}.border-left-info.border-left-gradient-light{border-left:1px solid #2D91FF!important}.border-right-info.border-right-gradient-light{border-right:1px solid #2D91FF!important}.overlay-info.overlay-gradient-light{background:#2D91FF;background:rgba(45,145,255,.6)}.bg-info.bg-light-badge,.btn-info.btn-light-badge{background-color:#B5F7FF!important}.info.light-badge{color:#B5F7FF!important}.btn-info.btn-light-badge{border-color:#00A1B5!important}.btn-info.btn-light-badge:hover{border-color:#00A1B5!important;background-color:#008B9C!important}.btn-info.btn-light-badge:active,.btn-info.btn-light-badge:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-light-badge{border-color:#B5F7FF!important;color:#B5F7FF!important}.btn-outline-info.btn-outline-light-badge:hover{background-color:#B5F7FF!important}.border-info.border-light-badge{border:1px solid #B5F7FF!important}.border-top-info.border-top-light-badge{border-top:1px solid #B5F7FF!important}.border-bottom-info.border-bottom-light-badge{border-bottom:1px solid #B5F7FF!important}.border-left-info.border-left-light-badge{border-left:1px solid #B5F7FF!important}.border-right-info.border-right-light-badge{border-right:1px solid #B5F7FF!important}.btn-info.btn-lighten-5,.btn-info.btn-lighten-5:hover{border-color:#00A1B5!important}.overlay-info.overlay-light-badge{background:#B5F7FF;background:rgba(181,247,255,.6)}.bg-info.bg-lighten-5,.btn-info.btn-lighten-5{background-color:#69EFFF!important}.info.lighten-5{color:#69EFFF!important}.btn-info.btn-lighten-5:hover{background-color:#008B9C!important}.btn-info.btn-lighten-5:active,.btn-info.btn-lighten-5:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-lighten-5{border-color:#69EFFF!important;color:#69EFFF!important}.btn-outline-info.btn-outline-lighten-5:hover{background-color:#69EFFF!important}.border-info.border-lighten-5{border:1px solid #69EFFF!important}.border-top-info.border-top-lighten-5{border-top:1px solid #69EFFF!important}.border-bottom-info.border-bottom-lighten-5{border-bottom:1px solid #69EFFF!important}.border-left-info.border-left-lighten-5{border-left:1px solid #69EFFF!important}.border-right-info.border-right-lighten-5{border-right:1px solid #69EFFF!important}.btn-info.btn-lighten-4,.btn-info.btn-lighten-4:hover{border-color:#00A1B5!important}.overlay-info.overlay-lighten-5{background:#69EFFF;background:rgba(105,239,255,.6)}.bg-info.bg-lighten-4,.btn-info.btn-lighten-4{background-color:#4FECFF!important}.info.lighten-4{color:#4FECFF!important}.btn-info.btn-lighten-4:hover{background-color:#008B9C!important}.btn-info.btn-lighten-4:active,.btn-info.btn-lighten-4:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-lighten-4{border-color:#4FECFF!important;color:#4FECFF!important}.btn-outline-info.btn-outline-lighten-4:hover{background-color:#4FECFF!important}.border-info.border-lighten-4{border:1px solid #4FECFF!important}.border-top-info.border-top-lighten-4{border-top:1px solid #4FECFF!important}.border-bottom-info.border-bottom-lighten-4{border-bottom:1px solid #4FECFF!important}.border-left-info.border-left-lighten-4{border-left:1px solid #4FECFF!important}.border-right-info.border-right-lighten-4{border-right:1px solid #4FECFF!important}.btn-info.btn-lighten-3,.btn-info.btn-lighten-3:hover{border-color:#00A1B5!important}.overlay-info.overlay-lighten-4{background:#4FECFF;background:rgba(79,236,255,.6)}.bg-info.bg-lighten-3,.btn-info.btn-lighten-3{background-color:#36E9FF!important}.info.lighten-3{color:#36E9FF!important}.btn-info.btn-lighten-3:hover{background-color:#008B9C!important}.btn-info.btn-lighten-3:active,.btn-info.btn-lighten-3:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-lighten-3{border-color:#36E9FF!important;color:#36E9FF!important}.btn-outline-info.btn-outline-lighten-3:hover{background-color:#36E9FF!important}.border-info.border-lighten-3{border:1px solid #36E9FF!important}.border-top-info.border-top-lighten-3{border-top:1px solid #36E9FF!important}.border-bottom-info.border-bottom-lighten-3{border-bottom:1px solid #36E9FF!important}.border-left-info.border-left-lighten-3{border-left:1px solid #36E9FF!important}.border-right-info.border-right-lighten-3{border-right:1px solid #36E9FF!important}.btn-info.btn-lighten-2,.btn-info.btn-lighten-2:hover{border-color:#00A1B5!important}.overlay-info.overlay-lighten-3{background:#36E9FF;background:rgba(54,233,255,.6)}.bg-info.bg-lighten-2,.btn-info.btn-lighten-2{background-color:#1CE7FF!important}.info.lighten-2{color:#1CE7FF!important}.btn-info.btn-lighten-2:hover{background-color:#008B9C!important}.btn-info.btn-lighten-2:active,.btn-info.btn-lighten-2:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-lighten-2{border-color:#1CE7FF!important;color:#1CE7FF!important}.btn-outline-info.btn-outline-lighten-2:hover{background-color:#1CE7FF!important}.border-info.border-lighten-2{border:1px solid #1CE7FF!important}.border-top-info.border-top-lighten-2{border-top:1px solid #1CE7FF!important}.border-bottom-info.border-bottom-lighten-2{border-bottom:1px solid #1CE7FF!important}.border-left-info.border-left-lighten-2{border-left:1px solid #1CE7FF!important}.border-right-info.border-right-lighten-2{border-right:1px solid #1CE7FF!important}.btn-info.btn-lighten-1,.btn-info.btn-lighten-1:hover{border-color:#00A1B5!important}.overlay-info.overlay-lighten-2{background:#1CE7FF;background:rgba(28,231,255,.6)}.bg-info.bg-lighten-1,.btn-info.btn-lighten-1{background-color:#03E4FF!important}.info.lighten-1{color:#03E4FF!important}.btn-info.btn-lighten-1:hover{background-color:#008B9C!important}.btn-info.btn-lighten-1:active,.btn-info.btn-lighten-1:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-lighten-1{border-color:#03E4FF!important;color:#03E4FF!important}.alert-info,.info{color:#00CFE8!important}.btn-outline-info.btn-outline-lighten-1:hover{background-color:#03E4FF!important}.border-info.border-lighten-1{border:1px solid #03E4FF!important}.border-top-info.border-top-lighten-1{border-top:1px solid #03E4FF!important}.border-bottom-info.border-bottom-lighten-1{border-bottom:1px solid #03E4FF!important}.border-left-info.border-left-lighten-1{border-left:1px solid #03E4FF!important}.border-right-info.border-right-lighten-1{border-right:1px solid #03E4FF!important}.overlay-info.overlay-lighten-1{background:#03E4FF;background:rgba(3,228,255,.6)}.bg-info{background-color:#00CFE8!important}.bg-info .card-footer,.bg-info .card-header{background-color:transparent}.alert-info{background:rgba(0,207,232,.2)!important}.alert-info .alert-heading{box-shadow:rgba(0,207,232,.4) 0 6px 15px -7px}.alert-info .alert-link{color:#00B8CF!important}.bg-rgba-info{background:rgba(0,207,232,.15)!important}.border-info{border:1px solid #00CFE8!important}.border-top-info{border-top:1px solid #00CFE8}.border-bottom-info{border-bottom:1px solid #00CFE8}.border-left-info{border-left:1px solid #00CFE8}.border-right-info{border-right:1px solid #00CFE8}.badge-info.badge-glow,.bg-info.badge-glow,.border-info.badge-glow{box-shadow:0 0 10px #00CFE8}.badge.badge-info{background-color:#00CFE8}.badge.badge-light-info{background-color:#B5F7FF;color:#00CFE8!important;font-weight:500}.overlay-info{background:#00CFE8;background:rgba(0,207,232,.6)}.btn-info{border-color:#00A1B5!important;background-color:#00CFE8!important;color:#FFF}.btn-info:active,.btn-info:focus,.btn-info:hover{color:#FFF!important}.btn-info:hover{border-color:#00B8CF!important;box-shadow:0 8px 25px -8px #00CFE8}.btn-flat-info{background-color:transparent;color:#00CFE8}.btn-flat-info:hover{color:#00CFE8;background-color:rgba(0,207,232,.1)}.btn-flat-info:active,.btn-flat-info:focus{background-color:#00CFE8;color:#FFF!important}.btn-relief-info{background-color:#00CFE8;box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.2);color:#FFF}.btn-relief-info:hover{color:#FFF}.btn-relief-info:active,.btn-relief-info:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn-outline-info{border:1px solid #00CFE8;background-color:transparent;color:#00CFE8}.divider.divider-info .divider-text:after,.divider.divider-info .divider-text:before,.vs-checkbox-info input:checked~.vs-checkbox{border-color:#00CFE8!important}.btn-outline-info:hover{background-color:rgba(0,207,232,.08);color:#00CFE8}.btn-outline-info:active{color:#FFF!important}.btn-flat-info~.dropdown-menu .dropdown-item.active,.btn-info~.dropdown-menu .dropdown-item.active,.btn-outline-info~.dropdown-menu .dropdown-item.active{background-color:#00CFE8;color:#FFF}.btn-flat-info~.dropdown-menu .dropdown-item.active:hover,.btn-info~.dropdown-menu .dropdown-item.active:hover,.btn-outline-info~.dropdown-menu .dropdown-item.active:hover{color:#FFF}.btn-flat-info~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-info~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-outline-info~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.dropdown.dropdown-icon-wrapper .btn-flat-info~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-info~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-outline-info~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-flat-info~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-info~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-outline-info~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-flat-info~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-info~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-outline-info~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-flat-info~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-info~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-outline-info~.dropdown-menu .dropdown-item:hover i{color:#00CFE8}.dropdown.dropdown-icon-wrapper .btn-flat-info~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-info~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-outline-info~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-flat-info~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-info~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-outline-info~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-flat-info~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-info~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-outline-info~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-flat-info~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-info~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-outline-info~.dropdown-menu .dropdown-item:active i,.pagination-info .page-item.active .page-link:hover{color:#FFF}.bullet.bullet-info{background-color:#00CFE8}.pagination-info .page-item.active .page-link{background:#00CFE8;color:#FFF}.pagination-info .page-item .page-link:hover{color:#00CFE8}.pagination-info .page-item.next-item .page-link:hover,.pagination-info .page-item.prev-item .page-link:hover{background:#00CFE8;color:#FFF}.nav-pill-info .nav-item .nav-link.active{color:#FFF;background-color:#00CFE8!important}.progress-bar-info{background-color:rgba(0,207,232,.1)}.progress-bar-info .progress-bar{background-color:#00CFE8}.chip-info,.vs-checkbox-info input:active:checked+.vs-checkbox .vs-checkbox--check,.vs-checkbox-info input:checked~.vs-checkbox .vs-checkbox--check,input[type=checkbox].bg-info+.custom-control-label:before,input[type=radio].bg-info+.custom-control-label:before{background-color:#00CFE8!important}.chip-info .chip-body{color:#FFF!important}.btn-info.btn-darken-1,.btn-info.btn-darken-1:hover{border-color:#00A1B5!important}.custom-switch-info .custom-control-input:checked~.custom-control-label::before{background-color:#00CFE8!important;color:#FFF;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.vs-radio-info input:checked~.vs-radio .vs-radio--circle{background:#00CFE8!important;box-shadow:0 3px 12px 0 rgba(0,207,232,.4)!important}.bg-info.bg-darken-1,.btn-info.btn-darken-1{background-color:#00B8CF!important}.info.darken-1{color:#00B8CF!important}.btn-info.btn-darken-1:hover{background-color:#008B9C!important}.btn-info.btn-darken-1:active,.btn-info.btn-darken-1:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-darken-1{border-color:#00B8CF!important;color:#00B8CF!important}.btn-outline-info.btn-outline-darken-1:hover{background-color:#00B8CF!important}.border-info.border-darken-1{border:1px solid #00B8CF!important}.border-top-info.border-top-darken-1{border-top:1px solid #00B8CF!important}.border-bottom-info.border-bottom-darken-1{border-bottom:1px solid #00B8CF!important}.border-left-info.border-left-darken-1{border-left:1px solid #00B8CF!important}.border-right-info.border-right-darken-1{border-right:1px solid #00B8CF!important}.btn-info.btn-darken-2,.btn-info.btn-darken-2:hover{border-color:#00A1B5!important}.overlay-info.overlay-darken-1{background:#00B8CF;background:rgba(0,184,207,.6)}.bg-info.bg-darken-2,.btn-info.btn-darken-2{background-color:#00A1B5!important}.info.darken-2{color:#00A1B5!important}.btn-info.btn-darken-2:hover{background-color:#008B9C!important}.btn-info.btn-darken-2:active,.btn-info.btn-darken-2:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-darken-2{border-color:#00A1B5!important;color:#00A1B5!important}.btn-outline-info.btn-outline-darken-2:hover{background-color:#00A1B5!important}.border-info.border-darken-2{border:1px solid #00A1B5!important}.border-top-info.border-top-darken-2{border-top:1px solid #00A1B5!important}.border-bottom-info.border-bottom-darken-2{border-bottom:1px solid #00A1B5!important}.border-left-info.border-left-darken-2{border-left:1px solid #00A1B5!important}.border-right-info.border-right-darken-2{border-right:1px solid #00A1B5!important}.overlay-info.overlay-darken-2{background:#00A1B5;background:rgba(0,161,181,.6)}.info.darken-3{color:#008B9C!important}.bg-info.bg-darken-3{background-color:#008B9C!important}.btn-info.btn-darken-3,.btn-info.btn-darken-3:hover{border-color:#00A1B5!important;background-color:#008B9C!important}.btn-info.btn-darken-3:active,.btn-info.btn-darken-3:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-darken-3{border-color:#008B9C!important;color:#008B9C!important}.btn-outline-info.btn-outline-darken-3:hover{background-color:#008B9C!important}.border-info.border-darken-3{border:1px solid #008B9C!important}.border-top-info.border-top-darken-3{border-top:1px solid #008B9C!important}.border-bottom-info.border-bottom-darken-3{border-bottom:1px solid #008B9C!important}.border-left-info.border-left-darken-3{border-left:1px solid #008B9C!important}.border-right-info.border-right-darken-3{border-right:1px solid #008B9C!important}.btn-info.btn-darken-4,.btn-info.btn-darken-4:hover{border-color:#00A1B5!important}.overlay-info.overlay-darken-3{background:#008B9C;background:rgba(0,139,156,.6)}.bg-info.bg-darken-4,.btn-info.btn-darken-4{background-color:#007482!important}.info.darken-4{color:#007482!important}.btn-info.btn-darken-4:hover{background-color:#008B9C!important}.btn-info.btn-darken-4:active,.btn-info.btn-darken-4:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-darken-4{border-color:#007482!important;color:#007482!important}.btn-outline-info.btn-outline-darken-4:hover{background-color:#007482!important}.border-info.border-darken-4{border:1px solid #007482!important}.border-top-info.border-top-darken-4{border-top:1px solid #007482!important}.border-bottom-info.border-bottom-darken-4{border-bottom:1px solid #007482!important}.border-left-info.border-left-darken-4{border-left:1px solid #007482!important}.border-right-info.border-right-darken-4{border-right:1px solid #007482!important}.btn-info.btn-accent-1,.btn-info.btn-accent-1:hover{border-color:#00A1B5!important}.overlay-info.overlay-darken-4{background:#007482;background:rgba(0,116,130,.6)}.bg-info.bg-accent-1,.btn-info.btn-accent-1{background-color:#FEFFFF!important}.info.accent-1{color:#FEFFFF!important}.btn-info.btn-accent-1:hover{background-color:#008B9C!important}.btn-info.btn-accent-1:active,.btn-info.btn-accent-1:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-accent-1{border-color:#FEFFFF!important;color:#FEFFFF!important}.btn-outline-info.btn-outline-accent-1:hover{background-color:#FEFFFF!important}.border-info.border-accent-1{border:1px solid #FEFFFF!important}.border-top-info.border-top-accent-1{border-top:1px solid #FEFFFF!important}.border-bottom-info.border-bottom-accent-1{border-bottom:1px solid #FEFFFF!important}.border-left-info.border-left-accent-1{border-left:1px solid #FEFFFF!important}.border-right-info.border-right-accent-1{border-right:1px solid #FEFFFF!important}.btn-info.btn-accent-2,.btn-info.btn-accent-2:hover{border-color:#00A1B5!important}.overlay-info.overlay-accent-1{background:#FEFFFF;background:rgba(254,255,255,.6)}.bg-info.bg-accent-2,.btn-info.btn-accent-2{background-color:#CBF5FF!important}.info.accent-2{color:#CBF5FF!important}.btn-info.btn-accent-2:hover{background-color:#008B9C!important}.btn-info.btn-accent-2:active,.btn-info.btn-accent-2:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-accent-2{border-color:#CBF5FF!important;color:#CBF5FF!important}.btn-outline-info.btn-outline-accent-2:hover{background-color:#CBF5FF!important}.border-info.border-accent-2{border:1px solid #CBF5FF!important}.border-top-info.border-top-accent-2{border-top:1px solid #CBF5FF!important}.border-bottom-info.border-bottom-accent-2{border-bottom:1px solid #CBF5FF!important}.border-left-info.border-left-accent-2{border-left:1px solid #CBF5FF!important}.border-right-info.border-right-accent-2{border-right:1px solid #CBF5FF!important}.btn-info.btn-accent-3,.btn-info.btn-accent-3:hover{border-color:#00A1B5!important}.overlay-info.overlay-accent-2{background:#CBF5FF;background:rgba(203,245,255,.6)}.bg-info.bg-accent-3,.btn-info.btn-accent-3{background-color:#98ECFF!important}.info.accent-3{color:#98ECFF!important}.btn-info.btn-accent-3:hover{background-color:#008B9C!important}.btn-info.btn-accent-3:active,.btn-info.btn-accent-3:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-accent-3{border-color:#98ECFF!important;color:#98ECFF!important}.btn-outline-info.btn-outline-accent-3:hover{background-color:#98ECFF!important}.border-info.border-accent-3{border:1px solid #98ECFF!important}.border-top-info.border-top-accent-3{border-top:1px solid #98ECFF!important}.border-bottom-info.border-bottom-accent-3{border-bottom:1px solid #98ECFF!important}.border-left-info.border-left-accent-3{border-left:1px solid #98ECFF!important}.border-right-info.border-right-accent-3{border-right:1px solid #98ECFF!important}.btn-info.btn-accent-4,.btn-info.btn-accent-4:hover{border-color:#00A1B5!important}.overlay-info.overlay-accent-3{background:#98ECFF;background:rgba(152,236,255,.6)}.bg-info.bg-accent-4,.btn-info.btn-accent-4{background-color:#7FE7FF!important}.info.accent-4{color:#7FE7FF!important}.btn-info.btn-accent-4:hover{background-color:#008B9C!important}.btn-info.btn-accent-4:active,.btn-info.btn-accent-4:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-accent-4{border-color:#7FE7FF!important;color:#7FE7FF!important}.btn-outline-info.btn-outline-accent-4:hover{background-color:#7FE7FF!important}.border-info.border-accent-4{border:1px solid #7FE7FF!important}.border-top-info.border-top-accent-4{border-top:1px solid #7FE7FF!important}.border-bottom-info.border-bottom-accent-4{border-bottom:1px solid #7FE7FF!important}.border-left-info.border-left-accent-4{border-left:1px solid #7FE7FF!important}.border-right-info.border-right-accent-4{border-right:1px solid #7FE7FF!important}.overlay-info.overlay-accent-4{background:#7FE7FF;background:rgba(127,231,255,.6)}.bg-info.bg-gradient-bg,.btn-info.btn-gradient-bg{background-color:#640064!important}.info.gradient-bg{color:#640064!important}.btn-info.btn-gradient-bg{border-color:#00A1B5!important}.btn-info.btn-gradient-bg:hover{border-color:#00A1B5!important;background-color:#008B9C!important}.btn-info.btn-gradient-bg:active,.btn-info.btn-gradient-bg:focus{border-color:#008B9C!important;background-color:#007482!important}.btn-outline-info.btn-outline-gradient-bg{border-color:#640064!important;color:#640064!important}.btn-outline-info.btn-outline-gradient-bg:hover{background-color:#640064!important}input:focus~.bg-info{box-shadow:0 0 0 .075rem #FFF,0 0 0 .21rem #640064!important}.border-info.border-gradient-bg{border:1px solid #640064!important}.border-top-info.border-top-gradient-bg{border-top:1px solid #640064!important}.border-bottom-info.border-bottom-gradient-bg{border-bottom:1px solid #640064!important}.border-left-info.border-left-gradient-bg{border-left:1px solid #640064!important}.border-right-info.border-right-gradient-bg{border-right:1px solid #640064!important}.overlay-info.overlay-gradient-bg{background:#640064;background:rgba(100,0,100,.6)}.bg-warning.bg-gradient-light,.btn-warning.btn-gradient-light{background-color:#FFF487!important}.warning.gradient-light{color:#FFF487!important}.btn-warning.btn-gradient-light{border-color:#FF8510!important}.btn-warning.btn-gradient-light:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-gradient-light:active,.btn-warning.btn-gradient-light:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-gradient-light{border-color:#FFF487!important;color:#FFF487!important}.btn-outline-warning.btn-outline-lighten-5,.warning.light-badge,.warning.lighten-5{color:#FFE0C3!important}.btn-outline-warning.btn-outline-gradient-light:hover{background-color:#FFF487!important}.border-warning.border-gradient-light{border:1px solid #FFF487!important}.border-top-warning.border-top-gradient-light{border-top:1px solid #FFF487!important}.border-bottom-warning.border-bottom-gradient-light{border-bottom:1px solid #FFF487!important}.border-left-warning.border-left-gradient-light{border-left:1px solid #FFF487!important}.border-right-warning.border-right-gradient-light{border-right:1px solid #FFF487!important}.overlay-warning.overlay-gradient-light{background:#FFF487;background:rgba(255,244,135,.6)}.bg-warning.bg-light-badge,.btn-warning.btn-light-badge{background-color:#FFE0C3!important}.btn-warning.btn-light-badge{border-color:#FF8510!important}.btn-warning.btn-light-badge:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-light-badge:active,.btn-warning.btn-light-badge:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-light-badge{border-color:#FFE0C3!important;color:#FFE0C3!important}.btn-outline-warning.btn-outline-light-badge:hover{background-color:#FFE0C3!important}.border-warning.border-light-badge{border:1px solid #FFE0C3!important}.border-top-warning.border-top-light-badge{border-top:1px solid #FFE0C3!important}.border-bottom-warning.border-bottom-light-badge{border-bottom:1px solid #FFE0C3!important}.border-left-warning.border-left-light-badge{border-left:1px solid #FFE0C3!important}.border-right-warning.border-right-light-badge{border-right:1px solid #FFE0C3!important}.overlay-warning.overlay-light-badge{background:#FFE0C3;background:rgba(255,224,195,.6)}.bg-warning.bg-lighten-5,.btn-warning.btn-lighten-5{background-color:#FFE0C3!important}.btn-warning.btn-lighten-5{border-color:#FF8510!important}.btn-warning.btn-lighten-5:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-lighten-5:active,.btn-warning.btn-lighten-5:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-lighten-5{border-color:#FFE0C3!important}.btn-outline-warning.btn-outline-lighten-5:hover{background-color:#FFE0C3!important}.border-warning.border-lighten-5{border:1px solid #FFE0C3!important}.border-top-warning.border-top-lighten-5{border-top:1px solid #FFE0C3!important}.border-bottom-warning.border-bottom-lighten-5{border-bottom:1px solid #FFE0C3!important}.border-left-warning.border-left-lighten-5{border-left:1px solid #FFE0C3!important}.border-right-warning.border-right-lighten-5{border-right:1px solid #FFE0C3!important}.overlay-warning.overlay-lighten-5{background:#FFE0C3;background:rgba(255,224,195,.6)}.bg-warning.bg-lighten-4,.btn-warning.btn-lighten-4{background-color:#FFD3A9!important}.warning.lighten-4{color:#FFD3A9!important}.btn-warning.btn-lighten-4{border-color:#FF8510!important}.btn-warning.btn-lighten-4:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-lighten-4:active,.btn-warning.btn-lighten-4:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-lighten-4{border-color:#FFD3A9!important;color:#FFD3A9!important}.btn-outline-warning.btn-outline-lighten-4:hover{background-color:#FFD3A9!important}.border-warning.border-lighten-4{border:1px solid #FFD3A9!important}.border-top-warning.border-top-lighten-4{border-top:1px solid #FFD3A9!important}.border-bottom-warning.border-bottom-lighten-4{border-bottom:1px solid #FFD3A9!important}.border-left-warning.border-left-lighten-4{border-left:1px solid #FFD3A9!important}.border-right-warning.border-right-lighten-4{border-right:1px solid #FFD3A9!important}.overlay-warning.overlay-lighten-4{background:#FFD3A9;background:rgba(255,211,169,.6)}.bg-warning.bg-lighten-3,.btn-warning.btn-lighten-3{background-color:#FFC690!important}.warning.lighten-3{color:#FFC690!important}.btn-warning.btn-lighten-3{border-color:#FF8510!important}.btn-warning.btn-lighten-3:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-lighten-3:active,.btn-warning.btn-lighten-3:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-lighten-3{border-color:#FFC690!important;color:#FFC690!important}.btn-outline-warning.btn-outline-lighten-3:hover{background-color:#FFC690!important}.border-warning.border-lighten-3{border:1px solid #FFC690!important}.border-top-warning.border-top-lighten-3{border-top:1px solid #FFC690!important}.border-bottom-warning.border-bottom-lighten-3{border-bottom:1px solid #FFC690!important}.border-left-warning.border-left-lighten-3{border-left:1px solid #FFC690!important}.border-right-warning.border-right-lighten-3{border-right:1px solid #FFC690!important}.overlay-warning.overlay-lighten-3{background:#FFC690;background:rgba(255,198,144,.6)}.bg-warning.bg-lighten-2,.btn-warning.btn-lighten-2{background-color:#FFB976!important}.warning.lighten-2{color:#FFB976!important}.btn-warning.btn-lighten-2{border-color:#FF8510!important}.btn-warning.btn-lighten-2:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-lighten-2:active,.btn-warning.btn-lighten-2:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-lighten-2{border-color:#FFB976!important;color:#FFB976!important}.btn-outline-warning.btn-outline-lighten-2:hover{background-color:#FFB976!important}.border-warning.border-lighten-2{border:1px solid #FFB976!important}.border-top-warning.border-top-lighten-2{border-top:1px solid #FFB976!important}.border-bottom-warning.border-bottom-lighten-2{border-bottom:1px solid #FFB976!important}.border-left-warning.border-left-lighten-2{border-left:1px solid #FFB976!important}.border-right-warning.border-right-lighten-2{border-right:1px solid #FFB976!important}.overlay-warning.overlay-lighten-2{background:#FFB976;background:rgba(255,185,118,.6)}.bg-warning.bg-lighten-1,.btn-warning.btn-lighten-1{background-color:#FFAC5D!important}.warning.lighten-1{color:#FFAC5D!important}.btn-warning.btn-lighten-1{border-color:#FF8510!important}.btn-warning.btn-lighten-1:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-lighten-1:active,.btn-warning.btn-lighten-1:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-lighten-1{border-color:#FFAC5D!important;color:#FFAC5D!important}.alert-warning,.warning{color:#FF9F43!important}.btn-outline-warning.btn-outline-lighten-1:hover{background-color:#FFAC5D!important}.border-warning.border-lighten-1{border:1px solid #FFAC5D!important}.border-top-warning.border-top-lighten-1{border-top:1px solid #FFAC5D!important}.border-bottom-warning.border-bottom-lighten-1{border-bottom:1px solid #FFAC5D!important}.border-left-warning.border-left-lighten-1{border-left:1px solid #FFAC5D!important}.border-right-warning.border-right-lighten-1{border-right:1px solid #FFAC5D!important}.overlay-warning.overlay-lighten-1{background:#FFAC5D;background:rgba(255,172,93,.6)}.bg-warning{background-color:#FF9F43!important}.bg-warning .card-footer,.bg-warning .card-header{background-color:transparent}.alert-warning{background:rgba(255,159,67,.2)!important}.alert-warning .alert-heading{box-shadow:rgba(255,159,67,.4) 0 6px 15px -7px}.alert-warning .alert-link{color:#FF922A!important}.bg-rgba-warning{background:rgba(255,159,67,.15)!important}.border-warning{border:1px solid #FF9F43!important}.border-top-warning{border-top:1px solid #FF9F43}.border-bottom-warning{border-bottom:1px solid #FF9F43}.border-left-warning{border-left:1px solid #FF9F43}.border-right-warning{border-right:1px solid #FF9F43}.badge-warning.badge-glow,.bg-warning.badge-glow,.border-warning.badge-glow{box-shadow:0 0 10px #FF9F43}.badge.badge-warning{background-color:#FF9F43}.badge.badge-light-warning{background-color:#FFE0C3;color:#FF9F43!important;font-weight:500}.overlay-warning{background:#FF9F43;background:rgba(255,159,67,.6)}.btn-warning{border-color:#FF8510!important;background-color:#FF9F43!important;color:#FFF}.btn-warning:active,.btn-warning:focus,.btn-warning:hover{color:#FFF!important}.btn-warning:hover{border-color:#FF922A!important;box-shadow:0 8px 25px -8px #FF9F43}.btn-flat-warning{background-color:transparent;color:#FF9F43}.btn-flat-warning:hover{color:#FF9F43;background-color:rgba(255,159,67,.1)}.btn-flat-warning:active,.btn-flat-warning:focus{background-color:#FF9F43;color:#FFF!important}.btn-relief-warning{background-color:#FF9F43;box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.2);color:#FFF}.btn-relief-warning:hover{color:#FFF}.btn-relief-warning:active,.btn-relief-warning:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn-outline-warning{border:1px solid #FF9F43;background-color:transparent;color:#FF9F43}.divider.divider-warning .divider-text:after,.divider.divider-warning .divider-text:before,.vs-checkbox-warning input:checked~.vs-checkbox{border-color:#FF9F43!important}.btn-outline-warning:hover{background-color:rgba(255,159,67,.08);color:#FF9F43}.btn-outline-warning:active{color:#FFF!important}.btn-flat-warning~.dropdown-menu .dropdown-item.active,.btn-outline-warning~.dropdown-menu .dropdown-item.active,.btn-warning~.dropdown-menu .dropdown-item.active{background-color:#FF9F43;color:#FFF}.btn-flat-warning~.dropdown-menu .dropdown-item.active:hover,.btn-outline-warning~.dropdown-menu .dropdown-item.active:hover,.btn-warning~.dropdown-menu .dropdown-item.active:hover{color:#FFF}.btn-flat-warning~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-outline-warning~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-warning~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.dropdown.dropdown-icon-wrapper .btn-flat-warning~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-outline-warning~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-warning~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-flat-warning~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-outline-warning~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-warning~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-flat-warning~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-outline-warning~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-warning~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-flat-warning~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-outline-warning~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-warning~.dropdown-menu .dropdown-item:hover i{color:#FF9F43}.dropdown.dropdown-icon-wrapper .btn-flat-warning~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-outline-warning~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-warning~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-flat-warning~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-outline-warning~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-warning~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-flat-warning~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-outline-warning~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-warning~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-flat-warning~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-outline-warning~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-warning~.dropdown-menu .dropdown-item:active i,.pagination-warning .page-item.active .page-link:hover{color:#FFF}.bullet.bullet-warning{background-color:#FF9F43}.pagination-warning .page-item.active .page-link{background:#FF9F43;color:#FFF}.pagination-warning .page-item .page-link:hover{color:#FF9F43}.pagination-warning .page-item.next-item .page-link:hover,.pagination-warning .page-item.prev-item .page-link:hover{background:#FF9F43;color:#FFF}.nav-pill-warning .nav-item .nav-link.active{color:#FFF;background-color:#FF9F43!important}.progress-bar-warning{background-color:rgba(255,159,67,.1)}.progress-bar-warning .progress-bar{background-color:#FF9F43}.chip-warning,.vs-checkbox-warning input:active:checked+.vs-checkbox .vs-checkbox--check,.vs-checkbox-warning input:checked~.vs-checkbox .vs-checkbox--check,input[type=checkbox].bg-warning+.custom-control-label:before,input[type=radio].bg-warning+.custom-control-label:before{background-color:#FF9F43!important}.chip-warning .chip-body{color:#FFF!important}.custom-switch-warning .custom-control-input:checked~.custom-control-label::before{background-color:#FF9F43!important;color:#FFF;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.vs-radio-warning input:checked~.vs-radio .vs-radio--circle{background:#FF9F43!important;box-shadow:0 3px 12px 0 rgba(255,159,67,.4)!important}.bg-warning.bg-darken-1,.btn-warning.btn-darken-1{background-color:#FF922A!important}.warning.darken-1{color:#FF922A!important}.btn-warning.btn-darken-1{border-color:#FF8510!important}.btn-warning.btn-darken-1:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-darken-1:active,.btn-warning.btn-darken-1:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-darken-1{border-color:#FF922A!important;color:#FF922A!important}.btn-outline-warning.btn-outline-darken-1:hover{background-color:#FF922A!important}.border-warning.border-darken-1{border:1px solid #FF922A!important}.border-top-warning.border-top-darken-1{border-top:1px solid #FF922A!important}.border-bottom-warning.border-bottom-darken-1{border-bottom:1px solid #FF922A!important}.border-left-warning.border-left-darken-1{border-left:1px solid #FF922A!important}.border-right-warning.border-right-darken-1{border-right:1px solid #FF922A!important}.overlay-warning.overlay-darken-1{background:#FF922A;background:rgba(255,146,42,.6)}.bg-warning.bg-darken-2,.btn-warning.btn-darken-2{background-color:#FF8510!important}.warning.darken-2{color:#FF8510!important}.btn-warning.btn-darken-2{border-color:#FF8510!important}.btn-warning.btn-darken-2:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-darken-2:active,.btn-warning.btn-darken-2:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-darken-2{border-color:#FF8510!important;color:#FF8510!important}.btn-outline-warning.btn-outline-darken-2:hover{background-color:#FF8510!important}.border-warning.border-darken-2{border:1px solid #FF8510!important}.border-top-warning.border-top-darken-2{border-top:1px solid #FF8510!important}.border-bottom-warning.border-bottom-darken-2{border-bottom:1px solid #FF8510!important}.border-left-warning.border-left-darken-2{border-left:1px solid #FF8510!important}.border-right-warning.border-right-darken-2{border-right:1px solid #FF8510!important}.overlay-warning.overlay-darken-2{background:#FF8510;background:rgba(255,133,16,.6)}.warning.darken-3{color:#F67800!important}.bg-warning.bg-darken-3{background-color:#F67800!important}.btn-warning.btn-darken-3,.btn-warning.btn-darken-3:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-darken-3:active,.btn-warning.btn-darken-3:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-darken-3{border-color:#F67800!important;color:#F67800!important}.btn-outline-warning.btn-outline-darken-3:hover{background-color:#F67800!important}.border-warning.border-darken-3{border:1px solid #F67800!important}.border-top-warning.border-top-darken-3{border-top:1px solid #F67800!important}.border-bottom-warning.border-bottom-darken-3{border-bottom:1px solid #F67800!important}.border-left-warning.border-left-darken-3{border-left:1px solid #F67800!important}.border-right-warning.border-right-darken-3{border-right:1px solid #F67800!important}.overlay-warning.overlay-darken-3{background:#F67800;background:rgba(246,120,0,.6)}.bg-warning.bg-darken-4,.btn-warning.btn-darken-4{background-color:#DC6C00!important}.warning.darken-4{color:#DC6C00!important}.btn-warning.btn-darken-4{border-color:#FF8510!important}.btn-warning.btn-darken-4:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-darken-4:active,.btn-warning.btn-darken-4:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-darken-4{border-color:#DC6C00!important;color:#DC6C00!important}.btn-outline-warning.btn-outline-darken-4:hover{background-color:#DC6C00!important}.border-warning.border-darken-4{border:1px solid #DC6C00!important}.border-top-warning.border-top-darken-4{border-top:1px solid #DC6C00!important}.border-bottom-warning.border-bottom-darken-4{border-bottom:1px solid #DC6C00!important}.border-left-warning.border-left-darken-4{border-left:1px solid #DC6C00!important}.border-right-warning.border-right-darken-4{border-right:1px solid #DC6C00!important}.overlay-warning.overlay-darken-4{background:#DC6C00;background:rgba(220,108,0,.6)}.bg-warning.bg-accent-1,.btn-warning.btn-accent-1{background-color:#FFF5EF!important}.warning.accent-1{color:#FFF5EF!important}.btn-warning.btn-accent-1{border-color:#FF8510!important}.btn-warning.btn-accent-1:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-accent-1:active,.btn-warning.btn-accent-1:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-accent-1{border-color:#FFF5EF!important;color:#FFF5EF!important}.btn-outline-warning.btn-outline-accent-1:hover{background-color:#FFF5EF!important}.border-warning.border-accent-1{border:1px solid #FFF5EF!important}.border-top-warning.border-top-accent-1{border-top:1px solid #FFF5EF!important}.border-bottom-warning.border-bottom-accent-1{border-bottom:1px solid #FFF5EF!important}.border-left-warning.border-left-accent-1{border-left:1px solid #FFF5EF!important}.border-right-warning.border-right-accent-1{border-right:1px solid #FFF5EF!important}.overlay-warning.overlay-accent-1{background:#FFF5EF;background:rgba(255,245,239,.6)}.bg-warning.bg-accent-2,.btn-warning.btn-accent-2{background-color:#FFE5D8!important}.warning.accent-2{color:#FFE5D8!important}.btn-warning.btn-accent-2{border-color:#FF8510!important}.btn-warning.btn-accent-2:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-accent-2:active,.btn-warning.btn-accent-2:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-accent-2{border-color:#FFE5D8!important;color:#FFE5D8!important}.btn-outline-warning.btn-outline-accent-2:hover{background-color:#FFE5D8!important}.border-warning.border-accent-2{border:1px solid #FFE5D8!important}.border-top-warning.border-top-accent-2{border-top:1px solid #FFE5D8!important}.border-bottom-warning.border-bottom-accent-2{border-bottom:1px solid #FFE5D8!important}.border-left-warning.border-left-accent-2{border-left:1px solid #FFE5D8!important}.border-right-warning.border-right-accent-2{border-right:1px solid #FFE5D8!important}.overlay-warning.overlay-accent-2{background:#FFE5D8;background:rgba(255,229,216,.6)}.bg-warning.bg-accent-3,.btn-warning.btn-accent-3{background-color:#FFF6F3!important}.warning.accent-3{color:#FFF6F3!important}.btn-warning.btn-accent-3{border-color:#FF8510!important}.btn-warning.btn-accent-3:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-accent-3:active,.btn-warning.btn-accent-3:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-accent-3{border-color:#FFF6F3!important;color:#FFF6F3!important}.btn-outline-warning.btn-outline-accent-3:hover{background-color:#FFF6F3!important}.border-warning.border-accent-3{border:1px solid #FFF6F3!important}.border-top-warning.border-top-accent-3{border-top:1px solid #FFF6F3!important}.border-bottom-warning.border-bottom-accent-3{border-bottom:1px solid #FFF6F3!important}.border-left-warning.border-left-accent-3{border-left:1px solid #FFF6F3!important}.border-right-warning.border-right-accent-3{border-right:1px solid #FFF6F3!important}.overlay-warning.overlay-accent-3{background:#FFF6F3;background:rgba(255,246,243,.6)}.bg-warning.bg-accent-4,.btn-warning.btn-accent-4{background-color:#FFE3DA!important}.warning.accent-4{color:#FFE3DA!important}.btn-warning.btn-accent-4{border-color:#FF8510!important}.btn-warning.btn-accent-4:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-accent-4:active,.btn-warning.btn-accent-4:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-accent-4{border-color:#FFE3DA!important;color:#FFE3DA!important}.btn-outline-warning.btn-outline-accent-4:hover{background-color:#FFE3DA!important}.border-warning.border-accent-4{border:1px solid #FFE3DA!important}.border-top-warning.border-top-accent-4{border-top:1px solid #FFE3DA!important}.border-bottom-warning.border-bottom-accent-4{border-bottom:1px solid #FFE3DA!important}.border-left-warning.border-left-accent-4{border-left:1px solid #FFE3DA!important}.border-right-warning.border-right-accent-4{border-right:1px solid #FFE3DA!important}.overlay-warning.overlay-accent-4{background:#FFE3DA;background:rgba(255,227,218,.6)}.bg-warning.bg-gradient-bg,.btn-warning.btn-gradient-bg{background-color:#FAFAFA!important}.warning.gradient-bg{color:#FAFAFA!important}.btn-warning.btn-gradient-bg{border-color:#FF8510!important}.btn-warning.btn-gradient-bg:hover{border-color:#FF8510!important;background-color:#F67800!important}.btn-warning.btn-gradient-bg:active,.btn-warning.btn-gradient-bg:focus{border-color:#F67800!important;background-color:#DC6C00!important}.btn-outline-warning.btn-outline-gradient-bg{border-color:#FAFAFA!important;color:#FAFAFA!important}.btn-outline-warning.btn-outline-gradient-bg:hover{background-color:#FAFAFA!important}input:focus~.bg-warning{box-shadow:0 0 0 .075rem #FFF,0 0 0 .21rem #FAFAFA!important}.border-warning.border-gradient-bg{border:1px solid #FAFAFA!important}.border-top-warning.border-top-gradient-bg{border-top:1px solid #FAFAFA!important}.border-bottom-warning.border-bottom-gradient-bg{border-bottom:1px solid #FAFAFA!important}.border-left-warning.border-left-gradient-bg{border-left:1px solid #FAFAFA!important}.border-right-warning.border-right-gradient-bg{border-right:1px solid #FAFAFA!important}.overlay-warning.overlay-gradient-bg{background:#FAFAFA;background:rgba(250,250,250,.6)}.bg-danger.bg-gradient-light,.btn-danger.btn-gradient-light{background-color:#F9B789!important}.danger.gradient-light{color:#F9B789!important}.btn-danger.btn-gradient-light{border-color:#E42728!important}.btn-danger.btn-gradient-light:hover{border-color:#E42728!important;background-color:#D71A1C!important}.btn-danger.btn-gradient-light:active,.btn-danger.btn-gradient-light:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-gradient-light{border-color:#F9B789!important;color:#F9B789!important}.btn-outline-danger.btn-outline-gradient-light:hover{background-color:#F9B789!important}.border-danger.border-gradient-light{border:1px solid #F9B789!important}.border-top-danger.border-top-gradient-light{border-top:1px solid #F9B789!important}.border-bottom-danger.border-bottom-gradient-light{border-bottom:1px solid #F9B789!important}.border-left-danger.border-left-gradient-light{border-left:1px solid #F9B789!important}.border-right-danger.border-right-gradient-light{border-right:1px solid #F9B789!important}.overlay-danger.overlay-gradient-light{background:#F9B789;background:rgba(249,183,137,.6)}.bg-danger.bg-light-badge,.btn-danger.btn-light-badge{background-color:#FBDCDC!important}.danger.light-badge{color:#FBDCDC!important}.btn-danger.btn-light-badge{border-color:#E42728!important}.btn-danger.btn-light-badge:hover{border-color:#E42728!important;background-color:#D71A1C!important}.btn-danger.btn-light-badge:active,.btn-danger.btn-light-badge:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-light-badge{border-color:#FBDCDC!important;color:#FBDCDC!important}.btn-outline-danger.btn-outline-light-badge:hover{background-color:#FBDCDC!important}.border-danger.border-light-badge{border:1px solid #FBDCDC!important}.border-top-danger.border-top-light-badge{border-top:1px solid #FBDCDC!important}.border-bottom-danger.border-bottom-light-badge{border-bottom:1px solid #FBDCDC!important}.border-left-danger.border-left-light-badge{border-left:1px solid #FBDCDC!important}.border-right-danger.border-right-light-badge{border-right:1px solid #FBDCDC!important}.overlay-danger.overlay-light-badge{background:#FBDCDC;background:rgba(251,220,220,.6)}.bg-danger.bg-lighten-5,.btn-danger.btn-lighten-5{background-color:#F8C6C6!important}.danger.lighten-5{color:#F8C6C6!important}.btn-danger.btn-lighten-5{border-color:#E42728!important}.btn-danger.btn-lighten-5:hover{border-color:#E42728!important;background-color:#D71A1C!important}.btn-danger.btn-lighten-5:active,.btn-danger.btn-lighten-5:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-lighten-5{border-color:#F8C6C6!important;color:#F8C6C6!important}.btn-outline-danger.btn-outline-lighten-5:hover{background-color:#F8C6C6!important}.border-danger.border-lighten-5{border:1px solid #F8C6C6!important}.border-top-danger.border-top-lighten-5{border-top:1px solid #F8C6C6!important}.border-bottom-danger.border-bottom-lighten-5{border-bottom:1px solid #F8C6C6!important}.border-left-danger.border-left-lighten-5{border-left:1px solid #F8C6C6!important}.border-right-danger.border-right-lighten-5{border-right:1px solid #F8C6C6!important}.overlay-danger.overlay-lighten-5{background:#F8C6C6;background:rgba(248,198,198,.6)}.bg-danger.bg-lighten-4,.btn-danger.btn-lighten-4{background-color:#F5AFAF!important}.danger.lighten-4{color:#F5AFAF!important}.btn-danger.btn-lighten-4{border-color:#E42728!important}.btn-danger.btn-lighten-4:hover{border-color:#E42728!important;background-color:#D71A1C!important}.btn-danger.btn-lighten-4:active,.btn-danger.btn-lighten-4:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-lighten-4{border-color:#F5AFAF!important;color:#F5AFAF!important}.btn-outline-danger.btn-outline-lighten-4:hover{background-color:#F5AFAF!important}.border-danger.border-lighten-4{border:1px solid #F5AFAF!important}.border-top-danger.border-top-lighten-4{border-top:1px solid #F5AFAF!important}.border-bottom-danger.border-bottom-lighten-4{border-bottom:1px solid #F5AFAF!important}.border-left-danger.border-left-lighten-4{border-left:1px solid #F5AFAF!important}.border-right-danger.border-right-lighten-4{border-right:1px solid #F5AFAF!important}.overlay-danger.overlay-lighten-4{background:#F5AFAF;background:rgba(245,175,175,.6)}.bg-danger.bg-lighten-3,.btn-danger.btn-lighten-3{background-color:#F29899!important}.danger.lighten-3{color:#F29899!important}.btn-danger.btn-lighten-3{border-color:#E42728!important}.btn-danger.btn-lighten-3:hover{border-color:#E42728!important;background-color:#D71A1C!important}.btn-danger.btn-lighten-3:active,.btn-danger.btn-lighten-3:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-lighten-3{border-color:#F29899!important;color:#F29899!important}.btn-outline-danger.btn-outline-lighten-3:hover{background-color:#F29899!important}.border-danger.border-lighten-3{border:1px solid #F29899!important}.border-top-danger.border-top-lighten-3{border-top:1px solid #F29899!important}.border-bottom-danger.border-bottom-lighten-3{border-bottom:1px solid #F29899!important}.border-left-danger.border-left-lighten-3{border-left:1px solid #F29899!important}.border-right-danger.border-right-lighten-3{border-right:1px solid #F29899!important}.overlay-danger.overlay-lighten-3{background:#F29899;background:rgba(242,152,153,.6)}.bg-danger.bg-lighten-2,.btn-danger.btn-lighten-2{background-color:#F08182!important}.danger.lighten-2{color:#F08182!important}.btn-danger.btn-lighten-2{border-color:#E42728!important}.btn-danger.btn-lighten-2:hover{border-color:#E42728!important;background-color:#D71A1C!important}.btn-danger.btn-lighten-2:active,.btn-danger.btn-lighten-2:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-lighten-2{border-color:#F08182!important;color:#F08182!important}.btn-outline-danger.btn-outline-lighten-2:hover{background-color:#F08182!important}.border-danger.border-lighten-2{border:1px solid #F08182!important}.border-top-danger.border-top-lighten-2{border-top:1px solid #F08182!important}.border-bottom-danger.border-bottom-lighten-2{border-bottom:1px solid #F08182!important}.border-left-danger.border-left-lighten-2{border-left:1px solid #F08182!important}.border-right-danger.border-right-lighten-2{border-right:1px solid #F08182!important}.overlay-danger.overlay-lighten-2{background:#F08182;background:rgba(240,129,130,.6)}.bg-danger.bg-lighten-1,.btn-danger.btn-lighten-1{background-color:#ED6B6C!important}.danger.lighten-1{color:#ED6B6C!important}.btn-danger.btn-lighten-1{border-color:#E42728!important}.btn-danger.btn-lighten-1:hover{border-color:#E42728!important;background-color:#D71A1C!important}.btn-danger.btn-lighten-1:active,.btn-danger.btn-lighten-1:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-lighten-1{border-color:#ED6B6C!important;color:#ED6B6C!important}.alert-danger,.danger{color:#EA5455!important}.btn-outline-danger.btn-outline-lighten-1:hover{background-color:#ED6B6C!important}.border-danger.border-lighten-1{border:1px solid #ED6B6C!important}.border-top-danger.border-top-lighten-1{border-top:1px solid #ED6B6C!important}.border-bottom-danger.border-bottom-lighten-1{border-bottom:1px solid #ED6B6C!important}.border-left-danger.border-left-lighten-1{border-left:1px solid #ED6B6C!important}.border-right-danger.border-right-lighten-1{border-right:1px solid #ED6B6C!important}.overlay-danger.overlay-lighten-1{background:#ED6B6C;background:rgba(237,107,108,.6)}.bg-danger{background-color:#EA5455!important}.bg-danger .card-footer,.bg-danger .card-header{background-color:transparent}.alert-danger{background:rgba(234,84,85,.2)!important}.alert-danger .alert-heading{box-shadow:rgba(234,84,85,.4) 0 6px 15px -7px}.alert-danger .alert-link{color:#E73D3E!important}.bg-rgba-danger{background:rgba(234,84,85,.15)!important}.border-danger{border:1px solid #EA5455!important}.border-top-danger{border-top:1px solid #EA5455}.border-bottom-danger{border-bottom:1px solid #EA5455}.border-left-danger{border-left:1px solid #EA5455}.border-right-danger{border-right:1px solid #EA5455}.badge-danger.badge-glow,.bg-danger.badge-glow,.border-danger.badge-glow{box-shadow:0 0 10px #EA5455}.badge.badge-danger{background-color:#EA5455}.badge.badge-light-danger{background-color:#FBDCDC;color:#EA5455!important;font-weight:500}.overlay-danger{background:#EA5455;background:rgba(234,84,85,.6)}.btn-danger{border-color:#E42728!important;background-color:#EA5455!important;color:#FFF}.btn-danger:active,.btn-danger:focus,.btn-danger:hover{color:#FFF!important}.btn-danger:hover{border-color:#E73D3E!important;box-shadow:0 8px 25px -8px #EA5455}.btn-flat-danger{background-color:transparent;color:#EA5455}.btn-flat-danger:hover{color:#EA5455;background-color:rgba(234,84,85,.1)}.btn-flat-danger:active,.btn-flat-danger:focus{background-color:#EA5455;color:#FFF!important}.btn-relief-danger{background-color:#EA5455;box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.2);color:#FFF}.btn-relief-danger:hover{color:#FFF}.btn-relief-danger:active,.btn-relief-danger:focus{outline:0;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.btn-outline-danger{border:1px solid #EA5455;background-color:transparent;color:#EA5455}.divider.divider-danger .divider-text:after,.divider.divider-danger .divider-text:before,.vs-checkbox-danger input:checked~.vs-checkbox{border-color:#EA5455!important}.btn-outline-danger:hover{background-color:rgba(234,84,85,.08);color:#EA5455}.btn-outline-danger:active{color:#FFF!important}.btn-danger~.dropdown-menu .dropdown-item.active,.btn-flat-danger~.dropdown-menu .dropdown-item.active,.btn-outline-danger~.dropdown-menu .dropdown-item.active{background-color:#EA5455;color:#FFF}.btn-danger~.dropdown-menu .dropdown-item.active:hover,.btn-flat-danger~.dropdown-menu .dropdown-item.active:hover,.btn-outline-danger~.dropdown-menu .dropdown-item.active:hover{color:#FFF}.btn-danger~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-flat-danger~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.btn-outline-danger~.dropdown-menu .dropdown-item:not(.active):not(:active):hover,.dropdown.dropdown-icon-wrapper .btn-danger~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-flat-danger~.dropdown-menu .dropdown-item:hover i,.dropdown.dropdown-icon-wrapper .btn-outline-danger~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-danger~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-flat-danger~.dropdown-menu .dropdown-item:hover i,.dropleft.dropdown-icon-wrapper .btn-outline-danger~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-danger~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-flat-danger~.dropdown-menu .dropdown-item:hover i,.dropright.dropdown-icon-wrapper .btn-outline-danger~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-danger~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-flat-danger~.dropdown-menu .dropdown-item:hover i,.dropup.dropdown-icon-wrapper .btn-outline-danger~.dropdown-menu .dropdown-item:hover i{color:#EA5455}.dropdown.dropdown-icon-wrapper .btn-danger~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-flat-danger~.dropdown-menu .dropdown-item:active i,.dropdown.dropdown-icon-wrapper .btn-outline-danger~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-danger~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-flat-danger~.dropdown-menu .dropdown-item:active i,.dropleft.dropdown-icon-wrapper .btn-outline-danger~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-danger~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-flat-danger~.dropdown-menu .dropdown-item:active i,.dropright.dropdown-icon-wrapper .btn-outline-danger~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-danger~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-flat-danger~.dropdown-menu .dropdown-item:active i,.dropup.dropdown-icon-wrapper .btn-outline-danger~.dropdown-menu .dropdown-item:active i,.pagination-danger .page-item.active .page-link:hover{color:#FFF}.bullet.bullet-danger{background-color:#EA5455}.pagination-danger .page-item.active .page-link{background:#EA5455;color:#FFF}.pagination-danger .page-item .page-link:hover{color:#EA5455}.pagination-danger .page-item.next-item .page-link:hover,.pagination-danger .page-item.prev-item .page-link:hover{background:#EA5455;color:#FFF}.nav-pill-danger .nav-item .nav-link.active{color:#FFF;background-color:#EA5455!important}.progress-bar-danger{background-color:rgba(234,84,85,.1)}.progress-bar-danger .progress-bar{background-color:#EA5455}.chip-danger,.vs-checkbox-danger input:active:checked+.vs-checkbox .vs-checkbox--check,.vs-checkbox-danger input:checked~.vs-checkbox .vs-checkbox--check,input[type=checkbox].bg-danger+.custom-control-label:before,input[type=radio].bg-danger+.custom-control-label:before{background-color:#EA5455!important}.chip-danger .chip-body{color:#FFF!important}.btn-danger.btn-darken-1,.btn-danger.btn-darken-1:hover{border-color:#E42728!important}.custom-switch-danger .custom-control-input:checked~.custom-control-label::before{background-color:#EA5455!important;color:#FFF;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.vs-radio-danger input:checked~.vs-radio .vs-radio--circle{background:#EA5455!important;box-shadow:0 3px 12px 0 rgba(234,84,85,.4)!important}.bg-danger.bg-darken-1,.btn-danger.btn-darken-1{background-color:#E73D3E!important}.danger.darken-1{color:#E73D3E!important}.btn-danger.btn-darken-1:hover{background-color:#D71A1C!important}.btn-danger.btn-darken-1:active,.btn-danger.btn-darken-1:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-darken-1{border-color:#E73D3E!important;color:#E73D3E!important}.btn-outline-danger.btn-outline-darken-1:hover{background-color:#E73D3E!important}.border-danger.border-darken-1{border:1px solid #E73D3E!important}.border-top-danger.border-top-darken-1{border-top:1px solid #E73D3E!important}.border-bottom-danger.border-bottom-darken-1{border-bottom:1px solid #E73D3E!important}.border-left-danger.border-left-darken-1{border-left:1px solid #E73D3E!important}.border-right-danger.border-right-darken-1{border-right:1px solid #E73D3E!important}.btn-danger.btn-darken-2,.btn-danger.btn-darken-2:hover{border-color:#E42728!important}.overlay-danger.overlay-darken-1{background:#E73D3E;background:rgba(231,61,62,.6)}.bg-danger.bg-darken-2,.btn-danger.btn-darken-2{background-color:#E42728!important}.danger.darken-2{color:#E42728!important}.btn-danger.btn-darken-2:hover{background-color:#D71A1C!important}.btn-danger.btn-darken-2:active,.btn-danger.btn-darken-2:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-darken-2{border-color:#E42728!important;color:#E42728!important}.btn-outline-danger.btn-outline-darken-2:hover{background-color:#E42728!important}.border-danger.border-darken-2{border:1px solid #E42728!important}.border-top-danger.border-top-darken-2{border-top:1px solid #E42728!important}.border-bottom-danger.border-bottom-darken-2{border-bottom:1px solid #E42728!important}.border-left-danger.border-left-darken-2{border-left:1px solid #E42728!important}.border-right-danger.border-right-darken-2{border-right:1px solid #E42728!important}.overlay-danger.overlay-darken-2{background:#E42728;background:rgba(228,39,40,.6)}.danger.darken-3{color:#D71A1C!important}.bg-danger.bg-darken-3{background-color:#D71A1C!important}.btn-danger.btn-darken-3,.btn-danger.btn-darken-3:hover{border-color:#E42728!important;background-color:#D71A1C!important}.btn-danger.btn-darken-3:active,.btn-danger.btn-darken-3:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-darken-3{border-color:#D71A1C!important;color:#D71A1C!important}.btn-outline-danger.btn-outline-darken-3:hover{background-color:#D71A1C!important}.border-danger.border-darken-3{border:1px solid #D71A1C!important}.border-top-danger.border-top-darken-3{border-top:1px solid #D71A1C!important}.border-bottom-danger.border-bottom-darken-3{border-bottom:1px solid #D71A1C!important}.border-left-danger.border-left-darken-3{border-left:1px solid #D71A1C!important}.border-right-danger.border-right-darken-3{border-right:1px solid #D71A1C!important}.btn-danger.btn-darken-4,.btn-danger.btn-darken-4:hover{border-color:#E42728!important}.overlay-danger.overlay-darken-3{background:#D71A1C;background:rgba(215,26,28,.6)}.bg-danger.bg-darken-4,.btn-danger.btn-darken-4{background-color:#C01819!important}.danger.darken-4{color:#C01819!important}.btn-danger.btn-darken-4:hover{background-color:#D71A1C!important}.btn-danger.btn-darken-4:active,.btn-danger.btn-darken-4:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-darken-4{border-color:#C01819!important;color:#C01819!important}.btn-outline-danger.btn-outline-darken-4:hover{background-color:#C01819!important}.border-danger.border-darken-4{border:1px solid #C01819!important}.border-top-danger.border-top-darken-4{border-top:1px solid #C01819!important}.border-bottom-danger.border-bottom-darken-4{border-bottom:1px solid #C01819!important}.border-left-danger.border-left-darken-4{border-left:1px solid #C01819!important}.border-right-danger.border-right-darken-4{border-right:1px solid #C01819!important}.btn-danger.btn-accent-1,.btn-danger.btn-accent-1:hover{border-color:#E42728!important}.overlay-danger.overlay-darken-4{background:#C01819;background:rgba(192,24,25,.6)}.bg-danger.bg-accent-1,.btn-danger.btn-accent-1{background-color:#FFEEF1!important}.danger.accent-1{color:#FFEEF1!important}.btn-danger.btn-accent-1:hover{background-color:#D71A1C!important}.btn-danger.btn-accent-1:active,.btn-danger.btn-accent-1:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-accent-1{border-color:#FFEEF1!important;color:#FFEEF1!important}.btn-outline-danger.btn-outline-accent-1:hover{background-color:#FFEEF1!important}.border-danger.border-accent-1{border:1px solid #FFEEF1!important}.border-top-danger.border-top-accent-1{border-top:1px solid #FFEEF1!important}.border-bottom-danger.border-bottom-accent-1{border-bottom:1px solid #FFEEF1!important}.border-left-danger.border-left-accent-1{border-left:1px solid #FFEEF1!important}.border-right-danger.border-right-accent-1{border-right:1px solid #FFEEF1!important}.btn-danger.btn-accent-2,.btn-danger.btn-accent-2:hover{border-color:#E42728!important}.overlay-danger.overlay-accent-1{background:#FFEEF1;background:rgba(255,238,241,.6)}.bg-danger.bg-accent-2,.btn-danger.btn-accent-2{background-color:#FFD6DB!important}.danger.accent-2{color:#FFD6DB!important}.btn-danger.btn-accent-2:hover{background-color:#D71A1C!important}.btn-danger.btn-accent-2:active,.btn-danger.btn-accent-2:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-accent-2{border-color:#FFD6DB!important;color:#FFD6DB!important}.btn-outline-danger.btn-outline-accent-2:hover{background-color:#FFD6DB!important}.border-danger.border-accent-2{border:1px solid #FFD6DB!important}.border-top-danger.border-top-accent-2{border-top:1px solid #FFD6DB!important}.border-bottom-danger.border-bottom-accent-2{border-bottom:1px solid #FFD6DB!important}.border-left-danger.border-left-accent-2{border-left:1px solid #FFD6DB!important}.border-right-danger.border-right-accent-2{border-right:1px solid #FFD6DB!important}.btn-danger.btn-accent-3,.btn-danger.btn-accent-3:hover{border-color:#E42728!important}.overlay-danger.overlay-accent-2{background:#FFD6DB;background:rgba(255,214,219,.6)}.bg-danger.bg-accent-3,.btn-danger.btn-accent-3{background-color:#FFECEE!important}.danger.accent-3{color:#FFECEE!important}.btn-danger.btn-accent-3:hover{background-color:#D71A1C!important}.btn-danger.btn-accent-3:active,.btn-danger.btn-accent-3:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-accent-3{border-color:#FFECEE!important;color:#FFECEE!important}.btn-outline-danger.btn-outline-accent-3:hover{background-color:#FFECEE!important}.border-danger.border-accent-3{border:1px solid #FFECEE!important}.border-top-danger.border-top-accent-3{border-top:1px solid #FFECEE!important}.border-bottom-danger.border-bottom-accent-3{border-bottom:1px solid #FFECEE!important}.border-left-danger.border-left-accent-3{border-left:1px solid #FFECEE!important}.border-right-danger.border-right-accent-3{border-right:1px solid #FFECEE!important}.btn-danger.btn-accent-4,.btn-danger.btn-accent-4:hover{border-color:#E42728!important}.overlay-danger.overlay-accent-3{background:#FFECEE;background:rgba(255,236,238,.6)}.bg-danger.bg-accent-4,.btn-danger.btn-accent-4{background-color:#FFD3D7!important}.danger.accent-4{color:#FFD3D7!important}.btn-danger.btn-accent-4:hover{background-color:#D71A1C!important}.btn-danger.btn-accent-4:active,.btn-danger.btn-accent-4:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-accent-4{border-color:#FFD3D7!important;color:#FFD3D7!important}.btn-outline-danger.btn-outline-accent-4:hover{background-color:#FFD3D7!important}.border-danger.border-accent-4{border:1px solid #FFD3D7!important}.border-top-danger.border-top-accent-4{border-top:1px solid #FFD3D7!important}.border-bottom-danger.border-bottom-accent-4{border-bottom:1px solid #FFD3D7!important}.border-left-danger.border-left-accent-4{border-left:1px solid #FFD3D7!important}.border-right-danger.border-right-accent-4{border-right:1px solid #FFD3D7!important}.overlay-danger.overlay-accent-4{background:#FFD3D7;background:rgba(255,211,215,.6)}.bg-danger.bg-gradient-bg,.btn-danger.btn-gradient-bg{background-color:#640064!important}.danger.gradient-bg{color:#640064!important}.btn-danger.btn-gradient-bg{border-color:#E42728!important}.btn-danger.btn-gradient-bg:hover{border-color:#E42728!important;background-color:#D71A1C!important}.btn-danger.btn-gradient-bg:active,.btn-danger.btn-gradient-bg:focus{border-color:#D71A1C!important;background-color:#C01819!important}.btn-outline-danger.btn-outline-gradient-bg{border-color:#640064!important;color:#640064!important}.btn-outline-danger.btn-outline-gradient-bg:hover{background-color:#640064!important}input:focus~.bg-danger{box-shadow:0 0 0 .075rem #FFF,0 0 0 .21rem #640064!important}.border-danger.border-gradient-bg{border:1px solid #640064!important}.border-top-danger.border-top-gradient-bg{border-top:1px solid #640064!important}.border-bottom-danger.border-bottom-gradient-bg{border-bottom:1px solid #640064!important}.border-left-danger.border-left-gradient-bg{border-left:1px solid #640064!important}.border-right-danger.border-right-gradient-bg{border-right:1px solid #640064!important}.overlay-danger.overlay-gradient-bg{background:#640064;background:rgba(100,0,100,.6)} \ No newline at end of file diff --git a/assets/css/components.css b/assets/css/components.css new file mode 100644 index 0000000..894d30c --- /dev/null +++ b/assets/css/components.css @@ -0,0 +1,2791 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +html { + font-size: 14px; + height: 100%; + letter-spacing: .01rem; } + html body { + height: 100%; + background-color: #f8f8f8; + direction: ltr; + /* + * Blank page + */ } + html body .content { + padding: 0; + position: relative; + transition: 300ms ease all; + backface-visibility: hidden; + min-height: calc(100% - 4rem); + margin-left: 260px; } + html body .content.app-content { + overflow: hidden; } + html body .content.app-content.show-overlay .content-overlay { + z-index: 10; + opacity: 1; } + html body .content.app-content.show-overlay .content-overlay ~ .header-navbar-shadow { + background: linear-gradient(180deg, rgba(44, 48, 60, 0.9) 44%, rgba(44, 48, 60, 0.43) 73%, rgba(44, 48, 60, 0)); } + html body .content.app-content .content-overlay { + position: fixed; + opacity: 0; + width: 100%; + height: 100%; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.5); + cursor: pointer; + transition: all .7s; + z-index: -1; } + html body .content.app-content .content-area-wrapper { + height: calc(100% - 5rem); + margin: calc(5rem + 2.7rem) 2.2rem 0; + display: flex; + position: relative; } + html body .content.app-content .content-area-wrapper .content-wrapper { + margin-top: 0; + height: calc(100vh - 13rem); + height: calc(var(--vh, 1vh) * 100 - 13rem); } + html body .content .content-wrapper { + padding: calc(2.2rem - 0.4rem) 2.2rem 0; + margin-top: 6rem; } + html body .content .content-wrapper .content-header-title { + font-weight: 500; + color: #636363; + margin-right: 1rem; } + html body .content .content-wrapper .content-header-right .dropdown-toggle::after { + display: none; } + html body .content .content-wrapper .content-header-right .dropdown-toggle i { + margin-right: 0; } + html body .content .content-wrapper .content-header-right .btn-icon { + padding: .8rem; } + html body .content .content-wrapper .content-header-right .btn-icon i { + font-size: 1rem; } + html body.navbar-hidden .app-content .content-wrapper { + padding: 2.2rem; + margin-top: 0; } + html body.navbar-hidden .app-content .content-area-wrapper { + padding: 0; + margin-top: 2.5rem; } + html body.navbar-static .main-menu { + top: 0; } + html body.navbar-static .app-content .navbar-container { + padding-left: 2.2rem; + padding-right: 1.2rem; } + html body.navbar-static .app-content .content-wrapper { + padding: 2.2rem; + margin-top: 0; + padding-top: 1rem; } + html body.navbar-static .app-content .content-area-wrapper { + margin-top: 1rem; } + html body.navbar-sticky .app-content .navbar-container { + padding-left: 2.2rem; + padding-right: 1rem; } + html body.navbar-sticky .app-content .navbar-container .search-input .search-list.show { + width: 98%; + left: 1%; } + html body.navbar-sticky .app-content .content-wrapper { + padding: 2.2rem; + margin-top: 4.65rem; } + html body.navbar-static .navbar-container, html body.navbar-sticky .navbar-container { + padding-right: 1rem; } + html body.navbar-static .navbar-container .search-input .search-list.show, html body.navbar-sticky .navbar-container .search-input .search-list.show { + width: 98%; + left: 1%; } + html body.fixed-footer .content.app-content { + margin-bottom: 3rem; } + html body p { + line-height: 1.5rem; } + html body.bg-full-screen-image { + background: url(/assets/images/background_generic.jpg) no-repeat center center; + background-size: cover; } + html body.blank-page .content { + margin-left: 0; } + html body.blank-page .content.app-content { + overflow: overlay; + overflow-x: hidden; } + html body.blank-page .content.app-content .header-navbar-shadow { + display: none; } + html body.blank-page .content-wrapper { + padding: 0 !important; + margin-top: 0; } + html body.blank-page .content-wrapper .flexbox-container { + display: flex; + align-items: center; + height: 100vh; + height: calc(var(--vh, 1vh) * 100); + justify-content: center; } + html body[data-col="1-column"] .content, html body[data-col="1-column"] .footer { + margin-left: 0px !important; } + html .pace .pace-progress { + background: #3a50dc; } + +.app-content.center-layout { + overflow: hidden; } + +/* +* Col 3 layout for detached and general type +*/ +@media (min-width: 992px) { + body .content-right { + width: calc(100vw - (100vw - 100%) - 260px); + float: right; } + body .content-left { + width: calc(100vw - (100vw - 100%) - 260px); + float: left; } + body .content-detached { + width: 100%; } + body .content-detached.content-right { + float: right; + margin-left: -260px; } + body .content-detached.content-right .content-body { + margin-left: calc(260px + 2.2rem); } + body .content-detached.content-left { + float: left; + margin-right: -260px; } + body .content-detached.content-left .content-body { + margin-right: calc(260px + 2.2rem); } + .sidebar-right.sidebar-sticky { + float: right !important; + margin-left: -260px; + width: 260px !important; + margin-top: 6rem; } } + +.truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; } + +@media (max-width: 575.98px) { + html body .content .content-wrapper { + padding: calc(2.2rem - 0.4rem) calc(2.2rem - 1rem) 0; } } + +@media (max-width: 575.98px) { + body.navbar-static .app-content .header-navbar .navbar-container, body.navbar-sticky .app-content .header-navbar .navbar-container { + padding-left: 1rem; + padding-right: .5rem; } } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + html.full-screen { + width: 100%; } + html.full-screen .content.app-content { + height: 100%; + overflow: scroll; + overflow-x: hidden; } } + +/*========================================================================================= + File Name: sidebar.scss + Description: content sidebar specific scss. + ---------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +==========================================================================================*/ +.sidebar { + position: relative; + width: 100%; } + @media (min-width: 992px) { + .sidebar { + vertical-align: top; } } + +.sidebar-fixed { + position: fixed; + height: 100%; + overflow: scroll; } + +.sidenav-overlay { + position: fixed; + top: 0; + left: 0; + right: 0; + height: 120vh; + background-color: rgba(0, 0, 0, 0.5); + z-index: 997; + display: none; } + +.drag-target { + height: 100%; + width: 40px; + position: fixed; + top: 0; + left: -10px; + z-index: 1036; } + +@media (min-width: 992px) { + .sidebar-left { + float: left; } + .sidebar-right { + float: right; } } + +footer.footer { + padding: 1rem 2.2rem; } + footer.footer a { + margin: 0 0.3rem; } + footer.footer span i { + margin-left: 0.5rem; + font-size: 1.51rem; + color: #ea5455; + position: relative; + top: 2px; } + footer.footer .scroll-top { + padding: .81rem .83rem; } + +footer.navbar-shadow { + box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.15); } + +footer.navbar-border { + border-top: 1px solid #E4E7ED; } + +body.fixed-footer footer.footer-light { + background: #fff; + box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.15); } + +body.fixed-footer footer.footer-dark { + background: #b8c2cc; + color: #fff; } + +.scroll-top { + position: fixed; + bottom: 5%; + right: 30px; + display: none; + z-index: 99; } + +/*========================================================================================= + File Name: navigations.scss + Description: Common mixin for menus, contain dark and light version scss. + ---------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +==========================================================================================*/ +.main-menu { + z-index: 1031; + position: absolute; + display: table-cell; + height: 100%; + overflow: hidden; } + .main-menu.menu-light { + color: #626262; + background: #fff; } + .main-menu.menu-light .main-menu-header { + padding: 20px; } + .main-menu.menu-light .main-menu-header .menu-search { + background: #e6e6e6; + padding: 0.5rem 1rem; + color: #494949; } + .main-menu.menu-light .main-menu-header .menu-search:focus { + border-color: #d9d9d9; } + .main-menu.menu-light .navigation { + background: #fff; } + .main-menu.menu-light .navigation .navigation-header { + color: #999999; + margin: calc(2.2rem - 0.2rem) 0 0.8rem 2.2rem; + padding: 0; + line-height: 1.5; + letter-spacing: .01rem; } + .main-menu.menu-light .navigation .navigation-header span { + font-weight: 500; } + .main-menu.menu-light .navigation li.has-sub ul.menu-content { + padding: 7px; + margin: -7px -7px 0 -7px; } + .main-menu.menu-light .navigation li a { + color: #565656; + padding: 10px 15px 10px 15px; + line-height: 1.45; + transition: padding 0.35s ease 0s !important; } + .main-menu.menu-light .navigation li a span.menu-sub-title { + color: #afafaf; } + .main-menu.menu-light .navigation li.hover > a { + padding-left: 25px; + transition: padding 0.35s ease 0s !important; } + .main-menu.menu-light .navigation > li { + padding: 0 15px; } + .main-menu.menu-light .navigation > li > a .label { + margin-top: 4px; + margin-right: 5px; } + .main-menu.menu-light .navigation > li > a i { + position: relative; + top: 1px; } + .main-menu.menu-light .navigation > li.open > a, .main-menu.menu-light .navigation > li.sidebar-group-active > a { + color: #494949; + background: whitesmoke; + transition: transform 0.25s ease 0s, -webkit-transform 0.25s ease 0s; + border-radius: 6px; + margin-bottom: 7px; } + .main-menu.menu-light .navigation > li:not(.open) > ul { + display: none; } + .main-menu.menu-light .navigation > li.active > a { + background: linear-gradient(118deg, #3a50dc, rgb(24, 61, 176)); + box-shadow: 0 0 10px 1px rgba(115, 103, 240, 0.7); + color: #fff; + font-weight: 400; + border-radius: 4px; } + .main-menu.menu-light .navigation > li .active { + background: #f0f0f0; } + .main-menu.menu-light .navigation > li .active > a { + color: #3a50dc; + margin-bottom: 0; } + .main-menu.menu-light .navigation > li .active .hover > a { + background: whitesmoke; } + .main-menu.menu-light .navigation > li ul { + padding: 0; + margin: 0; } + .main-menu.menu-light .navigation > li ul li { + color: #626262; + background: transparent; } + .main-menu.menu-light .navigation > li ul li > a { + padding: 10px 15px 10px 20px; } + .main-menu.menu-light .navigation > li ul .has-sub:not(.open) > ul { + display: none; } + .main-menu.menu-light .navigation > li ul .open > a, .main-menu.menu-light .navigation > li ul .sidebar-group-active > a { + color: #626262; } + .main-menu.menu-light .navigation > li ul .open > ul, .main-menu.menu-light .navigation > li ul .sidebar-group-active > ul { + display: block; } + .main-menu.menu-light .navigation > li ul .open > ul .open > ul, .main-menu.menu-light .navigation > li ul .sidebar-group-active > ul .open > ul { + display: block; } + .main-menu.menu-light .navigation > li ul .hover > a, .main-menu.menu-light .navigation > li ul:hover > a { + color: #6c6c6c; } + .main-menu.menu-light .navigation > li ul .active { + background: linear-gradient(118deg, #3a50dc, rgb(24, 61, 176)); + box-shadow: 0 0 10px 1px rgba(115, 103, 240, 0.7); + border-radius: 4px; } + .main-menu.menu-light .navigation > li ul .active > a { + color: #fff; } + .main-menu.menu-light .navigation > li > ul { + background: #fff; } + .main-menu.menu-light ul.menu-popout { + background: #fff; } + .main-menu.menu-light ul.menu-popout li a { + color: #626262; } + .main-menu.menu-light ul.menu-popout li a span.menu-sub-title { + color: #afafaf; } + .main-menu.menu-light ul.menu-popout li.hover > a, .main-menu.menu-light ul.menu-popout li:hover > a, .main-menu.menu-light ul.menu-popout li.open > a { + background: #f0f0f0; } + .main-menu.menu-light ul.menu-popout .has-sub:not(.open) > ul { + display: none; } + .main-menu.menu-light ul.menu-popout .open > a { + color: #626262; } + .main-menu.menu-light ul.menu-popout .open > ul { + display: block; } + .main-menu.menu-light ul.menu-popout .open > ul .open { + background: #e8e8e8; } + .main-menu.menu-light ul.menu-popout .open > ul .open > ul { + display: block; + background: #e8e8e8; } + .main-menu.menu-light ul.menu-popout .hover > a, .main-menu.menu-light ul.menu-popout:hover > a { + color: #6c6c6c; + background-color: whitesmoke; } + .main-menu.menu-light ul.menu-popout .active { + background: rgba(0, 0, 0, 0.06); } + .main-menu.menu-light ul.menu-popout .active > a { + color: #7c7c7c; + background-color: whitesmoke; } + .main-menu.menu-light ul.menu-popout .active .hover > a, .main-menu.menu-light ul.menu-popout .active :hover > a { + background-color: transparent; } + .main-menu.menu-dark { + color: #dcdcdc; + background: #10163a; } + .main-menu.menu-dark .main-menu-header { + padding: 20px; } + .main-menu.menu-dark .main-menu-header .menu-search { + background: #050712; + padding: 0.5rem 1rem; + color: #c3c3c3; } + .main-menu.menu-dark .main-menu-header .menu-search:focus { + border-color: black; } + .main-menu.menu-dark .navigation { + background: #10163a; } + .main-menu.menu-dark .navigation .navigation-header { + color: white; + margin: calc(2.2rem - 0.2rem) 0 0.8rem 2.2rem; + padding: 0; + line-height: 1.5; + letter-spacing: .01rem; } + .main-menu.menu-dark .navigation .navigation-header span { + font-weight: 500; } + .main-menu.menu-dark .navigation li.has-sub ul.menu-content { + padding: 7px; + margin: -7px -7px 0 -7px; } + .main-menu.menu-dark .navigation li a { + color: #d0d0d0; + padding: 10px 15px 10px 15px; + line-height: 1.45; + transition: padding 0.35s ease 0s !important; } + .main-menu.menu-dark .navigation li a span.menu-sub-title { + color: white; } + .main-menu.menu-dark .navigation li.hover > a { + padding-left: 25px; + transition: padding 0.35s ease 0s !important; } + .main-menu.menu-dark .navigation > li { + padding: 0 15px; } + .main-menu.menu-dark .navigation > li > a .label { + margin-top: 4px; + margin-right: 5px; } + .main-menu.menu-dark .navigation > li > a i { + position: relative; + top: 1px; } + .main-menu.menu-dark .navigation > li.open > a, .main-menu.menu-dark .navigation > li.sidebar-group-active > a { + color: #c3c3c3; + background: #0c102a; + transition: transform 0.25s ease 0s, -webkit-transform 0.25s ease 0s; + border-radius: 6px; + margin-bottom: 7px; } + .main-menu.menu-dark .navigation > li:not(.open) > ul { + display: none; } + .main-menu.menu-dark .navigation > li.active > a { + background: linear-gradient(118deg, #3a50dc, rgb(24, 61, 176)); + box-shadow: 0 0 10px 1px rgba(115, 103, 240, 0.7); + color: #fff; + font-weight: 400; + border-radius: 4px; } + .main-menu.menu-dark .navigation > li .active { + background: #090d22; } + .main-menu.menu-dark .navigation > li .active > a { + color: #3a50dc; + margin-bottom: 0; } + .main-menu.menu-dark .navigation > li .active .hover > a { + background: #0c102a; } + .main-menu.menu-dark .navigation > li ul { + padding: 0; + margin: 0; } + .main-menu.menu-dark .navigation > li ul li { + color: #dcdcdc; + background: transparent; } + .main-menu.menu-dark .navigation > li ul li > a { + padding: 10px 15px 10px 20px; } + .main-menu.menu-dark .navigation > li ul .has-sub:not(.open) > ul { + display: none; } + .main-menu.menu-dark .navigation > li ul .open > a, .main-menu.menu-dark .navigation > li ul .sidebar-group-active > a { + color: #dcdcdc; } + .main-menu.menu-dark .navigation > li ul .open > ul, .main-menu.menu-dark .navigation > li ul .sidebar-group-active > ul { + display: block; } + .main-menu.menu-dark .navigation > li ul .open > ul .open > ul, .main-menu.menu-dark .navigation > li ul .sidebar-group-active > ul .open > ul { + display: block; } + .main-menu.menu-dark .navigation > li ul .hover > a, .main-menu.menu-dark .navigation > li ul:hover > a { + color: #e6e6e6; } + .main-menu.menu-dark .navigation > li ul .active { + background: linear-gradient(118deg, #3a50dc, rgb(24, 61, 176)); + box-shadow: 0 0 10px 1px rgba(115, 103, 240, 0.7); + border-radius: 4px; } + .main-menu.menu-dark .navigation > li ul .active > a { + color: #fff; } + .main-menu.menu-dark .navigation > li > ul { + background: #10163a; } + .main-menu.menu-dark ul.menu-popout { + background: #10163a; } + .main-menu.menu-dark ul.menu-popout li a { + color: #dcdcdc; } + .main-menu.menu-dark ul.menu-popout li a span.menu-sub-title { + color: white; } + .main-menu.menu-dark ul.menu-popout li.hover > a, .main-menu.menu-dark ul.menu-popout li:hover > a, .main-menu.menu-dark ul.menu-popout li.open > a { + background: #090d22; } + .main-menu.menu-dark ul.menu-popout .has-sub:not(.open) > ul { + display: none; } + .main-menu.menu-dark ul.menu-popout .open > a { + color: #dcdcdc; } + .main-menu.menu-dark ul.menu-popout .open > ul { + display: block; } + .main-menu.menu-dark ul.menu-popout .open > ul .open { + background: #060816; } + .main-menu.menu-dark ul.menu-popout .open > ul .open > ul { + display: block; + background: #060816; } + .main-menu.menu-dark ul.menu-popout .hover > a, .main-menu.menu-dark ul.menu-popout:hover > a { + color: #e6e6e6; + background-color: #0c102a; } + .main-menu.menu-dark ul.menu-popout .active { + background: rgba(0, 0, 0, 0.06); } + .main-menu.menu-dark ul.menu-popout .active > a { + color: #f6f6f6; + background-color: #0c102a; } + .main-menu.menu-dark ul.menu-popout .active .hover > a, .main-menu.menu-dark ul.menu-popout .active :hover > a { + background-color: transparent; } + .main-menu.menu-fixed { + position: fixed; + /* fallback if needed */ } + .main-menu.menu-fixed .main-menu-footer { + position: fixed; } + .main-menu.menu-static { + height: 100%; + padding-bottom: calc(100% - 20rem); } + .main-menu.menu-static .main-menu-content { + height: unset !important; } + .main-menu.menu-shadow { + box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05); } + .main-menu.menu-border { + border-right: 1px solid #E4E7ED; } + .main-menu .shadow-bottom { + display: none; + position: absolute; + z-index: 2; + height: 60px; + width: 100%; + pointer-events: none; + margin-top: -1.3rem; + filter: blur(5px); + background: linear-gradient(#fff 41%, rgba(255, 255, 255, 0.11) 95%, rgba(255, 255, 255, 0)); } + .main-menu.menu-native-scroll .main-menu-content { + overflow-y: scroll; } + .main-menu .navbar-header { + height: 100%; + width: 260px; + height: 5rem; + position: relative; + padding: 0.35rem 1rem 0.3rem 1.64rem; + transition: 300ms ease all; } + .main-menu .navbar-header .navbar-brand { + display: flex; + align-items: center; + margin-top: 1.35rem; } + .main-menu .navbar-header .navbar-brand .brand-logo { + background: url("/assets/images/iva_logo.svg") no-repeat; + height: 36px; + width: 36px; } + .main-menu .navbar-header .navbar-brand .brand-text { + color: #3a50dc; + padding-left: 1rem; + font-weight: 600; + letter-spacing: 0.01rem; + font-size: 1.57rem; + animation: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 fadein; } + .main-menu .navbar-header .modern-nav-toggle { + animation: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 fadein; } + .main-menu .main-menu-content { + height: calc(100% - 6rem) !important; + position: relative; } + .main-menu ul { + list-style: none; + margin: 0; + padding: 0; } + .main-menu ul.navigation-main { + overflow-x: hidden; } + .main-menu ul.navigation-main > li:first-child { + margin-top: .5rem; } + .main-menu a { + outline: none; } + .main-menu a:hover, .main-menu a:focus { + text-decoration: none; } + +.navigation { + font-size: 1.1rem; + font-family: "Montserrat", Helvetica, Arial, serif; + font-weight: 400; + overflow-y: hidden; + padding-bottom: 20px; } + .navigation .navigation-header { + font-family: "Montserrat", Helvetica, Arial, serif; + font-weight: 500; + line-height: 1.2; + padding: 12px 22px; + font-size: .9rem; + text-transform: uppercase; } + .navigation li { + position: relative; + white-space: nowrap; } + .navigation li a { + display: block; + text-overflow: ellipsis; + overflow: hidden; } + .navigation li a i { + font-size: 0.8rem; + margin-right: 1.38rem; } + .navigation li.disabled a { + cursor: not-allowed; } + +.menu-popout li.disabled a { + cursor: not-allowed; } + +.dropdown-notification .nav-link-label { + position: relative; } + +.dropdown-notification .notification-text { + margin-bottom: 0.5rem; + font-size: smaller; + color: #626262; } + +.dropdown-notification .notification-title { + color: rgba(255, 255, 255, 0.75); } + +.dropdown-notification .notification-tag { + position: relative; + top: -4px; } + +.dropdown-notification .dropdown-menu.dropdown-menu-right { + right: -2px; + padding: 0; } + .dropdown-notification .dropdown-menu.dropdown-menu-right::before { + background: #3a50dc; + border-color: #3a50dc; } + +.dropdown-notification .dropdown-menu-header { + border-top-left-radius: 5px; + border-top-right-radius: 5px; + background: #3a50dc; + color: #fff; + text-align: center; } + .dropdown-notification .dropdown-menu-header .dropdown-header h3 { + margin-bottom: 0.25rem; } + +.main-menu-header .user-content { + padding: 20px; } + .main-menu-header .user-content .media { + overflow: inherit; } + .main-menu-header .user-content .media-body { + vertical-align: bottom; + opacity: 1; + width: 150px; + white-space: nowrap; + transition: all .3s ease .15s; } + +.main-menu-footer { + position: relative; + overflow: hidden; + bottom: 0; + display: block; + z-index: 1000; + color: white; + background-color: #9aa9b7; } + .main-menu-footer.footer-open { + max-height: 500px; + transition: max-height 0.2s ease-in-out; } + .main-menu-footer a { + color: white; } + .main-menu-footer a:hover, .main-menu-footer a:focus { + color: #fff; } + .main-menu-footer .header { + height: 19px; + border-bottom: 1px solid #a9b5c1; } + .main-menu-footer .toggle { + transform: rotate(0deg); + transition: -webkit-transform 0.2s ease-in-out; } + .main-menu-footer .content { + padding: 0; } + .main-menu-footer .content .actions > a { + display: block; + float: left; + width: 33.33333%; + padding: 1rem 0; + color: white; + text-align: center; + border-top: 1px solid #a9b5c1; + border-left: 1px solid #a9b5c1; } + .main-menu-footer .content .actions > a > span { + font-size: 1.35rem; } + .main-menu-footer .content .actions > a:hover, .main-menu-footer .content .actions > a:focus { + color: #fff; } + +body.vertical-layout.vertical-menu.menu-expanded .main-menu-footer .content { + margin-left: 0; } + +body.menu-collapsed .menu-static { + padding-bottom: calc(100% - 14rem); } + +@media (max-width: 767.98px) { + .menu-hide .main-menu, + .menu-open .main-menu { + transition: transform .25s, top .35s, height .35s; } + .main-menu { + transform: translate3d(-240px, 0, 0); + backface-visibility: hidden; + perspective: 1000; } + .menu-open .main-menu { + transform: translate3d(0, 0, 0); } } + +@media (min-width: 768px) { + .drag-target { + z-index: 0; } } + +body.fixed-footer .main-menu.menu-fixed { + height: 100%; } + +@media (max-width: 1200px) { + body .main-menu.menu-static { + padding-bottom: 100%; } } + +.display-inline { + display: inline !important; } + +.display-block { + display: block !important; } + +.display-inline-block { + display: inline-block !important; } + +.display-hidden { + display: none !important; } + +.display-table-cell { + display: table-cell !important; } + +.position-top-0 { + top: 0; } + +.position-right-0 { + right: 0; } + +.position-bottom-0 { + bottom: 0; } + +.position-left-0 { + left: 0; } + +.zindex-1 { + z-index: 1 !important; } + +.zindex-2 { + z-index: 2 !important; } + +.zindex-3 { + z-index: 3 !important; } + +.zindex-4 { + z-index: 4 !important; } + +.zindex-0 { + z-index: 0 !important; } + +.zindex-minus-1 { + z-index: -1 !important; } + +.zindex-minus-2 { + z-index: -2 !important; } + +.zindex-minus-3 { + z-index: -3 !important; } + +.zindex-minus-4 { + z-index: -4 !important; } + +.no-edge-top { + top: 0 !important; } + +.no-edge-bottom { + bottom: 0 !important; } + +.no-edge-left { + left: 0 !important; } + +.no-edge-right { + right: 0 !important; } + +.cursor-pointer { + cursor: pointer; } + +.cursor-move { + cursor: move; } + +.cursor-default { + cursor: default; } + +.cursor-progress { + cursor: progress; } + +.cursor-not-allowed { + cursor: not-allowed; } + +.overflow-hidden { + overflow: hidden; } + +.overflow-visible { + overflow: visible; } + +.overflow-auto { + overflow: auto; } + +.overflow-scroll { + overflow: scroll; } + +.overflow-x-scroll { + overflow: scroll; } + +.overflow-y-scroll { + overflow: scroll; } + +.bullets-inside { + list-style: inside; } + +.list-style-circle { + list-style: circle; } + +.list-style-square { + list-style: square; } + +.list-style-icons { + padding-left: 10px; + margin-left: 0; + list-style: none; } + .list-style-icons > li i { + float: left; + width: 1em; + margin: 0 6px 0 0; } + +.border { + border: 1px solid; } + +.border-top { + border-top: 1px solid; } + +.border-bottom { + border-bottom: 1px solid; } + +.border-left { + border-left: 1px solid; } + +.border-right { + border-right: 1px solid; } + +.border-2 { + border-width: 2px !important; } + +.border-top-2 { + border-top-width: 2px !important; } + +.border-bottom-2 { + border-bottom-width: 2px !important; } + +.border-left-2 { + border-left-width: 2px !important; } + +.border-right-2 { + border-right-width: 2px !important; } + +.border-3 { + border-width: 3px !important; } + +.border-top-3 { + border-top-width: 3px !important; } + +.border-bottom-3 { + border-bottom-width: 3px !important; } + +.border-left-3 { + border-left-width: 3px !important; } + +.border-right-3 { + border-right-width: 3px !important; } + +.no-border-top-radius { + border-top-left-radius: 0 !important; + border-top-right-radius: 0 !important; } + +.no-border-bottom-radius { + border-bottom-left-radius: 0 !important; + border-bottom-right-radius: 0 !important; } + +.no-border-top-left-radius { + border-top-left-radius: 0 !important; } + +.no-border-top-right-radius { + border-top-right-radius: 0 !important; } + +.no-border-bottom-left-radius { + border-bottom-left-radius: 0 !important; } + +.no-border-bottom-right-radius { + border-bottom-right-radius: 0 !important; } + +.box-shadow-0 { + box-shadow: none !important; } + +.box-shadow-1 { + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); } + +.box-shadow-2 { + box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); } + +.box-shadow-3 { + box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); } + +.box-shadow-4 { + box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21); } + +.box-shadow-5 { + box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22); } + +.box-shadow-6 { + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08); } + +.fit { + max-width: 100% !important; } + +.half-width { + width: 50% !important; } + +.full-width { + width: 100% !important; } + +.full-height { + height: 100% !important; } + +.width-50 { + width: 50px !important; } + +.width-100 { + width: 100px !important; } + +.width-150 { + width: 150px !important; } + +.width-200 { + width: 200px !important; } + +.width-250 { + width: 250px !important; } + +.width-300 { + width: 300px !important; } + +.width-350 { + width: 350px !important; } + +.width-400 { + width: 400px !important; } + +.width-450 { + width: 450px !important; } + +.width-500 { + width: 500px !important; } + +.width-550 { + width: 550px !important; } + +.width-600 { + width: 600px !important; } + +.width-650 { + width: 650px !important; } + +.width-700 { + width: 700px !important; } + +.width-750 { + width: 750px !important; } + +.width-800 { + width: 800px !important; } + +.width-5-per { + width: 5% !important; } + +.width-10-per { + width: 10% !important; } + +.width-15-per { + width: 15% !important; } + +.width-20-per { + width: 20% !important; } + +.width-25-per { + width: 25% !important; } + +.width-30-per { + width: 30% !important; } + +.width-35-per { + width: 35% !important; } + +.width-40-per { + width: 40% !important; } + +.width-45-per { + width: 45% !important; } + +.width-50-per { + width: 50% !important; } + +.width-55-per { + width: 55% !important; } + +.width-60-per { + width: 60% !important; } + +.width-65-per { + width: 65% !important; } + +.width-70-per { + width: 70% !important; } + +.width-75-per { + width: 75% !important; } + +.width-80-per { + width: 80% !important; } + +.width-90-per { + width: 90% !important; } + +.width-95-per { + width: 95% !important; } + +.height-50 { + height: 50px !important; } + +.height-75 { + height: 75px !important; } + +.height-100 { + height: 100px !important; } + +.height-150 { + height: 150px !important; } + +.height-200 { + height: 200px !important; } + +.height-250 { + height: 250px !important; } + +.height-300 { + height: 300px !important; } + +.height-350 { + height: 350px !important; } + +.height-400 { + height: 400px !important; } + +.height-450 { + height: 450px !important; } + +.height-500 { + height: 500px !important; } + +.height-550 { + height: 550px !important; } + +.height-600 { + height: 600px !important; } + +.height-650 { + height: 650px !important; } + +.height-700 { + height: 700px !important; } + +.height-750 { + height: 750px !important; } + +.height-800 { + height: 800px !important; } + +.height-5-per { + height: 5% !important; } + +.height-10-per { + height: 10% !important; } + +.height-15-per { + height: 15% !important; } + +.height-20-per { + height: 20% !important; } + +.height-25-per { + height: 25% !important; } + +.height-30-per { + height: 30% !important; } + +.height-35-per { + height: 35% !important; } + +.height-40-per { + height: 40% !important; } + +.height-45-per { + height: 45% !important; } + +.height-50-per { + height: 50% !important; } + +.height-55-per { + height: 55% !important; } + +.height-60-per { + height: 60% !important; } + +.height-65-per { + height: 65% !important; } + +.height-70-per { + height: 70% !important; } + +.height-75-per { + height: 75% !important; } + +.height-80-per { + height: 80% !important; } + +.full-height-vh-with-nav { + height: calc(100vh - 5rem - 4rem); + height: calc(var(--vh, 1vh) * 100 - 5rem - 4rem); } + +.full-height-vh { + height: 100vh; + height: calc(var(--vh, 1vh) * 100); } + +.line-height-1 { + line-height: 1 !important; } + +.line-height-2 { + line-height: 2 !important; } + +.rotate-45 { + transform: rotate(45deg); } + +.rotate-45-inverse { + transform: rotate(-45deg); } + +.rotate-90 { + transform: rotate(45deg); } + +.rotate-90-inverse { + transform: rotate(-45deg); } + +.rotate-180 { + transform: rotate(45deg); } + +.rotate-180-inverse { + transform: rotate(-45deg); } + +.pull-up { + transition: all 0.25s ease; } + .pull-up:hover { + transform: translateY(-4px) scale(1.02); + box-shadow: 0px 14px 24px rgba(62, 57, 107, 0.2); + z-index: 30; } + +.spinner { + display: inline-block; + animation: spin 1s linear infinite; } + +@keyframes spin { + 0% { + transform: rotate(0deg); } + 100% { + transform: rotate(360deg); } } + +.spinner-reverse { + display: inline-block; + animation: spin-reverse 1s linear infinite; } + +@keyframes spin-reverse { + 0% { + transform: rotate(0deg); } + 100% { + transform: rotate(-360deg); } } + +.bg-cover { + background-size: cover !important; } + +.background-repeat { + background-repeat: repeat !important; } + +.background-no-repeat { + background-repeat: no-repeat !important; } + +.img-xl { + width: 64px !important; + height: 64px !important; } + +.img-lg { + width: 44px !important; + height: 44px !important; } + +.img-sm { + width: 36px !important; + height: 36px !important; } + +.img-xs { + width: 32px !important; + height: 32px !important; } + +.bullet { + width: 1rem; + height: 1rem; + border-radius: 50%; + display: inline-block; } + .bullet.bullet-xs { + width: 0.5rem; + height: 0.5rem; } + .bullet.bullet-sm { + width: 0.714rem; + height: 0.714rem; } + .bullet.bullet-lg { + width: 1.25rem; + height: 1.25rem; } + +.avatar { + white-space: nowrap; + border-radius: 50%; + position: relative; + cursor: pointer; + color: #fff; + display: inline-flex; + font-size: .75rem; + text-align: center; + vertical-align: middle; + margin: 5px; } + .avatar .avatar-content { + width: 32px; + height: 32px; + display: flex; + justify-content: center; + align-items: center; } + .avatar .avatar-content .avatar-icon { + font-size: 1.2rem; } + .avatar [class*="avatar-status-"] { + border-radius: 50%; + width: 11px; + height: 11px; + position: absolute; + right: 0; + bottom: 0; + border: 1px solid #fff; } + .avatar [class*="avatar-status-"].avatar-status-lg { + width: 17px; + height: 17px; + border-width: 2px; } + .avatar .avatar-status-online { + background-color: #28c76f; } + .avatar .avatar-status-busy { + background-color: #ea5455; } + .avatar .avatar-status-away { + background-color: #ff9f43; } + .avatar .avatar-status-offline { + background-color: #b8c2cc; } + .avatar img { + border-radius: 50%; } + .avatar.avatar-xl { + font-size: 1.5rem; } + .avatar.avatar-xl img { + width: 70px; + height: 70px; } + .avatar.avatar-xl .avatar-content { + height: 70px; + width: 70px; } + .avatar.avatar-xl .avatar-content .avatar-icon { + font-size: 3rem; } + .avatar.avatar-lg { + font-size: 1.2rem; } + .avatar.avatar-lg img { + width: 50px; + height: 50px; } + .avatar.avatar-lg .avatar-content { + width: 50px; + height: 50px; } + .avatar.avatar-lg .avatar-content .avatar-icon { + font-size: 2rem; } + .avatar.avatar-md { + font-size: 1.5rem; } + .avatar.avatar-md img { + width: 38px; + height: 38px; } + .avatar.avatar-md .avatar-content { + width: 38px; + height: 38px; } + .avatar.avatar-md .avatar-content .avatar-icon { + font-size: 1.5rem; } + .avatar.avatar-sm .avatar-content { + width: 24px; + height: 24px; } + .avatar.avatar-sm .avatar-content .avatar-icon { + font-size: 1rem; } + .avatar.avatar-sm img { + width: 24px; + height: 24px; } + +/*========================================================================================= + File Name: search.scss + Description: Search functionality. + ---------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +==========================================================================================*/ +.navbar-container a.nav-link-search { + float: left; } + +.navbar-container .search-input { + float: left; + width: 0; } + .navbar-container .search-input input { + width: 0; + border: none; + background: none; + transition: all 0.2s ease-out; + line-height: 16px; + padding: 1.6rem 3.6rem; } + .navbar-container .search-input.open { + position: absolute; + left: 0; + background: #fff; + right: 0; + width: 100%; + z-index: 1000; + border-radius: 0.5rem; } + .navbar-container .search-input.open .search-input-close, + .navbar-container .search-input.open .search-input-icon { + display: block; } + .navbar-container .search-input.open input { + width: 100%; + outline: none; + background: none; + transition: all 0.3s ease-out; } + .navbar-container .search-input .search-list { + max-height: 450px; + height: calc(100vh - 11rem); + position: absolute; + top: 100%; + left: 0; + background: #fff; + width: 100%; + margin-top: .5rem; + padding-left: 0; + border-radius: 0.5rem; + display: none; } + .navbar-container .search-input .search-list.search-list-bookmark { + height: auto !important; } + .navbar-container .search-input .search-list.show { + display: block; } + .navbar-container .search-input .search-list li a { + padding: .9rem 1rem; + color: #626262; } + .navbar-container .search-input .search-list li a span[class*="feather icon-"] { + font-size: 1.25rem; } + .navbar-container .search-input .search-list li:first-child { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } + .navbar-container .search-input .search-list li:last-child { + border-bottom-left-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } + .navbar-container .search-input .search-list li.auto-suggestion:hover, .navbar-container .search-input .search-list li.auto-suggestion.current_item { + background-color: #f1f1f1; } + .navbar-container .search-input .search-input-icon { + z-index: 2; + display: none; + position: absolute; + left: 1.5rem; + top: 37%; + cursor: pointer; } + .navbar-container .search-input .search-input-icon i { + font-size: 1.25rem; } + .navbar-container .search-input .search-input-close { + z-index: 1; + display: none; + position: absolute; + right: 2rem; + top: 32%; + cursor: pointer; } + .navbar-container .search-input .search-input-close i { + font-size: 1.75rem; } + +.navbar-container .bookmark-input { + position: absolute; + top: 102%; + width: 25%; + display: none; } + .navbar-container .bookmark-input.show { + display: block; } + .navbar-container .bookmark-input .bookmark-input-icon { + position: absolute; + z-index: 1; + top: .85rem; + left: 1rem; } + .navbar-container .bookmark-input input { + padding: .7rem .7rem .7rem 2.5rem; + width: 100%; + background: #fff; + border: 1px solid rgba(0, 0, 0, 0.2); } + .navbar-container .bookmark-input input:focus { + border: 1px solid #3a50dc; } + .navbar-container .bookmark-input .search-list { + box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), 0 5px 15px 0 rgba(0, 0, 0, 0.08); } + +.navbar-container .bookmark-icon { + cursor: pointer; } + +.navbar-container .dropdown.bookmark-dropdown { + padding: 1.4rem 0.5rem 1.35rem; } + .navbar-container .dropdown.bookmark-dropdown .dropdown-toggle:after { + display: none; } + +.navbar-container .search-data-title { + line-height: 1.25rem; } + +.navbar-dark .search-input .input, +.navbar-semi-light .search-input .input { + color: #F5F7FA; + border-radius: .5rem; } + +.navbar-dark .search-input.open .input, +.navbar-semi-light .search-input.open .input { + color: #F5F7FA; + border: 1px solid #F5F7FA; } + +body.navbar-static .navbar-container .search-input.open { + border-radius: 0; } + +.apexcharts-canvas .apexcharts-tooltip { + color: #626262 !important; } + .apexcharts-canvas .apexcharts-tooltip.dark { + color: #fff !important; } + +.apexcharts-canvas .apexcharts-toolbar .apexcharts-menu .apexcharts-menu-item { + color: #626262; } + +.apexcharts-xaxistooltip { + color: #626262 !important; } + +#client-retention-chart .apexcharts-canvas .apexcharts-legend { + left: -14px !important; } + +.apexcharts-toolbar { + z-index: 10; } + +.btn-social, .btn-social-icon { + position: relative; + padding-left: 4.95rem; + text-align: left; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + .btn-social > :first-child, .btn-social-icon > :first-child { + position: absolute; + left: 0; + top: 2px; + bottom: 0; + width: 2.95rem; + line-height: 2.7rem; + font-size: 1rem; + text-align: center; + border-right: 1px solid rgba(0, 0, 0, 0.2); } + +.btn-social-icon { + height: 2.95rem; + width: 2.95rem; + padding: 0; } + .btn-social-icon > :first-child { + border: none; + text-align: center; + width: 100% !important; } + +.btn-adn { + background-color: #d87a68; + color: #fff; + background-color: #d87a68; + border-color: #fff; } + .btn-adn:hover { + color: #fff; + background-color: #d87a68; + border-color: #d87a68; } + .btn-adn:focus, .btn-adn.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-adn.disabled, .btn-adn:disabled { + color: #fff; + background-color: #d87a68; + border-color: #fff; } + .btn-adn:not(:disabled):not(.disabled):active, .btn-adn:not(:disabled):not(.disabled).active, + .show > .btn-adn.dropdown-toggle { + color: #fff; + background-color: #ce563f; + border-color: #dfdfdf; } + .btn-adn:not(:disabled):not(.disabled):active:focus, .btn-adn:not(:disabled):not(.disabled).active:focus, + .show > .btn-adn.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-bitbucket { + background-color: #205081; + color: #fff; + background-color: #205081; + border-color: #fff; } + .btn-bitbucket:hover { + color: #fff; + background-color: #205081; + border-color: #205081; } + .btn-bitbucket:focus, .btn-bitbucket.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-bitbucket.disabled, .btn-bitbucket:disabled { + color: #fff; + background-color: #205081; + border-color: #fff; } + .btn-bitbucket:not(:disabled):not(.disabled):active, .btn-bitbucket:not(:disabled):not(.disabled).active, + .show > .btn-bitbucket.dropdown-toggle { + color: #fff; + background-color: #163758; + border-color: #dfdfdf; } + .btn-bitbucket:not(:disabled):not(.disabled):active:focus, .btn-bitbucket:not(:disabled):not(.disabled).active:focus, + .show > .btn-bitbucket.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-dropbox { + background-color: #1087dd; + color: #fff; + background-color: #1087dd; + border-color: #fff; } + .btn-dropbox:hover { + color: #fff; + background-color: #1087dd; + border-color: #1087dd; } + .btn-dropbox:focus, .btn-dropbox.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-dropbox.disabled, .btn-dropbox:disabled { + color: #fff; + background-color: #1087dd; + border-color: #fff; } + .btn-dropbox:not(:disabled):not(.disabled):active, .btn-dropbox:not(:disabled):not(.disabled).active, + .show > .btn-dropbox.dropdown-toggle { + color: #fff; + background-color: #0d6aad; + border-color: #dfdfdf; } + .btn-dropbox:not(:disabled):not(.disabled):active:focus, .btn-dropbox:not(:disabled):not(.disabled).active:focus, + .show > .btn-dropbox.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-facebook { + background-color: #3b5998; + color: #fff; + background-color: #3b5998; + border-color: #fff; } + .btn-facebook:hover { + color: #fff; + background-color: #3b5998; + border-color: #3b5998; } + .btn-facebook:focus, .btn-facebook.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-facebook.disabled, .btn-facebook:disabled { + color: #fff; + background-color: #3b5998; + border-color: #fff; } + .btn-facebook:not(:disabled):not(.disabled):active, .btn-facebook:not(:disabled):not(.disabled).active, + .show > .btn-facebook.dropdown-toggle { + color: #fff; + background-color: #2d4373; + border-color: #dfdfdf; } + .btn-facebook:not(:disabled):not(.disabled):active:focus, .btn-facebook:not(:disabled):not(.disabled).active:focus, + .show > .btn-facebook.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-flickr { + background-color: #ff0084; + color: #fff; + background-color: #ff0084; + border-color: #fff; } + .btn-flickr:hover { + color: #fff; + background-color: #ff0084; + border-color: #ff0084; } + .btn-flickr:focus, .btn-flickr.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-flickr.disabled, .btn-flickr:disabled { + color: #fff; + background-color: #ff0084; + border-color: #fff; } + .btn-flickr:not(:disabled):not(.disabled):active, .btn-flickr:not(:disabled):not(.disabled).active, + .show > .btn-flickr.dropdown-toggle { + color: #fff; + background-color: #cc006a; + border-color: #dfdfdf; } + .btn-flickr:not(:disabled):not(.disabled):active:focus, .btn-flickr:not(:disabled):not(.disabled).active:focus, + .show > .btn-flickr.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-foursquare { + background-color: #f94877; + color: #fff; + background-color: #f94877; + border-color: #fff; } + .btn-foursquare:hover { + color: #fff; + background-color: #f94877; + border-color: #f94877; } + .btn-foursquare:focus, .btn-foursquare.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-foursquare.disabled, .btn-foursquare:disabled { + color: #fff; + background-color: #f94877; + border-color: #fff; } + .btn-foursquare:not(:disabled):not(.disabled):active, .btn-foursquare:not(:disabled):not(.disabled).active, + .show > .btn-foursquare.dropdown-toggle { + color: #fff; + background-color: #f71752; + border-color: #dfdfdf; } + .btn-foursquare:not(:disabled):not(.disabled):active:focus, .btn-foursquare:not(:disabled):not(.disabled).active:focus, + .show > .btn-foursquare.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-github { + background-color: #444444; + color: #fff; + background-color: #444444; + border-color: #fff; } + .btn-github:hover { + color: #fff; + background-color: #444444; + border-color: #444444; } + .btn-github:focus, .btn-github.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-github.disabled, .btn-github:disabled { + color: #fff; + background-color: #444444; + border-color: #fff; } + .btn-github:not(:disabled):not(.disabled):active, .btn-github:not(:disabled):not(.disabled).active, + .show > .btn-github.dropdown-toggle { + color: #fff; + background-color: #2b2b2b; + border-color: #dfdfdf; } + .btn-github:not(:disabled):not(.disabled):active:focus, .btn-github:not(:disabled):not(.disabled).active:focus, + .show > .btn-github.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-google { + background-color: #dd4b39; + color: #fff; + background-color: #dd4b39; + border-color: #fff; } + .btn-google:hover { + color: #fff; + background-color: #dd4b39; + border-color: #dd4b39; } + .btn-google:focus, .btn-google.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-google.disabled, .btn-google:disabled { + color: #fff; + background-color: #dd4b39; + border-color: #fff; } + .btn-google:not(:disabled):not(.disabled):active, .btn-google:not(:disabled):not(.disabled).active, + .show > .btn-google.dropdown-toggle { + color: #fff; + background-color: #c23321; + border-color: #dfdfdf; } + .btn-google:not(:disabled):not(.disabled):active:focus, .btn-google:not(:disabled):not(.disabled).active:focus, + .show > .btn-google.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-instagram { + background-color: #3f729b; + color: #fff; + background-color: #3f729b; + border-color: #fff; } + .btn-instagram:hover { + color: #fff; + background-color: #3f729b; + border-color: #3f729b; } + .btn-instagram:focus, .btn-instagram.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-instagram.disabled, .btn-instagram:disabled { + color: #fff; + background-color: #3f729b; + border-color: #fff; } + .btn-instagram:not(:disabled):not(.disabled):active, .btn-instagram:not(:disabled):not(.disabled).active, + .show > .btn-instagram.dropdown-toggle { + color: #fff; + background-color: #305777; + border-color: #dfdfdf; } + .btn-instagram:not(:disabled):not(.disabled):active:focus, .btn-instagram:not(:disabled):not(.disabled).active:focus, + .show > .btn-instagram.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-linkedin { + background-color: #007bb6; + color: #fff; + background-color: #007bb6; + border-color: #fff; } + .btn-linkedin:hover { + color: #fff; + background-color: #007bb6; + border-color: #007bb6; } + .btn-linkedin:focus, .btn-linkedin.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-linkedin.disabled, .btn-linkedin:disabled { + color: #fff; + background-color: #007bb6; + border-color: #fff; } + .btn-linkedin:not(:disabled):not(.disabled):active, .btn-linkedin:not(:disabled):not(.disabled).active, + .show > .btn-linkedin.dropdown-toggle { + color: #fff; + background-color: #005983; + border-color: #dfdfdf; } + .btn-linkedin:not(:disabled):not(.disabled):active:focus, .btn-linkedin:not(:disabled):not(.disabled).active:focus, + .show > .btn-linkedin.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-microsoft { + background-color: #2672ec; + color: #fff; + background-color: #2672ec; + border-color: #fff; } + .btn-microsoft:hover { + color: #fff; + background-color: #2672ec; + border-color: #2672ec; } + .btn-microsoft:focus, .btn-microsoft.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-microsoft.disabled, .btn-microsoft:disabled { + color: #fff; + background-color: #2672ec; + border-color: #fff; } + .btn-microsoft:not(:disabled):not(.disabled):active, .btn-microsoft:not(:disabled):not(.disabled).active, + .show > .btn-microsoft.dropdown-toggle { + color: #fff; + background-color: #125acd; + border-color: #dfdfdf; } + .btn-microsoft:not(:disabled):not(.disabled):active:focus, .btn-microsoft:not(:disabled):not(.disabled).active:focus, + .show > .btn-microsoft.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-odnoklassniki { + background-color: #f4731c; + color: #fff; + background-color: #f4731c; + border-color: #fff; } + .btn-odnoklassniki:hover { + color: #fff; + background-color: #f4731c; + border-color: #f4731c; } + .btn-odnoklassniki:focus, .btn-odnoklassniki.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-odnoklassniki.disabled, .btn-odnoklassniki:disabled { + color: #fff; + background-color: #f4731c; + border-color: #fff; } + .btn-odnoklassniki:not(:disabled):not(.disabled):active, .btn-odnoklassniki:not(:disabled):not(.disabled).active, + .show > .btn-odnoklassniki.dropdown-toggle { + color: #fff; + background-color: #d35b0a; + border-color: #dfdfdf; } + .btn-odnoklassniki:not(:disabled):not(.disabled):active:focus, .btn-odnoklassniki:not(:disabled):not(.disabled).active:focus, + .show > .btn-odnoklassniki.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-openid { + background-color: #f7931e; + color: #2a2e30; + background-color: #f7931e; + border-color: #fff; } + .btn-openid:hover { + color: #2a2e30; + background-color: #f7931e; + border-color: #f7931e; } + .btn-openid:focus, .btn-openid.focus { + box-shadow: 0 0 0 0.2rem rgba(223, 224, 224, 0.5); } + .btn-openid.disabled, .btn-openid:disabled { + color: #2a2e30; + background-color: #f7931e; + border-color: #fff; } + .btn-openid:not(:disabled):not(.disabled):active, .btn-openid:not(:disabled):not(.disabled).active, + .show > .btn-openid.dropdown-toggle { + color: #fff; + background-color: #da7908; + border-color: #dfdfdf; } + .btn-openid:not(:disabled):not(.disabled):active:focus, .btn-openid:not(:disabled):not(.disabled).active:focus, + .show > .btn-openid.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(223, 224, 224, 0.5); } + +.btn-pinterest { + background-color: #cb2027; + color: #fff; + background-color: #cb2027; + border-color: #fff; } + .btn-pinterest:hover { + color: #fff; + background-color: #cb2027; + border-color: #cb2027; } + .btn-pinterest:focus, .btn-pinterest.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-pinterest.disabled, .btn-pinterest:disabled { + color: #fff; + background-color: #cb2027; + border-color: #fff; } + .btn-pinterest:not(:disabled):not(.disabled):active, .btn-pinterest:not(:disabled):not(.disabled).active, + .show > .btn-pinterest.dropdown-toggle { + color: #fff; + background-color: #9f191f; + border-color: #dfdfdf; } + .btn-pinterest:not(:disabled):not(.disabled):active:focus, .btn-pinterest:not(:disabled):not(.disabled).active:focus, + .show > .btn-pinterest.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-reddit { + background-color: #eff7ff; + color: #2a2e30; + background-color: #eff7ff; + border-color: #000; } + .btn-reddit:hover { + color: #fff; + background-color: #000; + border-color: #000; } + .btn-reddit:focus, .btn-reddit.focus { + box-shadow: 0 0 0 0.2rem rgba(6, 7, 7, 0.5); } + .btn-reddit.disabled, .btn-reddit:disabled { + color: #2a2e30; + background-color: #eff7ff; + border-color: #000; } + .btn-reddit:not(:disabled):not(.disabled):active, .btn-reddit:not(:disabled):not(.disabled).active, + .show > .btn-reddit.dropdown-toggle { + color: #2a2e30; + background-color: #bcdeff; + border-color: black; } + .btn-reddit:not(:disabled):not(.disabled):active:focus, .btn-reddit:not(:disabled):not(.disabled).active:focus, + .show > .btn-reddit.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(6, 7, 7, 0.5); } + +.btn-soundcloud { + background-color: #ff5500; + color: #fff; + background-color: #ff5500; + border-color: #fff; } + .btn-soundcloud:hover { + color: #fff; + background-color: #ff5500; + border-color: #ff5500; } + .btn-soundcloud:focus, .btn-soundcloud.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-soundcloud.disabled, .btn-soundcloud:disabled { + color: #fff; + background-color: #ff5500; + border-color: #fff; } + .btn-soundcloud:not(:disabled):not(.disabled):active, .btn-soundcloud:not(:disabled):not(.disabled).active, + .show > .btn-soundcloud.dropdown-toggle { + color: #fff; + background-color: #cc4400; + border-color: #dfdfdf; } + .btn-soundcloud:not(:disabled):not(.disabled):active:focus, .btn-soundcloud:not(:disabled):not(.disabled).active:focus, + .show > .btn-soundcloud.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-tumblr { + background-color: #2c4762; + color: #fff; + background-color: #2c4762; + border-color: #fff; } + .btn-tumblr:hover { + color: #fff; + background-color: #2c4762; + border-color: #2c4762; } + .btn-tumblr:focus, .btn-tumblr.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-tumblr.disabled, .btn-tumblr:disabled { + color: #fff; + background-color: #2c4762; + border-color: #fff; } + .btn-tumblr:not(:disabled):not(.disabled):active, .btn-tumblr:not(:disabled):not(.disabled).active, + .show > .btn-tumblr.dropdown-toggle { + color: #fff; + background-color: #1c2e3f; + border-color: #dfdfdf; } + .btn-tumblr:not(:disabled):not(.disabled):active:focus, .btn-tumblr:not(:disabled):not(.disabled).active:focus, + .show > .btn-tumblr.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-twitter { + background-color: #55acee; + color: #2a2e30; + background-color: #55acee; + border-color: #fff; } + .btn-twitter:hover { + color: #2a2e30; + background-color: #55acee; + border-color: #55acee; } + .btn-twitter:focus, .btn-twitter.focus { + box-shadow: 0 0 0 0.2rem rgba(223, 224, 224, 0.5); } + .btn-twitter.disabled, .btn-twitter:disabled { + color: #2a2e30; + background-color: #55acee; + border-color: #fff; } + .btn-twitter:not(:disabled):not(.disabled):active, .btn-twitter:not(:disabled):not(.disabled).active, + .show > .btn-twitter.dropdown-toggle { + color: #fff; + background-color: #2795e9; + border-color: #dfdfdf; } + .btn-twitter:not(:disabled):not(.disabled):active:focus, .btn-twitter:not(:disabled):not(.disabled).active:focus, + .show > .btn-twitter.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(223, 224, 224, 0.5); } + +.btn-vimeo { + background-color: #1ab7ea; + color: #fff; + background-color: #1ab7ea; + border-color: #fff; } + .btn-vimeo:hover { + color: #fff; + background-color: #1ab7ea; + border-color: #1ab7ea; } + .btn-vimeo:focus, .btn-vimeo.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-vimeo.disabled, .btn-vimeo:disabled { + color: #fff; + background-color: #1ab7ea; + border-color: #fff; } + .btn-vimeo:not(:disabled):not(.disabled):active, .btn-vimeo:not(:disabled):not(.disabled).active, + .show > .btn-vimeo.dropdown-toggle { + color: #fff; + background-color: #1295bf; + border-color: #dfdfdf; } + .btn-vimeo:not(:disabled):not(.disabled):active:focus, .btn-vimeo:not(:disabled):not(.disabled).active:focus, + .show > .btn-vimeo.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-vk { + background-color: #587ea3; + color: #fff; + background-color: #587ea3; + border-color: #fff; } + .btn-vk:hover { + color: #fff; + background-color: #587ea3; + border-color: #587ea3; } + .btn-vk:focus, .btn-vk.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-vk.disabled, .btn-vk:disabled { + color: #fff; + background-color: #587ea3; + border-color: #fff; } + .btn-vk:not(:disabled):not(.disabled):active, .btn-vk:not(:disabled):not(.disabled).active, + .show > .btn-vk.dropdown-toggle { + color: #fff; + background-color: #466482; + border-color: #dfdfdf; } + .btn-vk:not(:disabled):not(.disabled):active:focus, .btn-vk:not(:disabled):not(.disabled).active:focus, + .show > .btn-vk.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-yahoo { + background-color: #720e9e; + color: #fff; + background-color: #720e9e; + border-color: #fff; } + .btn-yahoo:hover { + color: #fff; + background-color: #720e9e; + border-color: #720e9e; } + .btn-yahoo:focus, .btn-yahoo.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + .btn-yahoo.disabled, .btn-yahoo:disabled { + color: #fff; + background-color: #720e9e; + border-color: #fff; } + .btn-yahoo:not(:disabled):not(.disabled):active, .btn-yahoo:not(:disabled):not(.disabled).active, + .show > .btn-yahoo.dropdown-toggle { + color: #fff; + background-color: #500a6f; + border-color: #dfdfdf; } + .btn-yahoo:not(:disabled):not(.disabled):active:focus, .btn-yahoo:not(:disabled):not(.disabled).active:focus, + .show > .btn-yahoo.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } + +.btn-outline-adn { + border: 1px solid #d87a68 !important; + color: #d87a68; } + +.btn-outline-bitbucket { + border: 1px solid #205081 !important; + color: #205081; } + +.btn-outline-dropbox { + border: 1px solid #1087dd !important; + color: #1087dd; } + +.btn-outline-facebook { + border: 1px solid #3b5998 !important; + color: #3b5998; } + +.btn-outline-flickr { + border: 1px solid #ff0084 !important; + color: #ff0084; } + +.btn-outline-foursquare { + border: 1px solid #f94877 !important; + color: #f94877; } + +.btn-outline-github { + border: 1px solid #444444 !important; + color: #444444; } + +.btn-outline-google { + border: 1px solid #dd4b39 !important; + color: #dd4b39; } + +.btn-outline-instagram { + border: 1px solid #3f729b !important; + color: #3f729b; } + +.btn-outline-linkedin { + border: 1px solid #007bb6 !important; + color: #007bb6; } + +.btn-outline-microsoft { + border: 1px solid #2672ec !important; + color: #2672ec; } + +.btn-outline-odnoklassniki { + border: 1px solid #f4731c !important; + color: #f4731c; } + +.btn-outline-openid { + border: 1px solid #f7931e !important; + color: #f7931e; } + +.btn-outline-pinterest { + border: 1px solid #cb2027 !important; + color: #cb2027; } + +.btn-outline-reddit { + border: 1px solid #ff4500 !important; + color: #ff4500; } + +.btn-outline-soundcloud { + border: 1px solid #ff5500 !important; + color: #ff5500; } + +.btn-outline-tumblr { + border: 1px solid #2c4762 !important; + color: #2c4762; } + +.btn-outline-twitter { + border: 1px solid #55acee !important; + color: #55acee; } + +.btn-outline-vimeo { + border: 1px solid #1ab7ea !important; + color: #1ab7ea; } + +.btn-outline-vk { + border: 1px solid #587ea3 !important; + color: #587ea3; } + +.btn-outline-yahoo { + border: 1px solid #720e9e !important; + color: #720e9e; } + +.btn-outline-adn:hover { + color: #ad412d; + border: 1px solid #ad412d !important; } + +.btn-outline-bitbucket:hover { + color: #0c1d2f; + border: 1px solid #0c1d2f !important; } + +.btn-outline-dropbox:hover { + color: #094d7e; + border: 1px solid #094d7e !important; } + +.btn-outline-facebook:hover { + color: #1e2e4f; + border: 1px solid #1e2e4f !important; } + +.btn-outline-flickr:hover { + color: #99004f; + border: 1px solid #99004f !important; } + +.btn-outline-foursquare:hover { + color: #d4073d; + border: 1px solid #d4073d !important; } + +.btn-outline-github:hover { + color: #111111; + border: 1px solid #111111 !important; } + +.btn-outline-google:hover { + color: #96271a; + border: 1px solid #96271a !important; } + +.btn-outline-instagram:hover { + color: #223d52; + border: 1px solid #223d52 !important; } + +.btn-outline-linkedin:hover { + color: #003650; + border: 1px solid #003650 !important; } + +.btn-outline-microsoft:hover { + color: #0e459e; + border: 1px solid #0e459e !important; } + +.btn-outline-odnoklassniki:hover { + color: #a24608; + border: 1px solid #a24608 !important; } + +.btn-outline-openid:hover { + color: #a95e06; + border: 1px solid #a95e06 !important; } + +.btn-outline-pinterest:hover { + color: #731216; + border: 1px solid #731216 !important; } + +.btn-outline-reddit:hover { + color: #992900; + border: 1px solid #992900 !important; } + +.btn-outline-soundcloud:hover { + color: #993300; + border: 1px solid #993300 !important; } + +.btn-outline-tumblr:hover { + color: #0c141c; + border: 1px solid #0c141c !important; } + +.btn-outline-twitter:hover { + color: #147bc9; + border: 1px solid #147bc9 !important; } + +.btn-outline-vimeo:hover { + color: #0d7091; + border: 1px solid #0d7091 !important; } + +.btn-outline-vk:hover { + color: #344b61; + border: 1px solid #344b61 !important; } + +.btn-outline-yahoo:hover { + color: #2e0640; + border: 1px solid #2e0640 !important; } + +.bg-adn { + background-color: #d87a68; } + +.bg-bitbucket { + background-color: #205081; } + +.bg-dropbox { + background-color: #1087dd; } + +.bg-facebook { + background-color: #3b5998; } + +.bg-flickr { + background-color: #ff0084; } + +.bg-foursquare { + background-color: #f94877; } + +.bg-github { + background-color: #444444; } + +.bg-google { + background-color: #dd4b39; } + +.bg-instagram { + background-color: #3f729b; } + +.bg-linkedin { + background-color: #007bb6; } + +.bg-microsoft { + background-color: #2672ec; } + +.bg-odnoklassniki { + background-color: #f4731c; } + +.bg-openid { + background-color: #f7931e; } + +.bg-pinterest { + background-color: #cb2027; } + +.bg-reddit { + background-color: #ff4500; } + +.bg-soundcloud { + background-color: #ff5500; } + +.bg-tumblr { + background-color: #2c4762; } + +.bg-twitter { + background-color: #55acee; } + +.bg-vimeo { + background-color: #1ab7ea; } + +.bg-vk { + background-color: #587ea3; } + +.bg-yahoo { + background-color: #720e9e; } + +/*========================================================================================= + File Name: demo.scss + Description: CSS used for demo purpose only. Remove this css from your project. + ---------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +==========================================================================================*/ +.fonticon-container > .fonticon-wrap { + float: left; + width: 60px; + height: 60px; + line-height: 4.8rem; + text-align: center; + border-radius: 0.1875rem; + margin-right: 1rem; + margin-bottom: 1.5rem; } + .fonticon-container > .fonticon-wrap > i { + font-size: 2.28rem; + transition: all .2s ease-in-out; } + .fonticon-container > .fonticon-wrap.youtube { + width: 100px; } + +.fonticon-container:hover i { + color: #3a50dc; + font-size: 2.9rem; + transform: scale(1.3); } + +.fonticon-container > .fonticon-classname, .fonticon-container > .fonticon-unit { + display: block; + font-size: 1.5rem; + line-height: 1.2; } + +.fonticon-container > .fonticon-unit { + font-size: 1rem; + font-style: italic; } + +.scroll-example { + padding: 0.5rem; + position: relative; + border: 2px solid #dfdfdf; + overflow: auto; } + .scroll-example .horz-scroll-content { + width: 1200px; } + +.browser { + background: #e0e0e0; + border: 4px solid #e0e0e0; + width: 100%; + height: 12rem; + padding-top: 20px; + margin: 0 0 10px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; } + +.browser iframe { + border: 0; + background: #fff; + height: 100%; + width: 100%; } + +.loader-wrapper { + height: 8em; } + +.maintenance-icon { + font-size: 4rem; } + +.animationIcon { + right: 30px; + bottom: 10px; } + +/*========================================================================================= + File Name: customizer.scss + Description: CSS used for demo purpose only. Remove this css from your project. + ---------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +==========================================================================================*/ +.customizer { + width: 400px; + right: -400px; + padding: 0; + background-color: #fff; + z-index: 1051; + position: fixed; + top: 0; + bottom: 0; + height: 100vh; + height: calc(var(--vh, 1vh) * 100); + transition: right 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99); + backface-visibility: hidden; + border-left: 1px solid rgba(0, 0, 0, 0.05); + box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), 0 5px 15px 0 rgba(0, 0, 0, 0.08); } + .customizer.open { + right: 0; } + .customizer .customizer-content { + position: relative; + height: 100%; } + .customizer .customizer-close { + position: absolute; + right: 30px; + top: 20px; + padding: 7px; + width: auto; + z-index: 10; + color: #626262; } + .customizer .customizer-close i { + font-size: 1.71rem; } + .customizer .customizer-toggle { + background: #3a50dc; + color: #fff; + display: block; + box-shadow: -3px 0px 8px rgba(0, 0, 0, 0.1); + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; + position: absolute; + top: 50%; + width: 38px; + height: 38px; + left: -39px; + text-align: center; + line-height: 40px; + cursor: pointer; } + .customizer .color-box { + height: 35px; + width: 35px; + margin: .5rem; + border-radius: .5rem; + cursor: pointer; } + .customizer .color-box.selected { + box-shadow: 0 0 0 3px rgba(52, 144, 220, 0.5); } + +body.dark-layout .hide-scroll-top-switch .custom-switch .custom-control-label:before, +body.dark-layout .collapse-sidebar .custom-switch .custom-control-label:before { + background-color: #10163a; } + +.buy-now { + position: fixed; + bottom: 5%; + right: 79px; + z-index: 1031; } + .buy-now .btn { + box-shadow: 0 1px 20px 1px #ea5455 !important; } + .buy-now .btn:hover { + box-shadow: none !important; } + +.chip { + background-color: #f0f0f0; + font-size: 0.8rem; + border-radius: 1.428rem; + display: inline-flex; + padding: 0 10px; + margin-bottom: 5px; + vertical-align: middle; + justify-content: center; } + .chip .chip-body { + color: rgba(0, 0, 0, 0.7); + display: flex; + justify-content: space-between; + min-height: 1.857rem; + min-width: 1.857rem; } + .chip .chip-body .avatar { + background-color: #c3c3c3; + display: flex; + width: 24px; + height: 24px; + margin: 2px 0; + border-radius: 50%; + justify-content: center; + align-items: center; + color: #fff; + transform: translate(-8px); } + .chip .chip-body .avatar .avatar-content { + top: 0; } + .chip .chip-body .avatar img { + border-radius: 50%; + height: 24px; + width: 24px; } + .chip .chip-body .chip-text { + vertical-align: middle; + align-self: center; } + .chip .chip-body .chip-closeable { + min-height: 1.428rem; + min-width: 1.428rem; + margin: 0 4px; + display: flex; + justify-content: center; + align-items: center; + align-self: center; + border-radius: 50%; + background: rgba(0, 0, 0, 0.15); + color: #fff; + transform: translate(10px); + cursor: pointer; } + .chip .chip-body .chip-closeable i { + margin-left: 1px; + margin-top: 1px; } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .chip .chip-closeable i { + position: relative; + top: 3px; } } + +.divider { + display: block; + text-align: center; + overflow: hidden; + white-space: nowrap; + margin: 1rem 0; } + .divider .divider-text { + position: relative; + display: inline-block; + font-size: .9375rem; + padding: 0 1rem; + background-color: #fff; } + .divider .divider-text i { + font-size: 1rem; } + .divider .divider-text:before, .divider .divider-text:after { + content: ""; + position: absolute; + top: 50%; + width: 9999px; + border-top: 1px solid rgba(0, 0, 0, 0.1); } + .divider .divider-text:before { + right: 100%; } + .divider .divider-text:after { + left: 100%; } + .divider.divider-left .divider-text { + float: left; + padding-left: 0; } + .divider.divider-left .divider-text:before { + display: none; } + .divider.divider-left-center .divider-text { + left: -25%; } + .divider.divider-right .divider-text { + float: right; + padding-right: 0; } + .divider.divider-right .divider-text:after { + display: none; } + .divider.divider-right-center .divider-text { + right: -25%; } + .divider.divider-dotted .divider-text:before, .divider.divider-dotted .divider-text:after { + border-style: dotted; + border-width: 1px; + border-top-width: 0; + border-color: black; } + .divider.divider-dashed .divider-text:before, .divider.divider-dashed .divider-text:after { + border-style: dashed; + border-width: 1px; + border-top-width: 0; + border-color: black; } + +@media screen and (min-width: 0px) { + head { + font-family: "xs 0px"; } + body:after { + content: "xs - min-width: 0px"; } } + +@media screen and (min-width: 544px) { + head { + font-family: "sm 544px"; } + body:after { + content: "sm - min-width: 544px"; } } + +@media screen and (min-width: 768px) { + head { + font-family: "md 768px"; } + body:after { + content: "md - min-width: 768px"; } } + +@media screen and (min-width: 992px) { + head { + font-family: "lg 992px"; } + body:after { + content: "lg - min-width: 992px"; } } + +@media screen and (min-width: 1200px) { + head { + font-family: "xl 1200px"; } + body:after { + content: "xl - min-width: 1200px"; } } + +head { + clear: both; } + head title { + font-family: "xs 0px, sm 544px, md 768px, lg 992px, xl 1200px"; } + +body:after { + display: none; } + +*[data-usn-if] { + display: none; } + +.group-area { + margin-bottom: 3rem; } + +.block { + display: block; + width: 100%; } + +/* Input with icon */ +.form-control-position { + position: absolute; + top: 2px; + right: 0; + z-index: 2; + display: block; + width: 2.5rem; + height: 2.5rem; + line-height: 2.5rem; + text-align: center; } + +/*--------------------------------- +Input Icon +---------------------------------*/ +.position-relative .form-control { + padding-right: calc( 1.25em + 1.4rem + 1px); } + .position-relative .form-control.form-control-lg ~ .form-control-position { + top: 10px; } + .position-relative .form-control.form-control-sm ~ .form-control-position { + top: -3px; } + +/* Input Icon left */ +.has-icon-left .form-control { + padding-right: 2rem; + padding-left: 3rem; } + +.has-icon-left .form-control-position { + right: auto; + left: inherit; } + .has-icon-left .form-control-position i { + position: relative; + left: 5px; + color: rgba(34, 41, 47, 0.4); } + +input[type="color"] { + height: calc( 1.25em + 1.4rem + 1px); } + +input[type="date"].form-control, +input[type="time"].form-control, +input[type="datetime-local"].form-control, +input[type="month"].form-control { + line-height: 1.45; } + +.font-size-large { + font-size: 2rem; } + +.font-size-base { + font-size: 1rem; } + +.font-size-small { + font-size: 1rem; } + +.font-size-xsmall { + font-size: 0.75rem; } + +.input-group-xs .form-control, +.input-group-xs .input-group-addon, +.input-group-xs .input-group-btn > button { + padding: 0.175rem 0.5rem; + font-size: 0.725rem; + line-height: 1.677777; + border-bottom-left-radius: 0.175rem; + border-top-left-radius: 0.175rem; } + +.input-group-xs .input-group-btn > button { + border-radius: 0.175rem; } + +.input-group-addon { + padding-top: 0.2rem; + padding-bottom: 0.2rem; } + +.floating-label-form-group-with-focus label, +.floating-label-form-group-with-value label { + color: #3a50dc !important; + text-transform: uppercase; + font-weight: 400; } + +.select2-container--classic .select2-selection--single { + min-height: 40px !important; } + +.select2-container--classic:focus, +.select2-container--default:focus { + outline: none; } + +.select2-container--classic .select2-selection--single, +.select2-container--default .select2-selection--single { + min-height: 38px; + padding: 5px; + border: 1px solid rgba(0, 0, 0, 0.2); } + .select2-container--classic .select2-selection--single:focus, + .select2-container--default .select2-selection--single:focus { + outline: 0; + border-color: #3a50dc !important; + box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15) !important; } + .select2-container--classic .select2-selection--single .select2-selection__rendered i, + .select2-container--default .select2-selection--single .select2-selection__rendered i { + margin-right: 0.5rem; } + .select2-container--classic .select2-selection--single .select2-selection__arrow, + .select2-container--default .select2-selection--single .select2-selection__arrow { + min-height: 38px !important; } + +.select2-container--classic.select2-container--open .select2-selection--single, +.select2-container--default.select2-container--open .select2-selection--single { + border-color: #3a50dc !important; + outline: 0; } + +.select2-container--classic.select2-container--focus, +.select2-container--default.select2-container--focus { + outline: 0; } + .select2-container--classic.select2-container--focus .select2-selection--multiple, + .select2-container--default.select2-container--focus .select2-selection--multiple { + border-color: #3a50dc !important; + outline: 0; } + +.select2-container--classic .select2-selection--multiple, +.select2-container--default .select2-selection--multiple { + min-height: 38px !important; + border: 1px solid rgba(0, 0, 0, 0.2); } + .select2-container--classic .select2-selection--multiple:focus, + .select2-container--default .select2-selection--multiple:focus { + outline: 0; + border-color: #3a50dc !important; + box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15) !important; } + .select2-container--classic .select2-selection--multiple .select2-selection__choice, + .select2-container--default .select2-selection--multiple .select2-selection__choice { + background-color: #3a50dc !important; + border-color: #3a50dc !important; + color: #fff; + padding: 5px; } + .select2-container--classic .select2-selection--multiple .select2-selection__rendered li .select2-search__field, + .select2-container--default .select2-selection--multiple .select2-selection__rendered li .select2-search__field { + margin-top: 10px; } + .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove, + .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { + color: #fff !important; + float: right; + margin-left: 0.5rem; } + .select2-container--classic .select2-selection--multiple i, + .select2-container--default .select2-selection--multiple i { + position: relative; + top: 1px; + margin-right: 0.5rem; + padding-left: 1px; } + .select2-container--classic .select2-selection--multiple[class*=bg-] .select2-selection__choice, + .select2-container--default .select2-selection--multiple[class*=bg-] .select2-selection__choice { + background-color: rgba(0, 0, 0, 0.15) !important; + border-color: rgba(0, 0, 0, 0.2) !important; } + +.select2-container--classic .select2-results__options .select2-results__option i, +.select2-container--default .select2-results__options .select2-results__option i { + margin-right: 0.5rem; } + +.select2-container--classic .select2-result-repository__avatar img, +.select2-container--default .select2-result-repository__avatar img { + width: 50px; } + +.select2-container--classic [class*="icon-"], +.select2-container--default [class*="icon-"] { + font-family: 'feather'; } + +.select2-container--classic .select-lg, +.select2-container--default .select-lg { + min-height: calc( 1.25em + 1.4rem + 1px) !important; + font-size: 1.2rem; + margin-bottom: 0 !important; + padding: 0.3rem 0.7rem; } + .select2-container--classic .select-lg.select2-selection--single .select2-selection__rendered, + .select2-container--default .select-lg.select2-selection--single .select2-selection__rendered { + padding-top: 0.1rem; } + .select2-container--classic .select-lg.select2-selection--single .select2-selection__arrow, + .select2-container--default .select-lg.select2-selection--single .select2-selection__arrow { + top: 0.2rem !important; } + .select2-container--classic .select-lg.select2-selection--multiple, + .select2-container--default .select-lg.select2-selection--multiple { + padding: 0 0.2rem; } + .select2-container--classic .select-lg.select2-selection--multiple .select2-selection__rendered, + .select2-container--default .select-lg.select2-selection--multiple .select2-selection__rendered { + padding-top: 0 !important; } + .select2-container--classic .select-lg.select2-selection--multiple .select2-selection__rendered li, + .select2-container--default .select-lg.select2-selection--multiple .select2-selection__rendered li { + font-size: 1.2rem; } + .select2-container--classic .select-lg.select2-selection--multiple .select2-selection__rendered .select2-selection__choice, + .select2-container--default .select-lg.select2-selection--multiple .select2-selection__rendered .select2-selection__choice { + padding: 5px; } + +.select2-container--classic .select-sm, +.select2-container--default .select-sm { + min-height: calc(1em + 1rem + 2px) !important; + padding: 0 0.2rem; + font-size: 0.75rem; + margin-bottom: 0 !important; + line-height: 1.5; } + .select2-container--classic .select-sm.select2-selection--single .select2-selection__arrow, + .select2-container--default .select-sm.select2-selection--single .select2-selection__arrow { + top: -0.3rem !important; } + .select2-container--classic .select-sm.select2-selection--multiple, + .select2-container--default .select-sm.select2-selection--multiple { + line-height: 1.3; } + .select2-container--classic .select-sm.select2-selection--multiple .select2-selection__rendered, + .select2-container--default .select-sm.select2-selection--multiple .select2-selection__rendered { + padding: 3px; } + .select2-container--classic .select-sm.select2-selection--multiple .select2-selection__rendered li, + .select2-container--default .select-sm.select2-selection--multiple .select2-selection__rendered li { + font-size: 0.75rem; + margin-top: 2px; } + .select2-container--classic .select-sm.select2-selection--multiple .select2-selection__choice, + .select2-container--default .select-sm.select2-selection--multiple .select2-selection__choice { + padding: 0 0.2rem; } + .select2-container--classic .select-sm.select2-selection--multiple .select2-search--inline .select2-search__field, + .select2-container--default .select-sm.select2-selection--multiple .select2-search--inline .select2-search__field { + margin-top: 0; } + +.select2 .form-control::focus { + border-color: #3a50dc !important; } + +table.dataTable { + border: 2px solid #f8f8f8; } + table.dataTable th, table.dataTable td { + border-bottom: 1px solid #f8f8f8; + border-top: 0; } + table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td { + font-size: 0.85rem; + border: 0; } + table.dataTable thead tr { + background-color: #f8f8f8; } + table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc { + padding-right: inherit; } + table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:before { + font-family: 'feather'; + content: "\e845"; + padding-right: 0.3rem; + font-size: .7rem; + left: 0; + top: .9rem; } + table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after { + font-family: 'feather'; + content: "\e842"; + font-size: .7rem; + left: 0; + top: 1.3rem; } + table.dataTable.table-striped tbody tr:nth-of-type(even) { + background-color: #f8f8f8; } + table.dataTable.table-striped tbody tr:nth-of-type(odd) { + background-color: #fff; } + table.dataTable.complex-headers { + border: 1px solid #dae1e7; } + table.dataTable.complex-headers thead th, table.dataTable.complex-headers thead td, table.dataTable.complex-headers tfoot th, table.dataTable.complex-headers tfoot td { + border-bottom: 1px solid #dae1e7; + border-right: 1px solid #dae1e7; } + table.dataTable tbody tr.selected { + background-color: rgba(115, 103, 240, 0.05) !important; + color: #3a50dc !important; + box-shadow: 0 0 1px 0 #3a50dc !important; + border-radius: 5px; } + table.dataTable tbody tr.selected td, table.dataTable tbody tr.selected th { + border-bottom: 0; } + +div.dataTables_wrapper div.dataTables_filter label, div.dataTables_wrapper div.dataTables_length label { + margin-top: 1rem; } + +div.dataTables_wrapper div.dataTables_filter select, div.dataTables_wrapper div.dataTables_length select { + background-position: calc(100% - 3px) 5px, calc(100% - 20px) 13px, 100% 0; + padding: 0 0.8rem; } + +div.dataTables_wrapper div.dataTables_paginate ul.pagination { + margin-top: 1rem; + padding-bottom: 7px; } + div.dataTables_wrapper div.dataTables_paginate ul.pagination li a { + font-size: 0.8rem; } + +tr.group { + background-color: #ededed; } + +@media only screen and (max-width: 768px) { + div.dataTables_wrapper div.dataTables_paginate ul.pagination { + justify-content: center; } } diff --git a/assets/css/components.min.css b/assets/css/components.min.css new file mode 100644 index 0000000..8a0158f --- /dev/null +++ b/assets/css/components.min.css @@ -0,0 +1 @@ +body.fixed-footer footer.footer-light,footer.navbar-shadow{box-shadow:0 -1px 4px 0 rgba(0,0,0,.15)}.navigation,.navigation .navigation-header{font-family:Montserrat,Helvetica,Arial,serif}.main-menu a,.select2-container--classic:focus,.select2-container--default:focus{outline:0}html{font-size:14px;height:100%;letter-spacing:.01rem}html body{height:100%;background-color:#F8F8F8;direction:ltr}html body .content{padding:0;position:relative;-webkit-transition:.3s ease all;transition:.3s ease all;-webkit-backface-visibility:hidden;backface-visibility:hidden;min-height:calc(100% - 4rem);margin-left:260px}html body .content.app-content{overflow:hidden}html body .content.app-content.show-overlay .content-overlay{z-index:10;opacity:1}html body .content.app-content.show-overlay .content-overlay~.header-navbar-shadow{background:-webkit-linear-gradient(top,rgba(44,48,60,.9) 44%,rgba(44,48,60,.43) 73%,rgba(44,48,60,0));background:linear-gradient(180deg,rgba(44,48,60,.9) 44%,rgba(44,48,60,.43) 73%,rgba(44,48,60,0))}html body .content.app-content .content-overlay{position:fixed;opacity:0;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.5);cursor:pointer;-webkit-transition:all .7s;transition:all .7s;z-index:-1}html body.navbar-static .navbar-container .search-input .search-list.show,html body.navbar-sticky .app-content .navbar-container .search-input .search-list.show,html body.navbar-sticky .navbar-container .search-input .search-list.show{width:98%;left:1%}html body .content.app-content .content-area-wrapper{height:calc(100% - 5rem);margin:calc(5rem + 2.7rem) 2.2rem 0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:relative}html body .content .content-wrapper .content-header-right .dropdown-toggle::after,html body.blank-page .content.app-content .header-navbar-shadow{display:none}html body .content.app-content .content-area-wrapper .content-wrapper{margin-top:0;height:calc(100vh - 13rem);height:calc(var(--vh,1vh) * 100 - 13rem)}html body .content .content-wrapper{padding:calc(2.2rem - .4rem) 2.2rem 0;margin-top:6rem}html body .content .content-wrapper .content-header-title{font-weight:500;color:#636363;margin-right:1rem}html body .content .content-wrapper .content-header-right .dropdown-toggle i{margin-right:0}html body .content .content-wrapper .content-header-right .btn-icon{padding:.8rem}html body .content .content-wrapper .content-header-right .btn-icon i{font-size:1rem}html body.navbar-hidden .app-content .content-wrapper{padding:2.2rem;margin-top:0}html body.navbar-hidden .app-content .content-area-wrapper{padding:0;margin-top:2.5rem}html body.navbar-static .main-menu{top:0}html body.navbar-static .app-content .navbar-container{padding-left:2.2rem;padding-right:1.2rem}html body.navbar-static .app-content .content-wrapper{padding:1rem 2.2rem 2.2rem;margin-top:0}html body.navbar-static .app-content .content-area-wrapper{margin-top:1rem}html body.navbar-sticky .app-content .navbar-container{padding-left:2.2rem;padding-right:1rem}html body.navbar-sticky .app-content .content-wrapper{padding:2.2rem;margin-top:4.65rem}html body.navbar-static .navbar-container,html body.navbar-sticky .navbar-container{padding-left:2.2rem;padding-right:1rem}html body.fixed-footer .content.app-content{margin-bottom:3rem}html body p{line-height:1.5rem}html body.bg-full-screen-image{background:url(/assets/images/background_generic.jpg) center center no-repeat;background-size:cover}html body.blank-page .content{margin-left:0}html body.blank-page .content.app-content{overflow:overlay;overflow-x:hidden}html body.blank-page .content-wrapper{padding:0!important;margin-top:0}html body.blank-page .content-wrapper .flexbox-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:100vh;height:calc(var(--vh,1vh) * 100);-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}html body[data-col='1-column'] .content,html body[data-col='1-column'] .footer{margin-left:0!important}html .pace .pace-progress{background:#7367F0}.app-content.center-layout{overflow:hidden}@media (min-width:992px){body .content-left,body .content-right{width:calc(100vw - (100vw - 100%) - 260px)}body .content-right{float:right}body .content-left{float:left}body .content-detached{width:100%}body .content-detached.content-right{float:right;margin-left:-260px}body .content-detached.content-right .content-body{margin-left:calc(260px + 2.2rem)}body .content-detached.content-left{float:left;margin-right:-260px}body .content-detached.content-left .content-body{margin-right:calc(260px + 2.2rem)}.sidebar-right.sidebar-sticky{float:right!important;margin-left:-260px;width:260px!important;margin-top:6rem}.sidebar{vertical-align:top}}.truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}@media (max-width:575.98px){html body .content .content-wrapper{padding:calc(2.2rem - .4rem) calc(2.2rem - 1rem) 0}body.navbar-static .app-content .header-navbar .navbar-container,body.navbar-sticky .app-content .header-navbar .navbar-container{padding-left:1rem;padding-right:.5rem}}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){html.full-screen{width:100%}html.full-screen .content.app-content{height:100%;overflow:scroll;overflow-x:hidden}}.sidebar{position:relative;width:100%}.sidebar-fixed{position:fixed;height:100%;overflow:scroll}.sidenav-overlay{position:fixed;top:0;left:0;right:0;height:120vh;background-color:rgba(0,0,0,.5);z-index:997;display:none}.drag-target{height:100%;width:40px;position:fixed;top:0;left:-10px;z-index:1036}@media (min-width:992px){.sidebar-left{float:left}.sidebar-right{float:right}}footer.footer{padding:1rem 2.2rem}footer.footer a{margin:0 .3rem}footer.footer span i{margin-left:.5rem;font-size:1.51rem;color:#EA5455;position:relative;top:2px}footer.footer .scroll-top{padding:.81rem .83rem}footer.navbar-border{border-top:1px solid #E4E7ED}body.fixed-footer footer.footer-light{background:#FFF}body.fixed-footer footer.footer-dark{background:#B8C2CC;color:#FFF}.scroll-top{position:fixed;bottom:5%;right:30px;display:none;z-index:99}.main-menu{z-index:1031;position:absolute;display:table-cell;height:100%;overflow:hidden}.main-menu.menu-dark .navigation>li>a i,.main-menu.menu-light .navigation>li>a i{position:relative;top:1px}.main-menu.menu-light .navigation>li ul .has-sub:not(.open)>ul,.main-menu.menu-light .navigation>li:not(.open)>ul{display:none}.main-menu.menu-light{color:#626262;background:#FFF}.main-menu.menu-light .main-menu-header{padding:20px}.main-menu.menu-light .main-menu-header .menu-search{background:#E6E6E6;padding:.5rem 1rem;color:#494949}.main-menu.menu-light .main-menu-header .menu-search:focus{border-color:#D9D9D9}.main-menu.menu-light .navigation{background:#FFF}.main-menu.menu-light .navigation .navigation-header{color:#999;margin:calc(2.2rem - .2rem) 0 .8rem 2.2rem;padding:0;line-height:1.5;letter-spacing:.01rem}.main-menu.menu-light .navigation .navigation-header span{font-weight:500}.main-menu.menu-light .navigation li.has-sub ul.menu-content{padding:7px;margin:-7px -7px 0}.main-menu.menu-light .navigation li a{color:#565656;padding:10px 15px;line-height:1.45;-webkit-transition:padding .35s ease 0s!important;transition:padding .35s ease 0s!important}.main-menu.menu-light .navigation li a span.menu-sub-title{color:#AFAFAF}.main-menu.menu-light .navigation li.hover>a{padding-left:25px;-webkit-transition:padding .35s ease 0s!important;transition:padding .35s ease 0s!important}.main-menu.menu-light .navigation>li{padding:0 15px}.main-menu.menu-light .navigation>li>a .label{margin-top:4px;margin-right:5px}.main-menu.menu-light .navigation>li.open>a,.main-menu.menu-light .navigation>li.sidebar-group-active>a{color:#494949;background:#f5f5f5;transition:transform .25s ease 0s,-webkit-transform .25s ease 0s;border-radius:6px;margin-bottom:7px}.main-menu.menu-light .navigation>li.active>a{background:-webkit-linear-gradient(332deg,#7367F0,rgba(115,103,240,.7));background:linear-gradient(118deg,#7367F0,rgba(115,103,240,.7));box-shadow:0 0 10px 1px rgba(115,103,240,.7);color:#FFF;font-weight:400;border-radius:4px}.main-menu.menu-light .navigation>li .active{background:#F0F0F0}.main-menu.menu-light .navigation>li .active>a{color:#7367F0;margin-bottom:0}.main-menu.menu-light .navigation>li .active .hover>a{background:#f5f5f5}.main-menu.menu-light .navigation>li ul{padding:0;margin:0}.main-menu.menu-light .navigation>li ul li{color:#626262;background:0 0}.main-menu.menu-light .navigation>li ul li>a{padding:10px 15px 10px 20px}.main-menu.menu-light .navigation>li ul .open>a,.main-menu.menu-light .navigation>li ul .sidebar-group-active>a{color:#626262}.main-menu.menu-light .navigation>li ul .open>ul,.main-menu.menu-light .navigation>li ul .open>ul .open>ul,.main-menu.menu-light .navigation>li ul .sidebar-group-active>ul,.main-menu.menu-light .navigation>li ul .sidebar-group-active>ul .open>ul{display:block}.main-menu.menu-light .navigation>li ul .hover>a,.main-menu.menu-light .navigation>li ul:hover>a{color:#6C6C6C}.main-menu.menu-light .navigation>li ul .active{background:-webkit-linear-gradient(332deg,#7367F0,rgba(115,103,240,.7));background:linear-gradient(118deg,#7367F0,rgba(115,103,240,.7));box-shadow:0 0 10px 1px rgba(115,103,240,.7);border-radius:4px}.main-menu.menu-light .navigation>li ul .active>a{color:#FFF}.main-menu.menu-light .navigation>li>ul,.main-menu.menu-light ul.menu-popout{background:#FFF}.main-menu.menu-light ul.menu-popout li a{color:#626262}.main-menu.menu-light ul.menu-popout li a span.menu-sub-title{color:#AFAFAF}.main-menu.menu-light ul.menu-popout li.hover>a,.main-menu.menu-light ul.menu-popout li.open>a,.main-menu.menu-light ul.menu-popout li:hover>a{background:#F0F0F0}.main-menu.menu-light ul.menu-popout .has-sub:not(.open)>ul{display:none}.main-menu.menu-light ul.menu-popout .open>a{color:#626262}.main-menu.menu-light ul.menu-popout .open>ul{display:block}.main-menu.menu-light ul.menu-popout .open>ul .open{background:#E8E8E8}.main-menu.menu-light ul.menu-popout .open>ul .open>ul{display:block;background:#E8E8E8}.main-menu.menu-dark .navigation>li ul .has-sub:not(.open)>ul,.main-menu.menu-dark .navigation>li:not(.open)>ul{display:none}.main-menu.menu-light ul.menu-popout .hover>a,.main-menu.menu-light ul.menu-popout:hover>a{color:#6C6C6C;background-color:#f5f5f5}.main-menu.menu-light ul.menu-popout .active{background:rgba(0,0,0,.06)}.main-menu.menu-light ul.menu-popout .active>a{color:#7C7C7C;background-color:#f5f5f5}.main-menu.menu-light ul.menu-popout .active .hover>a,.main-menu.menu-light ul.menu-popout .active :hover>a{background-color:transparent}.main-menu.menu-dark{color:#DCDCDC;background:#10163A}.main-menu.menu-dark .main-menu-header{padding:20px}.main-menu.menu-dark .main-menu-header .menu-search{background:#050712;padding:.5rem 1rem;color:#C3C3C3}.main-menu.menu-dark .main-menu-header .menu-search:focus{border-color:#000}.main-menu.menu-dark .navigation{background:#10163A}.main-menu.menu-dark .navigation .navigation-header{color:#fff;margin:calc(2.2rem - .2rem) 0 .8rem 2.2rem;padding:0;line-height:1.5;letter-spacing:.01rem}.main-menu.menu-dark .navigation .navigation-header span{font-weight:500}.main-menu.menu-dark .navigation li.has-sub ul.menu-content{padding:7px;margin:-7px -7px 0}.main-menu.menu-dark .navigation li a{color:#D0D0D0;padding:10px 15px;line-height:1.45;-webkit-transition:padding .35s ease 0s!important;transition:padding .35s ease 0s!important}.main-menu.menu-dark .navigation li a span.menu-sub-title{color:#fff}.main-menu.menu-dark .navigation li.hover>a{padding-left:25px;-webkit-transition:padding .35s ease 0s!important;transition:padding .35s ease 0s!important}.main-menu.menu-dark .navigation>li{padding:0 15px}.main-menu.menu-dark .navigation>li>a .label{margin-top:4px;margin-right:5px}.main-menu.menu-dark .navigation>li.open>a,.main-menu.menu-dark .navigation>li.sidebar-group-active>a{color:#C3C3C3;background:#0C102A;transition:transform .25s ease 0s,-webkit-transform .25s ease 0s;border-radius:6px;margin-bottom:7px}.main-menu.menu-dark .navigation>li.active>a{background:-webkit-linear-gradient(332deg,#7367F0,rgba(115,103,240,.7));background:linear-gradient(118deg,#7367F0,rgba(115,103,240,.7));box-shadow:0 0 10px 1px rgba(115,103,240,.7);color:#FFF;font-weight:400;border-radius:4px}.main-menu.menu-dark .navigation>li .active{background:#090D22}.main-menu.menu-dark .navigation>li .active>a{color:#7367F0;margin-bottom:0}.main-menu.menu-dark .navigation>li .active .hover>a{background:#0C102A}.main-menu.menu-dark .navigation>li ul{padding:0;margin:0}.main-menu.menu-dark .navigation>li ul li{color:#DCDCDC;background:0 0}.main-menu.menu-dark .navigation>li ul li>a{padding:10px 15px 10px 20px}.main-menu.menu-dark .navigation>li ul .open>a,.main-menu.menu-dark .navigation>li ul .sidebar-group-active>a{color:#DCDCDC}.main-menu.menu-dark .navigation>li ul .open>ul,.main-menu.menu-dark .navigation>li ul .open>ul .open>ul,.main-menu.menu-dark .navigation>li ul .sidebar-group-active>ul,.main-menu.menu-dark .navigation>li ul .sidebar-group-active>ul .open>ul{display:block}.main-menu.menu-dark .navigation>li ul .hover>a,.main-menu.menu-dark .navigation>li ul:hover>a{color:#E6E6E6}.main-menu.menu-dark .navigation>li ul .active{background:-webkit-linear-gradient(332deg,#7367F0,rgba(115,103,240,.7));background:linear-gradient(118deg,#7367F0,rgba(115,103,240,.7));box-shadow:0 0 10px 1px rgba(115,103,240,.7);border-radius:4px}.main-menu.menu-dark .navigation>li ul .active>a{color:#FFF}.main-menu.menu-dark .navigation>li>ul,.main-menu.menu-dark ul.menu-popout{background:#10163A}.main-menu.menu-dark ul.menu-popout li a{color:#DCDCDC}.main-menu.menu-dark ul.menu-popout li a span.menu-sub-title{color:#fff}.main-menu.menu-dark ul.menu-popout li.hover>a,.main-menu.menu-dark ul.menu-popout li.open>a,.main-menu.menu-dark ul.menu-popout li:hover>a{background:#090D22}.main-menu.menu-dark ul.menu-popout .has-sub:not(.open)>ul{display:none}.main-menu.menu-dark ul.menu-popout .open>a{color:#DCDCDC}.main-menu.menu-dark ul.menu-popout .open>ul{display:block}.main-menu.menu-dark ul.menu-popout .open>ul .open{background:#060816}.main-menu.menu-dark ul.menu-popout .open>ul .open>ul{display:block;background:#060816}.main-menu.menu-dark ul.menu-popout .hover>a,.main-menu.menu-dark ul.menu-popout:hover>a{color:#E6E6E6;background-color:#0C102A}.main-menu.menu-dark ul.menu-popout .active{background:rgba(0,0,0,.06)}.main-menu.menu-dark ul.menu-popout .active>a{color:#F6F6F6;background-color:#0C102A}.main-menu.menu-dark ul.menu-popout .active .hover>a,.main-menu.menu-dark ul.menu-popout .active :hover>a{background-color:transparent}.main-menu.menu-fixed,.main-menu.menu-fixed .main-menu-footer{position:fixed}.main-menu.menu-static{height:100%;padding-bottom:calc(100% - 20rem)}.main-menu.menu-static .main-menu-content{height:unset!important}.main-menu.menu-shadow{box-shadow:0 0 15px 0 rgba(0,0,0,.05)}.main-menu.menu-border{border-right:1px solid #E4E7ED}.main-menu .shadow-bottom{display:none;position:absolute;z-index:2;height:60px;width:100%;pointer-events:none;margin-top:-1.3rem;-webkit-filter:blur(5px);filter:blur(5px);background:-webkit-linear-gradient(#FFF 41%,rgba(255,255,255,.11) 95%,rgba(255,255,255,0));background:linear-gradient(#FFF 41%,rgba(255,255,255,.11) 95%,rgba(255,255,255,0))}.main-menu.menu-native-scroll .main-menu-content{overflow-y:scroll}.main-menu .navbar-header{width:260px;height:5rem;position:relative;padding:.35rem 1rem .3rem 1.64rem;-webkit-transition:.3s ease all;transition:.3s ease all}.main-menu .navbar-header .navbar-brand{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-top:1.35rem}.main-menu .navbar-header .navbar-brand .brand-logo{background:url(/assets/images/logo/vuexy-logo.png) -65px -54px no-repeat;height:24px;width:35px}.main-menu .navbar-header .navbar-brand .brand-text{color:#7367F0;padding-left:1rem;font-weight:600;letter-spacing:.01rem;font-size:1.57rem;-webkit-animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein;animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein}.main-menu .navbar-header .modern-nav-toggle{-webkit-animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein;animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein}.main-menu .main-menu-content{height:calc(100% - 6rem)!important;position:relative}.main-menu ul{list-style:none;margin:0;padding:0}.main-menu ul.navigation-main{overflow-x:hidden}.main-menu ul.navigation-main>li:first-child{margin-top:.5rem}.main-menu a:focus,.main-menu a:hover{text-decoration:none}.navigation{font-size:1.1rem;font-weight:400;overflow-y:hidden;padding-bottom:20px}.navigation .navigation-header{font-weight:500;line-height:1.2;padding:12px 22px;font-size:.9rem;text-transform:uppercase}.navigation li{position:relative;white-space:nowrap}.navigation li a{display:block;text-overflow:ellipsis;overflow:hidden}.navigation li a i{font-size:.8rem;margin-right:1.38rem}.menu-popout li.disabled a,.navigation li.disabled a{cursor:not-allowed}.dropdown-notification .nav-link-label{position:relative}.dropdown-notification .notification-text{margin-bottom:.5rem;font-size:smaller;color:#626262}.dropdown-notification .notification-title{color:rgba(255,255,255,.75)}.dropdown-notification .notification-tag{position:relative;top:-4px}.dropdown-notification .dropdown-menu.dropdown-menu-right{right:-2px;padding:0}.dropdown-notification .dropdown-menu.dropdown-menu-right::before{background:#7367F0;border-color:#7367F0}.dropdown-notification .dropdown-menu-header{border-top-left-radius:5px;border-top-right-radius:5px;background:#7367F0;color:#FFF;text-align:center}.dropdown-notification .dropdown-menu-header .dropdown-header h3{margin-bottom:.25rem}.main-menu-header .user-content{padding:20px}.main-menu-header .user-content .media{overflow:inherit}.divider,.main-menu-footer,.overflow-hidden{overflow:hidden}.main-menu-header .user-content .media-body{vertical-align:bottom;opacity:1;width:150px;white-space:nowrap;-webkit-transition:all .3s ease .15s;transition:all .3s ease .15s}.avatar,.chip{vertical-align:middle}.main-menu-footer{position:relative;bottom:0;display:block;z-index:1000;color:#fff;background-color:#9AA9B7}.main-menu-footer.footer-open{max-height:500px;-webkit-transition:max-height .2s ease-in-out;transition:max-height .2s ease-in-out}.main-menu-footer a{color:#fff}.main-menu-footer a:focus,.main-menu-footer a:hover{color:#FFF}.main-menu-footer .header{height:19px;border-bottom:1px solid #A9B5C1}.main-menu-footer .toggle{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);transition:-webkit-transform .2s ease-in-out}.main-menu-footer .content{padding:0}.main-menu-footer .content .actions>a{display:block;float:left;width:33.33333%;padding:1rem 0;color:#fff;text-align:center;border-top:1px solid #A9B5C1;border-left:1px solid #A9B5C1}.avatar,.main-menu-footer .content .actions>a:focus,.main-menu-footer .content .actions>a:hover{color:#FFF}.main-menu-footer .content .actions>a>span{font-size:1.35rem}body.vertical-layout.vertical-menu.menu-expanded .main-menu-footer .content{margin-left:0}body.menu-collapsed .menu-static{padding-bottom:calc(100% - 14rem)}@media (max-width:767.98px){.menu-hide .main-menu,.menu-open .main-menu{-webkit-transition:top .35s,height .35s,-webkit-transform .25s;transition:top .35s,height .35s,-webkit-transform .25s;transition:transform .25s,top .35s,height .35s;transition:transform .25s,top .35s,height .35s,-webkit-transform .25s}.main-menu{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;perspective:1000}.menu-open .main-menu{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@media (min-width:768px){.drag-target{z-index:0}}body.fixed-footer .main-menu.menu-fixed{height:100%}@media (max-width:1200px){body .main-menu.menu-static{padding-bottom:100%}}.display-inline{display:inline!important}.display-block{display:block!important}.display-inline-block{display:inline-block!important}.display-hidden{display:none!important}.display-table-cell{display:table-cell!important}.bullet,.spinner,.spinner-reverse{display:inline-block}.position-top-0{top:0}.position-right-0{right:0}.position-bottom-0{bottom:0}.position-left-0{left:0}.zindex-1{z-index:1!important}.zindex-2{z-index:2!important}.zindex-3{z-index:3!important}.zindex-4{z-index:4!important}.zindex-0{z-index:0!important}.zindex-minus-1{z-index:-1!important}.zindex-minus-2{z-index:-2!important}.zindex-minus-3{z-index:-3!important}.zindex-minus-4{z-index:-4!important}.no-edge-top{top:0!important}.no-edge-bottom{bottom:0!important}.no-edge-left{left:0!important}.no-edge-right{right:0!important}.cursor-pointer{cursor:pointer}.cursor-move{cursor:move}.cursor-default{cursor:default}.cursor-progress{cursor:progress}.cursor-not-allowed{cursor:not-allowed}.overflow-visible{overflow:visible}.overflow-auto{overflow:auto}.overflow-scroll,.overflow-x-scroll,.overflow-y-scroll{overflow:scroll}.bullets-inside{list-style:inside}.list-style-circle{list-style:circle}.list-style-square{list-style:square}.list-style-icons{padding-left:10px;margin-left:0;list-style:none}.list-style-icons>li i{float:left;width:1em;margin:0 6px 0 0}.border{border:1px solid}.no-border-top-left-radius,.no-border-top-radius{border-top-left-radius:0!important}.no-border-top-radius,.no-border-top-right-radius{border-top-right-radius:0!important}.no-border-bottom-left-radius,.no-border-bottom-radius{border-bottom-left-radius:0!important}.no-border-bottom-radius,.no-border-bottom-right-radius{border-bottom-right-radius:0!important}.border-top{border-top:1px solid}.border-bottom{border-bottom:1px solid}.border-left{border-left:1px solid}.border-right{border-right:1px solid}.border-2{border-width:2px!important}.border-top-2{border-top-width:2px!important}.border-bottom-2{border-bottom-width:2px!important}.border-left-2{border-left-width:2px!important}.border-right-2{border-right-width:2px!important}.border-3{border-width:3px!important}.border-top-3{border-top-width:3px!important}.border-bottom-3{border-bottom-width:3px!important}.border-left-3{border-left-width:3px!important}.border-right-3{border-right-width:3px!important}.avatar,.bullet{border-radius:50%}.box-shadow-0{box-shadow:none!important}.box-shadow-1{box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12)}.box-shadow-2{box-shadow:0 8px 17px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)}.box-shadow-3{box-shadow:0 12px 15px 0 rgba(0,0,0,.24),0 17px 50px 0 rgba(0,0,0,.19)}.box-shadow-4{box-shadow:0 16px 28px 0 rgba(0,0,0,.22),0 25px 55px 0 rgba(0,0,0,.21)}.box-shadow-5{box-shadow:0 27px 24px 0 rgba(0,0,0,.2),0 40px 77px 0 rgba(0,0,0,.22)}.box-shadow-6{box-shadow:0 4px 8px 0 rgba(0,0,0,.12),0 2px 4px 0 rgba(0,0,0,.08)}.fit{max-width:100%!important}.half-width{width:50%!important}.full-width{width:100%!important}.full-height{height:100%!important}.width-50{width:50px!important}.width-100{width:100px!important}.width-150{width:150px!important}.width-200{width:200px!important}.width-250{width:250px!important}.width-300{width:300px!important}.width-350{width:350px!important}.width-400{width:400px!important}.width-450{width:450px!important}.width-500{width:500px!important}.width-550{width:550px!important}.width-600{width:600px!important}.width-650{width:650px!important}.width-700{width:700px!important}.width-750{width:750px!important}.width-800{width:800px!important}.width-5-per{width:5%!important}.width-10-per{width:10%!important}.width-15-per{width:15%!important}.width-20-per{width:20%!important}.width-25-per{width:25%!important}.width-30-per{width:30%!important}.width-35-per{width:35%!important}.width-40-per{width:40%!important}.width-45-per{width:45%!important}.width-50-per{width:50%!important}.width-55-per{width:55%!important}.width-60-per{width:60%!important}.width-65-per{width:65%!important}.width-70-per{width:70%!important}.width-75-per{width:75%!important}.width-80-per{width:80%!important}.width-90-per{width:90%!important}.width-95-per{width:95%!important}.height-50{height:50px!important}.height-75{height:75px!important}.height-100{height:100px!important}.height-150{height:150px!important}.height-200{height:200px!important}.height-250{height:250px!important}.height-300{height:300px!important}.height-350{height:350px!important}.height-400{height:400px!important}.height-450{height:450px!important}.height-500{height:500px!important}.height-550{height:550px!important}.height-600{height:600px!important}.height-650{height:650px!important}.height-700{height:700px!important}.height-750{height:750px!important}.height-800{height:800px!important}.height-5-per{height:5%!important}.height-10-per{height:10%!important}.height-15-per{height:15%!important}.height-20-per{height:20%!important}.height-25-per{height:25%!important}.height-30-per{height:30%!important}.height-35-per{height:35%!important}.height-40-per{height:40%!important}.height-45-per{height:45%!important}.height-50-per{height:50%!important}.height-55-per{height:55%!important}.height-60-per{height:60%!important}.height-65-per{height:65%!important}.height-70-per{height:70%!important}.height-75-per{height:75%!important}.height-80-per{height:80%!important}.full-height-vh-with-nav{height:calc(100vh - 5rem - 4rem);height:calc(var(--vh,1vh) * 100 - 5rem - 4rem)}.full-height-vh{height:100vh;height:calc(var(--vh,1vh) * 100)}.line-height-1{line-height:1!important}.line-height-2{line-height:2!important}.rotate-45{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.rotate-45-inverse{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.rotate-90{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.rotate-90-inverse{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.rotate-180{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.rotate-180-inverse{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.pull-up{-webkit-transition:all .25s ease;transition:all .25s ease}.pull-up:hover{-webkit-transform:translateY(-4px) scale(1.02);-ms-transform:translateY(-4px) scale(1.02);transform:translateY(-4px) scale(1.02);box-shadow:0 14px 24px rgba(62,57,107,.2);z-index:30}.spinner{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-reverse{-webkit-animation:spin-reverse 1s linear infinite;animation:spin-reverse 1s linear infinite}@-webkit-keyframes spin-reverse{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@keyframes spin-reverse{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}.bg-cover{background-size:cover!important}.background-repeat{background-repeat:repeat!important}.background-no-repeat{background-repeat:no-repeat!important}.img-xl{width:64px!important;height:64px!important}.img-lg{width:44px!important;height:44px!important}.img-sm{width:36px!important;height:36px!important}.img-xs{width:32px!important;height:32px!important}.bullet{width:1rem;height:1rem}.bullet.bullet-xs{width:.5rem;height:.5rem}.bullet.bullet-sm{width:.714rem;height:.714rem}.bullet.bullet-lg{width:1.25rem;height:1.25rem}.avatar{white-space:nowrap;background-color:#C3C3C3;position:relative;cursor:pointer;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;font-size:.75rem;text-align:center;margin:5px}.avatar .avatar-content{width:32px;height:32px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.avatar .avatar-content .avatar-icon{font-size:1.2rem}.avatar [class*=avatar-status-]{border-radius:50%;width:11px;height:11px;position:absolute;right:0;bottom:0;border:1px solid #FFF}.avatar [class*=avatar-status-].avatar-status-lg{width:17px;height:17px;border-width:2px}.avatar.avatar-xl .avatar-content,.avatar.avatar-xl img{height:70px;width:70px}.avatar .avatar-status-online{background-color:#28C76F}.avatar .avatar-status-busy{background-color:#EA5455}.avatar .avatar-status-away{background-color:#FF9F43}.avatar .avatar-status-offline{background-color:#B8C2CC}.avatar img{border-radius:50%}.avatar.avatar-xl{font-size:1.5rem}.avatar.avatar-xl .avatar-content .avatar-icon{font-size:3rem}.avatar.avatar-lg{font-size:1.2rem}.avatar.avatar-lg .avatar-content,.avatar.avatar-lg img{width:50px;height:50px}.avatar.avatar-sm .avatar-content,.avatar.avatar-sm img{width:24px;height:24px}.avatar.avatar-lg .avatar-content .avatar-icon{font-size:2rem}.avatar.avatar-sm .avatar-content .avatar-icon{font-size:1rem}.navbar-container .search-input .search-input-icon i,.navbar-container .search-input .search-list li a span[class*='feather icon-']{font-size:1.25rem}.navbar-container a.nav-link-search{float:left}.navbar-container .search-input{float:left;width:0}.navbar-container .search-input input{width:0;border:none;background:0 0;-webkit-transition:all .2s ease-out;transition:all .2s ease-out;line-height:16px;padding:1.6rem 3.6rem}.navbar-container .search-input.open{position:absolute;left:0;background:#FFF;right:0;width:100%;z-index:1000;border-radius:.5rem}.navbar-container .search-input.open .search-input-close,.navbar-container .search-input.open .search-input-icon{display:block}.navbar-container .search-input.open input{width:100%;outline:0;background:0 0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.navbar-container .search-input .search-list{max-height:450px;height:calc(100vh - 11rem);position:absolute;top:100%;left:0;background:#FFF;width:100%;margin-top:.5rem;padding-left:0;border-radius:.5rem;display:none}.navbar-container .search-input .search-list.search-list-bookmark{height:auto!important}.navbar-container .search-input .search-list.show{display:block}.navbar-container .search-input .search-list li a{padding:.9rem 1rem;color:#626262}.navbar-container .search-input .search-list li:first-child{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.navbar-container .search-input .search-list li:last-child{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.navbar-container .search-input .search-list li.auto-suggestion.current_item,.navbar-container .search-input .search-list li.auto-suggestion:hover{background-color:#F1F1F1}.navbar-container .search-input .search-input-icon{z-index:2;display:none;position:absolute;left:1.5rem;top:37%;cursor:pointer}.navbar-container .search-input .search-input-close{z-index:1;display:none;position:absolute;right:2rem;top:32%;cursor:pointer}.navbar-container .search-input .search-input-close i{font-size:1.75rem}.navbar-container .bookmark-input{position:absolute;top:102%;width:25%;display:none}.navbar-container .bookmark-input.show{display:block}.navbar-container .bookmark-input .bookmark-input-icon{position:absolute;z-index:1;top:.85rem;left:1rem}.navbar-container .bookmark-input input{padding:.7rem .7rem .7rem 2.5rem;width:100%;background:#FFF;border:1px solid rgba(0,0,0,.2)}.btn-adn,.btn-adn:hover{background-color:#D87A68}.navbar-container .bookmark-input input:focus{border:1px solid #7367F0}.navbar-container .bookmark-input .search-list{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)}.btn-adn.focus,.btn-adn:focus,.btn-adn:not(:disabled):not(.disabled).active:focus,.btn-adn:not(:disabled):not(.disabled):active:focus,.btn-bitbucket.focus,.btn-bitbucket:focus,.btn-bitbucket:not(:disabled):not(.disabled).active:focus,.btn-bitbucket:not(:disabled):not(.disabled):active:focus,.btn-dropbox.focus,.btn-dropbox:focus,.btn-dropbox:not(:disabled):not(.disabled).active:focus,.btn-dropbox:not(:disabled):not(.disabled):active:focus,.btn-facebook.focus,.btn-facebook:focus,.btn-facebook:not(:disabled):not(.disabled).active:focus,.btn-facebook:not(:disabled):not(.disabled):active:focus,.btn-flickr.focus,.btn-flickr:focus,.btn-flickr:not(:disabled):not(.disabled).active:focus,.btn-flickr:not(:disabled):not(.disabled):active:focus,.btn-foursquare.focus,.btn-foursquare:focus,.btn-github.focus,.btn-github:focus,.btn-github:not(:disabled):not(.disabled).active:focus,.btn-github:not(:disabled):not(.disabled):active:focus,.btn-google.focus,.btn-google:focus,.btn-google:not(:disabled):not(.disabled).active:focus,.btn-google:not(:disabled):not(.disabled):active:focus,.btn-instagram.focus,.btn-instagram:focus,.btn-instagram:not(:disabled):not(.disabled).active:focus,.btn-instagram:not(:disabled):not(.disabled):active:focus,.btn-linkedin.focus,.btn-linkedin:focus,.btn-linkedin:not(:disabled):not(.disabled).active:focus,.btn-linkedin:not(:disabled):not(.disabled):active:focus,.btn-microsoft.focus,.btn-microsoft:focus,.btn-microsoft:not(:disabled):not(.disabled).active:focus,.btn-microsoft:not(:disabled):not(.disabled):active:focus,.btn-odnoklassniki.focus,.btn-odnoklassniki:focus,.btn-odnoklassniki:not(:disabled):not(.disabled).active:focus,.btn-odnoklassniki:not(:disabled):not(.disabled):active:focus,.show>.btn-adn.dropdown-toggle:focus,.show>.btn-bitbucket.dropdown-toggle:focus,.show>.btn-dropbox.dropdown-toggle:focus,.show>.btn-facebook.dropdown-toggle:focus,.show>.btn-flickr.dropdown-toggle:focus,.show>.btn-github.dropdown-toggle:focus,.show>.btn-google.dropdown-toggle:focus,.show>.btn-instagram.dropdown-toggle:focus,.show>.btn-linkedin.dropdown-toggle:focus,.show>.btn-microsoft.dropdown-toggle:focus,.show>.btn-odnoklassniki.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}.navbar-container .bookmark-icon{cursor:pointer}.navbar-container .dropdown.bookmark-dropdown{padding:1.4rem .5rem 1.35rem}.navbar-container .dropdown.bookmark-dropdown .dropdown-toggle:after{display:none}.navbar-container .search-data-title{line-height:1.25rem}.navbar-dark .search-input .input,.navbar-semi-light .search-input .input{color:#F5F7FA;border-radius:.5rem}.navbar-dark .search-input.open .input,.navbar-semi-light .search-input.open .input{color:#F5F7FA;border:1px solid #F5F7FA}body.navbar-static .navbar-container .search-input.open{border-radius:0}.apexcharts-canvas .apexcharts-tooltip{color:#626262!important}.apexcharts-canvas .apexcharts-tooltip.dark{color:#FFF!important}.apexcharts-canvas .apexcharts-toolbar .apexcharts-menu .apexcharts-menu-item{color:#626262}.apexcharts-xaxistooltip{color:#626262!important}#client-retention-chart .apexcharts-canvas .apexcharts-legend{left:-14px!important}.apexcharts-toolbar{z-index:10}.btn-social,.btn-social-icon{position:relative;padding-left:4.95rem;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.btn-social-icon>:first-child,.btn-social>:first-child{position:absolute;left:0;top:2px;bottom:0;width:2.95rem;line-height:2.7rem;font-size:1rem;text-align:center;border-right:1px solid rgba(0,0,0,.2)}.btn-social-icon{height:2.95rem;width:2.95rem;padding:0}.btn-social-icon>:first-child{border:none;text-align:center;width:100%!important}.btn-adn{color:#FFF;border-color:#FFF}.btn-adn:hover{color:#FFF;border-color:#D87A68}.btn-adn.disabled,.btn-adn:disabled{color:#FFF;background-color:#D87A68;border-color:#FFF}.btn-adn:not(:disabled):not(.disabled).active,.btn-adn:not(:disabled):not(.disabled):active,.show>.btn-adn.dropdown-toggle{color:#FFF;background-color:#CE563F;border-color:#DFDFDF}.btn-bitbucket,.btn-bitbucket:hover{background-color:#205081;color:#FFF}.btn-bitbucket{border-color:#FFF}.btn-bitbucket:hover{border-color:#205081}.btn-bitbucket.disabled,.btn-bitbucket:disabled{color:#FFF;background-color:#205081;border-color:#FFF}.btn-bitbucket:not(:disabled):not(.disabled).active,.btn-bitbucket:not(:disabled):not(.disabled):active,.show>.btn-bitbucket.dropdown-toggle{color:#FFF;background-color:#163758;border-color:#DFDFDF}.btn-dropbox,.btn-dropbox:hover{background-color:#1087DD;color:#FFF}.btn-dropbox{border-color:#FFF}.btn-dropbox:hover{border-color:#1087DD}.btn-dropbox.disabled,.btn-dropbox:disabled{color:#FFF;background-color:#1087DD;border-color:#FFF}.btn-dropbox:not(:disabled):not(.disabled).active,.btn-dropbox:not(:disabled):not(.disabled):active,.show>.btn-dropbox.dropdown-toggle{color:#FFF;background-color:#0D6AAD;border-color:#DFDFDF}.btn-facebook,.btn-facebook:hover{background-color:#3B5998;color:#FFF}.btn-facebook{border-color:#FFF}.btn-facebook:hover{border-color:#3B5998}.btn-facebook.disabled,.btn-facebook:disabled{color:#FFF;background-color:#3B5998;border-color:#FFF}.btn-facebook:not(:disabled):not(.disabled).active,.btn-facebook:not(:disabled):not(.disabled):active,.show>.btn-facebook.dropdown-toggle{color:#FFF;background-color:#2D4373;border-color:#DFDFDF}.btn-flickr,.btn-flickr:hover{background-color:#FF0084;color:#FFF}.btn-flickr{border-color:#FFF}.btn-flickr:hover{border-color:#FF0084}.btn-flickr.disabled,.btn-flickr:disabled{color:#FFF;background-color:#FF0084;border-color:#FFF}.btn-flickr:not(:disabled):not(.disabled).active,.btn-flickr:not(:disabled):not(.disabled):active,.show>.btn-flickr.dropdown-toggle{color:#FFF;background-color:#CC006A;border-color:#DFDFDF}.btn-foursquare{color:#FFF;background-color:#F94877;border-color:#FFF}.btn-foursquare:hover{color:#FFF;background-color:#F94877;border-color:#F94877}.btn-foursquare.disabled,.btn-foursquare:disabled{color:#FFF;background-color:#F94877;border-color:#FFF}.btn-foursquare:not(:disabled):not(.disabled).active,.btn-foursquare:not(:disabled):not(.disabled):active,.show>.btn-foursquare.dropdown-toggle{color:#FFF;background-color:#F71752;border-color:#DFDFDF}.btn-github,.btn-github:hover{background-color:#444;color:#FFF}.btn-foursquare:not(:disabled):not(.disabled).active:focus,.btn-foursquare:not(:disabled):not(.disabled):active:focus,.show>.btn-foursquare.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}.btn-github{border-color:#FFF}.btn-github:hover{border-color:#444}.btn-github.disabled,.btn-github:disabled{color:#FFF;background-color:#444;border-color:#FFF}.btn-github:not(:disabled):not(.disabled).active,.btn-github:not(:disabled):not(.disabled):active,.show>.btn-github.dropdown-toggle{color:#FFF;background-color:#2B2B2B;border-color:#DFDFDF}.btn-google,.btn-google:hover{background-color:#DD4B39;color:#FFF}.btn-google{border-color:#FFF}.btn-google:hover{border-color:#DD4B39}.btn-google.disabled,.btn-google:disabled{color:#FFF;background-color:#DD4B39;border-color:#FFF}.btn-google:not(:disabled):not(.disabled).active,.btn-google:not(:disabled):not(.disabled):active,.show>.btn-google.dropdown-toggle{color:#FFF;background-color:#C23321;border-color:#DFDFDF}.btn-instagram,.btn-instagram:hover{background-color:#3F729B;color:#FFF}.btn-instagram{border-color:#FFF}.btn-instagram:hover{border-color:#3F729B}.btn-instagram.disabled,.btn-instagram:disabled{color:#FFF;background-color:#3F729B;border-color:#FFF}.btn-instagram:not(:disabled):not(.disabled).active,.btn-instagram:not(:disabled):not(.disabled):active,.show>.btn-instagram.dropdown-toggle{color:#FFF;background-color:#305777;border-color:#DFDFDF}.btn-linkedin,.btn-linkedin:hover{background-color:#007BB6;color:#FFF}.btn-linkedin{border-color:#FFF}.btn-linkedin:hover{border-color:#007BB6}.btn-linkedin.disabled,.btn-linkedin:disabled{color:#FFF;background-color:#007BB6;border-color:#FFF}.btn-linkedin:not(:disabled):not(.disabled).active,.btn-linkedin:not(:disabled):not(.disabled):active,.show>.btn-linkedin.dropdown-toggle{color:#FFF;background-color:#005983;border-color:#DFDFDF}.btn-microsoft,.btn-microsoft:hover{background-color:#2672EC;color:#FFF}.btn-microsoft{border-color:#FFF}.btn-microsoft:hover{border-color:#2672EC}.btn-microsoft.disabled,.btn-microsoft:disabled{color:#FFF;background-color:#2672EC;border-color:#FFF}.btn-microsoft:not(:disabled):not(.disabled).active,.btn-microsoft:not(:disabled):not(.disabled):active,.show>.btn-microsoft.dropdown-toggle{color:#FFF;background-color:#125ACD;border-color:#DFDFDF}.btn-odnoklassniki{color:#FFF;background-color:#F4731C;border-color:#FFF}.btn-odnoklassniki:hover{color:#FFF;background-color:#F4731C;border-color:#F4731C}.btn-odnoklassniki.disabled,.btn-odnoklassniki:disabled{color:#FFF;background-color:#F4731C;border-color:#FFF}.btn-odnoklassniki:not(:disabled):not(.disabled).active,.btn-odnoklassniki:not(:disabled):not(.disabled):active,.show>.btn-odnoklassniki.dropdown-toggle{color:#FFF;background-color:#D35B0A;border-color:#DFDFDF}.btn-openid,.btn-openid:hover{color:#2A2E30;background-color:#F7931E}.btn-openid.focus,.btn-openid:focus,.btn-openid:not(:disabled):not(.disabled).active:focus,.btn-openid:not(:disabled):not(.disabled):active:focus,.show>.btn-openid.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(223,224,224,.5)}.btn-openid{border-color:#FFF}.btn-openid:hover{border-color:#F7931E}.btn-openid.disabled,.btn-openid:disabled{color:#2A2E30;background-color:#F7931E;border-color:#FFF}.btn-openid:not(:disabled):not(.disabled).active,.btn-openid:not(:disabled):not(.disabled):active,.show>.btn-openid.dropdown-toggle{color:#FFF;background-color:#DA7908;border-color:#DFDFDF}.btn-pinterest,.btn-pinterest:hover{background-color:#CB2027;color:#FFF}.btn-pinterest.focus,.btn-pinterest:focus,.btn-pinterest:not(:disabled):not(.disabled).active:focus,.btn-pinterest:not(:disabled):not(.disabled):active:focus,.show>.btn-pinterest.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}.btn-pinterest{border-color:#FFF}.btn-pinterest:hover{border-color:#CB2027}.btn-pinterest.disabled,.btn-pinterest:disabled{color:#FFF;background-color:#CB2027;border-color:#FFF}.btn-pinterest:not(:disabled):not(.disabled).active,.btn-pinterest:not(:disabled):not(.disabled):active,.show>.btn-pinterest.dropdown-toggle{color:#FFF;background-color:#9F191F;border-color:#DFDFDF}.btn-reddit.focus,.btn-reddit:focus,.btn-reddit:not(:disabled):not(.disabled).active:focus,.btn-reddit:not(:disabled):not(.disabled):active:focus,.show>.btn-reddit.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(6,7,7,.5)}.btn-reddit{color:#2A2E30;background-color:#EFF7FF;border-color:#000}.btn-reddit:hover{color:#FFF;background-color:#000;border-color:#000}.btn-reddit.disabled,.btn-reddit:disabled{color:#2A2E30;background-color:#EFF7FF;border-color:#000}.btn-reddit:not(:disabled):not(.disabled).active,.btn-reddit:not(:disabled):not(.disabled):active,.show>.btn-reddit.dropdown-toggle{color:#2A2E30;background-color:#BCDEFF;border-color:#000}.btn-soundcloud.focus,.btn-soundcloud:focus,.btn-soundcloud:not(:disabled):not(.disabled).active:focus,.btn-soundcloud:not(:disabled):not(.disabled):active:focus,.btn-tumblr.focus,.btn-tumblr:focus,.btn-tumblr:not(:disabled):not(.disabled).active:focus,.btn-tumblr:not(:disabled):not(.disabled):active:focus,.show>.btn-soundcloud.dropdown-toggle:focus,.show>.btn-tumblr.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}.btn-soundcloud{color:#FFF;background-color:#F50;border-color:#FFF}.btn-soundcloud:hover{color:#FFF;background-color:#F50;border-color:#F50}.btn-soundcloud.disabled,.btn-soundcloud:disabled{color:#FFF;background-color:#F50;border-color:#FFF}.btn-soundcloud:not(:disabled):not(.disabled).active,.btn-soundcloud:not(:disabled):not(.disabled):active,.show>.btn-soundcloud.dropdown-toggle{color:#FFF;background-color:#C40;border-color:#DFDFDF}.btn-tumblr,.btn-tumblr:hover{background-color:#2C4762;color:#FFF}.btn-tumblr{border-color:#FFF}.btn-tumblr:hover{border-color:#2C4762}.btn-tumblr.disabled,.btn-tumblr:disabled{color:#FFF;background-color:#2C4762;border-color:#FFF}.btn-tumblr:not(:disabled):not(.disabled).active,.btn-tumblr:not(:disabled):not(.disabled):active,.show>.btn-tumblr.dropdown-toggle{color:#FFF;background-color:#1C2E3F;border-color:#DFDFDF}.btn-twitter,.btn-twitter:hover{color:#2A2E30;background-color:#55ACEE}.btn-twitter.focus,.btn-twitter:focus,.btn-twitter:not(:disabled):not(.disabled).active:focus,.btn-twitter:not(:disabled):not(.disabled):active:focus,.show>.btn-twitter.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(223,224,224,.5)}.btn-twitter{border-color:#FFF}.btn-twitter:hover{border-color:#55ACEE}.btn-twitter.disabled,.btn-twitter:disabled{color:#2A2E30;background-color:#55ACEE;border-color:#FFF}.btn-twitter:not(:disabled):not(.disabled).active,.btn-twitter:not(:disabled):not(.disabled):active,.show>.btn-twitter.dropdown-toggle{color:#FFF;background-color:#2795E9;border-color:#DFDFDF}.btn-vimeo,.btn-vimeo:hover{background-color:#1AB7EA;color:#FFF}.btn-vimeo.focus,.btn-vimeo:focus,.btn-vimeo:not(:disabled):not(.disabled).active:focus,.btn-vimeo:not(:disabled):not(.disabled):active:focus,.btn-vk.focus,.btn-vk:focus,.btn-vk:not(:disabled):not(.disabled).active:focus,.btn-vk:not(:disabled):not(.disabled):active:focus,.btn-yahoo.focus,.btn-yahoo:focus,.btn-yahoo:not(:disabled):not(.disabled).active:focus,.btn-yahoo:not(:disabled):not(.disabled):active:focus,.show>.btn-vimeo.dropdown-toggle:focus,.show>.btn-vk.dropdown-toggle:focus,.show>.btn-yahoo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,.5)}.btn-vimeo{border-color:#FFF}.btn-vimeo:hover{border-color:#1AB7EA}.btn-vimeo.disabled,.btn-vimeo:disabled{color:#FFF;background-color:#1AB7EA;border-color:#FFF}.btn-vimeo:not(:disabled):not(.disabled).active,.btn-vimeo:not(:disabled):not(.disabled):active,.show>.btn-vimeo.dropdown-toggle{color:#FFF;background-color:#1295BF;border-color:#DFDFDF}.btn-vk,.btn-vk.disabled,.btn-vk:disabled,.btn-vk:hover{background-color:#587EA3;color:#FFF}.btn-vk{border-color:#FFF}.btn-vk:hover{border-color:#587EA3}.btn-vk.disabled,.btn-vk:disabled{border-color:#FFF}.btn-vk:not(:disabled):not(.disabled).active,.btn-vk:not(:disabled):not(.disabled):active,.show>.btn-vk.dropdown-toggle{color:#FFF;background-color:#466482;border-color:#DFDFDF}.btn-yahoo,.btn-yahoo:hover{background-color:#720E9E;color:#FFF}.btn-yahoo{border-color:#FFF}.btn-yahoo:hover{border-color:#720E9E}.btn-yahoo.disabled,.btn-yahoo:disabled{color:#FFF;background-color:#720E9E;border-color:#FFF}.btn-yahoo:not(:disabled):not(.disabled).active,.btn-yahoo:not(:disabled):not(.disabled):active,.show>.btn-yahoo.dropdown-toggle{color:#FFF;background-color:#500A6F;border-color:#DFDFDF}.btn-outline-adn{border:1px solid #D87A68!important;color:#D87A68}.btn-outline-bitbucket{border:1px solid #205081!important;color:#205081}.btn-outline-dropbox{border:1px solid #1087DD!important;color:#1087DD}.btn-outline-facebook{border:1px solid #3B5998!important;color:#3B5998}.btn-outline-flickr{border:1px solid #FF0084!important;color:#FF0084}.btn-outline-foursquare{border:1px solid #F94877!important;color:#F94877}.btn-outline-github{border:1px solid #444!important;color:#444}.btn-outline-google{border:1px solid #DD4B39!important;color:#DD4B39}.btn-outline-instagram{border:1px solid #3F729B!important;color:#3F729B}.btn-outline-linkedin{border:1px solid #007BB6!important;color:#007BB6}.btn-outline-microsoft{border:1px solid #2672EC!important;color:#2672EC}.btn-outline-odnoklassniki{border:1px solid #F4731C!important;color:#F4731C}.btn-outline-openid{border:1px solid #F7931E!important;color:#F7931E}.btn-outline-pinterest{border:1px solid #CB2027!important;color:#CB2027}.btn-outline-reddit{border:1px solid #FF4500!important;color:#FF4500}.btn-outline-soundcloud{border:1px solid #F50!important;color:#F50}.btn-outline-tumblr{border:1px solid #2C4762!important;color:#2C4762}.btn-outline-twitter{border:1px solid #55ACEE!important;color:#55ACEE}.btn-outline-vimeo{border:1px solid #1AB7EA!important;color:#1AB7EA}.btn-outline-vk{border:1px solid #587EA3!important;color:#587EA3}.btn-outline-yahoo{border:1px solid #720E9E!important;color:#720E9E}.btn-outline-adn:hover{color:#AD412D;border:1px solid #AD412D!important}.btn-outline-bitbucket:hover{color:#0C1D2F;border:1px solid #0C1D2F!important}.btn-outline-dropbox:hover{color:#094D7E;border:1px solid #094D7E!important}.btn-outline-facebook:hover{color:#1E2E4F;border:1px solid #1E2E4F!important}.btn-outline-flickr:hover{color:#99004F;border:1px solid #99004F!important}.btn-outline-foursquare:hover{color:#D4073D;border:1px solid #D4073D!important}.btn-outline-github:hover{color:#111;border:1px solid #111!important}.btn-outline-google:hover{color:#96271A;border:1px solid #96271A!important}.btn-outline-instagram:hover{color:#223D52;border:1px solid #223D52!important}.btn-outline-linkedin:hover{color:#003650;border:1px solid #003650!important}.btn-outline-microsoft:hover{color:#0E459E;border:1px solid #0E459E!important}.btn-outline-odnoklassniki:hover{color:#A24608;border:1px solid #A24608!important}.btn-outline-openid:hover{color:#A95E06;border:1px solid #A95E06!important}.btn-outline-pinterest:hover{color:#731216;border:1px solid #731216!important}.btn-outline-reddit:hover{color:#992900;border:1px solid #992900!important}.btn-outline-soundcloud:hover{color:#930;border:1px solid #930!important}.btn-outline-tumblr:hover{color:#0C141C;border:1px solid #0C141C!important}.btn-outline-twitter:hover{color:#147BC9;border:1px solid #147BC9!important}.btn-outline-vimeo:hover{color:#0D7091;border:1px solid #0D7091!important}.btn-outline-vk:hover{color:#344B61;border:1px solid #344B61!important}.btn-outline-yahoo:hover{color:#2E0640;border:1px solid #2E0640!important}.bg-adn{background-color:#D87A68}.bg-bitbucket{background-color:#205081}.bg-dropbox{background-color:#1087DD}.bg-facebook{background-color:#3B5998}.bg-flickr{background-color:#FF0084}.bg-foursquare{background-color:#F94877}.bg-github{background-color:#444}.bg-google{background-color:#DD4B39}.bg-instagram{background-color:#3F729B}.bg-linkedin{background-color:#007BB6}.bg-microsoft{background-color:#2672EC}.bg-odnoklassniki{background-color:#F4731C}.bg-openid{background-color:#F7931E}.bg-pinterest{background-color:#CB2027}.bg-reddit{background-color:#FF4500}.bg-soundcloud{background-color:#F50}.bg-tumblr{background-color:#2C4762}.bg-twitter{background-color:#55ACEE}.bg-vimeo{background-color:#1AB7EA}.bg-vk{background-color:#587EA3}.bg-yahoo{background-color:#720E9E}.fonticon-container>.fonticon-wrap{float:left;width:60px;height:60px;line-height:4.8rem;text-align:center;border-radius:.1875rem;margin-right:1rem;margin-bottom:1.5rem}.fonticon-container>.fonticon-wrap>i{font-size:2.28rem;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.fonticon-container>.fonticon-wrap.youtube{width:100px}.fonticon-container:hover i{color:#7367F0;font-size:2.9rem;-webkit-transform:scale(1.3);-ms-transform:scale(1.3);transform:scale(1.3)}.fonticon-container>.fonticon-classname,.fonticon-container>.fonticon-unit{display:block;font-size:1.5rem;line-height:1.2}.fonticon-container>.fonticon-unit{font-size:1rem;font-style:italic}.scroll-example{padding:.5rem;position:relative;border:2px solid #DFDFDF;overflow:auto}.scroll-example .horz-scroll-content{width:1200px}.browser{background:#E0E0E0;border:4px solid #E0E0E0;width:100%;height:12rem;padding-top:20px;margin:0 0 10px;box-sizing:border-box}.browser iframe{border:0;background:#FFF;height:100%;width:100%}.loader-wrapper{height:8em}.maintenance-icon{font-size:4rem}.animationIcon{right:30px;bottom:10px}.customizer{width:400px;right:-400px;padding:0;background-color:#FFF;z-index:1051;position:fixed;top:0;bottom:0;height:100vh;height:calc(var(--vh,1vh) * 100);-webkit-transition:right .4s cubic-bezier(.05,.74,.2,.99);transition:right .4s cubic-bezier(.05,.74,.2,.99);-webkit-backface-visibility:hidden;backface-visibility:hidden;border-left:1px solid rgba(0,0,0,.05);box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)}.customizer.open{right:0}.customizer .customizer-content{position:relative;height:100%}.customizer .customizer-close{position:absolute;right:30px;top:20px;padding:7px;width:auto;z-index:10;color:#626262}.customizer .customizer-close i{font-size:1.71rem}.customizer .customizer-toggle{background:#7367F0;color:#FFF;display:block;box-shadow:-3px 0 8px rgba(0,0,0,.1);border-top-left-radius:6px;border-bottom-left-radius:6px;position:absolute;top:50%;width:38px;height:38px;left:-39px;text-align:center;line-height:40px;cursor:pointer}.customizer .color-box{height:35px;width:35px;margin:.5rem;border-radius:.5rem;cursor:pointer}.chip .chip-body .avatar,.chip .chip-body .avatar img{height:24px;width:24px;border-radius:50%}.customizer .color-box.selected{box-shadow:0 0 0 3px rgba(52,144,220,.5)}body.dark-layout .collapse-sidebar .custom-switch .custom-control-label:before,body.dark-layout .hide-scroll-top-switch .custom-switch .custom-control-label:before{background-color:#10163A}.buy-now{position:fixed;bottom:5%;right:79px;z-index:1031}.buy-now .btn{box-shadow:0 1px 20px 1px #EA5455!important}.buy-now .btn:hover{box-shadow:none!important}.chip{background-color:#F0F0F0;font-size:.8rem;border-radius:1.428rem;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;padding:0 10px;margin-bottom:5px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.chip .chip-body,.chip .chip-body .avatar{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.chip .chip-body{color:rgba(0,0,0,.7);display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;min-height:1.857rem;min-width:1.857rem}.chip .chip-body .avatar{background-color:#C3C3C3;display:flex;margin:2px 0;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;color:#FFF;-webkit-transform:translate(-8px);-ms-transform:translate(-8px);transform:translate(-8px)}.chip .chip-body .avatar .avatar-content{top:0}.chip .chip-body .chip-text{vertical-align:middle;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.chip .chip-body .chip-closeable{min-height:1.428rem;min-width:1.428rem;margin:0 4px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;border-radius:50%;background:rgba(0,0,0,.15);color:#FFF;-webkit-transform:translate(10px);-ms-transform:translate(10px);transform:translate(10px);cursor:pointer}.chip .chip-body .chip-closeable i{margin-left:1px;margin-top:1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.chip .chip-closeable i{position:relative;top:3px}}.divider{display:block;text-align:center;white-space:nowrap;margin:1rem 0}.select2-container--classic .select2-results__options .select2-results__option i,.select2-container--classic .select2-selection--single .select2-selection__rendered i,.select2-container--default .select2-results__options .select2-results__option i,.select2-container--default .select2-selection--single .select2-selection__rendered i{margin-right:.5rem}.divider .divider-text{position:relative;display:inline-block;font-size:.9375rem;padding:0 1rem;background-color:#FFF}.divider.divider-left .divider-text:before,.divider.divider-right .divider-text:after,[data-usn-if],body:after{display:none}.divider .divider-text i{font-size:1rem}.divider .divider-text:after,.divider .divider-text:before{content:'';position:absolute;top:50%;width:9999px;border-top:1px solid rgba(0,0,0,.1)}.divider .divider-text:before{right:100%}.divider .divider-text:after{left:100%}.divider.divider-left .divider-text{float:left;padding-left:0}.divider.divider-left-center .divider-text{left:-25%}.divider.divider-right .divider-text{float:right;padding-right:0}.divider.divider-right-center .divider-text{right:-25%}.divider.divider-dotted .divider-text:after,.divider.divider-dotted .divider-text:before{border-style:dotted;border-width:0 1px 1px;border-color:#000}.divider.divider-dashed .divider-text:after,.divider.divider-dashed .divider-text:before{border-style:dashed;border-width:0 1px 1px;border-color:#000}@media screen and (min-width:0){head{font-family:'xs 0px'}body:after{content:'xs - min-width: 0px'}}@media screen and (min-width:544px){head{font-family:'sm 544px'}body:after{content:'sm - min-width: 544px'}}@media screen and (min-width:768px){head{font-family:'md 768px'}body:after{content:'md - min-width: 768px'}}@media screen and (min-width:992px){head{font-family:'lg 992px'}body:after{content:'lg - min-width: 992px'}}@media screen and (min-width:1200px){head{font-family:'xl 1200px'}body:after{content:'xl - min-width: 1200px'}}head{clear:both}head title{font-family:'xs 0px, sm 544px, md 768px, lg 992px, xl 1200px'}.group-area{margin-bottom:3rem}.block{display:block;width:100%}.form-control-position{position:absolute;top:2px;right:0;z-index:2;display:block;width:2.5rem;height:2.5rem;line-height:2.5rem;text-align:center}.position-relative .form-control{padding-right:calc(1.25em + 1.4rem + 1px)}.position-relative .form-control.form-control-lg~.form-control-position{top:10px}.position-relative .form-control.form-control-sm~.form-control-position{top:-3px}.has-icon-left .form-control{padding-right:2rem;padding-left:3rem}.has-icon-left .form-control-position{right:auto;left:inherit}.has-icon-left .form-control-position i{position:relative;left:5px;color:rgba(34,41,47,.4)}input[type=color]{height:calc(1.25em + 1.4rem + 1px)}input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:1.45}.font-size-large{font-size:2rem}.font-size-base,.font-size-small{font-size:1rem}.font-size-xsmall{font-size:.75rem}.input-group-xs .form-control,.input-group-xs .input-group-addon,.input-group-xs .input-group-btn>button{padding:.175rem .5rem;font-size:.725rem;line-height:1.677777;border-bottom-left-radius:.175rem;border-top-left-radius:.175rem}.input-group-xs .input-group-btn>button{border-radius:.175rem}.input-group-addon{padding-top:.2rem;padding-bottom:.2rem}.floating-label-form-group-with-focus label,.floating-label-form-group-with-value label{color:#7367F0!important;text-transform:uppercase;font-weight:400}.select2-container--classic .select2-selection--single{min-height:40px!important}.select2-container--classic .select2-selection--single,.select2-container--default .select2-selection--single{min-height:38px;padding:5px;border:1px solid rgba(0,0,0,.2)}.select2-container--classic.select2-container--focus .select2-selection--multiple,.select2-container--classic.select2-container--open .select2-selection--single,.select2-container--default.select2-container--focus .select2-selection--multiple,.select2-container--default.select2-container--open .select2-selection--single{border-color:#7367F0!important;outline:0}.select2-container--classic .select2-selection--single:focus,.select2-container--default .select2-selection--single:focus{outline:0;border-color:#7367F0!important;box-shadow:0 3px 10px 0 rgba(0,0,0,.15)!important}.select2-container--classic .select2-selection--single .select2-selection__arrow,.select2-container--default .select2-selection--single .select2-selection__arrow{min-height:38px!important}.select2-container--classic.select2-container--focus,.select2-container--default.select2-container--focus{outline:0}.select2-container--classic .select2-selection--multiple,.select2-container--default .select2-selection--multiple{min-height:38px!important;border:1px solid rgba(0,0,0,.2)}.select2-container--classic .select2-selection--multiple:focus,.select2-container--default .select2-selection--multiple:focus{outline:0;border-color:#7367F0!important;box-shadow:0 3px 10px 0 rgba(0,0,0,.15)!important}.select2-container--classic .select2-selection--multiple .select2-selection__choice,.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#7367F0!important;border-color:#4839EB!important;color:#FFF;padding:5px}.select2-container--classic .select2-selection--multiple .select2-selection__rendered li .select2-search__field,.select2-container--default .select2-selection--multiple .select2-selection__rendered li .select2-search__field{margin-top:10px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#FFF!important;float:right;margin-left:.5rem}.select2-container--classic .select2-selection--multiple i,.select2-container--default .select2-selection--multiple i{position:relative;top:1px;margin-right:.5rem;padding-left:1px}.select2-container--classic .select2-selection--multiple[class*=bg-] .select2-selection__choice,.select2-container--default .select2-selection--multiple[class*=bg-] .select2-selection__choice{background-color:rgba(0,0,0,.15)!important;border-color:rgba(0,0,0,.2)!important}table.dataTable thead tr,table.dataTable.table-striped tbody tr:nth-of-type(even){background-color:#F8F8F8}.select2-container--classic .select2-result-repository__avatar img,.select2-container--default .select2-result-repository__avatar img{width:50px}.select2-container--classic [class*=icon-],.select2-container--default [class*=icon-]{font-family:feather}.select2-container--classic .select-lg,.select2-container--default .select-lg{min-height:calc(1.25em + 1.4rem + 1px)!important;font-size:1.2rem;margin-bottom:0!important;padding:.3rem .7rem}.select2-container--classic .select-lg.select2-selection--single .select2-selection__rendered,.select2-container--default .select-lg.select2-selection--single .select2-selection__rendered{padding-top:.1rem}.select2-container--classic .select-lg.select2-selection--single .select2-selection__arrow,.select2-container--default .select-lg.select2-selection--single .select2-selection__arrow{top:.2rem!important}.select2-container--classic .select-lg.select2-selection--multiple,.select2-container--default .select-lg.select2-selection--multiple{padding:0 .2rem}.select2-container--classic .select-lg.select2-selection--multiple .select2-selection__rendered,.select2-container--default .select-lg.select2-selection--multiple .select2-selection__rendered{padding-top:0!important}.select2-container--classic .select-lg.select2-selection--multiple .select2-selection__rendered li,.select2-container--default .select-lg.select2-selection--multiple .select2-selection__rendered li{font-size:1.2rem}.select2-container--classic .select-lg.select2-selection--multiple .select2-selection__rendered .select2-selection__choice,.select2-container--default .select-lg.select2-selection--multiple .select2-selection__rendered .select2-selection__choice{padding:5px}.select2-container--classic .select-sm,.select2-container--default .select-sm{min-height:calc(1em + 1rem + 2px)!important;padding:0 .2rem;font-size:.75rem;margin-bottom:0!important;line-height:1.5}.select2-container--classic .select-sm.select2-selection--single .select2-selection__arrow,.select2-container--default .select-sm.select2-selection--single .select2-selection__arrow{top:-.3rem!important}.select2-container--classic .select-sm.select2-selection--multiple,.select2-container--default .select-sm.select2-selection--multiple{line-height:1.3}.select2-container--classic .select-sm.select2-selection--multiple .select2-selection__rendered,.select2-container--default .select-sm.select2-selection--multiple .select2-selection__rendered{padding:3px}.select2-container--classic .select-sm.select2-selection--multiple .select2-selection__rendered li,.select2-container--default .select-sm.select2-selection--multiple .select2-selection__rendered li{font-size:.75rem;margin-top:2px}.select2-container--classic .select-sm.select2-selection--multiple .select2-selection__choice,.select2-container--default .select-sm.select2-selection--multiple .select2-selection__choice{padding:0 .2rem}.select2-container--classic .select-sm.select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--default .select-sm.select2-selection--multiple .select2-search--inline .select2-search__field{margin-top:0}.select2 .form-control::focus{border-color:#7367F0!important}table.dataTable{border:2px solid #F8F8F8}table.dataTable td,table.dataTable th{border-bottom:1px solid #F8F8F8;border-top:0}table.dataTable tfoot td,table.dataTable tfoot th,table.dataTable thead td,table.dataTable thead th{font-size:.85rem;border:0}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{padding-right:inherit}table.dataTable thead .sorting:before,table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:before{font-family:feather;content:'\e845';padding-right:.3rem;font-size:.7rem;left:0;top:.9rem}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after{font-family:feather;content:'\e842';font-size:.7rem;left:0;top:1.3rem}table.dataTable.table-striped tbody tr:nth-of-type(odd){background-color:#FFF}table.dataTable.complex-headers{border:1px solid #DAE1E7}table.dataTable.complex-headers tfoot td,table.dataTable.complex-headers tfoot th,table.dataTable.complex-headers thead td,table.dataTable.complex-headers thead th{border-bottom:1px solid #DAE1E7;border-right:1px solid #DAE1E7}table.dataTable tbody tr.selected{background-color:rgba(115,103,240,.05)!important;color:#7367F0!important;box-shadow:0 0 1px 0 #7367F0!important;border-radius:5px}table.dataTable tbody tr.selected td,table.dataTable tbody tr.selected th{border-bottom:0}div.dataTables_wrapper div.dataTables_filter label,div.dataTables_wrapper div.dataTables_length label{margin-top:1rem}div.dataTables_wrapper div.dataTables_filter select,div.dataTables_wrapper div.dataTables_length select{background-position:calc(100% - 3px) 5px,calc(100% - 20px) 13px,100% 0;padding:0 .8rem}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin-top:1rem;padding-bottom:7px}div.dataTables_wrapper div.dataTables_paginate ul.pagination li a{font-size:.8rem}tr.group{background-color:#EDEDED}@media only screen and (max-width:768px){div.dataTables_wrapper div.dataTables_paginate ul.pagination{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}} \ No newline at end of file diff --git a/assets/css/core/colors/palette-gradient.css b/assets/css/core/colors/palette-gradient.css new file mode 100644 index 0000000..99e6090 --- /dev/null +++ b/assets/css/core/colors/palette-gradient.css @@ -0,0 +1,137 @@ +.bg-gradient-white { + color: #fff; + background-image: linear-gradient(30deg, #FFFFFF, rgba(255, 255, 255, 0.5)); + background-repeat: repeat-x; } + .bg-gradient-white:hover, .bg-gradient-white:active { + color: #fff; } + +.gradient-light-white { + background: linear-gradient(30deg, #FFFFFF 0%, 100%); + color: #fff; } + .gradient-light-white:hover, .gradient-light-white:active { + color: #fff; } + +.bg-gradient-black { + color: #fff; + background-image: linear-gradient(30deg, #000000, rgba(0, 0, 0, 0.5)); + background-repeat: repeat-x; } + .bg-gradient-black:hover, .bg-gradient-black:active { + color: #fff; } + +.gradient-light-black { + background: linear-gradient(30deg, #000000 0%, 100%); + color: #fff; } + .gradient-light-black:hover, .gradient-light-black:active { + color: #fff; } + +.bg-gradient-dark { + background: #640064; + color: #fff; + background-image: linear-gradient(30deg, #1e1e1e, rgba(30, 30, 30, 0.5)); + background-repeat: repeat-x; } + .bg-gradient-dark:hover, .bg-gradient-dark:active { + color: #fff; } + +.gradient-light-dark { + background: linear-gradient(30deg, #1e1e1e 0%, 100%); + color: #fff; } + .gradient-light-dark:hover, .gradient-light-dark:active { + color: #fff; } + +.bg-gradient-light { + background: #640064; + color: #fff; + background-image: linear-gradient(30deg, #babfc7, rgba(186, 191, 199, 0.5)); + background-repeat: repeat-x; } + .bg-gradient-light:hover, .bg-gradient-light:active { + color: #fff; } + +.gradient-light-light { + background: linear-gradient(30deg, #babfc7 0%, 100%); + color: #fff; } + .gradient-light-light:hover, .gradient-light-light:active { + color: #fff; } + +.bg-gradient-primary { + background: #640064; + color: #fff; + background-image: linear-gradient(30deg, #3a50dc, rgba(115, 103, 240, 0.5)); + background-repeat: repeat-x; } + .bg-gradient-primary:hover, .bg-gradient-primary:active { + color: #fff; } + +.gradient-light-primary { + background: linear-gradient(30deg, #3a50dc 0%, #ce9ffc 100%); + color: #fff; } + .gradient-light-primary:hover, .gradient-light-primary:active { + color: #fff; } + +.bg-gradient-secondary { + background: #640064; + color: #fff; + background-image: linear-gradient(30deg, #b8c2cc, rgba(184, 194, 204, 0.5)); + background-repeat: repeat-x; } + .bg-gradient-secondary:hover, .bg-gradient-secondary:active { + color: #fff; } + +.gradient-light-secondary { + background: linear-gradient(30deg, #b8c2cc 0%, #dcdeec 100%); + color: #fff; } + .gradient-light-secondary:hover, .gradient-light-secondary:active { + color: #fff; } + +.bg-gradient-success { + background: #0064fa; + color: #fff; + background-image: linear-gradient(30deg, #28c76f, rgba(40, 199, 111, 0.5)); + background-repeat: repeat-x; } + .bg-gradient-success:hover, .bg-gradient-success:active { + color: #fff; } + +.gradient-light-success { + background: linear-gradient(30deg, #28c76f 0%, #4ae9d3 100%); + color: #fff; } + .gradient-light-success:hover, .gradient-light-success:active { + color: #fff; } + +.bg-gradient-info { + background: #640064; + color: #fff; + background-image: linear-gradient(30deg, #00cfe8, rgba(0, 207, 232, 0.5)); + background-repeat: repeat-x; } + .bg-gradient-info:hover, .bg-gradient-info:active { + color: #fff; } + +.gradient-light-info { + background: linear-gradient(30deg, #00cfe8 0%, #2d91ff 100%); + color: #fff; } + .gradient-light-info:hover, .gradient-light-info:active { + color: #fff; } + +.bg-gradient-warning { + background: #fafafa; + color: #fff; + background-image: linear-gradient(30deg, #ff9f43, rgba(255, 159, 67, 0.5)); + background-repeat: repeat-x; } + .bg-gradient-warning:hover, .bg-gradient-warning:active { + color: #fff; } + +.gradient-light-warning { + background: linear-gradient(30deg, #ff9f43 0%, #fff487 100%); + color: #fff; } + .gradient-light-warning:hover, .gradient-light-warning:active { + color: #fff; } + +.bg-gradient-danger { + background: #640064; + color: #fff; + background-image: linear-gradient(30deg, #ea5455, rgba(234, 84, 85, 0.5)); + background-repeat: repeat-x; } + .bg-gradient-danger:hover, .bg-gradient-danger:active { + color: #fff; } + +.gradient-light-danger { + background: linear-gradient(30deg, #ea5455 0%, #f9b789 100%); + color: #fff; } + .gradient-light-danger:hover, .gradient-light-danger:active { + color: #fff; } diff --git a/assets/css/core/colors/palette-gradient.min.css b/assets/css/core/colors/palette-gradient.min.css new file mode 100644 index 0000000..011bf16 --- /dev/null +++ b/assets/css/core/colors/palette-gradient.min.css @@ -0,0 +1 @@ +.bg-gradient-white{color:#FFF;background-image:-webkit-linear-gradient(60deg,#FFF,rgba(255,255,255,.5));background-image:linear-gradient(30deg,#FFF,rgba(255,255,255,.5));background-repeat:repeat-x}.bg-gradient-white:active,.bg-gradient-white:hover{color:#FFF}.gradient-light-white{background:-webkit-linear-gradient(60deg,#FFF 0,100%);background:linear-gradient(30deg,#FFF 0,100%);color:#FFF}.gradient-light-white:active,.gradient-light-white:hover{color:#FFF}.bg-gradient-black{color:#FFF;background-image:-webkit-linear-gradient(60deg,#000,rgba(0,0,0,.5));background-image:linear-gradient(30deg,#000,rgba(0,0,0,.5));background-repeat:repeat-x}.bg-gradient-black:active,.bg-gradient-black:hover{color:#FFF}.gradient-light-black{background:-webkit-linear-gradient(60deg,#000 0,100%);background:linear-gradient(30deg,#000 0,100%);color:#FFF}.gradient-light-black:active,.gradient-light-black:hover{color:#FFF}.bg-gradient-dark{background:repeat-x #640064;color:#FFF;background-image:-webkit-linear-gradient(60deg,#1E1E1E,rgba(30,30,30,.5));background-image:linear-gradient(30deg,#1E1E1E,rgba(30,30,30,.5))}.bg-gradient-dark:active,.bg-gradient-dark:hover{color:#FFF}.gradient-light-dark{background:-webkit-linear-gradient(60deg,#1E1E1E 0,100%);background:linear-gradient(30deg,#1E1E1E 0,100%);color:#FFF}.gradient-light-dark:active,.gradient-light-dark:hover{color:#FFF}.bg-gradient-light{background:repeat-x #640064;color:#FFF;background-image:-webkit-linear-gradient(60deg,#BABFC7,rgba(186,191,199,.5));background-image:linear-gradient(30deg,#BABFC7,rgba(186,191,199,.5))}.bg-gradient-light:active,.bg-gradient-light:hover{color:#FFF}.gradient-light-light{background:-webkit-linear-gradient(60deg,#BABFC7 0,100%);background:linear-gradient(30deg,#BABFC7 0,100%);color:#FFF}.gradient-light-light:active,.gradient-light-light:hover{color:#FFF}.bg-gradient-primary{background:repeat-x #640064;color:#FFF;background-image:-webkit-linear-gradient(60deg,#7367F0,rgba(115,103,240,.5));background-image:linear-gradient(30deg,#1b3fb4,rgb(33, 98, 242))}.bg-gradient-primary:active,.bg-gradient-primary:hover{color:#FFF}.gradient-light-primary{background:-webkit-linear-gradient(60deg,#7367F0 0,#CE9FFC 100%);background:linear-gradient(30deg,#7367F0 0,#CE9FFC 100%);color:#FFF}.gradient-light-primary:active,.gradient-light-primary:hover{color:#FFF}.bg-gradient-secondary{background:repeat-x #640064;color:#FFF;background-image:-webkit-linear-gradient(60deg,#B8C2CC,rgba(184,194,204,.5));background-image:linear-gradient(30deg,#B8C2CC,rgba(184,194,204,.5))}.bg-gradient-secondary:active,.bg-gradient-secondary:hover{color:#FFF}.gradient-light-secondary{background:-webkit-linear-gradient(60deg,#B8C2CC 0,#DCDEEC 100%);background:linear-gradient(30deg,#B8C2CC 0,#DCDEEC 100%);color:#FFF}.gradient-light-secondary:active,.gradient-light-secondary:hover{color:#FFF}.bg-gradient-success{background:repeat-x #0064FA;color:#FFF;background-image:-webkit-linear-gradient(60deg,#28C76F,rgba(40,199,111,.5));background-image:linear-gradient(30deg,#28C76F,rgba(40,199,111,.5))}.bg-gradient-success:active,.bg-gradient-success:hover{color:#FFF}.gradient-light-success{background:-webkit-linear-gradient(60deg,#28C76F 0,#4AE9D3 100%);background:linear-gradient(30deg,#28C76F 0,#4AE9D3 100%);color:#FFF}.gradient-light-success:active,.gradient-light-success:hover{color:#FFF}.bg-gradient-info{background:repeat-x #640064;color:#FFF;background-image:-webkit-linear-gradient(60deg,#00CFE8,rgba(0,207,232,.5));background-image:linear-gradient(30deg,#00CFE8,rgba(0,207,232,.5))}.bg-gradient-info:active,.bg-gradient-info:hover{color:#FFF}.gradient-light-info{background:-webkit-linear-gradient(60deg,#00CFE8 0,#2D91FF 100%);background:linear-gradient(30deg,#00CFE8 0,#2D91FF 100%);color:#FFF}.gradient-light-info:active,.gradient-light-info:hover{color:#FFF}.bg-gradient-warning{background:repeat-x #FAFAFA;color:#FFF;background-image:-webkit-linear-gradient(60deg,#FF9F43,rgba(255,159,67,.5));background-image:linear-gradient(30deg,#FF9F43,rgba(255,159,67,.5))}.bg-gradient-warning:active,.bg-gradient-warning:hover{color:#FFF}.gradient-light-warning{background:-webkit-linear-gradient(60deg,#FF9F43 0,#FFF487 100%);background:linear-gradient(30deg,#FF9F43 0,#FFF487 100%);color:#FFF}.gradient-light-warning:active,.gradient-light-warning:hover{color:#FFF}.bg-gradient-danger{background:repeat-x #640064;color:#FFF;background-image:-webkit-linear-gradient(60deg,#EA5455,rgba(234,84,85,.5));background-image:linear-gradient(30deg,#EA5455,rgba(234,84,85,.5))}.bg-gradient-danger:active,.bg-gradient-danger:hover{color:#FFF}.gradient-light-danger{background:-webkit-linear-gradient(60deg,#EA5455 0,#F9B789 100%);background:linear-gradient(30deg,#EA5455 0,#F9B789 100%);color:#FFF}.gradient-light-danger:active,.gradient-light-danger:hover{color:#FFF} \ No newline at end of file diff --git a/assets/css/core/colors/palette-noui.css b/assets/css/core/colors/palette-noui.css new file mode 100644 index 0000000..5f727e2 --- /dev/null +++ b/assets/css/core/colors/palette-noui.css @@ -0,0 +1,119 @@ +.slider-white .noUi-connect { + background: #FFFFFF !important; } + +.slider-white.noUi-connect { + background: #FFFFFF !important; } + +.slider-white .noUi-handle { + border-color: #FFFFFF !important; } + +.slider-white.circle-filled .noUi-handle, .slider-white.square .noUi-handle { + background: #FFFFFF !important; } + +.slider-black .noUi-connect { + background: #000000 !important; } + +.slider-black.noUi-connect { + background: #000000 !important; } + +.slider-black .noUi-handle { + border-color: #000000 !important; } + +.slider-black.circle-filled .noUi-handle, .slider-black.square .noUi-handle { + background: #000000 !important; } + +.slider-dark .noUi-connect { + background: #1e1e1e !important; } + +.slider-dark.noUi-connect { + background: #1e1e1e !important; } + +.slider-dark .noUi-handle { + border-color: #1e1e1e !important; } + +.slider-dark.circle-filled .noUi-handle, .slider-dark.square .noUi-handle { + background: #1e1e1e !important; } + +.slider-light .noUi-connect { + background: #babfc7 !important; } + +.slider-light.noUi-connect { + background: #babfc7 !important; } + +.slider-light .noUi-handle { + border-color: #babfc7 !important; } + +.slider-light.circle-filled .noUi-handle, .slider-light.square .noUi-handle { + background: #babfc7 !important; } + +.slider-primary .noUi-connect { + background: #3a50dc !important; } + +.slider-primary.noUi-connect { + background: #3a50dc !important; } + +.slider-primary .noUi-handle { + border-color: #3a50dc !important; } + +.slider-primary.circle-filled .noUi-handle, .slider-primary.square .noUi-handle { + background: #3a50dc !important; } + +.slider-secondary .noUi-connect { + background: #b8c2cc !important; } + +.slider-secondary.noUi-connect { + background: #b8c2cc !important; } + +.slider-secondary .noUi-handle { + border-color: #b8c2cc !important; } + +.slider-secondary.circle-filled .noUi-handle, .slider-secondary.square .noUi-handle { + background: #b8c2cc !important; } + +.slider-success .noUi-connect { + background: #28c76f !important; } + +.slider-success.noUi-connect { + background: #28c76f !important; } + +.slider-success .noUi-handle { + border-color: #28c76f !important; } + +.slider-success.circle-filled .noUi-handle, .slider-success.square .noUi-handle { + background: #28c76f !important; } + +.slider-info .noUi-connect { + background: #00cfe8 !important; } + +.slider-info.noUi-connect { + background: #00cfe8 !important; } + +.slider-info .noUi-handle { + border-color: #00cfe8 !important; } + +.slider-info.circle-filled .noUi-handle, .slider-info.square .noUi-handle { + background: #00cfe8 !important; } + +.slider-warning .noUi-connect { + background: #ff9f43 !important; } + +.slider-warning.noUi-connect { + background: #ff9f43 !important; } + +.slider-warning .noUi-handle { + border-color: #ff9f43 !important; } + +.slider-warning.circle-filled .noUi-handle, .slider-warning.square .noUi-handle { + background: #ff9f43 !important; } + +.slider-danger .noUi-connect { + background: #ea5455 !important; } + +.slider-danger.noUi-connect { + background: #ea5455 !important; } + +.slider-danger .noUi-handle { + border-color: #ea5455 !important; } + +.slider-danger.circle-filled .noUi-handle, .slider-danger.square .noUi-handle { + background: #ea5455 !important; } diff --git a/assets/css/core/colors/palette-noui.min.css b/assets/css/core/colors/palette-noui.min.css new file mode 100644 index 0000000..81c5803 --- /dev/null +++ b/assets/css/core/colors/palette-noui.min.css @@ -0,0 +1 @@ +.slider-white .noUi-connect,.slider-white.circle-filled .noUi-handle,.slider-white.noUi-connect,.slider-white.square .noUi-handle{background:#FFF!important}.slider-white .noUi-handle{border-color:#FFF!important}.slider-black .noUi-connect,.slider-black.circle-filled .noUi-handle,.slider-black.noUi-connect,.slider-black.square .noUi-handle{background:#000!important}.slider-black .noUi-handle{border-color:#000!important}.slider-dark .noUi-connect,.slider-dark.circle-filled .noUi-handle,.slider-dark.noUi-connect,.slider-dark.square .noUi-handle{background:#1E1E1E!important}.slider-dark .noUi-handle{border-color:#1E1E1E!important}.slider-light .noUi-connect,.slider-light.circle-filled .noUi-handle,.slider-light.noUi-connect,.slider-light.square .noUi-handle{background:#BABFC7!important}.slider-light .noUi-handle{border-color:#BABFC7!important}.slider-primary .noUi-connect,.slider-primary.circle-filled .noUi-handle,.slider-primary.noUi-connect,.slider-primary.square .noUi-handle{background:#7367F0!important}.slider-primary .noUi-handle{border-color:#7367F0!important}.slider-secondary .noUi-connect,.slider-secondary.circle-filled .noUi-handle,.slider-secondary.noUi-connect,.slider-secondary.square .noUi-handle{background:#B8C2CC!important}.slider-secondary .noUi-handle{border-color:#B8C2CC!important}.slider-success .noUi-connect,.slider-success.circle-filled .noUi-handle,.slider-success.noUi-connect,.slider-success.square .noUi-handle{background:#28C76F!important}.slider-success .noUi-handle{border-color:#28C76F!important}.slider-info .noUi-connect,.slider-info.circle-filled .noUi-handle,.slider-info.noUi-connect,.slider-info.square .noUi-handle{background:#00CFE8!important}.slider-info .noUi-handle{border-color:#00CFE8!important}.slider-warning .noUi-connect,.slider-warning.circle-filled .noUi-handle,.slider-warning.noUi-connect,.slider-warning.square .noUi-handle{background:#FF9F43!important}.slider-warning .noUi-handle{border-color:#FF9F43!important}.slider-danger .noUi-connect,.slider-danger.circle-filled .noUi-handle,.slider-danger.noUi-connect,.slider-danger.square .noUi-handle{background:#EA5455!important}.slider-danger .noUi-handle{border-color:#EA5455!important} \ No newline at end of file diff --git a/assets/css/core/colors/palette-variables.css b/assets/css/core/colors/palette-variables.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/core/colors/palette-variables.min.css b/assets/css/core/colors/palette-variables.min.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/core/menu/menu-types/horizontal-menu.css b/assets/css/core/menu/menu-types/horizontal-menu.css new file mode 100644 index 0000000..0a14ef2 --- /dev/null +++ b/assets/css/core/menu/menu-types/horizontal-menu.css @@ -0,0 +1,334 @@ +/*========================================================================================= + File Name: horizontal-menu.scss + Description: A classic horizontal menu for easy navingation & support all devices. + It support light & dark version, filpped layout, right side icons, borders menu for + item seperation. + ---------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts DashboardTheme + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +==========================================================================================*/ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.horizontal-menu .content { + margin-left: 0; } + .horizontal-menu .content .content-wrapper { + margin-top: 0 !important; } + +.horizontal-menu footer { + position: static; } + +.horizontal-menu.navbar-floating:not(.blank-page) .app-content { + padding-top: 9.75rem; } + +.horizontal-menu.navbar-floating .horizontal-menu-wrapper { + background: linear-gradient(to bottom, rgba(248, 248, 248, 0.95) 44%, rgba(248, 248, 248, 0.46) 73%, rgba(255, 255, 255, 0) 100%); + background-repeat: repeat-x; } + .horizontal-menu.navbar-floating .horizontal-menu-wrapper .navbar-horizontal.floating-nav { + margin: 1.3rem 2.2rem 0; } + +.horizontal-menu.dark-layout .header-navbar { + background: inherit !important; } + +.horizontal-menu.dark-layout .horizontal-menu-wrapper { + background: linear-gradient(to bottom, rgba(37, 43, 71, 0.76) 44%, rgba(56, 53, 53, 0.46) 73%, rgba(255, 255, 255, 0) 100%); } + .horizontal-menu.dark-layout .horizontal-menu-wrapper .header-navbar { + background: #10163a !important; } + .horizontal-menu.dark-layout .horizontal-menu-wrapper .header-navbar.navbar-horizontal ul#main-menu-navigation > li:hover:not(.active) > a { + background: #262c49; } + +.horizontal-menu.semi-dark-layout .header-navbar { + background: linear-gradient(to bottom, rgba(37, 43, 71, 0.76) 44%, rgba(56, 53, 53, 0.46) 73%, rgba(255, 255, 255, 0) 100%); } + +.horizontal-menu.semi-dark-layout .horizontal-menu-wrapper .header-navbar { + background: #10163a !important; } + .horizontal-menu.semi-dark-layout .horizontal-menu-wrapper .header-navbar.navbar-horizontal ul#main-menu-navigation > li:hover > a { + background: #262c49; } + .horizontal-menu.semi-dark-layout .horizontal-menu-wrapper .header-navbar i, .horizontal-menu.semi-dark-layout .horizontal-menu-wrapper .header-navbar span, .horizontal-menu.semi-dark-layout .horizontal-menu-wrapper .header-navbar .nav-link { + color: #c2c6dc; } + +.horizontal-menu.semi-dark-layout .horizontal-menu-wrapper .dropdown-menu { + background-color: #262c49; } + +.horizontal-menu.navbar-sticky .app-content { + padding-top: 8.5rem; } + +.horizontal-menu.navbar-sticky .header-navbar { + background-color: #f8f8f8; } + +.horizontal-menu.navbar-sticky .horizontal-menu-wrapper .navbar-horizontal.header-navbar.fixed-top { + left: 0; + top: 62px; + background-color: #fff; } + +.horizontal-menu.navbar-static .app-content { + padding-top: 2.5rem; } + +.horizontal-menu.navbar-static .header-navbar { + background-color: #f8f8f8; } + .horizontal-menu.navbar-static .header-navbar .navbar-wrapper { + width: 100%; } + +.horizontal-menu.navbar-static .horizontal-menu-wrapper { + position: relative; } + .horizontal-menu.navbar-static .horizontal-menu-wrapper .navbar-horizontal.header-navbar { + background: #fff; } + .horizontal-menu.navbar-static .horizontal-menu-wrapper .navbar-horizontal.header-navbar.navbar-static-top { + position: static; + background: #fff; + left: 0; } + +.horizontal-menu .horizontal-menu-wrapper { + position: fixed; + top: 62px; + z-index: 990; + width: 100%; + height: 99px; } + .horizontal-menu .horizontal-menu-wrapper .header-navbar .navbar-container { + padding-left: 1rem; + padding-right: 1rem; + width: 100%; } + .horizontal-menu .horizontal-menu-wrapper .header-navbar .navbar-header { + display: none; } + +.horizontal-menu .header-navbar { + background: #fff; + z-index: 999 !important; + line-height: 1; + min-height: auto; } + .horizontal-menu .header-navbar.navbar-horizontal.floating-nav { + width: calc(100vw - (100vw - 100%) - calc(2.2rem * 2)); + background: #fff; } + .horizontal-menu .header-navbar .navbar-container { + padding-left: 2.2rem; + padding-right: calc(2.2rem - 1rem); + border-radius: 0.5rem; } + .horizontal-menu .header-navbar.navbar-fixed { + position: fixed; + width: 100%; } + .horizontal-menu .header-navbar.navbar-brand-center .navbar-header { + position: absolute; + left: 50%; + margin-left: -65px; + padding: 0; + z-index: 1000; } + .horizontal-menu .header-navbar.navbar-brand-center .navbar-header .navbar-brand { + display: flex; + align-items: center; + margin-right: 0; } + .horizontal-menu .header-navbar.navbar-brand-center .navbar-header .navbar-brand .brand-logo { + background: url("/assets/images/iva_logo.svg") no-repeat; + height: 36px; + width: 36px; } + .horizontal-menu .header-navbar.navbar-brand-center .navbar-header .navbar-brand .brand-text { + color: #fff; + padding-left: 1rem; + letter-spacing: 0.01rem; + font-size: 1.57rem; } + .horizontal-menu .header-navbar.navbar-horizontal .nav-link.dropdown-toggle::after { + left: 0.4rem; } + .horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu::before { + display: none; } + .horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu { + min-width: 215px; + border: none; + margin-top: 0; + min-height: 52px; } + .horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .disabled { + pointer-events: none !important; } + .horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .disabled a { + color: #b8c2cc; } + .horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-toggle::after { + left: auto; + position: absolute; + top: 50%; + margin-top: -7px; + right: 1rem; + content: "\e844" !important; } + .horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-item { + font-size: 1rem; + padding: 0.965rem 1.428rem; + display: flex; + align-items: center; } + .horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-submenu { + position: relative; } + .horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-submenu.openLeft .dropdown-menu { + left: auto; + right: 100%; } + .horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-submenu.show { + background: #f8f8f8; } + .horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-submenu > .dropdown-menu { + position: absolute; + top: 0 !important; + left: 100% !important; } + .horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-submenu > .dropdown-menu i { + font-size: 0.75rem !important; } + .horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation > li { + padding-top: 0.965rem; + padding-bottom: 0.965rem; } + .horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation > li > .dropdown-menu { + margin-top: 0.75rem; } + .horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation > li > .dropdown-menu a { + transition: padding 0.35s ease 0s !important; } + .horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation > li > .dropdown-menu a:hover { + padding-left: 25px; + transition: padding 0.35s ease 0s !important; + background-color: transparent; + color: #626262; } + .horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation > li > .dropdown-menu .active > a { + background: #f8f8f8; + color: #3a50dc; + font-weight: 500; } + .horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation > li > .dropdown-menu .open.active > a { + color: #626262; + font-weight: normal; } + .horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation > li i { + font-size: 1.11rem; + margin-right: 0.75rem; } + .horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation > li > a { + padding: 0.75rem 1.25rem 0.75rem 1.25rem; + display: flex; + margin-right: 0.5rem; } + .horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation > li:hover > a { + background: #f8f8f8; + border-radius: 4px; } + .horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation > li.active > a { + background: linear-gradient(118deg, #3a50dc, rgb(24, 61, 176)); + box-shadow: 0px 0px 6px 1px rgba(115, 103, 240, 0.6); + color: #fff; + border-radius: 4px; } + +.horizontal-menu.menu-collapsed #main-menu-navigation .nav-item > a span { + display: none; } + +.horizontal-menu .navigation-header { + font-family: inherit; + color: #929292; + padding: 8px 20px; + font-size: 1rem; + text-transform: uppercase; } + +.horizontal-menu .navbar-dark .nav-item.active > a { + border-bottom: 2px solid #3a50dc; + background-color: #313c50; } + +.horizontal-menu .content.app-content .content-area-wrapper { + margin-top: 2.2rem; } + .horizontal-menu .content.app-content .content-area-wrapper .content-wrapper { + height: calc(100vh - 16rem); + height: calc(var(--vh, 1vh) * 100 - 16rem); } + +.horizontal-menu.chat-application .sidebar-content, +.horizontal-menu.email-application .content-area-wrapper .sidebar .email-app-sidebar, +.horizontal-menu.todo-application .content-area-wrapper .sidebar .todo-sidebar { + height: calc(100vh - 16rem); + height: calc(var(--vh, 1vh) * 100 - 16rem); } + +.horizontal-menu.todo-application .content-area-wrapper .content-right .todo-task-list { + height: calc(100vh - 19.5rem); + height: calc(var(--vh, 1vh) * 100 - 19.5rem); } + +.horizontal-menu.email-application .app-content .content-area-wrapper .email-user-list { + height: calc(100vh - 23.3rem); + height: calc(var(--vh, 1vh) * 100 - 23.3rem); } + +.horizontal-menu.chat-application .user-profile-sidebar { + height: calc(100vh - 16.1rem); + height: calc(var(--vh, 1vh) * 100 - 16.1rem); + bottom: 4.1rem; } + +.horizontal-menu.chat-application .chat-profile-sidebar { + height: calc(100vh - 16rem); + height: calc(var(--vh, 1vh) * 100 - 16rem); } + +.horizontal-menu.chat-application .chat-app-window .user-chats { + height: calc(100vh - 26.5rem); + height: calc(var(--vh, 1vh) * 100 - 26.5rem); } + +@media (max-width: 1199.98px) { + body.horizontal-layout.horizontal-menu .horizontal-menu-wrapper .header-navbar { + display: none; } + body.horizontal-layout .header-navbar { + background: #fff; } + body.horizontal-layout .content .content-wrapper { + margin-top: 5rem; } } + +/*========================================================================================= + File Name: vertical-overlay-menu.scss + Description: A overlay style vertical menu with show and hide support. It support + light & dark version, filpped layout, right side icons, native scroll and borders menu + item seperation. + ---------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +==========================================================================================*/ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.vertical-overlay-menu .content { + margin-left: 0; } + +.vertical-overlay-menu .navbar .navbar-header { + float: left; + width: 260px; } + +.vertical-overlay-menu .navbar.header-navbar.floating-nav { + width: calc(100vw - (100vw - 100%) - calc(2.2rem * 2)); } + +.vertical-overlay-menu .main-menu, .vertical-overlay-menu.menu-hide .main-menu { + opacity: 0; + transform: translate3d(0, 0, 0); + transition: width .25s,opacity .25s,transform .25s; + width: 260px; + left: -260px; } + .vertical-overlay-menu .main-menu .navigation .navigation-header .icon-minus { + display: none; } + .vertical-overlay-menu .main-menu .navigation > li > a > i { + margin-right: 14px; + float: left; } + .vertical-overlay-menu .main-menu .navigation > li > a > i:before { + transition: 200ms ease all; + font-size: 1.429rem; } + .vertical-overlay-menu .main-menu .navigation li.has-sub > a:not(.mm-next):after { + content: "\f105"; + font-family: 'FontAwesome'; + font-size: 1rem; + display: inline-block; + position: absolute; + right: 25px; + top: 10px; + transform: rotate(0deg); + transition: -webkit-transform 0.2s ease-in-out; } + .vertical-overlay-menu .main-menu .navigation li.open > a:not(.mm-next):after { + transform: rotate(90deg); } + .vertical-overlay-menu .main-menu .navigation li a i { + font-size: 1.1rem; } + .vertical-overlay-menu .main-menu .main-menu-footer { + bottom: 55px; } + .vertical-overlay-menu .main-menu .main-menu-footer { + width: 260px; } + +.vertical-overlay-menu.menu-open .main-menu { + opacity: 1; + transform: translate3d(260px, 0, 0); + transition: width .25s,opacity .25s,transform .25s; } + +.vertical-overlay-menu.menu-flipped .main-menu { + right: -260px; + left: inherit; } + +.vertical-overlay-menu.menu-flipped .navbar .navbar-container { + margin: 0; + margin-right: 260px; } + +.vertical-overlay-menu.menu-flipped .navbar .navbar-header { + float: right; } + +.vertical-overlay-menu.menu-flipped.menu-open .main-menu { + transform: translate3d(-260px, 0, 0); } + +@media (max-width: 991.98px) { + .vertical-overlay-menu .main-menu .main-menu-footer { + bottom: 0px; } } diff --git a/assets/css/core/menu/menu-types/horizontal-menu.min.css b/assets/css/core/menu/menu-types/horizontal-menu.min.css new file mode 100644 index 0000000..6e9bb47 --- /dev/null +++ b/assets/css/core/menu/menu-types/horizontal-menu.min.css @@ -0,0 +1 @@ +.horizontal-menu .content{margin-left:0}.horizontal-menu .content .content-wrapper{margin-top:0!important}.horizontal-menu footer{position:static}.horizontal-menu.navbar-floating:not(.blank-page) .app-content{padding-top:9.75rem}.horizontal-menu.navbar-floating .horizontal-menu-wrapper{background:-webkit-linear-gradient(top,rgba(248,248,248,.95) 44%,rgba(248,248,248,.46) 73%,rgba(255,255,255,0) 100%);background:linear-gradient(to bottom,rgba(248,248,248,.95) 44%,rgba(248,248,248,.46) 73%,rgba(255,255,255,0) 100%);background-repeat:repeat-x}.horizontal-menu.navbar-floating .horizontal-menu-wrapper .navbar-horizontal.floating-nav{margin:1.3rem 2.2rem 0}.horizontal-menu.dark-layout .header-navbar{background:inherit!important}.horizontal-menu.dark-layout .horizontal-menu-wrapper{background:-webkit-linear-gradient(top,rgba(37,43,71,.76) 44%,rgba(56,53,53,.46) 73%,rgba(255,255,255,0) 100%);background:linear-gradient(to bottom,rgba(37,43,71,.76) 44%,rgba(56,53,53,.46) 73%,rgba(255,255,255,0) 100%)}.horizontal-menu.dark-layout .horizontal-menu-wrapper .header-navbar{background:#10163A!important}.horizontal-menu.dark-layout .horizontal-menu-wrapper .header-navbar.navbar-horizontal ul#main-menu-navigation>li:hover:not(.active)>a{background:#262C49}.horizontal-menu.semi-dark-layout .header-navbar{background:-webkit-linear-gradient(top,rgba(37,43,71,.76) 44%,rgba(56,53,53,.46) 73%,rgba(255,255,255,0) 100%);background:linear-gradient(to bottom,rgba(37,43,71,.76) 44%,rgba(56,53,53,.46) 73%,rgba(255,255,255,0) 100%)}.horizontal-menu.semi-dark-layout .horizontal-menu-wrapper .header-navbar{background:#10163A!important}.horizontal-menu.semi-dark-layout .horizontal-menu-wrapper .header-navbar.navbar-horizontal ul#main-menu-navigation>li:hover>a{background:#262C49}.horizontal-menu.semi-dark-layout .horizontal-menu-wrapper .header-navbar .nav-link,.horizontal-menu.semi-dark-layout .horizontal-menu-wrapper .header-navbar i,.horizontal-menu.semi-dark-layout .horizontal-menu-wrapper .header-navbar span{color:#C2C6DC}.horizontal-menu.semi-dark-layout .horizontal-menu-wrapper .dropdown-menu{background-color:#262C49}.horizontal-menu.navbar-sticky .app-content{padding-top:8.5rem}.horizontal-menu.navbar-sticky .header-navbar{background-color:#F8F8F8}.horizontal-menu.navbar-sticky .horizontal-menu-wrapper .navbar-horizontal.header-navbar.fixed-top{left:0;top:62px;background-color:#FFF}.horizontal-menu.navbar-static .app-content{padding-top:2.5rem}.horizontal-menu.navbar-static .header-navbar{background-color:#F8F8F8}.horizontal-menu.navbar-static .header-navbar .navbar-wrapper{width:100%}.horizontal-menu.navbar-static .horizontal-menu-wrapper{position:relative}.horizontal-menu.navbar-static .horizontal-menu-wrapper .navbar-horizontal.header-navbar{background:#FFF}.horizontal-menu.navbar-static .horizontal-menu-wrapper .navbar-horizontal.header-navbar.navbar-static-top{position:static;background:#FFF;left:0}.horizontal-menu .horizontal-menu-wrapper{position:fixed;top:62px;z-index:990;width:100%;height:99px}.horizontal-menu .horizontal-menu-wrapper .header-navbar .navbar-container{padding-left:1rem;padding-right:1rem;width:100%}.horizontal-menu .horizontal-menu-wrapper .header-navbar .navbar-header{display:none}.horizontal-menu .header-navbar{background:#FFF;z-index:999!important;line-height:1;min-height:auto}.horizontal-menu .header-navbar.navbar-horizontal.floating-nav{width:calc(100vw - (100vw - 100%) - calc(2.2rem * 2));background:#FFF}.horizontal-menu .header-navbar .navbar-container{padding-left:2.2rem;padding-right:calc(2.2rem - 1rem);border-radius:.5rem}.horizontal-menu .header-navbar.navbar-fixed{position:fixed;width:100%}.horizontal-menu .header-navbar.navbar-brand-center .navbar-header{position:absolute;left:50%;margin-left:-65px;padding:0;z-index:1000}.horizontal-menu .header-navbar.navbar-brand-center .navbar-header .navbar-brand{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-right:0}.horizontal-menu .header-navbar.navbar-brand-center .navbar-header .navbar-brand .brand-logo{background:url(../../..//assets/images/logo/vuexy-logo.png) -65px -54px no-repeat;height:24px;width:35px}.horizontal-menu .header-navbar.navbar-brand-center .navbar-header .navbar-brand .brand-text{color:#FFF;padding-left:1rem;letter-spacing:.01rem;font-size:1.57rem}.horizontal-menu .header-navbar.navbar-horizontal .nav-link.dropdown-toggle::after{left:.4rem}.horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu::before{display:none}.horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu{min-width:215px;border:none;margin-top:0;min-height:52px}.horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .disabled{pointer-events:none!important}.horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .disabled a{color:#B8C2CC}.horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-toggle::after{left:auto;position:absolute;top:50%;margin-top:-7px;right:1rem;content:'\e844'!important}.horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-item{font-size:1rem;padding:.965rem 1.428rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-submenu{position:relative}.horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-submenu.openLeft .dropdown-menu{left:auto;right:100%}.horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-submenu.show{background:#F8F8F8}.horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-submenu>.dropdown-menu{position:absolute;top:0!important;left:100%!important}.horizontal-menu .header-navbar.navbar-horizontal .dropdown-menu .dropdown-submenu>.dropdown-menu i{font-size:.75rem!important}.horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation>li{padding-top:.965rem;padding-bottom:.965rem}.horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation>li>.dropdown-menu{margin-top:.75rem}.horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation>li>.dropdown-menu a{-webkit-transition:padding .35s ease 0s!important;transition:padding .35s ease 0s!important}.horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation>li>.dropdown-menu a:hover{padding-left:25px;-webkit-transition:padding .35s ease 0s!important;transition:padding .35s ease 0s!important;background-color:transparent;color:#626262}.horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation>li>.dropdown-menu .active>a{background:#F8F8F8;color:#7367F0;font-weight:500}.horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation>li>.dropdown-menu .open.active>a{color:#626262;font-weight:400}.horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation>li i{font-size:1.11rem;margin-right:.75rem}.horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation>li>a{padding:.75rem 1.25rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-right:.5rem}.horizontal-menu.menu-collapsed #main-menu-navigation .nav-item>a span,.vertical-overlay-menu .main-menu .navigation .navigation-header .icon-minus{display:none}.horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation>li:hover>a{background:#F8F8F8;border-radius:4px}.horizontal-menu .header-navbar.navbar-horizontal ul#main-menu-navigation>li.active>a{background:-webkit-linear-gradient(332deg,#7367F0,rgba(115,103,240,.7));background:linear-gradient(118deg,#7367F0,rgba(115,103,240,.7));box-shadow:0 0 6px 1px rgba(115,103,240,.6);color:#FFF;border-radius:4px}.horizontal-menu .navigation-header{font-family:inherit;color:#929292;padding:8px 20px;font-size:1rem;text-transform:uppercase}.horizontal-menu .navbar-dark .nav-item.active>a{border-bottom:2px solid #7367F0;background-color:#313C50}.horizontal-menu .content.app-content .content-area-wrapper{margin-top:2.2rem}.horizontal-menu .content.app-content .content-area-wrapper .content-wrapper,.horizontal-menu.chat-application .sidebar-content,.horizontal-menu.email-application .content-area-wrapper .sidebar .email-app-sidebar,.horizontal-menu.todo-application .content-area-wrapper .sidebar .todo-sidebar{height:calc(100vh - 16rem);height:calc(var(--vh,1vh) * 100 - 16rem)}.horizontal-menu.todo-application .content-area-wrapper .content-right .todo-task-list{height:calc(100vh - 19.5rem);height:calc(var(--vh,1vh) * 100 - 19.5rem)}.horizontal-menu.email-application .app-content .content-area-wrapper .email-user-list{height:calc(100vh - 23.3rem);height:calc(var(--vh,1vh) * 100 - 23.3rem)}.horizontal-menu.chat-application .user-profile-sidebar{height:calc(100vh - 16.1rem);height:calc(var(--vh,1vh) * 100 - 16.1rem);bottom:4.1rem}.horizontal-menu.chat-application .chat-profile-sidebar{height:calc(100vh - 16rem);height:calc(var(--vh,1vh) * 100 - 16rem)}.horizontal-menu.chat-application .chat-app-window .user-chats{height:calc(100vh - 26.5rem);height:calc(var(--vh,1vh) * 100 - 26.5rem)}@media (max-width:1199.98px){body.horizontal-layout.horizontal-menu .horizontal-menu-wrapper .header-navbar{display:none}body.horizontal-layout .header-navbar{background:#FFF}body.horizontal-layout .content .content-wrapper{margin-top:5rem}}.vertical-overlay-menu .content{margin-left:0}.vertical-overlay-menu .navbar .navbar-header{float:left;width:260px}.vertical-overlay-menu .navbar.header-navbar.floating-nav{width:calc(100vw - (100vw - 100%) - calc(2.2rem * 2))}.vertical-overlay-menu .main-menu,.vertical-overlay-menu.menu-hide .main-menu{opacity:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:width .25s,opacity .25s,-webkit-transform .25s;transition:width .25s,opacity .25s,-webkit-transform .25s;transition:width .25s,opacity .25s,transform .25s;transition:width .25s,opacity .25s,transform .25s,-webkit-transform .25s;width:260px;left:-260px}.vertical-overlay-menu .main-menu .navigation>li>a>i{margin-right:14px;float:left}.vertical-overlay-menu .main-menu .navigation>li>a>i:before{-webkit-transition:.2s ease all;transition:.2s ease all;font-size:1.429rem}.vertical-overlay-menu .main-menu .navigation li.has-sub>a:not(.mm-next):after{content:'\f105';font-family:FontAwesome;font-size:1rem;display:inline-block;position:absolute;right:25px;top:10px;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);transition:-webkit-transform .2s ease-in-out}.vertical-overlay-menu .main-menu .navigation li.open>a:not(.mm-next):after{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.vertical-overlay-menu .main-menu .navigation li a i{font-size:1.1rem}.vertical-overlay-menu .main-menu .main-menu-footer{bottom:55px;width:260px}.vertical-overlay-menu.menu-open .main-menu{opacity:1;-webkit-transform:translate3d(260px,0,0);transform:translate3d(260px,0,0);-webkit-transition:width .25s,opacity .25s,-webkit-transform .25s;transition:width .25s,opacity .25s,-webkit-transform .25s;transition:width .25s,opacity .25s,transform .25s;transition:width .25s,opacity .25s,transform .25s,-webkit-transform .25s}.vertical-overlay-menu.menu-flipped .main-menu{right:-260px;left:inherit}.vertical-overlay-menu.menu-flipped .navbar .navbar-container{margin:0 260px 0 0}.vertical-overlay-menu.menu-flipped .navbar .navbar-header{float:right}.vertical-overlay-menu.menu-flipped.menu-open .main-menu{-webkit-transform:translate3d(-260px,0,0);transform:translate3d(-260px,0,0)}@media (max-width:991.98px){.vertical-overlay-menu .main-menu .main-menu-footer{bottom:0}} \ No newline at end of file diff --git a/assets/css/core/menu/menu-types/vertical-menu.css b/assets/css/core/menu/menu-types/vertical-menu.css new file mode 100644 index 0000000..a6ec3ea --- /dev/null +++ b/assets/css/core/menu/menu-types/vertical-menu.css @@ -0,0 +1,359 @@ +/*========================================================================================= + File Name: vertical-menu.scss + Description: A calssic vertical modern style menu with expand and collops support. It support + light & dark version, filpped layout, right side icons, native scroll and borders menu + item seperation. + ---------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +==========================================================================================*/ +/*======================================================== + DARK LAYOUT +=========================================================*/ +body.vertical-layout.vertical-menu-modern .main-menu .navigation > li > a > i { + font-size: 1.2rem; + margin-right: 1rem; + float: left; } + +body.vertical-layout.vertical-menu-modern .main-menu .navigation .menu-content > li > a > i { + margin-right: 1.38rem; + font-size: 0.8rem; } + +body.vertical-layout.vertical-menu-modern .toggle-icon { + margin-right: 0.425rem; } + body.vertical-layout.vertical-menu-modern .toggle-icon:focus { + outline: none; } + +@media (min-width: 576px) { + body.vertical-layout.vertical-menu-modern.menu-flipped .main-menu { + right: 0; } } + +body.vertical-layout.vertical-menu-modern .navbar .navbar-brand { + white-space: nowrap; } + +body.vertical-layout.vertical-menu-modern .navbar .navbar-header .nav-toggle { + position: absolute; + right: 0; } + +body.vertical-layout.vertical-menu-modern .main-menu { + transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); + transform: translate3d(0, 0, 0); + backface-visibility: hidden; } + +body.vertical-layout.vertical-menu-modern.menu-expanded .navbar .navbar-header { + float: left; + width: 260px; } + +body.vertical-layout.vertical-menu-modern.menu-expanded .navbar .navbar-brand .brand-text { + animation: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 fadein; } + +body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu { + width: 260px; } + body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation .navigation-header .icon-minus { + display: none; } + body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation > li > a > i { + margin-right: 1rem; + float: left; } + body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation > li > a > i:before { + font-size: 1.429rem; } + body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation > li > a > span { + animation: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 fadein; } + body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation > li > a > span.badge { + position: absolute; + right: 20px; } + body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation li.has-sub > a:not(.mm-next):after { + content: "\f105"; + font-family: 'FontAwesome'; + font-size: 1.1rem; + display: inline-block; + position: absolute; + right: 25px; + top: 10px; + transform: rotate(0deg); + transition: -webkit-transform 0.2s ease-in-out; } + body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation li.open > a:not(.mm-next):after { + transform: rotate(90deg); } + body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .main-menu-footer { + width: 260px; } + +body.vertical-layout.vertical-menu-modern.menu-expanded .footer { + margin-left: 260px; } + +body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-header { + float: left; + width: 80px; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-header .modern-nav-toggle { + display: none; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-header.expanded { + width: 260px; + z-index: 1000; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-header.expanded .modern-nav-toggle { + display: block; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-header.expanded .navbar-brand .brand-text { + animation: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 fadein; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-header .navbar-brand .brand-text { + animation: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 fadeout; } + +body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-brand { + padding: 15px 0px; } + +body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar.fixed-top { + left: 80px; } + +body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu { + width: 80px; + transition: 300ms ease all; + backface-visibility: hidden; + transform: translate3d(0, 0, 0); } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .main-menu-footer { + width: 80px; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .main-menu-footer, + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .main-menu-header .media-body .media-heading, + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .main-menu-header .media-body .text-muted, + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .main-menu-header .media-right { + display: none; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .main-menu-header .media-body { + opacity: 0; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navbar-header .brand-text, + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .modern-nav-toggle { + display: none; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .user-content { + padding: 20px 10px; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu:not(.expanded) .navigation-header { + margin: 0; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu:not(.expanded) .navigation li a { + line-height: 1; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu:not(.expanded) .navigation li:last-child { + margin-bottom: 1.25rem !important; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu:not(.expanded) .navigation li.active a { + background: whitesmoke; + box-shadow: none; + color: #565656; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation { + overflow: visible; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation > li.navigation-header .icon-minus { + display: block; + font-size: 1.2rem; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation > li.navigation-header span { + display: none; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation > li > a { + text-overflow: inherit; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation > li > a > span { + animation: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 fadeout; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation > li > a > span.badge { + float: none !important; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation > li > a i { + margin-right: 1rem; + float: left; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation > li > a i:before { + font-size: 1.429rem; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .mTSWrapper { + overflow: visible; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded { + width: 260px; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navigation > li.navigation-header .icon-minus { + display: none; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navigation > li.navigation-header span { + display: block; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navigation > li > a > span { + animation: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 fadein; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navigation > li > a > span.badge { + position: absolute; + right: 20px; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navigation li.has-sub > a:not(.mm-next):after { + content: "\f105"; + font-family: 'FontAwesome'; + font-size: 1rem; + display: inline-block; + position: absolute; + right: 25px; + top: 10px; + transform: rotate(0deg); + transition: -webkit-transform 0.2s ease-in-out; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navigation li.open > a:not(.mm-next):after { + transform: rotate(90deg); } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navbar-header .brand-text { + display: inline; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .modern-nav-toggle { + display: block; } + +body.vertical-layout.vertical-menu-modern.menu-collapsed .app-content, +body.vertical-layout.vertical-menu-modern.menu-collapsed .footer { + margin-left: 80px; } + +body.vertical-layout.vertical-menu-modern.menu-collapsed .header-navbar.floating-nav { + width: calc(100vw - (100vw - 100%) - 4.4rem - 80px); } + +body.vertical-layout.vertical-menu-modern.menu-collapsed .header-navbar.navbar-static-top { + width: calc(100vw - (100vw - 100%) - 80px); + left: 80px; } + +body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .content { + margin: 0; + margin-right: 80px; } + +@media (min-width: 576px) { + body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .main-menu { + right: 0; } + body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .main-menu span.menu-title { + right: 80px; } + body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .main-menu ul.menu-content { + right: 80px; + left: inherit; } } + +body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .navbar .navbar-header { + float: right; } + +body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .navbar .navbar-container { + margin: 0; + margin-right: 80px; } + +body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .footer { + margin: 0; + margin-right: 80px; } + +@media (min-width: 992px) { + body.vertical-layout.vertical-menu-modern .main-menu { + width: 260px; } + body.vertical-layout.vertical-menu-modern .main-menu .navigation li.navigation-header .icon-minus { + display: none; } + body.vertical-layout.vertical-menu-modern .navbar .navbar-header { + width: 260px; } + body.vertical-layout.vertical-menu-modern .footer { + margin-left: 260px; } + body.vertical-layout.vertical-menu-modern.menu-flipped .content { + margin: 0; + margin-right: 260px; } + body.vertical-layout.vertical-menu-modern.menu-flipped .navbar .navbar-header { + float: right; } + body.vertical-layout.vertical-menu-modern.menu-flipped .navbar .navbar-container { + margin: 0; + margin-right: 260px; } + body.vertical-layout.vertical-menu-modern.menu-flipped .footer { + margin: 0; + margin-right: 260px; } } + +@media (max-width: 1199.98px) { + body.vertical-layout.vertical-menu-modern .main-menu { + width: 0; + opacity: 0; + left: -260px; } + body.vertical-layout.vertical-menu-modern .main-menu .navigation > li > a > span { + animation: 0.1s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 fadeout; } + body.vertical-layout.vertical-menu-modern .main-menu .navigation li.navigation-header span { + display: none; } + body.vertical-layout.vertical-menu-modern .navbar .navbar-header { + width: 0; } + body.vertical-layout.vertical-menu-modern .content, + body.vertical-layout.vertical-menu-modern .footer { + margin-left: 0; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .app-content, + body.vertical-layout.vertical-menu-modern.menu-collapsed .footer { + margin-left: 0; } + body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu { + width: 0; } } + +@media (max-width: 767.98px) { + body.vertical-layout.vertical-menu-modern .main-menu { + width: 0; } + body.vertical-layout.vertical-menu-modern .navbar .navbar-header { + width: 0; } + body.vertical-layout.vertical-menu-modern .content, + body.vertical-layout.vertical-menu-modern .footer { + margin-left: 0; } } + +@keyframes fadein { + from { + opacity: 0; } + to { + opacity: 1; } } + +@keyframes fadeout { + from { + opacity: 1; } + to { + opacity: 0; } } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + body.vertical-menu-modern.vertical-layout .main-menu .navigation > li > a > span { + animation: none; } } + +/*========================================================================================= + File Name: vertical-overlay-menu.scss + Description: A overlay style vertical menu with show and hide support. It support + light & dark version, filpped layout, right side icons, native scroll and borders menu + item seperation. + ---------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +==========================================================================================*/ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.vertical-overlay-menu .content { + margin-left: 0; } + +.vertical-overlay-menu .navbar .navbar-header { + float: left; + width: 260px; } + +.vertical-overlay-menu .navbar.header-navbar.floating-nav { + width: calc(100vw - (100vw - 100%) - calc(2.2rem * 2)); } + +.vertical-overlay-menu .main-menu, .vertical-overlay-menu.menu-hide .main-menu { + opacity: 0; + transform: translate3d(0, 0, 0); + transition: width .25s,opacity .25s,transform .25s; + width: 260px; + left: -260px; } + .vertical-overlay-menu .main-menu .navigation .navigation-header .icon-minus { + display: none; } + .vertical-overlay-menu .main-menu .navigation > li > a > i { + margin-right: 14px; + float: left; } + .vertical-overlay-menu .main-menu .navigation > li > a > i:before { + transition: 200ms ease all; + font-size: 1.429rem; } + .vertical-overlay-menu .main-menu .navigation li.has-sub > a:not(.mm-next):after { + content: "\f105"; + font-family: 'FontAwesome'; + font-size: 1rem; + display: inline-block; + position: absolute; + right: 25px; + top: 10px; + transform: rotate(0deg); + transition: -webkit-transform 0.2s ease-in-out; } + .vertical-overlay-menu .main-menu .navigation li.open > a:not(.mm-next):after { + transform: rotate(90deg); } + .vertical-overlay-menu .main-menu .navigation li a i { + font-size: 1.1rem; } + .vertical-overlay-menu .main-menu .main-menu-footer { + bottom: 55px; } + .vertical-overlay-menu .main-menu .main-menu-footer { + width: 260px; } + +.vertical-overlay-menu.menu-open .main-menu { + opacity: 1; + transform: translate3d(260px, 0, 0); + transition: width .25s,opacity .25s,transform .25s; } + +.vertical-overlay-menu.menu-flipped .main-menu { + right: -260px; + left: inherit; } + +.vertical-overlay-menu.menu-flipped .navbar .navbar-container { + margin: 0; + margin-right: 260px; } + +.vertical-overlay-menu.menu-flipped .navbar .navbar-header { + float: right; } + +.vertical-overlay-menu.menu-flipped.menu-open .main-menu { + transform: translate3d(-260px, 0, 0); } + +@media (max-width: 991.98px) { + .vertical-overlay-menu .main-menu .main-menu-footer { + bottom: 0px; } } diff --git a/assets/css/core/menu/menu-types/vertical-menu.min.css b/assets/css/core/menu/menu-types/vertical-menu.min.css new file mode 100644 index 0000000..d5e8682 --- /dev/null +++ b/assets/css/core/menu/menu-types/vertical-menu.min.css @@ -0,0 +1 @@ +body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu,body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .main-menu-footer{width:260px}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .mTSWrapper,body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation{overflow:visible}body.vertical-layout.vertical-menu-modern .main-menu .navigation>li>a>i{font-size:1.2rem;margin-right:1rem;float:left}body.vertical-layout.vertical-menu-modern .main-menu .navigation .menu-content>li>a>i{margin-right:1.38rem;font-size:.8rem}body.vertical-layout.vertical-menu-modern .toggle-icon{margin-right:.425rem}body.vertical-layout.vertical-menu-modern .toggle-icon:focus{outline:0}@media (min-width:576px){body.vertical-layout.vertical-menu-modern.menu-flipped .main-menu{right:0}}body.vertical-layout.vertical-menu-modern .navbar .navbar-brand{white-space:nowrap}body.vertical-layout.vertical-menu-modern .navbar .navbar-header .nav-toggle{position:absolute;right:0}body.vertical-layout.vertical-menu-modern .main-menu{-webkit-transition:.4s cubic-bezier(.25,.8,.25,1);transition:.4s cubic-bezier(.25,.8,.25,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-backface-visibility:hidden;backface-visibility:hidden}body.vertical-layout.vertical-menu-modern.menu-expanded .navbar .navbar-header{float:left;width:260px}body.vertical-layout.vertical-menu-modern.menu-expanded .navbar .navbar-brand .brand-text{-webkit-animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein;animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein}body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation .navigation-header .icon-minus{display:none}body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation>li>a>i{margin-right:1rem;float:left}body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation>li>a>i:before{font-size:1.429rem}body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation>li>a>span{-webkit-animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein;animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein}body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation>li>a>span.badge{position:absolute;right:20px}body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation li.has-sub>a:not(.mm-next):after{content:'\f105';font-family:FontAwesome;font-size:1.1rem;display:inline-block;position:absolute;right:25px;top:10px;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);transition:-webkit-transform .2s ease-in-out}body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation li.open>a:not(.mm-next):after{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}body.vertical-layout.vertical-menu-modern.menu-expanded .footer{margin-left:260px}body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-header{float:left;width:80px}body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-header .modern-nav-toggle{display:none}body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-header.expanded{width:260px;z-index:1000}body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-header.expanded .modern-nav-toggle{display:block}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .main-menu-footer,body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .main-menu-header .media-body .media-heading,body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .main-menu-header .media-body .text-muted,body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .main-menu-header .media-right,body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .modern-nav-toggle,body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navbar-header .brand-text{display:none}body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-header.expanded .navbar-brand .brand-text{-webkit-animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein;animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein}body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-header .navbar-brand .brand-text{-webkit-animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadeout;animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadeout}body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar .navbar-brand{padding:15px 0}body.vertical-layout.vertical-menu-modern.menu-collapsed .navbar.fixed-top{left:80px}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu{width:80px;-webkit-transition:.3s ease all;transition:.3s ease all;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .main-menu-footer{width:80px}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .main-menu-header .media-body{opacity:0}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .user-content{padding:20px 10px}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu:not(.expanded) .navigation-header{margin:0}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu:not(.expanded) .navigation li a{line-height:1}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu:not(.expanded) .navigation li:last-child{margin-bottom:1.25rem!important}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu:not(.expanded) .navigation li.active a{background:#f5f5f5;box-shadow:none;color:#565656}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation>li.navigation-header .icon-minus{display:block;font-size:1.2rem}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation>li.navigation-header span,body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navigation>li.navigation-header .icon-minus{display:none}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation>li>a{text-overflow:inherit}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation>li>a>span{-webkit-animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadeout;animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadeout}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation>li>a>span.badge{float:none!important}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation>li>a i{margin-right:1rem;float:left}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu .navigation>li>a i:before{font-size:1.429rem}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded{width:260px}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navigation>li.navigation-header span{display:block}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navigation>li>a>span{-webkit-animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein;animation:.3s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadein}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navigation>li>a>span.badge{position:absolute;right:20px}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navigation li.has-sub>a:not(.mm-next):after{content:'\f105';font-family:FontAwesome;font-size:1rem;display:inline-block;position:absolute;right:25px;top:10px;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);transition:-webkit-transform .2s ease-in-out}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navigation li.open>a:not(.mm-next):after{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .navbar-header .brand-text{display:inline}body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu.expanded .modern-nav-toggle{display:block}body.vertical-layout.vertical-menu-modern.menu-collapsed .app-content,body.vertical-layout.vertical-menu-modern.menu-collapsed .footer{margin-left:80px}body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .content,body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .footer,body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .navbar .navbar-container{margin:0 80px 0 0}body.vertical-layout.vertical-menu-modern.menu-collapsed .header-navbar.floating-nav{width:calc(100vw - (100vw - 100%) - 4.4rem - 80px)}body.vertical-layout.vertical-menu-modern.menu-collapsed .header-navbar.navbar-static-top{width:calc(100vw - (100vw - 100%) - 80px);left:80px}@media (min-width:576px){body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .main-menu{right:0}body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .main-menu span.menu-title{right:80px}body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .main-menu ul.menu-content{right:80px;left:inherit}}body.vertical-layout.vertical-menu-modern.menu-collapsed.menu-flipped .navbar .navbar-header{float:right}@media (min-width:992px){body.vertical-layout.vertical-menu-modern .main-menu,body.vertical-layout.vertical-menu-modern .navbar .navbar-header{width:260px}body.vertical-layout.vertical-menu-modern .main-menu .navigation li.navigation-header .icon-minus{display:none}body.vertical-layout.vertical-menu-modern .footer{margin-left:260px}body.vertical-layout.vertical-menu-modern.menu-flipped .content,body.vertical-layout.vertical-menu-modern.menu-flipped .footer,body.vertical-layout.vertical-menu-modern.menu-flipped .navbar .navbar-container{margin:0 260px 0 0}body.vertical-layout.vertical-menu-modern.menu-flipped .navbar .navbar-header{float:right}}@media (max-width:1199.98px){body.vertical-layout.vertical-menu-modern .navbar .navbar-header,body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu{width:0}body.vertical-layout.vertical-menu-modern .main-menu{width:0;opacity:0;left:-260px}body.vertical-layout.vertical-menu-modern .main-menu .navigation>li>a>span{-webkit-animation:.1s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadeout;animation:.1s cubic-bezier(.25,.8,.25,1) 0s normal forwards 1 fadeout}body.vertical-layout.vertical-menu-modern .main-menu .navigation li.navigation-header span{display:none}body.vertical-layout.vertical-menu-modern .content,body.vertical-layout.vertical-menu-modern .footer,body.vertical-layout.vertical-menu-modern.menu-collapsed .app-content,body.vertical-layout.vertical-menu-modern.menu-collapsed .footer{margin-left:0}}@media (max-width:767.98px){body.vertical-layout.vertical-menu-modern .main-menu,body.vertical-layout.vertical-menu-modern .navbar .navbar-header{width:0}body.vertical-layout.vertical-menu-modern .content,body.vertical-layout.vertical-menu-modern .footer{margin-left:0}}@-webkit-keyframes fadein{from{opacity:0}to{opacity:1}}@keyframes fadein{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadeout{from{opacity:1}to{opacity:0}}@keyframes fadeout{from{opacity:1}to{opacity:0}}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){body.vertical-menu-modern.vertical-layout .main-menu .navigation>li>a>span{-webkit-animation:none;animation:none}}.vertical-overlay-menu .content{margin-left:0}.vertical-overlay-menu .navbar .navbar-header{float:left;width:260px}.vertical-overlay-menu .navbar.header-navbar.floating-nav{width:calc(100vw - (100vw - 100%) - calc(2.2rem * 2))}.vertical-overlay-menu .main-menu,.vertical-overlay-menu.menu-hide .main-menu{opacity:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:width .25s,opacity .25s,-webkit-transform .25s;transition:width .25s,opacity .25s,-webkit-transform .25s;transition:width .25s,opacity .25s,transform .25s;transition:width .25s,opacity .25s,transform .25s,-webkit-transform .25s;width:260px;left:-260px}.vertical-overlay-menu .main-menu .navigation .navigation-header .icon-minus{display:none}.vertical-overlay-menu .main-menu .navigation>li>a>i{margin-right:14px;float:left}.vertical-overlay-menu .main-menu .navigation>li>a>i:before{-webkit-transition:.2s ease all;transition:.2s ease all;font-size:1.429rem}.vertical-overlay-menu .main-menu .navigation li.has-sub>a:not(.mm-next):after{content:'\f105';font-family:FontAwesome;font-size:1rem;display:inline-block;position:absolute;right:25px;top:10px;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);transition:-webkit-transform .2s ease-in-out}.vertical-overlay-menu .main-menu .navigation li.open>a:not(.mm-next):after{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.vertical-overlay-menu .main-menu .navigation li a i{font-size:1.1rem}.vertical-overlay-menu .main-menu .main-menu-footer{bottom:55px;width:260px}.vertical-overlay-menu.menu-open .main-menu{opacity:1;-webkit-transform:translate3d(260px,0,0);transform:translate3d(260px,0,0);-webkit-transition:width .25s,opacity .25s,-webkit-transform .25s;transition:width .25s,opacity .25s,-webkit-transform .25s;transition:width .25s,opacity .25s,transform .25s;transition:width .25s,opacity .25s,transform .25s,-webkit-transform .25s}.vertical-overlay-menu.menu-flipped .main-menu{right:-260px;left:inherit}.vertical-overlay-menu.menu-flipped .navbar .navbar-container{margin:0 260px 0 0}.vertical-overlay-menu.menu-flipped .navbar .navbar-header{float:right}.vertical-overlay-menu.menu-flipped.menu-open .main-menu{-webkit-transform:translate3d(-260px,0,0);transform:translate3d(-260px,0,0)}@media (max-width:991.98px){.vertical-overlay-menu .main-menu .main-menu-footer{bottom:0}} \ No newline at end of file diff --git a/assets/css/core/menu/menu-types/vertical-overlay-menu.css b/assets/css/core/menu/menu-types/vertical-overlay-menu.css new file mode 100644 index 0000000..7f5bd32 --- /dev/null +++ b/assets/css/core/menu/menu-types/vertical-overlay-menu.css @@ -0,0 +1,78 @@ +/*========================================================================================= + File Name: vertical-overlay-menu.scss + Description: A overlay style vertical menu with show and hide support. It support + light & dark version, filpped layout, right side icons, native scroll and borders menu + item seperation. + ---------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +==========================================================================================*/ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.vertical-overlay-menu .content { + margin-left: 0; } + +.vertical-overlay-menu .navbar .navbar-header { + float: left; + width: 260px; } + +.vertical-overlay-menu .navbar.header-navbar.floating-nav { + width: calc(100vw - (100vw - 100%) - calc(2.2rem * 2)); } + +.vertical-overlay-menu .main-menu, .vertical-overlay-menu.menu-hide .main-menu { + opacity: 0; + transform: translate3d(0, 0, 0); + transition: width .25s,opacity .25s,transform .25s; + width: 260px; + left: -260px; } + .vertical-overlay-menu .main-menu .navigation .navigation-header .icon-minus { + display: none; } + .vertical-overlay-menu .main-menu .navigation > li > a > i { + margin-right: 14px; + float: left; } + .vertical-overlay-menu .main-menu .navigation > li > a > i:before { + transition: 200ms ease all; + font-size: 1.429rem; } + .vertical-overlay-menu .main-menu .navigation li.has-sub > a:not(.mm-next):after { + content: "\f105"; + font-family: 'FontAwesome'; + font-size: 1rem; + display: inline-block; + position: absolute; + right: 25px; + top: 10px; + transform: rotate(0deg); + transition: -webkit-transform 0.2s ease-in-out; } + .vertical-overlay-menu .main-menu .navigation li.open > a:not(.mm-next):after { + transform: rotate(90deg); } + .vertical-overlay-menu .main-menu .navigation li a i { + font-size: 1.1rem; } + .vertical-overlay-menu .main-menu .main-menu-footer { + bottom: 55px; } + .vertical-overlay-menu .main-menu .main-menu-footer { + width: 260px; } + +.vertical-overlay-menu.menu-open .main-menu { + opacity: 1; + transform: translate3d(260px, 0, 0); + transition: width .25s,opacity .25s,transform .25s; } + +.vertical-overlay-menu.menu-flipped .main-menu { + right: -260px; + left: inherit; } + +.vertical-overlay-menu.menu-flipped .navbar .navbar-container { + margin: 0; + margin-right: 260px; } + +.vertical-overlay-menu.menu-flipped .navbar .navbar-header { + float: right; } + +.vertical-overlay-menu.menu-flipped.menu-open .main-menu { + transform: translate3d(-260px, 0, 0); } + +@media (max-width: 991.98px) { + .vertical-overlay-menu .main-menu .main-menu-footer { + bottom: 0px; } } diff --git a/assets/css/core/menu/menu-types/vertical-overlay-menu.min.css b/assets/css/core/menu/menu-types/vertical-overlay-menu.min.css new file mode 100644 index 0000000..e15980e --- /dev/null +++ b/assets/css/core/menu/menu-types/vertical-overlay-menu.min.css @@ -0,0 +1 @@ +.vertical-overlay-menu .content{margin-left:0}.vertical-overlay-menu .navbar .navbar-header{float:left;width:260px}.vertical-overlay-menu .navbar.header-navbar.floating-nav{width:calc(100vw - (100vw - 100%) - calc(2.2rem * 2))}.vertical-overlay-menu .main-menu,.vertical-overlay-menu.menu-hide .main-menu{opacity:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:width .25s,opacity .25s,-webkit-transform .25s;transition:width .25s,opacity .25s,-webkit-transform .25s;transition:width .25s,opacity .25s,transform .25s;transition:width .25s,opacity .25s,transform .25s,-webkit-transform .25s;width:260px;left:-260px}.vertical-overlay-menu .main-menu .navigation .navigation-header .icon-minus{display:none}.vertical-overlay-menu .main-menu .navigation>li>a>i{margin-right:14px;float:left}.vertical-overlay-menu .main-menu .navigation>li>a>i:before{-webkit-transition:.2s ease all;transition:.2s ease all;font-size:1.429rem}.vertical-overlay-menu .main-menu .navigation li.has-sub>a:not(.mm-next):after{content:'\f105';font-family:FontAwesome;font-size:1rem;display:inline-block;position:absolute;right:25px;top:10px;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);transition:-webkit-transform .2s ease-in-out}.vertical-overlay-menu .main-menu .navigation li.open>a:not(.mm-next):after{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.vertical-overlay-menu .main-menu .navigation li a i{font-size:1.1rem}.vertical-overlay-menu .main-menu .main-menu-footer{bottom:55px;width:260px}.vertical-overlay-menu.menu-open .main-menu{opacity:1;-webkit-transform:translate3d(260px,0,0);transform:translate3d(260px,0,0);-webkit-transition:width .25s,opacity .25s,-webkit-transform .25s;transition:width .25s,opacity .25s,-webkit-transform .25s;transition:width .25s,opacity .25s,transform .25s;transition:width .25s,opacity .25s,transform .25s,-webkit-transform .25s}.vertical-overlay-menu.menu-flipped .main-menu{right:-260px;left:inherit}.vertical-overlay-menu.menu-flipped .navbar .navbar-container{margin:0 260px 0 0}.vertical-overlay-menu.menu-flipped .navbar .navbar-header{float:right}.vertical-overlay-menu.menu-flipped.menu-open .main-menu{-webkit-transform:translate3d(-260px,0,0);transform:translate3d(-260px,0,0)}@media (max-width:991.98px){.vertical-overlay-menu .main-menu .main-menu-footer{bottom:0}} \ No newline at end of file diff --git a/assets/css/core/mixins/alert.css b/assets/css/core/mixins/alert.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/core/mixins/alert.min.css b/assets/css/core/mixins/alert.min.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/core/mixins/hex2rgb.css b/assets/css/core/mixins/hex2rgb.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/core/mixins/hex2rgb.min.css b/assets/css/core/mixins/hex2rgb.min.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/core/mixins/main-menu-mixin.css b/assets/css/core/mixins/main-menu-mixin.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/core/mixins/main-menu-mixin.min.css b/assets/css/core/mixins/main-menu-mixin.min.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/core/mixins/transitions.css b/assets/css/core/mixins/transitions.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/core/mixins/transitions.min.css b/assets/css/core/mixins/transitions.min.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/extra.css b/assets/css/extra.css new file mode 100644 index 0000000..eea607a --- /dev/null +++ b/assets/css/extra.css @@ -0,0 +1,401 @@ +@import url('https://fonts.googleapis.com/css?family=Poppins:400,700'); + +.linear-activity { + overflow: hidden; + /** width: 50%; **/ + height: 3px; + background-color: #ffffff; + color: #ffffff; + + /** margin: 20px auto; **/ + /**border-top-right-radius: 4px; **/ + /**border-top-left-radius: 4px; **/ +} + +.determinate { +position: relative; +max-width: 100%; +height: 100%; +-webkit-transition: width 500ms ease-out 1s; +-moz-transition: width 500ms ease-out 1s; +-o-transition: width 500ms ease-out 1s; +transition: width 500ms ease-out 1s; +background-color: #ffffff; +} + +.indeterminate { +position: relative; +width: 100%; +height: 100%; +background-color: #ffffff; +} + +.indeterminate-none { +position: relative; +width: 100%; +height: 100%; +background-color: #ffffff; +} + +.indeterminate:before { +content: ''; +position: absolute; +height: 100%; +background-color: #ffffff; +animation: indeterminate_first 1.5s infinite ease-out; +} + +.indeterminate:after { +content: ''; +position: absolute; +height: 100%; +background-color: #ffffff; +animation: indeterminate_second 1.5s infinite ease-in; +} + +@keyframes indeterminate_first { +0% { + left: -100%; + width: 100%; + background: red; +} +25% {background: yellow;} +50% {background: blue;} +75% {background: green;} +100% { + left: 100%; + width: 10%; + background: red; +} +} + +@keyframes indeterminate_second { +0% { + left: -150%; + width: 100%; + background: red; +} +25% {background: yellow;} +50% {background: blue;} +75% {background: green;} +100% { + left: 100%; + width: 10%; + background: red; +} +} + +*{ +margin: 0px; +padding: 0px; +} + +body{ +font-family: 'Poppins', sans-serif; +} + +.auth-header { + font-weight: 500; + letter-spacing: -0.5px; +} + +.auth-error { + letter-spacing: -0.2px; +} + +.context { +width: 100%; +position: absolute; +top:50vh; + +} + +.quotes { +display: none; +} + +.context h1{ +text-align: center; +color: #fff; +font-size: 50px; +} + + +.area{ +background-color: #3a50dc; +width: 100%; +} + +.circles{ +position: fixed; +top: 0; +left: 0; +width: 100%; +height: 100%; +margin-bottom: 0px; +overflow: hidden; +} + +.circles li{ +position: absolute; +display: block; +list-style: none; +width: 20px; +height: 20px; +background: rgba(255, 255, 255, 0.2); +animation: animate 25s linear infinite; +bottom: -150px; + +} + +.circles li:nth-child(1){ +left: 25%; +width: 80px; +height: 80px; +animation-delay: 0s; +} + + +.circles li:nth-child(2){ +left: 10%; +width: 20px; +height: 20px; +animation-delay: 2s; +animation-duration: 12s; +} + +.circles li:nth-child(3){ +left: 70%; +width: 20px; +height: 20px; +animation-delay: 4s; +} + +.circles li:nth-child(4){ +left: 40%; +width: 60px; +height: 60px; +animation-delay: 0s; +animation-duration: 18s; +} + +.circles li:nth-child(5){ +left: 65%; +width: 20px; +height: 20px; +animation-delay: 0s; +} + +.circles li:nth-child(6){ +left: 75%; +width: 110px; +height: 110px; +animation-delay: 3s; +} + +.circles li:nth-child(7){ +left: 35%; +width: 150px; +height: 150px; +animation-delay: 7s; +} + +.circles li:nth-child(8){ +left: 50%; +width: 25px; +height: 25px; +animation-delay: 15s; +animation-duration: 45s; +} + +.circles li:nth-child(9){ +left: 20%; +width: 15px; +height: 15px; +animation-delay: 2s; +animation-duration: 35s; +} + +.circles li:nth-child(10){ +left: 85%; +width: 150px; +height: 150px; +animation-delay: 0s; +animation-duration: 11s; +} + + + +@keyframes animate { + +0%{ + transform: translateY(0) rotate(0deg); + opacity: 1; + border-radius: 0; +} + +100%{ + transform: translateY(-1000px) rotate(720deg); + opacity: 0; + border-radius: 50%; +} + +} + +@media (max-width: 576px) { +.content-wrapper.auth.theme-one { + padding: 1.5rem 0.4rem; +} +.content-wrapper.auth.theme-one .auto-form-wrapper { + padding: 40px 25px 10px; +} +} + +.main-panel { +max-width: 1140px; +} + +.img-left { + width: 200px; + position: absolute; + top: 0; + left: 0; } + +.img-right { + width: 175px; + position: absolute; + top: 0; + right: 0; } + +.bg-analytics { + background: linear-gradient(118deg, #3a50dc, rgb(24, 61, 176)); } +.bg-analytics .avatar { + margin-bottom: 2rem; } + +@media only screen and (max-width: 576px) { + #dashboard-analytics .img-left, #dashboard-analytics .img-right { + width: 140px; } } +.customer-info.list-group .list-group-item:last-child { + border-bottom-left-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } + +.customer-info.list-group .list-group-item .series-info i { + top: 0; + margin-right: 0.3rem; } + +.avg-sessions .progress { + margin-top: 0.5rem; } + +.analytics-list.list-group .list-group-item { + border: 0; } +.analytics-list.list-group .list-group-item:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; } +.analytics-list.list-group .list-group-item .btn { + display: none; } +.analytics-list.list-group .list-group-item:hover .btn { + display: inline-block; } + +.chart-dropdown .btn { + font-size: 0.8rem; + font-weight: 500; } +.chart-dropdown .btn:after { + left: 0; + position: relative; } + +@media only screen and (max-width: 992px) and (min-width: 768px) { + .analytics-list .float-left, .analytics-list .float-right { + display: block; } } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + #dashboard-analytics .avatar .avatar-content, #statistics-card .avatar .avatar-content { + padding: 0 !important; } } +.list-item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + width: 100%; + padding: 20px 0; + border-bottom: 1px solid #f2f2f2; } +.list-item:first-child { + padding-top: 30px; } +.list-item:last-child { + border-bottom: none; } +.list-item .preview-image { + max-width: 80px; + width: 80px; + min-width: 80px; } +.list-item .preview-image img { + display: block; + margin: auto; } +.list-item .content { + width: calc(100% - 80px); + padding-right: 30px; } +.list-item .content .user-name { + margin-bottom: 0; + margin-right: 10px; + color: #858585; + white-space: nowrap; } +.list-item .content .time { + color: #858585; + margin-bottom: 3px; } +.list-item .content .product-name { + font-weight: 500; + text-overflow: ellipsis; + overflow: hidden; + max-width: 100%; + white-space: nowrap; } +.list-item .content .review-text { + margin-bottom: 0; + font-weight: 300; + text-overflow: ellipsis; + overflow: hidden; + max-width: 100%; + white-space: nowrap; + max-width: 95%; } +.invoice-page { + padding: 2.2rem; } +.invoice-page .recipient-contact i, +.invoice-page .company-contact i { + padding-right: 0.2rem; + position: relative; + top: 2px; } +.invoice-page .recipient-info p, +.invoice-page .company-info p, +.invoice-page .company-contact p, +.invoice-page .recipient-contact p { + line-height: 2; + margin-bottom: 0; } +.invoice-page .invoice-items-table table, +.invoice-page .invoice-total-table table { + border: 2px solid #f8f8f8; } + +@media print { + .content-header, + .buy-now, + .btn-print, + .footer, + .open, + .main-menu, + .invoice-print { + display: none; } + .app-content, + #invoice-template, + .navbar-container, + .navbar-wrapper, + .header-navbar, + .invoice-print, + .content-wrapper { + margin: 0 !important; + padding: 0 !important; } + #invoice-footer { + position: relative; + top: -80px !important; } + #invoice-company-details, + #invoice-footer { + margin-top: 5rem !important; } + .table-responsive { + -ms-overflow-style: none; } } + +@page { + margin: 10px; } \ No newline at end of file diff --git a/assets/css/iva_main/style.css b/assets/css/iva_main/style.css new file mode 100644 index 0000000..6766840 --- /dev/null +++ b/assets/css/iva_main/style.css @@ -0,0 +1,419 @@ +/* Navbar */ +.page-body-wrapper { + min-height: calc(100vh - 63px); + background: #f3f4fa; + padding-left: 0; + padding-right: 0; } + .page-body-wrapper.full-page-wrapper { + width: 100%; + min-height: 100vh; } + +.main-panel { + min-height: calc(100vh - 63px); + margin-left: auto; } + +.content-wrapper { + padding: 1.5rem 0; + width: 100%; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; } + +@-webkit-keyframes dropdownAnimation { + from { + opacity: 0; + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; + -webkit-transform: translate3d(0, 0px, 0); + transform: translate3d(0, 0px, 0); } } + +@keyframes dropdownAnimation { + from { + opacity: 0; + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; + -webkit-transform: translate3d(0, 0px, 0); + transform: translate3d(0, 0px, 0); } } + +.navbar.horizontal-layout { + font-family: "Poppins", sans-serif; + background: #ffffff; + -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08); + box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08); } + .navbar.horizontal-layout .nav-top { + padding: 0px 15px; } + .navbar.horizontal-layout .nav-top .navbar-brand-wrapper { + width: 185px; + height: 63px; } + .navbar.horizontal-layout .nav-top .navbar-brand-wrapper .navbar-brand { + color: #ffffff; + font-size: 1.5rem; + line-height: 55px; + margin-right: 0; + padding: 0.25rem 0; } + .navbar.horizontal-layout .nav-top .navbar-brand-wrapper .navbar-brand:active, .navbar.horizontal-layout .nav-top .navbar-brand-wrapper .navbar-brand:focus, .navbar.horizontal-layout .nav-top .navbar-brand-wrapper .navbar-brand:hover { + color: #424546; } + .navbar.horizontal-layout .nav-top .navbar-brand-wrapper .navbar-brand img { + max-width: 100%; + height: 28px; + margin: auto; + vertical-align: middle; } + .navbar.horizontal-layout .nav-top .navbar-brand-wrapper .brand-logo-mini { + display: none; } + .navbar.horizontal-layout .nav-top .navbar-brand-wrapper .brand-logo-mini img { + width: auto; + max-width: 100%; + height: 28px; + margin-left: 0; } + @media (max-width: 576px) { + .navbar.horizontal-layout .nav-top .navbar-brand-wrapper { + width: 70px; } + .navbar.horizontal-layout .nav-top .navbar-brand-wrapper .brand-logo { + display: none; } + .navbar.horizontal-layout .nav-top .navbar-brand-wrapper .brand-logo-mini { + display: block; } } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper { + color: #ffffff; + padding-left: 15px; + width: calc(100% - 185px); + position: relative; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .search-box { + -webkit-transition: 0.3s ease; + transition: 0.3s ease; + -webkit-transition-property: position, width, height, background-color; + transition-property: position, width, height, background-color; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .search-box .input-group-text { + padding-right: 0; + border-top: none; + border-right: none; + border-bottom: none; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .search-box .form-control { + border: none; + font-weight: 600; + -webkit-transition: 0.3s ease; + transition: 0.3s ease; + -webkit-transition-property: position, width, height, background-color; + transition-property: position, width, height, background-color; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .search-box .search-close { + display: none; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .search-box.search-mode { + position: absolute; + top: 0px; + right: 0; + left: 0; + bottom: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + z-index: 99; + height: 100%; + width: 100%; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .search-box.search-mode .input-group-text { + font-size: 24px; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .search-box.search-mode .form-control { + height: 100%; + font-size: 20px; + font-weight: 500; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .search-box.search-mode .form-control::-webkit-input-placeholder { + font-size: inherit; + font-weight: inherit; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .search-box.search-mode .form-control:-moz-placeholder { + font-size: inherit; + font-weight: inherit; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .search-box.search-mode .form-control::-moz-placeholder { + font-size: inherit; + font-weight: inherit; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .search-box.search-mode .form-control:-ms-input-placeholder { + font-size: inherit; + font-weight: inherit; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .search-box.search-mode .search-close { + display: block; + position: absolute; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + right: 0; + z-index: 99; + font-size: 24px; + padding: 10px; + color: #2196f3; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .navbar-nav .nav-item { + margin-left: 1rem; + margin-right: 1rem; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .navbar-nav .nav-item .nav-link { + color: #202339; + font-size: 12px; + vertical-align: middle; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .navbar-nav .nav-item .nav-link i { + font-size: 1.25rem; + vertical-align: middle; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .navbar-nav.quick-link .nav-item .nav-link { + margin-right: 10px; + font-weight: 500; + font-size: 14px; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .navbar-nav.quick-link .nav-item.active .nav-link { + color: #2196f3; } + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .navbar-toggler { + display: none; } + @media (max-width: 768px) { + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper .navbar-toggler { + display: block; + padding-right: 0; } } + @media (max-width: 576px) { + .navbar.horizontal-layout .nav-top .navbar-menu-wrapper { + width: calc(100% - 70px); } } + .navbar.horizontal-layout .nav-bottom { + position: relative; + top: 0; + right: 0; + left: 0; + width: 100%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-transition-duration: 3s; + transition-duration: 3s; + -webkit-transition-property: position, left, right, top; + transition-property: position, left, right, top; + background: #0404FC; } + @media (max-width: 768px) { + .navbar.horizontal-layout .nav-bottom { + display: none; } } + .navbar.horizontal-layout .nav-bottom .page-navigation { + float: left; + position: relative; + width: 100%; + height: 50px; + z-index: 99; + background: #0404FC; + -webkit-transition-duration: 0.2s; + transition-duration: 0.2s; + -webkit-transition-property: background, -webkit-box-shadow; + transition-property: background, -webkit-box-shadow; + transition-property: background, box-shadow; + transition-property: background, box-shadow, -webkit-box-shadow; } + @media (max-width: 768px) { + .navbar.horizontal-layout .nav-bottom .page-navigation { + border: none; } } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item { + line-height: 1; + width: 16.66%; + text-align: center; } + @media (max-width: 768px) { + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item { + display: block; + width: 100%; + border-right: none; + text-align: left; + background: #0404FC; } } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item:last-child { + border-right: none; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item > .nav-link { + color: #ffffff; + line-height: 1; + font-weight: 500; + -webkit-transition-duration: 0.2s; + transition-duration: 0.2s; + height: 50px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + @media (max-width: 768px) { + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item > .nav-link { + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: start; + background: #0404FC; } } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item > .nav-link .link-icon { + margin-right: 10px; + font-size: 1.3rem; + color: #ffffff; } + .rtl .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item > .nav-link .link-icon { + margin-right: 0; + margin-left: 10px; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item > .nav-link .menu-arrow { + margin-left: 5px; + font-size: 15px; + display: inline-block; + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transition-duration: 0.25s; + transition-duration: 0.25s; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item > .nav-link .menu-arrow:before { + font: normal normal normal 24px/1 "Material Design Icons"; + content: "\F35D"; + font-size: inherit; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item:hover .submenu { + display: block; + background: #ffffff; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item:hover > .nav-link { + background: #0303e9; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item:hover > .nav-link .menu-arrow { + -webkit-transform: rotate(-180deg); + transform: rotate(-180deg); } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item.active > .nav-link { + background: #0303e9; + color: #ffffff; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item.active > .nav-link .link-icon, + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item.active > .nav-link .menu-arrow { + color: #ffffff; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item .submenu { + display: none; + -webkit-animation-name: dropdownAnimation; + animation-name: dropdownAnimation; + -webkit-animation-duration: 0.25s; + animation-duration: 0.25s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item .submenu ul { + list-style-type: none; + padding-left: 0; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item .submenu ul li { + display: block; + line-height: 20px; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item .submenu ul li a { + display: block; + padding: 5px 10px; + font-weight: 600; + color: #000; + text-decoration: none; + text-align: left; + margin: 4px 0; + font-size: 14px; + font-weight: 400; + opacity: 0.8; + text-overflow: ellipsis; + overflow: hidden; + max-width: 100%; + white-space: nowrap; + -webkit-transition-duration: 0.2s; + transition-duration: 0.2s; + -webkit-transition-property: background; + transition-property: background; + border-radius: 6px; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item .submenu ul li a:hover { + background: rgba(33, 150, 243, 0.1); } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item .submenu ul li.active a { + background: rgba(33, 150, 243, 0.1); } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item:not(.mega-menu) .submenu { + position: relative; + top: -100%; } + @media (max-width: 768px) { + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item:not(.mega-menu) .submenu { + top: 0; } } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item:not(.mega-menu) .submenu ul { + padding: 15px; } + @media (min-width: 768px) { + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item:not(.mega-menu) .submenu ul { + position: absolute; + width: calc(150% - 1px); + left: 0; + right: 0; + top: 50px; + z-index: 999; + background: #ffffff; + border-top: none; + -webkit-box-shadow: 0 8px 5px 0 rgba(0, 0, 0, 0.06); + box-shadow: 0 8px 5px 0 rgba(0, 0, 0, 0.06); } } + @media (max-width: 768px) { + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item:not(.mega-menu) .submenu ul { + position: relative; + top: 0; + padding-top: 20px; + -webkit-box-shadow: none; + box-shadow: none; } } + @media (max-width: 768px) { + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item:not(.mega-menu) .submenu ul { + padding: 0 23px; } } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item.mega-menu .submenu { + top: calc($navbar-bottom-height - 2px); + left: 0; + padding: 25px; } + @media (min-width: 768px) { + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item.mega-menu .submenu { + position: absolute; + width: calc(100% - 1px); + left: 0; + right: 0; + top: 50px; + z-index: 999; + background: #ffffff; + border-top: none; + -webkit-box-shadow: 0 8px 5px 0 rgba(0, 0, 0, 0.06); + box-shadow: 0 8px 5px 0 rgba(0, 0, 0, 0.06); } } + @media (max-width: 768px) { + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item.mega-menu .submenu { + position: relative; + top: 0; + padding-top: 20px; + -webkit-box-shadow: none; + box-shadow: none; } } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item.mega-menu .submenu .category-heading { + font-size: 14px; + font-weight: 500; + text-align: left; + color: #2196f3; + padding-bottom: 15px; + border-bottom: 1px solid rgba(242, 242, 242, 0.6); } + @media (max-width: 768px) { + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item.mega-menu .submenu { + padding: 20px 32px; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item.mega-menu .submenu .col-group-wrapper { + margin-left: 0; + margin-right: 0; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item.mega-menu .submenu .col-group-wrapper .col-group { + padding-left: 0; + padding-right: 0; + margin-bottom: 20px; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item.mega-menu .submenu .col-group-wrapper .col-group .category-heading { + margin-bottom: 0; } + .navbar.horizontal-layout .nav-bottom .page-navigation > .nav-item.mega-menu .submenu .col-group-wrapper .col-group .category-heading:after { + display: none; } } + @media (max-width: 768px) { + .navbar.horizontal-layout .nav-bottom.header-toggled { + display: block; + background: transparent; + height: 0px; } } + .navbar.horizontal-layout .nav-bottom.fixed-top { + position: fixed; + top: 0; + left: 0; + right: 0; + z-index: 999; } + @media (max-width: 768px) { + .navbar.horizontal-layout .nav-bottom.fixed-top { + position: relative; } } + .navbar.horizontal-layout .nav-bottom.fixed-top .page-navigation { + margin-bottom: 0; + border-bottom: none; + -webkit-box-shadow: 0 8px 5px 0 rgba(0, 0, 0, 0.06); + box-shadow: 0 8px 5px 0 rgba(0, 0, 0, 0.06); } + +/*# sourceMappingURL=style.css.map */ diff --git a/assets/css/iva_main/style.css.map b/assets/css/iva_main/style.css.map new file mode 100644 index 0000000..8ba22ae --- /dev/null +++ b/assets/css/iva_main/style.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["demo_2/style.scss","demo_2/_misc.scss","shared/_variables.scss","demo_2/_variables.scss","shared/mixins/_misc.scss"],"names":[],"mappings":"AAAA,YAAY;ACAZ;EACI,+BAAgB;EAChB,oBCsBe;EDrBf,gBAAgB;EAChB,iBAAiB,EAKpB;EATD;IAMQ,YAAY;IACZ,kBAAkB,EACrB;;AAGL;EACI,+BAAgB;EAChB,kBAAkB,EACrB;;AAED;EACI,kBAAkB;EAClB,YAAY;EACZ,oBAAa;EAAb,qBAAa;EAAb,aAAa,EAChB;;ADZD;EACE;IACE,WAAW;IACX,4CAAsB;IAAtB,oCAAsB,EAAA;EAExB;IACE,WAAW;IACX,wBAAgB;IAAhB,gBAAgB;IAChB,0CAAsB;IAAtB,kCAAsB,EAAA,EAAA;;AAR1B;EACE;IACE,WAAW;IACX,4CAAsB;IAAtB,oCAAsB,EAAA;EAExB;IACE,WAAW;IACX,wBAAgB;IAAhB,gBAAgB;IAChB,0CAAsB;IAAtB,kCAAsB,EAAA,EAAA;;AAwB1B;EAEI,mCEPM;EFQN,oBE/BW;EFgCX,qDAA6B;EAA7B,6CAA6B,EAkW9B;EAtWH;IAMM,kBAAkB,EA6InB;IAnJL;MAQQ,aG/C0B;MHgD1B,aEiDY,EFZb;MA9CP;QAWU,eEvCK;QFwCL,kBAAkB;QAClB,kBAAkB;QAClB,gBAAgB;QAChB,mBAAmB,EAYpB;QA3BT;UAmBY,eAAc,EACf;QApBX;UAsBY,gBAAgB;UAChB,aAAa;UACb,aAAa;UACb,uBAAuB,EACxB;MA1BX;QA6BU,cAAc,EAOf;QApCT;UA+BY,YAAY;UACZ,gBAAgB;UAChB,aAAa;UACb,eAAe,EAChB;MAEH;QArCR;UAsCU,YG5E4B,EHoF/B;UA9CP;YAwCY,cAAc,EACf;UAzCX;YA2CY,eAAe,EAChB,EAAA;IA5CX;MAgDQ,eE5EO;MF6EP,mBAAmB;MACnB,0BAAW;MACX,mBAAmB,EA+FpB;MAlJP;QAqDU,8BAAsB;QAAtB,sBAAsB;QACtB,uEAA+D;QAA/D,+DAA+D,EAkDhE;QAxGT;UAwDY,iBAAiB;UACjB,iBAAiB;UACjB,mBAAmB;UACnB,oBAAoB,EACrB;QA5DX;UA8DY,aAAa;UACb,iBAAiB;UACjB,8BAAsB;UAAtB,sBAAsB;UACtB,uEAA+D;UAA/D,+DAA+D,EAChE;QAlEX;UAoEY,cAAc,EACf;QArEX;UAuEY,mBAAmB;UACnB,SAAS;UACT,SAAS;UACT,QAAQ;UACR,UAAU;UACV,qBAAc;UAAd,qBAAc;UAAd,cAAc;UACd,YAAY;UACZ,aAAa;UACb,YAAY,EAwBb;UAvGX;YAiFc,gBAAgB,EACjB;UAlFb;YAoFc,aAAa;YACb,gBAAgB;YAChB,iBAAiB,EAKlB;YA3Fb;cAwFgB,mBAAmB;cACnB,qBAAqB,EIzElC;YJhBH;cAwFgB,mBAAmB;cACnB,qBAAqB,EItElC;YJnBH;cAwFgB,mBAAmB;cACnB,qBAAqB,EInElC;YJtBH;cAwFgB,mBAAmB;cACnB,qBAAqB,EIhElC;UJzBH;YA6Fc,eAAe;YACf,mBAAmB;YACnB,SAAS;YACT,oCAAqB;YAArB,4BAAqB;YACrB,SAAS;YACT,YAAY;YACZ,gBAAgB;YAChB,cAAc;YACd,eEzHkB,EF0HnB;MAtGb;QA0GU,+BAAoB;QAApB,8BAAoB;QAApB,wBAAoB;QAApB,oBAAoB;QACpB,0BAAoB;QAApB,uBAAoB;QAApB,oBAAoB,EA4BrB;QAvIT;UA6GY,kBAAkB;UAClB,mBAAmB,EAUpB;UAxHX;YAgHc,eG3IsB;YH4ItB,gBE3Ee;YF4Ef,uBAAuB,EAKxB;YAvHb;cAoHgB,mBEvDe;cFwDf,uBAAuB,EACxB;QAtHf;UA4HgB,mBAAmB;UACnB,iBAAiB;UACjB,gBAAgB,EACjB;QA/Hf;UAkIkB,eEtJc,EFuJf;MAnIjB;QAyIU,cAAc,EAKf;QAJC;UA1IV;YA2IY,eAAe;YACf,iBAAiB,EAEpB,EAAA;MACD;QA/IR;UAgJU,yBAAW,EAEd,EAAA;EAlJP;IAqJM,mBAAmB;IACnB,OAAO;IACP,SAAS;IACT,QAAQ;IACR,YAAY;IACZ,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,0BAAoB;IAApB,uBAAoB;IAApB,oBAAoB;IACpB,gCAAwB;IAAxB,wBAAwB;IACxB,wDAAgD;IAAhD,gDAAgD;IAChD,oBG7LkC,EHoYnC;IAtMC;MA/JN;QAgKQ,cAAc,EAqMjB,EAAA;IArWL;MAmKQ,YAAY;MACZ,mBAAmB;MACnB,YAAY;MACZ,aGtMmB;MHuMnB,YAAY;MACZ,oBGvMgC;MHwMhC,kCAA0B;MAA1B,0BAA0B;MAC1B,4DAA4C;MAA5C,oDAA4C;MAA5C,4CAA4C;MAA5C,gEAA4C,EAqK7C;MApKC;QA3KR;UA4KU,aAAa,EAmKhB,EAAA;MA/UP;QA+KU,eAAe;QACf,cAAc;QACd,mBAAmB,EA6JpB;QA5JC;UAlLV;YAmLY,eAAe;YACf,YAAY;YACZ,mBAAmB;YACnB,iBAAiB;YACjB,oBGtN4B,EH6W/B,EAAA;QA9UT;UA0LY,mBAAmB,EACpB;QA3LX;UA6LY,eEzNG;UF0NH,eAAe;UACf,iBAAiB;UACjB,kCAA0B;UAA1B,0BAA0B;UAC1B,aGjOe;UHkOf,qBAAc;UAAd,qBAAc;UAAd,cAAc;UACd,0BAAoB;UAApB,uBAAoB;UAApB,oBAAoB;UACpB,yBAAwB;UAAxB,sBAAwB;UAAxB,wBAAwB,EA2BzB;UA1BC;YArMZ;cAsMc,wBAAuB;cAAvB,qBAAuB;cAAvB,uBAAuB;cACvB,oBGtO0B,EH8P7B,EAAA;UA/NX;YA0Mc,mBAAmB;YACnB,kBAAkB;YAClB,eExOC,EF6OF;YARD;cAKI,gBAAgB;cAChB,kBAAkB,EACnB;UAhNf;YAmNc,iBAAiB;YACjB,gBAAgB;YAChB,sBAAsB;YACtB,gCAAiB;YAAjB,wBAAiB;YACjB,iCAAyB;YAAzB,yBAAyB;YACzB,mCE7FoB;YF6FpB,2BE7FoB,EFmGrB;YA9Nb;cA0NgB,0DAA0D;cAC1D,iBAAiB;cACjB,mBAAmB,EACpB;QA7Nf;UAkOc,eAAe;UACf,oBE/PC,EFgQF;QApOb;UAsOc,oBAAkB,EAInB;UA1Ob;YAwOgB,mCAAiB;YAAjB,2BAAiB,EAClB;QAzOf;UA8Oc,oBAAkB;UAClB,eE3QC,EFgRF;UApPb;;YAkPgB,eE9QD,EF+QA;QAnPf;UAuPY,cAAc;UACd,0CAAkC;UAAlC,kCAAkC;UAClC,kCE9HsB;UF8HtB,0BE9HsB;UF+HtB,kCAA0B;UAA1B,0BAA0B,EAiC3B;UA3RX;YA4Pc,sBAAsB;YACtB,gBAAgB,EA6BjB;YA1Rb;cA+PgB,eAAe;cACf,kBAAkB,EAyBnB;cAzRf;gBAkQkB,eAAe;gBACf,kBAAkB;gBAClB,iBAAiB;gBACjB,YElSN;gBFmSM,sBAAsB;gBACtB,iBAAiB;gBACjB,cAAc;gBACd,gBAAgB;gBAChB,iBAAiB;gBACjB,aAAa;gBIpQ7B,wBAAwB;gBACxB,iBAAiB;gBACjB,gBAAgB;gBAChB,oBAAoB;gBJmQJ,kCAA0B;gBAA1B,0BAA0B;gBAC1B,wCAAgC;gBAAhC,gCAAgC;gBAChC,mBAAmB,EAIpB;gBAnRjB;kBAiRoB,oCErSY,EFsSb;cAlRnB;gBAsRoB,oCE1SY,EF2Sb;QAvRnB;UA8Rc,mBAAmB;UACnB,WAAW,EAWZ;UAVC;YAhSd;cAiSgB,OAAO,EASV,EAAA;UA1Sb;YAqSgB,cAAc,EAIf;YA5Tb;cAmBF;gBAlBI,mBAAmB;gBACnB,wBAAW;gBACX,QAAQ;gBACR,SAAS;gBACT,UGlBuB;gBHmBvB,aAAa;gBACb,oBEhBW;gBFiBX,iBAAiB;gBACjB,oDAA4B;gBAA5B,4CAA4B,EAmTjB,EAAA;YAjTb;cAQF;gBAPI,mBAAmB;gBACnB,OAAO;gBACP,kBAAkB;gBAClB,yBAAiB;gBAAjB,iBAAiB,EA6SN,EAAA;YAHC;cAtShB;gBAuSkB,gBAAgB,EAEnB,EAAA;QAzSf;UA+Sc,uCAAS;UACT,QAAQ;UACR,cAAc,EA2Bf;UA/VX;YAmBF;cAlBI,mBAAmB;cACnB,wBAAW;cACX,QAAQ;cACR,SAAS;cACT,UGlBuB;cHmBvB,aAAa;cACb,oBEhBW;cFiBX,iBAAiB;cACjB,oDAA4B;cAA5B,4CAA4B,EAsVnB,EAAA;UApVX;YAQF;cAPI,mBAAmB;cACnB,OAAO;cACP,kBAAkB;cAClB,yBAAiB;cAAjB,iBAAiB,EAgVR,EAAA;UA5Ub;YAmTgB,gBAAgB;YAChB,iBAAiB;YACjB,iBAAiB;YACjB,eE1UgB;YF2UhB,qBAAqB;YACrB,kDErUM,EFsUP;UACD;YA1Td;cA2TgB,mBAAmB,EAiBtB;cA5Ub;gBA6TkB,eAAe;gBACf,gBAAgB,EAYjB;gBA1UjB;kBAgUoB,gBAAgB;kBAChB,iBAAiB;kBACjB,oBAAoB,EAOrB;kBAzUnB;oBAoUsB,iBAAiB,EAIlB;oBAxUrB;sBAsUwB,cAAc,EACf,EAAA;IAUf;MAjVR;QAkVU,eAAe;QACf,wBAAwB,EAE3B,EAAA;IArVP;MAuVQ,gBAAgB;MAChB,OAAO;MACP,QAAQ;MACR,SAAS;MACT,aAAa,EASd;MARC;QA5VR;UA6VU,mBAAmB,EAOtB,EAAA;MApWP;QAgWU,iBAAiB;QACjB,oBAAoB;QACpB,oDAA4B;QAA5B,4CAA4B,EAC7B","file":"style.css","sourcesContent":["/* Navbar */\n\n@import \"../../../../node_modules/bootstrap/scss/functions\";\n@import \"../../../../node_modules/bootstrap/scss/variables\";\n@import \"../shared/variables\";\n@import \"../shared/mixins/misc\";\n@import \"variables\";\n@import \"misc\";\n@keyframes dropdownAnimation {\n from {\n opacity: 0;\n transform: translate3d(0, -30px, 0);\n }\n to {\n opacity: 1;\n transform: none;\n transform: translate3d(0, 0px, 0);\n }\n}\n\n@mixin menu-style {\n @media (min-width: $grid-breakpoints-md) {\n position: absolute;\n width: calc(100% - 1px);\n left: 0;\n right: 0;\n top: $navbar-bottom-height;\n z-index: 999;\n background: $horizontal-bottom-menu-item-bg-hover;\n border-top: none;\n box-shadow: 0 8px 5px 0 rgba(0, 0, 0, 0.06);\n }\n @media (max-width: $grid-breakpoints-md) {\n position: relative;\n top: 0;\n padding-top: 20px;\n box-shadow: none;\n }\n}\n\n.navbar {\n &.horizontal-layout {\n font-family: $type-1;\n background: $horizontal-top-menu-bg;\n box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08);\n .nav-top {\n padding: 0px 15px;\n .navbar-brand-wrapper {\n width: $navbar-brand-wrapper-width;\n height: $navbar-height;\n .navbar-brand {\n color: $white;\n font-size: 1.5rem;\n line-height: 55px;\n margin-right: 0;\n padding: 0.25rem 0;\n &:active,\n &:focus,\n &:hover {\n color: lighten(color(gray-dark), 10%);\n }\n img {\n max-width: 100%;\n height: 28px;\n margin: auto;\n vertical-align: middle;\n }\n }\n .brand-logo-mini {\n display: none;\n img {\n width: auto;\n max-width: 100%;\n height: 28px;\n margin-left: 0;\n }\n }\n @media (max-width: $grid-breakpoints-sm) {\n width: $navbar-brand-wrapper-mini-width;\n .brand-logo {\n display: none;\n }\n .brand-logo-mini {\n display: block;\n }\n }\n }\n .navbar-menu-wrapper {\n color: $white;\n padding-left: 15px;\n width: calc(100% - #{$navbar-brand-wrapper-width});\n position: relative;\n .search-box {\n transition: 0.3s ease;\n transition-property: position, width, height, background-color;\n .input-group-text {\n padding-right: 0;\n border-top: none;\n border-right: none;\n border-bottom: none;\n }\n .form-control {\n border: none;\n font-weight: 600;\n transition: 0.3s ease;\n transition-property: position, width, height, background-color;\n }\n .search-close {\n display: none;\n }\n &.search-mode {\n position: absolute;\n top: 0px;\n right: 0;\n left: 0;\n bottom: 0;\n display: flex;\n z-index: 99;\n height: 100%;\n width: 100%;\n .input-group-text {\n font-size: 24px;\n }\n .form-control {\n height: 100%;\n font-size: 20px;\n font-weight: 500;\n @include placeholder {\n font-size: inherit;\n font-weight: inherit;\n }\n }\n .search-close {\n display: block;\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n right: 0;\n z-index: 99;\n font-size: 24px;\n padding: 10px;\n color: theme-color(primary);\n }\n }\n }\n .navbar-nav {\n flex-direction: row;\n align-items: center;\n .nav-item {\n margin-left: 1rem;\n margin-right: 1rem;\n .nav-link {\n color: $horizontal-menu-item-color;\n font-size: $navbar-font-size;\n vertical-align: middle;\n i {\n font-size: $navbar-icon-font-size;\n vertical-align: middle;\n }\n }\n }\n &.quick-link {\n .nav-item {\n .nav-link {\n margin-right: 10px;\n font-weight: 500;\n font-size: 14px;\n }\n &.active {\n .nav-link {\n color: theme-color(primary);\n }\n }\n }\n }\n }\n .navbar-toggler {\n display: none;\n @media (max-width: $grid-breakpoints-md) {\n display: block;\n padding-right: 0;\n }\n }\n @media (max-width: $grid-breakpoints-sm) {\n width: calc(100% - #{$navbar-brand-wrapper-mini-width});\n }\n }\n }\n .nav-bottom {\n position: relative;\n top: 0;\n right: 0;\n left: 0;\n width: 100%;\n display: flex;\n align-items: center;\n transition-duration: 3s;\n transition-property: position, left, right, top;\n background: $horizontal-bottom-menu-item-bg;\n @media (max-width: $grid-breakpoints-md) {\n display: none;\n }\n .page-navigation {\n float: left;\n position: relative;\n width: 100%;\n height: $navbar-bottom-height;\n z-index: 99;\n background: $horizontal-bottom-menu-item-bg;\n transition-duration: 0.2s;\n transition-property: background, box-shadow;\n @media (max-width: $grid-breakpoints-md) {\n border: none;\n }\n >.nav-item {\n line-height: 1;\n width: 16.66%;\n text-align: center;\n @media (max-width: $grid-breakpoints-md) {\n display: block;\n width: 100%;\n border-right: none;\n text-align: left;\n background: $horizontal-bottom-menu-item-bg;\n }\n &:last-child {\n border-right: none;\n }\n >.nav-link {\n color: $horizontal-bottom-menu-item-color;\n line-height: 1;\n font-weight: 500;\n transition-duration: 0.2s;\n height: $navbar-bottom-height;\n display: flex;\n align-items: center;\n justify-content: center;\n @media (max-width: $grid-breakpoints-md) {\n justify-content: start;\n background: $horizontal-bottom-menu-item-bg;\n }\n .link-icon {\n margin-right: 10px;\n font-size: 1.3rem;\n color: $horizontal-bottom-menu-item-color;\n .rtl & {\n margin-right: 0;\n margin-left: 10px;\n }\n }\n .menu-arrow {\n margin-left: 5px;\n font-size: 15px;\n display: inline-block;\n transform: rotate(0deg);\n transform-origin: center;\n transition-duration: $action-transition-duration;\n &:before {\n font: normal normal normal 24px/1 \"Material Design Icons\";\n content: \"\\F35D\";\n font-size: inherit;\n }\n }\n }\n &:hover {\n .submenu {\n display: block;\n background: $horizontal-bottom-menu-item-bg-hover;\n }\n >.nav-link {\n background: darken($horizontal-bottom-menu-item-bg, 4%);\n .menu-arrow {\n transform: rotate(-180deg);\n }\n }\n }\n &.active {\n >.nav-link {\n background: darken($horizontal-bottom-menu-item-bg, 4%);\n color: $white;\n .link-icon,\n .menu-arrow {\n color: $white;\n }\n }\n }\n .submenu {\n display: none;\n animation-name: dropdownAnimation;\n animation-duration: $action-transition-duration;\n animation-fill-mode: both;\n ul {\n list-style-type: none;\n padding-left: 0;\n li {\n display: block;\n line-height: 20px;\n a {\n display: block;\n padding: 5px 10px;\n font-weight: 600;\n color: $horizontal-submenu-menu-color;\n text-decoration: none;\n text-align: left;\n margin: 4px 0;\n font-size: 14px;\n font-weight: 400;\n opacity: 0.8;\n @include ellipsor;\n transition-duration: 0.2s;\n transition-property: background;\n border-radius: 6px;\n &:hover {\n background: rgba(theme-color(primary), 0.1);\n }\n }\n &.active {\n a {\n background: rgba(theme-color(primary), 0.1);\n }\n }\n }\n }\n }\n &:not(.mega-menu) {\n .submenu {\n position: relative;\n top: -100%;\n @media (max-width: $grid-breakpoints-md) {\n top: 0;\n }\n ul {\n @include menu-style;\n padding: 15px;\n @media (max-width: $grid-breakpoints-md) {\n padding: 0 23px;\n }\n }\n }\n }\n &.mega-menu {\n .submenu {\n @include menu-style;\n top: calc($navbar-bottom-height - 2px);\n left: 0;\n padding: 25px;\n .category-heading {\n font-size: 14px;\n font-weight: 500;\n text-align: left;\n color: theme-color(primary);\n padding-bottom: 15px;\n border-bottom: 1px solid rgba($border-color, 0.6);\n }\n @media (max-width: $grid-breakpoints-md) {\n padding: 20px 32px;\n .col-group-wrapper {\n margin-left: 0;\n margin-right: 0;\n .col-group {\n padding-left: 0;\n padding-right: 0;\n margin-bottom: 20px;\n .category-heading {\n margin-bottom: 0;\n &:after {\n display: none;\n }\n }\n }\n }\n }\n }\n }\n }\n }\n &.header-toggled {\n @media (max-width: $grid-breakpoints-md) {\n display: block;\n background: transparent;\n }\n }\n &.fixed-top {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n z-index: 999;\n @media (max-width: $grid-breakpoints-md) {\n position: relative;\n }\n .page-navigation {\n margin-bottom: 0;\n border-bottom: none;\n box-shadow: 0 8px 5px 0 rgba(0, 0, 0, 0.06);\n }\n }\n }\n }\n}",".page-body-wrapper {\n min-height: calc(100vh - #{$navbar-height});\n background: $content-bg;\n padding-left: 0;\n padding-right: 0;\n &.full-page-wrapper {\n width: 100%;\n min-height: 100vh;\n }\n}\n\n.main-panel {\n min-height: calc(100vh - #{$navbar-height});\n margin-left: auto;\n}\n\n.content-wrapper {\n padding: 1.5rem 0;\n width: 100%;\n flex-grow: 1;\n}","////////// COLOR SYSTEM //////////\n$blue: #00aeef;\n$indigo: #6610f2;\n$purple: #ab8ce4;\n$pink: #E91E63;\n$red: #ff0017;\n$orange: #fb9678;\n$yellow: #ffd500;\n$green: #3bd949;\n$teal: #58d8a3;\n$cyan: #57c7d4;\n$black: #000;\n$white: #ffffff;\n$white-smoke: #f4f4f4;\n$ghost-white: #f7fafc;\n$violet: #41478a;\n$darkslategray: #2e383e;\n$dodger-blue: #3498db;\n$blue-teal-gradient: linear-gradient(120deg, #556cdc, #128bfc, #18bef1);\n$blue-teal-gradient-light: linear-gradient(120deg, rgba(0, 228, 208, 0.7), rgba(89, 131, 232, 0.7));\n$theme-colors: (primary: #2196f3, secondary: #e6eef2, success:#19d895, info: #8862e0, warning: #ffaf00, danger: #ff6258, light: #fbfbfb, dark: #252C46);\n$colors: (blue: $blue, indigo: $indigo, purple: $purple, pink: $pink, red: $red, orange: $orange, yellow: $yellow, green: $green, teal: $teal, cyan: $cyan, white: $white, white-smoke: #f3f5f6, gray: $gray-600, gray-light: #8ba2b5, gray-lightest: #f7f7f9, gray-dark: #292b2c);\n////////// COLOR SYSTEM //////////\n////////// COLOR VARIABLES //////////\n$content-bg:#f3f4fa;\n$footer-bg: $content-bg;\n$footer-color: color(dark);\n$border-color: #f2f2f2;\n$footer-height: 60px;\n////////// COLOR VARIABLES //////////\n////////// SOCIAL COLORS //////////\n$social-colors: (twitter: #4DBFF5, facebook: #648ACA, google: #E55F4B, linkedin: #0177b4, pinterest: #cc2127, youtube: #e52d27, github: #333333, behance: #1769ff, dribbble: #ea4c89, reddit: #ff4500);\n////////// SOCIAL COLORS //////////\n////////// FONTS //////////\n$type-1: 'Poppins',\nsans-serif;\n$type-2: $type-1;\n$default-font-size: 0.875rem; //14px\n$text-muted: #858585;\n$body-color: #212529;\n////////// FONT VARIABLES //////////\n////////// BOOTSTRAP BREAKPOINTS //////////\n$grid-breakpoints-xs: 0px;\n$grid-breakpoints-sm: 576px;\n$grid-breakpoints-md: 768px;\n$grid-breakpoints-lg: 992px;\n$grid-breakpoints-xl: 1200px;\n////////// BOOTSTRAP BREAKPOINTS //////////\n////////// SIDEBAR ////////\n$sidebar-width-lg: 255px;\n$sidebar-width-mini: 185px;\n$sidebar-width-icon: 70px;\n$sidebar-light-bg: $white;\n$sidebar-light-menu-color: #4a4a4a;\n$sidebar-light-menu-active-bg: #fafbfc;\n$sidebar-light-menu-active-color: theme-color(primary);\n$sidebar-light-menu-hover-bg: $sidebar-light-menu-active-bg;\n$sidebar-light-menu-hover-color: $sidebar-light-menu-color;\n$sidebar-light-submenu-color: $sidebar-light-menu-color;\n$sidebar-light-submenu-hover-bg: initial;\n$sidebar-light-submenu-hover-color: #000;\n$sidebar-light-category-color: #999999;\n$sidebar-light-menu-icon-color: $sidebar-light-menu-color;\n$sidebar-light-profile-name-color: #404852;\n$sidebar-light-profile-title-color: #8d9498;\n$sidebar-dark-bg: #252C46;\n$sidebar-dark-menu-color: #9F9EA3;\n$sidebar-dark-menu-active-bg: lighten($sidebar-dark-bg, 5%);\n$sidebar-dark-menu-active-color: $white;\n$sidebar-dark-menu-hover-bg: $sidebar-dark-menu-active-bg;\n$sidebar-dark-menu-hover-color: $sidebar-dark-menu-color;\n$sidebar-dark-submenu-color: $sidebar-dark-menu-color;\n$sidebar-dark-submenu-hover-bg: initial;\n$sidebar-dark-submenu-hover-color: #000;\n$sidebar-dark-category-color: #999999;\n$sidebar-dark-menu-icon-color: #9F9EA3;\n$sidebar-dark-profile-name-color: #404852;\n$sidebar-dark-profile-title-color: #8d9498;\n$sidebar-menu-font-size: 12px;\n$sidebar-icon-size: 16px;\n$sidebar-menu-padding: 16px 35px;\n$nav-link-height: 52px;\n$sidebar-submenu-padding: 0 0 0 4rem;\n$sidebar-submenu-font-size: $sidebar-menu-font-size;\n$sidebar-submenu-item-padding: .75rem 1rem;\n$sidebar-icon-font-size: .9375rem;\n$sidebar-arrow-font-size: .625rem;\n$sidebar-profile-bg: transparent;\n$sidebar-profile-padding: 0rem 1.625rem 2.25rem 1.188rem;\n$sidebar-mini-menu-padding: .8125rem 1rem .8125rem 1rem;\n$sidebar-icon-only-menu-padding: .5rem 1.625rem .5rem 1.188rem;\n$sidebar-icon-only-submenu-padding: 0 0 0 1.5rem;\n$sidebar-icon-only-submenu-width: 200px;\n$rtl-sidebar-submenu-padding: 0 3.45rem 0 0;\n///////// SIDEBAR ////////\n///////// SETTINGS PANEL ////////\n$settings-panel-width: 300px;\n///////// NAVBAR ////////\n$navbar-height: 63px;\n$navbar-light-color: #202339;\n$navbar-font-size: $sidebar-menu-font-size;\n$navbar-icon-font-size: 1.25rem;\n///////// NAVBAR ////////\n///////// BUTTONS ////////\n$button-fixed-width: 120px;\n$btn-padding-y: 0.56rem;\n$btn-padding-x: 1.375rem;\n$btn-line-height: 1;\n$btn-padding-y-xs: .5rem;\n$btn-padding-x-xs: .75rem;\n$btn-padding-y-sm: 0.50rem;\n$btn-padding-x-sm: 0.81rem;\n$btn-padding-y-lg: 0.94rem;\n$btn-padding-x-lg: 1.94rem;\n$btn-font-size: .875rem;\n$btn-font-size-xs: .625rem;\n$btn-font-size-sm: .875rem;\n$btn-font-size-lg: .875rem;\n$btn-border-radius: .1875rem;\n$btn-border-radius-xs: .1875rem;\n$btn-border-radius-sm: .1875rem;\n$btn-border-radius-lg: .1875rem;\n$social-btn-padding: 13px;\n$social-btn-icon-size: 1rem;\n///////// BUTTONS ////////\n///////// FORMS /////////\n$input-bg: color(white);\n$input-border-radius: 2px;\n$input-placeholder-color: #c9c8c8;\n$input-font-size: .75rem;\n$input-padding-y: .56rem;\n$input-padding-x: 1.375rem;\n$input-line-height: 1;\n$input-padding-y-sm: .5rem;\n$input-padding-x-sm: .81rem;\n$input-line-height-sm: 1;\n$input-padding-y-lg: .94rem;\n$input-padding-x-lg: 1.94rem;\n$input-line-height-lg: 1;\n///////// FORMS /////////\n//////// DROPDOWNS ///////\n$dropdown-border-color: $border-color;\n$dropdown-divider-bg: $border-color;\n$dropdown-link-color: $body-color;\n$dropdown-header-color: $body-color;\n//////// DROPDOWNS ///////\n//////// TABLES ////////\n$table-accent-bg: $content-bg;\n$table-hover-bg: $content-bg;\n$table-cell-padding: 18px 15px;\n$table-border-color: $border-color;\n$table-accent-bg: theme-color(light);\n$table-inverse-bg: #2a2b32;\n$table-inverse-color: color(white);\n$table-striped-order: even;\n//////// TABLES ////////\n////////// MEASUREMENT AND PROPERTY VARIABLES //////////\n$boxed-container-width: 1200px;\n$border-property: 1px solid $border-color;\n$card-spacing-y: 1.875rem;\n$card-padding-y: 1.88rem;\n$card-padding-x: 1.81rem;\n$grid-gutter-width: 25px;\n$action-transition-duration: 0.25s;\n$action-transition-timing-function: ease;\n////////// OTHER VARIABLES //////////\n////////// BREAD CRUMBS VARIABLES //////////\n// default styles\n$breadcrumb-padding-y: 0.56rem;\n$breadcrumb-padding-x: 1.13rem;\n$breadcrumb-item-padding: .5rem;\n$breadcrumb-margin-bottom: 1rem;\n$breadcrumb-font-size: $default-font-size;\n$breadcrumb-bg: transparent;\n$breadcrumb-border-color: $border-color;\n$breadcrumb-divider-color: $gray-600;\n$breadcrumb-active-color: $gray-700;\n$breadcrumb-divider: \"/\";\n// custom styles\n$breadcrumb-custom-padding-y: 0;\n$breadcrumb-custom-padding-x: 0;\n$breadcrumb-custom-item-padding-y: 0.56rem;\n$breadcrumb-custom-item-padding-x: 10px;\n$breadcrumb-custom-item-color: $black;\n$breadcrumb-item-bg: #dbe3e6;\n////////// BREAD CRUMBS VARIABLES //////////\n////////// MODALS VARIABLES //////////\n$modal-inner-padding: 15px;\n$modal-dialog-margin: 10px;\n$modal-dialog-margin-y-sm-up: 30px;\n$modal-title-line-height: $line-height-base;\n$modal-content-bg: $content-bg;\n$modal-content-box-shadow-xs: 0 3px 9px rgba($black, .5);\n$modal-content-box-shadow-sm-up: 0 5px 15px rgba($black, .5);\n$modal-backdrop-bg: $black;\n$modal-backdrop-opacity: .5;\n$modal-header-border-color: $border-color;\n$modal-content-border-color: $border-color;\n$modal-footer-border-color: $border-color;\n$modal-header-border-width: $border-width;\n$modal-content-border-width: $border-width;\n$modal-footer-border-width: $border-width;\n$modal-header-padding-x: 26px;\n$modal-header-padding-y: 25px;\n$modal-body-padding-x: 26px;\n$modal-body-padding-y: 35px;\n$modal-footer-padding-x: 31px;\n$modal-footer-padding-y: 15px;\n$modal-lg: 90%;\n$modal-md: 500px;\n$modal-sm: 300px;\n$modal-transition: transform .4s ease;\n////////// MODALS VARIABLES //////////\n////////// TOOLTIP VARIABLES //////////\n//default styles\n$tooltip-font-size: .75rem;\n$tooltip-padding-y: .4rem;\n$tooltip-padding-x: .75rem;\n$tooltip-border-radius: .375rem;\n$tooltip-bg: theme-color(dark);\n$tooltip-arrow-color: $tooltip-bg;\n////////// TOOLTIP VARIABLES //////////\n////////// POPOVER VARIABLES //////////\n//default styles\n$popover-bg: lighten(theme-color(primary), 40%);\n$popover-text-color: $black;\n$popover-border-color: $border-color;\n$popover-arrow-color: $popover-bg;\n$popover-arrow-outer-color: $popover-border-color;\n$popover-header-bg: $popover-bg;\n////////// POPOVER VARIABLES //////////","$bluish-gradient: linear-gradient(30deg, theme-color(primary), #814eff);\n$navbar-brand-wrapper-width: 185px;\n$navbar-brand-wrapper-mini-width: 70px;\n$menu-break-point: 1020px;\n$horizontal-navbar-height: 135px;\n$horizontal-top-menu-bg: $white;\n$horizontal-menu-padding: 0 1rem;\n$horizontal-menu-height: 57px;\n$navbar-bottom-height: 50px;\n$horizontal-bottom-menu-item-bg: #0404FC;\n$horizontal-bottom-menu-item-bg-hover: $white;\n$horizontal-submenu-menu-color: $black;\n$horizontal-bottom-menu-item-color: $white;\n$horizontal-menu-item-color: #202339;\n$horizontal-menu-submenu-color: $horizontal-menu-item-color;\n$horizontal-menu-font-size: .875rem;\n$horizontal-menu-item-padding: .75rem 0;\n$horizontal-menu-icon-font-size: .9375rem;\n$horizontal-menu-submenu-item-padding: .85rem 0;","//generic transform\n@mixin transform($transforms) {\n -moz-transform: $transforms;\n -o-transform: $transforms;\n -ms-transform: $transforms;\n -webkit-transform: $transforms;\n transform: $transforms;\n}\n\n// rotate\n@mixin rotate ($deg) {\n transform:rotate(#{$deg}deg);\n}\n\n// scale\n@mixin scale($scale) {\n transform: scale($scale);\n}\n\n// translate\n@mixin translate ($x, $y) {\n transform: translate($x, $y);\n}\n\n// skew\n@mixin skew ($x, $y) {\n transform:skew(#{$x}deg, #{$y}deg);\n}\n\n//transform origin\n@mixin transform-origin ($origin) {\n moz-transform-origin: $origin;\n -o-transform-origin: $origin;\n -ms-transform-origin: $origin;\n -webkit-transform-origin: $origin;\n transform-origin: $origin;\n}\n\n//Ellipsis\n%ellipsor {\n text-overflow: ellipsis;\n overflow: hidden;\n max-width: 100%;\n white-space: nowrap;\n}\n\n@mixin ellipsor {\n text-overflow: ellipsis;\n overflow: hidden;\n max-width: 100%;\n white-space: nowrap;\n}\n\n@mixin placeholder {\n &::-webkit-input-placeholder {\n @content;\n }\n &:-moz-placeholder {\n @content;\n }\n &::-moz-placeholder {\n @content;\n }\n &:-ms-input-placeholder {\n @content;\n }\n}"]} \ No newline at end of file diff --git a/assets/css/pages/aggrid.css b/assets/css/pages/aggrid.css new file mode 100644 index 0000000..b19d934 --- /dev/null +++ b/assets/css/pages/aggrid.css @@ -0,0 +1,71 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.aggrid { + height: 600px; + font-size: 1rem; + color: #626262; + /*** TABLE BODY HEIGHT - FOOTER HEIGHT ***/ + /*** HEADER TEXT ***/ + /*** PAGINATION STYLING ***/ + /*** TABLE SCROLLBAR ***/ } + .aggrid .ag-icon-checkbox-checked, + .aggrid .ag-icon-checkbox-indeterminate { + color: #3a50dc !important; } + .aggrid .ag-root-wrapper-body { + min-height: calc(100% - 56px); } + .aggrid .ag-header-cell-text { + font-size: 1rem; + font-family: "Montserrat", Helvetica, Arial, serif; } + .aggrid .ag-paging-panel { + display: block !important; + align-items: center; + height: 98px; } + .aggrid .ag-paging-panel .ag-paging-row-summary-panel { + display: none; } + .aggrid .ag-paging-panel .ag-paging-page-summary-panel { + justify-content: center; + margin-left: 0; + margin-top: 18px; } + .aggrid .ag-paging-panel .ag-paging-page-summary-panel [ref="lbCurrent"], + .aggrid .ag-paging-panel .ag-paging-page-summary-panel [ref="lbTotal"] { + color: #fff; + padding: 0.7rem 0.95rem; + border-radius: 0.5rem; } + .aggrid .ag-paging-panel .ag-paging-button { + background-color: #dae1e7; + border-radius: 50%; + padding: 0.5rem 0rem; + margin: 0 0.5rem; + color: #626262 !important; } + .aggrid .ag-paging-panel .ag-paging-button .ag-icon { + color: #626262 !important; + opacity: 1 !important; } + .aggrid .ag-paging-panel .ag-paging-button.ag-disabled { + opacity: 0.5 !important; } + .aggrid .ag-paging-panel span[ref="lbCurrent"] { + background-color: #3a50dc; } + .aggrid .ag-paging-panel span[ref="lbTotal"] { + background-color: #dae1e7; + color: #626262 !important; } + .aggrid ::-webkit-scrollbar { + width: 10px; + height: 10px; } + .aggrid ::-webkit-scrollbar-thumb { + background: #dae1e7; + border-radius: 20px; } + .aggrid ::-webkit-scrollbar-track { + background: #f8f8f8; + border-radius: 20px; } + +/*** PAGE FILTER DROPDOWN ***/ +.filter-btn { + padding: 1.2rem !important; + border-radius: 5rem; + font-size: 0.95rem; } + .filter-btn:after { + left: 5px; } + +/*** SORTING DROPDOWN WIDTH ***/ +.sort-dropdown .dropdown-menu { + min-width: 4rem; } diff --git a/assets/css/pages/aggrid.min.css b/assets/css/pages/aggrid.min.css new file mode 100644 index 0000000..f1b5167 --- /dev/null +++ b/assets/css/pages/aggrid.min.css @@ -0,0 +1 @@ +.aggrid{height:600px;font-size:1rem;color:#626262}.aggrid .ag-icon-checkbox-checked,.aggrid .ag-icon-checkbox-indeterminate{color:#7367F0!important}.aggrid .ag-root-wrapper-body{min-height:calc(100% - 56px)}.aggrid .ag-header-cell-text{font-size:1rem;font-family:Montserrat,Helvetica,Arial,serif}.aggrid .ag-paging-panel{display:block!important;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:98px}.aggrid .ag-paging-panel .ag-paging-row-summary-panel{display:none}.aggrid .ag-paging-panel .ag-paging-page-summary-panel{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-left:0;margin-top:18px}.aggrid .ag-paging-panel .ag-paging-page-summary-panel [ref=lbCurrent],.aggrid .ag-paging-panel .ag-paging-page-summary-panel [ref=lbTotal]{color:#FFF;padding:.7rem .95rem;border-radius:.5rem}.aggrid .ag-paging-panel .ag-paging-button{background-color:#DAE1E7;border-radius:50%;padding:.5rem 0;margin:0 .5rem;color:#626262!important}.aggrid .ag-paging-panel .ag-paging-button .ag-icon{color:#626262!important;opacity:1!important}.aggrid .ag-paging-panel .ag-paging-button.ag-disabled{opacity:.5!important}.aggrid .ag-paging-panel span[ref=lbCurrent]{background-color:#7367F0}.aggrid .ag-paging-panel span[ref=lbTotal]{background-color:#DAE1E7;color:#626262!important}.aggrid ::-webkit-scrollbar{width:10px;height:10px}.aggrid ::-webkit-scrollbar-thumb{background:#DAE1E7;border-radius:20px}.aggrid ::-webkit-scrollbar-track{background:#F8F8F8;border-radius:20px}.filter-btn{padding:1.2rem!important;border-radius:5rem;font-size:.95rem}.filter-btn:after{left:5px}.sort-dropdown .dropdown-menu{min-width:4rem} \ No newline at end of file diff --git a/assets/css/pages/app-chat.css b/assets/css/pages/app-chat.css new file mode 100644 index 0000000..bddb97b --- /dev/null +++ b/assets/css/pages/app-chat.css @@ -0,0 +1,286 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.chat-application .content-area-wrapper .content-right .content-wrapper { + padding: 0; } + +.chat-application .content-area-wrapper { + border: 1px solid #dae1e7; + border-radius: 0.25rem; } + +.chat-application .chat-profile-sidebar { + border-right: 1px solid #E4E7ED; + height: calc(100vh - 13rem); + height: calc(var(--vh, 1vh) * 100 - 13rem); + width: 400px; + border-radius: .25rem; + border-top-right-radius: 0; + border-bottom-right-radius: 0; + margin: 0; + background-color: #fff; + position: fixed; + transform: translateX(-110%); + transition: all .3s ease; + z-index: 6; } + .chat-application .chat-profile-sidebar.show { + transform: translateX(0); + transition: all .3s ease; } + .chat-application .chat-profile-sidebar .chat-profile-header { + display: flex; + text-align: center; + border-bottom: 1px solid rgba(0, 0, 0, 0.06); } + .chat-application .chat-profile-sidebar .chat-profile-header .header-profile-sidebar { + margin: 2rem auto .5rem; } + .chat-application .chat-profile-sidebar .chat-profile-header .avatar { + margin-bottom: 1.25rem; } + .chat-application .chat-profile-sidebar .chat-profile-header .close-icon { + position: absolute; + top: 14px; + right: 13px; + font-size: 1.75rem; + cursor: pointer; } + .chat-application .chat-profile-sidebar .profile-sidebar-area .scroll-area { + padding: 2rem; + height: calc(100vh - 24.25rem); + height: calc(var(--vh, 1vh) * 100 - 24.25rem); + position: relative; } + +.chat-application .sidebar-content { + border-right: 1px solid #E4E7ED; + height: calc(100vh - 13rem); + height: calc(var(--vh, 1vh) * 100 - 13rem); + width: 400px; + border-radius: .25rem; + border-top-right-radius: 0; + border-bottom-right-radius: 0; + margin: 0; + box-shadow: none; } + .chat-application .sidebar-content .sidebar-close-icon { + position: absolute; + right: .25rem; + top: .25rem; + font-size: 1.25rem; + z-index: 1; + cursor: pointer; + visibility: hidden; } + .chat-application .sidebar-content .chat-fixed-search { + position: fixed; + width: 400px; + border-bottom: 1px solid #E4E7ED; + padding: .65rem; } + .chat-application .sidebar-content .chat-fixed-search .sidebar-profile-toggle .avatar { + display: inline-table; + width: calc(32px + 8px); } + .chat-application .sidebar-content .chat-fixed-search input.form-control { + padding: .9rem 1rem .9rem 3rem; + height: calc(1.25em + 1.4rem + 4px); } + .chat-application .sidebar-content .chat-fixed-search .form-control-position { + top: 5px; } + .chat-application .sidebar-content .chat-fixed-search .form-control-position i { + left: 9px; } + .chat-application .sidebar-content .chat-user-list { + height: calc(100% - 5rem); + margin-top: 5rem; + width: 400px; } + .chat-application .sidebar-content .chat-user-list ul { + padding-left: 0; + margin-bottom: 0; } + .chat-application .sidebar-content .chat-user-list li { + display: flex; + justify-content: space-between; + align-items: center; + padding: 1.322rem .85rem; + margin-right: 1px; } + .chat-application .sidebar-content .chat-user-list li:not(:first-child) { + border-top: 1px solid #E4E7ED; } + .chat-application .sidebar-content .chat-user-list li .user-chat-info { + width: 100%; + display: flex; + justify-content: space-between; + overflow: hidden; } + .chat-application .sidebar-content .chat-user-list li .contact-info { + width: calc(100vw - (100vw - 100%) - 1rem - 50px); + margin-top: .3rem; } + .chat-application .sidebar-content .chat-user-list li .contact-info .truncate { + margin: 0; } + .chat-application .sidebar-content .chat-user-list li:hover { + cursor: pointer; + background: #eee; } + .chat-application .sidebar-content .chat-user-list li.active { + background: linear-gradient(118deg, #3a50dc, rgb(24, 61, 176)); + box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), 0 5px 15px 0 rgba(0, 0, 0, 0.08); + color: #fff; } + .chat-application .sidebar-content .chat-user-list li.active h1, .chat-application .sidebar-content .chat-user-list li.active h2, .chat-application .sidebar-content .chat-user-list li.active h3, .chat-application .sidebar-content .chat-user-list li.active h4, .chat-application .sidebar-content .chat-user-list li.active h5, .chat-application .sidebar-content .chat-user-list li.active h6 { + color: #fff; } + .chat-application .sidebar-content .chat-user-list li img { + border: 2px solid #fff; } + .chat-application .sidebar-content .card { + margin-bottom: 0; } + +.chat-application .chat-overlay { + top: 0; + left: 0; + right: 0; + bottom: 0; + position: absolute; + display: block; + z-index: 2; + visibility: hidden; + border-radius: 0.25rem; } + .chat-application .chat-overlay.show { + visibility: visible; + background-color: rgba(0, 0, 0, 0.2); } + +.chat-application .chat-app-window .favorite, .chat-application .chat-app-window .sidebar-toggle { + cursor: pointer; } + +.chat-application .chat-app-window .user-chats { + padding: 20px 30px; + position: relative; + text-align: center; + height: calc(100vh - 23.5rem); + height: calc(var(--vh, 1vh) * 100 - 23.5rem); } + +.chat-application .chat-app-window .start-chat-area, .chat-application .chat-app-window .user-chats { + background-image: url("../../images/backgrounds/chat-bg.svg"); + background-color: #dfdbe5; } + +.chat-application .chat-app-window .start-chat-area { + height: calc(100vh - 13rem); + height: calc(var(--vh, 1vh) * 100 - 13rem); + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; } + .chat-application .chat-app-window .start-chat-area .start-chat-icon, .chat-application .chat-app-window .start-chat-area .start-chat-text { + background: white; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08) !important; } + .chat-application .chat-app-window .start-chat-area .start-chat-text { + border-radius: calc(0.5rem * 4); + cursor: pointer; } + .chat-application .chat-app-window .start-chat-area .start-chat-icon { + border-radius: 50%; + font-size: 4rem; + padding: 2rem; } + +.chat-application .chat-app-form { + padding: 20px 10px; + background-color: white; } + +.chat-application .chats { + padding: 0; } + .chat-application .chats .chat-body { + display: block; + margin: 10px 30px 0 0; + overflow: hidden; } + .chat-application .chats .chat-body .chat-content { + text-align: right; + display: block; + float: right; + padding: .75rem 1rem; + margin: 0 20px 10px 0; + clear: both; + color: #fff; + background: linear-gradient(118deg, #3a50dc, rgb(24, 61, 176)); + border-radius: .5rem; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08); } + .chat-application .chats .chat-body .chat-content p { + margin: 0; } + .chat-application .chats .chat-avatar { + float: right; } + .chat-application .chats .chat-left .chat-avatar { + float: left; } + .chat-application .chats .chat-left .chat-body { + margin-right: 0; + margin-left: 30px; } + .chat-application .chats .chat-left .chat-content { + text-align: left; + float: left; + margin: 0 0 10px 20px; + color: #626262; + background: none; + background-color: white; } + +.chat-application .user-profile-sidebar { + border-right: 1px solid #E4E7ED; + height: calc(100vh - 13rem); + height: calc(var(--vh, 1vh) * 100 - 13rem); + width: 400px; + border-radius: .25rem; + border-top-left-radius: 0; + border-bottom-left-radius: 0; + margin: 0; + background-color: #fff; + position: fixed; + transform: translateX(110%); + transition: all .3s ease; + z-index: 6; + right: 4.2rem; + bottom: 5.25rem; + opacity: 0; } + .chat-application .user-profile-sidebar.show { + opacity: 1; + transform: translateX(7%); + transition: all .3s ease; } + .chat-application .user-profile-sidebar .user-profile-header { + display: flex; + text-align: center; + border-bottom: 1px solid rgba(0, 0, 0, 0.06); } + .chat-application .user-profile-sidebar .user-profile-header .header-profile-sidebar { + margin: 2rem auto .5rem; } + .chat-application .user-profile-sidebar .user-profile-header .avatar { + margin-bottom: 1.25rem; } + .chat-application .user-profile-sidebar .user-profile-header .close-icon { + position: absolute; + top: 14px; + right: 13px; + font-size: 1.75rem; + cursor: pointer; } + .chat-application .user-profile-sidebar .user-profile-sidebar-area { + height: calc(100vh - 24.25rem); + height: calc(var(--vh, 1vh) * 100 - 24.25rem); + position: relative; } + +@media (max-width: 767.98px) { + .chat-application .chat-app-window { + height: calc(100% - 132px); } + .chat-application .sidebar-content .sidebar-close-icon { + visibility: visible; } } + +@media (max-width: 575.98px) { + .chat-application .sidebar-content { + width: 260px; + left: -4px !important; } + .chat-application .sidebar-content .chat-fixed-search, .chat-application .sidebar-content .chat-user-list { + width: 260px; } + .chat-application .chat-profile-sidebar { + width: 260px; } + .chat-application .user-profile-sidebar { + width: 260px; + right: 2.35rem; } } + +@media (max-width: 991.98px) { + .content-right { + width: 100%; } + .chat-application .sidebar-content { + transform: translateX(-110%); + transition: all .3s ease-in-out; + left: 0; + position: fixed; + z-index: 5; + left: -2px; } + .chat-application .sidebar-content.show { + transform: translateX(8.5%); + transition: all .3s ease; + display: block; } } + +@media (max-width: 349.98px) { + .chat-application .sidebar-content { + width: 230px; + left: -2px !important; } + .chat-application .sidebar-content .chat-fixed-search, .chat-application .sidebar-content .chat-user-list { + width: 230px; } + .chat-application .chat-profile-sidebar { + width: 230px; } + .chat-application .user-profile-sidebar { + width: 230px; } } diff --git a/assets/css/pages/app-chat.min.css b/assets/css/pages/app-chat.min.css new file mode 100644 index 0000000..bf4840d --- /dev/null +++ b/assets/css/pages/app-chat.min.css @@ -0,0 +1 @@ +.chat-application .content-area-wrapper .content-right .content-wrapper{padding:0}.chat-application .content-area-wrapper{border:1px solid #DAE1E7;border-radius:.25rem}.chat-application .chat-profile-sidebar,.chat-application .sidebar-content{border-right:1px solid #E4E7ED;border-radius:.25rem 0 0 .25rem;width:400px}.chat-application .chat-profile-sidebar{height:calc(100vh - 13rem);height:calc(var(--vh,1vh) * 100 - 13rem);margin:0;background-color:#FFF;position:fixed;-webkit-transform:translateX(-110%);-ms-transform:translateX(-110%);transform:translateX(-110%);-webkit-transition:all .3s ease;transition:all .3s ease;z-index:6}.chat-application .chat-profile-sidebar.show{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);-webkit-transition:all .3s ease;transition:all .3s ease}.chat-application .chat-profile-sidebar .chat-profile-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;text-align:center;border-bottom:1px solid rgba(0,0,0,.06)}.chat-application .chat-profile-sidebar .chat-profile-header .header-profile-sidebar{margin:2rem auto .5rem}.chat-application .chat-profile-sidebar .chat-profile-header .avatar{margin-bottom:1.25rem}.chat-application .chat-profile-sidebar .chat-profile-header .close-icon{position:absolute;top:14px;right:13px;font-size:1.75rem;cursor:pointer}.chat-application .chat-profile-sidebar .profile-sidebar-area .scroll-area{padding:2rem;height:calc(100vh - 24.25rem);height:calc(var(--vh,1vh) * 100 - 24.25rem);position:relative}.chat-application .sidebar-content{height:calc(100vh - 13rem);height:calc(var(--vh,1vh) * 100 - 13rem);margin:0;box-shadow:none}.chat-application .sidebar-content .sidebar-close-icon{position:absolute;right:.25rem;top:.25rem;font-size:1.25rem;z-index:1;cursor:pointer;visibility:hidden}.chat-application .sidebar-content .chat-fixed-search{position:fixed;width:400px;border-bottom:1px solid #E4E7ED;padding:.65rem}.chat-application .sidebar-content .chat-fixed-search .sidebar-profile-toggle .avatar{display:inline-table;width:calc(32px + 8px)}.chat-application .sidebar-content .chat-fixed-search input.form-control{padding:.9rem 1rem .9rem 3rem;height:calc(1.25em + 1.4rem + 4px)}.chat-application .sidebar-content .chat-fixed-search .form-control-position{top:5px}.chat-application .sidebar-content .chat-fixed-search .form-control-position i{left:9px}.chat-application .sidebar-content .chat-user-list{height:calc(100% - 5rem);margin-top:5rem;width:400px}.chat-application .sidebar-content .chat-user-list ul{padding-left:0;margin-bottom:0}.chat-application .sidebar-content .chat-user-list li{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding:1.322rem .85rem;margin-right:1px}.chat-application .sidebar-content .chat-user-list li:not(:first-child){border-top:1px solid #E4E7ED}.chat-application .sidebar-content .chat-user-list li .user-chat-info{width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;overflow:hidden}.chat-application .sidebar-content .chat-user-list li .contact-info{width:calc(100vw - (100vw - 100%) - 1rem - 50px);margin-top:.3rem}.chat-application .sidebar-content .chat-user-list li .contact-info .truncate{margin:0}.chat-application .sidebar-content .chat-user-list li:hover{cursor:pointer;background:#EEE}.chat-application .sidebar-content .chat-user-list li.active{background:-webkit-linear-gradient(332deg,#7367F0,rgba(115,103,240,.7));background:linear-gradient(118deg,#7367F0,rgba(115,103,240,.7));box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08);color:#FFF}.chat-application .sidebar-content .chat-user-list li.active h1,.chat-application .sidebar-content .chat-user-list li.active h2,.chat-application .sidebar-content .chat-user-list li.active h3,.chat-application .sidebar-content .chat-user-list li.active h4,.chat-application .sidebar-content .chat-user-list li.active h5,.chat-application .sidebar-content .chat-user-list li.active h6{color:#FFF}.chat-application .sidebar-content .chat-user-list li img{border:2px solid #FFF}.chat-application .sidebar-content .card{margin-bottom:0}.chat-application .chat-overlay{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:2;visibility:hidden;border-radius:.25rem}.chat-application .chat-overlay.show{visibility:visible;background-color:rgba(0,0,0,.2)}.chat-application .chat-app-window .favorite,.chat-application .chat-app-window .sidebar-toggle{cursor:pointer}.chat-application .chat-app-window .user-chats{padding:20px 30px;position:relative;text-align:center;height:calc(100vh - 23.5rem);height:calc(var(--vh,1vh) * 100 - 23.5rem)}.chat-application .chat-app-window .start-chat-area,.chat-application .chat-app-window .user-chats{background-image:url(../../images/backgrounds/chat-bg.svg);background-color:#DFDBE5}.chat-application .chat-app-window .start-chat-area{height:calc(100vh - 13rem);height:calc(var(--vh,1vh) * 100 - 13rem);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.chat-application .chat-app-window .start-chat-area .start-chat-icon,.chat-application .chat-app-window .start-chat-area .start-chat-text{background:#fff;box-shadow:0 4px 8px 0 rgba(0,0,0,.12),0 2px 4px 0 rgba(0,0,0,.08)!important}.chat-application .chat-app-window .start-chat-area .start-chat-text{border-radius:calc(.5rem * 4);cursor:pointer}.chat-application .chat-app-window .start-chat-area .start-chat-icon{border-radius:50%;font-size:4rem;padding:2rem}.chat-application .chat-app-form{padding:20px 10px;background-color:#fff}.chat-application .chats{padding:0}.chat-application .chats .chat-body{display:block;margin:10px 30px 0 0;overflow:hidden}.chat-application .chats .chat-body .chat-content{text-align:right;display:block;float:right;padding:.75rem 1rem;margin:0 20px 10px 0;clear:both;color:#FFF;background:-webkit-linear-gradient(332deg,#7367F0,rgba(115,103,240,.7));background:linear-gradient(118deg,#7367F0,rgba(115,103,240,.7));border-radius:.5rem;box-shadow:0 4px 8px 0 rgba(0,0,0,.12),0 2px 4px 0 rgba(0,0,0,.08)}.chat-application .chats .chat-body .chat-content p{margin:0}.chat-application .chats .chat-avatar{float:right}.chat-application .chats .chat-left .chat-avatar{float:left}.chat-application .chats .chat-left .chat-body{margin-right:0;margin-left:30px}.chat-application .chats .chat-left .chat-content{text-align:left;float:left;margin:0 0 10px 20px;color:#626262;background:#fff}.chat-application .user-profile-sidebar{border-right:1px solid #E4E7ED;height:calc(100vh - 13rem);height:calc(var(--vh,1vh) * 100 - 13rem);width:400px;border-radius:0 .25rem .25rem 0;margin:0;background-color:#FFF;position:fixed;-webkit-transform:translateX(110%);-ms-transform:translateX(110%);transform:translateX(110%);-webkit-transition:all .3s ease;transition:all .3s ease;z-index:6;right:4.2rem;bottom:5.25rem;opacity:0}.chat-application .user-profile-sidebar.show{opacity:1;-webkit-transform:translateX(7%);-ms-transform:translateX(7%);transform:translateX(7%);-webkit-transition:all .3s ease;transition:all .3s ease}.chat-application .user-profile-sidebar .user-profile-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;text-align:center;border-bottom:1px solid rgba(0,0,0,.06)}.chat-application .user-profile-sidebar .user-profile-header .header-profile-sidebar{margin:2rem auto .5rem}.chat-application .user-profile-sidebar .user-profile-header .avatar{margin-bottom:1.25rem}.chat-application .user-profile-sidebar .user-profile-header .close-icon{position:absolute;top:14px;right:13px;font-size:1.75rem;cursor:pointer}.chat-application .user-profile-sidebar .user-profile-sidebar-area{height:calc(100vh - 24.25rem);height:calc(var(--vh,1vh) * 100 - 24.25rem);position:relative}@media (max-width:767.98px){.chat-application .chat-app-window{height:calc(100% - 132px)}.chat-application .sidebar-content .sidebar-close-icon{visibility:visible}}@media (max-width:575.98px){.chat-application .sidebar-content{width:260px;left:-4px!important}.chat-application .chat-profile-sidebar,.chat-application .sidebar-content .chat-fixed-search,.chat-application .sidebar-content .chat-user-list{width:260px}.chat-application .user-profile-sidebar{width:260px;right:2.35rem}}@media (max-width:991.98px){.content-right{width:100%}.chat-application .sidebar-content{-webkit-transform:translateX(-110%);-ms-transform:translateX(-110%);transform:translateX(-110%);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;position:fixed;z-index:5;left:-2px}.chat-application .sidebar-content.show{-webkit-transform:translateX(8.5%);-ms-transform:translateX(8.5%);transform:translateX(8.5%);-webkit-transition:all .3s ease;transition:all .3s ease;display:block}}@media (max-width:349.98px){.chat-application .sidebar-content{width:230px;left:-2px!important}.chat-application .chat-profile-sidebar,.chat-application .sidebar-content .chat-fixed-search,.chat-application .sidebar-content .chat-user-list,.chat-application .user-profile-sidebar{width:230px}} \ No newline at end of file diff --git a/assets/css/pages/app-ecommerce-details.css b/assets/css/pages/app-ecommerce-details.css new file mode 100644 index 0000000..38c3734 --- /dev/null +++ b/assets/css/pages/app-ecommerce-details.css @@ -0,0 +1,78 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +/* app ecommerce details css */ +/*---------------*/ +.app-ecommerce-details .item-features { + background-color: #f7f7f7; } + +/* swiper slide shadow */ +.swiper-container .swiper-shadow { + box-shadow: 2px 8px 10px 0 rgba(25, 42, 70, 0.13) !important; } + +.swiper-responsive-breakpoints.swiper-container .swiper-slide { + text-align: center; + font-weight: 500; + background-color: #f7f7f7; + padding: 1.5rem; + cursor: pointer; } + +.swiper-button-prev, +.swiper-button-next, +.swiper-container-rtl .swiper-button-prev, +.swiper-container-rtl .swiper-button-next { + background-image: none; + width: 35px; + font-size: 2rem; } + .swiper-button-prev:focus, + .swiper-button-next:focus, + .swiper-container-rtl .swiper-button-prev:focus, + .swiper-container-rtl .swiper-button-next:focus { + outline: none; } + .swiper-button-prev:after, + .swiper-button-next:after, + .swiper-container-rtl .swiper-button-prev:after, + .swiper-container-rtl .swiper-button-next:after { + font-family: 'feather'; } + +.swiper-button-prev { + left: 0; } + .swiper-button-prev:after { + content: "\e843"; } + +.swiper-button-next { + right: 0; } + .swiper-button-next:after { + content: "\e844"; } + +.swiper-container-rtl .swiper-button-prev:after { + content: "\e844"; } + +.swiper-container-rtl .swiper-button-next:after { + content: "\e843"; } + +.product-color-options .color-option { + border: 2px solid transparent; + border-radius: 50%; + position: relative; + cursor: pointer; + padding: .3rem; } + .product-color-options .color-option .filloption { + height: 21px; + width: 21px; + border-radius: 50%; } + +.product-color-options .selected .b-primary { + border-color: #3a50dc; } + +.product-color-options .selected .b-success { + border-color: #28c76f; } + +.product-color-options .selected .b-danger { + border-color: #ea5455; } + +.product-color-options .selected .b-warning { + border-color: #ff9f43; } + +.product-color-options .selected .b-black { + border-color: #22292f; } diff --git a/assets/css/pages/app-ecommerce-details.min.css b/assets/css/pages/app-ecommerce-details.min.css new file mode 100644 index 0000000..951ee76 --- /dev/null +++ b/assets/css/pages/app-ecommerce-details.min.css @@ -0,0 +1 @@ +.app-ecommerce-details .item-features{background-color:#F7F7F7}.swiper-container .swiper-shadow{box-shadow:2px 8px 10px 0 rgba(25,42,70,.13)!important}.swiper-responsive-breakpoints.swiper-container .swiper-slide{text-align:center;font-weight:500;background-color:#F7F7F7;padding:1.5rem;cursor:pointer}.swiper-button-next,.swiper-button-prev,.swiper-container-rtl .swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:none;width:35px;font-size:2rem}.swiper-button-next:focus,.swiper-button-prev:focus,.swiper-container-rtl .swiper-button-next:focus,.swiper-container-rtl .swiper-button-prev:focus{outline:0}.swiper-button-next:after,.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{font-family:feather}.swiper-button-prev{left:0}.swiper-button-prev:after{content:'\e843'}.swiper-button-next{right:0}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'\e844'}.swiper-container-rtl .swiper-button-next:after{content:'\e843'}.product-color-options .color-option{border:2px solid transparent;border-radius:50%;position:relative;cursor:pointer;padding:.3rem}.product-color-options .color-option .filloption{height:21px;width:21px;border-radius:50%}.product-color-options .selected .b-primary{border-color:#7367F0}.product-color-options .selected .b-success{border-color:#28C76F}.product-color-options .selected .b-danger{border-color:#EA5455}.product-color-options .selected .b-warning{border-color:#FF9F43}.product-color-options .selected .b-black{border-color:#22292F} \ No newline at end of file diff --git a/assets/css/pages/app-ecommerce-shop.css b/assets/css/pages/app-ecommerce-shop.css new file mode 100644 index 0000000..ac5418d --- /dev/null +++ b/assets/css/pages/app-ecommerce-shop.css @@ -0,0 +1,460 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.ecommerce-application .content-body { + position: relative; } + +.ecommerce-application .shop-content-overlay { + position: absolute; + top: 4.2rem; + height: 100%; + width: 100%; + background: rgba(0, 0, 0, 0.2); + z-index: 0; + opacity: 0; } + .ecommerce-application .shop-content-overlay.show { + opacity: 1; + z-index: 1; } + +.ecommerce-application .sidebar-shop .sidebar-close-icon { + position: absolute; + top: 0.25rem; + right: 0.25rem; + font-size: 1.25rem; + z-index: 5; + cursor: pointer; } + +.ecommerce-application .sidebar-shop .filter-heading { + font-weight: 700; + color: #626262; + position: relative; + top: -7px; } + +.ecommerce-application .sidebar-shop .vs-radio-con input:checked ~ span { + color: #3a50dc; } + +.ecommerce-application .sidebar-shop .filter-title { + font-weight: 700; } + +.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal { + height: .285rem; } + .ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-base { + height: .285rem; } + .ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle { + right: -1.071rem !important; + top: -.428rem; + width: 16px; + height: 16px; + border-width: .142rem; + line-height: 1.15; + cursor: pointer; } + .ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle .noUi-tooltip { + opacity: 0; + font-size: .75rem; + background-color: #3a50dc; + color: #fff; + border-radius: .357rem; + border: none; + padding: .142rem .357rem; + transform: translate(-50%, -50%); } + .ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle .noUi-tooltip:before { + content: "$ "; } + .ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle:hover { + transform: scale(1.2); } + .ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle:active { + transform: scale(1); + border-width: .5rem; + transition: .25s ease; } + .ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle:active .noUi-tooltip { + opacity: 1; } + +.ecommerce-application .sidebar-shop .ratings-list .ratings-list-item { + font-size: 1.5rem; + cursor: pointer; } + +.ecommerce-application .sidebar-shop .ratings-list ~ .stars-received { + margin-top: .35rem; } + +.ecommerce-application .sidebar-shop { + margin-top: 2rem; + width: 260px; + z-index: 4; } + +.ecommerce-application .ecommerce-header-items { + display: flex; + justify-content: space-between; } + .ecommerce-application .ecommerce-header-items .view-options .view-btn-option { + display: inline-block; } + .ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn { + margin-right: 10px; + background-color: #fff; + padding: .5rem; + color: #626262; + box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14) !important; } + .ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn i { + font-size: 1.7rem; } + .ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn.active { + color: #3a50dc !important; } + .ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn.active:hover, .ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn.active:active { + color: #3a50dc !important; } + .ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn:hover, .ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn:active { + color: #626262; } + .ecommerce-application .ecommerce-header-items .view-options .select2 { + margin-right: 10px; + width: auto !important; } + .ecommerce-application .ecommerce-header-items .view-options .select2 .select2-selection--single { + border: none !important; + box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14); + border-radius: 5px; } + .ecommerce-application .ecommerce-header-items .result-toggler { + display: flex; + align-items: flex-end; } + .ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler { + font-size: 1.7rem; + padding-left: 0; + margin-left: -6px; } + .ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler:active, .ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler:focus { + outline: 0; } + .ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler .navbar-toggler-icon i { + color: #626262; + vertical-align: middle; } + .ecommerce-application .ecommerce-header-items .result-toggler .search-results { + font-weight: 700; + color: #626262; + display: inline-block; } + +.ecommerce-application .search-product { + height: 48px; + border: none; + box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14); + font-size: 1.2rem; + padding-left: 1rem; } + .ecommerce-application .search-product ~ .form-control-position { + top: 10px; + right: 10px; } + .ecommerce-application .search-product ~ .form-control-position i { + font-size: 1.5rem; } + .ecommerce-application .search-product::placeholder { + font-size: .95rem; } + +.ecommerce-application .ecommerce-card:hover { + transform: translateY(-5px); + box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.25); } + +.ecommerce-application .ecommerce-card .item-price { + font-weight: 700; } + +.ecommerce-application .ecommerce-card .item-rating i { + margin-left: .25rem; + vertical-align: top; } + +.ecommerce-application .ecommerce-card .item-name { + font-weight: 600; + color: #2c2c2c; } + .ecommerce-application .ecommerce-card .item-name a { + color: #626262; } + .ecommerce-application .ecommerce-card .item-name a:hover { + color: #3a50dc; } + +.ecommerce-application .ecommerce-card .item-description { + font-size: .875rem; } + +.ecommerce-application .ecommerce-card .wishlist, +.ecommerce-application .ecommerce-card .cart { + padding: .8rem 1rem; + cursor: pointer; + font-weight: 600; + font-size: .875rem; + text-transform: uppercase; } + .ecommerce-application .ecommerce-card .wishlist i, + .ecommerce-application .ecommerce-card .cart i { + font-size: 1rem; + margin-right: .25rem; } + +.ecommerce-application .ecommerce-card .wishlist { + background-color: #f6f6f6; + color: #2c2c2c; + user-select: none; } + .ecommerce-application .ecommerce-card .wishlist.added i { + color: #ea5455; } + +.ecommerce-application .ecommerce-card .cart { + background-color: #3a50dc; + color: #fff; } + .ecommerce-application .ecommerce-card .cart .view-in-cart { + color: #fff; } + +.ecommerce-application .grid-view, +.ecommerce-application .list-view { + margin-top: .7rem; } + +.ecommerce-application .grid-view { + display: grid; + grid-template-columns: 1fr 1fr 1fr; + column-gap: 28px; } + .ecommerce-application .grid-view .ecommerce-card { + overflow: hidden; } + .ecommerce-application .grid-view .ecommerce-card .card-content .item-img { + padding-top: .5rem; + min-height: 15.85rem; } + .ecommerce-application .grid-view .ecommerce-card .card-content .item-wrapper { + display: flex; + justify-content: space-between; } + .ecommerce-application .grid-view .ecommerce-card .card-content .item-wrapper .item-price { + position: relative; + top: 5px; } + .ecommerce-application .grid-view .ecommerce-card .card-content .item-wrapper .shipping { + display: none; } + .ecommerce-application .grid-view .ecommerce-card .card-content .item-company { + display: none; } + .ecommerce-application .grid-view .ecommerce-card .card-content .item-options { + display: flex; + flex-wrap: wrap; } + .ecommerce-application .grid-view .ecommerce-card .card-content .item-options .cart, + .ecommerce-application .grid-view .ecommerce-card .card-content .item-options .wishlist { + flex-grow: 1; } + .ecommerce-application .grid-view .ecommerce-card .card-content .item-options .wishlist { + padding: .8rem 2rem; } + .ecommerce-application .grid-view .ecommerce-card .card-content .item-options .item-wrapper .item-rating { + display: none; } + .ecommerce-application .grid-view .ecommerce-card .card-content .item-options .item-wrapper .item-price { + display: none; } + .ecommerce-application .grid-view .ecommerce-card .card-content .item-name { + margin-top: 1rem; } + .ecommerce-application .grid-view .ecommerce-card .card-content .item-name, + .ecommerce-application .grid-view .ecommerce-card .card-content .item-description { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; } + .ecommerce-application .grid-view .ecommerce-card .card-body { + padding: 1rem; + padding-bottom: 0; } + +.ecommerce-application .list-view { + display: grid; + grid-template-columns: 1fr; } + .ecommerce-application .list-view .ecommerce-card { + overflow: hidden; } + .ecommerce-application .list-view .ecommerce-card .card-content { + display: grid; + grid-template-columns: 1fr 2fr 1fr; } + .ecommerce-application .list-view .ecommerce-card .card-content .item-img { + align-self: center; + padding-left: 1rem; + padding-right: 1rem; + display: flex; + justify-content: center; + align-items: center; + height: 100%; } + .ecommerce-application .list-view .ecommerce-card .card-content .card-body { + padding: 1rem; + padding-bottom: .5rem; + border-right: 1px solid #dae1e7; } + .ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-rating { + display: none; } + .ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-price { + display: none; } + .ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-name { + margin-bottom: .25rem; + font-size: .95rem; } + .ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-company { + display: block; + cursor: pointer; + font-size: .875rem; } + .ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-company .company-name { + color: #3a50dc; } + .ecommerce-application .list-view .ecommerce-card .card-content .item-options { + padding: 1rem; } + .ecommerce-application .list-view .ecommerce-card .card-content .item-options .item-wrapper { + position: relative; } + .ecommerce-application .list-view .ecommerce-card .card-content .item-options .item-wrapper .item-rating { + position: absolute; + right: 0; } + .ecommerce-application .list-view .ecommerce-card .card-content .item-options .item-wrapper .item-cost .item-price { + position: relative; + top: 55px; + font-size: 16px; } + .ecommerce-application .list-view .ecommerce-card .card-content .item-options .shipping { + position: relative; + top: 50px; + color: #b8c2cc; } + .ecommerce-application .list-view .ecommerce-card .card-content .item-options .wishlist { + margin-top: 84px; + margin-bottom: 10px; } + .ecommerce-application .list-view .ecommerce-card .card-content .item-options .wishlist, + .ecommerce-application .list-view .ecommerce-card .card-content .item-options .cart { + border-radius: 6px; } + +.ecommerce-application .checkout-items .ecommerce-card .card-content .item-company { + margin-bottom: 0; } + +.ecommerce-application .checkout-items .ecommerce-card .card-content .stock-status-in { + color: #28c76f; + font-weight: 400; + font-size: .875rem; } + +.ecommerce-application .checkout-items .ecommerce-card .card-content .stock-status-out { + color: #ea5455; + font-weight: 400; + font-size: .875rem; } + +.ecommerce-application .checkout-items .ecommerce-card .card-content .item-quantity { + font-weight: 700; + font-size: .875rem; } + .ecommerce-application .checkout-items .ecommerce-card .card-content .item-quantity .quantity-title { + margin-bottom: 0.5rem; } + .ecommerce-application .checkout-items .ecommerce-card .card-content .item-quantity .quantity-counter-wrapper { + margin-left: -10px; } + +.ecommerce-application .checkout-items .ecommerce-card .card-content .delivery-date, +.ecommerce-application .checkout-items .ecommerce-card .card-content .offers { + font-weight: 500; + margin-bottom: 0; + font-size: 1rem; } + +.ecommerce-application .checkout-items .ecommerce-card .card-content .delivery-date { + color: #b8c2cc; + margin-top: 1.8rem; } + +.ecommerce-application .checkout-items .ecommerce-card .card-content .offers { + color: #28c76f; } + +.ecommerce-application .checkout-options .options-title { + color: #b8c2cc; } + +.ecommerce-application .checkout-options .coupons { + display: flex; + justify-content: space-between; } + .ecommerce-application .checkout-options .coupons .coupons-title { + font-weight: 600; } + .ecommerce-application .checkout-options .coupons .coupons-title p { + margin-bottom: .5rem; } + .ecommerce-application .checkout-options .coupons .apply-coupon { + color: #3a50dc; + font-weight: 500; + cursor: pointer; } + .ecommerce-application .checkout-options .coupons .apply-coupon p { + margin-bottom: .5rem; } + +.ecommerce-application .checkout-options .price-details { + font-weight: 600; + margin-bottom: .75rem; } + +.ecommerce-application .checkout-options .detail { + display: flex; + justify-content: space-between; + margin-bottom: .75rem; } + .ecommerce-application .checkout-options .detail .detail-title { + color: #b8c2cc; } + .ecommerce-application .checkout-options .detail .detail-title.detail-total { + color: #626262; + font-weight: 600; } + .ecommerce-application .checkout-options .detail .detail-amt.discount-amt { + color: #28c76f; } + .ecommerce-application .checkout-options .detail .detail-amt.emi-details { + color: #3a50dc; + cursor: pointer; } + .ecommerce-application .checkout-options .detail .detail-amt.total-amt { + font-weight: 600; } + +.ecommerce-application .payment-type .gift-card { + cursor: pointer; } + .ecommerce-application .payment-type .gift-card i { + position: relative; + top: 3px; } + +.ecommerce-application .wizard.checkout-tab-steps .steps ul li.error > a { + color: #3a50dc; } + .ecommerce-application .wizard.checkout-tab-steps .steps ul li.error > a .step { + border-color: #3a50dc; + background-color: #3a50dc; } + +.ecommerce-application .wizard.checkout-tab-steps #checkout-address .form-group .error { + color: #ea5455; } + +@media (max-width: 1200px) { + .ecommerce-application .app-content { + overflow: scroll; } } + +@media (max-width: 991.98px) { + .ecommerce-application .sidebar-left .sidebar { + position: absolute; + top: 14rem; } + .ecommerce-application .sidebar-left .sidebar .card { + border-radius: 0; + padding-bottom: 100vh; + padding-bottom: calc(var(--vh, 1vh) * 100); } + .ecommerce-application .sidebar-left .sidebar .card .card-body { + padding-bottom: 100%; } + .ecommerce-application .sidebar-left .sidebar .sidebar-shop { + transform: translateX(-112%); + transition: all .25s ease; + position: absolute; } + .ecommerce-application .sidebar-left .sidebar .sidebar-shop.show { + transition: all .25s ease; + transform: translateX(0); } + .ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler { + position: relative; + top: 1.2rem; } + .ecommerce-application .grid-view { + grid-template-columns: 1fr 1fr; } } + +@media (max-width: 991.98px) { + .ecommerce-application .ecommerce-header-items .result-toggler .search-results { + display: none; } + .ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler { + top: .5rem; } + .ecommerce-application .ecommerce-header-items .sidebar-shop { + transform: translateX(-123%); + transition: all .2s ease; + z-index: 5; } + .ecommerce-application .ecommerce-header-items .sidebar-shop.show { + position: absolute; + transform: translateX(0); + transition: all .2s ease; } + .ecommerce-application .list-view .ecommerce-card .card-content { + grid-template-columns: 1fr; } + .ecommerce-application .list-view .ecommerce-card .card-content .item-img { + padding-top: 2rem; + padding-bottom: 2rem; } + .ecommerce-application .list-view .ecommerce-card .card-content .card-body { + border: none; } } + +@media (max-width: 576px) { + .ecommerce-application .sidebar-shop { + top: 0; } + .ecommerce-application .grid-view { + grid-template-columns: 1fr; } } + +@media (min-width: 992px) { + .ecommerce-application .ecommerce-header-items .shop-sidebar-toggler { + display: none; } + .ecommerce-application .wishlist-items.grid-view { + grid-template-columns: 1fr 1fr 1fr 1fr; } + .ecommerce-application .product-checkout.list-view { + grid-template-columns: 2fr 1fr; + column-gap: 20px; } } + +@media (max-width: 360px) { + .ecommerce-application .sidebar-shop { + top: 1.5rem; } } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .ecommerce-application .grid-view { + display: block; } + .ecommerce-application .grid-view .ecommerce-card { + float: left; + width: 31%; + margin-left: 1%; + margin-right: 1%; } + .ecommerce-application .list-view { + display: block; } + .ecommerce-application .list-view .ecommerce-card .card-content { + display: flex; } + .ecommerce-application .list-view .ecommerce-card .card-content .item-options .wishlist, + .ecommerce-application .list-view .ecommerce-card .card-content .item-options .cart { + padding: .8rem 3rem; + display: flex; + justify-content: center; } + .ecommerce-application #ecommerce-pagination .row { + clear: both; } } diff --git a/assets/css/pages/app-ecommerce-shop.min.css b/assets/css/pages/app-ecommerce-shop.min.css new file mode 100644 index 0000000..7582212 --- /dev/null +++ b/assets/css/pages/app-ecommerce-shop.min.css @@ -0,0 +1 @@ +.ecommerce-application .grid-view .ecommerce-card,.ecommerce-application .list-view .ecommerce-card{overflow:hidden}.ecommerce-application .content-body{position:relative}.ecommerce-application .shop-content-overlay{position:absolute;top:4.2rem;height:100%;width:100%;background:rgba(0,0,0,.2);z-index:0;opacity:0}.ecommerce-application .shop-content-overlay.show{opacity:1;z-index:1}.ecommerce-application .sidebar-shop .sidebar-close-icon{position:absolute;top:.25rem;right:.25rem;font-size:1.25rem;z-index:5;cursor:pointer}.ecommerce-application .sidebar-shop .filter-heading{font-weight:700;color:#626262;position:relative;top:-7px}.ecommerce-application .sidebar-shop .vs-radio-con input:checked~span{color:#7367F0}.ecommerce-application .sidebar-shop .filter-title{font-weight:700}.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal,.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-base{height:.285rem}.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle{right:-1.071rem!important;top:-.428rem;width:16px;height:16px;border-width:.142rem;line-height:1.15;cursor:pointer}.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle .noUi-tooltip{opacity:0;font-size:.75rem;background-color:#7367F0;color:#FFF;border-radius:.357rem;border:none;padding:.142rem .357rem;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle .noUi-tooltip:before{content:'$ '}.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle:hover{-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2)}.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle:active{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);border-width:.5rem;-webkit-transition:.25s ease;transition:.25s ease}.ecommerce-application .sidebar-shop .range-slider.noUi-horizontal .noUi-handle:active .noUi-tooltip{opacity:1}.ecommerce-application .sidebar-shop .ratings-list .ratings-list-item{font-size:1.5rem;cursor:pointer}.ecommerce-application .sidebar-shop .ratings-list~.stars-received{margin-top:.35rem}.ecommerce-application .sidebar-shop{margin-top:2rem;width:260px;z-index:4}.ecommerce-application .ecommerce-header-items{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.ecommerce-application .ecommerce-header-items .view-options .view-btn-option{display:inline-block}.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn{margin-right:10px;background-color:#FFF;padding:.5rem;color:#626262;box-shadow:0 2px 8px 0 rgba(0,0,0,.14)!important}.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn i{font-size:1.7rem}.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn.active,.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn.active:active,.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn.active:hover{color:#7367F0!important}.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn:active,.ecommerce-application .ecommerce-header-items .view-options .view-btn-option .btn.view-btn:hover{color:#626262}.ecommerce-application .ecommerce-header-items .view-options .select2{margin-right:10px;width:auto!important}.ecommerce-application .ecommerce-header-items .view-options .select2 .select2-selection--single{border:none!important;box-shadow:0 2px 8px 0 rgba(0,0,0,.14);border-radius:5px}.ecommerce-application .ecommerce-header-items .result-toggler{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler{font-size:1.7rem;padding-left:0;margin-left:-6px}.ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler:active,.ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler:focus{outline:0}.ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler .navbar-toggler-icon i{color:#626262;vertical-align:middle}.ecommerce-application .ecommerce-header-items .result-toggler .search-results{font-weight:700;color:#626262;display:inline-block}.ecommerce-application .search-product{height:48px;border:none;box-shadow:0 2px 8px 0 rgba(0,0,0,.14);font-size:1.2rem;padding-left:1rem}.ecommerce-application .search-product~.form-control-position{top:10px;right:10px}.ecommerce-application .search-product~.form-control-position i{font-size:1.5rem}.ecommerce-application .search-product::-webkit-input-placeholder{font-size:.95rem}.ecommerce-application .search-product::-moz-placeholder{font-size:.95rem}.ecommerce-application .search-product:-ms-input-placeholder{font-size:.95rem}.ecommerce-application .search-product::-ms-input-placeholder{font-size:.95rem}.ecommerce-application .search-product::placeholder{font-size:.95rem}.ecommerce-application .ecommerce-card:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px);box-shadow:0 4px 25px 0 rgba(0,0,0,.25)}.ecommerce-application .ecommerce-card .item-price{font-weight:700}.ecommerce-application .ecommerce-card .item-rating i{margin-left:.25rem;vertical-align:top}.ecommerce-application .ecommerce-card .item-name{font-weight:600;color:#2C2C2C}.ecommerce-application .ecommerce-card .item-name a{color:#626262}.ecommerce-application .ecommerce-card .item-name a:hover{color:#7367F0}.ecommerce-application .ecommerce-card .item-description{font-size:.875rem}.ecommerce-application .ecommerce-card .cart,.ecommerce-application .ecommerce-card .wishlist{padding:.8rem 1rem;cursor:pointer;font-weight:600;font-size:.875rem;text-transform:uppercase}.ecommerce-application .ecommerce-card .cart i,.ecommerce-application .ecommerce-card .wishlist i{font-size:1rem;margin-right:.25rem}.ecommerce-application .ecommerce-card .wishlist{background-color:#F6F6F6;color:#2C2C2C;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ecommerce-application .ecommerce-card .wishlist.added i{color:#EA5455}.ecommerce-application .ecommerce-card .cart{background-color:#7367F0;color:#FFF}.ecommerce-application .ecommerce-card .cart .view-in-cart{color:#FFF}.ecommerce-application .grid-view,.ecommerce-application .list-view{margin-top:.7rem}.ecommerce-application .grid-view{display:grid;grid-template-columns:1fr 1fr 1fr;-webkit-column-gap:28px;-moz-column-gap:28px;column-gap:28px}.ecommerce-application .grid-view .ecommerce-card .card-content .item-img{padding-top:.5rem;min-height:15.85rem}.ecommerce-application .grid-view .ecommerce-card .card-content .item-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.ecommerce-application .grid-view .ecommerce-card .card-content .item-wrapper .item-price{position:relative;top:5px}.ecommerce-application .grid-view .ecommerce-card .card-content .item-company,.ecommerce-application .grid-view .ecommerce-card .card-content .item-wrapper .shipping{display:none}.ecommerce-application .grid-view .ecommerce-card .card-content .item-options{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.ecommerce-application .grid-view .ecommerce-card .card-content .item-options .cart,.ecommerce-application .grid-view .ecommerce-card .card-content .item-options .wishlist{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.ecommerce-application .grid-view .ecommerce-card .card-content .item-options .wishlist{padding:.8rem 2rem}.ecommerce-application .grid-view .ecommerce-card .card-content .item-options .item-wrapper .item-price,.ecommerce-application .grid-view .ecommerce-card .card-content .item-options .item-wrapper .item-rating{display:none}.ecommerce-application .grid-view .ecommerce-card .card-content .item-name{margin-top:1rem}.ecommerce-application .grid-view .ecommerce-card .card-content .item-description,.ecommerce-application .grid-view .ecommerce-card .card-content .item-name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ecommerce-application .grid-view .ecommerce-card .card-body{padding:1rem 1rem 0}.ecommerce-application .list-view{display:grid;grid-template-columns:1fr}.ecommerce-application .list-view .ecommerce-card .card-content{display:grid;grid-template-columns:1fr 2fr 1fr}.ecommerce-application .list-view .ecommerce-card .card-content .item-img{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;padding-left:1rem;padding-right:1rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:100%}.ecommerce-application .list-view .ecommerce-card .card-content .card-body{padding:1rem 1rem .5rem;border-right:1px solid #DAE1E7}.ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-price,.ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-rating{display:none}.ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-name{margin-bottom:.25rem;font-size:.95rem}.ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-company{display:block;cursor:pointer;font-size:.875rem}.ecommerce-application .list-view .ecommerce-card .card-content .card-body .item-company .company-name{color:#7367F0}.ecommerce-application .list-view .ecommerce-card .card-content .item-options{padding:1rem}.ecommerce-application .list-view .ecommerce-card .card-content .item-options .item-wrapper{position:relative}.ecommerce-application .list-view .ecommerce-card .card-content .item-options .item-wrapper .item-rating{position:absolute;right:0}.ecommerce-application .list-view .ecommerce-card .card-content .item-options .item-wrapper .item-cost .item-price{position:relative;top:55px;font-size:16px}.ecommerce-application .list-view .ecommerce-card .card-content .item-options .shipping{position:relative;top:50px;color:#B8C2CC}.ecommerce-application .list-view .ecommerce-card .card-content .item-options .wishlist{margin-top:84px;margin-bottom:10px}.ecommerce-application .list-view .ecommerce-card .card-content .item-options .cart,.ecommerce-application .list-view .ecommerce-card .card-content .item-options .wishlist{border-radius:6px}.ecommerce-application .checkout-items .ecommerce-card .card-content .item-company{margin-bottom:0}.ecommerce-application .checkout-items .ecommerce-card .card-content .stock-status-in{color:#28C76F;font-weight:400;font-size:.875rem}.ecommerce-application .checkout-items .ecommerce-card .card-content .stock-status-out{color:#EA5455;font-weight:400;font-size:.875rem}.ecommerce-application .checkout-items .ecommerce-card .card-content .item-quantity{font-weight:700;font-size:.875rem}.ecommerce-application .checkout-items .ecommerce-card .card-content .item-quantity .quantity-title{margin-bottom:.5rem}.ecommerce-application .checkout-items .ecommerce-card .card-content .item-quantity .quantity-counter-wrapper{margin-left:-10px}.ecommerce-application .checkout-items .ecommerce-card .card-content .delivery-date,.ecommerce-application .checkout-items .ecommerce-card .card-content .offers{font-weight:500;margin-bottom:0;font-size:1rem}.ecommerce-application .checkout-options .coupons .apply-coupon p,.ecommerce-application .checkout-options .coupons .coupons-title p{margin-bottom:.5rem}.ecommerce-application .checkout-items .ecommerce-card .card-content .delivery-date{color:#B8C2CC;margin-top:1.8rem}.ecommerce-application .checkout-items .ecommerce-card .card-content .offers{color:#28C76F}.ecommerce-application .checkout-options .options-title{color:#B8C2CC}.ecommerce-application .checkout-options .coupons{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.ecommerce-application .checkout-options .coupons .coupons-title{font-weight:600}.ecommerce-application .checkout-options .coupons .apply-coupon{color:#7367F0;font-weight:500;cursor:pointer}.ecommerce-application .checkout-options .price-details{font-weight:600;margin-bottom:.75rem}.ecommerce-application .checkout-options .detail{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:.75rem}.ecommerce-application .checkout-options .detail .detail-title{color:#B8C2CC}.ecommerce-application .checkout-options .detail .detail-title.detail-total{color:#626262;font-weight:600}.ecommerce-application .checkout-options .detail .detail-amt.discount-amt{color:#28C76F}.ecommerce-application .checkout-options .detail .detail-amt.emi-details{color:#7367F0;cursor:pointer}.ecommerce-application .checkout-options .detail .detail-amt.total-amt{font-weight:600}.ecommerce-application .payment-type .gift-card{cursor:pointer}.ecommerce-application .payment-type .gift-card i{position:relative;top:3px}.ecommerce-application .wizard.checkout-tab-steps .steps ul li.error>a{color:#7367F0}.ecommerce-application .wizard.checkout-tab-steps .steps ul li.error>a .step{border-color:#7367F0;background-color:#7367F0}.ecommerce-application .wizard.checkout-tab-steps #checkout-address .form-group .error{color:#EA5455}@media (max-width:1200px){.ecommerce-application .app-content{overflow:scroll}}@media (max-width:991.98px){.ecommerce-application .sidebar-left .sidebar{position:absolute;top:14rem}.ecommerce-application .sidebar-left .sidebar .card{border-radius:0;padding-bottom:100vh;padding-bottom:calc(var(--vh,1vh) * 100)}.ecommerce-application .sidebar-left .sidebar .card .card-body{padding-bottom:100%}.ecommerce-application .sidebar-left .sidebar .sidebar-shop{-webkit-transform:translateX(-112%);-ms-transform:translateX(-112%);transform:translateX(-112%);-webkit-transition:all .25s ease;transition:all .25s ease;position:absolute}.ecommerce-application .sidebar-left .sidebar .sidebar-shop.show{-webkit-transition:all .25s ease;transition:all .25s ease;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}.ecommerce-application .ecommerce-header-items .result-toggler .shop-sidebar-toggler{position:relative;top:.5rem}.ecommerce-application .grid-view{grid-template-columns:1fr 1fr}.ecommerce-application .ecommerce-header-items .result-toggler .search-results{display:none}.ecommerce-application .ecommerce-header-items .sidebar-shop{-webkit-transform:translateX(-123%);-ms-transform:translateX(-123%);transform:translateX(-123%);-webkit-transition:all .2s ease;transition:all .2s ease;z-index:5}.ecommerce-application .ecommerce-header-items .sidebar-shop.show{position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);-webkit-transition:all .2s ease;transition:all .2s ease}.ecommerce-application .list-view .ecommerce-card .card-content{grid-template-columns:1fr}.ecommerce-application .list-view .ecommerce-card .card-content .item-img{padding-top:2rem;padding-bottom:2rem}.ecommerce-application .list-view .ecommerce-card .card-content .card-body{border:none}}@media (max-width:576px){.ecommerce-application .sidebar-shop{top:0}.ecommerce-application .grid-view{grid-template-columns:1fr}}@media (min-width:992px){.ecommerce-application .ecommerce-header-items .shop-sidebar-toggler{display:none}.ecommerce-application .wishlist-items.grid-view{grid-template-columns:1fr 1fr 1fr 1fr}.ecommerce-application .product-checkout.list-view{grid-template-columns:2fr 1fr;-webkit-column-gap:20px;-moz-column-gap:20px;column-gap:20px}}@media (max-width:360px){.ecommerce-application .sidebar-shop{top:1.5rem}}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.ecommerce-application .grid-view,.ecommerce-application .list-view{display:block}.ecommerce-application .grid-view .ecommerce-card{float:left;width:31%;margin-left:1%;margin-right:1%}.ecommerce-application .list-view .ecommerce-card .card-content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.ecommerce-application .list-view .ecommerce-card .card-content .item-options .cart,.ecommerce-application .list-view .ecommerce-card .card-content .item-options .wishlist{padding:.8rem 3rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.ecommerce-application #ecommerce-pagination .row{clear:both}} \ No newline at end of file diff --git a/assets/css/pages/app-email.css b/assets/css/pages/app-email.css new file mode 100644 index 0000000..d06c36d --- /dev/null +++ b/assets/css/pages/app-email.css @@ -0,0 +1,10307 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.email-application .content-area-wrapper { + border: 1px solid #dae1e7; + border-radius: 0.25rem; } + .email-application .content-area-wrapper .sidebar .email-app-sidebar { + width: 260px; + height: calc(100vh - 13rem); + height: calc(var(--vh, 1vh) * 100 - 13rem); + background-color: #fff; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + transition: all .3s ease; } + .email-application .content-area-wrapper .sidebar .email-app-sidebar .sidebar-close-icon { + position: absolute; + right: .25rem; + top: .25rem; + cursor: pointer; + font-size: 1.25rem; + z-index: 5; + visibility: hidden; } + .email-application .content-area-wrapper .sidebar .email-app-sidebar .email-app-menu { + width: 100%; + padding-bottom: .5rem; + box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05); + z-index: 3; } + .email-application .content-area-wrapper .sidebar .email-app-sidebar .email-app-menu .compose-btn { + padding: 1px 1.5rem; + margin-bottom: 0.25rem; } + .email-application .content-area-wrapper .sidebar .email-app-sidebar .email-app-menu .badge { + padding: 0.5rem 0.68rem; } + .email-application .content-area-wrapper .sidebar .email-app-sidebar .email-app-menu .sidebar-menu-list { + padding: 0 1.5rem; + position: relative; + height: calc(100% - 6.4rem); } + .email-application .content-area-wrapper .sidebar .email-app-sidebar .email-app-menu .list-group .list-group-item i { + top: 3px; } + .email-application .content-area-wrapper .sidebar .email-app-sidebar .email-app-menu hr { + margin-left: -1.5rem; + margin-right: -1.5rem; } + .email-application .content-area-wrapper .sidebar .list-group .list-group-item { + padding-left: 0; + padding-right: 0; } + .email-application .content-area-wrapper .sidebar .list-group .list-group-item:hover, .email-application .content-area-wrapper .sidebar .list-group .list-group-item:focus { + background-color: transparent; + color: #626262; } + .email-application .content-area-wrapper .sidebar .list-group .list-group-item.active { + background: transparent; + color: #3a50dc; } + .email-application .content-area-wrapper .content-right { + width: calc(100% - 260px); } + .email-application .content-area-wrapper .content-right .content-wrapper { + padding: 0; } + .email-application .content-area-wrapper .content-right .email-app-list-wrapper { + border-left: 1px solid #dae1e7; } + .email-application .content-area-wrapper .content-right .app-fixed-search { + padding: .35rem .1rem; + border-bottom: 1px solid #dae1e7; + background-color: #fff; + border-top-right-radius: 0.5rem; } + .email-application .content-area-wrapper .content-right .app-fixed-search .form-control-position { + font-size: calc(1rem * 1.1); } + .email-application .content-area-wrapper .content-right .app-fixed-search input { + border: 0; + background-color: transparent; } + .email-application .content-area-wrapper .content-right .app-fixed-search input:focus { + border-color: transparent; + box-shadow: none; } + .email-application .content-area-wrapper .content-right .action-icon { + cursor: pointer; } + +.email-application .app-content .content-area-wrapper { + position: relative; } + .email-application .app-content .content-area-wrapper .sidebar-toggle { + cursor: pointer; + margin: 0.5rem 0.99rem; + float: left; + line-height: 1; } + .email-application .app-content .content-area-wrapper .sidebar-toggle i { + font-size: 1.75rem; } + .email-application .app-content .content-area-wrapper .go-back { + cursor: pointer; } + .email-application .app-content .content-area-wrapper .app-content-overlay { + top: 0; + left: 0; + right: 0; + bottom: 0; + position: absolute; + display: block; + z-index: 2; + visibility: hidden; + opacity: 0; + transition: all .3s ease; } + .email-application .app-content .content-area-wrapper .app-content-overlay.show { + visibility: visible; + transition: all .3s ease; + opacity: 1; + background-color: rgba(0, 0, 0, 0.2); + border-radius: 0.5rem; } + .email-application .app-content .content-area-wrapper .email-user-list { + position: relative; + height: calc(100vh - 20.3rem); + height: calc(var(--vh, 1vh) * 100 - 20.3rem); } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper { + padding: 0; + margin: 0; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1) { + animation-delay: 0.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2) { + animation-delay: 0.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3) { + animation-delay: 0.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4) { + animation-delay: 0.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(5) { + animation-delay: 0.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(6) { + animation-delay: 0.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(7) { + animation-delay: 0.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(8) { + animation-delay: 0.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(9) { + animation-delay: 0.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(10) { + animation-delay: 1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(11) { + animation-delay: 1.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(12) { + animation-delay: 1.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(13) { + animation-delay: 1.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(14) { + animation-delay: 1.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(15) { + animation-delay: 1.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(16) { + animation-delay: 1.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(17) { + animation-delay: 1.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(18) { + animation-delay: 1.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(19) { + animation-delay: 1.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(20) { + animation-delay: 2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(21) { + animation-delay: 2.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(22) { + animation-delay: 2.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(23) { + animation-delay: 2.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(24) { + animation-delay: 2.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(25) { + animation-delay: 2.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(26) { + animation-delay: 2.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(27) { + animation-delay: 2.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(28) { + animation-delay: 2.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(29) { + animation-delay: 2.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(30) { + animation-delay: 3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(31) { + animation-delay: 3.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(32) { + animation-delay: 3.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(33) { + animation-delay: 3.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(34) { + animation-delay: 3.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(35) { + animation-delay: 3.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(36) { + animation-delay: 3.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(37) { + animation-delay: 3.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(38) { + animation-delay: 3.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(39) { + animation-delay: 3.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(40) { + animation-delay: 4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(41) { + animation-delay: 4.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(42) { + animation-delay: 4.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(43) { + animation-delay: 4.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(44) { + animation-delay: 4.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(45) { + animation-delay: 4.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(46) { + animation-delay: 4.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(47) { + animation-delay: 4.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(48) { + animation-delay: 4.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(49) { + animation-delay: 4.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(50) { + animation-delay: 5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(51) { + animation-delay: 5.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(52) { + animation-delay: 5.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(53) { + animation-delay: 5.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(54) { + animation-delay: 5.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(55) { + animation-delay: 5.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(56) { + animation-delay: 5.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(57) { + animation-delay: 5.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(58) { + animation-delay: 5.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(59) { + animation-delay: 5.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(60) { + animation-delay: 6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(61) { + animation-delay: 6.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(62) { + animation-delay: 6.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(63) { + animation-delay: 6.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(64) { + animation-delay: 6.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(65) { + animation-delay: 6.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(66) { + animation-delay: 6.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(67) { + animation-delay: 6.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(68) { + animation-delay: 6.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(69) { + animation-delay: 6.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(70) { + animation-delay: 7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(71) { + animation-delay: 7.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(72) { + animation-delay: 7.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(73) { + animation-delay: 7.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(74) { + animation-delay: 7.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(75) { + animation-delay: 7.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(76) { + animation-delay: 7.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(77) { + animation-delay: 7.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(78) { + animation-delay: 7.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(79) { + animation-delay: 7.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(80) { + animation-delay: 8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(81) { + animation-delay: 8.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(82) { + animation-delay: 8.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(83) { + animation-delay: 8.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(84) { + animation-delay: 8.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(85) { + animation-delay: 8.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(86) { + animation-delay: 8.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(87) { + animation-delay: 8.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(88) { + animation-delay: 8.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(89) { + animation-delay: 8.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(90) { + animation-delay: 9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(91) { + animation-delay: 9.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(92) { + animation-delay: 9.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(93) { + animation-delay: 9.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(94) { + animation-delay: 9.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(95) { + animation-delay: 9.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(96) { + animation-delay: 9.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(97) { + animation-delay: 9.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(98) { + animation-delay: 9.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(99) { + animation-delay: 9.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(100) { + animation-delay: 10s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(101) { + animation-delay: 10.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(102) { + animation-delay: 10.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(103) { + animation-delay: 10.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(104) { + animation-delay: 10.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(105) { + animation-delay: 10.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(106) { + animation-delay: 10.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(107) { + animation-delay: 10.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(108) { + animation-delay: 10.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(109) { + animation-delay: 10.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(110) { + animation-delay: 11s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(111) { + animation-delay: 11.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(112) { + animation-delay: 11.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(113) { + animation-delay: 11.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(114) { + animation-delay: 11.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(115) { + animation-delay: 11.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(116) { + animation-delay: 11.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(117) { + animation-delay: 11.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(118) { + animation-delay: 11.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(119) { + animation-delay: 11.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(120) { + animation-delay: 12s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(121) { + animation-delay: 12.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(122) { + animation-delay: 12.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(123) { + animation-delay: 12.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(124) { + animation-delay: 12.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(125) { + animation-delay: 12.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(126) { + animation-delay: 12.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(127) { + animation-delay: 12.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(128) { + animation-delay: 12.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(129) { + animation-delay: 12.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(130) { + animation-delay: 13s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(131) { + animation-delay: 13.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(132) { + animation-delay: 13.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(133) { + animation-delay: 13.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(134) { + animation-delay: 13.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(135) { + animation-delay: 13.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(136) { + animation-delay: 13.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(137) { + animation-delay: 13.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(138) { + animation-delay: 13.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(139) { + animation-delay: 13.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(140) { + animation-delay: 14s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(141) { + animation-delay: 14.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(142) { + animation-delay: 14.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(143) { + animation-delay: 14.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(144) { + animation-delay: 14.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(145) { + animation-delay: 14.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(146) { + animation-delay: 14.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(147) { + animation-delay: 14.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(148) { + animation-delay: 14.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(149) { + animation-delay: 14.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(150) { + animation-delay: 15s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(151) { + animation-delay: 15.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(152) { + animation-delay: 15.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(153) { + animation-delay: 15.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(154) { + animation-delay: 15.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(155) { + animation-delay: 15.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(156) { + animation-delay: 15.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(157) { + animation-delay: 15.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(158) { + animation-delay: 15.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(159) { + animation-delay: 15.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(160) { + animation-delay: 16s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(161) { + animation-delay: 16.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(162) { + animation-delay: 16.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(163) { + animation-delay: 16.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(164) { + animation-delay: 16.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(165) { + animation-delay: 16.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(166) { + animation-delay: 16.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(167) { + animation-delay: 16.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(168) { + animation-delay: 16.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(169) { + animation-delay: 16.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(170) { + animation-delay: 17s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(171) { + animation-delay: 17.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(172) { + animation-delay: 17.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(173) { + animation-delay: 17.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(174) { + animation-delay: 17.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(175) { + animation-delay: 17.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(176) { + animation-delay: 17.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(177) { + animation-delay: 17.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(178) { + animation-delay: 17.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(179) { + animation-delay: 17.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(180) { + animation-delay: 18s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(181) { + animation-delay: 18.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(182) { + animation-delay: 18.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(183) { + animation-delay: 18.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(184) { + animation-delay: 18.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(185) { + animation-delay: 18.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(186) { + animation-delay: 18.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(187) { + animation-delay: 18.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(188) { + animation-delay: 18.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(189) { + animation-delay: 18.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(190) { + animation-delay: 19s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(191) { + animation-delay: 19.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(192) { + animation-delay: 19.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(193) { + animation-delay: 19.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(194) { + animation-delay: 19.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(195) { + animation-delay: 19.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(196) { + animation-delay: 19.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(197) { + animation-delay: 19.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(198) { + animation-delay: 19.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(199) { + animation-delay: 19.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(200) { + animation-delay: 20s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(201) { + animation-delay: 20.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(202) { + animation-delay: 20.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(203) { + animation-delay: 20.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(204) { + animation-delay: 20.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(205) { + animation-delay: 20.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(206) { + animation-delay: 20.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(207) { + animation-delay: 20.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(208) { + animation-delay: 20.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(209) { + animation-delay: 20.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(210) { + animation-delay: 21s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(211) { + animation-delay: 21.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(212) { + animation-delay: 21.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(213) { + animation-delay: 21.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(214) { + animation-delay: 21.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(215) { + animation-delay: 21.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(216) { + animation-delay: 21.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(217) { + animation-delay: 21.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(218) { + animation-delay: 21.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(219) { + animation-delay: 21.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(220) { + animation-delay: 22s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(221) { + animation-delay: 22.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(222) { + animation-delay: 22.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(223) { + animation-delay: 22.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(224) { + animation-delay: 22.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(225) { + animation-delay: 22.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(226) { + animation-delay: 22.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(227) { + animation-delay: 22.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(228) { + animation-delay: 22.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(229) { + animation-delay: 22.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(230) { + animation-delay: 23s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(231) { + animation-delay: 23.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(232) { + animation-delay: 23.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(233) { + animation-delay: 23.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(234) { + animation-delay: 23.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(235) { + animation-delay: 23.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(236) { + animation-delay: 23.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(237) { + animation-delay: 23.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(238) { + animation-delay: 23.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(239) { + animation-delay: 23.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(240) { + animation-delay: 24s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(241) { + animation-delay: 24.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(242) { + animation-delay: 24.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(243) { + animation-delay: 24.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(244) { + animation-delay: 24.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(245) { + animation-delay: 24.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(246) { + animation-delay: 24.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(247) { + animation-delay: 24.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(248) { + animation-delay: 24.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(249) { + animation-delay: 24.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(250) { + animation-delay: 25s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(251) { + animation-delay: 25.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(252) { + animation-delay: 25.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(253) { + animation-delay: 25.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(254) { + animation-delay: 25.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(255) { + animation-delay: 25.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(256) { + animation-delay: 25.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(257) { + animation-delay: 25.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(258) { + animation-delay: 25.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(259) { + animation-delay: 25.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(260) { + animation-delay: 26s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(261) { + animation-delay: 26.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(262) { + animation-delay: 26.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(263) { + animation-delay: 26.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(264) { + animation-delay: 26.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(265) { + animation-delay: 26.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(266) { + animation-delay: 26.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(267) { + animation-delay: 26.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(268) { + animation-delay: 26.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(269) { + animation-delay: 26.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(270) { + animation-delay: 27s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(271) { + animation-delay: 27.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(272) { + animation-delay: 27.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(273) { + animation-delay: 27.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(274) { + animation-delay: 27.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(275) { + animation-delay: 27.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(276) { + animation-delay: 27.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(277) { + animation-delay: 27.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(278) { + animation-delay: 27.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(279) { + animation-delay: 27.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(280) { + animation-delay: 28s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(281) { + animation-delay: 28.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(282) { + animation-delay: 28.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(283) { + animation-delay: 28.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(284) { + animation-delay: 28.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(285) { + animation-delay: 28.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(286) { + animation-delay: 28.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(287) { + animation-delay: 28.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(288) { + animation-delay: 28.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(289) { + animation-delay: 28.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(290) { + animation-delay: 29s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(291) { + animation-delay: 29.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(292) { + animation-delay: 29.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(293) { + animation-delay: 29.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(294) { + animation-delay: 29.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(295) { + animation-delay: 29.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(296) { + animation-delay: 29.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(297) { + animation-delay: 29.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(298) { + animation-delay: 29.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(299) { + animation-delay: 29.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(300) { + animation-delay: 30s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(301) { + animation-delay: 30.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(302) { + animation-delay: 30.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(303) { + animation-delay: 30.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(304) { + animation-delay: 30.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(305) { + animation-delay: 30.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(306) { + animation-delay: 30.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(307) { + animation-delay: 30.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(308) { + animation-delay: 30.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(309) { + animation-delay: 30.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(310) { + animation-delay: 31s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(311) { + animation-delay: 31.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(312) { + animation-delay: 31.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(313) { + animation-delay: 31.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(314) { + animation-delay: 31.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(315) { + animation-delay: 31.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(316) { + animation-delay: 31.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(317) { + animation-delay: 31.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(318) { + animation-delay: 31.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(319) { + animation-delay: 31.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(320) { + animation-delay: 32s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(321) { + animation-delay: 32.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(322) { + animation-delay: 32.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(323) { + animation-delay: 32.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(324) { + animation-delay: 32.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(325) { + animation-delay: 32.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(326) { + animation-delay: 32.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(327) { + animation-delay: 32.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(328) { + animation-delay: 32.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(329) { + animation-delay: 32.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(330) { + animation-delay: 33s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(331) { + animation-delay: 33.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(332) { + animation-delay: 33.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(333) { + animation-delay: 33.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(334) { + animation-delay: 33.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(335) { + animation-delay: 33.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(336) { + animation-delay: 33.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(337) { + animation-delay: 33.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(338) { + animation-delay: 33.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(339) { + animation-delay: 33.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(340) { + animation-delay: 34s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(341) { + animation-delay: 34.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(342) { + animation-delay: 34.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(343) { + animation-delay: 34.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(344) { + animation-delay: 34.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(345) { + animation-delay: 34.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(346) { + animation-delay: 34.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(347) { + animation-delay: 34.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(348) { + animation-delay: 34.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(349) { + animation-delay: 34.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(350) { + animation-delay: 35s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(351) { + animation-delay: 35.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(352) { + animation-delay: 35.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(353) { + animation-delay: 35.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(354) { + animation-delay: 35.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(355) { + animation-delay: 35.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(356) { + animation-delay: 35.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(357) { + animation-delay: 35.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(358) { + animation-delay: 35.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(359) { + animation-delay: 35.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(360) { + animation-delay: 36s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(361) { + animation-delay: 36.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(362) { + animation-delay: 36.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(363) { + animation-delay: 36.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(364) { + animation-delay: 36.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(365) { + animation-delay: 36.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(366) { + animation-delay: 36.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(367) { + animation-delay: 36.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(368) { + animation-delay: 36.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(369) { + animation-delay: 36.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(370) { + animation-delay: 37s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(371) { + animation-delay: 37.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(372) { + animation-delay: 37.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(373) { + animation-delay: 37.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(374) { + animation-delay: 37.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(375) { + animation-delay: 37.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(376) { + animation-delay: 37.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(377) { + animation-delay: 37.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(378) { + animation-delay: 37.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(379) { + animation-delay: 37.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(380) { + animation-delay: 38s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(381) { + animation-delay: 38.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(382) { + animation-delay: 38.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(383) { + animation-delay: 38.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(384) { + animation-delay: 38.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(385) { + animation-delay: 38.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(386) { + animation-delay: 38.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(387) { + animation-delay: 38.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(388) { + animation-delay: 38.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(389) { + animation-delay: 38.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(390) { + animation-delay: 39s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(391) { + animation-delay: 39.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(392) { + animation-delay: 39.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(393) { + animation-delay: 39.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(394) { + animation-delay: 39.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(395) { + animation-delay: 39.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(396) { + animation-delay: 39.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(397) { + animation-delay: 39.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(398) { + animation-delay: 39.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(399) { + animation-delay: 39.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(400) { + animation-delay: 40s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(401) { + animation-delay: 40.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(402) { + animation-delay: 40.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(403) { + animation-delay: 40.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(404) { + animation-delay: 40.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(405) { + animation-delay: 40.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(406) { + animation-delay: 40.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(407) { + animation-delay: 40.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(408) { + animation-delay: 40.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(409) { + animation-delay: 40.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(410) { + animation-delay: 41s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(411) { + animation-delay: 41.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(412) { + animation-delay: 41.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(413) { + animation-delay: 41.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(414) { + animation-delay: 41.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(415) { + animation-delay: 41.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(416) { + animation-delay: 41.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(417) { + animation-delay: 41.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(418) { + animation-delay: 41.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(419) { + animation-delay: 41.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(420) { + animation-delay: 42s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(421) { + animation-delay: 42.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(422) { + animation-delay: 42.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(423) { + animation-delay: 42.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(424) { + animation-delay: 42.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(425) { + animation-delay: 42.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(426) { + animation-delay: 42.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(427) { + animation-delay: 42.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(428) { + animation-delay: 42.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(429) { + animation-delay: 42.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(430) { + animation-delay: 43s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(431) { + animation-delay: 43.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(432) { + animation-delay: 43.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(433) { + animation-delay: 43.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(434) { + animation-delay: 43.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(435) { + animation-delay: 43.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(436) { + animation-delay: 43.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(437) { + animation-delay: 43.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(438) { + animation-delay: 43.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(439) { + animation-delay: 43.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(440) { + animation-delay: 44s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(441) { + animation-delay: 44.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(442) { + animation-delay: 44.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(443) { + animation-delay: 44.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(444) { + animation-delay: 44.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(445) { + animation-delay: 44.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(446) { + animation-delay: 44.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(447) { + animation-delay: 44.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(448) { + animation-delay: 44.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(449) { + animation-delay: 44.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(450) { + animation-delay: 45s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(451) { + animation-delay: 45.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(452) { + animation-delay: 45.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(453) { + animation-delay: 45.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(454) { + animation-delay: 45.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(455) { + animation-delay: 45.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(456) { + animation-delay: 45.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(457) { + animation-delay: 45.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(458) { + animation-delay: 45.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(459) { + animation-delay: 45.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(460) { + animation-delay: 46s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(461) { + animation-delay: 46.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(462) { + animation-delay: 46.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(463) { + animation-delay: 46.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(464) { + animation-delay: 46.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(465) { + animation-delay: 46.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(466) { + animation-delay: 46.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(467) { + animation-delay: 46.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(468) { + animation-delay: 46.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(469) { + animation-delay: 46.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(470) { + animation-delay: 47s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(471) { + animation-delay: 47.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(472) { + animation-delay: 47.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(473) { + animation-delay: 47.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(474) { + animation-delay: 47.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(475) { + animation-delay: 47.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(476) { + animation-delay: 47.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(477) { + animation-delay: 47.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(478) { + animation-delay: 47.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(479) { + animation-delay: 47.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(480) { + animation-delay: 48s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(481) { + animation-delay: 48.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(482) { + animation-delay: 48.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(483) { + animation-delay: 48.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(484) { + animation-delay: 48.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(485) { + animation-delay: 48.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(486) { + animation-delay: 48.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(487) { + animation-delay: 48.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(488) { + animation-delay: 48.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(489) { + animation-delay: 48.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(490) { + animation-delay: 49s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(491) { + animation-delay: 49.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(492) { + animation-delay: 49.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(493) { + animation-delay: 49.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(494) { + animation-delay: 49.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(495) { + animation-delay: 49.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(496) { + animation-delay: 49.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(497) { + animation-delay: 49.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(498) { + animation-delay: 49.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(499) { + animation-delay: 49.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(500) { + animation-delay: 50s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(501) { + animation-delay: 50.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(502) { + animation-delay: 50.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(503) { + animation-delay: 50.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(504) { + animation-delay: 50.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(505) { + animation-delay: 50.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(506) { + animation-delay: 50.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(507) { + animation-delay: 50.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(508) { + animation-delay: 50.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(509) { + animation-delay: 50.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(510) { + animation-delay: 51s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(511) { + animation-delay: 51.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(512) { + animation-delay: 51.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(513) { + animation-delay: 51.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(514) { + animation-delay: 51.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(515) { + animation-delay: 51.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(516) { + animation-delay: 51.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(517) { + animation-delay: 51.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(518) { + animation-delay: 51.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(519) { + animation-delay: 51.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(520) { + animation-delay: 52s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(521) { + animation-delay: 52.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(522) { + animation-delay: 52.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(523) { + animation-delay: 52.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(524) { + animation-delay: 52.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(525) { + animation-delay: 52.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(526) { + animation-delay: 52.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(527) { + animation-delay: 52.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(528) { + animation-delay: 52.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(529) { + animation-delay: 52.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(530) { + animation-delay: 53s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(531) { + animation-delay: 53.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(532) { + animation-delay: 53.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(533) { + animation-delay: 53.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(534) { + animation-delay: 53.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(535) { + animation-delay: 53.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(536) { + animation-delay: 53.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(537) { + animation-delay: 53.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(538) { + animation-delay: 53.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(539) { + animation-delay: 53.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(540) { + animation-delay: 54s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(541) { + animation-delay: 54.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(542) { + animation-delay: 54.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(543) { + animation-delay: 54.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(544) { + animation-delay: 54.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(545) { + animation-delay: 54.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(546) { + animation-delay: 54.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(547) { + animation-delay: 54.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(548) { + animation-delay: 54.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(549) { + animation-delay: 54.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(550) { + animation-delay: 55s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(551) { + animation-delay: 55.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(552) { + animation-delay: 55.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(553) { + animation-delay: 55.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(554) { + animation-delay: 55.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(555) { + animation-delay: 55.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(556) { + animation-delay: 55.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(557) { + animation-delay: 55.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(558) { + animation-delay: 55.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(559) { + animation-delay: 55.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(560) { + animation-delay: 56s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(561) { + animation-delay: 56.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(562) { + animation-delay: 56.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(563) { + animation-delay: 56.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(564) { + animation-delay: 56.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(565) { + animation-delay: 56.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(566) { + animation-delay: 56.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(567) { + animation-delay: 56.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(568) { + animation-delay: 56.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(569) { + animation-delay: 56.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(570) { + animation-delay: 57s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(571) { + animation-delay: 57.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(572) { + animation-delay: 57.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(573) { + animation-delay: 57.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(574) { + animation-delay: 57.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(575) { + animation-delay: 57.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(576) { + animation-delay: 57.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(577) { + animation-delay: 57.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(578) { + animation-delay: 57.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(579) { + animation-delay: 57.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(580) { + animation-delay: 58s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(581) { + animation-delay: 58.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(582) { + animation-delay: 58.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(583) { + animation-delay: 58.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(584) { + animation-delay: 58.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(585) { + animation-delay: 58.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(586) { + animation-delay: 58.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(587) { + animation-delay: 58.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(588) { + animation-delay: 58.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(589) { + animation-delay: 58.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(590) { + animation-delay: 59s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(591) { + animation-delay: 59.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(592) { + animation-delay: 59.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(593) { + animation-delay: 59.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(594) { + animation-delay: 59.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(595) { + animation-delay: 59.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(596) { + animation-delay: 59.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(597) { + animation-delay: 59.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(598) { + animation-delay: 59.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(599) { + animation-delay: 59.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(600) { + animation-delay: 60s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(601) { + animation-delay: 60.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(602) { + animation-delay: 60.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(603) { + animation-delay: 60.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(604) { + animation-delay: 60.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(605) { + animation-delay: 60.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(606) { + animation-delay: 60.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(607) { + animation-delay: 60.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(608) { + animation-delay: 60.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(609) { + animation-delay: 60.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(610) { + animation-delay: 61s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(611) { + animation-delay: 61.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(612) { + animation-delay: 61.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(613) { + animation-delay: 61.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(614) { + animation-delay: 61.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(615) { + animation-delay: 61.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(616) { + animation-delay: 61.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(617) { + animation-delay: 61.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(618) { + animation-delay: 61.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(619) { + animation-delay: 61.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(620) { + animation-delay: 62s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(621) { + animation-delay: 62.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(622) { + animation-delay: 62.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(623) { + animation-delay: 62.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(624) { + animation-delay: 62.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(625) { + animation-delay: 62.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(626) { + animation-delay: 62.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(627) { + animation-delay: 62.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(628) { + animation-delay: 62.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(629) { + animation-delay: 62.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(630) { + animation-delay: 63s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(631) { + animation-delay: 63.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(632) { + animation-delay: 63.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(633) { + animation-delay: 63.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(634) { + animation-delay: 63.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(635) { + animation-delay: 63.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(636) { + animation-delay: 63.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(637) { + animation-delay: 63.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(638) { + animation-delay: 63.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(639) { + animation-delay: 63.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(640) { + animation-delay: 64s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(641) { + animation-delay: 64.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(642) { + animation-delay: 64.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(643) { + animation-delay: 64.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(644) { + animation-delay: 64.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(645) { + animation-delay: 64.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(646) { + animation-delay: 64.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(647) { + animation-delay: 64.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(648) { + animation-delay: 64.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(649) { + animation-delay: 64.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(650) { + animation-delay: 65s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(651) { + animation-delay: 65.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(652) { + animation-delay: 65.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(653) { + animation-delay: 65.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(654) { + animation-delay: 65.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(655) { + animation-delay: 65.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(656) { + animation-delay: 65.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(657) { + animation-delay: 65.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(658) { + animation-delay: 65.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(659) { + animation-delay: 65.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(660) { + animation-delay: 66s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(661) { + animation-delay: 66.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(662) { + animation-delay: 66.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(663) { + animation-delay: 66.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(664) { + animation-delay: 66.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(665) { + animation-delay: 66.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(666) { + animation-delay: 66.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(667) { + animation-delay: 66.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(668) { + animation-delay: 66.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(669) { + animation-delay: 66.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(670) { + animation-delay: 67s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(671) { + animation-delay: 67.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(672) { + animation-delay: 67.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(673) { + animation-delay: 67.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(674) { + animation-delay: 67.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(675) { + animation-delay: 67.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(676) { + animation-delay: 67.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(677) { + animation-delay: 67.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(678) { + animation-delay: 67.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(679) { + animation-delay: 67.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(680) { + animation-delay: 68s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(681) { + animation-delay: 68.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(682) { + animation-delay: 68.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(683) { + animation-delay: 68.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(684) { + animation-delay: 68.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(685) { + animation-delay: 68.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(686) { + animation-delay: 68.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(687) { + animation-delay: 68.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(688) { + animation-delay: 68.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(689) { + animation-delay: 68.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(690) { + animation-delay: 69s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(691) { + animation-delay: 69.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(692) { + animation-delay: 69.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(693) { + animation-delay: 69.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(694) { + animation-delay: 69.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(695) { + animation-delay: 69.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(696) { + animation-delay: 69.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(697) { + animation-delay: 69.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(698) { + animation-delay: 69.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(699) { + animation-delay: 69.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(700) { + animation-delay: 70s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(701) { + animation-delay: 70.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(702) { + animation-delay: 70.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(703) { + animation-delay: 70.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(704) { + animation-delay: 70.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(705) { + animation-delay: 70.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(706) { + animation-delay: 70.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(707) { + animation-delay: 70.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(708) { + animation-delay: 70.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(709) { + animation-delay: 70.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(710) { + animation-delay: 71s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(711) { + animation-delay: 71.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(712) { + animation-delay: 71.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(713) { + animation-delay: 71.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(714) { + animation-delay: 71.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(715) { + animation-delay: 71.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(716) { + animation-delay: 71.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(717) { + animation-delay: 71.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(718) { + animation-delay: 71.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(719) { + animation-delay: 71.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(720) { + animation-delay: 72s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(721) { + animation-delay: 72.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(722) { + animation-delay: 72.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(723) { + animation-delay: 72.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(724) { + animation-delay: 72.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(725) { + animation-delay: 72.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(726) { + animation-delay: 72.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(727) { + animation-delay: 72.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(728) { + animation-delay: 72.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(729) { + animation-delay: 72.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(730) { + animation-delay: 73s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(731) { + animation-delay: 73.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(732) { + animation-delay: 73.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(733) { + animation-delay: 73.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(734) { + animation-delay: 73.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(735) { + animation-delay: 73.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(736) { + animation-delay: 73.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(737) { + animation-delay: 73.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(738) { + animation-delay: 73.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(739) { + animation-delay: 73.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(740) { + animation-delay: 74s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(741) { + animation-delay: 74.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(742) { + animation-delay: 74.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(743) { + animation-delay: 74.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(744) { + animation-delay: 74.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(745) { + animation-delay: 74.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(746) { + animation-delay: 74.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(747) { + animation-delay: 74.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(748) { + animation-delay: 74.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(749) { + animation-delay: 74.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(750) { + animation-delay: 75s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(751) { + animation-delay: 75.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(752) { + animation-delay: 75.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(753) { + animation-delay: 75.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(754) { + animation-delay: 75.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(755) { + animation-delay: 75.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(756) { + animation-delay: 75.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(757) { + animation-delay: 75.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(758) { + animation-delay: 75.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(759) { + animation-delay: 75.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(760) { + animation-delay: 76s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(761) { + animation-delay: 76.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(762) { + animation-delay: 76.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(763) { + animation-delay: 76.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(764) { + animation-delay: 76.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(765) { + animation-delay: 76.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(766) { + animation-delay: 76.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(767) { + animation-delay: 76.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(768) { + animation-delay: 76.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(769) { + animation-delay: 76.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(770) { + animation-delay: 77s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(771) { + animation-delay: 77.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(772) { + animation-delay: 77.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(773) { + animation-delay: 77.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(774) { + animation-delay: 77.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(775) { + animation-delay: 77.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(776) { + animation-delay: 77.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(777) { + animation-delay: 77.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(778) { + animation-delay: 77.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(779) { + animation-delay: 77.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(780) { + animation-delay: 78s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(781) { + animation-delay: 78.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(782) { + animation-delay: 78.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(783) { + animation-delay: 78.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(784) { + animation-delay: 78.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(785) { + animation-delay: 78.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(786) { + animation-delay: 78.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(787) { + animation-delay: 78.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(788) { + animation-delay: 78.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(789) { + animation-delay: 78.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(790) { + animation-delay: 79s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(791) { + animation-delay: 79.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(792) { + animation-delay: 79.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(793) { + animation-delay: 79.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(794) { + animation-delay: 79.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(795) { + animation-delay: 79.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(796) { + animation-delay: 79.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(797) { + animation-delay: 79.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(798) { + animation-delay: 79.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(799) { + animation-delay: 79.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(800) { + animation-delay: 80s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(801) { + animation-delay: 80.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(802) { + animation-delay: 80.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(803) { + animation-delay: 80.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(804) { + animation-delay: 80.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(805) { + animation-delay: 80.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(806) { + animation-delay: 80.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(807) { + animation-delay: 80.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(808) { + animation-delay: 80.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(809) { + animation-delay: 80.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(810) { + animation-delay: 81s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(811) { + animation-delay: 81.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(812) { + animation-delay: 81.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(813) { + animation-delay: 81.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(814) { + animation-delay: 81.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(815) { + animation-delay: 81.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(816) { + animation-delay: 81.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(817) { + animation-delay: 81.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(818) { + animation-delay: 81.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(819) { + animation-delay: 81.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(820) { + animation-delay: 82s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(821) { + animation-delay: 82.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(822) { + animation-delay: 82.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(823) { + animation-delay: 82.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(824) { + animation-delay: 82.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(825) { + animation-delay: 82.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(826) { + animation-delay: 82.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(827) { + animation-delay: 82.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(828) { + animation-delay: 82.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(829) { + animation-delay: 82.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(830) { + animation-delay: 83s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(831) { + animation-delay: 83.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(832) { + animation-delay: 83.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(833) { + animation-delay: 83.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(834) { + animation-delay: 83.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(835) { + animation-delay: 83.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(836) { + animation-delay: 83.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(837) { + animation-delay: 83.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(838) { + animation-delay: 83.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(839) { + animation-delay: 83.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(840) { + animation-delay: 84s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(841) { + animation-delay: 84.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(842) { + animation-delay: 84.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(843) { + animation-delay: 84.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(844) { + animation-delay: 84.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(845) { + animation-delay: 84.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(846) { + animation-delay: 84.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(847) { + animation-delay: 84.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(848) { + animation-delay: 84.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(849) { + animation-delay: 84.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(850) { + animation-delay: 85s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(851) { + animation-delay: 85.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(852) { + animation-delay: 85.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(853) { + animation-delay: 85.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(854) { + animation-delay: 85.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(855) { + animation-delay: 85.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(856) { + animation-delay: 85.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(857) { + animation-delay: 85.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(858) { + animation-delay: 85.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(859) { + animation-delay: 85.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(860) { + animation-delay: 86s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(861) { + animation-delay: 86.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(862) { + animation-delay: 86.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(863) { + animation-delay: 86.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(864) { + animation-delay: 86.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(865) { + animation-delay: 86.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(866) { + animation-delay: 86.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(867) { + animation-delay: 86.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(868) { + animation-delay: 86.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(869) { + animation-delay: 86.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(870) { + animation-delay: 87s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(871) { + animation-delay: 87.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(872) { + animation-delay: 87.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(873) { + animation-delay: 87.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(874) { + animation-delay: 87.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(875) { + animation-delay: 87.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(876) { + animation-delay: 87.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(877) { + animation-delay: 87.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(878) { + animation-delay: 87.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(879) { + animation-delay: 87.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(880) { + animation-delay: 88s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(881) { + animation-delay: 88.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(882) { + animation-delay: 88.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(883) { + animation-delay: 88.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(884) { + animation-delay: 88.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(885) { + animation-delay: 88.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(886) { + animation-delay: 88.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(887) { + animation-delay: 88.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(888) { + animation-delay: 88.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(889) { + animation-delay: 88.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(890) { + animation-delay: 89s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(891) { + animation-delay: 89.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(892) { + animation-delay: 89.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(893) { + animation-delay: 89.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(894) { + animation-delay: 89.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(895) { + animation-delay: 89.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(896) { + animation-delay: 89.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(897) { + animation-delay: 89.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(898) { + animation-delay: 89.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(899) { + animation-delay: 89.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(900) { + animation-delay: 90s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(901) { + animation-delay: 90.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(902) { + animation-delay: 90.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(903) { + animation-delay: 90.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(904) { + animation-delay: 90.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(905) { + animation-delay: 90.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(906) { + animation-delay: 90.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(907) { + animation-delay: 90.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(908) { + animation-delay: 90.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(909) { + animation-delay: 90.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(910) { + animation-delay: 91s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(911) { + animation-delay: 91.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(912) { + animation-delay: 91.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(913) { + animation-delay: 91.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(914) { + animation-delay: 91.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(915) { + animation-delay: 91.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(916) { + animation-delay: 91.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(917) { + animation-delay: 91.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(918) { + animation-delay: 91.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(919) { + animation-delay: 91.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(920) { + animation-delay: 92s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(921) { + animation-delay: 92.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(922) { + animation-delay: 92.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(923) { + animation-delay: 92.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(924) { + animation-delay: 92.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(925) { + animation-delay: 92.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(926) { + animation-delay: 92.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(927) { + animation-delay: 92.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(928) { + animation-delay: 92.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(929) { + animation-delay: 92.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(930) { + animation-delay: 93s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(931) { + animation-delay: 93.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(932) { + animation-delay: 93.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(933) { + animation-delay: 93.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(934) { + animation-delay: 93.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(935) { + animation-delay: 93.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(936) { + animation-delay: 93.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(937) { + animation-delay: 93.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(938) { + animation-delay: 93.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(939) { + animation-delay: 93.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(940) { + animation-delay: 94s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(941) { + animation-delay: 94.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(942) { + animation-delay: 94.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(943) { + animation-delay: 94.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(944) { + animation-delay: 94.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(945) { + animation-delay: 94.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(946) { + animation-delay: 94.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(947) { + animation-delay: 94.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(948) { + animation-delay: 94.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(949) { + animation-delay: 94.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(950) { + animation-delay: 95s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(951) { + animation-delay: 95.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(952) { + animation-delay: 95.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(953) { + animation-delay: 95.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(954) { + animation-delay: 95.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(955) { + animation-delay: 95.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(956) { + animation-delay: 95.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(957) { + animation-delay: 95.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(958) { + animation-delay: 95.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(959) { + animation-delay: 95.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(960) { + animation-delay: 96s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(961) { + animation-delay: 96.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(962) { + animation-delay: 96.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(963) { + animation-delay: 96.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(964) { + animation-delay: 96.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(965) { + animation-delay: 96.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(966) { + animation-delay: 96.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(967) { + animation-delay: 96.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(968) { + animation-delay: 96.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(969) { + animation-delay: 96.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(970) { + animation-delay: 97s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(971) { + animation-delay: 97.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(972) { + animation-delay: 97.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(973) { + animation-delay: 97.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(974) { + animation-delay: 97.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(975) { + animation-delay: 97.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(976) { + animation-delay: 97.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(977) { + animation-delay: 97.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(978) { + animation-delay: 97.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(979) { + animation-delay: 97.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(980) { + animation-delay: 98s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(981) { + animation-delay: 98.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(982) { + animation-delay: 98.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(983) { + animation-delay: 98.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(984) { + animation-delay: 98.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(985) { + animation-delay: 98.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(986) { + animation-delay: 98.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(987) { + animation-delay: 98.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(988) { + animation-delay: 98.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(989) { + animation-delay: 98.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(990) { + animation-delay: 99s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(991) { + animation-delay: 99.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(992) { + animation-delay: 99.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(993) { + animation-delay: 99.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(994) { + animation-delay: 99.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(995) { + animation-delay: 99.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(996) { + animation-delay: 99.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(997) { + animation-delay: 99.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(998) { + animation-delay: 99.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(999) { + animation-delay: 99.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1000) { + animation-delay: 100s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1001) { + animation-delay: 100.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1002) { + animation-delay: 100.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1003) { + animation-delay: 100.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1004) { + animation-delay: 100.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1005) { + animation-delay: 100.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1006) { + animation-delay: 100.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1007) { + animation-delay: 100.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1008) { + animation-delay: 100.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1009) { + animation-delay: 100.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1010) { + animation-delay: 101s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1011) { + animation-delay: 101.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1012) { + animation-delay: 101.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1013) { + animation-delay: 101.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1014) { + animation-delay: 101.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1015) { + animation-delay: 101.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1016) { + animation-delay: 101.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1017) { + animation-delay: 101.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1018) { + animation-delay: 101.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1019) { + animation-delay: 101.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1020) { + animation-delay: 102s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1021) { + animation-delay: 102.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1022) { + animation-delay: 102.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1023) { + animation-delay: 102.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1024) { + animation-delay: 102.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1025) { + animation-delay: 102.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1026) { + animation-delay: 102.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1027) { + animation-delay: 102.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1028) { + animation-delay: 102.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1029) { + animation-delay: 102.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1030) { + animation-delay: 103s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1031) { + animation-delay: 103.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1032) { + animation-delay: 103.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1033) { + animation-delay: 103.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1034) { + animation-delay: 103.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1035) { + animation-delay: 103.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1036) { + animation-delay: 103.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1037) { + animation-delay: 103.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1038) { + animation-delay: 103.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1039) { + animation-delay: 103.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1040) { + animation-delay: 104s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1041) { + animation-delay: 104.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1042) { + animation-delay: 104.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1043) { + animation-delay: 104.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1044) { + animation-delay: 104.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1045) { + animation-delay: 104.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1046) { + animation-delay: 104.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1047) { + animation-delay: 104.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1048) { + animation-delay: 104.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1049) { + animation-delay: 104.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1050) { + animation-delay: 105s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1051) { + animation-delay: 105.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1052) { + animation-delay: 105.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1053) { + animation-delay: 105.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1054) { + animation-delay: 105.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1055) { + animation-delay: 105.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1056) { + animation-delay: 105.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1057) { + animation-delay: 105.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1058) { + animation-delay: 105.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1059) { + animation-delay: 105.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1060) { + animation-delay: 106s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1061) { + animation-delay: 106.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1062) { + animation-delay: 106.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1063) { + animation-delay: 106.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1064) { + animation-delay: 106.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1065) { + animation-delay: 106.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1066) { + animation-delay: 106.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1067) { + animation-delay: 106.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1068) { + animation-delay: 106.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1069) { + animation-delay: 106.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1070) { + animation-delay: 107s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1071) { + animation-delay: 107.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1072) { + animation-delay: 107.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1073) { + animation-delay: 107.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1074) { + animation-delay: 107.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1075) { + animation-delay: 107.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1076) { + animation-delay: 107.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1077) { + animation-delay: 107.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1078) { + animation-delay: 107.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1079) { + animation-delay: 107.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1080) { + animation-delay: 108s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1081) { + animation-delay: 108.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1082) { + animation-delay: 108.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1083) { + animation-delay: 108.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1084) { + animation-delay: 108.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1085) { + animation-delay: 108.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1086) { + animation-delay: 108.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1087) { + animation-delay: 108.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1088) { + animation-delay: 108.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1089) { + animation-delay: 108.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1090) { + animation-delay: 109s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1091) { + animation-delay: 109.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1092) { + animation-delay: 109.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1093) { + animation-delay: 109.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1094) { + animation-delay: 109.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1095) { + animation-delay: 109.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1096) { + animation-delay: 109.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1097) { + animation-delay: 109.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1098) { + animation-delay: 109.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1099) { + animation-delay: 109.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1100) { + animation-delay: 110s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1101) { + animation-delay: 110.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1102) { + animation-delay: 110.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1103) { + animation-delay: 110.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1104) { + animation-delay: 110.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1105) { + animation-delay: 110.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1106) { + animation-delay: 110.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1107) { + animation-delay: 110.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1108) { + animation-delay: 110.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1109) { + animation-delay: 110.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1110) { + animation-delay: 111s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1111) { + animation-delay: 111.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1112) { + animation-delay: 111.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1113) { + animation-delay: 111.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1114) { + animation-delay: 111.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1115) { + animation-delay: 111.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1116) { + animation-delay: 111.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1117) { + animation-delay: 111.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1118) { + animation-delay: 111.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1119) { + animation-delay: 111.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1120) { + animation-delay: 112s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1121) { + animation-delay: 112.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1122) { + animation-delay: 112.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1123) { + animation-delay: 112.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1124) { + animation-delay: 112.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1125) { + animation-delay: 112.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1126) { + animation-delay: 112.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1127) { + animation-delay: 112.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1128) { + animation-delay: 112.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1129) { + animation-delay: 112.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1130) { + animation-delay: 113s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1131) { + animation-delay: 113.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1132) { + animation-delay: 113.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1133) { + animation-delay: 113.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1134) { + animation-delay: 113.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1135) { + animation-delay: 113.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1136) { + animation-delay: 113.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1137) { + animation-delay: 113.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1138) { + animation-delay: 113.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1139) { + animation-delay: 113.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1140) { + animation-delay: 114s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1141) { + animation-delay: 114.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1142) { + animation-delay: 114.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1143) { + animation-delay: 114.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1144) { + animation-delay: 114.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1145) { + animation-delay: 114.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1146) { + animation-delay: 114.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1147) { + animation-delay: 114.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1148) { + animation-delay: 114.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1149) { + animation-delay: 114.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1150) { + animation-delay: 115s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1151) { + animation-delay: 115.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1152) { + animation-delay: 115.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1153) { + animation-delay: 115.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1154) { + animation-delay: 115.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1155) { + animation-delay: 115.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1156) { + animation-delay: 115.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1157) { + animation-delay: 115.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1158) { + animation-delay: 115.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1159) { + animation-delay: 115.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1160) { + animation-delay: 116s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1161) { + animation-delay: 116.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1162) { + animation-delay: 116.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1163) { + animation-delay: 116.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1164) { + animation-delay: 116.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1165) { + animation-delay: 116.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1166) { + animation-delay: 116.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1167) { + animation-delay: 116.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1168) { + animation-delay: 116.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1169) { + animation-delay: 116.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1170) { + animation-delay: 117s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1171) { + animation-delay: 117.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1172) { + animation-delay: 117.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1173) { + animation-delay: 117.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1174) { + animation-delay: 117.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1175) { + animation-delay: 117.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1176) { + animation-delay: 117.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1177) { + animation-delay: 117.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1178) { + animation-delay: 117.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1179) { + animation-delay: 117.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1180) { + animation-delay: 118s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1181) { + animation-delay: 118.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1182) { + animation-delay: 118.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1183) { + animation-delay: 118.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1184) { + animation-delay: 118.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1185) { + animation-delay: 118.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1186) { + animation-delay: 118.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1187) { + animation-delay: 118.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1188) { + animation-delay: 118.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1189) { + animation-delay: 118.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1190) { + animation-delay: 119s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1191) { + animation-delay: 119.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1192) { + animation-delay: 119.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1193) { + animation-delay: 119.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1194) { + animation-delay: 119.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1195) { + animation-delay: 119.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1196) { + animation-delay: 119.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1197) { + animation-delay: 119.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1198) { + animation-delay: 119.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1199) { + animation-delay: 119.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1200) { + animation-delay: 120s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1201) { + animation-delay: 120.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1202) { + animation-delay: 120.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1203) { + animation-delay: 120.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1204) { + animation-delay: 120.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1205) { + animation-delay: 120.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1206) { + animation-delay: 120.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1207) { + animation-delay: 120.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1208) { + animation-delay: 120.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1209) { + animation-delay: 120.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1210) { + animation-delay: 121s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1211) { + animation-delay: 121.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1212) { + animation-delay: 121.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1213) { + animation-delay: 121.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1214) { + animation-delay: 121.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1215) { + animation-delay: 121.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1216) { + animation-delay: 121.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1217) { + animation-delay: 121.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1218) { + animation-delay: 121.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1219) { + animation-delay: 121.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1220) { + animation-delay: 122s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1221) { + animation-delay: 122.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1222) { + animation-delay: 122.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1223) { + animation-delay: 122.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1224) { + animation-delay: 122.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1225) { + animation-delay: 122.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1226) { + animation-delay: 122.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1227) { + animation-delay: 122.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1228) { + animation-delay: 122.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1229) { + animation-delay: 122.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1230) { + animation-delay: 123s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1231) { + animation-delay: 123.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1232) { + animation-delay: 123.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1233) { + animation-delay: 123.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1234) { + animation-delay: 123.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1235) { + animation-delay: 123.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1236) { + animation-delay: 123.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1237) { + animation-delay: 123.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1238) { + animation-delay: 123.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1239) { + animation-delay: 123.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1240) { + animation-delay: 124s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1241) { + animation-delay: 124.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1242) { + animation-delay: 124.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1243) { + animation-delay: 124.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1244) { + animation-delay: 124.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1245) { + animation-delay: 124.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1246) { + animation-delay: 124.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1247) { + animation-delay: 124.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1248) { + animation-delay: 124.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1249) { + animation-delay: 124.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1250) { + animation-delay: 125s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1251) { + animation-delay: 125.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1252) { + animation-delay: 125.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1253) { + animation-delay: 125.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1254) { + animation-delay: 125.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1255) { + animation-delay: 125.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1256) { + animation-delay: 125.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1257) { + animation-delay: 125.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1258) { + animation-delay: 125.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1259) { + animation-delay: 125.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1260) { + animation-delay: 126s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1261) { + animation-delay: 126.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1262) { + animation-delay: 126.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1263) { + animation-delay: 126.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1264) { + animation-delay: 126.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1265) { + animation-delay: 126.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1266) { + animation-delay: 126.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1267) { + animation-delay: 126.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1268) { + animation-delay: 126.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1269) { + animation-delay: 126.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1270) { + animation-delay: 127s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1271) { + animation-delay: 127.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1272) { + animation-delay: 127.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1273) { + animation-delay: 127.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1274) { + animation-delay: 127.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1275) { + animation-delay: 127.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1276) { + animation-delay: 127.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1277) { + animation-delay: 127.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1278) { + animation-delay: 127.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1279) { + animation-delay: 127.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1280) { + animation-delay: 128s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1281) { + animation-delay: 128.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1282) { + animation-delay: 128.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1283) { + animation-delay: 128.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1284) { + animation-delay: 128.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1285) { + animation-delay: 128.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1286) { + animation-delay: 128.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1287) { + animation-delay: 128.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1288) { + animation-delay: 128.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1289) { + animation-delay: 128.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1290) { + animation-delay: 129s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1291) { + animation-delay: 129.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1292) { + animation-delay: 129.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1293) { + animation-delay: 129.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1294) { + animation-delay: 129.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1295) { + animation-delay: 129.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1296) { + animation-delay: 129.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1297) { + animation-delay: 129.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1298) { + animation-delay: 129.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1299) { + animation-delay: 129.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1300) { + animation-delay: 130s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1301) { + animation-delay: 130.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1302) { + animation-delay: 130.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1303) { + animation-delay: 130.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1304) { + animation-delay: 130.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1305) { + animation-delay: 130.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1306) { + animation-delay: 130.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1307) { + animation-delay: 130.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1308) { + animation-delay: 130.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1309) { + animation-delay: 130.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1310) { + animation-delay: 131s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1311) { + animation-delay: 131.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1312) { + animation-delay: 131.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1313) { + animation-delay: 131.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1314) { + animation-delay: 131.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1315) { + animation-delay: 131.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1316) { + animation-delay: 131.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1317) { + animation-delay: 131.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1318) { + animation-delay: 131.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1319) { + animation-delay: 131.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1320) { + animation-delay: 132s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1321) { + animation-delay: 132.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1322) { + animation-delay: 132.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1323) { + animation-delay: 132.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1324) { + animation-delay: 132.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1325) { + animation-delay: 132.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1326) { + animation-delay: 132.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1327) { + animation-delay: 132.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1328) { + animation-delay: 132.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1329) { + animation-delay: 132.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1330) { + animation-delay: 133s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1331) { + animation-delay: 133.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1332) { + animation-delay: 133.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1333) { + animation-delay: 133.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1334) { + animation-delay: 133.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1335) { + animation-delay: 133.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1336) { + animation-delay: 133.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1337) { + animation-delay: 133.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1338) { + animation-delay: 133.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1339) { + animation-delay: 133.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1340) { + animation-delay: 134s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1341) { + animation-delay: 134.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1342) { + animation-delay: 134.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1343) { + animation-delay: 134.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1344) { + animation-delay: 134.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1345) { + animation-delay: 134.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1346) { + animation-delay: 134.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1347) { + animation-delay: 134.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1348) { + animation-delay: 134.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1349) { + animation-delay: 134.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1350) { + animation-delay: 135s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1351) { + animation-delay: 135.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1352) { + animation-delay: 135.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1353) { + animation-delay: 135.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1354) { + animation-delay: 135.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1355) { + animation-delay: 135.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1356) { + animation-delay: 135.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1357) { + animation-delay: 135.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1358) { + animation-delay: 135.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1359) { + animation-delay: 135.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1360) { + animation-delay: 136s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1361) { + animation-delay: 136.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1362) { + animation-delay: 136.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1363) { + animation-delay: 136.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1364) { + animation-delay: 136.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1365) { + animation-delay: 136.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1366) { + animation-delay: 136.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1367) { + animation-delay: 136.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1368) { + animation-delay: 136.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1369) { + animation-delay: 136.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1370) { + animation-delay: 137s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1371) { + animation-delay: 137.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1372) { + animation-delay: 137.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1373) { + animation-delay: 137.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1374) { + animation-delay: 137.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1375) { + animation-delay: 137.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1376) { + animation-delay: 137.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1377) { + animation-delay: 137.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1378) { + animation-delay: 137.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1379) { + animation-delay: 137.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1380) { + animation-delay: 138s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1381) { + animation-delay: 138.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1382) { + animation-delay: 138.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1383) { + animation-delay: 138.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1384) { + animation-delay: 138.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1385) { + animation-delay: 138.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1386) { + animation-delay: 138.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1387) { + animation-delay: 138.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1388) { + animation-delay: 138.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1389) { + animation-delay: 138.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1390) { + animation-delay: 139s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1391) { + animation-delay: 139.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1392) { + animation-delay: 139.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1393) { + animation-delay: 139.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1394) { + animation-delay: 139.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1395) { + animation-delay: 139.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1396) { + animation-delay: 139.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1397) { + animation-delay: 139.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1398) { + animation-delay: 139.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1399) { + animation-delay: 139.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1400) { + animation-delay: 140s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1401) { + animation-delay: 140.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1402) { + animation-delay: 140.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1403) { + animation-delay: 140.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1404) { + animation-delay: 140.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1405) { + animation-delay: 140.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1406) { + animation-delay: 140.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1407) { + animation-delay: 140.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1408) { + animation-delay: 140.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1409) { + animation-delay: 140.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1410) { + animation-delay: 141s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1411) { + animation-delay: 141.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1412) { + animation-delay: 141.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1413) { + animation-delay: 141.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1414) { + animation-delay: 141.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1415) { + animation-delay: 141.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1416) { + animation-delay: 141.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1417) { + animation-delay: 141.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1418) { + animation-delay: 141.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1419) { + animation-delay: 141.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1420) { + animation-delay: 142s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1421) { + animation-delay: 142.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1422) { + animation-delay: 142.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1423) { + animation-delay: 142.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1424) { + animation-delay: 142.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1425) { + animation-delay: 142.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1426) { + animation-delay: 142.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1427) { + animation-delay: 142.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1428) { + animation-delay: 142.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1429) { + animation-delay: 142.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1430) { + animation-delay: 143s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1431) { + animation-delay: 143.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1432) { + animation-delay: 143.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1433) { + animation-delay: 143.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1434) { + animation-delay: 143.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1435) { + animation-delay: 143.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1436) { + animation-delay: 143.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1437) { + animation-delay: 143.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1438) { + animation-delay: 143.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1439) { + animation-delay: 143.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1440) { + animation-delay: 144s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1441) { + animation-delay: 144.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1442) { + animation-delay: 144.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1443) { + animation-delay: 144.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1444) { + animation-delay: 144.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1445) { + animation-delay: 144.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1446) { + animation-delay: 144.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1447) { + animation-delay: 144.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1448) { + animation-delay: 144.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1449) { + animation-delay: 144.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1450) { + animation-delay: 145s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1451) { + animation-delay: 145.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1452) { + animation-delay: 145.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1453) { + animation-delay: 145.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1454) { + animation-delay: 145.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1455) { + animation-delay: 145.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1456) { + animation-delay: 145.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1457) { + animation-delay: 145.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1458) { + animation-delay: 145.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1459) { + animation-delay: 145.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1460) { + animation-delay: 146s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1461) { + animation-delay: 146.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1462) { + animation-delay: 146.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1463) { + animation-delay: 146.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1464) { + animation-delay: 146.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1465) { + animation-delay: 146.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1466) { + animation-delay: 146.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1467) { + animation-delay: 146.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1468) { + animation-delay: 146.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1469) { + animation-delay: 146.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1470) { + animation-delay: 147s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1471) { + animation-delay: 147.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1472) { + animation-delay: 147.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1473) { + animation-delay: 147.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1474) { + animation-delay: 147.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1475) { + animation-delay: 147.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1476) { + animation-delay: 147.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1477) { + animation-delay: 147.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1478) { + animation-delay: 147.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1479) { + animation-delay: 147.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1480) { + animation-delay: 148s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1481) { + animation-delay: 148.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1482) { + animation-delay: 148.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1483) { + animation-delay: 148.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1484) { + animation-delay: 148.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1485) { + animation-delay: 148.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1486) { + animation-delay: 148.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1487) { + animation-delay: 148.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1488) { + animation-delay: 148.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1489) { + animation-delay: 148.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1490) { + animation-delay: 149s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1491) { + animation-delay: 149.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1492) { + animation-delay: 149.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1493) { + animation-delay: 149.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1494) { + animation-delay: 149.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1495) { + animation-delay: 149.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1496) { + animation-delay: 149.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1497) { + animation-delay: 149.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1498) { + animation-delay: 149.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1499) { + animation-delay: 149.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1500) { + animation-delay: 150s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1501) { + animation-delay: 150.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1502) { + animation-delay: 150.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1503) { + animation-delay: 150.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1504) { + animation-delay: 150.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1505) { + animation-delay: 150.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1506) { + animation-delay: 150.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1507) { + animation-delay: 150.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1508) { + animation-delay: 150.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1509) { + animation-delay: 150.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1510) { + animation-delay: 151s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1511) { + animation-delay: 151.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1512) { + animation-delay: 151.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1513) { + animation-delay: 151.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1514) { + animation-delay: 151.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1515) { + animation-delay: 151.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1516) { + animation-delay: 151.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1517) { + animation-delay: 151.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1518) { + animation-delay: 151.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1519) { + animation-delay: 151.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1520) { + animation-delay: 152s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1521) { + animation-delay: 152.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1522) { + animation-delay: 152.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1523) { + animation-delay: 152.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1524) { + animation-delay: 152.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1525) { + animation-delay: 152.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1526) { + animation-delay: 152.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1527) { + animation-delay: 152.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1528) { + animation-delay: 152.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1529) { + animation-delay: 152.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1530) { + animation-delay: 153s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1531) { + animation-delay: 153.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1532) { + animation-delay: 153.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1533) { + animation-delay: 153.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1534) { + animation-delay: 153.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1535) { + animation-delay: 153.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1536) { + animation-delay: 153.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1537) { + animation-delay: 153.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1538) { + animation-delay: 153.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1539) { + animation-delay: 153.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1540) { + animation-delay: 154s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1541) { + animation-delay: 154.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1542) { + animation-delay: 154.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1543) { + animation-delay: 154.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1544) { + animation-delay: 154.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1545) { + animation-delay: 154.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1546) { + animation-delay: 154.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1547) { + animation-delay: 154.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1548) { + animation-delay: 154.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1549) { + animation-delay: 154.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1550) { + animation-delay: 155s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1551) { + animation-delay: 155.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1552) { + animation-delay: 155.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1553) { + animation-delay: 155.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1554) { + animation-delay: 155.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1555) { + animation-delay: 155.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1556) { + animation-delay: 155.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1557) { + animation-delay: 155.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1558) { + animation-delay: 155.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1559) { + animation-delay: 155.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1560) { + animation-delay: 156s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1561) { + animation-delay: 156.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1562) { + animation-delay: 156.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1563) { + animation-delay: 156.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1564) { + animation-delay: 156.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1565) { + animation-delay: 156.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1566) { + animation-delay: 156.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1567) { + animation-delay: 156.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1568) { + animation-delay: 156.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1569) { + animation-delay: 156.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1570) { + animation-delay: 157s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1571) { + animation-delay: 157.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1572) { + animation-delay: 157.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1573) { + animation-delay: 157.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1574) { + animation-delay: 157.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1575) { + animation-delay: 157.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1576) { + animation-delay: 157.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1577) { + animation-delay: 157.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1578) { + animation-delay: 157.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1579) { + animation-delay: 157.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1580) { + animation-delay: 158s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1581) { + animation-delay: 158.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1582) { + animation-delay: 158.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1583) { + animation-delay: 158.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1584) { + animation-delay: 158.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1585) { + animation-delay: 158.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1586) { + animation-delay: 158.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1587) { + animation-delay: 158.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1588) { + animation-delay: 158.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1589) { + animation-delay: 158.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1590) { + animation-delay: 159s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1591) { + animation-delay: 159.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1592) { + animation-delay: 159.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1593) { + animation-delay: 159.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1594) { + animation-delay: 159.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1595) { + animation-delay: 159.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1596) { + animation-delay: 159.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1597) { + animation-delay: 159.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1598) { + animation-delay: 159.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1599) { + animation-delay: 159.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1600) { + animation-delay: 160s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1601) { + animation-delay: 160.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1602) { + animation-delay: 160.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1603) { + animation-delay: 160.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1604) { + animation-delay: 160.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1605) { + animation-delay: 160.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1606) { + animation-delay: 160.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1607) { + animation-delay: 160.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1608) { + animation-delay: 160.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1609) { + animation-delay: 160.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1610) { + animation-delay: 161s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1611) { + animation-delay: 161.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1612) { + animation-delay: 161.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1613) { + animation-delay: 161.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1614) { + animation-delay: 161.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1615) { + animation-delay: 161.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1616) { + animation-delay: 161.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1617) { + animation-delay: 161.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1618) { + animation-delay: 161.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1619) { + animation-delay: 161.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1620) { + animation-delay: 162s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1621) { + animation-delay: 162.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1622) { + animation-delay: 162.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1623) { + animation-delay: 162.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1624) { + animation-delay: 162.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1625) { + animation-delay: 162.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1626) { + animation-delay: 162.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1627) { + animation-delay: 162.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1628) { + animation-delay: 162.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1629) { + animation-delay: 162.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1630) { + animation-delay: 163s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1631) { + animation-delay: 163.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1632) { + animation-delay: 163.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1633) { + animation-delay: 163.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1634) { + animation-delay: 163.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1635) { + animation-delay: 163.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1636) { + animation-delay: 163.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1637) { + animation-delay: 163.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1638) { + animation-delay: 163.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1639) { + animation-delay: 163.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1640) { + animation-delay: 164s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1641) { + animation-delay: 164.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1642) { + animation-delay: 164.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1643) { + animation-delay: 164.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1644) { + animation-delay: 164.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1645) { + animation-delay: 164.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1646) { + animation-delay: 164.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1647) { + animation-delay: 164.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1648) { + animation-delay: 164.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1649) { + animation-delay: 164.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1650) { + animation-delay: 165s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1651) { + animation-delay: 165.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1652) { + animation-delay: 165.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1653) { + animation-delay: 165.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1654) { + animation-delay: 165.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1655) { + animation-delay: 165.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1656) { + animation-delay: 165.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1657) { + animation-delay: 165.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1658) { + animation-delay: 165.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1659) { + animation-delay: 165.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1660) { + animation-delay: 166s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1661) { + animation-delay: 166.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1662) { + animation-delay: 166.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1663) { + animation-delay: 166.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1664) { + animation-delay: 166.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1665) { + animation-delay: 166.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1666) { + animation-delay: 166.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1667) { + animation-delay: 166.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1668) { + animation-delay: 166.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1669) { + animation-delay: 166.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1670) { + animation-delay: 167s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1671) { + animation-delay: 167.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1672) { + animation-delay: 167.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1673) { + animation-delay: 167.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1674) { + animation-delay: 167.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1675) { + animation-delay: 167.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1676) { + animation-delay: 167.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1677) { + animation-delay: 167.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1678) { + animation-delay: 167.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1679) { + animation-delay: 167.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1680) { + animation-delay: 168s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1681) { + animation-delay: 168.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1682) { + animation-delay: 168.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1683) { + animation-delay: 168.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1684) { + animation-delay: 168.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1685) { + animation-delay: 168.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1686) { + animation-delay: 168.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1687) { + animation-delay: 168.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1688) { + animation-delay: 168.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1689) { + animation-delay: 168.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1690) { + animation-delay: 169s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1691) { + animation-delay: 169.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1692) { + animation-delay: 169.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1693) { + animation-delay: 169.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1694) { + animation-delay: 169.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1695) { + animation-delay: 169.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1696) { + animation-delay: 169.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1697) { + animation-delay: 169.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1698) { + animation-delay: 169.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1699) { + animation-delay: 169.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1700) { + animation-delay: 170s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1701) { + animation-delay: 170.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1702) { + animation-delay: 170.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1703) { + animation-delay: 170.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1704) { + animation-delay: 170.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1705) { + animation-delay: 170.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1706) { + animation-delay: 170.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1707) { + animation-delay: 170.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1708) { + animation-delay: 170.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1709) { + animation-delay: 170.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1710) { + animation-delay: 171s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1711) { + animation-delay: 171.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1712) { + animation-delay: 171.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1713) { + animation-delay: 171.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1714) { + animation-delay: 171.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1715) { + animation-delay: 171.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1716) { + animation-delay: 171.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1717) { + animation-delay: 171.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1718) { + animation-delay: 171.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1719) { + animation-delay: 171.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1720) { + animation-delay: 172s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1721) { + animation-delay: 172.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1722) { + animation-delay: 172.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1723) { + animation-delay: 172.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1724) { + animation-delay: 172.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1725) { + animation-delay: 172.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1726) { + animation-delay: 172.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1727) { + animation-delay: 172.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1728) { + animation-delay: 172.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1729) { + animation-delay: 172.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1730) { + animation-delay: 173s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1731) { + animation-delay: 173.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1732) { + animation-delay: 173.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1733) { + animation-delay: 173.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1734) { + animation-delay: 173.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1735) { + animation-delay: 173.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1736) { + animation-delay: 173.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1737) { + animation-delay: 173.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1738) { + animation-delay: 173.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1739) { + animation-delay: 173.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1740) { + animation-delay: 174s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1741) { + animation-delay: 174.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1742) { + animation-delay: 174.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1743) { + animation-delay: 174.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1744) { + animation-delay: 174.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1745) { + animation-delay: 174.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1746) { + animation-delay: 174.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1747) { + animation-delay: 174.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1748) { + animation-delay: 174.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1749) { + animation-delay: 174.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1750) { + animation-delay: 175s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1751) { + animation-delay: 175.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1752) { + animation-delay: 175.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1753) { + animation-delay: 175.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1754) { + animation-delay: 175.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1755) { + animation-delay: 175.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1756) { + animation-delay: 175.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1757) { + animation-delay: 175.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1758) { + animation-delay: 175.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1759) { + animation-delay: 175.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1760) { + animation-delay: 176s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1761) { + animation-delay: 176.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1762) { + animation-delay: 176.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1763) { + animation-delay: 176.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1764) { + animation-delay: 176.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1765) { + animation-delay: 176.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1766) { + animation-delay: 176.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1767) { + animation-delay: 176.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1768) { + animation-delay: 176.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1769) { + animation-delay: 176.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1770) { + animation-delay: 177s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1771) { + animation-delay: 177.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1772) { + animation-delay: 177.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1773) { + animation-delay: 177.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1774) { + animation-delay: 177.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1775) { + animation-delay: 177.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1776) { + animation-delay: 177.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1777) { + animation-delay: 177.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1778) { + animation-delay: 177.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1779) { + animation-delay: 177.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1780) { + animation-delay: 178s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1781) { + animation-delay: 178.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1782) { + animation-delay: 178.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1783) { + animation-delay: 178.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1784) { + animation-delay: 178.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1785) { + animation-delay: 178.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1786) { + animation-delay: 178.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1787) { + animation-delay: 178.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1788) { + animation-delay: 178.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1789) { + animation-delay: 178.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1790) { + animation-delay: 179s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1791) { + animation-delay: 179.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1792) { + animation-delay: 179.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1793) { + animation-delay: 179.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1794) { + animation-delay: 179.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1795) { + animation-delay: 179.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1796) { + animation-delay: 179.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1797) { + animation-delay: 179.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1798) { + animation-delay: 179.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1799) { + animation-delay: 179.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1800) { + animation-delay: 180s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1801) { + animation-delay: 180.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1802) { + animation-delay: 180.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1803) { + animation-delay: 180.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1804) { + animation-delay: 180.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1805) { + animation-delay: 180.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1806) { + animation-delay: 180.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1807) { + animation-delay: 180.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1808) { + animation-delay: 180.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1809) { + animation-delay: 180.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1810) { + animation-delay: 181s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1811) { + animation-delay: 181.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1812) { + animation-delay: 181.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1813) { + animation-delay: 181.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1814) { + animation-delay: 181.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1815) { + animation-delay: 181.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1816) { + animation-delay: 181.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1817) { + animation-delay: 181.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1818) { + animation-delay: 181.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1819) { + animation-delay: 181.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1820) { + animation-delay: 182s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1821) { + animation-delay: 182.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1822) { + animation-delay: 182.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1823) { + animation-delay: 182.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1824) { + animation-delay: 182.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1825) { + animation-delay: 182.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1826) { + animation-delay: 182.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1827) { + animation-delay: 182.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1828) { + animation-delay: 182.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1829) { + animation-delay: 182.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1830) { + animation-delay: 183s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1831) { + animation-delay: 183.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1832) { + animation-delay: 183.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1833) { + animation-delay: 183.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1834) { + animation-delay: 183.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1835) { + animation-delay: 183.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1836) { + animation-delay: 183.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1837) { + animation-delay: 183.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1838) { + animation-delay: 183.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1839) { + animation-delay: 183.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1840) { + animation-delay: 184s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1841) { + animation-delay: 184.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1842) { + animation-delay: 184.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1843) { + animation-delay: 184.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1844) { + animation-delay: 184.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1845) { + animation-delay: 184.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1846) { + animation-delay: 184.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1847) { + animation-delay: 184.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1848) { + animation-delay: 184.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1849) { + animation-delay: 184.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1850) { + animation-delay: 185s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1851) { + animation-delay: 185.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1852) { + animation-delay: 185.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1853) { + animation-delay: 185.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1854) { + animation-delay: 185.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1855) { + animation-delay: 185.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1856) { + animation-delay: 185.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1857) { + animation-delay: 185.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1858) { + animation-delay: 185.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1859) { + animation-delay: 185.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1860) { + animation-delay: 186s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1861) { + animation-delay: 186.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1862) { + animation-delay: 186.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1863) { + animation-delay: 186.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1864) { + animation-delay: 186.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1865) { + animation-delay: 186.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1866) { + animation-delay: 186.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1867) { + animation-delay: 186.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1868) { + animation-delay: 186.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1869) { + animation-delay: 186.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1870) { + animation-delay: 187s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1871) { + animation-delay: 187.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1872) { + animation-delay: 187.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1873) { + animation-delay: 187.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1874) { + animation-delay: 187.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1875) { + animation-delay: 187.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1876) { + animation-delay: 187.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1877) { + animation-delay: 187.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1878) { + animation-delay: 187.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1879) { + animation-delay: 187.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1880) { + animation-delay: 188s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1881) { + animation-delay: 188.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1882) { + animation-delay: 188.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1883) { + animation-delay: 188.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1884) { + animation-delay: 188.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1885) { + animation-delay: 188.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1886) { + animation-delay: 188.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1887) { + animation-delay: 188.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1888) { + animation-delay: 188.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1889) { + animation-delay: 188.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1890) { + animation-delay: 189s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1891) { + animation-delay: 189.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1892) { + animation-delay: 189.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1893) { + animation-delay: 189.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1894) { + animation-delay: 189.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1895) { + animation-delay: 189.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1896) { + animation-delay: 189.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1897) { + animation-delay: 189.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1898) { + animation-delay: 189.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1899) { + animation-delay: 189.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1900) { + animation-delay: 190s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1901) { + animation-delay: 190.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1902) { + animation-delay: 190.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1903) { + animation-delay: 190.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1904) { + animation-delay: 190.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1905) { + animation-delay: 190.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1906) { + animation-delay: 190.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1907) { + animation-delay: 190.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1908) { + animation-delay: 190.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1909) { + animation-delay: 190.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1910) { + animation-delay: 191s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1911) { + animation-delay: 191.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1912) { + animation-delay: 191.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1913) { + animation-delay: 191.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1914) { + animation-delay: 191.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1915) { + animation-delay: 191.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1916) { + animation-delay: 191.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1917) { + animation-delay: 191.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1918) { + animation-delay: 191.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1919) { + animation-delay: 191.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1920) { + animation-delay: 192s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1921) { + animation-delay: 192.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1922) { + animation-delay: 192.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1923) { + animation-delay: 192.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1924) { + animation-delay: 192.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1925) { + animation-delay: 192.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1926) { + animation-delay: 192.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1927) { + animation-delay: 192.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1928) { + animation-delay: 192.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1929) { + animation-delay: 192.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1930) { + animation-delay: 193s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1931) { + animation-delay: 193.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1932) { + animation-delay: 193.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1933) { + animation-delay: 193.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1934) { + animation-delay: 193.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1935) { + animation-delay: 193.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1936) { + animation-delay: 193.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1937) { + animation-delay: 193.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1938) { + animation-delay: 193.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1939) { + animation-delay: 193.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1940) { + animation-delay: 194s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1941) { + animation-delay: 194.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1942) { + animation-delay: 194.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1943) { + animation-delay: 194.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1944) { + animation-delay: 194.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1945) { + animation-delay: 194.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1946) { + animation-delay: 194.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1947) { + animation-delay: 194.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1948) { + animation-delay: 194.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1949) { + animation-delay: 194.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1950) { + animation-delay: 195s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1951) { + animation-delay: 195.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1952) { + animation-delay: 195.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1953) { + animation-delay: 195.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1954) { + animation-delay: 195.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1955) { + animation-delay: 195.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1956) { + animation-delay: 195.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1957) { + animation-delay: 195.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1958) { + animation-delay: 195.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1959) { + animation-delay: 195.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1960) { + animation-delay: 196s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1961) { + animation-delay: 196.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1962) { + animation-delay: 196.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1963) { + animation-delay: 196.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1964) { + animation-delay: 196.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1965) { + animation-delay: 196.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1966) { + animation-delay: 196.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1967) { + animation-delay: 196.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1968) { + animation-delay: 196.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1969) { + animation-delay: 196.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1970) { + animation-delay: 197s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1971) { + animation-delay: 197.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1972) { + animation-delay: 197.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1973) { + animation-delay: 197.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1974) { + animation-delay: 197.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1975) { + animation-delay: 197.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1976) { + animation-delay: 197.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1977) { + animation-delay: 197.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1978) { + animation-delay: 197.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1979) { + animation-delay: 197.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1980) { + animation-delay: 198s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1981) { + animation-delay: 198.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1982) { + animation-delay: 198.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1983) { + animation-delay: 198.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1984) { + animation-delay: 198.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1985) { + animation-delay: 198.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1986) { + animation-delay: 198.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1987) { + animation-delay: 198.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1988) { + animation-delay: 198.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1989) { + animation-delay: 198.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1990) { + animation-delay: 199s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1991) { + animation-delay: 199.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1992) { + animation-delay: 199.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1993) { + animation-delay: 199.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1994) { + animation-delay: 199.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1995) { + animation-delay: 199.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1996) { + animation-delay: 199.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1997) { + animation-delay: 199.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1998) { + animation-delay: 199.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1999) { + animation-delay: 199.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2000) { + animation-delay: 200s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2001) { + animation-delay: 200.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2002) { + animation-delay: 200.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2003) { + animation-delay: 200.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2004) { + animation-delay: 200.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2005) { + animation-delay: 200.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2006) { + animation-delay: 200.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2007) { + animation-delay: 200.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2008) { + animation-delay: 200.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2009) { + animation-delay: 200.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2010) { + animation-delay: 201s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2011) { + animation-delay: 201.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2012) { + animation-delay: 201.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2013) { + animation-delay: 201.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2014) { + animation-delay: 201.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2015) { + animation-delay: 201.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2016) { + animation-delay: 201.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2017) { + animation-delay: 201.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2018) { + animation-delay: 201.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2019) { + animation-delay: 201.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2020) { + animation-delay: 202s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2021) { + animation-delay: 202.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2022) { + animation-delay: 202.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2023) { + animation-delay: 202.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2024) { + animation-delay: 202.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2025) { + animation-delay: 202.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2026) { + animation-delay: 202.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2027) { + animation-delay: 202.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2028) { + animation-delay: 202.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2029) { + animation-delay: 202.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2030) { + animation-delay: 203s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2031) { + animation-delay: 203.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2032) { + animation-delay: 203.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2033) { + animation-delay: 203.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2034) { + animation-delay: 203.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2035) { + animation-delay: 203.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2036) { + animation-delay: 203.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2037) { + animation-delay: 203.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2038) { + animation-delay: 203.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2039) { + animation-delay: 203.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2040) { + animation-delay: 204s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2041) { + animation-delay: 204.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2042) { + animation-delay: 204.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2043) { + animation-delay: 204.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2044) { + animation-delay: 204.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2045) { + animation-delay: 204.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2046) { + animation-delay: 204.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2047) { + animation-delay: 204.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2048) { + animation-delay: 204.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2049) { + animation-delay: 204.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2050) { + animation-delay: 205s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2051) { + animation-delay: 205.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2052) { + animation-delay: 205.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2053) { + animation-delay: 205.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2054) { + animation-delay: 205.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2055) { + animation-delay: 205.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2056) { + animation-delay: 205.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2057) { + animation-delay: 205.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2058) { + animation-delay: 205.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2059) { + animation-delay: 205.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2060) { + animation-delay: 206s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2061) { + animation-delay: 206.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2062) { + animation-delay: 206.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2063) { + animation-delay: 206.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2064) { + animation-delay: 206.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2065) { + animation-delay: 206.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2066) { + animation-delay: 206.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2067) { + animation-delay: 206.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2068) { + animation-delay: 206.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2069) { + animation-delay: 206.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2070) { + animation-delay: 207s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2071) { + animation-delay: 207.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2072) { + animation-delay: 207.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2073) { + animation-delay: 207.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2074) { + animation-delay: 207.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2075) { + animation-delay: 207.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2076) { + animation-delay: 207.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2077) { + animation-delay: 207.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2078) { + animation-delay: 207.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2079) { + animation-delay: 207.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2080) { + animation-delay: 208s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2081) { + animation-delay: 208.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2082) { + animation-delay: 208.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2083) { + animation-delay: 208.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2084) { + animation-delay: 208.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2085) { + animation-delay: 208.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2086) { + animation-delay: 208.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2087) { + animation-delay: 208.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2088) { + animation-delay: 208.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2089) { + animation-delay: 208.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2090) { + animation-delay: 209s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2091) { + animation-delay: 209.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2092) { + animation-delay: 209.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2093) { + animation-delay: 209.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2094) { + animation-delay: 209.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2095) { + animation-delay: 209.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2096) { + animation-delay: 209.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2097) { + animation-delay: 209.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2098) { + animation-delay: 209.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2099) { + animation-delay: 209.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2100) { + animation-delay: 210s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2101) { + animation-delay: 210.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2102) { + animation-delay: 210.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2103) { + animation-delay: 210.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2104) { + animation-delay: 210.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2105) { + animation-delay: 210.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2106) { + animation-delay: 210.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2107) { + animation-delay: 210.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2108) { + animation-delay: 210.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2109) { + animation-delay: 210.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2110) { + animation-delay: 211s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2111) { + animation-delay: 211.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2112) { + animation-delay: 211.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2113) { + animation-delay: 211.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2114) { + animation-delay: 211.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2115) { + animation-delay: 211.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2116) { + animation-delay: 211.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2117) { + animation-delay: 211.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2118) { + animation-delay: 211.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2119) { + animation-delay: 211.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2120) { + animation-delay: 212s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2121) { + animation-delay: 212.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2122) { + animation-delay: 212.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2123) { + animation-delay: 212.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2124) { + animation-delay: 212.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2125) { + animation-delay: 212.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2126) { + animation-delay: 212.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2127) { + animation-delay: 212.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2128) { + animation-delay: 212.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2129) { + animation-delay: 212.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2130) { + animation-delay: 213s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2131) { + animation-delay: 213.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2132) { + animation-delay: 213.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2133) { + animation-delay: 213.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2134) { + animation-delay: 213.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2135) { + animation-delay: 213.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2136) { + animation-delay: 213.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2137) { + animation-delay: 213.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2138) { + animation-delay: 213.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2139) { + animation-delay: 213.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2140) { + animation-delay: 214s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2141) { + animation-delay: 214.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2142) { + animation-delay: 214.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2143) { + animation-delay: 214.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2144) { + animation-delay: 214.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2145) { + animation-delay: 214.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2146) { + animation-delay: 214.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2147) { + animation-delay: 214.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2148) { + animation-delay: 214.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2149) { + animation-delay: 214.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2150) { + animation-delay: 215s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2151) { + animation-delay: 215.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2152) { + animation-delay: 215.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2153) { + animation-delay: 215.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2154) { + animation-delay: 215.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2155) { + animation-delay: 215.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2156) { + animation-delay: 215.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2157) { + animation-delay: 215.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2158) { + animation-delay: 215.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2159) { + animation-delay: 215.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2160) { + animation-delay: 216s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2161) { + animation-delay: 216.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2162) { + animation-delay: 216.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2163) { + animation-delay: 216.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2164) { + animation-delay: 216.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2165) { + animation-delay: 216.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2166) { + animation-delay: 216.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2167) { + animation-delay: 216.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2168) { + animation-delay: 216.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2169) { + animation-delay: 216.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2170) { + animation-delay: 217s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2171) { + animation-delay: 217.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2172) { + animation-delay: 217.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2173) { + animation-delay: 217.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2174) { + animation-delay: 217.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2175) { + animation-delay: 217.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2176) { + animation-delay: 217.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2177) { + animation-delay: 217.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2178) { + animation-delay: 217.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2179) { + animation-delay: 217.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2180) { + animation-delay: 218s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2181) { + animation-delay: 218.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2182) { + animation-delay: 218.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2183) { + animation-delay: 218.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2184) { + animation-delay: 218.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2185) { + animation-delay: 218.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2186) { + animation-delay: 218.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2187) { + animation-delay: 218.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2188) { + animation-delay: 218.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2189) { + animation-delay: 218.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2190) { + animation-delay: 219s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2191) { + animation-delay: 219.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2192) { + animation-delay: 219.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2193) { + animation-delay: 219.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2194) { + animation-delay: 219.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2195) { + animation-delay: 219.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2196) { + animation-delay: 219.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2197) { + animation-delay: 219.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2198) { + animation-delay: 219.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2199) { + animation-delay: 219.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2200) { + animation-delay: 220s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2201) { + animation-delay: 220.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2202) { + animation-delay: 220.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2203) { + animation-delay: 220.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2204) { + animation-delay: 220.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2205) { + animation-delay: 220.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2206) { + animation-delay: 220.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2207) { + animation-delay: 220.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2208) { + animation-delay: 220.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2209) { + animation-delay: 220.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2210) { + animation-delay: 221s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2211) { + animation-delay: 221.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2212) { + animation-delay: 221.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2213) { + animation-delay: 221.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2214) { + animation-delay: 221.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2215) { + animation-delay: 221.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2216) { + animation-delay: 221.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2217) { + animation-delay: 221.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2218) { + animation-delay: 221.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2219) { + animation-delay: 221.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2220) { + animation-delay: 222s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2221) { + animation-delay: 222.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2222) { + animation-delay: 222.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2223) { + animation-delay: 222.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2224) { + animation-delay: 222.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2225) { + animation-delay: 222.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2226) { + animation-delay: 222.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2227) { + animation-delay: 222.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2228) { + animation-delay: 222.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2229) { + animation-delay: 222.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2230) { + animation-delay: 223s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2231) { + animation-delay: 223.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2232) { + animation-delay: 223.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2233) { + animation-delay: 223.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2234) { + animation-delay: 223.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2235) { + animation-delay: 223.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2236) { + animation-delay: 223.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2237) { + animation-delay: 223.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2238) { + animation-delay: 223.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2239) { + animation-delay: 223.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2240) { + animation-delay: 224s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2241) { + animation-delay: 224.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2242) { + animation-delay: 224.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2243) { + animation-delay: 224.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2244) { + animation-delay: 224.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2245) { + animation-delay: 224.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2246) { + animation-delay: 224.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2247) { + animation-delay: 224.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2248) { + animation-delay: 224.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2249) { + animation-delay: 224.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2250) { + animation-delay: 225s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2251) { + animation-delay: 225.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2252) { + animation-delay: 225.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2253) { + animation-delay: 225.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2254) { + animation-delay: 225.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2255) { + animation-delay: 225.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2256) { + animation-delay: 225.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2257) { + animation-delay: 225.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2258) { + animation-delay: 225.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2259) { + animation-delay: 225.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2260) { + animation-delay: 226s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2261) { + animation-delay: 226.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2262) { + animation-delay: 226.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2263) { + animation-delay: 226.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2264) { + animation-delay: 226.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2265) { + animation-delay: 226.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2266) { + animation-delay: 226.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2267) { + animation-delay: 226.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2268) { + animation-delay: 226.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2269) { + animation-delay: 226.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2270) { + animation-delay: 227s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2271) { + animation-delay: 227.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2272) { + animation-delay: 227.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2273) { + animation-delay: 227.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2274) { + animation-delay: 227.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2275) { + animation-delay: 227.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2276) { + animation-delay: 227.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2277) { + animation-delay: 227.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2278) { + animation-delay: 227.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2279) { + animation-delay: 227.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2280) { + animation-delay: 228s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2281) { + animation-delay: 228.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2282) { + animation-delay: 228.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2283) { + animation-delay: 228.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2284) { + animation-delay: 228.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2285) { + animation-delay: 228.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2286) { + animation-delay: 228.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2287) { + animation-delay: 228.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2288) { + animation-delay: 228.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2289) { + animation-delay: 228.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2290) { + animation-delay: 229s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2291) { + animation-delay: 229.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2292) { + animation-delay: 229.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2293) { + animation-delay: 229.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2294) { + animation-delay: 229.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2295) { + animation-delay: 229.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2296) { + animation-delay: 229.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2297) { + animation-delay: 229.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2298) { + animation-delay: 229.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2299) { + animation-delay: 229.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2300) { + animation-delay: 230s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2301) { + animation-delay: 230.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2302) { + animation-delay: 230.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2303) { + animation-delay: 230.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2304) { + animation-delay: 230.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2305) { + animation-delay: 230.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2306) { + animation-delay: 230.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2307) { + animation-delay: 230.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2308) { + animation-delay: 230.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2309) { + animation-delay: 230.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2310) { + animation-delay: 231s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2311) { + animation-delay: 231.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2312) { + animation-delay: 231.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2313) { + animation-delay: 231.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2314) { + animation-delay: 231.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2315) { + animation-delay: 231.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2316) { + animation-delay: 231.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2317) { + animation-delay: 231.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2318) { + animation-delay: 231.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2319) { + animation-delay: 231.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2320) { + animation-delay: 232s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2321) { + animation-delay: 232.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2322) { + animation-delay: 232.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2323) { + animation-delay: 232.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2324) { + animation-delay: 232.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2325) { + animation-delay: 232.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2326) { + animation-delay: 232.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2327) { + animation-delay: 232.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2328) { + animation-delay: 232.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2329) { + animation-delay: 232.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2330) { + animation-delay: 233s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2331) { + animation-delay: 233.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2332) { + animation-delay: 233.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2333) { + animation-delay: 233.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2334) { + animation-delay: 233.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2335) { + animation-delay: 233.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2336) { + animation-delay: 233.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2337) { + animation-delay: 233.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2338) { + animation-delay: 233.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2339) { + animation-delay: 233.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2340) { + animation-delay: 234s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2341) { + animation-delay: 234.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2342) { + animation-delay: 234.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2343) { + animation-delay: 234.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2344) { + animation-delay: 234.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2345) { + animation-delay: 234.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2346) { + animation-delay: 234.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2347) { + animation-delay: 234.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2348) { + animation-delay: 234.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2349) { + animation-delay: 234.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2350) { + animation-delay: 235s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2351) { + animation-delay: 235.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2352) { + animation-delay: 235.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2353) { + animation-delay: 235.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2354) { + animation-delay: 235.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2355) { + animation-delay: 235.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2356) { + animation-delay: 235.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2357) { + animation-delay: 235.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2358) { + animation-delay: 235.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2359) { + animation-delay: 235.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2360) { + animation-delay: 236s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2361) { + animation-delay: 236.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2362) { + animation-delay: 236.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2363) { + animation-delay: 236.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2364) { + animation-delay: 236.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2365) { + animation-delay: 236.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2366) { + animation-delay: 236.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2367) { + animation-delay: 236.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2368) { + animation-delay: 236.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2369) { + animation-delay: 236.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2370) { + animation-delay: 237s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2371) { + animation-delay: 237.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2372) { + animation-delay: 237.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2373) { + animation-delay: 237.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2374) { + animation-delay: 237.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2375) { + animation-delay: 237.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2376) { + animation-delay: 237.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2377) { + animation-delay: 237.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2378) { + animation-delay: 237.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2379) { + animation-delay: 237.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2380) { + animation-delay: 238s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2381) { + animation-delay: 238.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2382) { + animation-delay: 238.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2383) { + animation-delay: 238.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2384) { + animation-delay: 238.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2385) { + animation-delay: 238.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2386) { + animation-delay: 238.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2387) { + animation-delay: 238.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2388) { + animation-delay: 238.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2389) { + animation-delay: 238.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2390) { + animation-delay: 239s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2391) { + animation-delay: 239.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2392) { + animation-delay: 239.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2393) { + animation-delay: 239.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2394) { + animation-delay: 239.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2395) { + animation-delay: 239.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2396) { + animation-delay: 239.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2397) { + animation-delay: 239.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2398) { + animation-delay: 239.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2399) { + animation-delay: 239.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2400) { + animation-delay: 240s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2401) { + animation-delay: 240.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2402) { + animation-delay: 240.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2403) { + animation-delay: 240.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2404) { + animation-delay: 240.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2405) { + animation-delay: 240.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2406) { + animation-delay: 240.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2407) { + animation-delay: 240.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2408) { + animation-delay: 240.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2409) { + animation-delay: 240.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2410) { + animation-delay: 241s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2411) { + animation-delay: 241.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2412) { + animation-delay: 241.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2413) { + animation-delay: 241.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2414) { + animation-delay: 241.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2415) { + animation-delay: 241.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2416) { + animation-delay: 241.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2417) { + animation-delay: 241.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2418) { + animation-delay: 241.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2419) { + animation-delay: 241.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2420) { + animation-delay: 242s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2421) { + animation-delay: 242.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2422) { + animation-delay: 242.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2423) { + animation-delay: 242.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2424) { + animation-delay: 242.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2425) { + animation-delay: 242.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2426) { + animation-delay: 242.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2427) { + animation-delay: 242.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2428) { + animation-delay: 242.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2429) { + animation-delay: 242.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2430) { + animation-delay: 243s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2431) { + animation-delay: 243.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2432) { + animation-delay: 243.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2433) { + animation-delay: 243.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2434) { + animation-delay: 243.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2435) { + animation-delay: 243.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2436) { + animation-delay: 243.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2437) { + animation-delay: 243.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2438) { + animation-delay: 243.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2439) { + animation-delay: 243.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2440) { + animation-delay: 244s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2441) { + animation-delay: 244.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2442) { + animation-delay: 244.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2443) { + animation-delay: 244.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2444) { + animation-delay: 244.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2445) { + animation-delay: 244.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2446) { + animation-delay: 244.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2447) { + animation-delay: 244.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2448) { + animation-delay: 244.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2449) { + animation-delay: 244.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2450) { + animation-delay: 245s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2451) { + animation-delay: 245.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2452) { + animation-delay: 245.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2453) { + animation-delay: 245.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2454) { + animation-delay: 245.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2455) { + animation-delay: 245.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2456) { + animation-delay: 245.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2457) { + animation-delay: 245.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2458) { + animation-delay: 245.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2459) { + animation-delay: 245.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2460) { + animation-delay: 246s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2461) { + animation-delay: 246.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2462) { + animation-delay: 246.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2463) { + animation-delay: 246.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2464) { + animation-delay: 246.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2465) { + animation-delay: 246.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2466) { + animation-delay: 246.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2467) { + animation-delay: 246.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2468) { + animation-delay: 246.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2469) { + animation-delay: 246.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2470) { + animation-delay: 247s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2471) { + animation-delay: 247.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2472) { + animation-delay: 247.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2473) { + animation-delay: 247.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2474) { + animation-delay: 247.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2475) { + animation-delay: 247.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2476) { + animation-delay: 247.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2477) { + animation-delay: 247.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2478) { + animation-delay: 247.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2479) { + animation-delay: 247.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2480) { + animation-delay: 248s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2481) { + animation-delay: 248.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2482) { + animation-delay: 248.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2483) { + animation-delay: 248.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2484) { + animation-delay: 248.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2485) { + animation-delay: 248.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2486) { + animation-delay: 248.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2487) { + animation-delay: 248.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2488) { + animation-delay: 248.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2489) { + animation-delay: 248.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2490) { + animation-delay: 249s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2491) { + animation-delay: 249.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2492) { + animation-delay: 249.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2493) { + animation-delay: 249.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2494) { + animation-delay: 249.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2495) { + animation-delay: 249.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2496) { + animation-delay: 249.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2497) { + animation-delay: 249.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2498) { + animation-delay: 249.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2499) { + animation-delay: 249.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2500) { + animation-delay: 250s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2501) { + animation-delay: 250.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2502) { + animation-delay: 250.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2503) { + animation-delay: 250.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2504) { + animation-delay: 250.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2505) { + animation-delay: 250.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2506) { + animation-delay: 250.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2507) { + animation-delay: 250.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2508) { + animation-delay: 250.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2509) { + animation-delay: 250.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2510) { + animation-delay: 251s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2511) { + animation-delay: 251.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2512) { + animation-delay: 251.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2513) { + animation-delay: 251.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2514) { + animation-delay: 251.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2515) { + animation-delay: 251.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2516) { + animation-delay: 251.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2517) { + animation-delay: 251.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2518) { + animation-delay: 251.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2519) { + animation-delay: 251.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2520) { + animation-delay: 252s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2521) { + animation-delay: 252.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2522) { + animation-delay: 252.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2523) { + animation-delay: 252.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2524) { + animation-delay: 252.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2525) { + animation-delay: 252.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2526) { + animation-delay: 252.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2527) { + animation-delay: 252.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2528) { + animation-delay: 252.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2529) { + animation-delay: 252.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2530) { + animation-delay: 253s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2531) { + animation-delay: 253.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2532) { + animation-delay: 253.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2533) { + animation-delay: 253.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2534) { + animation-delay: 253.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2535) { + animation-delay: 253.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2536) { + animation-delay: 253.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2537) { + animation-delay: 253.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2538) { + animation-delay: 253.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2539) { + animation-delay: 253.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2540) { + animation-delay: 254s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2541) { + animation-delay: 254.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2542) { + animation-delay: 254.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2543) { + animation-delay: 254.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2544) { + animation-delay: 254.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2545) { + animation-delay: 254.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2546) { + animation-delay: 254.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2547) { + animation-delay: 254.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2548) { + animation-delay: 254.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2549) { + animation-delay: 254.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2550) { + animation-delay: 255s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2551) { + animation-delay: 255.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2552) { + animation-delay: 255.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2553) { + animation-delay: 255.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2554) { + animation-delay: 255.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2555) { + animation-delay: 255.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2556) { + animation-delay: 255.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2557) { + animation-delay: 255.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2558) { + animation-delay: 255.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2559) { + animation-delay: 255.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2560) { + animation-delay: 256s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2561) { + animation-delay: 256.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2562) { + animation-delay: 256.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2563) { + animation-delay: 256.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2564) { + animation-delay: 256.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2565) { + animation-delay: 256.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2566) { + animation-delay: 256.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2567) { + animation-delay: 256.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2568) { + animation-delay: 256.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2569) { + animation-delay: 256.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2570) { + animation-delay: 257s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2571) { + animation-delay: 257.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2572) { + animation-delay: 257.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2573) { + animation-delay: 257.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2574) { + animation-delay: 257.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2575) { + animation-delay: 257.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2576) { + animation-delay: 257.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2577) { + animation-delay: 257.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2578) { + animation-delay: 257.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2579) { + animation-delay: 257.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2580) { + animation-delay: 258s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2581) { + animation-delay: 258.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2582) { + animation-delay: 258.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2583) { + animation-delay: 258.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2584) { + animation-delay: 258.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2585) { + animation-delay: 258.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2586) { + animation-delay: 258.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2587) { + animation-delay: 258.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2588) { + animation-delay: 258.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2589) { + animation-delay: 258.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2590) { + animation-delay: 259s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2591) { + animation-delay: 259.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2592) { + animation-delay: 259.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2593) { + animation-delay: 259.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2594) { + animation-delay: 259.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2595) { + animation-delay: 259.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2596) { + animation-delay: 259.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2597) { + animation-delay: 259.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2598) { + animation-delay: 259.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2599) { + animation-delay: 259.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2600) { + animation-delay: 260s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2601) { + animation-delay: 260.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2602) { + animation-delay: 260.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2603) { + animation-delay: 260.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2604) { + animation-delay: 260.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2605) { + animation-delay: 260.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2606) { + animation-delay: 260.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2607) { + animation-delay: 260.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2608) { + animation-delay: 260.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2609) { + animation-delay: 260.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2610) { + animation-delay: 261s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2611) { + animation-delay: 261.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2612) { + animation-delay: 261.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2613) { + animation-delay: 261.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2614) { + animation-delay: 261.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2615) { + animation-delay: 261.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2616) { + animation-delay: 261.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2617) { + animation-delay: 261.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2618) { + animation-delay: 261.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2619) { + animation-delay: 261.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2620) { + animation-delay: 262s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2621) { + animation-delay: 262.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2622) { + animation-delay: 262.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2623) { + animation-delay: 262.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2624) { + animation-delay: 262.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2625) { + animation-delay: 262.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2626) { + animation-delay: 262.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2627) { + animation-delay: 262.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2628) { + animation-delay: 262.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2629) { + animation-delay: 262.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2630) { + animation-delay: 263s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2631) { + animation-delay: 263.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2632) { + animation-delay: 263.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2633) { + animation-delay: 263.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2634) { + animation-delay: 263.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2635) { + animation-delay: 263.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2636) { + animation-delay: 263.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2637) { + animation-delay: 263.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2638) { + animation-delay: 263.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2639) { + animation-delay: 263.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2640) { + animation-delay: 264s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2641) { + animation-delay: 264.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2642) { + animation-delay: 264.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2643) { + animation-delay: 264.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2644) { + animation-delay: 264.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2645) { + animation-delay: 264.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2646) { + animation-delay: 264.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2647) { + animation-delay: 264.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2648) { + animation-delay: 264.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2649) { + animation-delay: 264.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2650) { + animation-delay: 265s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2651) { + animation-delay: 265.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2652) { + animation-delay: 265.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2653) { + animation-delay: 265.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2654) { + animation-delay: 265.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2655) { + animation-delay: 265.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2656) { + animation-delay: 265.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2657) { + animation-delay: 265.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2658) { + animation-delay: 265.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2659) { + animation-delay: 265.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2660) { + animation-delay: 266s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2661) { + animation-delay: 266.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2662) { + animation-delay: 266.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2663) { + animation-delay: 266.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2664) { + animation-delay: 266.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2665) { + animation-delay: 266.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2666) { + animation-delay: 266.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2667) { + animation-delay: 266.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2668) { + animation-delay: 266.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2669) { + animation-delay: 266.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2670) { + animation-delay: 267s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2671) { + animation-delay: 267.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2672) { + animation-delay: 267.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2673) { + animation-delay: 267.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2674) { + animation-delay: 267.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2675) { + animation-delay: 267.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2676) { + animation-delay: 267.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2677) { + animation-delay: 267.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2678) { + animation-delay: 267.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2679) { + animation-delay: 267.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2680) { + animation-delay: 268s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2681) { + animation-delay: 268.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2682) { + animation-delay: 268.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2683) { + animation-delay: 268.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2684) { + animation-delay: 268.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2685) { + animation-delay: 268.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2686) { + animation-delay: 268.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2687) { + animation-delay: 268.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2688) { + animation-delay: 268.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2689) { + animation-delay: 268.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2690) { + animation-delay: 269s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2691) { + animation-delay: 269.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2692) { + animation-delay: 269.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2693) { + animation-delay: 269.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2694) { + animation-delay: 269.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2695) { + animation-delay: 269.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2696) { + animation-delay: 269.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2697) { + animation-delay: 269.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2698) { + animation-delay: 269.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2699) { + animation-delay: 269.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2700) { + animation-delay: 270s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2701) { + animation-delay: 270.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2702) { + animation-delay: 270.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2703) { + animation-delay: 270.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2704) { + animation-delay: 270.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2705) { + animation-delay: 270.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2706) { + animation-delay: 270.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2707) { + animation-delay: 270.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2708) { + animation-delay: 270.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2709) { + animation-delay: 270.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2710) { + animation-delay: 271s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2711) { + animation-delay: 271.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2712) { + animation-delay: 271.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2713) { + animation-delay: 271.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2714) { + animation-delay: 271.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2715) { + animation-delay: 271.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2716) { + animation-delay: 271.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2717) { + animation-delay: 271.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2718) { + animation-delay: 271.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2719) { + animation-delay: 271.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2720) { + animation-delay: 272s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2721) { + animation-delay: 272.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2722) { + animation-delay: 272.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2723) { + animation-delay: 272.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2724) { + animation-delay: 272.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2725) { + animation-delay: 272.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2726) { + animation-delay: 272.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2727) { + animation-delay: 272.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2728) { + animation-delay: 272.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2729) { + animation-delay: 272.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2730) { + animation-delay: 273s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2731) { + animation-delay: 273.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2732) { + animation-delay: 273.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2733) { + animation-delay: 273.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2734) { + animation-delay: 273.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2735) { + animation-delay: 273.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2736) { + animation-delay: 273.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2737) { + animation-delay: 273.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2738) { + animation-delay: 273.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2739) { + animation-delay: 273.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2740) { + animation-delay: 274s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2741) { + animation-delay: 274.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2742) { + animation-delay: 274.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2743) { + animation-delay: 274.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2744) { + animation-delay: 274.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2745) { + animation-delay: 274.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2746) { + animation-delay: 274.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2747) { + animation-delay: 274.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2748) { + animation-delay: 274.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2749) { + animation-delay: 274.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2750) { + animation-delay: 275s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2751) { + animation-delay: 275.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2752) { + animation-delay: 275.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2753) { + animation-delay: 275.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2754) { + animation-delay: 275.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2755) { + animation-delay: 275.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2756) { + animation-delay: 275.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2757) { + animation-delay: 275.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2758) { + animation-delay: 275.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2759) { + animation-delay: 275.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2760) { + animation-delay: 276s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2761) { + animation-delay: 276.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2762) { + animation-delay: 276.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2763) { + animation-delay: 276.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2764) { + animation-delay: 276.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2765) { + animation-delay: 276.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2766) { + animation-delay: 276.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2767) { + animation-delay: 276.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2768) { + animation-delay: 276.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2769) { + animation-delay: 276.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2770) { + animation-delay: 277s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2771) { + animation-delay: 277.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2772) { + animation-delay: 277.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2773) { + animation-delay: 277.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2774) { + animation-delay: 277.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2775) { + animation-delay: 277.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2776) { + animation-delay: 277.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2777) { + animation-delay: 277.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2778) { + animation-delay: 277.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2779) { + animation-delay: 277.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2780) { + animation-delay: 278s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2781) { + animation-delay: 278.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2782) { + animation-delay: 278.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2783) { + animation-delay: 278.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2784) { + animation-delay: 278.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2785) { + animation-delay: 278.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2786) { + animation-delay: 278.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2787) { + animation-delay: 278.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2788) { + animation-delay: 278.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2789) { + animation-delay: 278.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2790) { + animation-delay: 279s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2791) { + animation-delay: 279.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2792) { + animation-delay: 279.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2793) { + animation-delay: 279.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2794) { + animation-delay: 279.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2795) { + animation-delay: 279.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2796) { + animation-delay: 279.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2797) { + animation-delay: 279.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2798) { + animation-delay: 279.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2799) { + animation-delay: 279.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2800) { + animation-delay: 280s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2801) { + animation-delay: 280.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2802) { + animation-delay: 280.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2803) { + animation-delay: 280.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2804) { + animation-delay: 280.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2805) { + animation-delay: 280.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2806) { + animation-delay: 280.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2807) { + animation-delay: 280.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2808) { + animation-delay: 280.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2809) { + animation-delay: 280.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2810) { + animation-delay: 281s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2811) { + animation-delay: 281.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2812) { + animation-delay: 281.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2813) { + animation-delay: 281.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2814) { + animation-delay: 281.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2815) { + animation-delay: 281.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2816) { + animation-delay: 281.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2817) { + animation-delay: 281.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2818) { + animation-delay: 281.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2819) { + animation-delay: 281.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2820) { + animation-delay: 282s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2821) { + animation-delay: 282.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2822) { + animation-delay: 282.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2823) { + animation-delay: 282.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2824) { + animation-delay: 282.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2825) { + animation-delay: 282.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2826) { + animation-delay: 282.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2827) { + animation-delay: 282.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2828) { + animation-delay: 282.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2829) { + animation-delay: 282.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2830) { + animation-delay: 283s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2831) { + animation-delay: 283.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2832) { + animation-delay: 283.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2833) { + animation-delay: 283.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2834) { + animation-delay: 283.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2835) { + animation-delay: 283.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2836) { + animation-delay: 283.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2837) { + animation-delay: 283.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2838) { + animation-delay: 283.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2839) { + animation-delay: 283.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2840) { + animation-delay: 284s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2841) { + animation-delay: 284.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2842) { + animation-delay: 284.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2843) { + animation-delay: 284.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2844) { + animation-delay: 284.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2845) { + animation-delay: 284.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2846) { + animation-delay: 284.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2847) { + animation-delay: 284.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2848) { + animation-delay: 284.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2849) { + animation-delay: 284.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2850) { + animation-delay: 285s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2851) { + animation-delay: 285.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2852) { + animation-delay: 285.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2853) { + animation-delay: 285.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2854) { + animation-delay: 285.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2855) { + animation-delay: 285.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2856) { + animation-delay: 285.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2857) { + animation-delay: 285.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2858) { + animation-delay: 285.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2859) { + animation-delay: 285.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2860) { + animation-delay: 286s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2861) { + animation-delay: 286.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2862) { + animation-delay: 286.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2863) { + animation-delay: 286.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2864) { + animation-delay: 286.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2865) { + animation-delay: 286.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2866) { + animation-delay: 286.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2867) { + animation-delay: 286.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2868) { + animation-delay: 286.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2869) { + animation-delay: 286.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2870) { + animation-delay: 287s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2871) { + animation-delay: 287.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2872) { + animation-delay: 287.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2873) { + animation-delay: 287.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2874) { + animation-delay: 287.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2875) { + animation-delay: 287.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2876) { + animation-delay: 287.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2877) { + animation-delay: 287.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2878) { + animation-delay: 287.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2879) { + animation-delay: 287.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2880) { + animation-delay: 288s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2881) { + animation-delay: 288.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2882) { + animation-delay: 288.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2883) { + animation-delay: 288.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2884) { + animation-delay: 288.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2885) { + animation-delay: 288.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2886) { + animation-delay: 288.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2887) { + animation-delay: 288.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2888) { + animation-delay: 288.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2889) { + animation-delay: 288.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2890) { + animation-delay: 289s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2891) { + animation-delay: 289.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2892) { + animation-delay: 289.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2893) { + animation-delay: 289.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2894) { + animation-delay: 289.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2895) { + animation-delay: 289.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2896) { + animation-delay: 289.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2897) { + animation-delay: 289.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2898) { + animation-delay: 289.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2899) { + animation-delay: 289.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2900) { + animation-delay: 290s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2901) { + animation-delay: 290.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2902) { + animation-delay: 290.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2903) { + animation-delay: 290.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2904) { + animation-delay: 290.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2905) { + animation-delay: 290.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2906) { + animation-delay: 290.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2907) { + animation-delay: 290.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2908) { + animation-delay: 290.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2909) { + animation-delay: 290.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2910) { + animation-delay: 291s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2911) { + animation-delay: 291.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2912) { + animation-delay: 291.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2913) { + animation-delay: 291.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2914) { + animation-delay: 291.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2915) { + animation-delay: 291.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2916) { + animation-delay: 291.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2917) { + animation-delay: 291.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2918) { + animation-delay: 291.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2919) { + animation-delay: 291.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2920) { + animation-delay: 292s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2921) { + animation-delay: 292.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2922) { + animation-delay: 292.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2923) { + animation-delay: 292.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2924) { + animation-delay: 292.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2925) { + animation-delay: 292.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2926) { + animation-delay: 292.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2927) { + animation-delay: 292.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2928) { + animation-delay: 292.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2929) { + animation-delay: 292.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2930) { + animation-delay: 293s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2931) { + animation-delay: 293.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2932) { + animation-delay: 293.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2933) { + animation-delay: 293.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2934) { + animation-delay: 293.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2935) { + animation-delay: 293.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2936) { + animation-delay: 293.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2937) { + animation-delay: 293.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2938) { + animation-delay: 293.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2939) { + animation-delay: 293.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2940) { + animation-delay: 294s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2941) { + animation-delay: 294.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2942) { + animation-delay: 294.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2943) { + animation-delay: 294.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2944) { + animation-delay: 294.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2945) { + animation-delay: 294.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2946) { + animation-delay: 294.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2947) { + animation-delay: 294.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2948) { + animation-delay: 294.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2949) { + animation-delay: 294.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2950) { + animation-delay: 295s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2951) { + animation-delay: 295.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2952) { + animation-delay: 295.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2953) { + animation-delay: 295.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2954) { + animation-delay: 295.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2955) { + animation-delay: 295.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2956) { + animation-delay: 295.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2957) { + animation-delay: 295.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2958) { + animation-delay: 295.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2959) { + animation-delay: 295.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2960) { + animation-delay: 296s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2961) { + animation-delay: 296.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2962) { + animation-delay: 296.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2963) { + animation-delay: 296.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2964) { + animation-delay: 296.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2965) { + animation-delay: 296.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2966) { + animation-delay: 296.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2967) { + animation-delay: 296.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2968) { + animation-delay: 296.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2969) { + animation-delay: 296.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2970) { + animation-delay: 297s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2971) { + animation-delay: 297.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2972) { + animation-delay: 297.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2973) { + animation-delay: 297.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2974) { + animation-delay: 297.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2975) { + animation-delay: 297.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2976) { + animation-delay: 297.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2977) { + animation-delay: 297.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2978) { + animation-delay: 297.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2979) { + animation-delay: 297.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2980) { + animation-delay: 298s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2981) { + animation-delay: 298.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2982) { + animation-delay: 298.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2983) { + animation-delay: 298.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2984) { + animation-delay: 298.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2985) { + animation-delay: 298.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2986) { + animation-delay: 298.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2987) { + animation-delay: 298.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2988) { + animation-delay: 298.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2989) { + animation-delay: 298.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2990) { + animation-delay: 299s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2991) { + animation-delay: 299.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2992) { + animation-delay: 299.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2993) { + animation-delay: 299.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2994) { + animation-delay: 299.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2995) { + animation-delay: 299.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2996) { + animation-delay: 299.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2997) { + animation-delay: 299.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2998) { + animation-delay: 299.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2999) { + animation-delay: 299.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3000) { + animation-delay: 300s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3001) { + animation-delay: 300.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3002) { + animation-delay: 300.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3003) { + animation-delay: 300.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3004) { + animation-delay: 300.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3005) { + animation-delay: 300.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3006) { + animation-delay: 300.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3007) { + animation-delay: 300.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3008) { + animation-delay: 300.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3009) { + animation-delay: 300.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3010) { + animation-delay: 301s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3011) { + animation-delay: 301.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3012) { + animation-delay: 301.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3013) { + animation-delay: 301.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3014) { + animation-delay: 301.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3015) { + animation-delay: 301.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3016) { + animation-delay: 301.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3017) { + animation-delay: 301.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3018) { + animation-delay: 301.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3019) { + animation-delay: 301.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3020) { + animation-delay: 302s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3021) { + animation-delay: 302.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3022) { + animation-delay: 302.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3023) { + animation-delay: 302.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3024) { + animation-delay: 302.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3025) { + animation-delay: 302.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3026) { + animation-delay: 302.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3027) { + animation-delay: 302.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3028) { + animation-delay: 302.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3029) { + animation-delay: 302.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3030) { + animation-delay: 303s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3031) { + animation-delay: 303.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3032) { + animation-delay: 303.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3033) { + animation-delay: 303.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3034) { + animation-delay: 303.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3035) { + animation-delay: 303.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3036) { + animation-delay: 303.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3037) { + animation-delay: 303.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3038) { + animation-delay: 303.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3039) { + animation-delay: 303.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3040) { + animation-delay: 304s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3041) { + animation-delay: 304.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3042) { + animation-delay: 304.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3043) { + animation-delay: 304.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3044) { + animation-delay: 304.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3045) { + animation-delay: 304.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3046) { + animation-delay: 304.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3047) { + animation-delay: 304.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3048) { + animation-delay: 304.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3049) { + animation-delay: 304.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3050) { + animation-delay: 305s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3051) { + animation-delay: 305.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3052) { + animation-delay: 305.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3053) { + animation-delay: 305.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3054) { + animation-delay: 305.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3055) { + animation-delay: 305.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3056) { + animation-delay: 305.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3057) { + animation-delay: 305.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3058) { + animation-delay: 305.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3059) { + animation-delay: 305.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3060) { + animation-delay: 306s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3061) { + animation-delay: 306.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3062) { + animation-delay: 306.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3063) { + animation-delay: 306.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3064) { + animation-delay: 306.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3065) { + animation-delay: 306.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3066) { + animation-delay: 306.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3067) { + animation-delay: 306.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3068) { + animation-delay: 306.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3069) { + animation-delay: 306.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3070) { + animation-delay: 307s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3071) { + animation-delay: 307.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3072) { + animation-delay: 307.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3073) { + animation-delay: 307.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3074) { + animation-delay: 307.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3075) { + animation-delay: 307.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3076) { + animation-delay: 307.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3077) { + animation-delay: 307.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3078) { + animation-delay: 307.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3079) { + animation-delay: 307.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3080) { + animation-delay: 308s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3081) { + animation-delay: 308.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3082) { + animation-delay: 308.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3083) { + animation-delay: 308.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3084) { + animation-delay: 308.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3085) { + animation-delay: 308.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3086) { + animation-delay: 308.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3087) { + animation-delay: 308.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3088) { + animation-delay: 308.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3089) { + animation-delay: 308.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3090) { + animation-delay: 309s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3091) { + animation-delay: 309.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3092) { + animation-delay: 309.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3093) { + animation-delay: 309.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3094) { + animation-delay: 309.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3095) { + animation-delay: 309.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3096) { + animation-delay: 309.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3097) { + animation-delay: 309.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3098) { + animation-delay: 309.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3099) { + animation-delay: 309.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3100) { + animation-delay: 310s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3101) { + animation-delay: 310.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3102) { + animation-delay: 310.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3103) { + animation-delay: 310.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3104) { + animation-delay: 310.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3105) { + animation-delay: 310.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3106) { + animation-delay: 310.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3107) { + animation-delay: 310.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3108) { + animation-delay: 310.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3109) { + animation-delay: 310.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3110) { + animation-delay: 311s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3111) { + animation-delay: 311.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3112) { + animation-delay: 311.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3113) { + animation-delay: 311.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3114) { + animation-delay: 311.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3115) { + animation-delay: 311.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3116) { + animation-delay: 311.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3117) { + animation-delay: 311.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3118) { + animation-delay: 311.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3119) { + animation-delay: 311.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3120) { + animation-delay: 312s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3121) { + animation-delay: 312.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3122) { + animation-delay: 312.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3123) { + animation-delay: 312.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3124) { + animation-delay: 312.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3125) { + animation-delay: 312.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3126) { + animation-delay: 312.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3127) { + animation-delay: 312.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3128) { + animation-delay: 312.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3129) { + animation-delay: 312.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3130) { + animation-delay: 313s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3131) { + animation-delay: 313.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3132) { + animation-delay: 313.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3133) { + animation-delay: 313.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3134) { + animation-delay: 313.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3135) { + animation-delay: 313.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3136) { + animation-delay: 313.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3137) { + animation-delay: 313.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3138) { + animation-delay: 313.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3139) { + animation-delay: 313.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3140) { + animation-delay: 314s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3141) { + animation-delay: 314.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3142) { + animation-delay: 314.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3143) { + animation-delay: 314.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3144) { + animation-delay: 314.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3145) { + animation-delay: 314.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3146) { + animation-delay: 314.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3147) { + animation-delay: 314.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3148) { + animation-delay: 314.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3149) { + animation-delay: 314.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3150) { + animation-delay: 315s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3151) { + animation-delay: 315.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3152) { + animation-delay: 315.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3153) { + animation-delay: 315.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3154) { + animation-delay: 315.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3155) { + animation-delay: 315.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3156) { + animation-delay: 315.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3157) { + animation-delay: 315.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3158) { + animation-delay: 315.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3159) { + animation-delay: 315.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3160) { + animation-delay: 316s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3161) { + animation-delay: 316.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3162) { + animation-delay: 316.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3163) { + animation-delay: 316.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3164) { + animation-delay: 316.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3165) { + animation-delay: 316.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3166) { + animation-delay: 316.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3167) { + animation-delay: 316.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3168) { + animation-delay: 316.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3169) { + animation-delay: 316.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3170) { + animation-delay: 317s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3171) { + animation-delay: 317.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3172) { + animation-delay: 317.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3173) { + animation-delay: 317.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3174) { + animation-delay: 317.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3175) { + animation-delay: 317.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3176) { + animation-delay: 317.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3177) { + animation-delay: 317.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3178) { + animation-delay: 317.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3179) { + animation-delay: 317.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3180) { + animation-delay: 318s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3181) { + animation-delay: 318.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3182) { + animation-delay: 318.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3183) { + animation-delay: 318.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3184) { + animation-delay: 318.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3185) { + animation-delay: 318.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3186) { + animation-delay: 318.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3187) { + animation-delay: 318.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3188) { + animation-delay: 318.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3189) { + animation-delay: 318.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3190) { + animation-delay: 319s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3191) { + animation-delay: 319.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3192) { + animation-delay: 319.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3193) { + animation-delay: 319.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3194) { + animation-delay: 319.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3195) { + animation-delay: 319.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3196) { + animation-delay: 319.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3197) { + animation-delay: 319.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3198) { + animation-delay: 319.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3199) { + animation-delay: 319.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3200) { + animation-delay: 320s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3201) { + animation-delay: 320.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3202) { + animation-delay: 320.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3203) { + animation-delay: 320.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3204) { + animation-delay: 320.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3205) { + animation-delay: 320.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3206) { + animation-delay: 320.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3207) { + animation-delay: 320.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3208) { + animation-delay: 320.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3209) { + animation-delay: 320.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3210) { + animation-delay: 321s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3211) { + animation-delay: 321.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3212) { + animation-delay: 321.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3213) { + animation-delay: 321.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3214) { + animation-delay: 321.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3215) { + animation-delay: 321.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3216) { + animation-delay: 321.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3217) { + animation-delay: 321.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3218) { + animation-delay: 321.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3219) { + animation-delay: 321.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3220) { + animation-delay: 322s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3221) { + animation-delay: 322.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3222) { + animation-delay: 322.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3223) { + animation-delay: 322.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3224) { + animation-delay: 322.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3225) { + animation-delay: 322.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3226) { + animation-delay: 322.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3227) { + animation-delay: 322.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3228) { + animation-delay: 322.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3229) { + animation-delay: 322.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3230) { + animation-delay: 323s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3231) { + animation-delay: 323.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3232) { + animation-delay: 323.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3233) { + animation-delay: 323.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3234) { + animation-delay: 323.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3235) { + animation-delay: 323.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3236) { + animation-delay: 323.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3237) { + animation-delay: 323.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3238) { + animation-delay: 323.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3239) { + animation-delay: 323.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3240) { + animation-delay: 324s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3241) { + animation-delay: 324.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3242) { + animation-delay: 324.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3243) { + animation-delay: 324.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3244) { + animation-delay: 324.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3245) { + animation-delay: 324.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3246) { + animation-delay: 324.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3247) { + animation-delay: 324.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3248) { + animation-delay: 324.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3249) { + animation-delay: 324.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3250) { + animation-delay: 325s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3251) { + animation-delay: 325.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3252) { + animation-delay: 325.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3253) { + animation-delay: 325.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3254) { + animation-delay: 325.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3255) { + animation-delay: 325.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3256) { + animation-delay: 325.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3257) { + animation-delay: 325.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3258) { + animation-delay: 325.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3259) { + animation-delay: 325.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3260) { + animation-delay: 326s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3261) { + animation-delay: 326.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3262) { + animation-delay: 326.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3263) { + animation-delay: 326.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3264) { + animation-delay: 326.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3265) { + animation-delay: 326.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3266) { + animation-delay: 326.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3267) { + animation-delay: 326.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3268) { + animation-delay: 326.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3269) { + animation-delay: 326.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3270) { + animation-delay: 327s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3271) { + animation-delay: 327.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3272) { + animation-delay: 327.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3273) { + animation-delay: 327.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3274) { + animation-delay: 327.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3275) { + animation-delay: 327.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3276) { + animation-delay: 327.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3277) { + animation-delay: 327.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3278) { + animation-delay: 327.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3279) { + animation-delay: 327.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3280) { + animation-delay: 328s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3281) { + animation-delay: 328.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3282) { + animation-delay: 328.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3283) { + animation-delay: 328.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3284) { + animation-delay: 328.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3285) { + animation-delay: 328.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3286) { + animation-delay: 328.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3287) { + animation-delay: 328.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3288) { + animation-delay: 328.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3289) { + animation-delay: 328.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3290) { + animation-delay: 329s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3291) { + animation-delay: 329.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3292) { + animation-delay: 329.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3293) { + animation-delay: 329.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3294) { + animation-delay: 329.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3295) { + animation-delay: 329.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3296) { + animation-delay: 329.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3297) { + animation-delay: 329.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3298) { + animation-delay: 329.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3299) { + animation-delay: 329.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3300) { + animation-delay: 330s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3301) { + animation-delay: 330.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3302) { + animation-delay: 330.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3303) { + animation-delay: 330.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3304) { + animation-delay: 330.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3305) { + animation-delay: 330.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3306) { + animation-delay: 330.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3307) { + animation-delay: 330.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3308) { + animation-delay: 330.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3309) { + animation-delay: 330.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3310) { + animation-delay: 331s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3311) { + animation-delay: 331.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3312) { + animation-delay: 331.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3313) { + animation-delay: 331.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3314) { + animation-delay: 331.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3315) { + animation-delay: 331.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3316) { + animation-delay: 331.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3317) { + animation-delay: 331.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3318) { + animation-delay: 331.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3319) { + animation-delay: 331.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3320) { + animation-delay: 332s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3321) { + animation-delay: 332.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3322) { + animation-delay: 332.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3323) { + animation-delay: 332.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3324) { + animation-delay: 332.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3325) { + animation-delay: 332.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3326) { + animation-delay: 332.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3327) { + animation-delay: 332.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3328) { + animation-delay: 332.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3329) { + animation-delay: 332.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3330) { + animation-delay: 333s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3331) { + animation-delay: 333.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3332) { + animation-delay: 333.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3333) { + animation-delay: 333.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3334) { + animation-delay: 333.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3335) { + animation-delay: 333.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3336) { + animation-delay: 333.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3337) { + animation-delay: 333.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3338) { + animation-delay: 333.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3339) { + animation-delay: 333.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3340) { + animation-delay: 334s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3341) { + animation-delay: 334.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3342) { + animation-delay: 334.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3343) { + animation-delay: 334.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3344) { + animation-delay: 334.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3345) { + animation-delay: 334.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3346) { + animation-delay: 334.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3347) { + animation-delay: 334.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3348) { + animation-delay: 334.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3349) { + animation-delay: 334.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3350) { + animation-delay: 335s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3351) { + animation-delay: 335.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3352) { + animation-delay: 335.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3353) { + animation-delay: 335.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3354) { + animation-delay: 335.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3355) { + animation-delay: 335.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3356) { + animation-delay: 335.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3357) { + animation-delay: 335.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3358) { + animation-delay: 335.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3359) { + animation-delay: 335.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3360) { + animation-delay: 336s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3361) { + animation-delay: 336.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3362) { + animation-delay: 336.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3363) { + animation-delay: 336.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3364) { + animation-delay: 336.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3365) { + animation-delay: 336.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3366) { + animation-delay: 336.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3367) { + animation-delay: 336.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3368) { + animation-delay: 336.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3369) { + animation-delay: 336.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3370) { + animation-delay: 337s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3371) { + animation-delay: 337.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3372) { + animation-delay: 337.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3373) { + animation-delay: 337.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3374) { + animation-delay: 337.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3375) { + animation-delay: 337.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3376) { + animation-delay: 337.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3377) { + animation-delay: 337.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3378) { + animation-delay: 337.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3379) { + animation-delay: 337.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3380) { + animation-delay: 338s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3381) { + animation-delay: 338.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3382) { + animation-delay: 338.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3383) { + animation-delay: 338.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3384) { + animation-delay: 338.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3385) { + animation-delay: 338.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3386) { + animation-delay: 338.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3387) { + animation-delay: 338.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3388) { + animation-delay: 338.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3389) { + animation-delay: 338.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3390) { + animation-delay: 339s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3391) { + animation-delay: 339.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3392) { + animation-delay: 339.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3393) { + animation-delay: 339.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3394) { + animation-delay: 339.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3395) { + animation-delay: 339.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3396) { + animation-delay: 339.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3397) { + animation-delay: 339.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3398) { + animation-delay: 339.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3399) { + animation-delay: 339.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3400) { + animation-delay: 340s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3401) { + animation-delay: 340.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3402) { + animation-delay: 340.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3403) { + animation-delay: 340.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3404) { + animation-delay: 340.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3405) { + animation-delay: 340.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3406) { + animation-delay: 340.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3407) { + animation-delay: 340.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3408) { + animation-delay: 340.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3409) { + animation-delay: 340.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3410) { + animation-delay: 341s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3411) { + animation-delay: 341.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3412) { + animation-delay: 341.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3413) { + animation-delay: 341.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3414) { + animation-delay: 341.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3415) { + animation-delay: 341.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3416) { + animation-delay: 341.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3417) { + animation-delay: 341.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3418) { + animation-delay: 341.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3419) { + animation-delay: 341.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3420) { + animation-delay: 342s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3421) { + animation-delay: 342.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3422) { + animation-delay: 342.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3423) { + animation-delay: 342.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3424) { + animation-delay: 342.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3425) { + animation-delay: 342.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3426) { + animation-delay: 342.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3427) { + animation-delay: 342.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3428) { + animation-delay: 342.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3429) { + animation-delay: 342.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3430) { + animation-delay: 343s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3431) { + animation-delay: 343.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3432) { + animation-delay: 343.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3433) { + animation-delay: 343.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3434) { + animation-delay: 343.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3435) { + animation-delay: 343.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3436) { + animation-delay: 343.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3437) { + animation-delay: 343.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3438) { + animation-delay: 343.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3439) { + animation-delay: 343.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3440) { + animation-delay: 344s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3441) { + animation-delay: 344.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3442) { + animation-delay: 344.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3443) { + animation-delay: 344.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3444) { + animation-delay: 344.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3445) { + animation-delay: 344.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3446) { + animation-delay: 344.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3447) { + animation-delay: 344.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3448) { + animation-delay: 344.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3449) { + animation-delay: 344.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3450) { + animation-delay: 345s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3451) { + animation-delay: 345.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3452) { + animation-delay: 345.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3453) { + animation-delay: 345.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3454) { + animation-delay: 345.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3455) { + animation-delay: 345.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3456) { + animation-delay: 345.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3457) { + animation-delay: 345.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3458) { + animation-delay: 345.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3459) { + animation-delay: 345.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3460) { + animation-delay: 346s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3461) { + animation-delay: 346.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3462) { + animation-delay: 346.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3463) { + animation-delay: 346.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3464) { + animation-delay: 346.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3465) { + animation-delay: 346.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3466) { + animation-delay: 346.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3467) { + animation-delay: 346.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3468) { + animation-delay: 346.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3469) { + animation-delay: 346.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3470) { + animation-delay: 347s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3471) { + animation-delay: 347.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3472) { + animation-delay: 347.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3473) { + animation-delay: 347.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3474) { + animation-delay: 347.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3475) { + animation-delay: 347.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3476) { + animation-delay: 347.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3477) { + animation-delay: 347.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3478) { + animation-delay: 347.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3479) { + animation-delay: 347.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3480) { + animation-delay: 348s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3481) { + animation-delay: 348.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3482) { + animation-delay: 348.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3483) { + animation-delay: 348.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3484) { + animation-delay: 348.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3485) { + animation-delay: 348.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3486) { + animation-delay: 348.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3487) { + animation-delay: 348.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3488) { + animation-delay: 348.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3489) { + animation-delay: 348.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3490) { + animation-delay: 349s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3491) { + animation-delay: 349.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3492) { + animation-delay: 349.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3493) { + animation-delay: 349.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3494) { + animation-delay: 349.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3495) { + animation-delay: 349.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3496) { + animation-delay: 349.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3497) { + animation-delay: 349.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3498) { + animation-delay: 349.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3499) { + animation-delay: 349.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3500) { + animation-delay: 350s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3501) { + animation-delay: 350.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3502) { + animation-delay: 350.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3503) { + animation-delay: 350.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3504) { + animation-delay: 350.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3505) { + animation-delay: 350.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3506) { + animation-delay: 350.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3507) { + animation-delay: 350.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3508) { + animation-delay: 350.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3509) { + animation-delay: 350.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3510) { + animation-delay: 351s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3511) { + animation-delay: 351.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3512) { + animation-delay: 351.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3513) { + animation-delay: 351.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3514) { + animation-delay: 351.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3515) { + animation-delay: 351.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3516) { + animation-delay: 351.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3517) { + animation-delay: 351.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3518) { + animation-delay: 351.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3519) { + animation-delay: 351.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3520) { + animation-delay: 352s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3521) { + animation-delay: 352.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3522) { + animation-delay: 352.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3523) { + animation-delay: 352.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3524) { + animation-delay: 352.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3525) { + animation-delay: 352.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3526) { + animation-delay: 352.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3527) { + animation-delay: 352.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3528) { + animation-delay: 352.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3529) { + animation-delay: 352.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3530) { + animation-delay: 353s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3531) { + animation-delay: 353.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3532) { + animation-delay: 353.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3533) { + animation-delay: 353.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3534) { + animation-delay: 353.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3535) { + animation-delay: 353.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3536) { + animation-delay: 353.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3537) { + animation-delay: 353.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3538) { + animation-delay: 353.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3539) { + animation-delay: 353.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3540) { + animation-delay: 354s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3541) { + animation-delay: 354.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3542) { + animation-delay: 354.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3543) { + animation-delay: 354.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3544) { + animation-delay: 354.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3545) { + animation-delay: 354.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3546) { + animation-delay: 354.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3547) { + animation-delay: 354.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3548) { + animation-delay: 354.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3549) { + animation-delay: 354.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3550) { + animation-delay: 355s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3551) { + animation-delay: 355.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3552) { + animation-delay: 355.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3553) { + animation-delay: 355.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3554) { + animation-delay: 355.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3555) { + animation-delay: 355.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3556) { + animation-delay: 355.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3557) { + animation-delay: 355.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3558) { + animation-delay: 355.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3559) { + animation-delay: 355.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3560) { + animation-delay: 356s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3561) { + animation-delay: 356.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3562) { + animation-delay: 356.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3563) { + animation-delay: 356.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3564) { + animation-delay: 356.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3565) { + animation-delay: 356.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3566) { + animation-delay: 356.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3567) { + animation-delay: 356.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3568) { + animation-delay: 356.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3569) { + animation-delay: 356.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3570) { + animation-delay: 357s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3571) { + animation-delay: 357.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3572) { + animation-delay: 357.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3573) { + animation-delay: 357.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3574) { + animation-delay: 357.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3575) { + animation-delay: 357.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3576) { + animation-delay: 357.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3577) { + animation-delay: 357.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3578) { + animation-delay: 357.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3579) { + animation-delay: 357.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3580) { + animation-delay: 358s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3581) { + animation-delay: 358.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3582) { + animation-delay: 358.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3583) { + animation-delay: 358.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3584) { + animation-delay: 358.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3585) { + animation-delay: 358.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3586) { + animation-delay: 358.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3587) { + animation-delay: 358.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3588) { + animation-delay: 358.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3589) { + animation-delay: 358.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3590) { + animation-delay: 359s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3591) { + animation-delay: 359.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3592) { + animation-delay: 359.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3593) { + animation-delay: 359.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3594) { + animation-delay: 359.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3595) { + animation-delay: 359.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3596) { + animation-delay: 359.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3597) { + animation-delay: 359.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3598) { + animation-delay: 359.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3599) { + animation-delay: 359.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3600) { + animation-delay: 360s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3601) { + animation-delay: 360.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3602) { + animation-delay: 360.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3603) { + animation-delay: 360.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3604) { + animation-delay: 360.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3605) { + animation-delay: 360.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3606) { + animation-delay: 360.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3607) { + animation-delay: 360.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3608) { + animation-delay: 360.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3609) { + animation-delay: 360.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3610) { + animation-delay: 361s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3611) { + animation-delay: 361.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3612) { + animation-delay: 361.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3613) { + animation-delay: 361.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3614) { + animation-delay: 361.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3615) { + animation-delay: 361.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3616) { + animation-delay: 361.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3617) { + animation-delay: 361.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3618) { + animation-delay: 361.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3619) { + animation-delay: 361.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3620) { + animation-delay: 362s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3621) { + animation-delay: 362.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3622) { + animation-delay: 362.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3623) { + animation-delay: 362.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3624) { + animation-delay: 362.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3625) { + animation-delay: 362.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3626) { + animation-delay: 362.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3627) { + animation-delay: 362.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3628) { + animation-delay: 362.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3629) { + animation-delay: 362.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3630) { + animation-delay: 363s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3631) { + animation-delay: 363.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3632) { + animation-delay: 363.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3633) { + animation-delay: 363.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3634) { + animation-delay: 363.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3635) { + animation-delay: 363.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3636) { + animation-delay: 363.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3637) { + animation-delay: 363.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3638) { + animation-delay: 363.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3639) { + animation-delay: 363.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3640) { + animation-delay: 364s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3641) { + animation-delay: 364.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3642) { + animation-delay: 364.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3643) { + animation-delay: 364.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3644) { + animation-delay: 364.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3645) { + animation-delay: 364.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3646) { + animation-delay: 364.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3647) { + animation-delay: 364.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3648) { + animation-delay: 364.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3649) { + animation-delay: 364.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3650) { + animation-delay: 365s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3651) { + animation-delay: 365.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3652) { + animation-delay: 365.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3653) { + animation-delay: 365.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3654) { + animation-delay: 365.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3655) { + animation-delay: 365.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3656) { + animation-delay: 365.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3657) { + animation-delay: 365.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3658) { + animation-delay: 365.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3659) { + animation-delay: 365.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3660) { + animation-delay: 366s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3661) { + animation-delay: 366.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3662) { + animation-delay: 366.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3663) { + animation-delay: 366.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3664) { + animation-delay: 366.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3665) { + animation-delay: 366.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3666) { + animation-delay: 366.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3667) { + animation-delay: 366.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3668) { + animation-delay: 366.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3669) { + animation-delay: 366.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3670) { + animation-delay: 367s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3671) { + animation-delay: 367.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3672) { + animation-delay: 367.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3673) { + animation-delay: 367.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3674) { + animation-delay: 367.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3675) { + animation-delay: 367.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3676) { + animation-delay: 367.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3677) { + animation-delay: 367.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3678) { + animation-delay: 367.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3679) { + animation-delay: 367.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3680) { + animation-delay: 368s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3681) { + animation-delay: 368.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3682) { + animation-delay: 368.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3683) { + animation-delay: 368.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3684) { + animation-delay: 368.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3685) { + animation-delay: 368.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3686) { + animation-delay: 368.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3687) { + animation-delay: 368.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3688) { + animation-delay: 368.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3689) { + animation-delay: 368.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3690) { + animation-delay: 369s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3691) { + animation-delay: 369.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3692) { + animation-delay: 369.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3693) { + animation-delay: 369.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3694) { + animation-delay: 369.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3695) { + animation-delay: 369.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3696) { + animation-delay: 369.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3697) { + animation-delay: 369.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3698) { + animation-delay: 369.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3699) { + animation-delay: 369.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3700) { + animation-delay: 370s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3701) { + animation-delay: 370.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3702) { + animation-delay: 370.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3703) { + animation-delay: 370.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3704) { + animation-delay: 370.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3705) { + animation-delay: 370.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3706) { + animation-delay: 370.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3707) { + animation-delay: 370.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3708) { + animation-delay: 370.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3709) { + animation-delay: 370.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3710) { + animation-delay: 371s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3711) { + animation-delay: 371.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3712) { + animation-delay: 371.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3713) { + animation-delay: 371.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3714) { + animation-delay: 371.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3715) { + animation-delay: 371.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3716) { + animation-delay: 371.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3717) { + animation-delay: 371.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3718) { + animation-delay: 371.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3719) { + animation-delay: 371.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3720) { + animation-delay: 372s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3721) { + animation-delay: 372.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3722) { + animation-delay: 372.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3723) { + animation-delay: 372.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3724) { + animation-delay: 372.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3725) { + animation-delay: 372.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3726) { + animation-delay: 372.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3727) { + animation-delay: 372.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3728) { + animation-delay: 372.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3729) { + animation-delay: 372.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3730) { + animation-delay: 373s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3731) { + animation-delay: 373.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3732) { + animation-delay: 373.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3733) { + animation-delay: 373.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3734) { + animation-delay: 373.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3735) { + animation-delay: 373.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3736) { + animation-delay: 373.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3737) { + animation-delay: 373.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3738) { + animation-delay: 373.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3739) { + animation-delay: 373.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3740) { + animation-delay: 374s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3741) { + animation-delay: 374.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3742) { + animation-delay: 374.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3743) { + animation-delay: 374.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3744) { + animation-delay: 374.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3745) { + animation-delay: 374.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3746) { + animation-delay: 374.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3747) { + animation-delay: 374.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3748) { + animation-delay: 374.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3749) { + animation-delay: 374.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3750) { + animation-delay: 375s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3751) { + animation-delay: 375.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3752) { + animation-delay: 375.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3753) { + animation-delay: 375.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3754) { + animation-delay: 375.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3755) { + animation-delay: 375.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3756) { + animation-delay: 375.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3757) { + animation-delay: 375.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3758) { + animation-delay: 375.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3759) { + animation-delay: 375.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3760) { + animation-delay: 376s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3761) { + animation-delay: 376.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3762) { + animation-delay: 376.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3763) { + animation-delay: 376.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3764) { + animation-delay: 376.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3765) { + animation-delay: 376.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3766) { + animation-delay: 376.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3767) { + animation-delay: 376.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3768) { + animation-delay: 376.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3769) { + animation-delay: 376.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3770) { + animation-delay: 377s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3771) { + animation-delay: 377.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3772) { + animation-delay: 377.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3773) { + animation-delay: 377.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3774) { + animation-delay: 377.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3775) { + animation-delay: 377.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3776) { + animation-delay: 377.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3777) { + animation-delay: 377.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3778) { + animation-delay: 377.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3779) { + animation-delay: 377.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3780) { + animation-delay: 378s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3781) { + animation-delay: 378.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3782) { + animation-delay: 378.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3783) { + animation-delay: 378.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3784) { + animation-delay: 378.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3785) { + animation-delay: 378.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3786) { + animation-delay: 378.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3787) { + animation-delay: 378.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3788) { + animation-delay: 378.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3789) { + animation-delay: 378.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3790) { + animation-delay: 379s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3791) { + animation-delay: 379.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3792) { + animation-delay: 379.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3793) { + animation-delay: 379.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3794) { + animation-delay: 379.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3795) { + animation-delay: 379.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3796) { + animation-delay: 379.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3797) { + animation-delay: 379.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3798) { + animation-delay: 379.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3799) { + animation-delay: 379.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3800) { + animation-delay: 380s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3801) { + animation-delay: 380.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3802) { + animation-delay: 380.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3803) { + animation-delay: 380.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3804) { + animation-delay: 380.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3805) { + animation-delay: 380.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3806) { + animation-delay: 380.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3807) { + animation-delay: 380.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3808) { + animation-delay: 380.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3809) { + animation-delay: 380.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3810) { + animation-delay: 381s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3811) { + animation-delay: 381.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3812) { + animation-delay: 381.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3813) { + animation-delay: 381.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3814) { + animation-delay: 381.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3815) { + animation-delay: 381.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3816) { + animation-delay: 381.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3817) { + animation-delay: 381.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3818) { + animation-delay: 381.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3819) { + animation-delay: 381.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3820) { + animation-delay: 382s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3821) { + animation-delay: 382.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3822) { + animation-delay: 382.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3823) { + animation-delay: 382.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3824) { + animation-delay: 382.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3825) { + animation-delay: 382.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3826) { + animation-delay: 382.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3827) { + animation-delay: 382.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3828) { + animation-delay: 382.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3829) { + animation-delay: 382.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3830) { + animation-delay: 383s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3831) { + animation-delay: 383.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3832) { + animation-delay: 383.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3833) { + animation-delay: 383.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3834) { + animation-delay: 383.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3835) { + animation-delay: 383.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3836) { + animation-delay: 383.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3837) { + animation-delay: 383.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3838) { + animation-delay: 383.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3839) { + animation-delay: 383.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3840) { + animation-delay: 384s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3841) { + animation-delay: 384.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3842) { + animation-delay: 384.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3843) { + animation-delay: 384.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3844) { + animation-delay: 384.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3845) { + animation-delay: 384.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3846) { + animation-delay: 384.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3847) { + animation-delay: 384.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3848) { + animation-delay: 384.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3849) { + animation-delay: 384.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3850) { + animation-delay: 385s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3851) { + animation-delay: 385.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3852) { + animation-delay: 385.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3853) { + animation-delay: 385.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3854) { + animation-delay: 385.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3855) { + animation-delay: 385.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3856) { + animation-delay: 385.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3857) { + animation-delay: 385.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3858) { + animation-delay: 385.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3859) { + animation-delay: 385.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3860) { + animation-delay: 386s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3861) { + animation-delay: 386.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3862) { + animation-delay: 386.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3863) { + animation-delay: 386.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3864) { + animation-delay: 386.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3865) { + animation-delay: 386.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3866) { + animation-delay: 386.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3867) { + animation-delay: 386.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3868) { + animation-delay: 386.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3869) { + animation-delay: 386.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3870) { + animation-delay: 387s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3871) { + animation-delay: 387.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3872) { + animation-delay: 387.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3873) { + animation-delay: 387.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3874) { + animation-delay: 387.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3875) { + animation-delay: 387.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3876) { + animation-delay: 387.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3877) { + animation-delay: 387.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3878) { + animation-delay: 387.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3879) { + animation-delay: 387.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3880) { + animation-delay: 388s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3881) { + animation-delay: 388.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3882) { + animation-delay: 388.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3883) { + animation-delay: 388.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3884) { + animation-delay: 388.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3885) { + animation-delay: 388.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3886) { + animation-delay: 388.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3887) { + animation-delay: 388.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3888) { + animation-delay: 388.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3889) { + animation-delay: 388.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3890) { + animation-delay: 389s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3891) { + animation-delay: 389.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3892) { + animation-delay: 389.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3893) { + animation-delay: 389.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3894) { + animation-delay: 389.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3895) { + animation-delay: 389.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3896) { + animation-delay: 389.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3897) { + animation-delay: 389.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3898) { + animation-delay: 389.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3899) { + animation-delay: 389.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3900) { + animation-delay: 390s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3901) { + animation-delay: 390.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3902) { + animation-delay: 390.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3903) { + animation-delay: 390.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3904) { + animation-delay: 390.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3905) { + animation-delay: 390.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3906) { + animation-delay: 390.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3907) { + animation-delay: 390.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3908) { + animation-delay: 390.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3909) { + animation-delay: 390.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3910) { + animation-delay: 391s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3911) { + animation-delay: 391.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3912) { + animation-delay: 391.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3913) { + animation-delay: 391.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3914) { + animation-delay: 391.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3915) { + animation-delay: 391.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3916) { + animation-delay: 391.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3917) { + animation-delay: 391.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3918) { + animation-delay: 391.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3919) { + animation-delay: 391.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3920) { + animation-delay: 392s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3921) { + animation-delay: 392.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3922) { + animation-delay: 392.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3923) { + animation-delay: 392.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3924) { + animation-delay: 392.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3925) { + animation-delay: 392.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3926) { + animation-delay: 392.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3927) { + animation-delay: 392.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3928) { + animation-delay: 392.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3929) { + animation-delay: 392.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3930) { + animation-delay: 393s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3931) { + animation-delay: 393.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3932) { + animation-delay: 393.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3933) { + animation-delay: 393.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3934) { + animation-delay: 393.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3935) { + animation-delay: 393.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3936) { + animation-delay: 393.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3937) { + animation-delay: 393.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3938) { + animation-delay: 393.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3939) { + animation-delay: 393.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3940) { + animation-delay: 394s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3941) { + animation-delay: 394.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3942) { + animation-delay: 394.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3943) { + animation-delay: 394.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3944) { + animation-delay: 394.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3945) { + animation-delay: 394.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3946) { + animation-delay: 394.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3947) { + animation-delay: 394.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3948) { + animation-delay: 394.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3949) { + animation-delay: 394.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3950) { + animation-delay: 395s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3951) { + animation-delay: 395.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3952) { + animation-delay: 395.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3953) { + animation-delay: 395.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3954) { + animation-delay: 395.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3955) { + animation-delay: 395.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3956) { + animation-delay: 395.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3957) { + animation-delay: 395.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3958) { + animation-delay: 395.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3959) { + animation-delay: 395.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3960) { + animation-delay: 396s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3961) { + animation-delay: 396.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3962) { + animation-delay: 396.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3963) { + animation-delay: 396.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3964) { + animation-delay: 396.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3965) { + animation-delay: 396.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3966) { + animation-delay: 396.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3967) { + animation-delay: 396.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3968) { + animation-delay: 396.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3969) { + animation-delay: 396.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3970) { + animation-delay: 397s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3971) { + animation-delay: 397.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3972) { + animation-delay: 397.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3973) { + animation-delay: 397.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3974) { + animation-delay: 397.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3975) { + animation-delay: 397.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3976) { + animation-delay: 397.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3977) { + animation-delay: 397.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3978) { + animation-delay: 397.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3979) { + animation-delay: 397.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3980) { + animation-delay: 398s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3981) { + animation-delay: 398.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3982) { + animation-delay: 398.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3983) { + animation-delay: 398.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3984) { + animation-delay: 398.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3985) { + animation-delay: 398.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3986) { + animation-delay: 398.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3987) { + animation-delay: 398.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3988) { + animation-delay: 398.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3989) { + animation-delay: 398.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3990) { + animation-delay: 399s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3991) { + animation-delay: 399.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3992) { + animation-delay: 399.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3993) { + animation-delay: 399.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3994) { + animation-delay: 399.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3995) { + animation-delay: 399.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3996) { + animation-delay: 399.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3997) { + animation-delay: 399.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3998) { + animation-delay: 399.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3999) { + animation-delay: 399.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4000) { + animation-delay: 400s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4001) { + animation-delay: 400.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4002) { + animation-delay: 400.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4003) { + animation-delay: 400.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4004) { + animation-delay: 400.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4005) { + animation-delay: 400.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4006) { + animation-delay: 400.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4007) { + animation-delay: 400.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4008) { + animation-delay: 400.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4009) { + animation-delay: 400.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4010) { + animation-delay: 401s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4011) { + animation-delay: 401.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4012) { + animation-delay: 401.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4013) { + animation-delay: 401.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4014) { + animation-delay: 401.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4015) { + animation-delay: 401.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4016) { + animation-delay: 401.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4017) { + animation-delay: 401.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4018) { + animation-delay: 401.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4019) { + animation-delay: 401.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4020) { + animation-delay: 402s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4021) { + animation-delay: 402.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4022) { + animation-delay: 402.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4023) { + animation-delay: 402.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4024) { + animation-delay: 402.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4025) { + animation-delay: 402.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4026) { + animation-delay: 402.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4027) { + animation-delay: 402.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4028) { + animation-delay: 402.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4029) { + animation-delay: 402.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4030) { + animation-delay: 403s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4031) { + animation-delay: 403.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4032) { + animation-delay: 403.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4033) { + animation-delay: 403.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4034) { + animation-delay: 403.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4035) { + animation-delay: 403.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4036) { + animation-delay: 403.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4037) { + animation-delay: 403.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4038) { + animation-delay: 403.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4039) { + animation-delay: 403.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4040) { + animation-delay: 404s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4041) { + animation-delay: 404.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4042) { + animation-delay: 404.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4043) { + animation-delay: 404.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4044) { + animation-delay: 404.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4045) { + animation-delay: 404.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4046) { + animation-delay: 404.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4047) { + animation-delay: 404.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4048) { + animation-delay: 404.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4049) { + animation-delay: 404.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4050) { + animation-delay: 405s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4051) { + animation-delay: 405.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4052) { + animation-delay: 405.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4053) { + animation-delay: 405.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4054) { + animation-delay: 405.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4055) { + animation-delay: 405.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4056) { + animation-delay: 405.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4057) { + animation-delay: 405.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4058) { + animation-delay: 405.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4059) { + animation-delay: 405.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4060) { + animation-delay: 406s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4061) { + animation-delay: 406.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4062) { + animation-delay: 406.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4063) { + animation-delay: 406.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4064) { + animation-delay: 406.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4065) { + animation-delay: 406.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4066) { + animation-delay: 406.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4067) { + animation-delay: 406.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4068) { + animation-delay: 406.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4069) { + animation-delay: 406.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4070) { + animation-delay: 407s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4071) { + animation-delay: 407.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4072) { + animation-delay: 407.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4073) { + animation-delay: 407.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4074) { + animation-delay: 407.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4075) { + animation-delay: 407.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4076) { + animation-delay: 407.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4077) { + animation-delay: 407.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4078) { + animation-delay: 407.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4079) { + animation-delay: 407.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4080) { + animation-delay: 408s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4081) { + animation-delay: 408.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4082) { + animation-delay: 408.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4083) { + animation-delay: 408.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4084) { + animation-delay: 408.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4085) { + animation-delay: 408.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4086) { + animation-delay: 408.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4087) { + animation-delay: 408.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4088) { + animation-delay: 408.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4089) { + animation-delay: 408.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4090) { + animation-delay: 409s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4091) { + animation-delay: 409.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4092) { + animation-delay: 409.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4093) { + animation-delay: 409.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4094) { + animation-delay: 409.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4095) { + animation-delay: 409.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4096) { + animation-delay: 409.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4097) { + animation-delay: 409.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4098) { + animation-delay: 409.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4099) { + animation-delay: 409.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4100) { + animation-delay: 410s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4101) { + animation-delay: 410.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4102) { + animation-delay: 410.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4103) { + animation-delay: 410.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4104) { + animation-delay: 410.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4105) { + animation-delay: 410.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4106) { + animation-delay: 410.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4107) { + animation-delay: 410.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4108) { + animation-delay: 410.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4109) { + animation-delay: 410.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4110) { + animation-delay: 411s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4111) { + animation-delay: 411.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4112) { + animation-delay: 411.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4113) { + animation-delay: 411.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4114) { + animation-delay: 411.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4115) { + animation-delay: 411.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4116) { + animation-delay: 411.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4117) { + animation-delay: 411.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4118) { + animation-delay: 411.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4119) { + animation-delay: 411.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4120) { + animation-delay: 412s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4121) { + animation-delay: 412.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4122) { + animation-delay: 412.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4123) { + animation-delay: 412.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4124) { + animation-delay: 412.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4125) { + animation-delay: 412.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4126) { + animation-delay: 412.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4127) { + animation-delay: 412.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4128) { + animation-delay: 412.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4129) { + animation-delay: 412.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4130) { + animation-delay: 413s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4131) { + animation-delay: 413.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4132) { + animation-delay: 413.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4133) { + animation-delay: 413.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4134) { + animation-delay: 413.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4135) { + animation-delay: 413.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4136) { + animation-delay: 413.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4137) { + animation-delay: 413.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4138) { + animation-delay: 413.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4139) { + animation-delay: 413.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4140) { + animation-delay: 414s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4141) { + animation-delay: 414.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4142) { + animation-delay: 414.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4143) { + animation-delay: 414.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4144) { + animation-delay: 414.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4145) { + animation-delay: 414.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4146) { + animation-delay: 414.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4147) { + animation-delay: 414.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4148) { + animation-delay: 414.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4149) { + animation-delay: 414.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4150) { + animation-delay: 415s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4151) { + animation-delay: 415.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4152) { + animation-delay: 415.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4153) { + animation-delay: 415.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4154) { + animation-delay: 415.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4155) { + animation-delay: 415.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4156) { + animation-delay: 415.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4157) { + animation-delay: 415.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4158) { + animation-delay: 415.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4159) { + animation-delay: 415.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4160) { + animation-delay: 416s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4161) { + animation-delay: 416.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4162) { + animation-delay: 416.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4163) { + animation-delay: 416.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4164) { + animation-delay: 416.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4165) { + animation-delay: 416.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4166) { + animation-delay: 416.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4167) { + animation-delay: 416.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4168) { + animation-delay: 416.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4169) { + animation-delay: 416.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4170) { + animation-delay: 417s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4171) { + animation-delay: 417.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4172) { + animation-delay: 417.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4173) { + animation-delay: 417.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4174) { + animation-delay: 417.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4175) { + animation-delay: 417.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4176) { + animation-delay: 417.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4177) { + animation-delay: 417.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4178) { + animation-delay: 417.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4179) { + animation-delay: 417.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4180) { + animation-delay: 418s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4181) { + animation-delay: 418.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4182) { + animation-delay: 418.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4183) { + animation-delay: 418.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4184) { + animation-delay: 418.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4185) { + animation-delay: 418.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4186) { + animation-delay: 418.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4187) { + animation-delay: 418.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4188) { + animation-delay: 418.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4189) { + animation-delay: 418.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4190) { + animation-delay: 419s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4191) { + animation-delay: 419.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4192) { + animation-delay: 419.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4193) { + animation-delay: 419.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4194) { + animation-delay: 419.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4195) { + animation-delay: 419.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4196) { + animation-delay: 419.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4197) { + animation-delay: 419.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4198) { + animation-delay: 419.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4199) { + animation-delay: 419.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4200) { + animation-delay: 420s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4201) { + animation-delay: 420.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4202) { + animation-delay: 420.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4203) { + animation-delay: 420.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4204) { + animation-delay: 420.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4205) { + animation-delay: 420.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4206) { + animation-delay: 420.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4207) { + animation-delay: 420.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4208) { + animation-delay: 420.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4209) { + animation-delay: 420.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4210) { + animation-delay: 421s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4211) { + animation-delay: 421.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4212) { + animation-delay: 421.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4213) { + animation-delay: 421.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4214) { + animation-delay: 421.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4215) { + animation-delay: 421.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4216) { + animation-delay: 421.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4217) { + animation-delay: 421.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4218) { + animation-delay: 421.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4219) { + animation-delay: 421.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4220) { + animation-delay: 422s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4221) { + animation-delay: 422.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4222) { + animation-delay: 422.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4223) { + animation-delay: 422.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4224) { + animation-delay: 422.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4225) { + animation-delay: 422.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4226) { + animation-delay: 422.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4227) { + animation-delay: 422.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4228) { + animation-delay: 422.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4229) { + animation-delay: 422.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4230) { + animation-delay: 423s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4231) { + animation-delay: 423.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4232) { + animation-delay: 423.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4233) { + animation-delay: 423.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4234) { + animation-delay: 423.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4235) { + animation-delay: 423.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4236) { + animation-delay: 423.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4237) { + animation-delay: 423.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4238) { + animation-delay: 423.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4239) { + animation-delay: 423.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4240) { + animation-delay: 424s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4241) { + animation-delay: 424.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4242) { + animation-delay: 424.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4243) { + animation-delay: 424.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4244) { + animation-delay: 424.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4245) { + animation-delay: 424.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4246) { + animation-delay: 424.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4247) { + animation-delay: 424.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4248) { + animation-delay: 424.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4249) { + animation-delay: 424.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4250) { + animation-delay: 425s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4251) { + animation-delay: 425.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4252) { + animation-delay: 425.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4253) { + animation-delay: 425.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4254) { + animation-delay: 425.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4255) { + animation-delay: 425.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4256) { + animation-delay: 425.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4257) { + animation-delay: 425.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4258) { + animation-delay: 425.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4259) { + animation-delay: 425.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4260) { + animation-delay: 426s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4261) { + animation-delay: 426.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4262) { + animation-delay: 426.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4263) { + animation-delay: 426.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4264) { + animation-delay: 426.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4265) { + animation-delay: 426.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4266) { + animation-delay: 426.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4267) { + animation-delay: 426.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4268) { + animation-delay: 426.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4269) { + animation-delay: 426.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4270) { + animation-delay: 427s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4271) { + animation-delay: 427.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4272) { + animation-delay: 427.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4273) { + animation-delay: 427.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4274) { + animation-delay: 427.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4275) { + animation-delay: 427.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4276) { + animation-delay: 427.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4277) { + animation-delay: 427.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4278) { + animation-delay: 427.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4279) { + animation-delay: 427.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4280) { + animation-delay: 428s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4281) { + animation-delay: 428.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4282) { + animation-delay: 428.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4283) { + animation-delay: 428.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4284) { + animation-delay: 428.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4285) { + animation-delay: 428.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4286) { + animation-delay: 428.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4287) { + animation-delay: 428.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4288) { + animation-delay: 428.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4289) { + animation-delay: 428.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4290) { + animation-delay: 429s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4291) { + animation-delay: 429.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4292) { + animation-delay: 429.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4293) { + animation-delay: 429.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4294) { + animation-delay: 429.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4295) { + animation-delay: 429.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4296) { + animation-delay: 429.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4297) { + animation-delay: 429.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4298) { + animation-delay: 429.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4299) { + animation-delay: 429.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4300) { + animation-delay: 430s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4301) { + animation-delay: 430.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4302) { + animation-delay: 430.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4303) { + animation-delay: 430.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4304) { + animation-delay: 430.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4305) { + animation-delay: 430.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4306) { + animation-delay: 430.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4307) { + animation-delay: 430.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4308) { + animation-delay: 430.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4309) { + animation-delay: 430.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4310) { + animation-delay: 431s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4311) { + animation-delay: 431.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4312) { + animation-delay: 431.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4313) { + animation-delay: 431.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4314) { + animation-delay: 431.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4315) { + animation-delay: 431.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4316) { + animation-delay: 431.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4317) { + animation-delay: 431.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4318) { + animation-delay: 431.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4319) { + animation-delay: 431.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4320) { + animation-delay: 432s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4321) { + animation-delay: 432.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4322) { + animation-delay: 432.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4323) { + animation-delay: 432.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4324) { + animation-delay: 432.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4325) { + animation-delay: 432.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4326) { + animation-delay: 432.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4327) { + animation-delay: 432.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4328) { + animation-delay: 432.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4329) { + animation-delay: 432.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4330) { + animation-delay: 433s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4331) { + animation-delay: 433.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4332) { + animation-delay: 433.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4333) { + animation-delay: 433.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4334) { + animation-delay: 433.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4335) { + animation-delay: 433.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4336) { + animation-delay: 433.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4337) { + animation-delay: 433.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4338) { + animation-delay: 433.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4339) { + animation-delay: 433.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4340) { + animation-delay: 434s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4341) { + animation-delay: 434.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4342) { + animation-delay: 434.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4343) { + animation-delay: 434.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4344) { + animation-delay: 434.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4345) { + animation-delay: 434.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4346) { + animation-delay: 434.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4347) { + animation-delay: 434.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4348) { + animation-delay: 434.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4349) { + animation-delay: 434.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4350) { + animation-delay: 435s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4351) { + animation-delay: 435.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4352) { + animation-delay: 435.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4353) { + animation-delay: 435.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4354) { + animation-delay: 435.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4355) { + animation-delay: 435.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4356) { + animation-delay: 435.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4357) { + animation-delay: 435.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4358) { + animation-delay: 435.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4359) { + animation-delay: 435.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4360) { + animation-delay: 436s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4361) { + animation-delay: 436.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4362) { + animation-delay: 436.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4363) { + animation-delay: 436.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4364) { + animation-delay: 436.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4365) { + animation-delay: 436.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4366) { + animation-delay: 436.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4367) { + animation-delay: 436.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4368) { + animation-delay: 436.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4369) { + animation-delay: 436.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4370) { + animation-delay: 437s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4371) { + animation-delay: 437.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4372) { + animation-delay: 437.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4373) { + animation-delay: 437.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4374) { + animation-delay: 437.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4375) { + animation-delay: 437.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4376) { + animation-delay: 437.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4377) { + animation-delay: 437.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4378) { + animation-delay: 437.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4379) { + animation-delay: 437.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4380) { + animation-delay: 438s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4381) { + animation-delay: 438.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4382) { + animation-delay: 438.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4383) { + animation-delay: 438.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4384) { + animation-delay: 438.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4385) { + animation-delay: 438.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4386) { + animation-delay: 438.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4387) { + animation-delay: 438.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4388) { + animation-delay: 438.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4389) { + animation-delay: 438.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4390) { + animation-delay: 439s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4391) { + animation-delay: 439.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4392) { + animation-delay: 439.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4393) { + animation-delay: 439.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4394) { + animation-delay: 439.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4395) { + animation-delay: 439.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4396) { + animation-delay: 439.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4397) { + animation-delay: 439.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4398) { + animation-delay: 439.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4399) { + animation-delay: 439.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4400) { + animation-delay: 440s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4401) { + animation-delay: 440.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4402) { + animation-delay: 440.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4403) { + animation-delay: 440.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4404) { + animation-delay: 440.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4405) { + animation-delay: 440.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4406) { + animation-delay: 440.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4407) { + animation-delay: 440.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4408) { + animation-delay: 440.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4409) { + animation-delay: 440.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4410) { + animation-delay: 441s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4411) { + animation-delay: 441.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4412) { + animation-delay: 441.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4413) { + animation-delay: 441.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4414) { + animation-delay: 441.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4415) { + animation-delay: 441.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4416) { + animation-delay: 441.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4417) { + animation-delay: 441.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4418) { + animation-delay: 441.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4419) { + animation-delay: 441.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4420) { + animation-delay: 442s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4421) { + animation-delay: 442.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4422) { + animation-delay: 442.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4423) { + animation-delay: 442.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4424) { + animation-delay: 442.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4425) { + animation-delay: 442.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4426) { + animation-delay: 442.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4427) { + animation-delay: 442.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4428) { + animation-delay: 442.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4429) { + animation-delay: 442.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4430) { + animation-delay: 443s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4431) { + animation-delay: 443.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4432) { + animation-delay: 443.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4433) { + animation-delay: 443.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4434) { + animation-delay: 443.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4435) { + animation-delay: 443.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4436) { + animation-delay: 443.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4437) { + animation-delay: 443.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4438) { + animation-delay: 443.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4439) { + animation-delay: 443.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4440) { + animation-delay: 444s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4441) { + animation-delay: 444.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4442) { + animation-delay: 444.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4443) { + animation-delay: 444.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4444) { + animation-delay: 444.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4445) { + animation-delay: 444.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4446) { + animation-delay: 444.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4447) { + animation-delay: 444.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4448) { + animation-delay: 444.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4449) { + animation-delay: 444.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4450) { + animation-delay: 445s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4451) { + animation-delay: 445.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4452) { + animation-delay: 445.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4453) { + animation-delay: 445.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4454) { + animation-delay: 445.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4455) { + animation-delay: 445.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4456) { + animation-delay: 445.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4457) { + animation-delay: 445.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4458) { + animation-delay: 445.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4459) { + animation-delay: 445.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4460) { + animation-delay: 446s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4461) { + animation-delay: 446.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4462) { + animation-delay: 446.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4463) { + animation-delay: 446.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4464) { + animation-delay: 446.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4465) { + animation-delay: 446.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4466) { + animation-delay: 446.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4467) { + animation-delay: 446.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4468) { + animation-delay: 446.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4469) { + animation-delay: 446.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4470) { + animation-delay: 447s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4471) { + animation-delay: 447.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4472) { + animation-delay: 447.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4473) { + animation-delay: 447.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4474) { + animation-delay: 447.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4475) { + animation-delay: 447.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4476) { + animation-delay: 447.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4477) { + animation-delay: 447.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4478) { + animation-delay: 447.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4479) { + animation-delay: 447.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4480) { + animation-delay: 448s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4481) { + animation-delay: 448.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4482) { + animation-delay: 448.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4483) { + animation-delay: 448.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4484) { + animation-delay: 448.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4485) { + animation-delay: 448.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4486) { + animation-delay: 448.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4487) { + animation-delay: 448.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4488) { + animation-delay: 448.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4489) { + animation-delay: 448.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4490) { + animation-delay: 449s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4491) { + animation-delay: 449.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4492) { + animation-delay: 449.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4493) { + animation-delay: 449.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4494) { + animation-delay: 449.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4495) { + animation-delay: 449.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4496) { + animation-delay: 449.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4497) { + animation-delay: 449.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4498) { + animation-delay: 449.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4499) { + animation-delay: 449.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4500) { + animation-delay: 450s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4501) { + animation-delay: 450.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4502) { + animation-delay: 450.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4503) { + animation-delay: 450.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4504) { + animation-delay: 450.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4505) { + animation-delay: 450.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4506) { + animation-delay: 450.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4507) { + animation-delay: 450.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4508) { + animation-delay: 450.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4509) { + animation-delay: 450.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4510) { + animation-delay: 451s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4511) { + animation-delay: 451.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4512) { + animation-delay: 451.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4513) { + animation-delay: 451.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4514) { + animation-delay: 451.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4515) { + animation-delay: 451.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4516) { + animation-delay: 451.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4517) { + animation-delay: 451.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4518) { + animation-delay: 451.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4519) { + animation-delay: 451.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4520) { + animation-delay: 452s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4521) { + animation-delay: 452.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4522) { + animation-delay: 452.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4523) { + animation-delay: 452.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4524) { + animation-delay: 452.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4525) { + animation-delay: 452.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4526) { + animation-delay: 452.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4527) { + animation-delay: 452.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4528) { + animation-delay: 452.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4529) { + animation-delay: 452.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4530) { + animation-delay: 453s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4531) { + animation-delay: 453.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4532) { + animation-delay: 453.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4533) { + animation-delay: 453.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4534) { + animation-delay: 453.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4535) { + animation-delay: 453.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4536) { + animation-delay: 453.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4537) { + animation-delay: 453.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4538) { + animation-delay: 453.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4539) { + animation-delay: 453.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4540) { + animation-delay: 454s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4541) { + animation-delay: 454.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4542) { + animation-delay: 454.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4543) { + animation-delay: 454.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4544) { + animation-delay: 454.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4545) { + animation-delay: 454.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4546) { + animation-delay: 454.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4547) { + animation-delay: 454.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4548) { + animation-delay: 454.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4549) { + animation-delay: 454.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4550) { + animation-delay: 455s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4551) { + animation-delay: 455.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4552) { + animation-delay: 455.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4553) { + animation-delay: 455.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4554) { + animation-delay: 455.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4555) { + animation-delay: 455.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4556) { + animation-delay: 455.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4557) { + animation-delay: 455.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4558) { + animation-delay: 455.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4559) { + animation-delay: 455.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4560) { + animation-delay: 456s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4561) { + animation-delay: 456.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4562) { + animation-delay: 456.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4563) { + animation-delay: 456.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4564) { + animation-delay: 456.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4565) { + animation-delay: 456.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4566) { + animation-delay: 456.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4567) { + animation-delay: 456.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4568) { + animation-delay: 456.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4569) { + animation-delay: 456.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4570) { + animation-delay: 457s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4571) { + animation-delay: 457.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4572) { + animation-delay: 457.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4573) { + animation-delay: 457.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4574) { + animation-delay: 457.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4575) { + animation-delay: 457.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4576) { + animation-delay: 457.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4577) { + animation-delay: 457.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4578) { + animation-delay: 457.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4579) { + animation-delay: 457.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4580) { + animation-delay: 458s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4581) { + animation-delay: 458.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4582) { + animation-delay: 458.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4583) { + animation-delay: 458.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4584) { + animation-delay: 458.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4585) { + animation-delay: 458.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4586) { + animation-delay: 458.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4587) { + animation-delay: 458.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4588) { + animation-delay: 458.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4589) { + animation-delay: 458.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4590) { + animation-delay: 459s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4591) { + animation-delay: 459.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4592) { + animation-delay: 459.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4593) { + animation-delay: 459.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4594) { + animation-delay: 459.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4595) { + animation-delay: 459.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4596) { + animation-delay: 459.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4597) { + animation-delay: 459.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4598) { + animation-delay: 459.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4599) { + animation-delay: 459.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4600) { + animation-delay: 460s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4601) { + animation-delay: 460.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4602) { + animation-delay: 460.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4603) { + animation-delay: 460.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4604) { + animation-delay: 460.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4605) { + animation-delay: 460.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4606) { + animation-delay: 460.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4607) { + animation-delay: 460.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4608) { + animation-delay: 460.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4609) { + animation-delay: 460.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4610) { + animation-delay: 461s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4611) { + animation-delay: 461.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4612) { + animation-delay: 461.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4613) { + animation-delay: 461.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4614) { + animation-delay: 461.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4615) { + animation-delay: 461.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4616) { + animation-delay: 461.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4617) { + animation-delay: 461.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4618) { + animation-delay: 461.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4619) { + animation-delay: 461.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4620) { + animation-delay: 462s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4621) { + animation-delay: 462.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4622) { + animation-delay: 462.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4623) { + animation-delay: 462.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4624) { + animation-delay: 462.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4625) { + animation-delay: 462.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4626) { + animation-delay: 462.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4627) { + animation-delay: 462.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4628) { + animation-delay: 462.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4629) { + animation-delay: 462.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4630) { + animation-delay: 463s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4631) { + animation-delay: 463.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4632) { + animation-delay: 463.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4633) { + animation-delay: 463.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4634) { + animation-delay: 463.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4635) { + animation-delay: 463.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4636) { + animation-delay: 463.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4637) { + animation-delay: 463.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4638) { + animation-delay: 463.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4639) { + animation-delay: 463.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4640) { + animation-delay: 464s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4641) { + animation-delay: 464.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4642) { + animation-delay: 464.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4643) { + animation-delay: 464.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4644) { + animation-delay: 464.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4645) { + animation-delay: 464.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4646) { + animation-delay: 464.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4647) { + animation-delay: 464.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4648) { + animation-delay: 464.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4649) { + animation-delay: 464.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4650) { + animation-delay: 465s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4651) { + animation-delay: 465.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4652) { + animation-delay: 465.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4653) { + animation-delay: 465.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4654) { + animation-delay: 465.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4655) { + animation-delay: 465.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4656) { + animation-delay: 465.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4657) { + animation-delay: 465.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4658) { + animation-delay: 465.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4659) { + animation-delay: 465.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4660) { + animation-delay: 466s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4661) { + animation-delay: 466.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4662) { + animation-delay: 466.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4663) { + animation-delay: 466.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4664) { + animation-delay: 466.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4665) { + animation-delay: 466.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4666) { + animation-delay: 466.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4667) { + animation-delay: 466.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4668) { + animation-delay: 466.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4669) { + animation-delay: 466.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4670) { + animation-delay: 467s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4671) { + animation-delay: 467.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4672) { + animation-delay: 467.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4673) { + animation-delay: 467.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4674) { + animation-delay: 467.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4675) { + animation-delay: 467.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4676) { + animation-delay: 467.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4677) { + animation-delay: 467.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4678) { + animation-delay: 467.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4679) { + animation-delay: 467.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4680) { + animation-delay: 468s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4681) { + animation-delay: 468.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4682) { + animation-delay: 468.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4683) { + animation-delay: 468.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4684) { + animation-delay: 468.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4685) { + animation-delay: 468.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4686) { + animation-delay: 468.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4687) { + animation-delay: 468.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4688) { + animation-delay: 468.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4689) { + animation-delay: 468.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4690) { + animation-delay: 469s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4691) { + animation-delay: 469.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4692) { + animation-delay: 469.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4693) { + animation-delay: 469.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4694) { + animation-delay: 469.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4695) { + animation-delay: 469.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4696) { + animation-delay: 469.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4697) { + animation-delay: 469.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4698) { + animation-delay: 469.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4699) { + animation-delay: 469.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4700) { + animation-delay: 470s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4701) { + animation-delay: 470.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4702) { + animation-delay: 470.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4703) { + animation-delay: 470.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4704) { + animation-delay: 470.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4705) { + animation-delay: 470.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4706) { + animation-delay: 470.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4707) { + animation-delay: 470.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4708) { + animation-delay: 470.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4709) { + animation-delay: 470.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4710) { + animation-delay: 471s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4711) { + animation-delay: 471.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4712) { + animation-delay: 471.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4713) { + animation-delay: 471.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4714) { + animation-delay: 471.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4715) { + animation-delay: 471.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4716) { + animation-delay: 471.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4717) { + animation-delay: 471.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4718) { + animation-delay: 471.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4719) { + animation-delay: 471.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4720) { + animation-delay: 472s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4721) { + animation-delay: 472.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4722) { + animation-delay: 472.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4723) { + animation-delay: 472.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4724) { + animation-delay: 472.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4725) { + animation-delay: 472.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4726) { + animation-delay: 472.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4727) { + animation-delay: 472.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4728) { + animation-delay: 472.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4729) { + animation-delay: 472.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4730) { + animation-delay: 473s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4731) { + animation-delay: 473.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4732) { + animation-delay: 473.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4733) { + animation-delay: 473.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4734) { + animation-delay: 473.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4735) { + animation-delay: 473.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4736) { + animation-delay: 473.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4737) { + animation-delay: 473.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4738) { + animation-delay: 473.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4739) { + animation-delay: 473.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4740) { + animation-delay: 474s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4741) { + animation-delay: 474.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4742) { + animation-delay: 474.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4743) { + animation-delay: 474.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4744) { + animation-delay: 474.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4745) { + animation-delay: 474.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4746) { + animation-delay: 474.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4747) { + animation-delay: 474.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4748) { + animation-delay: 474.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4749) { + animation-delay: 474.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4750) { + animation-delay: 475s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4751) { + animation-delay: 475.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4752) { + animation-delay: 475.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4753) { + animation-delay: 475.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4754) { + animation-delay: 475.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4755) { + animation-delay: 475.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4756) { + animation-delay: 475.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4757) { + animation-delay: 475.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4758) { + animation-delay: 475.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4759) { + animation-delay: 475.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4760) { + animation-delay: 476s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4761) { + animation-delay: 476.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4762) { + animation-delay: 476.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4763) { + animation-delay: 476.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4764) { + animation-delay: 476.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4765) { + animation-delay: 476.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4766) { + animation-delay: 476.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4767) { + animation-delay: 476.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4768) { + animation-delay: 476.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4769) { + animation-delay: 476.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4770) { + animation-delay: 477s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4771) { + animation-delay: 477.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4772) { + animation-delay: 477.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4773) { + animation-delay: 477.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4774) { + animation-delay: 477.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4775) { + animation-delay: 477.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4776) { + animation-delay: 477.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4777) { + animation-delay: 477.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4778) { + animation-delay: 477.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4779) { + animation-delay: 477.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4780) { + animation-delay: 478s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4781) { + animation-delay: 478.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4782) { + animation-delay: 478.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4783) { + animation-delay: 478.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4784) { + animation-delay: 478.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4785) { + animation-delay: 478.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4786) { + animation-delay: 478.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4787) { + animation-delay: 478.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4788) { + animation-delay: 478.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4789) { + animation-delay: 478.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4790) { + animation-delay: 479s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4791) { + animation-delay: 479.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4792) { + animation-delay: 479.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4793) { + animation-delay: 479.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4794) { + animation-delay: 479.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4795) { + animation-delay: 479.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4796) { + animation-delay: 479.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4797) { + animation-delay: 479.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4798) { + animation-delay: 479.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4799) { + animation-delay: 479.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4800) { + animation-delay: 480s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4801) { + animation-delay: 480.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4802) { + animation-delay: 480.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4803) { + animation-delay: 480.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4804) { + animation-delay: 480.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4805) { + animation-delay: 480.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4806) { + animation-delay: 480.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4807) { + animation-delay: 480.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4808) { + animation-delay: 480.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4809) { + animation-delay: 480.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4810) { + animation-delay: 481s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4811) { + animation-delay: 481.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4812) { + animation-delay: 481.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4813) { + animation-delay: 481.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4814) { + animation-delay: 481.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4815) { + animation-delay: 481.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4816) { + animation-delay: 481.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4817) { + animation-delay: 481.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4818) { + animation-delay: 481.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4819) { + animation-delay: 481.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4820) { + animation-delay: 482s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4821) { + animation-delay: 482.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4822) { + animation-delay: 482.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4823) { + animation-delay: 482.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4824) { + animation-delay: 482.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4825) { + animation-delay: 482.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4826) { + animation-delay: 482.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4827) { + animation-delay: 482.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4828) { + animation-delay: 482.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4829) { + animation-delay: 482.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4830) { + animation-delay: 483s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4831) { + animation-delay: 483.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4832) { + animation-delay: 483.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4833) { + animation-delay: 483.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4834) { + animation-delay: 483.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4835) { + animation-delay: 483.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4836) { + animation-delay: 483.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4837) { + animation-delay: 483.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4838) { + animation-delay: 483.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4839) { + animation-delay: 483.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4840) { + animation-delay: 484s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4841) { + animation-delay: 484.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4842) { + animation-delay: 484.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4843) { + animation-delay: 484.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4844) { + animation-delay: 484.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4845) { + animation-delay: 484.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4846) { + animation-delay: 484.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4847) { + animation-delay: 484.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4848) { + animation-delay: 484.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4849) { + animation-delay: 484.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4850) { + animation-delay: 485s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4851) { + animation-delay: 485.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4852) { + animation-delay: 485.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4853) { + animation-delay: 485.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4854) { + animation-delay: 485.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4855) { + animation-delay: 485.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4856) { + animation-delay: 485.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4857) { + animation-delay: 485.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4858) { + animation-delay: 485.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4859) { + animation-delay: 485.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4860) { + animation-delay: 486s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4861) { + animation-delay: 486.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4862) { + animation-delay: 486.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4863) { + animation-delay: 486.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4864) { + animation-delay: 486.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4865) { + animation-delay: 486.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4866) { + animation-delay: 486.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4867) { + animation-delay: 486.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4868) { + animation-delay: 486.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4869) { + animation-delay: 486.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4870) { + animation-delay: 487s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4871) { + animation-delay: 487.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4872) { + animation-delay: 487.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4873) { + animation-delay: 487.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4874) { + animation-delay: 487.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4875) { + animation-delay: 487.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4876) { + animation-delay: 487.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4877) { + animation-delay: 487.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4878) { + animation-delay: 487.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4879) { + animation-delay: 487.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4880) { + animation-delay: 488s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4881) { + animation-delay: 488.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4882) { + animation-delay: 488.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4883) { + animation-delay: 488.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4884) { + animation-delay: 488.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4885) { + animation-delay: 488.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4886) { + animation-delay: 488.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4887) { + animation-delay: 488.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4888) { + animation-delay: 488.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4889) { + animation-delay: 488.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4890) { + animation-delay: 489s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4891) { + animation-delay: 489.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4892) { + animation-delay: 489.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4893) { + animation-delay: 489.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4894) { + animation-delay: 489.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4895) { + animation-delay: 489.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4896) { + animation-delay: 489.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4897) { + animation-delay: 489.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4898) { + animation-delay: 489.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4899) { + animation-delay: 489.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4900) { + animation-delay: 490s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4901) { + animation-delay: 490.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4902) { + animation-delay: 490.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4903) { + animation-delay: 490.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4904) { + animation-delay: 490.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4905) { + animation-delay: 490.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4906) { + animation-delay: 490.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4907) { + animation-delay: 490.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4908) { + animation-delay: 490.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4909) { + animation-delay: 490.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4910) { + animation-delay: 491s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4911) { + animation-delay: 491.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4912) { + animation-delay: 491.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4913) { + animation-delay: 491.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4914) { + animation-delay: 491.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4915) { + animation-delay: 491.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4916) { + animation-delay: 491.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4917) { + animation-delay: 491.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4918) { + animation-delay: 491.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4919) { + animation-delay: 491.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4920) { + animation-delay: 492s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4921) { + animation-delay: 492.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4922) { + animation-delay: 492.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4923) { + animation-delay: 492.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4924) { + animation-delay: 492.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4925) { + animation-delay: 492.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4926) { + animation-delay: 492.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4927) { + animation-delay: 492.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4928) { + animation-delay: 492.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4929) { + animation-delay: 492.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4930) { + animation-delay: 493s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4931) { + animation-delay: 493.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4932) { + animation-delay: 493.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4933) { + animation-delay: 493.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4934) { + animation-delay: 493.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4935) { + animation-delay: 493.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4936) { + animation-delay: 493.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4937) { + animation-delay: 493.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4938) { + animation-delay: 493.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4939) { + animation-delay: 493.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4940) { + animation-delay: 494s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4941) { + animation-delay: 494.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4942) { + animation-delay: 494.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4943) { + animation-delay: 494.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4944) { + animation-delay: 494.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4945) { + animation-delay: 494.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4946) { + animation-delay: 494.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4947) { + animation-delay: 494.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4948) { + animation-delay: 494.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4949) { + animation-delay: 494.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4950) { + animation-delay: 495s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4951) { + animation-delay: 495.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4952) { + animation-delay: 495.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4953) { + animation-delay: 495.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4954) { + animation-delay: 495.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4955) { + animation-delay: 495.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4956) { + animation-delay: 495.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4957) { + animation-delay: 495.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4958) { + animation-delay: 495.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4959) { + animation-delay: 495.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4960) { + animation-delay: 496s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4961) { + animation-delay: 496.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4962) { + animation-delay: 496.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4963) { + animation-delay: 496.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4964) { + animation-delay: 496.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4965) { + animation-delay: 496.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4966) { + animation-delay: 496.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4967) { + animation-delay: 496.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4968) { + animation-delay: 496.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4969) { + animation-delay: 496.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4970) { + animation-delay: 497s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4971) { + animation-delay: 497.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4972) { + animation-delay: 497.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4973) { + animation-delay: 497.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4974) { + animation-delay: 497.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4975) { + animation-delay: 497.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4976) { + animation-delay: 497.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4977) { + animation-delay: 497.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4978) { + animation-delay: 497.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4979) { + animation-delay: 497.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4980) { + animation-delay: 498s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4981) { + animation-delay: 498.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4982) { + animation-delay: 498.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4983) { + animation-delay: 498.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4984) { + animation-delay: 498.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4985) { + animation-delay: 498.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4986) { + animation-delay: 498.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4987) { + animation-delay: 498.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4988) { + animation-delay: 498.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4989) { + animation-delay: 498.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4990) { + animation-delay: 499s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4991) { + animation-delay: 499.1s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4992) { + animation-delay: 499.2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4993) { + animation-delay: 499.3s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4994) { + animation-delay: 499.4s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4995) { + animation-delay: 499.5s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4996) { + animation-delay: 499.6s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4997) { + animation-delay: 499.7s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4998) { + animation-delay: 499.8s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4999) { + animation-delay: 499.9s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(5000) { + animation-delay: 500s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li { + cursor: pointer; + transition: all .2s; + animation: fadeIn 0.5s linear; + animation-fill-mode: both; + position: relative; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li.media { + padding: 1.5rem 1rem; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li.media:hover { + transform: translateY(-4px); + box-shadow: 0 3px 10px 0 #ccc; + transition: all .2s; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li.media .media-left { + display: flex; + align-items: center; + flex-direction: column; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li.media .media-body { + width: calc(100vw - (100vw - 100%) - 60px); + overflow: hidden; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .avatar, .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .avatar img { + height: 40px; + width: 40px; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .avatar img { + border: 2px solid #fff; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li.mail-read { + background-color: #ededed; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:not(:first-child) { + border-top: 1px solid #dae1e7; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details { + display: flex; + justify-content: space-between; + margin-bottom: .75rem; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details .list-group-item-text { + color: #626262; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .mail-date { + color: #626262; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .mail-message p { + color: #626262; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper .user-action { + display: flex; + align-items: center; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper .user-action .favorite i { + font-size: 1.2rem; + line-height: 1.5; } + .email-application .app-content .content-area-wrapper .email-user-list .no-results { + display: none; + padding: 1.5rem; + text-align: center; } + .email-application .app-content .content-area-wrapper .email-user-list .no-results.show { + display: block; } + +.email-application .app-action { + padding: 1rem; + display: flex; + justify-content: space-between; + border-bottom: 1px solid #dae1e7; } + .email-application .app-action .action-left .selectAll { + margin: .25rem 0 0.108rem; } + .email-application .app-action .action-left .selectAll .vs-checkbox { + margin-right: 1rem; } + .email-application .app-action .action-right ul li:not(:last-child) { + margin-right: 1rem; } + .email-application .app-action .action-right .dropdown-toggle { + color: #626262; + white-space: normal; } + .email-application .app-action .action-right .dropdown-toggle::after { + display: none; } + .email-application .app-action .action-right i { + font-size: 1.5rem; + margin-right: 0; } + +.email-application .email-app-details { + position: absolute; + display: block; + z-index: 2; + visibility: hidden; + opacity: 0; + top: 0; + width: calc(100% - 260px); + background-color: #f8f8f8; + transform: translateX(100%); + transition: all .3s ease; + height: 100%; + border-left: 1px solid #dae1e7; } + .email-application .email-app-details.show { + visibility: visible; + transition: all .3s ease; + opacity: 1; + transform: translateX(0%); + transition: all .3s ease; } + .email-application .email-app-details .email-detail-header { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04); + border-bottom: 1px solid #eee; + position: relative; + padding: 1.643rem 2rem 0; + background-color: #fff; } + .email-application .email-app-details .email-header-right .dropdown-toggle { + color: #626262; } + .email-application .email-app-details .email-scroll-area { + padding: 0 2rem; + position: relative; + height: calc(100vh - 18.75rem); + height: calc(var(--vh, 1vh) * 100 - 18.75rem); } + .email-application .email-app-details .email-scroll-area .email-detail-head { + border-bottom: 1px solid #dae1e7; + padding: 1.5rem 1rem .75rem; } + .email-application .email-app-details .email-scroll-area .email-detail-head .mail-meta-item { + text-align: right; } + .email-application .email-app-details .email-scroll-area .card-body.mail-message-wrapper { + border-bottom: 1px solid #dae1e7 !important; } + .email-application .email-app-details .email-scroll-area .mail-label { + letter-spacing: .25px; } + .email-application .email-app-details .email-scroll-area .email-info-dropup .dropdown-toggle::after { + left: 0; + margin: 0; } + .email-application .email-app-details .email-scroll-area .mail-message p { + margin-bottom: 1.5rem; } + .email-application .email-app-details .email-scroll-area .mail-attachements { + text-transform: uppercase; } + +.email-application .ql-editor { + height: 150px; } + +@media (max-width: 767.98px) { + .email-application .sidebar-content .sidebar-close-icon { + visibility: visible !important; } } + +@media (max-width: 991.98px) { + .email-application .app-content .sidebar-left { + position: relative; } + .email-application .app-content .sidebar-left .email-app-sidebar { + transform: translateX(-110%); + transition: all .3s ease-in-out; + left: 0; + position: fixed; + z-index: 5; + left: -2px; } + .email-application .app-content .sidebar-left.show .email-app-sidebar { + transform: translateX(13%); + transition: all .3s ease; + display: block; } + .email-application .app-content .content-right { + width: 100%; } + .email-application .app-content .content-right .app-fixed-search { + border-top-left-radius: 0.5rem; } + .email-application .app-content .content-right .email-app-details { + width: 100%; + border-radius: 0.5rem; } + .email-application .app-content .content-right .email-app-details .email-scroll-area { + height: calc(100vh - 21.5rem); + height: calc(var(--vh, 1vh) * 100 - 21.5rem); } } + +@media (max-width: 575.98px) { + .email-application .sidebar-left .email-app-sidebar { + left: -1.12rem !important; } + .email-application .email-detail-head .mail-meta-item { + display: flex; + justify-content: space-between; } + .email-application .email-detail-head .mail-meta-item .mail-date, .email-application .email-detail-head .mail-meta-item .mail-time { + margin: 1rem .75rem 0 0; } + .email-application .app-content .content-right .email-app-details .email-scroll-area { + height: calc(100vh - 23.25rem); + height: calc(var(--vh, 1vh) * 100 - 23.25rem); } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details { + display: block; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details .mail-items { + width: 70%; + display: inline-grid; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details .mail-meta-item { + width: 15%; + position: absolute; + right: 1rem; + top: 1.5rem; } + .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details .mail-meta-item i, .email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details .mail-meta-item .bullet { + display: none; } } + +@media (max-width: 349.98px) { + .email-application .content-area-wrapper .sidebar .email-app-sidebar { + width: 230px; + left: 3px; } + .email-application .app-content .content-area-wrapper .email-user-list { + height: calc(100vh - 22.3rem); + height: calc(var(--vh, 1vh) * 100 - 22.3rem); } + .email-application .email-app-details .email-detail-header { + padding: 0 1.2rem; } + .email-application .email-app-details .email-detail-header .email-prev, .email-application .email-app-details .email-detail-header .email-next { + display: none; } } + +@-webkit-keyframes fadeIn { + 0% { + opacity: 0; + top: 100px; } + 75% { + opacity: 0.5; + top: 0px; } + 100% { + opacity: 1; } } diff --git a/assets/css/pages/app-email.min.css b/assets/css/pages/app-email.min.css new file mode 100644 index 0000000..21cac6a --- /dev/null +++ b/assets/css/pages/app-email.min.css @@ -0,0 +1 @@ +.email-application .content-area-wrapper{border:1px solid #DAE1E7;border-radius:.25rem}.email-application .content-area-wrapper .sidebar .email-app-sidebar{width:260px;height:calc(100vh - 13rem);height:calc(var(--vh,1vh) * 100 - 13rem);background-color:#FFF;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;-webkit-transition:all .3s ease;transition:all .3s ease}.email-application .content-area-wrapper .sidebar .email-app-sidebar .sidebar-close-icon{position:absolute;right:.25rem;top:.25rem;cursor:pointer;font-size:1.25rem;z-index:5;visibility:hidden}.email-application .content-area-wrapper .sidebar .email-app-sidebar .email-app-menu{width:100%;padding-bottom:.5rem;box-shadow:0 0 15px 0 rgba(0,0,0,.05);z-index:3}.email-application .content-area-wrapper .sidebar .email-app-sidebar .email-app-menu .compose-btn{padding:1px 1.5rem;margin-bottom:.25rem}.email-application .content-area-wrapper .sidebar .email-app-sidebar .email-app-menu .badge{padding:.5rem .68rem}.email-application .content-area-wrapper .sidebar .email-app-sidebar .email-app-menu .sidebar-menu-list{padding:0 1.5rem;position:relative;height:calc(100% - 6.4rem)}.email-application .content-area-wrapper .sidebar .email-app-sidebar .email-app-menu .list-group .list-group-item i{top:3px}.email-application .content-area-wrapper .sidebar .email-app-sidebar .email-app-menu hr{margin-left:-1.5rem;margin-right:-1.5rem}.email-application .content-area-wrapper .sidebar .list-group .list-group-item{padding-left:0;padding-right:0}.email-application .content-area-wrapper .sidebar .list-group .list-group-item:focus,.email-application .content-area-wrapper .sidebar .list-group .list-group-item:hover{background-color:transparent;color:#626262}.email-application .content-area-wrapper .sidebar .list-group .list-group-item.active{background:0 0;color:#7367F0}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .mail-date,.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .mail-message p,.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details .list-group-item-text,.email-application .email-app-details .email-header-right .dropdown-toggle{color:#626262}.email-application .content-area-wrapper .content-right{width:calc(100% - 260px)}.email-application .content-area-wrapper .content-right .content-wrapper{padding:0}.email-application .content-area-wrapper .content-right .email-app-list-wrapper{border-left:1px solid #DAE1E7}.email-application .content-area-wrapper .content-right .app-fixed-search{padding:.35rem .1rem;border-bottom:1px solid #DAE1E7;background-color:#FFF;border-top-right-radius:.5rem}.email-application .content-area-wrapper .content-right .app-fixed-search .form-control-position{font-size:calc(1rem * 1.1)}.email-application .content-area-wrapper .content-right .app-fixed-search input{border:0;background-color:transparent}.email-application .content-area-wrapper .content-right .app-fixed-search input:focus{border-color:transparent;box-shadow:none}.email-application .content-area-wrapper .content-right .action-icon{cursor:pointer}.email-application .app-content .content-area-wrapper{position:relative}.email-application .app-content .content-area-wrapper .sidebar-toggle{cursor:pointer;margin:.5rem .99rem;float:left;line-height:1}.email-application .app-content .content-area-wrapper .sidebar-toggle i{font-size:1.75rem}.email-application .app-content .content-area-wrapper .go-back{cursor:pointer}.email-application .app-content .content-area-wrapper .app-content-overlay{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:2;visibility:hidden;opacity:0;-webkit-transition:all .3s ease;transition:all .3s ease}.email-application .app-content .content-area-wrapper .app-content-overlay.show{visibility:visible;-webkit-transition:all .3s ease;transition:all .3s ease;opacity:1;background-color:rgba(0,0,0,.2);border-radius:.5rem}.email-application .app-content .content-area-wrapper .email-user-list{position:relative;height:calc(100vh - 20.3rem);height:calc(var(--vh,1vh) * 100 - 20.3rem)}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper{padding:0;margin:0}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1){-webkit-animation-delay:.1s;animation-delay:.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3){-webkit-animation-delay:.3s;animation-delay:.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4){-webkit-animation-delay:.4s;animation-delay:.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(5){-webkit-animation-delay:.5s;animation-delay:.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(6){-webkit-animation-delay:.6s;animation-delay:.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(7){-webkit-animation-delay:.7s;animation-delay:.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(8){-webkit-animation-delay:.8s;animation-delay:.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(9){-webkit-animation-delay:.9s;animation-delay:.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(10){-webkit-animation-delay:1s;animation-delay:1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(11){-webkit-animation-delay:1.1s;animation-delay:1.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(12){-webkit-animation-delay:1.2s;animation-delay:1.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(13){-webkit-animation-delay:1.3s;animation-delay:1.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(14){-webkit-animation-delay:1.4s;animation-delay:1.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(15){-webkit-animation-delay:1.5s;animation-delay:1.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(16){-webkit-animation-delay:1.6s;animation-delay:1.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(17){-webkit-animation-delay:1.7s;animation-delay:1.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(18){-webkit-animation-delay:1.8s;animation-delay:1.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(19){-webkit-animation-delay:1.9s;animation-delay:1.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(20){-webkit-animation-delay:2s;animation-delay:2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(21){-webkit-animation-delay:2.1s;animation-delay:2.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(22){-webkit-animation-delay:2.2s;animation-delay:2.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(23){-webkit-animation-delay:2.3s;animation-delay:2.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(24){-webkit-animation-delay:2.4s;animation-delay:2.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(25){-webkit-animation-delay:2.5s;animation-delay:2.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(26){-webkit-animation-delay:2.6s;animation-delay:2.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(27){-webkit-animation-delay:2.7s;animation-delay:2.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(28){-webkit-animation-delay:2.8s;animation-delay:2.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(29){-webkit-animation-delay:2.9s;animation-delay:2.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(30){-webkit-animation-delay:3s;animation-delay:3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(31){-webkit-animation-delay:3.1s;animation-delay:3.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(32){-webkit-animation-delay:3.2s;animation-delay:3.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(33){-webkit-animation-delay:3.3s;animation-delay:3.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(34){-webkit-animation-delay:3.4s;animation-delay:3.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(35){-webkit-animation-delay:3.5s;animation-delay:3.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(36){-webkit-animation-delay:3.6s;animation-delay:3.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(37){-webkit-animation-delay:3.7s;animation-delay:3.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(38){-webkit-animation-delay:3.8s;animation-delay:3.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(39){-webkit-animation-delay:3.9s;animation-delay:3.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(40){-webkit-animation-delay:4s;animation-delay:4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(41){-webkit-animation-delay:4.1s;animation-delay:4.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(42){-webkit-animation-delay:4.2s;animation-delay:4.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(43){-webkit-animation-delay:4.3s;animation-delay:4.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(44){-webkit-animation-delay:4.4s;animation-delay:4.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(45){-webkit-animation-delay:4.5s;animation-delay:4.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(46){-webkit-animation-delay:4.6s;animation-delay:4.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(47){-webkit-animation-delay:4.7s;animation-delay:4.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(48){-webkit-animation-delay:4.8s;animation-delay:4.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(49){-webkit-animation-delay:4.9s;animation-delay:4.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(50){-webkit-animation-delay:5s;animation-delay:5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(51){-webkit-animation-delay:5.1s;animation-delay:5.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(52){-webkit-animation-delay:5.2s;animation-delay:5.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(53){-webkit-animation-delay:5.3s;animation-delay:5.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(54){-webkit-animation-delay:5.4s;animation-delay:5.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(55){-webkit-animation-delay:5.5s;animation-delay:5.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(56){-webkit-animation-delay:5.6s;animation-delay:5.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(57){-webkit-animation-delay:5.7s;animation-delay:5.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(58){-webkit-animation-delay:5.8s;animation-delay:5.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(59){-webkit-animation-delay:5.9s;animation-delay:5.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(60){-webkit-animation-delay:6s;animation-delay:6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(61){-webkit-animation-delay:6.1s;animation-delay:6.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(62){-webkit-animation-delay:6.2s;animation-delay:6.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(63){-webkit-animation-delay:6.3s;animation-delay:6.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(64){-webkit-animation-delay:6.4s;animation-delay:6.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(65){-webkit-animation-delay:6.5s;animation-delay:6.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(66){-webkit-animation-delay:6.6s;animation-delay:6.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(67){-webkit-animation-delay:6.7s;animation-delay:6.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(68){-webkit-animation-delay:6.8s;animation-delay:6.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(69){-webkit-animation-delay:6.9s;animation-delay:6.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(70){-webkit-animation-delay:7s;animation-delay:7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(71){-webkit-animation-delay:7.1s;animation-delay:7.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(72){-webkit-animation-delay:7.2s;animation-delay:7.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(73){-webkit-animation-delay:7.3s;animation-delay:7.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(74){-webkit-animation-delay:7.4s;animation-delay:7.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(75){-webkit-animation-delay:7.5s;animation-delay:7.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(76){-webkit-animation-delay:7.6s;animation-delay:7.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(77){-webkit-animation-delay:7.7s;animation-delay:7.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(78){-webkit-animation-delay:7.8s;animation-delay:7.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(79){-webkit-animation-delay:7.9s;animation-delay:7.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(80){-webkit-animation-delay:8s;animation-delay:8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(81){-webkit-animation-delay:8.1s;animation-delay:8.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(82){-webkit-animation-delay:8.2s;animation-delay:8.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(83){-webkit-animation-delay:8.3s;animation-delay:8.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(84){-webkit-animation-delay:8.4s;animation-delay:8.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(85){-webkit-animation-delay:8.5s;animation-delay:8.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(86){-webkit-animation-delay:8.6s;animation-delay:8.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(87){-webkit-animation-delay:8.7s;animation-delay:8.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(88){-webkit-animation-delay:8.8s;animation-delay:8.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(89){-webkit-animation-delay:8.9s;animation-delay:8.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(90){-webkit-animation-delay:9s;animation-delay:9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(91){-webkit-animation-delay:9.1s;animation-delay:9.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(92){-webkit-animation-delay:9.2s;animation-delay:9.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(93){-webkit-animation-delay:9.3s;animation-delay:9.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(94){-webkit-animation-delay:9.4s;animation-delay:9.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(95){-webkit-animation-delay:9.5s;animation-delay:9.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(96){-webkit-animation-delay:9.6s;animation-delay:9.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(97){-webkit-animation-delay:9.7s;animation-delay:9.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(98){-webkit-animation-delay:9.8s;animation-delay:9.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(99){-webkit-animation-delay:9.9s;animation-delay:9.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(100){-webkit-animation-delay:10s;animation-delay:10s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(101){-webkit-animation-delay:10.1s;animation-delay:10.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(102){-webkit-animation-delay:10.2s;animation-delay:10.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(103){-webkit-animation-delay:10.3s;animation-delay:10.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(104){-webkit-animation-delay:10.4s;animation-delay:10.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(105){-webkit-animation-delay:10.5s;animation-delay:10.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(106){-webkit-animation-delay:10.6s;animation-delay:10.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(107){-webkit-animation-delay:10.7s;animation-delay:10.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(108){-webkit-animation-delay:10.8s;animation-delay:10.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(109){-webkit-animation-delay:10.9s;animation-delay:10.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(110){-webkit-animation-delay:11s;animation-delay:11s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(111){-webkit-animation-delay:11.1s;animation-delay:11.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(112){-webkit-animation-delay:11.2s;animation-delay:11.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(113){-webkit-animation-delay:11.3s;animation-delay:11.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(114){-webkit-animation-delay:11.4s;animation-delay:11.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(115){-webkit-animation-delay:11.5s;animation-delay:11.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(116){-webkit-animation-delay:11.6s;animation-delay:11.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(117){-webkit-animation-delay:11.7s;animation-delay:11.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(118){-webkit-animation-delay:11.8s;animation-delay:11.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(119){-webkit-animation-delay:11.9s;animation-delay:11.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(120){-webkit-animation-delay:12s;animation-delay:12s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(121){-webkit-animation-delay:12.1s;animation-delay:12.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(122){-webkit-animation-delay:12.2s;animation-delay:12.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(123){-webkit-animation-delay:12.3s;animation-delay:12.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(124){-webkit-animation-delay:12.4s;animation-delay:12.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(125){-webkit-animation-delay:12.5s;animation-delay:12.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(126){-webkit-animation-delay:12.6s;animation-delay:12.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(127){-webkit-animation-delay:12.7s;animation-delay:12.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(128){-webkit-animation-delay:12.8s;animation-delay:12.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(129){-webkit-animation-delay:12.9s;animation-delay:12.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(130){-webkit-animation-delay:13s;animation-delay:13s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(131){-webkit-animation-delay:13.1s;animation-delay:13.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(132){-webkit-animation-delay:13.2s;animation-delay:13.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(133){-webkit-animation-delay:13.3s;animation-delay:13.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(134){-webkit-animation-delay:13.4s;animation-delay:13.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(135){-webkit-animation-delay:13.5s;animation-delay:13.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(136){-webkit-animation-delay:13.6s;animation-delay:13.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(137){-webkit-animation-delay:13.7s;animation-delay:13.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(138){-webkit-animation-delay:13.8s;animation-delay:13.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(139){-webkit-animation-delay:13.9s;animation-delay:13.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(140){-webkit-animation-delay:14s;animation-delay:14s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(141){-webkit-animation-delay:14.1s;animation-delay:14.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(142){-webkit-animation-delay:14.2s;animation-delay:14.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(143){-webkit-animation-delay:14.3s;animation-delay:14.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(144){-webkit-animation-delay:14.4s;animation-delay:14.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(145){-webkit-animation-delay:14.5s;animation-delay:14.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(146){-webkit-animation-delay:14.6s;animation-delay:14.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(147){-webkit-animation-delay:14.7s;animation-delay:14.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(148){-webkit-animation-delay:14.8s;animation-delay:14.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(149){-webkit-animation-delay:14.9s;animation-delay:14.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(150){-webkit-animation-delay:15s;animation-delay:15s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(151){-webkit-animation-delay:15.1s;animation-delay:15.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(152){-webkit-animation-delay:15.2s;animation-delay:15.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(153){-webkit-animation-delay:15.3s;animation-delay:15.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(154){-webkit-animation-delay:15.4s;animation-delay:15.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(155){-webkit-animation-delay:15.5s;animation-delay:15.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(156){-webkit-animation-delay:15.6s;animation-delay:15.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(157){-webkit-animation-delay:15.7s;animation-delay:15.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(158){-webkit-animation-delay:15.8s;animation-delay:15.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(159){-webkit-animation-delay:15.9s;animation-delay:15.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(160){-webkit-animation-delay:16s;animation-delay:16s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(161){-webkit-animation-delay:16.1s;animation-delay:16.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(162){-webkit-animation-delay:16.2s;animation-delay:16.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(163){-webkit-animation-delay:16.3s;animation-delay:16.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(164){-webkit-animation-delay:16.4s;animation-delay:16.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(165){-webkit-animation-delay:16.5s;animation-delay:16.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(166){-webkit-animation-delay:16.6s;animation-delay:16.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(167){-webkit-animation-delay:16.7s;animation-delay:16.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(168){-webkit-animation-delay:16.8s;animation-delay:16.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(169){-webkit-animation-delay:16.9s;animation-delay:16.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(170){-webkit-animation-delay:17s;animation-delay:17s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(171){-webkit-animation-delay:17.1s;animation-delay:17.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(172){-webkit-animation-delay:17.2s;animation-delay:17.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(173){-webkit-animation-delay:17.3s;animation-delay:17.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(174){-webkit-animation-delay:17.4s;animation-delay:17.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(175){-webkit-animation-delay:17.5s;animation-delay:17.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(176){-webkit-animation-delay:17.6s;animation-delay:17.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(177){-webkit-animation-delay:17.7s;animation-delay:17.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(178){-webkit-animation-delay:17.8s;animation-delay:17.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(179){-webkit-animation-delay:17.9s;animation-delay:17.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(180){-webkit-animation-delay:18s;animation-delay:18s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(181){-webkit-animation-delay:18.1s;animation-delay:18.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(182){-webkit-animation-delay:18.2s;animation-delay:18.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(183){-webkit-animation-delay:18.3s;animation-delay:18.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(184){-webkit-animation-delay:18.4s;animation-delay:18.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(185){-webkit-animation-delay:18.5s;animation-delay:18.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(186){-webkit-animation-delay:18.6s;animation-delay:18.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(187){-webkit-animation-delay:18.7s;animation-delay:18.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(188){-webkit-animation-delay:18.8s;animation-delay:18.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(189){-webkit-animation-delay:18.9s;animation-delay:18.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(190){-webkit-animation-delay:19s;animation-delay:19s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(191){-webkit-animation-delay:19.1s;animation-delay:19.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(192){-webkit-animation-delay:19.2s;animation-delay:19.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(193){-webkit-animation-delay:19.3s;animation-delay:19.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(194){-webkit-animation-delay:19.4s;animation-delay:19.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(195){-webkit-animation-delay:19.5s;animation-delay:19.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(196){-webkit-animation-delay:19.6s;animation-delay:19.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(197){-webkit-animation-delay:19.7s;animation-delay:19.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(198){-webkit-animation-delay:19.8s;animation-delay:19.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(199){-webkit-animation-delay:19.9s;animation-delay:19.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(200){-webkit-animation-delay:20s;animation-delay:20s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(201){-webkit-animation-delay:20.1s;animation-delay:20.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(202){-webkit-animation-delay:20.2s;animation-delay:20.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(203){-webkit-animation-delay:20.3s;animation-delay:20.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(204){-webkit-animation-delay:20.4s;animation-delay:20.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(205){-webkit-animation-delay:20.5s;animation-delay:20.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(206){-webkit-animation-delay:20.6s;animation-delay:20.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(207){-webkit-animation-delay:20.7s;animation-delay:20.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(208){-webkit-animation-delay:20.8s;animation-delay:20.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(209){-webkit-animation-delay:20.9s;animation-delay:20.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(210){-webkit-animation-delay:21s;animation-delay:21s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(211){-webkit-animation-delay:21.1s;animation-delay:21.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(212){-webkit-animation-delay:21.2s;animation-delay:21.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(213){-webkit-animation-delay:21.3s;animation-delay:21.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(214){-webkit-animation-delay:21.4s;animation-delay:21.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(215){-webkit-animation-delay:21.5s;animation-delay:21.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(216){-webkit-animation-delay:21.6s;animation-delay:21.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(217){-webkit-animation-delay:21.7s;animation-delay:21.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(218){-webkit-animation-delay:21.8s;animation-delay:21.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(219){-webkit-animation-delay:21.9s;animation-delay:21.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(220){-webkit-animation-delay:22s;animation-delay:22s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(221){-webkit-animation-delay:22.1s;animation-delay:22.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(222){-webkit-animation-delay:22.2s;animation-delay:22.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(223){-webkit-animation-delay:22.3s;animation-delay:22.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(224){-webkit-animation-delay:22.4s;animation-delay:22.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(225){-webkit-animation-delay:22.5s;animation-delay:22.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(226){-webkit-animation-delay:22.6s;animation-delay:22.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(227){-webkit-animation-delay:22.7s;animation-delay:22.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(228){-webkit-animation-delay:22.8s;animation-delay:22.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(229){-webkit-animation-delay:22.9s;animation-delay:22.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(230){-webkit-animation-delay:23s;animation-delay:23s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(231){-webkit-animation-delay:23.1s;animation-delay:23.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(232){-webkit-animation-delay:23.2s;animation-delay:23.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(233){-webkit-animation-delay:23.3s;animation-delay:23.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(234){-webkit-animation-delay:23.4s;animation-delay:23.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(235){-webkit-animation-delay:23.5s;animation-delay:23.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(236){-webkit-animation-delay:23.6s;animation-delay:23.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(237){-webkit-animation-delay:23.7s;animation-delay:23.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(238){-webkit-animation-delay:23.8s;animation-delay:23.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(239){-webkit-animation-delay:23.9s;animation-delay:23.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(240){-webkit-animation-delay:24s;animation-delay:24s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(241){-webkit-animation-delay:24.1s;animation-delay:24.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(242){-webkit-animation-delay:24.2s;animation-delay:24.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(243){-webkit-animation-delay:24.3s;animation-delay:24.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(244){-webkit-animation-delay:24.4s;animation-delay:24.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(245){-webkit-animation-delay:24.5s;animation-delay:24.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(246){-webkit-animation-delay:24.6s;animation-delay:24.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(247){-webkit-animation-delay:24.7s;animation-delay:24.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(248){-webkit-animation-delay:24.8s;animation-delay:24.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(249){-webkit-animation-delay:24.9s;animation-delay:24.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(250){-webkit-animation-delay:25s;animation-delay:25s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(251){-webkit-animation-delay:25.1s;animation-delay:25.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(252){-webkit-animation-delay:25.2s;animation-delay:25.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(253){-webkit-animation-delay:25.3s;animation-delay:25.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(254){-webkit-animation-delay:25.4s;animation-delay:25.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(255){-webkit-animation-delay:25.5s;animation-delay:25.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(256){-webkit-animation-delay:25.6s;animation-delay:25.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(257){-webkit-animation-delay:25.7s;animation-delay:25.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(258){-webkit-animation-delay:25.8s;animation-delay:25.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(259){-webkit-animation-delay:25.9s;animation-delay:25.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(260){-webkit-animation-delay:26s;animation-delay:26s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(261){-webkit-animation-delay:26.1s;animation-delay:26.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(262){-webkit-animation-delay:26.2s;animation-delay:26.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(263){-webkit-animation-delay:26.3s;animation-delay:26.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(264){-webkit-animation-delay:26.4s;animation-delay:26.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(265){-webkit-animation-delay:26.5s;animation-delay:26.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(266){-webkit-animation-delay:26.6s;animation-delay:26.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(267){-webkit-animation-delay:26.7s;animation-delay:26.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(268){-webkit-animation-delay:26.8s;animation-delay:26.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(269){-webkit-animation-delay:26.9s;animation-delay:26.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(270){-webkit-animation-delay:27s;animation-delay:27s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(271){-webkit-animation-delay:27.1s;animation-delay:27.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(272){-webkit-animation-delay:27.2s;animation-delay:27.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(273){-webkit-animation-delay:27.3s;animation-delay:27.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(274){-webkit-animation-delay:27.4s;animation-delay:27.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(275){-webkit-animation-delay:27.5s;animation-delay:27.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(276){-webkit-animation-delay:27.6s;animation-delay:27.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(277){-webkit-animation-delay:27.7s;animation-delay:27.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(278){-webkit-animation-delay:27.8s;animation-delay:27.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(279){-webkit-animation-delay:27.9s;animation-delay:27.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(280){-webkit-animation-delay:28s;animation-delay:28s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(281){-webkit-animation-delay:28.1s;animation-delay:28.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(282){-webkit-animation-delay:28.2s;animation-delay:28.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(283){-webkit-animation-delay:28.3s;animation-delay:28.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(284){-webkit-animation-delay:28.4s;animation-delay:28.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(285){-webkit-animation-delay:28.5s;animation-delay:28.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(286){-webkit-animation-delay:28.6s;animation-delay:28.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(287){-webkit-animation-delay:28.7s;animation-delay:28.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(288){-webkit-animation-delay:28.8s;animation-delay:28.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(289){-webkit-animation-delay:28.9s;animation-delay:28.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(290){-webkit-animation-delay:29s;animation-delay:29s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(291){-webkit-animation-delay:29.1s;animation-delay:29.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(292){-webkit-animation-delay:29.2s;animation-delay:29.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(293){-webkit-animation-delay:29.3s;animation-delay:29.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(294){-webkit-animation-delay:29.4s;animation-delay:29.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(295){-webkit-animation-delay:29.5s;animation-delay:29.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(296){-webkit-animation-delay:29.6s;animation-delay:29.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(297){-webkit-animation-delay:29.7s;animation-delay:29.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(298){-webkit-animation-delay:29.8s;animation-delay:29.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(299){-webkit-animation-delay:29.9s;animation-delay:29.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(300){-webkit-animation-delay:30s;animation-delay:30s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(301){-webkit-animation-delay:30.1s;animation-delay:30.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(302){-webkit-animation-delay:30.2s;animation-delay:30.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(303){-webkit-animation-delay:30.3s;animation-delay:30.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(304){-webkit-animation-delay:30.4s;animation-delay:30.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(305){-webkit-animation-delay:30.5s;animation-delay:30.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(306){-webkit-animation-delay:30.6s;animation-delay:30.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(307){-webkit-animation-delay:30.7s;animation-delay:30.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(308){-webkit-animation-delay:30.8s;animation-delay:30.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(309){-webkit-animation-delay:30.9s;animation-delay:30.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(310){-webkit-animation-delay:31s;animation-delay:31s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(311){-webkit-animation-delay:31.1s;animation-delay:31.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(312){-webkit-animation-delay:31.2s;animation-delay:31.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(313){-webkit-animation-delay:31.3s;animation-delay:31.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(314){-webkit-animation-delay:31.4s;animation-delay:31.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(315){-webkit-animation-delay:31.5s;animation-delay:31.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(316){-webkit-animation-delay:31.6s;animation-delay:31.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(317){-webkit-animation-delay:31.7s;animation-delay:31.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(318){-webkit-animation-delay:31.8s;animation-delay:31.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(319){-webkit-animation-delay:31.9s;animation-delay:31.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(320){-webkit-animation-delay:32s;animation-delay:32s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(321){-webkit-animation-delay:32.1s;animation-delay:32.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(322){-webkit-animation-delay:32.2s;animation-delay:32.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(323){-webkit-animation-delay:32.3s;animation-delay:32.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(324){-webkit-animation-delay:32.4s;animation-delay:32.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(325){-webkit-animation-delay:32.5s;animation-delay:32.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(326){-webkit-animation-delay:32.6s;animation-delay:32.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(327){-webkit-animation-delay:32.7s;animation-delay:32.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(328){-webkit-animation-delay:32.8s;animation-delay:32.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(329){-webkit-animation-delay:32.9s;animation-delay:32.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(330){-webkit-animation-delay:33s;animation-delay:33s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(331){-webkit-animation-delay:33.1s;animation-delay:33.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(332){-webkit-animation-delay:33.2s;animation-delay:33.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(333){-webkit-animation-delay:33.3s;animation-delay:33.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(334){-webkit-animation-delay:33.4s;animation-delay:33.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(335){-webkit-animation-delay:33.5s;animation-delay:33.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(336){-webkit-animation-delay:33.6s;animation-delay:33.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(337){-webkit-animation-delay:33.7s;animation-delay:33.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(338){-webkit-animation-delay:33.8s;animation-delay:33.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(339){-webkit-animation-delay:33.9s;animation-delay:33.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(340){-webkit-animation-delay:34s;animation-delay:34s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(341){-webkit-animation-delay:34.1s;animation-delay:34.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(342){-webkit-animation-delay:34.2s;animation-delay:34.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(343){-webkit-animation-delay:34.3s;animation-delay:34.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(344){-webkit-animation-delay:34.4s;animation-delay:34.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(345){-webkit-animation-delay:34.5s;animation-delay:34.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(346){-webkit-animation-delay:34.6s;animation-delay:34.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(347){-webkit-animation-delay:34.7s;animation-delay:34.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(348){-webkit-animation-delay:34.8s;animation-delay:34.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(349){-webkit-animation-delay:34.9s;animation-delay:34.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(350){-webkit-animation-delay:35s;animation-delay:35s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(351){-webkit-animation-delay:35.1s;animation-delay:35.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(352){-webkit-animation-delay:35.2s;animation-delay:35.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(353){-webkit-animation-delay:35.3s;animation-delay:35.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(354){-webkit-animation-delay:35.4s;animation-delay:35.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(355){-webkit-animation-delay:35.5s;animation-delay:35.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(356){-webkit-animation-delay:35.6s;animation-delay:35.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(357){-webkit-animation-delay:35.7s;animation-delay:35.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(358){-webkit-animation-delay:35.8s;animation-delay:35.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(359){-webkit-animation-delay:35.9s;animation-delay:35.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(360){-webkit-animation-delay:36s;animation-delay:36s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(361){-webkit-animation-delay:36.1s;animation-delay:36.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(362){-webkit-animation-delay:36.2s;animation-delay:36.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(363){-webkit-animation-delay:36.3s;animation-delay:36.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(364){-webkit-animation-delay:36.4s;animation-delay:36.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(365){-webkit-animation-delay:36.5s;animation-delay:36.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(366){-webkit-animation-delay:36.6s;animation-delay:36.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(367){-webkit-animation-delay:36.7s;animation-delay:36.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(368){-webkit-animation-delay:36.8s;animation-delay:36.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(369){-webkit-animation-delay:36.9s;animation-delay:36.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(370){-webkit-animation-delay:37s;animation-delay:37s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(371){-webkit-animation-delay:37.1s;animation-delay:37.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(372){-webkit-animation-delay:37.2s;animation-delay:37.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(373){-webkit-animation-delay:37.3s;animation-delay:37.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(374){-webkit-animation-delay:37.4s;animation-delay:37.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(375){-webkit-animation-delay:37.5s;animation-delay:37.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(376){-webkit-animation-delay:37.6s;animation-delay:37.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(377){-webkit-animation-delay:37.7s;animation-delay:37.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(378){-webkit-animation-delay:37.8s;animation-delay:37.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(379){-webkit-animation-delay:37.9s;animation-delay:37.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(380){-webkit-animation-delay:38s;animation-delay:38s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(381){-webkit-animation-delay:38.1s;animation-delay:38.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(382){-webkit-animation-delay:38.2s;animation-delay:38.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(383){-webkit-animation-delay:38.3s;animation-delay:38.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(384){-webkit-animation-delay:38.4s;animation-delay:38.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(385){-webkit-animation-delay:38.5s;animation-delay:38.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(386){-webkit-animation-delay:38.6s;animation-delay:38.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(387){-webkit-animation-delay:38.7s;animation-delay:38.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(388){-webkit-animation-delay:38.8s;animation-delay:38.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(389){-webkit-animation-delay:38.9s;animation-delay:38.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(390){-webkit-animation-delay:39s;animation-delay:39s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(391){-webkit-animation-delay:39.1s;animation-delay:39.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(392){-webkit-animation-delay:39.2s;animation-delay:39.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(393){-webkit-animation-delay:39.3s;animation-delay:39.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(394){-webkit-animation-delay:39.4s;animation-delay:39.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(395){-webkit-animation-delay:39.5s;animation-delay:39.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(396){-webkit-animation-delay:39.6s;animation-delay:39.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(397){-webkit-animation-delay:39.7s;animation-delay:39.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(398){-webkit-animation-delay:39.8s;animation-delay:39.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(399){-webkit-animation-delay:39.9s;animation-delay:39.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(400){-webkit-animation-delay:40s;animation-delay:40s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(401){-webkit-animation-delay:40.1s;animation-delay:40.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(402){-webkit-animation-delay:40.2s;animation-delay:40.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(403){-webkit-animation-delay:40.3s;animation-delay:40.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(404){-webkit-animation-delay:40.4s;animation-delay:40.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(405){-webkit-animation-delay:40.5s;animation-delay:40.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(406){-webkit-animation-delay:40.6s;animation-delay:40.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(407){-webkit-animation-delay:40.7s;animation-delay:40.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(408){-webkit-animation-delay:40.8s;animation-delay:40.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(409){-webkit-animation-delay:40.9s;animation-delay:40.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(410){-webkit-animation-delay:41s;animation-delay:41s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(411){-webkit-animation-delay:41.1s;animation-delay:41.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(412){-webkit-animation-delay:41.2s;animation-delay:41.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(413){-webkit-animation-delay:41.3s;animation-delay:41.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(414){-webkit-animation-delay:41.4s;animation-delay:41.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(415){-webkit-animation-delay:41.5s;animation-delay:41.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(416){-webkit-animation-delay:41.6s;animation-delay:41.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(417){-webkit-animation-delay:41.7s;animation-delay:41.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(418){-webkit-animation-delay:41.8s;animation-delay:41.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(419){-webkit-animation-delay:41.9s;animation-delay:41.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(420){-webkit-animation-delay:42s;animation-delay:42s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(421){-webkit-animation-delay:42.1s;animation-delay:42.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(422){-webkit-animation-delay:42.2s;animation-delay:42.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(423){-webkit-animation-delay:42.3s;animation-delay:42.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(424){-webkit-animation-delay:42.4s;animation-delay:42.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(425){-webkit-animation-delay:42.5s;animation-delay:42.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(426){-webkit-animation-delay:42.6s;animation-delay:42.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(427){-webkit-animation-delay:42.7s;animation-delay:42.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(428){-webkit-animation-delay:42.8s;animation-delay:42.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(429){-webkit-animation-delay:42.9s;animation-delay:42.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(430){-webkit-animation-delay:43s;animation-delay:43s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(431){-webkit-animation-delay:43.1s;animation-delay:43.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(432){-webkit-animation-delay:43.2s;animation-delay:43.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(433){-webkit-animation-delay:43.3s;animation-delay:43.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(434){-webkit-animation-delay:43.4s;animation-delay:43.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(435){-webkit-animation-delay:43.5s;animation-delay:43.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(436){-webkit-animation-delay:43.6s;animation-delay:43.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(437){-webkit-animation-delay:43.7s;animation-delay:43.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(438){-webkit-animation-delay:43.8s;animation-delay:43.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(439){-webkit-animation-delay:43.9s;animation-delay:43.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(440){-webkit-animation-delay:44s;animation-delay:44s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(441){-webkit-animation-delay:44.1s;animation-delay:44.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(442){-webkit-animation-delay:44.2s;animation-delay:44.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(443){-webkit-animation-delay:44.3s;animation-delay:44.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(444){-webkit-animation-delay:44.4s;animation-delay:44.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(445){-webkit-animation-delay:44.5s;animation-delay:44.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(446){-webkit-animation-delay:44.6s;animation-delay:44.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(447){-webkit-animation-delay:44.7s;animation-delay:44.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(448){-webkit-animation-delay:44.8s;animation-delay:44.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(449){-webkit-animation-delay:44.9s;animation-delay:44.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(450){-webkit-animation-delay:45s;animation-delay:45s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(451){-webkit-animation-delay:45.1s;animation-delay:45.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(452){-webkit-animation-delay:45.2s;animation-delay:45.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(453){-webkit-animation-delay:45.3s;animation-delay:45.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(454){-webkit-animation-delay:45.4s;animation-delay:45.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(455){-webkit-animation-delay:45.5s;animation-delay:45.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(456){-webkit-animation-delay:45.6s;animation-delay:45.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(457){-webkit-animation-delay:45.7s;animation-delay:45.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(458){-webkit-animation-delay:45.8s;animation-delay:45.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(459){-webkit-animation-delay:45.9s;animation-delay:45.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(460){-webkit-animation-delay:46s;animation-delay:46s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(461){-webkit-animation-delay:46.1s;animation-delay:46.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(462){-webkit-animation-delay:46.2s;animation-delay:46.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(463){-webkit-animation-delay:46.3s;animation-delay:46.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(464){-webkit-animation-delay:46.4s;animation-delay:46.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(465){-webkit-animation-delay:46.5s;animation-delay:46.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(466){-webkit-animation-delay:46.6s;animation-delay:46.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(467){-webkit-animation-delay:46.7s;animation-delay:46.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(468){-webkit-animation-delay:46.8s;animation-delay:46.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(469){-webkit-animation-delay:46.9s;animation-delay:46.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(470){-webkit-animation-delay:47s;animation-delay:47s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(471){-webkit-animation-delay:47.1s;animation-delay:47.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(472){-webkit-animation-delay:47.2s;animation-delay:47.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(473){-webkit-animation-delay:47.3s;animation-delay:47.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(474){-webkit-animation-delay:47.4s;animation-delay:47.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(475){-webkit-animation-delay:47.5s;animation-delay:47.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(476){-webkit-animation-delay:47.6s;animation-delay:47.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(477){-webkit-animation-delay:47.7s;animation-delay:47.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(478){-webkit-animation-delay:47.8s;animation-delay:47.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(479){-webkit-animation-delay:47.9s;animation-delay:47.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(480){-webkit-animation-delay:48s;animation-delay:48s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(481){-webkit-animation-delay:48.1s;animation-delay:48.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(482){-webkit-animation-delay:48.2s;animation-delay:48.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(483){-webkit-animation-delay:48.3s;animation-delay:48.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(484){-webkit-animation-delay:48.4s;animation-delay:48.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(485){-webkit-animation-delay:48.5s;animation-delay:48.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(486){-webkit-animation-delay:48.6s;animation-delay:48.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(487){-webkit-animation-delay:48.7s;animation-delay:48.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(488){-webkit-animation-delay:48.8s;animation-delay:48.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(489){-webkit-animation-delay:48.9s;animation-delay:48.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(490){-webkit-animation-delay:49s;animation-delay:49s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(491){-webkit-animation-delay:49.1s;animation-delay:49.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(492){-webkit-animation-delay:49.2s;animation-delay:49.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(493){-webkit-animation-delay:49.3s;animation-delay:49.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(494){-webkit-animation-delay:49.4s;animation-delay:49.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(495){-webkit-animation-delay:49.5s;animation-delay:49.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(496){-webkit-animation-delay:49.6s;animation-delay:49.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(497){-webkit-animation-delay:49.7s;animation-delay:49.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(498){-webkit-animation-delay:49.8s;animation-delay:49.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(499){-webkit-animation-delay:49.9s;animation-delay:49.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(500){-webkit-animation-delay:50s;animation-delay:50s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(501){-webkit-animation-delay:50.1s;animation-delay:50.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(502){-webkit-animation-delay:50.2s;animation-delay:50.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(503){-webkit-animation-delay:50.3s;animation-delay:50.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(504){-webkit-animation-delay:50.4s;animation-delay:50.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(505){-webkit-animation-delay:50.5s;animation-delay:50.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(506){-webkit-animation-delay:50.6s;animation-delay:50.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(507){-webkit-animation-delay:50.7s;animation-delay:50.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(508){-webkit-animation-delay:50.8s;animation-delay:50.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(509){-webkit-animation-delay:50.9s;animation-delay:50.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(510){-webkit-animation-delay:51s;animation-delay:51s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(511){-webkit-animation-delay:51.1s;animation-delay:51.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(512){-webkit-animation-delay:51.2s;animation-delay:51.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(513){-webkit-animation-delay:51.3s;animation-delay:51.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(514){-webkit-animation-delay:51.4s;animation-delay:51.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(515){-webkit-animation-delay:51.5s;animation-delay:51.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(516){-webkit-animation-delay:51.6s;animation-delay:51.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(517){-webkit-animation-delay:51.7s;animation-delay:51.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(518){-webkit-animation-delay:51.8s;animation-delay:51.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(519){-webkit-animation-delay:51.9s;animation-delay:51.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(520){-webkit-animation-delay:52s;animation-delay:52s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(521){-webkit-animation-delay:52.1s;animation-delay:52.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(522){-webkit-animation-delay:52.2s;animation-delay:52.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(523){-webkit-animation-delay:52.3s;animation-delay:52.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(524){-webkit-animation-delay:52.4s;animation-delay:52.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(525){-webkit-animation-delay:52.5s;animation-delay:52.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(526){-webkit-animation-delay:52.6s;animation-delay:52.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(527){-webkit-animation-delay:52.7s;animation-delay:52.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(528){-webkit-animation-delay:52.8s;animation-delay:52.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(529){-webkit-animation-delay:52.9s;animation-delay:52.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(530){-webkit-animation-delay:53s;animation-delay:53s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(531){-webkit-animation-delay:53.1s;animation-delay:53.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(532){-webkit-animation-delay:53.2s;animation-delay:53.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(533){-webkit-animation-delay:53.3s;animation-delay:53.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(534){-webkit-animation-delay:53.4s;animation-delay:53.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(535){-webkit-animation-delay:53.5s;animation-delay:53.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(536){-webkit-animation-delay:53.6s;animation-delay:53.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(537){-webkit-animation-delay:53.7s;animation-delay:53.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(538){-webkit-animation-delay:53.8s;animation-delay:53.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(539){-webkit-animation-delay:53.9s;animation-delay:53.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(540){-webkit-animation-delay:54s;animation-delay:54s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(541){-webkit-animation-delay:54.1s;animation-delay:54.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(542){-webkit-animation-delay:54.2s;animation-delay:54.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(543){-webkit-animation-delay:54.3s;animation-delay:54.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(544){-webkit-animation-delay:54.4s;animation-delay:54.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(545){-webkit-animation-delay:54.5s;animation-delay:54.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(546){-webkit-animation-delay:54.6s;animation-delay:54.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(547){-webkit-animation-delay:54.7s;animation-delay:54.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(548){-webkit-animation-delay:54.8s;animation-delay:54.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(549){-webkit-animation-delay:54.9s;animation-delay:54.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(550){-webkit-animation-delay:55s;animation-delay:55s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(551){-webkit-animation-delay:55.1s;animation-delay:55.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(552){-webkit-animation-delay:55.2s;animation-delay:55.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(553){-webkit-animation-delay:55.3s;animation-delay:55.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(554){-webkit-animation-delay:55.4s;animation-delay:55.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(555){-webkit-animation-delay:55.5s;animation-delay:55.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(556){-webkit-animation-delay:55.6s;animation-delay:55.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(557){-webkit-animation-delay:55.7s;animation-delay:55.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(558){-webkit-animation-delay:55.8s;animation-delay:55.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(559){-webkit-animation-delay:55.9s;animation-delay:55.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(560){-webkit-animation-delay:56s;animation-delay:56s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(561){-webkit-animation-delay:56.1s;animation-delay:56.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(562){-webkit-animation-delay:56.2s;animation-delay:56.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(563){-webkit-animation-delay:56.3s;animation-delay:56.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(564){-webkit-animation-delay:56.4s;animation-delay:56.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(565){-webkit-animation-delay:56.5s;animation-delay:56.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(566){-webkit-animation-delay:56.6s;animation-delay:56.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(567){-webkit-animation-delay:56.7s;animation-delay:56.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(568){-webkit-animation-delay:56.8s;animation-delay:56.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(569){-webkit-animation-delay:56.9s;animation-delay:56.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(570){-webkit-animation-delay:57s;animation-delay:57s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(571){-webkit-animation-delay:57.1s;animation-delay:57.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(572){-webkit-animation-delay:57.2s;animation-delay:57.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(573){-webkit-animation-delay:57.3s;animation-delay:57.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(574){-webkit-animation-delay:57.4s;animation-delay:57.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(575){-webkit-animation-delay:57.5s;animation-delay:57.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(576){-webkit-animation-delay:57.6s;animation-delay:57.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(577){-webkit-animation-delay:57.7s;animation-delay:57.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(578){-webkit-animation-delay:57.8s;animation-delay:57.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(579){-webkit-animation-delay:57.9s;animation-delay:57.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(580){-webkit-animation-delay:58s;animation-delay:58s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(581){-webkit-animation-delay:58.1s;animation-delay:58.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(582){-webkit-animation-delay:58.2s;animation-delay:58.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(583){-webkit-animation-delay:58.3s;animation-delay:58.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(584){-webkit-animation-delay:58.4s;animation-delay:58.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(585){-webkit-animation-delay:58.5s;animation-delay:58.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(586){-webkit-animation-delay:58.6s;animation-delay:58.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(587){-webkit-animation-delay:58.7s;animation-delay:58.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(588){-webkit-animation-delay:58.8s;animation-delay:58.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(589){-webkit-animation-delay:58.9s;animation-delay:58.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(590){-webkit-animation-delay:59s;animation-delay:59s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(591){-webkit-animation-delay:59.1s;animation-delay:59.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(592){-webkit-animation-delay:59.2s;animation-delay:59.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(593){-webkit-animation-delay:59.3s;animation-delay:59.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(594){-webkit-animation-delay:59.4s;animation-delay:59.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(595){-webkit-animation-delay:59.5s;animation-delay:59.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(596){-webkit-animation-delay:59.6s;animation-delay:59.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(597){-webkit-animation-delay:59.7s;animation-delay:59.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(598){-webkit-animation-delay:59.8s;animation-delay:59.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(599){-webkit-animation-delay:59.9s;animation-delay:59.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(600){-webkit-animation-delay:60s;animation-delay:60s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(601){-webkit-animation-delay:60.1s;animation-delay:60.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(602){-webkit-animation-delay:60.2s;animation-delay:60.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(603){-webkit-animation-delay:60.3s;animation-delay:60.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(604){-webkit-animation-delay:60.4s;animation-delay:60.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(605){-webkit-animation-delay:60.5s;animation-delay:60.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(606){-webkit-animation-delay:60.6s;animation-delay:60.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(607){-webkit-animation-delay:60.7s;animation-delay:60.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(608){-webkit-animation-delay:60.8s;animation-delay:60.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(609){-webkit-animation-delay:60.9s;animation-delay:60.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(610){-webkit-animation-delay:61s;animation-delay:61s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(611){-webkit-animation-delay:61.1s;animation-delay:61.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(612){-webkit-animation-delay:61.2s;animation-delay:61.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(613){-webkit-animation-delay:61.3s;animation-delay:61.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(614){-webkit-animation-delay:61.4s;animation-delay:61.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(615){-webkit-animation-delay:61.5s;animation-delay:61.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(616){-webkit-animation-delay:61.6s;animation-delay:61.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(617){-webkit-animation-delay:61.7s;animation-delay:61.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(618){-webkit-animation-delay:61.8s;animation-delay:61.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(619){-webkit-animation-delay:61.9s;animation-delay:61.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(620){-webkit-animation-delay:62s;animation-delay:62s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(621){-webkit-animation-delay:62.1s;animation-delay:62.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(622){-webkit-animation-delay:62.2s;animation-delay:62.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(623){-webkit-animation-delay:62.3s;animation-delay:62.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(624){-webkit-animation-delay:62.4s;animation-delay:62.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(625){-webkit-animation-delay:62.5s;animation-delay:62.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(626){-webkit-animation-delay:62.6s;animation-delay:62.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(627){-webkit-animation-delay:62.7s;animation-delay:62.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(628){-webkit-animation-delay:62.8s;animation-delay:62.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(629){-webkit-animation-delay:62.9s;animation-delay:62.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(630){-webkit-animation-delay:63s;animation-delay:63s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(631){-webkit-animation-delay:63.1s;animation-delay:63.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(632){-webkit-animation-delay:63.2s;animation-delay:63.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(633){-webkit-animation-delay:63.3s;animation-delay:63.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(634){-webkit-animation-delay:63.4s;animation-delay:63.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(635){-webkit-animation-delay:63.5s;animation-delay:63.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(636){-webkit-animation-delay:63.6s;animation-delay:63.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(637){-webkit-animation-delay:63.7s;animation-delay:63.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(638){-webkit-animation-delay:63.8s;animation-delay:63.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(639){-webkit-animation-delay:63.9s;animation-delay:63.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(640){-webkit-animation-delay:64s;animation-delay:64s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(641){-webkit-animation-delay:64.1s;animation-delay:64.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(642){-webkit-animation-delay:64.2s;animation-delay:64.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(643){-webkit-animation-delay:64.3s;animation-delay:64.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(644){-webkit-animation-delay:64.4s;animation-delay:64.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(645){-webkit-animation-delay:64.5s;animation-delay:64.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(646){-webkit-animation-delay:64.6s;animation-delay:64.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(647){-webkit-animation-delay:64.7s;animation-delay:64.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(648){-webkit-animation-delay:64.8s;animation-delay:64.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(649){-webkit-animation-delay:64.9s;animation-delay:64.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(650){-webkit-animation-delay:65s;animation-delay:65s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(651){-webkit-animation-delay:65.1s;animation-delay:65.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(652){-webkit-animation-delay:65.2s;animation-delay:65.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(653){-webkit-animation-delay:65.3s;animation-delay:65.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(654){-webkit-animation-delay:65.4s;animation-delay:65.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(655){-webkit-animation-delay:65.5s;animation-delay:65.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(656){-webkit-animation-delay:65.6s;animation-delay:65.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(657){-webkit-animation-delay:65.7s;animation-delay:65.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(658){-webkit-animation-delay:65.8s;animation-delay:65.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(659){-webkit-animation-delay:65.9s;animation-delay:65.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(660){-webkit-animation-delay:66s;animation-delay:66s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(661){-webkit-animation-delay:66.1s;animation-delay:66.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(662){-webkit-animation-delay:66.2s;animation-delay:66.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(663){-webkit-animation-delay:66.3s;animation-delay:66.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(664){-webkit-animation-delay:66.4s;animation-delay:66.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(665){-webkit-animation-delay:66.5s;animation-delay:66.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(666){-webkit-animation-delay:66.6s;animation-delay:66.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(667){-webkit-animation-delay:66.7s;animation-delay:66.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(668){-webkit-animation-delay:66.8s;animation-delay:66.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(669){-webkit-animation-delay:66.9s;animation-delay:66.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(670){-webkit-animation-delay:67s;animation-delay:67s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(671){-webkit-animation-delay:67.1s;animation-delay:67.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(672){-webkit-animation-delay:67.2s;animation-delay:67.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(673){-webkit-animation-delay:67.3s;animation-delay:67.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(674){-webkit-animation-delay:67.4s;animation-delay:67.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(675){-webkit-animation-delay:67.5s;animation-delay:67.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(676){-webkit-animation-delay:67.6s;animation-delay:67.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(677){-webkit-animation-delay:67.7s;animation-delay:67.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(678){-webkit-animation-delay:67.8s;animation-delay:67.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(679){-webkit-animation-delay:67.9s;animation-delay:67.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(680){-webkit-animation-delay:68s;animation-delay:68s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(681){-webkit-animation-delay:68.1s;animation-delay:68.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(682){-webkit-animation-delay:68.2s;animation-delay:68.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(683){-webkit-animation-delay:68.3s;animation-delay:68.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(684){-webkit-animation-delay:68.4s;animation-delay:68.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(685){-webkit-animation-delay:68.5s;animation-delay:68.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(686){-webkit-animation-delay:68.6s;animation-delay:68.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(687){-webkit-animation-delay:68.7s;animation-delay:68.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(688){-webkit-animation-delay:68.8s;animation-delay:68.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(689){-webkit-animation-delay:68.9s;animation-delay:68.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(690){-webkit-animation-delay:69s;animation-delay:69s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(691){-webkit-animation-delay:69.1s;animation-delay:69.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(692){-webkit-animation-delay:69.2s;animation-delay:69.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(693){-webkit-animation-delay:69.3s;animation-delay:69.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(694){-webkit-animation-delay:69.4s;animation-delay:69.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(695){-webkit-animation-delay:69.5s;animation-delay:69.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(696){-webkit-animation-delay:69.6s;animation-delay:69.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(697){-webkit-animation-delay:69.7s;animation-delay:69.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(698){-webkit-animation-delay:69.8s;animation-delay:69.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(699){-webkit-animation-delay:69.9s;animation-delay:69.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(700){-webkit-animation-delay:70s;animation-delay:70s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(701){-webkit-animation-delay:70.1s;animation-delay:70.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(702){-webkit-animation-delay:70.2s;animation-delay:70.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(703){-webkit-animation-delay:70.3s;animation-delay:70.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(704){-webkit-animation-delay:70.4s;animation-delay:70.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(705){-webkit-animation-delay:70.5s;animation-delay:70.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(706){-webkit-animation-delay:70.6s;animation-delay:70.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(707){-webkit-animation-delay:70.7s;animation-delay:70.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(708){-webkit-animation-delay:70.8s;animation-delay:70.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(709){-webkit-animation-delay:70.9s;animation-delay:70.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(710){-webkit-animation-delay:71s;animation-delay:71s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(711){-webkit-animation-delay:71.1s;animation-delay:71.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(712){-webkit-animation-delay:71.2s;animation-delay:71.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(713){-webkit-animation-delay:71.3s;animation-delay:71.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(714){-webkit-animation-delay:71.4s;animation-delay:71.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(715){-webkit-animation-delay:71.5s;animation-delay:71.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(716){-webkit-animation-delay:71.6s;animation-delay:71.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(717){-webkit-animation-delay:71.7s;animation-delay:71.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(718){-webkit-animation-delay:71.8s;animation-delay:71.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(719){-webkit-animation-delay:71.9s;animation-delay:71.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(720){-webkit-animation-delay:72s;animation-delay:72s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(721){-webkit-animation-delay:72.1s;animation-delay:72.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(722){-webkit-animation-delay:72.2s;animation-delay:72.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(723){-webkit-animation-delay:72.3s;animation-delay:72.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(724){-webkit-animation-delay:72.4s;animation-delay:72.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(725){-webkit-animation-delay:72.5s;animation-delay:72.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(726){-webkit-animation-delay:72.6s;animation-delay:72.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(727){-webkit-animation-delay:72.7s;animation-delay:72.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(728){-webkit-animation-delay:72.8s;animation-delay:72.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(729){-webkit-animation-delay:72.9s;animation-delay:72.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(730){-webkit-animation-delay:73s;animation-delay:73s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(731){-webkit-animation-delay:73.1s;animation-delay:73.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(732){-webkit-animation-delay:73.2s;animation-delay:73.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(733){-webkit-animation-delay:73.3s;animation-delay:73.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(734){-webkit-animation-delay:73.4s;animation-delay:73.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(735){-webkit-animation-delay:73.5s;animation-delay:73.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(736){-webkit-animation-delay:73.6s;animation-delay:73.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(737){-webkit-animation-delay:73.7s;animation-delay:73.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(738){-webkit-animation-delay:73.8s;animation-delay:73.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(739){-webkit-animation-delay:73.9s;animation-delay:73.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(740){-webkit-animation-delay:74s;animation-delay:74s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(741){-webkit-animation-delay:74.1s;animation-delay:74.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(742){-webkit-animation-delay:74.2s;animation-delay:74.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(743){-webkit-animation-delay:74.3s;animation-delay:74.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(744){-webkit-animation-delay:74.4s;animation-delay:74.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(745){-webkit-animation-delay:74.5s;animation-delay:74.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(746){-webkit-animation-delay:74.6s;animation-delay:74.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(747){-webkit-animation-delay:74.7s;animation-delay:74.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(748){-webkit-animation-delay:74.8s;animation-delay:74.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(749){-webkit-animation-delay:74.9s;animation-delay:74.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(750){-webkit-animation-delay:75s;animation-delay:75s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(751){-webkit-animation-delay:75.1s;animation-delay:75.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(752){-webkit-animation-delay:75.2s;animation-delay:75.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(753){-webkit-animation-delay:75.3s;animation-delay:75.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(754){-webkit-animation-delay:75.4s;animation-delay:75.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(755){-webkit-animation-delay:75.5s;animation-delay:75.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(756){-webkit-animation-delay:75.6s;animation-delay:75.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(757){-webkit-animation-delay:75.7s;animation-delay:75.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(758){-webkit-animation-delay:75.8s;animation-delay:75.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(759){-webkit-animation-delay:75.9s;animation-delay:75.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(760){-webkit-animation-delay:76s;animation-delay:76s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(761){-webkit-animation-delay:76.1s;animation-delay:76.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(762){-webkit-animation-delay:76.2s;animation-delay:76.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(763){-webkit-animation-delay:76.3s;animation-delay:76.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(764){-webkit-animation-delay:76.4s;animation-delay:76.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(765){-webkit-animation-delay:76.5s;animation-delay:76.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(766){-webkit-animation-delay:76.6s;animation-delay:76.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(767){-webkit-animation-delay:76.7s;animation-delay:76.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(768){-webkit-animation-delay:76.8s;animation-delay:76.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(769){-webkit-animation-delay:76.9s;animation-delay:76.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(770){-webkit-animation-delay:77s;animation-delay:77s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(771){-webkit-animation-delay:77.1s;animation-delay:77.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(772){-webkit-animation-delay:77.2s;animation-delay:77.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(773){-webkit-animation-delay:77.3s;animation-delay:77.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(774){-webkit-animation-delay:77.4s;animation-delay:77.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(775){-webkit-animation-delay:77.5s;animation-delay:77.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(776){-webkit-animation-delay:77.6s;animation-delay:77.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(777){-webkit-animation-delay:77.7s;animation-delay:77.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(778){-webkit-animation-delay:77.8s;animation-delay:77.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(779){-webkit-animation-delay:77.9s;animation-delay:77.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(780){-webkit-animation-delay:78s;animation-delay:78s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(781){-webkit-animation-delay:78.1s;animation-delay:78.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(782){-webkit-animation-delay:78.2s;animation-delay:78.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(783){-webkit-animation-delay:78.3s;animation-delay:78.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(784){-webkit-animation-delay:78.4s;animation-delay:78.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(785){-webkit-animation-delay:78.5s;animation-delay:78.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(786){-webkit-animation-delay:78.6s;animation-delay:78.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(787){-webkit-animation-delay:78.7s;animation-delay:78.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(788){-webkit-animation-delay:78.8s;animation-delay:78.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(789){-webkit-animation-delay:78.9s;animation-delay:78.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(790){-webkit-animation-delay:79s;animation-delay:79s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(791){-webkit-animation-delay:79.1s;animation-delay:79.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(792){-webkit-animation-delay:79.2s;animation-delay:79.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(793){-webkit-animation-delay:79.3s;animation-delay:79.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(794){-webkit-animation-delay:79.4s;animation-delay:79.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(795){-webkit-animation-delay:79.5s;animation-delay:79.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(796){-webkit-animation-delay:79.6s;animation-delay:79.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(797){-webkit-animation-delay:79.7s;animation-delay:79.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(798){-webkit-animation-delay:79.8s;animation-delay:79.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(799){-webkit-animation-delay:79.9s;animation-delay:79.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(800){-webkit-animation-delay:80s;animation-delay:80s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(801){-webkit-animation-delay:80.1s;animation-delay:80.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(802){-webkit-animation-delay:80.2s;animation-delay:80.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(803){-webkit-animation-delay:80.3s;animation-delay:80.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(804){-webkit-animation-delay:80.4s;animation-delay:80.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(805){-webkit-animation-delay:80.5s;animation-delay:80.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(806){-webkit-animation-delay:80.6s;animation-delay:80.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(807){-webkit-animation-delay:80.7s;animation-delay:80.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(808){-webkit-animation-delay:80.8s;animation-delay:80.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(809){-webkit-animation-delay:80.9s;animation-delay:80.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(810){-webkit-animation-delay:81s;animation-delay:81s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(811){-webkit-animation-delay:81.1s;animation-delay:81.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(812){-webkit-animation-delay:81.2s;animation-delay:81.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(813){-webkit-animation-delay:81.3s;animation-delay:81.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(814){-webkit-animation-delay:81.4s;animation-delay:81.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(815){-webkit-animation-delay:81.5s;animation-delay:81.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(816){-webkit-animation-delay:81.6s;animation-delay:81.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(817){-webkit-animation-delay:81.7s;animation-delay:81.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(818){-webkit-animation-delay:81.8s;animation-delay:81.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(819){-webkit-animation-delay:81.9s;animation-delay:81.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(820){-webkit-animation-delay:82s;animation-delay:82s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(821){-webkit-animation-delay:82.1s;animation-delay:82.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(822){-webkit-animation-delay:82.2s;animation-delay:82.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(823){-webkit-animation-delay:82.3s;animation-delay:82.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(824){-webkit-animation-delay:82.4s;animation-delay:82.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(825){-webkit-animation-delay:82.5s;animation-delay:82.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(826){-webkit-animation-delay:82.6s;animation-delay:82.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(827){-webkit-animation-delay:82.7s;animation-delay:82.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(828){-webkit-animation-delay:82.8s;animation-delay:82.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(829){-webkit-animation-delay:82.9s;animation-delay:82.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(830){-webkit-animation-delay:83s;animation-delay:83s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(831){-webkit-animation-delay:83.1s;animation-delay:83.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(832){-webkit-animation-delay:83.2s;animation-delay:83.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(833){-webkit-animation-delay:83.3s;animation-delay:83.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(834){-webkit-animation-delay:83.4s;animation-delay:83.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(835){-webkit-animation-delay:83.5s;animation-delay:83.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(836){-webkit-animation-delay:83.6s;animation-delay:83.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(837){-webkit-animation-delay:83.7s;animation-delay:83.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(838){-webkit-animation-delay:83.8s;animation-delay:83.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(839){-webkit-animation-delay:83.9s;animation-delay:83.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(840){-webkit-animation-delay:84s;animation-delay:84s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(841){-webkit-animation-delay:84.1s;animation-delay:84.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(842){-webkit-animation-delay:84.2s;animation-delay:84.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(843){-webkit-animation-delay:84.3s;animation-delay:84.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(844){-webkit-animation-delay:84.4s;animation-delay:84.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(845){-webkit-animation-delay:84.5s;animation-delay:84.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(846){-webkit-animation-delay:84.6s;animation-delay:84.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(847){-webkit-animation-delay:84.7s;animation-delay:84.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(848){-webkit-animation-delay:84.8s;animation-delay:84.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(849){-webkit-animation-delay:84.9s;animation-delay:84.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(850){-webkit-animation-delay:85s;animation-delay:85s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(851){-webkit-animation-delay:85.1s;animation-delay:85.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(852){-webkit-animation-delay:85.2s;animation-delay:85.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(853){-webkit-animation-delay:85.3s;animation-delay:85.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(854){-webkit-animation-delay:85.4s;animation-delay:85.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(855){-webkit-animation-delay:85.5s;animation-delay:85.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(856){-webkit-animation-delay:85.6s;animation-delay:85.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(857){-webkit-animation-delay:85.7s;animation-delay:85.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(858){-webkit-animation-delay:85.8s;animation-delay:85.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(859){-webkit-animation-delay:85.9s;animation-delay:85.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(860){-webkit-animation-delay:86s;animation-delay:86s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(861){-webkit-animation-delay:86.1s;animation-delay:86.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(862){-webkit-animation-delay:86.2s;animation-delay:86.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(863){-webkit-animation-delay:86.3s;animation-delay:86.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(864){-webkit-animation-delay:86.4s;animation-delay:86.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(865){-webkit-animation-delay:86.5s;animation-delay:86.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(866){-webkit-animation-delay:86.6s;animation-delay:86.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(867){-webkit-animation-delay:86.7s;animation-delay:86.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(868){-webkit-animation-delay:86.8s;animation-delay:86.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(869){-webkit-animation-delay:86.9s;animation-delay:86.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(870){-webkit-animation-delay:87s;animation-delay:87s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(871){-webkit-animation-delay:87.1s;animation-delay:87.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(872){-webkit-animation-delay:87.2s;animation-delay:87.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(873){-webkit-animation-delay:87.3s;animation-delay:87.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(874){-webkit-animation-delay:87.4s;animation-delay:87.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(875){-webkit-animation-delay:87.5s;animation-delay:87.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(876){-webkit-animation-delay:87.6s;animation-delay:87.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(877){-webkit-animation-delay:87.7s;animation-delay:87.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(878){-webkit-animation-delay:87.8s;animation-delay:87.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(879){-webkit-animation-delay:87.9s;animation-delay:87.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(880){-webkit-animation-delay:88s;animation-delay:88s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(881){-webkit-animation-delay:88.1s;animation-delay:88.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(882){-webkit-animation-delay:88.2s;animation-delay:88.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(883){-webkit-animation-delay:88.3s;animation-delay:88.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(884){-webkit-animation-delay:88.4s;animation-delay:88.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(885){-webkit-animation-delay:88.5s;animation-delay:88.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(886){-webkit-animation-delay:88.6s;animation-delay:88.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(887){-webkit-animation-delay:88.7s;animation-delay:88.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(888){-webkit-animation-delay:88.8s;animation-delay:88.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(889){-webkit-animation-delay:88.9s;animation-delay:88.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(890){-webkit-animation-delay:89s;animation-delay:89s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(891){-webkit-animation-delay:89.1s;animation-delay:89.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(892){-webkit-animation-delay:89.2s;animation-delay:89.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(893){-webkit-animation-delay:89.3s;animation-delay:89.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(894){-webkit-animation-delay:89.4s;animation-delay:89.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(895){-webkit-animation-delay:89.5s;animation-delay:89.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(896){-webkit-animation-delay:89.6s;animation-delay:89.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(897){-webkit-animation-delay:89.7s;animation-delay:89.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(898){-webkit-animation-delay:89.8s;animation-delay:89.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(899){-webkit-animation-delay:89.9s;animation-delay:89.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(900){-webkit-animation-delay:90s;animation-delay:90s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(901){-webkit-animation-delay:90.1s;animation-delay:90.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(902){-webkit-animation-delay:90.2s;animation-delay:90.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(903){-webkit-animation-delay:90.3s;animation-delay:90.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(904){-webkit-animation-delay:90.4s;animation-delay:90.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(905){-webkit-animation-delay:90.5s;animation-delay:90.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(906){-webkit-animation-delay:90.6s;animation-delay:90.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(907){-webkit-animation-delay:90.7s;animation-delay:90.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(908){-webkit-animation-delay:90.8s;animation-delay:90.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(909){-webkit-animation-delay:90.9s;animation-delay:90.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(910){-webkit-animation-delay:91s;animation-delay:91s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(911){-webkit-animation-delay:91.1s;animation-delay:91.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(912){-webkit-animation-delay:91.2s;animation-delay:91.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(913){-webkit-animation-delay:91.3s;animation-delay:91.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(914){-webkit-animation-delay:91.4s;animation-delay:91.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(915){-webkit-animation-delay:91.5s;animation-delay:91.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(916){-webkit-animation-delay:91.6s;animation-delay:91.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(917){-webkit-animation-delay:91.7s;animation-delay:91.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(918){-webkit-animation-delay:91.8s;animation-delay:91.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(919){-webkit-animation-delay:91.9s;animation-delay:91.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(920){-webkit-animation-delay:92s;animation-delay:92s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(921){-webkit-animation-delay:92.1s;animation-delay:92.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(922){-webkit-animation-delay:92.2s;animation-delay:92.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(923){-webkit-animation-delay:92.3s;animation-delay:92.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(924){-webkit-animation-delay:92.4s;animation-delay:92.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(925){-webkit-animation-delay:92.5s;animation-delay:92.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(926){-webkit-animation-delay:92.6s;animation-delay:92.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(927){-webkit-animation-delay:92.7s;animation-delay:92.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(928){-webkit-animation-delay:92.8s;animation-delay:92.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(929){-webkit-animation-delay:92.9s;animation-delay:92.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(930){-webkit-animation-delay:93s;animation-delay:93s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(931){-webkit-animation-delay:93.1s;animation-delay:93.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(932){-webkit-animation-delay:93.2s;animation-delay:93.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(933){-webkit-animation-delay:93.3s;animation-delay:93.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(934){-webkit-animation-delay:93.4s;animation-delay:93.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(935){-webkit-animation-delay:93.5s;animation-delay:93.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(936){-webkit-animation-delay:93.6s;animation-delay:93.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(937){-webkit-animation-delay:93.7s;animation-delay:93.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(938){-webkit-animation-delay:93.8s;animation-delay:93.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(939){-webkit-animation-delay:93.9s;animation-delay:93.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(940){-webkit-animation-delay:94s;animation-delay:94s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(941){-webkit-animation-delay:94.1s;animation-delay:94.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(942){-webkit-animation-delay:94.2s;animation-delay:94.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(943){-webkit-animation-delay:94.3s;animation-delay:94.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(944){-webkit-animation-delay:94.4s;animation-delay:94.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(945){-webkit-animation-delay:94.5s;animation-delay:94.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(946){-webkit-animation-delay:94.6s;animation-delay:94.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(947){-webkit-animation-delay:94.7s;animation-delay:94.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(948){-webkit-animation-delay:94.8s;animation-delay:94.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(949){-webkit-animation-delay:94.9s;animation-delay:94.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(950){-webkit-animation-delay:95s;animation-delay:95s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(951){-webkit-animation-delay:95.1s;animation-delay:95.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(952){-webkit-animation-delay:95.2s;animation-delay:95.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(953){-webkit-animation-delay:95.3s;animation-delay:95.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(954){-webkit-animation-delay:95.4s;animation-delay:95.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(955){-webkit-animation-delay:95.5s;animation-delay:95.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(956){-webkit-animation-delay:95.6s;animation-delay:95.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(957){-webkit-animation-delay:95.7s;animation-delay:95.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(958){-webkit-animation-delay:95.8s;animation-delay:95.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(959){-webkit-animation-delay:95.9s;animation-delay:95.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(960){-webkit-animation-delay:96s;animation-delay:96s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(961){-webkit-animation-delay:96.1s;animation-delay:96.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(962){-webkit-animation-delay:96.2s;animation-delay:96.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(963){-webkit-animation-delay:96.3s;animation-delay:96.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(964){-webkit-animation-delay:96.4s;animation-delay:96.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(965){-webkit-animation-delay:96.5s;animation-delay:96.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(966){-webkit-animation-delay:96.6s;animation-delay:96.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(967){-webkit-animation-delay:96.7s;animation-delay:96.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(968){-webkit-animation-delay:96.8s;animation-delay:96.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(969){-webkit-animation-delay:96.9s;animation-delay:96.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(970){-webkit-animation-delay:97s;animation-delay:97s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(971){-webkit-animation-delay:97.1s;animation-delay:97.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(972){-webkit-animation-delay:97.2s;animation-delay:97.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(973){-webkit-animation-delay:97.3s;animation-delay:97.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(974){-webkit-animation-delay:97.4s;animation-delay:97.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(975){-webkit-animation-delay:97.5s;animation-delay:97.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(976){-webkit-animation-delay:97.6s;animation-delay:97.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(977){-webkit-animation-delay:97.7s;animation-delay:97.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(978){-webkit-animation-delay:97.8s;animation-delay:97.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(979){-webkit-animation-delay:97.9s;animation-delay:97.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(980){-webkit-animation-delay:98s;animation-delay:98s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(981){-webkit-animation-delay:98.1s;animation-delay:98.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(982){-webkit-animation-delay:98.2s;animation-delay:98.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(983){-webkit-animation-delay:98.3s;animation-delay:98.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(984){-webkit-animation-delay:98.4s;animation-delay:98.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(985){-webkit-animation-delay:98.5s;animation-delay:98.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(986){-webkit-animation-delay:98.6s;animation-delay:98.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(987){-webkit-animation-delay:98.7s;animation-delay:98.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(988){-webkit-animation-delay:98.8s;animation-delay:98.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(989){-webkit-animation-delay:98.9s;animation-delay:98.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(990){-webkit-animation-delay:99s;animation-delay:99s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(991){-webkit-animation-delay:99.1s;animation-delay:99.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(992){-webkit-animation-delay:99.2s;animation-delay:99.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(993){-webkit-animation-delay:99.3s;animation-delay:99.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(994){-webkit-animation-delay:99.4s;animation-delay:99.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(995){-webkit-animation-delay:99.5s;animation-delay:99.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(996){-webkit-animation-delay:99.6s;animation-delay:99.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(997){-webkit-animation-delay:99.7s;animation-delay:99.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(998){-webkit-animation-delay:99.8s;animation-delay:99.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(999){-webkit-animation-delay:99.9s;animation-delay:99.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1000){-webkit-animation-delay:100s;animation-delay:100s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1001){-webkit-animation-delay:100.1s;animation-delay:100.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1002){-webkit-animation-delay:100.2s;animation-delay:100.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1003){-webkit-animation-delay:100.3s;animation-delay:100.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1004){-webkit-animation-delay:100.4s;animation-delay:100.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1005){-webkit-animation-delay:100.5s;animation-delay:100.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1006){-webkit-animation-delay:100.6s;animation-delay:100.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1007){-webkit-animation-delay:100.7s;animation-delay:100.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1008){-webkit-animation-delay:100.8s;animation-delay:100.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1009){-webkit-animation-delay:100.9s;animation-delay:100.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1010){-webkit-animation-delay:101s;animation-delay:101s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1011){-webkit-animation-delay:101.1s;animation-delay:101.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1012){-webkit-animation-delay:101.2s;animation-delay:101.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1013){-webkit-animation-delay:101.3s;animation-delay:101.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1014){-webkit-animation-delay:101.4s;animation-delay:101.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1015){-webkit-animation-delay:101.5s;animation-delay:101.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1016){-webkit-animation-delay:101.6s;animation-delay:101.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1017){-webkit-animation-delay:101.7s;animation-delay:101.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1018){-webkit-animation-delay:101.8s;animation-delay:101.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1019){-webkit-animation-delay:101.9s;animation-delay:101.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1020){-webkit-animation-delay:102s;animation-delay:102s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1021){-webkit-animation-delay:102.1s;animation-delay:102.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1022){-webkit-animation-delay:102.2s;animation-delay:102.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1023){-webkit-animation-delay:102.3s;animation-delay:102.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1024){-webkit-animation-delay:102.4s;animation-delay:102.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1025){-webkit-animation-delay:102.5s;animation-delay:102.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1026){-webkit-animation-delay:102.6s;animation-delay:102.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1027){-webkit-animation-delay:102.7s;animation-delay:102.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1028){-webkit-animation-delay:102.8s;animation-delay:102.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1029){-webkit-animation-delay:102.9s;animation-delay:102.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1030){-webkit-animation-delay:103s;animation-delay:103s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1031){-webkit-animation-delay:103.1s;animation-delay:103.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1032){-webkit-animation-delay:103.2s;animation-delay:103.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1033){-webkit-animation-delay:103.3s;animation-delay:103.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1034){-webkit-animation-delay:103.4s;animation-delay:103.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1035){-webkit-animation-delay:103.5s;animation-delay:103.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1036){-webkit-animation-delay:103.6s;animation-delay:103.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1037){-webkit-animation-delay:103.7s;animation-delay:103.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1038){-webkit-animation-delay:103.8s;animation-delay:103.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1039){-webkit-animation-delay:103.9s;animation-delay:103.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1040){-webkit-animation-delay:104s;animation-delay:104s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1041){-webkit-animation-delay:104.1s;animation-delay:104.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1042){-webkit-animation-delay:104.2s;animation-delay:104.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1043){-webkit-animation-delay:104.3s;animation-delay:104.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1044){-webkit-animation-delay:104.4s;animation-delay:104.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1045){-webkit-animation-delay:104.5s;animation-delay:104.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1046){-webkit-animation-delay:104.6s;animation-delay:104.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1047){-webkit-animation-delay:104.7s;animation-delay:104.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1048){-webkit-animation-delay:104.8s;animation-delay:104.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1049){-webkit-animation-delay:104.9s;animation-delay:104.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1050){-webkit-animation-delay:105s;animation-delay:105s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1051){-webkit-animation-delay:105.1s;animation-delay:105.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1052){-webkit-animation-delay:105.2s;animation-delay:105.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1053){-webkit-animation-delay:105.3s;animation-delay:105.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1054){-webkit-animation-delay:105.4s;animation-delay:105.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1055){-webkit-animation-delay:105.5s;animation-delay:105.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1056){-webkit-animation-delay:105.6s;animation-delay:105.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1057){-webkit-animation-delay:105.7s;animation-delay:105.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1058){-webkit-animation-delay:105.8s;animation-delay:105.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1059){-webkit-animation-delay:105.9s;animation-delay:105.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1060){-webkit-animation-delay:106s;animation-delay:106s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1061){-webkit-animation-delay:106.1s;animation-delay:106.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1062){-webkit-animation-delay:106.2s;animation-delay:106.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1063){-webkit-animation-delay:106.3s;animation-delay:106.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1064){-webkit-animation-delay:106.4s;animation-delay:106.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1065){-webkit-animation-delay:106.5s;animation-delay:106.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1066){-webkit-animation-delay:106.6s;animation-delay:106.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1067){-webkit-animation-delay:106.7s;animation-delay:106.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1068){-webkit-animation-delay:106.8s;animation-delay:106.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1069){-webkit-animation-delay:106.9s;animation-delay:106.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1070){-webkit-animation-delay:107s;animation-delay:107s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1071){-webkit-animation-delay:107.1s;animation-delay:107.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1072){-webkit-animation-delay:107.2s;animation-delay:107.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1073){-webkit-animation-delay:107.3s;animation-delay:107.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1074){-webkit-animation-delay:107.4s;animation-delay:107.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1075){-webkit-animation-delay:107.5s;animation-delay:107.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1076){-webkit-animation-delay:107.6s;animation-delay:107.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1077){-webkit-animation-delay:107.7s;animation-delay:107.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1078){-webkit-animation-delay:107.8s;animation-delay:107.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1079){-webkit-animation-delay:107.9s;animation-delay:107.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1080){-webkit-animation-delay:108s;animation-delay:108s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1081){-webkit-animation-delay:108.1s;animation-delay:108.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1082){-webkit-animation-delay:108.2s;animation-delay:108.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1083){-webkit-animation-delay:108.3s;animation-delay:108.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1084){-webkit-animation-delay:108.4s;animation-delay:108.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1085){-webkit-animation-delay:108.5s;animation-delay:108.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1086){-webkit-animation-delay:108.6s;animation-delay:108.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1087){-webkit-animation-delay:108.7s;animation-delay:108.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1088){-webkit-animation-delay:108.8s;animation-delay:108.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1089){-webkit-animation-delay:108.9s;animation-delay:108.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1090){-webkit-animation-delay:109s;animation-delay:109s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1091){-webkit-animation-delay:109.1s;animation-delay:109.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1092){-webkit-animation-delay:109.2s;animation-delay:109.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1093){-webkit-animation-delay:109.3s;animation-delay:109.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1094){-webkit-animation-delay:109.4s;animation-delay:109.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1095){-webkit-animation-delay:109.5s;animation-delay:109.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1096){-webkit-animation-delay:109.6s;animation-delay:109.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1097){-webkit-animation-delay:109.7s;animation-delay:109.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1098){-webkit-animation-delay:109.8s;animation-delay:109.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1099){-webkit-animation-delay:109.9s;animation-delay:109.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1100){-webkit-animation-delay:110s;animation-delay:110s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1101){-webkit-animation-delay:110.1s;animation-delay:110.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1102){-webkit-animation-delay:110.2s;animation-delay:110.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1103){-webkit-animation-delay:110.3s;animation-delay:110.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1104){-webkit-animation-delay:110.4s;animation-delay:110.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1105){-webkit-animation-delay:110.5s;animation-delay:110.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1106){-webkit-animation-delay:110.6s;animation-delay:110.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1107){-webkit-animation-delay:110.7s;animation-delay:110.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1108){-webkit-animation-delay:110.8s;animation-delay:110.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1109){-webkit-animation-delay:110.9s;animation-delay:110.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1110){-webkit-animation-delay:111s;animation-delay:111s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1111){-webkit-animation-delay:111.1s;animation-delay:111.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1112){-webkit-animation-delay:111.2s;animation-delay:111.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1113){-webkit-animation-delay:111.3s;animation-delay:111.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1114){-webkit-animation-delay:111.4s;animation-delay:111.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1115){-webkit-animation-delay:111.5s;animation-delay:111.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1116){-webkit-animation-delay:111.6s;animation-delay:111.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1117){-webkit-animation-delay:111.7s;animation-delay:111.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1118){-webkit-animation-delay:111.8s;animation-delay:111.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1119){-webkit-animation-delay:111.9s;animation-delay:111.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1120){-webkit-animation-delay:112s;animation-delay:112s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1121){-webkit-animation-delay:112.1s;animation-delay:112.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1122){-webkit-animation-delay:112.2s;animation-delay:112.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1123){-webkit-animation-delay:112.3s;animation-delay:112.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1124){-webkit-animation-delay:112.4s;animation-delay:112.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1125){-webkit-animation-delay:112.5s;animation-delay:112.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1126){-webkit-animation-delay:112.6s;animation-delay:112.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1127){-webkit-animation-delay:112.7s;animation-delay:112.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1128){-webkit-animation-delay:112.8s;animation-delay:112.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1129){-webkit-animation-delay:112.9s;animation-delay:112.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1130){-webkit-animation-delay:113s;animation-delay:113s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1131){-webkit-animation-delay:113.1s;animation-delay:113.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1132){-webkit-animation-delay:113.2s;animation-delay:113.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1133){-webkit-animation-delay:113.3s;animation-delay:113.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1134){-webkit-animation-delay:113.4s;animation-delay:113.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1135){-webkit-animation-delay:113.5s;animation-delay:113.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1136){-webkit-animation-delay:113.6s;animation-delay:113.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1137){-webkit-animation-delay:113.7s;animation-delay:113.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1138){-webkit-animation-delay:113.8s;animation-delay:113.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1139){-webkit-animation-delay:113.9s;animation-delay:113.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1140){-webkit-animation-delay:114s;animation-delay:114s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1141){-webkit-animation-delay:114.1s;animation-delay:114.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1142){-webkit-animation-delay:114.2s;animation-delay:114.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1143){-webkit-animation-delay:114.3s;animation-delay:114.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1144){-webkit-animation-delay:114.4s;animation-delay:114.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1145){-webkit-animation-delay:114.5s;animation-delay:114.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1146){-webkit-animation-delay:114.6s;animation-delay:114.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1147){-webkit-animation-delay:114.7s;animation-delay:114.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1148){-webkit-animation-delay:114.8s;animation-delay:114.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1149){-webkit-animation-delay:114.9s;animation-delay:114.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1150){-webkit-animation-delay:115s;animation-delay:115s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1151){-webkit-animation-delay:115.1s;animation-delay:115.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1152){-webkit-animation-delay:115.2s;animation-delay:115.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1153){-webkit-animation-delay:115.3s;animation-delay:115.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1154){-webkit-animation-delay:115.4s;animation-delay:115.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1155){-webkit-animation-delay:115.5s;animation-delay:115.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1156){-webkit-animation-delay:115.6s;animation-delay:115.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1157){-webkit-animation-delay:115.7s;animation-delay:115.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1158){-webkit-animation-delay:115.8s;animation-delay:115.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1159){-webkit-animation-delay:115.9s;animation-delay:115.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1160){-webkit-animation-delay:116s;animation-delay:116s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1161){-webkit-animation-delay:116.1s;animation-delay:116.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1162){-webkit-animation-delay:116.2s;animation-delay:116.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1163){-webkit-animation-delay:116.3s;animation-delay:116.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1164){-webkit-animation-delay:116.4s;animation-delay:116.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1165){-webkit-animation-delay:116.5s;animation-delay:116.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1166){-webkit-animation-delay:116.6s;animation-delay:116.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1167){-webkit-animation-delay:116.7s;animation-delay:116.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1168){-webkit-animation-delay:116.8s;animation-delay:116.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1169){-webkit-animation-delay:116.9s;animation-delay:116.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1170){-webkit-animation-delay:117s;animation-delay:117s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1171){-webkit-animation-delay:117.1s;animation-delay:117.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1172){-webkit-animation-delay:117.2s;animation-delay:117.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1173){-webkit-animation-delay:117.3s;animation-delay:117.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1174){-webkit-animation-delay:117.4s;animation-delay:117.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1175){-webkit-animation-delay:117.5s;animation-delay:117.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1176){-webkit-animation-delay:117.6s;animation-delay:117.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1177){-webkit-animation-delay:117.7s;animation-delay:117.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1178){-webkit-animation-delay:117.8s;animation-delay:117.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1179){-webkit-animation-delay:117.9s;animation-delay:117.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1180){-webkit-animation-delay:118s;animation-delay:118s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1181){-webkit-animation-delay:118.1s;animation-delay:118.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1182){-webkit-animation-delay:118.2s;animation-delay:118.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1183){-webkit-animation-delay:118.3s;animation-delay:118.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1184){-webkit-animation-delay:118.4s;animation-delay:118.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1185){-webkit-animation-delay:118.5s;animation-delay:118.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1186){-webkit-animation-delay:118.6s;animation-delay:118.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1187){-webkit-animation-delay:118.7s;animation-delay:118.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1188){-webkit-animation-delay:118.8s;animation-delay:118.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1189){-webkit-animation-delay:118.9s;animation-delay:118.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1190){-webkit-animation-delay:119s;animation-delay:119s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1191){-webkit-animation-delay:119.1s;animation-delay:119.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1192){-webkit-animation-delay:119.2s;animation-delay:119.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1193){-webkit-animation-delay:119.3s;animation-delay:119.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1194){-webkit-animation-delay:119.4s;animation-delay:119.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1195){-webkit-animation-delay:119.5s;animation-delay:119.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1196){-webkit-animation-delay:119.6s;animation-delay:119.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1197){-webkit-animation-delay:119.7s;animation-delay:119.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1198){-webkit-animation-delay:119.8s;animation-delay:119.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1199){-webkit-animation-delay:119.9s;animation-delay:119.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1200){-webkit-animation-delay:120s;animation-delay:120s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1201){-webkit-animation-delay:120.1s;animation-delay:120.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1202){-webkit-animation-delay:120.2s;animation-delay:120.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1203){-webkit-animation-delay:120.3s;animation-delay:120.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1204){-webkit-animation-delay:120.4s;animation-delay:120.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1205){-webkit-animation-delay:120.5s;animation-delay:120.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1206){-webkit-animation-delay:120.6s;animation-delay:120.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1207){-webkit-animation-delay:120.7s;animation-delay:120.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1208){-webkit-animation-delay:120.8s;animation-delay:120.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1209){-webkit-animation-delay:120.9s;animation-delay:120.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1210){-webkit-animation-delay:121s;animation-delay:121s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1211){-webkit-animation-delay:121.1s;animation-delay:121.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1212){-webkit-animation-delay:121.2s;animation-delay:121.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1213){-webkit-animation-delay:121.3s;animation-delay:121.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1214){-webkit-animation-delay:121.4s;animation-delay:121.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1215){-webkit-animation-delay:121.5s;animation-delay:121.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1216){-webkit-animation-delay:121.6s;animation-delay:121.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1217){-webkit-animation-delay:121.7s;animation-delay:121.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1218){-webkit-animation-delay:121.8s;animation-delay:121.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1219){-webkit-animation-delay:121.9s;animation-delay:121.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1220){-webkit-animation-delay:122s;animation-delay:122s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1221){-webkit-animation-delay:122.1s;animation-delay:122.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1222){-webkit-animation-delay:122.2s;animation-delay:122.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1223){-webkit-animation-delay:122.3s;animation-delay:122.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1224){-webkit-animation-delay:122.4s;animation-delay:122.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1225){-webkit-animation-delay:122.5s;animation-delay:122.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1226){-webkit-animation-delay:122.6s;animation-delay:122.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1227){-webkit-animation-delay:122.7s;animation-delay:122.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1228){-webkit-animation-delay:122.8s;animation-delay:122.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1229){-webkit-animation-delay:122.9s;animation-delay:122.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1230){-webkit-animation-delay:123s;animation-delay:123s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1231){-webkit-animation-delay:123.1s;animation-delay:123.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1232){-webkit-animation-delay:123.2s;animation-delay:123.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1233){-webkit-animation-delay:123.3s;animation-delay:123.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1234){-webkit-animation-delay:123.4s;animation-delay:123.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1235){-webkit-animation-delay:123.5s;animation-delay:123.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1236){-webkit-animation-delay:123.6s;animation-delay:123.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1237){-webkit-animation-delay:123.7s;animation-delay:123.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1238){-webkit-animation-delay:123.8s;animation-delay:123.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1239){-webkit-animation-delay:123.9s;animation-delay:123.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1240){-webkit-animation-delay:124s;animation-delay:124s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1241){-webkit-animation-delay:124.1s;animation-delay:124.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1242){-webkit-animation-delay:124.2s;animation-delay:124.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1243){-webkit-animation-delay:124.3s;animation-delay:124.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1244){-webkit-animation-delay:124.4s;animation-delay:124.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1245){-webkit-animation-delay:124.5s;animation-delay:124.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1246){-webkit-animation-delay:124.6s;animation-delay:124.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1247){-webkit-animation-delay:124.7s;animation-delay:124.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1248){-webkit-animation-delay:124.8s;animation-delay:124.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1249){-webkit-animation-delay:124.9s;animation-delay:124.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1250){-webkit-animation-delay:125s;animation-delay:125s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1251){-webkit-animation-delay:125.1s;animation-delay:125.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1252){-webkit-animation-delay:125.2s;animation-delay:125.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1253){-webkit-animation-delay:125.3s;animation-delay:125.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1254){-webkit-animation-delay:125.4s;animation-delay:125.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1255){-webkit-animation-delay:125.5s;animation-delay:125.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1256){-webkit-animation-delay:125.6s;animation-delay:125.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1257){-webkit-animation-delay:125.7s;animation-delay:125.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1258){-webkit-animation-delay:125.8s;animation-delay:125.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1259){-webkit-animation-delay:125.9s;animation-delay:125.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1260){-webkit-animation-delay:126s;animation-delay:126s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1261){-webkit-animation-delay:126.1s;animation-delay:126.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1262){-webkit-animation-delay:126.2s;animation-delay:126.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1263){-webkit-animation-delay:126.3s;animation-delay:126.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1264){-webkit-animation-delay:126.4s;animation-delay:126.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1265){-webkit-animation-delay:126.5s;animation-delay:126.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1266){-webkit-animation-delay:126.6s;animation-delay:126.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1267){-webkit-animation-delay:126.7s;animation-delay:126.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1268){-webkit-animation-delay:126.8s;animation-delay:126.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1269){-webkit-animation-delay:126.9s;animation-delay:126.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1270){-webkit-animation-delay:127s;animation-delay:127s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1271){-webkit-animation-delay:127.1s;animation-delay:127.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1272){-webkit-animation-delay:127.2s;animation-delay:127.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1273){-webkit-animation-delay:127.3s;animation-delay:127.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1274){-webkit-animation-delay:127.4s;animation-delay:127.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1275){-webkit-animation-delay:127.5s;animation-delay:127.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1276){-webkit-animation-delay:127.6s;animation-delay:127.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1277){-webkit-animation-delay:127.7s;animation-delay:127.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1278){-webkit-animation-delay:127.8s;animation-delay:127.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1279){-webkit-animation-delay:127.9s;animation-delay:127.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1280){-webkit-animation-delay:128s;animation-delay:128s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1281){-webkit-animation-delay:128.1s;animation-delay:128.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1282){-webkit-animation-delay:128.2s;animation-delay:128.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1283){-webkit-animation-delay:128.3s;animation-delay:128.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1284){-webkit-animation-delay:128.4s;animation-delay:128.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1285){-webkit-animation-delay:128.5s;animation-delay:128.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1286){-webkit-animation-delay:128.6s;animation-delay:128.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1287){-webkit-animation-delay:128.7s;animation-delay:128.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1288){-webkit-animation-delay:128.8s;animation-delay:128.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1289){-webkit-animation-delay:128.9s;animation-delay:128.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1290){-webkit-animation-delay:129s;animation-delay:129s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1291){-webkit-animation-delay:129.1s;animation-delay:129.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1292){-webkit-animation-delay:129.2s;animation-delay:129.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1293){-webkit-animation-delay:129.3s;animation-delay:129.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1294){-webkit-animation-delay:129.4s;animation-delay:129.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1295){-webkit-animation-delay:129.5s;animation-delay:129.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1296){-webkit-animation-delay:129.6s;animation-delay:129.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1297){-webkit-animation-delay:129.7s;animation-delay:129.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1298){-webkit-animation-delay:129.8s;animation-delay:129.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1299){-webkit-animation-delay:129.9s;animation-delay:129.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1300){-webkit-animation-delay:130s;animation-delay:130s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1301){-webkit-animation-delay:130.1s;animation-delay:130.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1302){-webkit-animation-delay:130.2s;animation-delay:130.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1303){-webkit-animation-delay:130.3s;animation-delay:130.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1304){-webkit-animation-delay:130.4s;animation-delay:130.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1305){-webkit-animation-delay:130.5s;animation-delay:130.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1306){-webkit-animation-delay:130.6s;animation-delay:130.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1307){-webkit-animation-delay:130.7s;animation-delay:130.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1308){-webkit-animation-delay:130.8s;animation-delay:130.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1309){-webkit-animation-delay:130.9s;animation-delay:130.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1310){-webkit-animation-delay:131s;animation-delay:131s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1311){-webkit-animation-delay:131.1s;animation-delay:131.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1312){-webkit-animation-delay:131.2s;animation-delay:131.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1313){-webkit-animation-delay:131.3s;animation-delay:131.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1314){-webkit-animation-delay:131.4s;animation-delay:131.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1315){-webkit-animation-delay:131.5s;animation-delay:131.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1316){-webkit-animation-delay:131.6s;animation-delay:131.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1317){-webkit-animation-delay:131.7s;animation-delay:131.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1318){-webkit-animation-delay:131.8s;animation-delay:131.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1319){-webkit-animation-delay:131.9s;animation-delay:131.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1320){-webkit-animation-delay:132s;animation-delay:132s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1321){-webkit-animation-delay:132.1s;animation-delay:132.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1322){-webkit-animation-delay:132.2s;animation-delay:132.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1323){-webkit-animation-delay:132.3s;animation-delay:132.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1324){-webkit-animation-delay:132.4s;animation-delay:132.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1325){-webkit-animation-delay:132.5s;animation-delay:132.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1326){-webkit-animation-delay:132.6s;animation-delay:132.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1327){-webkit-animation-delay:132.7s;animation-delay:132.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1328){-webkit-animation-delay:132.8s;animation-delay:132.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1329){-webkit-animation-delay:132.9s;animation-delay:132.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1330){-webkit-animation-delay:133s;animation-delay:133s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1331){-webkit-animation-delay:133.1s;animation-delay:133.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1332){-webkit-animation-delay:133.2s;animation-delay:133.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1333){-webkit-animation-delay:133.3s;animation-delay:133.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1334){-webkit-animation-delay:133.4s;animation-delay:133.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1335){-webkit-animation-delay:133.5s;animation-delay:133.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1336){-webkit-animation-delay:133.6s;animation-delay:133.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1337){-webkit-animation-delay:133.7s;animation-delay:133.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1338){-webkit-animation-delay:133.8s;animation-delay:133.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1339){-webkit-animation-delay:133.9s;animation-delay:133.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1340){-webkit-animation-delay:134s;animation-delay:134s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1341){-webkit-animation-delay:134.1s;animation-delay:134.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1342){-webkit-animation-delay:134.2s;animation-delay:134.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1343){-webkit-animation-delay:134.3s;animation-delay:134.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1344){-webkit-animation-delay:134.4s;animation-delay:134.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1345){-webkit-animation-delay:134.5s;animation-delay:134.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1346){-webkit-animation-delay:134.6s;animation-delay:134.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1347){-webkit-animation-delay:134.7s;animation-delay:134.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1348){-webkit-animation-delay:134.8s;animation-delay:134.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1349){-webkit-animation-delay:134.9s;animation-delay:134.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1350){-webkit-animation-delay:135s;animation-delay:135s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1351){-webkit-animation-delay:135.1s;animation-delay:135.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1352){-webkit-animation-delay:135.2s;animation-delay:135.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1353){-webkit-animation-delay:135.3s;animation-delay:135.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1354){-webkit-animation-delay:135.4s;animation-delay:135.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1355){-webkit-animation-delay:135.5s;animation-delay:135.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1356){-webkit-animation-delay:135.6s;animation-delay:135.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1357){-webkit-animation-delay:135.7s;animation-delay:135.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1358){-webkit-animation-delay:135.8s;animation-delay:135.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1359){-webkit-animation-delay:135.9s;animation-delay:135.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1360){-webkit-animation-delay:136s;animation-delay:136s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1361){-webkit-animation-delay:136.1s;animation-delay:136.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1362){-webkit-animation-delay:136.2s;animation-delay:136.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1363){-webkit-animation-delay:136.3s;animation-delay:136.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1364){-webkit-animation-delay:136.4s;animation-delay:136.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1365){-webkit-animation-delay:136.5s;animation-delay:136.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1366){-webkit-animation-delay:136.6s;animation-delay:136.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1367){-webkit-animation-delay:136.7s;animation-delay:136.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1368){-webkit-animation-delay:136.8s;animation-delay:136.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1369){-webkit-animation-delay:136.9s;animation-delay:136.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1370){-webkit-animation-delay:137s;animation-delay:137s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1371){-webkit-animation-delay:137.1s;animation-delay:137.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1372){-webkit-animation-delay:137.2s;animation-delay:137.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1373){-webkit-animation-delay:137.3s;animation-delay:137.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1374){-webkit-animation-delay:137.4s;animation-delay:137.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1375){-webkit-animation-delay:137.5s;animation-delay:137.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1376){-webkit-animation-delay:137.6s;animation-delay:137.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1377){-webkit-animation-delay:137.7s;animation-delay:137.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1378){-webkit-animation-delay:137.8s;animation-delay:137.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1379){-webkit-animation-delay:137.9s;animation-delay:137.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1380){-webkit-animation-delay:138s;animation-delay:138s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1381){-webkit-animation-delay:138.1s;animation-delay:138.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1382){-webkit-animation-delay:138.2s;animation-delay:138.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1383){-webkit-animation-delay:138.3s;animation-delay:138.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1384){-webkit-animation-delay:138.4s;animation-delay:138.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1385){-webkit-animation-delay:138.5s;animation-delay:138.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1386){-webkit-animation-delay:138.6s;animation-delay:138.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1387){-webkit-animation-delay:138.7s;animation-delay:138.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1388){-webkit-animation-delay:138.8s;animation-delay:138.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1389){-webkit-animation-delay:138.9s;animation-delay:138.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1390){-webkit-animation-delay:139s;animation-delay:139s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1391){-webkit-animation-delay:139.1s;animation-delay:139.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1392){-webkit-animation-delay:139.2s;animation-delay:139.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1393){-webkit-animation-delay:139.3s;animation-delay:139.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1394){-webkit-animation-delay:139.4s;animation-delay:139.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1395){-webkit-animation-delay:139.5s;animation-delay:139.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1396){-webkit-animation-delay:139.6s;animation-delay:139.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1397){-webkit-animation-delay:139.7s;animation-delay:139.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1398){-webkit-animation-delay:139.8s;animation-delay:139.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1399){-webkit-animation-delay:139.9s;animation-delay:139.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1400){-webkit-animation-delay:140s;animation-delay:140s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1401){-webkit-animation-delay:140.1s;animation-delay:140.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1402){-webkit-animation-delay:140.2s;animation-delay:140.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1403){-webkit-animation-delay:140.3s;animation-delay:140.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1404){-webkit-animation-delay:140.4s;animation-delay:140.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1405){-webkit-animation-delay:140.5s;animation-delay:140.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1406){-webkit-animation-delay:140.6s;animation-delay:140.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1407){-webkit-animation-delay:140.7s;animation-delay:140.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1408){-webkit-animation-delay:140.8s;animation-delay:140.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1409){-webkit-animation-delay:140.9s;animation-delay:140.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1410){-webkit-animation-delay:141s;animation-delay:141s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1411){-webkit-animation-delay:141.1s;animation-delay:141.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1412){-webkit-animation-delay:141.2s;animation-delay:141.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1413){-webkit-animation-delay:141.3s;animation-delay:141.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1414){-webkit-animation-delay:141.4s;animation-delay:141.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1415){-webkit-animation-delay:141.5s;animation-delay:141.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1416){-webkit-animation-delay:141.6s;animation-delay:141.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1417){-webkit-animation-delay:141.7s;animation-delay:141.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1418){-webkit-animation-delay:141.8s;animation-delay:141.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1419){-webkit-animation-delay:141.9s;animation-delay:141.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1420){-webkit-animation-delay:142s;animation-delay:142s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1421){-webkit-animation-delay:142.1s;animation-delay:142.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1422){-webkit-animation-delay:142.2s;animation-delay:142.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1423){-webkit-animation-delay:142.3s;animation-delay:142.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1424){-webkit-animation-delay:142.4s;animation-delay:142.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1425){-webkit-animation-delay:142.5s;animation-delay:142.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1426){-webkit-animation-delay:142.6s;animation-delay:142.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1427){-webkit-animation-delay:142.7s;animation-delay:142.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1428){-webkit-animation-delay:142.8s;animation-delay:142.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1429){-webkit-animation-delay:142.9s;animation-delay:142.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1430){-webkit-animation-delay:143s;animation-delay:143s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1431){-webkit-animation-delay:143.1s;animation-delay:143.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1432){-webkit-animation-delay:143.2s;animation-delay:143.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1433){-webkit-animation-delay:143.3s;animation-delay:143.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1434){-webkit-animation-delay:143.4s;animation-delay:143.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1435){-webkit-animation-delay:143.5s;animation-delay:143.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1436){-webkit-animation-delay:143.6s;animation-delay:143.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1437){-webkit-animation-delay:143.7s;animation-delay:143.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1438){-webkit-animation-delay:143.8s;animation-delay:143.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1439){-webkit-animation-delay:143.9s;animation-delay:143.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1440){-webkit-animation-delay:144s;animation-delay:144s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1441){-webkit-animation-delay:144.1s;animation-delay:144.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1442){-webkit-animation-delay:144.2s;animation-delay:144.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1443){-webkit-animation-delay:144.3s;animation-delay:144.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1444){-webkit-animation-delay:144.4s;animation-delay:144.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1445){-webkit-animation-delay:144.5s;animation-delay:144.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1446){-webkit-animation-delay:144.6s;animation-delay:144.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1447){-webkit-animation-delay:144.7s;animation-delay:144.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1448){-webkit-animation-delay:144.8s;animation-delay:144.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1449){-webkit-animation-delay:144.9s;animation-delay:144.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1450){-webkit-animation-delay:145s;animation-delay:145s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1451){-webkit-animation-delay:145.1s;animation-delay:145.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1452){-webkit-animation-delay:145.2s;animation-delay:145.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1453){-webkit-animation-delay:145.3s;animation-delay:145.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1454){-webkit-animation-delay:145.4s;animation-delay:145.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1455){-webkit-animation-delay:145.5s;animation-delay:145.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1456){-webkit-animation-delay:145.6s;animation-delay:145.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1457){-webkit-animation-delay:145.7s;animation-delay:145.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1458){-webkit-animation-delay:145.8s;animation-delay:145.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1459){-webkit-animation-delay:145.9s;animation-delay:145.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1460){-webkit-animation-delay:146s;animation-delay:146s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1461){-webkit-animation-delay:146.1s;animation-delay:146.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1462){-webkit-animation-delay:146.2s;animation-delay:146.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1463){-webkit-animation-delay:146.3s;animation-delay:146.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1464){-webkit-animation-delay:146.4s;animation-delay:146.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1465){-webkit-animation-delay:146.5s;animation-delay:146.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1466){-webkit-animation-delay:146.6s;animation-delay:146.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1467){-webkit-animation-delay:146.7s;animation-delay:146.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1468){-webkit-animation-delay:146.8s;animation-delay:146.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1469){-webkit-animation-delay:146.9s;animation-delay:146.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1470){-webkit-animation-delay:147s;animation-delay:147s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1471){-webkit-animation-delay:147.1s;animation-delay:147.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1472){-webkit-animation-delay:147.2s;animation-delay:147.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1473){-webkit-animation-delay:147.3s;animation-delay:147.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1474){-webkit-animation-delay:147.4s;animation-delay:147.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1475){-webkit-animation-delay:147.5s;animation-delay:147.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1476){-webkit-animation-delay:147.6s;animation-delay:147.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1477){-webkit-animation-delay:147.7s;animation-delay:147.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1478){-webkit-animation-delay:147.8s;animation-delay:147.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1479){-webkit-animation-delay:147.9s;animation-delay:147.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1480){-webkit-animation-delay:148s;animation-delay:148s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1481){-webkit-animation-delay:148.1s;animation-delay:148.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1482){-webkit-animation-delay:148.2s;animation-delay:148.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1483){-webkit-animation-delay:148.3s;animation-delay:148.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1484){-webkit-animation-delay:148.4s;animation-delay:148.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1485){-webkit-animation-delay:148.5s;animation-delay:148.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1486){-webkit-animation-delay:148.6s;animation-delay:148.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1487){-webkit-animation-delay:148.7s;animation-delay:148.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1488){-webkit-animation-delay:148.8s;animation-delay:148.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1489){-webkit-animation-delay:148.9s;animation-delay:148.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1490){-webkit-animation-delay:149s;animation-delay:149s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1491){-webkit-animation-delay:149.1s;animation-delay:149.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1492){-webkit-animation-delay:149.2s;animation-delay:149.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1493){-webkit-animation-delay:149.3s;animation-delay:149.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1494){-webkit-animation-delay:149.4s;animation-delay:149.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1495){-webkit-animation-delay:149.5s;animation-delay:149.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1496){-webkit-animation-delay:149.6s;animation-delay:149.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1497){-webkit-animation-delay:149.7s;animation-delay:149.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1498){-webkit-animation-delay:149.8s;animation-delay:149.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1499){-webkit-animation-delay:149.9s;animation-delay:149.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1500){-webkit-animation-delay:150s;animation-delay:150s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1501){-webkit-animation-delay:150.1s;animation-delay:150.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1502){-webkit-animation-delay:150.2s;animation-delay:150.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1503){-webkit-animation-delay:150.3s;animation-delay:150.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1504){-webkit-animation-delay:150.4s;animation-delay:150.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1505){-webkit-animation-delay:150.5s;animation-delay:150.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1506){-webkit-animation-delay:150.6s;animation-delay:150.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1507){-webkit-animation-delay:150.7s;animation-delay:150.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1508){-webkit-animation-delay:150.8s;animation-delay:150.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1509){-webkit-animation-delay:150.9s;animation-delay:150.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1510){-webkit-animation-delay:151s;animation-delay:151s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1511){-webkit-animation-delay:151.1s;animation-delay:151.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1512){-webkit-animation-delay:151.2s;animation-delay:151.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1513){-webkit-animation-delay:151.3s;animation-delay:151.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1514){-webkit-animation-delay:151.4s;animation-delay:151.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1515){-webkit-animation-delay:151.5s;animation-delay:151.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1516){-webkit-animation-delay:151.6s;animation-delay:151.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1517){-webkit-animation-delay:151.7s;animation-delay:151.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1518){-webkit-animation-delay:151.8s;animation-delay:151.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1519){-webkit-animation-delay:151.9s;animation-delay:151.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1520){-webkit-animation-delay:152s;animation-delay:152s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1521){-webkit-animation-delay:152.1s;animation-delay:152.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1522){-webkit-animation-delay:152.2s;animation-delay:152.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1523){-webkit-animation-delay:152.3s;animation-delay:152.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1524){-webkit-animation-delay:152.4s;animation-delay:152.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1525){-webkit-animation-delay:152.5s;animation-delay:152.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1526){-webkit-animation-delay:152.6s;animation-delay:152.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1527){-webkit-animation-delay:152.7s;animation-delay:152.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1528){-webkit-animation-delay:152.8s;animation-delay:152.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1529){-webkit-animation-delay:152.9s;animation-delay:152.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1530){-webkit-animation-delay:153s;animation-delay:153s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1531){-webkit-animation-delay:153.1s;animation-delay:153.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1532){-webkit-animation-delay:153.2s;animation-delay:153.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1533){-webkit-animation-delay:153.3s;animation-delay:153.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1534){-webkit-animation-delay:153.4s;animation-delay:153.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1535){-webkit-animation-delay:153.5s;animation-delay:153.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1536){-webkit-animation-delay:153.6s;animation-delay:153.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1537){-webkit-animation-delay:153.7s;animation-delay:153.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1538){-webkit-animation-delay:153.8s;animation-delay:153.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1539){-webkit-animation-delay:153.9s;animation-delay:153.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1540){-webkit-animation-delay:154s;animation-delay:154s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1541){-webkit-animation-delay:154.1s;animation-delay:154.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1542){-webkit-animation-delay:154.2s;animation-delay:154.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1543){-webkit-animation-delay:154.3s;animation-delay:154.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1544){-webkit-animation-delay:154.4s;animation-delay:154.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1545){-webkit-animation-delay:154.5s;animation-delay:154.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1546){-webkit-animation-delay:154.6s;animation-delay:154.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1547){-webkit-animation-delay:154.7s;animation-delay:154.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1548){-webkit-animation-delay:154.8s;animation-delay:154.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1549){-webkit-animation-delay:154.9s;animation-delay:154.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1550){-webkit-animation-delay:155s;animation-delay:155s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1551){-webkit-animation-delay:155.1s;animation-delay:155.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1552){-webkit-animation-delay:155.2s;animation-delay:155.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1553){-webkit-animation-delay:155.3s;animation-delay:155.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1554){-webkit-animation-delay:155.4s;animation-delay:155.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1555){-webkit-animation-delay:155.5s;animation-delay:155.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1556){-webkit-animation-delay:155.6s;animation-delay:155.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1557){-webkit-animation-delay:155.7s;animation-delay:155.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1558){-webkit-animation-delay:155.8s;animation-delay:155.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1559){-webkit-animation-delay:155.9s;animation-delay:155.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1560){-webkit-animation-delay:156s;animation-delay:156s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1561){-webkit-animation-delay:156.1s;animation-delay:156.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1562){-webkit-animation-delay:156.2s;animation-delay:156.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1563){-webkit-animation-delay:156.3s;animation-delay:156.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1564){-webkit-animation-delay:156.4s;animation-delay:156.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1565){-webkit-animation-delay:156.5s;animation-delay:156.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1566){-webkit-animation-delay:156.6s;animation-delay:156.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1567){-webkit-animation-delay:156.7s;animation-delay:156.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1568){-webkit-animation-delay:156.8s;animation-delay:156.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1569){-webkit-animation-delay:156.9s;animation-delay:156.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1570){-webkit-animation-delay:157s;animation-delay:157s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1571){-webkit-animation-delay:157.1s;animation-delay:157.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1572){-webkit-animation-delay:157.2s;animation-delay:157.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1573){-webkit-animation-delay:157.3s;animation-delay:157.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1574){-webkit-animation-delay:157.4s;animation-delay:157.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1575){-webkit-animation-delay:157.5s;animation-delay:157.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1576){-webkit-animation-delay:157.6s;animation-delay:157.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1577){-webkit-animation-delay:157.7s;animation-delay:157.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1578){-webkit-animation-delay:157.8s;animation-delay:157.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1579){-webkit-animation-delay:157.9s;animation-delay:157.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1580){-webkit-animation-delay:158s;animation-delay:158s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1581){-webkit-animation-delay:158.1s;animation-delay:158.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1582){-webkit-animation-delay:158.2s;animation-delay:158.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1583){-webkit-animation-delay:158.3s;animation-delay:158.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1584){-webkit-animation-delay:158.4s;animation-delay:158.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1585){-webkit-animation-delay:158.5s;animation-delay:158.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1586){-webkit-animation-delay:158.6s;animation-delay:158.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1587){-webkit-animation-delay:158.7s;animation-delay:158.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1588){-webkit-animation-delay:158.8s;animation-delay:158.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1589){-webkit-animation-delay:158.9s;animation-delay:158.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1590){-webkit-animation-delay:159s;animation-delay:159s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1591){-webkit-animation-delay:159.1s;animation-delay:159.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1592){-webkit-animation-delay:159.2s;animation-delay:159.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1593){-webkit-animation-delay:159.3s;animation-delay:159.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1594){-webkit-animation-delay:159.4s;animation-delay:159.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1595){-webkit-animation-delay:159.5s;animation-delay:159.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1596){-webkit-animation-delay:159.6s;animation-delay:159.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1597){-webkit-animation-delay:159.7s;animation-delay:159.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1598){-webkit-animation-delay:159.8s;animation-delay:159.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1599){-webkit-animation-delay:159.9s;animation-delay:159.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1600){-webkit-animation-delay:160s;animation-delay:160s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1601){-webkit-animation-delay:160.1s;animation-delay:160.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1602){-webkit-animation-delay:160.2s;animation-delay:160.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1603){-webkit-animation-delay:160.3s;animation-delay:160.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1604){-webkit-animation-delay:160.4s;animation-delay:160.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1605){-webkit-animation-delay:160.5s;animation-delay:160.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1606){-webkit-animation-delay:160.6s;animation-delay:160.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1607){-webkit-animation-delay:160.7s;animation-delay:160.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1608){-webkit-animation-delay:160.8s;animation-delay:160.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1609){-webkit-animation-delay:160.9s;animation-delay:160.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1610){-webkit-animation-delay:161s;animation-delay:161s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1611){-webkit-animation-delay:161.1s;animation-delay:161.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1612){-webkit-animation-delay:161.2s;animation-delay:161.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1613){-webkit-animation-delay:161.3s;animation-delay:161.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1614){-webkit-animation-delay:161.4s;animation-delay:161.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1615){-webkit-animation-delay:161.5s;animation-delay:161.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1616){-webkit-animation-delay:161.6s;animation-delay:161.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1617){-webkit-animation-delay:161.7s;animation-delay:161.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1618){-webkit-animation-delay:161.8s;animation-delay:161.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1619){-webkit-animation-delay:161.9s;animation-delay:161.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1620){-webkit-animation-delay:162s;animation-delay:162s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1621){-webkit-animation-delay:162.1s;animation-delay:162.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1622){-webkit-animation-delay:162.2s;animation-delay:162.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1623){-webkit-animation-delay:162.3s;animation-delay:162.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1624){-webkit-animation-delay:162.4s;animation-delay:162.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1625){-webkit-animation-delay:162.5s;animation-delay:162.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1626){-webkit-animation-delay:162.6s;animation-delay:162.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1627){-webkit-animation-delay:162.7s;animation-delay:162.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1628){-webkit-animation-delay:162.8s;animation-delay:162.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1629){-webkit-animation-delay:162.9s;animation-delay:162.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1630){-webkit-animation-delay:163s;animation-delay:163s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1631){-webkit-animation-delay:163.1s;animation-delay:163.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1632){-webkit-animation-delay:163.2s;animation-delay:163.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1633){-webkit-animation-delay:163.3s;animation-delay:163.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1634){-webkit-animation-delay:163.4s;animation-delay:163.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1635){-webkit-animation-delay:163.5s;animation-delay:163.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1636){-webkit-animation-delay:163.6s;animation-delay:163.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1637){-webkit-animation-delay:163.7s;animation-delay:163.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1638){-webkit-animation-delay:163.8s;animation-delay:163.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1639){-webkit-animation-delay:163.9s;animation-delay:163.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1640){-webkit-animation-delay:164s;animation-delay:164s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1641){-webkit-animation-delay:164.1s;animation-delay:164.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1642){-webkit-animation-delay:164.2s;animation-delay:164.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1643){-webkit-animation-delay:164.3s;animation-delay:164.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1644){-webkit-animation-delay:164.4s;animation-delay:164.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1645){-webkit-animation-delay:164.5s;animation-delay:164.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1646){-webkit-animation-delay:164.6s;animation-delay:164.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1647){-webkit-animation-delay:164.7s;animation-delay:164.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1648){-webkit-animation-delay:164.8s;animation-delay:164.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1649){-webkit-animation-delay:164.9s;animation-delay:164.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1650){-webkit-animation-delay:165s;animation-delay:165s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1651){-webkit-animation-delay:165.1s;animation-delay:165.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1652){-webkit-animation-delay:165.2s;animation-delay:165.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1653){-webkit-animation-delay:165.3s;animation-delay:165.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1654){-webkit-animation-delay:165.4s;animation-delay:165.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1655){-webkit-animation-delay:165.5s;animation-delay:165.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1656){-webkit-animation-delay:165.6s;animation-delay:165.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1657){-webkit-animation-delay:165.7s;animation-delay:165.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1658){-webkit-animation-delay:165.8s;animation-delay:165.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1659){-webkit-animation-delay:165.9s;animation-delay:165.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1660){-webkit-animation-delay:166s;animation-delay:166s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1661){-webkit-animation-delay:166.1s;animation-delay:166.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1662){-webkit-animation-delay:166.2s;animation-delay:166.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1663){-webkit-animation-delay:166.3s;animation-delay:166.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1664){-webkit-animation-delay:166.4s;animation-delay:166.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1665){-webkit-animation-delay:166.5s;animation-delay:166.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1666){-webkit-animation-delay:166.6s;animation-delay:166.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1667){-webkit-animation-delay:166.7s;animation-delay:166.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1668){-webkit-animation-delay:166.8s;animation-delay:166.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1669){-webkit-animation-delay:166.9s;animation-delay:166.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1670){-webkit-animation-delay:167s;animation-delay:167s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1671){-webkit-animation-delay:167.1s;animation-delay:167.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1672){-webkit-animation-delay:167.2s;animation-delay:167.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1673){-webkit-animation-delay:167.3s;animation-delay:167.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1674){-webkit-animation-delay:167.4s;animation-delay:167.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1675){-webkit-animation-delay:167.5s;animation-delay:167.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1676){-webkit-animation-delay:167.6s;animation-delay:167.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1677){-webkit-animation-delay:167.7s;animation-delay:167.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1678){-webkit-animation-delay:167.8s;animation-delay:167.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1679){-webkit-animation-delay:167.9s;animation-delay:167.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1680){-webkit-animation-delay:168s;animation-delay:168s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1681){-webkit-animation-delay:168.1s;animation-delay:168.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1682){-webkit-animation-delay:168.2s;animation-delay:168.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1683){-webkit-animation-delay:168.3s;animation-delay:168.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1684){-webkit-animation-delay:168.4s;animation-delay:168.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1685){-webkit-animation-delay:168.5s;animation-delay:168.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1686){-webkit-animation-delay:168.6s;animation-delay:168.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1687){-webkit-animation-delay:168.7s;animation-delay:168.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1688){-webkit-animation-delay:168.8s;animation-delay:168.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1689){-webkit-animation-delay:168.9s;animation-delay:168.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1690){-webkit-animation-delay:169s;animation-delay:169s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1691){-webkit-animation-delay:169.1s;animation-delay:169.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1692){-webkit-animation-delay:169.2s;animation-delay:169.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1693){-webkit-animation-delay:169.3s;animation-delay:169.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1694){-webkit-animation-delay:169.4s;animation-delay:169.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1695){-webkit-animation-delay:169.5s;animation-delay:169.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1696){-webkit-animation-delay:169.6s;animation-delay:169.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1697){-webkit-animation-delay:169.7s;animation-delay:169.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1698){-webkit-animation-delay:169.8s;animation-delay:169.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1699){-webkit-animation-delay:169.9s;animation-delay:169.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1700){-webkit-animation-delay:170s;animation-delay:170s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1701){-webkit-animation-delay:170.1s;animation-delay:170.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1702){-webkit-animation-delay:170.2s;animation-delay:170.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1703){-webkit-animation-delay:170.3s;animation-delay:170.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1704){-webkit-animation-delay:170.4s;animation-delay:170.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1705){-webkit-animation-delay:170.5s;animation-delay:170.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1706){-webkit-animation-delay:170.6s;animation-delay:170.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1707){-webkit-animation-delay:170.7s;animation-delay:170.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1708){-webkit-animation-delay:170.8s;animation-delay:170.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1709){-webkit-animation-delay:170.9s;animation-delay:170.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1710){-webkit-animation-delay:171s;animation-delay:171s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1711){-webkit-animation-delay:171.1s;animation-delay:171.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1712){-webkit-animation-delay:171.2s;animation-delay:171.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1713){-webkit-animation-delay:171.3s;animation-delay:171.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1714){-webkit-animation-delay:171.4s;animation-delay:171.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1715){-webkit-animation-delay:171.5s;animation-delay:171.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1716){-webkit-animation-delay:171.6s;animation-delay:171.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1717){-webkit-animation-delay:171.7s;animation-delay:171.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1718){-webkit-animation-delay:171.8s;animation-delay:171.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1719){-webkit-animation-delay:171.9s;animation-delay:171.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1720){-webkit-animation-delay:172s;animation-delay:172s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1721){-webkit-animation-delay:172.1s;animation-delay:172.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1722){-webkit-animation-delay:172.2s;animation-delay:172.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1723){-webkit-animation-delay:172.3s;animation-delay:172.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1724){-webkit-animation-delay:172.4s;animation-delay:172.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1725){-webkit-animation-delay:172.5s;animation-delay:172.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1726){-webkit-animation-delay:172.6s;animation-delay:172.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1727){-webkit-animation-delay:172.7s;animation-delay:172.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1728){-webkit-animation-delay:172.8s;animation-delay:172.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1729){-webkit-animation-delay:172.9s;animation-delay:172.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1730){-webkit-animation-delay:173s;animation-delay:173s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1731){-webkit-animation-delay:173.1s;animation-delay:173.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1732){-webkit-animation-delay:173.2s;animation-delay:173.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1733){-webkit-animation-delay:173.3s;animation-delay:173.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1734){-webkit-animation-delay:173.4s;animation-delay:173.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1735){-webkit-animation-delay:173.5s;animation-delay:173.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1736){-webkit-animation-delay:173.6s;animation-delay:173.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1737){-webkit-animation-delay:173.7s;animation-delay:173.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1738){-webkit-animation-delay:173.8s;animation-delay:173.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1739){-webkit-animation-delay:173.9s;animation-delay:173.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1740){-webkit-animation-delay:174s;animation-delay:174s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1741){-webkit-animation-delay:174.1s;animation-delay:174.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1742){-webkit-animation-delay:174.2s;animation-delay:174.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1743){-webkit-animation-delay:174.3s;animation-delay:174.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1744){-webkit-animation-delay:174.4s;animation-delay:174.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1745){-webkit-animation-delay:174.5s;animation-delay:174.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1746){-webkit-animation-delay:174.6s;animation-delay:174.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1747){-webkit-animation-delay:174.7s;animation-delay:174.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1748){-webkit-animation-delay:174.8s;animation-delay:174.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1749){-webkit-animation-delay:174.9s;animation-delay:174.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1750){-webkit-animation-delay:175s;animation-delay:175s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1751){-webkit-animation-delay:175.1s;animation-delay:175.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1752){-webkit-animation-delay:175.2s;animation-delay:175.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1753){-webkit-animation-delay:175.3s;animation-delay:175.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1754){-webkit-animation-delay:175.4s;animation-delay:175.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1755){-webkit-animation-delay:175.5s;animation-delay:175.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1756){-webkit-animation-delay:175.6s;animation-delay:175.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1757){-webkit-animation-delay:175.7s;animation-delay:175.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1758){-webkit-animation-delay:175.8s;animation-delay:175.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1759){-webkit-animation-delay:175.9s;animation-delay:175.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1760){-webkit-animation-delay:176s;animation-delay:176s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1761){-webkit-animation-delay:176.1s;animation-delay:176.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1762){-webkit-animation-delay:176.2s;animation-delay:176.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1763){-webkit-animation-delay:176.3s;animation-delay:176.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1764){-webkit-animation-delay:176.4s;animation-delay:176.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1765){-webkit-animation-delay:176.5s;animation-delay:176.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1766){-webkit-animation-delay:176.6s;animation-delay:176.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1767){-webkit-animation-delay:176.7s;animation-delay:176.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1768){-webkit-animation-delay:176.8s;animation-delay:176.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1769){-webkit-animation-delay:176.9s;animation-delay:176.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1770){-webkit-animation-delay:177s;animation-delay:177s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1771){-webkit-animation-delay:177.1s;animation-delay:177.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1772){-webkit-animation-delay:177.2s;animation-delay:177.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1773){-webkit-animation-delay:177.3s;animation-delay:177.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1774){-webkit-animation-delay:177.4s;animation-delay:177.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1775){-webkit-animation-delay:177.5s;animation-delay:177.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1776){-webkit-animation-delay:177.6s;animation-delay:177.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1777){-webkit-animation-delay:177.7s;animation-delay:177.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1778){-webkit-animation-delay:177.8s;animation-delay:177.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1779){-webkit-animation-delay:177.9s;animation-delay:177.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1780){-webkit-animation-delay:178s;animation-delay:178s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1781){-webkit-animation-delay:178.1s;animation-delay:178.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1782){-webkit-animation-delay:178.2s;animation-delay:178.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1783){-webkit-animation-delay:178.3s;animation-delay:178.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1784){-webkit-animation-delay:178.4s;animation-delay:178.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1785){-webkit-animation-delay:178.5s;animation-delay:178.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1786){-webkit-animation-delay:178.6s;animation-delay:178.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1787){-webkit-animation-delay:178.7s;animation-delay:178.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1788){-webkit-animation-delay:178.8s;animation-delay:178.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1789){-webkit-animation-delay:178.9s;animation-delay:178.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1790){-webkit-animation-delay:179s;animation-delay:179s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1791){-webkit-animation-delay:179.1s;animation-delay:179.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1792){-webkit-animation-delay:179.2s;animation-delay:179.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1793){-webkit-animation-delay:179.3s;animation-delay:179.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1794){-webkit-animation-delay:179.4s;animation-delay:179.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1795){-webkit-animation-delay:179.5s;animation-delay:179.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1796){-webkit-animation-delay:179.6s;animation-delay:179.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1797){-webkit-animation-delay:179.7s;animation-delay:179.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1798){-webkit-animation-delay:179.8s;animation-delay:179.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1799){-webkit-animation-delay:179.9s;animation-delay:179.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1800){-webkit-animation-delay:180s;animation-delay:180s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1801){-webkit-animation-delay:180.1s;animation-delay:180.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1802){-webkit-animation-delay:180.2s;animation-delay:180.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1803){-webkit-animation-delay:180.3s;animation-delay:180.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1804){-webkit-animation-delay:180.4s;animation-delay:180.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1805){-webkit-animation-delay:180.5s;animation-delay:180.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1806){-webkit-animation-delay:180.6s;animation-delay:180.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1807){-webkit-animation-delay:180.7s;animation-delay:180.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1808){-webkit-animation-delay:180.8s;animation-delay:180.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1809){-webkit-animation-delay:180.9s;animation-delay:180.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1810){-webkit-animation-delay:181s;animation-delay:181s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1811){-webkit-animation-delay:181.1s;animation-delay:181.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1812){-webkit-animation-delay:181.2s;animation-delay:181.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1813){-webkit-animation-delay:181.3s;animation-delay:181.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1814){-webkit-animation-delay:181.4s;animation-delay:181.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1815){-webkit-animation-delay:181.5s;animation-delay:181.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1816){-webkit-animation-delay:181.6s;animation-delay:181.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1817){-webkit-animation-delay:181.7s;animation-delay:181.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1818){-webkit-animation-delay:181.8s;animation-delay:181.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1819){-webkit-animation-delay:181.9s;animation-delay:181.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1820){-webkit-animation-delay:182s;animation-delay:182s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1821){-webkit-animation-delay:182.1s;animation-delay:182.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1822){-webkit-animation-delay:182.2s;animation-delay:182.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1823){-webkit-animation-delay:182.3s;animation-delay:182.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1824){-webkit-animation-delay:182.4s;animation-delay:182.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1825){-webkit-animation-delay:182.5s;animation-delay:182.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1826){-webkit-animation-delay:182.6s;animation-delay:182.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1827){-webkit-animation-delay:182.7s;animation-delay:182.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1828){-webkit-animation-delay:182.8s;animation-delay:182.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1829){-webkit-animation-delay:182.9s;animation-delay:182.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1830){-webkit-animation-delay:183s;animation-delay:183s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1831){-webkit-animation-delay:183.1s;animation-delay:183.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1832){-webkit-animation-delay:183.2s;animation-delay:183.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1833){-webkit-animation-delay:183.3s;animation-delay:183.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1834){-webkit-animation-delay:183.4s;animation-delay:183.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1835){-webkit-animation-delay:183.5s;animation-delay:183.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1836){-webkit-animation-delay:183.6s;animation-delay:183.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1837){-webkit-animation-delay:183.7s;animation-delay:183.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1838){-webkit-animation-delay:183.8s;animation-delay:183.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1839){-webkit-animation-delay:183.9s;animation-delay:183.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1840){-webkit-animation-delay:184s;animation-delay:184s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1841){-webkit-animation-delay:184.1s;animation-delay:184.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1842){-webkit-animation-delay:184.2s;animation-delay:184.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1843){-webkit-animation-delay:184.3s;animation-delay:184.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1844){-webkit-animation-delay:184.4s;animation-delay:184.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1845){-webkit-animation-delay:184.5s;animation-delay:184.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1846){-webkit-animation-delay:184.6s;animation-delay:184.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1847){-webkit-animation-delay:184.7s;animation-delay:184.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1848){-webkit-animation-delay:184.8s;animation-delay:184.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1849){-webkit-animation-delay:184.9s;animation-delay:184.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1850){-webkit-animation-delay:185s;animation-delay:185s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1851){-webkit-animation-delay:185.1s;animation-delay:185.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1852){-webkit-animation-delay:185.2s;animation-delay:185.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1853){-webkit-animation-delay:185.3s;animation-delay:185.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1854){-webkit-animation-delay:185.4s;animation-delay:185.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1855){-webkit-animation-delay:185.5s;animation-delay:185.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1856){-webkit-animation-delay:185.6s;animation-delay:185.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1857){-webkit-animation-delay:185.7s;animation-delay:185.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1858){-webkit-animation-delay:185.8s;animation-delay:185.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1859){-webkit-animation-delay:185.9s;animation-delay:185.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1860){-webkit-animation-delay:186s;animation-delay:186s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1861){-webkit-animation-delay:186.1s;animation-delay:186.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1862){-webkit-animation-delay:186.2s;animation-delay:186.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1863){-webkit-animation-delay:186.3s;animation-delay:186.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1864){-webkit-animation-delay:186.4s;animation-delay:186.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1865){-webkit-animation-delay:186.5s;animation-delay:186.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1866){-webkit-animation-delay:186.6s;animation-delay:186.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1867){-webkit-animation-delay:186.7s;animation-delay:186.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1868){-webkit-animation-delay:186.8s;animation-delay:186.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1869){-webkit-animation-delay:186.9s;animation-delay:186.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1870){-webkit-animation-delay:187s;animation-delay:187s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1871){-webkit-animation-delay:187.1s;animation-delay:187.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1872){-webkit-animation-delay:187.2s;animation-delay:187.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1873){-webkit-animation-delay:187.3s;animation-delay:187.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1874){-webkit-animation-delay:187.4s;animation-delay:187.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1875){-webkit-animation-delay:187.5s;animation-delay:187.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1876){-webkit-animation-delay:187.6s;animation-delay:187.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1877){-webkit-animation-delay:187.7s;animation-delay:187.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1878){-webkit-animation-delay:187.8s;animation-delay:187.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1879){-webkit-animation-delay:187.9s;animation-delay:187.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1880){-webkit-animation-delay:188s;animation-delay:188s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1881){-webkit-animation-delay:188.1s;animation-delay:188.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1882){-webkit-animation-delay:188.2s;animation-delay:188.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1883){-webkit-animation-delay:188.3s;animation-delay:188.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1884){-webkit-animation-delay:188.4s;animation-delay:188.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1885){-webkit-animation-delay:188.5s;animation-delay:188.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1886){-webkit-animation-delay:188.6s;animation-delay:188.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1887){-webkit-animation-delay:188.7s;animation-delay:188.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1888){-webkit-animation-delay:188.8s;animation-delay:188.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1889){-webkit-animation-delay:188.9s;animation-delay:188.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1890){-webkit-animation-delay:189s;animation-delay:189s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1891){-webkit-animation-delay:189.1s;animation-delay:189.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1892){-webkit-animation-delay:189.2s;animation-delay:189.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1893){-webkit-animation-delay:189.3s;animation-delay:189.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1894){-webkit-animation-delay:189.4s;animation-delay:189.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1895){-webkit-animation-delay:189.5s;animation-delay:189.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1896){-webkit-animation-delay:189.6s;animation-delay:189.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1897){-webkit-animation-delay:189.7s;animation-delay:189.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1898){-webkit-animation-delay:189.8s;animation-delay:189.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1899){-webkit-animation-delay:189.9s;animation-delay:189.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1900){-webkit-animation-delay:190s;animation-delay:190s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1901){-webkit-animation-delay:190.1s;animation-delay:190.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1902){-webkit-animation-delay:190.2s;animation-delay:190.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1903){-webkit-animation-delay:190.3s;animation-delay:190.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1904){-webkit-animation-delay:190.4s;animation-delay:190.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1905){-webkit-animation-delay:190.5s;animation-delay:190.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1906){-webkit-animation-delay:190.6s;animation-delay:190.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1907){-webkit-animation-delay:190.7s;animation-delay:190.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1908){-webkit-animation-delay:190.8s;animation-delay:190.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1909){-webkit-animation-delay:190.9s;animation-delay:190.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1910){-webkit-animation-delay:191s;animation-delay:191s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1911){-webkit-animation-delay:191.1s;animation-delay:191.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1912){-webkit-animation-delay:191.2s;animation-delay:191.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1913){-webkit-animation-delay:191.3s;animation-delay:191.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1914){-webkit-animation-delay:191.4s;animation-delay:191.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1915){-webkit-animation-delay:191.5s;animation-delay:191.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1916){-webkit-animation-delay:191.6s;animation-delay:191.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1917){-webkit-animation-delay:191.7s;animation-delay:191.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1918){-webkit-animation-delay:191.8s;animation-delay:191.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1919){-webkit-animation-delay:191.9s;animation-delay:191.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1920){-webkit-animation-delay:192s;animation-delay:192s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1921){-webkit-animation-delay:192.1s;animation-delay:192.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1922){-webkit-animation-delay:192.2s;animation-delay:192.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1923){-webkit-animation-delay:192.3s;animation-delay:192.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1924){-webkit-animation-delay:192.4s;animation-delay:192.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1925){-webkit-animation-delay:192.5s;animation-delay:192.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1926){-webkit-animation-delay:192.6s;animation-delay:192.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1927){-webkit-animation-delay:192.7s;animation-delay:192.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1928){-webkit-animation-delay:192.8s;animation-delay:192.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1929){-webkit-animation-delay:192.9s;animation-delay:192.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1930){-webkit-animation-delay:193s;animation-delay:193s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1931){-webkit-animation-delay:193.1s;animation-delay:193.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1932){-webkit-animation-delay:193.2s;animation-delay:193.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1933){-webkit-animation-delay:193.3s;animation-delay:193.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1934){-webkit-animation-delay:193.4s;animation-delay:193.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1935){-webkit-animation-delay:193.5s;animation-delay:193.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1936){-webkit-animation-delay:193.6s;animation-delay:193.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1937){-webkit-animation-delay:193.7s;animation-delay:193.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1938){-webkit-animation-delay:193.8s;animation-delay:193.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1939){-webkit-animation-delay:193.9s;animation-delay:193.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1940){-webkit-animation-delay:194s;animation-delay:194s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1941){-webkit-animation-delay:194.1s;animation-delay:194.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1942){-webkit-animation-delay:194.2s;animation-delay:194.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1943){-webkit-animation-delay:194.3s;animation-delay:194.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1944){-webkit-animation-delay:194.4s;animation-delay:194.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1945){-webkit-animation-delay:194.5s;animation-delay:194.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1946){-webkit-animation-delay:194.6s;animation-delay:194.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1947){-webkit-animation-delay:194.7s;animation-delay:194.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1948){-webkit-animation-delay:194.8s;animation-delay:194.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1949){-webkit-animation-delay:194.9s;animation-delay:194.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1950){-webkit-animation-delay:195s;animation-delay:195s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1951){-webkit-animation-delay:195.1s;animation-delay:195.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1952){-webkit-animation-delay:195.2s;animation-delay:195.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1953){-webkit-animation-delay:195.3s;animation-delay:195.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1954){-webkit-animation-delay:195.4s;animation-delay:195.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1955){-webkit-animation-delay:195.5s;animation-delay:195.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1956){-webkit-animation-delay:195.6s;animation-delay:195.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1957){-webkit-animation-delay:195.7s;animation-delay:195.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1958){-webkit-animation-delay:195.8s;animation-delay:195.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1959){-webkit-animation-delay:195.9s;animation-delay:195.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1960){-webkit-animation-delay:196s;animation-delay:196s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1961){-webkit-animation-delay:196.1s;animation-delay:196.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1962){-webkit-animation-delay:196.2s;animation-delay:196.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1963){-webkit-animation-delay:196.3s;animation-delay:196.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1964){-webkit-animation-delay:196.4s;animation-delay:196.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1965){-webkit-animation-delay:196.5s;animation-delay:196.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1966){-webkit-animation-delay:196.6s;animation-delay:196.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1967){-webkit-animation-delay:196.7s;animation-delay:196.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1968){-webkit-animation-delay:196.8s;animation-delay:196.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1969){-webkit-animation-delay:196.9s;animation-delay:196.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1970){-webkit-animation-delay:197s;animation-delay:197s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1971){-webkit-animation-delay:197.1s;animation-delay:197.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1972){-webkit-animation-delay:197.2s;animation-delay:197.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1973){-webkit-animation-delay:197.3s;animation-delay:197.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1974){-webkit-animation-delay:197.4s;animation-delay:197.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1975){-webkit-animation-delay:197.5s;animation-delay:197.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1976){-webkit-animation-delay:197.6s;animation-delay:197.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1977){-webkit-animation-delay:197.7s;animation-delay:197.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1978){-webkit-animation-delay:197.8s;animation-delay:197.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1979){-webkit-animation-delay:197.9s;animation-delay:197.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1980){-webkit-animation-delay:198s;animation-delay:198s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1981){-webkit-animation-delay:198.1s;animation-delay:198.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1982){-webkit-animation-delay:198.2s;animation-delay:198.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1983){-webkit-animation-delay:198.3s;animation-delay:198.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1984){-webkit-animation-delay:198.4s;animation-delay:198.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1985){-webkit-animation-delay:198.5s;animation-delay:198.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1986){-webkit-animation-delay:198.6s;animation-delay:198.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1987){-webkit-animation-delay:198.7s;animation-delay:198.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1988){-webkit-animation-delay:198.8s;animation-delay:198.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1989){-webkit-animation-delay:198.9s;animation-delay:198.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1990){-webkit-animation-delay:199s;animation-delay:199s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1991){-webkit-animation-delay:199.1s;animation-delay:199.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1992){-webkit-animation-delay:199.2s;animation-delay:199.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1993){-webkit-animation-delay:199.3s;animation-delay:199.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1994){-webkit-animation-delay:199.4s;animation-delay:199.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1995){-webkit-animation-delay:199.5s;animation-delay:199.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1996){-webkit-animation-delay:199.6s;animation-delay:199.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1997){-webkit-animation-delay:199.7s;animation-delay:199.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1998){-webkit-animation-delay:199.8s;animation-delay:199.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(1999){-webkit-animation-delay:199.9s;animation-delay:199.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2000){-webkit-animation-delay:200s;animation-delay:200s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2001){-webkit-animation-delay:200.1s;animation-delay:200.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2002){-webkit-animation-delay:200.2s;animation-delay:200.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2003){-webkit-animation-delay:200.3s;animation-delay:200.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2004){-webkit-animation-delay:200.4s;animation-delay:200.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2005){-webkit-animation-delay:200.5s;animation-delay:200.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2006){-webkit-animation-delay:200.6s;animation-delay:200.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2007){-webkit-animation-delay:200.7s;animation-delay:200.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2008){-webkit-animation-delay:200.8s;animation-delay:200.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2009){-webkit-animation-delay:200.9s;animation-delay:200.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2010){-webkit-animation-delay:201s;animation-delay:201s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2011){-webkit-animation-delay:201.1s;animation-delay:201.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2012){-webkit-animation-delay:201.2s;animation-delay:201.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2013){-webkit-animation-delay:201.3s;animation-delay:201.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2014){-webkit-animation-delay:201.4s;animation-delay:201.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2015){-webkit-animation-delay:201.5s;animation-delay:201.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2016){-webkit-animation-delay:201.6s;animation-delay:201.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2017){-webkit-animation-delay:201.7s;animation-delay:201.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2018){-webkit-animation-delay:201.8s;animation-delay:201.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2019){-webkit-animation-delay:201.9s;animation-delay:201.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2020){-webkit-animation-delay:202s;animation-delay:202s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2021){-webkit-animation-delay:202.1s;animation-delay:202.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2022){-webkit-animation-delay:202.2s;animation-delay:202.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2023){-webkit-animation-delay:202.3s;animation-delay:202.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2024){-webkit-animation-delay:202.4s;animation-delay:202.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2025){-webkit-animation-delay:202.5s;animation-delay:202.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2026){-webkit-animation-delay:202.6s;animation-delay:202.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2027){-webkit-animation-delay:202.7s;animation-delay:202.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2028){-webkit-animation-delay:202.8s;animation-delay:202.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2029){-webkit-animation-delay:202.9s;animation-delay:202.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2030){-webkit-animation-delay:203s;animation-delay:203s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2031){-webkit-animation-delay:203.1s;animation-delay:203.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2032){-webkit-animation-delay:203.2s;animation-delay:203.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2033){-webkit-animation-delay:203.3s;animation-delay:203.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2034){-webkit-animation-delay:203.4s;animation-delay:203.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2035){-webkit-animation-delay:203.5s;animation-delay:203.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2036){-webkit-animation-delay:203.6s;animation-delay:203.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2037){-webkit-animation-delay:203.7s;animation-delay:203.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2038){-webkit-animation-delay:203.8s;animation-delay:203.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2039){-webkit-animation-delay:203.9s;animation-delay:203.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2040){-webkit-animation-delay:204s;animation-delay:204s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2041){-webkit-animation-delay:204.1s;animation-delay:204.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2042){-webkit-animation-delay:204.2s;animation-delay:204.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2043){-webkit-animation-delay:204.3s;animation-delay:204.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2044){-webkit-animation-delay:204.4s;animation-delay:204.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2045){-webkit-animation-delay:204.5s;animation-delay:204.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2046){-webkit-animation-delay:204.6s;animation-delay:204.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2047){-webkit-animation-delay:204.7s;animation-delay:204.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2048){-webkit-animation-delay:204.8s;animation-delay:204.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2049){-webkit-animation-delay:204.9s;animation-delay:204.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2050){-webkit-animation-delay:205s;animation-delay:205s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2051){-webkit-animation-delay:205.1s;animation-delay:205.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2052){-webkit-animation-delay:205.2s;animation-delay:205.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2053){-webkit-animation-delay:205.3s;animation-delay:205.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2054){-webkit-animation-delay:205.4s;animation-delay:205.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2055){-webkit-animation-delay:205.5s;animation-delay:205.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2056){-webkit-animation-delay:205.6s;animation-delay:205.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2057){-webkit-animation-delay:205.7s;animation-delay:205.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2058){-webkit-animation-delay:205.8s;animation-delay:205.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2059){-webkit-animation-delay:205.9s;animation-delay:205.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2060){-webkit-animation-delay:206s;animation-delay:206s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2061){-webkit-animation-delay:206.1s;animation-delay:206.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2062){-webkit-animation-delay:206.2s;animation-delay:206.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2063){-webkit-animation-delay:206.3s;animation-delay:206.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2064){-webkit-animation-delay:206.4s;animation-delay:206.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2065){-webkit-animation-delay:206.5s;animation-delay:206.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2066){-webkit-animation-delay:206.6s;animation-delay:206.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2067){-webkit-animation-delay:206.7s;animation-delay:206.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2068){-webkit-animation-delay:206.8s;animation-delay:206.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2069){-webkit-animation-delay:206.9s;animation-delay:206.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2070){-webkit-animation-delay:207s;animation-delay:207s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2071){-webkit-animation-delay:207.1s;animation-delay:207.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2072){-webkit-animation-delay:207.2s;animation-delay:207.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2073){-webkit-animation-delay:207.3s;animation-delay:207.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2074){-webkit-animation-delay:207.4s;animation-delay:207.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2075){-webkit-animation-delay:207.5s;animation-delay:207.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2076){-webkit-animation-delay:207.6s;animation-delay:207.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2077){-webkit-animation-delay:207.7s;animation-delay:207.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2078){-webkit-animation-delay:207.8s;animation-delay:207.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2079){-webkit-animation-delay:207.9s;animation-delay:207.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2080){-webkit-animation-delay:208s;animation-delay:208s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2081){-webkit-animation-delay:208.1s;animation-delay:208.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2082){-webkit-animation-delay:208.2s;animation-delay:208.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2083){-webkit-animation-delay:208.3s;animation-delay:208.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2084){-webkit-animation-delay:208.4s;animation-delay:208.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2085){-webkit-animation-delay:208.5s;animation-delay:208.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2086){-webkit-animation-delay:208.6s;animation-delay:208.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2087){-webkit-animation-delay:208.7s;animation-delay:208.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2088){-webkit-animation-delay:208.8s;animation-delay:208.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2089){-webkit-animation-delay:208.9s;animation-delay:208.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2090){-webkit-animation-delay:209s;animation-delay:209s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2091){-webkit-animation-delay:209.1s;animation-delay:209.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2092){-webkit-animation-delay:209.2s;animation-delay:209.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2093){-webkit-animation-delay:209.3s;animation-delay:209.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2094){-webkit-animation-delay:209.4s;animation-delay:209.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2095){-webkit-animation-delay:209.5s;animation-delay:209.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2096){-webkit-animation-delay:209.6s;animation-delay:209.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2097){-webkit-animation-delay:209.7s;animation-delay:209.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2098){-webkit-animation-delay:209.8s;animation-delay:209.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2099){-webkit-animation-delay:209.9s;animation-delay:209.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2100){-webkit-animation-delay:210s;animation-delay:210s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2101){-webkit-animation-delay:210.1s;animation-delay:210.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2102){-webkit-animation-delay:210.2s;animation-delay:210.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2103){-webkit-animation-delay:210.3s;animation-delay:210.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2104){-webkit-animation-delay:210.4s;animation-delay:210.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2105){-webkit-animation-delay:210.5s;animation-delay:210.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2106){-webkit-animation-delay:210.6s;animation-delay:210.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2107){-webkit-animation-delay:210.7s;animation-delay:210.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2108){-webkit-animation-delay:210.8s;animation-delay:210.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2109){-webkit-animation-delay:210.9s;animation-delay:210.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2110){-webkit-animation-delay:211s;animation-delay:211s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2111){-webkit-animation-delay:211.1s;animation-delay:211.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2112){-webkit-animation-delay:211.2s;animation-delay:211.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2113){-webkit-animation-delay:211.3s;animation-delay:211.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2114){-webkit-animation-delay:211.4s;animation-delay:211.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2115){-webkit-animation-delay:211.5s;animation-delay:211.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2116){-webkit-animation-delay:211.6s;animation-delay:211.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2117){-webkit-animation-delay:211.7s;animation-delay:211.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2118){-webkit-animation-delay:211.8s;animation-delay:211.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2119){-webkit-animation-delay:211.9s;animation-delay:211.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2120){-webkit-animation-delay:212s;animation-delay:212s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2121){-webkit-animation-delay:212.1s;animation-delay:212.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2122){-webkit-animation-delay:212.2s;animation-delay:212.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2123){-webkit-animation-delay:212.3s;animation-delay:212.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2124){-webkit-animation-delay:212.4s;animation-delay:212.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2125){-webkit-animation-delay:212.5s;animation-delay:212.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2126){-webkit-animation-delay:212.6s;animation-delay:212.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2127){-webkit-animation-delay:212.7s;animation-delay:212.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2128){-webkit-animation-delay:212.8s;animation-delay:212.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2129){-webkit-animation-delay:212.9s;animation-delay:212.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2130){-webkit-animation-delay:213s;animation-delay:213s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2131){-webkit-animation-delay:213.1s;animation-delay:213.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2132){-webkit-animation-delay:213.2s;animation-delay:213.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2133){-webkit-animation-delay:213.3s;animation-delay:213.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2134){-webkit-animation-delay:213.4s;animation-delay:213.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2135){-webkit-animation-delay:213.5s;animation-delay:213.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2136){-webkit-animation-delay:213.6s;animation-delay:213.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2137){-webkit-animation-delay:213.7s;animation-delay:213.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2138){-webkit-animation-delay:213.8s;animation-delay:213.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2139){-webkit-animation-delay:213.9s;animation-delay:213.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2140){-webkit-animation-delay:214s;animation-delay:214s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2141){-webkit-animation-delay:214.1s;animation-delay:214.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2142){-webkit-animation-delay:214.2s;animation-delay:214.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2143){-webkit-animation-delay:214.3s;animation-delay:214.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2144){-webkit-animation-delay:214.4s;animation-delay:214.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2145){-webkit-animation-delay:214.5s;animation-delay:214.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2146){-webkit-animation-delay:214.6s;animation-delay:214.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2147){-webkit-animation-delay:214.7s;animation-delay:214.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2148){-webkit-animation-delay:214.8s;animation-delay:214.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2149){-webkit-animation-delay:214.9s;animation-delay:214.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2150){-webkit-animation-delay:215s;animation-delay:215s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2151){-webkit-animation-delay:215.1s;animation-delay:215.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2152){-webkit-animation-delay:215.2s;animation-delay:215.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2153){-webkit-animation-delay:215.3s;animation-delay:215.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2154){-webkit-animation-delay:215.4s;animation-delay:215.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2155){-webkit-animation-delay:215.5s;animation-delay:215.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2156){-webkit-animation-delay:215.6s;animation-delay:215.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2157){-webkit-animation-delay:215.7s;animation-delay:215.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2158){-webkit-animation-delay:215.8s;animation-delay:215.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2159){-webkit-animation-delay:215.9s;animation-delay:215.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2160){-webkit-animation-delay:216s;animation-delay:216s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2161){-webkit-animation-delay:216.1s;animation-delay:216.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2162){-webkit-animation-delay:216.2s;animation-delay:216.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2163){-webkit-animation-delay:216.3s;animation-delay:216.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2164){-webkit-animation-delay:216.4s;animation-delay:216.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2165){-webkit-animation-delay:216.5s;animation-delay:216.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2166){-webkit-animation-delay:216.6s;animation-delay:216.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2167){-webkit-animation-delay:216.7s;animation-delay:216.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2168){-webkit-animation-delay:216.8s;animation-delay:216.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2169){-webkit-animation-delay:216.9s;animation-delay:216.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2170){-webkit-animation-delay:217s;animation-delay:217s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2171){-webkit-animation-delay:217.1s;animation-delay:217.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2172){-webkit-animation-delay:217.2s;animation-delay:217.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2173){-webkit-animation-delay:217.3s;animation-delay:217.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2174){-webkit-animation-delay:217.4s;animation-delay:217.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2175){-webkit-animation-delay:217.5s;animation-delay:217.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2176){-webkit-animation-delay:217.6s;animation-delay:217.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2177){-webkit-animation-delay:217.7s;animation-delay:217.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2178){-webkit-animation-delay:217.8s;animation-delay:217.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2179){-webkit-animation-delay:217.9s;animation-delay:217.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2180){-webkit-animation-delay:218s;animation-delay:218s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2181){-webkit-animation-delay:218.1s;animation-delay:218.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2182){-webkit-animation-delay:218.2s;animation-delay:218.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2183){-webkit-animation-delay:218.3s;animation-delay:218.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2184){-webkit-animation-delay:218.4s;animation-delay:218.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2185){-webkit-animation-delay:218.5s;animation-delay:218.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2186){-webkit-animation-delay:218.6s;animation-delay:218.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2187){-webkit-animation-delay:218.7s;animation-delay:218.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2188){-webkit-animation-delay:218.8s;animation-delay:218.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2189){-webkit-animation-delay:218.9s;animation-delay:218.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2190){-webkit-animation-delay:219s;animation-delay:219s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2191){-webkit-animation-delay:219.1s;animation-delay:219.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2192){-webkit-animation-delay:219.2s;animation-delay:219.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2193){-webkit-animation-delay:219.3s;animation-delay:219.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2194){-webkit-animation-delay:219.4s;animation-delay:219.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2195){-webkit-animation-delay:219.5s;animation-delay:219.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2196){-webkit-animation-delay:219.6s;animation-delay:219.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2197){-webkit-animation-delay:219.7s;animation-delay:219.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2198){-webkit-animation-delay:219.8s;animation-delay:219.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2199){-webkit-animation-delay:219.9s;animation-delay:219.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2200){-webkit-animation-delay:220s;animation-delay:220s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2201){-webkit-animation-delay:220.1s;animation-delay:220.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2202){-webkit-animation-delay:220.2s;animation-delay:220.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2203){-webkit-animation-delay:220.3s;animation-delay:220.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2204){-webkit-animation-delay:220.4s;animation-delay:220.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2205){-webkit-animation-delay:220.5s;animation-delay:220.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2206){-webkit-animation-delay:220.6s;animation-delay:220.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2207){-webkit-animation-delay:220.7s;animation-delay:220.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2208){-webkit-animation-delay:220.8s;animation-delay:220.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2209){-webkit-animation-delay:220.9s;animation-delay:220.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2210){-webkit-animation-delay:221s;animation-delay:221s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2211){-webkit-animation-delay:221.1s;animation-delay:221.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2212){-webkit-animation-delay:221.2s;animation-delay:221.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2213){-webkit-animation-delay:221.3s;animation-delay:221.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2214){-webkit-animation-delay:221.4s;animation-delay:221.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2215){-webkit-animation-delay:221.5s;animation-delay:221.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2216){-webkit-animation-delay:221.6s;animation-delay:221.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2217){-webkit-animation-delay:221.7s;animation-delay:221.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2218){-webkit-animation-delay:221.8s;animation-delay:221.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2219){-webkit-animation-delay:221.9s;animation-delay:221.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2220){-webkit-animation-delay:222s;animation-delay:222s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2221){-webkit-animation-delay:222.1s;animation-delay:222.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2222){-webkit-animation-delay:222.2s;animation-delay:222.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2223){-webkit-animation-delay:222.3s;animation-delay:222.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2224){-webkit-animation-delay:222.4s;animation-delay:222.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2225){-webkit-animation-delay:222.5s;animation-delay:222.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2226){-webkit-animation-delay:222.6s;animation-delay:222.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2227){-webkit-animation-delay:222.7s;animation-delay:222.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2228){-webkit-animation-delay:222.8s;animation-delay:222.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2229){-webkit-animation-delay:222.9s;animation-delay:222.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2230){-webkit-animation-delay:223s;animation-delay:223s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2231){-webkit-animation-delay:223.1s;animation-delay:223.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2232){-webkit-animation-delay:223.2s;animation-delay:223.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2233){-webkit-animation-delay:223.3s;animation-delay:223.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2234){-webkit-animation-delay:223.4s;animation-delay:223.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2235){-webkit-animation-delay:223.5s;animation-delay:223.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2236){-webkit-animation-delay:223.6s;animation-delay:223.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2237){-webkit-animation-delay:223.7s;animation-delay:223.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2238){-webkit-animation-delay:223.8s;animation-delay:223.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2239){-webkit-animation-delay:223.9s;animation-delay:223.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2240){-webkit-animation-delay:224s;animation-delay:224s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2241){-webkit-animation-delay:224.1s;animation-delay:224.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2242){-webkit-animation-delay:224.2s;animation-delay:224.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2243){-webkit-animation-delay:224.3s;animation-delay:224.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2244){-webkit-animation-delay:224.4s;animation-delay:224.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2245){-webkit-animation-delay:224.5s;animation-delay:224.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2246){-webkit-animation-delay:224.6s;animation-delay:224.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2247){-webkit-animation-delay:224.7s;animation-delay:224.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2248){-webkit-animation-delay:224.8s;animation-delay:224.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2249){-webkit-animation-delay:224.9s;animation-delay:224.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2250){-webkit-animation-delay:225s;animation-delay:225s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2251){-webkit-animation-delay:225.1s;animation-delay:225.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2252){-webkit-animation-delay:225.2s;animation-delay:225.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2253){-webkit-animation-delay:225.3s;animation-delay:225.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2254){-webkit-animation-delay:225.4s;animation-delay:225.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2255){-webkit-animation-delay:225.5s;animation-delay:225.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2256){-webkit-animation-delay:225.6s;animation-delay:225.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2257){-webkit-animation-delay:225.7s;animation-delay:225.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2258){-webkit-animation-delay:225.8s;animation-delay:225.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2259){-webkit-animation-delay:225.9s;animation-delay:225.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2260){-webkit-animation-delay:226s;animation-delay:226s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2261){-webkit-animation-delay:226.1s;animation-delay:226.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2262){-webkit-animation-delay:226.2s;animation-delay:226.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2263){-webkit-animation-delay:226.3s;animation-delay:226.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2264){-webkit-animation-delay:226.4s;animation-delay:226.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2265){-webkit-animation-delay:226.5s;animation-delay:226.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2266){-webkit-animation-delay:226.6s;animation-delay:226.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2267){-webkit-animation-delay:226.7s;animation-delay:226.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2268){-webkit-animation-delay:226.8s;animation-delay:226.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2269){-webkit-animation-delay:226.9s;animation-delay:226.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2270){-webkit-animation-delay:227s;animation-delay:227s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2271){-webkit-animation-delay:227.1s;animation-delay:227.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2272){-webkit-animation-delay:227.2s;animation-delay:227.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2273){-webkit-animation-delay:227.3s;animation-delay:227.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2274){-webkit-animation-delay:227.4s;animation-delay:227.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2275){-webkit-animation-delay:227.5s;animation-delay:227.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2276){-webkit-animation-delay:227.6s;animation-delay:227.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2277){-webkit-animation-delay:227.7s;animation-delay:227.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2278){-webkit-animation-delay:227.8s;animation-delay:227.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2279){-webkit-animation-delay:227.9s;animation-delay:227.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2280){-webkit-animation-delay:228s;animation-delay:228s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2281){-webkit-animation-delay:228.1s;animation-delay:228.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2282){-webkit-animation-delay:228.2s;animation-delay:228.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2283){-webkit-animation-delay:228.3s;animation-delay:228.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2284){-webkit-animation-delay:228.4s;animation-delay:228.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2285){-webkit-animation-delay:228.5s;animation-delay:228.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2286){-webkit-animation-delay:228.6s;animation-delay:228.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2287){-webkit-animation-delay:228.7s;animation-delay:228.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2288){-webkit-animation-delay:228.8s;animation-delay:228.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2289){-webkit-animation-delay:228.9s;animation-delay:228.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2290){-webkit-animation-delay:229s;animation-delay:229s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2291){-webkit-animation-delay:229.1s;animation-delay:229.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2292){-webkit-animation-delay:229.2s;animation-delay:229.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2293){-webkit-animation-delay:229.3s;animation-delay:229.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2294){-webkit-animation-delay:229.4s;animation-delay:229.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2295){-webkit-animation-delay:229.5s;animation-delay:229.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2296){-webkit-animation-delay:229.6s;animation-delay:229.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2297){-webkit-animation-delay:229.7s;animation-delay:229.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2298){-webkit-animation-delay:229.8s;animation-delay:229.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2299){-webkit-animation-delay:229.9s;animation-delay:229.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2300){-webkit-animation-delay:230s;animation-delay:230s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2301){-webkit-animation-delay:230.1s;animation-delay:230.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2302){-webkit-animation-delay:230.2s;animation-delay:230.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2303){-webkit-animation-delay:230.3s;animation-delay:230.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2304){-webkit-animation-delay:230.4s;animation-delay:230.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2305){-webkit-animation-delay:230.5s;animation-delay:230.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2306){-webkit-animation-delay:230.6s;animation-delay:230.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2307){-webkit-animation-delay:230.7s;animation-delay:230.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2308){-webkit-animation-delay:230.8s;animation-delay:230.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2309){-webkit-animation-delay:230.9s;animation-delay:230.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2310){-webkit-animation-delay:231s;animation-delay:231s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2311){-webkit-animation-delay:231.1s;animation-delay:231.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2312){-webkit-animation-delay:231.2s;animation-delay:231.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2313){-webkit-animation-delay:231.3s;animation-delay:231.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2314){-webkit-animation-delay:231.4s;animation-delay:231.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2315){-webkit-animation-delay:231.5s;animation-delay:231.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2316){-webkit-animation-delay:231.6s;animation-delay:231.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2317){-webkit-animation-delay:231.7s;animation-delay:231.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2318){-webkit-animation-delay:231.8s;animation-delay:231.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2319){-webkit-animation-delay:231.9s;animation-delay:231.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2320){-webkit-animation-delay:232s;animation-delay:232s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2321){-webkit-animation-delay:232.1s;animation-delay:232.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2322){-webkit-animation-delay:232.2s;animation-delay:232.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2323){-webkit-animation-delay:232.3s;animation-delay:232.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2324){-webkit-animation-delay:232.4s;animation-delay:232.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2325){-webkit-animation-delay:232.5s;animation-delay:232.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2326){-webkit-animation-delay:232.6s;animation-delay:232.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2327){-webkit-animation-delay:232.7s;animation-delay:232.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2328){-webkit-animation-delay:232.8s;animation-delay:232.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2329){-webkit-animation-delay:232.9s;animation-delay:232.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2330){-webkit-animation-delay:233s;animation-delay:233s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2331){-webkit-animation-delay:233.1s;animation-delay:233.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2332){-webkit-animation-delay:233.2s;animation-delay:233.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2333){-webkit-animation-delay:233.3s;animation-delay:233.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2334){-webkit-animation-delay:233.4s;animation-delay:233.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2335){-webkit-animation-delay:233.5s;animation-delay:233.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2336){-webkit-animation-delay:233.6s;animation-delay:233.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2337){-webkit-animation-delay:233.7s;animation-delay:233.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2338){-webkit-animation-delay:233.8s;animation-delay:233.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2339){-webkit-animation-delay:233.9s;animation-delay:233.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2340){-webkit-animation-delay:234s;animation-delay:234s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2341){-webkit-animation-delay:234.1s;animation-delay:234.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2342){-webkit-animation-delay:234.2s;animation-delay:234.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2343){-webkit-animation-delay:234.3s;animation-delay:234.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2344){-webkit-animation-delay:234.4s;animation-delay:234.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2345){-webkit-animation-delay:234.5s;animation-delay:234.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2346){-webkit-animation-delay:234.6s;animation-delay:234.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2347){-webkit-animation-delay:234.7s;animation-delay:234.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2348){-webkit-animation-delay:234.8s;animation-delay:234.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2349){-webkit-animation-delay:234.9s;animation-delay:234.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2350){-webkit-animation-delay:235s;animation-delay:235s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2351){-webkit-animation-delay:235.1s;animation-delay:235.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2352){-webkit-animation-delay:235.2s;animation-delay:235.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2353){-webkit-animation-delay:235.3s;animation-delay:235.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2354){-webkit-animation-delay:235.4s;animation-delay:235.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2355){-webkit-animation-delay:235.5s;animation-delay:235.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2356){-webkit-animation-delay:235.6s;animation-delay:235.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2357){-webkit-animation-delay:235.7s;animation-delay:235.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2358){-webkit-animation-delay:235.8s;animation-delay:235.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2359){-webkit-animation-delay:235.9s;animation-delay:235.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2360){-webkit-animation-delay:236s;animation-delay:236s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2361){-webkit-animation-delay:236.1s;animation-delay:236.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2362){-webkit-animation-delay:236.2s;animation-delay:236.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2363){-webkit-animation-delay:236.3s;animation-delay:236.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2364){-webkit-animation-delay:236.4s;animation-delay:236.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2365){-webkit-animation-delay:236.5s;animation-delay:236.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2366){-webkit-animation-delay:236.6s;animation-delay:236.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2367){-webkit-animation-delay:236.7s;animation-delay:236.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2368){-webkit-animation-delay:236.8s;animation-delay:236.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2369){-webkit-animation-delay:236.9s;animation-delay:236.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2370){-webkit-animation-delay:237s;animation-delay:237s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2371){-webkit-animation-delay:237.1s;animation-delay:237.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2372){-webkit-animation-delay:237.2s;animation-delay:237.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2373){-webkit-animation-delay:237.3s;animation-delay:237.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2374){-webkit-animation-delay:237.4s;animation-delay:237.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2375){-webkit-animation-delay:237.5s;animation-delay:237.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2376){-webkit-animation-delay:237.6s;animation-delay:237.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2377){-webkit-animation-delay:237.7s;animation-delay:237.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2378){-webkit-animation-delay:237.8s;animation-delay:237.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2379){-webkit-animation-delay:237.9s;animation-delay:237.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2380){-webkit-animation-delay:238s;animation-delay:238s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2381){-webkit-animation-delay:238.1s;animation-delay:238.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2382){-webkit-animation-delay:238.2s;animation-delay:238.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2383){-webkit-animation-delay:238.3s;animation-delay:238.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2384){-webkit-animation-delay:238.4s;animation-delay:238.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2385){-webkit-animation-delay:238.5s;animation-delay:238.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2386){-webkit-animation-delay:238.6s;animation-delay:238.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2387){-webkit-animation-delay:238.7s;animation-delay:238.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2388){-webkit-animation-delay:238.8s;animation-delay:238.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2389){-webkit-animation-delay:238.9s;animation-delay:238.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2390){-webkit-animation-delay:239s;animation-delay:239s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2391){-webkit-animation-delay:239.1s;animation-delay:239.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2392){-webkit-animation-delay:239.2s;animation-delay:239.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2393){-webkit-animation-delay:239.3s;animation-delay:239.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2394){-webkit-animation-delay:239.4s;animation-delay:239.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2395){-webkit-animation-delay:239.5s;animation-delay:239.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2396){-webkit-animation-delay:239.6s;animation-delay:239.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2397){-webkit-animation-delay:239.7s;animation-delay:239.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2398){-webkit-animation-delay:239.8s;animation-delay:239.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2399){-webkit-animation-delay:239.9s;animation-delay:239.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2400){-webkit-animation-delay:240s;animation-delay:240s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2401){-webkit-animation-delay:240.1s;animation-delay:240.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2402){-webkit-animation-delay:240.2s;animation-delay:240.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2403){-webkit-animation-delay:240.3s;animation-delay:240.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2404){-webkit-animation-delay:240.4s;animation-delay:240.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2405){-webkit-animation-delay:240.5s;animation-delay:240.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2406){-webkit-animation-delay:240.6s;animation-delay:240.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2407){-webkit-animation-delay:240.7s;animation-delay:240.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2408){-webkit-animation-delay:240.8s;animation-delay:240.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2409){-webkit-animation-delay:240.9s;animation-delay:240.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2410){-webkit-animation-delay:241s;animation-delay:241s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2411){-webkit-animation-delay:241.1s;animation-delay:241.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2412){-webkit-animation-delay:241.2s;animation-delay:241.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2413){-webkit-animation-delay:241.3s;animation-delay:241.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2414){-webkit-animation-delay:241.4s;animation-delay:241.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2415){-webkit-animation-delay:241.5s;animation-delay:241.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2416){-webkit-animation-delay:241.6s;animation-delay:241.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2417){-webkit-animation-delay:241.7s;animation-delay:241.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2418){-webkit-animation-delay:241.8s;animation-delay:241.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2419){-webkit-animation-delay:241.9s;animation-delay:241.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2420){-webkit-animation-delay:242s;animation-delay:242s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2421){-webkit-animation-delay:242.1s;animation-delay:242.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2422){-webkit-animation-delay:242.2s;animation-delay:242.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2423){-webkit-animation-delay:242.3s;animation-delay:242.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2424){-webkit-animation-delay:242.4s;animation-delay:242.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2425){-webkit-animation-delay:242.5s;animation-delay:242.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2426){-webkit-animation-delay:242.6s;animation-delay:242.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2427){-webkit-animation-delay:242.7s;animation-delay:242.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2428){-webkit-animation-delay:242.8s;animation-delay:242.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2429){-webkit-animation-delay:242.9s;animation-delay:242.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2430){-webkit-animation-delay:243s;animation-delay:243s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2431){-webkit-animation-delay:243.1s;animation-delay:243.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2432){-webkit-animation-delay:243.2s;animation-delay:243.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2433){-webkit-animation-delay:243.3s;animation-delay:243.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2434){-webkit-animation-delay:243.4s;animation-delay:243.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2435){-webkit-animation-delay:243.5s;animation-delay:243.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2436){-webkit-animation-delay:243.6s;animation-delay:243.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2437){-webkit-animation-delay:243.7s;animation-delay:243.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2438){-webkit-animation-delay:243.8s;animation-delay:243.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2439){-webkit-animation-delay:243.9s;animation-delay:243.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2440){-webkit-animation-delay:244s;animation-delay:244s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2441){-webkit-animation-delay:244.1s;animation-delay:244.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2442){-webkit-animation-delay:244.2s;animation-delay:244.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2443){-webkit-animation-delay:244.3s;animation-delay:244.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2444){-webkit-animation-delay:244.4s;animation-delay:244.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2445){-webkit-animation-delay:244.5s;animation-delay:244.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2446){-webkit-animation-delay:244.6s;animation-delay:244.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2447){-webkit-animation-delay:244.7s;animation-delay:244.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2448){-webkit-animation-delay:244.8s;animation-delay:244.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2449){-webkit-animation-delay:244.9s;animation-delay:244.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2450){-webkit-animation-delay:245s;animation-delay:245s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2451){-webkit-animation-delay:245.1s;animation-delay:245.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2452){-webkit-animation-delay:245.2s;animation-delay:245.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2453){-webkit-animation-delay:245.3s;animation-delay:245.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2454){-webkit-animation-delay:245.4s;animation-delay:245.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2455){-webkit-animation-delay:245.5s;animation-delay:245.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2456){-webkit-animation-delay:245.6s;animation-delay:245.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2457){-webkit-animation-delay:245.7s;animation-delay:245.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2458){-webkit-animation-delay:245.8s;animation-delay:245.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2459){-webkit-animation-delay:245.9s;animation-delay:245.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2460){-webkit-animation-delay:246s;animation-delay:246s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2461){-webkit-animation-delay:246.1s;animation-delay:246.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2462){-webkit-animation-delay:246.2s;animation-delay:246.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2463){-webkit-animation-delay:246.3s;animation-delay:246.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2464){-webkit-animation-delay:246.4s;animation-delay:246.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2465){-webkit-animation-delay:246.5s;animation-delay:246.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2466){-webkit-animation-delay:246.6s;animation-delay:246.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2467){-webkit-animation-delay:246.7s;animation-delay:246.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2468){-webkit-animation-delay:246.8s;animation-delay:246.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2469){-webkit-animation-delay:246.9s;animation-delay:246.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2470){-webkit-animation-delay:247s;animation-delay:247s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2471){-webkit-animation-delay:247.1s;animation-delay:247.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2472){-webkit-animation-delay:247.2s;animation-delay:247.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2473){-webkit-animation-delay:247.3s;animation-delay:247.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2474){-webkit-animation-delay:247.4s;animation-delay:247.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2475){-webkit-animation-delay:247.5s;animation-delay:247.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2476){-webkit-animation-delay:247.6s;animation-delay:247.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2477){-webkit-animation-delay:247.7s;animation-delay:247.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2478){-webkit-animation-delay:247.8s;animation-delay:247.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2479){-webkit-animation-delay:247.9s;animation-delay:247.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2480){-webkit-animation-delay:248s;animation-delay:248s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2481){-webkit-animation-delay:248.1s;animation-delay:248.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2482){-webkit-animation-delay:248.2s;animation-delay:248.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2483){-webkit-animation-delay:248.3s;animation-delay:248.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2484){-webkit-animation-delay:248.4s;animation-delay:248.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2485){-webkit-animation-delay:248.5s;animation-delay:248.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2486){-webkit-animation-delay:248.6s;animation-delay:248.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2487){-webkit-animation-delay:248.7s;animation-delay:248.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2488){-webkit-animation-delay:248.8s;animation-delay:248.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2489){-webkit-animation-delay:248.9s;animation-delay:248.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2490){-webkit-animation-delay:249s;animation-delay:249s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2491){-webkit-animation-delay:249.1s;animation-delay:249.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2492){-webkit-animation-delay:249.2s;animation-delay:249.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2493){-webkit-animation-delay:249.3s;animation-delay:249.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2494){-webkit-animation-delay:249.4s;animation-delay:249.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2495){-webkit-animation-delay:249.5s;animation-delay:249.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2496){-webkit-animation-delay:249.6s;animation-delay:249.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2497){-webkit-animation-delay:249.7s;animation-delay:249.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2498){-webkit-animation-delay:249.8s;animation-delay:249.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2499){-webkit-animation-delay:249.9s;animation-delay:249.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2500){-webkit-animation-delay:250s;animation-delay:250s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2501){-webkit-animation-delay:250.1s;animation-delay:250.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2502){-webkit-animation-delay:250.2s;animation-delay:250.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2503){-webkit-animation-delay:250.3s;animation-delay:250.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2504){-webkit-animation-delay:250.4s;animation-delay:250.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2505){-webkit-animation-delay:250.5s;animation-delay:250.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2506){-webkit-animation-delay:250.6s;animation-delay:250.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2507){-webkit-animation-delay:250.7s;animation-delay:250.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2508){-webkit-animation-delay:250.8s;animation-delay:250.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2509){-webkit-animation-delay:250.9s;animation-delay:250.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2510){-webkit-animation-delay:251s;animation-delay:251s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2511){-webkit-animation-delay:251.1s;animation-delay:251.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2512){-webkit-animation-delay:251.2s;animation-delay:251.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2513){-webkit-animation-delay:251.3s;animation-delay:251.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2514){-webkit-animation-delay:251.4s;animation-delay:251.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2515){-webkit-animation-delay:251.5s;animation-delay:251.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2516){-webkit-animation-delay:251.6s;animation-delay:251.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2517){-webkit-animation-delay:251.7s;animation-delay:251.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2518){-webkit-animation-delay:251.8s;animation-delay:251.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2519){-webkit-animation-delay:251.9s;animation-delay:251.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2520){-webkit-animation-delay:252s;animation-delay:252s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2521){-webkit-animation-delay:252.1s;animation-delay:252.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2522){-webkit-animation-delay:252.2s;animation-delay:252.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2523){-webkit-animation-delay:252.3s;animation-delay:252.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2524){-webkit-animation-delay:252.4s;animation-delay:252.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2525){-webkit-animation-delay:252.5s;animation-delay:252.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2526){-webkit-animation-delay:252.6s;animation-delay:252.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2527){-webkit-animation-delay:252.7s;animation-delay:252.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2528){-webkit-animation-delay:252.8s;animation-delay:252.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2529){-webkit-animation-delay:252.9s;animation-delay:252.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2530){-webkit-animation-delay:253s;animation-delay:253s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2531){-webkit-animation-delay:253.1s;animation-delay:253.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2532){-webkit-animation-delay:253.2s;animation-delay:253.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2533){-webkit-animation-delay:253.3s;animation-delay:253.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2534){-webkit-animation-delay:253.4s;animation-delay:253.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2535){-webkit-animation-delay:253.5s;animation-delay:253.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2536){-webkit-animation-delay:253.6s;animation-delay:253.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2537){-webkit-animation-delay:253.7s;animation-delay:253.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2538){-webkit-animation-delay:253.8s;animation-delay:253.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2539){-webkit-animation-delay:253.9s;animation-delay:253.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2540){-webkit-animation-delay:254s;animation-delay:254s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2541){-webkit-animation-delay:254.1s;animation-delay:254.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2542){-webkit-animation-delay:254.2s;animation-delay:254.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2543){-webkit-animation-delay:254.3s;animation-delay:254.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2544){-webkit-animation-delay:254.4s;animation-delay:254.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2545){-webkit-animation-delay:254.5s;animation-delay:254.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2546){-webkit-animation-delay:254.6s;animation-delay:254.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2547){-webkit-animation-delay:254.7s;animation-delay:254.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2548){-webkit-animation-delay:254.8s;animation-delay:254.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2549){-webkit-animation-delay:254.9s;animation-delay:254.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2550){-webkit-animation-delay:255s;animation-delay:255s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2551){-webkit-animation-delay:255.1s;animation-delay:255.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2552){-webkit-animation-delay:255.2s;animation-delay:255.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2553){-webkit-animation-delay:255.3s;animation-delay:255.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2554){-webkit-animation-delay:255.4s;animation-delay:255.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2555){-webkit-animation-delay:255.5s;animation-delay:255.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2556){-webkit-animation-delay:255.6s;animation-delay:255.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2557){-webkit-animation-delay:255.7s;animation-delay:255.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2558){-webkit-animation-delay:255.8s;animation-delay:255.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2559){-webkit-animation-delay:255.9s;animation-delay:255.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2560){-webkit-animation-delay:256s;animation-delay:256s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2561){-webkit-animation-delay:256.1s;animation-delay:256.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2562){-webkit-animation-delay:256.2s;animation-delay:256.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2563){-webkit-animation-delay:256.3s;animation-delay:256.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2564){-webkit-animation-delay:256.4s;animation-delay:256.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2565){-webkit-animation-delay:256.5s;animation-delay:256.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2566){-webkit-animation-delay:256.6s;animation-delay:256.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2567){-webkit-animation-delay:256.7s;animation-delay:256.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2568){-webkit-animation-delay:256.8s;animation-delay:256.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2569){-webkit-animation-delay:256.9s;animation-delay:256.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2570){-webkit-animation-delay:257s;animation-delay:257s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2571){-webkit-animation-delay:257.1s;animation-delay:257.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2572){-webkit-animation-delay:257.2s;animation-delay:257.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2573){-webkit-animation-delay:257.3s;animation-delay:257.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2574){-webkit-animation-delay:257.4s;animation-delay:257.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2575){-webkit-animation-delay:257.5s;animation-delay:257.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2576){-webkit-animation-delay:257.6s;animation-delay:257.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2577){-webkit-animation-delay:257.7s;animation-delay:257.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2578){-webkit-animation-delay:257.8s;animation-delay:257.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2579){-webkit-animation-delay:257.9s;animation-delay:257.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2580){-webkit-animation-delay:258s;animation-delay:258s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2581){-webkit-animation-delay:258.1s;animation-delay:258.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2582){-webkit-animation-delay:258.2s;animation-delay:258.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2583){-webkit-animation-delay:258.3s;animation-delay:258.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2584){-webkit-animation-delay:258.4s;animation-delay:258.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2585){-webkit-animation-delay:258.5s;animation-delay:258.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2586){-webkit-animation-delay:258.6s;animation-delay:258.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2587){-webkit-animation-delay:258.7s;animation-delay:258.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2588){-webkit-animation-delay:258.8s;animation-delay:258.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2589){-webkit-animation-delay:258.9s;animation-delay:258.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2590){-webkit-animation-delay:259s;animation-delay:259s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2591){-webkit-animation-delay:259.1s;animation-delay:259.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2592){-webkit-animation-delay:259.2s;animation-delay:259.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2593){-webkit-animation-delay:259.3s;animation-delay:259.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2594){-webkit-animation-delay:259.4s;animation-delay:259.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2595){-webkit-animation-delay:259.5s;animation-delay:259.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2596){-webkit-animation-delay:259.6s;animation-delay:259.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2597){-webkit-animation-delay:259.7s;animation-delay:259.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2598){-webkit-animation-delay:259.8s;animation-delay:259.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2599){-webkit-animation-delay:259.9s;animation-delay:259.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2600){-webkit-animation-delay:260s;animation-delay:260s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2601){-webkit-animation-delay:260.1s;animation-delay:260.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2602){-webkit-animation-delay:260.2s;animation-delay:260.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2603){-webkit-animation-delay:260.3s;animation-delay:260.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2604){-webkit-animation-delay:260.4s;animation-delay:260.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2605){-webkit-animation-delay:260.5s;animation-delay:260.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2606){-webkit-animation-delay:260.6s;animation-delay:260.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2607){-webkit-animation-delay:260.7s;animation-delay:260.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2608){-webkit-animation-delay:260.8s;animation-delay:260.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2609){-webkit-animation-delay:260.9s;animation-delay:260.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2610){-webkit-animation-delay:261s;animation-delay:261s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2611){-webkit-animation-delay:261.1s;animation-delay:261.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2612){-webkit-animation-delay:261.2s;animation-delay:261.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2613){-webkit-animation-delay:261.3s;animation-delay:261.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2614){-webkit-animation-delay:261.4s;animation-delay:261.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2615){-webkit-animation-delay:261.5s;animation-delay:261.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2616){-webkit-animation-delay:261.6s;animation-delay:261.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2617){-webkit-animation-delay:261.7s;animation-delay:261.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2618){-webkit-animation-delay:261.8s;animation-delay:261.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2619){-webkit-animation-delay:261.9s;animation-delay:261.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2620){-webkit-animation-delay:262s;animation-delay:262s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2621){-webkit-animation-delay:262.1s;animation-delay:262.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2622){-webkit-animation-delay:262.2s;animation-delay:262.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2623){-webkit-animation-delay:262.3s;animation-delay:262.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2624){-webkit-animation-delay:262.4s;animation-delay:262.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2625){-webkit-animation-delay:262.5s;animation-delay:262.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2626){-webkit-animation-delay:262.6s;animation-delay:262.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2627){-webkit-animation-delay:262.7s;animation-delay:262.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2628){-webkit-animation-delay:262.8s;animation-delay:262.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2629){-webkit-animation-delay:262.9s;animation-delay:262.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2630){-webkit-animation-delay:263s;animation-delay:263s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2631){-webkit-animation-delay:263.1s;animation-delay:263.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2632){-webkit-animation-delay:263.2s;animation-delay:263.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2633){-webkit-animation-delay:263.3s;animation-delay:263.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2634){-webkit-animation-delay:263.4s;animation-delay:263.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2635){-webkit-animation-delay:263.5s;animation-delay:263.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2636){-webkit-animation-delay:263.6s;animation-delay:263.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2637){-webkit-animation-delay:263.7s;animation-delay:263.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2638){-webkit-animation-delay:263.8s;animation-delay:263.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2639){-webkit-animation-delay:263.9s;animation-delay:263.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2640){-webkit-animation-delay:264s;animation-delay:264s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2641){-webkit-animation-delay:264.1s;animation-delay:264.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2642){-webkit-animation-delay:264.2s;animation-delay:264.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2643){-webkit-animation-delay:264.3s;animation-delay:264.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2644){-webkit-animation-delay:264.4s;animation-delay:264.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2645){-webkit-animation-delay:264.5s;animation-delay:264.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2646){-webkit-animation-delay:264.6s;animation-delay:264.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2647){-webkit-animation-delay:264.7s;animation-delay:264.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2648){-webkit-animation-delay:264.8s;animation-delay:264.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2649){-webkit-animation-delay:264.9s;animation-delay:264.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2650){-webkit-animation-delay:265s;animation-delay:265s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2651){-webkit-animation-delay:265.1s;animation-delay:265.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2652){-webkit-animation-delay:265.2s;animation-delay:265.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2653){-webkit-animation-delay:265.3s;animation-delay:265.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2654){-webkit-animation-delay:265.4s;animation-delay:265.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2655){-webkit-animation-delay:265.5s;animation-delay:265.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2656){-webkit-animation-delay:265.6s;animation-delay:265.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2657){-webkit-animation-delay:265.7s;animation-delay:265.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2658){-webkit-animation-delay:265.8s;animation-delay:265.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2659){-webkit-animation-delay:265.9s;animation-delay:265.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2660){-webkit-animation-delay:266s;animation-delay:266s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2661){-webkit-animation-delay:266.1s;animation-delay:266.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2662){-webkit-animation-delay:266.2s;animation-delay:266.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2663){-webkit-animation-delay:266.3s;animation-delay:266.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2664){-webkit-animation-delay:266.4s;animation-delay:266.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2665){-webkit-animation-delay:266.5s;animation-delay:266.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2666){-webkit-animation-delay:266.6s;animation-delay:266.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2667){-webkit-animation-delay:266.7s;animation-delay:266.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2668){-webkit-animation-delay:266.8s;animation-delay:266.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2669){-webkit-animation-delay:266.9s;animation-delay:266.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2670){-webkit-animation-delay:267s;animation-delay:267s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2671){-webkit-animation-delay:267.1s;animation-delay:267.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2672){-webkit-animation-delay:267.2s;animation-delay:267.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2673){-webkit-animation-delay:267.3s;animation-delay:267.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2674){-webkit-animation-delay:267.4s;animation-delay:267.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2675){-webkit-animation-delay:267.5s;animation-delay:267.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2676){-webkit-animation-delay:267.6s;animation-delay:267.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2677){-webkit-animation-delay:267.7s;animation-delay:267.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2678){-webkit-animation-delay:267.8s;animation-delay:267.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2679){-webkit-animation-delay:267.9s;animation-delay:267.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2680){-webkit-animation-delay:268s;animation-delay:268s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2681){-webkit-animation-delay:268.1s;animation-delay:268.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2682){-webkit-animation-delay:268.2s;animation-delay:268.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2683){-webkit-animation-delay:268.3s;animation-delay:268.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2684){-webkit-animation-delay:268.4s;animation-delay:268.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2685){-webkit-animation-delay:268.5s;animation-delay:268.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2686){-webkit-animation-delay:268.6s;animation-delay:268.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2687){-webkit-animation-delay:268.7s;animation-delay:268.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2688){-webkit-animation-delay:268.8s;animation-delay:268.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2689){-webkit-animation-delay:268.9s;animation-delay:268.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2690){-webkit-animation-delay:269s;animation-delay:269s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2691){-webkit-animation-delay:269.1s;animation-delay:269.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2692){-webkit-animation-delay:269.2s;animation-delay:269.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2693){-webkit-animation-delay:269.3s;animation-delay:269.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2694){-webkit-animation-delay:269.4s;animation-delay:269.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2695){-webkit-animation-delay:269.5s;animation-delay:269.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2696){-webkit-animation-delay:269.6s;animation-delay:269.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2697){-webkit-animation-delay:269.7s;animation-delay:269.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2698){-webkit-animation-delay:269.8s;animation-delay:269.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2699){-webkit-animation-delay:269.9s;animation-delay:269.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2700){-webkit-animation-delay:270s;animation-delay:270s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2701){-webkit-animation-delay:270.1s;animation-delay:270.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2702){-webkit-animation-delay:270.2s;animation-delay:270.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2703){-webkit-animation-delay:270.3s;animation-delay:270.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2704){-webkit-animation-delay:270.4s;animation-delay:270.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2705){-webkit-animation-delay:270.5s;animation-delay:270.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2706){-webkit-animation-delay:270.6s;animation-delay:270.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2707){-webkit-animation-delay:270.7s;animation-delay:270.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2708){-webkit-animation-delay:270.8s;animation-delay:270.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2709){-webkit-animation-delay:270.9s;animation-delay:270.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2710){-webkit-animation-delay:271s;animation-delay:271s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2711){-webkit-animation-delay:271.1s;animation-delay:271.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2712){-webkit-animation-delay:271.2s;animation-delay:271.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2713){-webkit-animation-delay:271.3s;animation-delay:271.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2714){-webkit-animation-delay:271.4s;animation-delay:271.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2715){-webkit-animation-delay:271.5s;animation-delay:271.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2716){-webkit-animation-delay:271.6s;animation-delay:271.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2717){-webkit-animation-delay:271.7s;animation-delay:271.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2718){-webkit-animation-delay:271.8s;animation-delay:271.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2719){-webkit-animation-delay:271.9s;animation-delay:271.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2720){-webkit-animation-delay:272s;animation-delay:272s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2721){-webkit-animation-delay:272.1s;animation-delay:272.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2722){-webkit-animation-delay:272.2s;animation-delay:272.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2723){-webkit-animation-delay:272.3s;animation-delay:272.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2724){-webkit-animation-delay:272.4s;animation-delay:272.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2725){-webkit-animation-delay:272.5s;animation-delay:272.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2726){-webkit-animation-delay:272.6s;animation-delay:272.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2727){-webkit-animation-delay:272.7s;animation-delay:272.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2728){-webkit-animation-delay:272.8s;animation-delay:272.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2729){-webkit-animation-delay:272.9s;animation-delay:272.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2730){-webkit-animation-delay:273s;animation-delay:273s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2731){-webkit-animation-delay:273.1s;animation-delay:273.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2732){-webkit-animation-delay:273.2s;animation-delay:273.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2733){-webkit-animation-delay:273.3s;animation-delay:273.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2734){-webkit-animation-delay:273.4s;animation-delay:273.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2735){-webkit-animation-delay:273.5s;animation-delay:273.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2736){-webkit-animation-delay:273.6s;animation-delay:273.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2737){-webkit-animation-delay:273.7s;animation-delay:273.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2738){-webkit-animation-delay:273.8s;animation-delay:273.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2739){-webkit-animation-delay:273.9s;animation-delay:273.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2740){-webkit-animation-delay:274s;animation-delay:274s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2741){-webkit-animation-delay:274.1s;animation-delay:274.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2742){-webkit-animation-delay:274.2s;animation-delay:274.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2743){-webkit-animation-delay:274.3s;animation-delay:274.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2744){-webkit-animation-delay:274.4s;animation-delay:274.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2745){-webkit-animation-delay:274.5s;animation-delay:274.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2746){-webkit-animation-delay:274.6s;animation-delay:274.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2747){-webkit-animation-delay:274.7s;animation-delay:274.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2748){-webkit-animation-delay:274.8s;animation-delay:274.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2749){-webkit-animation-delay:274.9s;animation-delay:274.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2750){-webkit-animation-delay:275s;animation-delay:275s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2751){-webkit-animation-delay:275.1s;animation-delay:275.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2752){-webkit-animation-delay:275.2s;animation-delay:275.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2753){-webkit-animation-delay:275.3s;animation-delay:275.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2754){-webkit-animation-delay:275.4s;animation-delay:275.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2755){-webkit-animation-delay:275.5s;animation-delay:275.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2756){-webkit-animation-delay:275.6s;animation-delay:275.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2757){-webkit-animation-delay:275.7s;animation-delay:275.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2758){-webkit-animation-delay:275.8s;animation-delay:275.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2759){-webkit-animation-delay:275.9s;animation-delay:275.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2760){-webkit-animation-delay:276s;animation-delay:276s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2761){-webkit-animation-delay:276.1s;animation-delay:276.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2762){-webkit-animation-delay:276.2s;animation-delay:276.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2763){-webkit-animation-delay:276.3s;animation-delay:276.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2764){-webkit-animation-delay:276.4s;animation-delay:276.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2765){-webkit-animation-delay:276.5s;animation-delay:276.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2766){-webkit-animation-delay:276.6s;animation-delay:276.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2767){-webkit-animation-delay:276.7s;animation-delay:276.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2768){-webkit-animation-delay:276.8s;animation-delay:276.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2769){-webkit-animation-delay:276.9s;animation-delay:276.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2770){-webkit-animation-delay:277s;animation-delay:277s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2771){-webkit-animation-delay:277.1s;animation-delay:277.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2772){-webkit-animation-delay:277.2s;animation-delay:277.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2773){-webkit-animation-delay:277.3s;animation-delay:277.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2774){-webkit-animation-delay:277.4s;animation-delay:277.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2775){-webkit-animation-delay:277.5s;animation-delay:277.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2776){-webkit-animation-delay:277.6s;animation-delay:277.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2777){-webkit-animation-delay:277.7s;animation-delay:277.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2778){-webkit-animation-delay:277.8s;animation-delay:277.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2779){-webkit-animation-delay:277.9s;animation-delay:277.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2780){-webkit-animation-delay:278s;animation-delay:278s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2781){-webkit-animation-delay:278.1s;animation-delay:278.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2782){-webkit-animation-delay:278.2s;animation-delay:278.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2783){-webkit-animation-delay:278.3s;animation-delay:278.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2784){-webkit-animation-delay:278.4s;animation-delay:278.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2785){-webkit-animation-delay:278.5s;animation-delay:278.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2786){-webkit-animation-delay:278.6s;animation-delay:278.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2787){-webkit-animation-delay:278.7s;animation-delay:278.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2788){-webkit-animation-delay:278.8s;animation-delay:278.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2789){-webkit-animation-delay:278.9s;animation-delay:278.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2790){-webkit-animation-delay:279s;animation-delay:279s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2791){-webkit-animation-delay:279.1s;animation-delay:279.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2792){-webkit-animation-delay:279.2s;animation-delay:279.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2793){-webkit-animation-delay:279.3s;animation-delay:279.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2794){-webkit-animation-delay:279.4s;animation-delay:279.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2795){-webkit-animation-delay:279.5s;animation-delay:279.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2796){-webkit-animation-delay:279.6s;animation-delay:279.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2797){-webkit-animation-delay:279.7s;animation-delay:279.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2798){-webkit-animation-delay:279.8s;animation-delay:279.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2799){-webkit-animation-delay:279.9s;animation-delay:279.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2800){-webkit-animation-delay:280s;animation-delay:280s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2801){-webkit-animation-delay:280.1s;animation-delay:280.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2802){-webkit-animation-delay:280.2s;animation-delay:280.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2803){-webkit-animation-delay:280.3s;animation-delay:280.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2804){-webkit-animation-delay:280.4s;animation-delay:280.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2805){-webkit-animation-delay:280.5s;animation-delay:280.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2806){-webkit-animation-delay:280.6s;animation-delay:280.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2807){-webkit-animation-delay:280.7s;animation-delay:280.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2808){-webkit-animation-delay:280.8s;animation-delay:280.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2809){-webkit-animation-delay:280.9s;animation-delay:280.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2810){-webkit-animation-delay:281s;animation-delay:281s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2811){-webkit-animation-delay:281.1s;animation-delay:281.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2812){-webkit-animation-delay:281.2s;animation-delay:281.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2813){-webkit-animation-delay:281.3s;animation-delay:281.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2814){-webkit-animation-delay:281.4s;animation-delay:281.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2815){-webkit-animation-delay:281.5s;animation-delay:281.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2816){-webkit-animation-delay:281.6s;animation-delay:281.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2817){-webkit-animation-delay:281.7s;animation-delay:281.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2818){-webkit-animation-delay:281.8s;animation-delay:281.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2819){-webkit-animation-delay:281.9s;animation-delay:281.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2820){-webkit-animation-delay:282s;animation-delay:282s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2821){-webkit-animation-delay:282.1s;animation-delay:282.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2822){-webkit-animation-delay:282.2s;animation-delay:282.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2823){-webkit-animation-delay:282.3s;animation-delay:282.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2824){-webkit-animation-delay:282.4s;animation-delay:282.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2825){-webkit-animation-delay:282.5s;animation-delay:282.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2826){-webkit-animation-delay:282.6s;animation-delay:282.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2827){-webkit-animation-delay:282.7s;animation-delay:282.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2828){-webkit-animation-delay:282.8s;animation-delay:282.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2829){-webkit-animation-delay:282.9s;animation-delay:282.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2830){-webkit-animation-delay:283s;animation-delay:283s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2831){-webkit-animation-delay:283.1s;animation-delay:283.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2832){-webkit-animation-delay:283.2s;animation-delay:283.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2833){-webkit-animation-delay:283.3s;animation-delay:283.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2834){-webkit-animation-delay:283.4s;animation-delay:283.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2835){-webkit-animation-delay:283.5s;animation-delay:283.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2836){-webkit-animation-delay:283.6s;animation-delay:283.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2837){-webkit-animation-delay:283.7s;animation-delay:283.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2838){-webkit-animation-delay:283.8s;animation-delay:283.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2839){-webkit-animation-delay:283.9s;animation-delay:283.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2840){-webkit-animation-delay:284s;animation-delay:284s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2841){-webkit-animation-delay:284.1s;animation-delay:284.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2842){-webkit-animation-delay:284.2s;animation-delay:284.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2843){-webkit-animation-delay:284.3s;animation-delay:284.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2844){-webkit-animation-delay:284.4s;animation-delay:284.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2845){-webkit-animation-delay:284.5s;animation-delay:284.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2846){-webkit-animation-delay:284.6s;animation-delay:284.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2847){-webkit-animation-delay:284.7s;animation-delay:284.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2848){-webkit-animation-delay:284.8s;animation-delay:284.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2849){-webkit-animation-delay:284.9s;animation-delay:284.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2850){-webkit-animation-delay:285s;animation-delay:285s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2851){-webkit-animation-delay:285.1s;animation-delay:285.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2852){-webkit-animation-delay:285.2s;animation-delay:285.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2853){-webkit-animation-delay:285.3s;animation-delay:285.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2854){-webkit-animation-delay:285.4s;animation-delay:285.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2855){-webkit-animation-delay:285.5s;animation-delay:285.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2856){-webkit-animation-delay:285.6s;animation-delay:285.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2857){-webkit-animation-delay:285.7s;animation-delay:285.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2858){-webkit-animation-delay:285.8s;animation-delay:285.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2859){-webkit-animation-delay:285.9s;animation-delay:285.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2860){-webkit-animation-delay:286s;animation-delay:286s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2861){-webkit-animation-delay:286.1s;animation-delay:286.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2862){-webkit-animation-delay:286.2s;animation-delay:286.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2863){-webkit-animation-delay:286.3s;animation-delay:286.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2864){-webkit-animation-delay:286.4s;animation-delay:286.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2865){-webkit-animation-delay:286.5s;animation-delay:286.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2866){-webkit-animation-delay:286.6s;animation-delay:286.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2867){-webkit-animation-delay:286.7s;animation-delay:286.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2868){-webkit-animation-delay:286.8s;animation-delay:286.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2869){-webkit-animation-delay:286.9s;animation-delay:286.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2870){-webkit-animation-delay:287s;animation-delay:287s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2871){-webkit-animation-delay:287.1s;animation-delay:287.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2872){-webkit-animation-delay:287.2s;animation-delay:287.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2873){-webkit-animation-delay:287.3s;animation-delay:287.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2874){-webkit-animation-delay:287.4s;animation-delay:287.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2875){-webkit-animation-delay:287.5s;animation-delay:287.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2876){-webkit-animation-delay:287.6s;animation-delay:287.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2877){-webkit-animation-delay:287.7s;animation-delay:287.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2878){-webkit-animation-delay:287.8s;animation-delay:287.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2879){-webkit-animation-delay:287.9s;animation-delay:287.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2880){-webkit-animation-delay:288s;animation-delay:288s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2881){-webkit-animation-delay:288.1s;animation-delay:288.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2882){-webkit-animation-delay:288.2s;animation-delay:288.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2883){-webkit-animation-delay:288.3s;animation-delay:288.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2884){-webkit-animation-delay:288.4s;animation-delay:288.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2885){-webkit-animation-delay:288.5s;animation-delay:288.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2886){-webkit-animation-delay:288.6s;animation-delay:288.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2887){-webkit-animation-delay:288.7s;animation-delay:288.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2888){-webkit-animation-delay:288.8s;animation-delay:288.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2889){-webkit-animation-delay:288.9s;animation-delay:288.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2890){-webkit-animation-delay:289s;animation-delay:289s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2891){-webkit-animation-delay:289.1s;animation-delay:289.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2892){-webkit-animation-delay:289.2s;animation-delay:289.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2893){-webkit-animation-delay:289.3s;animation-delay:289.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2894){-webkit-animation-delay:289.4s;animation-delay:289.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2895){-webkit-animation-delay:289.5s;animation-delay:289.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2896){-webkit-animation-delay:289.6s;animation-delay:289.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2897){-webkit-animation-delay:289.7s;animation-delay:289.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2898){-webkit-animation-delay:289.8s;animation-delay:289.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2899){-webkit-animation-delay:289.9s;animation-delay:289.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2900){-webkit-animation-delay:290s;animation-delay:290s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2901){-webkit-animation-delay:290.1s;animation-delay:290.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2902){-webkit-animation-delay:290.2s;animation-delay:290.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2903){-webkit-animation-delay:290.3s;animation-delay:290.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2904){-webkit-animation-delay:290.4s;animation-delay:290.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2905){-webkit-animation-delay:290.5s;animation-delay:290.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2906){-webkit-animation-delay:290.6s;animation-delay:290.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2907){-webkit-animation-delay:290.7s;animation-delay:290.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2908){-webkit-animation-delay:290.8s;animation-delay:290.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2909){-webkit-animation-delay:290.9s;animation-delay:290.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2910){-webkit-animation-delay:291s;animation-delay:291s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2911){-webkit-animation-delay:291.1s;animation-delay:291.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2912){-webkit-animation-delay:291.2s;animation-delay:291.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2913){-webkit-animation-delay:291.3s;animation-delay:291.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2914){-webkit-animation-delay:291.4s;animation-delay:291.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2915){-webkit-animation-delay:291.5s;animation-delay:291.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2916){-webkit-animation-delay:291.6s;animation-delay:291.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2917){-webkit-animation-delay:291.7s;animation-delay:291.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2918){-webkit-animation-delay:291.8s;animation-delay:291.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2919){-webkit-animation-delay:291.9s;animation-delay:291.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2920){-webkit-animation-delay:292s;animation-delay:292s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2921){-webkit-animation-delay:292.1s;animation-delay:292.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2922){-webkit-animation-delay:292.2s;animation-delay:292.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2923){-webkit-animation-delay:292.3s;animation-delay:292.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2924){-webkit-animation-delay:292.4s;animation-delay:292.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2925){-webkit-animation-delay:292.5s;animation-delay:292.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2926){-webkit-animation-delay:292.6s;animation-delay:292.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2927){-webkit-animation-delay:292.7s;animation-delay:292.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2928){-webkit-animation-delay:292.8s;animation-delay:292.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2929){-webkit-animation-delay:292.9s;animation-delay:292.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2930){-webkit-animation-delay:293s;animation-delay:293s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2931){-webkit-animation-delay:293.1s;animation-delay:293.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2932){-webkit-animation-delay:293.2s;animation-delay:293.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2933){-webkit-animation-delay:293.3s;animation-delay:293.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2934){-webkit-animation-delay:293.4s;animation-delay:293.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2935){-webkit-animation-delay:293.5s;animation-delay:293.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2936){-webkit-animation-delay:293.6s;animation-delay:293.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2937){-webkit-animation-delay:293.7s;animation-delay:293.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2938){-webkit-animation-delay:293.8s;animation-delay:293.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2939){-webkit-animation-delay:293.9s;animation-delay:293.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2940){-webkit-animation-delay:294s;animation-delay:294s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2941){-webkit-animation-delay:294.1s;animation-delay:294.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2942){-webkit-animation-delay:294.2s;animation-delay:294.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2943){-webkit-animation-delay:294.3s;animation-delay:294.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2944){-webkit-animation-delay:294.4s;animation-delay:294.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2945){-webkit-animation-delay:294.5s;animation-delay:294.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2946){-webkit-animation-delay:294.6s;animation-delay:294.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2947){-webkit-animation-delay:294.7s;animation-delay:294.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2948){-webkit-animation-delay:294.8s;animation-delay:294.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2949){-webkit-animation-delay:294.9s;animation-delay:294.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2950){-webkit-animation-delay:295s;animation-delay:295s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2951){-webkit-animation-delay:295.1s;animation-delay:295.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2952){-webkit-animation-delay:295.2s;animation-delay:295.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2953){-webkit-animation-delay:295.3s;animation-delay:295.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2954){-webkit-animation-delay:295.4s;animation-delay:295.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2955){-webkit-animation-delay:295.5s;animation-delay:295.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2956){-webkit-animation-delay:295.6s;animation-delay:295.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2957){-webkit-animation-delay:295.7s;animation-delay:295.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2958){-webkit-animation-delay:295.8s;animation-delay:295.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2959){-webkit-animation-delay:295.9s;animation-delay:295.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2960){-webkit-animation-delay:296s;animation-delay:296s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2961){-webkit-animation-delay:296.1s;animation-delay:296.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2962){-webkit-animation-delay:296.2s;animation-delay:296.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2963){-webkit-animation-delay:296.3s;animation-delay:296.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2964){-webkit-animation-delay:296.4s;animation-delay:296.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2965){-webkit-animation-delay:296.5s;animation-delay:296.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2966){-webkit-animation-delay:296.6s;animation-delay:296.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2967){-webkit-animation-delay:296.7s;animation-delay:296.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2968){-webkit-animation-delay:296.8s;animation-delay:296.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2969){-webkit-animation-delay:296.9s;animation-delay:296.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2970){-webkit-animation-delay:297s;animation-delay:297s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2971){-webkit-animation-delay:297.1s;animation-delay:297.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2972){-webkit-animation-delay:297.2s;animation-delay:297.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2973){-webkit-animation-delay:297.3s;animation-delay:297.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2974){-webkit-animation-delay:297.4s;animation-delay:297.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2975){-webkit-animation-delay:297.5s;animation-delay:297.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2976){-webkit-animation-delay:297.6s;animation-delay:297.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2977){-webkit-animation-delay:297.7s;animation-delay:297.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2978){-webkit-animation-delay:297.8s;animation-delay:297.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2979){-webkit-animation-delay:297.9s;animation-delay:297.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2980){-webkit-animation-delay:298s;animation-delay:298s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2981){-webkit-animation-delay:298.1s;animation-delay:298.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2982){-webkit-animation-delay:298.2s;animation-delay:298.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2983){-webkit-animation-delay:298.3s;animation-delay:298.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2984){-webkit-animation-delay:298.4s;animation-delay:298.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2985){-webkit-animation-delay:298.5s;animation-delay:298.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2986){-webkit-animation-delay:298.6s;animation-delay:298.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2987){-webkit-animation-delay:298.7s;animation-delay:298.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2988){-webkit-animation-delay:298.8s;animation-delay:298.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2989){-webkit-animation-delay:298.9s;animation-delay:298.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2990){-webkit-animation-delay:299s;animation-delay:299s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2991){-webkit-animation-delay:299.1s;animation-delay:299.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2992){-webkit-animation-delay:299.2s;animation-delay:299.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2993){-webkit-animation-delay:299.3s;animation-delay:299.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2994){-webkit-animation-delay:299.4s;animation-delay:299.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2995){-webkit-animation-delay:299.5s;animation-delay:299.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2996){-webkit-animation-delay:299.6s;animation-delay:299.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2997){-webkit-animation-delay:299.7s;animation-delay:299.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2998){-webkit-animation-delay:299.8s;animation-delay:299.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(2999){-webkit-animation-delay:299.9s;animation-delay:299.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3000){-webkit-animation-delay:300s;animation-delay:300s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3001){-webkit-animation-delay:300.1s;animation-delay:300.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3002){-webkit-animation-delay:300.2s;animation-delay:300.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3003){-webkit-animation-delay:300.3s;animation-delay:300.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3004){-webkit-animation-delay:300.4s;animation-delay:300.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3005){-webkit-animation-delay:300.5s;animation-delay:300.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3006){-webkit-animation-delay:300.6s;animation-delay:300.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3007){-webkit-animation-delay:300.7s;animation-delay:300.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3008){-webkit-animation-delay:300.8s;animation-delay:300.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3009){-webkit-animation-delay:300.9s;animation-delay:300.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3010){-webkit-animation-delay:301s;animation-delay:301s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3011){-webkit-animation-delay:301.1s;animation-delay:301.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3012){-webkit-animation-delay:301.2s;animation-delay:301.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3013){-webkit-animation-delay:301.3s;animation-delay:301.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3014){-webkit-animation-delay:301.4s;animation-delay:301.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3015){-webkit-animation-delay:301.5s;animation-delay:301.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3016){-webkit-animation-delay:301.6s;animation-delay:301.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3017){-webkit-animation-delay:301.7s;animation-delay:301.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3018){-webkit-animation-delay:301.8s;animation-delay:301.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3019){-webkit-animation-delay:301.9s;animation-delay:301.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3020){-webkit-animation-delay:302s;animation-delay:302s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3021){-webkit-animation-delay:302.1s;animation-delay:302.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3022){-webkit-animation-delay:302.2s;animation-delay:302.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3023){-webkit-animation-delay:302.3s;animation-delay:302.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3024){-webkit-animation-delay:302.4s;animation-delay:302.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3025){-webkit-animation-delay:302.5s;animation-delay:302.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3026){-webkit-animation-delay:302.6s;animation-delay:302.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3027){-webkit-animation-delay:302.7s;animation-delay:302.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3028){-webkit-animation-delay:302.8s;animation-delay:302.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3029){-webkit-animation-delay:302.9s;animation-delay:302.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3030){-webkit-animation-delay:303s;animation-delay:303s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3031){-webkit-animation-delay:303.1s;animation-delay:303.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3032){-webkit-animation-delay:303.2s;animation-delay:303.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3033){-webkit-animation-delay:303.3s;animation-delay:303.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3034){-webkit-animation-delay:303.4s;animation-delay:303.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3035){-webkit-animation-delay:303.5s;animation-delay:303.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3036){-webkit-animation-delay:303.6s;animation-delay:303.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3037){-webkit-animation-delay:303.7s;animation-delay:303.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3038){-webkit-animation-delay:303.8s;animation-delay:303.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3039){-webkit-animation-delay:303.9s;animation-delay:303.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3040){-webkit-animation-delay:304s;animation-delay:304s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3041){-webkit-animation-delay:304.1s;animation-delay:304.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3042){-webkit-animation-delay:304.2s;animation-delay:304.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3043){-webkit-animation-delay:304.3s;animation-delay:304.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3044){-webkit-animation-delay:304.4s;animation-delay:304.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3045){-webkit-animation-delay:304.5s;animation-delay:304.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3046){-webkit-animation-delay:304.6s;animation-delay:304.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3047){-webkit-animation-delay:304.7s;animation-delay:304.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3048){-webkit-animation-delay:304.8s;animation-delay:304.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3049){-webkit-animation-delay:304.9s;animation-delay:304.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3050){-webkit-animation-delay:305s;animation-delay:305s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3051){-webkit-animation-delay:305.1s;animation-delay:305.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3052){-webkit-animation-delay:305.2s;animation-delay:305.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3053){-webkit-animation-delay:305.3s;animation-delay:305.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3054){-webkit-animation-delay:305.4s;animation-delay:305.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3055){-webkit-animation-delay:305.5s;animation-delay:305.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3056){-webkit-animation-delay:305.6s;animation-delay:305.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3057){-webkit-animation-delay:305.7s;animation-delay:305.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3058){-webkit-animation-delay:305.8s;animation-delay:305.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3059){-webkit-animation-delay:305.9s;animation-delay:305.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3060){-webkit-animation-delay:306s;animation-delay:306s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3061){-webkit-animation-delay:306.1s;animation-delay:306.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3062){-webkit-animation-delay:306.2s;animation-delay:306.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3063){-webkit-animation-delay:306.3s;animation-delay:306.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3064){-webkit-animation-delay:306.4s;animation-delay:306.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3065){-webkit-animation-delay:306.5s;animation-delay:306.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3066){-webkit-animation-delay:306.6s;animation-delay:306.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3067){-webkit-animation-delay:306.7s;animation-delay:306.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3068){-webkit-animation-delay:306.8s;animation-delay:306.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3069){-webkit-animation-delay:306.9s;animation-delay:306.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3070){-webkit-animation-delay:307s;animation-delay:307s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3071){-webkit-animation-delay:307.1s;animation-delay:307.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3072){-webkit-animation-delay:307.2s;animation-delay:307.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3073){-webkit-animation-delay:307.3s;animation-delay:307.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3074){-webkit-animation-delay:307.4s;animation-delay:307.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3075){-webkit-animation-delay:307.5s;animation-delay:307.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3076){-webkit-animation-delay:307.6s;animation-delay:307.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3077){-webkit-animation-delay:307.7s;animation-delay:307.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3078){-webkit-animation-delay:307.8s;animation-delay:307.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3079){-webkit-animation-delay:307.9s;animation-delay:307.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3080){-webkit-animation-delay:308s;animation-delay:308s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3081){-webkit-animation-delay:308.1s;animation-delay:308.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3082){-webkit-animation-delay:308.2s;animation-delay:308.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3083){-webkit-animation-delay:308.3s;animation-delay:308.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3084){-webkit-animation-delay:308.4s;animation-delay:308.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3085){-webkit-animation-delay:308.5s;animation-delay:308.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3086){-webkit-animation-delay:308.6s;animation-delay:308.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3087){-webkit-animation-delay:308.7s;animation-delay:308.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3088){-webkit-animation-delay:308.8s;animation-delay:308.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3089){-webkit-animation-delay:308.9s;animation-delay:308.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3090){-webkit-animation-delay:309s;animation-delay:309s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3091){-webkit-animation-delay:309.1s;animation-delay:309.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3092){-webkit-animation-delay:309.2s;animation-delay:309.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3093){-webkit-animation-delay:309.3s;animation-delay:309.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3094){-webkit-animation-delay:309.4s;animation-delay:309.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3095){-webkit-animation-delay:309.5s;animation-delay:309.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3096){-webkit-animation-delay:309.6s;animation-delay:309.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3097){-webkit-animation-delay:309.7s;animation-delay:309.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3098){-webkit-animation-delay:309.8s;animation-delay:309.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3099){-webkit-animation-delay:309.9s;animation-delay:309.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3100){-webkit-animation-delay:310s;animation-delay:310s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3101){-webkit-animation-delay:310.1s;animation-delay:310.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3102){-webkit-animation-delay:310.2s;animation-delay:310.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3103){-webkit-animation-delay:310.3s;animation-delay:310.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3104){-webkit-animation-delay:310.4s;animation-delay:310.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3105){-webkit-animation-delay:310.5s;animation-delay:310.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3106){-webkit-animation-delay:310.6s;animation-delay:310.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3107){-webkit-animation-delay:310.7s;animation-delay:310.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3108){-webkit-animation-delay:310.8s;animation-delay:310.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3109){-webkit-animation-delay:310.9s;animation-delay:310.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3110){-webkit-animation-delay:311s;animation-delay:311s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3111){-webkit-animation-delay:311.1s;animation-delay:311.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3112){-webkit-animation-delay:311.2s;animation-delay:311.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3113){-webkit-animation-delay:311.3s;animation-delay:311.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3114){-webkit-animation-delay:311.4s;animation-delay:311.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3115){-webkit-animation-delay:311.5s;animation-delay:311.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3116){-webkit-animation-delay:311.6s;animation-delay:311.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3117){-webkit-animation-delay:311.7s;animation-delay:311.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3118){-webkit-animation-delay:311.8s;animation-delay:311.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3119){-webkit-animation-delay:311.9s;animation-delay:311.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3120){-webkit-animation-delay:312s;animation-delay:312s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3121){-webkit-animation-delay:312.1s;animation-delay:312.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3122){-webkit-animation-delay:312.2s;animation-delay:312.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3123){-webkit-animation-delay:312.3s;animation-delay:312.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3124){-webkit-animation-delay:312.4s;animation-delay:312.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3125){-webkit-animation-delay:312.5s;animation-delay:312.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3126){-webkit-animation-delay:312.6s;animation-delay:312.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3127){-webkit-animation-delay:312.7s;animation-delay:312.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3128){-webkit-animation-delay:312.8s;animation-delay:312.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3129){-webkit-animation-delay:312.9s;animation-delay:312.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3130){-webkit-animation-delay:313s;animation-delay:313s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3131){-webkit-animation-delay:313.1s;animation-delay:313.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3132){-webkit-animation-delay:313.2s;animation-delay:313.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3133){-webkit-animation-delay:313.3s;animation-delay:313.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3134){-webkit-animation-delay:313.4s;animation-delay:313.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3135){-webkit-animation-delay:313.5s;animation-delay:313.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3136){-webkit-animation-delay:313.6s;animation-delay:313.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3137){-webkit-animation-delay:313.7s;animation-delay:313.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3138){-webkit-animation-delay:313.8s;animation-delay:313.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3139){-webkit-animation-delay:313.9s;animation-delay:313.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3140){-webkit-animation-delay:314s;animation-delay:314s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3141){-webkit-animation-delay:314.1s;animation-delay:314.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3142){-webkit-animation-delay:314.2s;animation-delay:314.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3143){-webkit-animation-delay:314.3s;animation-delay:314.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3144){-webkit-animation-delay:314.4s;animation-delay:314.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3145){-webkit-animation-delay:314.5s;animation-delay:314.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3146){-webkit-animation-delay:314.6s;animation-delay:314.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3147){-webkit-animation-delay:314.7s;animation-delay:314.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3148){-webkit-animation-delay:314.8s;animation-delay:314.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3149){-webkit-animation-delay:314.9s;animation-delay:314.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3150){-webkit-animation-delay:315s;animation-delay:315s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3151){-webkit-animation-delay:315.1s;animation-delay:315.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3152){-webkit-animation-delay:315.2s;animation-delay:315.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3153){-webkit-animation-delay:315.3s;animation-delay:315.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3154){-webkit-animation-delay:315.4s;animation-delay:315.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3155){-webkit-animation-delay:315.5s;animation-delay:315.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3156){-webkit-animation-delay:315.6s;animation-delay:315.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3157){-webkit-animation-delay:315.7s;animation-delay:315.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3158){-webkit-animation-delay:315.8s;animation-delay:315.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3159){-webkit-animation-delay:315.9s;animation-delay:315.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3160){-webkit-animation-delay:316s;animation-delay:316s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3161){-webkit-animation-delay:316.1s;animation-delay:316.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3162){-webkit-animation-delay:316.2s;animation-delay:316.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3163){-webkit-animation-delay:316.3s;animation-delay:316.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3164){-webkit-animation-delay:316.4s;animation-delay:316.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3165){-webkit-animation-delay:316.5s;animation-delay:316.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3166){-webkit-animation-delay:316.6s;animation-delay:316.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3167){-webkit-animation-delay:316.7s;animation-delay:316.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3168){-webkit-animation-delay:316.8s;animation-delay:316.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3169){-webkit-animation-delay:316.9s;animation-delay:316.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3170){-webkit-animation-delay:317s;animation-delay:317s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3171){-webkit-animation-delay:317.1s;animation-delay:317.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3172){-webkit-animation-delay:317.2s;animation-delay:317.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3173){-webkit-animation-delay:317.3s;animation-delay:317.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3174){-webkit-animation-delay:317.4s;animation-delay:317.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3175){-webkit-animation-delay:317.5s;animation-delay:317.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3176){-webkit-animation-delay:317.6s;animation-delay:317.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3177){-webkit-animation-delay:317.7s;animation-delay:317.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3178){-webkit-animation-delay:317.8s;animation-delay:317.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3179){-webkit-animation-delay:317.9s;animation-delay:317.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3180){-webkit-animation-delay:318s;animation-delay:318s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3181){-webkit-animation-delay:318.1s;animation-delay:318.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3182){-webkit-animation-delay:318.2s;animation-delay:318.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3183){-webkit-animation-delay:318.3s;animation-delay:318.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3184){-webkit-animation-delay:318.4s;animation-delay:318.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3185){-webkit-animation-delay:318.5s;animation-delay:318.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3186){-webkit-animation-delay:318.6s;animation-delay:318.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3187){-webkit-animation-delay:318.7s;animation-delay:318.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3188){-webkit-animation-delay:318.8s;animation-delay:318.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3189){-webkit-animation-delay:318.9s;animation-delay:318.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3190){-webkit-animation-delay:319s;animation-delay:319s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3191){-webkit-animation-delay:319.1s;animation-delay:319.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3192){-webkit-animation-delay:319.2s;animation-delay:319.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3193){-webkit-animation-delay:319.3s;animation-delay:319.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3194){-webkit-animation-delay:319.4s;animation-delay:319.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3195){-webkit-animation-delay:319.5s;animation-delay:319.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3196){-webkit-animation-delay:319.6s;animation-delay:319.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3197){-webkit-animation-delay:319.7s;animation-delay:319.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3198){-webkit-animation-delay:319.8s;animation-delay:319.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3199){-webkit-animation-delay:319.9s;animation-delay:319.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3200){-webkit-animation-delay:320s;animation-delay:320s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3201){-webkit-animation-delay:320.1s;animation-delay:320.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3202){-webkit-animation-delay:320.2s;animation-delay:320.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3203){-webkit-animation-delay:320.3s;animation-delay:320.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3204){-webkit-animation-delay:320.4s;animation-delay:320.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3205){-webkit-animation-delay:320.5s;animation-delay:320.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3206){-webkit-animation-delay:320.6s;animation-delay:320.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3207){-webkit-animation-delay:320.7s;animation-delay:320.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3208){-webkit-animation-delay:320.8s;animation-delay:320.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3209){-webkit-animation-delay:320.9s;animation-delay:320.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3210){-webkit-animation-delay:321s;animation-delay:321s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3211){-webkit-animation-delay:321.1s;animation-delay:321.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3212){-webkit-animation-delay:321.2s;animation-delay:321.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3213){-webkit-animation-delay:321.3s;animation-delay:321.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3214){-webkit-animation-delay:321.4s;animation-delay:321.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3215){-webkit-animation-delay:321.5s;animation-delay:321.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3216){-webkit-animation-delay:321.6s;animation-delay:321.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3217){-webkit-animation-delay:321.7s;animation-delay:321.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3218){-webkit-animation-delay:321.8s;animation-delay:321.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3219){-webkit-animation-delay:321.9s;animation-delay:321.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3220){-webkit-animation-delay:322s;animation-delay:322s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3221){-webkit-animation-delay:322.1s;animation-delay:322.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3222){-webkit-animation-delay:322.2s;animation-delay:322.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3223){-webkit-animation-delay:322.3s;animation-delay:322.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3224){-webkit-animation-delay:322.4s;animation-delay:322.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3225){-webkit-animation-delay:322.5s;animation-delay:322.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3226){-webkit-animation-delay:322.6s;animation-delay:322.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3227){-webkit-animation-delay:322.7s;animation-delay:322.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3228){-webkit-animation-delay:322.8s;animation-delay:322.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3229){-webkit-animation-delay:322.9s;animation-delay:322.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3230){-webkit-animation-delay:323s;animation-delay:323s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3231){-webkit-animation-delay:323.1s;animation-delay:323.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3232){-webkit-animation-delay:323.2s;animation-delay:323.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3233){-webkit-animation-delay:323.3s;animation-delay:323.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3234){-webkit-animation-delay:323.4s;animation-delay:323.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3235){-webkit-animation-delay:323.5s;animation-delay:323.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3236){-webkit-animation-delay:323.6s;animation-delay:323.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3237){-webkit-animation-delay:323.7s;animation-delay:323.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3238){-webkit-animation-delay:323.8s;animation-delay:323.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3239){-webkit-animation-delay:323.9s;animation-delay:323.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3240){-webkit-animation-delay:324s;animation-delay:324s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3241){-webkit-animation-delay:324.1s;animation-delay:324.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3242){-webkit-animation-delay:324.2s;animation-delay:324.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3243){-webkit-animation-delay:324.3s;animation-delay:324.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3244){-webkit-animation-delay:324.4s;animation-delay:324.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3245){-webkit-animation-delay:324.5s;animation-delay:324.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3246){-webkit-animation-delay:324.6s;animation-delay:324.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3247){-webkit-animation-delay:324.7s;animation-delay:324.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3248){-webkit-animation-delay:324.8s;animation-delay:324.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3249){-webkit-animation-delay:324.9s;animation-delay:324.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3250){-webkit-animation-delay:325s;animation-delay:325s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3251){-webkit-animation-delay:325.1s;animation-delay:325.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3252){-webkit-animation-delay:325.2s;animation-delay:325.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3253){-webkit-animation-delay:325.3s;animation-delay:325.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3254){-webkit-animation-delay:325.4s;animation-delay:325.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3255){-webkit-animation-delay:325.5s;animation-delay:325.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3256){-webkit-animation-delay:325.6s;animation-delay:325.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3257){-webkit-animation-delay:325.7s;animation-delay:325.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3258){-webkit-animation-delay:325.8s;animation-delay:325.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3259){-webkit-animation-delay:325.9s;animation-delay:325.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3260){-webkit-animation-delay:326s;animation-delay:326s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3261){-webkit-animation-delay:326.1s;animation-delay:326.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3262){-webkit-animation-delay:326.2s;animation-delay:326.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3263){-webkit-animation-delay:326.3s;animation-delay:326.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3264){-webkit-animation-delay:326.4s;animation-delay:326.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3265){-webkit-animation-delay:326.5s;animation-delay:326.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3266){-webkit-animation-delay:326.6s;animation-delay:326.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3267){-webkit-animation-delay:326.7s;animation-delay:326.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3268){-webkit-animation-delay:326.8s;animation-delay:326.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3269){-webkit-animation-delay:326.9s;animation-delay:326.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3270){-webkit-animation-delay:327s;animation-delay:327s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3271){-webkit-animation-delay:327.1s;animation-delay:327.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3272){-webkit-animation-delay:327.2s;animation-delay:327.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3273){-webkit-animation-delay:327.3s;animation-delay:327.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3274){-webkit-animation-delay:327.4s;animation-delay:327.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3275){-webkit-animation-delay:327.5s;animation-delay:327.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3276){-webkit-animation-delay:327.6s;animation-delay:327.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3277){-webkit-animation-delay:327.7s;animation-delay:327.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3278){-webkit-animation-delay:327.8s;animation-delay:327.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3279){-webkit-animation-delay:327.9s;animation-delay:327.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3280){-webkit-animation-delay:328s;animation-delay:328s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3281){-webkit-animation-delay:328.1s;animation-delay:328.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3282){-webkit-animation-delay:328.2s;animation-delay:328.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3283){-webkit-animation-delay:328.3s;animation-delay:328.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3284){-webkit-animation-delay:328.4s;animation-delay:328.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3285){-webkit-animation-delay:328.5s;animation-delay:328.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3286){-webkit-animation-delay:328.6s;animation-delay:328.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3287){-webkit-animation-delay:328.7s;animation-delay:328.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3288){-webkit-animation-delay:328.8s;animation-delay:328.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3289){-webkit-animation-delay:328.9s;animation-delay:328.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3290){-webkit-animation-delay:329s;animation-delay:329s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3291){-webkit-animation-delay:329.1s;animation-delay:329.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3292){-webkit-animation-delay:329.2s;animation-delay:329.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3293){-webkit-animation-delay:329.3s;animation-delay:329.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3294){-webkit-animation-delay:329.4s;animation-delay:329.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3295){-webkit-animation-delay:329.5s;animation-delay:329.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3296){-webkit-animation-delay:329.6s;animation-delay:329.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3297){-webkit-animation-delay:329.7s;animation-delay:329.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3298){-webkit-animation-delay:329.8s;animation-delay:329.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3299){-webkit-animation-delay:329.9s;animation-delay:329.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3300){-webkit-animation-delay:330s;animation-delay:330s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3301){-webkit-animation-delay:330.1s;animation-delay:330.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3302){-webkit-animation-delay:330.2s;animation-delay:330.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3303){-webkit-animation-delay:330.3s;animation-delay:330.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3304){-webkit-animation-delay:330.4s;animation-delay:330.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3305){-webkit-animation-delay:330.5s;animation-delay:330.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3306){-webkit-animation-delay:330.6s;animation-delay:330.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3307){-webkit-animation-delay:330.7s;animation-delay:330.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3308){-webkit-animation-delay:330.8s;animation-delay:330.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3309){-webkit-animation-delay:330.9s;animation-delay:330.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3310){-webkit-animation-delay:331s;animation-delay:331s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3311){-webkit-animation-delay:331.1s;animation-delay:331.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3312){-webkit-animation-delay:331.2s;animation-delay:331.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3313){-webkit-animation-delay:331.3s;animation-delay:331.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3314){-webkit-animation-delay:331.4s;animation-delay:331.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3315){-webkit-animation-delay:331.5s;animation-delay:331.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3316){-webkit-animation-delay:331.6s;animation-delay:331.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3317){-webkit-animation-delay:331.7s;animation-delay:331.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3318){-webkit-animation-delay:331.8s;animation-delay:331.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3319){-webkit-animation-delay:331.9s;animation-delay:331.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3320){-webkit-animation-delay:332s;animation-delay:332s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3321){-webkit-animation-delay:332.1s;animation-delay:332.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3322){-webkit-animation-delay:332.2s;animation-delay:332.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3323){-webkit-animation-delay:332.3s;animation-delay:332.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3324){-webkit-animation-delay:332.4s;animation-delay:332.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3325){-webkit-animation-delay:332.5s;animation-delay:332.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3326){-webkit-animation-delay:332.6s;animation-delay:332.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3327){-webkit-animation-delay:332.7s;animation-delay:332.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3328){-webkit-animation-delay:332.8s;animation-delay:332.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3329){-webkit-animation-delay:332.9s;animation-delay:332.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3330){-webkit-animation-delay:333s;animation-delay:333s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3331){-webkit-animation-delay:333.1s;animation-delay:333.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3332){-webkit-animation-delay:333.2s;animation-delay:333.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3333){-webkit-animation-delay:333.3s;animation-delay:333.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3334){-webkit-animation-delay:333.4s;animation-delay:333.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3335){-webkit-animation-delay:333.5s;animation-delay:333.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3336){-webkit-animation-delay:333.6s;animation-delay:333.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3337){-webkit-animation-delay:333.7s;animation-delay:333.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3338){-webkit-animation-delay:333.8s;animation-delay:333.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3339){-webkit-animation-delay:333.9s;animation-delay:333.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3340){-webkit-animation-delay:334s;animation-delay:334s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3341){-webkit-animation-delay:334.1s;animation-delay:334.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3342){-webkit-animation-delay:334.2s;animation-delay:334.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3343){-webkit-animation-delay:334.3s;animation-delay:334.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3344){-webkit-animation-delay:334.4s;animation-delay:334.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3345){-webkit-animation-delay:334.5s;animation-delay:334.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3346){-webkit-animation-delay:334.6s;animation-delay:334.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3347){-webkit-animation-delay:334.7s;animation-delay:334.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3348){-webkit-animation-delay:334.8s;animation-delay:334.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3349){-webkit-animation-delay:334.9s;animation-delay:334.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3350){-webkit-animation-delay:335s;animation-delay:335s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3351){-webkit-animation-delay:335.1s;animation-delay:335.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3352){-webkit-animation-delay:335.2s;animation-delay:335.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3353){-webkit-animation-delay:335.3s;animation-delay:335.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3354){-webkit-animation-delay:335.4s;animation-delay:335.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3355){-webkit-animation-delay:335.5s;animation-delay:335.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3356){-webkit-animation-delay:335.6s;animation-delay:335.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3357){-webkit-animation-delay:335.7s;animation-delay:335.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3358){-webkit-animation-delay:335.8s;animation-delay:335.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3359){-webkit-animation-delay:335.9s;animation-delay:335.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3360){-webkit-animation-delay:336s;animation-delay:336s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3361){-webkit-animation-delay:336.1s;animation-delay:336.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3362){-webkit-animation-delay:336.2s;animation-delay:336.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3363){-webkit-animation-delay:336.3s;animation-delay:336.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3364){-webkit-animation-delay:336.4s;animation-delay:336.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3365){-webkit-animation-delay:336.5s;animation-delay:336.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3366){-webkit-animation-delay:336.6s;animation-delay:336.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3367){-webkit-animation-delay:336.7s;animation-delay:336.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3368){-webkit-animation-delay:336.8s;animation-delay:336.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3369){-webkit-animation-delay:336.9s;animation-delay:336.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3370){-webkit-animation-delay:337s;animation-delay:337s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3371){-webkit-animation-delay:337.1s;animation-delay:337.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3372){-webkit-animation-delay:337.2s;animation-delay:337.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3373){-webkit-animation-delay:337.3s;animation-delay:337.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3374){-webkit-animation-delay:337.4s;animation-delay:337.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3375){-webkit-animation-delay:337.5s;animation-delay:337.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3376){-webkit-animation-delay:337.6s;animation-delay:337.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3377){-webkit-animation-delay:337.7s;animation-delay:337.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3378){-webkit-animation-delay:337.8s;animation-delay:337.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3379){-webkit-animation-delay:337.9s;animation-delay:337.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3380){-webkit-animation-delay:338s;animation-delay:338s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3381){-webkit-animation-delay:338.1s;animation-delay:338.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3382){-webkit-animation-delay:338.2s;animation-delay:338.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3383){-webkit-animation-delay:338.3s;animation-delay:338.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3384){-webkit-animation-delay:338.4s;animation-delay:338.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3385){-webkit-animation-delay:338.5s;animation-delay:338.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3386){-webkit-animation-delay:338.6s;animation-delay:338.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3387){-webkit-animation-delay:338.7s;animation-delay:338.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3388){-webkit-animation-delay:338.8s;animation-delay:338.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3389){-webkit-animation-delay:338.9s;animation-delay:338.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3390){-webkit-animation-delay:339s;animation-delay:339s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3391){-webkit-animation-delay:339.1s;animation-delay:339.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3392){-webkit-animation-delay:339.2s;animation-delay:339.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3393){-webkit-animation-delay:339.3s;animation-delay:339.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3394){-webkit-animation-delay:339.4s;animation-delay:339.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3395){-webkit-animation-delay:339.5s;animation-delay:339.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3396){-webkit-animation-delay:339.6s;animation-delay:339.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3397){-webkit-animation-delay:339.7s;animation-delay:339.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3398){-webkit-animation-delay:339.8s;animation-delay:339.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3399){-webkit-animation-delay:339.9s;animation-delay:339.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3400){-webkit-animation-delay:340s;animation-delay:340s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3401){-webkit-animation-delay:340.1s;animation-delay:340.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3402){-webkit-animation-delay:340.2s;animation-delay:340.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3403){-webkit-animation-delay:340.3s;animation-delay:340.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3404){-webkit-animation-delay:340.4s;animation-delay:340.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3405){-webkit-animation-delay:340.5s;animation-delay:340.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3406){-webkit-animation-delay:340.6s;animation-delay:340.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3407){-webkit-animation-delay:340.7s;animation-delay:340.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3408){-webkit-animation-delay:340.8s;animation-delay:340.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3409){-webkit-animation-delay:340.9s;animation-delay:340.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3410){-webkit-animation-delay:341s;animation-delay:341s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3411){-webkit-animation-delay:341.1s;animation-delay:341.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3412){-webkit-animation-delay:341.2s;animation-delay:341.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3413){-webkit-animation-delay:341.3s;animation-delay:341.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3414){-webkit-animation-delay:341.4s;animation-delay:341.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3415){-webkit-animation-delay:341.5s;animation-delay:341.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3416){-webkit-animation-delay:341.6s;animation-delay:341.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3417){-webkit-animation-delay:341.7s;animation-delay:341.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3418){-webkit-animation-delay:341.8s;animation-delay:341.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3419){-webkit-animation-delay:341.9s;animation-delay:341.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3420){-webkit-animation-delay:342s;animation-delay:342s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3421){-webkit-animation-delay:342.1s;animation-delay:342.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3422){-webkit-animation-delay:342.2s;animation-delay:342.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3423){-webkit-animation-delay:342.3s;animation-delay:342.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3424){-webkit-animation-delay:342.4s;animation-delay:342.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3425){-webkit-animation-delay:342.5s;animation-delay:342.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3426){-webkit-animation-delay:342.6s;animation-delay:342.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3427){-webkit-animation-delay:342.7s;animation-delay:342.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3428){-webkit-animation-delay:342.8s;animation-delay:342.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3429){-webkit-animation-delay:342.9s;animation-delay:342.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3430){-webkit-animation-delay:343s;animation-delay:343s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3431){-webkit-animation-delay:343.1s;animation-delay:343.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3432){-webkit-animation-delay:343.2s;animation-delay:343.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3433){-webkit-animation-delay:343.3s;animation-delay:343.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3434){-webkit-animation-delay:343.4s;animation-delay:343.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3435){-webkit-animation-delay:343.5s;animation-delay:343.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3436){-webkit-animation-delay:343.6s;animation-delay:343.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3437){-webkit-animation-delay:343.7s;animation-delay:343.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3438){-webkit-animation-delay:343.8s;animation-delay:343.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3439){-webkit-animation-delay:343.9s;animation-delay:343.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3440){-webkit-animation-delay:344s;animation-delay:344s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3441){-webkit-animation-delay:344.1s;animation-delay:344.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3442){-webkit-animation-delay:344.2s;animation-delay:344.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3443){-webkit-animation-delay:344.3s;animation-delay:344.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3444){-webkit-animation-delay:344.4s;animation-delay:344.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3445){-webkit-animation-delay:344.5s;animation-delay:344.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3446){-webkit-animation-delay:344.6s;animation-delay:344.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3447){-webkit-animation-delay:344.7s;animation-delay:344.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3448){-webkit-animation-delay:344.8s;animation-delay:344.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3449){-webkit-animation-delay:344.9s;animation-delay:344.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3450){-webkit-animation-delay:345s;animation-delay:345s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3451){-webkit-animation-delay:345.1s;animation-delay:345.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3452){-webkit-animation-delay:345.2s;animation-delay:345.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3453){-webkit-animation-delay:345.3s;animation-delay:345.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3454){-webkit-animation-delay:345.4s;animation-delay:345.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3455){-webkit-animation-delay:345.5s;animation-delay:345.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3456){-webkit-animation-delay:345.6s;animation-delay:345.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3457){-webkit-animation-delay:345.7s;animation-delay:345.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3458){-webkit-animation-delay:345.8s;animation-delay:345.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3459){-webkit-animation-delay:345.9s;animation-delay:345.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3460){-webkit-animation-delay:346s;animation-delay:346s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3461){-webkit-animation-delay:346.1s;animation-delay:346.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3462){-webkit-animation-delay:346.2s;animation-delay:346.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3463){-webkit-animation-delay:346.3s;animation-delay:346.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3464){-webkit-animation-delay:346.4s;animation-delay:346.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3465){-webkit-animation-delay:346.5s;animation-delay:346.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3466){-webkit-animation-delay:346.6s;animation-delay:346.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3467){-webkit-animation-delay:346.7s;animation-delay:346.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3468){-webkit-animation-delay:346.8s;animation-delay:346.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3469){-webkit-animation-delay:346.9s;animation-delay:346.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3470){-webkit-animation-delay:347s;animation-delay:347s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3471){-webkit-animation-delay:347.1s;animation-delay:347.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3472){-webkit-animation-delay:347.2s;animation-delay:347.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3473){-webkit-animation-delay:347.3s;animation-delay:347.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3474){-webkit-animation-delay:347.4s;animation-delay:347.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3475){-webkit-animation-delay:347.5s;animation-delay:347.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3476){-webkit-animation-delay:347.6s;animation-delay:347.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3477){-webkit-animation-delay:347.7s;animation-delay:347.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3478){-webkit-animation-delay:347.8s;animation-delay:347.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3479){-webkit-animation-delay:347.9s;animation-delay:347.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3480){-webkit-animation-delay:348s;animation-delay:348s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3481){-webkit-animation-delay:348.1s;animation-delay:348.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3482){-webkit-animation-delay:348.2s;animation-delay:348.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3483){-webkit-animation-delay:348.3s;animation-delay:348.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3484){-webkit-animation-delay:348.4s;animation-delay:348.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3485){-webkit-animation-delay:348.5s;animation-delay:348.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3486){-webkit-animation-delay:348.6s;animation-delay:348.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3487){-webkit-animation-delay:348.7s;animation-delay:348.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3488){-webkit-animation-delay:348.8s;animation-delay:348.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3489){-webkit-animation-delay:348.9s;animation-delay:348.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3490){-webkit-animation-delay:349s;animation-delay:349s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3491){-webkit-animation-delay:349.1s;animation-delay:349.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3492){-webkit-animation-delay:349.2s;animation-delay:349.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3493){-webkit-animation-delay:349.3s;animation-delay:349.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3494){-webkit-animation-delay:349.4s;animation-delay:349.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3495){-webkit-animation-delay:349.5s;animation-delay:349.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3496){-webkit-animation-delay:349.6s;animation-delay:349.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3497){-webkit-animation-delay:349.7s;animation-delay:349.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3498){-webkit-animation-delay:349.8s;animation-delay:349.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3499){-webkit-animation-delay:349.9s;animation-delay:349.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3500){-webkit-animation-delay:350s;animation-delay:350s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3501){-webkit-animation-delay:350.1s;animation-delay:350.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3502){-webkit-animation-delay:350.2s;animation-delay:350.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3503){-webkit-animation-delay:350.3s;animation-delay:350.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3504){-webkit-animation-delay:350.4s;animation-delay:350.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3505){-webkit-animation-delay:350.5s;animation-delay:350.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3506){-webkit-animation-delay:350.6s;animation-delay:350.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3507){-webkit-animation-delay:350.7s;animation-delay:350.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3508){-webkit-animation-delay:350.8s;animation-delay:350.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3509){-webkit-animation-delay:350.9s;animation-delay:350.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3510){-webkit-animation-delay:351s;animation-delay:351s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3511){-webkit-animation-delay:351.1s;animation-delay:351.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3512){-webkit-animation-delay:351.2s;animation-delay:351.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3513){-webkit-animation-delay:351.3s;animation-delay:351.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3514){-webkit-animation-delay:351.4s;animation-delay:351.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3515){-webkit-animation-delay:351.5s;animation-delay:351.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3516){-webkit-animation-delay:351.6s;animation-delay:351.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3517){-webkit-animation-delay:351.7s;animation-delay:351.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3518){-webkit-animation-delay:351.8s;animation-delay:351.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3519){-webkit-animation-delay:351.9s;animation-delay:351.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3520){-webkit-animation-delay:352s;animation-delay:352s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3521){-webkit-animation-delay:352.1s;animation-delay:352.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3522){-webkit-animation-delay:352.2s;animation-delay:352.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3523){-webkit-animation-delay:352.3s;animation-delay:352.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3524){-webkit-animation-delay:352.4s;animation-delay:352.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3525){-webkit-animation-delay:352.5s;animation-delay:352.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3526){-webkit-animation-delay:352.6s;animation-delay:352.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3527){-webkit-animation-delay:352.7s;animation-delay:352.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3528){-webkit-animation-delay:352.8s;animation-delay:352.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3529){-webkit-animation-delay:352.9s;animation-delay:352.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3530){-webkit-animation-delay:353s;animation-delay:353s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3531){-webkit-animation-delay:353.1s;animation-delay:353.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3532){-webkit-animation-delay:353.2s;animation-delay:353.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3533){-webkit-animation-delay:353.3s;animation-delay:353.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3534){-webkit-animation-delay:353.4s;animation-delay:353.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3535){-webkit-animation-delay:353.5s;animation-delay:353.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3536){-webkit-animation-delay:353.6s;animation-delay:353.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3537){-webkit-animation-delay:353.7s;animation-delay:353.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3538){-webkit-animation-delay:353.8s;animation-delay:353.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3539){-webkit-animation-delay:353.9s;animation-delay:353.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3540){-webkit-animation-delay:354s;animation-delay:354s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3541){-webkit-animation-delay:354.1s;animation-delay:354.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3542){-webkit-animation-delay:354.2s;animation-delay:354.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3543){-webkit-animation-delay:354.3s;animation-delay:354.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3544){-webkit-animation-delay:354.4s;animation-delay:354.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3545){-webkit-animation-delay:354.5s;animation-delay:354.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3546){-webkit-animation-delay:354.6s;animation-delay:354.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3547){-webkit-animation-delay:354.7s;animation-delay:354.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3548){-webkit-animation-delay:354.8s;animation-delay:354.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3549){-webkit-animation-delay:354.9s;animation-delay:354.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3550){-webkit-animation-delay:355s;animation-delay:355s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3551){-webkit-animation-delay:355.1s;animation-delay:355.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3552){-webkit-animation-delay:355.2s;animation-delay:355.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3553){-webkit-animation-delay:355.3s;animation-delay:355.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3554){-webkit-animation-delay:355.4s;animation-delay:355.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3555){-webkit-animation-delay:355.5s;animation-delay:355.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3556){-webkit-animation-delay:355.6s;animation-delay:355.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3557){-webkit-animation-delay:355.7s;animation-delay:355.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3558){-webkit-animation-delay:355.8s;animation-delay:355.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3559){-webkit-animation-delay:355.9s;animation-delay:355.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3560){-webkit-animation-delay:356s;animation-delay:356s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3561){-webkit-animation-delay:356.1s;animation-delay:356.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3562){-webkit-animation-delay:356.2s;animation-delay:356.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3563){-webkit-animation-delay:356.3s;animation-delay:356.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3564){-webkit-animation-delay:356.4s;animation-delay:356.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3565){-webkit-animation-delay:356.5s;animation-delay:356.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3566){-webkit-animation-delay:356.6s;animation-delay:356.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3567){-webkit-animation-delay:356.7s;animation-delay:356.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3568){-webkit-animation-delay:356.8s;animation-delay:356.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3569){-webkit-animation-delay:356.9s;animation-delay:356.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3570){-webkit-animation-delay:357s;animation-delay:357s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3571){-webkit-animation-delay:357.1s;animation-delay:357.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3572){-webkit-animation-delay:357.2s;animation-delay:357.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3573){-webkit-animation-delay:357.3s;animation-delay:357.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3574){-webkit-animation-delay:357.4s;animation-delay:357.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3575){-webkit-animation-delay:357.5s;animation-delay:357.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3576){-webkit-animation-delay:357.6s;animation-delay:357.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3577){-webkit-animation-delay:357.7s;animation-delay:357.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3578){-webkit-animation-delay:357.8s;animation-delay:357.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3579){-webkit-animation-delay:357.9s;animation-delay:357.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3580){-webkit-animation-delay:358s;animation-delay:358s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3581){-webkit-animation-delay:358.1s;animation-delay:358.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3582){-webkit-animation-delay:358.2s;animation-delay:358.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3583){-webkit-animation-delay:358.3s;animation-delay:358.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3584){-webkit-animation-delay:358.4s;animation-delay:358.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3585){-webkit-animation-delay:358.5s;animation-delay:358.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3586){-webkit-animation-delay:358.6s;animation-delay:358.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3587){-webkit-animation-delay:358.7s;animation-delay:358.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3588){-webkit-animation-delay:358.8s;animation-delay:358.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3589){-webkit-animation-delay:358.9s;animation-delay:358.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3590){-webkit-animation-delay:359s;animation-delay:359s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3591){-webkit-animation-delay:359.1s;animation-delay:359.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3592){-webkit-animation-delay:359.2s;animation-delay:359.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3593){-webkit-animation-delay:359.3s;animation-delay:359.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3594){-webkit-animation-delay:359.4s;animation-delay:359.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3595){-webkit-animation-delay:359.5s;animation-delay:359.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3596){-webkit-animation-delay:359.6s;animation-delay:359.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3597){-webkit-animation-delay:359.7s;animation-delay:359.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3598){-webkit-animation-delay:359.8s;animation-delay:359.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3599){-webkit-animation-delay:359.9s;animation-delay:359.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3600){-webkit-animation-delay:360s;animation-delay:360s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3601){-webkit-animation-delay:360.1s;animation-delay:360.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3602){-webkit-animation-delay:360.2s;animation-delay:360.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3603){-webkit-animation-delay:360.3s;animation-delay:360.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3604){-webkit-animation-delay:360.4s;animation-delay:360.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3605){-webkit-animation-delay:360.5s;animation-delay:360.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3606){-webkit-animation-delay:360.6s;animation-delay:360.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3607){-webkit-animation-delay:360.7s;animation-delay:360.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3608){-webkit-animation-delay:360.8s;animation-delay:360.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3609){-webkit-animation-delay:360.9s;animation-delay:360.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3610){-webkit-animation-delay:361s;animation-delay:361s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3611){-webkit-animation-delay:361.1s;animation-delay:361.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3612){-webkit-animation-delay:361.2s;animation-delay:361.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3613){-webkit-animation-delay:361.3s;animation-delay:361.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3614){-webkit-animation-delay:361.4s;animation-delay:361.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3615){-webkit-animation-delay:361.5s;animation-delay:361.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3616){-webkit-animation-delay:361.6s;animation-delay:361.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3617){-webkit-animation-delay:361.7s;animation-delay:361.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3618){-webkit-animation-delay:361.8s;animation-delay:361.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3619){-webkit-animation-delay:361.9s;animation-delay:361.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3620){-webkit-animation-delay:362s;animation-delay:362s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3621){-webkit-animation-delay:362.1s;animation-delay:362.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3622){-webkit-animation-delay:362.2s;animation-delay:362.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3623){-webkit-animation-delay:362.3s;animation-delay:362.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3624){-webkit-animation-delay:362.4s;animation-delay:362.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3625){-webkit-animation-delay:362.5s;animation-delay:362.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3626){-webkit-animation-delay:362.6s;animation-delay:362.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3627){-webkit-animation-delay:362.7s;animation-delay:362.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3628){-webkit-animation-delay:362.8s;animation-delay:362.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3629){-webkit-animation-delay:362.9s;animation-delay:362.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3630){-webkit-animation-delay:363s;animation-delay:363s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3631){-webkit-animation-delay:363.1s;animation-delay:363.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3632){-webkit-animation-delay:363.2s;animation-delay:363.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3633){-webkit-animation-delay:363.3s;animation-delay:363.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3634){-webkit-animation-delay:363.4s;animation-delay:363.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3635){-webkit-animation-delay:363.5s;animation-delay:363.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3636){-webkit-animation-delay:363.6s;animation-delay:363.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3637){-webkit-animation-delay:363.7s;animation-delay:363.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3638){-webkit-animation-delay:363.8s;animation-delay:363.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3639){-webkit-animation-delay:363.9s;animation-delay:363.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3640){-webkit-animation-delay:364s;animation-delay:364s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3641){-webkit-animation-delay:364.1s;animation-delay:364.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3642){-webkit-animation-delay:364.2s;animation-delay:364.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3643){-webkit-animation-delay:364.3s;animation-delay:364.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3644){-webkit-animation-delay:364.4s;animation-delay:364.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3645){-webkit-animation-delay:364.5s;animation-delay:364.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3646){-webkit-animation-delay:364.6s;animation-delay:364.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3647){-webkit-animation-delay:364.7s;animation-delay:364.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3648){-webkit-animation-delay:364.8s;animation-delay:364.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3649){-webkit-animation-delay:364.9s;animation-delay:364.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3650){-webkit-animation-delay:365s;animation-delay:365s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3651){-webkit-animation-delay:365.1s;animation-delay:365.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3652){-webkit-animation-delay:365.2s;animation-delay:365.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3653){-webkit-animation-delay:365.3s;animation-delay:365.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3654){-webkit-animation-delay:365.4s;animation-delay:365.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3655){-webkit-animation-delay:365.5s;animation-delay:365.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3656){-webkit-animation-delay:365.6s;animation-delay:365.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3657){-webkit-animation-delay:365.7s;animation-delay:365.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3658){-webkit-animation-delay:365.8s;animation-delay:365.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3659){-webkit-animation-delay:365.9s;animation-delay:365.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3660){-webkit-animation-delay:366s;animation-delay:366s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3661){-webkit-animation-delay:366.1s;animation-delay:366.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3662){-webkit-animation-delay:366.2s;animation-delay:366.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3663){-webkit-animation-delay:366.3s;animation-delay:366.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3664){-webkit-animation-delay:366.4s;animation-delay:366.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3665){-webkit-animation-delay:366.5s;animation-delay:366.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3666){-webkit-animation-delay:366.6s;animation-delay:366.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3667){-webkit-animation-delay:366.7s;animation-delay:366.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3668){-webkit-animation-delay:366.8s;animation-delay:366.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3669){-webkit-animation-delay:366.9s;animation-delay:366.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3670){-webkit-animation-delay:367s;animation-delay:367s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3671){-webkit-animation-delay:367.1s;animation-delay:367.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3672){-webkit-animation-delay:367.2s;animation-delay:367.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3673){-webkit-animation-delay:367.3s;animation-delay:367.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3674){-webkit-animation-delay:367.4s;animation-delay:367.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3675){-webkit-animation-delay:367.5s;animation-delay:367.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3676){-webkit-animation-delay:367.6s;animation-delay:367.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3677){-webkit-animation-delay:367.7s;animation-delay:367.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3678){-webkit-animation-delay:367.8s;animation-delay:367.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3679){-webkit-animation-delay:367.9s;animation-delay:367.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3680){-webkit-animation-delay:368s;animation-delay:368s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3681){-webkit-animation-delay:368.1s;animation-delay:368.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3682){-webkit-animation-delay:368.2s;animation-delay:368.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3683){-webkit-animation-delay:368.3s;animation-delay:368.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3684){-webkit-animation-delay:368.4s;animation-delay:368.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3685){-webkit-animation-delay:368.5s;animation-delay:368.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3686){-webkit-animation-delay:368.6s;animation-delay:368.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3687){-webkit-animation-delay:368.7s;animation-delay:368.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3688){-webkit-animation-delay:368.8s;animation-delay:368.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3689){-webkit-animation-delay:368.9s;animation-delay:368.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3690){-webkit-animation-delay:369s;animation-delay:369s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3691){-webkit-animation-delay:369.1s;animation-delay:369.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3692){-webkit-animation-delay:369.2s;animation-delay:369.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3693){-webkit-animation-delay:369.3s;animation-delay:369.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3694){-webkit-animation-delay:369.4s;animation-delay:369.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3695){-webkit-animation-delay:369.5s;animation-delay:369.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3696){-webkit-animation-delay:369.6s;animation-delay:369.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3697){-webkit-animation-delay:369.7s;animation-delay:369.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3698){-webkit-animation-delay:369.8s;animation-delay:369.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3699){-webkit-animation-delay:369.9s;animation-delay:369.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3700){-webkit-animation-delay:370s;animation-delay:370s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3701){-webkit-animation-delay:370.1s;animation-delay:370.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3702){-webkit-animation-delay:370.2s;animation-delay:370.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3703){-webkit-animation-delay:370.3s;animation-delay:370.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3704){-webkit-animation-delay:370.4s;animation-delay:370.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3705){-webkit-animation-delay:370.5s;animation-delay:370.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3706){-webkit-animation-delay:370.6s;animation-delay:370.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3707){-webkit-animation-delay:370.7s;animation-delay:370.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3708){-webkit-animation-delay:370.8s;animation-delay:370.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3709){-webkit-animation-delay:370.9s;animation-delay:370.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3710){-webkit-animation-delay:371s;animation-delay:371s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3711){-webkit-animation-delay:371.1s;animation-delay:371.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3712){-webkit-animation-delay:371.2s;animation-delay:371.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3713){-webkit-animation-delay:371.3s;animation-delay:371.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3714){-webkit-animation-delay:371.4s;animation-delay:371.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3715){-webkit-animation-delay:371.5s;animation-delay:371.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3716){-webkit-animation-delay:371.6s;animation-delay:371.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3717){-webkit-animation-delay:371.7s;animation-delay:371.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3718){-webkit-animation-delay:371.8s;animation-delay:371.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3719){-webkit-animation-delay:371.9s;animation-delay:371.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3720){-webkit-animation-delay:372s;animation-delay:372s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3721){-webkit-animation-delay:372.1s;animation-delay:372.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3722){-webkit-animation-delay:372.2s;animation-delay:372.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3723){-webkit-animation-delay:372.3s;animation-delay:372.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3724){-webkit-animation-delay:372.4s;animation-delay:372.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3725){-webkit-animation-delay:372.5s;animation-delay:372.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3726){-webkit-animation-delay:372.6s;animation-delay:372.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3727){-webkit-animation-delay:372.7s;animation-delay:372.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3728){-webkit-animation-delay:372.8s;animation-delay:372.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3729){-webkit-animation-delay:372.9s;animation-delay:372.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3730){-webkit-animation-delay:373s;animation-delay:373s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3731){-webkit-animation-delay:373.1s;animation-delay:373.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3732){-webkit-animation-delay:373.2s;animation-delay:373.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3733){-webkit-animation-delay:373.3s;animation-delay:373.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3734){-webkit-animation-delay:373.4s;animation-delay:373.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3735){-webkit-animation-delay:373.5s;animation-delay:373.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3736){-webkit-animation-delay:373.6s;animation-delay:373.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3737){-webkit-animation-delay:373.7s;animation-delay:373.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3738){-webkit-animation-delay:373.8s;animation-delay:373.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3739){-webkit-animation-delay:373.9s;animation-delay:373.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3740){-webkit-animation-delay:374s;animation-delay:374s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3741){-webkit-animation-delay:374.1s;animation-delay:374.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3742){-webkit-animation-delay:374.2s;animation-delay:374.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3743){-webkit-animation-delay:374.3s;animation-delay:374.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3744){-webkit-animation-delay:374.4s;animation-delay:374.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3745){-webkit-animation-delay:374.5s;animation-delay:374.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3746){-webkit-animation-delay:374.6s;animation-delay:374.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3747){-webkit-animation-delay:374.7s;animation-delay:374.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3748){-webkit-animation-delay:374.8s;animation-delay:374.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3749){-webkit-animation-delay:374.9s;animation-delay:374.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3750){-webkit-animation-delay:375s;animation-delay:375s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3751){-webkit-animation-delay:375.1s;animation-delay:375.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3752){-webkit-animation-delay:375.2s;animation-delay:375.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3753){-webkit-animation-delay:375.3s;animation-delay:375.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3754){-webkit-animation-delay:375.4s;animation-delay:375.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3755){-webkit-animation-delay:375.5s;animation-delay:375.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3756){-webkit-animation-delay:375.6s;animation-delay:375.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3757){-webkit-animation-delay:375.7s;animation-delay:375.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3758){-webkit-animation-delay:375.8s;animation-delay:375.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3759){-webkit-animation-delay:375.9s;animation-delay:375.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3760){-webkit-animation-delay:376s;animation-delay:376s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3761){-webkit-animation-delay:376.1s;animation-delay:376.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3762){-webkit-animation-delay:376.2s;animation-delay:376.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3763){-webkit-animation-delay:376.3s;animation-delay:376.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3764){-webkit-animation-delay:376.4s;animation-delay:376.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3765){-webkit-animation-delay:376.5s;animation-delay:376.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3766){-webkit-animation-delay:376.6s;animation-delay:376.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3767){-webkit-animation-delay:376.7s;animation-delay:376.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3768){-webkit-animation-delay:376.8s;animation-delay:376.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3769){-webkit-animation-delay:376.9s;animation-delay:376.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3770){-webkit-animation-delay:377s;animation-delay:377s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3771){-webkit-animation-delay:377.1s;animation-delay:377.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3772){-webkit-animation-delay:377.2s;animation-delay:377.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3773){-webkit-animation-delay:377.3s;animation-delay:377.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3774){-webkit-animation-delay:377.4s;animation-delay:377.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3775){-webkit-animation-delay:377.5s;animation-delay:377.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3776){-webkit-animation-delay:377.6s;animation-delay:377.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3777){-webkit-animation-delay:377.7s;animation-delay:377.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3778){-webkit-animation-delay:377.8s;animation-delay:377.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3779){-webkit-animation-delay:377.9s;animation-delay:377.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3780){-webkit-animation-delay:378s;animation-delay:378s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3781){-webkit-animation-delay:378.1s;animation-delay:378.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3782){-webkit-animation-delay:378.2s;animation-delay:378.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3783){-webkit-animation-delay:378.3s;animation-delay:378.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3784){-webkit-animation-delay:378.4s;animation-delay:378.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3785){-webkit-animation-delay:378.5s;animation-delay:378.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3786){-webkit-animation-delay:378.6s;animation-delay:378.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3787){-webkit-animation-delay:378.7s;animation-delay:378.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3788){-webkit-animation-delay:378.8s;animation-delay:378.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3789){-webkit-animation-delay:378.9s;animation-delay:378.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3790){-webkit-animation-delay:379s;animation-delay:379s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3791){-webkit-animation-delay:379.1s;animation-delay:379.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3792){-webkit-animation-delay:379.2s;animation-delay:379.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3793){-webkit-animation-delay:379.3s;animation-delay:379.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3794){-webkit-animation-delay:379.4s;animation-delay:379.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3795){-webkit-animation-delay:379.5s;animation-delay:379.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3796){-webkit-animation-delay:379.6s;animation-delay:379.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3797){-webkit-animation-delay:379.7s;animation-delay:379.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3798){-webkit-animation-delay:379.8s;animation-delay:379.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3799){-webkit-animation-delay:379.9s;animation-delay:379.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3800){-webkit-animation-delay:380s;animation-delay:380s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3801){-webkit-animation-delay:380.1s;animation-delay:380.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3802){-webkit-animation-delay:380.2s;animation-delay:380.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3803){-webkit-animation-delay:380.3s;animation-delay:380.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3804){-webkit-animation-delay:380.4s;animation-delay:380.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3805){-webkit-animation-delay:380.5s;animation-delay:380.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3806){-webkit-animation-delay:380.6s;animation-delay:380.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3807){-webkit-animation-delay:380.7s;animation-delay:380.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3808){-webkit-animation-delay:380.8s;animation-delay:380.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3809){-webkit-animation-delay:380.9s;animation-delay:380.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3810){-webkit-animation-delay:381s;animation-delay:381s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3811){-webkit-animation-delay:381.1s;animation-delay:381.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3812){-webkit-animation-delay:381.2s;animation-delay:381.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3813){-webkit-animation-delay:381.3s;animation-delay:381.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3814){-webkit-animation-delay:381.4s;animation-delay:381.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3815){-webkit-animation-delay:381.5s;animation-delay:381.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3816){-webkit-animation-delay:381.6s;animation-delay:381.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3817){-webkit-animation-delay:381.7s;animation-delay:381.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3818){-webkit-animation-delay:381.8s;animation-delay:381.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3819){-webkit-animation-delay:381.9s;animation-delay:381.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3820){-webkit-animation-delay:382s;animation-delay:382s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3821){-webkit-animation-delay:382.1s;animation-delay:382.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3822){-webkit-animation-delay:382.2s;animation-delay:382.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3823){-webkit-animation-delay:382.3s;animation-delay:382.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3824){-webkit-animation-delay:382.4s;animation-delay:382.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3825){-webkit-animation-delay:382.5s;animation-delay:382.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3826){-webkit-animation-delay:382.6s;animation-delay:382.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3827){-webkit-animation-delay:382.7s;animation-delay:382.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3828){-webkit-animation-delay:382.8s;animation-delay:382.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3829){-webkit-animation-delay:382.9s;animation-delay:382.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3830){-webkit-animation-delay:383s;animation-delay:383s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3831){-webkit-animation-delay:383.1s;animation-delay:383.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3832){-webkit-animation-delay:383.2s;animation-delay:383.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3833){-webkit-animation-delay:383.3s;animation-delay:383.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3834){-webkit-animation-delay:383.4s;animation-delay:383.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3835){-webkit-animation-delay:383.5s;animation-delay:383.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3836){-webkit-animation-delay:383.6s;animation-delay:383.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3837){-webkit-animation-delay:383.7s;animation-delay:383.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3838){-webkit-animation-delay:383.8s;animation-delay:383.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3839){-webkit-animation-delay:383.9s;animation-delay:383.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3840){-webkit-animation-delay:384s;animation-delay:384s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3841){-webkit-animation-delay:384.1s;animation-delay:384.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3842){-webkit-animation-delay:384.2s;animation-delay:384.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3843){-webkit-animation-delay:384.3s;animation-delay:384.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3844){-webkit-animation-delay:384.4s;animation-delay:384.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3845){-webkit-animation-delay:384.5s;animation-delay:384.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3846){-webkit-animation-delay:384.6s;animation-delay:384.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3847){-webkit-animation-delay:384.7s;animation-delay:384.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3848){-webkit-animation-delay:384.8s;animation-delay:384.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3849){-webkit-animation-delay:384.9s;animation-delay:384.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3850){-webkit-animation-delay:385s;animation-delay:385s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3851){-webkit-animation-delay:385.1s;animation-delay:385.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3852){-webkit-animation-delay:385.2s;animation-delay:385.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3853){-webkit-animation-delay:385.3s;animation-delay:385.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3854){-webkit-animation-delay:385.4s;animation-delay:385.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3855){-webkit-animation-delay:385.5s;animation-delay:385.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3856){-webkit-animation-delay:385.6s;animation-delay:385.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3857){-webkit-animation-delay:385.7s;animation-delay:385.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3858){-webkit-animation-delay:385.8s;animation-delay:385.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3859){-webkit-animation-delay:385.9s;animation-delay:385.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3860){-webkit-animation-delay:386s;animation-delay:386s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3861){-webkit-animation-delay:386.1s;animation-delay:386.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3862){-webkit-animation-delay:386.2s;animation-delay:386.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3863){-webkit-animation-delay:386.3s;animation-delay:386.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3864){-webkit-animation-delay:386.4s;animation-delay:386.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3865){-webkit-animation-delay:386.5s;animation-delay:386.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3866){-webkit-animation-delay:386.6s;animation-delay:386.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3867){-webkit-animation-delay:386.7s;animation-delay:386.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3868){-webkit-animation-delay:386.8s;animation-delay:386.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3869){-webkit-animation-delay:386.9s;animation-delay:386.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3870){-webkit-animation-delay:387s;animation-delay:387s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3871){-webkit-animation-delay:387.1s;animation-delay:387.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3872){-webkit-animation-delay:387.2s;animation-delay:387.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3873){-webkit-animation-delay:387.3s;animation-delay:387.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3874){-webkit-animation-delay:387.4s;animation-delay:387.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3875){-webkit-animation-delay:387.5s;animation-delay:387.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3876){-webkit-animation-delay:387.6s;animation-delay:387.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3877){-webkit-animation-delay:387.7s;animation-delay:387.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3878){-webkit-animation-delay:387.8s;animation-delay:387.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3879){-webkit-animation-delay:387.9s;animation-delay:387.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3880){-webkit-animation-delay:388s;animation-delay:388s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3881){-webkit-animation-delay:388.1s;animation-delay:388.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3882){-webkit-animation-delay:388.2s;animation-delay:388.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3883){-webkit-animation-delay:388.3s;animation-delay:388.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3884){-webkit-animation-delay:388.4s;animation-delay:388.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3885){-webkit-animation-delay:388.5s;animation-delay:388.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3886){-webkit-animation-delay:388.6s;animation-delay:388.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3887){-webkit-animation-delay:388.7s;animation-delay:388.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3888){-webkit-animation-delay:388.8s;animation-delay:388.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3889){-webkit-animation-delay:388.9s;animation-delay:388.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3890){-webkit-animation-delay:389s;animation-delay:389s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3891){-webkit-animation-delay:389.1s;animation-delay:389.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3892){-webkit-animation-delay:389.2s;animation-delay:389.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3893){-webkit-animation-delay:389.3s;animation-delay:389.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3894){-webkit-animation-delay:389.4s;animation-delay:389.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3895){-webkit-animation-delay:389.5s;animation-delay:389.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3896){-webkit-animation-delay:389.6s;animation-delay:389.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3897){-webkit-animation-delay:389.7s;animation-delay:389.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3898){-webkit-animation-delay:389.8s;animation-delay:389.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3899){-webkit-animation-delay:389.9s;animation-delay:389.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3900){-webkit-animation-delay:390s;animation-delay:390s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3901){-webkit-animation-delay:390.1s;animation-delay:390.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3902){-webkit-animation-delay:390.2s;animation-delay:390.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3903){-webkit-animation-delay:390.3s;animation-delay:390.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3904){-webkit-animation-delay:390.4s;animation-delay:390.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3905){-webkit-animation-delay:390.5s;animation-delay:390.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3906){-webkit-animation-delay:390.6s;animation-delay:390.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3907){-webkit-animation-delay:390.7s;animation-delay:390.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3908){-webkit-animation-delay:390.8s;animation-delay:390.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3909){-webkit-animation-delay:390.9s;animation-delay:390.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3910){-webkit-animation-delay:391s;animation-delay:391s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3911){-webkit-animation-delay:391.1s;animation-delay:391.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3912){-webkit-animation-delay:391.2s;animation-delay:391.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3913){-webkit-animation-delay:391.3s;animation-delay:391.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3914){-webkit-animation-delay:391.4s;animation-delay:391.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3915){-webkit-animation-delay:391.5s;animation-delay:391.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3916){-webkit-animation-delay:391.6s;animation-delay:391.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3917){-webkit-animation-delay:391.7s;animation-delay:391.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3918){-webkit-animation-delay:391.8s;animation-delay:391.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3919){-webkit-animation-delay:391.9s;animation-delay:391.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3920){-webkit-animation-delay:392s;animation-delay:392s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3921){-webkit-animation-delay:392.1s;animation-delay:392.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3922){-webkit-animation-delay:392.2s;animation-delay:392.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3923){-webkit-animation-delay:392.3s;animation-delay:392.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3924){-webkit-animation-delay:392.4s;animation-delay:392.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3925){-webkit-animation-delay:392.5s;animation-delay:392.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3926){-webkit-animation-delay:392.6s;animation-delay:392.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3927){-webkit-animation-delay:392.7s;animation-delay:392.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3928){-webkit-animation-delay:392.8s;animation-delay:392.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3929){-webkit-animation-delay:392.9s;animation-delay:392.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3930){-webkit-animation-delay:393s;animation-delay:393s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3931){-webkit-animation-delay:393.1s;animation-delay:393.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3932){-webkit-animation-delay:393.2s;animation-delay:393.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3933){-webkit-animation-delay:393.3s;animation-delay:393.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3934){-webkit-animation-delay:393.4s;animation-delay:393.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3935){-webkit-animation-delay:393.5s;animation-delay:393.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3936){-webkit-animation-delay:393.6s;animation-delay:393.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3937){-webkit-animation-delay:393.7s;animation-delay:393.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3938){-webkit-animation-delay:393.8s;animation-delay:393.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3939){-webkit-animation-delay:393.9s;animation-delay:393.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3940){-webkit-animation-delay:394s;animation-delay:394s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3941){-webkit-animation-delay:394.1s;animation-delay:394.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3942){-webkit-animation-delay:394.2s;animation-delay:394.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3943){-webkit-animation-delay:394.3s;animation-delay:394.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3944){-webkit-animation-delay:394.4s;animation-delay:394.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3945){-webkit-animation-delay:394.5s;animation-delay:394.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3946){-webkit-animation-delay:394.6s;animation-delay:394.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3947){-webkit-animation-delay:394.7s;animation-delay:394.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3948){-webkit-animation-delay:394.8s;animation-delay:394.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3949){-webkit-animation-delay:394.9s;animation-delay:394.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3950){-webkit-animation-delay:395s;animation-delay:395s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3951){-webkit-animation-delay:395.1s;animation-delay:395.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3952){-webkit-animation-delay:395.2s;animation-delay:395.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3953){-webkit-animation-delay:395.3s;animation-delay:395.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3954){-webkit-animation-delay:395.4s;animation-delay:395.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3955){-webkit-animation-delay:395.5s;animation-delay:395.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3956){-webkit-animation-delay:395.6s;animation-delay:395.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3957){-webkit-animation-delay:395.7s;animation-delay:395.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3958){-webkit-animation-delay:395.8s;animation-delay:395.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3959){-webkit-animation-delay:395.9s;animation-delay:395.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3960){-webkit-animation-delay:396s;animation-delay:396s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3961){-webkit-animation-delay:396.1s;animation-delay:396.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3962){-webkit-animation-delay:396.2s;animation-delay:396.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3963){-webkit-animation-delay:396.3s;animation-delay:396.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3964){-webkit-animation-delay:396.4s;animation-delay:396.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3965){-webkit-animation-delay:396.5s;animation-delay:396.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3966){-webkit-animation-delay:396.6s;animation-delay:396.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3967){-webkit-animation-delay:396.7s;animation-delay:396.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3968){-webkit-animation-delay:396.8s;animation-delay:396.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3969){-webkit-animation-delay:396.9s;animation-delay:396.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3970){-webkit-animation-delay:397s;animation-delay:397s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3971){-webkit-animation-delay:397.1s;animation-delay:397.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3972){-webkit-animation-delay:397.2s;animation-delay:397.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3973){-webkit-animation-delay:397.3s;animation-delay:397.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3974){-webkit-animation-delay:397.4s;animation-delay:397.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3975){-webkit-animation-delay:397.5s;animation-delay:397.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3976){-webkit-animation-delay:397.6s;animation-delay:397.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3977){-webkit-animation-delay:397.7s;animation-delay:397.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3978){-webkit-animation-delay:397.8s;animation-delay:397.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3979){-webkit-animation-delay:397.9s;animation-delay:397.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3980){-webkit-animation-delay:398s;animation-delay:398s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3981){-webkit-animation-delay:398.1s;animation-delay:398.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3982){-webkit-animation-delay:398.2s;animation-delay:398.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3983){-webkit-animation-delay:398.3s;animation-delay:398.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3984){-webkit-animation-delay:398.4s;animation-delay:398.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3985){-webkit-animation-delay:398.5s;animation-delay:398.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3986){-webkit-animation-delay:398.6s;animation-delay:398.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3987){-webkit-animation-delay:398.7s;animation-delay:398.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3988){-webkit-animation-delay:398.8s;animation-delay:398.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3989){-webkit-animation-delay:398.9s;animation-delay:398.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3990){-webkit-animation-delay:399s;animation-delay:399s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3991){-webkit-animation-delay:399.1s;animation-delay:399.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3992){-webkit-animation-delay:399.2s;animation-delay:399.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3993){-webkit-animation-delay:399.3s;animation-delay:399.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3994){-webkit-animation-delay:399.4s;animation-delay:399.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3995){-webkit-animation-delay:399.5s;animation-delay:399.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3996){-webkit-animation-delay:399.6s;animation-delay:399.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3997){-webkit-animation-delay:399.7s;animation-delay:399.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3998){-webkit-animation-delay:399.8s;animation-delay:399.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(3999){-webkit-animation-delay:399.9s;animation-delay:399.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4000){-webkit-animation-delay:400s;animation-delay:400s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4001){-webkit-animation-delay:400.1s;animation-delay:400.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4002){-webkit-animation-delay:400.2s;animation-delay:400.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4003){-webkit-animation-delay:400.3s;animation-delay:400.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4004){-webkit-animation-delay:400.4s;animation-delay:400.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4005){-webkit-animation-delay:400.5s;animation-delay:400.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4006){-webkit-animation-delay:400.6s;animation-delay:400.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4007){-webkit-animation-delay:400.7s;animation-delay:400.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4008){-webkit-animation-delay:400.8s;animation-delay:400.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4009){-webkit-animation-delay:400.9s;animation-delay:400.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4010){-webkit-animation-delay:401s;animation-delay:401s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4011){-webkit-animation-delay:401.1s;animation-delay:401.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4012){-webkit-animation-delay:401.2s;animation-delay:401.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4013){-webkit-animation-delay:401.3s;animation-delay:401.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4014){-webkit-animation-delay:401.4s;animation-delay:401.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4015){-webkit-animation-delay:401.5s;animation-delay:401.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4016){-webkit-animation-delay:401.6s;animation-delay:401.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4017){-webkit-animation-delay:401.7s;animation-delay:401.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4018){-webkit-animation-delay:401.8s;animation-delay:401.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4019){-webkit-animation-delay:401.9s;animation-delay:401.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4020){-webkit-animation-delay:402s;animation-delay:402s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4021){-webkit-animation-delay:402.1s;animation-delay:402.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4022){-webkit-animation-delay:402.2s;animation-delay:402.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4023){-webkit-animation-delay:402.3s;animation-delay:402.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4024){-webkit-animation-delay:402.4s;animation-delay:402.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4025){-webkit-animation-delay:402.5s;animation-delay:402.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4026){-webkit-animation-delay:402.6s;animation-delay:402.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4027){-webkit-animation-delay:402.7s;animation-delay:402.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4028){-webkit-animation-delay:402.8s;animation-delay:402.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4029){-webkit-animation-delay:402.9s;animation-delay:402.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4030){-webkit-animation-delay:403s;animation-delay:403s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4031){-webkit-animation-delay:403.1s;animation-delay:403.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4032){-webkit-animation-delay:403.2s;animation-delay:403.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4033){-webkit-animation-delay:403.3s;animation-delay:403.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4034){-webkit-animation-delay:403.4s;animation-delay:403.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4035){-webkit-animation-delay:403.5s;animation-delay:403.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4036){-webkit-animation-delay:403.6s;animation-delay:403.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4037){-webkit-animation-delay:403.7s;animation-delay:403.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4038){-webkit-animation-delay:403.8s;animation-delay:403.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4039){-webkit-animation-delay:403.9s;animation-delay:403.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4040){-webkit-animation-delay:404s;animation-delay:404s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4041){-webkit-animation-delay:404.1s;animation-delay:404.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4042){-webkit-animation-delay:404.2s;animation-delay:404.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4043){-webkit-animation-delay:404.3s;animation-delay:404.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4044){-webkit-animation-delay:404.4s;animation-delay:404.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4045){-webkit-animation-delay:404.5s;animation-delay:404.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4046){-webkit-animation-delay:404.6s;animation-delay:404.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4047){-webkit-animation-delay:404.7s;animation-delay:404.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4048){-webkit-animation-delay:404.8s;animation-delay:404.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4049){-webkit-animation-delay:404.9s;animation-delay:404.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4050){-webkit-animation-delay:405s;animation-delay:405s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4051){-webkit-animation-delay:405.1s;animation-delay:405.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4052){-webkit-animation-delay:405.2s;animation-delay:405.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4053){-webkit-animation-delay:405.3s;animation-delay:405.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4054){-webkit-animation-delay:405.4s;animation-delay:405.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4055){-webkit-animation-delay:405.5s;animation-delay:405.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4056){-webkit-animation-delay:405.6s;animation-delay:405.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4057){-webkit-animation-delay:405.7s;animation-delay:405.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4058){-webkit-animation-delay:405.8s;animation-delay:405.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4059){-webkit-animation-delay:405.9s;animation-delay:405.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4060){-webkit-animation-delay:406s;animation-delay:406s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4061){-webkit-animation-delay:406.1s;animation-delay:406.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4062){-webkit-animation-delay:406.2s;animation-delay:406.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4063){-webkit-animation-delay:406.3s;animation-delay:406.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4064){-webkit-animation-delay:406.4s;animation-delay:406.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4065){-webkit-animation-delay:406.5s;animation-delay:406.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4066){-webkit-animation-delay:406.6s;animation-delay:406.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4067){-webkit-animation-delay:406.7s;animation-delay:406.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4068){-webkit-animation-delay:406.8s;animation-delay:406.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4069){-webkit-animation-delay:406.9s;animation-delay:406.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4070){-webkit-animation-delay:407s;animation-delay:407s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4071){-webkit-animation-delay:407.1s;animation-delay:407.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4072){-webkit-animation-delay:407.2s;animation-delay:407.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4073){-webkit-animation-delay:407.3s;animation-delay:407.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4074){-webkit-animation-delay:407.4s;animation-delay:407.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4075){-webkit-animation-delay:407.5s;animation-delay:407.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4076){-webkit-animation-delay:407.6s;animation-delay:407.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4077){-webkit-animation-delay:407.7s;animation-delay:407.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4078){-webkit-animation-delay:407.8s;animation-delay:407.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4079){-webkit-animation-delay:407.9s;animation-delay:407.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4080){-webkit-animation-delay:408s;animation-delay:408s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4081){-webkit-animation-delay:408.1s;animation-delay:408.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4082){-webkit-animation-delay:408.2s;animation-delay:408.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4083){-webkit-animation-delay:408.3s;animation-delay:408.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4084){-webkit-animation-delay:408.4s;animation-delay:408.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4085){-webkit-animation-delay:408.5s;animation-delay:408.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4086){-webkit-animation-delay:408.6s;animation-delay:408.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4087){-webkit-animation-delay:408.7s;animation-delay:408.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4088){-webkit-animation-delay:408.8s;animation-delay:408.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4089){-webkit-animation-delay:408.9s;animation-delay:408.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4090){-webkit-animation-delay:409s;animation-delay:409s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4091){-webkit-animation-delay:409.1s;animation-delay:409.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4092){-webkit-animation-delay:409.2s;animation-delay:409.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4093){-webkit-animation-delay:409.3s;animation-delay:409.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4094){-webkit-animation-delay:409.4s;animation-delay:409.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4095){-webkit-animation-delay:409.5s;animation-delay:409.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4096){-webkit-animation-delay:409.6s;animation-delay:409.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4097){-webkit-animation-delay:409.7s;animation-delay:409.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4098){-webkit-animation-delay:409.8s;animation-delay:409.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4099){-webkit-animation-delay:409.9s;animation-delay:409.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4100){-webkit-animation-delay:410s;animation-delay:410s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4101){-webkit-animation-delay:410.1s;animation-delay:410.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4102){-webkit-animation-delay:410.2s;animation-delay:410.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4103){-webkit-animation-delay:410.3s;animation-delay:410.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4104){-webkit-animation-delay:410.4s;animation-delay:410.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4105){-webkit-animation-delay:410.5s;animation-delay:410.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4106){-webkit-animation-delay:410.6s;animation-delay:410.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4107){-webkit-animation-delay:410.7s;animation-delay:410.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4108){-webkit-animation-delay:410.8s;animation-delay:410.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4109){-webkit-animation-delay:410.9s;animation-delay:410.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4110){-webkit-animation-delay:411s;animation-delay:411s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4111){-webkit-animation-delay:411.1s;animation-delay:411.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4112){-webkit-animation-delay:411.2s;animation-delay:411.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4113){-webkit-animation-delay:411.3s;animation-delay:411.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4114){-webkit-animation-delay:411.4s;animation-delay:411.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4115){-webkit-animation-delay:411.5s;animation-delay:411.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4116){-webkit-animation-delay:411.6s;animation-delay:411.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4117){-webkit-animation-delay:411.7s;animation-delay:411.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4118){-webkit-animation-delay:411.8s;animation-delay:411.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4119){-webkit-animation-delay:411.9s;animation-delay:411.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4120){-webkit-animation-delay:412s;animation-delay:412s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4121){-webkit-animation-delay:412.1s;animation-delay:412.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4122){-webkit-animation-delay:412.2s;animation-delay:412.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4123){-webkit-animation-delay:412.3s;animation-delay:412.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4124){-webkit-animation-delay:412.4s;animation-delay:412.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4125){-webkit-animation-delay:412.5s;animation-delay:412.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4126){-webkit-animation-delay:412.6s;animation-delay:412.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4127){-webkit-animation-delay:412.7s;animation-delay:412.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4128){-webkit-animation-delay:412.8s;animation-delay:412.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4129){-webkit-animation-delay:412.9s;animation-delay:412.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4130){-webkit-animation-delay:413s;animation-delay:413s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4131){-webkit-animation-delay:413.1s;animation-delay:413.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4132){-webkit-animation-delay:413.2s;animation-delay:413.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4133){-webkit-animation-delay:413.3s;animation-delay:413.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4134){-webkit-animation-delay:413.4s;animation-delay:413.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4135){-webkit-animation-delay:413.5s;animation-delay:413.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4136){-webkit-animation-delay:413.6s;animation-delay:413.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4137){-webkit-animation-delay:413.7s;animation-delay:413.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4138){-webkit-animation-delay:413.8s;animation-delay:413.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4139){-webkit-animation-delay:413.9s;animation-delay:413.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4140){-webkit-animation-delay:414s;animation-delay:414s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4141){-webkit-animation-delay:414.1s;animation-delay:414.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4142){-webkit-animation-delay:414.2s;animation-delay:414.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4143){-webkit-animation-delay:414.3s;animation-delay:414.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4144){-webkit-animation-delay:414.4s;animation-delay:414.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4145){-webkit-animation-delay:414.5s;animation-delay:414.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4146){-webkit-animation-delay:414.6s;animation-delay:414.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4147){-webkit-animation-delay:414.7s;animation-delay:414.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4148){-webkit-animation-delay:414.8s;animation-delay:414.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4149){-webkit-animation-delay:414.9s;animation-delay:414.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4150){-webkit-animation-delay:415s;animation-delay:415s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4151){-webkit-animation-delay:415.1s;animation-delay:415.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4152){-webkit-animation-delay:415.2s;animation-delay:415.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4153){-webkit-animation-delay:415.3s;animation-delay:415.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4154){-webkit-animation-delay:415.4s;animation-delay:415.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4155){-webkit-animation-delay:415.5s;animation-delay:415.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4156){-webkit-animation-delay:415.6s;animation-delay:415.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4157){-webkit-animation-delay:415.7s;animation-delay:415.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4158){-webkit-animation-delay:415.8s;animation-delay:415.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4159){-webkit-animation-delay:415.9s;animation-delay:415.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4160){-webkit-animation-delay:416s;animation-delay:416s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4161){-webkit-animation-delay:416.1s;animation-delay:416.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4162){-webkit-animation-delay:416.2s;animation-delay:416.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4163){-webkit-animation-delay:416.3s;animation-delay:416.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4164){-webkit-animation-delay:416.4s;animation-delay:416.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4165){-webkit-animation-delay:416.5s;animation-delay:416.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4166){-webkit-animation-delay:416.6s;animation-delay:416.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4167){-webkit-animation-delay:416.7s;animation-delay:416.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4168){-webkit-animation-delay:416.8s;animation-delay:416.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4169){-webkit-animation-delay:416.9s;animation-delay:416.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4170){-webkit-animation-delay:417s;animation-delay:417s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4171){-webkit-animation-delay:417.1s;animation-delay:417.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4172){-webkit-animation-delay:417.2s;animation-delay:417.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4173){-webkit-animation-delay:417.3s;animation-delay:417.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4174){-webkit-animation-delay:417.4s;animation-delay:417.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4175){-webkit-animation-delay:417.5s;animation-delay:417.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4176){-webkit-animation-delay:417.6s;animation-delay:417.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4177){-webkit-animation-delay:417.7s;animation-delay:417.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4178){-webkit-animation-delay:417.8s;animation-delay:417.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4179){-webkit-animation-delay:417.9s;animation-delay:417.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4180){-webkit-animation-delay:418s;animation-delay:418s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4181){-webkit-animation-delay:418.1s;animation-delay:418.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4182){-webkit-animation-delay:418.2s;animation-delay:418.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4183){-webkit-animation-delay:418.3s;animation-delay:418.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4184){-webkit-animation-delay:418.4s;animation-delay:418.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4185){-webkit-animation-delay:418.5s;animation-delay:418.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4186){-webkit-animation-delay:418.6s;animation-delay:418.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4187){-webkit-animation-delay:418.7s;animation-delay:418.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4188){-webkit-animation-delay:418.8s;animation-delay:418.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4189){-webkit-animation-delay:418.9s;animation-delay:418.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4190){-webkit-animation-delay:419s;animation-delay:419s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4191){-webkit-animation-delay:419.1s;animation-delay:419.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4192){-webkit-animation-delay:419.2s;animation-delay:419.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4193){-webkit-animation-delay:419.3s;animation-delay:419.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4194){-webkit-animation-delay:419.4s;animation-delay:419.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4195){-webkit-animation-delay:419.5s;animation-delay:419.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4196){-webkit-animation-delay:419.6s;animation-delay:419.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4197){-webkit-animation-delay:419.7s;animation-delay:419.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4198){-webkit-animation-delay:419.8s;animation-delay:419.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4199){-webkit-animation-delay:419.9s;animation-delay:419.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4200){-webkit-animation-delay:420s;animation-delay:420s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4201){-webkit-animation-delay:420.1s;animation-delay:420.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4202){-webkit-animation-delay:420.2s;animation-delay:420.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4203){-webkit-animation-delay:420.3s;animation-delay:420.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4204){-webkit-animation-delay:420.4s;animation-delay:420.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4205){-webkit-animation-delay:420.5s;animation-delay:420.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4206){-webkit-animation-delay:420.6s;animation-delay:420.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4207){-webkit-animation-delay:420.7s;animation-delay:420.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4208){-webkit-animation-delay:420.8s;animation-delay:420.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4209){-webkit-animation-delay:420.9s;animation-delay:420.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4210){-webkit-animation-delay:421s;animation-delay:421s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4211){-webkit-animation-delay:421.1s;animation-delay:421.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4212){-webkit-animation-delay:421.2s;animation-delay:421.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4213){-webkit-animation-delay:421.3s;animation-delay:421.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4214){-webkit-animation-delay:421.4s;animation-delay:421.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4215){-webkit-animation-delay:421.5s;animation-delay:421.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4216){-webkit-animation-delay:421.6s;animation-delay:421.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4217){-webkit-animation-delay:421.7s;animation-delay:421.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4218){-webkit-animation-delay:421.8s;animation-delay:421.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4219){-webkit-animation-delay:421.9s;animation-delay:421.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4220){-webkit-animation-delay:422s;animation-delay:422s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4221){-webkit-animation-delay:422.1s;animation-delay:422.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4222){-webkit-animation-delay:422.2s;animation-delay:422.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4223){-webkit-animation-delay:422.3s;animation-delay:422.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4224){-webkit-animation-delay:422.4s;animation-delay:422.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4225){-webkit-animation-delay:422.5s;animation-delay:422.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4226){-webkit-animation-delay:422.6s;animation-delay:422.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4227){-webkit-animation-delay:422.7s;animation-delay:422.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4228){-webkit-animation-delay:422.8s;animation-delay:422.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4229){-webkit-animation-delay:422.9s;animation-delay:422.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4230){-webkit-animation-delay:423s;animation-delay:423s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4231){-webkit-animation-delay:423.1s;animation-delay:423.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4232){-webkit-animation-delay:423.2s;animation-delay:423.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4233){-webkit-animation-delay:423.3s;animation-delay:423.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4234){-webkit-animation-delay:423.4s;animation-delay:423.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4235){-webkit-animation-delay:423.5s;animation-delay:423.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4236){-webkit-animation-delay:423.6s;animation-delay:423.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4237){-webkit-animation-delay:423.7s;animation-delay:423.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4238){-webkit-animation-delay:423.8s;animation-delay:423.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4239){-webkit-animation-delay:423.9s;animation-delay:423.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4240){-webkit-animation-delay:424s;animation-delay:424s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4241){-webkit-animation-delay:424.1s;animation-delay:424.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4242){-webkit-animation-delay:424.2s;animation-delay:424.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4243){-webkit-animation-delay:424.3s;animation-delay:424.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4244){-webkit-animation-delay:424.4s;animation-delay:424.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4245){-webkit-animation-delay:424.5s;animation-delay:424.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4246){-webkit-animation-delay:424.6s;animation-delay:424.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4247){-webkit-animation-delay:424.7s;animation-delay:424.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4248){-webkit-animation-delay:424.8s;animation-delay:424.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4249){-webkit-animation-delay:424.9s;animation-delay:424.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4250){-webkit-animation-delay:425s;animation-delay:425s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4251){-webkit-animation-delay:425.1s;animation-delay:425.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4252){-webkit-animation-delay:425.2s;animation-delay:425.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4253){-webkit-animation-delay:425.3s;animation-delay:425.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4254){-webkit-animation-delay:425.4s;animation-delay:425.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4255){-webkit-animation-delay:425.5s;animation-delay:425.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4256){-webkit-animation-delay:425.6s;animation-delay:425.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4257){-webkit-animation-delay:425.7s;animation-delay:425.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4258){-webkit-animation-delay:425.8s;animation-delay:425.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4259){-webkit-animation-delay:425.9s;animation-delay:425.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4260){-webkit-animation-delay:426s;animation-delay:426s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4261){-webkit-animation-delay:426.1s;animation-delay:426.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4262){-webkit-animation-delay:426.2s;animation-delay:426.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4263){-webkit-animation-delay:426.3s;animation-delay:426.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4264){-webkit-animation-delay:426.4s;animation-delay:426.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4265){-webkit-animation-delay:426.5s;animation-delay:426.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4266){-webkit-animation-delay:426.6s;animation-delay:426.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4267){-webkit-animation-delay:426.7s;animation-delay:426.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4268){-webkit-animation-delay:426.8s;animation-delay:426.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4269){-webkit-animation-delay:426.9s;animation-delay:426.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4270){-webkit-animation-delay:427s;animation-delay:427s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4271){-webkit-animation-delay:427.1s;animation-delay:427.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4272){-webkit-animation-delay:427.2s;animation-delay:427.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4273){-webkit-animation-delay:427.3s;animation-delay:427.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4274){-webkit-animation-delay:427.4s;animation-delay:427.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4275){-webkit-animation-delay:427.5s;animation-delay:427.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4276){-webkit-animation-delay:427.6s;animation-delay:427.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4277){-webkit-animation-delay:427.7s;animation-delay:427.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4278){-webkit-animation-delay:427.8s;animation-delay:427.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4279){-webkit-animation-delay:427.9s;animation-delay:427.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4280){-webkit-animation-delay:428s;animation-delay:428s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4281){-webkit-animation-delay:428.1s;animation-delay:428.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4282){-webkit-animation-delay:428.2s;animation-delay:428.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4283){-webkit-animation-delay:428.3s;animation-delay:428.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4284){-webkit-animation-delay:428.4s;animation-delay:428.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4285){-webkit-animation-delay:428.5s;animation-delay:428.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4286){-webkit-animation-delay:428.6s;animation-delay:428.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4287){-webkit-animation-delay:428.7s;animation-delay:428.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4288){-webkit-animation-delay:428.8s;animation-delay:428.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4289){-webkit-animation-delay:428.9s;animation-delay:428.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4290){-webkit-animation-delay:429s;animation-delay:429s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4291){-webkit-animation-delay:429.1s;animation-delay:429.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4292){-webkit-animation-delay:429.2s;animation-delay:429.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4293){-webkit-animation-delay:429.3s;animation-delay:429.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4294){-webkit-animation-delay:429.4s;animation-delay:429.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4295){-webkit-animation-delay:429.5s;animation-delay:429.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4296){-webkit-animation-delay:429.6s;animation-delay:429.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4297){-webkit-animation-delay:429.7s;animation-delay:429.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4298){-webkit-animation-delay:429.8s;animation-delay:429.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4299){-webkit-animation-delay:429.9s;animation-delay:429.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4300){-webkit-animation-delay:430s;animation-delay:430s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4301){-webkit-animation-delay:430.1s;animation-delay:430.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4302){-webkit-animation-delay:430.2s;animation-delay:430.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4303){-webkit-animation-delay:430.3s;animation-delay:430.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4304){-webkit-animation-delay:430.4s;animation-delay:430.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4305){-webkit-animation-delay:430.5s;animation-delay:430.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4306){-webkit-animation-delay:430.6s;animation-delay:430.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4307){-webkit-animation-delay:430.7s;animation-delay:430.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4308){-webkit-animation-delay:430.8s;animation-delay:430.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4309){-webkit-animation-delay:430.9s;animation-delay:430.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4310){-webkit-animation-delay:431s;animation-delay:431s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4311){-webkit-animation-delay:431.1s;animation-delay:431.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4312){-webkit-animation-delay:431.2s;animation-delay:431.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4313){-webkit-animation-delay:431.3s;animation-delay:431.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4314){-webkit-animation-delay:431.4s;animation-delay:431.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4315){-webkit-animation-delay:431.5s;animation-delay:431.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4316){-webkit-animation-delay:431.6s;animation-delay:431.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4317){-webkit-animation-delay:431.7s;animation-delay:431.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4318){-webkit-animation-delay:431.8s;animation-delay:431.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4319){-webkit-animation-delay:431.9s;animation-delay:431.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4320){-webkit-animation-delay:432s;animation-delay:432s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4321){-webkit-animation-delay:432.1s;animation-delay:432.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4322){-webkit-animation-delay:432.2s;animation-delay:432.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4323){-webkit-animation-delay:432.3s;animation-delay:432.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4324){-webkit-animation-delay:432.4s;animation-delay:432.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4325){-webkit-animation-delay:432.5s;animation-delay:432.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4326){-webkit-animation-delay:432.6s;animation-delay:432.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4327){-webkit-animation-delay:432.7s;animation-delay:432.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4328){-webkit-animation-delay:432.8s;animation-delay:432.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4329){-webkit-animation-delay:432.9s;animation-delay:432.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4330){-webkit-animation-delay:433s;animation-delay:433s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4331){-webkit-animation-delay:433.1s;animation-delay:433.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4332){-webkit-animation-delay:433.2s;animation-delay:433.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4333){-webkit-animation-delay:433.3s;animation-delay:433.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4334){-webkit-animation-delay:433.4s;animation-delay:433.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4335){-webkit-animation-delay:433.5s;animation-delay:433.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4336){-webkit-animation-delay:433.6s;animation-delay:433.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4337){-webkit-animation-delay:433.7s;animation-delay:433.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4338){-webkit-animation-delay:433.8s;animation-delay:433.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4339){-webkit-animation-delay:433.9s;animation-delay:433.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4340){-webkit-animation-delay:434s;animation-delay:434s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4341){-webkit-animation-delay:434.1s;animation-delay:434.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4342){-webkit-animation-delay:434.2s;animation-delay:434.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4343){-webkit-animation-delay:434.3s;animation-delay:434.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4344){-webkit-animation-delay:434.4s;animation-delay:434.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4345){-webkit-animation-delay:434.5s;animation-delay:434.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4346){-webkit-animation-delay:434.6s;animation-delay:434.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4347){-webkit-animation-delay:434.7s;animation-delay:434.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4348){-webkit-animation-delay:434.8s;animation-delay:434.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4349){-webkit-animation-delay:434.9s;animation-delay:434.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4350){-webkit-animation-delay:435s;animation-delay:435s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4351){-webkit-animation-delay:435.1s;animation-delay:435.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4352){-webkit-animation-delay:435.2s;animation-delay:435.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4353){-webkit-animation-delay:435.3s;animation-delay:435.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4354){-webkit-animation-delay:435.4s;animation-delay:435.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4355){-webkit-animation-delay:435.5s;animation-delay:435.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4356){-webkit-animation-delay:435.6s;animation-delay:435.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4357){-webkit-animation-delay:435.7s;animation-delay:435.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4358){-webkit-animation-delay:435.8s;animation-delay:435.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4359){-webkit-animation-delay:435.9s;animation-delay:435.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4360){-webkit-animation-delay:436s;animation-delay:436s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4361){-webkit-animation-delay:436.1s;animation-delay:436.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4362){-webkit-animation-delay:436.2s;animation-delay:436.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4363){-webkit-animation-delay:436.3s;animation-delay:436.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4364){-webkit-animation-delay:436.4s;animation-delay:436.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4365){-webkit-animation-delay:436.5s;animation-delay:436.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4366){-webkit-animation-delay:436.6s;animation-delay:436.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4367){-webkit-animation-delay:436.7s;animation-delay:436.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4368){-webkit-animation-delay:436.8s;animation-delay:436.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4369){-webkit-animation-delay:436.9s;animation-delay:436.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4370){-webkit-animation-delay:437s;animation-delay:437s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4371){-webkit-animation-delay:437.1s;animation-delay:437.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4372){-webkit-animation-delay:437.2s;animation-delay:437.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4373){-webkit-animation-delay:437.3s;animation-delay:437.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4374){-webkit-animation-delay:437.4s;animation-delay:437.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4375){-webkit-animation-delay:437.5s;animation-delay:437.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4376){-webkit-animation-delay:437.6s;animation-delay:437.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4377){-webkit-animation-delay:437.7s;animation-delay:437.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4378){-webkit-animation-delay:437.8s;animation-delay:437.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4379){-webkit-animation-delay:437.9s;animation-delay:437.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4380){-webkit-animation-delay:438s;animation-delay:438s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4381){-webkit-animation-delay:438.1s;animation-delay:438.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4382){-webkit-animation-delay:438.2s;animation-delay:438.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4383){-webkit-animation-delay:438.3s;animation-delay:438.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4384){-webkit-animation-delay:438.4s;animation-delay:438.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4385){-webkit-animation-delay:438.5s;animation-delay:438.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4386){-webkit-animation-delay:438.6s;animation-delay:438.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4387){-webkit-animation-delay:438.7s;animation-delay:438.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4388){-webkit-animation-delay:438.8s;animation-delay:438.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4389){-webkit-animation-delay:438.9s;animation-delay:438.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4390){-webkit-animation-delay:439s;animation-delay:439s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4391){-webkit-animation-delay:439.1s;animation-delay:439.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4392){-webkit-animation-delay:439.2s;animation-delay:439.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4393){-webkit-animation-delay:439.3s;animation-delay:439.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4394){-webkit-animation-delay:439.4s;animation-delay:439.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4395){-webkit-animation-delay:439.5s;animation-delay:439.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4396){-webkit-animation-delay:439.6s;animation-delay:439.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4397){-webkit-animation-delay:439.7s;animation-delay:439.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4398){-webkit-animation-delay:439.8s;animation-delay:439.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4399){-webkit-animation-delay:439.9s;animation-delay:439.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4400){-webkit-animation-delay:440s;animation-delay:440s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4401){-webkit-animation-delay:440.1s;animation-delay:440.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4402){-webkit-animation-delay:440.2s;animation-delay:440.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4403){-webkit-animation-delay:440.3s;animation-delay:440.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4404){-webkit-animation-delay:440.4s;animation-delay:440.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4405){-webkit-animation-delay:440.5s;animation-delay:440.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4406){-webkit-animation-delay:440.6s;animation-delay:440.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4407){-webkit-animation-delay:440.7s;animation-delay:440.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4408){-webkit-animation-delay:440.8s;animation-delay:440.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4409){-webkit-animation-delay:440.9s;animation-delay:440.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4410){-webkit-animation-delay:441s;animation-delay:441s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4411){-webkit-animation-delay:441.1s;animation-delay:441.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4412){-webkit-animation-delay:441.2s;animation-delay:441.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4413){-webkit-animation-delay:441.3s;animation-delay:441.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4414){-webkit-animation-delay:441.4s;animation-delay:441.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4415){-webkit-animation-delay:441.5s;animation-delay:441.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4416){-webkit-animation-delay:441.6s;animation-delay:441.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4417){-webkit-animation-delay:441.7s;animation-delay:441.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4418){-webkit-animation-delay:441.8s;animation-delay:441.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4419){-webkit-animation-delay:441.9s;animation-delay:441.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4420){-webkit-animation-delay:442s;animation-delay:442s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4421){-webkit-animation-delay:442.1s;animation-delay:442.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4422){-webkit-animation-delay:442.2s;animation-delay:442.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4423){-webkit-animation-delay:442.3s;animation-delay:442.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4424){-webkit-animation-delay:442.4s;animation-delay:442.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4425){-webkit-animation-delay:442.5s;animation-delay:442.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4426){-webkit-animation-delay:442.6s;animation-delay:442.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4427){-webkit-animation-delay:442.7s;animation-delay:442.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4428){-webkit-animation-delay:442.8s;animation-delay:442.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4429){-webkit-animation-delay:442.9s;animation-delay:442.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4430){-webkit-animation-delay:443s;animation-delay:443s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4431){-webkit-animation-delay:443.1s;animation-delay:443.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4432){-webkit-animation-delay:443.2s;animation-delay:443.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4433){-webkit-animation-delay:443.3s;animation-delay:443.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4434){-webkit-animation-delay:443.4s;animation-delay:443.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4435){-webkit-animation-delay:443.5s;animation-delay:443.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4436){-webkit-animation-delay:443.6s;animation-delay:443.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4437){-webkit-animation-delay:443.7s;animation-delay:443.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4438){-webkit-animation-delay:443.8s;animation-delay:443.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4439){-webkit-animation-delay:443.9s;animation-delay:443.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4440){-webkit-animation-delay:444s;animation-delay:444s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4441){-webkit-animation-delay:444.1s;animation-delay:444.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4442){-webkit-animation-delay:444.2s;animation-delay:444.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4443){-webkit-animation-delay:444.3s;animation-delay:444.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4444){-webkit-animation-delay:444.4s;animation-delay:444.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4445){-webkit-animation-delay:444.5s;animation-delay:444.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4446){-webkit-animation-delay:444.6s;animation-delay:444.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4447){-webkit-animation-delay:444.7s;animation-delay:444.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4448){-webkit-animation-delay:444.8s;animation-delay:444.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4449){-webkit-animation-delay:444.9s;animation-delay:444.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4450){-webkit-animation-delay:445s;animation-delay:445s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4451){-webkit-animation-delay:445.1s;animation-delay:445.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4452){-webkit-animation-delay:445.2s;animation-delay:445.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4453){-webkit-animation-delay:445.3s;animation-delay:445.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4454){-webkit-animation-delay:445.4s;animation-delay:445.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4455){-webkit-animation-delay:445.5s;animation-delay:445.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4456){-webkit-animation-delay:445.6s;animation-delay:445.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4457){-webkit-animation-delay:445.7s;animation-delay:445.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4458){-webkit-animation-delay:445.8s;animation-delay:445.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4459){-webkit-animation-delay:445.9s;animation-delay:445.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4460){-webkit-animation-delay:446s;animation-delay:446s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4461){-webkit-animation-delay:446.1s;animation-delay:446.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4462){-webkit-animation-delay:446.2s;animation-delay:446.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4463){-webkit-animation-delay:446.3s;animation-delay:446.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4464){-webkit-animation-delay:446.4s;animation-delay:446.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4465){-webkit-animation-delay:446.5s;animation-delay:446.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4466){-webkit-animation-delay:446.6s;animation-delay:446.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4467){-webkit-animation-delay:446.7s;animation-delay:446.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4468){-webkit-animation-delay:446.8s;animation-delay:446.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4469){-webkit-animation-delay:446.9s;animation-delay:446.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4470){-webkit-animation-delay:447s;animation-delay:447s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4471){-webkit-animation-delay:447.1s;animation-delay:447.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4472){-webkit-animation-delay:447.2s;animation-delay:447.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4473){-webkit-animation-delay:447.3s;animation-delay:447.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4474){-webkit-animation-delay:447.4s;animation-delay:447.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4475){-webkit-animation-delay:447.5s;animation-delay:447.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4476){-webkit-animation-delay:447.6s;animation-delay:447.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4477){-webkit-animation-delay:447.7s;animation-delay:447.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4478){-webkit-animation-delay:447.8s;animation-delay:447.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4479){-webkit-animation-delay:447.9s;animation-delay:447.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4480){-webkit-animation-delay:448s;animation-delay:448s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4481){-webkit-animation-delay:448.1s;animation-delay:448.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4482){-webkit-animation-delay:448.2s;animation-delay:448.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4483){-webkit-animation-delay:448.3s;animation-delay:448.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4484){-webkit-animation-delay:448.4s;animation-delay:448.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4485){-webkit-animation-delay:448.5s;animation-delay:448.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4486){-webkit-animation-delay:448.6s;animation-delay:448.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4487){-webkit-animation-delay:448.7s;animation-delay:448.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4488){-webkit-animation-delay:448.8s;animation-delay:448.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4489){-webkit-animation-delay:448.9s;animation-delay:448.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4490){-webkit-animation-delay:449s;animation-delay:449s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4491){-webkit-animation-delay:449.1s;animation-delay:449.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4492){-webkit-animation-delay:449.2s;animation-delay:449.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4493){-webkit-animation-delay:449.3s;animation-delay:449.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4494){-webkit-animation-delay:449.4s;animation-delay:449.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4495){-webkit-animation-delay:449.5s;animation-delay:449.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4496){-webkit-animation-delay:449.6s;animation-delay:449.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4497){-webkit-animation-delay:449.7s;animation-delay:449.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4498){-webkit-animation-delay:449.8s;animation-delay:449.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4499){-webkit-animation-delay:449.9s;animation-delay:449.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4500){-webkit-animation-delay:450s;animation-delay:450s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4501){-webkit-animation-delay:450.1s;animation-delay:450.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4502){-webkit-animation-delay:450.2s;animation-delay:450.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4503){-webkit-animation-delay:450.3s;animation-delay:450.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4504){-webkit-animation-delay:450.4s;animation-delay:450.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4505){-webkit-animation-delay:450.5s;animation-delay:450.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4506){-webkit-animation-delay:450.6s;animation-delay:450.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4507){-webkit-animation-delay:450.7s;animation-delay:450.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4508){-webkit-animation-delay:450.8s;animation-delay:450.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4509){-webkit-animation-delay:450.9s;animation-delay:450.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4510){-webkit-animation-delay:451s;animation-delay:451s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4511){-webkit-animation-delay:451.1s;animation-delay:451.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4512){-webkit-animation-delay:451.2s;animation-delay:451.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4513){-webkit-animation-delay:451.3s;animation-delay:451.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4514){-webkit-animation-delay:451.4s;animation-delay:451.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4515){-webkit-animation-delay:451.5s;animation-delay:451.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4516){-webkit-animation-delay:451.6s;animation-delay:451.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4517){-webkit-animation-delay:451.7s;animation-delay:451.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4518){-webkit-animation-delay:451.8s;animation-delay:451.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4519){-webkit-animation-delay:451.9s;animation-delay:451.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4520){-webkit-animation-delay:452s;animation-delay:452s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4521){-webkit-animation-delay:452.1s;animation-delay:452.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4522){-webkit-animation-delay:452.2s;animation-delay:452.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4523){-webkit-animation-delay:452.3s;animation-delay:452.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4524){-webkit-animation-delay:452.4s;animation-delay:452.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4525){-webkit-animation-delay:452.5s;animation-delay:452.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4526){-webkit-animation-delay:452.6s;animation-delay:452.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4527){-webkit-animation-delay:452.7s;animation-delay:452.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4528){-webkit-animation-delay:452.8s;animation-delay:452.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4529){-webkit-animation-delay:452.9s;animation-delay:452.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4530){-webkit-animation-delay:453s;animation-delay:453s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4531){-webkit-animation-delay:453.1s;animation-delay:453.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4532){-webkit-animation-delay:453.2s;animation-delay:453.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4533){-webkit-animation-delay:453.3s;animation-delay:453.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4534){-webkit-animation-delay:453.4s;animation-delay:453.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4535){-webkit-animation-delay:453.5s;animation-delay:453.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4536){-webkit-animation-delay:453.6s;animation-delay:453.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4537){-webkit-animation-delay:453.7s;animation-delay:453.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4538){-webkit-animation-delay:453.8s;animation-delay:453.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4539){-webkit-animation-delay:453.9s;animation-delay:453.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4540){-webkit-animation-delay:454s;animation-delay:454s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4541){-webkit-animation-delay:454.1s;animation-delay:454.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4542){-webkit-animation-delay:454.2s;animation-delay:454.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4543){-webkit-animation-delay:454.3s;animation-delay:454.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4544){-webkit-animation-delay:454.4s;animation-delay:454.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4545){-webkit-animation-delay:454.5s;animation-delay:454.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4546){-webkit-animation-delay:454.6s;animation-delay:454.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4547){-webkit-animation-delay:454.7s;animation-delay:454.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4548){-webkit-animation-delay:454.8s;animation-delay:454.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4549){-webkit-animation-delay:454.9s;animation-delay:454.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4550){-webkit-animation-delay:455s;animation-delay:455s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4551){-webkit-animation-delay:455.1s;animation-delay:455.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4552){-webkit-animation-delay:455.2s;animation-delay:455.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4553){-webkit-animation-delay:455.3s;animation-delay:455.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4554){-webkit-animation-delay:455.4s;animation-delay:455.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4555){-webkit-animation-delay:455.5s;animation-delay:455.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4556){-webkit-animation-delay:455.6s;animation-delay:455.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4557){-webkit-animation-delay:455.7s;animation-delay:455.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4558){-webkit-animation-delay:455.8s;animation-delay:455.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4559){-webkit-animation-delay:455.9s;animation-delay:455.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4560){-webkit-animation-delay:456s;animation-delay:456s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4561){-webkit-animation-delay:456.1s;animation-delay:456.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4562){-webkit-animation-delay:456.2s;animation-delay:456.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4563){-webkit-animation-delay:456.3s;animation-delay:456.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4564){-webkit-animation-delay:456.4s;animation-delay:456.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4565){-webkit-animation-delay:456.5s;animation-delay:456.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4566){-webkit-animation-delay:456.6s;animation-delay:456.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4567){-webkit-animation-delay:456.7s;animation-delay:456.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4568){-webkit-animation-delay:456.8s;animation-delay:456.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4569){-webkit-animation-delay:456.9s;animation-delay:456.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4570){-webkit-animation-delay:457s;animation-delay:457s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4571){-webkit-animation-delay:457.1s;animation-delay:457.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4572){-webkit-animation-delay:457.2s;animation-delay:457.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4573){-webkit-animation-delay:457.3s;animation-delay:457.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4574){-webkit-animation-delay:457.4s;animation-delay:457.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4575){-webkit-animation-delay:457.5s;animation-delay:457.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4576){-webkit-animation-delay:457.6s;animation-delay:457.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4577){-webkit-animation-delay:457.7s;animation-delay:457.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4578){-webkit-animation-delay:457.8s;animation-delay:457.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4579){-webkit-animation-delay:457.9s;animation-delay:457.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4580){-webkit-animation-delay:458s;animation-delay:458s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4581){-webkit-animation-delay:458.1s;animation-delay:458.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4582){-webkit-animation-delay:458.2s;animation-delay:458.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4583){-webkit-animation-delay:458.3s;animation-delay:458.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4584){-webkit-animation-delay:458.4s;animation-delay:458.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4585){-webkit-animation-delay:458.5s;animation-delay:458.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4586){-webkit-animation-delay:458.6s;animation-delay:458.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4587){-webkit-animation-delay:458.7s;animation-delay:458.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4588){-webkit-animation-delay:458.8s;animation-delay:458.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4589){-webkit-animation-delay:458.9s;animation-delay:458.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4590){-webkit-animation-delay:459s;animation-delay:459s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4591){-webkit-animation-delay:459.1s;animation-delay:459.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4592){-webkit-animation-delay:459.2s;animation-delay:459.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4593){-webkit-animation-delay:459.3s;animation-delay:459.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4594){-webkit-animation-delay:459.4s;animation-delay:459.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4595){-webkit-animation-delay:459.5s;animation-delay:459.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4596){-webkit-animation-delay:459.6s;animation-delay:459.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4597){-webkit-animation-delay:459.7s;animation-delay:459.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4598){-webkit-animation-delay:459.8s;animation-delay:459.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4599){-webkit-animation-delay:459.9s;animation-delay:459.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4600){-webkit-animation-delay:460s;animation-delay:460s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4601){-webkit-animation-delay:460.1s;animation-delay:460.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4602){-webkit-animation-delay:460.2s;animation-delay:460.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4603){-webkit-animation-delay:460.3s;animation-delay:460.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4604){-webkit-animation-delay:460.4s;animation-delay:460.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4605){-webkit-animation-delay:460.5s;animation-delay:460.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4606){-webkit-animation-delay:460.6s;animation-delay:460.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4607){-webkit-animation-delay:460.7s;animation-delay:460.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4608){-webkit-animation-delay:460.8s;animation-delay:460.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4609){-webkit-animation-delay:460.9s;animation-delay:460.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4610){-webkit-animation-delay:461s;animation-delay:461s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4611){-webkit-animation-delay:461.1s;animation-delay:461.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4612){-webkit-animation-delay:461.2s;animation-delay:461.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4613){-webkit-animation-delay:461.3s;animation-delay:461.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4614){-webkit-animation-delay:461.4s;animation-delay:461.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4615){-webkit-animation-delay:461.5s;animation-delay:461.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4616){-webkit-animation-delay:461.6s;animation-delay:461.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4617){-webkit-animation-delay:461.7s;animation-delay:461.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4618){-webkit-animation-delay:461.8s;animation-delay:461.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4619){-webkit-animation-delay:461.9s;animation-delay:461.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4620){-webkit-animation-delay:462s;animation-delay:462s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4621){-webkit-animation-delay:462.1s;animation-delay:462.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4622){-webkit-animation-delay:462.2s;animation-delay:462.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4623){-webkit-animation-delay:462.3s;animation-delay:462.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4624){-webkit-animation-delay:462.4s;animation-delay:462.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4625){-webkit-animation-delay:462.5s;animation-delay:462.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4626){-webkit-animation-delay:462.6s;animation-delay:462.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4627){-webkit-animation-delay:462.7s;animation-delay:462.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4628){-webkit-animation-delay:462.8s;animation-delay:462.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4629){-webkit-animation-delay:462.9s;animation-delay:462.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4630){-webkit-animation-delay:463s;animation-delay:463s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4631){-webkit-animation-delay:463.1s;animation-delay:463.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4632){-webkit-animation-delay:463.2s;animation-delay:463.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4633){-webkit-animation-delay:463.3s;animation-delay:463.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4634){-webkit-animation-delay:463.4s;animation-delay:463.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4635){-webkit-animation-delay:463.5s;animation-delay:463.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4636){-webkit-animation-delay:463.6s;animation-delay:463.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4637){-webkit-animation-delay:463.7s;animation-delay:463.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4638){-webkit-animation-delay:463.8s;animation-delay:463.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4639){-webkit-animation-delay:463.9s;animation-delay:463.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4640){-webkit-animation-delay:464s;animation-delay:464s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4641){-webkit-animation-delay:464.1s;animation-delay:464.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4642){-webkit-animation-delay:464.2s;animation-delay:464.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4643){-webkit-animation-delay:464.3s;animation-delay:464.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4644){-webkit-animation-delay:464.4s;animation-delay:464.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4645){-webkit-animation-delay:464.5s;animation-delay:464.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4646){-webkit-animation-delay:464.6s;animation-delay:464.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4647){-webkit-animation-delay:464.7s;animation-delay:464.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4648){-webkit-animation-delay:464.8s;animation-delay:464.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4649){-webkit-animation-delay:464.9s;animation-delay:464.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4650){-webkit-animation-delay:465s;animation-delay:465s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4651){-webkit-animation-delay:465.1s;animation-delay:465.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4652){-webkit-animation-delay:465.2s;animation-delay:465.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4653){-webkit-animation-delay:465.3s;animation-delay:465.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4654){-webkit-animation-delay:465.4s;animation-delay:465.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4655){-webkit-animation-delay:465.5s;animation-delay:465.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4656){-webkit-animation-delay:465.6s;animation-delay:465.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4657){-webkit-animation-delay:465.7s;animation-delay:465.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4658){-webkit-animation-delay:465.8s;animation-delay:465.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4659){-webkit-animation-delay:465.9s;animation-delay:465.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4660){-webkit-animation-delay:466s;animation-delay:466s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4661){-webkit-animation-delay:466.1s;animation-delay:466.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4662){-webkit-animation-delay:466.2s;animation-delay:466.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4663){-webkit-animation-delay:466.3s;animation-delay:466.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4664){-webkit-animation-delay:466.4s;animation-delay:466.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4665){-webkit-animation-delay:466.5s;animation-delay:466.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4666){-webkit-animation-delay:466.6s;animation-delay:466.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4667){-webkit-animation-delay:466.7s;animation-delay:466.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4668){-webkit-animation-delay:466.8s;animation-delay:466.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4669){-webkit-animation-delay:466.9s;animation-delay:466.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4670){-webkit-animation-delay:467s;animation-delay:467s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4671){-webkit-animation-delay:467.1s;animation-delay:467.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4672){-webkit-animation-delay:467.2s;animation-delay:467.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4673){-webkit-animation-delay:467.3s;animation-delay:467.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4674){-webkit-animation-delay:467.4s;animation-delay:467.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4675){-webkit-animation-delay:467.5s;animation-delay:467.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4676){-webkit-animation-delay:467.6s;animation-delay:467.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4677){-webkit-animation-delay:467.7s;animation-delay:467.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4678){-webkit-animation-delay:467.8s;animation-delay:467.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4679){-webkit-animation-delay:467.9s;animation-delay:467.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4680){-webkit-animation-delay:468s;animation-delay:468s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4681){-webkit-animation-delay:468.1s;animation-delay:468.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4682){-webkit-animation-delay:468.2s;animation-delay:468.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4683){-webkit-animation-delay:468.3s;animation-delay:468.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4684){-webkit-animation-delay:468.4s;animation-delay:468.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4685){-webkit-animation-delay:468.5s;animation-delay:468.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4686){-webkit-animation-delay:468.6s;animation-delay:468.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4687){-webkit-animation-delay:468.7s;animation-delay:468.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4688){-webkit-animation-delay:468.8s;animation-delay:468.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4689){-webkit-animation-delay:468.9s;animation-delay:468.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4690){-webkit-animation-delay:469s;animation-delay:469s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4691){-webkit-animation-delay:469.1s;animation-delay:469.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4692){-webkit-animation-delay:469.2s;animation-delay:469.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4693){-webkit-animation-delay:469.3s;animation-delay:469.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4694){-webkit-animation-delay:469.4s;animation-delay:469.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4695){-webkit-animation-delay:469.5s;animation-delay:469.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4696){-webkit-animation-delay:469.6s;animation-delay:469.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4697){-webkit-animation-delay:469.7s;animation-delay:469.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4698){-webkit-animation-delay:469.8s;animation-delay:469.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4699){-webkit-animation-delay:469.9s;animation-delay:469.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4700){-webkit-animation-delay:470s;animation-delay:470s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4701){-webkit-animation-delay:470.1s;animation-delay:470.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4702){-webkit-animation-delay:470.2s;animation-delay:470.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4703){-webkit-animation-delay:470.3s;animation-delay:470.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4704){-webkit-animation-delay:470.4s;animation-delay:470.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4705){-webkit-animation-delay:470.5s;animation-delay:470.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4706){-webkit-animation-delay:470.6s;animation-delay:470.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4707){-webkit-animation-delay:470.7s;animation-delay:470.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4708){-webkit-animation-delay:470.8s;animation-delay:470.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4709){-webkit-animation-delay:470.9s;animation-delay:470.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4710){-webkit-animation-delay:471s;animation-delay:471s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4711){-webkit-animation-delay:471.1s;animation-delay:471.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4712){-webkit-animation-delay:471.2s;animation-delay:471.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4713){-webkit-animation-delay:471.3s;animation-delay:471.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4714){-webkit-animation-delay:471.4s;animation-delay:471.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4715){-webkit-animation-delay:471.5s;animation-delay:471.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4716){-webkit-animation-delay:471.6s;animation-delay:471.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4717){-webkit-animation-delay:471.7s;animation-delay:471.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4718){-webkit-animation-delay:471.8s;animation-delay:471.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4719){-webkit-animation-delay:471.9s;animation-delay:471.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4720){-webkit-animation-delay:472s;animation-delay:472s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4721){-webkit-animation-delay:472.1s;animation-delay:472.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4722){-webkit-animation-delay:472.2s;animation-delay:472.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4723){-webkit-animation-delay:472.3s;animation-delay:472.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4724){-webkit-animation-delay:472.4s;animation-delay:472.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4725){-webkit-animation-delay:472.5s;animation-delay:472.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4726){-webkit-animation-delay:472.6s;animation-delay:472.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4727){-webkit-animation-delay:472.7s;animation-delay:472.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4728){-webkit-animation-delay:472.8s;animation-delay:472.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4729){-webkit-animation-delay:472.9s;animation-delay:472.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4730){-webkit-animation-delay:473s;animation-delay:473s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4731){-webkit-animation-delay:473.1s;animation-delay:473.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4732){-webkit-animation-delay:473.2s;animation-delay:473.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4733){-webkit-animation-delay:473.3s;animation-delay:473.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4734){-webkit-animation-delay:473.4s;animation-delay:473.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4735){-webkit-animation-delay:473.5s;animation-delay:473.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4736){-webkit-animation-delay:473.6s;animation-delay:473.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4737){-webkit-animation-delay:473.7s;animation-delay:473.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4738){-webkit-animation-delay:473.8s;animation-delay:473.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4739){-webkit-animation-delay:473.9s;animation-delay:473.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4740){-webkit-animation-delay:474s;animation-delay:474s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4741){-webkit-animation-delay:474.1s;animation-delay:474.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4742){-webkit-animation-delay:474.2s;animation-delay:474.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4743){-webkit-animation-delay:474.3s;animation-delay:474.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4744){-webkit-animation-delay:474.4s;animation-delay:474.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4745){-webkit-animation-delay:474.5s;animation-delay:474.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4746){-webkit-animation-delay:474.6s;animation-delay:474.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4747){-webkit-animation-delay:474.7s;animation-delay:474.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4748){-webkit-animation-delay:474.8s;animation-delay:474.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4749){-webkit-animation-delay:474.9s;animation-delay:474.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4750){-webkit-animation-delay:475s;animation-delay:475s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4751){-webkit-animation-delay:475.1s;animation-delay:475.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4752){-webkit-animation-delay:475.2s;animation-delay:475.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4753){-webkit-animation-delay:475.3s;animation-delay:475.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4754){-webkit-animation-delay:475.4s;animation-delay:475.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4755){-webkit-animation-delay:475.5s;animation-delay:475.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4756){-webkit-animation-delay:475.6s;animation-delay:475.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4757){-webkit-animation-delay:475.7s;animation-delay:475.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4758){-webkit-animation-delay:475.8s;animation-delay:475.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4759){-webkit-animation-delay:475.9s;animation-delay:475.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4760){-webkit-animation-delay:476s;animation-delay:476s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4761){-webkit-animation-delay:476.1s;animation-delay:476.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4762){-webkit-animation-delay:476.2s;animation-delay:476.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4763){-webkit-animation-delay:476.3s;animation-delay:476.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4764){-webkit-animation-delay:476.4s;animation-delay:476.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4765){-webkit-animation-delay:476.5s;animation-delay:476.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4766){-webkit-animation-delay:476.6s;animation-delay:476.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4767){-webkit-animation-delay:476.7s;animation-delay:476.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4768){-webkit-animation-delay:476.8s;animation-delay:476.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4769){-webkit-animation-delay:476.9s;animation-delay:476.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4770){-webkit-animation-delay:477s;animation-delay:477s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4771){-webkit-animation-delay:477.1s;animation-delay:477.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4772){-webkit-animation-delay:477.2s;animation-delay:477.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4773){-webkit-animation-delay:477.3s;animation-delay:477.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4774){-webkit-animation-delay:477.4s;animation-delay:477.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4775){-webkit-animation-delay:477.5s;animation-delay:477.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4776){-webkit-animation-delay:477.6s;animation-delay:477.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4777){-webkit-animation-delay:477.7s;animation-delay:477.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4778){-webkit-animation-delay:477.8s;animation-delay:477.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4779){-webkit-animation-delay:477.9s;animation-delay:477.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4780){-webkit-animation-delay:478s;animation-delay:478s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4781){-webkit-animation-delay:478.1s;animation-delay:478.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4782){-webkit-animation-delay:478.2s;animation-delay:478.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4783){-webkit-animation-delay:478.3s;animation-delay:478.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4784){-webkit-animation-delay:478.4s;animation-delay:478.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4785){-webkit-animation-delay:478.5s;animation-delay:478.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4786){-webkit-animation-delay:478.6s;animation-delay:478.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4787){-webkit-animation-delay:478.7s;animation-delay:478.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4788){-webkit-animation-delay:478.8s;animation-delay:478.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4789){-webkit-animation-delay:478.9s;animation-delay:478.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4790){-webkit-animation-delay:479s;animation-delay:479s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4791){-webkit-animation-delay:479.1s;animation-delay:479.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4792){-webkit-animation-delay:479.2s;animation-delay:479.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4793){-webkit-animation-delay:479.3s;animation-delay:479.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4794){-webkit-animation-delay:479.4s;animation-delay:479.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4795){-webkit-animation-delay:479.5s;animation-delay:479.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4796){-webkit-animation-delay:479.6s;animation-delay:479.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4797){-webkit-animation-delay:479.7s;animation-delay:479.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4798){-webkit-animation-delay:479.8s;animation-delay:479.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4799){-webkit-animation-delay:479.9s;animation-delay:479.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4800){-webkit-animation-delay:480s;animation-delay:480s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4801){-webkit-animation-delay:480.1s;animation-delay:480.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4802){-webkit-animation-delay:480.2s;animation-delay:480.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4803){-webkit-animation-delay:480.3s;animation-delay:480.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4804){-webkit-animation-delay:480.4s;animation-delay:480.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4805){-webkit-animation-delay:480.5s;animation-delay:480.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4806){-webkit-animation-delay:480.6s;animation-delay:480.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4807){-webkit-animation-delay:480.7s;animation-delay:480.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4808){-webkit-animation-delay:480.8s;animation-delay:480.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4809){-webkit-animation-delay:480.9s;animation-delay:480.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4810){-webkit-animation-delay:481s;animation-delay:481s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4811){-webkit-animation-delay:481.1s;animation-delay:481.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4812){-webkit-animation-delay:481.2s;animation-delay:481.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4813){-webkit-animation-delay:481.3s;animation-delay:481.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4814){-webkit-animation-delay:481.4s;animation-delay:481.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4815){-webkit-animation-delay:481.5s;animation-delay:481.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4816){-webkit-animation-delay:481.6s;animation-delay:481.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4817){-webkit-animation-delay:481.7s;animation-delay:481.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4818){-webkit-animation-delay:481.8s;animation-delay:481.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4819){-webkit-animation-delay:481.9s;animation-delay:481.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4820){-webkit-animation-delay:482s;animation-delay:482s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4821){-webkit-animation-delay:482.1s;animation-delay:482.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4822){-webkit-animation-delay:482.2s;animation-delay:482.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4823){-webkit-animation-delay:482.3s;animation-delay:482.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4824){-webkit-animation-delay:482.4s;animation-delay:482.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4825){-webkit-animation-delay:482.5s;animation-delay:482.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4826){-webkit-animation-delay:482.6s;animation-delay:482.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4827){-webkit-animation-delay:482.7s;animation-delay:482.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4828){-webkit-animation-delay:482.8s;animation-delay:482.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4829){-webkit-animation-delay:482.9s;animation-delay:482.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4830){-webkit-animation-delay:483s;animation-delay:483s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4831){-webkit-animation-delay:483.1s;animation-delay:483.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4832){-webkit-animation-delay:483.2s;animation-delay:483.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4833){-webkit-animation-delay:483.3s;animation-delay:483.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4834){-webkit-animation-delay:483.4s;animation-delay:483.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4835){-webkit-animation-delay:483.5s;animation-delay:483.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4836){-webkit-animation-delay:483.6s;animation-delay:483.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4837){-webkit-animation-delay:483.7s;animation-delay:483.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4838){-webkit-animation-delay:483.8s;animation-delay:483.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4839){-webkit-animation-delay:483.9s;animation-delay:483.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4840){-webkit-animation-delay:484s;animation-delay:484s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4841){-webkit-animation-delay:484.1s;animation-delay:484.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4842){-webkit-animation-delay:484.2s;animation-delay:484.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4843){-webkit-animation-delay:484.3s;animation-delay:484.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4844){-webkit-animation-delay:484.4s;animation-delay:484.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4845){-webkit-animation-delay:484.5s;animation-delay:484.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4846){-webkit-animation-delay:484.6s;animation-delay:484.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4847){-webkit-animation-delay:484.7s;animation-delay:484.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4848){-webkit-animation-delay:484.8s;animation-delay:484.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4849){-webkit-animation-delay:484.9s;animation-delay:484.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4850){-webkit-animation-delay:485s;animation-delay:485s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4851){-webkit-animation-delay:485.1s;animation-delay:485.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4852){-webkit-animation-delay:485.2s;animation-delay:485.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4853){-webkit-animation-delay:485.3s;animation-delay:485.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4854){-webkit-animation-delay:485.4s;animation-delay:485.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4855){-webkit-animation-delay:485.5s;animation-delay:485.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4856){-webkit-animation-delay:485.6s;animation-delay:485.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4857){-webkit-animation-delay:485.7s;animation-delay:485.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4858){-webkit-animation-delay:485.8s;animation-delay:485.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4859){-webkit-animation-delay:485.9s;animation-delay:485.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4860){-webkit-animation-delay:486s;animation-delay:486s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4861){-webkit-animation-delay:486.1s;animation-delay:486.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4862){-webkit-animation-delay:486.2s;animation-delay:486.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4863){-webkit-animation-delay:486.3s;animation-delay:486.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4864){-webkit-animation-delay:486.4s;animation-delay:486.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4865){-webkit-animation-delay:486.5s;animation-delay:486.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4866){-webkit-animation-delay:486.6s;animation-delay:486.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4867){-webkit-animation-delay:486.7s;animation-delay:486.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4868){-webkit-animation-delay:486.8s;animation-delay:486.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4869){-webkit-animation-delay:486.9s;animation-delay:486.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4870){-webkit-animation-delay:487s;animation-delay:487s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4871){-webkit-animation-delay:487.1s;animation-delay:487.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4872){-webkit-animation-delay:487.2s;animation-delay:487.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4873){-webkit-animation-delay:487.3s;animation-delay:487.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4874){-webkit-animation-delay:487.4s;animation-delay:487.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4875){-webkit-animation-delay:487.5s;animation-delay:487.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4876){-webkit-animation-delay:487.6s;animation-delay:487.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4877){-webkit-animation-delay:487.7s;animation-delay:487.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4878){-webkit-animation-delay:487.8s;animation-delay:487.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4879){-webkit-animation-delay:487.9s;animation-delay:487.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4880){-webkit-animation-delay:488s;animation-delay:488s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4881){-webkit-animation-delay:488.1s;animation-delay:488.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4882){-webkit-animation-delay:488.2s;animation-delay:488.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4883){-webkit-animation-delay:488.3s;animation-delay:488.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4884){-webkit-animation-delay:488.4s;animation-delay:488.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4885){-webkit-animation-delay:488.5s;animation-delay:488.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4886){-webkit-animation-delay:488.6s;animation-delay:488.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4887){-webkit-animation-delay:488.7s;animation-delay:488.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4888){-webkit-animation-delay:488.8s;animation-delay:488.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4889){-webkit-animation-delay:488.9s;animation-delay:488.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4890){-webkit-animation-delay:489s;animation-delay:489s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4891){-webkit-animation-delay:489.1s;animation-delay:489.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4892){-webkit-animation-delay:489.2s;animation-delay:489.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4893){-webkit-animation-delay:489.3s;animation-delay:489.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4894){-webkit-animation-delay:489.4s;animation-delay:489.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4895){-webkit-animation-delay:489.5s;animation-delay:489.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4896){-webkit-animation-delay:489.6s;animation-delay:489.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4897){-webkit-animation-delay:489.7s;animation-delay:489.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4898){-webkit-animation-delay:489.8s;animation-delay:489.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4899){-webkit-animation-delay:489.9s;animation-delay:489.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4900){-webkit-animation-delay:490s;animation-delay:490s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4901){-webkit-animation-delay:490.1s;animation-delay:490.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4902){-webkit-animation-delay:490.2s;animation-delay:490.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4903){-webkit-animation-delay:490.3s;animation-delay:490.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4904){-webkit-animation-delay:490.4s;animation-delay:490.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4905){-webkit-animation-delay:490.5s;animation-delay:490.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4906){-webkit-animation-delay:490.6s;animation-delay:490.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4907){-webkit-animation-delay:490.7s;animation-delay:490.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4908){-webkit-animation-delay:490.8s;animation-delay:490.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4909){-webkit-animation-delay:490.9s;animation-delay:490.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4910){-webkit-animation-delay:491s;animation-delay:491s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4911){-webkit-animation-delay:491.1s;animation-delay:491.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4912){-webkit-animation-delay:491.2s;animation-delay:491.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4913){-webkit-animation-delay:491.3s;animation-delay:491.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4914){-webkit-animation-delay:491.4s;animation-delay:491.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4915){-webkit-animation-delay:491.5s;animation-delay:491.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4916){-webkit-animation-delay:491.6s;animation-delay:491.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4917){-webkit-animation-delay:491.7s;animation-delay:491.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4918){-webkit-animation-delay:491.8s;animation-delay:491.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4919){-webkit-animation-delay:491.9s;animation-delay:491.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4920){-webkit-animation-delay:492s;animation-delay:492s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4921){-webkit-animation-delay:492.1s;animation-delay:492.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4922){-webkit-animation-delay:492.2s;animation-delay:492.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4923){-webkit-animation-delay:492.3s;animation-delay:492.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4924){-webkit-animation-delay:492.4s;animation-delay:492.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4925){-webkit-animation-delay:492.5s;animation-delay:492.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4926){-webkit-animation-delay:492.6s;animation-delay:492.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4927){-webkit-animation-delay:492.7s;animation-delay:492.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4928){-webkit-animation-delay:492.8s;animation-delay:492.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4929){-webkit-animation-delay:492.9s;animation-delay:492.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4930){-webkit-animation-delay:493s;animation-delay:493s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4931){-webkit-animation-delay:493.1s;animation-delay:493.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4932){-webkit-animation-delay:493.2s;animation-delay:493.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4933){-webkit-animation-delay:493.3s;animation-delay:493.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4934){-webkit-animation-delay:493.4s;animation-delay:493.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4935){-webkit-animation-delay:493.5s;animation-delay:493.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4936){-webkit-animation-delay:493.6s;animation-delay:493.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4937){-webkit-animation-delay:493.7s;animation-delay:493.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4938){-webkit-animation-delay:493.8s;animation-delay:493.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4939){-webkit-animation-delay:493.9s;animation-delay:493.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4940){-webkit-animation-delay:494s;animation-delay:494s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4941){-webkit-animation-delay:494.1s;animation-delay:494.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4942){-webkit-animation-delay:494.2s;animation-delay:494.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4943){-webkit-animation-delay:494.3s;animation-delay:494.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4944){-webkit-animation-delay:494.4s;animation-delay:494.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4945){-webkit-animation-delay:494.5s;animation-delay:494.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4946){-webkit-animation-delay:494.6s;animation-delay:494.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4947){-webkit-animation-delay:494.7s;animation-delay:494.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4948){-webkit-animation-delay:494.8s;animation-delay:494.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4949){-webkit-animation-delay:494.9s;animation-delay:494.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4950){-webkit-animation-delay:495s;animation-delay:495s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4951){-webkit-animation-delay:495.1s;animation-delay:495.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4952){-webkit-animation-delay:495.2s;animation-delay:495.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4953){-webkit-animation-delay:495.3s;animation-delay:495.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4954){-webkit-animation-delay:495.4s;animation-delay:495.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4955){-webkit-animation-delay:495.5s;animation-delay:495.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4956){-webkit-animation-delay:495.6s;animation-delay:495.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4957){-webkit-animation-delay:495.7s;animation-delay:495.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4958){-webkit-animation-delay:495.8s;animation-delay:495.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4959){-webkit-animation-delay:495.9s;animation-delay:495.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4960){-webkit-animation-delay:496s;animation-delay:496s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4961){-webkit-animation-delay:496.1s;animation-delay:496.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4962){-webkit-animation-delay:496.2s;animation-delay:496.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4963){-webkit-animation-delay:496.3s;animation-delay:496.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4964){-webkit-animation-delay:496.4s;animation-delay:496.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4965){-webkit-animation-delay:496.5s;animation-delay:496.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4966){-webkit-animation-delay:496.6s;animation-delay:496.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4967){-webkit-animation-delay:496.7s;animation-delay:496.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4968){-webkit-animation-delay:496.8s;animation-delay:496.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4969){-webkit-animation-delay:496.9s;animation-delay:496.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4970){-webkit-animation-delay:497s;animation-delay:497s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4971){-webkit-animation-delay:497.1s;animation-delay:497.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4972){-webkit-animation-delay:497.2s;animation-delay:497.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4973){-webkit-animation-delay:497.3s;animation-delay:497.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4974){-webkit-animation-delay:497.4s;animation-delay:497.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4975){-webkit-animation-delay:497.5s;animation-delay:497.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4976){-webkit-animation-delay:497.6s;animation-delay:497.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4977){-webkit-animation-delay:497.7s;animation-delay:497.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4978){-webkit-animation-delay:497.8s;animation-delay:497.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4979){-webkit-animation-delay:497.9s;animation-delay:497.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4980){-webkit-animation-delay:498s;animation-delay:498s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4981){-webkit-animation-delay:498.1s;animation-delay:498.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4982){-webkit-animation-delay:498.2s;animation-delay:498.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4983){-webkit-animation-delay:498.3s;animation-delay:498.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4984){-webkit-animation-delay:498.4s;animation-delay:498.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4985){-webkit-animation-delay:498.5s;animation-delay:498.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4986){-webkit-animation-delay:498.6s;animation-delay:498.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4987){-webkit-animation-delay:498.7s;animation-delay:498.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4988){-webkit-animation-delay:498.8s;animation-delay:498.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4989){-webkit-animation-delay:498.9s;animation-delay:498.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4990){-webkit-animation-delay:499s;animation-delay:499s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4991){-webkit-animation-delay:499.1s;animation-delay:499.1s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4992){-webkit-animation-delay:499.2s;animation-delay:499.2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4993){-webkit-animation-delay:499.3s;animation-delay:499.3s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4994){-webkit-animation-delay:499.4s;animation-delay:499.4s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4995){-webkit-animation-delay:499.5s;animation-delay:499.5s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4996){-webkit-animation-delay:499.6s;animation-delay:499.6s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4997){-webkit-animation-delay:499.7s;animation-delay:499.7s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4998){-webkit-animation-delay:499.8s;animation-delay:499.8s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(4999){-webkit-animation-delay:499.9s;animation-delay:499.9s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:nth-child(5000){-webkit-animation-delay:500s;animation-delay:500s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li{cursor:pointer;-webkit-transition:all .2s;transition:all .2s;-webkit-animation:fadeIn .5s linear;animation:fadeIn .5s linear;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:relative}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li.media{padding:1.5rem 1rem}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li.media:hover{-webkit-transform:translateY(-4px);-ms-transform:translateY(-4px);transform:translateY(-4px);box-shadow:0 3px 10px 0 #CCC;-webkit-transition:all .2s;transition:all .2s}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li.media .media-left{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li.media .media-body{width:calc(100vw - (100vw - 100%) - 60px);overflow:hidden}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .avatar,.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .avatar img{height:40px;width:40px}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .avatar img{border:2px solid #FFF}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li.mail-read{background-color:#EDEDED}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li:not(:first-child){border-top:1px solid #DAE1E7}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:.75rem}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper .user-action{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper .user-action .favorite i{font-size:1.2rem;line-height:1.5}.email-application .app-content .content-area-wrapper .email-user-list .no-results{display:none;padding:1.5rem;text-align:center}.email-application .app-content .content-area-wrapper .email-user-list .no-results.show{display:block}.email-application .app-action{padding:1rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;border-bottom:1px solid #DAE1E7}.email-application .app-action .action-left .selectAll{margin:.25rem 0 .108rem}.email-application .app-action .action-left .selectAll .vs-checkbox,.email-application .app-action .action-right ul li:not(:last-child){margin-right:1rem}.email-application .app-action .action-right .dropdown-toggle{color:#626262;white-space:normal}.email-application .app-action .action-right .dropdown-toggle::after{display:none}.email-application .app-action .action-right i{font-size:1.5rem;margin-right:0}.email-application .email-app-details{position:absolute;display:block;z-index:2;visibility:hidden;opacity:0;top:0;width:calc(100% - 260px);background-color:#F8F8F8;-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);-webkit-transition:all .3s ease;transition:all .3s ease;height:100%;border-left:1px solid #DAE1E7}.email-application .email-app-details.show{visibility:visible;-webkit-transition:all .3s ease;opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);transition:all .3s ease}.email-application .email-app-details .email-detail-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;box-shadow:0 4px 6px rgba(0,0,0,.04);border-bottom:1px solid #EEE;position:relative;padding:1.643rem 2rem 0;background-color:#FFF}.email-application .email-app-details .email-scroll-area{padding:0 2rem;position:relative;height:calc(100vh - 18.75rem);height:calc(var(--vh,1vh) * 100 - 18.75rem)}.email-application .email-app-details .email-scroll-area .email-detail-head{border-bottom:1px solid #DAE1E7;padding:1.5rem 1rem .75rem}.email-application .email-app-details .email-scroll-area .email-detail-head .mail-meta-item{text-align:right}.email-application .email-app-details .email-scroll-area .card-body.mail-message-wrapper{border-bottom:1px solid #DAE1E7!important}.email-application .email-app-details .email-scroll-area .mail-label{letter-spacing:.25px}.email-application .email-app-details .email-scroll-area .email-info-dropup .dropdown-toggle::after{left:0;margin:0}.email-application .email-app-details .email-scroll-area .mail-message p{margin-bottom:1.5rem}.email-application .email-app-details .email-scroll-area .mail-attachements{text-transform:uppercase}.email-application .ql-editor{height:150px}@media (max-width:767.98px){.email-application .sidebar-content .sidebar-close-icon{visibility:visible!important}}@media (max-width:991.98px){.email-application .app-content .sidebar-left{position:relative}.email-application .app-content .sidebar-left .email-app-sidebar{-webkit-transform:translateX(-110%);-ms-transform:translateX(-110%);transform:translateX(-110%);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;position:fixed;z-index:5;left:-2px}.email-application .app-content .sidebar-left.show .email-app-sidebar{-webkit-transform:translateX(13%);-ms-transform:translateX(13%);transform:translateX(13%);-webkit-transition:all .3s ease;transition:all .3s ease;display:block}.email-application .app-content .content-right{width:100%}.email-application .app-content .content-right .app-fixed-search{border-top-left-radius:.5rem}.email-application .app-content .content-right .email-app-details{width:100%;border-radius:.5rem}.email-application .app-content .content-right .email-app-details .email-scroll-area{height:calc(100vh - 21.5rem);height:calc(var(--vh,1vh) * 100 - 21.5rem)}}@media (max-width:575.98px){.email-application .sidebar-left .email-app-sidebar{left:-1.12rem!important}.email-application .email-detail-head .mail-meta-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.email-application .email-detail-head .mail-meta-item .mail-date,.email-application .email-detail-head .mail-meta-item .mail-time{margin:1rem .75rem 0 0}.email-application .app-content .content-right .email-app-details .email-scroll-area{height:calc(100vh - 23.25rem);height:calc(var(--vh,1vh) * 100 - 23.25rem)}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details{display:block}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details .mail-items{width:70%;display:inline-grid}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details .mail-meta-item{width:15%;position:absolute;right:1rem;top:1.5rem}.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details .mail-meta-item .bullet,.email-application .app-content .content-area-wrapper .email-user-list .users-list-wrapper li .user-details .mail-meta-item i{display:none}}@media (max-width:349.98px){.email-application .content-area-wrapper .sidebar .email-app-sidebar{width:230px;left:3px}.email-application .app-content .content-area-wrapper .email-user-list{height:calc(100vh - 22.3rem);height:calc(var(--vh,1vh) * 100 - 22.3rem)}.email-application .email-app-details .email-detail-header{padding:0 1.2rem}.email-application .email-app-details .email-detail-header .email-next,.email-application .email-app-details .email-detail-header .email-prev{display:none}}@-webkit-keyframes fadeIn{0%{opacity:0;top:100px}75%{opacity:.5;top:0}100%{opacity:1}} \ No newline at end of file diff --git a/assets/css/pages/app-todo.css b/assets/css/pages/app-todo.css new file mode 100644 index 0000000..695652f --- /dev/null +++ b/assets/css/pages/app-todo.css @@ -0,0 +1,10206 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.todo-application .content-area-wrapper { + border: 1px solid #dae1e7; + border-radius: 0.25rem; } + .todo-application .content-area-wrapper .sidebar .todo-sidebar { + width: 260px; + height: calc(100vh - 13rem); + height: calc(var(--vh, 1vh) * 100 - 13rem); + background-color: #fff; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + transition: all .3s ease; } + .todo-application .content-area-wrapper .sidebar .todo-sidebar .sidebar-close-icon { + position: absolute; + right: .25rem; + top: .25rem; + cursor: pointer; + font-size: 1.25rem; + z-index: 5; + visibility: hidden; } + .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu { + width: 100%; + box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05); + padding: .5rem 0; + z-index: 3; } + .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .add-task { + padding: 1px 1.5rem; + margin-bottom: 0.25rem; } + .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .sidebar-menu-list { + padding: 0 1.5rem; + position: relative; + overflow: scroll; + height: calc(100% - 5.4rem); } + .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item { + padding-left: 0; + padding-right: 0; } + .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item:focus { + background-color: transparent; } + .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item:hover { + background-color: transparent; + color: #626262; } + .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item.active { + background-color: transparent; + color: #3a50dc; } + .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item i { + top: 3px; } + .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu hr { + margin-left: -1.5rem; + margin-right: -1.5rem; } + .todo-application .content-area-wrapper .modal .todo-item-action { + display: flex; + align-items: center; + justify-content: space-between; + width: 6rem; + margin-bottom: 1.25rem; } + .todo-application .content-area-wrapper .modal .todo-item-action .todo-item-info, .todo-application .content-area-wrapper .modal .todo-item-action .todo-item-favorite, .todo-application .content-area-wrapper .modal .todo-item-action .dropdown { + cursor: pointer; + font-size: 1.2rem; + line-height: 1.5; } + .todo-application .content-area-wrapper .modal .todo-item-action .dropdown .dropdown-menu .dropdown-item { + padding: .14rem 1.428rem; } + .todo-application .content-area-wrapper .modal .todo-item-action .dropdown-toggle::after { + display: none; } + .todo-application .content-area-wrapper .app-content .content-area-wrapper { + position: relative; } + .todo-application .content-area-wrapper .completed .todo-title, .todo-application .content-area-wrapper .completed .todo-desc { + text-decoration: line-through; } + .todo-application .content-area-wrapper .content-right { + width: calc(100% - 260px); } + .todo-application .content-area-wrapper .content-right .content-wrapper { + padding: 0; } + .todo-application .content-area-wrapper .content-right .todo-app-list-wrapper { + border-left: 1px solid #dae1e7; } + .todo-application .content-area-wrapper .content-right .app-fixed-search { + padding: .35rem .1rem; + border-bottom: 1px solid #dae1e7; + background-color: #fff; + border-top-right-radius: 0.5rem; } + .todo-application .content-area-wrapper .content-right .app-fixed-search .form-control-position { + font-size: calc(1rem * 1.1); } + .todo-application .content-area-wrapper .content-right .app-fixed-search input { + border: 0; + background-color: transparent; } + .todo-application .content-area-wrapper .content-right .app-fixed-search input:focus { + border-color: transparent; + box-shadow: none; } + .todo-application .content-area-wrapper .content-right .sidebar-toggle { + cursor: pointer; + margin: 0.5rem 0.99rem; + float: left; + line-height: 1; } + .todo-application .content-area-wrapper .content-right .sidebar-toggle i { + font-size: 1.75rem; } + .todo-application .content-area-wrapper .content-right .app-content-overlay { + top: 0; + left: 0; + right: 0; + bottom: 0; + position: absolute; + display: block; + z-index: 2; + visibility: hidden; + opacity: 0; + transition: all .3s ease; } + .todo-application .content-area-wrapper .content-right .app-content-overlay.show { + visibility: visible; + transition: all .3s ease; + opacity: 1; + background-color: rgba(0, 0, 0, 0.2); + border-radius: .25rem; } + .todo-application .content-area-wrapper .content-right .todo-task-list { + position: relative; + height: calc(100vh - 16.35rem); + height: calc(var(--vh, 1vh) * 100 - 16.35rem); } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper { + padding: 0; + margin: 0; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li { + cursor: pointer; + transition: all .2s; + animation: fadeIn 0.5s linear; + animation-fill-mode: both; + position: relative; + padding: 1.1rem 3rem 1.2rem 2rem; + border-top: 1px solid #dae1e7; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:hover { + transform: translateY(-4px); + box-shadow: 0 3px 10px 0 #ccc; + transition: all .2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li .chip-wrapper { + display: flex; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li .chip-wrapper .chip { + margin-right: 0.25rem; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1) { + animation-delay: 0.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2) { + animation-delay: 0.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3) { + animation-delay: 0.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4) { + animation-delay: 0.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(5) { + animation-delay: 0.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(6) { + animation-delay: 0.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(7) { + animation-delay: 0.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(8) { + animation-delay: 0.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(9) { + animation-delay: 0.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(10) { + animation-delay: 1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(11) { + animation-delay: 1.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(12) { + animation-delay: 1.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(13) { + animation-delay: 1.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(14) { + animation-delay: 1.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(15) { + animation-delay: 1.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(16) { + animation-delay: 1.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(17) { + animation-delay: 1.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(18) { + animation-delay: 1.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(19) { + animation-delay: 1.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(20) { + animation-delay: 2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(21) { + animation-delay: 2.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(22) { + animation-delay: 2.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(23) { + animation-delay: 2.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(24) { + animation-delay: 2.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(25) { + animation-delay: 2.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(26) { + animation-delay: 2.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(27) { + animation-delay: 2.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(28) { + animation-delay: 2.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(29) { + animation-delay: 2.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(30) { + animation-delay: 3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(31) { + animation-delay: 3.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(32) { + animation-delay: 3.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(33) { + animation-delay: 3.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(34) { + animation-delay: 3.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(35) { + animation-delay: 3.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(36) { + animation-delay: 3.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(37) { + animation-delay: 3.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(38) { + animation-delay: 3.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(39) { + animation-delay: 3.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(40) { + animation-delay: 4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(41) { + animation-delay: 4.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(42) { + animation-delay: 4.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(43) { + animation-delay: 4.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(44) { + animation-delay: 4.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(45) { + animation-delay: 4.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(46) { + animation-delay: 4.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(47) { + animation-delay: 4.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(48) { + animation-delay: 4.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(49) { + animation-delay: 4.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(50) { + animation-delay: 5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(51) { + animation-delay: 5.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(52) { + animation-delay: 5.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(53) { + animation-delay: 5.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(54) { + animation-delay: 5.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(55) { + animation-delay: 5.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(56) { + animation-delay: 5.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(57) { + animation-delay: 5.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(58) { + animation-delay: 5.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(59) { + animation-delay: 5.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(60) { + animation-delay: 6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(61) { + animation-delay: 6.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(62) { + animation-delay: 6.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(63) { + animation-delay: 6.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(64) { + animation-delay: 6.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(65) { + animation-delay: 6.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(66) { + animation-delay: 6.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(67) { + animation-delay: 6.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(68) { + animation-delay: 6.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(69) { + animation-delay: 6.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(70) { + animation-delay: 7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(71) { + animation-delay: 7.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(72) { + animation-delay: 7.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(73) { + animation-delay: 7.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(74) { + animation-delay: 7.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(75) { + animation-delay: 7.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(76) { + animation-delay: 7.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(77) { + animation-delay: 7.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(78) { + animation-delay: 7.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(79) { + animation-delay: 7.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(80) { + animation-delay: 8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(81) { + animation-delay: 8.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(82) { + animation-delay: 8.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(83) { + animation-delay: 8.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(84) { + animation-delay: 8.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(85) { + animation-delay: 8.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(86) { + animation-delay: 8.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(87) { + animation-delay: 8.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(88) { + animation-delay: 8.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(89) { + animation-delay: 8.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(90) { + animation-delay: 9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(91) { + animation-delay: 9.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(92) { + animation-delay: 9.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(93) { + animation-delay: 9.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(94) { + animation-delay: 9.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(95) { + animation-delay: 9.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(96) { + animation-delay: 9.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(97) { + animation-delay: 9.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(98) { + animation-delay: 9.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(99) { + animation-delay: 9.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(100) { + animation-delay: 10s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(101) { + animation-delay: 10.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(102) { + animation-delay: 10.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(103) { + animation-delay: 10.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(104) { + animation-delay: 10.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(105) { + animation-delay: 10.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(106) { + animation-delay: 10.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(107) { + animation-delay: 10.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(108) { + animation-delay: 10.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(109) { + animation-delay: 10.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(110) { + animation-delay: 11s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(111) { + animation-delay: 11.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(112) { + animation-delay: 11.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(113) { + animation-delay: 11.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(114) { + animation-delay: 11.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(115) { + animation-delay: 11.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(116) { + animation-delay: 11.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(117) { + animation-delay: 11.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(118) { + animation-delay: 11.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(119) { + animation-delay: 11.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(120) { + animation-delay: 12s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(121) { + animation-delay: 12.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(122) { + animation-delay: 12.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(123) { + animation-delay: 12.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(124) { + animation-delay: 12.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(125) { + animation-delay: 12.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(126) { + animation-delay: 12.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(127) { + animation-delay: 12.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(128) { + animation-delay: 12.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(129) { + animation-delay: 12.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(130) { + animation-delay: 13s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(131) { + animation-delay: 13.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(132) { + animation-delay: 13.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(133) { + animation-delay: 13.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(134) { + animation-delay: 13.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(135) { + animation-delay: 13.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(136) { + animation-delay: 13.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(137) { + animation-delay: 13.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(138) { + animation-delay: 13.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(139) { + animation-delay: 13.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(140) { + animation-delay: 14s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(141) { + animation-delay: 14.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(142) { + animation-delay: 14.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(143) { + animation-delay: 14.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(144) { + animation-delay: 14.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(145) { + animation-delay: 14.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(146) { + animation-delay: 14.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(147) { + animation-delay: 14.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(148) { + animation-delay: 14.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(149) { + animation-delay: 14.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(150) { + animation-delay: 15s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(151) { + animation-delay: 15.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(152) { + animation-delay: 15.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(153) { + animation-delay: 15.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(154) { + animation-delay: 15.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(155) { + animation-delay: 15.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(156) { + animation-delay: 15.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(157) { + animation-delay: 15.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(158) { + animation-delay: 15.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(159) { + animation-delay: 15.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(160) { + animation-delay: 16s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(161) { + animation-delay: 16.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(162) { + animation-delay: 16.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(163) { + animation-delay: 16.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(164) { + animation-delay: 16.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(165) { + animation-delay: 16.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(166) { + animation-delay: 16.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(167) { + animation-delay: 16.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(168) { + animation-delay: 16.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(169) { + animation-delay: 16.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(170) { + animation-delay: 17s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(171) { + animation-delay: 17.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(172) { + animation-delay: 17.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(173) { + animation-delay: 17.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(174) { + animation-delay: 17.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(175) { + animation-delay: 17.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(176) { + animation-delay: 17.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(177) { + animation-delay: 17.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(178) { + animation-delay: 17.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(179) { + animation-delay: 17.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(180) { + animation-delay: 18s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(181) { + animation-delay: 18.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(182) { + animation-delay: 18.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(183) { + animation-delay: 18.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(184) { + animation-delay: 18.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(185) { + animation-delay: 18.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(186) { + animation-delay: 18.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(187) { + animation-delay: 18.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(188) { + animation-delay: 18.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(189) { + animation-delay: 18.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(190) { + animation-delay: 19s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(191) { + animation-delay: 19.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(192) { + animation-delay: 19.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(193) { + animation-delay: 19.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(194) { + animation-delay: 19.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(195) { + animation-delay: 19.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(196) { + animation-delay: 19.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(197) { + animation-delay: 19.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(198) { + animation-delay: 19.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(199) { + animation-delay: 19.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(200) { + animation-delay: 20s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(201) { + animation-delay: 20.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(202) { + animation-delay: 20.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(203) { + animation-delay: 20.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(204) { + animation-delay: 20.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(205) { + animation-delay: 20.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(206) { + animation-delay: 20.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(207) { + animation-delay: 20.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(208) { + animation-delay: 20.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(209) { + animation-delay: 20.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(210) { + animation-delay: 21s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(211) { + animation-delay: 21.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(212) { + animation-delay: 21.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(213) { + animation-delay: 21.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(214) { + animation-delay: 21.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(215) { + animation-delay: 21.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(216) { + animation-delay: 21.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(217) { + animation-delay: 21.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(218) { + animation-delay: 21.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(219) { + animation-delay: 21.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(220) { + animation-delay: 22s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(221) { + animation-delay: 22.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(222) { + animation-delay: 22.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(223) { + animation-delay: 22.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(224) { + animation-delay: 22.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(225) { + animation-delay: 22.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(226) { + animation-delay: 22.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(227) { + animation-delay: 22.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(228) { + animation-delay: 22.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(229) { + animation-delay: 22.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(230) { + animation-delay: 23s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(231) { + animation-delay: 23.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(232) { + animation-delay: 23.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(233) { + animation-delay: 23.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(234) { + animation-delay: 23.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(235) { + animation-delay: 23.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(236) { + animation-delay: 23.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(237) { + animation-delay: 23.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(238) { + animation-delay: 23.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(239) { + animation-delay: 23.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(240) { + animation-delay: 24s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(241) { + animation-delay: 24.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(242) { + animation-delay: 24.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(243) { + animation-delay: 24.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(244) { + animation-delay: 24.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(245) { + animation-delay: 24.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(246) { + animation-delay: 24.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(247) { + animation-delay: 24.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(248) { + animation-delay: 24.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(249) { + animation-delay: 24.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(250) { + animation-delay: 25s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(251) { + animation-delay: 25.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(252) { + animation-delay: 25.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(253) { + animation-delay: 25.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(254) { + animation-delay: 25.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(255) { + animation-delay: 25.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(256) { + animation-delay: 25.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(257) { + animation-delay: 25.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(258) { + animation-delay: 25.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(259) { + animation-delay: 25.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(260) { + animation-delay: 26s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(261) { + animation-delay: 26.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(262) { + animation-delay: 26.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(263) { + animation-delay: 26.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(264) { + animation-delay: 26.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(265) { + animation-delay: 26.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(266) { + animation-delay: 26.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(267) { + animation-delay: 26.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(268) { + animation-delay: 26.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(269) { + animation-delay: 26.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(270) { + animation-delay: 27s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(271) { + animation-delay: 27.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(272) { + animation-delay: 27.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(273) { + animation-delay: 27.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(274) { + animation-delay: 27.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(275) { + animation-delay: 27.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(276) { + animation-delay: 27.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(277) { + animation-delay: 27.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(278) { + animation-delay: 27.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(279) { + animation-delay: 27.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(280) { + animation-delay: 28s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(281) { + animation-delay: 28.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(282) { + animation-delay: 28.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(283) { + animation-delay: 28.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(284) { + animation-delay: 28.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(285) { + animation-delay: 28.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(286) { + animation-delay: 28.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(287) { + animation-delay: 28.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(288) { + animation-delay: 28.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(289) { + animation-delay: 28.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(290) { + animation-delay: 29s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(291) { + animation-delay: 29.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(292) { + animation-delay: 29.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(293) { + animation-delay: 29.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(294) { + animation-delay: 29.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(295) { + animation-delay: 29.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(296) { + animation-delay: 29.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(297) { + animation-delay: 29.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(298) { + animation-delay: 29.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(299) { + animation-delay: 29.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(300) { + animation-delay: 30s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(301) { + animation-delay: 30.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(302) { + animation-delay: 30.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(303) { + animation-delay: 30.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(304) { + animation-delay: 30.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(305) { + animation-delay: 30.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(306) { + animation-delay: 30.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(307) { + animation-delay: 30.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(308) { + animation-delay: 30.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(309) { + animation-delay: 30.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(310) { + animation-delay: 31s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(311) { + animation-delay: 31.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(312) { + animation-delay: 31.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(313) { + animation-delay: 31.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(314) { + animation-delay: 31.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(315) { + animation-delay: 31.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(316) { + animation-delay: 31.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(317) { + animation-delay: 31.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(318) { + animation-delay: 31.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(319) { + animation-delay: 31.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(320) { + animation-delay: 32s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(321) { + animation-delay: 32.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(322) { + animation-delay: 32.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(323) { + animation-delay: 32.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(324) { + animation-delay: 32.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(325) { + animation-delay: 32.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(326) { + animation-delay: 32.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(327) { + animation-delay: 32.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(328) { + animation-delay: 32.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(329) { + animation-delay: 32.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(330) { + animation-delay: 33s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(331) { + animation-delay: 33.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(332) { + animation-delay: 33.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(333) { + animation-delay: 33.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(334) { + animation-delay: 33.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(335) { + animation-delay: 33.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(336) { + animation-delay: 33.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(337) { + animation-delay: 33.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(338) { + animation-delay: 33.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(339) { + animation-delay: 33.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(340) { + animation-delay: 34s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(341) { + animation-delay: 34.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(342) { + animation-delay: 34.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(343) { + animation-delay: 34.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(344) { + animation-delay: 34.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(345) { + animation-delay: 34.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(346) { + animation-delay: 34.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(347) { + animation-delay: 34.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(348) { + animation-delay: 34.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(349) { + animation-delay: 34.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(350) { + animation-delay: 35s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(351) { + animation-delay: 35.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(352) { + animation-delay: 35.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(353) { + animation-delay: 35.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(354) { + animation-delay: 35.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(355) { + animation-delay: 35.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(356) { + animation-delay: 35.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(357) { + animation-delay: 35.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(358) { + animation-delay: 35.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(359) { + animation-delay: 35.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(360) { + animation-delay: 36s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(361) { + animation-delay: 36.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(362) { + animation-delay: 36.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(363) { + animation-delay: 36.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(364) { + animation-delay: 36.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(365) { + animation-delay: 36.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(366) { + animation-delay: 36.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(367) { + animation-delay: 36.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(368) { + animation-delay: 36.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(369) { + animation-delay: 36.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(370) { + animation-delay: 37s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(371) { + animation-delay: 37.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(372) { + animation-delay: 37.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(373) { + animation-delay: 37.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(374) { + animation-delay: 37.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(375) { + animation-delay: 37.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(376) { + animation-delay: 37.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(377) { + animation-delay: 37.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(378) { + animation-delay: 37.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(379) { + animation-delay: 37.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(380) { + animation-delay: 38s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(381) { + animation-delay: 38.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(382) { + animation-delay: 38.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(383) { + animation-delay: 38.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(384) { + animation-delay: 38.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(385) { + animation-delay: 38.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(386) { + animation-delay: 38.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(387) { + animation-delay: 38.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(388) { + animation-delay: 38.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(389) { + animation-delay: 38.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(390) { + animation-delay: 39s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(391) { + animation-delay: 39.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(392) { + animation-delay: 39.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(393) { + animation-delay: 39.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(394) { + animation-delay: 39.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(395) { + animation-delay: 39.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(396) { + animation-delay: 39.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(397) { + animation-delay: 39.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(398) { + animation-delay: 39.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(399) { + animation-delay: 39.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(400) { + animation-delay: 40s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(401) { + animation-delay: 40.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(402) { + animation-delay: 40.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(403) { + animation-delay: 40.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(404) { + animation-delay: 40.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(405) { + animation-delay: 40.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(406) { + animation-delay: 40.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(407) { + animation-delay: 40.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(408) { + animation-delay: 40.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(409) { + animation-delay: 40.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(410) { + animation-delay: 41s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(411) { + animation-delay: 41.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(412) { + animation-delay: 41.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(413) { + animation-delay: 41.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(414) { + animation-delay: 41.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(415) { + animation-delay: 41.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(416) { + animation-delay: 41.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(417) { + animation-delay: 41.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(418) { + animation-delay: 41.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(419) { + animation-delay: 41.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(420) { + animation-delay: 42s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(421) { + animation-delay: 42.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(422) { + animation-delay: 42.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(423) { + animation-delay: 42.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(424) { + animation-delay: 42.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(425) { + animation-delay: 42.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(426) { + animation-delay: 42.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(427) { + animation-delay: 42.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(428) { + animation-delay: 42.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(429) { + animation-delay: 42.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(430) { + animation-delay: 43s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(431) { + animation-delay: 43.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(432) { + animation-delay: 43.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(433) { + animation-delay: 43.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(434) { + animation-delay: 43.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(435) { + animation-delay: 43.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(436) { + animation-delay: 43.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(437) { + animation-delay: 43.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(438) { + animation-delay: 43.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(439) { + animation-delay: 43.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(440) { + animation-delay: 44s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(441) { + animation-delay: 44.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(442) { + animation-delay: 44.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(443) { + animation-delay: 44.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(444) { + animation-delay: 44.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(445) { + animation-delay: 44.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(446) { + animation-delay: 44.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(447) { + animation-delay: 44.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(448) { + animation-delay: 44.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(449) { + animation-delay: 44.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(450) { + animation-delay: 45s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(451) { + animation-delay: 45.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(452) { + animation-delay: 45.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(453) { + animation-delay: 45.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(454) { + animation-delay: 45.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(455) { + animation-delay: 45.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(456) { + animation-delay: 45.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(457) { + animation-delay: 45.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(458) { + animation-delay: 45.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(459) { + animation-delay: 45.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(460) { + animation-delay: 46s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(461) { + animation-delay: 46.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(462) { + animation-delay: 46.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(463) { + animation-delay: 46.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(464) { + animation-delay: 46.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(465) { + animation-delay: 46.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(466) { + animation-delay: 46.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(467) { + animation-delay: 46.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(468) { + animation-delay: 46.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(469) { + animation-delay: 46.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(470) { + animation-delay: 47s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(471) { + animation-delay: 47.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(472) { + animation-delay: 47.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(473) { + animation-delay: 47.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(474) { + animation-delay: 47.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(475) { + animation-delay: 47.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(476) { + animation-delay: 47.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(477) { + animation-delay: 47.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(478) { + animation-delay: 47.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(479) { + animation-delay: 47.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(480) { + animation-delay: 48s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(481) { + animation-delay: 48.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(482) { + animation-delay: 48.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(483) { + animation-delay: 48.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(484) { + animation-delay: 48.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(485) { + animation-delay: 48.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(486) { + animation-delay: 48.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(487) { + animation-delay: 48.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(488) { + animation-delay: 48.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(489) { + animation-delay: 48.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(490) { + animation-delay: 49s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(491) { + animation-delay: 49.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(492) { + animation-delay: 49.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(493) { + animation-delay: 49.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(494) { + animation-delay: 49.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(495) { + animation-delay: 49.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(496) { + animation-delay: 49.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(497) { + animation-delay: 49.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(498) { + animation-delay: 49.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(499) { + animation-delay: 49.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(500) { + animation-delay: 50s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(501) { + animation-delay: 50.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(502) { + animation-delay: 50.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(503) { + animation-delay: 50.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(504) { + animation-delay: 50.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(505) { + animation-delay: 50.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(506) { + animation-delay: 50.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(507) { + animation-delay: 50.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(508) { + animation-delay: 50.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(509) { + animation-delay: 50.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(510) { + animation-delay: 51s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(511) { + animation-delay: 51.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(512) { + animation-delay: 51.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(513) { + animation-delay: 51.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(514) { + animation-delay: 51.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(515) { + animation-delay: 51.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(516) { + animation-delay: 51.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(517) { + animation-delay: 51.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(518) { + animation-delay: 51.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(519) { + animation-delay: 51.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(520) { + animation-delay: 52s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(521) { + animation-delay: 52.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(522) { + animation-delay: 52.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(523) { + animation-delay: 52.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(524) { + animation-delay: 52.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(525) { + animation-delay: 52.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(526) { + animation-delay: 52.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(527) { + animation-delay: 52.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(528) { + animation-delay: 52.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(529) { + animation-delay: 52.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(530) { + animation-delay: 53s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(531) { + animation-delay: 53.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(532) { + animation-delay: 53.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(533) { + animation-delay: 53.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(534) { + animation-delay: 53.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(535) { + animation-delay: 53.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(536) { + animation-delay: 53.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(537) { + animation-delay: 53.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(538) { + animation-delay: 53.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(539) { + animation-delay: 53.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(540) { + animation-delay: 54s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(541) { + animation-delay: 54.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(542) { + animation-delay: 54.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(543) { + animation-delay: 54.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(544) { + animation-delay: 54.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(545) { + animation-delay: 54.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(546) { + animation-delay: 54.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(547) { + animation-delay: 54.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(548) { + animation-delay: 54.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(549) { + animation-delay: 54.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(550) { + animation-delay: 55s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(551) { + animation-delay: 55.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(552) { + animation-delay: 55.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(553) { + animation-delay: 55.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(554) { + animation-delay: 55.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(555) { + animation-delay: 55.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(556) { + animation-delay: 55.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(557) { + animation-delay: 55.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(558) { + animation-delay: 55.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(559) { + animation-delay: 55.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(560) { + animation-delay: 56s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(561) { + animation-delay: 56.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(562) { + animation-delay: 56.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(563) { + animation-delay: 56.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(564) { + animation-delay: 56.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(565) { + animation-delay: 56.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(566) { + animation-delay: 56.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(567) { + animation-delay: 56.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(568) { + animation-delay: 56.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(569) { + animation-delay: 56.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(570) { + animation-delay: 57s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(571) { + animation-delay: 57.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(572) { + animation-delay: 57.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(573) { + animation-delay: 57.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(574) { + animation-delay: 57.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(575) { + animation-delay: 57.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(576) { + animation-delay: 57.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(577) { + animation-delay: 57.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(578) { + animation-delay: 57.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(579) { + animation-delay: 57.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(580) { + animation-delay: 58s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(581) { + animation-delay: 58.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(582) { + animation-delay: 58.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(583) { + animation-delay: 58.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(584) { + animation-delay: 58.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(585) { + animation-delay: 58.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(586) { + animation-delay: 58.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(587) { + animation-delay: 58.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(588) { + animation-delay: 58.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(589) { + animation-delay: 58.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(590) { + animation-delay: 59s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(591) { + animation-delay: 59.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(592) { + animation-delay: 59.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(593) { + animation-delay: 59.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(594) { + animation-delay: 59.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(595) { + animation-delay: 59.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(596) { + animation-delay: 59.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(597) { + animation-delay: 59.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(598) { + animation-delay: 59.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(599) { + animation-delay: 59.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(600) { + animation-delay: 60s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(601) { + animation-delay: 60.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(602) { + animation-delay: 60.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(603) { + animation-delay: 60.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(604) { + animation-delay: 60.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(605) { + animation-delay: 60.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(606) { + animation-delay: 60.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(607) { + animation-delay: 60.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(608) { + animation-delay: 60.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(609) { + animation-delay: 60.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(610) { + animation-delay: 61s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(611) { + animation-delay: 61.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(612) { + animation-delay: 61.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(613) { + animation-delay: 61.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(614) { + animation-delay: 61.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(615) { + animation-delay: 61.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(616) { + animation-delay: 61.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(617) { + animation-delay: 61.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(618) { + animation-delay: 61.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(619) { + animation-delay: 61.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(620) { + animation-delay: 62s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(621) { + animation-delay: 62.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(622) { + animation-delay: 62.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(623) { + animation-delay: 62.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(624) { + animation-delay: 62.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(625) { + animation-delay: 62.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(626) { + animation-delay: 62.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(627) { + animation-delay: 62.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(628) { + animation-delay: 62.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(629) { + animation-delay: 62.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(630) { + animation-delay: 63s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(631) { + animation-delay: 63.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(632) { + animation-delay: 63.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(633) { + animation-delay: 63.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(634) { + animation-delay: 63.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(635) { + animation-delay: 63.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(636) { + animation-delay: 63.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(637) { + animation-delay: 63.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(638) { + animation-delay: 63.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(639) { + animation-delay: 63.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(640) { + animation-delay: 64s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(641) { + animation-delay: 64.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(642) { + animation-delay: 64.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(643) { + animation-delay: 64.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(644) { + animation-delay: 64.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(645) { + animation-delay: 64.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(646) { + animation-delay: 64.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(647) { + animation-delay: 64.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(648) { + animation-delay: 64.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(649) { + animation-delay: 64.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(650) { + animation-delay: 65s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(651) { + animation-delay: 65.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(652) { + animation-delay: 65.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(653) { + animation-delay: 65.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(654) { + animation-delay: 65.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(655) { + animation-delay: 65.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(656) { + animation-delay: 65.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(657) { + animation-delay: 65.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(658) { + animation-delay: 65.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(659) { + animation-delay: 65.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(660) { + animation-delay: 66s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(661) { + animation-delay: 66.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(662) { + animation-delay: 66.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(663) { + animation-delay: 66.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(664) { + animation-delay: 66.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(665) { + animation-delay: 66.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(666) { + animation-delay: 66.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(667) { + animation-delay: 66.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(668) { + animation-delay: 66.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(669) { + animation-delay: 66.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(670) { + animation-delay: 67s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(671) { + animation-delay: 67.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(672) { + animation-delay: 67.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(673) { + animation-delay: 67.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(674) { + animation-delay: 67.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(675) { + animation-delay: 67.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(676) { + animation-delay: 67.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(677) { + animation-delay: 67.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(678) { + animation-delay: 67.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(679) { + animation-delay: 67.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(680) { + animation-delay: 68s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(681) { + animation-delay: 68.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(682) { + animation-delay: 68.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(683) { + animation-delay: 68.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(684) { + animation-delay: 68.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(685) { + animation-delay: 68.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(686) { + animation-delay: 68.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(687) { + animation-delay: 68.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(688) { + animation-delay: 68.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(689) { + animation-delay: 68.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(690) { + animation-delay: 69s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(691) { + animation-delay: 69.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(692) { + animation-delay: 69.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(693) { + animation-delay: 69.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(694) { + animation-delay: 69.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(695) { + animation-delay: 69.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(696) { + animation-delay: 69.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(697) { + animation-delay: 69.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(698) { + animation-delay: 69.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(699) { + animation-delay: 69.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(700) { + animation-delay: 70s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(701) { + animation-delay: 70.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(702) { + animation-delay: 70.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(703) { + animation-delay: 70.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(704) { + animation-delay: 70.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(705) { + animation-delay: 70.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(706) { + animation-delay: 70.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(707) { + animation-delay: 70.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(708) { + animation-delay: 70.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(709) { + animation-delay: 70.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(710) { + animation-delay: 71s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(711) { + animation-delay: 71.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(712) { + animation-delay: 71.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(713) { + animation-delay: 71.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(714) { + animation-delay: 71.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(715) { + animation-delay: 71.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(716) { + animation-delay: 71.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(717) { + animation-delay: 71.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(718) { + animation-delay: 71.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(719) { + animation-delay: 71.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(720) { + animation-delay: 72s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(721) { + animation-delay: 72.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(722) { + animation-delay: 72.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(723) { + animation-delay: 72.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(724) { + animation-delay: 72.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(725) { + animation-delay: 72.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(726) { + animation-delay: 72.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(727) { + animation-delay: 72.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(728) { + animation-delay: 72.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(729) { + animation-delay: 72.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(730) { + animation-delay: 73s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(731) { + animation-delay: 73.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(732) { + animation-delay: 73.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(733) { + animation-delay: 73.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(734) { + animation-delay: 73.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(735) { + animation-delay: 73.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(736) { + animation-delay: 73.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(737) { + animation-delay: 73.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(738) { + animation-delay: 73.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(739) { + animation-delay: 73.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(740) { + animation-delay: 74s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(741) { + animation-delay: 74.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(742) { + animation-delay: 74.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(743) { + animation-delay: 74.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(744) { + animation-delay: 74.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(745) { + animation-delay: 74.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(746) { + animation-delay: 74.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(747) { + animation-delay: 74.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(748) { + animation-delay: 74.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(749) { + animation-delay: 74.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(750) { + animation-delay: 75s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(751) { + animation-delay: 75.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(752) { + animation-delay: 75.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(753) { + animation-delay: 75.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(754) { + animation-delay: 75.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(755) { + animation-delay: 75.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(756) { + animation-delay: 75.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(757) { + animation-delay: 75.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(758) { + animation-delay: 75.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(759) { + animation-delay: 75.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(760) { + animation-delay: 76s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(761) { + animation-delay: 76.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(762) { + animation-delay: 76.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(763) { + animation-delay: 76.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(764) { + animation-delay: 76.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(765) { + animation-delay: 76.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(766) { + animation-delay: 76.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(767) { + animation-delay: 76.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(768) { + animation-delay: 76.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(769) { + animation-delay: 76.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(770) { + animation-delay: 77s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(771) { + animation-delay: 77.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(772) { + animation-delay: 77.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(773) { + animation-delay: 77.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(774) { + animation-delay: 77.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(775) { + animation-delay: 77.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(776) { + animation-delay: 77.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(777) { + animation-delay: 77.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(778) { + animation-delay: 77.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(779) { + animation-delay: 77.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(780) { + animation-delay: 78s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(781) { + animation-delay: 78.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(782) { + animation-delay: 78.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(783) { + animation-delay: 78.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(784) { + animation-delay: 78.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(785) { + animation-delay: 78.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(786) { + animation-delay: 78.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(787) { + animation-delay: 78.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(788) { + animation-delay: 78.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(789) { + animation-delay: 78.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(790) { + animation-delay: 79s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(791) { + animation-delay: 79.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(792) { + animation-delay: 79.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(793) { + animation-delay: 79.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(794) { + animation-delay: 79.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(795) { + animation-delay: 79.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(796) { + animation-delay: 79.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(797) { + animation-delay: 79.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(798) { + animation-delay: 79.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(799) { + animation-delay: 79.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(800) { + animation-delay: 80s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(801) { + animation-delay: 80.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(802) { + animation-delay: 80.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(803) { + animation-delay: 80.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(804) { + animation-delay: 80.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(805) { + animation-delay: 80.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(806) { + animation-delay: 80.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(807) { + animation-delay: 80.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(808) { + animation-delay: 80.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(809) { + animation-delay: 80.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(810) { + animation-delay: 81s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(811) { + animation-delay: 81.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(812) { + animation-delay: 81.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(813) { + animation-delay: 81.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(814) { + animation-delay: 81.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(815) { + animation-delay: 81.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(816) { + animation-delay: 81.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(817) { + animation-delay: 81.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(818) { + animation-delay: 81.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(819) { + animation-delay: 81.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(820) { + animation-delay: 82s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(821) { + animation-delay: 82.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(822) { + animation-delay: 82.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(823) { + animation-delay: 82.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(824) { + animation-delay: 82.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(825) { + animation-delay: 82.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(826) { + animation-delay: 82.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(827) { + animation-delay: 82.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(828) { + animation-delay: 82.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(829) { + animation-delay: 82.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(830) { + animation-delay: 83s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(831) { + animation-delay: 83.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(832) { + animation-delay: 83.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(833) { + animation-delay: 83.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(834) { + animation-delay: 83.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(835) { + animation-delay: 83.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(836) { + animation-delay: 83.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(837) { + animation-delay: 83.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(838) { + animation-delay: 83.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(839) { + animation-delay: 83.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(840) { + animation-delay: 84s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(841) { + animation-delay: 84.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(842) { + animation-delay: 84.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(843) { + animation-delay: 84.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(844) { + animation-delay: 84.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(845) { + animation-delay: 84.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(846) { + animation-delay: 84.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(847) { + animation-delay: 84.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(848) { + animation-delay: 84.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(849) { + animation-delay: 84.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(850) { + animation-delay: 85s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(851) { + animation-delay: 85.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(852) { + animation-delay: 85.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(853) { + animation-delay: 85.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(854) { + animation-delay: 85.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(855) { + animation-delay: 85.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(856) { + animation-delay: 85.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(857) { + animation-delay: 85.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(858) { + animation-delay: 85.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(859) { + animation-delay: 85.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(860) { + animation-delay: 86s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(861) { + animation-delay: 86.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(862) { + animation-delay: 86.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(863) { + animation-delay: 86.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(864) { + animation-delay: 86.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(865) { + animation-delay: 86.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(866) { + animation-delay: 86.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(867) { + animation-delay: 86.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(868) { + animation-delay: 86.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(869) { + animation-delay: 86.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(870) { + animation-delay: 87s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(871) { + animation-delay: 87.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(872) { + animation-delay: 87.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(873) { + animation-delay: 87.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(874) { + animation-delay: 87.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(875) { + animation-delay: 87.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(876) { + animation-delay: 87.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(877) { + animation-delay: 87.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(878) { + animation-delay: 87.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(879) { + animation-delay: 87.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(880) { + animation-delay: 88s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(881) { + animation-delay: 88.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(882) { + animation-delay: 88.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(883) { + animation-delay: 88.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(884) { + animation-delay: 88.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(885) { + animation-delay: 88.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(886) { + animation-delay: 88.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(887) { + animation-delay: 88.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(888) { + animation-delay: 88.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(889) { + animation-delay: 88.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(890) { + animation-delay: 89s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(891) { + animation-delay: 89.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(892) { + animation-delay: 89.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(893) { + animation-delay: 89.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(894) { + animation-delay: 89.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(895) { + animation-delay: 89.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(896) { + animation-delay: 89.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(897) { + animation-delay: 89.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(898) { + animation-delay: 89.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(899) { + animation-delay: 89.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(900) { + animation-delay: 90s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(901) { + animation-delay: 90.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(902) { + animation-delay: 90.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(903) { + animation-delay: 90.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(904) { + animation-delay: 90.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(905) { + animation-delay: 90.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(906) { + animation-delay: 90.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(907) { + animation-delay: 90.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(908) { + animation-delay: 90.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(909) { + animation-delay: 90.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(910) { + animation-delay: 91s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(911) { + animation-delay: 91.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(912) { + animation-delay: 91.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(913) { + animation-delay: 91.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(914) { + animation-delay: 91.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(915) { + animation-delay: 91.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(916) { + animation-delay: 91.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(917) { + animation-delay: 91.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(918) { + animation-delay: 91.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(919) { + animation-delay: 91.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(920) { + animation-delay: 92s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(921) { + animation-delay: 92.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(922) { + animation-delay: 92.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(923) { + animation-delay: 92.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(924) { + animation-delay: 92.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(925) { + animation-delay: 92.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(926) { + animation-delay: 92.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(927) { + animation-delay: 92.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(928) { + animation-delay: 92.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(929) { + animation-delay: 92.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(930) { + animation-delay: 93s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(931) { + animation-delay: 93.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(932) { + animation-delay: 93.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(933) { + animation-delay: 93.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(934) { + animation-delay: 93.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(935) { + animation-delay: 93.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(936) { + animation-delay: 93.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(937) { + animation-delay: 93.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(938) { + animation-delay: 93.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(939) { + animation-delay: 93.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(940) { + animation-delay: 94s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(941) { + animation-delay: 94.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(942) { + animation-delay: 94.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(943) { + animation-delay: 94.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(944) { + animation-delay: 94.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(945) { + animation-delay: 94.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(946) { + animation-delay: 94.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(947) { + animation-delay: 94.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(948) { + animation-delay: 94.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(949) { + animation-delay: 94.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(950) { + animation-delay: 95s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(951) { + animation-delay: 95.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(952) { + animation-delay: 95.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(953) { + animation-delay: 95.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(954) { + animation-delay: 95.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(955) { + animation-delay: 95.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(956) { + animation-delay: 95.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(957) { + animation-delay: 95.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(958) { + animation-delay: 95.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(959) { + animation-delay: 95.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(960) { + animation-delay: 96s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(961) { + animation-delay: 96.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(962) { + animation-delay: 96.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(963) { + animation-delay: 96.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(964) { + animation-delay: 96.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(965) { + animation-delay: 96.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(966) { + animation-delay: 96.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(967) { + animation-delay: 96.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(968) { + animation-delay: 96.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(969) { + animation-delay: 96.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(970) { + animation-delay: 97s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(971) { + animation-delay: 97.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(972) { + animation-delay: 97.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(973) { + animation-delay: 97.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(974) { + animation-delay: 97.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(975) { + animation-delay: 97.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(976) { + animation-delay: 97.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(977) { + animation-delay: 97.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(978) { + animation-delay: 97.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(979) { + animation-delay: 97.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(980) { + animation-delay: 98s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(981) { + animation-delay: 98.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(982) { + animation-delay: 98.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(983) { + animation-delay: 98.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(984) { + animation-delay: 98.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(985) { + animation-delay: 98.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(986) { + animation-delay: 98.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(987) { + animation-delay: 98.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(988) { + animation-delay: 98.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(989) { + animation-delay: 98.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(990) { + animation-delay: 99s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(991) { + animation-delay: 99.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(992) { + animation-delay: 99.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(993) { + animation-delay: 99.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(994) { + animation-delay: 99.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(995) { + animation-delay: 99.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(996) { + animation-delay: 99.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(997) { + animation-delay: 99.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(998) { + animation-delay: 99.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(999) { + animation-delay: 99.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1000) { + animation-delay: 100s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1001) { + animation-delay: 100.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1002) { + animation-delay: 100.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1003) { + animation-delay: 100.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1004) { + animation-delay: 100.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1005) { + animation-delay: 100.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1006) { + animation-delay: 100.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1007) { + animation-delay: 100.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1008) { + animation-delay: 100.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1009) { + animation-delay: 100.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1010) { + animation-delay: 101s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1011) { + animation-delay: 101.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1012) { + animation-delay: 101.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1013) { + animation-delay: 101.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1014) { + animation-delay: 101.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1015) { + animation-delay: 101.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1016) { + animation-delay: 101.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1017) { + animation-delay: 101.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1018) { + animation-delay: 101.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1019) { + animation-delay: 101.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1020) { + animation-delay: 102s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1021) { + animation-delay: 102.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1022) { + animation-delay: 102.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1023) { + animation-delay: 102.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1024) { + animation-delay: 102.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1025) { + animation-delay: 102.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1026) { + animation-delay: 102.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1027) { + animation-delay: 102.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1028) { + animation-delay: 102.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1029) { + animation-delay: 102.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1030) { + animation-delay: 103s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1031) { + animation-delay: 103.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1032) { + animation-delay: 103.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1033) { + animation-delay: 103.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1034) { + animation-delay: 103.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1035) { + animation-delay: 103.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1036) { + animation-delay: 103.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1037) { + animation-delay: 103.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1038) { + animation-delay: 103.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1039) { + animation-delay: 103.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1040) { + animation-delay: 104s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1041) { + animation-delay: 104.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1042) { + animation-delay: 104.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1043) { + animation-delay: 104.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1044) { + animation-delay: 104.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1045) { + animation-delay: 104.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1046) { + animation-delay: 104.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1047) { + animation-delay: 104.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1048) { + animation-delay: 104.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1049) { + animation-delay: 104.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1050) { + animation-delay: 105s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1051) { + animation-delay: 105.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1052) { + animation-delay: 105.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1053) { + animation-delay: 105.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1054) { + animation-delay: 105.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1055) { + animation-delay: 105.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1056) { + animation-delay: 105.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1057) { + animation-delay: 105.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1058) { + animation-delay: 105.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1059) { + animation-delay: 105.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1060) { + animation-delay: 106s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1061) { + animation-delay: 106.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1062) { + animation-delay: 106.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1063) { + animation-delay: 106.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1064) { + animation-delay: 106.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1065) { + animation-delay: 106.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1066) { + animation-delay: 106.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1067) { + animation-delay: 106.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1068) { + animation-delay: 106.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1069) { + animation-delay: 106.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1070) { + animation-delay: 107s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1071) { + animation-delay: 107.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1072) { + animation-delay: 107.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1073) { + animation-delay: 107.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1074) { + animation-delay: 107.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1075) { + animation-delay: 107.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1076) { + animation-delay: 107.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1077) { + animation-delay: 107.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1078) { + animation-delay: 107.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1079) { + animation-delay: 107.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1080) { + animation-delay: 108s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1081) { + animation-delay: 108.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1082) { + animation-delay: 108.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1083) { + animation-delay: 108.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1084) { + animation-delay: 108.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1085) { + animation-delay: 108.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1086) { + animation-delay: 108.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1087) { + animation-delay: 108.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1088) { + animation-delay: 108.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1089) { + animation-delay: 108.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1090) { + animation-delay: 109s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1091) { + animation-delay: 109.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1092) { + animation-delay: 109.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1093) { + animation-delay: 109.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1094) { + animation-delay: 109.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1095) { + animation-delay: 109.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1096) { + animation-delay: 109.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1097) { + animation-delay: 109.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1098) { + animation-delay: 109.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1099) { + animation-delay: 109.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1100) { + animation-delay: 110s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1101) { + animation-delay: 110.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1102) { + animation-delay: 110.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1103) { + animation-delay: 110.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1104) { + animation-delay: 110.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1105) { + animation-delay: 110.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1106) { + animation-delay: 110.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1107) { + animation-delay: 110.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1108) { + animation-delay: 110.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1109) { + animation-delay: 110.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1110) { + animation-delay: 111s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1111) { + animation-delay: 111.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1112) { + animation-delay: 111.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1113) { + animation-delay: 111.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1114) { + animation-delay: 111.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1115) { + animation-delay: 111.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1116) { + animation-delay: 111.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1117) { + animation-delay: 111.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1118) { + animation-delay: 111.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1119) { + animation-delay: 111.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1120) { + animation-delay: 112s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1121) { + animation-delay: 112.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1122) { + animation-delay: 112.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1123) { + animation-delay: 112.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1124) { + animation-delay: 112.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1125) { + animation-delay: 112.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1126) { + animation-delay: 112.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1127) { + animation-delay: 112.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1128) { + animation-delay: 112.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1129) { + animation-delay: 112.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1130) { + animation-delay: 113s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1131) { + animation-delay: 113.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1132) { + animation-delay: 113.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1133) { + animation-delay: 113.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1134) { + animation-delay: 113.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1135) { + animation-delay: 113.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1136) { + animation-delay: 113.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1137) { + animation-delay: 113.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1138) { + animation-delay: 113.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1139) { + animation-delay: 113.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1140) { + animation-delay: 114s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1141) { + animation-delay: 114.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1142) { + animation-delay: 114.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1143) { + animation-delay: 114.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1144) { + animation-delay: 114.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1145) { + animation-delay: 114.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1146) { + animation-delay: 114.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1147) { + animation-delay: 114.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1148) { + animation-delay: 114.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1149) { + animation-delay: 114.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1150) { + animation-delay: 115s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1151) { + animation-delay: 115.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1152) { + animation-delay: 115.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1153) { + animation-delay: 115.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1154) { + animation-delay: 115.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1155) { + animation-delay: 115.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1156) { + animation-delay: 115.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1157) { + animation-delay: 115.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1158) { + animation-delay: 115.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1159) { + animation-delay: 115.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1160) { + animation-delay: 116s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1161) { + animation-delay: 116.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1162) { + animation-delay: 116.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1163) { + animation-delay: 116.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1164) { + animation-delay: 116.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1165) { + animation-delay: 116.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1166) { + animation-delay: 116.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1167) { + animation-delay: 116.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1168) { + animation-delay: 116.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1169) { + animation-delay: 116.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1170) { + animation-delay: 117s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1171) { + animation-delay: 117.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1172) { + animation-delay: 117.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1173) { + animation-delay: 117.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1174) { + animation-delay: 117.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1175) { + animation-delay: 117.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1176) { + animation-delay: 117.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1177) { + animation-delay: 117.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1178) { + animation-delay: 117.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1179) { + animation-delay: 117.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1180) { + animation-delay: 118s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1181) { + animation-delay: 118.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1182) { + animation-delay: 118.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1183) { + animation-delay: 118.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1184) { + animation-delay: 118.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1185) { + animation-delay: 118.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1186) { + animation-delay: 118.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1187) { + animation-delay: 118.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1188) { + animation-delay: 118.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1189) { + animation-delay: 118.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1190) { + animation-delay: 119s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1191) { + animation-delay: 119.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1192) { + animation-delay: 119.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1193) { + animation-delay: 119.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1194) { + animation-delay: 119.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1195) { + animation-delay: 119.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1196) { + animation-delay: 119.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1197) { + animation-delay: 119.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1198) { + animation-delay: 119.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1199) { + animation-delay: 119.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1200) { + animation-delay: 120s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1201) { + animation-delay: 120.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1202) { + animation-delay: 120.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1203) { + animation-delay: 120.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1204) { + animation-delay: 120.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1205) { + animation-delay: 120.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1206) { + animation-delay: 120.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1207) { + animation-delay: 120.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1208) { + animation-delay: 120.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1209) { + animation-delay: 120.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1210) { + animation-delay: 121s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1211) { + animation-delay: 121.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1212) { + animation-delay: 121.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1213) { + animation-delay: 121.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1214) { + animation-delay: 121.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1215) { + animation-delay: 121.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1216) { + animation-delay: 121.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1217) { + animation-delay: 121.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1218) { + animation-delay: 121.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1219) { + animation-delay: 121.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1220) { + animation-delay: 122s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1221) { + animation-delay: 122.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1222) { + animation-delay: 122.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1223) { + animation-delay: 122.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1224) { + animation-delay: 122.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1225) { + animation-delay: 122.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1226) { + animation-delay: 122.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1227) { + animation-delay: 122.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1228) { + animation-delay: 122.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1229) { + animation-delay: 122.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1230) { + animation-delay: 123s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1231) { + animation-delay: 123.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1232) { + animation-delay: 123.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1233) { + animation-delay: 123.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1234) { + animation-delay: 123.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1235) { + animation-delay: 123.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1236) { + animation-delay: 123.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1237) { + animation-delay: 123.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1238) { + animation-delay: 123.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1239) { + animation-delay: 123.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1240) { + animation-delay: 124s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1241) { + animation-delay: 124.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1242) { + animation-delay: 124.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1243) { + animation-delay: 124.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1244) { + animation-delay: 124.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1245) { + animation-delay: 124.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1246) { + animation-delay: 124.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1247) { + animation-delay: 124.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1248) { + animation-delay: 124.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1249) { + animation-delay: 124.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1250) { + animation-delay: 125s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1251) { + animation-delay: 125.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1252) { + animation-delay: 125.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1253) { + animation-delay: 125.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1254) { + animation-delay: 125.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1255) { + animation-delay: 125.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1256) { + animation-delay: 125.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1257) { + animation-delay: 125.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1258) { + animation-delay: 125.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1259) { + animation-delay: 125.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1260) { + animation-delay: 126s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1261) { + animation-delay: 126.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1262) { + animation-delay: 126.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1263) { + animation-delay: 126.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1264) { + animation-delay: 126.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1265) { + animation-delay: 126.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1266) { + animation-delay: 126.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1267) { + animation-delay: 126.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1268) { + animation-delay: 126.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1269) { + animation-delay: 126.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1270) { + animation-delay: 127s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1271) { + animation-delay: 127.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1272) { + animation-delay: 127.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1273) { + animation-delay: 127.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1274) { + animation-delay: 127.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1275) { + animation-delay: 127.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1276) { + animation-delay: 127.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1277) { + animation-delay: 127.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1278) { + animation-delay: 127.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1279) { + animation-delay: 127.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1280) { + animation-delay: 128s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1281) { + animation-delay: 128.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1282) { + animation-delay: 128.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1283) { + animation-delay: 128.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1284) { + animation-delay: 128.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1285) { + animation-delay: 128.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1286) { + animation-delay: 128.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1287) { + animation-delay: 128.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1288) { + animation-delay: 128.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1289) { + animation-delay: 128.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1290) { + animation-delay: 129s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1291) { + animation-delay: 129.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1292) { + animation-delay: 129.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1293) { + animation-delay: 129.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1294) { + animation-delay: 129.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1295) { + animation-delay: 129.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1296) { + animation-delay: 129.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1297) { + animation-delay: 129.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1298) { + animation-delay: 129.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1299) { + animation-delay: 129.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1300) { + animation-delay: 130s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1301) { + animation-delay: 130.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1302) { + animation-delay: 130.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1303) { + animation-delay: 130.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1304) { + animation-delay: 130.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1305) { + animation-delay: 130.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1306) { + animation-delay: 130.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1307) { + animation-delay: 130.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1308) { + animation-delay: 130.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1309) { + animation-delay: 130.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1310) { + animation-delay: 131s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1311) { + animation-delay: 131.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1312) { + animation-delay: 131.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1313) { + animation-delay: 131.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1314) { + animation-delay: 131.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1315) { + animation-delay: 131.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1316) { + animation-delay: 131.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1317) { + animation-delay: 131.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1318) { + animation-delay: 131.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1319) { + animation-delay: 131.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1320) { + animation-delay: 132s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1321) { + animation-delay: 132.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1322) { + animation-delay: 132.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1323) { + animation-delay: 132.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1324) { + animation-delay: 132.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1325) { + animation-delay: 132.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1326) { + animation-delay: 132.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1327) { + animation-delay: 132.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1328) { + animation-delay: 132.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1329) { + animation-delay: 132.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1330) { + animation-delay: 133s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1331) { + animation-delay: 133.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1332) { + animation-delay: 133.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1333) { + animation-delay: 133.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1334) { + animation-delay: 133.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1335) { + animation-delay: 133.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1336) { + animation-delay: 133.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1337) { + animation-delay: 133.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1338) { + animation-delay: 133.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1339) { + animation-delay: 133.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1340) { + animation-delay: 134s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1341) { + animation-delay: 134.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1342) { + animation-delay: 134.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1343) { + animation-delay: 134.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1344) { + animation-delay: 134.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1345) { + animation-delay: 134.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1346) { + animation-delay: 134.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1347) { + animation-delay: 134.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1348) { + animation-delay: 134.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1349) { + animation-delay: 134.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1350) { + animation-delay: 135s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1351) { + animation-delay: 135.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1352) { + animation-delay: 135.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1353) { + animation-delay: 135.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1354) { + animation-delay: 135.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1355) { + animation-delay: 135.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1356) { + animation-delay: 135.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1357) { + animation-delay: 135.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1358) { + animation-delay: 135.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1359) { + animation-delay: 135.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1360) { + animation-delay: 136s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1361) { + animation-delay: 136.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1362) { + animation-delay: 136.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1363) { + animation-delay: 136.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1364) { + animation-delay: 136.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1365) { + animation-delay: 136.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1366) { + animation-delay: 136.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1367) { + animation-delay: 136.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1368) { + animation-delay: 136.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1369) { + animation-delay: 136.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1370) { + animation-delay: 137s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1371) { + animation-delay: 137.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1372) { + animation-delay: 137.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1373) { + animation-delay: 137.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1374) { + animation-delay: 137.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1375) { + animation-delay: 137.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1376) { + animation-delay: 137.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1377) { + animation-delay: 137.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1378) { + animation-delay: 137.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1379) { + animation-delay: 137.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1380) { + animation-delay: 138s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1381) { + animation-delay: 138.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1382) { + animation-delay: 138.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1383) { + animation-delay: 138.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1384) { + animation-delay: 138.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1385) { + animation-delay: 138.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1386) { + animation-delay: 138.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1387) { + animation-delay: 138.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1388) { + animation-delay: 138.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1389) { + animation-delay: 138.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1390) { + animation-delay: 139s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1391) { + animation-delay: 139.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1392) { + animation-delay: 139.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1393) { + animation-delay: 139.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1394) { + animation-delay: 139.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1395) { + animation-delay: 139.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1396) { + animation-delay: 139.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1397) { + animation-delay: 139.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1398) { + animation-delay: 139.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1399) { + animation-delay: 139.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1400) { + animation-delay: 140s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1401) { + animation-delay: 140.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1402) { + animation-delay: 140.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1403) { + animation-delay: 140.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1404) { + animation-delay: 140.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1405) { + animation-delay: 140.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1406) { + animation-delay: 140.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1407) { + animation-delay: 140.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1408) { + animation-delay: 140.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1409) { + animation-delay: 140.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1410) { + animation-delay: 141s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1411) { + animation-delay: 141.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1412) { + animation-delay: 141.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1413) { + animation-delay: 141.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1414) { + animation-delay: 141.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1415) { + animation-delay: 141.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1416) { + animation-delay: 141.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1417) { + animation-delay: 141.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1418) { + animation-delay: 141.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1419) { + animation-delay: 141.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1420) { + animation-delay: 142s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1421) { + animation-delay: 142.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1422) { + animation-delay: 142.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1423) { + animation-delay: 142.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1424) { + animation-delay: 142.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1425) { + animation-delay: 142.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1426) { + animation-delay: 142.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1427) { + animation-delay: 142.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1428) { + animation-delay: 142.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1429) { + animation-delay: 142.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1430) { + animation-delay: 143s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1431) { + animation-delay: 143.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1432) { + animation-delay: 143.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1433) { + animation-delay: 143.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1434) { + animation-delay: 143.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1435) { + animation-delay: 143.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1436) { + animation-delay: 143.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1437) { + animation-delay: 143.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1438) { + animation-delay: 143.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1439) { + animation-delay: 143.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1440) { + animation-delay: 144s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1441) { + animation-delay: 144.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1442) { + animation-delay: 144.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1443) { + animation-delay: 144.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1444) { + animation-delay: 144.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1445) { + animation-delay: 144.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1446) { + animation-delay: 144.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1447) { + animation-delay: 144.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1448) { + animation-delay: 144.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1449) { + animation-delay: 144.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1450) { + animation-delay: 145s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1451) { + animation-delay: 145.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1452) { + animation-delay: 145.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1453) { + animation-delay: 145.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1454) { + animation-delay: 145.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1455) { + animation-delay: 145.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1456) { + animation-delay: 145.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1457) { + animation-delay: 145.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1458) { + animation-delay: 145.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1459) { + animation-delay: 145.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1460) { + animation-delay: 146s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1461) { + animation-delay: 146.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1462) { + animation-delay: 146.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1463) { + animation-delay: 146.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1464) { + animation-delay: 146.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1465) { + animation-delay: 146.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1466) { + animation-delay: 146.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1467) { + animation-delay: 146.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1468) { + animation-delay: 146.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1469) { + animation-delay: 146.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1470) { + animation-delay: 147s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1471) { + animation-delay: 147.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1472) { + animation-delay: 147.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1473) { + animation-delay: 147.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1474) { + animation-delay: 147.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1475) { + animation-delay: 147.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1476) { + animation-delay: 147.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1477) { + animation-delay: 147.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1478) { + animation-delay: 147.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1479) { + animation-delay: 147.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1480) { + animation-delay: 148s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1481) { + animation-delay: 148.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1482) { + animation-delay: 148.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1483) { + animation-delay: 148.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1484) { + animation-delay: 148.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1485) { + animation-delay: 148.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1486) { + animation-delay: 148.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1487) { + animation-delay: 148.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1488) { + animation-delay: 148.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1489) { + animation-delay: 148.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1490) { + animation-delay: 149s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1491) { + animation-delay: 149.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1492) { + animation-delay: 149.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1493) { + animation-delay: 149.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1494) { + animation-delay: 149.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1495) { + animation-delay: 149.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1496) { + animation-delay: 149.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1497) { + animation-delay: 149.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1498) { + animation-delay: 149.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1499) { + animation-delay: 149.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1500) { + animation-delay: 150s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1501) { + animation-delay: 150.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1502) { + animation-delay: 150.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1503) { + animation-delay: 150.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1504) { + animation-delay: 150.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1505) { + animation-delay: 150.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1506) { + animation-delay: 150.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1507) { + animation-delay: 150.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1508) { + animation-delay: 150.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1509) { + animation-delay: 150.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1510) { + animation-delay: 151s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1511) { + animation-delay: 151.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1512) { + animation-delay: 151.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1513) { + animation-delay: 151.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1514) { + animation-delay: 151.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1515) { + animation-delay: 151.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1516) { + animation-delay: 151.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1517) { + animation-delay: 151.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1518) { + animation-delay: 151.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1519) { + animation-delay: 151.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1520) { + animation-delay: 152s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1521) { + animation-delay: 152.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1522) { + animation-delay: 152.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1523) { + animation-delay: 152.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1524) { + animation-delay: 152.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1525) { + animation-delay: 152.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1526) { + animation-delay: 152.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1527) { + animation-delay: 152.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1528) { + animation-delay: 152.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1529) { + animation-delay: 152.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1530) { + animation-delay: 153s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1531) { + animation-delay: 153.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1532) { + animation-delay: 153.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1533) { + animation-delay: 153.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1534) { + animation-delay: 153.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1535) { + animation-delay: 153.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1536) { + animation-delay: 153.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1537) { + animation-delay: 153.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1538) { + animation-delay: 153.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1539) { + animation-delay: 153.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1540) { + animation-delay: 154s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1541) { + animation-delay: 154.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1542) { + animation-delay: 154.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1543) { + animation-delay: 154.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1544) { + animation-delay: 154.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1545) { + animation-delay: 154.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1546) { + animation-delay: 154.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1547) { + animation-delay: 154.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1548) { + animation-delay: 154.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1549) { + animation-delay: 154.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1550) { + animation-delay: 155s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1551) { + animation-delay: 155.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1552) { + animation-delay: 155.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1553) { + animation-delay: 155.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1554) { + animation-delay: 155.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1555) { + animation-delay: 155.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1556) { + animation-delay: 155.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1557) { + animation-delay: 155.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1558) { + animation-delay: 155.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1559) { + animation-delay: 155.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1560) { + animation-delay: 156s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1561) { + animation-delay: 156.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1562) { + animation-delay: 156.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1563) { + animation-delay: 156.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1564) { + animation-delay: 156.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1565) { + animation-delay: 156.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1566) { + animation-delay: 156.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1567) { + animation-delay: 156.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1568) { + animation-delay: 156.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1569) { + animation-delay: 156.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1570) { + animation-delay: 157s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1571) { + animation-delay: 157.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1572) { + animation-delay: 157.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1573) { + animation-delay: 157.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1574) { + animation-delay: 157.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1575) { + animation-delay: 157.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1576) { + animation-delay: 157.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1577) { + animation-delay: 157.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1578) { + animation-delay: 157.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1579) { + animation-delay: 157.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1580) { + animation-delay: 158s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1581) { + animation-delay: 158.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1582) { + animation-delay: 158.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1583) { + animation-delay: 158.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1584) { + animation-delay: 158.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1585) { + animation-delay: 158.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1586) { + animation-delay: 158.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1587) { + animation-delay: 158.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1588) { + animation-delay: 158.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1589) { + animation-delay: 158.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1590) { + animation-delay: 159s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1591) { + animation-delay: 159.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1592) { + animation-delay: 159.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1593) { + animation-delay: 159.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1594) { + animation-delay: 159.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1595) { + animation-delay: 159.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1596) { + animation-delay: 159.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1597) { + animation-delay: 159.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1598) { + animation-delay: 159.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1599) { + animation-delay: 159.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1600) { + animation-delay: 160s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1601) { + animation-delay: 160.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1602) { + animation-delay: 160.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1603) { + animation-delay: 160.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1604) { + animation-delay: 160.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1605) { + animation-delay: 160.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1606) { + animation-delay: 160.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1607) { + animation-delay: 160.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1608) { + animation-delay: 160.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1609) { + animation-delay: 160.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1610) { + animation-delay: 161s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1611) { + animation-delay: 161.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1612) { + animation-delay: 161.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1613) { + animation-delay: 161.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1614) { + animation-delay: 161.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1615) { + animation-delay: 161.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1616) { + animation-delay: 161.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1617) { + animation-delay: 161.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1618) { + animation-delay: 161.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1619) { + animation-delay: 161.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1620) { + animation-delay: 162s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1621) { + animation-delay: 162.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1622) { + animation-delay: 162.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1623) { + animation-delay: 162.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1624) { + animation-delay: 162.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1625) { + animation-delay: 162.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1626) { + animation-delay: 162.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1627) { + animation-delay: 162.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1628) { + animation-delay: 162.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1629) { + animation-delay: 162.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1630) { + animation-delay: 163s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1631) { + animation-delay: 163.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1632) { + animation-delay: 163.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1633) { + animation-delay: 163.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1634) { + animation-delay: 163.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1635) { + animation-delay: 163.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1636) { + animation-delay: 163.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1637) { + animation-delay: 163.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1638) { + animation-delay: 163.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1639) { + animation-delay: 163.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1640) { + animation-delay: 164s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1641) { + animation-delay: 164.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1642) { + animation-delay: 164.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1643) { + animation-delay: 164.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1644) { + animation-delay: 164.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1645) { + animation-delay: 164.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1646) { + animation-delay: 164.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1647) { + animation-delay: 164.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1648) { + animation-delay: 164.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1649) { + animation-delay: 164.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1650) { + animation-delay: 165s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1651) { + animation-delay: 165.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1652) { + animation-delay: 165.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1653) { + animation-delay: 165.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1654) { + animation-delay: 165.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1655) { + animation-delay: 165.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1656) { + animation-delay: 165.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1657) { + animation-delay: 165.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1658) { + animation-delay: 165.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1659) { + animation-delay: 165.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1660) { + animation-delay: 166s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1661) { + animation-delay: 166.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1662) { + animation-delay: 166.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1663) { + animation-delay: 166.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1664) { + animation-delay: 166.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1665) { + animation-delay: 166.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1666) { + animation-delay: 166.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1667) { + animation-delay: 166.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1668) { + animation-delay: 166.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1669) { + animation-delay: 166.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1670) { + animation-delay: 167s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1671) { + animation-delay: 167.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1672) { + animation-delay: 167.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1673) { + animation-delay: 167.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1674) { + animation-delay: 167.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1675) { + animation-delay: 167.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1676) { + animation-delay: 167.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1677) { + animation-delay: 167.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1678) { + animation-delay: 167.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1679) { + animation-delay: 167.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1680) { + animation-delay: 168s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1681) { + animation-delay: 168.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1682) { + animation-delay: 168.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1683) { + animation-delay: 168.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1684) { + animation-delay: 168.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1685) { + animation-delay: 168.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1686) { + animation-delay: 168.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1687) { + animation-delay: 168.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1688) { + animation-delay: 168.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1689) { + animation-delay: 168.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1690) { + animation-delay: 169s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1691) { + animation-delay: 169.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1692) { + animation-delay: 169.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1693) { + animation-delay: 169.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1694) { + animation-delay: 169.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1695) { + animation-delay: 169.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1696) { + animation-delay: 169.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1697) { + animation-delay: 169.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1698) { + animation-delay: 169.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1699) { + animation-delay: 169.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1700) { + animation-delay: 170s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1701) { + animation-delay: 170.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1702) { + animation-delay: 170.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1703) { + animation-delay: 170.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1704) { + animation-delay: 170.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1705) { + animation-delay: 170.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1706) { + animation-delay: 170.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1707) { + animation-delay: 170.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1708) { + animation-delay: 170.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1709) { + animation-delay: 170.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1710) { + animation-delay: 171s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1711) { + animation-delay: 171.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1712) { + animation-delay: 171.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1713) { + animation-delay: 171.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1714) { + animation-delay: 171.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1715) { + animation-delay: 171.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1716) { + animation-delay: 171.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1717) { + animation-delay: 171.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1718) { + animation-delay: 171.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1719) { + animation-delay: 171.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1720) { + animation-delay: 172s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1721) { + animation-delay: 172.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1722) { + animation-delay: 172.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1723) { + animation-delay: 172.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1724) { + animation-delay: 172.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1725) { + animation-delay: 172.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1726) { + animation-delay: 172.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1727) { + animation-delay: 172.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1728) { + animation-delay: 172.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1729) { + animation-delay: 172.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1730) { + animation-delay: 173s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1731) { + animation-delay: 173.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1732) { + animation-delay: 173.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1733) { + animation-delay: 173.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1734) { + animation-delay: 173.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1735) { + animation-delay: 173.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1736) { + animation-delay: 173.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1737) { + animation-delay: 173.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1738) { + animation-delay: 173.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1739) { + animation-delay: 173.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1740) { + animation-delay: 174s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1741) { + animation-delay: 174.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1742) { + animation-delay: 174.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1743) { + animation-delay: 174.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1744) { + animation-delay: 174.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1745) { + animation-delay: 174.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1746) { + animation-delay: 174.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1747) { + animation-delay: 174.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1748) { + animation-delay: 174.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1749) { + animation-delay: 174.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1750) { + animation-delay: 175s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1751) { + animation-delay: 175.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1752) { + animation-delay: 175.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1753) { + animation-delay: 175.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1754) { + animation-delay: 175.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1755) { + animation-delay: 175.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1756) { + animation-delay: 175.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1757) { + animation-delay: 175.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1758) { + animation-delay: 175.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1759) { + animation-delay: 175.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1760) { + animation-delay: 176s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1761) { + animation-delay: 176.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1762) { + animation-delay: 176.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1763) { + animation-delay: 176.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1764) { + animation-delay: 176.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1765) { + animation-delay: 176.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1766) { + animation-delay: 176.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1767) { + animation-delay: 176.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1768) { + animation-delay: 176.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1769) { + animation-delay: 176.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1770) { + animation-delay: 177s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1771) { + animation-delay: 177.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1772) { + animation-delay: 177.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1773) { + animation-delay: 177.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1774) { + animation-delay: 177.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1775) { + animation-delay: 177.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1776) { + animation-delay: 177.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1777) { + animation-delay: 177.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1778) { + animation-delay: 177.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1779) { + animation-delay: 177.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1780) { + animation-delay: 178s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1781) { + animation-delay: 178.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1782) { + animation-delay: 178.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1783) { + animation-delay: 178.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1784) { + animation-delay: 178.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1785) { + animation-delay: 178.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1786) { + animation-delay: 178.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1787) { + animation-delay: 178.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1788) { + animation-delay: 178.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1789) { + animation-delay: 178.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1790) { + animation-delay: 179s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1791) { + animation-delay: 179.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1792) { + animation-delay: 179.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1793) { + animation-delay: 179.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1794) { + animation-delay: 179.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1795) { + animation-delay: 179.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1796) { + animation-delay: 179.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1797) { + animation-delay: 179.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1798) { + animation-delay: 179.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1799) { + animation-delay: 179.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1800) { + animation-delay: 180s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1801) { + animation-delay: 180.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1802) { + animation-delay: 180.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1803) { + animation-delay: 180.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1804) { + animation-delay: 180.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1805) { + animation-delay: 180.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1806) { + animation-delay: 180.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1807) { + animation-delay: 180.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1808) { + animation-delay: 180.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1809) { + animation-delay: 180.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1810) { + animation-delay: 181s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1811) { + animation-delay: 181.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1812) { + animation-delay: 181.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1813) { + animation-delay: 181.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1814) { + animation-delay: 181.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1815) { + animation-delay: 181.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1816) { + animation-delay: 181.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1817) { + animation-delay: 181.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1818) { + animation-delay: 181.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1819) { + animation-delay: 181.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1820) { + animation-delay: 182s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1821) { + animation-delay: 182.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1822) { + animation-delay: 182.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1823) { + animation-delay: 182.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1824) { + animation-delay: 182.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1825) { + animation-delay: 182.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1826) { + animation-delay: 182.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1827) { + animation-delay: 182.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1828) { + animation-delay: 182.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1829) { + animation-delay: 182.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1830) { + animation-delay: 183s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1831) { + animation-delay: 183.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1832) { + animation-delay: 183.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1833) { + animation-delay: 183.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1834) { + animation-delay: 183.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1835) { + animation-delay: 183.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1836) { + animation-delay: 183.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1837) { + animation-delay: 183.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1838) { + animation-delay: 183.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1839) { + animation-delay: 183.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1840) { + animation-delay: 184s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1841) { + animation-delay: 184.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1842) { + animation-delay: 184.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1843) { + animation-delay: 184.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1844) { + animation-delay: 184.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1845) { + animation-delay: 184.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1846) { + animation-delay: 184.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1847) { + animation-delay: 184.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1848) { + animation-delay: 184.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1849) { + animation-delay: 184.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1850) { + animation-delay: 185s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1851) { + animation-delay: 185.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1852) { + animation-delay: 185.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1853) { + animation-delay: 185.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1854) { + animation-delay: 185.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1855) { + animation-delay: 185.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1856) { + animation-delay: 185.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1857) { + animation-delay: 185.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1858) { + animation-delay: 185.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1859) { + animation-delay: 185.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1860) { + animation-delay: 186s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1861) { + animation-delay: 186.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1862) { + animation-delay: 186.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1863) { + animation-delay: 186.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1864) { + animation-delay: 186.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1865) { + animation-delay: 186.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1866) { + animation-delay: 186.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1867) { + animation-delay: 186.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1868) { + animation-delay: 186.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1869) { + animation-delay: 186.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1870) { + animation-delay: 187s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1871) { + animation-delay: 187.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1872) { + animation-delay: 187.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1873) { + animation-delay: 187.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1874) { + animation-delay: 187.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1875) { + animation-delay: 187.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1876) { + animation-delay: 187.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1877) { + animation-delay: 187.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1878) { + animation-delay: 187.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1879) { + animation-delay: 187.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1880) { + animation-delay: 188s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1881) { + animation-delay: 188.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1882) { + animation-delay: 188.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1883) { + animation-delay: 188.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1884) { + animation-delay: 188.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1885) { + animation-delay: 188.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1886) { + animation-delay: 188.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1887) { + animation-delay: 188.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1888) { + animation-delay: 188.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1889) { + animation-delay: 188.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1890) { + animation-delay: 189s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1891) { + animation-delay: 189.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1892) { + animation-delay: 189.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1893) { + animation-delay: 189.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1894) { + animation-delay: 189.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1895) { + animation-delay: 189.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1896) { + animation-delay: 189.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1897) { + animation-delay: 189.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1898) { + animation-delay: 189.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1899) { + animation-delay: 189.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1900) { + animation-delay: 190s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1901) { + animation-delay: 190.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1902) { + animation-delay: 190.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1903) { + animation-delay: 190.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1904) { + animation-delay: 190.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1905) { + animation-delay: 190.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1906) { + animation-delay: 190.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1907) { + animation-delay: 190.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1908) { + animation-delay: 190.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1909) { + animation-delay: 190.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1910) { + animation-delay: 191s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1911) { + animation-delay: 191.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1912) { + animation-delay: 191.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1913) { + animation-delay: 191.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1914) { + animation-delay: 191.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1915) { + animation-delay: 191.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1916) { + animation-delay: 191.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1917) { + animation-delay: 191.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1918) { + animation-delay: 191.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1919) { + animation-delay: 191.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1920) { + animation-delay: 192s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1921) { + animation-delay: 192.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1922) { + animation-delay: 192.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1923) { + animation-delay: 192.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1924) { + animation-delay: 192.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1925) { + animation-delay: 192.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1926) { + animation-delay: 192.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1927) { + animation-delay: 192.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1928) { + animation-delay: 192.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1929) { + animation-delay: 192.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1930) { + animation-delay: 193s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1931) { + animation-delay: 193.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1932) { + animation-delay: 193.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1933) { + animation-delay: 193.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1934) { + animation-delay: 193.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1935) { + animation-delay: 193.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1936) { + animation-delay: 193.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1937) { + animation-delay: 193.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1938) { + animation-delay: 193.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1939) { + animation-delay: 193.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1940) { + animation-delay: 194s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1941) { + animation-delay: 194.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1942) { + animation-delay: 194.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1943) { + animation-delay: 194.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1944) { + animation-delay: 194.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1945) { + animation-delay: 194.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1946) { + animation-delay: 194.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1947) { + animation-delay: 194.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1948) { + animation-delay: 194.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1949) { + animation-delay: 194.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1950) { + animation-delay: 195s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1951) { + animation-delay: 195.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1952) { + animation-delay: 195.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1953) { + animation-delay: 195.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1954) { + animation-delay: 195.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1955) { + animation-delay: 195.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1956) { + animation-delay: 195.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1957) { + animation-delay: 195.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1958) { + animation-delay: 195.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1959) { + animation-delay: 195.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1960) { + animation-delay: 196s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1961) { + animation-delay: 196.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1962) { + animation-delay: 196.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1963) { + animation-delay: 196.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1964) { + animation-delay: 196.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1965) { + animation-delay: 196.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1966) { + animation-delay: 196.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1967) { + animation-delay: 196.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1968) { + animation-delay: 196.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1969) { + animation-delay: 196.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1970) { + animation-delay: 197s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1971) { + animation-delay: 197.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1972) { + animation-delay: 197.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1973) { + animation-delay: 197.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1974) { + animation-delay: 197.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1975) { + animation-delay: 197.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1976) { + animation-delay: 197.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1977) { + animation-delay: 197.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1978) { + animation-delay: 197.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1979) { + animation-delay: 197.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1980) { + animation-delay: 198s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1981) { + animation-delay: 198.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1982) { + animation-delay: 198.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1983) { + animation-delay: 198.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1984) { + animation-delay: 198.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1985) { + animation-delay: 198.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1986) { + animation-delay: 198.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1987) { + animation-delay: 198.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1988) { + animation-delay: 198.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1989) { + animation-delay: 198.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1990) { + animation-delay: 199s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1991) { + animation-delay: 199.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1992) { + animation-delay: 199.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1993) { + animation-delay: 199.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1994) { + animation-delay: 199.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1995) { + animation-delay: 199.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1996) { + animation-delay: 199.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1997) { + animation-delay: 199.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1998) { + animation-delay: 199.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1999) { + animation-delay: 199.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2000) { + animation-delay: 200s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2001) { + animation-delay: 200.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2002) { + animation-delay: 200.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2003) { + animation-delay: 200.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2004) { + animation-delay: 200.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2005) { + animation-delay: 200.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2006) { + animation-delay: 200.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2007) { + animation-delay: 200.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2008) { + animation-delay: 200.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2009) { + animation-delay: 200.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2010) { + animation-delay: 201s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2011) { + animation-delay: 201.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2012) { + animation-delay: 201.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2013) { + animation-delay: 201.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2014) { + animation-delay: 201.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2015) { + animation-delay: 201.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2016) { + animation-delay: 201.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2017) { + animation-delay: 201.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2018) { + animation-delay: 201.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2019) { + animation-delay: 201.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2020) { + animation-delay: 202s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2021) { + animation-delay: 202.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2022) { + animation-delay: 202.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2023) { + animation-delay: 202.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2024) { + animation-delay: 202.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2025) { + animation-delay: 202.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2026) { + animation-delay: 202.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2027) { + animation-delay: 202.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2028) { + animation-delay: 202.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2029) { + animation-delay: 202.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2030) { + animation-delay: 203s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2031) { + animation-delay: 203.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2032) { + animation-delay: 203.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2033) { + animation-delay: 203.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2034) { + animation-delay: 203.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2035) { + animation-delay: 203.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2036) { + animation-delay: 203.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2037) { + animation-delay: 203.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2038) { + animation-delay: 203.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2039) { + animation-delay: 203.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2040) { + animation-delay: 204s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2041) { + animation-delay: 204.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2042) { + animation-delay: 204.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2043) { + animation-delay: 204.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2044) { + animation-delay: 204.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2045) { + animation-delay: 204.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2046) { + animation-delay: 204.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2047) { + animation-delay: 204.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2048) { + animation-delay: 204.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2049) { + animation-delay: 204.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2050) { + animation-delay: 205s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2051) { + animation-delay: 205.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2052) { + animation-delay: 205.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2053) { + animation-delay: 205.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2054) { + animation-delay: 205.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2055) { + animation-delay: 205.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2056) { + animation-delay: 205.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2057) { + animation-delay: 205.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2058) { + animation-delay: 205.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2059) { + animation-delay: 205.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2060) { + animation-delay: 206s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2061) { + animation-delay: 206.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2062) { + animation-delay: 206.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2063) { + animation-delay: 206.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2064) { + animation-delay: 206.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2065) { + animation-delay: 206.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2066) { + animation-delay: 206.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2067) { + animation-delay: 206.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2068) { + animation-delay: 206.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2069) { + animation-delay: 206.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2070) { + animation-delay: 207s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2071) { + animation-delay: 207.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2072) { + animation-delay: 207.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2073) { + animation-delay: 207.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2074) { + animation-delay: 207.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2075) { + animation-delay: 207.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2076) { + animation-delay: 207.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2077) { + animation-delay: 207.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2078) { + animation-delay: 207.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2079) { + animation-delay: 207.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2080) { + animation-delay: 208s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2081) { + animation-delay: 208.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2082) { + animation-delay: 208.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2083) { + animation-delay: 208.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2084) { + animation-delay: 208.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2085) { + animation-delay: 208.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2086) { + animation-delay: 208.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2087) { + animation-delay: 208.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2088) { + animation-delay: 208.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2089) { + animation-delay: 208.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2090) { + animation-delay: 209s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2091) { + animation-delay: 209.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2092) { + animation-delay: 209.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2093) { + animation-delay: 209.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2094) { + animation-delay: 209.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2095) { + animation-delay: 209.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2096) { + animation-delay: 209.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2097) { + animation-delay: 209.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2098) { + animation-delay: 209.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2099) { + animation-delay: 209.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2100) { + animation-delay: 210s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2101) { + animation-delay: 210.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2102) { + animation-delay: 210.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2103) { + animation-delay: 210.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2104) { + animation-delay: 210.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2105) { + animation-delay: 210.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2106) { + animation-delay: 210.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2107) { + animation-delay: 210.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2108) { + animation-delay: 210.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2109) { + animation-delay: 210.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2110) { + animation-delay: 211s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2111) { + animation-delay: 211.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2112) { + animation-delay: 211.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2113) { + animation-delay: 211.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2114) { + animation-delay: 211.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2115) { + animation-delay: 211.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2116) { + animation-delay: 211.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2117) { + animation-delay: 211.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2118) { + animation-delay: 211.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2119) { + animation-delay: 211.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2120) { + animation-delay: 212s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2121) { + animation-delay: 212.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2122) { + animation-delay: 212.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2123) { + animation-delay: 212.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2124) { + animation-delay: 212.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2125) { + animation-delay: 212.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2126) { + animation-delay: 212.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2127) { + animation-delay: 212.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2128) { + animation-delay: 212.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2129) { + animation-delay: 212.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2130) { + animation-delay: 213s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2131) { + animation-delay: 213.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2132) { + animation-delay: 213.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2133) { + animation-delay: 213.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2134) { + animation-delay: 213.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2135) { + animation-delay: 213.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2136) { + animation-delay: 213.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2137) { + animation-delay: 213.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2138) { + animation-delay: 213.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2139) { + animation-delay: 213.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2140) { + animation-delay: 214s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2141) { + animation-delay: 214.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2142) { + animation-delay: 214.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2143) { + animation-delay: 214.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2144) { + animation-delay: 214.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2145) { + animation-delay: 214.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2146) { + animation-delay: 214.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2147) { + animation-delay: 214.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2148) { + animation-delay: 214.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2149) { + animation-delay: 214.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2150) { + animation-delay: 215s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2151) { + animation-delay: 215.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2152) { + animation-delay: 215.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2153) { + animation-delay: 215.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2154) { + animation-delay: 215.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2155) { + animation-delay: 215.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2156) { + animation-delay: 215.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2157) { + animation-delay: 215.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2158) { + animation-delay: 215.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2159) { + animation-delay: 215.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2160) { + animation-delay: 216s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2161) { + animation-delay: 216.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2162) { + animation-delay: 216.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2163) { + animation-delay: 216.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2164) { + animation-delay: 216.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2165) { + animation-delay: 216.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2166) { + animation-delay: 216.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2167) { + animation-delay: 216.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2168) { + animation-delay: 216.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2169) { + animation-delay: 216.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2170) { + animation-delay: 217s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2171) { + animation-delay: 217.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2172) { + animation-delay: 217.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2173) { + animation-delay: 217.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2174) { + animation-delay: 217.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2175) { + animation-delay: 217.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2176) { + animation-delay: 217.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2177) { + animation-delay: 217.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2178) { + animation-delay: 217.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2179) { + animation-delay: 217.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2180) { + animation-delay: 218s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2181) { + animation-delay: 218.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2182) { + animation-delay: 218.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2183) { + animation-delay: 218.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2184) { + animation-delay: 218.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2185) { + animation-delay: 218.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2186) { + animation-delay: 218.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2187) { + animation-delay: 218.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2188) { + animation-delay: 218.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2189) { + animation-delay: 218.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2190) { + animation-delay: 219s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2191) { + animation-delay: 219.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2192) { + animation-delay: 219.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2193) { + animation-delay: 219.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2194) { + animation-delay: 219.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2195) { + animation-delay: 219.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2196) { + animation-delay: 219.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2197) { + animation-delay: 219.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2198) { + animation-delay: 219.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2199) { + animation-delay: 219.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2200) { + animation-delay: 220s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2201) { + animation-delay: 220.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2202) { + animation-delay: 220.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2203) { + animation-delay: 220.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2204) { + animation-delay: 220.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2205) { + animation-delay: 220.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2206) { + animation-delay: 220.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2207) { + animation-delay: 220.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2208) { + animation-delay: 220.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2209) { + animation-delay: 220.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2210) { + animation-delay: 221s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2211) { + animation-delay: 221.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2212) { + animation-delay: 221.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2213) { + animation-delay: 221.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2214) { + animation-delay: 221.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2215) { + animation-delay: 221.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2216) { + animation-delay: 221.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2217) { + animation-delay: 221.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2218) { + animation-delay: 221.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2219) { + animation-delay: 221.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2220) { + animation-delay: 222s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2221) { + animation-delay: 222.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2222) { + animation-delay: 222.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2223) { + animation-delay: 222.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2224) { + animation-delay: 222.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2225) { + animation-delay: 222.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2226) { + animation-delay: 222.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2227) { + animation-delay: 222.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2228) { + animation-delay: 222.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2229) { + animation-delay: 222.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2230) { + animation-delay: 223s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2231) { + animation-delay: 223.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2232) { + animation-delay: 223.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2233) { + animation-delay: 223.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2234) { + animation-delay: 223.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2235) { + animation-delay: 223.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2236) { + animation-delay: 223.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2237) { + animation-delay: 223.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2238) { + animation-delay: 223.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2239) { + animation-delay: 223.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2240) { + animation-delay: 224s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2241) { + animation-delay: 224.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2242) { + animation-delay: 224.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2243) { + animation-delay: 224.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2244) { + animation-delay: 224.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2245) { + animation-delay: 224.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2246) { + animation-delay: 224.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2247) { + animation-delay: 224.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2248) { + animation-delay: 224.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2249) { + animation-delay: 224.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2250) { + animation-delay: 225s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2251) { + animation-delay: 225.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2252) { + animation-delay: 225.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2253) { + animation-delay: 225.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2254) { + animation-delay: 225.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2255) { + animation-delay: 225.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2256) { + animation-delay: 225.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2257) { + animation-delay: 225.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2258) { + animation-delay: 225.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2259) { + animation-delay: 225.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2260) { + animation-delay: 226s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2261) { + animation-delay: 226.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2262) { + animation-delay: 226.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2263) { + animation-delay: 226.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2264) { + animation-delay: 226.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2265) { + animation-delay: 226.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2266) { + animation-delay: 226.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2267) { + animation-delay: 226.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2268) { + animation-delay: 226.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2269) { + animation-delay: 226.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2270) { + animation-delay: 227s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2271) { + animation-delay: 227.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2272) { + animation-delay: 227.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2273) { + animation-delay: 227.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2274) { + animation-delay: 227.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2275) { + animation-delay: 227.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2276) { + animation-delay: 227.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2277) { + animation-delay: 227.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2278) { + animation-delay: 227.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2279) { + animation-delay: 227.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2280) { + animation-delay: 228s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2281) { + animation-delay: 228.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2282) { + animation-delay: 228.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2283) { + animation-delay: 228.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2284) { + animation-delay: 228.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2285) { + animation-delay: 228.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2286) { + animation-delay: 228.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2287) { + animation-delay: 228.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2288) { + animation-delay: 228.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2289) { + animation-delay: 228.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2290) { + animation-delay: 229s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2291) { + animation-delay: 229.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2292) { + animation-delay: 229.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2293) { + animation-delay: 229.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2294) { + animation-delay: 229.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2295) { + animation-delay: 229.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2296) { + animation-delay: 229.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2297) { + animation-delay: 229.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2298) { + animation-delay: 229.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2299) { + animation-delay: 229.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2300) { + animation-delay: 230s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2301) { + animation-delay: 230.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2302) { + animation-delay: 230.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2303) { + animation-delay: 230.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2304) { + animation-delay: 230.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2305) { + animation-delay: 230.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2306) { + animation-delay: 230.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2307) { + animation-delay: 230.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2308) { + animation-delay: 230.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2309) { + animation-delay: 230.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2310) { + animation-delay: 231s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2311) { + animation-delay: 231.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2312) { + animation-delay: 231.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2313) { + animation-delay: 231.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2314) { + animation-delay: 231.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2315) { + animation-delay: 231.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2316) { + animation-delay: 231.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2317) { + animation-delay: 231.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2318) { + animation-delay: 231.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2319) { + animation-delay: 231.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2320) { + animation-delay: 232s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2321) { + animation-delay: 232.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2322) { + animation-delay: 232.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2323) { + animation-delay: 232.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2324) { + animation-delay: 232.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2325) { + animation-delay: 232.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2326) { + animation-delay: 232.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2327) { + animation-delay: 232.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2328) { + animation-delay: 232.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2329) { + animation-delay: 232.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2330) { + animation-delay: 233s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2331) { + animation-delay: 233.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2332) { + animation-delay: 233.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2333) { + animation-delay: 233.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2334) { + animation-delay: 233.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2335) { + animation-delay: 233.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2336) { + animation-delay: 233.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2337) { + animation-delay: 233.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2338) { + animation-delay: 233.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2339) { + animation-delay: 233.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2340) { + animation-delay: 234s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2341) { + animation-delay: 234.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2342) { + animation-delay: 234.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2343) { + animation-delay: 234.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2344) { + animation-delay: 234.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2345) { + animation-delay: 234.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2346) { + animation-delay: 234.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2347) { + animation-delay: 234.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2348) { + animation-delay: 234.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2349) { + animation-delay: 234.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2350) { + animation-delay: 235s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2351) { + animation-delay: 235.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2352) { + animation-delay: 235.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2353) { + animation-delay: 235.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2354) { + animation-delay: 235.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2355) { + animation-delay: 235.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2356) { + animation-delay: 235.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2357) { + animation-delay: 235.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2358) { + animation-delay: 235.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2359) { + animation-delay: 235.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2360) { + animation-delay: 236s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2361) { + animation-delay: 236.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2362) { + animation-delay: 236.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2363) { + animation-delay: 236.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2364) { + animation-delay: 236.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2365) { + animation-delay: 236.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2366) { + animation-delay: 236.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2367) { + animation-delay: 236.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2368) { + animation-delay: 236.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2369) { + animation-delay: 236.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2370) { + animation-delay: 237s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2371) { + animation-delay: 237.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2372) { + animation-delay: 237.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2373) { + animation-delay: 237.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2374) { + animation-delay: 237.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2375) { + animation-delay: 237.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2376) { + animation-delay: 237.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2377) { + animation-delay: 237.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2378) { + animation-delay: 237.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2379) { + animation-delay: 237.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2380) { + animation-delay: 238s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2381) { + animation-delay: 238.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2382) { + animation-delay: 238.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2383) { + animation-delay: 238.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2384) { + animation-delay: 238.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2385) { + animation-delay: 238.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2386) { + animation-delay: 238.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2387) { + animation-delay: 238.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2388) { + animation-delay: 238.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2389) { + animation-delay: 238.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2390) { + animation-delay: 239s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2391) { + animation-delay: 239.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2392) { + animation-delay: 239.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2393) { + animation-delay: 239.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2394) { + animation-delay: 239.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2395) { + animation-delay: 239.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2396) { + animation-delay: 239.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2397) { + animation-delay: 239.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2398) { + animation-delay: 239.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2399) { + animation-delay: 239.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2400) { + animation-delay: 240s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2401) { + animation-delay: 240.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2402) { + animation-delay: 240.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2403) { + animation-delay: 240.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2404) { + animation-delay: 240.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2405) { + animation-delay: 240.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2406) { + animation-delay: 240.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2407) { + animation-delay: 240.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2408) { + animation-delay: 240.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2409) { + animation-delay: 240.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2410) { + animation-delay: 241s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2411) { + animation-delay: 241.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2412) { + animation-delay: 241.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2413) { + animation-delay: 241.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2414) { + animation-delay: 241.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2415) { + animation-delay: 241.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2416) { + animation-delay: 241.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2417) { + animation-delay: 241.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2418) { + animation-delay: 241.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2419) { + animation-delay: 241.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2420) { + animation-delay: 242s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2421) { + animation-delay: 242.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2422) { + animation-delay: 242.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2423) { + animation-delay: 242.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2424) { + animation-delay: 242.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2425) { + animation-delay: 242.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2426) { + animation-delay: 242.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2427) { + animation-delay: 242.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2428) { + animation-delay: 242.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2429) { + animation-delay: 242.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2430) { + animation-delay: 243s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2431) { + animation-delay: 243.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2432) { + animation-delay: 243.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2433) { + animation-delay: 243.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2434) { + animation-delay: 243.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2435) { + animation-delay: 243.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2436) { + animation-delay: 243.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2437) { + animation-delay: 243.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2438) { + animation-delay: 243.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2439) { + animation-delay: 243.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2440) { + animation-delay: 244s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2441) { + animation-delay: 244.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2442) { + animation-delay: 244.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2443) { + animation-delay: 244.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2444) { + animation-delay: 244.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2445) { + animation-delay: 244.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2446) { + animation-delay: 244.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2447) { + animation-delay: 244.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2448) { + animation-delay: 244.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2449) { + animation-delay: 244.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2450) { + animation-delay: 245s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2451) { + animation-delay: 245.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2452) { + animation-delay: 245.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2453) { + animation-delay: 245.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2454) { + animation-delay: 245.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2455) { + animation-delay: 245.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2456) { + animation-delay: 245.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2457) { + animation-delay: 245.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2458) { + animation-delay: 245.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2459) { + animation-delay: 245.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2460) { + animation-delay: 246s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2461) { + animation-delay: 246.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2462) { + animation-delay: 246.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2463) { + animation-delay: 246.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2464) { + animation-delay: 246.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2465) { + animation-delay: 246.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2466) { + animation-delay: 246.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2467) { + animation-delay: 246.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2468) { + animation-delay: 246.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2469) { + animation-delay: 246.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2470) { + animation-delay: 247s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2471) { + animation-delay: 247.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2472) { + animation-delay: 247.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2473) { + animation-delay: 247.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2474) { + animation-delay: 247.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2475) { + animation-delay: 247.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2476) { + animation-delay: 247.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2477) { + animation-delay: 247.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2478) { + animation-delay: 247.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2479) { + animation-delay: 247.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2480) { + animation-delay: 248s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2481) { + animation-delay: 248.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2482) { + animation-delay: 248.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2483) { + animation-delay: 248.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2484) { + animation-delay: 248.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2485) { + animation-delay: 248.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2486) { + animation-delay: 248.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2487) { + animation-delay: 248.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2488) { + animation-delay: 248.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2489) { + animation-delay: 248.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2490) { + animation-delay: 249s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2491) { + animation-delay: 249.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2492) { + animation-delay: 249.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2493) { + animation-delay: 249.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2494) { + animation-delay: 249.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2495) { + animation-delay: 249.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2496) { + animation-delay: 249.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2497) { + animation-delay: 249.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2498) { + animation-delay: 249.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2499) { + animation-delay: 249.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2500) { + animation-delay: 250s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2501) { + animation-delay: 250.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2502) { + animation-delay: 250.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2503) { + animation-delay: 250.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2504) { + animation-delay: 250.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2505) { + animation-delay: 250.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2506) { + animation-delay: 250.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2507) { + animation-delay: 250.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2508) { + animation-delay: 250.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2509) { + animation-delay: 250.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2510) { + animation-delay: 251s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2511) { + animation-delay: 251.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2512) { + animation-delay: 251.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2513) { + animation-delay: 251.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2514) { + animation-delay: 251.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2515) { + animation-delay: 251.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2516) { + animation-delay: 251.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2517) { + animation-delay: 251.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2518) { + animation-delay: 251.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2519) { + animation-delay: 251.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2520) { + animation-delay: 252s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2521) { + animation-delay: 252.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2522) { + animation-delay: 252.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2523) { + animation-delay: 252.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2524) { + animation-delay: 252.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2525) { + animation-delay: 252.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2526) { + animation-delay: 252.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2527) { + animation-delay: 252.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2528) { + animation-delay: 252.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2529) { + animation-delay: 252.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2530) { + animation-delay: 253s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2531) { + animation-delay: 253.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2532) { + animation-delay: 253.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2533) { + animation-delay: 253.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2534) { + animation-delay: 253.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2535) { + animation-delay: 253.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2536) { + animation-delay: 253.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2537) { + animation-delay: 253.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2538) { + animation-delay: 253.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2539) { + animation-delay: 253.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2540) { + animation-delay: 254s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2541) { + animation-delay: 254.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2542) { + animation-delay: 254.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2543) { + animation-delay: 254.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2544) { + animation-delay: 254.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2545) { + animation-delay: 254.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2546) { + animation-delay: 254.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2547) { + animation-delay: 254.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2548) { + animation-delay: 254.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2549) { + animation-delay: 254.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2550) { + animation-delay: 255s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2551) { + animation-delay: 255.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2552) { + animation-delay: 255.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2553) { + animation-delay: 255.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2554) { + animation-delay: 255.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2555) { + animation-delay: 255.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2556) { + animation-delay: 255.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2557) { + animation-delay: 255.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2558) { + animation-delay: 255.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2559) { + animation-delay: 255.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2560) { + animation-delay: 256s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2561) { + animation-delay: 256.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2562) { + animation-delay: 256.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2563) { + animation-delay: 256.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2564) { + animation-delay: 256.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2565) { + animation-delay: 256.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2566) { + animation-delay: 256.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2567) { + animation-delay: 256.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2568) { + animation-delay: 256.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2569) { + animation-delay: 256.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2570) { + animation-delay: 257s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2571) { + animation-delay: 257.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2572) { + animation-delay: 257.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2573) { + animation-delay: 257.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2574) { + animation-delay: 257.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2575) { + animation-delay: 257.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2576) { + animation-delay: 257.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2577) { + animation-delay: 257.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2578) { + animation-delay: 257.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2579) { + animation-delay: 257.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2580) { + animation-delay: 258s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2581) { + animation-delay: 258.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2582) { + animation-delay: 258.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2583) { + animation-delay: 258.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2584) { + animation-delay: 258.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2585) { + animation-delay: 258.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2586) { + animation-delay: 258.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2587) { + animation-delay: 258.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2588) { + animation-delay: 258.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2589) { + animation-delay: 258.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2590) { + animation-delay: 259s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2591) { + animation-delay: 259.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2592) { + animation-delay: 259.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2593) { + animation-delay: 259.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2594) { + animation-delay: 259.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2595) { + animation-delay: 259.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2596) { + animation-delay: 259.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2597) { + animation-delay: 259.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2598) { + animation-delay: 259.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2599) { + animation-delay: 259.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2600) { + animation-delay: 260s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2601) { + animation-delay: 260.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2602) { + animation-delay: 260.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2603) { + animation-delay: 260.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2604) { + animation-delay: 260.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2605) { + animation-delay: 260.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2606) { + animation-delay: 260.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2607) { + animation-delay: 260.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2608) { + animation-delay: 260.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2609) { + animation-delay: 260.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2610) { + animation-delay: 261s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2611) { + animation-delay: 261.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2612) { + animation-delay: 261.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2613) { + animation-delay: 261.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2614) { + animation-delay: 261.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2615) { + animation-delay: 261.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2616) { + animation-delay: 261.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2617) { + animation-delay: 261.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2618) { + animation-delay: 261.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2619) { + animation-delay: 261.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2620) { + animation-delay: 262s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2621) { + animation-delay: 262.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2622) { + animation-delay: 262.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2623) { + animation-delay: 262.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2624) { + animation-delay: 262.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2625) { + animation-delay: 262.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2626) { + animation-delay: 262.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2627) { + animation-delay: 262.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2628) { + animation-delay: 262.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2629) { + animation-delay: 262.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2630) { + animation-delay: 263s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2631) { + animation-delay: 263.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2632) { + animation-delay: 263.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2633) { + animation-delay: 263.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2634) { + animation-delay: 263.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2635) { + animation-delay: 263.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2636) { + animation-delay: 263.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2637) { + animation-delay: 263.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2638) { + animation-delay: 263.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2639) { + animation-delay: 263.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2640) { + animation-delay: 264s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2641) { + animation-delay: 264.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2642) { + animation-delay: 264.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2643) { + animation-delay: 264.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2644) { + animation-delay: 264.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2645) { + animation-delay: 264.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2646) { + animation-delay: 264.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2647) { + animation-delay: 264.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2648) { + animation-delay: 264.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2649) { + animation-delay: 264.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2650) { + animation-delay: 265s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2651) { + animation-delay: 265.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2652) { + animation-delay: 265.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2653) { + animation-delay: 265.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2654) { + animation-delay: 265.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2655) { + animation-delay: 265.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2656) { + animation-delay: 265.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2657) { + animation-delay: 265.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2658) { + animation-delay: 265.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2659) { + animation-delay: 265.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2660) { + animation-delay: 266s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2661) { + animation-delay: 266.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2662) { + animation-delay: 266.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2663) { + animation-delay: 266.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2664) { + animation-delay: 266.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2665) { + animation-delay: 266.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2666) { + animation-delay: 266.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2667) { + animation-delay: 266.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2668) { + animation-delay: 266.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2669) { + animation-delay: 266.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2670) { + animation-delay: 267s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2671) { + animation-delay: 267.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2672) { + animation-delay: 267.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2673) { + animation-delay: 267.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2674) { + animation-delay: 267.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2675) { + animation-delay: 267.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2676) { + animation-delay: 267.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2677) { + animation-delay: 267.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2678) { + animation-delay: 267.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2679) { + animation-delay: 267.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2680) { + animation-delay: 268s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2681) { + animation-delay: 268.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2682) { + animation-delay: 268.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2683) { + animation-delay: 268.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2684) { + animation-delay: 268.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2685) { + animation-delay: 268.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2686) { + animation-delay: 268.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2687) { + animation-delay: 268.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2688) { + animation-delay: 268.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2689) { + animation-delay: 268.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2690) { + animation-delay: 269s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2691) { + animation-delay: 269.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2692) { + animation-delay: 269.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2693) { + animation-delay: 269.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2694) { + animation-delay: 269.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2695) { + animation-delay: 269.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2696) { + animation-delay: 269.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2697) { + animation-delay: 269.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2698) { + animation-delay: 269.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2699) { + animation-delay: 269.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2700) { + animation-delay: 270s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2701) { + animation-delay: 270.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2702) { + animation-delay: 270.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2703) { + animation-delay: 270.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2704) { + animation-delay: 270.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2705) { + animation-delay: 270.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2706) { + animation-delay: 270.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2707) { + animation-delay: 270.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2708) { + animation-delay: 270.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2709) { + animation-delay: 270.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2710) { + animation-delay: 271s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2711) { + animation-delay: 271.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2712) { + animation-delay: 271.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2713) { + animation-delay: 271.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2714) { + animation-delay: 271.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2715) { + animation-delay: 271.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2716) { + animation-delay: 271.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2717) { + animation-delay: 271.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2718) { + animation-delay: 271.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2719) { + animation-delay: 271.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2720) { + animation-delay: 272s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2721) { + animation-delay: 272.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2722) { + animation-delay: 272.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2723) { + animation-delay: 272.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2724) { + animation-delay: 272.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2725) { + animation-delay: 272.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2726) { + animation-delay: 272.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2727) { + animation-delay: 272.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2728) { + animation-delay: 272.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2729) { + animation-delay: 272.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2730) { + animation-delay: 273s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2731) { + animation-delay: 273.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2732) { + animation-delay: 273.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2733) { + animation-delay: 273.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2734) { + animation-delay: 273.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2735) { + animation-delay: 273.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2736) { + animation-delay: 273.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2737) { + animation-delay: 273.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2738) { + animation-delay: 273.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2739) { + animation-delay: 273.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2740) { + animation-delay: 274s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2741) { + animation-delay: 274.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2742) { + animation-delay: 274.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2743) { + animation-delay: 274.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2744) { + animation-delay: 274.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2745) { + animation-delay: 274.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2746) { + animation-delay: 274.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2747) { + animation-delay: 274.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2748) { + animation-delay: 274.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2749) { + animation-delay: 274.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2750) { + animation-delay: 275s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2751) { + animation-delay: 275.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2752) { + animation-delay: 275.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2753) { + animation-delay: 275.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2754) { + animation-delay: 275.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2755) { + animation-delay: 275.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2756) { + animation-delay: 275.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2757) { + animation-delay: 275.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2758) { + animation-delay: 275.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2759) { + animation-delay: 275.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2760) { + animation-delay: 276s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2761) { + animation-delay: 276.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2762) { + animation-delay: 276.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2763) { + animation-delay: 276.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2764) { + animation-delay: 276.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2765) { + animation-delay: 276.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2766) { + animation-delay: 276.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2767) { + animation-delay: 276.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2768) { + animation-delay: 276.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2769) { + animation-delay: 276.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2770) { + animation-delay: 277s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2771) { + animation-delay: 277.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2772) { + animation-delay: 277.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2773) { + animation-delay: 277.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2774) { + animation-delay: 277.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2775) { + animation-delay: 277.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2776) { + animation-delay: 277.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2777) { + animation-delay: 277.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2778) { + animation-delay: 277.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2779) { + animation-delay: 277.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2780) { + animation-delay: 278s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2781) { + animation-delay: 278.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2782) { + animation-delay: 278.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2783) { + animation-delay: 278.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2784) { + animation-delay: 278.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2785) { + animation-delay: 278.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2786) { + animation-delay: 278.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2787) { + animation-delay: 278.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2788) { + animation-delay: 278.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2789) { + animation-delay: 278.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2790) { + animation-delay: 279s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2791) { + animation-delay: 279.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2792) { + animation-delay: 279.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2793) { + animation-delay: 279.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2794) { + animation-delay: 279.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2795) { + animation-delay: 279.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2796) { + animation-delay: 279.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2797) { + animation-delay: 279.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2798) { + animation-delay: 279.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2799) { + animation-delay: 279.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2800) { + animation-delay: 280s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2801) { + animation-delay: 280.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2802) { + animation-delay: 280.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2803) { + animation-delay: 280.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2804) { + animation-delay: 280.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2805) { + animation-delay: 280.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2806) { + animation-delay: 280.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2807) { + animation-delay: 280.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2808) { + animation-delay: 280.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2809) { + animation-delay: 280.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2810) { + animation-delay: 281s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2811) { + animation-delay: 281.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2812) { + animation-delay: 281.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2813) { + animation-delay: 281.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2814) { + animation-delay: 281.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2815) { + animation-delay: 281.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2816) { + animation-delay: 281.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2817) { + animation-delay: 281.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2818) { + animation-delay: 281.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2819) { + animation-delay: 281.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2820) { + animation-delay: 282s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2821) { + animation-delay: 282.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2822) { + animation-delay: 282.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2823) { + animation-delay: 282.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2824) { + animation-delay: 282.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2825) { + animation-delay: 282.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2826) { + animation-delay: 282.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2827) { + animation-delay: 282.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2828) { + animation-delay: 282.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2829) { + animation-delay: 282.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2830) { + animation-delay: 283s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2831) { + animation-delay: 283.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2832) { + animation-delay: 283.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2833) { + animation-delay: 283.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2834) { + animation-delay: 283.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2835) { + animation-delay: 283.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2836) { + animation-delay: 283.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2837) { + animation-delay: 283.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2838) { + animation-delay: 283.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2839) { + animation-delay: 283.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2840) { + animation-delay: 284s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2841) { + animation-delay: 284.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2842) { + animation-delay: 284.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2843) { + animation-delay: 284.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2844) { + animation-delay: 284.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2845) { + animation-delay: 284.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2846) { + animation-delay: 284.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2847) { + animation-delay: 284.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2848) { + animation-delay: 284.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2849) { + animation-delay: 284.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2850) { + animation-delay: 285s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2851) { + animation-delay: 285.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2852) { + animation-delay: 285.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2853) { + animation-delay: 285.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2854) { + animation-delay: 285.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2855) { + animation-delay: 285.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2856) { + animation-delay: 285.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2857) { + animation-delay: 285.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2858) { + animation-delay: 285.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2859) { + animation-delay: 285.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2860) { + animation-delay: 286s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2861) { + animation-delay: 286.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2862) { + animation-delay: 286.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2863) { + animation-delay: 286.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2864) { + animation-delay: 286.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2865) { + animation-delay: 286.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2866) { + animation-delay: 286.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2867) { + animation-delay: 286.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2868) { + animation-delay: 286.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2869) { + animation-delay: 286.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2870) { + animation-delay: 287s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2871) { + animation-delay: 287.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2872) { + animation-delay: 287.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2873) { + animation-delay: 287.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2874) { + animation-delay: 287.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2875) { + animation-delay: 287.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2876) { + animation-delay: 287.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2877) { + animation-delay: 287.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2878) { + animation-delay: 287.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2879) { + animation-delay: 287.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2880) { + animation-delay: 288s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2881) { + animation-delay: 288.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2882) { + animation-delay: 288.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2883) { + animation-delay: 288.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2884) { + animation-delay: 288.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2885) { + animation-delay: 288.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2886) { + animation-delay: 288.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2887) { + animation-delay: 288.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2888) { + animation-delay: 288.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2889) { + animation-delay: 288.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2890) { + animation-delay: 289s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2891) { + animation-delay: 289.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2892) { + animation-delay: 289.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2893) { + animation-delay: 289.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2894) { + animation-delay: 289.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2895) { + animation-delay: 289.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2896) { + animation-delay: 289.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2897) { + animation-delay: 289.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2898) { + animation-delay: 289.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2899) { + animation-delay: 289.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2900) { + animation-delay: 290s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2901) { + animation-delay: 290.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2902) { + animation-delay: 290.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2903) { + animation-delay: 290.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2904) { + animation-delay: 290.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2905) { + animation-delay: 290.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2906) { + animation-delay: 290.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2907) { + animation-delay: 290.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2908) { + animation-delay: 290.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2909) { + animation-delay: 290.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2910) { + animation-delay: 291s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2911) { + animation-delay: 291.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2912) { + animation-delay: 291.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2913) { + animation-delay: 291.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2914) { + animation-delay: 291.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2915) { + animation-delay: 291.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2916) { + animation-delay: 291.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2917) { + animation-delay: 291.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2918) { + animation-delay: 291.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2919) { + animation-delay: 291.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2920) { + animation-delay: 292s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2921) { + animation-delay: 292.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2922) { + animation-delay: 292.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2923) { + animation-delay: 292.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2924) { + animation-delay: 292.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2925) { + animation-delay: 292.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2926) { + animation-delay: 292.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2927) { + animation-delay: 292.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2928) { + animation-delay: 292.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2929) { + animation-delay: 292.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2930) { + animation-delay: 293s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2931) { + animation-delay: 293.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2932) { + animation-delay: 293.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2933) { + animation-delay: 293.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2934) { + animation-delay: 293.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2935) { + animation-delay: 293.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2936) { + animation-delay: 293.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2937) { + animation-delay: 293.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2938) { + animation-delay: 293.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2939) { + animation-delay: 293.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2940) { + animation-delay: 294s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2941) { + animation-delay: 294.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2942) { + animation-delay: 294.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2943) { + animation-delay: 294.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2944) { + animation-delay: 294.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2945) { + animation-delay: 294.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2946) { + animation-delay: 294.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2947) { + animation-delay: 294.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2948) { + animation-delay: 294.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2949) { + animation-delay: 294.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2950) { + animation-delay: 295s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2951) { + animation-delay: 295.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2952) { + animation-delay: 295.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2953) { + animation-delay: 295.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2954) { + animation-delay: 295.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2955) { + animation-delay: 295.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2956) { + animation-delay: 295.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2957) { + animation-delay: 295.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2958) { + animation-delay: 295.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2959) { + animation-delay: 295.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2960) { + animation-delay: 296s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2961) { + animation-delay: 296.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2962) { + animation-delay: 296.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2963) { + animation-delay: 296.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2964) { + animation-delay: 296.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2965) { + animation-delay: 296.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2966) { + animation-delay: 296.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2967) { + animation-delay: 296.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2968) { + animation-delay: 296.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2969) { + animation-delay: 296.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2970) { + animation-delay: 297s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2971) { + animation-delay: 297.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2972) { + animation-delay: 297.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2973) { + animation-delay: 297.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2974) { + animation-delay: 297.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2975) { + animation-delay: 297.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2976) { + animation-delay: 297.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2977) { + animation-delay: 297.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2978) { + animation-delay: 297.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2979) { + animation-delay: 297.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2980) { + animation-delay: 298s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2981) { + animation-delay: 298.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2982) { + animation-delay: 298.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2983) { + animation-delay: 298.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2984) { + animation-delay: 298.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2985) { + animation-delay: 298.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2986) { + animation-delay: 298.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2987) { + animation-delay: 298.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2988) { + animation-delay: 298.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2989) { + animation-delay: 298.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2990) { + animation-delay: 299s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2991) { + animation-delay: 299.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2992) { + animation-delay: 299.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2993) { + animation-delay: 299.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2994) { + animation-delay: 299.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2995) { + animation-delay: 299.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2996) { + animation-delay: 299.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2997) { + animation-delay: 299.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2998) { + animation-delay: 299.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2999) { + animation-delay: 299.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3000) { + animation-delay: 300s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3001) { + animation-delay: 300.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3002) { + animation-delay: 300.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3003) { + animation-delay: 300.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3004) { + animation-delay: 300.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3005) { + animation-delay: 300.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3006) { + animation-delay: 300.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3007) { + animation-delay: 300.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3008) { + animation-delay: 300.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3009) { + animation-delay: 300.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3010) { + animation-delay: 301s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3011) { + animation-delay: 301.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3012) { + animation-delay: 301.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3013) { + animation-delay: 301.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3014) { + animation-delay: 301.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3015) { + animation-delay: 301.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3016) { + animation-delay: 301.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3017) { + animation-delay: 301.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3018) { + animation-delay: 301.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3019) { + animation-delay: 301.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3020) { + animation-delay: 302s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3021) { + animation-delay: 302.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3022) { + animation-delay: 302.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3023) { + animation-delay: 302.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3024) { + animation-delay: 302.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3025) { + animation-delay: 302.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3026) { + animation-delay: 302.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3027) { + animation-delay: 302.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3028) { + animation-delay: 302.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3029) { + animation-delay: 302.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3030) { + animation-delay: 303s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3031) { + animation-delay: 303.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3032) { + animation-delay: 303.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3033) { + animation-delay: 303.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3034) { + animation-delay: 303.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3035) { + animation-delay: 303.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3036) { + animation-delay: 303.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3037) { + animation-delay: 303.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3038) { + animation-delay: 303.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3039) { + animation-delay: 303.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3040) { + animation-delay: 304s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3041) { + animation-delay: 304.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3042) { + animation-delay: 304.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3043) { + animation-delay: 304.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3044) { + animation-delay: 304.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3045) { + animation-delay: 304.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3046) { + animation-delay: 304.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3047) { + animation-delay: 304.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3048) { + animation-delay: 304.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3049) { + animation-delay: 304.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3050) { + animation-delay: 305s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3051) { + animation-delay: 305.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3052) { + animation-delay: 305.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3053) { + animation-delay: 305.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3054) { + animation-delay: 305.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3055) { + animation-delay: 305.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3056) { + animation-delay: 305.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3057) { + animation-delay: 305.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3058) { + animation-delay: 305.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3059) { + animation-delay: 305.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3060) { + animation-delay: 306s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3061) { + animation-delay: 306.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3062) { + animation-delay: 306.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3063) { + animation-delay: 306.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3064) { + animation-delay: 306.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3065) { + animation-delay: 306.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3066) { + animation-delay: 306.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3067) { + animation-delay: 306.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3068) { + animation-delay: 306.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3069) { + animation-delay: 306.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3070) { + animation-delay: 307s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3071) { + animation-delay: 307.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3072) { + animation-delay: 307.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3073) { + animation-delay: 307.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3074) { + animation-delay: 307.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3075) { + animation-delay: 307.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3076) { + animation-delay: 307.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3077) { + animation-delay: 307.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3078) { + animation-delay: 307.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3079) { + animation-delay: 307.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3080) { + animation-delay: 308s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3081) { + animation-delay: 308.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3082) { + animation-delay: 308.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3083) { + animation-delay: 308.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3084) { + animation-delay: 308.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3085) { + animation-delay: 308.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3086) { + animation-delay: 308.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3087) { + animation-delay: 308.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3088) { + animation-delay: 308.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3089) { + animation-delay: 308.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3090) { + animation-delay: 309s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3091) { + animation-delay: 309.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3092) { + animation-delay: 309.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3093) { + animation-delay: 309.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3094) { + animation-delay: 309.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3095) { + animation-delay: 309.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3096) { + animation-delay: 309.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3097) { + animation-delay: 309.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3098) { + animation-delay: 309.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3099) { + animation-delay: 309.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3100) { + animation-delay: 310s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3101) { + animation-delay: 310.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3102) { + animation-delay: 310.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3103) { + animation-delay: 310.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3104) { + animation-delay: 310.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3105) { + animation-delay: 310.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3106) { + animation-delay: 310.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3107) { + animation-delay: 310.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3108) { + animation-delay: 310.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3109) { + animation-delay: 310.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3110) { + animation-delay: 311s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3111) { + animation-delay: 311.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3112) { + animation-delay: 311.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3113) { + animation-delay: 311.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3114) { + animation-delay: 311.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3115) { + animation-delay: 311.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3116) { + animation-delay: 311.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3117) { + animation-delay: 311.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3118) { + animation-delay: 311.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3119) { + animation-delay: 311.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3120) { + animation-delay: 312s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3121) { + animation-delay: 312.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3122) { + animation-delay: 312.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3123) { + animation-delay: 312.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3124) { + animation-delay: 312.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3125) { + animation-delay: 312.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3126) { + animation-delay: 312.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3127) { + animation-delay: 312.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3128) { + animation-delay: 312.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3129) { + animation-delay: 312.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3130) { + animation-delay: 313s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3131) { + animation-delay: 313.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3132) { + animation-delay: 313.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3133) { + animation-delay: 313.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3134) { + animation-delay: 313.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3135) { + animation-delay: 313.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3136) { + animation-delay: 313.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3137) { + animation-delay: 313.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3138) { + animation-delay: 313.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3139) { + animation-delay: 313.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3140) { + animation-delay: 314s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3141) { + animation-delay: 314.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3142) { + animation-delay: 314.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3143) { + animation-delay: 314.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3144) { + animation-delay: 314.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3145) { + animation-delay: 314.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3146) { + animation-delay: 314.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3147) { + animation-delay: 314.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3148) { + animation-delay: 314.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3149) { + animation-delay: 314.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3150) { + animation-delay: 315s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3151) { + animation-delay: 315.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3152) { + animation-delay: 315.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3153) { + animation-delay: 315.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3154) { + animation-delay: 315.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3155) { + animation-delay: 315.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3156) { + animation-delay: 315.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3157) { + animation-delay: 315.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3158) { + animation-delay: 315.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3159) { + animation-delay: 315.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3160) { + animation-delay: 316s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3161) { + animation-delay: 316.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3162) { + animation-delay: 316.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3163) { + animation-delay: 316.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3164) { + animation-delay: 316.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3165) { + animation-delay: 316.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3166) { + animation-delay: 316.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3167) { + animation-delay: 316.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3168) { + animation-delay: 316.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3169) { + animation-delay: 316.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3170) { + animation-delay: 317s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3171) { + animation-delay: 317.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3172) { + animation-delay: 317.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3173) { + animation-delay: 317.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3174) { + animation-delay: 317.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3175) { + animation-delay: 317.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3176) { + animation-delay: 317.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3177) { + animation-delay: 317.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3178) { + animation-delay: 317.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3179) { + animation-delay: 317.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3180) { + animation-delay: 318s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3181) { + animation-delay: 318.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3182) { + animation-delay: 318.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3183) { + animation-delay: 318.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3184) { + animation-delay: 318.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3185) { + animation-delay: 318.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3186) { + animation-delay: 318.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3187) { + animation-delay: 318.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3188) { + animation-delay: 318.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3189) { + animation-delay: 318.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3190) { + animation-delay: 319s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3191) { + animation-delay: 319.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3192) { + animation-delay: 319.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3193) { + animation-delay: 319.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3194) { + animation-delay: 319.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3195) { + animation-delay: 319.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3196) { + animation-delay: 319.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3197) { + animation-delay: 319.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3198) { + animation-delay: 319.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3199) { + animation-delay: 319.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3200) { + animation-delay: 320s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3201) { + animation-delay: 320.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3202) { + animation-delay: 320.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3203) { + animation-delay: 320.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3204) { + animation-delay: 320.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3205) { + animation-delay: 320.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3206) { + animation-delay: 320.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3207) { + animation-delay: 320.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3208) { + animation-delay: 320.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3209) { + animation-delay: 320.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3210) { + animation-delay: 321s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3211) { + animation-delay: 321.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3212) { + animation-delay: 321.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3213) { + animation-delay: 321.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3214) { + animation-delay: 321.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3215) { + animation-delay: 321.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3216) { + animation-delay: 321.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3217) { + animation-delay: 321.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3218) { + animation-delay: 321.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3219) { + animation-delay: 321.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3220) { + animation-delay: 322s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3221) { + animation-delay: 322.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3222) { + animation-delay: 322.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3223) { + animation-delay: 322.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3224) { + animation-delay: 322.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3225) { + animation-delay: 322.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3226) { + animation-delay: 322.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3227) { + animation-delay: 322.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3228) { + animation-delay: 322.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3229) { + animation-delay: 322.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3230) { + animation-delay: 323s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3231) { + animation-delay: 323.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3232) { + animation-delay: 323.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3233) { + animation-delay: 323.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3234) { + animation-delay: 323.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3235) { + animation-delay: 323.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3236) { + animation-delay: 323.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3237) { + animation-delay: 323.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3238) { + animation-delay: 323.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3239) { + animation-delay: 323.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3240) { + animation-delay: 324s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3241) { + animation-delay: 324.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3242) { + animation-delay: 324.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3243) { + animation-delay: 324.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3244) { + animation-delay: 324.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3245) { + animation-delay: 324.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3246) { + animation-delay: 324.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3247) { + animation-delay: 324.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3248) { + animation-delay: 324.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3249) { + animation-delay: 324.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3250) { + animation-delay: 325s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3251) { + animation-delay: 325.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3252) { + animation-delay: 325.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3253) { + animation-delay: 325.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3254) { + animation-delay: 325.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3255) { + animation-delay: 325.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3256) { + animation-delay: 325.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3257) { + animation-delay: 325.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3258) { + animation-delay: 325.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3259) { + animation-delay: 325.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3260) { + animation-delay: 326s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3261) { + animation-delay: 326.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3262) { + animation-delay: 326.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3263) { + animation-delay: 326.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3264) { + animation-delay: 326.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3265) { + animation-delay: 326.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3266) { + animation-delay: 326.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3267) { + animation-delay: 326.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3268) { + animation-delay: 326.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3269) { + animation-delay: 326.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3270) { + animation-delay: 327s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3271) { + animation-delay: 327.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3272) { + animation-delay: 327.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3273) { + animation-delay: 327.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3274) { + animation-delay: 327.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3275) { + animation-delay: 327.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3276) { + animation-delay: 327.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3277) { + animation-delay: 327.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3278) { + animation-delay: 327.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3279) { + animation-delay: 327.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3280) { + animation-delay: 328s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3281) { + animation-delay: 328.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3282) { + animation-delay: 328.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3283) { + animation-delay: 328.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3284) { + animation-delay: 328.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3285) { + animation-delay: 328.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3286) { + animation-delay: 328.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3287) { + animation-delay: 328.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3288) { + animation-delay: 328.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3289) { + animation-delay: 328.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3290) { + animation-delay: 329s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3291) { + animation-delay: 329.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3292) { + animation-delay: 329.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3293) { + animation-delay: 329.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3294) { + animation-delay: 329.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3295) { + animation-delay: 329.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3296) { + animation-delay: 329.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3297) { + animation-delay: 329.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3298) { + animation-delay: 329.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3299) { + animation-delay: 329.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3300) { + animation-delay: 330s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3301) { + animation-delay: 330.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3302) { + animation-delay: 330.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3303) { + animation-delay: 330.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3304) { + animation-delay: 330.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3305) { + animation-delay: 330.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3306) { + animation-delay: 330.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3307) { + animation-delay: 330.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3308) { + animation-delay: 330.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3309) { + animation-delay: 330.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3310) { + animation-delay: 331s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3311) { + animation-delay: 331.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3312) { + animation-delay: 331.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3313) { + animation-delay: 331.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3314) { + animation-delay: 331.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3315) { + animation-delay: 331.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3316) { + animation-delay: 331.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3317) { + animation-delay: 331.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3318) { + animation-delay: 331.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3319) { + animation-delay: 331.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3320) { + animation-delay: 332s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3321) { + animation-delay: 332.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3322) { + animation-delay: 332.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3323) { + animation-delay: 332.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3324) { + animation-delay: 332.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3325) { + animation-delay: 332.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3326) { + animation-delay: 332.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3327) { + animation-delay: 332.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3328) { + animation-delay: 332.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3329) { + animation-delay: 332.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3330) { + animation-delay: 333s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3331) { + animation-delay: 333.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3332) { + animation-delay: 333.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3333) { + animation-delay: 333.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3334) { + animation-delay: 333.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3335) { + animation-delay: 333.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3336) { + animation-delay: 333.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3337) { + animation-delay: 333.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3338) { + animation-delay: 333.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3339) { + animation-delay: 333.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3340) { + animation-delay: 334s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3341) { + animation-delay: 334.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3342) { + animation-delay: 334.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3343) { + animation-delay: 334.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3344) { + animation-delay: 334.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3345) { + animation-delay: 334.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3346) { + animation-delay: 334.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3347) { + animation-delay: 334.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3348) { + animation-delay: 334.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3349) { + animation-delay: 334.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3350) { + animation-delay: 335s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3351) { + animation-delay: 335.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3352) { + animation-delay: 335.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3353) { + animation-delay: 335.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3354) { + animation-delay: 335.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3355) { + animation-delay: 335.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3356) { + animation-delay: 335.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3357) { + animation-delay: 335.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3358) { + animation-delay: 335.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3359) { + animation-delay: 335.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3360) { + animation-delay: 336s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3361) { + animation-delay: 336.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3362) { + animation-delay: 336.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3363) { + animation-delay: 336.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3364) { + animation-delay: 336.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3365) { + animation-delay: 336.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3366) { + animation-delay: 336.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3367) { + animation-delay: 336.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3368) { + animation-delay: 336.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3369) { + animation-delay: 336.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3370) { + animation-delay: 337s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3371) { + animation-delay: 337.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3372) { + animation-delay: 337.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3373) { + animation-delay: 337.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3374) { + animation-delay: 337.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3375) { + animation-delay: 337.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3376) { + animation-delay: 337.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3377) { + animation-delay: 337.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3378) { + animation-delay: 337.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3379) { + animation-delay: 337.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3380) { + animation-delay: 338s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3381) { + animation-delay: 338.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3382) { + animation-delay: 338.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3383) { + animation-delay: 338.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3384) { + animation-delay: 338.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3385) { + animation-delay: 338.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3386) { + animation-delay: 338.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3387) { + animation-delay: 338.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3388) { + animation-delay: 338.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3389) { + animation-delay: 338.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3390) { + animation-delay: 339s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3391) { + animation-delay: 339.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3392) { + animation-delay: 339.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3393) { + animation-delay: 339.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3394) { + animation-delay: 339.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3395) { + animation-delay: 339.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3396) { + animation-delay: 339.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3397) { + animation-delay: 339.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3398) { + animation-delay: 339.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3399) { + animation-delay: 339.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3400) { + animation-delay: 340s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3401) { + animation-delay: 340.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3402) { + animation-delay: 340.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3403) { + animation-delay: 340.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3404) { + animation-delay: 340.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3405) { + animation-delay: 340.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3406) { + animation-delay: 340.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3407) { + animation-delay: 340.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3408) { + animation-delay: 340.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3409) { + animation-delay: 340.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3410) { + animation-delay: 341s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3411) { + animation-delay: 341.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3412) { + animation-delay: 341.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3413) { + animation-delay: 341.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3414) { + animation-delay: 341.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3415) { + animation-delay: 341.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3416) { + animation-delay: 341.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3417) { + animation-delay: 341.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3418) { + animation-delay: 341.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3419) { + animation-delay: 341.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3420) { + animation-delay: 342s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3421) { + animation-delay: 342.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3422) { + animation-delay: 342.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3423) { + animation-delay: 342.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3424) { + animation-delay: 342.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3425) { + animation-delay: 342.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3426) { + animation-delay: 342.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3427) { + animation-delay: 342.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3428) { + animation-delay: 342.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3429) { + animation-delay: 342.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3430) { + animation-delay: 343s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3431) { + animation-delay: 343.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3432) { + animation-delay: 343.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3433) { + animation-delay: 343.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3434) { + animation-delay: 343.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3435) { + animation-delay: 343.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3436) { + animation-delay: 343.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3437) { + animation-delay: 343.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3438) { + animation-delay: 343.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3439) { + animation-delay: 343.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3440) { + animation-delay: 344s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3441) { + animation-delay: 344.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3442) { + animation-delay: 344.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3443) { + animation-delay: 344.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3444) { + animation-delay: 344.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3445) { + animation-delay: 344.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3446) { + animation-delay: 344.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3447) { + animation-delay: 344.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3448) { + animation-delay: 344.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3449) { + animation-delay: 344.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3450) { + animation-delay: 345s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3451) { + animation-delay: 345.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3452) { + animation-delay: 345.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3453) { + animation-delay: 345.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3454) { + animation-delay: 345.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3455) { + animation-delay: 345.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3456) { + animation-delay: 345.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3457) { + animation-delay: 345.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3458) { + animation-delay: 345.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3459) { + animation-delay: 345.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3460) { + animation-delay: 346s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3461) { + animation-delay: 346.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3462) { + animation-delay: 346.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3463) { + animation-delay: 346.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3464) { + animation-delay: 346.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3465) { + animation-delay: 346.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3466) { + animation-delay: 346.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3467) { + animation-delay: 346.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3468) { + animation-delay: 346.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3469) { + animation-delay: 346.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3470) { + animation-delay: 347s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3471) { + animation-delay: 347.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3472) { + animation-delay: 347.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3473) { + animation-delay: 347.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3474) { + animation-delay: 347.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3475) { + animation-delay: 347.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3476) { + animation-delay: 347.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3477) { + animation-delay: 347.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3478) { + animation-delay: 347.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3479) { + animation-delay: 347.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3480) { + animation-delay: 348s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3481) { + animation-delay: 348.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3482) { + animation-delay: 348.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3483) { + animation-delay: 348.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3484) { + animation-delay: 348.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3485) { + animation-delay: 348.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3486) { + animation-delay: 348.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3487) { + animation-delay: 348.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3488) { + animation-delay: 348.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3489) { + animation-delay: 348.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3490) { + animation-delay: 349s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3491) { + animation-delay: 349.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3492) { + animation-delay: 349.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3493) { + animation-delay: 349.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3494) { + animation-delay: 349.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3495) { + animation-delay: 349.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3496) { + animation-delay: 349.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3497) { + animation-delay: 349.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3498) { + animation-delay: 349.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3499) { + animation-delay: 349.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3500) { + animation-delay: 350s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3501) { + animation-delay: 350.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3502) { + animation-delay: 350.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3503) { + animation-delay: 350.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3504) { + animation-delay: 350.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3505) { + animation-delay: 350.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3506) { + animation-delay: 350.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3507) { + animation-delay: 350.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3508) { + animation-delay: 350.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3509) { + animation-delay: 350.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3510) { + animation-delay: 351s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3511) { + animation-delay: 351.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3512) { + animation-delay: 351.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3513) { + animation-delay: 351.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3514) { + animation-delay: 351.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3515) { + animation-delay: 351.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3516) { + animation-delay: 351.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3517) { + animation-delay: 351.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3518) { + animation-delay: 351.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3519) { + animation-delay: 351.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3520) { + animation-delay: 352s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3521) { + animation-delay: 352.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3522) { + animation-delay: 352.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3523) { + animation-delay: 352.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3524) { + animation-delay: 352.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3525) { + animation-delay: 352.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3526) { + animation-delay: 352.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3527) { + animation-delay: 352.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3528) { + animation-delay: 352.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3529) { + animation-delay: 352.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3530) { + animation-delay: 353s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3531) { + animation-delay: 353.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3532) { + animation-delay: 353.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3533) { + animation-delay: 353.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3534) { + animation-delay: 353.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3535) { + animation-delay: 353.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3536) { + animation-delay: 353.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3537) { + animation-delay: 353.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3538) { + animation-delay: 353.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3539) { + animation-delay: 353.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3540) { + animation-delay: 354s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3541) { + animation-delay: 354.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3542) { + animation-delay: 354.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3543) { + animation-delay: 354.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3544) { + animation-delay: 354.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3545) { + animation-delay: 354.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3546) { + animation-delay: 354.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3547) { + animation-delay: 354.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3548) { + animation-delay: 354.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3549) { + animation-delay: 354.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3550) { + animation-delay: 355s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3551) { + animation-delay: 355.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3552) { + animation-delay: 355.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3553) { + animation-delay: 355.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3554) { + animation-delay: 355.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3555) { + animation-delay: 355.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3556) { + animation-delay: 355.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3557) { + animation-delay: 355.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3558) { + animation-delay: 355.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3559) { + animation-delay: 355.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3560) { + animation-delay: 356s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3561) { + animation-delay: 356.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3562) { + animation-delay: 356.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3563) { + animation-delay: 356.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3564) { + animation-delay: 356.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3565) { + animation-delay: 356.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3566) { + animation-delay: 356.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3567) { + animation-delay: 356.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3568) { + animation-delay: 356.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3569) { + animation-delay: 356.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3570) { + animation-delay: 357s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3571) { + animation-delay: 357.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3572) { + animation-delay: 357.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3573) { + animation-delay: 357.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3574) { + animation-delay: 357.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3575) { + animation-delay: 357.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3576) { + animation-delay: 357.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3577) { + animation-delay: 357.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3578) { + animation-delay: 357.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3579) { + animation-delay: 357.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3580) { + animation-delay: 358s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3581) { + animation-delay: 358.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3582) { + animation-delay: 358.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3583) { + animation-delay: 358.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3584) { + animation-delay: 358.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3585) { + animation-delay: 358.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3586) { + animation-delay: 358.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3587) { + animation-delay: 358.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3588) { + animation-delay: 358.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3589) { + animation-delay: 358.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3590) { + animation-delay: 359s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3591) { + animation-delay: 359.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3592) { + animation-delay: 359.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3593) { + animation-delay: 359.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3594) { + animation-delay: 359.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3595) { + animation-delay: 359.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3596) { + animation-delay: 359.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3597) { + animation-delay: 359.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3598) { + animation-delay: 359.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3599) { + animation-delay: 359.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3600) { + animation-delay: 360s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3601) { + animation-delay: 360.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3602) { + animation-delay: 360.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3603) { + animation-delay: 360.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3604) { + animation-delay: 360.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3605) { + animation-delay: 360.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3606) { + animation-delay: 360.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3607) { + animation-delay: 360.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3608) { + animation-delay: 360.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3609) { + animation-delay: 360.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3610) { + animation-delay: 361s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3611) { + animation-delay: 361.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3612) { + animation-delay: 361.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3613) { + animation-delay: 361.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3614) { + animation-delay: 361.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3615) { + animation-delay: 361.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3616) { + animation-delay: 361.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3617) { + animation-delay: 361.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3618) { + animation-delay: 361.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3619) { + animation-delay: 361.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3620) { + animation-delay: 362s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3621) { + animation-delay: 362.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3622) { + animation-delay: 362.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3623) { + animation-delay: 362.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3624) { + animation-delay: 362.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3625) { + animation-delay: 362.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3626) { + animation-delay: 362.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3627) { + animation-delay: 362.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3628) { + animation-delay: 362.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3629) { + animation-delay: 362.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3630) { + animation-delay: 363s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3631) { + animation-delay: 363.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3632) { + animation-delay: 363.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3633) { + animation-delay: 363.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3634) { + animation-delay: 363.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3635) { + animation-delay: 363.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3636) { + animation-delay: 363.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3637) { + animation-delay: 363.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3638) { + animation-delay: 363.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3639) { + animation-delay: 363.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3640) { + animation-delay: 364s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3641) { + animation-delay: 364.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3642) { + animation-delay: 364.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3643) { + animation-delay: 364.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3644) { + animation-delay: 364.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3645) { + animation-delay: 364.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3646) { + animation-delay: 364.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3647) { + animation-delay: 364.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3648) { + animation-delay: 364.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3649) { + animation-delay: 364.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3650) { + animation-delay: 365s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3651) { + animation-delay: 365.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3652) { + animation-delay: 365.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3653) { + animation-delay: 365.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3654) { + animation-delay: 365.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3655) { + animation-delay: 365.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3656) { + animation-delay: 365.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3657) { + animation-delay: 365.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3658) { + animation-delay: 365.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3659) { + animation-delay: 365.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3660) { + animation-delay: 366s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3661) { + animation-delay: 366.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3662) { + animation-delay: 366.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3663) { + animation-delay: 366.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3664) { + animation-delay: 366.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3665) { + animation-delay: 366.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3666) { + animation-delay: 366.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3667) { + animation-delay: 366.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3668) { + animation-delay: 366.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3669) { + animation-delay: 366.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3670) { + animation-delay: 367s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3671) { + animation-delay: 367.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3672) { + animation-delay: 367.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3673) { + animation-delay: 367.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3674) { + animation-delay: 367.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3675) { + animation-delay: 367.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3676) { + animation-delay: 367.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3677) { + animation-delay: 367.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3678) { + animation-delay: 367.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3679) { + animation-delay: 367.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3680) { + animation-delay: 368s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3681) { + animation-delay: 368.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3682) { + animation-delay: 368.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3683) { + animation-delay: 368.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3684) { + animation-delay: 368.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3685) { + animation-delay: 368.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3686) { + animation-delay: 368.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3687) { + animation-delay: 368.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3688) { + animation-delay: 368.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3689) { + animation-delay: 368.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3690) { + animation-delay: 369s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3691) { + animation-delay: 369.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3692) { + animation-delay: 369.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3693) { + animation-delay: 369.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3694) { + animation-delay: 369.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3695) { + animation-delay: 369.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3696) { + animation-delay: 369.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3697) { + animation-delay: 369.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3698) { + animation-delay: 369.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3699) { + animation-delay: 369.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3700) { + animation-delay: 370s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3701) { + animation-delay: 370.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3702) { + animation-delay: 370.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3703) { + animation-delay: 370.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3704) { + animation-delay: 370.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3705) { + animation-delay: 370.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3706) { + animation-delay: 370.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3707) { + animation-delay: 370.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3708) { + animation-delay: 370.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3709) { + animation-delay: 370.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3710) { + animation-delay: 371s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3711) { + animation-delay: 371.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3712) { + animation-delay: 371.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3713) { + animation-delay: 371.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3714) { + animation-delay: 371.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3715) { + animation-delay: 371.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3716) { + animation-delay: 371.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3717) { + animation-delay: 371.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3718) { + animation-delay: 371.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3719) { + animation-delay: 371.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3720) { + animation-delay: 372s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3721) { + animation-delay: 372.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3722) { + animation-delay: 372.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3723) { + animation-delay: 372.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3724) { + animation-delay: 372.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3725) { + animation-delay: 372.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3726) { + animation-delay: 372.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3727) { + animation-delay: 372.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3728) { + animation-delay: 372.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3729) { + animation-delay: 372.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3730) { + animation-delay: 373s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3731) { + animation-delay: 373.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3732) { + animation-delay: 373.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3733) { + animation-delay: 373.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3734) { + animation-delay: 373.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3735) { + animation-delay: 373.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3736) { + animation-delay: 373.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3737) { + animation-delay: 373.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3738) { + animation-delay: 373.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3739) { + animation-delay: 373.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3740) { + animation-delay: 374s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3741) { + animation-delay: 374.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3742) { + animation-delay: 374.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3743) { + animation-delay: 374.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3744) { + animation-delay: 374.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3745) { + animation-delay: 374.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3746) { + animation-delay: 374.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3747) { + animation-delay: 374.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3748) { + animation-delay: 374.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3749) { + animation-delay: 374.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3750) { + animation-delay: 375s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3751) { + animation-delay: 375.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3752) { + animation-delay: 375.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3753) { + animation-delay: 375.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3754) { + animation-delay: 375.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3755) { + animation-delay: 375.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3756) { + animation-delay: 375.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3757) { + animation-delay: 375.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3758) { + animation-delay: 375.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3759) { + animation-delay: 375.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3760) { + animation-delay: 376s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3761) { + animation-delay: 376.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3762) { + animation-delay: 376.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3763) { + animation-delay: 376.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3764) { + animation-delay: 376.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3765) { + animation-delay: 376.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3766) { + animation-delay: 376.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3767) { + animation-delay: 376.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3768) { + animation-delay: 376.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3769) { + animation-delay: 376.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3770) { + animation-delay: 377s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3771) { + animation-delay: 377.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3772) { + animation-delay: 377.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3773) { + animation-delay: 377.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3774) { + animation-delay: 377.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3775) { + animation-delay: 377.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3776) { + animation-delay: 377.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3777) { + animation-delay: 377.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3778) { + animation-delay: 377.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3779) { + animation-delay: 377.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3780) { + animation-delay: 378s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3781) { + animation-delay: 378.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3782) { + animation-delay: 378.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3783) { + animation-delay: 378.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3784) { + animation-delay: 378.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3785) { + animation-delay: 378.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3786) { + animation-delay: 378.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3787) { + animation-delay: 378.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3788) { + animation-delay: 378.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3789) { + animation-delay: 378.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3790) { + animation-delay: 379s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3791) { + animation-delay: 379.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3792) { + animation-delay: 379.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3793) { + animation-delay: 379.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3794) { + animation-delay: 379.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3795) { + animation-delay: 379.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3796) { + animation-delay: 379.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3797) { + animation-delay: 379.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3798) { + animation-delay: 379.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3799) { + animation-delay: 379.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3800) { + animation-delay: 380s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3801) { + animation-delay: 380.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3802) { + animation-delay: 380.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3803) { + animation-delay: 380.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3804) { + animation-delay: 380.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3805) { + animation-delay: 380.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3806) { + animation-delay: 380.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3807) { + animation-delay: 380.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3808) { + animation-delay: 380.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3809) { + animation-delay: 380.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3810) { + animation-delay: 381s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3811) { + animation-delay: 381.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3812) { + animation-delay: 381.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3813) { + animation-delay: 381.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3814) { + animation-delay: 381.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3815) { + animation-delay: 381.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3816) { + animation-delay: 381.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3817) { + animation-delay: 381.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3818) { + animation-delay: 381.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3819) { + animation-delay: 381.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3820) { + animation-delay: 382s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3821) { + animation-delay: 382.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3822) { + animation-delay: 382.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3823) { + animation-delay: 382.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3824) { + animation-delay: 382.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3825) { + animation-delay: 382.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3826) { + animation-delay: 382.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3827) { + animation-delay: 382.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3828) { + animation-delay: 382.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3829) { + animation-delay: 382.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3830) { + animation-delay: 383s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3831) { + animation-delay: 383.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3832) { + animation-delay: 383.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3833) { + animation-delay: 383.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3834) { + animation-delay: 383.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3835) { + animation-delay: 383.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3836) { + animation-delay: 383.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3837) { + animation-delay: 383.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3838) { + animation-delay: 383.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3839) { + animation-delay: 383.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3840) { + animation-delay: 384s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3841) { + animation-delay: 384.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3842) { + animation-delay: 384.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3843) { + animation-delay: 384.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3844) { + animation-delay: 384.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3845) { + animation-delay: 384.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3846) { + animation-delay: 384.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3847) { + animation-delay: 384.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3848) { + animation-delay: 384.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3849) { + animation-delay: 384.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3850) { + animation-delay: 385s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3851) { + animation-delay: 385.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3852) { + animation-delay: 385.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3853) { + animation-delay: 385.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3854) { + animation-delay: 385.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3855) { + animation-delay: 385.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3856) { + animation-delay: 385.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3857) { + animation-delay: 385.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3858) { + animation-delay: 385.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3859) { + animation-delay: 385.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3860) { + animation-delay: 386s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3861) { + animation-delay: 386.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3862) { + animation-delay: 386.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3863) { + animation-delay: 386.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3864) { + animation-delay: 386.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3865) { + animation-delay: 386.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3866) { + animation-delay: 386.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3867) { + animation-delay: 386.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3868) { + animation-delay: 386.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3869) { + animation-delay: 386.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3870) { + animation-delay: 387s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3871) { + animation-delay: 387.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3872) { + animation-delay: 387.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3873) { + animation-delay: 387.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3874) { + animation-delay: 387.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3875) { + animation-delay: 387.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3876) { + animation-delay: 387.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3877) { + animation-delay: 387.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3878) { + animation-delay: 387.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3879) { + animation-delay: 387.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3880) { + animation-delay: 388s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3881) { + animation-delay: 388.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3882) { + animation-delay: 388.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3883) { + animation-delay: 388.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3884) { + animation-delay: 388.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3885) { + animation-delay: 388.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3886) { + animation-delay: 388.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3887) { + animation-delay: 388.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3888) { + animation-delay: 388.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3889) { + animation-delay: 388.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3890) { + animation-delay: 389s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3891) { + animation-delay: 389.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3892) { + animation-delay: 389.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3893) { + animation-delay: 389.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3894) { + animation-delay: 389.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3895) { + animation-delay: 389.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3896) { + animation-delay: 389.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3897) { + animation-delay: 389.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3898) { + animation-delay: 389.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3899) { + animation-delay: 389.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3900) { + animation-delay: 390s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3901) { + animation-delay: 390.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3902) { + animation-delay: 390.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3903) { + animation-delay: 390.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3904) { + animation-delay: 390.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3905) { + animation-delay: 390.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3906) { + animation-delay: 390.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3907) { + animation-delay: 390.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3908) { + animation-delay: 390.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3909) { + animation-delay: 390.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3910) { + animation-delay: 391s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3911) { + animation-delay: 391.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3912) { + animation-delay: 391.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3913) { + animation-delay: 391.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3914) { + animation-delay: 391.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3915) { + animation-delay: 391.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3916) { + animation-delay: 391.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3917) { + animation-delay: 391.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3918) { + animation-delay: 391.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3919) { + animation-delay: 391.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3920) { + animation-delay: 392s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3921) { + animation-delay: 392.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3922) { + animation-delay: 392.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3923) { + animation-delay: 392.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3924) { + animation-delay: 392.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3925) { + animation-delay: 392.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3926) { + animation-delay: 392.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3927) { + animation-delay: 392.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3928) { + animation-delay: 392.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3929) { + animation-delay: 392.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3930) { + animation-delay: 393s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3931) { + animation-delay: 393.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3932) { + animation-delay: 393.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3933) { + animation-delay: 393.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3934) { + animation-delay: 393.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3935) { + animation-delay: 393.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3936) { + animation-delay: 393.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3937) { + animation-delay: 393.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3938) { + animation-delay: 393.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3939) { + animation-delay: 393.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3940) { + animation-delay: 394s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3941) { + animation-delay: 394.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3942) { + animation-delay: 394.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3943) { + animation-delay: 394.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3944) { + animation-delay: 394.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3945) { + animation-delay: 394.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3946) { + animation-delay: 394.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3947) { + animation-delay: 394.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3948) { + animation-delay: 394.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3949) { + animation-delay: 394.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3950) { + animation-delay: 395s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3951) { + animation-delay: 395.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3952) { + animation-delay: 395.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3953) { + animation-delay: 395.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3954) { + animation-delay: 395.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3955) { + animation-delay: 395.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3956) { + animation-delay: 395.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3957) { + animation-delay: 395.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3958) { + animation-delay: 395.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3959) { + animation-delay: 395.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3960) { + animation-delay: 396s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3961) { + animation-delay: 396.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3962) { + animation-delay: 396.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3963) { + animation-delay: 396.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3964) { + animation-delay: 396.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3965) { + animation-delay: 396.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3966) { + animation-delay: 396.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3967) { + animation-delay: 396.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3968) { + animation-delay: 396.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3969) { + animation-delay: 396.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3970) { + animation-delay: 397s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3971) { + animation-delay: 397.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3972) { + animation-delay: 397.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3973) { + animation-delay: 397.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3974) { + animation-delay: 397.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3975) { + animation-delay: 397.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3976) { + animation-delay: 397.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3977) { + animation-delay: 397.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3978) { + animation-delay: 397.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3979) { + animation-delay: 397.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3980) { + animation-delay: 398s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3981) { + animation-delay: 398.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3982) { + animation-delay: 398.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3983) { + animation-delay: 398.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3984) { + animation-delay: 398.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3985) { + animation-delay: 398.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3986) { + animation-delay: 398.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3987) { + animation-delay: 398.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3988) { + animation-delay: 398.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3989) { + animation-delay: 398.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3990) { + animation-delay: 399s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3991) { + animation-delay: 399.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3992) { + animation-delay: 399.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3993) { + animation-delay: 399.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3994) { + animation-delay: 399.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3995) { + animation-delay: 399.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3996) { + animation-delay: 399.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3997) { + animation-delay: 399.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3998) { + animation-delay: 399.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3999) { + animation-delay: 399.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4000) { + animation-delay: 400s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4001) { + animation-delay: 400.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4002) { + animation-delay: 400.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4003) { + animation-delay: 400.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4004) { + animation-delay: 400.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4005) { + animation-delay: 400.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4006) { + animation-delay: 400.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4007) { + animation-delay: 400.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4008) { + animation-delay: 400.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4009) { + animation-delay: 400.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4010) { + animation-delay: 401s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4011) { + animation-delay: 401.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4012) { + animation-delay: 401.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4013) { + animation-delay: 401.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4014) { + animation-delay: 401.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4015) { + animation-delay: 401.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4016) { + animation-delay: 401.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4017) { + animation-delay: 401.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4018) { + animation-delay: 401.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4019) { + animation-delay: 401.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4020) { + animation-delay: 402s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4021) { + animation-delay: 402.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4022) { + animation-delay: 402.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4023) { + animation-delay: 402.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4024) { + animation-delay: 402.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4025) { + animation-delay: 402.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4026) { + animation-delay: 402.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4027) { + animation-delay: 402.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4028) { + animation-delay: 402.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4029) { + animation-delay: 402.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4030) { + animation-delay: 403s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4031) { + animation-delay: 403.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4032) { + animation-delay: 403.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4033) { + animation-delay: 403.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4034) { + animation-delay: 403.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4035) { + animation-delay: 403.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4036) { + animation-delay: 403.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4037) { + animation-delay: 403.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4038) { + animation-delay: 403.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4039) { + animation-delay: 403.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4040) { + animation-delay: 404s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4041) { + animation-delay: 404.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4042) { + animation-delay: 404.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4043) { + animation-delay: 404.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4044) { + animation-delay: 404.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4045) { + animation-delay: 404.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4046) { + animation-delay: 404.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4047) { + animation-delay: 404.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4048) { + animation-delay: 404.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4049) { + animation-delay: 404.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4050) { + animation-delay: 405s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4051) { + animation-delay: 405.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4052) { + animation-delay: 405.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4053) { + animation-delay: 405.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4054) { + animation-delay: 405.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4055) { + animation-delay: 405.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4056) { + animation-delay: 405.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4057) { + animation-delay: 405.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4058) { + animation-delay: 405.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4059) { + animation-delay: 405.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4060) { + animation-delay: 406s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4061) { + animation-delay: 406.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4062) { + animation-delay: 406.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4063) { + animation-delay: 406.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4064) { + animation-delay: 406.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4065) { + animation-delay: 406.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4066) { + animation-delay: 406.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4067) { + animation-delay: 406.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4068) { + animation-delay: 406.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4069) { + animation-delay: 406.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4070) { + animation-delay: 407s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4071) { + animation-delay: 407.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4072) { + animation-delay: 407.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4073) { + animation-delay: 407.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4074) { + animation-delay: 407.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4075) { + animation-delay: 407.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4076) { + animation-delay: 407.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4077) { + animation-delay: 407.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4078) { + animation-delay: 407.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4079) { + animation-delay: 407.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4080) { + animation-delay: 408s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4081) { + animation-delay: 408.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4082) { + animation-delay: 408.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4083) { + animation-delay: 408.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4084) { + animation-delay: 408.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4085) { + animation-delay: 408.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4086) { + animation-delay: 408.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4087) { + animation-delay: 408.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4088) { + animation-delay: 408.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4089) { + animation-delay: 408.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4090) { + animation-delay: 409s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4091) { + animation-delay: 409.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4092) { + animation-delay: 409.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4093) { + animation-delay: 409.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4094) { + animation-delay: 409.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4095) { + animation-delay: 409.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4096) { + animation-delay: 409.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4097) { + animation-delay: 409.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4098) { + animation-delay: 409.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4099) { + animation-delay: 409.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4100) { + animation-delay: 410s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4101) { + animation-delay: 410.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4102) { + animation-delay: 410.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4103) { + animation-delay: 410.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4104) { + animation-delay: 410.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4105) { + animation-delay: 410.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4106) { + animation-delay: 410.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4107) { + animation-delay: 410.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4108) { + animation-delay: 410.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4109) { + animation-delay: 410.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4110) { + animation-delay: 411s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4111) { + animation-delay: 411.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4112) { + animation-delay: 411.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4113) { + animation-delay: 411.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4114) { + animation-delay: 411.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4115) { + animation-delay: 411.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4116) { + animation-delay: 411.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4117) { + animation-delay: 411.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4118) { + animation-delay: 411.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4119) { + animation-delay: 411.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4120) { + animation-delay: 412s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4121) { + animation-delay: 412.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4122) { + animation-delay: 412.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4123) { + animation-delay: 412.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4124) { + animation-delay: 412.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4125) { + animation-delay: 412.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4126) { + animation-delay: 412.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4127) { + animation-delay: 412.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4128) { + animation-delay: 412.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4129) { + animation-delay: 412.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4130) { + animation-delay: 413s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4131) { + animation-delay: 413.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4132) { + animation-delay: 413.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4133) { + animation-delay: 413.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4134) { + animation-delay: 413.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4135) { + animation-delay: 413.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4136) { + animation-delay: 413.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4137) { + animation-delay: 413.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4138) { + animation-delay: 413.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4139) { + animation-delay: 413.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4140) { + animation-delay: 414s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4141) { + animation-delay: 414.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4142) { + animation-delay: 414.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4143) { + animation-delay: 414.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4144) { + animation-delay: 414.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4145) { + animation-delay: 414.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4146) { + animation-delay: 414.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4147) { + animation-delay: 414.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4148) { + animation-delay: 414.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4149) { + animation-delay: 414.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4150) { + animation-delay: 415s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4151) { + animation-delay: 415.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4152) { + animation-delay: 415.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4153) { + animation-delay: 415.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4154) { + animation-delay: 415.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4155) { + animation-delay: 415.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4156) { + animation-delay: 415.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4157) { + animation-delay: 415.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4158) { + animation-delay: 415.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4159) { + animation-delay: 415.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4160) { + animation-delay: 416s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4161) { + animation-delay: 416.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4162) { + animation-delay: 416.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4163) { + animation-delay: 416.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4164) { + animation-delay: 416.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4165) { + animation-delay: 416.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4166) { + animation-delay: 416.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4167) { + animation-delay: 416.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4168) { + animation-delay: 416.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4169) { + animation-delay: 416.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4170) { + animation-delay: 417s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4171) { + animation-delay: 417.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4172) { + animation-delay: 417.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4173) { + animation-delay: 417.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4174) { + animation-delay: 417.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4175) { + animation-delay: 417.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4176) { + animation-delay: 417.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4177) { + animation-delay: 417.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4178) { + animation-delay: 417.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4179) { + animation-delay: 417.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4180) { + animation-delay: 418s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4181) { + animation-delay: 418.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4182) { + animation-delay: 418.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4183) { + animation-delay: 418.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4184) { + animation-delay: 418.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4185) { + animation-delay: 418.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4186) { + animation-delay: 418.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4187) { + animation-delay: 418.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4188) { + animation-delay: 418.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4189) { + animation-delay: 418.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4190) { + animation-delay: 419s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4191) { + animation-delay: 419.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4192) { + animation-delay: 419.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4193) { + animation-delay: 419.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4194) { + animation-delay: 419.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4195) { + animation-delay: 419.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4196) { + animation-delay: 419.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4197) { + animation-delay: 419.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4198) { + animation-delay: 419.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4199) { + animation-delay: 419.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4200) { + animation-delay: 420s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4201) { + animation-delay: 420.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4202) { + animation-delay: 420.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4203) { + animation-delay: 420.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4204) { + animation-delay: 420.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4205) { + animation-delay: 420.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4206) { + animation-delay: 420.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4207) { + animation-delay: 420.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4208) { + animation-delay: 420.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4209) { + animation-delay: 420.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4210) { + animation-delay: 421s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4211) { + animation-delay: 421.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4212) { + animation-delay: 421.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4213) { + animation-delay: 421.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4214) { + animation-delay: 421.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4215) { + animation-delay: 421.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4216) { + animation-delay: 421.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4217) { + animation-delay: 421.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4218) { + animation-delay: 421.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4219) { + animation-delay: 421.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4220) { + animation-delay: 422s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4221) { + animation-delay: 422.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4222) { + animation-delay: 422.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4223) { + animation-delay: 422.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4224) { + animation-delay: 422.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4225) { + animation-delay: 422.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4226) { + animation-delay: 422.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4227) { + animation-delay: 422.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4228) { + animation-delay: 422.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4229) { + animation-delay: 422.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4230) { + animation-delay: 423s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4231) { + animation-delay: 423.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4232) { + animation-delay: 423.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4233) { + animation-delay: 423.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4234) { + animation-delay: 423.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4235) { + animation-delay: 423.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4236) { + animation-delay: 423.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4237) { + animation-delay: 423.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4238) { + animation-delay: 423.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4239) { + animation-delay: 423.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4240) { + animation-delay: 424s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4241) { + animation-delay: 424.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4242) { + animation-delay: 424.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4243) { + animation-delay: 424.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4244) { + animation-delay: 424.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4245) { + animation-delay: 424.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4246) { + animation-delay: 424.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4247) { + animation-delay: 424.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4248) { + animation-delay: 424.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4249) { + animation-delay: 424.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4250) { + animation-delay: 425s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4251) { + animation-delay: 425.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4252) { + animation-delay: 425.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4253) { + animation-delay: 425.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4254) { + animation-delay: 425.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4255) { + animation-delay: 425.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4256) { + animation-delay: 425.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4257) { + animation-delay: 425.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4258) { + animation-delay: 425.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4259) { + animation-delay: 425.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4260) { + animation-delay: 426s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4261) { + animation-delay: 426.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4262) { + animation-delay: 426.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4263) { + animation-delay: 426.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4264) { + animation-delay: 426.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4265) { + animation-delay: 426.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4266) { + animation-delay: 426.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4267) { + animation-delay: 426.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4268) { + animation-delay: 426.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4269) { + animation-delay: 426.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4270) { + animation-delay: 427s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4271) { + animation-delay: 427.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4272) { + animation-delay: 427.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4273) { + animation-delay: 427.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4274) { + animation-delay: 427.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4275) { + animation-delay: 427.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4276) { + animation-delay: 427.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4277) { + animation-delay: 427.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4278) { + animation-delay: 427.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4279) { + animation-delay: 427.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4280) { + animation-delay: 428s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4281) { + animation-delay: 428.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4282) { + animation-delay: 428.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4283) { + animation-delay: 428.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4284) { + animation-delay: 428.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4285) { + animation-delay: 428.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4286) { + animation-delay: 428.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4287) { + animation-delay: 428.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4288) { + animation-delay: 428.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4289) { + animation-delay: 428.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4290) { + animation-delay: 429s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4291) { + animation-delay: 429.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4292) { + animation-delay: 429.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4293) { + animation-delay: 429.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4294) { + animation-delay: 429.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4295) { + animation-delay: 429.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4296) { + animation-delay: 429.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4297) { + animation-delay: 429.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4298) { + animation-delay: 429.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4299) { + animation-delay: 429.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4300) { + animation-delay: 430s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4301) { + animation-delay: 430.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4302) { + animation-delay: 430.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4303) { + animation-delay: 430.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4304) { + animation-delay: 430.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4305) { + animation-delay: 430.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4306) { + animation-delay: 430.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4307) { + animation-delay: 430.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4308) { + animation-delay: 430.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4309) { + animation-delay: 430.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4310) { + animation-delay: 431s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4311) { + animation-delay: 431.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4312) { + animation-delay: 431.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4313) { + animation-delay: 431.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4314) { + animation-delay: 431.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4315) { + animation-delay: 431.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4316) { + animation-delay: 431.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4317) { + animation-delay: 431.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4318) { + animation-delay: 431.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4319) { + animation-delay: 431.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4320) { + animation-delay: 432s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4321) { + animation-delay: 432.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4322) { + animation-delay: 432.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4323) { + animation-delay: 432.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4324) { + animation-delay: 432.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4325) { + animation-delay: 432.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4326) { + animation-delay: 432.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4327) { + animation-delay: 432.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4328) { + animation-delay: 432.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4329) { + animation-delay: 432.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4330) { + animation-delay: 433s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4331) { + animation-delay: 433.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4332) { + animation-delay: 433.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4333) { + animation-delay: 433.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4334) { + animation-delay: 433.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4335) { + animation-delay: 433.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4336) { + animation-delay: 433.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4337) { + animation-delay: 433.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4338) { + animation-delay: 433.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4339) { + animation-delay: 433.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4340) { + animation-delay: 434s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4341) { + animation-delay: 434.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4342) { + animation-delay: 434.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4343) { + animation-delay: 434.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4344) { + animation-delay: 434.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4345) { + animation-delay: 434.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4346) { + animation-delay: 434.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4347) { + animation-delay: 434.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4348) { + animation-delay: 434.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4349) { + animation-delay: 434.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4350) { + animation-delay: 435s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4351) { + animation-delay: 435.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4352) { + animation-delay: 435.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4353) { + animation-delay: 435.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4354) { + animation-delay: 435.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4355) { + animation-delay: 435.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4356) { + animation-delay: 435.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4357) { + animation-delay: 435.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4358) { + animation-delay: 435.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4359) { + animation-delay: 435.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4360) { + animation-delay: 436s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4361) { + animation-delay: 436.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4362) { + animation-delay: 436.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4363) { + animation-delay: 436.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4364) { + animation-delay: 436.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4365) { + animation-delay: 436.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4366) { + animation-delay: 436.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4367) { + animation-delay: 436.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4368) { + animation-delay: 436.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4369) { + animation-delay: 436.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4370) { + animation-delay: 437s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4371) { + animation-delay: 437.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4372) { + animation-delay: 437.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4373) { + animation-delay: 437.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4374) { + animation-delay: 437.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4375) { + animation-delay: 437.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4376) { + animation-delay: 437.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4377) { + animation-delay: 437.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4378) { + animation-delay: 437.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4379) { + animation-delay: 437.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4380) { + animation-delay: 438s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4381) { + animation-delay: 438.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4382) { + animation-delay: 438.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4383) { + animation-delay: 438.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4384) { + animation-delay: 438.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4385) { + animation-delay: 438.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4386) { + animation-delay: 438.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4387) { + animation-delay: 438.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4388) { + animation-delay: 438.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4389) { + animation-delay: 438.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4390) { + animation-delay: 439s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4391) { + animation-delay: 439.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4392) { + animation-delay: 439.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4393) { + animation-delay: 439.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4394) { + animation-delay: 439.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4395) { + animation-delay: 439.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4396) { + animation-delay: 439.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4397) { + animation-delay: 439.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4398) { + animation-delay: 439.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4399) { + animation-delay: 439.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4400) { + animation-delay: 440s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4401) { + animation-delay: 440.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4402) { + animation-delay: 440.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4403) { + animation-delay: 440.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4404) { + animation-delay: 440.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4405) { + animation-delay: 440.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4406) { + animation-delay: 440.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4407) { + animation-delay: 440.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4408) { + animation-delay: 440.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4409) { + animation-delay: 440.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4410) { + animation-delay: 441s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4411) { + animation-delay: 441.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4412) { + animation-delay: 441.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4413) { + animation-delay: 441.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4414) { + animation-delay: 441.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4415) { + animation-delay: 441.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4416) { + animation-delay: 441.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4417) { + animation-delay: 441.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4418) { + animation-delay: 441.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4419) { + animation-delay: 441.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4420) { + animation-delay: 442s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4421) { + animation-delay: 442.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4422) { + animation-delay: 442.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4423) { + animation-delay: 442.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4424) { + animation-delay: 442.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4425) { + animation-delay: 442.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4426) { + animation-delay: 442.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4427) { + animation-delay: 442.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4428) { + animation-delay: 442.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4429) { + animation-delay: 442.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4430) { + animation-delay: 443s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4431) { + animation-delay: 443.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4432) { + animation-delay: 443.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4433) { + animation-delay: 443.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4434) { + animation-delay: 443.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4435) { + animation-delay: 443.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4436) { + animation-delay: 443.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4437) { + animation-delay: 443.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4438) { + animation-delay: 443.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4439) { + animation-delay: 443.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4440) { + animation-delay: 444s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4441) { + animation-delay: 444.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4442) { + animation-delay: 444.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4443) { + animation-delay: 444.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4444) { + animation-delay: 444.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4445) { + animation-delay: 444.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4446) { + animation-delay: 444.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4447) { + animation-delay: 444.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4448) { + animation-delay: 444.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4449) { + animation-delay: 444.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4450) { + animation-delay: 445s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4451) { + animation-delay: 445.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4452) { + animation-delay: 445.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4453) { + animation-delay: 445.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4454) { + animation-delay: 445.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4455) { + animation-delay: 445.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4456) { + animation-delay: 445.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4457) { + animation-delay: 445.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4458) { + animation-delay: 445.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4459) { + animation-delay: 445.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4460) { + animation-delay: 446s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4461) { + animation-delay: 446.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4462) { + animation-delay: 446.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4463) { + animation-delay: 446.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4464) { + animation-delay: 446.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4465) { + animation-delay: 446.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4466) { + animation-delay: 446.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4467) { + animation-delay: 446.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4468) { + animation-delay: 446.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4469) { + animation-delay: 446.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4470) { + animation-delay: 447s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4471) { + animation-delay: 447.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4472) { + animation-delay: 447.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4473) { + animation-delay: 447.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4474) { + animation-delay: 447.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4475) { + animation-delay: 447.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4476) { + animation-delay: 447.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4477) { + animation-delay: 447.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4478) { + animation-delay: 447.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4479) { + animation-delay: 447.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4480) { + animation-delay: 448s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4481) { + animation-delay: 448.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4482) { + animation-delay: 448.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4483) { + animation-delay: 448.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4484) { + animation-delay: 448.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4485) { + animation-delay: 448.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4486) { + animation-delay: 448.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4487) { + animation-delay: 448.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4488) { + animation-delay: 448.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4489) { + animation-delay: 448.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4490) { + animation-delay: 449s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4491) { + animation-delay: 449.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4492) { + animation-delay: 449.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4493) { + animation-delay: 449.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4494) { + animation-delay: 449.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4495) { + animation-delay: 449.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4496) { + animation-delay: 449.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4497) { + animation-delay: 449.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4498) { + animation-delay: 449.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4499) { + animation-delay: 449.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4500) { + animation-delay: 450s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4501) { + animation-delay: 450.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4502) { + animation-delay: 450.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4503) { + animation-delay: 450.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4504) { + animation-delay: 450.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4505) { + animation-delay: 450.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4506) { + animation-delay: 450.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4507) { + animation-delay: 450.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4508) { + animation-delay: 450.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4509) { + animation-delay: 450.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4510) { + animation-delay: 451s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4511) { + animation-delay: 451.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4512) { + animation-delay: 451.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4513) { + animation-delay: 451.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4514) { + animation-delay: 451.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4515) { + animation-delay: 451.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4516) { + animation-delay: 451.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4517) { + animation-delay: 451.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4518) { + animation-delay: 451.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4519) { + animation-delay: 451.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4520) { + animation-delay: 452s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4521) { + animation-delay: 452.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4522) { + animation-delay: 452.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4523) { + animation-delay: 452.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4524) { + animation-delay: 452.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4525) { + animation-delay: 452.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4526) { + animation-delay: 452.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4527) { + animation-delay: 452.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4528) { + animation-delay: 452.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4529) { + animation-delay: 452.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4530) { + animation-delay: 453s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4531) { + animation-delay: 453.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4532) { + animation-delay: 453.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4533) { + animation-delay: 453.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4534) { + animation-delay: 453.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4535) { + animation-delay: 453.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4536) { + animation-delay: 453.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4537) { + animation-delay: 453.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4538) { + animation-delay: 453.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4539) { + animation-delay: 453.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4540) { + animation-delay: 454s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4541) { + animation-delay: 454.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4542) { + animation-delay: 454.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4543) { + animation-delay: 454.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4544) { + animation-delay: 454.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4545) { + animation-delay: 454.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4546) { + animation-delay: 454.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4547) { + animation-delay: 454.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4548) { + animation-delay: 454.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4549) { + animation-delay: 454.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4550) { + animation-delay: 455s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4551) { + animation-delay: 455.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4552) { + animation-delay: 455.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4553) { + animation-delay: 455.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4554) { + animation-delay: 455.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4555) { + animation-delay: 455.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4556) { + animation-delay: 455.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4557) { + animation-delay: 455.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4558) { + animation-delay: 455.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4559) { + animation-delay: 455.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4560) { + animation-delay: 456s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4561) { + animation-delay: 456.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4562) { + animation-delay: 456.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4563) { + animation-delay: 456.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4564) { + animation-delay: 456.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4565) { + animation-delay: 456.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4566) { + animation-delay: 456.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4567) { + animation-delay: 456.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4568) { + animation-delay: 456.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4569) { + animation-delay: 456.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4570) { + animation-delay: 457s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4571) { + animation-delay: 457.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4572) { + animation-delay: 457.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4573) { + animation-delay: 457.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4574) { + animation-delay: 457.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4575) { + animation-delay: 457.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4576) { + animation-delay: 457.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4577) { + animation-delay: 457.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4578) { + animation-delay: 457.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4579) { + animation-delay: 457.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4580) { + animation-delay: 458s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4581) { + animation-delay: 458.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4582) { + animation-delay: 458.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4583) { + animation-delay: 458.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4584) { + animation-delay: 458.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4585) { + animation-delay: 458.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4586) { + animation-delay: 458.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4587) { + animation-delay: 458.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4588) { + animation-delay: 458.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4589) { + animation-delay: 458.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4590) { + animation-delay: 459s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4591) { + animation-delay: 459.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4592) { + animation-delay: 459.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4593) { + animation-delay: 459.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4594) { + animation-delay: 459.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4595) { + animation-delay: 459.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4596) { + animation-delay: 459.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4597) { + animation-delay: 459.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4598) { + animation-delay: 459.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4599) { + animation-delay: 459.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4600) { + animation-delay: 460s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4601) { + animation-delay: 460.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4602) { + animation-delay: 460.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4603) { + animation-delay: 460.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4604) { + animation-delay: 460.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4605) { + animation-delay: 460.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4606) { + animation-delay: 460.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4607) { + animation-delay: 460.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4608) { + animation-delay: 460.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4609) { + animation-delay: 460.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4610) { + animation-delay: 461s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4611) { + animation-delay: 461.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4612) { + animation-delay: 461.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4613) { + animation-delay: 461.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4614) { + animation-delay: 461.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4615) { + animation-delay: 461.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4616) { + animation-delay: 461.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4617) { + animation-delay: 461.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4618) { + animation-delay: 461.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4619) { + animation-delay: 461.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4620) { + animation-delay: 462s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4621) { + animation-delay: 462.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4622) { + animation-delay: 462.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4623) { + animation-delay: 462.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4624) { + animation-delay: 462.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4625) { + animation-delay: 462.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4626) { + animation-delay: 462.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4627) { + animation-delay: 462.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4628) { + animation-delay: 462.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4629) { + animation-delay: 462.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4630) { + animation-delay: 463s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4631) { + animation-delay: 463.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4632) { + animation-delay: 463.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4633) { + animation-delay: 463.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4634) { + animation-delay: 463.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4635) { + animation-delay: 463.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4636) { + animation-delay: 463.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4637) { + animation-delay: 463.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4638) { + animation-delay: 463.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4639) { + animation-delay: 463.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4640) { + animation-delay: 464s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4641) { + animation-delay: 464.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4642) { + animation-delay: 464.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4643) { + animation-delay: 464.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4644) { + animation-delay: 464.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4645) { + animation-delay: 464.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4646) { + animation-delay: 464.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4647) { + animation-delay: 464.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4648) { + animation-delay: 464.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4649) { + animation-delay: 464.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4650) { + animation-delay: 465s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4651) { + animation-delay: 465.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4652) { + animation-delay: 465.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4653) { + animation-delay: 465.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4654) { + animation-delay: 465.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4655) { + animation-delay: 465.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4656) { + animation-delay: 465.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4657) { + animation-delay: 465.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4658) { + animation-delay: 465.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4659) { + animation-delay: 465.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4660) { + animation-delay: 466s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4661) { + animation-delay: 466.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4662) { + animation-delay: 466.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4663) { + animation-delay: 466.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4664) { + animation-delay: 466.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4665) { + animation-delay: 466.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4666) { + animation-delay: 466.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4667) { + animation-delay: 466.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4668) { + animation-delay: 466.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4669) { + animation-delay: 466.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4670) { + animation-delay: 467s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4671) { + animation-delay: 467.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4672) { + animation-delay: 467.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4673) { + animation-delay: 467.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4674) { + animation-delay: 467.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4675) { + animation-delay: 467.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4676) { + animation-delay: 467.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4677) { + animation-delay: 467.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4678) { + animation-delay: 467.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4679) { + animation-delay: 467.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4680) { + animation-delay: 468s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4681) { + animation-delay: 468.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4682) { + animation-delay: 468.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4683) { + animation-delay: 468.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4684) { + animation-delay: 468.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4685) { + animation-delay: 468.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4686) { + animation-delay: 468.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4687) { + animation-delay: 468.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4688) { + animation-delay: 468.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4689) { + animation-delay: 468.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4690) { + animation-delay: 469s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4691) { + animation-delay: 469.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4692) { + animation-delay: 469.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4693) { + animation-delay: 469.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4694) { + animation-delay: 469.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4695) { + animation-delay: 469.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4696) { + animation-delay: 469.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4697) { + animation-delay: 469.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4698) { + animation-delay: 469.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4699) { + animation-delay: 469.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4700) { + animation-delay: 470s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4701) { + animation-delay: 470.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4702) { + animation-delay: 470.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4703) { + animation-delay: 470.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4704) { + animation-delay: 470.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4705) { + animation-delay: 470.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4706) { + animation-delay: 470.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4707) { + animation-delay: 470.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4708) { + animation-delay: 470.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4709) { + animation-delay: 470.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4710) { + animation-delay: 471s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4711) { + animation-delay: 471.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4712) { + animation-delay: 471.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4713) { + animation-delay: 471.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4714) { + animation-delay: 471.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4715) { + animation-delay: 471.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4716) { + animation-delay: 471.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4717) { + animation-delay: 471.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4718) { + animation-delay: 471.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4719) { + animation-delay: 471.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4720) { + animation-delay: 472s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4721) { + animation-delay: 472.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4722) { + animation-delay: 472.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4723) { + animation-delay: 472.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4724) { + animation-delay: 472.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4725) { + animation-delay: 472.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4726) { + animation-delay: 472.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4727) { + animation-delay: 472.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4728) { + animation-delay: 472.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4729) { + animation-delay: 472.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4730) { + animation-delay: 473s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4731) { + animation-delay: 473.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4732) { + animation-delay: 473.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4733) { + animation-delay: 473.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4734) { + animation-delay: 473.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4735) { + animation-delay: 473.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4736) { + animation-delay: 473.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4737) { + animation-delay: 473.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4738) { + animation-delay: 473.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4739) { + animation-delay: 473.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4740) { + animation-delay: 474s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4741) { + animation-delay: 474.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4742) { + animation-delay: 474.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4743) { + animation-delay: 474.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4744) { + animation-delay: 474.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4745) { + animation-delay: 474.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4746) { + animation-delay: 474.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4747) { + animation-delay: 474.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4748) { + animation-delay: 474.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4749) { + animation-delay: 474.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4750) { + animation-delay: 475s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4751) { + animation-delay: 475.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4752) { + animation-delay: 475.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4753) { + animation-delay: 475.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4754) { + animation-delay: 475.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4755) { + animation-delay: 475.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4756) { + animation-delay: 475.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4757) { + animation-delay: 475.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4758) { + animation-delay: 475.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4759) { + animation-delay: 475.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4760) { + animation-delay: 476s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4761) { + animation-delay: 476.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4762) { + animation-delay: 476.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4763) { + animation-delay: 476.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4764) { + animation-delay: 476.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4765) { + animation-delay: 476.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4766) { + animation-delay: 476.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4767) { + animation-delay: 476.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4768) { + animation-delay: 476.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4769) { + animation-delay: 476.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4770) { + animation-delay: 477s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4771) { + animation-delay: 477.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4772) { + animation-delay: 477.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4773) { + animation-delay: 477.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4774) { + animation-delay: 477.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4775) { + animation-delay: 477.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4776) { + animation-delay: 477.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4777) { + animation-delay: 477.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4778) { + animation-delay: 477.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4779) { + animation-delay: 477.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4780) { + animation-delay: 478s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4781) { + animation-delay: 478.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4782) { + animation-delay: 478.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4783) { + animation-delay: 478.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4784) { + animation-delay: 478.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4785) { + animation-delay: 478.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4786) { + animation-delay: 478.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4787) { + animation-delay: 478.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4788) { + animation-delay: 478.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4789) { + animation-delay: 478.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4790) { + animation-delay: 479s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4791) { + animation-delay: 479.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4792) { + animation-delay: 479.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4793) { + animation-delay: 479.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4794) { + animation-delay: 479.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4795) { + animation-delay: 479.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4796) { + animation-delay: 479.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4797) { + animation-delay: 479.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4798) { + animation-delay: 479.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4799) { + animation-delay: 479.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4800) { + animation-delay: 480s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4801) { + animation-delay: 480.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4802) { + animation-delay: 480.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4803) { + animation-delay: 480.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4804) { + animation-delay: 480.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4805) { + animation-delay: 480.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4806) { + animation-delay: 480.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4807) { + animation-delay: 480.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4808) { + animation-delay: 480.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4809) { + animation-delay: 480.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4810) { + animation-delay: 481s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4811) { + animation-delay: 481.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4812) { + animation-delay: 481.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4813) { + animation-delay: 481.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4814) { + animation-delay: 481.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4815) { + animation-delay: 481.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4816) { + animation-delay: 481.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4817) { + animation-delay: 481.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4818) { + animation-delay: 481.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4819) { + animation-delay: 481.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4820) { + animation-delay: 482s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4821) { + animation-delay: 482.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4822) { + animation-delay: 482.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4823) { + animation-delay: 482.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4824) { + animation-delay: 482.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4825) { + animation-delay: 482.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4826) { + animation-delay: 482.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4827) { + animation-delay: 482.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4828) { + animation-delay: 482.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4829) { + animation-delay: 482.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4830) { + animation-delay: 483s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4831) { + animation-delay: 483.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4832) { + animation-delay: 483.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4833) { + animation-delay: 483.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4834) { + animation-delay: 483.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4835) { + animation-delay: 483.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4836) { + animation-delay: 483.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4837) { + animation-delay: 483.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4838) { + animation-delay: 483.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4839) { + animation-delay: 483.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4840) { + animation-delay: 484s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4841) { + animation-delay: 484.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4842) { + animation-delay: 484.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4843) { + animation-delay: 484.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4844) { + animation-delay: 484.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4845) { + animation-delay: 484.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4846) { + animation-delay: 484.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4847) { + animation-delay: 484.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4848) { + animation-delay: 484.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4849) { + animation-delay: 484.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4850) { + animation-delay: 485s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4851) { + animation-delay: 485.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4852) { + animation-delay: 485.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4853) { + animation-delay: 485.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4854) { + animation-delay: 485.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4855) { + animation-delay: 485.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4856) { + animation-delay: 485.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4857) { + animation-delay: 485.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4858) { + animation-delay: 485.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4859) { + animation-delay: 485.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4860) { + animation-delay: 486s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4861) { + animation-delay: 486.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4862) { + animation-delay: 486.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4863) { + animation-delay: 486.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4864) { + animation-delay: 486.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4865) { + animation-delay: 486.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4866) { + animation-delay: 486.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4867) { + animation-delay: 486.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4868) { + animation-delay: 486.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4869) { + animation-delay: 486.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4870) { + animation-delay: 487s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4871) { + animation-delay: 487.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4872) { + animation-delay: 487.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4873) { + animation-delay: 487.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4874) { + animation-delay: 487.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4875) { + animation-delay: 487.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4876) { + animation-delay: 487.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4877) { + animation-delay: 487.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4878) { + animation-delay: 487.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4879) { + animation-delay: 487.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4880) { + animation-delay: 488s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4881) { + animation-delay: 488.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4882) { + animation-delay: 488.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4883) { + animation-delay: 488.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4884) { + animation-delay: 488.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4885) { + animation-delay: 488.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4886) { + animation-delay: 488.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4887) { + animation-delay: 488.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4888) { + animation-delay: 488.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4889) { + animation-delay: 488.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4890) { + animation-delay: 489s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4891) { + animation-delay: 489.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4892) { + animation-delay: 489.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4893) { + animation-delay: 489.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4894) { + animation-delay: 489.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4895) { + animation-delay: 489.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4896) { + animation-delay: 489.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4897) { + animation-delay: 489.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4898) { + animation-delay: 489.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4899) { + animation-delay: 489.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4900) { + animation-delay: 490s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4901) { + animation-delay: 490.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4902) { + animation-delay: 490.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4903) { + animation-delay: 490.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4904) { + animation-delay: 490.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4905) { + animation-delay: 490.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4906) { + animation-delay: 490.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4907) { + animation-delay: 490.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4908) { + animation-delay: 490.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4909) { + animation-delay: 490.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4910) { + animation-delay: 491s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4911) { + animation-delay: 491.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4912) { + animation-delay: 491.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4913) { + animation-delay: 491.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4914) { + animation-delay: 491.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4915) { + animation-delay: 491.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4916) { + animation-delay: 491.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4917) { + animation-delay: 491.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4918) { + animation-delay: 491.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4919) { + animation-delay: 491.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4920) { + animation-delay: 492s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4921) { + animation-delay: 492.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4922) { + animation-delay: 492.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4923) { + animation-delay: 492.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4924) { + animation-delay: 492.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4925) { + animation-delay: 492.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4926) { + animation-delay: 492.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4927) { + animation-delay: 492.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4928) { + animation-delay: 492.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4929) { + animation-delay: 492.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4930) { + animation-delay: 493s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4931) { + animation-delay: 493.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4932) { + animation-delay: 493.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4933) { + animation-delay: 493.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4934) { + animation-delay: 493.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4935) { + animation-delay: 493.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4936) { + animation-delay: 493.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4937) { + animation-delay: 493.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4938) { + animation-delay: 493.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4939) { + animation-delay: 493.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4940) { + animation-delay: 494s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4941) { + animation-delay: 494.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4942) { + animation-delay: 494.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4943) { + animation-delay: 494.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4944) { + animation-delay: 494.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4945) { + animation-delay: 494.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4946) { + animation-delay: 494.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4947) { + animation-delay: 494.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4948) { + animation-delay: 494.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4949) { + animation-delay: 494.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4950) { + animation-delay: 495s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4951) { + animation-delay: 495.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4952) { + animation-delay: 495.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4953) { + animation-delay: 495.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4954) { + animation-delay: 495.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4955) { + animation-delay: 495.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4956) { + animation-delay: 495.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4957) { + animation-delay: 495.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4958) { + animation-delay: 495.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4959) { + animation-delay: 495.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4960) { + animation-delay: 496s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4961) { + animation-delay: 496.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4962) { + animation-delay: 496.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4963) { + animation-delay: 496.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4964) { + animation-delay: 496.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4965) { + animation-delay: 496.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4966) { + animation-delay: 496.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4967) { + animation-delay: 496.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4968) { + animation-delay: 496.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4969) { + animation-delay: 496.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4970) { + animation-delay: 497s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4971) { + animation-delay: 497.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4972) { + animation-delay: 497.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4973) { + animation-delay: 497.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4974) { + animation-delay: 497.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4975) { + animation-delay: 497.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4976) { + animation-delay: 497.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4977) { + animation-delay: 497.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4978) { + animation-delay: 497.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4979) { + animation-delay: 497.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4980) { + animation-delay: 498s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4981) { + animation-delay: 498.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4982) { + animation-delay: 498.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4983) { + animation-delay: 498.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4984) { + animation-delay: 498.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4985) { + animation-delay: 498.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4986) { + animation-delay: 498.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4987) { + animation-delay: 498.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4988) { + animation-delay: 498.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4989) { + animation-delay: 498.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4990) { + animation-delay: 499s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4991) { + animation-delay: 499.1s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4992) { + animation-delay: 499.2s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4993) { + animation-delay: 499.3s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4994) { + animation-delay: 499.4s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4995) { + animation-delay: 499.5s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4996) { + animation-delay: 499.6s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4997) { + animation-delay: 499.7s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4998) { + animation-delay: 499.8s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4999) { + animation-delay: 499.9s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(5000) { + animation-delay: 500s; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper .todo-item-action { + display: flex; + align-items: center; + justify-content: space-between; + width: 5.75rem; } + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper .todo-item-action a { + cursor: pointer; + font-size: 1.2rem; + line-height: 1.5; } + .todo-application .content-area-wrapper .content-right .todo-task-list .no-results { + display: none; + padding: 1.5rem; + text-align: center; } + .todo-application .content-area-wrapper .content-right .todo-task-list .no-results.show { + display: block; } + +@-webkit-keyframes fadeIn { + 0% { + opacity: 0; + top: 100px; } + 75% { + opacity: 0.5; + top: 0px; } + 100% { + opacity: 1; } } + +@media (max-width: 575.98px) { + .todo-application .app-content .sidebar-left .todo-sidebar { + left: -1.12rem !important; } } + +@media (max-width: 767.98px) { + .todo-application .sidebar-content .sidebar-close-icon { + visibility: visible !important; } } + +@media (max-width: 991.98px) { + .todo-application .app-content .sidebar-left .todo-sidebar { + transform: translateX(-110%); + transition: all .3s ease-in-out; + left: 0; + position: fixed; + z-index: 5; + left: -2px; } + .todo-application .app-content .sidebar-left.show .todo-sidebar { + transform: translateX(13%); + transition: all .3s ease; + display: block; } + .todo-application .app-content .content-right { + width: 100%; } + .todo-application .app-content .content-right .todo-app-list-wrapper { + border-left: 0; } + .todo-application .app-content .content-right .app-fixed-search { + border-top-left-radius: 0.5rem; } } + +@media (max-width: 575.98px) { + .content-right .todo-task-list .todo-title-wrapper, .todo-title-area { + display: block !important; } + .content-right .todo-task-list .todo-title-wrapper .todo-item-action { + float: none !important; + width: 100% !important; + display: block !important; + margin-top: .5rem; } + .content-right .todo-task-list .todo-title-wrapper .todo-item-action a { + margin-right: 1rem; } } + +@media (max-width: 349.98px) { + .todo-application .content-area-wrapper .sidebar .todo-sidebar { + width: 230px; } } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li { + padding-top: 0; } } diff --git a/assets/css/pages/app-todo.min.css b/assets/css/pages/app-todo.min.css new file mode 100644 index 0000000..0ce40fd --- /dev/null +++ b/assets/css/pages/app-todo.min.css @@ -0,0 +1 @@ +.todo-application .content-area-wrapper{border:1px solid #DAE1E7;border-radius:.25rem}.todo-application .content-area-wrapper .sidebar .todo-sidebar{width:260px;height:calc(100vh - 13rem);height:calc(var(--vh,1vh) * 100 - 13rem);background-color:#FFF;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;-webkit-transition:all .3s ease;transition:all .3s ease}.todo-application .content-area-wrapper .sidebar .todo-sidebar .sidebar-close-icon{position:absolute;right:.25rem;top:.25rem;cursor:pointer;font-size:1.25rem;z-index:5;visibility:hidden}.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu{width:100%;box-shadow:0 0 15px 0 rgba(0,0,0,.05);padding:.5rem 0;z-index:3}.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .add-task{padding:1px 1.5rem;margin-bottom:.25rem}.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .sidebar-menu-list{padding:0 1.5rem;position:relative;overflow:scroll;height:calc(100% - 5.4rem)}.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item{padding-left:0;padding-right:0}.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item:focus{background-color:transparent}.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item:hover{background-color:transparent;color:#626262}.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item.active{background-color:transparent;color:#7367F0}.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item i{top:3px}.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu hr{margin-left:-1.5rem;margin-right:-1.5rem}.todo-application .content-area-wrapper .modal .todo-item-action{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;width:6rem;margin-bottom:1.25rem}.todo-application .content-area-wrapper .modal .todo-item-action .dropdown,.todo-application .content-area-wrapper .modal .todo-item-action .todo-item-favorite,.todo-application .content-area-wrapper .modal .todo-item-action .todo-item-info{cursor:pointer;font-size:1.2rem;line-height:1.5}.todo-application .content-area-wrapper .modal .todo-item-action .dropdown .dropdown-menu .dropdown-item{padding:.14rem 1.428rem}.todo-application .content-area-wrapper .modal .todo-item-action .dropdown-toggle::after{display:none}.todo-application .content-area-wrapper .app-content .content-area-wrapper{position:relative}.todo-application .content-area-wrapper .completed .todo-desc,.todo-application .content-area-wrapper .completed .todo-title{text-decoration:line-through}.todo-application .content-area-wrapper .content-right{width:calc(100% - 260px)}.todo-application .content-area-wrapper .content-right .content-wrapper{padding:0}.todo-application .content-area-wrapper .content-right .todo-app-list-wrapper{border-left:1px solid #DAE1E7}.todo-application .content-area-wrapper .content-right .app-fixed-search{padding:.35rem .1rem;border-bottom:1px solid #DAE1E7;background-color:#FFF;border-top-right-radius:.5rem}.todo-application .content-area-wrapper .content-right .app-fixed-search .form-control-position{font-size:calc(1rem * 1.1)}.todo-application .content-area-wrapper .content-right .app-fixed-search input{border:0;background-color:transparent}.todo-application .content-area-wrapper .content-right .app-fixed-search input:focus{border-color:transparent;box-shadow:none}.todo-application .content-area-wrapper .content-right .sidebar-toggle{cursor:pointer;margin:.5rem .99rem;float:left;line-height:1}.todo-application .content-area-wrapper .content-right .sidebar-toggle i{font-size:1.75rem}.todo-application .content-area-wrapper .content-right .app-content-overlay{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:2;visibility:hidden;opacity:0;-webkit-transition:all .3s ease;transition:all .3s ease}.todo-application .content-area-wrapper .content-right .app-content-overlay.show{visibility:visible;-webkit-transition:all .3s ease;transition:all .3s ease;opacity:1;background-color:rgba(0,0,0,.2);border-radius:.25rem}.todo-application .content-area-wrapper .content-right .todo-task-list{position:relative;height:calc(100vh - 16.35rem);height:calc(var(--vh,1vh) * 100 - 16.35rem)}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper{padding:0;margin:0}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li{cursor:pointer;-webkit-transition:all .2s;transition:all .2s;-webkit-animation:fadeIn .5s linear;animation:fadeIn .5s linear;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:relative;padding:1.1rem 3rem 1.2rem 2rem;border-top:1px solid #DAE1E7}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:hover{-webkit-transform:translateY(-4px);-ms-transform:translateY(-4px);transform:translateY(-4px);box-shadow:0 3px 10px 0 #CCC;-webkit-transition:all .2s;transition:all .2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li .chip-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li .chip-wrapper .chip{margin-right:.25rem}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1){-webkit-animation-delay:.1s;animation-delay:.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3){-webkit-animation-delay:.3s;animation-delay:.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4){-webkit-animation-delay:.4s;animation-delay:.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(5){-webkit-animation-delay:.5s;animation-delay:.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(6){-webkit-animation-delay:.6s;animation-delay:.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(7){-webkit-animation-delay:.7s;animation-delay:.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(8){-webkit-animation-delay:.8s;animation-delay:.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(9){-webkit-animation-delay:.9s;animation-delay:.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(10){-webkit-animation-delay:1s;animation-delay:1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(11){-webkit-animation-delay:1.1s;animation-delay:1.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(12){-webkit-animation-delay:1.2s;animation-delay:1.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(13){-webkit-animation-delay:1.3s;animation-delay:1.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(14){-webkit-animation-delay:1.4s;animation-delay:1.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(15){-webkit-animation-delay:1.5s;animation-delay:1.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(16){-webkit-animation-delay:1.6s;animation-delay:1.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(17){-webkit-animation-delay:1.7s;animation-delay:1.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(18){-webkit-animation-delay:1.8s;animation-delay:1.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(19){-webkit-animation-delay:1.9s;animation-delay:1.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(20){-webkit-animation-delay:2s;animation-delay:2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(21){-webkit-animation-delay:2.1s;animation-delay:2.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(22){-webkit-animation-delay:2.2s;animation-delay:2.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(23){-webkit-animation-delay:2.3s;animation-delay:2.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(24){-webkit-animation-delay:2.4s;animation-delay:2.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(25){-webkit-animation-delay:2.5s;animation-delay:2.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(26){-webkit-animation-delay:2.6s;animation-delay:2.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(27){-webkit-animation-delay:2.7s;animation-delay:2.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(28){-webkit-animation-delay:2.8s;animation-delay:2.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(29){-webkit-animation-delay:2.9s;animation-delay:2.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(30){-webkit-animation-delay:3s;animation-delay:3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(31){-webkit-animation-delay:3.1s;animation-delay:3.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(32){-webkit-animation-delay:3.2s;animation-delay:3.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(33){-webkit-animation-delay:3.3s;animation-delay:3.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(34){-webkit-animation-delay:3.4s;animation-delay:3.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(35){-webkit-animation-delay:3.5s;animation-delay:3.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(36){-webkit-animation-delay:3.6s;animation-delay:3.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(37){-webkit-animation-delay:3.7s;animation-delay:3.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(38){-webkit-animation-delay:3.8s;animation-delay:3.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(39){-webkit-animation-delay:3.9s;animation-delay:3.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(40){-webkit-animation-delay:4s;animation-delay:4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(41){-webkit-animation-delay:4.1s;animation-delay:4.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(42){-webkit-animation-delay:4.2s;animation-delay:4.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(43){-webkit-animation-delay:4.3s;animation-delay:4.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(44){-webkit-animation-delay:4.4s;animation-delay:4.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(45){-webkit-animation-delay:4.5s;animation-delay:4.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(46){-webkit-animation-delay:4.6s;animation-delay:4.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(47){-webkit-animation-delay:4.7s;animation-delay:4.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(48){-webkit-animation-delay:4.8s;animation-delay:4.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(49){-webkit-animation-delay:4.9s;animation-delay:4.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(50){-webkit-animation-delay:5s;animation-delay:5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(51){-webkit-animation-delay:5.1s;animation-delay:5.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(52){-webkit-animation-delay:5.2s;animation-delay:5.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(53){-webkit-animation-delay:5.3s;animation-delay:5.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(54){-webkit-animation-delay:5.4s;animation-delay:5.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(55){-webkit-animation-delay:5.5s;animation-delay:5.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(56){-webkit-animation-delay:5.6s;animation-delay:5.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(57){-webkit-animation-delay:5.7s;animation-delay:5.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(58){-webkit-animation-delay:5.8s;animation-delay:5.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(59){-webkit-animation-delay:5.9s;animation-delay:5.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(60){-webkit-animation-delay:6s;animation-delay:6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(61){-webkit-animation-delay:6.1s;animation-delay:6.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(62){-webkit-animation-delay:6.2s;animation-delay:6.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(63){-webkit-animation-delay:6.3s;animation-delay:6.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(64){-webkit-animation-delay:6.4s;animation-delay:6.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(65){-webkit-animation-delay:6.5s;animation-delay:6.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(66){-webkit-animation-delay:6.6s;animation-delay:6.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(67){-webkit-animation-delay:6.7s;animation-delay:6.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(68){-webkit-animation-delay:6.8s;animation-delay:6.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(69){-webkit-animation-delay:6.9s;animation-delay:6.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(70){-webkit-animation-delay:7s;animation-delay:7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(71){-webkit-animation-delay:7.1s;animation-delay:7.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(72){-webkit-animation-delay:7.2s;animation-delay:7.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(73){-webkit-animation-delay:7.3s;animation-delay:7.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(74){-webkit-animation-delay:7.4s;animation-delay:7.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(75){-webkit-animation-delay:7.5s;animation-delay:7.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(76){-webkit-animation-delay:7.6s;animation-delay:7.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(77){-webkit-animation-delay:7.7s;animation-delay:7.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(78){-webkit-animation-delay:7.8s;animation-delay:7.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(79){-webkit-animation-delay:7.9s;animation-delay:7.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(80){-webkit-animation-delay:8s;animation-delay:8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(81){-webkit-animation-delay:8.1s;animation-delay:8.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(82){-webkit-animation-delay:8.2s;animation-delay:8.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(83){-webkit-animation-delay:8.3s;animation-delay:8.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(84){-webkit-animation-delay:8.4s;animation-delay:8.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(85){-webkit-animation-delay:8.5s;animation-delay:8.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(86){-webkit-animation-delay:8.6s;animation-delay:8.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(87){-webkit-animation-delay:8.7s;animation-delay:8.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(88){-webkit-animation-delay:8.8s;animation-delay:8.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(89){-webkit-animation-delay:8.9s;animation-delay:8.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(90){-webkit-animation-delay:9s;animation-delay:9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(91){-webkit-animation-delay:9.1s;animation-delay:9.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(92){-webkit-animation-delay:9.2s;animation-delay:9.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(93){-webkit-animation-delay:9.3s;animation-delay:9.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(94){-webkit-animation-delay:9.4s;animation-delay:9.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(95){-webkit-animation-delay:9.5s;animation-delay:9.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(96){-webkit-animation-delay:9.6s;animation-delay:9.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(97){-webkit-animation-delay:9.7s;animation-delay:9.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(98){-webkit-animation-delay:9.8s;animation-delay:9.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(99){-webkit-animation-delay:9.9s;animation-delay:9.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(100){-webkit-animation-delay:10s;animation-delay:10s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(101){-webkit-animation-delay:10.1s;animation-delay:10.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(102){-webkit-animation-delay:10.2s;animation-delay:10.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(103){-webkit-animation-delay:10.3s;animation-delay:10.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(104){-webkit-animation-delay:10.4s;animation-delay:10.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(105){-webkit-animation-delay:10.5s;animation-delay:10.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(106){-webkit-animation-delay:10.6s;animation-delay:10.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(107){-webkit-animation-delay:10.7s;animation-delay:10.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(108){-webkit-animation-delay:10.8s;animation-delay:10.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(109){-webkit-animation-delay:10.9s;animation-delay:10.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(110){-webkit-animation-delay:11s;animation-delay:11s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(111){-webkit-animation-delay:11.1s;animation-delay:11.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(112){-webkit-animation-delay:11.2s;animation-delay:11.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(113){-webkit-animation-delay:11.3s;animation-delay:11.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(114){-webkit-animation-delay:11.4s;animation-delay:11.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(115){-webkit-animation-delay:11.5s;animation-delay:11.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(116){-webkit-animation-delay:11.6s;animation-delay:11.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(117){-webkit-animation-delay:11.7s;animation-delay:11.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(118){-webkit-animation-delay:11.8s;animation-delay:11.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(119){-webkit-animation-delay:11.9s;animation-delay:11.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(120){-webkit-animation-delay:12s;animation-delay:12s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(121){-webkit-animation-delay:12.1s;animation-delay:12.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(122){-webkit-animation-delay:12.2s;animation-delay:12.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(123){-webkit-animation-delay:12.3s;animation-delay:12.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(124){-webkit-animation-delay:12.4s;animation-delay:12.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(125){-webkit-animation-delay:12.5s;animation-delay:12.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(126){-webkit-animation-delay:12.6s;animation-delay:12.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(127){-webkit-animation-delay:12.7s;animation-delay:12.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(128){-webkit-animation-delay:12.8s;animation-delay:12.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(129){-webkit-animation-delay:12.9s;animation-delay:12.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(130){-webkit-animation-delay:13s;animation-delay:13s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(131){-webkit-animation-delay:13.1s;animation-delay:13.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(132){-webkit-animation-delay:13.2s;animation-delay:13.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(133){-webkit-animation-delay:13.3s;animation-delay:13.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(134){-webkit-animation-delay:13.4s;animation-delay:13.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(135){-webkit-animation-delay:13.5s;animation-delay:13.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(136){-webkit-animation-delay:13.6s;animation-delay:13.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(137){-webkit-animation-delay:13.7s;animation-delay:13.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(138){-webkit-animation-delay:13.8s;animation-delay:13.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(139){-webkit-animation-delay:13.9s;animation-delay:13.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(140){-webkit-animation-delay:14s;animation-delay:14s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(141){-webkit-animation-delay:14.1s;animation-delay:14.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(142){-webkit-animation-delay:14.2s;animation-delay:14.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(143){-webkit-animation-delay:14.3s;animation-delay:14.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(144){-webkit-animation-delay:14.4s;animation-delay:14.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(145){-webkit-animation-delay:14.5s;animation-delay:14.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(146){-webkit-animation-delay:14.6s;animation-delay:14.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(147){-webkit-animation-delay:14.7s;animation-delay:14.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(148){-webkit-animation-delay:14.8s;animation-delay:14.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(149){-webkit-animation-delay:14.9s;animation-delay:14.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(150){-webkit-animation-delay:15s;animation-delay:15s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(151){-webkit-animation-delay:15.1s;animation-delay:15.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(152){-webkit-animation-delay:15.2s;animation-delay:15.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(153){-webkit-animation-delay:15.3s;animation-delay:15.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(154){-webkit-animation-delay:15.4s;animation-delay:15.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(155){-webkit-animation-delay:15.5s;animation-delay:15.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(156){-webkit-animation-delay:15.6s;animation-delay:15.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(157){-webkit-animation-delay:15.7s;animation-delay:15.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(158){-webkit-animation-delay:15.8s;animation-delay:15.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(159){-webkit-animation-delay:15.9s;animation-delay:15.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(160){-webkit-animation-delay:16s;animation-delay:16s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(161){-webkit-animation-delay:16.1s;animation-delay:16.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(162){-webkit-animation-delay:16.2s;animation-delay:16.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(163){-webkit-animation-delay:16.3s;animation-delay:16.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(164){-webkit-animation-delay:16.4s;animation-delay:16.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(165){-webkit-animation-delay:16.5s;animation-delay:16.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(166){-webkit-animation-delay:16.6s;animation-delay:16.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(167){-webkit-animation-delay:16.7s;animation-delay:16.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(168){-webkit-animation-delay:16.8s;animation-delay:16.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(169){-webkit-animation-delay:16.9s;animation-delay:16.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(170){-webkit-animation-delay:17s;animation-delay:17s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(171){-webkit-animation-delay:17.1s;animation-delay:17.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(172){-webkit-animation-delay:17.2s;animation-delay:17.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(173){-webkit-animation-delay:17.3s;animation-delay:17.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(174){-webkit-animation-delay:17.4s;animation-delay:17.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(175){-webkit-animation-delay:17.5s;animation-delay:17.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(176){-webkit-animation-delay:17.6s;animation-delay:17.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(177){-webkit-animation-delay:17.7s;animation-delay:17.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(178){-webkit-animation-delay:17.8s;animation-delay:17.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(179){-webkit-animation-delay:17.9s;animation-delay:17.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(180){-webkit-animation-delay:18s;animation-delay:18s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(181){-webkit-animation-delay:18.1s;animation-delay:18.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(182){-webkit-animation-delay:18.2s;animation-delay:18.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(183){-webkit-animation-delay:18.3s;animation-delay:18.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(184){-webkit-animation-delay:18.4s;animation-delay:18.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(185){-webkit-animation-delay:18.5s;animation-delay:18.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(186){-webkit-animation-delay:18.6s;animation-delay:18.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(187){-webkit-animation-delay:18.7s;animation-delay:18.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(188){-webkit-animation-delay:18.8s;animation-delay:18.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(189){-webkit-animation-delay:18.9s;animation-delay:18.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(190){-webkit-animation-delay:19s;animation-delay:19s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(191){-webkit-animation-delay:19.1s;animation-delay:19.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(192){-webkit-animation-delay:19.2s;animation-delay:19.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(193){-webkit-animation-delay:19.3s;animation-delay:19.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(194){-webkit-animation-delay:19.4s;animation-delay:19.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(195){-webkit-animation-delay:19.5s;animation-delay:19.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(196){-webkit-animation-delay:19.6s;animation-delay:19.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(197){-webkit-animation-delay:19.7s;animation-delay:19.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(198){-webkit-animation-delay:19.8s;animation-delay:19.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(199){-webkit-animation-delay:19.9s;animation-delay:19.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(200){-webkit-animation-delay:20s;animation-delay:20s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(201){-webkit-animation-delay:20.1s;animation-delay:20.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(202){-webkit-animation-delay:20.2s;animation-delay:20.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(203){-webkit-animation-delay:20.3s;animation-delay:20.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(204){-webkit-animation-delay:20.4s;animation-delay:20.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(205){-webkit-animation-delay:20.5s;animation-delay:20.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(206){-webkit-animation-delay:20.6s;animation-delay:20.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(207){-webkit-animation-delay:20.7s;animation-delay:20.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(208){-webkit-animation-delay:20.8s;animation-delay:20.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(209){-webkit-animation-delay:20.9s;animation-delay:20.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(210){-webkit-animation-delay:21s;animation-delay:21s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(211){-webkit-animation-delay:21.1s;animation-delay:21.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(212){-webkit-animation-delay:21.2s;animation-delay:21.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(213){-webkit-animation-delay:21.3s;animation-delay:21.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(214){-webkit-animation-delay:21.4s;animation-delay:21.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(215){-webkit-animation-delay:21.5s;animation-delay:21.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(216){-webkit-animation-delay:21.6s;animation-delay:21.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(217){-webkit-animation-delay:21.7s;animation-delay:21.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(218){-webkit-animation-delay:21.8s;animation-delay:21.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(219){-webkit-animation-delay:21.9s;animation-delay:21.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(220){-webkit-animation-delay:22s;animation-delay:22s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(221){-webkit-animation-delay:22.1s;animation-delay:22.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(222){-webkit-animation-delay:22.2s;animation-delay:22.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(223){-webkit-animation-delay:22.3s;animation-delay:22.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(224){-webkit-animation-delay:22.4s;animation-delay:22.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(225){-webkit-animation-delay:22.5s;animation-delay:22.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(226){-webkit-animation-delay:22.6s;animation-delay:22.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(227){-webkit-animation-delay:22.7s;animation-delay:22.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(228){-webkit-animation-delay:22.8s;animation-delay:22.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(229){-webkit-animation-delay:22.9s;animation-delay:22.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(230){-webkit-animation-delay:23s;animation-delay:23s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(231){-webkit-animation-delay:23.1s;animation-delay:23.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(232){-webkit-animation-delay:23.2s;animation-delay:23.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(233){-webkit-animation-delay:23.3s;animation-delay:23.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(234){-webkit-animation-delay:23.4s;animation-delay:23.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(235){-webkit-animation-delay:23.5s;animation-delay:23.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(236){-webkit-animation-delay:23.6s;animation-delay:23.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(237){-webkit-animation-delay:23.7s;animation-delay:23.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(238){-webkit-animation-delay:23.8s;animation-delay:23.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(239){-webkit-animation-delay:23.9s;animation-delay:23.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(240){-webkit-animation-delay:24s;animation-delay:24s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(241){-webkit-animation-delay:24.1s;animation-delay:24.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(242){-webkit-animation-delay:24.2s;animation-delay:24.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(243){-webkit-animation-delay:24.3s;animation-delay:24.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(244){-webkit-animation-delay:24.4s;animation-delay:24.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(245){-webkit-animation-delay:24.5s;animation-delay:24.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(246){-webkit-animation-delay:24.6s;animation-delay:24.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(247){-webkit-animation-delay:24.7s;animation-delay:24.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(248){-webkit-animation-delay:24.8s;animation-delay:24.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(249){-webkit-animation-delay:24.9s;animation-delay:24.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(250){-webkit-animation-delay:25s;animation-delay:25s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(251){-webkit-animation-delay:25.1s;animation-delay:25.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(252){-webkit-animation-delay:25.2s;animation-delay:25.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(253){-webkit-animation-delay:25.3s;animation-delay:25.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(254){-webkit-animation-delay:25.4s;animation-delay:25.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(255){-webkit-animation-delay:25.5s;animation-delay:25.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(256){-webkit-animation-delay:25.6s;animation-delay:25.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(257){-webkit-animation-delay:25.7s;animation-delay:25.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(258){-webkit-animation-delay:25.8s;animation-delay:25.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(259){-webkit-animation-delay:25.9s;animation-delay:25.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(260){-webkit-animation-delay:26s;animation-delay:26s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(261){-webkit-animation-delay:26.1s;animation-delay:26.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(262){-webkit-animation-delay:26.2s;animation-delay:26.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(263){-webkit-animation-delay:26.3s;animation-delay:26.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(264){-webkit-animation-delay:26.4s;animation-delay:26.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(265){-webkit-animation-delay:26.5s;animation-delay:26.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(266){-webkit-animation-delay:26.6s;animation-delay:26.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(267){-webkit-animation-delay:26.7s;animation-delay:26.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(268){-webkit-animation-delay:26.8s;animation-delay:26.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(269){-webkit-animation-delay:26.9s;animation-delay:26.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(270){-webkit-animation-delay:27s;animation-delay:27s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(271){-webkit-animation-delay:27.1s;animation-delay:27.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(272){-webkit-animation-delay:27.2s;animation-delay:27.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(273){-webkit-animation-delay:27.3s;animation-delay:27.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(274){-webkit-animation-delay:27.4s;animation-delay:27.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(275){-webkit-animation-delay:27.5s;animation-delay:27.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(276){-webkit-animation-delay:27.6s;animation-delay:27.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(277){-webkit-animation-delay:27.7s;animation-delay:27.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(278){-webkit-animation-delay:27.8s;animation-delay:27.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(279){-webkit-animation-delay:27.9s;animation-delay:27.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(280){-webkit-animation-delay:28s;animation-delay:28s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(281){-webkit-animation-delay:28.1s;animation-delay:28.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(282){-webkit-animation-delay:28.2s;animation-delay:28.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(283){-webkit-animation-delay:28.3s;animation-delay:28.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(284){-webkit-animation-delay:28.4s;animation-delay:28.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(285){-webkit-animation-delay:28.5s;animation-delay:28.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(286){-webkit-animation-delay:28.6s;animation-delay:28.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(287){-webkit-animation-delay:28.7s;animation-delay:28.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(288){-webkit-animation-delay:28.8s;animation-delay:28.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(289){-webkit-animation-delay:28.9s;animation-delay:28.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(290){-webkit-animation-delay:29s;animation-delay:29s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(291){-webkit-animation-delay:29.1s;animation-delay:29.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(292){-webkit-animation-delay:29.2s;animation-delay:29.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(293){-webkit-animation-delay:29.3s;animation-delay:29.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(294){-webkit-animation-delay:29.4s;animation-delay:29.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(295){-webkit-animation-delay:29.5s;animation-delay:29.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(296){-webkit-animation-delay:29.6s;animation-delay:29.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(297){-webkit-animation-delay:29.7s;animation-delay:29.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(298){-webkit-animation-delay:29.8s;animation-delay:29.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(299){-webkit-animation-delay:29.9s;animation-delay:29.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(300){-webkit-animation-delay:30s;animation-delay:30s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(301){-webkit-animation-delay:30.1s;animation-delay:30.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(302){-webkit-animation-delay:30.2s;animation-delay:30.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(303){-webkit-animation-delay:30.3s;animation-delay:30.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(304){-webkit-animation-delay:30.4s;animation-delay:30.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(305){-webkit-animation-delay:30.5s;animation-delay:30.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(306){-webkit-animation-delay:30.6s;animation-delay:30.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(307){-webkit-animation-delay:30.7s;animation-delay:30.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(308){-webkit-animation-delay:30.8s;animation-delay:30.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(309){-webkit-animation-delay:30.9s;animation-delay:30.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(310){-webkit-animation-delay:31s;animation-delay:31s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(311){-webkit-animation-delay:31.1s;animation-delay:31.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(312){-webkit-animation-delay:31.2s;animation-delay:31.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(313){-webkit-animation-delay:31.3s;animation-delay:31.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(314){-webkit-animation-delay:31.4s;animation-delay:31.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(315){-webkit-animation-delay:31.5s;animation-delay:31.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(316){-webkit-animation-delay:31.6s;animation-delay:31.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(317){-webkit-animation-delay:31.7s;animation-delay:31.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(318){-webkit-animation-delay:31.8s;animation-delay:31.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(319){-webkit-animation-delay:31.9s;animation-delay:31.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(320){-webkit-animation-delay:32s;animation-delay:32s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(321){-webkit-animation-delay:32.1s;animation-delay:32.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(322){-webkit-animation-delay:32.2s;animation-delay:32.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(323){-webkit-animation-delay:32.3s;animation-delay:32.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(324){-webkit-animation-delay:32.4s;animation-delay:32.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(325){-webkit-animation-delay:32.5s;animation-delay:32.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(326){-webkit-animation-delay:32.6s;animation-delay:32.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(327){-webkit-animation-delay:32.7s;animation-delay:32.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(328){-webkit-animation-delay:32.8s;animation-delay:32.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(329){-webkit-animation-delay:32.9s;animation-delay:32.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(330){-webkit-animation-delay:33s;animation-delay:33s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(331){-webkit-animation-delay:33.1s;animation-delay:33.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(332){-webkit-animation-delay:33.2s;animation-delay:33.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(333){-webkit-animation-delay:33.3s;animation-delay:33.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(334){-webkit-animation-delay:33.4s;animation-delay:33.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(335){-webkit-animation-delay:33.5s;animation-delay:33.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(336){-webkit-animation-delay:33.6s;animation-delay:33.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(337){-webkit-animation-delay:33.7s;animation-delay:33.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(338){-webkit-animation-delay:33.8s;animation-delay:33.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(339){-webkit-animation-delay:33.9s;animation-delay:33.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(340){-webkit-animation-delay:34s;animation-delay:34s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(341){-webkit-animation-delay:34.1s;animation-delay:34.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(342){-webkit-animation-delay:34.2s;animation-delay:34.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(343){-webkit-animation-delay:34.3s;animation-delay:34.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(344){-webkit-animation-delay:34.4s;animation-delay:34.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(345){-webkit-animation-delay:34.5s;animation-delay:34.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(346){-webkit-animation-delay:34.6s;animation-delay:34.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(347){-webkit-animation-delay:34.7s;animation-delay:34.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(348){-webkit-animation-delay:34.8s;animation-delay:34.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(349){-webkit-animation-delay:34.9s;animation-delay:34.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(350){-webkit-animation-delay:35s;animation-delay:35s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(351){-webkit-animation-delay:35.1s;animation-delay:35.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(352){-webkit-animation-delay:35.2s;animation-delay:35.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(353){-webkit-animation-delay:35.3s;animation-delay:35.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(354){-webkit-animation-delay:35.4s;animation-delay:35.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(355){-webkit-animation-delay:35.5s;animation-delay:35.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(356){-webkit-animation-delay:35.6s;animation-delay:35.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(357){-webkit-animation-delay:35.7s;animation-delay:35.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(358){-webkit-animation-delay:35.8s;animation-delay:35.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(359){-webkit-animation-delay:35.9s;animation-delay:35.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(360){-webkit-animation-delay:36s;animation-delay:36s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(361){-webkit-animation-delay:36.1s;animation-delay:36.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(362){-webkit-animation-delay:36.2s;animation-delay:36.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(363){-webkit-animation-delay:36.3s;animation-delay:36.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(364){-webkit-animation-delay:36.4s;animation-delay:36.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(365){-webkit-animation-delay:36.5s;animation-delay:36.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(366){-webkit-animation-delay:36.6s;animation-delay:36.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(367){-webkit-animation-delay:36.7s;animation-delay:36.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(368){-webkit-animation-delay:36.8s;animation-delay:36.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(369){-webkit-animation-delay:36.9s;animation-delay:36.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(370){-webkit-animation-delay:37s;animation-delay:37s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(371){-webkit-animation-delay:37.1s;animation-delay:37.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(372){-webkit-animation-delay:37.2s;animation-delay:37.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(373){-webkit-animation-delay:37.3s;animation-delay:37.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(374){-webkit-animation-delay:37.4s;animation-delay:37.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(375){-webkit-animation-delay:37.5s;animation-delay:37.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(376){-webkit-animation-delay:37.6s;animation-delay:37.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(377){-webkit-animation-delay:37.7s;animation-delay:37.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(378){-webkit-animation-delay:37.8s;animation-delay:37.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(379){-webkit-animation-delay:37.9s;animation-delay:37.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(380){-webkit-animation-delay:38s;animation-delay:38s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(381){-webkit-animation-delay:38.1s;animation-delay:38.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(382){-webkit-animation-delay:38.2s;animation-delay:38.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(383){-webkit-animation-delay:38.3s;animation-delay:38.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(384){-webkit-animation-delay:38.4s;animation-delay:38.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(385){-webkit-animation-delay:38.5s;animation-delay:38.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(386){-webkit-animation-delay:38.6s;animation-delay:38.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(387){-webkit-animation-delay:38.7s;animation-delay:38.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(388){-webkit-animation-delay:38.8s;animation-delay:38.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(389){-webkit-animation-delay:38.9s;animation-delay:38.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(390){-webkit-animation-delay:39s;animation-delay:39s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(391){-webkit-animation-delay:39.1s;animation-delay:39.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(392){-webkit-animation-delay:39.2s;animation-delay:39.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(393){-webkit-animation-delay:39.3s;animation-delay:39.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(394){-webkit-animation-delay:39.4s;animation-delay:39.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(395){-webkit-animation-delay:39.5s;animation-delay:39.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(396){-webkit-animation-delay:39.6s;animation-delay:39.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(397){-webkit-animation-delay:39.7s;animation-delay:39.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(398){-webkit-animation-delay:39.8s;animation-delay:39.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(399){-webkit-animation-delay:39.9s;animation-delay:39.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(400){-webkit-animation-delay:40s;animation-delay:40s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(401){-webkit-animation-delay:40.1s;animation-delay:40.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(402){-webkit-animation-delay:40.2s;animation-delay:40.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(403){-webkit-animation-delay:40.3s;animation-delay:40.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(404){-webkit-animation-delay:40.4s;animation-delay:40.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(405){-webkit-animation-delay:40.5s;animation-delay:40.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(406){-webkit-animation-delay:40.6s;animation-delay:40.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(407){-webkit-animation-delay:40.7s;animation-delay:40.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(408){-webkit-animation-delay:40.8s;animation-delay:40.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(409){-webkit-animation-delay:40.9s;animation-delay:40.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(410){-webkit-animation-delay:41s;animation-delay:41s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(411){-webkit-animation-delay:41.1s;animation-delay:41.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(412){-webkit-animation-delay:41.2s;animation-delay:41.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(413){-webkit-animation-delay:41.3s;animation-delay:41.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(414){-webkit-animation-delay:41.4s;animation-delay:41.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(415){-webkit-animation-delay:41.5s;animation-delay:41.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(416){-webkit-animation-delay:41.6s;animation-delay:41.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(417){-webkit-animation-delay:41.7s;animation-delay:41.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(418){-webkit-animation-delay:41.8s;animation-delay:41.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(419){-webkit-animation-delay:41.9s;animation-delay:41.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(420){-webkit-animation-delay:42s;animation-delay:42s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(421){-webkit-animation-delay:42.1s;animation-delay:42.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(422){-webkit-animation-delay:42.2s;animation-delay:42.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(423){-webkit-animation-delay:42.3s;animation-delay:42.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(424){-webkit-animation-delay:42.4s;animation-delay:42.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(425){-webkit-animation-delay:42.5s;animation-delay:42.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(426){-webkit-animation-delay:42.6s;animation-delay:42.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(427){-webkit-animation-delay:42.7s;animation-delay:42.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(428){-webkit-animation-delay:42.8s;animation-delay:42.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(429){-webkit-animation-delay:42.9s;animation-delay:42.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(430){-webkit-animation-delay:43s;animation-delay:43s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(431){-webkit-animation-delay:43.1s;animation-delay:43.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(432){-webkit-animation-delay:43.2s;animation-delay:43.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(433){-webkit-animation-delay:43.3s;animation-delay:43.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(434){-webkit-animation-delay:43.4s;animation-delay:43.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(435){-webkit-animation-delay:43.5s;animation-delay:43.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(436){-webkit-animation-delay:43.6s;animation-delay:43.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(437){-webkit-animation-delay:43.7s;animation-delay:43.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(438){-webkit-animation-delay:43.8s;animation-delay:43.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(439){-webkit-animation-delay:43.9s;animation-delay:43.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(440){-webkit-animation-delay:44s;animation-delay:44s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(441){-webkit-animation-delay:44.1s;animation-delay:44.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(442){-webkit-animation-delay:44.2s;animation-delay:44.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(443){-webkit-animation-delay:44.3s;animation-delay:44.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(444){-webkit-animation-delay:44.4s;animation-delay:44.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(445){-webkit-animation-delay:44.5s;animation-delay:44.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(446){-webkit-animation-delay:44.6s;animation-delay:44.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(447){-webkit-animation-delay:44.7s;animation-delay:44.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(448){-webkit-animation-delay:44.8s;animation-delay:44.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(449){-webkit-animation-delay:44.9s;animation-delay:44.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(450){-webkit-animation-delay:45s;animation-delay:45s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(451){-webkit-animation-delay:45.1s;animation-delay:45.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(452){-webkit-animation-delay:45.2s;animation-delay:45.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(453){-webkit-animation-delay:45.3s;animation-delay:45.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(454){-webkit-animation-delay:45.4s;animation-delay:45.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(455){-webkit-animation-delay:45.5s;animation-delay:45.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(456){-webkit-animation-delay:45.6s;animation-delay:45.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(457){-webkit-animation-delay:45.7s;animation-delay:45.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(458){-webkit-animation-delay:45.8s;animation-delay:45.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(459){-webkit-animation-delay:45.9s;animation-delay:45.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(460){-webkit-animation-delay:46s;animation-delay:46s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(461){-webkit-animation-delay:46.1s;animation-delay:46.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(462){-webkit-animation-delay:46.2s;animation-delay:46.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(463){-webkit-animation-delay:46.3s;animation-delay:46.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(464){-webkit-animation-delay:46.4s;animation-delay:46.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(465){-webkit-animation-delay:46.5s;animation-delay:46.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(466){-webkit-animation-delay:46.6s;animation-delay:46.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(467){-webkit-animation-delay:46.7s;animation-delay:46.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(468){-webkit-animation-delay:46.8s;animation-delay:46.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(469){-webkit-animation-delay:46.9s;animation-delay:46.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(470){-webkit-animation-delay:47s;animation-delay:47s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(471){-webkit-animation-delay:47.1s;animation-delay:47.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(472){-webkit-animation-delay:47.2s;animation-delay:47.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(473){-webkit-animation-delay:47.3s;animation-delay:47.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(474){-webkit-animation-delay:47.4s;animation-delay:47.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(475){-webkit-animation-delay:47.5s;animation-delay:47.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(476){-webkit-animation-delay:47.6s;animation-delay:47.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(477){-webkit-animation-delay:47.7s;animation-delay:47.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(478){-webkit-animation-delay:47.8s;animation-delay:47.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(479){-webkit-animation-delay:47.9s;animation-delay:47.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(480){-webkit-animation-delay:48s;animation-delay:48s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(481){-webkit-animation-delay:48.1s;animation-delay:48.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(482){-webkit-animation-delay:48.2s;animation-delay:48.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(483){-webkit-animation-delay:48.3s;animation-delay:48.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(484){-webkit-animation-delay:48.4s;animation-delay:48.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(485){-webkit-animation-delay:48.5s;animation-delay:48.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(486){-webkit-animation-delay:48.6s;animation-delay:48.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(487){-webkit-animation-delay:48.7s;animation-delay:48.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(488){-webkit-animation-delay:48.8s;animation-delay:48.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(489){-webkit-animation-delay:48.9s;animation-delay:48.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(490){-webkit-animation-delay:49s;animation-delay:49s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(491){-webkit-animation-delay:49.1s;animation-delay:49.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(492){-webkit-animation-delay:49.2s;animation-delay:49.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(493){-webkit-animation-delay:49.3s;animation-delay:49.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(494){-webkit-animation-delay:49.4s;animation-delay:49.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(495){-webkit-animation-delay:49.5s;animation-delay:49.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(496){-webkit-animation-delay:49.6s;animation-delay:49.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(497){-webkit-animation-delay:49.7s;animation-delay:49.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(498){-webkit-animation-delay:49.8s;animation-delay:49.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(499){-webkit-animation-delay:49.9s;animation-delay:49.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(500){-webkit-animation-delay:50s;animation-delay:50s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(501){-webkit-animation-delay:50.1s;animation-delay:50.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(502){-webkit-animation-delay:50.2s;animation-delay:50.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(503){-webkit-animation-delay:50.3s;animation-delay:50.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(504){-webkit-animation-delay:50.4s;animation-delay:50.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(505){-webkit-animation-delay:50.5s;animation-delay:50.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(506){-webkit-animation-delay:50.6s;animation-delay:50.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(507){-webkit-animation-delay:50.7s;animation-delay:50.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(508){-webkit-animation-delay:50.8s;animation-delay:50.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(509){-webkit-animation-delay:50.9s;animation-delay:50.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(510){-webkit-animation-delay:51s;animation-delay:51s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(511){-webkit-animation-delay:51.1s;animation-delay:51.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(512){-webkit-animation-delay:51.2s;animation-delay:51.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(513){-webkit-animation-delay:51.3s;animation-delay:51.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(514){-webkit-animation-delay:51.4s;animation-delay:51.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(515){-webkit-animation-delay:51.5s;animation-delay:51.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(516){-webkit-animation-delay:51.6s;animation-delay:51.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(517){-webkit-animation-delay:51.7s;animation-delay:51.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(518){-webkit-animation-delay:51.8s;animation-delay:51.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(519){-webkit-animation-delay:51.9s;animation-delay:51.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(520){-webkit-animation-delay:52s;animation-delay:52s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(521){-webkit-animation-delay:52.1s;animation-delay:52.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(522){-webkit-animation-delay:52.2s;animation-delay:52.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(523){-webkit-animation-delay:52.3s;animation-delay:52.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(524){-webkit-animation-delay:52.4s;animation-delay:52.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(525){-webkit-animation-delay:52.5s;animation-delay:52.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(526){-webkit-animation-delay:52.6s;animation-delay:52.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(527){-webkit-animation-delay:52.7s;animation-delay:52.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(528){-webkit-animation-delay:52.8s;animation-delay:52.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(529){-webkit-animation-delay:52.9s;animation-delay:52.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(530){-webkit-animation-delay:53s;animation-delay:53s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(531){-webkit-animation-delay:53.1s;animation-delay:53.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(532){-webkit-animation-delay:53.2s;animation-delay:53.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(533){-webkit-animation-delay:53.3s;animation-delay:53.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(534){-webkit-animation-delay:53.4s;animation-delay:53.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(535){-webkit-animation-delay:53.5s;animation-delay:53.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(536){-webkit-animation-delay:53.6s;animation-delay:53.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(537){-webkit-animation-delay:53.7s;animation-delay:53.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(538){-webkit-animation-delay:53.8s;animation-delay:53.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(539){-webkit-animation-delay:53.9s;animation-delay:53.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(540){-webkit-animation-delay:54s;animation-delay:54s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(541){-webkit-animation-delay:54.1s;animation-delay:54.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(542){-webkit-animation-delay:54.2s;animation-delay:54.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(543){-webkit-animation-delay:54.3s;animation-delay:54.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(544){-webkit-animation-delay:54.4s;animation-delay:54.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(545){-webkit-animation-delay:54.5s;animation-delay:54.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(546){-webkit-animation-delay:54.6s;animation-delay:54.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(547){-webkit-animation-delay:54.7s;animation-delay:54.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(548){-webkit-animation-delay:54.8s;animation-delay:54.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(549){-webkit-animation-delay:54.9s;animation-delay:54.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(550){-webkit-animation-delay:55s;animation-delay:55s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(551){-webkit-animation-delay:55.1s;animation-delay:55.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(552){-webkit-animation-delay:55.2s;animation-delay:55.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(553){-webkit-animation-delay:55.3s;animation-delay:55.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(554){-webkit-animation-delay:55.4s;animation-delay:55.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(555){-webkit-animation-delay:55.5s;animation-delay:55.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(556){-webkit-animation-delay:55.6s;animation-delay:55.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(557){-webkit-animation-delay:55.7s;animation-delay:55.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(558){-webkit-animation-delay:55.8s;animation-delay:55.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(559){-webkit-animation-delay:55.9s;animation-delay:55.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(560){-webkit-animation-delay:56s;animation-delay:56s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(561){-webkit-animation-delay:56.1s;animation-delay:56.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(562){-webkit-animation-delay:56.2s;animation-delay:56.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(563){-webkit-animation-delay:56.3s;animation-delay:56.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(564){-webkit-animation-delay:56.4s;animation-delay:56.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(565){-webkit-animation-delay:56.5s;animation-delay:56.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(566){-webkit-animation-delay:56.6s;animation-delay:56.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(567){-webkit-animation-delay:56.7s;animation-delay:56.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(568){-webkit-animation-delay:56.8s;animation-delay:56.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(569){-webkit-animation-delay:56.9s;animation-delay:56.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(570){-webkit-animation-delay:57s;animation-delay:57s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(571){-webkit-animation-delay:57.1s;animation-delay:57.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(572){-webkit-animation-delay:57.2s;animation-delay:57.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(573){-webkit-animation-delay:57.3s;animation-delay:57.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(574){-webkit-animation-delay:57.4s;animation-delay:57.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(575){-webkit-animation-delay:57.5s;animation-delay:57.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(576){-webkit-animation-delay:57.6s;animation-delay:57.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(577){-webkit-animation-delay:57.7s;animation-delay:57.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(578){-webkit-animation-delay:57.8s;animation-delay:57.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(579){-webkit-animation-delay:57.9s;animation-delay:57.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(580){-webkit-animation-delay:58s;animation-delay:58s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(581){-webkit-animation-delay:58.1s;animation-delay:58.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(582){-webkit-animation-delay:58.2s;animation-delay:58.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(583){-webkit-animation-delay:58.3s;animation-delay:58.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(584){-webkit-animation-delay:58.4s;animation-delay:58.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(585){-webkit-animation-delay:58.5s;animation-delay:58.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(586){-webkit-animation-delay:58.6s;animation-delay:58.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(587){-webkit-animation-delay:58.7s;animation-delay:58.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(588){-webkit-animation-delay:58.8s;animation-delay:58.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(589){-webkit-animation-delay:58.9s;animation-delay:58.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(590){-webkit-animation-delay:59s;animation-delay:59s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(591){-webkit-animation-delay:59.1s;animation-delay:59.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(592){-webkit-animation-delay:59.2s;animation-delay:59.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(593){-webkit-animation-delay:59.3s;animation-delay:59.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(594){-webkit-animation-delay:59.4s;animation-delay:59.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(595){-webkit-animation-delay:59.5s;animation-delay:59.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(596){-webkit-animation-delay:59.6s;animation-delay:59.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(597){-webkit-animation-delay:59.7s;animation-delay:59.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(598){-webkit-animation-delay:59.8s;animation-delay:59.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(599){-webkit-animation-delay:59.9s;animation-delay:59.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(600){-webkit-animation-delay:60s;animation-delay:60s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(601){-webkit-animation-delay:60.1s;animation-delay:60.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(602){-webkit-animation-delay:60.2s;animation-delay:60.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(603){-webkit-animation-delay:60.3s;animation-delay:60.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(604){-webkit-animation-delay:60.4s;animation-delay:60.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(605){-webkit-animation-delay:60.5s;animation-delay:60.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(606){-webkit-animation-delay:60.6s;animation-delay:60.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(607){-webkit-animation-delay:60.7s;animation-delay:60.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(608){-webkit-animation-delay:60.8s;animation-delay:60.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(609){-webkit-animation-delay:60.9s;animation-delay:60.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(610){-webkit-animation-delay:61s;animation-delay:61s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(611){-webkit-animation-delay:61.1s;animation-delay:61.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(612){-webkit-animation-delay:61.2s;animation-delay:61.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(613){-webkit-animation-delay:61.3s;animation-delay:61.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(614){-webkit-animation-delay:61.4s;animation-delay:61.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(615){-webkit-animation-delay:61.5s;animation-delay:61.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(616){-webkit-animation-delay:61.6s;animation-delay:61.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(617){-webkit-animation-delay:61.7s;animation-delay:61.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(618){-webkit-animation-delay:61.8s;animation-delay:61.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(619){-webkit-animation-delay:61.9s;animation-delay:61.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(620){-webkit-animation-delay:62s;animation-delay:62s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(621){-webkit-animation-delay:62.1s;animation-delay:62.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(622){-webkit-animation-delay:62.2s;animation-delay:62.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(623){-webkit-animation-delay:62.3s;animation-delay:62.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(624){-webkit-animation-delay:62.4s;animation-delay:62.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(625){-webkit-animation-delay:62.5s;animation-delay:62.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(626){-webkit-animation-delay:62.6s;animation-delay:62.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(627){-webkit-animation-delay:62.7s;animation-delay:62.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(628){-webkit-animation-delay:62.8s;animation-delay:62.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(629){-webkit-animation-delay:62.9s;animation-delay:62.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(630){-webkit-animation-delay:63s;animation-delay:63s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(631){-webkit-animation-delay:63.1s;animation-delay:63.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(632){-webkit-animation-delay:63.2s;animation-delay:63.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(633){-webkit-animation-delay:63.3s;animation-delay:63.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(634){-webkit-animation-delay:63.4s;animation-delay:63.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(635){-webkit-animation-delay:63.5s;animation-delay:63.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(636){-webkit-animation-delay:63.6s;animation-delay:63.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(637){-webkit-animation-delay:63.7s;animation-delay:63.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(638){-webkit-animation-delay:63.8s;animation-delay:63.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(639){-webkit-animation-delay:63.9s;animation-delay:63.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(640){-webkit-animation-delay:64s;animation-delay:64s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(641){-webkit-animation-delay:64.1s;animation-delay:64.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(642){-webkit-animation-delay:64.2s;animation-delay:64.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(643){-webkit-animation-delay:64.3s;animation-delay:64.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(644){-webkit-animation-delay:64.4s;animation-delay:64.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(645){-webkit-animation-delay:64.5s;animation-delay:64.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(646){-webkit-animation-delay:64.6s;animation-delay:64.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(647){-webkit-animation-delay:64.7s;animation-delay:64.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(648){-webkit-animation-delay:64.8s;animation-delay:64.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(649){-webkit-animation-delay:64.9s;animation-delay:64.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(650){-webkit-animation-delay:65s;animation-delay:65s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(651){-webkit-animation-delay:65.1s;animation-delay:65.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(652){-webkit-animation-delay:65.2s;animation-delay:65.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(653){-webkit-animation-delay:65.3s;animation-delay:65.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(654){-webkit-animation-delay:65.4s;animation-delay:65.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(655){-webkit-animation-delay:65.5s;animation-delay:65.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(656){-webkit-animation-delay:65.6s;animation-delay:65.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(657){-webkit-animation-delay:65.7s;animation-delay:65.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(658){-webkit-animation-delay:65.8s;animation-delay:65.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(659){-webkit-animation-delay:65.9s;animation-delay:65.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(660){-webkit-animation-delay:66s;animation-delay:66s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(661){-webkit-animation-delay:66.1s;animation-delay:66.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(662){-webkit-animation-delay:66.2s;animation-delay:66.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(663){-webkit-animation-delay:66.3s;animation-delay:66.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(664){-webkit-animation-delay:66.4s;animation-delay:66.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(665){-webkit-animation-delay:66.5s;animation-delay:66.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(666){-webkit-animation-delay:66.6s;animation-delay:66.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(667){-webkit-animation-delay:66.7s;animation-delay:66.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(668){-webkit-animation-delay:66.8s;animation-delay:66.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(669){-webkit-animation-delay:66.9s;animation-delay:66.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(670){-webkit-animation-delay:67s;animation-delay:67s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(671){-webkit-animation-delay:67.1s;animation-delay:67.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(672){-webkit-animation-delay:67.2s;animation-delay:67.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(673){-webkit-animation-delay:67.3s;animation-delay:67.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(674){-webkit-animation-delay:67.4s;animation-delay:67.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(675){-webkit-animation-delay:67.5s;animation-delay:67.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(676){-webkit-animation-delay:67.6s;animation-delay:67.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(677){-webkit-animation-delay:67.7s;animation-delay:67.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(678){-webkit-animation-delay:67.8s;animation-delay:67.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(679){-webkit-animation-delay:67.9s;animation-delay:67.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(680){-webkit-animation-delay:68s;animation-delay:68s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(681){-webkit-animation-delay:68.1s;animation-delay:68.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(682){-webkit-animation-delay:68.2s;animation-delay:68.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(683){-webkit-animation-delay:68.3s;animation-delay:68.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(684){-webkit-animation-delay:68.4s;animation-delay:68.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(685){-webkit-animation-delay:68.5s;animation-delay:68.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(686){-webkit-animation-delay:68.6s;animation-delay:68.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(687){-webkit-animation-delay:68.7s;animation-delay:68.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(688){-webkit-animation-delay:68.8s;animation-delay:68.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(689){-webkit-animation-delay:68.9s;animation-delay:68.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(690){-webkit-animation-delay:69s;animation-delay:69s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(691){-webkit-animation-delay:69.1s;animation-delay:69.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(692){-webkit-animation-delay:69.2s;animation-delay:69.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(693){-webkit-animation-delay:69.3s;animation-delay:69.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(694){-webkit-animation-delay:69.4s;animation-delay:69.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(695){-webkit-animation-delay:69.5s;animation-delay:69.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(696){-webkit-animation-delay:69.6s;animation-delay:69.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(697){-webkit-animation-delay:69.7s;animation-delay:69.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(698){-webkit-animation-delay:69.8s;animation-delay:69.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(699){-webkit-animation-delay:69.9s;animation-delay:69.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(700){-webkit-animation-delay:70s;animation-delay:70s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(701){-webkit-animation-delay:70.1s;animation-delay:70.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(702){-webkit-animation-delay:70.2s;animation-delay:70.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(703){-webkit-animation-delay:70.3s;animation-delay:70.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(704){-webkit-animation-delay:70.4s;animation-delay:70.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(705){-webkit-animation-delay:70.5s;animation-delay:70.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(706){-webkit-animation-delay:70.6s;animation-delay:70.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(707){-webkit-animation-delay:70.7s;animation-delay:70.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(708){-webkit-animation-delay:70.8s;animation-delay:70.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(709){-webkit-animation-delay:70.9s;animation-delay:70.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(710){-webkit-animation-delay:71s;animation-delay:71s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(711){-webkit-animation-delay:71.1s;animation-delay:71.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(712){-webkit-animation-delay:71.2s;animation-delay:71.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(713){-webkit-animation-delay:71.3s;animation-delay:71.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(714){-webkit-animation-delay:71.4s;animation-delay:71.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(715){-webkit-animation-delay:71.5s;animation-delay:71.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(716){-webkit-animation-delay:71.6s;animation-delay:71.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(717){-webkit-animation-delay:71.7s;animation-delay:71.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(718){-webkit-animation-delay:71.8s;animation-delay:71.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(719){-webkit-animation-delay:71.9s;animation-delay:71.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(720){-webkit-animation-delay:72s;animation-delay:72s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(721){-webkit-animation-delay:72.1s;animation-delay:72.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(722){-webkit-animation-delay:72.2s;animation-delay:72.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(723){-webkit-animation-delay:72.3s;animation-delay:72.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(724){-webkit-animation-delay:72.4s;animation-delay:72.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(725){-webkit-animation-delay:72.5s;animation-delay:72.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(726){-webkit-animation-delay:72.6s;animation-delay:72.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(727){-webkit-animation-delay:72.7s;animation-delay:72.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(728){-webkit-animation-delay:72.8s;animation-delay:72.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(729){-webkit-animation-delay:72.9s;animation-delay:72.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(730){-webkit-animation-delay:73s;animation-delay:73s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(731){-webkit-animation-delay:73.1s;animation-delay:73.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(732){-webkit-animation-delay:73.2s;animation-delay:73.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(733){-webkit-animation-delay:73.3s;animation-delay:73.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(734){-webkit-animation-delay:73.4s;animation-delay:73.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(735){-webkit-animation-delay:73.5s;animation-delay:73.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(736){-webkit-animation-delay:73.6s;animation-delay:73.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(737){-webkit-animation-delay:73.7s;animation-delay:73.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(738){-webkit-animation-delay:73.8s;animation-delay:73.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(739){-webkit-animation-delay:73.9s;animation-delay:73.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(740){-webkit-animation-delay:74s;animation-delay:74s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(741){-webkit-animation-delay:74.1s;animation-delay:74.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(742){-webkit-animation-delay:74.2s;animation-delay:74.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(743){-webkit-animation-delay:74.3s;animation-delay:74.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(744){-webkit-animation-delay:74.4s;animation-delay:74.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(745){-webkit-animation-delay:74.5s;animation-delay:74.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(746){-webkit-animation-delay:74.6s;animation-delay:74.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(747){-webkit-animation-delay:74.7s;animation-delay:74.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(748){-webkit-animation-delay:74.8s;animation-delay:74.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(749){-webkit-animation-delay:74.9s;animation-delay:74.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(750){-webkit-animation-delay:75s;animation-delay:75s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(751){-webkit-animation-delay:75.1s;animation-delay:75.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(752){-webkit-animation-delay:75.2s;animation-delay:75.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(753){-webkit-animation-delay:75.3s;animation-delay:75.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(754){-webkit-animation-delay:75.4s;animation-delay:75.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(755){-webkit-animation-delay:75.5s;animation-delay:75.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(756){-webkit-animation-delay:75.6s;animation-delay:75.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(757){-webkit-animation-delay:75.7s;animation-delay:75.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(758){-webkit-animation-delay:75.8s;animation-delay:75.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(759){-webkit-animation-delay:75.9s;animation-delay:75.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(760){-webkit-animation-delay:76s;animation-delay:76s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(761){-webkit-animation-delay:76.1s;animation-delay:76.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(762){-webkit-animation-delay:76.2s;animation-delay:76.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(763){-webkit-animation-delay:76.3s;animation-delay:76.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(764){-webkit-animation-delay:76.4s;animation-delay:76.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(765){-webkit-animation-delay:76.5s;animation-delay:76.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(766){-webkit-animation-delay:76.6s;animation-delay:76.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(767){-webkit-animation-delay:76.7s;animation-delay:76.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(768){-webkit-animation-delay:76.8s;animation-delay:76.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(769){-webkit-animation-delay:76.9s;animation-delay:76.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(770){-webkit-animation-delay:77s;animation-delay:77s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(771){-webkit-animation-delay:77.1s;animation-delay:77.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(772){-webkit-animation-delay:77.2s;animation-delay:77.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(773){-webkit-animation-delay:77.3s;animation-delay:77.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(774){-webkit-animation-delay:77.4s;animation-delay:77.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(775){-webkit-animation-delay:77.5s;animation-delay:77.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(776){-webkit-animation-delay:77.6s;animation-delay:77.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(777){-webkit-animation-delay:77.7s;animation-delay:77.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(778){-webkit-animation-delay:77.8s;animation-delay:77.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(779){-webkit-animation-delay:77.9s;animation-delay:77.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(780){-webkit-animation-delay:78s;animation-delay:78s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(781){-webkit-animation-delay:78.1s;animation-delay:78.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(782){-webkit-animation-delay:78.2s;animation-delay:78.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(783){-webkit-animation-delay:78.3s;animation-delay:78.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(784){-webkit-animation-delay:78.4s;animation-delay:78.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(785){-webkit-animation-delay:78.5s;animation-delay:78.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(786){-webkit-animation-delay:78.6s;animation-delay:78.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(787){-webkit-animation-delay:78.7s;animation-delay:78.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(788){-webkit-animation-delay:78.8s;animation-delay:78.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(789){-webkit-animation-delay:78.9s;animation-delay:78.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(790){-webkit-animation-delay:79s;animation-delay:79s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(791){-webkit-animation-delay:79.1s;animation-delay:79.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(792){-webkit-animation-delay:79.2s;animation-delay:79.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(793){-webkit-animation-delay:79.3s;animation-delay:79.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(794){-webkit-animation-delay:79.4s;animation-delay:79.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(795){-webkit-animation-delay:79.5s;animation-delay:79.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(796){-webkit-animation-delay:79.6s;animation-delay:79.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(797){-webkit-animation-delay:79.7s;animation-delay:79.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(798){-webkit-animation-delay:79.8s;animation-delay:79.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(799){-webkit-animation-delay:79.9s;animation-delay:79.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(800){-webkit-animation-delay:80s;animation-delay:80s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(801){-webkit-animation-delay:80.1s;animation-delay:80.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(802){-webkit-animation-delay:80.2s;animation-delay:80.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(803){-webkit-animation-delay:80.3s;animation-delay:80.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(804){-webkit-animation-delay:80.4s;animation-delay:80.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(805){-webkit-animation-delay:80.5s;animation-delay:80.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(806){-webkit-animation-delay:80.6s;animation-delay:80.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(807){-webkit-animation-delay:80.7s;animation-delay:80.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(808){-webkit-animation-delay:80.8s;animation-delay:80.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(809){-webkit-animation-delay:80.9s;animation-delay:80.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(810){-webkit-animation-delay:81s;animation-delay:81s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(811){-webkit-animation-delay:81.1s;animation-delay:81.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(812){-webkit-animation-delay:81.2s;animation-delay:81.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(813){-webkit-animation-delay:81.3s;animation-delay:81.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(814){-webkit-animation-delay:81.4s;animation-delay:81.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(815){-webkit-animation-delay:81.5s;animation-delay:81.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(816){-webkit-animation-delay:81.6s;animation-delay:81.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(817){-webkit-animation-delay:81.7s;animation-delay:81.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(818){-webkit-animation-delay:81.8s;animation-delay:81.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(819){-webkit-animation-delay:81.9s;animation-delay:81.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(820){-webkit-animation-delay:82s;animation-delay:82s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(821){-webkit-animation-delay:82.1s;animation-delay:82.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(822){-webkit-animation-delay:82.2s;animation-delay:82.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(823){-webkit-animation-delay:82.3s;animation-delay:82.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(824){-webkit-animation-delay:82.4s;animation-delay:82.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(825){-webkit-animation-delay:82.5s;animation-delay:82.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(826){-webkit-animation-delay:82.6s;animation-delay:82.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(827){-webkit-animation-delay:82.7s;animation-delay:82.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(828){-webkit-animation-delay:82.8s;animation-delay:82.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(829){-webkit-animation-delay:82.9s;animation-delay:82.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(830){-webkit-animation-delay:83s;animation-delay:83s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(831){-webkit-animation-delay:83.1s;animation-delay:83.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(832){-webkit-animation-delay:83.2s;animation-delay:83.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(833){-webkit-animation-delay:83.3s;animation-delay:83.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(834){-webkit-animation-delay:83.4s;animation-delay:83.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(835){-webkit-animation-delay:83.5s;animation-delay:83.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(836){-webkit-animation-delay:83.6s;animation-delay:83.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(837){-webkit-animation-delay:83.7s;animation-delay:83.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(838){-webkit-animation-delay:83.8s;animation-delay:83.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(839){-webkit-animation-delay:83.9s;animation-delay:83.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(840){-webkit-animation-delay:84s;animation-delay:84s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(841){-webkit-animation-delay:84.1s;animation-delay:84.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(842){-webkit-animation-delay:84.2s;animation-delay:84.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(843){-webkit-animation-delay:84.3s;animation-delay:84.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(844){-webkit-animation-delay:84.4s;animation-delay:84.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(845){-webkit-animation-delay:84.5s;animation-delay:84.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(846){-webkit-animation-delay:84.6s;animation-delay:84.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(847){-webkit-animation-delay:84.7s;animation-delay:84.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(848){-webkit-animation-delay:84.8s;animation-delay:84.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(849){-webkit-animation-delay:84.9s;animation-delay:84.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(850){-webkit-animation-delay:85s;animation-delay:85s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(851){-webkit-animation-delay:85.1s;animation-delay:85.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(852){-webkit-animation-delay:85.2s;animation-delay:85.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(853){-webkit-animation-delay:85.3s;animation-delay:85.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(854){-webkit-animation-delay:85.4s;animation-delay:85.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(855){-webkit-animation-delay:85.5s;animation-delay:85.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(856){-webkit-animation-delay:85.6s;animation-delay:85.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(857){-webkit-animation-delay:85.7s;animation-delay:85.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(858){-webkit-animation-delay:85.8s;animation-delay:85.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(859){-webkit-animation-delay:85.9s;animation-delay:85.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(860){-webkit-animation-delay:86s;animation-delay:86s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(861){-webkit-animation-delay:86.1s;animation-delay:86.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(862){-webkit-animation-delay:86.2s;animation-delay:86.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(863){-webkit-animation-delay:86.3s;animation-delay:86.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(864){-webkit-animation-delay:86.4s;animation-delay:86.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(865){-webkit-animation-delay:86.5s;animation-delay:86.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(866){-webkit-animation-delay:86.6s;animation-delay:86.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(867){-webkit-animation-delay:86.7s;animation-delay:86.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(868){-webkit-animation-delay:86.8s;animation-delay:86.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(869){-webkit-animation-delay:86.9s;animation-delay:86.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(870){-webkit-animation-delay:87s;animation-delay:87s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(871){-webkit-animation-delay:87.1s;animation-delay:87.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(872){-webkit-animation-delay:87.2s;animation-delay:87.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(873){-webkit-animation-delay:87.3s;animation-delay:87.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(874){-webkit-animation-delay:87.4s;animation-delay:87.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(875){-webkit-animation-delay:87.5s;animation-delay:87.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(876){-webkit-animation-delay:87.6s;animation-delay:87.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(877){-webkit-animation-delay:87.7s;animation-delay:87.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(878){-webkit-animation-delay:87.8s;animation-delay:87.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(879){-webkit-animation-delay:87.9s;animation-delay:87.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(880){-webkit-animation-delay:88s;animation-delay:88s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(881){-webkit-animation-delay:88.1s;animation-delay:88.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(882){-webkit-animation-delay:88.2s;animation-delay:88.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(883){-webkit-animation-delay:88.3s;animation-delay:88.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(884){-webkit-animation-delay:88.4s;animation-delay:88.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(885){-webkit-animation-delay:88.5s;animation-delay:88.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(886){-webkit-animation-delay:88.6s;animation-delay:88.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(887){-webkit-animation-delay:88.7s;animation-delay:88.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(888){-webkit-animation-delay:88.8s;animation-delay:88.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(889){-webkit-animation-delay:88.9s;animation-delay:88.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(890){-webkit-animation-delay:89s;animation-delay:89s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(891){-webkit-animation-delay:89.1s;animation-delay:89.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(892){-webkit-animation-delay:89.2s;animation-delay:89.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(893){-webkit-animation-delay:89.3s;animation-delay:89.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(894){-webkit-animation-delay:89.4s;animation-delay:89.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(895){-webkit-animation-delay:89.5s;animation-delay:89.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(896){-webkit-animation-delay:89.6s;animation-delay:89.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(897){-webkit-animation-delay:89.7s;animation-delay:89.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(898){-webkit-animation-delay:89.8s;animation-delay:89.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(899){-webkit-animation-delay:89.9s;animation-delay:89.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(900){-webkit-animation-delay:90s;animation-delay:90s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(901){-webkit-animation-delay:90.1s;animation-delay:90.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(902){-webkit-animation-delay:90.2s;animation-delay:90.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(903){-webkit-animation-delay:90.3s;animation-delay:90.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(904){-webkit-animation-delay:90.4s;animation-delay:90.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(905){-webkit-animation-delay:90.5s;animation-delay:90.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(906){-webkit-animation-delay:90.6s;animation-delay:90.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(907){-webkit-animation-delay:90.7s;animation-delay:90.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(908){-webkit-animation-delay:90.8s;animation-delay:90.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(909){-webkit-animation-delay:90.9s;animation-delay:90.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(910){-webkit-animation-delay:91s;animation-delay:91s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(911){-webkit-animation-delay:91.1s;animation-delay:91.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(912){-webkit-animation-delay:91.2s;animation-delay:91.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(913){-webkit-animation-delay:91.3s;animation-delay:91.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(914){-webkit-animation-delay:91.4s;animation-delay:91.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(915){-webkit-animation-delay:91.5s;animation-delay:91.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(916){-webkit-animation-delay:91.6s;animation-delay:91.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(917){-webkit-animation-delay:91.7s;animation-delay:91.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(918){-webkit-animation-delay:91.8s;animation-delay:91.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(919){-webkit-animation-delay:91.9s;animation-delay:91.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(920){-webkit-animation-delay:92s;animation-delay:92s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(921){-webkit-animation-delay:92.1s;animation-delay:92.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(922){-webkit-animation-delay:92.2s;animation-delay:92.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(923){-webkit-animation-delay:92.3s;animation-delay:92.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(924){-webkit-animation-delay:92.4s;animation-delay:92.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(925){-webkit-animation-delay:92.5s;animation-delay:92.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(926){-webkit-animation-delay:92.6s;animation-delay:92.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(927){-webkit-animation-delay:92.7s;animation-delay:92.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(928){-webkit-animation-delay:92.8s;animation-delay:92.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(929){-webkit-animation-delay:92.9s;animation-delay:92.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(930){-webkit-animation-delay:93s;animation-delay:93s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(931){-webkit-animation-delay:93.1s;animation-delay:93.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(932){-webkit-animation-delay:93.2s;animation-delay:93.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(933){-webkit-animation-delay:93.3s;animation-delay:93.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(934){-webkit-animation-delay:93.4s;animation-delay:93.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(935){-webkit-animation-delay:93.5s;animation-delay:93.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(936){-webkit-animation-delay:93.6s;animation-delay:93.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(937){-webkit-animation-delay:93.7s;animation-delay:93.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(938){-webkit-animation-delay:93.8s;animation-delay:93.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(939){-webkit-animation-delay:93.9s;animation-delay:93.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(940){-webkit-animation-delay:94s;animation-delay:94s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(941){-webkit-animation-delay:94.1s;animation-delay:94.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(942){-webkit-animation-delay:94.2s;animation-delay:94.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(943){-webkit-animation-delay:94.3s;animation-delay:94.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(944){-webkit-animation-delay:94.4s;animation-delay:94.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(945){-webkit-animation-delay:94.5s;animation-delay:94.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(946){-webkit-animation-delay:94.6s;animation-delay:94.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(947){-webkit-animation-delay:94.7s;animation-delay:94.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(948){-webkit-animation-delay:94.8s;animation-delay:94.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(949){-webkit-animation-delay:94.9s;animation-delay:94.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(950){-webkit-animation-delay:95s;animation-delay:95s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(951){-webkit-animation-delay:95.1s;animation-delay:95.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(952){-webkit-animation-delay:95.2s;animation-delay:95.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(953){-webkit-animation-delay:95.3s;animation-delay:95.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(954){-webkit-animation-delay:95.4s;animation-delay:95.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(955){-webkit-animation-delay:95.5s;animation-delay:95.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(956){-webkit-animation-delay:95.6s;animation-delay:95.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(957){-webkit-animation-delay:95.7s;animation-delay:95.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(958){-webkit-animation-delay:95.8s;animation-delay:95.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(959){-webkit-animation-delay:95.9s;animation-delay:95.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(960){-webkit-animation-delay:96s;animation-delay:96s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(961){-webkit-animation-delay:96.1s;animation-delay:96.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(962){-webkit-animation-delay:96.2s;animation-delay:96.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(963){-webkit-animation-delay:96.3s;animation-delay:96.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(964){-webkit-animation-delay:96.4s;animation-delay:96.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(965){-webkit-animation-delay:96.5s;animation-delay:96.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(966){-webkit-animation-delay:96.6s;animation-delay:96.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(967){-webkit-animation-delay:96.7s;animation-delay:96.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(968){-webkit-animation-delay:96.8s;animation-delay:96.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(969){-webkit-animation-delay:96.9s;animation-delay:96.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(970){-webkit-animation-delay:97s;animation-delay:97s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(971){-webkit-animation-delay:97.1s;animation-delay:97.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(972){-webkit-animation-delay:97.2s;animation-delay:97.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(973){-webkit-animation-delay:97.3s;animation-delay:97.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(974){-webkit-animation-delay:97.4s;animation-delay:97.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(975){-webkit-animation-delay:97.5s;animation-delay:97.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(976){-webkit-animation-delay:97.6s;animation-delay:97.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(977){-webkit-animation-delay:97.7s;animation-delay:97.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(978){-webkit-animation-delay:97.8s;animation-delay:97.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(979){-webkit-animation-delay:97.9s;animation-delay:97.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(980){-webkit-animation-delay:98s;animation-delay:98s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(981){-webkit-animation-delay:98.1s;animation-delay:98.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(982){-webkit-animation-delay:98.2s;animation-delay:98.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(983){-webkit-animation-delay:98.3s;animation-delay:98.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(984){-webkit-animation-delay:98.4s;animation-delay:98.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(985){-webkit-animation-delay:98.5s;animation-delay:98.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(986){-webkit-animation-delay:98.6s;animation-delay:98.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(987){-webkit-animation-delay:98.7s;animation-delay:98.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(988){-webkit-animation-delay:98.8s;animation-delay:98.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(989){-webkit-animation-delay:98.9s;animation-delay:98.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(990){-webkit-animation-delay:99s;animation-delay:99s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(991){-webkit-animation-delay:99.1s;animation-delay:99.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(992){-webkit-animation-delay:99.2s;animation-delay:99.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(993){-webkit-animation-delay:99.3s;animation-delay:99.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(994){-webkit-animation-delay:99.4s;animation-delay:99.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(995){-webkit-animation-delay:99.5s;animation-delay:99.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(996){-webkit-animation-delay:99.6s;animation-delay:99.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(997){-webkit-animation-delay:99.7s;animation-delay:99.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(998){-webkit-animation-delay:99.8s;animation-delay:99.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(999){-webkit-animation-delay:99.9s;animation-delay:99.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1000){-webkit-animation-delay:100s;animation-delay:100s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1001){-webkit-animation-delay:100.1s;animation-delay:100.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1002){-webkit-animation-delay:100.2s;animation-delay:100.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1003){-webkit-animation-delay:100.3s;animation-delay:100.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1004){-webkit-animation-delay:100.4s;animation-delay:100.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1005){-webkit-animation-delay:100.5s;animation-delay:100.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1006){-webkit-animation-delay:100.6s;animation-delay:100.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1007){-webkit-animation-delay:100.7s;animation-delay:100.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1008){-webkit-animation-delay:100.8s;animation-delay:100.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1009){-webkit-animation-delay:100.9s;animation-delay:100.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1010){-webkit-animation-delay:101s;animation-delay:101s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1011){-webkit-animation-delay:101.1s;animation-delay:101.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1012){-webkit-animation-delay:101.2s;animation-delay:101.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1013){-webkit-animation-delay:101.3s;animation-delay:101.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1014){-webkit-animation-delay:101.4s;animation-delay:101.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1015){-webkit-animation-delay:101.5s;animation-delay:101.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1016){-webkit-animation-delay:101.6s;animation-delay:101.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1017){-webkit-animation-delay:101.7s;animation-delay:101.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1018){-webkit-animation-delay:101.8s;animation-delay:101.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1019){-webkit-animation-delay:101.9s;animation-delay:101.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1020){-webkit-animation-delay:102s;animation-delay:102s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1021){-webkit-animation-delay:102.1s;animation-delay:102.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1022){-webkit-animation-delay:102.2s;animation-delay:102.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1023){-webkit-animation-delay:102.3s;animation-delay:102.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1024){-webkit-animation-delay:102.4s;animation-delay:102.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1025){-webkit-animation-delay:102.5s;animation-delay:102.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1026){-webkit-animation-delay:102.6s;animation-delay:102.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1027){-webkit-animation-delay:102.7s;animation-delay:102.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1028){-webkit-animation-delay:102.8s;animation-delay:102.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1029){-webkit-animation-delay:102.9s;animation-delay:102.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1030){-webkit-animation-delay:103s;animation-delay:103s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1031){-webkit-animation-delay:103.1s;animation-delay:103.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1032){-webkit-animation-delay:103.2s;animation-delay:103.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1033){-webkit-animation-delay:103.3s;animation-delay:103.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1034){-webkit-animation-delay:103.4s;animation-delay:103.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1035){-webkit-animation-delay:103.5s;animation-delay:103.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1036){-webkit-animation-delay:103.6s;animation-delay:103.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1037){-webkit-animation-delay:103.7s;animation-delay:103.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1038){-webkit-animation-delay:103.8s;animation-delay:103.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1039){-webkit-animation-delay:103.9s;animation-delay:103.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1040){-webkit-animation-delay:104s;animation-delay:104s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1041){-webkit-animation-delay:104.1s;animation-delay:104.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1042){-webkit-animation-delay:104.2s;animation-delay:104.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1043){-webkit-animation-delay:104.3s;animation-delay:104.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1044){-webkit-animation-delay:104.4s;animation-delay:104.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1045){-webkit-animation-delay:104.5s;animation-delay:104.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1046){-webkit-animation-delay:104.6s;animation-delay:104.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1047){-webkit-animation-delay:104.7s;animation-delay:104.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1048){-webkit-animation-delay:104.8s;animation-delay:104.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1049){-webkit-animation-delay:104.9s;animation-delay:104.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1050){-webkit-animation-delay:105s;animation-delay:105s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1051){-webkit-animation-delay:105.1s;animation-delay:105.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1052){-webkit-animation-delay:105.2s;animation-delay:105.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1053){-webkit-animation-delay:105.3s;animation-delay:105.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1054){-webkit-animation-delay:105.4s;animation-delay:105.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1055){-webkit-animation-delay:105.5s;animation-delay:105.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1056){-webkit-animation-delay:105.6s;animation-delay:105.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1057){-webkit-animation-delay:105.7s;animation-delay:105.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1058){-webkit-animation-delay:105.8s;animation-delay:105.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1059){-webkit-animation-delay:105.9s;animation-delay:105.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1060){-webkit-animation-delay:106s;animation-delay:106s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1061){-webkit-animation-delay:106.1s;animation-delay:106.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1062){-webkit-animation-delay:106.2s;animation-delay:106.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1063){-webkit-animation-delay:106.3s;animation-delay:106.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1064){-webkit-animation-delay:106.4s;animation-delay:106.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1065){-webkit-animation-delay:106.5s;animation-delay:106.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1066){-webkit-animation-delay:106.6s;animation-delay:106.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1067){-webkit-animation-delay:106.7s;animation-delay:106.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1068){-webkit-animation-delay:106.8s;animation-delay:106.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1069){-webkit-animation-delay:106.9s;animation-delay:106.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1070){-webkit-animation-delay:107s;animation-delay:107s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1071){-webkit-animation-delay:107.1s;animation-delay:107.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1072){-webkit-animation-delay:107.2s;animation-delay:107.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1073){-webkit-animation-delay:107.3s;animation-delay:107.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1074){-webkit-animation-delay:107.4s;animation-delay:107.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1075){-webkit-animation-delay:107.5s;animation-delay:107.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1076){-webkit-animation-delay:107.6s;animation-delay:107.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1077){-webkit-animation-delay:107.7s;animation-delay:107.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1078){-webkit-animation-delay:107.8s;animation-delay:107.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1079){-webkit-animation-delay:107.9s;animation-delay:107.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1080){-webkit-animation-delay:108s;animation-delay:108s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1081){-webkit-animation-delay:108.1s;animation-delay:108.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1082){-webkit-animation-delay:108.2s;animation-delay:108.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1083){-webkit-animation-delay:108.3s;animation-delay:108.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1084){-webkit-animation-delay:108.4s;animation-delay:108.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1085){-webkit-animation-delay:108.5s;animation-delay:108.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1086){-webkit-animation-delay:108.6s;animation-delay:108.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1087){-webkit-animation-delay:108.7s;animation-delay:108.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1088){-webkit-animation-delay:108.8s;animation-delay:108.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1089){-webkit-animation-delay:108.9s;animation-delay:108.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1090){-webkit-animation-delay:109s;animation-delay:109s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1091){-webkit-animation-delay:109.1s;animation-delay:109.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1092){-webkit-animation-delay:109.2s;animation-delay:109.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1093){-webkit-animation-delay:109.3s;animation-delay:109.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1094){-webkit-animation-delay:109.4s;animation-delay:109.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1095){-webkit-animation-delay:109.5s;animation-delay:109.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1096){-webkit-animation-delay:109.6s;animation-delay:109.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1097){-webkit-animation-delay:109.7s;animation-delay:109.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1098){-webkit-animation-delay:109.8s;animation-delay:109.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1099){-webkit-animation-delay:109.9s;animation-delay:109.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1100){-webkit-animation-delay:110s;animation-delay:110s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1101){-webkit-animation-delay:110.1s;animation-delay:110.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1102){-webkit-animation-delay:110.2s;animation-delay:110.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1103){-webkit-animation-delay:110.3s;animation-delay:110.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1104){-webkit-animation-delay:110.4s;animation-delay:110.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1105){-webkit-animation-delay:110.5s;animation-delay:110.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1106){-webkit-animation-delay:110.6s;animation-delay:110.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1107){-webkit-animation-delay:110.7s;animation-delay:110.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1108){-webkit-animation-delay:110.8s;animation-delay:110.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1109){-webkit-animation-delay:110.9s;animation-delay:110.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1110){-webkit-animation-delay:111s;animation-delay:111s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1111){-webkit-animation-delay:111.1s;animation-delay:111.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1112){-webkit-animation-delay:111.2s;animation-delay:111.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1113){-webkit-animation-delay:111.3s;animation-delay:111.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1114){-webkit-animation-delay:111.4s;animation-delay:111.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1115){-webkit-animation-delay:111.5s;animation-delay:111.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1116){-webkit-animation-delay:111.6s;animation-delay:111.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1117){-webkit-animation-delay:111.7s;animation-delay:111.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1118){-webkit-animation-delay:111.8s;animation-delay:111.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1119){-webkit-animation-delay:111.9s;animation-delay:111.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1120){-webkit-animation-delay:112s;animation-delay:112s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1121){-webkit-animation-delay:112.1s;animation-delay:112.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1122){-webkit-animation-delay:112.2s;animation-delay:112.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1123){-webkit-animation-delay:112.3s;animation-delay:112.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1124){-webkit-animation-delay:112.4s;animation-delay:112.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1125){-webkit-animation-delay:112.5s;animation-delay:112.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1126){-webkit-animation-delay:112.6s;animation-delay:112.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1127){-webkit-animation-delay:112.7s;animation-delay:112.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1128){-webkit-animation-delay:112.8s;animation-delay:112.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1129){-webkit-animation-delay:112.9s;animation-delay:112.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1130){-webkit-animation-delay:113s;animation-delay:113s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1131){-webkit-animation-delay:113.1s;animation-delay:113.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1132){-webkit-animation-delay:113.2s;animation-delay:113.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1133){-webkit-animation-delay:113.3s;animation-delay:113.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1134){-webkit-animation-delay:113.4s;animation-delay:113.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1135){-webkit-animation-delay:113.5s;animation-delay:113.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1136){-webkit-animation-delay:113.6s;animation-delay:113.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1137){-webkit-animation-delay:113.7s;animation-delay:113.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1138){-webkit-animation-delay:113.8s;animation-delay:113.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1139){-webkit-animation-delay:113.9s;animation-delay:113.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1140){-webkit-animation-delay:114s;animation-delay:114s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1141){-webkit-animation-delay:114.1s;animation-delay:114.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1142){-webkit-animation-delay:114.2s;animation-delay:114.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1143){-webkit-animation-delay:114.3s;animation-delay:114.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1144){-webkit-animation-delay:114.4s;animation-delay:114.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1145){-webkit-animation-delay:114.5s;animation-delay:114.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1146){-webkit-animation-delay:114.6s;animation-delay:114.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1147){-webkit-animation-delay:114.7s;animation-delay:114.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1148){-webkit-animation-delay:114.8s;animation-delay:114.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1149){-webkit-animation-delay:114.9s;animation-delay:114.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1150){-webkit-animation-delay:115s;animation-delay:115s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1151){-webkit-animation-delay:115.1s;animation-delay:115.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1152){-webkit-animation-delay:115.2s;animation-delay:115.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1153){-webkit-animation-delay:115.3s;animation-delay:115.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1154){-webkit-animation-delay:115.4s;animation-delay:115.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1155){-webkit-animation-delay:115.5s;animation-delay:115.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1156){-webkit-animation-delay:115.6s;animation-delay:115.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1157){-webkit-animation-delay:115.7s;animation-delay:115.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1158){-webkit-animation-delay:115.8s;animation-delay:115.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1159){-webkit-animation-delay:115.9s;animation-delay:115.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1160){-webkit-animation-delay:116s;animation-delay:116s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1161){-webkit-animation-delay:116.1s;animation-delay:116.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1162){-webkit-animation-delay:116.2s;animation-delay:116.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1163){-webkit-animation-delay:116.3s;animation-delay:116.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1164){-webkit-animation-delay:116.4s;animation-delay:116.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1165){-webkit-animation-delay:116.5s;animation-delay:116.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1166){-webkit-animation-delay:116.6s;animation-delay:116.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1167){-webkit-animation-delay:116.7s;animation-delay:116.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1168){-webkit-animation-delay:116.8s;animation-delay:116.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1169){-webkit-animation-delay:116.9s;animation-delay:116.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1170){-webkit-animation-delay:117s;animation-delay:117s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1171){-webkit-animation-delay:117.1s;animation-delay:117.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1172){-webkit-animation-delay:117.2s;animation-delay:117.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1173){-webkit-animation-delay:117.3s;animation-delay:117.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1174){-webkit-animation-delay:117.4s;animation-delay:117.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1175){-webkit-animation-delay:117.5s;animation-delay:117.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1176){-webkit-animation-delay:117.6s;animation-delay:117.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1177){-webkit-animation-delay:117.7s;animation-delay:117.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1178){-webkit-animation-delay:117.8s;animation-delay:117.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1179){-webkit-animation-delay:117.9s;animation-delay:117.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1180){-webkit-animation-delay:118s;animation-delay:118s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1181){-webkit-animation-delay:118.1s;animation-delay:118.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1182){-webkit-animation-delay:118.2s;animation-delay:118.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1183){-webkit-animation-delay:118.3s;animation-delay:118.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1184){-webkit-animation-delay:118.4s;animation-delay:118.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1185){-webkit-animation-delay:118.5s;animation-delay:118.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1186){-webkit-animation-delay:118.6s;animation-delay:118.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1187){-webkit-animation-delay:118.7s;animation-delay:118.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1188){-webkit-animation-delay:118.8s;animation-delay:118.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1189){-webkit-animation-delay:118.9s;animation-delay:118.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1190){-webkit-animation-delay:119s;animation-delay:119s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1191){-webkit-animation-delay:119.1s;animation-delay:119.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1192){-webkit-animation-delay:119.2s;animation-delay:119.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1193){-webkit-animation-delay:119.3s;animation-delay:119.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1194){-webkit-animation-delay:119.4s;animation-delay:119.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1195){-webkit-animation-delay:119.5s;animation-delay:119.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1196){-webkit-animation-delay:119.6s;animation-delay:119.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1197){-webkit-animation-delay:119.7s;animation-delay:119.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1198){-webkit-animation-delay:119.8s;animation-delay:119.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1199){-webkit-animation-delay:119.9s;animation-delay:119.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1200){-webkit-animation-delay:120s;animation-delay:120s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1201){-webkit-animation-delay:120.1s;animation-delay:120.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1202){-webkit-animation-delay:120.2s;animation-delay:120.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1203){-webkit-animation-delay:120.3s;animation-delay:120.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1204){-webkit-animation-delay:120.4s;animation-delay:120.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1205){-webkit-animation-delay:120.5s;animation-delay:120.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1206){-webkit-animation-delay:120.6s;animation-delay:120.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1207){-webkit-animation-delay:120.7s;animation-delay:120.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1208){-webkit-animation-delay:120.8s;animation-delay:120.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1209){-webkit-animation-delay:120.9s;animation-delay:120.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1210){-webkit-animation-delay:121s;animation-delay:121s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1211){-webkit-animation-delay:121.1s;animation-delay:121.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1212){-webkit-animation-delay:121.2s;animation-delay:121.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1213){-webkit-animation-delay:121.3s;animation-delay:121.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1214){-webkit-animation-delay:121.4s;animation-delay:121.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1215){-webkit-animation-delay:121.5s;animation-delay:121.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1216){-webkit-animation-delay:121.6s;animation-delay:121.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1217){-webkit-animation-delay:121.7s;animation-delay:121.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1218){-webkit-animation-delay:121.8s;animation-delay:121.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1219){-webkit-animation-delay:121.9s;animation-delay:121.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1220){-webkit-animation-delay:122s;animation-delay:122s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1221){-webkit-animation-delay:122.1s;animation-delay:122.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1222){-webkit-animation-delay:122.2s;animation-delay:122.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1223){-webkit-animation-delay:122.3s;animation-delay:122.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1224){-webkit-animation-delay:122.4s;animation-delay:122.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1225){-webkit-animation-delay:122.5s;animation-delay:122.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1226){-webkit-animation-delay:122.6s;animation-delay:122.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1227){-webkit-animation-delay:122.7s;animation-delay:122.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1228){-webkit-animation-delay:122.8s;animation-delay:122.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1229){-webkit-animation-delay:122.9s;animation-delay:122.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1230){-webkit-animation-delay:123s;animation-delay:123s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1231){-webkit-animation-delay:123.1s;animation-delay:123.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1232){-webkit-animation-delay:123.2s;animation-delay:123.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1233){-webkit-animation-delay:123.3s;animation-delay:123.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1234){-webkit-animation-delay:123.4s;animation-delay:123.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1235){-webkit-animation-delay:123.5s;animation-delay:123.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1236){-webkit-animation-delay:123.6s;animation-delay:123.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1237){-webkit-animation-delay:123.7s;animation-delay:123.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1238){-webkit-animation-delay:123.8s;animation-delay:123.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1239){-webkit-animation-delay:123.9s;animation-delay:123.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1240){-webkit-animation-delay:124s;animation-delay:124s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1241){-webkit-animation-delay:124.1s;animation-delay:124.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1242){-webkit-animation-delay:124.2s;animation-delay:124.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1243){-webkit-animation-delay:124.3s;animation-delay:124.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1244){-webkit-animation-delay:124.4s;animation-delay:124.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1245){-webkit-animation-delay:124.5s;animation-delay:124.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1246){-webkit-animation-delay:124.6s;animation-delay:124.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1247){-webkit-animation-delay:124.7s;animation-delay:124.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1248){-webkit-animation-delay:124.8s;animation-delay:124.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1249){-webkit-animation-delay:124.9s;animation-delay:124.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1250){-webkit-animation-delay:125s;animation-delay:125s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1251){-webkit-animation-delay:125.1s;animation-delay:125.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1252){-webkit-animation-delay:125.2s;animation-delay:125.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1253){-webkit-animation-delay:125.3s;animation-delay:125.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1254){-webkit-animation-delay:125.4s;animation-delay:125.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1255){-webkit-animation-delay:125.5s;animation-delay:125.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1256){-webkit-animation-delay:125.6s;animation-delay:125.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1257){-webkit-animation-delay:125.7s;animation-delay:125.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1258){-webkit-animation-delay:125.8s;animation-delay:125.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1259){-webkit-animation-delay:125.9s;animation-delay:125.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1260){-webkit-animation-delay:126s;animation-delay:126s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1261){-webkit-animation-delay:126.1s;animation-delay:126.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1262){-webkit-animation-delay:126.2s;animation-delay:126.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1263){-webkit-animation-delay:126.3s;animation-delay:126.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1264){-webkit-animation-delay:126.4s;animation-delay:126.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1265){-webkit-animation-delay:126.5s;animation-delay:126.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1266){-webkit-animation-delay:126.6s;animation-delay:126.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1267){-webkit-animation-delay:126.7s;animation-delay:126.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1268){-webkit-animation-delay:126.8s;animation-delay:126.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1269){-webkit-animation-delay:126.9s;animation-delay:126.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1270){-webkit-animation-delay:127s;animation-delay:127s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1271){-webkit-animation-delay:127.1s;animation-delay:127.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1272){-webkit-animation-delay:127.2s;animation-delay:127.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1273){-webkit-animation-delay:127.3s;animation-delay:127.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1274){-webkit-animation-delay:127.4s;animation-delay:127.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1275){-webkit-animation-delay:127.5s;animation-delay:127.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1276){-webkit-animation-delay:127.6s;animation-delay:127.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1277){-webkit-animation-delay:127.7s;animation-delay:127.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1278){-webkit-animation-delay:127.8s;animation-delay:127.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1279){-webkit-animation-delay:127.9s;animation-delay:127.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1280){-webkit-animation-delay:128s;animation-delay:128s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1281){-webkit-animation-delay:128.1s;animation-delay:128.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1282){-webkit-animation-delay:128.2s;animation-delay:128.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1283){-webkit-animation-delay:128.3s;animation-delay:128.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1284){-webkit-animation-delay:128.4s;animation-delay:128.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1285){-webkit-animation-delay:128.5s;animation-delay:128.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1286){-webkit-animation-delay:128.6s;animation-delay:128.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1287){-webkit-animation-delay:128.7s;animation-delay:128.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1288){-webkit-animation-delay:128.8s;animation-delay:128.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1289){-webkit-animation-delay:128.9s;animation-delay:128.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1290){-webkit-animation-delay:129s;animation-delay:129s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1291){-webkit-animation-delay:129.1s;animation-delay:129.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1292){-webkit-animation-delay:129.2s;animation-delay:129.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1293){-webkit-animation-delay:129.3s;animation-delay:129.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1294){-webkit-animation-delay:129.4s;animation-delay:129.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1295){-webkit-animation-delay:129.5s;animation-delay:129.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1296){-webkit-animation-delay:129.6s;animation-delay:129.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1297){-webkit-animation-delay:129.7s;animation-delay:129.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1298){-webkit-animation-delay:129.8s;animation-delay:129.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1299){-webkit-animation-delay:129.9s;animation-delay:129.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1300){-webkit-animation-delay:130s;animation-delay:130s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1301){-webkit-animation-delay:130.1s;animation-delay:130.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1302){-webkit-animation-delay:130.2s;animation-delay:130.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1303){-webkit-animation-delay:130.3s;animation-delay:130.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1304){-webkit-animation-delay:130.4s;animation-delay:130.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1305){-webkit-animation-delay:130.5s;animation-delay:130.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1306){-webkit-animation-delay:130.6s;animation-delay:130.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1307){-webkit-animation-delay:130.7s;animation-delay:130.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1308){-webkit-animation-delay:130.8s;animation-delay:130.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1309){-webkit-animation-delay:130.9s;animation-delay:130.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1310){-webkit-animation-delay:131s;animation-delay:131s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1311){-webkit-animation-delay:131.1s;animation-delay:131.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1312){-webkit-animation-delay:131.2s;animation-delay:131.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1313){-webkit-animation-delay:131.3s;animation-delay:131.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1314){-webkit-animation-delay:131.4s;animation-delay:131.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1315){-webkit-animation-delay:131.5s;animation-delay:131.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1316){-webkit-animation-delay:131.6s;animation-delay:131.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1317){-webkit-animation-delay:131.7s;animation-delay:131.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1318){-webkit-animation-delay:131.8s;animation-delay:131.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1319){-webkit-animation-delay:131.9s;animation-delay:131.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1320){-webkit-animation-delay:132s;animation-delay:132s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1321){-webkit-animation-delay:132.1s;animation-delay:132.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1322){-webkit-animation-delay:132.2s;animation-delay:132.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1323){-webkit-animation-delay:132.3s;animation-delay:132.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1324){-webkit-animation-delay:132.4s;animation-delay:132.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1325){-webkit-animation-delay:132.5s;animation-delay:132.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1326){-webkit-animation-delay:132.6s;animation-delay:132.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1327){-webkit-animation-delay:132.7s;animation-delay:132.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1328){-webkit-animation-delay:132.8s;animation-delay:132.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1329){-webkit-animation-delay:132.9s;animation-delay:132.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1330){-webkit-animation-delay:133s;animation-delay:133s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1331){-webkit-animation-delay:133.1s;animation-delay:133.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1332){-webkit-animation-delay:133.2s;animation-delay:133.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1333){-webkit-animation-delay:133.3s;animation-delay:133.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1334){-webkit-animation-delay:133.4s;animation-delay:133.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1335){-webkit-animation-delay:133.5s;animation-delay:133.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1336){-webkit-animation-delay:133.6s;animation-delay:133.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1337){-webkit-animation-delay:133.7s;animation-delay:133.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1338){-webkit-animation-delay:133.8s;animation-delay:133.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1339){-webkit-animation-delay:133.9s;animation-delay:133.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1340){-webkit-animation-delay:134s;animation-delay:134s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1341){-webkit-animation-delay:134.1s;animation-delay:134.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1342){-webkit-animation-delay:134.2s;animation-delay:134.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1343){-webkit-animation-delay:134.3s;animation-delay:134.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1344){-webkit-animation-delay:134.4s;animation-delay:134.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1345){-webkit-animation-delay:134.5s;animation-delay:134.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1346){-webkit-animation-delay:134.6s;animation-delay:134.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1347){-webkit-animation-delay:134.7s;animation-delay:134.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1348){-webkit-animation-delay:134.8s;animation-delay:134.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1349){-webkit-animation-delay:134.9s;animation-delay:134.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1350){-webkit-animation-delay:135s;animation-delay:135s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1351){-webkit-animation-delay:135.1s;animation-delay:135.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1352){-webkit-animation-delay:135.2s;animation-delay:135.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1353){-webkit-animation-delay:135.3s;animation-delay:135.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1354){-webkit-animation-delay:135.4s;animation-delay:135.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1355){-webkit-animation-delay:135.5s;animation-delay:135.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1356){-webkit-animation-delay:135.6s;animation-delay:135.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1357){-webkit-animation-delay:135.7s;animation-delay:135.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1358){-webkit-animation-delay:135.8s;animation-delay:135.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1359){-webkit-animation-delay:135.9s;animation-delay:135.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1360){-webkit-animation-delay:136s;animation-delay:136s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1361){-webkit-animation-delay:136.1s;animation-delay:136.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1362){-webkit-animation-delay:136.2s;animation-delay:136.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1363){-webkit-animation-delay:136.3s;animation-delay:136.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1364){-webkit-animation-delay:136.4s;animation-delay:136.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1365){-webkit-animation-delay:136.5s;animation-delay:136.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1366){-webkit-animation-delay:136.6s;animation-delay:136.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1367){-webkit-animation-delay:136.7s;animation-delay:136.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1368){-webkit-animation-delay:136.8s;animation-delay:136.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1369){-webkit-animation-delay:136.9s;animation-delay:136.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1370){-webkit-animation-delay:137s;animation-delay:137s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1371){-webkit-animation-delay:137.1s;animation-delay:137.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1372){-webkit-animation-delay:137.2s;animation-delay:137.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1373){-webkit-animation-delay:137.3s;animation-delay:137.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1374){-webkit-animation-delay:137.4s;animation-delay:137.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1375){-webkit-animation-delay:137.5s;animation-delay:137.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1376){-webkit-animation-delay:137.6s;animation-delay:137.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1377){-webkit-animation-delay:137.7s;animation-delay:137.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1378){-webkit-animation-delay:137.8s;animation-delay:137.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1379){-webkit-animation-delay:137.9s;animation-delay:137.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1380){-webkit-animation-delay:138s;animation-delay:138s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1381){-webkit-animation-delay:138.1s;animation-delay:138.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1382){-webkit-animation-delay:138.2s;animation-delay:138.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1383){-webkit-animation-delay:138.3s;animation-delay:138.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1384){-webkit-animation-delay:138.4s;animation-delay:138.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1385){-webkit-animation-delay:138.5s;animation-delay:138.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1386){-webkit-animation-delay:138.6s;animation-delay:138.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1387){-webkit-animation-delay:138.7s;animation-delay:138.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1388){-webkit-animation-delay:138.8s;animation-delay:138.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1389){-webkit-animation-delay:138.9s;animation-delay:138.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1390){-webkit-animation-delay:139s;animation-delay:139s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1391){-webkit-animation-delay:139.1s;animation-delay:139.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1392){-webkit-animation-delay:139.2s;animation-delay:139.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1393){-webkit-animation-delay:139.3s;animation-delay:139.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1394){-webkit-animation-delay:139.4s;animation-delay:139.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1395){-webkit-animation-delay:139.5s;animation-delay:139.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1396){-webkit-animation-delay:139.6s;animation-delay:139.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1397){-webkit-animation-delay:139.7s;animation-delay:139.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1398){-webkit-animation-delay:139.8s;animation-delay:139.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1399){-webkit-animation-delay:139.9s;animation-delay:139.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1400){-webkit-animation-delay:140s;animation-delay:140s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1401){-webkit-animation-delay:140.1s;animation-delay:140.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1402){-webkit-animation-delay:140.2s;animation-delay:140.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1403){-webkit-animation-delay:140.3s;animation-delay:140.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1404){-webkit-animation-delay:140.4s;animation-delay:140.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1405){-webkit-animation-delay:140.5s;animation-delay:140.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1406){-webkit-animation-delay:140.6s;animation-delay:140.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1407){-webkit-animation-delay:140.7s;animation-delay:140.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1408){-webkit-animation-delay:140.8s;animation-delay:140.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1409){-webkit-animation-delay:140.9s;animation-delay:140.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1410){-webkit-animation-delay:141s;animation-delay:141s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1411){-webkit-animation-delay:141.1s;animation-delay:141.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1412){-webkit-animation-delay:141.2s;animation-delay:141.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1413){-webkit-animation-delay:141.3s;animation-delay:141.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1414){-webkit-animation-delay:141.4s;animation-delay:141.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1415){-webkit-animation-delay:141.5s;animation-delay:141.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1416){-webkit-animation-delay:141.6s;animation-delay:141.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1417){-webkit-animation-delay:141.7s;animation-delay:141.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1418){-webkit-animation-delay:141.8s;animation-delay:141.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1419){-webkit-animation-delay:141.9s;animation-delay:141.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1420){-webkit-animation-delay:142s;animation-delay:142s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1421){-webkit-animation-delay:142.1s;animation-delay:142.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1422){-webkit-animation-delay:142.2s;animation-delay:142.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1423){-webkit-animation-delay:142.3s;animation-delay:142.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1424){-webkit-animation-delay:142.4s;animation-delay:142.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1425){-webkit-animation-delay:142.5s;animation-delay:142.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1426){-webkit-animation-delay:142.6s;animation-delay:142.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1427){-webkit-animation-delay:142.7s;animation-delay:142.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1428){-webkit-animation-delay:142.8s;animation-delay:142.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1429){-webkit-animation-delay:142.9s;animation-delay:142.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1430){-webkit-animation-delay:143s;animation-delay:143s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1431){-webkit-animation-delay:143.1s;animation-delay:143.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1432){-webkit-animation-delay:143.2s;animation-delay:143.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1433){-webkit-animation-delay:143.3s;animation-delay:143.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1434){-webkit-animation-delay:143.4s;animation-delay:143.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1435){-webkit-animation-delay:143.5s;animation-delay:143.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1436){-webkit-animation-delay:143.6s;animation-delay:143.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1437){-webkit-animation-delay:143.7s;animation-delay:143.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1438){-webkit-animation-delay:143.8s;animation-delay:143.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1439){-webkit-animation-delay:143.9s;animation-delay:143.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1440){-webkit-animation-delay:144s;animation-delay:144s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1441){-webkit-animation-delay:144.1s;animation-delay:144.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1442){-webkit-animation-delay:144.2s;animation-delay:144.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1443){-webkit-animation-delay:144.3s;animation-delay:144.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1444){-webkit-animation-delay:144.4s;animation-delay:144.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1445){-webkit-animation-delay:144.5s;animation-delay:144.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1446){-webkit-animation-delay:144.6s;animation-delay:144.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1447){-webkit-animation-delay:144.7s;animation-delay:144.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1448){-webkit-animation-delay:144.8s;animation-delay:144.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1449){-webkit-animation-delay:144.9s;animation-delay:144.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1450){-webkit-animation-delay:145s;animation-delay:145s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1451){-webkit-animation-delay:145.1s;animation-delay:145.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1452){-webkit-animation-delay:145.2s;animation-delay:145.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1453){-webkit-animation-delay:145.3s;animation-delay:145.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1454){-webkit-animation-delay:145.4s;animation-delay:145.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1455){-webkit-animation-delay:145.5s;animation-delay:145.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1456){-webkit-animation-delay:145.6s;animation-delay:145.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1457){-webkit-animation-delay:145.7s;animation-delay:145.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1458){-webkit-animation-delay:145.8s;animation-delay:145.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1459){-webkit-animation-delay:145.9s;animation-delay:145.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1460){-webkit-animation-delay:146s;animation-delay:146s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1461){-webkit-animation-delay:146.1s;animation-delay:146.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1462){-webkit-animation-delay:146.2s;animation-delay:146.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1463){-webkit-animation-delay:146.3s;animation-delay:146.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1464){-webkit-animation-delay:146.4s;animation-delay:146.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1465){-webkit-animation-delay:146.5s;animation-delay:146.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1466){-webkit-animation-delay:146.6s;animation-delay:146.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1467){-webkit-animation-delay:146.7s;animation-delay:146.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1468){-webkit-animation-delay:146.8s;animation-delay:146.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1469){-webkit-animation-delay:146.9s;animation-delay:146.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1470){-webkit-animation-delay:147s;animation-delay:147s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1471){-webkit-animation-delay:147.1s;animation-delay:147.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1472){-webkit-animation-delay:147.2s;animation-delay:147.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1473){-webkit-animation-delay:147.3s;animation-delay:147.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1474){-webkit-animation-delay:147.4s;animation-delay:147.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1475){-webkit-animation-delay:147.5s;animation-delay:147.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1476){-webkit-animation-delay:147.6s;animation-delay:147.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1477){-webkit-animation-delay:147.7s;animation-delay:147.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1478){-webkit-animation-delay:147.8s;animation-delay:147.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1479){-webkit-animation-delay:147.9s;animation-delay:147.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1480){-webkit-animation-delay:148s;animation-delay:148s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1481){-webkit-animation-delay:148.1s;animation-delay:148.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1482){-webkit-animation-delay:148.2s;animation-delay:148.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1483){-webkit-animation-delay:148.3s;animation-delay:148.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1484){-webkit-animation-delay:148.4s;animation-delay:148.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1485){-webkit-animation-delay:148.5s;animation-delay:148.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1486){-webkit-animation-delay:148.6s;animation-delay:148.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1487){-webkit-animation-delay:148.7s;animation-delay:148.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1488){-webkit-animation-delay:148.8s;animation-delay:148.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1489){-webkit-animation-delay:148.9s;animation-delay:148.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1490){-webkit-animation-delay:149s;animation-delay:149s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1491){-webkit-animation-delay:149.1s;animation-delay:149.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1492){-webkit-animation-delay:149.2s;animation-delay:149.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1493){-webkit-animation-delay:149.3s;animation-delay:149.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1494){-webkit-animation-delay:149.4s;animation-delay:149.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1495){-webkit-animation-delay:149.5s;animation-delay:149.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1496){-webkit-animation-delay:149.6s;animation-delay:149.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1497){-webkit-animation-delay:149.7s;animation-delay:149.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1498){-webkit-animation-delay:149.8s;animation-delay:149.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1499){-webkit-animation-delay:149.9s;animation-delay:149.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1500){-webkit-animation-delay:150s;animation-delay:150s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1501){-webkit-animation-delay:150.1s;animation-delay:150.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1502){-webkit-animation-delay:150.2s;animation-delay:150.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1503){-webkit-animation-delay:150.3s;animation-delay:150.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1504){-webkit-animation-delay:150.4s;animation-delay:150.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1505){-webkit-animation-delay:150.5s;animation-delay:150.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1506){-webkit-animation-delay:150.6s;animation-delay:150.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1507){-webkit-animation-delay:150.7s;animation-delay:150.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1508){-webkit-animation-delay:150.8s;animation-delay:150.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1509){-webkit-animation-delay:150.9s;animation-delay:150.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1510){-webkit-animation-delay:151s;animation-delay:151s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1511){-webkit-animation-delay:151.1s;animation-delay:151.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1512){-webkit-animation-delay:151.2s;animation-delay:151.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1513){-webkit-animation-delay:151.3s;animation-delay:151.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1514){-webkit-animation-delay:151.4s;animation-delay:151.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1515){-webkit-animation-delay:151.5s;animation-delay:151.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1516){-webkit-animation-delay:151.6s;animation-delay:151.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1517){-webkit-animation-delay:151.7s;animation-delay:151.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1518){-webkit-animation-delay:151.8s;animation-delay:151.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1519){-webkit-animation-delay:151.9s;animation-delay:151.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1520){-webkit-animation-delay:152s;animation-delay:152s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1521){-webkit-animation-delay:152.1s;animation-delay:152.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1522){-webkit-animation-delay:152.2s;animation-delay:152.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1523){-webkit-animation-delay:152.3s;animation-delay:152.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1524){-webkit-animation-delay:152.4s;animation-delay:152.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1525){-webkit-animation-delay:152.5s;animation-delay:152.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1526){-webkit-animation-delay:152.6s;animation-delay:152.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1527){-webkit-animation-delay:152.7s;animation-delay:152.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1528){-webkit-animation-delay:152.8s;animation-delay:152.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1529){-webkit-animation-delay:152.9s;animation-delay:152.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1530){-webkit-animation-delay:153s;animation-delay:153s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1531){-webkit-animation-delay:153.1s;animation-delay:153.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1532){-webkit-animation-delay:153.2s;animation-delay:153.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1533){-webkit-animation-delay:153.3s;animation-delay:153.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1534){-webkit-animation-delay:153.4s;animation-delay:153.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1535){-webkit-animation-delay:153.5s;animation-delay:153.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1536){-webkit-animation-delay:153.6s;animation-delay:153.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1537){-webkit-animation-delay:153.7s;animation-delay:153.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1538){-webkit-animation-delay:153.8s;animation-delay:153.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1539){-webkit-animation-delay:153.9s;animation-delay:153.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1540){-webkit-animation-delay:154s;animation-delay:154s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1541){-webkit-animation-delay:154.1s;animation-delay:154.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1542){-webkit-animation-delay:154.2s;animation-delay:154.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1543){-webkit-animation-delay:154.3s;animation-delay:154.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1544){-webkit-animation-delay:154.4s;animation-delay:154.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1545){-webkit-animation-delay:154.5s;animation-delay:154.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1546){-webkit-animation-delay:154.6s;animation-delay:154.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1547){-webkit-animation-delay:154.7s;animation-delay:154.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1548){-webkit-animation-delay:154.8s;animation-delay:154.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1549){-webkit-animation-delay:154.9s;animation-delay:154.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1550){-webkit-animation-delay:155s;animation-delay:155s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1551){-webkit-animation-delay:155.1s;animation-delay:155.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1552){-webkit-animation-delay:155.2s;animation-delay:155.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1553){-webkit-animation-delay:155.3s;animation-delay:155.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1554){-webkit-animation-delay:155.4s;animation-delay:155.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1555){-webkit-animation-delay:155.5s;animation-delay:155.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1556){-webkit-animation-delay:155.6s;animation-delay:155.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1557){-webkit-animation-delay:155.7s;animation-delay:155.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1558){-webkit-animation-delay:155.8s;animation-delay:155.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1559){-webkit-animation-delay:155.9s;animation-delay:155.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1560){-webkit-animation-delay:156s;animation-delay:156s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1561){-webkit-animation-delay:156.1s;animation-delay:156.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1562){-webkit-animation-delay:156.2s;animation-delay:156.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1563){-webkit-animation-delay:156.3s;animation-delay:156.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1564){-webkit-animation-delay:156.4s;animation-delay:156.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1565){-webkit-animation-delay:156.5s;animation-delay:156.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1566){-webkit-animation-delay:156.6s;animation-delay:156.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1567){-webkit-animation-delay:156.7s;animation-delay:156.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1568){-webkit-animation-delay:156.8s;animation-delay:156.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1569){-webkit-animation-delay:156.9s;animation-delay:156.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1570){-webkit-animation-delay:157s;animation-delay:157s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1571){-webkit-animation-delay:157.1s;animation-delay:157.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1572){-webkit-animation-delay:157.2s;animation-delay:157.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1573){-webkit-animation-delay:157.3s;animation-delay:157.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1574){-webkit-animation-delay:157.4s;animation-delay:157.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1575){-webkit-animation-delay:157.5s;animation-delay:157.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1576){-webkit-animation-delay:157.6s;animation-delay:157.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1577){-webkit-animation-delay:157.7s;animation-delay:157.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1578){-webkit-animation-delay:157.8s;animation-delay:157.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1579){-webkit-animation-delay:157.9s;animation-delay:157.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1580){-webkit-animation-delay:158s;animation-delay:158s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1581){-webkit-animation-delay:158.1s;animation-delay:158.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1582){-webkit-animation-delay:158.2s;animation-delay:158.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1583){-webkit-animation-delay:158.3s;animation-delay:158.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1584){-webkit-animation-delay:158.4s;animation-delay:158.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1585){-webkit-animation-delay:158.5s;animation-delay:158.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1586){-webkit-animation-delay:158.6s;animation-delay:158.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1587){-webkit-animation-delay:158.7s;animation-delay:158.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1588){-webkit-animation-delay:158.8s;animation-delay:158.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1589){-webkit-animation-delay:158.9s;animation-delay:158.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1590){-webkit-animation-delay:159s;animation-delay:159s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1591){-webkit-animation-delay:159.1s;animation-delay:159.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1592){-webkit-animation-delay:159.2s;animation-delay:159.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1593){-webkit-animation-delay:159.3s;animation-delay:159.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1594){-webkit-animation-delay:159.4s;animation-delay:159.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1595){-webkit-animation-delay:159.5s;animation-delay:159.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1596){-webkit-animation-delay:159.6s;animation-delay:159.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1597){-webkit-animation-delay:159.7s;animation-delay:159.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1598){-webkit-animation-delay:159.8s;animation-delay:159.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1599){-webkit-animation-delay:159.9s;animation-delay:159.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1600){-webkit-animation-delay:160s;animation-delay:160s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1601){-webkit-animation-delay:160.1s;animation-delay:160.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1602){-webkit-animation-delay:160.2s;animation-delay:160.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1603){-webkit-animation-delay:160.3s;animation-delay:160.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1604){-webkit-animation-delay:160.4s;animation-delay:160.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1605){-webkit-animation-delay:160.5s;animation-delay:160.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1606){-webkit-animation-delay:160.6s;animation-delay:160.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1607){-webkit-animation-delay:160.7s;animation-delay:160.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1608){-webkit-animation-delay:160.8s;animation-delay:160.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1609){-webkit-animation-delay:160.9s;animation-delay:160.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1610){-webkit-animation-delay:161s;animation-delay:161s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1611){-webkit-animation-delay:161.1s;animation-delay:161.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1612){-webkit-animation-delay:161.2s;animation-delay:161.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1613){-webkit-animation-delay:161.3s;animation-delay:161.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1614){-webkit-animation-delay:161.4s;animation-delay:161.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1615){-webkit-animation-delay:161.5s;animation-delay:161.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1616){-webkit-animation-delay:161.6s;animation-delay:161.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1617){-webkit-animation-delay:161.7s;animation-delay:161.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1618){-webkit-animation-delay:161.8s;animation-delay:161.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1619){-webkit-animation-delay:161.9s;animation-delay:161.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1620){-webkit-animation-delay:162s;animation-delay:162s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1621){-webkit-animation-delay:162.1s;animation-delay:162.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1622){-webkit-animation-delay:162.2s;animation-delay:162.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1623){-webkit-animation-delay:162.3s;animation-delay:162.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1624){-webkit-animation-delay:162.4s;animation-delay:162.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1625){-webkit-animation-delay:162.5s;animation-delay:162.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1626){-webkit-animation-delay:162.6s;animation-delay:162.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1627){-webkit-animation-delay:162.7s;animation-delay:162.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1628){-webkit-animation-delay:162.8s;animation-delay:162.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1629){-webkit-animation-delay:162.9s;animation-delay:162.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1630){-webkit-animation-delay:163s;animation-delay:163s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1631){-webkit-animation-delay:163.1s;animation-delay:163.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1632){-webkit-animation-delay:163.2s;animation-delay:163.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1633){-webkit-animation-delay:163.3s;animation-delay:163.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1634){-webkit-animation-delay:163.4s;animation-delay:163.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1635){-webkit-animation-delay:163.5s;animation-delay:163.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1636){-webkit-animation-delay:163.6s;animation-delay:163.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1637){-webkit-animation-delay:163.7s;animation-delay:163.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1638){-webkit-animation-delay:163.8s;animation-delay:163.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1639){-webkit-animation-delay:163.9s;animation-delay:163.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1640){-webkit-animation-delay:164s;animation-delay:164s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1641){-webkit-animation-delay:164.1s;animation-delay:164.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1642){-webkit-animation-delay:164.2s;animation-delay:164.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1643){-webkit-animation-delay:164.3s;animation-delay:164.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1644){-webkit-animation-delay:164.4s;animation-delay:164.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1645){-webkit-animation-delay:164.5s;animation-delay:164.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1646){-webkit-animation-delay:164.6s;animation-delay:164.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1647){-webkit-animation-delay:164.7s;animation-delay:164.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1648){-webkit-animation-delay:164.8s;animation-delay:164.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1649){-webkit-animation-delay:164.9s;animation-delay:164.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1650){-webkit-animation-delay:165s;animation-delay:165s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1651){-webkit-animation-delay:165.1s;animation-delay:165.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1652){-webkit-animation-delay:165.2s;animation-delay:165.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1653){-webkit-animation-delay:165.3s;animation-delay:165.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1654){-webkit-animation-delay:165.4s;animation-delay:165.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1655){-webkit-animation-delay:165.5s;animation-delay:165.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1656){-webkit-animation-delay:165.6s;animation-delay:165.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1657){-webkit-animation-delay:165.7s;animation-delay:165.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1658){-webkit-animation-delay:165.8s;animation-delay:165.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1659){-webkit-animation-delay:165.9s;animation-delay:165.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1660){-webkit-animation-delay:166s;animation-delay:166s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1661){-webkit-animation-delay:166.1s;animation-delay:166.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1662){-webkit-animation-delay:166.2s;animation-delay:166.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1663){-webkit-animation-delay:166.3s;animation-delay:166.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1664){-webkit-animation-delay:166.4s;animation-delay:166.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1665){-webkit-animation-delay:166.5s;animation-delay:166.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1666){-webkit-animation-delay:166.6s;animation-delay:166.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1667){-webkit-animation-delay:166.7s;animation-delay:166.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1668){-webkit-animation-delay:166.8s;animation-delay:166.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1669){-webkit-animation-delay:166.9s;animation-delay:166.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1670){-webkit-animation-delay:167s;animation-delay:167s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1671){-webkit-animation-delay:167.1s;animation-delay:167.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1672){-webkit-animation-delay:167.2s;animation-delay:167.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1673){-webkit-animation-delay:167.3s;animation-delay:167.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1674){-webkit-animation-delay:167.4s;animation-delay:167.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1675){-webkit-animation-delay:167.5s;animation-delay:167.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1676){-webkit-animation-delay:167.6s;animation-delay:167.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1677){-webkit-animation-delay:167.7s;animation-delay:167.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1678){-webkit-animation-delay:167.8s;animation-delay:167.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1679){-webkit-animation-delay:167.9s;animation-delay:167.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1680){-webkit-animation-delay:168s;animation-delay:168s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1681){-webkit-animation-delay:168.1s;animation-delay:168.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1682){-webkit-animation-delay:168.2s;animation-delay:168.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1683){-webkit-animation-delay:168.3s;animation-delay:168.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1684){-webkit-animation-delay:168.4s;animation-delay:168.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1685){-webkit-animation-delay:168.5s;animation-delay:168.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1686){-webkit-animation-delay:168.6s;animation-delay:168.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1687){-webkit-animation-delay:168.7s;animation-delay:168.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1688){-webkit-animation-delay:168.8s;animation-delay:168.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1689){-webkit-animation-delay:168.9s;animation-delay:168.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1690){-webkit-animation-delay:169s;animation-delay:169s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1691){-webkit-animation-delay:169.1s;animation-delay:169.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1692){-webkit-animation-delay:169.2s;animation-delay:169.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1693){-webkit-animation-delay:169.3s;animation-delay:169.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1694){-webkit-animation-delay:169.4s;animation-delay:169.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1695){-webkit-animation-delay:169.5s;animation-delay:169.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1696){-webkit-animation-delay:169.6s;animation-delay:169.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1697){-webkit-animation-delay:169.7s;animation-delay:169.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1698){-webkit-animation-delay:169.8s;animation-delay:169.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1699){-webkit-animation-delay:169.9s;animation-delay:169.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1700){-webkit-animation-delay:170s;animation-delay:170s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1701){-webkit-animation-delay:170.1s;animation-delay:170.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1702){-webkit-animation-delay:170.2s;animation-delay:170.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1703){-webkit-animation-delay:170.3s;animation-delay:170.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1704){-webkit-animation-delay:170.4s;animation-delay:170.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1705){-webkit-animation-delay:170.5s;animation-delay:170.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1706){-webkit-animation-delay:170.6s;animation-delay:170.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1707){-webkit-animation-delay:170.7s;animation-delay:170.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1708){-webkit-animation-delay:170.8s;animation-delay:170.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1709){-webkit-animation-delay:170.9s;animation-delay:170.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1710){-webkit-animation-delay:171s;animation-delay:171s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1711){-webkit-animation-delay:171.1s;animation-delay:171.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1712){-webkit-animation-delay:171.2s;animation-delay:171.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1713){-webkit-animation-delay:171.3s;animation-delay:171.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1714){-webkit-animation-delay:171.4s;animation-delay:171.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1715){-webkit-animation-delay:171.5s;animation-delay:171.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1716){-webkit-animation-delay:171.6s;animation-delay:171.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1717){-webkit-animation-delay:171.7s;animation-delay:171.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1718){-webkit-animation-delay:171.8s;animation-delay:171.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1719){-webkit-animation-delay:171.9s;animation-delay:171.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1720){-webkit-animation-delay:172s;animation-delay:172s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1721){-webkit-animation-delay:172.1s;animation-delay:172.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1722){-webkit-animation-delay:172.2s;animation-delay:172.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1723){-webkit-animation-delay:172.3s;animation-delay:172.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1724){-webkit-animation-delay:172.4s;animation-delay:172.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1725){-webkit-animation-delay:172.5s;animation-delay:172.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1726){-webkit-animation-delay:172.6s;animation-delay:172.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1727){-webkit-animation-delay:172.7s;animation-delay:172.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1728){-webkit-animation-delay:172.8s;animation-delay:172.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1729){-webkit-animation-delay:172.9s;animation-delay:172.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1730){-webkit-animation-delay:173s;animation-delay:173s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1731){-webkit-animation-delay:173.1s;animation-delay:173.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1732){-webkit-animation-delay:173.2s;animation-delay:173.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1733){-webkit-animation-delay:173.3s;animation-delay:173.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1734){-webkit-animation-delay:173.4s;animation-delay:173.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1735){-webkit-animation-delay:173.5s;animation-delay:173.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1736){-webkit-animation-delay:173.6s;animation-delay:173.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1737){-webkit-animation-delay:173.7s;animation-delay:173.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1738){-webkit-animation-delay:173.8s;animation-delay:173.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1739){-webkit-animation-delay:173.9s;animation-delay:173.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1740){-webkit-animation-delay:174s;animation-delay:174s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1741){-webkit-animation-delay:174.1s;animation-delay:174.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1742){-webkit-animation-delay:174.2s;animation-delay:174.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1743){-webkit-animation-delay:174.3s;animation-delay:174.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1744){-webkit-animation-delay:174.4s;animation-delay:174.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1745){-webkit-animation-delay:174.5s;animation-delay:174.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1746){-webkit-animation-delay:174.6s;animation-delay:174.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1747){-webkit-animation-delay:174.7s;animation-delay:174.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1748){-webkit-animation-delay:174.8s;animation-delay:174.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1749){-webkit-animation-delay:174.9s;animation-delay:174.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1750){-webkit-animation-delay:175s;animation-delay:175s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1751){-webkit-animation-delay:175.1s;animation-delay:175.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1752){-webkit-animation-delay:175.2s;animation-delay:175.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1753){-webkit-animation-delay:175.3s;animation-delay:175.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1754){-webkit-animation-delay:175.4s;animation-delay:175.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1755){-webkit-animation-delay:175.5s;animation-delay:175.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1756){-webkit-animation-delay:175.6s;animation-delay:175.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1757){-webkit-animation-delay:175.7s;animation-delay:175.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1758){-webkit-animation-delay:175.8s;animation-delay:175.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1759){-webkit-animation-delay:175.9s;animation-delay:175.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1760){-webkit-animation-delay:176s;animation-delay:176s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1761){-webkit-animation-delay:176.1s;animation-delay:176.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1762){-webkit-animation-delay:176.2s;animation-delay:176.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1763){-webkit-animation-delay:176.3s;animation-delay:176.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1764){-webkit-animation-delay:176.4s;animation-delay:176.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1765){-webkit-animation-delay:176.5s;animation-delay:176.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1766){-webkit-animation-delay:176.6s;animation-delay:176.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1767){-webkit-animation-delay:176.7s;animation-delay:176.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1768){-webkit-animation-delay:176.8s;animation-delay:176.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1769){-webkit-animation-delay:176.9s;animation-delay:176.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1770){-webkit-animation-delay:177s;animation-delay:177s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1771){-webkit-animation-delay:177.1s;animation-delay:177.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1772){-webkit-animation-delay:177.2s;animation-delay:177.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1773){-webkit-animation-delay:177.3s;animation-delay:177.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1774){-webkit-animation-delay:177.4s;animation-delay:177.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1775){-webkit-animation-delay:177.5s;animation-delay:177.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1776){-webkit-animation-delay:177.6s;animation-delay:177.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1777){-webkit-animation-delay:177.7s;animation-delay:177.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1778){-webkit-animation-delay:177.8s;animation-delay:177.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1779){-webkit-animation-delay:177.9s;animation-delay:177.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1780){-webkit-animation-delay:178s;animation-delay:178s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1781){-webkit-animation-delay:178.1s;animation-delay:178.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1782){-webkit-animation-delay:178.2s;animation-delay:178.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1783){-webkit-animation-delay:178.3s;animation-delay:178.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1784){-webkit-animation-delay:178.4s;animation-delay:178.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1785){-webkit-animation-delay:178.5s;animation-delay:178.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1786){-webkit-animation-delay:178.6s;animation-delay:178.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1787){-webkit-animation-delay:178.7s;animation-delay:178.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1788){-webkit-animation-delay:178.8s;animation-delay:178.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1789){-webkit-animation-delay:178.9s;animation-delay:178.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1790){-webkit-animation-delay:179s;animation-delay:179s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1791){-webkit-animation-delay:179.1s;animation-delay:179.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1792){-webkit-animation-delay:179.2s;animation-delay:179.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1793){-webkit-animation-delay:179.3s;animation-delay:179.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1794){-webkit-animation-delay:179.4s;animation-delay:179.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1795){-webkit-animation-delay:179.5s;animation-delay:179.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1796){-webkit-animation-delay:179.6s;animation-delay:179.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1797){-webkit-animation-delay:179.7s;animation-delay:179.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1798){-webkit-animation-delay:179.8s;animation-delay:179.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1799){-webkit-animation-delay:179.9s;animation-delay:179.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1800){-webkit-animation-delay:180s;animation-delay:180s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1801){-webkit-animation-delay:180.1s;animation-delay:180.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1802){-webkit-animation-delay:180.2s;animation-delay:180.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1803){-webkit-animation-delay:180.3s;animation-delay:180.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1804){-webkit-animation-delay:180.4s;animation-delay:180.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1805){-webkit-animation-delay:180.5s;animation-delay:180.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1806){-webkit-animation-delay:180.6s;animation-delay:180.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1807){-webkit-animation-delay:180.7s;animation-delay:180.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1808){-webkit-animation-delay:180.8s;animation-delay:180.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1809){-webkit-animation-delay:180.9s;animation-delay:180.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1810){-webkit-animation-delay:181s;animation-delay:181s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1811){-webkit-animation-delay:181.1s;animation-delay:181.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1812){-webkit-animation-delay:181.2s;animation-delay:181.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1813){-webkit-animation-delay:181.3s;animation-delay:181.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1814){-webkit-animation-delay:181.4s;animation-delay:181.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1815){-webkit-animation-delay:181.5s;animation-delay:181.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1816){-webkit-animation-delay:181.6s;animation-delay:181.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1817){-webkit-animation-delay:181.7s;animation-delay:181.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1818){-webkit-animation-delay:181.8s;animation-delay:181.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1819){-webkit-animation-delay:181.9s;animation-delay:181.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1820){-webkit-animation-delay:182s;animation-delay:182s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1821){-webkit-animation-delay:182.1s;animation-delay:182.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1822){-webkit-animation-delay:182.2s;animation-delay:182.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1823){-webkit-animation-delay:182.3s;animation-delay:182.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1824){-webkit-animation-delay:182.4s;animation-delay:182.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1825){-webkit-animation-delay:182.5s;animation-delay:182.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1826){-webkit-animation-delay:182.6s;animation-delay:182.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1827){-webkit-animation-delay:182.7s;animation-delay:182.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1828){-webkit-animation-delay:182.8s;animation-delay:182.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1829){-webkit-animation-delay:182.9s;animation-delay:182.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1830){-webkit-animation-delay:183s;animation-delay:183s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1831){-webkit-animation-delay:183.1s;animation-delay:183.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1832){-webkit-animation-delay:183.2s;animation-delay:183.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1833){-webkit-animation-delay:183.3s;animation-delay:183.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1834){-webkit-animation-delay:183.4s;animation-delay:183.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1835){-webkit-animation-delay:183.5s;animation-delay:183.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1836){-webkit-animation-delay:183.6s;animation-delay:183.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1837){-webkit-animation-delay:183.7s;animation-delay:183.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1838){-webkit-animation-delay:183.8s;animation-delay:183.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1839){-webkit-animation-delay:183.9s;animation-delay:183.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1840){-webkit-animation-delay:184s;animation-delay:184s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1841){-webkit-animation-delay:184.1s;animation-delay:184.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1842){-webkit-animation-delay:184.2s;animation-delay:184.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1843){-webkit-animation-delay:184.3s;animation-delay:184.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1844){-webkit-animation-delay:184.4s;animation-delay:184.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1845){-webkit-animation-delay:184.5s;animation-delay:184.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1846){-webkit-animation-delay:184.6s;animation-delay:184.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1847){-webkit-animation-delay:184.7s;animation-delay:184.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1848){-webkit-animation-delay:184.8s;animation-delay:184.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1849){-webkit-animation-delay:184.9s;animation-delay:184.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1850){-webkit-animation-delay:185s;animation-delay:185s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1851){-webkit-animation-delay:185.1s;animation-delay:185.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1852){-webkit-animation-delay:185.2s;animation-delay:185.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1853){-webkit-animation-delay:185.3s;animation-delay:185.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1854){-webkit-animation-delay:185.4s;animation-delay:185.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1855){-webkit-animation-delay:185.5s;animation-delay:185.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1856){-webkit-animation-delay:185.6s;animation-delay:185.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1857){-webkit-animation-delay:185.7s;animation-delay:185.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1858){-webkit-animation-delay:185.8s;animation-delay:185.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1859){-webkit-animation-delay:185.9s;animation-delay:185.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1860){-webkit-animation-delay:186s;animation-delay:186s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1861){-webkit-animation-delay:186.1s;animation-delay:186.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1862){-webkit-animation-delay:186.2s;animation-delay:186.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1863){-webkit-animation-delay:186.3s;animation-delay:186.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1864){-webkit-animation-delay:186.4s;animation-delay:186.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1865){-webkit-animation-delay:186.5s;animation-delay:186.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1866){-webkit-animation-delay:186.6s;animation-delay:186.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1867){-webkit-animation-delay:186.7s;animation-delay:186.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1868){-webkit-animation-delay:186.8s;animation-delay:186.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1869){-webkit-animation-delay:186.9s;animation-delay:186.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1870){-webkit-animation-delay:187s;animation-delay:187s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1871){-webkit-animation-delay:187.1s;animation-delay:187.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1872){-webkit-animation-delay:187.2s;animation-delay:187.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1873){-webkit-animation-delay:187.3s;animation-delay:187.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1874){-webkit-animation-delay:187.4s;animation-delay:187.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1875){-webkit-animation-delay:187.5s;animation-delay:187.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1876){-webkit-animation-delay:187.6s;animation-delay:187.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1877){-webkit-animation-delay:187.7s;animation-delay:187.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1878){-webkit-animation-delay:187.8s;animation-delay:187.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1879){-webkit-animation-delay:187.9s;animation-delay:187.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1880){-webkit-animation-delay:188s;animation-delay:188s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1881){-webkit-animation-delay:188.1s;animation-delay:188.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1882){-webkit-animation-delay:188.2s;animation-delay:188.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1883){-webkit-animation-delay:188.3s;animation-delay:188.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1884){-webkit-animation-delay:188.4s;animation-delay:188.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1885){-webkit-animation-delay:188.5s;animation-delay:188.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1886){-webkit-animation-delay:188.6s;animation-delay:188.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1887){-webkit-animation-delay:188.7s;animation-delay:188.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1888){-webkit-animation-delay:188.8s;animation-delay:188.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1889){-webkit-animation-delay:188.9s;animation-delay:188.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1890){-webkit-animation-delay:189s;animation-delay:189s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1891){-webkit-animation-delay:189.1s;animation-delay:189.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1892){-webkit-animation-delay:189.2s;animation-delay:189.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1893){-webkit-animation-delay:189.3s;animation-delay:189.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1894){-webkit-animation-delay:189.4s;animation-delay:189.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1895){-webkit-animation-delay:189.5s;animation-delay:189.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1896){-webkit-animation-delay:189.6s;animation-delay:189.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1897){-webkit-animation-delay:189.7s;animation-delay:189.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1898){-webkit-animation-delay:189.8s;animation-delay:189.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1899){-webkit-animation-delay:189.9s;animation-delay:189.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1900){-webkit-animation-delay:190s;animation-delay:190s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1901){-webkit-animation-delay:190.1s;animation-delay:190.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1902){-webkit-animation-delay:190.2s;animation-delay:190.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1903){-webkit-animation-delay:190.3s;animation-delay:190.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1904){-webkit-animation-delay:190.4s;animation-delay:190.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1905){-webkit-animation-delay:190.5s;animation-delay:190.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1906){-webkit-animation-delay:190.6s;animation-delay:190.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1907){-webkit-animation-delay:190.7s;animation-delay:190.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1908){-webkit-animation-delay:190.8s;animation-delay:190.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1909){-webkit-animation-delay:190.9s;animation-delay:190.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1910){-webkit-animation-delay:191s;animation-delay:191s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1911){-webkit-animation-delay:191.1s;animation-delay:191.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1912){-webkit-animation-delay:191.2s;animation-delay:191.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1913){-webkit-animation-delay:191.3s;animation-delay:191.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1914){-webkit-animation-delay:191.4s;animation-delay:191.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1915){-webkit-animation-delay:191.5s;animation-delay:191.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1916){-webkit-animation-delay:191.6s;animation-delay:191.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1917){-webkit-animation-delay:191.7s;animation-delay:191.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1918){-webkit-animation-delay:191.8s;animation-delay:191.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1919){-webkit-animation-delay:191.9s;animation-delay:191.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1920){-webkit-animation-delay:192s;animation-delay:192s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1921){-webkit-animation-delay:192.1s;animation-delay:192.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1922){-webkit-animation-delay:192.2s;animation-delay:192.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1923){-webkit-animation-delay:192.3s;animation-delay:192.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1924){-webkit-animation-delay:192.4s;animation-delay:192.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1925){-webkit-animation-delay:192.5s;animation-delay:192.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1926){-webkit-animation-delay:192.6s;animation-delay:192.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1927){-webkit-animation-delay:192.7s;animation-delay:192.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1928){-webkit-animation-delay:192.8s;animation-delay:192.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1929){-webkit-animation-delay:192.9s;animation-delay:192.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1930){-webkit-animation-delay:193s;animation-delay:193s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1931){-webkit-animation-delay:193.1s;animation-delay:193.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1932){-webkit-animation-delay:193.2s;animation-delay:193.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1933){-webkit-animation-delay:193.3s;animation-delay:193.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1934){-webkit-animation-delay:193.4s;animation-delay:193.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1935){-webkit-animation-delay:193.5s;animation-delay:193.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1936){-webkit-animation-delay:193.6s;animation-delay:193.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1937){-webkit-animation-delay:193.7s;animation-delay:193.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1938){-webkit-animation-delay:193.8s;animation-delay:193.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1939){-webkit-animation-delay:193.9s;animation-delay:193.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1940){-webkit-animation-delay:194s;animation-delay:194s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1941){-webkit-animation-delay:194.1s;animation-delay:194.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1942){-webkit-animation-delay:194.2s;animation-delay:194.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1943){-webkit-animation-delay:194.3s;animation-delay:194.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1944){-webkit-animation-delay:194.4s;animation-delay:194.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1945){-webkit-animation-delay:194.5s;animation-delay:194.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1946){-webkit-animation-delay:194.6s;animation-delay:194.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1947){-webkit-animation-delay:194.7s;animation-delay:194.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1948){-webkit-animation-delay:194.8s;animation-delay:194.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1949){-webkit-animation-delay:194.9s;animation-delay:194.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1950){-webkit-animation-delay:195s;animation-delay:195s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1951){-webkit-animation-delay:195.1s;animation-delay:195.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1952){-webkit-animation-delay:195.2s;animation-delay:195.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1953){-webkit-animation-delay:195.3s;animation-delay:195.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1954){-webkit-animation-delay:195.4s;animation-delay:195.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1955){-webkit-animation-delay:195.5s;animation-delay:195.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1956){-webkit-animation-delay:195.6s;animation-delay:195.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1957){-webkit-animation-delay:195.7s;animation-delay:195.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1958){-webkit-animation-delay:195.8s;animation-delay:195.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1959){-webkit-animation-delay:195.9s;animation-delay:195.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1960){-webkit-animation-delay:196s;animation-delay:196s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1961){-webkit-animation-delay:196.1s;animation-delay:196.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1962){-webkit-animation-delay:196.2s;animation-delay:196.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1963){-webkit-animation-delay:196.3s;animation-delay:196.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1964){-webkit-animation-delay:196.4s;animation-delay:196.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1965){-webkit-animation-delay:196.5s;animation-delay:196.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1966){-webkit-animation-delay:196.6s;animation-delay:196.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1967){-webkit-animation-delay:196.7s;animation-delay:196.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1968){-webkit-animation-delay:196.8s;animation-delay:196.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1969){-webkit-animation-delay:196.9s;animation-delay:196.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1970){-webkit-animation-delay:197s;animation-delay:197s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1971){-webkit-animation-delay:197.1s;animation-delay:197.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1972){-webkit-animation-delay:197.2s;animation-delay:197.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1973){-webkit-animation-delay:197.3s;animation-delay:197.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1974){-webkit-animation-delay:197.4s;animation-delay:197.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1975){-webkit-animation-delay:197.5s;animation-delay:197.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1976){-webkit-animation-delay:197.6s;animation-delay:197.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1977){-webkit-animation-delay:197.7s;animation-delay:197.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1978){-webkit-animation-delay:197.8s;animation-delay:197.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1979){-webkit-animation-delay:197.9s;animation-delay:197.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1980){-webkit-animation-delay:198s;animation-delay:198s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1981){-webkit-animation-delay:198.1s;animation-delay:198.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1982){-webkit-animation-delay:198.2s;animation-delay:198.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1983){-webkit-animation-delay:198.3s;animation-delay:198.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1984){-webkit-animation-delay:198.4s;animation-delay:198.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1985){-webkit-animation-delay:198.5s;animation-delay:198.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1986){-webkit-animation-delay:198.6s;animation-delay:198.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1987){-webkit-animation-delay:198.7s;animation-delay:198.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1988){-webkit-animation-delay:198.8s;animation-delay:198.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1989){-webkit-animation-delay:198.9s;animation-delay:198.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1990){-webkit-animation-delay:199s;animation-delay:199s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1991){-webkit-animation-delay:199.1s;animation-delay:199.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1992){-webkit-animation-delay:199.2s;animation-delay:199.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1993){-webkit-animation-delay:199.3s;animation-delay:199.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1994){-webkit-animation-delay:199.4s;animation-delay:199.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1995){-webkit-animation-delay:199.5s;animation-delay:199.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1996){-webkit-animation-delay:199.6s;animation-delay:199.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1997){-webkit-animation-delay:199.7s;animation-delay:199.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1998){-webkit-animation-delay:199.8s;animation-delay:199.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(1999){-webkit-animation-delay:199.9s;animation-delay:199.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2000){-webkit-animation-delay:200s;animation-delay:200s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2001){-webkit-animation-delay:200.1s;animation-delay:200.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2002){-webkit-animation-delay:200.2s;animation-delay:200.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2003){-webkit-animation-delay:200.3s;animation-delay:200.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2004){-webkit-animation-delay:200.4s;animation-delay:200.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2005){-webkit-animation-delay:200.5s;animation-delay:200.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2006){-webkit-animation-delay:200.6s;animation-delay:200.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2007){-webkit-animation-delay:200.7s;animation-delay:200.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2008){-webkit-animation-delay:200.8s;animation-delay:200.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2009){-webkit-animation-delay:200.9s;animation-delay:200.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2010){-webkit-animation-delay:201s;animation-delay:201s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2011){-webkit-animation-delay:201.1s;animation-delay:201.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2012){-webkit-animation-delay:201.2s;animation-delay:201.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2013){-webkit-animation-delay:201.3s;animation-delay:201.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2014){-webkit-animation-delay:201.4s;animation-delay:201.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2015){-webkit-animation-delay:201.5s;animation-delay:201.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2016){-webkit-animation-delay:201.6s;animation-delay:201.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2017){-webkit-animation-delay:201.7s;animation-delay:201.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2018){-webkit-animation-delay:201.8s;animation-delay:201.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2019){-webkit-animation-delay:201.9s;animation-delay:201.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2020){-webkit-animation-delay:202s;animation-delay:202s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2021){-webkit-animation-delay:202.1s;animation-delay:202.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2022){-webkit-animation-delay:202.2s;animation-delay:202.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2023){-webkit-animation-delay:202.3s;animation-delay:202.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2024){-webkit-animation-delay:202.4s;animation-delay:202.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2025){-webkit-animation-delay:202.5s;animation-delay:202.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2026){-webkit-animation-delay:202.6s;animation-delay:202.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2027){-webkit-animation-delay:202.7s;animation-delay:202.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2028){-webkit-animation-delay:202.8s;animation-delay:202.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2029){-webkit-animation-delay:202.9s;animation-delay:202.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2030){-webkit-animation-delay:203s;animation-delay:203s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2031){-webkit-animation-delay:203.1s;animation-delay:203.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2032){-webkit-animation-delay:203.2s;animation-delay:203.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2033){-webkit-animation-delay:203.3s;animation-delay:203.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2034){-webkit-animation-delay:203.4s;animation-delay:203.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2035){-webkit-animation-delay:203.5s;animation-delay:203.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2036){-webkit-animation-delay:203.6s;animation-delay:203.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2037){-webkit-animation-delay:203.7s;animation-delay:203.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2038){-webkit-animation-delay:203.8s;animation-delay:203.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2039){-webkit-animation-delay:203.9s;animation-delay:203.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2040){-webkit-animation-delay:204s;animation-delay:204s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2041){-webkit-animation-delay:204.1s;animation-delay:204.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2042){-webkit-animation-delay:204.2s;animation-delay:204.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2043){-webkit-animation-delay:204.3s;animation-delay:204.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2044){-webkit-animation-delay:204.4s;animation-delay:204.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2045){-webkit-animation-delay:204.5s;animation-delay:204.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2046){-webkit-animation-delay:204.6s;animation-delay:204.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2047){-webkit-animation-delay:204.7s;animation-delay:204.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2048){-webkit-animation-delay:204.8s;animation-delay:204.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2049){-webkit-animation-delay:204.9s;animation-delay:204.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2050){-webkit-animation-delay:205s;animation-delay:205s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2051){-webkit-animation-delay:205.1s;animation-delay:205.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2052){-webkit-animation-delay:205.2s;animation-delay:205.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2053){-webkit-animation-delay:205.3s;animation-delay:205.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2054){-webkit-animation-delay:205.4s;animation-delay:205.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2055){-webkit-animation-delay:205.5s;animation-delay:205.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2056){-webkit-animation-delay:205.6s;animation-delay:205.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2057){-webkit-animation-delay:205.7s;animation-delay:205.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2058){-webkit-animation-delay:205.8s;animation-delay:205.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2059){-webkit-animation-delay:205.9s;animation-delay:205.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2060){-webkit-animation-delay:206s;animation-delay:206s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2061){-webkit-animation-delay:206.1s;animation-delay:206.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2062){-webkit-animation-delay:206.2s;animation-delay:206.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2063){-webkit-animation-delay:206.3s;animation-delay:206.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2064){-webkit-animation-delay:206.4s;animation-delay:206.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2065){-webkit-animation-delay:206.5s;animation-delay:206.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2066){-webkit-animation-delay:206.6s;animation-delay:206.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2067){-webkit-animation-delay:206.7s;animation-delay:206.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2068){-webkit-animation-delay:206.8s;animation-delay:206.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2069){-webkit-animation-delay:206.9s;animation-delay:206.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2070){-webkit-animation-delay:207s;animation-delay:207s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2071){-webkit-animation-delay:207.1s;animation-delay:207.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2072){-webkit-animation-delay:207.2s;animation-delay:207.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2073){-webkit-animation-delay:207.3s;animation-delay:207.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2074){-webkit-animation-delay:207.4s;animation-delay:207.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2075){-webkit-animation-delay:207.5s;animation-delay:207.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2076){-webkit-animation-delay:207.6s;animation-delay:207.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2077){-webkit-animation-delay:207.7s;animation-delay:207.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2078){-webkit-animation-delay:207.8s;animation-delay:207.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2079){-webkit-animation-delay:207.9s;animation-delay:207.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2080){-webkit-animation-delay:208s;animation-delay:208s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2081){-webkit-animation-delay:208.1s;animation-delay:208.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2082){-webkit-animation-delay:208.2s;animation-delay:208.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2083){-webkit-animation-delay:208.3s;animation-delay:208.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2084){-webkit-animation-delay:208.4s;animation-delay:208.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2085){-webkit-animation-delay:208.5s;animation-delay:208.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2086){-webkit-animation-delay:208.6s;animation-delay:208.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2087){-webkit-animation-delay:208.7s;animation-delay:208.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2088){-webkit-animation-delay:208.8s;animation-delay:208.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2089){-webkit-animation-delay:208.9s;animation-delay:208.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2090){-webkit-animation-delay:209s;animation-delay:209s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2091){-webkit-animation-delay:209.1s;animation-delay:209.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2092){-webkit-animation-delay:209.2s;animation-delay:209.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2093){-webkit-animation-delay:209.3s;animation-delay:209.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2094){-webkit-animation-delay:209.4s;animation-delay:209.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2095){-webkit-animation-delay:209.5s;animation-delay:209.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2096){-webkit-animation-delay:209.6s;animation-delay:209.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2097){-webkit-animation-delay:209.7s;animation-delay:209.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2098){-webkit-animation-delay:209.8s;animation-delay:209.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2099){-webkit-animation-delay:209.9s;animation-delay:209.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2100){-webkit-animation-delay:210s;animation-delay:210s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2101){-webkit-animation-delay:210.1s;animation-delay:210.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2102){-webkit-animation-delay:210.2s;animation-delay:210.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2103){-webkit-animation-delay:210.3s;animation-delay:210.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2104){-webkit-animation-delay:210.4s;animation-delay:210.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2105){-webkit-animation-delay:210.5s;animation-delay:210.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2106){-webkit-animation-delay:210.6s;animation-delay:210.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2107){-webkit-animation-delay:210.7s;animation-delay:210.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2108){-webkit-animation-delay:210.8s;animation-delay:210.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2109){-webkit-animation-delay:210.9s;animation-delay:210.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2110){-webkit-animation-delay:211s;animation-delay:211s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2111){-webkit-animation-delay:211.1s;animation-delay:211.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2112){-webkit-animation-delay:211.2s;animation-delay:211.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2113){-webkit-animation-delay:211.3s;animation-delay:211.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2114){-webkit-animation-delay:211.4s;animation-delay:211.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2115){-webkit-animation-delay:211.5s;animation-delay:211.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2116){-webkit-animation-delay:211.6s;animation-delay:211.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2117){-webkit-animation-delay:211.7s;animation-delay:211.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2118){-webkit-animation-delay:211.8s;animation-delay:211.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2119){-webkit-animation-delay:211.9s;animation-delay:211.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2120){-webkit-animation-delay:212s;animation-delay:212s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2121){-webkit-animation-delay:212.1s;animation-delay:212.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2122){-webkit-animation-delay:212.2s;animation-delay:212.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2123){-webkit-animation-delay:212.3s;animation-delay:212.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2124){-webkit-animation-delay:212.4s;animation-delay:212.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2125){-webkit-animation-delay:212.5s;animation-delay:212.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2126){-webkit-animation-delay:212.6s;animation-delay:212.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2127){-webkit-animation-delay:212.7s;animation-delay:212.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2128){-webkit-animation-delay:212.8s;animation-delay:212.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2129){-webkit-animation-delay:212.9s;animation-delay:212.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2130){-webkit-animation-delay:213s;animation-delay:213s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2131){-webkit-animation-delay:213.1s;animation-delay:213.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2132){-webkit-animation-delay:213.2s;animation-delay:213.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2133){-webkit-animation-delay:213.3s;animation-delay:213.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2134){-webkit-animation-delay:213.4s;animation-delay:213.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2135){-webkit-animation-delay:213.5s;animation-delay:213.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2136){-webkit-animation-delay:213.6s;animation-delay:213.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2137){-webkit-animation-delay:213.7s;animation-delay:213.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2138){-webkit-animation-delay:213.8s;animation-delay:213.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2139){-webkit-animation-delay:213.9s;animation-delay:213.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2140){-webkit-animation-delay:214s;animation-delay:214s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2141){-webkit-animation-delay:214.1s;animation-delay:214.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2142){-webkit-animation-delay:214.2s;animation-delay:214.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2143){-webkit-animation-delay:214.3s;animation-delay:214.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2144){-webkit-animation-delay:214.4s;animation-delay:214.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2145){-webkit-animation-delay:214.5s;animation-delay:214.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2146){-webkit-animation-delay:214.6s;animation-delay:214.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2147){-webkit-animation-delay:214.7s;animation-delay:214.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2148){-webkit-animation-delay:214.8s;animation-delay:214.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2149){-webkit-animation-delay:214.9s;animation-delay:214.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2150){-webkit-animation-delay:215s;animation-delay:215s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2151){-webkit-animation-delay:215.1s;animation-delay:215.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2152){-webkit-animation-delay:215.2s;animation-delay:215.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2153){-webkit-animation-delay:215.3s;animation-delay:215.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2154){-webkit-animation-delay:215.4s;animation-delay:215.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2155){-webkit-animation-delay:215.5s;animation-delay:215.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2156){-webkit-animation-delay:215.6s;animation-delay:215.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2157){-webkit-animation-delay:215.7s;animation-delay:215.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2158){-webkit-animation-delay:215.8s;animation-delay:215.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2159){-webkit-animation-delay:215.9s;animation-delay:215.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2160){-webkit-animation-delay:216s;animation-delay:216s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2161){-webkit-animation-delay:216.1s;animation-delay:216.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2162){-webkit-animation-delay:216.2s;animation-delay:216.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2163){-webkit-animation-delay:216.3s;animation-delay:216.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2164){-webkit-animation-delay:216.4s;animation-delay:216.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2165){-webkit-animation-delay:216.5s;animation-delay:216.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2166){-webkit-animation-delay:216.6s;animation-delay:216.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2167){-webkit-animation-delay:216.7s;animation-delay:216.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2168){-webkit-animation-delay:216.8s;animation-delay:216.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2169){-webkit-animation-delay:216.9s;animation-delay:216.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2170){-webkit-animation-delay:217s;animation-delay:217s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2171){-webkit-animation-delay:217.1s;animation-delay:217.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2172){-webkit-animation-delay:217.2s;animation-delay:217.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2173){-webkit-animation-delay:217.3s;animation-delay:217.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2174){-webkit-animation-delay:217.4s;animation-delay:217.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2175){-webkit-animation-delay:217.5s;animation-delay:217.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2176){-webkit-animation-delay:217.6s;animation-delay:217.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2177){-webkit-animation-delay:217.7s;animation-delay:217.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2178){-webkit-animation-delay:217.8s;animation-delay:217.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2179){-webkit-animation-delay:217.9s;animation-delay:217.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2180){-webkit-animation-delay:218s;animation-delay:218s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2181){-webkit-animation-delay:218.1s;animation-delay:218.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2182){-webkit-animation-delay:218.2s;animation-delay:218.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2183){-webkit-animation-delay:218.3s;animation-delay:218.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2184){-webkit-animation-delay:218.4s;animation-delay:218.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2185){-webkit-animation-delay:218.5s;animation-delay:218.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2186){-webkit-animation-delay:218.6s;animation-delay:218.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2187){-webkit-animation-delay:218.7s;animation-delay:218.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2188){-webkit-animation-delay:218.8s;animation-delay:218.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2189){-webkit-animation-delay:218.9s;animation-delay:218.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2190){-webkit-animation-delay:219s;animation-delay:219s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2191){-webkit-animation-delay:219.1s;animation-delay:219.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2192){-webkit-animation-delay:219.2s;animation-delay:219.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2193){-webkit-animation-delay:219.3s;animation-delay:219.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2194){-webkit-animation-delay:219.4s;animation-delay:219.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2195){-webkit-animation-delay:219.5s;animation-delay:219.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2196){-webkit-animation-delay:219.6s;animation-delay:219.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2197){-webkit-animation-delay:219.7s;animation-delay:219.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2198){-webkit-animation-delay:219.8s;animation-delay:219.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2199){-webkit-animation-delay:219.9s;animation-delay:219.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2200){-webkit-animation-delay:220s;animation-delay:220s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2201){-webkit-animation-delay:220.1s;animation-delay:220.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2202){-webkit-animation-delay:220.2s;animation-delay:220.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2203){-webkit-animation-delay:220.3s;animation-delay:220.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2204){-webkit-animation-delay:220.4s;animation-delay:220.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2205){-webkit-animation-delay:220.5s;animation-delay:220.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2206){-webkit-animation-delay:220.6s;animation-delay:220.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2207){-webkit-animation-delay:220.7s;animation-delay:220.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2208){-webkit-animation-delay:220.8s;animation-delay:220.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2209){-webkit-animation-delay:220.9s;animation-delay:220.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2210){-webkit-animation-delay:221s;animation-delay:221s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2211){-webkit-animation-delay:221.1s;animation-delay:221.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2212){-webkit-animation-delay:221.2s;animation-delay:221.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2213){-webkit-animation-delay:221.3s;animation-delay:221.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2214){-webkit-animation-delay:221.4s;animation-delay:221.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2215){-webkit-animation-delay:221.5s;animation-delay:221.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2216){-webkit-animation-delay:221.6s;animation-delay:221.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2217){-webkit-animation-delay:221.7s;animation-delay:221.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2218){-webkit-animation-delay:221.8s;animation-delay:221.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2219){-webkit-animation-delay:221.9s;animation-delay:221.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2220){-webkit-animation-delay:222s;animation-delay:222s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2221){-webkit-animation-delay:222.1s;animation-delay:222.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2222){-webkit-animation-delay:222.2s;animation-delay:222.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2223){-webkit-animation-delay:222.3s;animation-delay:222.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2224){-webkit-animation-delay:222.4s;animation-delay:222.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2225){-webkit-animation-delay:222.5s;animation-delay:222.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2226){-webkit-animation-delay:222.6s;animation-delay:222.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2227){-webkit-animation-delay:222.7s;animation-delay:222.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2228){-webkit-animation-delay:222.8s;animation-delay:222.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2229){-webkit-animation-delay:222.9s;animation-delay:222.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2230){-webkit-animation-delay:223s;animation-delay:223s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2231){-webkit-animation-delay:223.1s;animation-delay:223.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2232){-webkit-animation-delay:223.2s;animation-delay:223.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2233){-webkit-animation-delay:223.3s;animation-delay:223.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2234){-webkit-animation-delay:223.4s;animation-delay:223.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2235){-webkit-animation-delay:223.5s;animation-delay:223.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2236){-webkit-animation-delay:223.6s;animation-delay:223.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2237){-webkit-animation-delay:223.7s;animation-delay:223.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2238){-webkit-animation-delay:223.8s;animation-delay:223.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2239){-webkit-animation-delay:223.9s;animation-delay:223.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2240){-webkit-animation-delay:224s;animation-delay:224s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2241){-webkit-animation-delay:224.1s;animation-delay:224.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2242){-webkit-animation-delay:224.2s;animation-delay:224.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2243){-webkit-animation-delay:224.3s;animation-delay:224.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2244){-webkit-animation-delay:224.4s;animation-delay:224.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2245){-webkit-animation-delay:224.5s;animation-delay:224.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2246){-webkit-animation-delay:224.6s;animation-delay:224.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2247){-webkit-animation-delay:224.7s;animation-delay:224.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2248){-webkit-animation-delay:224.8s;animation-delay:224.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2249){-webkit-animation-delay:224.9s;animation-delay:224.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2250){-webkit-animation-delay:225s;animation-delay:225s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2251){-webkit-animation-delay:225.1s;animation-delay:225.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2252){-webkit-animation-delay:225.2s;animation-delay:225.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2253){-webkit-animation-delay:225.3s;animation-delay:225.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2254){-webkit-animation-delay:225.4s;animation-delay:225.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2255){-webkit-animation-delay:225.5s;animation-delay:225.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2256){-webkit-animation-delay:225.6s;animation-delay:225.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2257){-webkit-animation-delay:225.7s;animation-delay:225.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2258){-webkit-animation-delay:225.8s;animation-delay:225.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2259){-webkit-animation-delay:225.9s;animation-delay:225.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2260){-webkit-animation-delay:226s;animation-delay:226s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2261){-webkit-animation-delay:226.1s;animation-delay:226.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2262){-webkit-animation-delay:226.2s;animation-delay:226.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2263){-webkit-animation-delay:226.3s;animation-delay:226.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2264){-webkit-animation-delay:226.4s;animation-delay:226.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2265){-webkit-animation-delay:226.5s;animation-delay:226.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2266){-webkit-animation-delay:226.6s;animation-delay:226.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2267){-webkit-animation-delay:226.7s;animation-delay:226.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2268){-webkit-animation-delay:226.8s;animation-delay:226.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2269){-webkit-animation-delay:226.9s;animation-delay:226.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2270){-webkit-animation-delay:227s;animation-delay:227s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2271){-webkit-animation-delay:227.1s;animation-delay:227.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2272){-webkit-animation-delay:227.2s;animation-delay:227.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2273){-webkit-animation-delay:227.3s;animation-delay:227.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2274){-webkit-animation-delay:227.4s;animation-delay:227.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2275){-webkit-animation-delay:227.5s;animation-delay:227.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2276){-webkit-animation-delay:227.6s;animation-delay:227.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2277){-webkit-animation-delay:227.7s;animation-delay:227.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2278){-webkit-animation-delay:227.8s;animation-delay:227.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2279){-webkit-animation-delay:227.9s;animation-delay:227.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2280){-webkit-animation-delay:228s;animation-delay:228s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2281){-webkit-animation-delay:228.1s;animation-delay:228.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2282){-webkit-animation-delay:228.2s;animation-delay:228.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2283){-webkit-animation-delay:228.3s;animation-delay:228.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2284){-webkit-animation-delay:228.4s;animation-delay:228.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2285){-webkit-animation-delay:228.5s;animation-delay:228.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2286){-webkit-animation-delay:228.6s;animation-delay:228.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2287){-webkit-animation-delay:228.7s;animation-delay:228.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2288){-webkit-animation-delay:228.8s;animation-delay:228.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2289){-webkit-animation-delay:228.9s;animation-delay:228.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2290){-webkit-animation-delay:229s;animation-delay:229s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2291){-webkit-animation-delay:229.1s;animation-delay:229.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2292){-webkit-animation-delay:229.2s;animation-delay:229.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2293){-webkit-animation-delay:229.3s;animation-delay:229.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2294){-webkit-animation-delay:229.4s;animation-delay:229.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2295){-webkit-animation-delay:229.5s;animation-delay:229.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2296){-webkit-animation-delay:229.6s;animation-delay:229.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2297){-webkit-animation-delay:229.7s;animation-delay:229.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2298){-webkit-animation-delay:229.8s;animation-delay:229.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2299){-webkit-animation-delay:229.9s;animation-delay:229.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2300){-webkit-animation-delay:230s;animation-delay:230s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2301){-webkit-animation-delay:230.1s;animation-delay:230.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2302){-webkit-animation-delay:230.2s;animation-delay:230.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2303){-webkit-animation-delay:230.3s;animation-delay:230.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2304){-webkit-animation-delay:230.4s;animation-delay:230.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2305){-webkit-animation-delay:230.5s;animation-delay:230.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2306){-webkit-animation-delay:230.6s;animation-delay:230.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2307){-webkit-animation-delay:230.7s;animation-delay:230.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2308){-webkit-animation-delay:230.8s;animation-delay:230.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2309){-webkit-animation-delay:230.9s;animation-delay:230.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2310){-webkit-animation-delay:231s;animation-delay:231s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2311){-webkit-animation-delay:231.1s;animation-delay:231.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2312){-webkit-animation-delay:231.2s;animation-delay:231.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2313){-webkit-animation-delay:231.3s;animation-delay:231.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2314){-webkit-animation-delay:231.4s;animation-delay:231.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2315){-webkit-animation-delay:231.5s;animation-delay:231.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2316){-webkit-animation-delay:231.6s;animation-delay:231.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2317){-webkit-animation-delay:231.7s;animation-delay:231.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2318){-webkit-animation-delay:231.8s;animation-delay:231.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2319){-webkit-animation-delay:231.9s;animation-delay:231.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2320){-webkit-animation-delay:232s;animation-delay:232s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2321){-webkit-animation-delay:232.1s;animation-delay:232.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2322){-webkit-animation-delay:232.2s;animation-delay:232.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2323){-webkit-animation-delay:232.3s;animation-delay:232.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2324){-webkit-animation-delay:232.4s;animation-delay:232.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2325){-webkit-animation-delay:232.5s;animation-delay:232.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2326){-webkit-animation-delay:232.6s;animation-delay:232.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2327){-webkit-animation-delay:232.7s;animation-delay:232.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2328){-webkit-animation-delay:232.8s;animation-delay:232.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2329){-webkit-animation-delay:232.9s;animation-delay:232.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2330){-webkit-animation-delay:233s;animation-delay:233s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2331){-webkit-animation-delay:233.1s;animation-delay:233.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2332){-webkit-animation-delay:233.2s;animation-delay:233.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2333){-webkit-animation-delay:233.3s;animation-delay:233.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2334){-webkit-animation-delay:233.4s;animation-delay:233.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2335){-webkit-animation-delay:233.5s;animation-delay:233.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2336){-webkit-animation-delay:233.6s;animation-delay:233.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2337){-webkit-animation-delay:233.7s;animation-delay:233.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2338){-webkit-animation-delay:233.8s;animation-delay:233.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2339){-webkit-animation-delay:233.9s;animation-delay:233.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2340){-webkit-animation-delay:234s;animation-delay:234s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2341){-webkit-animation-delay:234.1s;animation-delay:234.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2342){-webkit-animation-delay:234.2s;animation-delay:234.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2343){-webkit-animation-delay:234.3s;animation-delay:234.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2344){-webkit-animation-delay:234.4s;animation-delay:234.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2345){-webkit-animation-delay:234.5s;animation-delay:234.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2346){-webkit-animation-delay:234.6s;animation-delay:234.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2347){-webkit-animation-delay:234.7s;animation-delay:234.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2348){-webkit-animation-delay:234.8s;animation-delay:234.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2349){-webkit-animation-delay:234.9s;animation-delay:234.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2350){-webkit-animation-delay:235s;animation-delay:235s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2351){-webkit-animation-delay:235.1s;animation-delay:235.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2352){-webkit-animation-delay:235.2s;animation-delay:235.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2353){-webkit-animation-delay:235.3s;animation-delay:235.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2354){-webkit-animation-delay:235.4s;animation-delay:235.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2355){-webkit-animation-delay:235.5s;animation-delay:235.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2356){-webkit-animation-delay:235.6s;animation-delay:235.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2357){-webkit-animation-delay:235.7s;animation-delay:235.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2358){-webkit-animation-delay:235.8s;animation-delay:235.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2359){-webkit-animation-delay:235.9s;animation-delay:235.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2360){-webkit-animation-delay:236s;animation-delay:236s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2361){-webkit-animation-delay:236.1s;animation-delay:236.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2362){-webkit-animation-delay:236.2s;animation-delay:236.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2363){-webkit-animation-delay:236.3s;animation-delay:236.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2364){-webkit-animation-delay:236.4s;animation-delay:236.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2365){-webkit-animation-delay:236.5s;animation-delay:236.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2366){-webkit-animation-delay:236.6s;animation-delay:236.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2367){-webkit-animation-delay:236.7s;animation-delay:236.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2368){-webkit-animation-delay:236.8s;animation-delay:236.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2369){-webkit-animation-delay:236.9s;animation-delay:236.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2370){-webkit-animation-delay:237s;animation-delay:237s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2371){-webkit-animation-delay:237.1s;animation-delay:237.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2372){-webkit-animation-delay:237.2s;animation-delay:237.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2373){-webkit-animation-delay:237.3s;animation-delay:237.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2374){-webkit-animation-delay:237.4s;animation-delay:237.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2375){-webkit-animation-delay:237.5s;animation-delay:237.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2376){-webkit-animation-delay:237.6s;animation-delay:237.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2377){-webkit-animation-delay:237.7s;animation-delay:237.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2378){-webkit-animation-delay:237.8s;animation-delay:237.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2379){-webkit-animation-delay:237.9s;animation-delay:237.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2380){-webkit-animation-delay:238s;animation-delay:238s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2381){-webkit-animation-delay:238.1s;animation-delay:238.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2382){-webkit-animation-delay:238.2s;animation-delay:238.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2383){-webkit-animation-delay:238.3s;animation-delay:238.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2384){-webkit-animation-delay:238.4s;animation-delay:238.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2385){-webkit-animation-delay:238.5s;animation-delay:238.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2386){-webkit-animation-delay:238.6s;animation-delay:238.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2387){-webkit-animation-delay:238.7s;animation-delay:238.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2388){-webkit-animation-delay:238.8s;animation-delay:238.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2389){-webkit-animation-delay:238.9s;animation-delay:238.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2390){-webkit-animation-delay:239s;animation-delay:239s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2391){-webkit-animation-delay:239.1s;animation-delay:239.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2392){-webkit-animation-delay:239.2s;animation-delay:239.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2393){-webkit-animation-delay:239.3s;animation-delay:239.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2394){-webkit-animation-delay:239.4s;animation-delay:239.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2395){-webkit-animation-delay:239.5s;animation-delay:239.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2396){-webkit-animation-delay:239.6s;animation-delay:239.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2397){-webkit-animation-delay:239.7s;animation-delay:239.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2398){-webkit-animation-delay:239.8s;animation-delay:239.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2399){-webkit-animation-delay:239.9s;animation-delay:239.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2400){-webkit-animation-delay:240s;animation-delay:240s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2401){-webkit-animation-delay:240.1s;animation-delay:240.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2402){-webkit-animation-delay:240.2s;animation-delay:240.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2403){-webkit-animation-delay:240.3s;animation-delay:240.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2404){-webkit-animation-delay:240.4s;animation-delay:240.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2405){-webkit-animation-delay:240.5s;animation-delay:240.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2406){-webkit-animation-delay:240.6s;animation-delay:240.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2407){-webkit-animation-delay:240.7s;animation-delay:240.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2408){-webkit-animation-delay:240.8s;animation-delay:240.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2409){-webkit-animation-delay:240.9s;animation-delay:240.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2410){-webkit-animation-delay:241s;animation-delay:241s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2411){-webkit-animation-delay:241.1s;animation-delay:241.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2412){-webkit-animation-delay:241.2s;animation-delay:241.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2413){-webkit-animation-delay:241.3s;animation-delay:241.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2414){-webkit-animation-delay:241.4s;animation-delay:241.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2415){-webkit-animation-delay:241.5s;animation-delay:241.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2416){-webkit-animation-delay:241.6s;animation-delay:241.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2417){-webkit-animation-delay:241.7s;animation-delay:241.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2418){-webkit-animation-delay:241.8s;animation-delay:241.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2419){-webkit-animation-delay:241.9s;animation-delay:241.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2420){-webkit-animation-delay:242s;animation-delay:242s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2421){-webkit-animation-delay:242.1s;animation-delay:242.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2422){-webkit-animation-delay:242.2s;animation-delay:242.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2423){-webkit-animation-delay:242.3s;animation-delay:242.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2424){-webkit-animation-delay:242.4s;animation-delay:242.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2425){-webkit-animation-delay:242.5s;animation-delay:242.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2426){-webkit-animation-delay:242.6s;animation-delay:242.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2427){-webkit-animation-delay:242.7s;animation-delay:242.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2428){-webkit-animation-delay:242.8s;animation-delay:242.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2429){-webkit-animation-delay:242.9s;animation-delay:242.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2430){-webkit-animation-delay:243s;animation-delay:243s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2431){-webkit-animation-delay:243.1s;animation-delay:243.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2432){-webkit-animation-delay:243.2s;animation-delay:243.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2433){-webkit-animation-delay:243.3s;animation-delay:243.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2434){-webkit-animation-delay:243.4s;animation-delay:243.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2435){-webkit-animation-delay:243.5s;animation-delay:243.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2436){-webkit-animation-delay:243.6s;animation-delay:243.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2437){-webkit-animation-delay:243.7s;animation-delay:243.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2438){-webkit-animation-delay:243.8s;animation-delay:243.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2439){-webkit-animation-delay:243.9s;animation-delay:243.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2440){-webkit-animation-delay:244s;animation-delay:244s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2441){-webkit-animation-delay:244.1s;animation-delay:244.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2442){-webkit-animation-delay:244.2s;animation-delay:244.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2443){-webkit-animation-delay:244.3s;animation-delay:244.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2444){-webkit-animation-delay:244.4s;animation-delay:244.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2445){-webkit-animation-delay:244.5s;animation-delay:244.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2446){-webkit-animation-delay:244.6s;animation-delay:244.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2447){-webkit-animation-delay:244.7s;animation-delay:244.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2448){-webkit-animation-delay:244.8s;animation-delay:244.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2449){-webkit-animation-delay:244.9s;animation-delay:244.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2450){-webkit-animation-delay:245s;animation-delay:245s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2451){-webkit-animation-delay:245.1s;animation-delay:245.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2452){-webkit-animation-delay:245.2s;animation-delay:245.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2453){-webkit-animation-delay:245.3s;animation-delay:245.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2454){-webkit-animation-delay:245.4s;animation-delay:245.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2455){-webkit-animation-delay:245.5s;animation-delay:245.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2456){-webkit-animation-delay:245.6s;animation-delay:245.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2457){-webkit-animation-delay:245.7s;animation-delay:245.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2458){-webkit-animation-delay:245.8s;animation-delay:245.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2459){-webkit-animation-delay:245.9s;animation-delay:245.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2460){-webkit-animation-delay:246s;animation-delay:246s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2461){-webkit-animation-delay:246.1s;animation-delay:246.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2462){-webkit-animation-delay:246.2s;animation-delay:246.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2463){-webkit-animation-delay:246.3s;animation-delay:246.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2464){-webkit-animation-delay:246.4s;animation-delay:246.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2465){-webkit-animation-delay:246.5s;animation-delay:246.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2466){-webkit-animation-delay:246.6s;animation-delay:246.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2467){-webkit-animation-delay:246.7s;animation-delay:246.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2468){-webkit-animation-delay:246.8s;animation-delay:246.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2469){-webkit-animation-delay:246.9s;animation-delay:246.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2470){-webkit-animation-delay:247s;animation-delay:247s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2471){-webkit-animation-delay:247.1s;animation-delay:247.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2472){-webkit-animation-delay:247.2s;animation-delay:247.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2473){-webkit-animation-delay:247.3s;animation-delay:247.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2474){-webkit-animation-delay:247.4s;animation-delay:247.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2475){-webkit-animation-delay:247.5s;animation-delay:247.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2476){-webkit-animation-delay:247.6s;animation-delay:247.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2477){-webkit-animation-delay:247.7s;animation-delay:247.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2478){-webkit-animation-delay:247.8s;animation-delay:247.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2479){-webkit-animation-delay:247.9s;animation-delay:247.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2480){-webkit-animation-delay:248s;animation-delay:248s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2481){-webkit-animation-delay:248.1s;animation-delay:248.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2482){-webkit-animation-delay:248.2s;animation-delay:248.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2483){-webkit-animation-delay:248.3s;animation-delay:248.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2484){-webkit-animation-delay:248.4s;animation-delay:248.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2485){-webkit-animation-delay:248.5s;animation-delay:248.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2486){-webkit-animation-delay:248.6s;animation-delay:248.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2487){-webkit-animation-delay:248.7s;animation-delay:248.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2488){-webkit-animation-delay:248.8s;animation-delay:248.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2489){-webkit-animation-delay:248.9s;animation-delay:248.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2490){-webkit-animation-delay:249s;animation-delay:249s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2491){-webkit-animation-delay:249.1s;animation-delay:249.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2492){-webkit-animation-delay:249.2s;animation-delay:249.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2493){-webkit-animation-delay:249.3s;animation-delay:249.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2494){-webkit-animation-delay:249.4s;animation-delay:249.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2495){-webkit-animation-delay:249.5s;animation-delay:249.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2496){-webkit-animation-delay:249.6s;animation-delay:249.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2497){-webkit-animation-delay:249.7s;animation-delay:249.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2498){-webkit-animation-delay:249.8s;animation-delay:249.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2499){-webkit-animation-delay:249.9s;animation-delay:249.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2500){-webkit-animation-delay:250s;animation-delay:250s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2501){-webkit-animation-delay:250.1s;animation-delay:250.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2502){-webkit-animation-delay:250.2s;animation-delay:250.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2503){-webkit-animation-delay:250.3s;animation-delay:250.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2504){-webkit-animation-delay:250.4s;animation-delay:250.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2505){-webkit-animation-delay:250.5s;animation-delay:250.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2506){-webkit-animation-delay:250.6s;animation-delay:250.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2507){-webkit-animation-delay:250.7s;animation-delay:250.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2508){-webkit-animation-delay:250.8s;animation-delay:250.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2509){-webkit-animation-delay:250.9s;animation-delay:250.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2510){-webkit-animation-delay:251s;animation-delay:251s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2511){-webkit-animation-delay:251.1s;animation-delay:251.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2512){-webkit-animation-delay:251.2s;animation-delay:251.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2513){-webkit-animation-delay:251.3s;animation-delay:251.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2514){-webkit-animation-delay:251.4s;animation-delay:251.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2515){-webkit-animation-delay:251.5s;animation-delay:251.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2516){-webkit-animation-delay:251.6s;animation-delay:251.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2517){-webkit-animation-delay:251.7s;animation-delay:251.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2518){-webkit-animation-delay:251.8s;animation-delay:251.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2519){-webkit-animation-delay:251.9s;animation-delay:251.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2520){-webkit-animation-delay:252s;animation-delay:252s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2521){-webkit-animation-delay:252.1s;animation-delay:252.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2522){-webkit-animation-delay:252.2s;animation-delay:252.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2523){-webkit-animation-delay:252.3s;animation-delay:252.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2524){-webkit-animation-delay:252.4s;animation-delay:252.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2525){-webkit-animation-delay:252.5s;animation-delay:252.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2526){-webkit-animation-delay:252.6s;animation-delay:252.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2527){-webkit-animation-delay:252.7s;animation-delay:252.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2528){-webkit-animation-delay:252.8s;animation-delay:252.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2529){-webkit-animation-delay:252.9s;animation-delay:252.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2530){-webkit-animation-delay:253s;animation-delay:253s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2531){-webkit-animation-delay:253.1s;animation-delay:253.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2532){-webkit-animation-delay:253.2s;animation-delay:253.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2533){-webkit-animation-delay:253.3s;animation-delay:253.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2534){-webkit-animation-delay:253.4s;animation-delay:253.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2535){-webkit-animation-delay:253.5s;animation-delay:253.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2536){-webkit-animation-delay:253.6s;animation-delay:253.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2537){-webkit-animation-delay:253.7s;animation-delay:253.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2538){-webkit-animation-delay:253.8s;animation-delay:253.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2539){-webkit-animation-delay:253.9s;animation-delay:253.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2540){-webkit-animation-delay:254s;animation-delay:254s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2541){-webkit-animation-delay:254.1s;animation-delay:254.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2542){-webkit-animation-delay:254.2s;animation-delay:254.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2543){-webkit-animation-delay:254.3s;animation-delay:254.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2544){-webkit-animation-delay:254.4s;animation-delay:254.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2545){-webkit-animation-delay:254.5s;animation-delay:254.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2546){-webkit-animation-delay:254.6s;animation-delay:254.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2547){-webkit-animation-delay:254.7s;animation-delay:254.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2548){-webkit-animation-delay:254.8s;animation-delay:254.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2549){-webkit-animation-delay:254.9s;animation-delay:254.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2550){-webkit-animation-delay:255s;animation-delay:255s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2551){-webkit-animation-delay:255.1s;animation-delay:255.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2552){-webkit-animation-delay:255.2s;animation-delay:255.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2553){-webkit-animation-delay:255.3s;animation-delay:255.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2554){-webkit-animation-delay:255.4s;animation-delay:255.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2555){-webkit-animation-delay:255.5s;animation-delay:255.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2556){-webkit-animation-delay:255.6s;animation-delay:255.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2557){-webkit-animation-delay:255.7s;animation-delay:255.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2558){-webkit-animation-delay:255.8s;animation-delay:255.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2559){-webkit-animation-delay:255.9s;animation-delay:255.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2560){-webkit-animation-delay:256s;animation-delay:256s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2561){-webkit-animation-delay:256.1s;animation-delay:256.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2562){-webkit-animation-delay:256.2s;animation-delay:256.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2563){-webkit-animation-delay:256.3s;animation-delay:256.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2564){-webkit-animation-delay:256.4s;animation-delay:256.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2565){-webkit-animation-delay:256.5s;animation-delay:256.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2566){-webkit-animation-delay:256.6s;animation-delay:256.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2567){-webkit-animation-delay:256.7s;animation-delay:256.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2568){-webkit-animation-delay:256.8s;animation-delay:256.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2569){-webkit-animation-delay:256.9s;animation-delay:256.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2570){-webkit-animation-delay:257s;animation-delay:257s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2571){-webkit-animation-delay:257.1s;animation-delay:257.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2572){-webkit-animation-delay:257.2s;animation-delay:257.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2573){-webkit-animation-delay:257.3s;animation-delay:257.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2574){-webkit-animation-delay:257.4s;animation-delay:257.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2575){-webkit-animation-delay:257.5s;animation-delay:257.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2576){-webkit-animation-delay:257.6s;animation-delay:257.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2577){-webkit-animation-delay:257.7s;animation-delay:257.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2578){-webkit-animation-delay:257.8s;animation-delay:257.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2579){-webkit-animation-delay:257.9s;animation-delay:257.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2580){-webkit-animation-delay:258s;animation-delay:258s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2581){-webkit-animation-delay:258.1s;animation-delay:258.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2582){-webkit-animation-delay:258.2s;animation-delay:258.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2583){-webkit-animation-delay:258.3s;animation-delay:258.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2584){-webkit-animation-delay:258.4s;animation-delay:258.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2585){-webkit-animation-delay:258.5s;animation-delay:258.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2586){-webkit-animation-delay:258.6s;animation-delay:258.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2587){-webkit-animation-delay:258.7s;animation-delay:258.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2588){-webkit-animation-delay:258.8s;animation-delay:258.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2589){-webkit-animation-delay:258.9s;animation-delay:258.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2590){-webkit-animation-delay:259s;animation-delay:259s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2591){-webkit-animation-delay:259.1s;animation-delay:259.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2592){-webkit-animation-delay:259.2s;animation-delay:259.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2593){-webkit-animation-delay:259.3s;animation-delay:259.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2594){-webkit-animation-delay:259.4s;animation-delay:259.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2595){-webkit-animation-delay:259.5s;animation-delay:259.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2596){-webkit-animation-delay:259.6s;animation-delay:259.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2597){-webkit-animation-delay:259.7s;animation-delay:259.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2598){-webkit-animation-delay:259.8s;animation-delay:259.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2599){-webkit-animation-delay:259.9s;animation-delay:259.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2600){-webkit-animation-delay:260s;animation-delay:260s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2601){-webkit-animation-delay:260.1s;animation-delay:260.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2602){-webkit-animation-delay:260.2s;animation-delay:260.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2603){-webkit-animation-delay:260.3s;animation-delay:260.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2604){-webkit-animation-delay:260.4s;animation-delay:260.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2605){-webkit-animation-delay:260.5s;animation-delay:260.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2606){-webkit-animation-delay:260.6s;animation-delay:260.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2607){-webkit-animation-delay:260.7s;animation-delay:260.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2608){-webkit-animation-delay:260.8s;animation-delay:260.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2609){-webkit-animation-delay:260.9s;animation-delay:260.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2610){-webkit-animation-delay:261s;animation-delay:261s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2611){-webkit-animation-delay:261.1s;animation-delay:261.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2612){-webkit-animation-delay:261.2s;animation-delay:261.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2613){-webkit-animation-delay:261.3s;animation-delay:261.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2614){-webkit-animation-delay:261.4s;animation-delay:261.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2615){-webkit-animation-delay:261.5s;animation-delay:261.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2616){-webkit-animation-delay:261.6s;animation-delay:261.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2617){-webkit-animation-delay:261.7s;animation-delay:261.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2618){-webkit-animation-delay:261.8s;animation-delay:261.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2619){-webkit-animation-delay:261.9s;animation-delay:261.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2620){-webkit-animation-delay:262s;animation-delay:262s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2621){-webkit-animation-delay:262.1s;animation-delay:262.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2622){-webkit-animation-delay:262.2s;animation-delay:262.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2623){-webkit-animation-delay:262.3s;animation-delay:262.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2624){-webkit-animation-delay:262.4s;animation-delay:262.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2625){-webkit-animation-delay:262.5s;animation-delay:262.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2626){-webkit-animation-delay:262.6s;animation-delay:262.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2627){-webkit-animation-delay:262.7s;animation-delay:262.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2628){-webkit-animation-delay:262.8s;animation-delay:262.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2629){-webkit-animation-delay:262.9s;animation-delay:262.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2630){-webkit-animation-delay:263s;animation-delay:263s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2631){-webkit-animation-delay:263.1s;animation-delay:263.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2632){-webkit-animation-delay:263.2s;animation-delay:263.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2633){-webkit-animation-delay:263.3s;animation-delay:263.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2634){-webkit-animation-delay:263.4s;animation-delay:263.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2635){-webkit-animation-delay:263.5s;animation-delay:263.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2636){-webkit-animation-delay:263.6s;animation-delay:263.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2637){-webkit-animation-delay:263.7s;animation-delay:263.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2638){-webkit-animation-delay:263.8s;animation-delay:263.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2639){-webkit-animation-delay:263.9s;animation-delay:263.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2640){-webkit-animation-delay:264s;animation-delay:264s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2641){-webkit-animation-delay:264.1s;animation-delay:264.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2642){-webkit-animation-delay:264.2s;animation-delay:264.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2643){-webkit-animation-delay:264.3s;animation-delay:264.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2644){-webkit-animation-delay:264.4s;animation-delay:264.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2645){-webkit-animation-delay:264.5s;animation-delay:264.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2646){-webkit-animation-delay:264.6s;animation-delay:264.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2647){-webkit-animation-delay:264.7s;animation-delay:264.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2648){-webkit-animation-delay:264.8s;animation-delay:264.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2649){-webkit-animation-delay:264.9s;animation-delay:264.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2650){-webkit-animation-delay:265s;animation-delay:265s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2651){-webkit-animation-delay:265.1s;animation-delay:265.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2652){-webkit-animation-delay:265.2s;animation-delay:265.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2653){-webkit-animation-delay:265.3s;animation-delay:265.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2654){-webkit-animation-delay:265.4s;animation-delay:265.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2655){-webkit-animation-delay:265.5s;animation-delay:265.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2656){-webkit-animation-delay:265.6s;animation-delay:265.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2657){-webkit-animation-delay:265.7s;animation-delay:265.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2658){-webkit-animation-delay:265.8s;animation-delay:265.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2659){-webkit-animation-delay:265.9s;animation-delay:265.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2660){-webkit-animation-delay:266s;animation-delay:266s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2661){-webkit-animation-delay:266.1s;animation-delay:266.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2662){-webkit-animation-delay:266.2s;animation-delay:266.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2663){-webkit-animation-delay:266.3s;animation-delay:266.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2664){-webkit-animation-delay:266.4s;animation-delay:266.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2665){-webkit-animation-delay:266.5s;animation-delay:266.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2666){-webkit-animation-delay:266.6s;animation-delay:266.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2667){-webkit-animation-delay:266.7s;animation-delay:266.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2668){-webkit-animation-delay:266.8s;animation-delay:266.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2669){-webkit-animation-delay:266.9s;animation-delay:266.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2670){-webkit-animation-delay:267s;animation-delay:267s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2671){-webkit-animation-delay:267.1s;animation-delay:267.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2672){-webkit-animation-delay:267.2s;animation-delay:267.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2673){-webkit-animation-delay:267.3s;animation-delay:267.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2674){-webkit-animation-delay:267.4s;animation-delay:267.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2675){-webkit-animation-delay:267.5s;animation-delay:267.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2676){-webkit-animation-delay:267.6s;animation-delay:267.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2677){-webkit-animation-delay:267.7s;animation-delay:267.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2678){-webkit-animation-delay:267.8s;animation-delay:267.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2679){-webkit-animation-delay:267.9s;animation-delay:267.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2680){-webkit-animation-delay:268s;animation-delay:268s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2681){-webkit-animation-delay:268.1s;animation-delay:268.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2682){-webkit-animation-delay:268.2s;animation-delay:268.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2683){-webkit-animation-delay:268.3s;animation-delay:268.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2684){-webkit-animation-delay:268.4s;animation-delay:268.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2685){-webkit-animation-delay:268.5s;animation-delay:268.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2686){-webkit-animation-delay:268.6s;animation-delay:268.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2687){-webkit-animation-delay:268.7s;animation-delay:268.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2688){-webkit-animation-delay:268.8s;animation-delay:268.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2689){-webkit-animation-delay:268.9s;animation-delay:268.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2690){-webkit-animation-delay:269s;animation-delay:269s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2691){-webkit-animation-delay:269.1s;animation-delay:269.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2692){-webkit-animation-delay:269.2s;animation-delay:269.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2693){-webkit-animation-delay:269.3s;animation-delay:269.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2694){-webkit-animation-delay:269.4s;animation-delay:269.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2695){-webkit-animation-delay:269.5s;animation-delay:269.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2696){-webkit-animation-delay:269.6s;animation-delay:269.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2697){-webkit-animation-delay:269.7s;animation-delay:269.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2698){-webkit-animation-delay:269.8s;animation-delay:269.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2699){-webkit-animation-delay:269.9s;animation-delay:269.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2700){-webkit-animation-delay:270s;animation-delay:270s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2701){-webkit-animation-delay:270.1s;animation-delay:270.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2702){-webkit-animation-delay:270.2s;animation-delay:270.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2703){-webkit-animation-delay:270.3s;animation-delay:270.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2704){-webkit-animation-delay:270.4s;animation-delay:270.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2705){-webkit-animation-delay:270.5s;animation-delay:270.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2706){-webkit-animation-delay:270.6s;animation-delay:270.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2707){-webkit-animation-delay:270.7s;animation-delay:270.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2708){-webkit-animation-delay:270.8s;animation-delay:270.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2709){-webkit-animation-delay:270.9s;animation-delay:270.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2710){-webkit-animation-delay:271s;animation-delay:271s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2711){-webkit-animation-delay:271.1s;animation-delay:271.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2712){-webkit-animation-delay:271.2s;animation-delay:271.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2713){-webkit-animation-delay:271.3s;animation-delay:271.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2714){-webkit-animation-delay:271.4s;animation-delay:271.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2715){-webkit-animation-delay:271.5s;animation-delay:271.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2716){-webkit-animation-delay:271.6s;animation-delay:271.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2717){-webkit-animation-delay:271.7s;animation-delay:271.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2718){-webkit-animation-delay:271.8s;animation-delay:271.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2719){-webkit-animation-delay:271.9s;animation-delay:271.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2720){-webkit-animation-delay:272s;animation-delay:272s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2721){-webkit-animation-delay:272.1s;animation-delay:272.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2722){-webkit-animation-delay:272.2s;animation-delay:272.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2723){-webkit-animation-delay:272.3s;animation-delay:272.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2724){-webkit-animation-delay:272.4s;animation-delay:272.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2725){-webkit-animation-delay:272.5s;animation-delay:272.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2726){-webkit-animation-delay:272.6s;animation-delay:272.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2727){-webkit-animation-delay:272.7s;animation-delay:272.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2728){-webkit-animation-delay:272.8s;animation-delay:272.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2729){-webkit-animation-delay:272.9s;animation-delay:272.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2730){-webkit-animation-delay:273s;animation-delay:273s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2731){-webkit-animation-delay:273.1s;animation-delay:273.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2732){-webkit-animation-delay:273.2s;animation-delay:273.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2733){-webkit-animation-delay:273.3s;animation-delay:273.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2734){-webkit-animation-delay:273.4s;animation-delay:273.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2735){-webkit-animation-delay:273.5s;animation-delay:273.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2736){-webkit-animation-delay:273.6s;animation-delay:273.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2737){-webkit-animation-delay:273.7s;animation-delay:273.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2738){-webkit-animation-delay:273.8s;animation-delay:273.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2739){-webkit-animation-delay:273.9s;animation-delay:273.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2740){-webkit-animation-delay:274s;animation-delay:274s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2741){-webkit-animation-delay:274.1s;animation-delay:274.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2742){-webkit-animation-delay:274.2s;animation-delay:274.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2743){-webkit-animation-delay:274.3s;animation-delay:274.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2744){-webkit-animation-delay:274.4s;animation-delay:274.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2745){-webkit-animation-delay:274.5s;animation-delay:274.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2746){-webkit-animation-delay:274.6s;animation-delay:274.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2747){-webkit-animation-delay:274.7s;animation-delay:274.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2748){-webkit-animation-delay:274.8s;animation-delay:274.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2749){-webkit-animation-delay:274.9s;animation-delay:274.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2750){-webkit-animation-delay:275s;animation-delay:275s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2751){-webkit-animation-delay:275.1s;animation-delay:275.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2752){-webkit-animation-delay:275.2s;animation-delay:275.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2753){-webkit-animation-delay:275.3s;animation-delay:275.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2754){-webkit-animation-delay:275.4s;animation-delay:275.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2755){-webkit-animation-delay:275.5s;animation-delay:275.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2756){-webkit-animation-delay:275.6s;animation-delay:275.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2757){-webkit-animation-delay:275.7s;animation-delay:275.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2758){-webkit-animation-delay:275.8s;animation-delay:275.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2759){-webkit-animation-delay:275.9s;animation-delay:275.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2760){-webkit-animation-delay:276s;animation-delay:276s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2761){-webkit-animation-delay:276.1s;animation-delay:276.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2762){-webkit-animation-delay:276.2s;animation-delay:276.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2763){-webkit-animation-delay:276.3s;animation-delay:276.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2764){-webkit-animation-delay:276.4s;animation-delay:276.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2765){-webkit-animation-delay:276.5s;animation-delay:276.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2766){-webkit-animation-delay:276.6s;animation-delay:276.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2767){-webkit-animation-delay:276.7s;animation-delay:276.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2768){-webkit-animation-delay:276.8s;animation-delay:276.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2769){-webkit-animation-delay:276.9s;animation-delay:276.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2770){-webkit-animation-delay:277s;animation-delay:277s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2771){-webkit-animation-delay:277.1s;animation-delay:277.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2772){-webkit-animation-delay:277.2s;animation-delay:277.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2773){-webkit-animation-delay:277.3s;animation-delay:277.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2774){-webkit-animation-delay:277.4s;animation-delay:277.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2775){-webkit-animation-delay:277.5s;animation-delay:277.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2776){-webkit-animation-delay:277.6s;animation-delay:277.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2777){-webkit-animation-delay:277.7s;animation-delay:277.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2778){-webkit-animation-delay:277.8s;animation-delay:277.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2779){-webkit-animation-delay:277.9s;animation-delay:277.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2780){-webkit-animation-delay:278s;animation-delay:278s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2781){-webkit-animation-delay:278.1s;animation-delay:278.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2782){-webkit-animation-delay:278.2s;animation-delay:278.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2783){-webkit-animation-delay:278.3s;animation-delay:278.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2784){-webkit-animation-delay:278.4s;animation-delay:278.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2785){-webkit-animation-delay:278.5s;animation-delay:278.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2786){-webkit-animation-delay:278.6s;animation-delay:278.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2787){-webkit-animation-delay:278.7s;animation-delay:278.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2788){-webkit-animation-delay:278.8s;animation-delay:278.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2789){-webkit-animation-delay:278.9s;animation-delay:278.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2790){-webkit-animation-delay:279s;animation-delay:279s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2791){-webkit-animation-delay:279.1s;animation-delay:279.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2792){-webkit-animation-delay:279.2s;animation-delay:279.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2793){-webkit-animation-delay:279.3s;animation-delay:279.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2794){-webkit-animation-delay:279.4s;animation-delay:279.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2795){-webkit-animation-delay:279.5s;animation-delay:279.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2796){-webkit-animation-delay:279.6s;animation-delay:279.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2797){-webkit-animation-delay:279.7s;animation-delay:279.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2798){-webkit-animation-delay:279.8s;animation-delay:279.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2799){-webkit-animation-delay:279.9s;animation-delay:279.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2800){-webkit-animation-delay:280s;animation-delay:280s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2801){-webkit-animation-delay:280.1s;animation-delay:280.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2802){-webkit-animation-delay:280.2s;animation-delay:280.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2803){-webkit-animation-delay:280.3s;animation-delay:280.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2804){-webkit-animation-delay:280.4s;animation-delay:280.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2805){-webkit-animation-delay:280.5s;animation-delay:280.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2806){-webkit-animation-delay:280.6s;animation-delay:280.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2807){-webkit-animation-delay:280.7s;animation-delay:280.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2808){-webkit-animation-delay:280.8s;animation-delay:280.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2809){-webkit-animation-delay:280.9s;animation-delay:280.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2810){-webkit-animation-delay:281s;animation-delay:281s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2811){-webkit-animation-delay:281.1s;animation-delay:281.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2812){-webkit-animation-delay:281.2s;animation-delay:281.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2813){-webkit-animation-delay:281.3s;animation-delay:281.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2814){-webkit-animation-delay:281.4s;animation-delay:281.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2815){-webkit-animation-delay:281.5s;animation-delay:281.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2816){-webkit-animation-delay:281.6s;animation-delay:281.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2817){-webkit-animation-delay:281.7s;animation-delay:281.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2818){-webkit-animation-delay:281.8s;animation-delay:281.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2819){-webkit-animation-delay:281.9s;animation-delay:281.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2820){-webkit-animation-delay:282s;animation-delay:282s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2821){-webkit-animation-delay:282.1s;animation-delay:282.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2822){-webkit-animation-delay:282.2s;animation-delay:282.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2823){-webkit-animation-delay:282.3s;animation-delay:282.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2824){-webkit-animation-delay:282.4s;animation-delay:282.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2825){-webkit-animation-delay:282.5s;animation-delay:282.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2826){-webkit-animation-delay:282.6s;animation-delay:282.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2827){-webkit-animation-delay:282.7s;animation-delay:282.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2828){-webkit-animation-delay:282.8s;animation-delay:282.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2829){-webkit-animation-delay:282.9s;animation-delay:282.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2830){-webkit-animation-delay:283s;animation-delay:283s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2831){-webkit-animation-delay:283.1s;animation-delay:283.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2832){-webkit-animation-delay:283.2s;animation-delay:283.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2833){-webkit-animation-delay:283.3s;animation-delay:283.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2834){-webkit-animation-delay:283.4s;animation-delay:283.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2835){-webkit-animation-delay:283.5s;animation-delay:283.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2836){-webkit-animation-delay:283.6s;animation-delay:283.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2837){-webkit-animation-delay:283.7s;animation-delay:283.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2838){-webkit-animation-delay:283.8s;animation-delay:283.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2839){-webkit-animation-delay:283.9s;animation-delay:283.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2840){-webkit-animation-delay:284s;animation-delay:284s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2841){-webkit-animation-delay:284.1s;animation-delay:284.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2842){-webkit-animation-delay:284.2s;animation-delay:284.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2843){-webkit-animation-delay:284.3s;animation-delay:284.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2844){-webkit-animation-delay:284.4s;animation-delay:284.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2845){-webkit-animation-delay:284.5s;animation-delay:284.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2846){-webkit-animation-delay:284.6s;animation-delay:284.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2847){-webkit-animation-delay:284.7s;animation-delay:284.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2848){-webkit-animation-delay:284.8s;animation-delay:284.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2849){-webkit-animation-delay:284.9s;animation-delay:284.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2850){-webkit-animation-delay:285s;animation-delay:285s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2851){-webkit-animation-delay:285.1s;animation-delay:285.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2852){-webkit-animation-delay:285.2s;animation-delay:285.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2853){-webkit-animation-delay:285.3s;animation-delay:285.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2854){-webkit-animation-delay:285.4s;animation-delay:285.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2855){-webkit-animation-delay:285.5s;animation-delay:285.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2856){-webkit-animation-delay:285.6s;animation-delay:285.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2857){-webkit-animation-delay:285.7s;animation-delay:285.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2858){-webkit-animation-delay:285.8s;animation-delay:285.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2859){-webkit-animation-delay:285.9s;animation-delay:285.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2860){-webkit-animation-delay:286s;animation-delay:286s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2861){-webkit-animation-delay:286.1s;animation-delay:286.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2862){-webkit-animation-delay:286.2s;animation-delay:286.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2863){-webkit-animation-delay:286.3s;animation-delay:286.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2864){-webkit-animation-delay:286.4s;animation-delay:286.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2865){-webkit-animation-delay:286.5s;animation-delay:286.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2866){-webkit-animation-delay:286.6s;animation-delay:286.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2867){-webkit-animation-delay:286.7s;animation-delay:286.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2868){-webkit-animation-delay:286.8s;animation-delay:286.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2869){-webkit-animation-delay:286.9s;animation-delay:286.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2870){-webkit-animation-delay:287s;animation-delay:287s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2871){-webkit-animation-delay:287.1s;animation-delay:287.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2872){-webkit-animation-delay:287.2s;animation-delay:287.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2873){-webkit-animation-delay:287.3s;animation-delay:287.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2874){-webkit-animation-delay:287.4s;animation-delay:287.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2875){-webkit-animation-delay:287.5s;animation-delay:287.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2876){-webkit-animation-delay:287.6s;animation-delay:287.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2877){-webkit-animation-delay:287.7s;animation-delay:287.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2878){-webkit-animation-delay:287.8s;animation-delay:287.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2879){-webkit-animation-delay:287.9s;animation-delay:287.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2880){-webkit-animation-delay:288s;animation-delay:288s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2881){-webkit-animation-delay:288.1s;animation-delay:288.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2882){-webkit-animation-delay:288.2s;animation-delay:288.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2883){-webkit-animation-delay:288.3s;animation-delay:288.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2884){-webkit-animation-delay:288.4s;animation-delay:288.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2885){-webkit-animation-delay:288.5s;animation-delay:288.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2886){-webkit-animation-delay:288.6s;animation-delay:288.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2887){-webkit-animation-delay:288.7s;animation-delay:288.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2888){-webkit-animation-delay:288.8s;animation-delay:288.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2889){-webkit-animation-delay:288.9s;animation-delay:288.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2890){-webkit-animation-delay:289s;animation-delay:289s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2891){-webkit-animation-delay:289.1s;animation-delay:289.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2892){-webkit-animation-delay:289.2s;animation-delay:289.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2893){-webkit-animation-delay:289.3s;animation-delay:289.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2894){-webkit-animation-delay:289.4s;animation-delay:289.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2895){-webkit-animation-delay:289.5s;animation-delay:289.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2896){-webkit-animation-delay:289.6s;animation-delay:289.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2897){-webkit-animation-delay:289.7s;animation-delay:289.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2898){-webkit-animation-delay:289.8s;animation-delay:289.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2899){-webkit-animation-delay:289.9s;animation-delay:289.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2900){-webkit-animation-delay:290s;animation-delay:290s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2901){-webkit-animation-delay:290.1s;animation-delay:290.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2902){-webkit-animation-delay:290.2s;animation-delay:290.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2903){-webkit-animation-delay:290.3s;animation-delay:290.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2904){-webkit-animation-delay:290.4s;animation-delay:290.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2905){-webkit-animation-delay:290.5s;animation-delay:290.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2906){-webkit-animation-delay:290.6s;animation-delay:290.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2907){-webkit-animation-delay:290.7s;animation-delay:290.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2908){-webkit-animation-delay:290.8s;animation-delay:290.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2909){-webkit-animation-delay:290.9s;animation-delay:290.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2910){-webkit-animation-delay:291s;animation-delay:291s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2911){-webkit-animation-delay:291.1s;animation-delay:291.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2912){-webkit-animation-delay:291.2s;animation-delay:291.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2913){-webkit-animation-delay:291.3s;animation-delay:291.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2914){-webkit-animation-delay:291.4s;animation-delay:291.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2915){-webkit-animation-delay:291.5s;animation-delay:291.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2916){-webkit-animation-delay:291.6s;animation-delay:291.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2917){-webkit-animation-delay:291.7s;animation-delay:291.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2918){-webkit-animation-delay:291.8s;animation-delay:291.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2919){-webkit-animation-delay:291.9s;animation-delay:291.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2920){-webkit-animation-delay:292s;animation-delay:292s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2921){-webkit-animation-delay:292.1s;animation-delay:292.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2922){-webkit-animation-delay:292.2s;animation-delay:292.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2923){-webkit-animation-delay:292.3s;animation-delay:292.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2924){-webkit-animation-delay:292.4s;animation-delay:292.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2925){-webkit-animation-delay:292.5s;animation-delay:292.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2926){-webkit-animation-delay:292.6s;animation-delay:292.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2927){-webkit-animation-delay:292.7s;animation-delay:292.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2928){-webkit-animation-delay:292.8s;animation-delay:292.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2929){-webkit-animation-delay:292.9s;animation-delay:292.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2930){-webkit-animation-delay:293s;animation-delay:293s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2931){-webkit-animation-delay:293.1s;animation-delay:293.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2932){-webkit-animation-delay:293.2s;animation-delay:293.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2933){-webkit-animation-delay:293.3s;animation-delay:293.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2934){-webkit-animation-delay:293.4s;animation-delay:293.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2935){-webkit-animation-delay:293.5s;animation-delay:293.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2936){-webkit-animation-delay:293.6s;animation-delay:293.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2937){-webkit-animation-delay:293.7s;animation-delay:293.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2938){-webkit-animation-delay:293.8s;animation-delay:293.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2939){-webkit-animation-delay:293.9s;animation-delay:293.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2940){-webkit-animation-delay:294s;animation-delay:294s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2941){-webkit-animation-delay:294.1s;animation-delay:294.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2942){-webkit-animation-delay:294.2s;animation-delay:294.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2943){-webkit-animation-delay:294.3s;animation-delay:294.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2944){-webkit-animation-delay:294.4s;animation-delay:294.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2945){-webkit-animation-delay:294.5s;animation-delay:294.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2946){-webkit-animation-delay:294.6s;animation-delay:294.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2947){-webkit-animation-delay:294.7s;animation-delay:294.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2948){-webkit-animation-delay:294.8s;animation-delay:294.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2949){-webkit-animation-delay:294.9s;animation-delay:294.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2950){-webkit-animation-delay:295s;animation-delay:295s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2951){-webkit-animation-delay:295.1s;animation-delay:295.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2952){-webkit-animation-delay:295.2s;animation-delay:295.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2953){-webkit-animation-delay:295.3s;animation-delay:295.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2954){-webkit-animation-delay:295.4s;animation-delay:295.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2955){-webkit-animation-delay:295.5s;animation-delay:295.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2956){-webkit-animation-delay:295.6s;animation-delay:295.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2957){-webkit-animation-delay:295.7s;animation-delay:295.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2958){-webkit-animation-delay:295.8s;animation-delay:295.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2959){-webkit-animation-delay:295.9s;animation-delay:295.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2960){-webkit-animation-delay:296s;animation-delay:296s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2961){-webkit-animation-delay:296.1s;animation-delay:296.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2962){-webkit-animation-delay:296.2s;animation-delay:296.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2963){-webkit-animation-delay:296.3s;animation-delay:296.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2964){-webkit-animation-delay:296.4s;animation-delay:296.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2965){-webkit-animation-delay:296.5s;animation-delay:296.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2966){-webkit-animation-delay:296.6s;animation-delay:296.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2967){-webkit-animation-delay:296.7s;animation-delay:296.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2968){-webkit-animation-delay:296.8s;animation-delay:296.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2969){-webkit-animation-delay:296.9s;animation-delay:296.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2970){-webkit-animation-delay:297s;animation-delay:297s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2971){-webkit-animation-delay:297.1s;animation-delay:297.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2972){-webkit-animation-delay:297.2s;animation-delay:297.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2973){-webkit-animation-delay:297.3s;animation-delay:297.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2974){-webkit-animation-delay:297.4s;animation-delay:297.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2975){-webkit-animation-delay:297.5s;animation-delay:297.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2976){-webkit-animation-delay:297.6s;animation-delay:297.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2977){-webkit-animation-delay:297.7s;animation-delay:297.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2978){-webkit-animation-delay:297.8s;animation-delay:297.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2979){-webkit-animation-delay:297.9s;animation-delay:297.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2980){-webkit-animation-delay:298s;animation-delay:298s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2981){-webkit-animation-delay:298.1s;animation-delay:298.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2982){-webkit-animation-delay:298.2s;animation-delay:298.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2983){-webkit-animation-delay:298.3s;animation-delay:298.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2984){-webkit-animation-delay:298.4s;animation-delay:298.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2985){-webkit-animation-delay:298.5s;animation-delay:298.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2986){-webkit-animation-delay:298.6s;animation-delay:298.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2987){-webkit-animation-delay:298.7s;animation-delay:298.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2988){-webkit-animation-delay:298.8s;animation-delay:298.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2989){-webkit-animation-delay:298.9s;animation-delay:298.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2990){-webkit-animation-delay:299s;animation-delay:299s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2991){-webkit-animation-delay:299.1s;animation-delay:299.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2992){-webkit-animation-delay:299.2s;animation-delay:299.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2993){-webkit-animation-delay:299.3s;animation-delay:299.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2994){-webkit-animation-delay:299.4s;animation-delay:299.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2995){-webkit-animation-delay:299.5s;animation-delay:299.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2996){-webkit-animation-delay:299.6s;animation-delay:299.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2997){-webkit-animation-delay:299.7s;animation-delay:299.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2998){-webkit-animation-delay:299.8s;animation-delay:299.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(2999){-webkit-animation-delay:299.9s;animation-delay:299.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3000){-webkit-animation-delay:300s;animation-delay:300s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3001){-webkit-animation-delay:300.1s;animation-delay:300.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3002){-webkit-animation-delay:300.2s;animation-delay:300.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3003){-webkit-animation-delay:300.3s;animation-delay:300.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3004){-webkit-animation-delay:300.4s;animation-delay:300.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3005){-webkit-animation-delay:300.5s;animation-delay:300.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3006){-webkit-animation-delay:300.6s;animation-delay:300.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3007){-webkit-animation-delay:300.7s;animation-delay:300.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3008){-webkit-animation-delay:300.8s;animation-delay:300.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3009){-webkit-animation-delay:300.9s;animation-delay:300.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3010){-webkit-animation-delay:301s;animation-delay:301s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3011){-webkit-animation-delay:301.1s;animation-delay:301.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3012){-webkit-animation-delay:301.2s;animation-delay:301.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3013){-webkit-animation-delay:301.3s;animation-delay:301.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3014){-webkit-animation-delay:301.4s;animation-delay:301.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3015){-webkit-animation-delay:301.5s;animation-delay:301.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3016){-webkit-animation-delay:301.6s;animation-delay:301.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3017){-webkit-animation-delay:301.7s;animation-delay:301.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3018){-webkit-animation-delay:301.8s;animation-delay:301.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3019){-webkit-animation-delay:301.9s;animation-delay:301.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3020){-webkit-animation-delay:302s;animation-delay:302s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3021){-webkit-animation-delay:302.1s;animation-delay:302.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3022){-webkit-animation-delay:302.2s;animation-delay:302.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3023){-webkit-animation-delay:302.3s;animation-delay:302.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3024){-webkit-animation-delay:302.4s;animation-delay:302.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3025){-webkit-animation-delay:302.5s;animation-delay:302.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3026){-webkit-animation-delay:302.6s;animation-delay:302.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3027){-webkit-animation-delay:302.7s;animation-delay:302.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3028){-webkit-animation-delay:302.8s;animation-delay:302.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3029){-webkit-animation-delay:302.9s;animation-delay:302.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3030){-webkit-animation-delay:303s;animation-delay:303s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3031){-webkit-animation-delay:303.1s;animation-delay:303.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3032){-webkit-animation-delay:303.2s;animation-delay:303.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3033){-webkit-animation-delay:303.3s;animation-delay:303.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3034){-webkit-animation-delay:303.4s;animation-delay:303.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3035){-webkit-animation-delay:303.5s;animation-delay:303.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3036){-webkit-animation-delay:303.6s;animation-delay:303.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3037){-webkit-animation-delay:303.7s;animation-delay:303.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3038){-webkit-animation-delay:303.8s;animation-delay:303.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3039){-webkit-animation-delay:303.9s;animation-delay:303.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3040){-webkit-animation-delay:304s;animation-delay:304s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3041){-webkit-animation-delay:304.1s;animation-delay:304.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3042){-webkit-animation-delay:304.2s;animation-delay:304.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3043){-webkit-animation-delay:304.3s;animation-delay:304.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3044){-webkit-animation-delay:304.4s;animation-delay:304.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3045){-webkit-animation-delay:304.5s;animation-delay:304.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3046){-webkit-animation-delay:304.6s;animation-delay:304.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3047){-webkit-animation-delay:304.7s;animation-delay:304.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3048){-webkit-animation-delay:304.8s;animation-delay:304.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3049){-webkit-animation-delay:304.9s;animation-delay:304.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3050){-webkit-animation-delay:305s;animation-delay:305s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3051){-webkit-animation-delay:305.1s;animation-delay:305.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3052){-webkit-animation-delay:305.2s;animation-delay:305.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3053){-webkit-animation-delay:305.3s;animation-delay:305.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3054){-webkit-animation-delay:305.4s;animation-delay:305.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3055){-webkit-animation-delay:305.5s;animation-delay:305.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3056){-webkit-animation-delay:305.6s;animation-delay:305.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3057){-webkit-animation-delay:305.7s;animation-delay:305.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3058){-webkit-animation-delay:305.8s;animation-delay:305.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3059){-webkit-animation-delay:305.9s;animation-delay:305.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3060){-webkit-animation-delay:306s;animation-delay:306s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3061){-webkit-animation-delay:306.1s;animation-delay:306.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3062){-webkit-animation-delay:306.2s;animation-delay:306.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3063){-webkit-animation-delay:306.3s;animation-delay:306.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3064){-webkit-animation-delay:306.4s;animation-delay:306.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3065){-webkit-animation-delay:306.5s;animation-delay:306.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3066){-webkit-animation-delay:306.6s;animation-delay:306.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3067){-webkit-animation-delay:306.7s;animation-delay:306.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3068){-webkit-animation-delay:306.8s;animation-delay:306.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3069){-webkit-animation-delay:306.9s;animation-delay:306.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3070){-webkit-animation-delay:307s;animation-delay:307s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3071){-webkit-animation-delay:307.1s;animation-delay:307.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3072){-webkit-animation-delay:307.2s;animation-delay:307.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3073){-webkit-animation-delay:307.3s;animation-delay:307.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3074){-webkit-animation-delay:307.4s;animation-delay:307.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3075){-webkit-animation-delay:307.5s;animation-delay:307.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3076){-webkit-animation-delay:307.6s;animation-delay:307.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3077){-webkit-animation-delay:307.7s;animation-delay:307.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3078){-webkit-animation-delay:307.8s;animation-delay:307.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3079){-webkit-animation-delay:307.9s;animation-delay:307.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3080){-webkit-animation-delay:308s;animation-delay:308s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3081){-webkit-animation-delay:308.1s;animation-delay:308.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3082){-webkit-animation-delay:308.2s;animation-delay:308.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3083){-webkit-animation-delay:308.3s;animation-delay:308.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3084){-webkit-animation-delay:308.4s;animation-delay:308.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3085){-webkit-animation-delay:308.5s;animation-delay:308.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3086){-webkit-animation-delay:308.6s;animation-delay:308.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3087){-webkit-animation-delay:308.7s;animation-delay:308.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3088){-webkit-animation-delay:308.8s;animation-delay:308.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3089){-webkit-animation-delay:308.9s;animation-delay:308.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3090){-webkit-animation-delay:309s;animation-delay:309s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3091){-webkit-animation-delay:309.1s;animation-delay:309.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3092){-webkit-animation-delay:309.2s;animation-delay:309.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3093){-webkit-animation-delay:309.3s;animation-delay:309.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3094){-webkit-animation-delay:309.4s;animation-delay:309.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3095){-webkit-animation-delay:309.5s;animation-delay:309.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3096){-webkit-animation-delay:309.6s;animation-delay:309.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3097){-webkit-animation-delay:309.7s;animation-delay:309.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3098){-webkit-animation-delay:309.8s;animation-delay:309.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3099){-webkit-animation-delay:309.9s;animation-delay:309.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3100){-webkit-animation-delay:310s;animation-delay:310s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3101){-webkit-animation-delay:310.1s;animation-delay:310.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3102){-webkit-animation-delay:310.2s;animation-delay:310.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3103){-webkit-animation-delay:310.3s;animation-delay:310.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3104){-webkit-animation-delay:310.4s;animation-delay:310.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3105){-webkit-animation-delay:310.5s;animation-delay:310.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3106){-webkit-animation-delay:310.6s;animation-delay:310.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3107){-webkit-animation-delay:310.7s;animation-delay:310.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3108){-webkit-animation-delay:310.8s;animation-delay:310.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3109){-webkit-animation-delay:310.9s;animation-delay:310.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3110){-webkit-animation-delay:311s;animation-delay:311s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3111){-webkit-animation-delay:311.1s;animation-delay:311.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3112){-webkit-animation-delay:311.2s;animation-delay:311.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3113){-webkit-animation-delay:311.3s;animation-delay:311.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3114){-webkit-animation-delay:311.4s;animation-delay:311.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3115){-webkit-animation-delay:311.5s;animation-delay:311.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3116){-webkit-animation-delay:311.6s;animation-delay:311.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3117){-webkit-animation-delay:311.7s;animation-delay:311.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3118){-webkit-animation-delay:311.8s;animation-delay:311.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3119){-webkit-animation-delay:311.9s;animation-delay:311.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3120){-webkit-animation-delay:312s;animation-delay:312s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3121){-webkit-animation-delay:312.1s;animation-delay:312.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3122){-webkit-animation-delay:312.2s;animation-delay:312.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3123){-webkit-animation-delay:312.3s;animation-delay:312.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3124){-webkit-animation-delay:312.4s;animation-delay:312.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3125){-webkit-animation-delay:312.5s;animation-delay:312.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3126){-webkit-animation-delay:312.6s;animation-delay:312.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3127){-webkit-animation-delay:312.7s;animation-delay:312.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3128){-webkit-animation-delay:312.8s;animation-delay:312.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3129){-webkit-animation-delay:312.9s;animation-delay:312.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3130){-webkit-animation-delay:313s;animation-delay:313s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3131){-webkit-animation-delay:313.1s;animation-delay:313.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3132){-webkit-animation-delay:313.2s;animation-delay:313.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3133){-webkit-animation-delay:313.3s;animation-delay:313.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3134){-webkit-animation-delay:313.4s;animation-delay:313.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3135){-webkit-animation-delay:313.5s;animation-delay:313.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3136){-webkit-animation-delay:313.6s;animation-delay:313.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3137){-webkit-animation-delay:313.7s;animation-delay:313.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3138){-webkit-animation-delay:313.8s;animation-delay:313.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3139){-webkit-animation-delay:313.9s;animation-delay:313.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3140){-webkit-animation-delay:314s;animation-delay:314s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3141){-webkit-animation-delay:314.1s;animation-delay:314.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3142){-webkit-animation-delay:314.2s;animation-delay:314.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3143){-webkit-animation-delay:314.3s;animation-delay:314.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3144){-webkit-animation-delay:314.4s;animation-delay:314.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3145){-webkit-animation-delay:314.5s;animation-delay:314.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3146){-webkit-animation-delay:314.6s;animation-delay:314.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3147){-webkit-animation-delay:314.7s;animation-delay:314.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3148){-webkit-animation-delay:314.8s;animation-delay:314.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3149){-webkit-animation-delay:314.9s;animation-delay:314.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3150){-webkit-animation-delay:315s;animation-delay:315s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3151){-webkit-animation-delay:315.1s;animation-delay:315.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3152){-webkit-animation-delay:315.2s;animation-delay:315.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3153){-webkit-animation-delay:315.3s;animation-delay:315.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3154){-webkit-animation-delay:315.4s;animation-delay:315.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3155){-webkit-animation-delay:315.5s;animation-delay:315.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3156){-webkit-animation-delay:315.6s;animation-delay:315.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3157){-webkit-animation-delay:315.7s;animation-delay:315.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3158){-webkit-animation-delay:315.8s;animation-delay:315.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3159){-webkit-animation-delay:315.9s;animation-delay:315.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3160){-webkit-animation-delay:316s;animation-delay:316s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3161){-webkit-animation-delay:316.1s;animation-delay:316.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3162){-webkit-animation-delay:316.2s;animation-delay:316.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3163){-webkit-animation-delay:316.3s;animation-delay:316.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3164){-webkit-animation-delay:316.4s;animation-delay:316.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3165){-webkit-animation-delay:316.5s;animation-delay:316.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3166){-webkit-animation-delay:316.6s;animation-delay:316.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3167){-webkit-animation-delay:316.7s;animation-delay:316.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3168){-webkit-animation-delay:316.8s;animation-delay:316.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3169){-webkit-animation-delay:316.9s;animation-delay:316.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3170){-webkit-animation-delay:317s;animation-delay:317s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3171){-webkit-animation-delay:317.1s;animation-delay:317.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3172){-webkit-animation-delay:317.2s;animation-delay:317.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3173){-webkit-animation-delay:317.3s;animation-delay:317.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3174){-webkit-animation-delay:317.4s;animation-delay:317.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3175){-webkit-animation-delay:317.5s;animation-delay:317.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3176){-webkit-animation-delay:317.6s;animation-delay:317.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3177){-webkit-animation-delay:317.7s;animation-delay:317.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3178){-webkit-animation-delay:317.8s;animation-delay:317.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3179){-webkit-animation-delay:317.9s;animation-delay:317.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3180){-webkit-animation-delay:318s;animation-delay:318s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3181){-webkit-animation-delay:318.1s;animation-delay:318.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3182){-webkit-animation-delay:318.2s;animation-delay:318.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3183){-webkit-animation-delay:318.3s;animation-delay:318.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3184){-webkit-animation-delay:318.4s;animation-delay:318.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3185){-webkit-animation-delay:318.5s;animation-delay:318.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3186){-webkit-animation-delay:318.6s;animation-delay:318.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3187){-webkit-animation-delay:318.7s;animation-delay:318.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3188){-webkit-animation-delay:318.8s;animation-delay:318.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3189){-webkit-animation-delay:318.9s;animation-delay:318.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3190){-webkit-animation-delay:319s;animation-delay:319s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3191){-webkit-animation-delay:319.1s;animation-delay:319.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3192){-webkit-animation-delay:319.2s;animation-delay:319.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3193){-webkit-animation-delay:319.3s;animation-delay:319.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3194){-webkit-animation-delay:319.4s;animation-delay:319.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3195){-webkit-animation-delay:319.5s;animation-delay:319.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3196){-webkit-animation-delay:319.6s;animation-delay:319.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3197){-webkit-animation-delay:319.7s;animation-delay:319.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3198){-webkit-animation-delay:319.8s;animation-delay:319.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3199){-webkit-animation-delay:319.9s;animation-delay:319.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3200){-webkit-animation-delay:320s;animation-delay:320s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3201){-webkit-animation-delay:320.1s;animation-delay:320.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3202){-webkit-animation-delay:320.2s;animation-delay:320.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3203){-webkit-animation-delay:320.3s;animation-delay:320.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3204){-webkit-animation-delay:320.4s;animation-delay:320.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3205){-webkit-animation-delay:320.5s;animation-delay:320.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3206){-webkit-animation-delay:320.6s;animation-delay:320.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3207){-webkit-animation-delay:320.7s;animation-delay:320.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3208){-webkit-animation-delay:320.8s;animation-delay:320.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3209){-webkit-animation-delay:320.9s;animation-delay:320.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3210){-webkit-animation-delay:321s;animation-delay:321s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3211){-webkit-animation-delay:321.1s;animation-delay:321.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3212){-webkit-animation-delay:321.2s;animation-delay:321.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3213){-webkit-animation-delay:321.3s;animation-delay:321.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3214){-webkit-animation-delay:321.4s;animation-delay:321.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3215){-webkit-animation-delay:321.5s;animation-delay:321.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3216){-webkit-animation-delay:321.6s;animation-delay:321.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3217){-webkit-animation-delay:321.7s;animation-delay:321.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3218){-webkit-animation-delay:321.8s;animation-delay:321.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3219){-webkit-animation-delay:321.9s;animation-delay:321.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3220){-webkit-animation-delay:322s;animation-delay:322s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3221){-webkit-animation-delay:322.1s;animation-delay:322.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3222){-webkit-animation-delay:322.2s;animation-delay:322.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3223){-webkit-animation-delay:322.3s;animation-delay:322.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3224){-webkit-animation-delay:322.4s;animation-delay:322.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3225){-webkit-animation-delay:322.5s;animation-delay:322.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3226){-webkit-animation-delay:322.6s;animation-delay:322.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3227){-webkit-animation-delay:322.7s;animation-delay:322.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3228){-webkit-animation-delay:322.8s;animation-delay:322.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3229){-webkit-animation-delay:322.9s;animation-delay:322.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3230){-webkit-animation-delay:323s;animation-delay:323s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3231){-webkit-animation-delay:323.1s;animation-delay:323.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3232){-webkit-animation-delay:323.2s;animation-delay:323.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3233){-webkit-animation-delay:323.3s;animation-delay:323.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3234){-webkit-animation-delay:323.4s;animation-delay:323.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3235){-webkit-animation-delay:323.5s;animation-delay:323.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3236){-webkit-animation-delay:323.6s;animation-delay:323.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3237){-webkit-animation-delay:323.7s;animation-delay:323.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3238){-webkit-animation-delay:323.8s;animation-delay:323.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3239){-webkit-animation-delay:323.9s;animation-delay:323.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3240){-webkit-animation-delay:324s;animation-delay:324s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3241){-webkit-animation-delay:324.1s;animation-delay:324.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3242){-webkit-animation-delay:324.2s;animation-delay:324.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3243){-webkit-animation-delay:324.3s;animation-delay:324.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3244){-webkit-animation-delay:324.4s;animation-delay:324.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3245){-webkit-animation-delay:324.5s;animation-delay:324.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3246){-webkit-animation-delay:324.6s;animation-delay:324.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3247){-webkit-animation-delay:324.7s;animation-delay:324.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3248){-webkit-animation-delay:324.8s;animation-delay:324.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3249){-webkit-animation-delay:324.9s;animation-delay:324.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3250){-webkit-animation-delay:325s;animation-delay:325s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3251){-webkit-animation-delay:325.1s;animation-delay:325.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3252){-webkit-animation-delay:325.2s;animation-delay:325.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3253){-webkit-animation-delay:325.3s;animation-delay:325.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3254){-webkit-animation-delay:325.4s;animation-delay:325.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3255){-webkit-animation-delay:325.5s;animation-delay:325.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3256){-webkit-animation-delay:325.6s;animation-delay:325.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3257){-webkit-animation-delay:325.7s;animation-delay:325.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3258){-webkit-animation-delay:325.8s;animation-delay:325.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3259){-webkit-animation-delay:325.9s;animation-delay:325.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3260){-webkit-animation-delay:326s;animation-delay:326s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3261){-webkit-animation-delay:326.1s;animation-delay:326.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3262){-webkit-animation-delay:326.2s;animation-delay:326.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3263){-webkit-animation-delay:326.3s;animation-delay:326.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3264){-webkit-animation-delay:326.4s;animation-delay:326.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3265){-webkit-animation-delay:326.5s;animation-delay:326.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3266){-webkit-animation-delay:326.6s;animation-delay:326.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3267){-webkit-animation-delay:326.7s;animation-delay:326.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3268){-webkit-animation-delay:326.8s;animation-delay:326.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3269){-webkit-animation-delay:326.9s;animation-delay:326.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3270){-webkit-animation-delay:327s;animation-delay:327s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3271){-webkit-animation-delay:327.1s;animation-delay:327.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3272){-webkit-animation-delay:327.2s;animation-delay:327.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3273){-webkit-animation-delay:327.3s;animation-delay:327.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3274){-webkit-animation-delay:327.4s;animation-delay:327.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3275){-webkit-animation-delay:327.5s;animation-delay:327.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3276){-webkit-animation-delay:327.6s;animation-delay:327.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3277){-webkit-animation-delay:327.7s;animation-delay:327.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3278){-webkit-animation-delay:327.8s;animation-delay:327.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3279){-webkit-animation-delay:327.9s;animation-delay:327.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3280){-webkit-animation-delay:328s;animation-delay:328s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3281){-webkit-animation-delay:328.1s;animation-delay:328.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3282){-webkit-animation-delay:328.2s;animation-delay:328.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3283){-webkit-animation-delay:328.3s;animation-delay:328.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3284){-webkit-animation-delay:328.4s;animation-delay:328.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3285){-webkit-animation-delay:328.5s;animation-delay:328.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3286){-webkit-animation-delay:328.6s;animation-delay:328.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3287){-webkit-animation-delay:328.7s;animation-delay:328.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3288){-webkit-animation-delay:328.8s;animation-delay:328.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3289){-webkit-animation-delay:328.9s;animation-delay:328.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3290){-webkit-animation-delay:329s;animation-delay:329s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3291){-webkit-animation-delay:329.1s;animation-delay:329.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3292){-webkit-animation-delay:329.2s;animation-delay:329.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3293){-webkit-animation-delay:329.3s;animation-delay:329.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3294){-webkit-animation-delay:329.4s;animation-delay:329.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3295){-webkit-animation-delay:329.5s;animation-delay:329.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3296){-webkit-animation-delay:329.6s;animation-delay:329.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3297){-webkit-animation-delay:329.7s;animation-delay:329.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3298){-webkit-animation-delay:329.8s;animation-delay:329.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3299){-webkit-animation-delay:329.9s;animation-delay:329.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3300){-webkit-animation-delay:330s;animation-delay:330s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3301){-webkit-animation-delay:330.1s;animation-delay:330.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3302){-webkit-animation-delay:330.2s;animation-delay:330.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3303){-webkit-animation-delay:330.3s;animation-delay:330.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3304){-webkit-animation-delay:330.4s;animation-delay:330.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3305){-webkit-animation-delay:330.5s;animation-delay:330.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3306){-webkit-animation-delay:330.6s;animation-delay:330.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3307){-webkit-animation-delay:330.7s;animation-delay:330.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3308){-webkit-animation-delay:330.8s;animation-delay:330.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3309){-webkit-animation-delay:330.9s;animation-delay:330.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3310){-webkit-animation-delay:331s;animation-delay:331s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3311){-webkit-animation-delay:331.1s;animation-delay:331.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3312){-webkit-animation-delay:331.2s;animation-delay:331.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3313){-webkit-animation-delay:331.3s;animation-delay:331.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3314){-webkit-animation-delay:331.4s;animation-delay:331.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3315){-webkit-animation-delay:331.5s;animation-delay:331.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3316){-webkit-animation-delay:331.6s;animation-delay:331.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3317){-webkit-animation-delay:331.7s;animation-delay:331.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3318){-webkit-animation-delay:331.8s;animation-delay:331.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3319){-webkit-animation-delay:331.9s;animation-delay:331.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3320){-webkit-animation-delay:332s;animation-delay:332s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3321){-webkit-animation-delay:332.1s;animation-delay:332.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3322){-webkit-animation-delay:332.2s;animation-delay:332.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3323){-webkit-animation-delay:332.3s;animation-delay:332.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3324){-webkit-animation-delay:332.4s;animation-delay:332.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3325){-webkit-animation-delay:332.5s;animation-delay:332.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3326){-webkit-animation-delay:332.6s;animation-delay:332.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3327){-webkit-animation-delay:332.7s;animation-delay:332.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3328){-webkit-animation-delay:332.8s;animation-delay:332.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3329){-webkit-animation-delay:332.9s;animation-delay:332.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3330){-webkit-animation-delay:333s;animation-delay:333s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3331){-webkit-animation-delay:333.1s;animation-delay:333.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3332){-webkit-animation-delay:333.2s;animation-delay:333.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3333){-webkit-animation-delay:333.3s;animation-delay:333.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3334){-webkit-animation-delay:333.4s;animation-delay:333.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3335){-webkit-animation-delay:333.5s;animation-delay:333.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3336){-webkit-animation-delay:333.6s;animation-delay:333.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3337){-webkit-animation-delay:333.7s;animation-delay:333.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3338){-webkit-animation-delay:333.8s;animation-delay:333.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3339){-webkit-animation-delay:333.9s;animation-delay:333.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3340){-webkit-animation-delay:334s;animation-delay:334s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3341){-webkit-animation-delay:334.1s;animation-delay:334.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3342){-webkit-animation-delay:334.2s;animation-delay:334.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3343){-webkit-animation-delay:334.3s;animation-delay:334.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3344){-webkit-animation-delay:334.4s;animation-delay:334.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3345){-webkit-animation-delay:334.5s;animation-delay:334.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3346){-webkit-animation-delay:334.6s;animation-delay:334.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3347){-webkit-animation-delay:334.7s;animation-delay:334.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3348){-webkit-animation-delay:334.8s;animation-delay:334.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3349){-webkit-animation-delay:334.9s;animation-delay:334.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3350){-webkit-animation-delay:335s;animation-delay:335s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3351){-webkit-animation-delay:335.1s;animation-delay:335.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3352){-webkit-animation-delay:335.2s;animation-delay:335.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3353){-webkit-animation-delay:335.3s;animation-delay:335.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3354){-webkit-animation-delay:335.4s;animation-delay:335.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3355){-webkit-animation-delay:335.5s;animation-delay:335.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3356){-webkit-animation-delay:335.6s;animation-delay:335.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3357){-webkit-animation-delay:335.7s;animation-delay:335.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3358){-webkit-animation-delay:335.8s;animation-delay:335.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3359){-webkit-animation-delay:335.9s;animation-delay:335.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3360){-webkit-animation-delay:336s;animation-delay:336s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3361){-webkit-animation-delay:336.1s;animation-delay:336.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3362){-webkit-animation-delay:336.2s;animation-delay:336.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3363){-webkit-animation-delay:336.3s;animation-delay:336.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3364){-webkit-animation-delay:336.4s;animation-delay:336.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3365){-webkit-animation-delay:336.5s;animation-delay:336.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3366){-webkit-animation-delay:336.6s;animation-delay:336.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3367){-webkit-animation-delay:336.7s;animation-delay:336.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3368){-webkit-animation-delay:336.8s;animation-delay:336.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3369){-webkit-animation-delay:336.9s;animation-delay:336.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3370){-webkit-animation-delay:337s;animation-delay:337s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3371){-webkit-animation-delay:337.1s;animation-delay:337.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3372){-webkit-animation-delay:337.2s;animation-delay:337.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3373){-webkit-animation-delay:337.3s;animation-delay:337.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3374){-webkit-animation-delay:337.4s;animation-delay:337.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3375){-webkit-animation-delay:337.5s;animation-delay:337.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3376){-webkit-animation-delay:337.6s;animation-delay:337.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3377){-webkit-animation-delay:337.7s;animation-delay:337.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3378){-webkit-animation-delay:337.8s;animation-delay:337.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3379){-webkit-animation-delay:337.9s;animation-delay:337.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3380){-webkit-animation-delay:338s;animation-delay:338s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3381){-webkit-animation-delay:338.1s;animation-delay:338.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3382){-webkit-animation-delay:338.2s;animation-delay:338.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3383){-webkit-animation-delay:338.3s;animation-delay:338.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3384){-webkit-animation-delay:338.4s;animation-delay:338.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3385){-webkit-animation-delay:338.5s;animation-delay:338.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3386){-webkit-animation-delay:338.6s;animation-delay:338.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3387){-webkit-animation-delay:338.7s;animation-delay:338.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3388){-webkit-animation-delay:338.8s;animation-delay:338.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3389){-webkit-animation-delay:338.9s;animation-delay:338.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3390){-webkit-animation-delay:339s;animation-delay:339s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3391){-webkit-animation-delay:339.1s;animation-delay:339.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3392){-webkit-animation-delay:339.2s;animation-delay:339.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3393){-webkit-animation-delay:339.3s;animation-delay:339.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3394){-webkit-animation-delay:339.4s;animation-delay:339.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3395){-webkit-animation-delay:339.5s;animation-delay:339.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3396){-webkit-animation-delay:339.6s;animation-delay:339.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3397){-webkit-animation-delay:339.7s;animation-delay:339.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3398){-webkit-animation-delay:339.8s;animation-delay:339.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3399){-webkit-animation-delay:339.9s;animation-delay:339.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3400){-webkit-animation-delay:340s;animation-delay:340s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3401){-webkit-animation-delay:340.1s;animation-delay:340.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3402){-webkit-animation-delay:340.2s;animation-delay:340.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3403){-webkit-animation-delay:340.3s;animation-delay:340.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3404){-webkit-animation-delay:340.4s;animation-delay:340.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3405){-webkit-animation-delay:340.5s;animation-delay:340.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3406){-webkit-animation-delay:340.6s;animation-delay:340.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3407){-webkit-animation-delay:340.7s;animation-delay:340.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3408){-webkit-animation-delay:340.8s;animation-delay:340.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3409){-webkit-animation-delay:340.9s;animation-delay:340.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3410){-webkit-animation-delay:341s;animation-delay:341s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3411){-webkit-animation-delay:341.1s;animation-delay:341.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3412){-webkit-animation-delay:341.2s;animation-delay:341.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3413){-webkit-animation-delay:341.3s;animation-delay:341.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3414){-webkit-animation-delay:341.4s;animation-delay:341.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3415){-webkit-animation-delay:341.5s;animation-delay:341.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3416){-webkit-animation-delay:341.6s;animation-delay:341.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3417){-webkit-animation-delay:341.7s;animation-delay:341.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3418){-webkit-animation-delay:341.8s;animation-delay:341.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3419){-webkit-animation-delay:341.9s;animation-delay:341.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3420){-webkit-animation-delay:342s;animation-delay:342s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3421){-webkit-animation-delay:342.1s;animation-delay:342.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3422){-webkit-animation-delay:342.2s;animation-delay:342.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3423){-webkit-animation-delay:342.3s;animation-delay:342.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3424){-webkit-animation-delay:342.4s;animation-delay:342.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3425){-webkit-animation-delay:342.5s;animation-delay:342.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3426){-webkit-animation-delay:342.6s;animation-delay:342.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3427){-webkit-animation-delay:342.7s;animation-delay:342.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3428){-webkit-animation-delay:342.8s;animation-delay:342.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3429){-webkit-animation-delay:342.9s;animation-delay:342.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3430){-webkit-animation-delay:343s;animation-delay:343s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3431){-webkit-animation-delay:343.1s;animation-delay:343.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3432){-webkit-animation-delay:343.2s;animation-delay:343.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3433){-webkit-animation-delay:343.3s;animation-delay:343.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3434){-webkit-animation-delay:343.4s;animation-delay:343.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3435){-webkit-animation-delay:343.5s;animation-delay:343.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3436){-webkit-animation-delay:343.6s;animation-delay:343.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3437){-webkit-animation-delay:343.7s;animation-delay:343.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3438){-webkit-animation-delay:343.8s;animation-delay:343.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3439){-webkit-animation-delay:343.9s;animation-delay:343.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3440){-webkit-animation-delay:344s;animation-delay:344s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3441){-webkit-animation-delay:344.1s;animation-delay:344.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3442){-webkit-animation-delay:344.2s;animation-delay:344.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3443){-webkit-animation-delay:344.3s;animation-delay:344.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3444){-webkit-animation-delay:344.4s;animation-delay:344.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3445){-webkit-animation-delay:344.5s;animation-delay:344.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3446){-webkit-animation-delay:344.6s;animation-delay:344.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3447){-webkit-animation-delay:344.7s;animation-delay:344.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3448){-webkit-animation-delay:344.8s;animation-delay:344.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3449){-webkit-animation-delay:344.9s;animation-delay:344.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3450){-webkit-animation-delay:345s;animation-delay:345s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3451){-webkit-animation-delay:345.1s;animation-delay:345.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3452){-webkit-animation-delay:345.2s;animation-delay:345.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3453){-webkit-animation-delay:345.3s;animation-delay:345.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3454){-webkit-animation-delay:345.4s;animation-delay:345.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3455){-webkit-animation-delay:345.5s;animation-delay:345.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3456){-webkit-animation-delay:345.6s;animation-delay:345.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3457){-webkit-animation-delay:345.7s;animation-delay:345.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3458){-webkit-animation-delay:345.8s;animation-delay:345.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3459){-webkit-animation-delay:345.9s;animation-delay:345.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3460){-webkit-animation-delay:346s;animation-delay:346s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3461){-webkit-animation-delay:346.1s;animation-delay:346.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3462){-webkit-animation-delay:346.2s;animation-delay:346.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3463){-webkit-animation-delay:346.3s;animation-delay:346.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3464){-webkit-animation-delay:346.4s;animation-delay:346.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3465){-webkit-animation-delay:346.5s;animation-delay:346.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3466){-webkit-animation-delay:346.6s;animation-delay:346.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3467){-webkit-animation-delay:346.7s;animation-delay:346.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3468){-webkit-animation-delay:346.8s;animation-delay:346.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3469){-webkit-animation-delay:346.9s;animation-delay:346.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3470){-webkit-animation-delay:347s;animation-delay:347s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3471){-webkit-animation-delay:347.1s;animation-delay:347.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3472){-webkit-animation-delay:347.2s;animation-delay:347.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3473){-webkit-animation-delay:347.3s;animation-delay:347.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3474){-webkit-animation-delay:347.4s;animation-delay:347.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3475){-webkit-animation-delay:347.5s;animation-delay:347.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3476){-webkit-animation-delay:347.6s;animation-delay:347.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3477){-webkit-animation-delay:347.7s;animation-delay:347.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3478){-webkit-animation-delay:347.8s;animation-delay:347.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3479){-webkit-animation-delay:347.9s;animation-delay:347.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3480){-webkit-animation-delay:348s;animation-delay:348s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3481){-webkit-animation-delay:348.1s;animation-delay:348.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3482){-webkit-animation-delay:348.2s;animation-delay:348.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3483){-webkit-animation-delay:348.3s;animation-delay:348.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3484){-webkit-animation-delay:348.4s;animation-delay:348.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3485){-webkit-animation-delay:348.5s;animation-delay:348.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3486){-webkit-animation-delay:348.6s;animation-delay:348.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3487){-webkit-animation-delay:348.7s;animation-delay:348.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3488){-webkit-animation-delay:348.8s;animation-delay:348.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3489){-webkit-animation-delay:348.9s;animation-delay:348.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3490){-webkit-animation-delay:349s;animation-delay:349s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3491){-webkit-animation-delay:349.1s;animation-delay:349.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3492){-webkit-animation-delay:349.2s;animation-delay:349.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3493){-webkit-animation-delay:349.3s;animation-delay:349.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3494){-webkit-animation-delay:349.4s;animation-delay:349.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3495){-webkit-animation-delay:349.5s;animation-delay:349.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3496){-webkit-animation-delay:349.6s;animation-delay:349.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3497){-webkit-animation-delay:349.7s;animation-delay:349.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3498){-webkit-animation-delay:349.8s;animation-delay:349.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3499){-webkit-animation-delay:349.9s;animation-delay:349.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3500){-webkit-animation-delay:350s;animation-delay:350s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3501){-webkit-animation-delay:350.1s;animation-delay:350.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3502){-webkit-animation-delay:350.2s;animation-delay:350.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3503){-webkit-animation-delay:350.3s;animation-delay:350.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3504){-webkit-animation-delay:350.4s;animation-delay:350.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3505){-webkit-animation-delay:350.5s;animation-delay:350.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3506){-webkit-animation-delay:350.6s;animation-delay:350.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3507){-webkit-animation-delay:350.7s;animation-delay:350.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3508){-webkit-animation-delay:350.8s;animation-delay:350.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3509){-webkit-animation-delay:350.9s;animation-delay:350.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3510){-webkit-animation-delay:351s;animation-delay:351s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3511){-webkit-animation-delay:351.1s;animation-delay:351.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3512){-webkit-animation-delay:351.2s;animation-delay:351.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3513){-webkit-animation-delay:351.3s;animation-delay:351.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3514){-webkit-animation-delay:351.4s;animation-delay:351.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3515){-webkit-animation-delay:351.5s;animation-delay:351.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3516){-webkit-animation-delay:351.6s;animation-delay:351.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3517){-webkit-animation-delay:351.7s;animation-delay:351.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3518){-webkit-animation-delay:351.8s;animation-delay:351.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3519){-webkit-animation-delay:351.9s;animation-delay:351.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3520){-webkit-animation-delay:352s;animation-delay:352s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3521){-webkit-animation-delay:352.1s;animation-delay:352.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3522){-webkit-animation-delay:352.2s;animation-delay:352.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3523){-webkit-animation-delay:352.3s;animation-delay:352.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3524){-webkit-animation-delay:352.4s;animation-delay:352.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3525){-webkit-animation-delay:352.5s;animation-delay:352.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3526){-webkit-animation-delay:352.6s;animation-delay:352.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3527){-webkit-animation-delay:352.7s;animation-delay:352.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3528){-webkit-animation-delay:352.8s;animation-delay:352.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3529){-webkit-animation-delay:352.9s;animation-delay:352.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3530){-webkit-animation-delay:353s;animation-delay:353s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3531){-webkit-animation-delay:353.1s;animation-delay:353.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3532){-webkit-animation-delay:353.2s;animation-delay:353.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3533){-webkit-animation-delay:353.3s;animation-delay:353.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3534){-webkit-animation-delay:353.4s;animation-delay:353.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3535){-webkit-animation-delay:353.5s;animation-delay:353.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3536){-webkit-animation-delay:353.6s;animation-delay:353.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3537){-webkit-animation-delay:353.7s;animation-delay:353.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3538){-webkit-animation-delay:353.8s;animation-delay:353.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3539){-webkit-animation-delay:353.9s;animation-delay:353.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3540){-webkit-animation-delay:354s;animation-delay:354s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3541){-webkit-animation-delay:354.1s;animation-delay:354.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3542){-webkit-animation-delay:354.2s;animation-delay:354.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3543){-webkit-animation-delay:354.3s;animation-delay:354.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3544){-webkit-animation-delay:354.4s;animation-delay:354.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3545){-webkit-animation-delay:354.5s;animation-delay:354.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3546){-webkit-animation-delay:354.6s;animation-delay:354.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3547){-webkit-animation-delay:354.7s;animation-delay:354.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3548){-webkit-animation-delay:354.8s;animation-delay:354.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3549){-webkit-animation-delay:354.9s;animation-delay:354.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3550){-webkit-animation-delay:355s;animation-delay:355s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3551){-webkit-animation-delay:355.1s;animation-delay:355.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3552){-webkit-animation-delay:355.2s;animation-delay:355.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3553){-webkit-animation-delay:355.3s;animation-delay:355.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3554){-webkit-animation-delay:355.4s;animation-delay:355.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3555){-webkit-animation-delay:355.5s;animation-delay:355.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3556){-webkit-animation-delay:355.6s;animation-delay:355.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3557){-webkit-animation-delay:355.7s;animation-delay:355.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3558){-webkit-animation-delay:355.8s;animation-delay:355.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3559){-webkit-animation-delay:355.9s;animation-delay:355.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3560){-webkit-animation-delay:356s;animation-delay:356s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3561){-webkit-animation-delay:356.1s;animation-delay:356.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3562){-webkit-animation-delay:356.2s;animation-delay:356.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3563){-webkit-animation-delay:356.3s;animation-delay:356.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3564){-webkit-animation-delay:356.4s;animation-delay:356.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3565){-webkit-animation-delay:356.5s;animation-delay:356.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3566){-webkit-animation-delay:356.6s;animation-delay:356.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3567){-webkit-animation-delay:356.7s;animation-delay:356.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3568){-webkit-animation-delay:356.8s;animation-delay:356.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3569){-webkit-animation-delay:356.9s;animation-delay:356.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3570){-webkit-animation-delay:357s;animation-delay:357s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3571){-webkit-animation-delay:357.1s;animation-delay:357.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3572){-webkit-animation-delay:357.2s;animation-delay:357.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3573){-webkit-animation-delay:357.3s;animation-delay:357.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3574){-webkit-animation-delay:357.4s;animation-delay:357.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3575){-webkit-animation-delay:357.5s;animation-delay:357.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3576){-webkit-animation-delay:357.6s;animation-delay:357.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3577){-webkit-animation-delay:357.7s;animation-delay:357.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3578){-webkit-animation-delay:357.8s;animation-delay:357.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3579){-webkit-animation-delay:357.9s;animation-delay:357.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3580){-webkit-animation-delay:358s;animation-delay:358s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3581){-webkit-animation-delay:358.1s;animation-delay:358.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3582){-webkit-animation-delay:358.2s;animation-delay:358.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3583){-webkit-animation-delay:358.3s;animation-delay:358.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3584){-webkit-animation-delay:358.4s;animation-delay:358.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3585){-webkit-animation-delay:358.5s;animation-delay:358.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3586){-webkit-animation-delay:358.6s;animation-delay:358.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3587){-webkit-animation-delay:358.7s;animation-delay:358.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3588){-webkit-animation-delay:358.8s;animation-delay:358.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3589){-webkit-animation-delay:358.9s;animation-delay:358.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3590){-webkit-animation-delay:359s;animation-delay:359s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3591){-webkit-animation-delay:359.1s;animation-delay:359.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3592){-webkit-animation-delay:359.2s;animation-delay:359.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3593){-webkit-animation-delay:359.3s;animation-delay:359.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3594){-webkit-animation-delay:359.4s;animation-delay:359.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3595){-webkit-animation-delay:359.5s;animation-delay:359.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3596){-webkit-animation-delay:359.6s;animation-delay:359.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3597){-webkit-animation-delay:359.7s;animation-delay:359.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3598){-webkit-animation-delay:359.8s;animation-delay:359.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3599){-webkit-animation-delay:359.9s;animation-delay:359.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3600){-webkit-animation-delay:360s;animation-delay:360s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3601){-webkit-animation-delay:360.1s;animation-delay:360.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3602){-webkit-animation-delay:360.2s;animation-delay:360.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3603){-webkit-animation-delay:360.3s;animation-delay:360.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3604){-webkit-animation-delay:360.4s;animation-delay:360.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3605){-webkit-animation-delay:360.5s;animation-delay:360.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3606){-webkit-animation-delay:360.6s;animation-delay:360.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3607){-webkit-animation-delay:360.7s;animation-delay:360.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3608){-webkit-animation-delay:360.8s;animation-delay:360.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3609){-webkit-animation-delay:360.9s;animation-delay:360.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3610){-webkit-animation-delay:361s;animation-delay:361s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3611){-webkit-animation-delay:361.1s;animation-delay:361.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3612){-webkit-animation-delay:361.2s;animation-delay:361.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3613){-webkit-animation-delay:361.3s;animation-delay:361.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3614){-webkit-animation-delay:361.4s;animation-delay:361.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3615){-webkit-animation-delay:361.5s;animation-delay:361.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3616){-webkit-animation-delay:361.6s;animation-delay:361.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3617){-webkit-animation-delay:361.7s;animation-delay:361.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3618){-webkit-animation-delay:361.8s;animation-delay:361.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3619){-webkit-animation-delay:361.9s;animation-delay:361.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3620){-webkit-animation-delay:362s;animation-delay:362s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3621){-webkit-animation-delay:362.1s;animation-delay:362.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3622){-webkit-animation-delay:362.2s;animation-delay:362.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3623){-webkit-animation-delay:362.3s;animation-delay:362.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3624){-webkit-animation-delay:362.4s;animation-delay:362.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3625){-webkit-animation-delay:362.5s;animation-delay:362.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3626){-webkit-animation-delay:362.6s;animation-delay:362.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3627){-webkit-animation-delay:362.7s;animation-delay:362.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3628){-webkit-animation-delay:362.8s;animation-delay:362.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3629){-webkit-animation-delay:362.9s;animation-delay:362.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3630){-webkit-animation-delay:363s;animation-delay:363s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3631){-webkit-animation-delay:363.1s;animation-delay:363.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3632){-webkit-animation-delay:363.2s;animation-delay:363.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3633){-webkit-animation-delay:363.3s;animation-delay:363.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3634){-webkit-animation-delay:363.4s;animation-delay:363.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3635){-webkit-animation-delay:363.5s;animation-delay:363.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3636){-webkit-animation-delay:363.6s;animation-delay:363.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3637){-webkit-animation-delay:363.7s;animation-delay:363.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3638){-webkit-animation-delay:363.8s;animation-delay:363.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3639){-webkit-animation-delay:363.9s;animation-delay:363.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3640){-webkit-animation-delay:364s;animation-delay:364s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3641){-webkit-animation-delay:364.1s;animation-delay:364.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3642){-webkit-animation-delay:364.2s;animation-delay:364.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3643){-webkit-animation-delay:364.3s;animation-delay:364.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3644){-webkit-animation-delay:364.4s;animation-delay:364.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3645){-webkit-animation-delay:364.5s;animation-delay:364.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3646){-webkit-animation-delay:364.6s;animation-delay:364.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3647){-webkit-animation-delay:364.7s;animation-delay:364.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3648){-webkit-animation-delay:364.8s;animation-delay:364.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3649){-webkit-animation-delay:364.9s;animation-delay:364.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3650){-webkit-animation-delay:365s;animation-delay:365s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3651){-webkit-animation-delay:365.1s;animation-delay:365.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3652){-webkit-animation-delay:365.2s;animation-delay:365.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3653){-webkit-animation-delay:365.3s;animation-delay:365.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3654){-webkit-animation-delay:365.4s;animation-delay:365.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3655){-webkit-animation-delay:365.5s;animation-delay:365.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3656){-webkit-animation-delay:365.6s;animation-delay:365.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3657){-webkit-animation-delay:365.7s;animation-delay:365.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3658){-webkit-animation-delay:365.8s;animation-delay:365.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3659){-webkit-animation-delay:365.9s;animation-delay:365.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3660){-webkit-animation-delay:366s;animation-delay:366s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3661){-webkit-animation-delay:366.1s;animation-delay:366.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3662){-webkit-animation-delay:366.2s;animation-delay:366.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3663){-webkit-animation-delay:366.3s;animation-delay:366.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3664){-webkit-animation-delay:366.4s;animation-delay:366.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3665){-webkit-animation-delay:366.5s;animation-delay:366.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3666){-webkit-animation-delay:366.6s;animation-delay:366.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3667){-webkit-animation-delay:366.7s;animation-delay:366.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3668){-webkit-animation-delay:366.8s;animation-delay:366.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3669){-webkit-animation-delay:366.9s;animation-delay:366.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3670){-webkit-animation-delay:367s;animation-delay:367s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3671){-webkit-animation-delay:367.1s;animation-delay:367.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3672){-webkit-animation-delay:367.2s;animation-delay:367.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3673){-webkit-animation-delay:367.3s;animation-delay:367.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3674){-webkit-animation-delay:367.4s;animation-delay:367.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3675){-webkit-animation-delay:367.5s;animation-delay:367.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3676){-webkit-animation-delay:367.6s;animation-delay:367.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3677){-webkit-animation-delay:367.7s;animation-delay:367.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3678){-webkit-animation-delay:367.8s;animation-delay:367.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3679){-webkit-animation-delay:367.9s;animation-delay:367.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3680){-webkit-animation-delay:368s;animation-delay:368s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3681){-webkit-animation-delay:368.1s;animation-delay:368.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3682){-webkit-animation-delay:368.2s;animation-delay:368.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3683){-webkit-animation-delay:368.3s;animation-delay:368.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3684){-webkit-animation-delay:368.4s;animation-delay:368.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3685){-webkit-animation-delay:368.5s;animation-delay:368.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3686){-webkit-animation-delay:368.6s;animation-delay:368.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3687){-webkit-animation-delay:368.7s;animation-delay:368.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3688){-webkit-animation-delay:368.8s;animation-delay:368.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3689){-webkit-animation-delay:368.9s;animation-delay:368.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3690){-webkit-animation-delay:369s;animation-delay:369s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3691){-webkit-animation-delay:369.1s;animation-delay:369.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3692){-webkit-animation-delay:369.2s;animation-delay:369.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3693){-webkit-animation-delay:369.3s;animation-delay:369.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3694){-webkit-animation-delay:369.4s;animation-delay:369.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3695){-webkit-animation-delay:369.5s;animation-delay:369.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3696){-webkit-animation-delay:369.6s;animation-delay:369.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3697){-webkit-animation-delay:369.7s;animation-delay:369.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3698){-webkit-animation-delay:369.8s;animation-delay:369.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3699){-webkit-animation-delay:369.9s;animation-delay:369.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3700){-webkit-animation-delay:370s;animation-delay:370s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3701){-webkit-animation-delay:370.1s;animation-delay:370.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3702){-webkit-animation-delay:370.2s;animation-delay:370.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3703){-webkit-animation-delay:370.3s;animation-delay:370.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3704){-webkit-animation-delay:370.4s;animation-delay:370.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3705){-webkit-animation-delay:370.5s;animation-delay:370.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3706){-webkit-animation-delay:370.6s;animation-delay:370.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3707){-webkit-animation-delay:370.7s;animation-delay:370.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3708){-webkit-animation-delay:370.8s;animation-delay:370.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3709){-webkit-animation-delay:370.9s;animation-delay:370.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3710){-webkit-animation-delay:371s;animation-delay:371s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3711){-webkit-animation-delay:371.1s;animation-delay:371.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3712){-webkit-animation-delay:371.2s;animation-delay:371.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3713){-webkit-animation-delay:371.3s;animation-delay:371.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3714){-webkit-animation-delay:371.4s;animation-delay:371.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3715){-webkit-animation-delay:371.5s;animation-delay:371.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3716){-webkit-animation-delay:371.6s;animation-delay:371.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3717){-webkit-animation-delay:371.7s;animation-delay:371.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3718){-webkit-animation-delay:371.8s;animation-delay:371.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3719){-webkit-animation-delay:371.9s;animation-delay:371.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3720){-webkit-animation-delay:372s;animation-delay:372s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3721){-webkit-animation-delay:372.1s;animation-delay:372.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3722){-webkit-animation-delay:372.2s;animation-delay:372.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3723){-webkit-animation-delay:372.3s;animation-delay:372.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3724){-webkit-animation-delay:372.4s;animation-delay:372.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3725){-webkit-animation-delay:372.5s;animation-delay:372.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3726){-webkit-animation-delay:372.6s;animation-delay:372.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3727){-webkit-animation-delay:372.7s;animation-delay:372.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3728){-webkit-animation-delay:372.8s;animation-delay:372.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3729){-webkit-animation-delay:372.9s;animation-delay:372.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3730){-webkit-animation-delay:373s;animation-delay:373s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3731){-webkit-animation-delay:373.1s;animation-delay:373.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3732){-webkit-animation-delay:373.2s;animation-delay:373.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3733){-webkit-animation-delay:373.3s;animation-delay:373.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3734){-webkit-animation-delay:373.4s;animation-delay:373.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3735){-webkit-animation-delay:373.5s;animation-delay:373.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3736){-webkit-animation-delay:373.6s;animation-delay:373.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3737){-webkit-animation-delay:373.7s;animation-delay:373.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3738){-webkit-animation-delay:373.8s;animation-delay:373.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3739){-webkit-animation-delay:373.9s;animation-delay:373.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3740){-webkit-animation-delay:374s;animation-delay:374s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3741){-webkit-animation-delay:374.1s;animation-delay:374.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3742){-webkit-animation-delay:374.2s;animation-delay:374.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3743){-webkit-animation-delay:374.3s;animation-delay:374.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3744){-webkit-animation-delay:374.4s;animation-delay:374.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3745){-webkit-animation-delay:374.5s;animation-delay:374.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3746){-webkit-animation-delay:374.6s;animation-delay:374.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3747){-webkit-animation-delay:374.7s;animation-delay:374.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3748){-webkit-animation-delay:374.8s;animation-delay:374.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3749){-webkit-animation-delay:374.9s;animation-delay:374.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3750){-webkit-animation-delay:375s;animation-delay:375s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3751){-webkit-animation-delay:375.1s;animation-delay:375.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3752){-webkit-animation-delay:375.2s;animation-delay:375.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3753){-webkit-animation-delay:375.3s;animation-delay:375.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3754){-webkit-animation-delay:375.4s;animation-delay:375.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3755){-webkit-animation-delay:375.5s;animation-delay:375.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3756){-webkit-animation-delay:375.6s;animation-delay:375.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3757){-webkit-animation-delay:375.7s;animation-delay:375.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3758){-webkit-animation-delay:375.8s;animation-delay:375.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3759){-webkit-animation-delay:375.9s;animation-delay:375.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3760){-webkit-animation-delay:376s;animation-delay:376s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3761){-webkit-animation-delay:376.1s;animation-delay:376.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3762){-webkit-animation-delay:376.2s;animation-delay:376.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3763){-webkit-animation-delay:376.3s;animation-delay:376.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3764){-webkit-animation-delay:376.4s;animation-delay:376.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3765){-webkit-animation-delay:376.5s;animation-delay:376.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3766){-webkit-animation-delay:376.6s;animation-delay:376.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3767){-webkit-animation-delay:376.7s;animation-delay:376.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3768){-webkit-animation-delay:376.8s;animation-delay:376.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3769){-webkit-animation-delay:376.9s;animation-delay:376.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3770){-webkit-animation-delay:377s;animation-delay:377s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3771){-webkit-animation-delay:377.1s;animation-delay:377.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3772){-webkit-animation-delay:377.2s;animation-delay:377.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3773){-webkit-animation-delay:377.3s;animation-delay:377.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3774){-webkit-animation-delay:377.4s;animation-delay:377.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3775){-webkit-animation-delay:377.5s;animation-delay:377.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3776){-webkit-animation-delay:377.6s;animation-delay:377.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3777){-webkit-animation-delay:377.7s;animation-delay:377.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3778){-webkit-animation-delay:377.8s;animation-delay:377.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3779){-webkit-animation-delay:377.9s;animation-delay:377.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3780){-webkit-animation-delay:378s;animation-delay:378s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3781){-webkit-animation-delay:378.1s;animation-delay:378.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3782){-webkit-animation-delay:378.2s;animation-delay:378.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3783){-webkit-animation-delay:378.3s;animation-delay:378.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3784){-webkit-animation-delay:378.4s;animation-delay:378.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3785){-webkit-animation-delay:378.5s;animation-delay:378.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3786){-webkit-animation-delay:378.6s;animation-delay:378.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3787){-webkit-animation-delay:378.7s;animation-delay:378.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3788){-webkit-animation-delay:378.8s;animation-delay:378.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3789){-webkit-animation-delay:378.9s;animation-delay:378.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3790){-webkit-animation-delay:379s;animation-delay:379s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3791){-webkit-animation-delay:379.1s;animation-delay:379.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3792){-webkit-animation-delay:379.2s;animation-delay:379.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3793){-webkit-animation-delay:379.3s;animation-delay:379.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3794){-webkit-animation-delay:379.4s;animation-delay:379.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3795){-webkit-animation-delay:379.5s;animation-delay:379.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3796){-webkit-animation-delay:379.6s;animation-delay:379.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3797){-webkit-animation-delay:379.7s;animation-delay:379.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3798){-webkit-animation-delay:379.8s;animation-delay:379.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3799){-webkit-animation-delay:379.9s;animation-delay:379.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3800){-webkit-animation-delay:380s;animation-delay:380s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3801){-webkit-animation-delay:380.1s;animation-delay:380.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3802){-webkit-animation-delay:380.2s;animation-delay:380.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3803){-webkit-animation-delay:380.3s;animation-delay:380.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3804){-webkit-animation-delay:380.4s;animation-delay:380.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3805){-webkit-animation-delay:380.5s;animation-delay:380.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3806){-webkit-animation-delay:380.6s;animation-delay:380.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3807){-webkit-animation-delay:380.7s;animation-delay:380.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3808){-webkit-animation-delay:380.8s;animation-delay:380.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3809){-webkit-animation-delay:380.9s;animation-delay:380.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3810){-webkit-animation-delay:381s;animation-delay:381s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3811){-webkit-animation-delay:381.1s;animation-delay:381.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3812){-webkit-animation-delay:381.2s;animation-delay:381.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3813){-webkit-animation-delay:381.3s;animation-delay:381.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3814){-webkit-animation-delay:381.4s;animation-delay:381.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3815){-webkit-animation-delay:381.5s;animation-delay:381.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3816){-webkit-animation-delay:381.6s;animation-delay:381.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3817){-webkit-animation-delay:381.7s;animation-delay:381.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3818){-webkit-animation-delay:381.8s;animation-delay:381.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3819){-webkit-animation-delay:381.9s;animation-delay:381.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3820){-webkit-animation-delay:382s;animation-delay:382s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3821){-webkit-animation-delay:382.1s;animation-delay:382.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3822){-webkit-animation-delay:382.2s;animation-delay:382.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3823){-webkit-animation-delay:382.3s;animation-delay:382.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3824){-webkit-animation-delay:382.4s;animation-delay:382.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3825){-webkit-animation-delay:382.5s;animation-delay:382.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3826){-webkit-animation-delay:382.6s;animation-delay:382.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3827){-webkit-animation-delay:382.7s;animation-delay:382.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3828){-webkit-animation-delay:382.8s;animation-delay:382.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3829){-webkit-animation-delay:382.9s;animation-delay:382.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3830){-webkit-animation-delay:383s;animation-delay:383s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3831){-webkit-animation-delay:383.1s;animation-delay:383.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3832){-webkit-animation-delay:383.2s;animation-delay:383.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3833){-webkit-animation-delay:383.3s;animation-delay:383.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3834){-webkit-animation-delay:383.4s;animation-delay:383.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3835){-webkit-animation-delay:383.5s;animation-delay:383.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3836){-webkit-animation-delay:383.6s;animation-delay:383.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3837){-webkit-animation-delay:383.7s;animation-delay:383.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3838){-webkit-animation-delay:383.8s;animation-delay:383.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3839){-webkit-animation-delay:383.9s;animation-delay:383.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3840){-webkit-animation-delay:384s;animation-delay:384s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3841){-webkit-animation-delay:384.1s;animation-delay:384.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3842){-webkit-animation-delay:384.2s;animation-delay:384.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3843){-webkit-animation-delay:384.3s;animation-delay:384.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3844){-webkit-animation-delay:384.4s;animation-delay:384.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3845){-webkit-animation-delay:384.5s;animation-delay:384.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3846){-webkit-animation-delay:384.6s;animation-delay:384.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3847){-webkit-animation-delay:384.7s;animation-delay:384.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3848){-webkit-animation-delay:384.8s;animation-delay:384.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3849){-webkit-animation-delay:384.9s;animation-delay:384.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3850){-webkit-animation-delay:385s;animation-delay:385s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3851){-webkit-animation-delay:385.1s;animation-delay:385.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3852){-webkit-animation-delay:385.2s;animation-delay:385.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3853){-webkit-animation-delay:385.3s;animation-delay:385.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3854){-webkit-animation-delay:385.4s;animation-delay:385.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3855){-webkit-animation-delay:385.5s;animation-delay:385.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3856){-webkit-animation-delay:385.6s;animation-delay:385.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3857){-webkit-animation-delay:385.7s;animation-delay:385.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3858){-webkit-animation-delay:385.8s;animation-delay:385.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3859){-webkit-animation-delay:385.9s;animation-delay:385.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3860){-webkit-animation-delay:386s;animation-delay:386s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3861){-webkit-animation-delay:386.1s;animation-delay:386.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3862){-webkit-animation-delay:386.2s;animation-delay:386.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3863){-webkit-animation-delay:386.3s;animation-delay:386.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3864){-webkit-animation-delay:386.4s;animation-delay:386.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3865){-webkit-animation-delay:386.5s;animation-delay:386.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3866){-webkit-animation-delay:386.6s;animation-delay:386.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3867){-webkit-animation-delay:386.7s;animation-delay:386.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3868){-webkit-animation-delay:386.8s;animation-delay:386.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3869){-webkit-animation-delay:386.9s;animation-delay:386.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3870){-webkit-animation-delay:387s;animation-delay:387s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3871){-webkit-animation-delay:387.1s;animation-delay:387.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3872){-webkit-animation-delay:387.2s;animation-delay:387.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3873){-webkit-animation-delay:387.3s;animation-delay:387.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3874){-webkit-animation-delay:387.4s;animation-delay:387.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3875){-webkit-animation-delay:387.5s;animation-delay:387.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3876){-webkit-animation-delay:387.6s;animation-delay:387.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3877){-webkit-animation-delay:387.7s;animation-delay:387.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3878){-webkit-animation-delay:387.8s;animation-delay:387.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3879){-webkit-animation-delay:387.9s;animation-delay:387.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3880){-webkit-animation-delay:388s;animation-delay:388s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3881){-webkit-animation-delay:388.1s;animation-delay:388.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3882){-webkit-animation-delay:388.2s;animation-delay:388.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3883){-webkit-animation-delay:388.3s;animation-delay:388.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3884){-webkit-animation-delay:388.4s;animation-delay:388.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3885){-webkit-animation-delay:388.5s;animation-delay:388.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3886){-webkit-animation-delay:388.6s;animation-delay:388.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3887){-webkit-animation-delay:388.7s;animation-delay:388.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3888){-webkit-animation-delay:388.8s;animation-delay:388.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3889){-webkit-animation-delay:388.9s;animation-delay:388.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3890){-webkit-animation-delay:389s;animation-delay:389s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3891){-webkit-animation-delay:389.1s;animation-delay:389.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3892){-webkit-animation-delay:389.2s;animation-delay:389.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3893){-webkit-animation-delay:389.3s;animation-delay:389.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3894){-webkit-animation-delay:389.4s;animation-delay:389.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3895){-webkit-animation-delay:389.5s;animation-delay:389.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3896){-webkit-animation-delay:389.6s;animation-delay:389.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3897){-webkit-animation-delay:389.7s;animation-delay:389.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3898){-webkit-animation-delay:389.8s;animation-delay:389.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3899){-webkit-animation-delay:389.9s;animation-delay:389.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3900){-webkit-animation-delay:390s;animation-delay:390s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3901){-webkit-animation-delay:390.1s;animation-delay:390.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3902){-webkit-animation-delay:390.2s;animation-delay:390.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3903){-webkit-animation-delay:390.3s;animation-delay:390.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3904){-webkit-animation-delay:390.4s;animation-delay:390.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3905){-webkit-animation-delay:390.5s;animation-delay:390.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3906){-webkit-animation-delay:390.6s;animation-delay:390.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3907){-webkit-animation-delay:390.7s;animation-delay:390.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3908){-webkit-animation-delay:390.8s;animation-delay:390.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3909){-webkit-animation-delay:390.9s;animation-delay:390.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3910){-webkit-animation-delay:391s;animation-delay:391s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3911){-webkit-animation-delay:391.1s;animation-delay:391.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3912){-webkit-animation-delay:391.2s;animation-delay:391.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3913){-webkit-animation-delay:391.3s;animation-delay:391.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3914){-webkit-animation-delay:391.4s;animation-delay:391.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3915){-webkit-animation-delay:391.5s;animation-delay:391.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3916){-webkit-animation-delay:391.6s;animation-delay:391.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3917){-webkit-animation-delay:391.7s;animation-delay:391.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3918){-webkit-animation-delay:391.8s;animation-delay:391.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3919){-webkit-animation-delay:391.9s;animation-delay:391.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3920){-webkit-animation-delay:392s;animation-delay:392s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3921){-webkit-animation-delay:392.1s;animation-delay:392.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3922){-webkit-animation-delay:392.2s;animation-delay:392.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3923){-webkit-animation-delay:392.3s;animation-delay:392.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3924){-webkit-animation-delay:392.4s;animation-delay:392.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3925){-webkit-animation-delay:392.5s;animation-delay:392.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3926){-webkit-animation-delay:392.6s;animation-delay:392.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3927){-webkit-animation-delay:392.7s;animation-delay:392.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3928){-webkit-animation-delay:392.8s;animation-delay:392.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3929){-webkit-animation-delay:392.9s;animation-delay:392.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3930){-webkit-animation-delay:393s;animation-delay:393s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3931){-webkit-animation-delay:393.1s;animation-delay:393.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3932){-webkit-animation-delay:393.2s;animation-delay:393.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3933){-webkit-animation-delay:393.3s;animation-delay:393.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3934){-webkit-animation-delay:393.4s;animation-delay:393.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3935){-webkit-animation-delay:393.5s;animation-delay:393.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3936){-webkit-animation-delay:393.6s;animation-delay:393.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3937){-webkit-animation-delay:393.7s;animation-delay:393.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3938){-webkit-animation-delay:393.8s;animation-delay:393.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3939){-webkit-animation-delay:393.9s;animation-delay:393.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3940){-webkit-animation-delay:394s;animation-delay:394s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3941){-webkit-animation-delay:394.1s;animation-delay:394.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3942){-webkit-animation-delay:394.2s;animation-delay:394.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3943){-webkit-animation-delay:394.3s;animation-delay:394.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3944){-webkit-animation-delay:394.4s;animation-delay:394.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3945){-webkit-animation-delay:394.5s;animation-delay:394.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3946){-webkit-animation-delay:394.6s;animation-delay:394.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3947){-webkit-animation-delay:394.7s;animation-delay:394.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3948){-webkit-animation-delay:394.8s;animation-delay:394.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3949){-webkit-animation-delay:394.9s;animation-delay:394.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3950){-webkit-animation-delay:395s;animation-delay:395s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3951){-webkit-animation-delay:395.1s;animation-delay:395.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3952){-webkit-animation-delay:395.2s;animation-delay:395.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3953){-webkit-animation-delay:395.3s;animation-delay:395.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3954){-webkit-animation-delay:395.4s;animation-delay:395.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3955){-webkit-animation-delay:395.5s;animation-delay:395.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3956){-webkit-animation-delay:395.6s;animation-delay:395.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3957){-webkit-animation-delay:395.7s;animation-delay:395.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3958){-webkit-animation-delay:395.8s;animation-delay:395.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3959){-webkit-animation-delay:395.9s;animation-delay:395.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3960){-webkit-animation-delay:396s;animation-delay:396s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3961){-webkit-animation-delay:396.1s;animation-delay:396.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3962){-webkit-animation-delay:396.2s;animation-delay:396.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3963){-webkit-animation-delay:396.3s;animation-delay:396.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3964){-webkit-animation-delay:396.4s;animation-delay:396.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3965){-webkit-animation-delay:396.5s;animation-delay:396.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3966){-webkit-animation-delay:396.6s;animation-delay:396.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3967){-webkit-animation-delay:396.7s;animation-delay:396.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3968){-webkit-animation-delay:396.8s;animation-delay:396.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3969){-webkit-animation-delay:396.9s;animation-delay:396.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3970){-webkit-animation-delay:397s;animation-delay:397s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3971){-webkit-animation-delay:397.1s;animation-delay:397.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3972){-webkit-animation-delay:397.2s;animation-delay:397.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3973){-webkit-animation-delay:397.3s;animation-delay:397.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3974){-webkit-animation-delay:397.4s;animation-delay:397.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3975){-webkit-animation-delay:397.5s;animation-delay:397.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3976){-webkit-animation-delay:397.6s;animation-delay:397.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3977){-webkit-animation-delay:397.7s;animation-delay:397.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3978){-webkit-animation-delay:397.8s;animation-delay:397.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3979){-webkit-animation-delay:397.9s;animation-delay:397.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3980){-webkit-animation-delay:398s;animation-delay:398s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3981){-webkit-animation-delay:398.1s;animation-delay:398.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3982){-webkit-animation-delay:398.2s;animation-delay:398.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3983){-webkit-animation-delay:398.3s;animation-delay:398.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3984){-webkit-animation-delay:398.4s;animation-delay:398.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3985){-webkit-animation-delay:398.5s;animation-delay:398.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3986){-webkit-animation-delay:398.6s;animation-delay:398.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3987){-webkit-animation-delay:398.7s;animation-delay:398.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3988){-webkit-animation-delay:398.8s;animation-delay:398.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3989){-webkit-animation-delay:398.9s;animation-delay:398.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3990){-webkit-animation-delay:399s;animation-delay:399s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3991){-webkit-animation-delay:399.1s;animation-delay:399.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3992){-webkit-animation-delay:399.2s;animation-delay:399.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3993){-webkit-animation-delay:399.3s;animation-delay:399.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3994){-webkit-animation-delay:399.4s;animation-delay:399.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3995){-webkit-animation-delay:399.5s;animation-delay:399.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3996){-webkit-animation-delay:399.6s;animation-delay:399.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3997){-webkit-animation-delay:399.7s;animation-delay:399.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3998){-webkit-animation-delay:399.8s;animation-delay:399.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(3999){-webkit-animation-delay:399.9s;animation-delay:399.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4000){-webkit-animation-delay:400s;animation-delay:400s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4001){-webkit-animation-delay:400.1s;animation-delay:400.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4002){-webkit-animation-delay:400.2s;animation-delay:400.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4003){-webkit-animation-delay:400.3s;animation-delay:400.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4004){-webkit-animation-delay:400.4s;animation-delay:400.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4005){-webkit-animation-delay:400.5s;animation-delay:400.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4006){-webkit-animation-delay:400.6s;animation-delay:400.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4007){-webkit-animation-delay:400.7s;animation-delay:400.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4008){-webkit-animation-delay:400.8s;animation-delay:400.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4009){-webkit-animation-delay:400.9s;animation-delay:400.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4010){-webkit-animation-delay:401s;animation-delay:401s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4011){-webkit-animation-delay:401.1s;animation-delay:401.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4012){-webkit-animation-delay:401.2s;animation-delay:401.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4013){-webkit-animation-delay:401.3s;animation-delay:401.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4014){-webkit-animation-delay:401.4s;animation-delay:401.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4015){-webkit-animation-delay:401.5s;animation-delay:401.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4016){-webkit-animation-delay:401.6s;animation-delay:401.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4017){-webkit-animation-delay:401.7s;animation-delay:401.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4018){-webkit-animation-delay:401.8s;animation-delay:401.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4019){-webkit-animation-delay:401.9s;animation-delay:401.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4020){-webkit-animation-delay:402s;animation-delay:402s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4021){-webkit-animation-delay:402.1s;animation-delay:402.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4022){-webkit-animation-delay:402.2s;animation-delay:402.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4023){-webkit-animation-delay:402.3s;animation-delay:402.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4024){-webkit-animation-delay:402.4s;animation-delay:402.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4025){-webkit-animation-delay:402.5s;animation-delay:402.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4026){-webkit-animation-delay:402.6s;animation-delay:402.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4027){-webkit-animation-delay:402.7s;animation-delay:402.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4028){-webkit-animation-delay:402.8s;animation-delay:402.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4029){-webkit-animation-delay:402.9s;animation-delay:402.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4030){-webkit-animation-delay:403s;animation-delay:403s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4031){-webkit-animation-delay:403.1s;animation-delay:403.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4032){-webkit-animation-delay:403.2s;animation-delay:403.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4033){-webkit-animation-delay:403.3s;animation-delay:403.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4034){-webkit-animation-delay:403.4s;animation-delay:403.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4035){-webkit-animation-delay:403.5s;animation-delay:403.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4036){-webkit-animation-delay:403.6s;animation-delay:403.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4037){-webkit-animation-delay:403.7s;animation-delay:403.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4038){-webkit-animation-delay:403.8s;animation-delay:403.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4039){-webkit-animation-delay:403.9s;animation-delay:403.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4040){-webkit-animation-delay:404s;animation-delay:404s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4041){-webkit-animation-delay:404.1s;animation-delay:404.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4042){-webkit-animation-delay:404.2s;animation-delay:404.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4043){-webkit-animation-delay:404.3s;animation-delay:404.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4044){-webkit-animation-delay:404.4s;animation-delay:404.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4045){-webkit-animation-delay:404.5s;animation-delay:404.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4046){-webkit-animation-delay:404.6s;animation-delay:404.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4047){-webkit-animation-delay:404.7s;animation-delay:404.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4048){-webkit-animation-delay:404.8s;animation-delay:404.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4049){-webkit-animation-delay:404.9s;animation-delay:404.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4050){-webkit-animation-delay:405s;animation-delay:405s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4051){-webkit-animation-delay:405.1s;animation-delay:405.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4052){-webkit-animation-delay:405.2s;animation-delay:405.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4053){-webkit-animation-delay:405.3s;animation-delay:405.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4054){-webkit-animation-delay:405.4s;animation-delay:405.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4055){-webkit-animation-delay:405.5s;animation-delay:405.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4056){-webkit-animation-delay:405.6s;animation-delay:405.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4057){-webkit-animation-delay:405.7s;animation-delay:405.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4058){-webkit-animation-delay:405.8s;animation-delay:405.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4059){-webkit-animation-delay:405.9s;animation-delay:405.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4060){-webkit-animation-delay:406s;animation-delay:406s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4061){-webkit-animation-delay:406.1s;animation-delay:406.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4062){-webkit-animation-delay:406.2s;animation-delay:406.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4063){-webkit-animation-delay:406.3s;animation-delay:406.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4064){-webkit-animation-delay:406.4s;animation-delay:406.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4065){-webkit-animation-delay:406.5s;animation-delay:406.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4066){-webkit-animation-delay:406.6s;animation-delay:406.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4067){-webkit-animation-delay:406.7s;animation-delay:406.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4068){-webkit-animation-delay:406.8s;animation-delay:406.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4069){-webkit-animation-delay:406.9s;animation-delay:406.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4070){-webkit-animation-delay:407s;animation-delay:407s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4071){-webkit-animation-delay:407.1s;animation-delay:407.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4072){-webkit-animation-delay:407.2s;animation-delay:407.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4073){-webkit-animation-delay:407.3s;animation-delay:407.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4074){-webkit-animation-delay:407.4s;animation-delay:407.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4075){-webkit-animation-delay:407.5s;animation-delay:407.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4076){-webkit-animation-delay:407.6s;animation-delay:407.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4077){-webkit-animation-delay:407.7s;animation-delay:407.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4078){-webkit-animation-delay:407.8s;animation-delay:407.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4079){-webkit-animation-delay:407.9s;animation-delay:407.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4080){-webkit-animation-delay:408s;animation-delay:408s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4081){-webkit-animation-delay:408.1s;animation-delay:408.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4082){-webkit-animation-delay:408.2s;animation-delay:408.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4083){-webkit-animation-delay:408.3s;animation-delay:408.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4084){-webkit-animation-delay:408.4s;animation-delay:408.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4085){-webkit-animation-delay:408.5s;animation-delay:408.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4086){-webkit-animation-delay:408.6s;animation-delay:408.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4087){-webkit-animation-delay:408.7s;animation-delay:408.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4088){-webkit-animation-delay:408.8s;animation-delay:408.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4089){-webkit-animation-delay:408.9s;animation-delay:408.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4090){-webkit-animation-delay:409s;animation-delay:409s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4091){-webkit-animation-delay:409.1s;animation-delay:409.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4092){-webkit-animation-delay:409.2s;animation-delay:409.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4093){-webkit-animation-delay:409.3s;animation-delay:409.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4094){-webkit-animation-delay:409.4s;animation-delay:409.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4095){-webkit-animation-delay:409.5s;animation-delay:409.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4096){-webkit-animation-delay:409.6s;animation-delay:409.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4097){-webkit-animation-delay:409.7s;animation-delay:409.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4098){-webkit-animation-delay:409.8s;animation-delay:409.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4099){-webkit-animation-delay:409.9s;animation-delay:409.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4100){-webkit-animation-delay:410s;animation-delay:410s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4101){-webkit-animation-delay:410.1s;animation-delay:410.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4102){-webkit-animation-delay:410.2s;animation-delay:410.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4103){-webkit-animation-delay:410.3s;animation-delay:410.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4104){-webkit-animation-delay:410.4s;animation-delay:410.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4105){-webkit-animation-delay:410.5s;animation-delay:410.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4106){-webkit-animation-delay:410.6s;animation-delay:410.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4107){-webkit-animation-delay:410.7s;animation-delay:410.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4108){-webkit-animation-delay:410.8s;animation-delay:410.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4109){-webkit-animation-delay:410.9s;animation-delay:410.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4110){-webkit-animation-delay:411s;animation-delay:411s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4111){-webkit-animation-delay:411.1s;animation-delay:411.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4112){-webkit-animation-delay:411.2s;animation-delay:411.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4113){-webkit-animation-delay:411.3s;animation-delay:411.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4114){-webkit-animation-delay:411.4s;animation-delay:411.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4115){-webkit-animation-delay:411.5s;animation-delay:411.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4116){-webkit-animation-delay:411.6s;animation-delay:411.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4117){-webkit-animation-delay:411.7s;animation-delay:411.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4118){-webkit-animation-delay:411.8s;animation-delay:411.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4119){-webkit-animation-delay:411.9s;animation-delay:411.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4120){-webkit-animation-delay:412s;animation-delay:412s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4121){-webkit-animation-delay:412.1s;animation-delay:412.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4122){-webkit-animation-delay:412.2s;animation-delay:412.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4123){-webkit-animation-delay:412.3s;animation-delay:412.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4124){-webkit-animation-delay:412.4s;animation-delay:412.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4125){-webkit-animation-delay:412.5s;animation-delay:412.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4126){-webkit-animation-delay:412.6s;animation-delay:412.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4127){-webkit-animation-delay:412.7s;animation-delay:412.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4128){-webkit-animation-delay:412.8s;animation-delay:412.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4129){-webkit-animation-delay:412.9s;animation-delay:412.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4130){-webkit-animation-delay:413s;animation-delay:413s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4131){-webkit-animation-delay:413.1s;animation-delay:413.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4132){-webkit-animation-delay:413.2s;animation-delay:413.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4133){-webkit-animation-delay:413.3s;animation-delay:413.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4134){-webkit-animation-delay:413.4s;animation-delay:413.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4135){-webkit-animation-delay:413.5s;animation-delay:413.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4136){-webkit-animation-delay:413.6s;animation-delay:413.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4137){-webkit-animation-delay:413.7s;animation-delay:413.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4138){-webkit-animation-delay:413.8s;animation-delay:413.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4139){-webkit-animation-delay:413.9s;animation-delay:413.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4140){-webkit-animation-delay:414s;animation-delay:414s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4141){-webkit-animation-delay:414.1s;animation-delay:414.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4142){-webkit-animation-delay:414.2s;animation-delay:414.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4143){-webkit-animation-delay:414.3s;animation-delay:414.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4144){-webkit-animation-delay:414.4s;animation-delay:414.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4145){-webkit-animation-delay:414.5s;animation-delay:414.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4146){-webkit-animation-delay:414.6s;animation-delay:414.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4147){-webkit-animation-delay:414.7s;animation-delay:414.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4148){-webkit-animation-delay:414.8s;animation-delay:414.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4149){-webkit-animation-delay:414.9s;animation-delay:414.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4150){-webkit-animation-delay:415s;animation-delay:415s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4151){-webkit-animation-delay:415.1s;animation-delay:415.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4152){-webkit-animation-delay:415.2s;animation-delay:415.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4153){-webkit-animation-delay:415.3s;animation-delay:415.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4154){-webkit-animation-delay:415.4s;animation-delay:415.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4155){-webkit-animation-delay:415.5s;animation-delay:415.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4156){-webkit-animation-delay:415.6s;animation-delay:415.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4157){-webkit-animation-delay:415.7s;animation-delay:415.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4158){-webkit-animation-delay:415.8s;animation-delay:415.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4159){-webkit-animation-delay:415.9s;animation-delay:415.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4160){-webkit-animation-delay:416s;animation-delay:416s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4161){-webkit-animation-delay:416.1s;animation-delay:416.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4162){-webkit-animation-delay:416.2s;animation-delay:416.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4163){-webkit-animation-delay:416.3s;animation-delay:416.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4164){-webkit-animation-delay:416.4s;animation-delay:416.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4165){-webkit-animation-delay:416.5s;animation-delay:416.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4166){-webkit-animation-delay:416.6s;animation-delay:416.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4167){-webkit-animation-delay:416.7s;animation-delay:416.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4168){-webkit-animation-delay:416.8s;animation-delay:416.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4169){-webkit-animation-delay:416.9s;animation-delay:416.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4170){-webkit-animation-delay:417s;animation-delay:417s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4171){-webkit-animation-delay:417.1s;animation-delay:417.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4172){-webkit-animation-delay:417.2s;animation-delay:417.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4173){-webkit-animation-delay:417.3s;animation-delay:417.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4174){-webkit-animation-delay:417.4s;animation-delay:417.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4175){-webkit-animation-delay:417.5s;animation-delay:417.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4176){-webkit-animation-delay:417.6s;animation-delay:417.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4177){-webkit-animation-delay:417.7s;animation-delay:417.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4178){-webkit-animation-delay:417.8s;animation-delay:417.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4179){-webkit-animation-delay:417.9s;animation-delay:417.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4180){-webkit-animation-delay:418s;animation-delay:418s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4181){-webkit-animation-delay:418.1s;animation-delay:418.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4182){-webkit-animation-delay:418.2s;animation-delay:418.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4183){-webkit-animation-delay:418.3s;animation-delay:418.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4184){-webkit-animation-delay:418.4s;animation-delay:418.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4185){-webkit-animation-delay:418.5s;animation-delay:418.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4186){-webkit-animation-delay:418.6s;animation-delay:418.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4187){-webkit-animation-delay:418.7s;animation-delay:418.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4188){-webkit-animation-delay:418.8s;animation-delay:418.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4189){-webkit-animation-delay:418.9s;animation-delay:418.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4190){-webkit-animation-delay:419s;animation-delay:419s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4191){-webkit-animation-delay:419.1s;animation-delay:419.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4192){-webkit-animation-delay:419.2s;animation-delay:419.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4193){-webkit-animation-delay:419.3s;animation-delay:419.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4194){-webkit-animation-delay:419.4s;animation-delay:419.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4195){-webkit-animation-delay:419.5s;animation-delay:419.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4196){-webkit-animation-delay:419.6s;animation-delay:419.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4197){-webkit-animation-delay:419.7s;animation-delay:419.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4198){-webkit-animation-delay:419.8s;animation-delay:419.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4199){-webkit-animation-delay:419.9s;animation-delay:419.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4200){-webkit-animation-delay:420s;animation-delay:420s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4201){-webkit-animation-delay:420.1s;animation-delay:420.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4202){-webkit-animation-delay:420.2s;animation-delay:420.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4203){-webkit-animation-delay:420.3s;animation-delay:420.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4204){-webkit-animation-delay:420.4s;animation-delay:420.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4205){-webkit-animation-delay:420.5s;animation-delay:420.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4206){-webkit-animation-delay:420.6s;animation-delay:420.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4207){-webkit-animation-delay:420.7s;animation-delay:420.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4208){-webkit-animation-delay:420.8s;animation-delay:420.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4209){-webkit-animation-delay:420.9s;animation-delay:420.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4210){-webkit-animation-delay:421s;animation-delay:421s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4211){-webkit-animation-delay:421.1s;animation-delay:421.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4212){-webkit-animation-delay:421.2s;animation-delay:421.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4213){-webkit-animation-delay:421.3s;animation-delay:421.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4214){-webkit-animation-delay:421.4s;animation-delay:421.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4215){-webkit-animation-delay:421.5s;animation-delay:421.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4216){-webkit-animation-delay:421.6s;animation-delay:421.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4217){-webkit-animation-delay:421.7s;animation-delay:421.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4218){-webkit-animation-delay:421.8s;animation-delay:421.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4219){-webkit-animation-delay:421.9s;animation-delay:421.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4220){-webkit-animation-delay:422s;animation-delay:422s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4221){-webkit-animation-delay:422.1s;animation-delay:422.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4222){-webkit-animation-delay:422.2s;animation-delay:422.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4223){-webkit-animation-delay:422.3s;animation-delay:422.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4224){-webkit-animation-delay:422.4s;animation-delay:422.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4225){-webkit-animation-delay:422.5s;animation-delay:422.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4226){-webkit-animation-delay:422.6s;animation-delay:422.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4227){-webkit-animation-delay:422.7s;animation-delay:422.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4228){-webkit-animation-delay:422.8s;animation-delay:422.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4229){-webkit-animation-delay:422.9s;animation-delay:422.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4230){-webkit-animation-delay:423s;animation-delay:423s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4231){-webkit-animation-delay:423.1s;animation-delay:423.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4232){-webkit-animation-delay:423.2s;animation-delay:423.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4233){-webkit-animation-delay:423.3s;animation-delay:423.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4234){-webkit-animation-delay:423.4s;animation-delay:423.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4235){-webkit-animation-delay:423.5s;animation-delay:423.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4236){-webkit-animation-delay:423.6s;animation-delay:423.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4237){-webkit-animation-delay:423.7s;animation-delay:423.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4238){-webkit-animation-delay:423.8s;animation-delay:423.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4239){-webkit-animation-delay:423.9s;animation-delay:423.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4240){-webkit-animation-delay:424s;animation-delay:424s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4241){-webkit-animation-delay:424.1s;animation-delay:424.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4242){-webkit-animation-delay:424.2s;animation-delay:424.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4243){-webkit-animation-delay:424.3s;animation-delay:424.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4244){-webkit-animation-delay:424.4s;animation-delay:424.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4245){-webkit-animation-delay:424.5s;animation-delay:424.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4246){-webkit-animation-delay:424.6s;animation-delay:424.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4247){-webkit-animation-delay:424.7s;animation-delay:424.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4248){-webkit-animation-delay:424.8s;animation-delay:424.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4249){-webkit-animation-delay:424.9s;animation-delay:424.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4250){-webkit-animation-delay:425s;animation-delay:425s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4251){-webkit-animation-delay:425.1s;animation-delay:425.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4252){-webkit-animation-delay:425.2s;animation-delay:425.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4253){-webkit-animation-delay:425.3s;animation-delay:425.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4254){-webkit-animation-delay:425.4s;animation-delay:425.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4255){-webkit-animation-delay:425.5s;animation-delay:425.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4256){-webkit-animation-delay:425.6s;animation-delay:425.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4257){-webkit-animation-delay:425.7s;animation-delay:425.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4258){-webkit-animation-delay:425.8s;animation-delay:425.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4259){-webkit-animation-delay:425.9s;animation-delay:425.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4260){-webkit-animation-delay:426s;animation-delay:426s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4261){-webkit-animation-delay:426.1s;animation-delay:426.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4262){-webkit-animation-delay:426.2s;animation-delay:426.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4263){-webkit-animation-delay:426.3s;animation-delay:426.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4264){-webkit-animation-delay:426.4s;animation-delay:426.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4265){-webkit-animation-delay:426.5s;animation-delay:426.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4266){-webkit-animation-delay:426.6s;animation-delay:426.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4267){-webkit-animation-delay:426.7s;animation-delay:426.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4268){-webkit-animation-delay:426.8s;animation-delay:426.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4269){-webkit-animation-delay:426.9s;animation-delay:426.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4270){-webkit-animation-delay:427s;animation-delay:427s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4271){-webkit-animation-delay:427.1s;animation-delay:427.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4272){-webkit-animation-delay:427.2s;animation-delay:427.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4273){-webkit-animation-delay:427.3s;animation-delay:427.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4274){-webkit-animation-delay:427.4s;animation-delay:427.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4275){-webkit-animation-delay:427.5s;animation-delay:427.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4276){-webkit-animation-delay:427.6s;animation-delay:427.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4277){-webkit-animation-delay:427.7s;animation-delay:427.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4278){-webkit-animation-delay:427.8s;animation-delay:427.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4279){-webkit-animation-delay:427.9s;animation-delay:427.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4280){-webkit-animation-delay:428s;animation-delay:428s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4281){-webkit-animation-delay:428.1s;animation-delay:428.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4282){-webkit-animation-delay:428.2s;animation-delay:428.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4283){-webkit-animation-delay:428.3s;animation-delay:428.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4284){-webkit-animation-delay:428.4s;animation-delay:428.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4285){-webkit-animation-delay:428.5s;animation-delay:428.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4286){-webkit-animation-delay:428.6s;animation-delay:428.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4287){-webkit-animation-delay:428.7s;animation-delay:428.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4288){-webkit-animation-delay:428.8s;animation-delay:428.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4289){-webkit-animation-delay:428.9s;animation-delay:428.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4290){-webkit-animation-delay:429s;animation-delay:429s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4291){-webkit-animation-delay:429.1s;animation-delay:429.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4292){-webkit-animation-delay:429.2s;animation-delay:429.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4293){-webkit-animation-delay:429.3s;animation-delay:429.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4294){-webkit-animation-delay:429.4s;animation-delay:429.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4295){-webkit-animation-delay:429.5s;animation-delay:429.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4296){-webkit-animation-delay:429.6s;animation-delay:429.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4297){-webkit-animation-delay:429.7s;animation-delay:429.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4298){-webkit-animation-delay:429.8s;animation-delay:429.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4299){-webkit-animation-delay:429.9s;animation-delay:429.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4300){-webkit-animation-delay:430s;animation-delay:430s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4301){-webkit-animation-delay:430.1s;animation-delay:430.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4302){-webkit-animation-delay:430.2s;animation-delay:430.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4303){-webkit-animation-delay:430.3s;animation-delay:430.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4304){-webkit-animation-delay:430.4s;animation-delay:430.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4305){-webkit-animation-delay:430.5s;animation-delay:430.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4306){-webkit-animation-delay:430.6s;animation-delay:430.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4307){-webkit-animation-delay:430.7s;animation-delay:430.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4308){-webkit-animation-delay:430.8s;animation-delay:430.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4309){-webkit-animation-delay:430.9s;animation-delay:430.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4310){-webkit-animation-delay:431s;animation-delay:431s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4311){-webkit-animation-delay:431.1s;animation-delay:431.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4312){-webkit-animation-delay:431.2s;animation-delay:431.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4313){-webkit-animation-delay:431.3s;animation-delay:431.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4314){-webkit-animation-delay:431.4s;animation-delay:431.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4315){-webkit-animation-delay:431.5s;animation-delay:431.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4316){-webkit-animation-delay:431.6s;animation-delay:431.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4317){-webkit-animation-delay:431.7s;animation-delay:431.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4318){-webkit-animation-delay:431.8s;animation-delay:431.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4319){-webkit-animation-delay:431.9s;animation-delay:431.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4320){-webkit-animation-delay:432s;animation-delay:432s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4321){-webkit-animation-delay:432.1s;animation-delay:432.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4322){-webkit-animation-delay:432.2s;animation-delay:432.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4323){-webkit-animation-delay:432.3s;animation-delay:432.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4324){-webkit-animation-delay:432.4s;animation-delay:432.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4325){-webkit-animation-delay:432.5s;animation-delay:432.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4326){-webkit-animation-delay:432.6s;animation-delay:432.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4327){-webkit-animation-delay:432.7s;animation-delay:432.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4328){-webkit-animation-delay:432.8s;animation-delay:432.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4329){-webkit-animation-delay:432.9s;animation-delay:432.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4330){-webkit-animation-delay:433s;animation-delay:433s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4331){-webkit-animation-delay:433.1s;animation-delay:433.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4332){-webkit-animation-delay:433.2s;animation-delay:433.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4333){-webkit-animation-delay:433.3s;animation-delay:433.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4334){-webkit-animation-delay:433.4s;animation-delay:433.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4335){-webkit-animation-delay:433.5s;animation-delay:433.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4336){-webkit-animation-delay:433.6s;animation-delay:433.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4337){-webkit-animation-delay:433.7s;animation-delay:433.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4338){-webkit-animation-delay:433.8s;animation-delay:433.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4339){-webkit-animation-delay:433.9s;animation-delay:433.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4340){-webkit-animation-delay:434s;animation-delay:434s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4341){-webkit-animation-delay:434.1s;animation-delay:434.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4342){-webkit-animation-delay:434.2s;animation-delay:434.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4343){-webkit-animation-delay:434.3s;animation-delay:434.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4344){-webkit-animation-delay:434.4s;animation-delay:434.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4345){-webkit-animation-delay:434.5s;animation-delay:434.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4346){-webkit-animation-delay:434.6s;animation-delay:434.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4347){-webkit-animation-delay:434.7s;animation-delay:434.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4348){-webkit-animation-delay:434.8s;animation-delay:434.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4349){-webkit-animation-delay:434.9s;animation-delay:434.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4350){-webkit-animation-delay:435s;animation-delay:435s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4351){-webkit-animation-delay:435.1s;animation-delay:435.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4352){-webkit-animation-delay:435.2s;animation-delay:435.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4353){-webkit-animation-delay:435.3s;animation-delay:435.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4354){-webkit-animation-delay:435.4s;animation-delay:435.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4355){-webkit-animation-delay:435.5s;animation-delay:435.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4356){-webkit-animation-delay:435.6s;animation-delay:435.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4357){-webkit-animation-delay:435.7s;animation-delay:435.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4358){-webkit-animation-delay:435.8s;animation-delay:435.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4359){-webkit-animation-delay:435.9s;animation-delay:435.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4360){-webkit-animation-delay:436s;animation-delay:436s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4361){-webkit-animation-delay:436.1s;animation-delay:436.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4362){-webkit-animation-delay:436.2s;animation-delay:436.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4363){-webkit-animation-delay:436.3s;animation-delay:436.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4364){-webkit-animation-delay:436.4s;animation-delay:436.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4365){-webkit-animation-delay:436.5s;animation-delay:436.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4366){-webkit-animation-delay:436.6s;animation-delay:436.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4367){-webkit-animation-delay:436.7s;animation-delay:436.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4368){-webkit-animation-delay:436.8s;animation-delay:436.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4369){-webkit-animation-delay:436.9s;animation-delay:436.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4370){-webkit-animation-delay:437s;animation-delay:437s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4371){-webkit-animation-delay:437.1s;animation-delay:437.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4372){-webkit-animation-delay:437.2s;animation-delay:437.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4373){-webkit-animation-delay:437.3s;animation-delay:437.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4374){-webkit-animation-delay:437.4s;animation-delay:437.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4375){-webkit-animation-delay:437.5s;animation-delay:437.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4376){-webkit-animation-delay:437.6s;animation-delay:437.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4377){-webkit-animation-delay:437.7s;animation-delay:437.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4378){-webkit-animation-delay:437.8s;animation-delay:437.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4379){-webkit-animation-delay:437.9s;animation-delay:437.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4380){-webkit-animation-delay:438s;animation-delay:438s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4381){-webkit-animation-delay:438.1s;animation-delay:438.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4382){-webkit-animation-delay:438.2s;animation-delay:438.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4383){-webkit-animation-delay:438.3s;animation-delay:438.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4384){-webkit-animation-delay:438.4s;animation-delay:438.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4385){-webkit-animation-delay:438.5s;animation-delay:438.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4386){-webkit-animation-delay:438.6s;animation-delay:438.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4387){-webkit-animation-delay:438.7s;animation-delay:438.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4388){-webkit-animation-delay:438.8s;animation-delay:438.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4389){-webkit-animation-delay:438.9s;animation-delay:438.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4390){-webkit-animation-delay:439s;animation-delay:439s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4391){-webkit-animation-delay:439.1s;animation-delay:439.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4392){-webkit-animation-delay:439.2s;animation-delay:439.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4393){-webkit-animation-delay:439.3s;animation-delay:439.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4394){-webkit-animation-delay:439.4s;animation-delay:439.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4395){-webkit-animation-delay:439.5s;animation-delay:439.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4396){-webkit-animation-delay:439.6s;animation-delay:439.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4397){-webkit-animation-delay:439.7s;animation-delay:439.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4398){-webkit-animation-delay:439.8s;animation-delay:439.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4399){-webkit-animation-delay:439.9s;animation-delay:439.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4400){-webkit-animation-delay:440s;animation-delay:440s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4401){-webkit-animation-delay:440.1s;animation-delay:440.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4402){-webkit-animation-delay:440.2s;animation-delay:440.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4403){-webkit-animation-delay:440.3s;animation-delay:440.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4404){-webkit-animation-delay:440.4s;animation-delay:440.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4405){-webkit-animation-delay:440.5s;animation-delay:440.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4406){-webkit-animation-delay:440.6s;animation-delay:440.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4407){-webkit-animation-delay:440.7s;animation-delay:440.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4408){-webkit-animation-delay:440.8s;animation-delay:440.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4409){-webkit-animation-delay:440.9s;animation-delay:440.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4410){-webkit-animation-delay:441s;animation-delay:441s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4411){-webkit-animation-delay:441.1s;animation-delay:441.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4412){-webkit-animation-delay:441.2s;animation-delay:441.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4413){-webkit-animation-delay:441.3s;animation-delay:441.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4414){-webkit-animation-delay:441.4s;animation-delay:441.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4415){-webkit-animation-delay:441.5s;animation-delay:441.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4416){-webkit-animation-delay:441.6s;animation-delay:441.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4417){-webkit-animation-delay:441.7s;animation-delay:441.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4418){-webkit-animation-delay:441.8s;animation-delay:441.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4419){-webkit-animation-delay:441.9s;animation-delay:441.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4420){-webkit-animation-delay:442s;animation-delay:442s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4421){-webkit-animation-delay:442.1s;animation-delay:442.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4422){-webkit-animation-delay:442.2s;animation-delay:442.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4423){-webkit-animation-delay:442.3s;animation-delay:442.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4424){-webkit-animation-delay:442.4s;animation-delay:442.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4425){-webkit-animation-delay:442.5s;animation-delay:442.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4426){-webkit-animation-delay:442.6s;animation-delay:442.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4427){-webkit-animation-delay:442.7s;animation-delay:442.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4428){-webkit-animation-delay:442.8s;animation-delay:442.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4429){-webkit-animation-delay:442.9s;animation-delay:442.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4430){-webkit-animation-delay:443s;animation-delay:443s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4431){-webkit-animation-delay:443.1s;animation-delay:443.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4432){-webkit-animation-delay:443.2s;animation-delay:443.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4433){-webkit-animation-delay:443.3s;animation-delay:443.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4434){-webkit-animation-delay:443.4s;animation-delay:443.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4435){-webkit-animation-delay:443.5s;animation-delay:443.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4436){-webkit-animation-delay:443.6s;animation-delay:443.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4437){-webkit-animation-delay:443.7s;animation-delay:443.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4438){-webkit-animation-delay:443.8s;animation-delay:443.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4439){-webkit-animation-delay:443.9s;animation-delay:443.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4440){-webkit-animation-delay:444s;animation-delay:444s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4441){-webkit-animation-delay:444.1s;animation-delay:444.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4442){-webkit-animation-delay:444.2s;animation-delay:444.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4443){-webkit-animation-delay:444.3s;animation-delay:444.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4444){-webkit-animation-delay:444.4s;animation-delay:444.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4445){-webkit-animation-delay:444.5s;animation-delay:444.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4446){-webkit-animation-delay:444.6s;animation-delay:444.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4447){-webkit-animation-delay:444.7s;animation-delay:444.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4448){-webkit-animation-delay:444.8s;animation-delay:444.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4449){-webkit-animation-delay:444.9s;animation-delay:444.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4450){-webkit-animation-delay:445s;animation-delay:445s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4451){-webkit-animation-delay:445.1s;animation-delay:445.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4452){-webkit-animation-delay:445.2s;animation-delay:445.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4453){-webkit-animation-delay:445.3s;animation-delay:445.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4454){-webkit-animation-delay:445.4s;animation-delay:445.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4455){-webkit-animation-delay:445.5s;animation-delay:445.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4456){-webkit-animation-delay:445.6s;animation-delay:445.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4457){-webkit-animation-delay:445.7s;animation-delay:445.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4458){-webkit-animation-delay:445.8s;animation-delay:445.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4459){-webkit-animation-delay:445.9s;animation-delay:445.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4460){-webkit-animation-delay:446s;animation-delay:446s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4461){-webkit-animation-delay:446.1s;animation-delay:446.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4462){-webkit-animation-delay:446.2s;animation-delay:446.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4463){-webkit-animation-delay:446.3s;animation-delay:446.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4464){-webkit-animation-delay:446.4s;animation-delay:446.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4465){-webkit-animation-delay:446.5s;animation-delay:446.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4466){-webkit-animation-delay:446.6s;animation-delay:446.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4467){-webkit-animation-delay:446.7s;animation-delay:446.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4468){-webkit-animation-delay:446.8s;animation-delay:446.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4469){-webkit-animation-delay:446.9s;animation-delay:446.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4470){-webkit-animation-delay:447s;animation-delay:447s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4471){-webkit-animation-delay:447.1s;animation-delay:447.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4472){-webkit-animation-delay:447.2s;animation-delay:447.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4473){-webkit-animation-delay:447.3s;animation-delay:447.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4474){-webkit-animation-delay:447.4s;animation-delay:447.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4475){-webkit-animation-delay:447.5s;animation-delay:447.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4476){-webkit-animation-delay:447.6s;animation-delay:447.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4477){-webkit-animation-delay:447.7s;animation-delay:447.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4478){-webkit-animation-delay:447.8s;animation-delay:447.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4479){-webkit-animation-delay:447.9s;animation-delay:447.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4480){-webkit-animation-delay:448s;animation-delay:448s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4481){-webkit-animation-delay:448.1s;animation-delay:448.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4482){-webkit-animation-delay:448.2s;animation-delay:448.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4483){-webkit-animation-delay:448.3s;animation-delay:448.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4484){-webkit-animation-delay:448.4s;animation-delay:448.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4485){-webkit-animation-delay:448.5s;animation-delay:448.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4486){-webkit-animation-delay:448.6s;animation-delay:448.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4487){-webkit-animation-delay:448.7s;animation-delay:448.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4488){-webkit-animation-delay:448.8s;animation-delay:448.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4489){-webkit-animation-delay:448.9s;animation-delay:448.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4490){-webkit-animation-delay:449s;animation-delay:449s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4491){-webkit-animation-delay:449.1s;animation-delay:449.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4492){-webkit-animation-delay:449.2s;animation-delay:449.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4493){-webkit-animation-delay:449.3s;animation-delay:449.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4494){-webkit-animation-delay:449.4s;animation-delay:449.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4495){-webkit-animation-delay:449.5s;animation-delay:449.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4496){-webkit-animation-delay:449.6s;animation-delay:449.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4497){-webkit-animation-delay:449.7s;animation-delay:449.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4498){-webkit-animation-delay:449.8s;animation-delay:449.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4499){-webkit-animation-delay:449.9s;animation-delay:449.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4500){-webkit-animation-delay:450s;animation-delay:450s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4501){-webkit-animation-delay:450.1s;animation-delay:450.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4502){-webkit-animation-delay:450.2s;animation-delay:450.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4503){-webkit-animation-delay:450.3s;animation-delay:450.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4504){-webkit-animation-delay:450.4s;animation-delay:450.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4505){-webkit-animation-delay:450.5s;animation-delay:450.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4506){-webkit-animation-delay:450.6s;animation-delay:450.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4507){-webkit-animation-delay:450.7s;animation-delay:450.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4508){-webkit-animation-delay:450.8s;animation-delay:450.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4509){-webkit-animation-delay:450.9s;animation-delay:450.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4510){-webkit-animation-delay:451s;animation-delay:451s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4511){-webkit-animation-delay:451.1s;animation-delay:451.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4512){-webkit-animation-delay:451.2s;animation-delay:451.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4513){-webkit-animation-delay:451.3s;animation-delay:451.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4514){-webkit-animation-delay:451.4s;animation-delay:451.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4515){-webkit-animation-delay:451.5s;animation-delay:451.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4516){-webkit-animation-delay:451.6s;animation-delay:451.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4517){-webkit-animation-delay:451.7s;animation-delay:451.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4518){-webkit-animation-delay:451.8s;animation-delay:451.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4519){-webkit-animation-delay:451.9s;animation-delay:451.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4520){-webkit-animation-delay:452s;animation-delay:452s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4521){-webkit-animation-delay:452.1s;animation-delay:452.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4522){-webkit-animation-delay:452.2s;animation-delay:452.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4523){-webkit-animation-delay:452.3s;animation-delay:452.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4524){-webkit-animation-delay:452.4s;animation-delay:452.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4525){-webkit-animation-delay:452.5s;animation-delay:452.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4526){-webkit-animation-delay:452.6s;animation-delay:452.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4527){-webkit-animation-delay:452.7s;animation-delay:452.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4528){-webkit-animation-delay:452.8s;animation-delay:452.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4529){-webkit-animation-delay:452.9s;animation-delay:452.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4530){-webkit-animation-delay:453s;animation-delay:453s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4531){-webkit-animation-delay:453.1s;animation-delay:453.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4532){-webkit-animation-delay:453.2s;animation-delay:453.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4533){-webkit-animation-delay:453.3s;animation-delay:453.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4534){-webkit-animation-delay:453.4s;animation-delay:453.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4535){-webkit-animation-delay:453.5s;animation-delay:453.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4536){-webkit-animation-delay:453.6s;animation-delay:453.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4537){-webkit-animation-delay:453.7s;animation-delay:453.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4538){-webkit-animation-delay:453.8s;animation-delay:453.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4539){-webkit-animation-delay:453.9s;animation-delay:453.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4540){-webkit-animation-delay:454s;animation-delay:454s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4541){-webkit-animation-delay:454.1s;animation-delay:454.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4542){-webkit-animation-delay:454.2s;animation-delay:454.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4543){-webkit-animation-delay:454.3s;animation-delay:454.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4544){-webkit-animation-delay:454.4s;animation-delay:454.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4545){-webkit-animation-delay:454.5s;animation-delay:454.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4546){-webkit-animation-delay:454.6s;animation-delay:454.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4547){-webkit-animation-delay:454.7s;animation-delay:454.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4548){-webkit-animation-delay:454.8s;animation-delay:454.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4549){-webkit-animation-delay:454.9s;animation-delay:454.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4550){-webkit-animation-delay:455s;animation-delay:455s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4551){-webkit-animation-delay:455.1s;animation-delay:455.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4552){-webkit-animation-delay:455.2s;animation-delay:455.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4553){-webkit-animation-delay:455.3s;animation-delay:455.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4554){-webkit-animation-delay:455.4s;animation-delay:455.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4555){-webkit-animation-delay:455.5s;animation-delay:455.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4556){-webkit-animation-delay:455.6s;animation-delay:455.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4557){-webkit-animation-delay:455.7s;animation-delay:455.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4558){-webkit-animation-delay:455.8s;animation-delay:455.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4559){-webkit-animation-delay:455.9s;animation-delay:455.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4560){-webkit-animation-delay:456s;animation-delay:456s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4561){-webkit-animation-delay:456.1s;animation-delay:456.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4562){-webkit-animation-delay:456.2s;animation-delay:456.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4563){-webkit-animation-delay:456.3s;animation-delay:456.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4564){-webkit-animation-delay:456.4s;animation-delay:456.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4565){-webkit-animation-delay:456.5s;animation-delay:456.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4566){-webkit-animation-delay:456.6s;animation-delay:456.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4567){-webkit-animation-delay:456.7s;animation-delay:456.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4568){-webkit-animation-delay:456.8s;animation-delay:456.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4569){-webkit-animation-delay:456.9s;animation-delay:456.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4570){-webkit-animation-delay:457s;animation-delay:457s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4571){-webkit-animation-delay:457.1s;animation-delay:457.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4572){-webkit-animation-delay:457.2s;animation-delay:457.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4573){-webkit-animation-delay:457.3s;animation-delay:457.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4574){-webkit-animation-delay:457.4s;animation-delay:457.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4575){-webkit-animation-delay:457.5s;animation-delay:457.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4576){-webkit-animation-delay:457.6s;animation-delay:457.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4577){-webkit-animation-delay:457.7s;animation-delay:457.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4578){-webkit-animation-delay:457.8s;animation-delay:457.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4579){-webkit-animation-delay:457.9s;animation-delay:457.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4580){-webkit-animation-delay:458s;animation-delay:458s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4581){-webkit-animation-delay:458.1s;animation-delay:458.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4582){-webkit-animation-delay:458.2s;animation-delay:458.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4583){-webkit-animation-delay:458.3s;animation-delay:458.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4584){-webkit-animation-delay:458.4s;animation-delay:458.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4585){-webkit-animation-delay:458.5s;animation-delay:458.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4586){-webkit-animation-delay:458.6s;animation-delay:458.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4587){-webkit-animation-delay:458.7s;animation-delay:458.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4588){-webkit-animation-delay:458.8s;animation-delay:458.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4589){-webkit-animation-delay:458.9s;animation-delay:458.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4590){-webkit-animation-delay:459s;animation-delay:459s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4591){-webkit-animation-delay:459.1s;animation-delay:459.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4592){-webkit-animation-delay:459.2s;animation-delay:459.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4593){-webkit-animation-delay:459.3s;animation-delay:459.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4594){-webkit-animation-delay:459.4s;animation-delay:459.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4595){-webkit-animation-delay:459.5s;animation-delay:459.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4596){-webkit-animation-delay:459.6s;animation-delay:459.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4597){-webkit-animation-delay:459.7s;animation-delay:459.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4598){-webkit-animation-delay:459.8s;animation-delay:459.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4599){-webkit-animation-delay:459.9s;animation-delay:459.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4600){-webkit-animation-delay:460s;animation-delay:460s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4601){-webkit-animation-delay:460.1s;animation-delay:460.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4602){-webkit-animation-delay:460.2s;animation-delay:460.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4603){-webkit-animation-delay:460.3s;animation-delay:460.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4604){-webkit-animation-delay:460.4s;animation-delay:460.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4605){-webkit-animation-delay:460.5s;animation-delay:460.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4606){-webkit-animation-delay:460.6s;animation-delay:460.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4607){-webkit-animation-delay:460.7s;animation-delay:460.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4608){-webkit-animation-delay:460.8s;animation-delay:460.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4609){-webkit-animation-delay:460.9s;animation-delay:460.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4610){-webkit-animation-delay:461s;animation-delay:461s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4611){-webkit-animation-delay:461.1s;animation-delay:461.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4612){-webkit-animation-delay:461.2s;animation-delay:461.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4613){-webkit-animation-delay:461.3s;animation-delay:461.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4614){-webkit-animation-delay:461.4s;animation-delay:461.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4615){-webkit-animation-delay:461.5s;animation-delay:461.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4616){-webkit-animation-delay:461.6s;animation-delay:461.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4617){-webkit-animation-delay:461.7s;animation-delay:461.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4618){-webkit-animation-delay:461.8s;animation-delay:461.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4619){-webkit-animation-delay:461.9s;animation-delay:461.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4620){-webkit-animation-delay:462s;animation-delay:462s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4621){-webkit-animation-delay:462.1s;animation-delay:462.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4622){-webkit-animation-delay:462.2s;animation-delay:462.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4623){-webkit-animation-delay:462.3s;animation-delay:462.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4624){-webkit-animation-delay:462.4s;animation-delay:462.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4625){-webkit-animation-delay:462.5s;animation-delay:462.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4626){-webkit-animation-delay:462.6s;animation-delay:462.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4627){-webkit-animation-delay:462.7s;animation-delay:462.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4628){-webkit-animation-delay:462.8s;animation-delay:462.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4629){-webkit-animation-delay:462.9s;animation-delay:462.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4630){-webkit-animation-delay:463s;animation-delay:463s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4631){-webkit-animation-delay:463.1s;animation-delay:463.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4632){-webkit-animation-delay:463.2s;animation-delay:463.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4633){-webkit-animation-delay:463.3s;animation-delay:463.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4634){-webkit-animation-delay:463.4s;animation-delay:463.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4635){-webkit-animation-delay:463.5s;animation-delay:463.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4636){-webkit-animation-delay:463.6s;animation-delay:463.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4637){-webkit-animation-delay:463.7s;animation-delay:463.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4638){-webkit-animation-delay:463.8s;animation-delay:463.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4639){-webkit-animation-delay:463.9s;animation-delay:463.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4640){-webkit-animation-delay:464s;animation-delay:464s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4641){-webkit-animation-delay:464.1s;animation-delay:464.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4642){-webkit-animation-delay:464.2s;animation-delay:464.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4643){-webkit-animation-delay:464.3s;animation-delay:464.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4644){-webkit-animation-delay:464.4s;animation-delay:464.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4645){-webkit-animation-delay:464.5s;animation-delay:464.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4646){-webkit-animation-delay:464.6s;animation-delay:464.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4647){-webkit-animation-delay:464.7s;animation-delay:464.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4648){-webkit-animation-delay:464.8s;animation-delay:464.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4649){-webkit-animation-delay:464.9s;animation-delay:464.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4650){-webkit-animation-delay:465s;animation-delay:465s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4651){-webkit-animation-delay:465.1s;animation-delay:465.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4652){-webkit-animation-delay:465.2s;animation-delay:465.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4653){-webkit-animation-delay:465.3s;animation-delay:465.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4654){-webkit-animation-delay:465.4s;animation-delay:465.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4655){-webkit-animation-delay:465.5s;animation-delay:465.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4656){-webkit-animation-delay:465.6s;animation-delay:465.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4657){-webkit-animation-delay:465.7s;animation-delay:465.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4658){-webkit-animation-delay:465.8s;animation-delay:465.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4659){-webkit-animation-delay:465.9s;animation-delay:465.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4660){-webkit-animation-delay:466s;animation-delay:466s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4661){-webkit-animation-delay:466.1s;animation-delay:466.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4662){-webkit-animation-delay:466.2s;animation-delay:466.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4663){-webkit-animation-delay:466.3s;animation-delay:466.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4664){-webkit-animation-delay:466.4s;animation-delay:466.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4665){-webkit-animation-delay:466.5s;animation-delay:466.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4666){-webkit-animation-delay:466.6s;animation-delay:466.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4667){-webkit-animation-delay:466.7s;animation-delay:466.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4668){-webkit-animation-delay:466.8s;animation-delay:466.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4669){-webkit-animation-delay:466.9s;animation-delay:466.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4670){-webkit-animation-delay:467s;animation-delay:467s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4671){-webkit-animation-delay:467.1s;animation-delay:467.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4672){-webkit-animation-delay:467.2s;animation-delay:467.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4673){-webkit-animation-delay:467.3s;animation-delay:467.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4674){-webkit-animation-delay:467.4s;animation-delay:467.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4675){-webkit-animation-delay:467.5s;animation-delay:467.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4676){-webkit-animation-delay:467.6s;animation-delay:467.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4677){-webkit-animation-delay:467.7s;animation-delay:467.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4678){-webkit-animation-delay:467.8s;animation-delay:467.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4679){-webkit-animation-delay:467.9s;animation-delay:467.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4680){-webkit-animation-delay:468s;animation-delay:468s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4681){-webkit-animation-delay:468.1s;animation-delay:468.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4682){-webkit-animation-delay:468.2s;animation-delay:468.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4683){-webkit-animation-delay:468.3s;animation-delay:468.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4684){-webkit-animation-delay:468.4s;animation-delay:468.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4685){-webkit-animation-delay:468.5s;animation-delay:468.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4686){-webkit-animation-delay:468.6s;animation-delay:468.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4687){-webkit-animation-delay:468.7s;animation-delay:468.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4688){-webkit-animation-delay:468.8s;animation-delay:468.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4689){-webkit-animation-delay:468.9s;animation-delay:468.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4690){-webkit-animation-delay:469s;animation-delay:469s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4691){-webkit-animation-delay:469.1s;animation-delay:469.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4692){-webkit-animation-delay:469.2s;animation-delay:469.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4693){-webkit-animation-delay:469.3s;animation-delay:469.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4694){-webkit-animation-delay:469.4s;animation-delay:469.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4695){-webkit-animation-delay:469.5s;animation-delay:469.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4696){-webkit-animation-delay:469.6s;animation-delay:469.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4697){-webkit-animation-delay:469.7s;animation-delay:469.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4698){-webkit-animation-delay:469.8s;animation-delay:469.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4699){-webkit-animation-delay:469.9s;animation-delay:469.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4700){-webkit-animation-delay:470s;animation-delay:470s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4701){-webkit-animation-delay:470.1s;animation-delay:470.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4702){-webkit-animation-delay:470.2s;animation-delay:470.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4703){-webkit-animation-delay:470.3s;animation-delay:470.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4704){-webkit-animation-delay:470.4s;animation-delay:470.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4705){-webkit-animation-delay:470.5s;animation-delay:470.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4706){-webkit-animation-delay:470.6s;animation-delay:470.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4707){-webkit-animation-delay:470.7s;animation-delay:470.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4708){-webkit-animation-delay:470.8s;animation-delay:470.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4709){-webkit-animation-delay:470.9s;animation-delay:470.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4710){-webkit-animation-delay:471s;animation-delay:471s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4711){-webkit-animation-delay:471.1s;animation-delay:471.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4712){-webkit-animation-delay:471.2s;animation-delay:471.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4713){-webkit-animation-delay:471.3s;animation-delay:471.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4714){-webkit-animation-delay:471.4s;animation-delay:471.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4715){-webkit-animation-delay:471.5s;animation-delay:471.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4716){-webkit-animation-delay:471.6s;animation-delay:471.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4717){-webkit-animation-delay:471.7s;animation-delay:471.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4718){-webkit-animation-delay:471.8s;animation-delay:471.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4719){-webkit-animation-delay:471.9s;animation-delay:471.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4720){-webkit-animation-delay:472s;animation-delay:472s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4721){-webkit-animation-delay:472.1s;animation-delay:472.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4722){-webkit-animation-delay:472.2s;animation-delay:472.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4723){-webkit-animation-delay:472.3s;animation-delay:472.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4724){-webkit-animation-delay:472.4s;animation-delay:472.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4725){-webkit-animation-delay:472.5s;animation-delay:472.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4726){-webkit-animation-delay:472.6s;animation-delay:472.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4727){-webkit-animation-delay:472.7s;animation-delay:472.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4728){-webkit-animation-delay:472.8s;animation-delay:472.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4729){-webkit-animation-delay:472.9s;animation-delay:472.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4730){-webkit-animation-delay:473s;animation-delay:473s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4731){-webkit-animation-delay:473.1s;animation-delay:473.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4732){-webkit-animation-delay:473.2s;animation-delay:473.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4733){-webkit-animation-delay:473.3s;animation-delay:473.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4734){-webkit-animation-delay:473.4s;animation-delay:473.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4735){-webkit-animation-delay:473.5s;animation-delay:473.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4736){-webkit-animation-delay:473.6s;animation-delay:473.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4737){-webkit-animation-delay:473.7s;animation-delay:473.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4738){-webkit-animation-delay:473.8s;animation-delay:473.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4739){-webkit-animation-delay:473.9s;animation-delay:473.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4740){-webkit-animation-delay:474s;animation-delay:474s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4741){-webkit-animation-delay:474.1s;animation-delay:474.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4742){-webkit-animation-delay:474.2s;animation-delay:474.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4743){-webkit-animation-delay:474.3s;animation-delay:474.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4744){-webkit-animation-delay:474.4s;animation-delay:474.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4745){-webkit-animation-delay:474.5s;animation-delay:474.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4746){-webkit-animation-delay:474.6s;animation-delay:474.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4747){-webkit-animation-delay:474.7s;animation-delay:474.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4748){-webkit-animation-delay:474.8s;animation-delay:474.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4749){-webkit-animation-delay:474.9s;animation-delay:474.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4750){-webkit-animation-delay:475s;animation-delay:475s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4751){-webkit-animation-delay:475.1s;animation-delay:475.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4752){-webkit-animation-delay:475.2s;animation-delay:475.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4753){-webkit-animation-delay:475.3s;animation-delay:475.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4754){-webkit-animation-delay:475.4s;animation-delay:475.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4755){-webkit-animation-delay:475.5s;animation-delay:475.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4756){-webkit-animation-delay:475.6s;animation-delay:475.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4757){-webkit-animation-delay:475.7s;animation-delay:475.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4758){-webkit-animation-delay:475.8s;animation-delay:475.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4759){-webkit-animation-delay:475.9s;animation-delay:475.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4760){-webkit-animation-delay:476s;animation-delay:476s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4761){-webkit-animation-delay:476.1s;animation-delay:476.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4762){-webkit-animation-delay:476.2s;animation-delay:476.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4763){-webkit-animation-delay:476.3s;animation-delay:476.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4764){-webkit-animation-delay:476.4s;animation-delay:476.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4765){-webkit-animation-delay:476.5s;animation-delay:476.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4766){-webkit-animation-delay:476.6s;animation-delay:476.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4767){-webkit-animation-delay:476.7s;animation-delay:476.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4768){-webkit-animation-delay:476.8s;animation-delay:476.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4769){-webkit-animation-delay:476.9s;animation-delay:476.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4770){-webkit-animation-delay:477s;animation-delay:477s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4771){-webkit-animation-delay:477.1s;animation-delay:477.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4772){-webkit-animation-delay:477.2s;animation-delay:477.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4773){-webkit-animation-delay:477.3s;animation-delay:477.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4774){-webkit-animation-delay:477.4s;animation-delay:477.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4775){-webkit-animation-delay:477.5s;animation-delay:477.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4776){-webkit-animation-delay:477.6s;animation-delay:477.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4777){-webkit-animation-delay:477.7s;animation-delay:477.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4778){-webkit-animation-delay:477.8s;animation-delay:477.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4779){-webkit-animation-delay:477.9s;animation-delay:477.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4780){-webkit-animation-delay:478s;animation-delay:478s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4781){-webkit-animation-delay:478.1s;animation-delay:478.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4782){-webkit-animation-delay:478.2s;animation-delay:478.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4783){-webkit-animation-delay:478.3s;animation-delay:478.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4784){-webkit-animation-delay:478.4s;animation-delay:478.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4785){-webkit-animation-delay:478.5s;animation-delay:478.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4786){-webkit-animation-delay:478.6s;animation-delay:478.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4787){-webkit-animation-delay:478.7s;animation-delay:478.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4788){-webkit-animation-delay:478.8s;animation-delay:478.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4789){-webkit-animation-delay:478.9s;animation-delay:478.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4790){-webkit-animation-delay:479s;animation-delay:479s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4791){-webkit-animation-delay:479.1s;animation-delay:479.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4792){-webkit-animation-delay:479.2s;animation-delay:479.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4793){-webkit-animation-delay:479.3s;animation-delay:479.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4794){-webkit-animation-delay:479.4s;animation-delay:479.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4795){-webkit-animation-delay:479.5s;animation-delay:479.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4796){-webkit-animation-delay:479.6s;animation-delay:479.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4797){-webkit-animation-delay:479.7s;animation-delay:479.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4798){-webkit-animation-delay:479.8s;animation-delay:479.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4799){-webkit-animation-delay:479.9s;animation-delay:479.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4800){-webkit-animation-delay:480s;animation-delay:480s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4801){-webkit-animation-delay:480.1s;animation-delay:480.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4802){-webkit-animation-delay:480.2s;animation-delay:480.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4803){-webkit-animation-delay:480.3s;animation-delay:480.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4804){-webkit-animation-delay:480.4s;animation-delay:480.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4805){-webkit-animation-delay:480.5s;animation-delay:480.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4806){-webkit-animation-delay:480.6s;animation-delay:480.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4807){-webkit-animation-delay:480.7s;animation-delay:480.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4808){-webkit-animation-delay:480.8s;animation-delay:480.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4809){-webkit-animation-delay:480.9s;animation-delay:480.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4810){-webkit-animation-delay:481s;animation-delay:481s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4811){-webkit-animation-delay:481.1s;animation-delay:481.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4812){-webkit-animation-delay:481.2s;animation-delay:481.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4813){-webkit-animation-delay:481.3s;animation-delay:481.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4814){-webkit-animation-delay:481.4s;animation-delay:481.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4815){-webkit-animation-delay:481.5s;animation-delay:481.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4816){-webkit-animation-delay:481.6s;animation-delay:481.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4817){-webkit-animation-delay:481.7s;animation-delay:481.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4818){-webkit-animation-delay:481.8s;animation-delay:481.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4819){-webkit-animation-delay:481.9s;animation-delay:481.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4820){-webkit-animation-delay:482s;animation-delay:482s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4821){-webkit-animation-delay:482.1s;animation-delay:482.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4822){-webkit-animation-delay:482.2s;animation-delay:482.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4823){-webkit-animation-delay:482.3s;animation-delay:482.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4824){-webkit-animation-delay:482.4s;animation-delay:482.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4825){-webkit-animation-delay:482.5s;animation-delay:482.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4826){-webkit-animation-delay:482.6s;animation-delay:482.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4827){-webkit-animation-delay:482.7s;animation-delay:482.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4828){-webkit-animation-delay:482.8s;animation-delay:482.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4829){-webkit-animation-delay:482.9s;animation-delay:482.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4830){-webkit-animation-delay:483s;animation-delay:483s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4831){-webkit-animation-delay:483.1s;animation-delay:483.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4832){-webkit-animation-delay:483.2s;animation-delay:483.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4833){-webkit-animation-delay:483.3s;animation-delay:483.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4834){-webkit-animation-delay:483.4s;animation-delay:483.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4835){-webkit-animation-delay:483.5s;animation-delay:483.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4836){-webkit-animation-delay:483.6s;animation-delay:483.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4837){-webkit-animation-delay:483.7s;animation-delay:483.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4838){-webkit-animation-delay:483.8s;animation-delay:483.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4839){-webkit-animation-delay:483.9s;animation-delay:483.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4840){-webkit-animation-delay:484s;animation-delay:484s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4841){-webkit-animation-delay:484.1s;animation-delay:484.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4842){-webkit-animation-delay:484.2s;animation-delay:484.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4843){-webkit-animation-delay:484.3s;animation-delay:484.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4844){-webkit-animation-delay:484.4s;animation-delay:484.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4845){-webkit-animation-delay:484.5s;animation-delay:484.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4846){-webkit-animation-delay:484.6s;animation-delay:484.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4847){-webkit-animation-delay:484.7s;animation-delay:484.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4848){-webkit-animation-delay:484.8s;animation-delay:484.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4849){-webkit-animation-delay:484.9s;animation-delay:484.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4850){-webkit-animation-delay:485s;animation-delay:485s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4851){-webkit-animation-delay:485.1s;animation-delay:485.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4852){-webkit-animation-delay:485.2s;animation-delay:485.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4853){-webkit-animation-delay:485.3s;animation-delay:485.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4854){-webkit-animation-delay:485.4s;animation-delay:485.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4855){-webkit-animation-delay:485.5s;animation-delay:485.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4856){-webkit-animation-delay:485.6s;animation-delay:485.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4857){-webkit-animation-delay:485.7s;animation-delay:485.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4858){-webkit-animation-delay:485.8s;animation-delay:485.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4859){-webkit-animation-delay:485.9s;animation-delay:485.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4860){-webkit-animation-delay:486s;animation-delay:486s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4861){-webkit-animation-delay:486.1s;animation-delay:486.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4862){-webkit-animation-delay:486.2s;animation-delay:486.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4863){-webkit-animation-delay:486.3s;animation-delay:486.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4864){-webkit-animation-delay:486.4s;animation-delay:486.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4865){-webkit-animation-delay:486.5s;animation-delay:486.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4866){-webkit-animation-delay:486.6s;animation-delay:486.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4867){-webkit-animation-delay:486.7s;animation-delay:486.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4868){-webkit-animation-delay:486.8s;animation-delay:486.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4869){-webkit-animation-delay:486.9s;animation-delay:486.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4870){-webkit-animation-delay:487s;animation-delay:487s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4871){-webkit-animation-delay:487.1s;animation-delay:487.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4872){-webkit-animation-delay:487.2s;animation-delay:487.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4873){-webkit-animation-delay:487.3s;animation-delay:487.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4874){-webkit-animation-delay:487.4s;animation-delay:487.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4875){-webkit-animation-delay:487.5s;animation-delay:487.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4876){-webkit-animation-delay:487.6s;animation-delay:487.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4877){-webkit-animation-delay:487.7s;animation-delay:487.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4878){-webkit-animation-delay:487.8s;animation-delay:487.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4879){-webkit-animation-delay:487.9s;animation-delay:487.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4880){-webkit-animation-delay:488s;animation-delay:488s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4881){-webkit-animation-delay:488.1s;animation-delay:488.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4882){-webkit-animation-delay:488.2s;animation-delay:488.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4883){-webkit-animation-delay:488.3s;animation-delay:488.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4884){-webkit-animation-delay:488.4s;animation-delay:488.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4885){-webkit-animation-delay:488.5s;animation-delay:488.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4886){-webkit-animation-delay:488.6s;animation-delay:488.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4887){-webkit-animation-delay:488.7s;animation-delay:488.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4888){-webkit-animation-delay:488.8s;animation-delay:488.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4889){-webkit-animation-delay:488.9s;animation-delay:488.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4890){-webkit-animation-delay:489s;animation-delay:489s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4891){-webkit-animation-delay:489.1s;animation-delay:489.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4892){-webkit-animation-delay:489.2s;animation-delay:489.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4893){-webkit-animation-delay:489.3s;animation-delay:489.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4894){-webkit-animation-delay:489.4s;animation-delay:489.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4895){-webkit-animation-delay:489.5s;animation-delay:489.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4896){-webkit-animation-delay:489.6s;animation-delay:489.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4897){-webkit-animation-delay:489.7s;animation-delay:489.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4898){-webkit-animation-delay:489.8s;animation-delay:489.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4899){-webkit-animation-delay:489.9s;animation-delay:489.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4900){-webkit-animation-delay:490s;animation-delay:490s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4901){-webkit-animation-delay:490.1s;animation-delay:490.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4902){-webkit-animation-delay:490.2s;animation-delay:490.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4903){-webkit-animation-delay:490.3s;animation-delay:490.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4904){-webkit-animation-delay:490.4s;animation-delay:490.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4905){-webkit-animation-delay:490.5s;animation-delay:490.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4906){-webkit-animation-delay:490.6s;animation-delay:490.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4907){-webkit-animation-delay:490.7s;animation-delay:490.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4908){-webkit-animation-delay:490.8s;animation-delay:490.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4909){-webkit-animation-delay:490.9s;animation-delay:490.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4910){-webkit-animation-delay:491s;animation-delay:491s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4911){-webkit-animation-delay:491.1s;animation-delay:491.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4912){-webkit-animation-delay:491.2s;animation-delay:491.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4913){-webkit-animation-delay:491.3s;animation-delay:491.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4914){-webkit-animation-delay:491.4s;animation-delay:491.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4915){-webkit-animation-delay:491.5s;animation-delay:491.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4916){-webkit-animation-delay:491.6s;animation-delay:491.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4917){-webkit-animation-delay:491.7s;animation-delay:491.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4918){-webkit-animation-delay:491.8s;animation-delay:491.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4919){-webkit-animation-delay:491.9s;animation-delay:491.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4920){-webkit-animation-delay:492s;animation-delay:492s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4921){-webkit-animation-delay:492.1s;animation-delay:492.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4922){-webkit-animation-delay:492.2s;animation-delay:492.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4923){-webkit-animation-delay:492.3s;animation-delay:492.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4924){-webkit-animation-delay:492.4s;animation-delay:492.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4925){-webkit-animation-delay:492.5s;animation-delay:492.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4926){-webkit-animation-delay:492.6s;animation-delay:492.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4927){-webkit-animation-delay:492.7s;animation-delay:492.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4928){-webkit-animation-delay:492.8s;animation-delay:492.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4929){-webkit-animation-delay:492.9s;animation-delay:492.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4930){-webkit-animation-delay:493s;animation-delay:493s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4931){-webkit-animation-delay:493.1s;animation-delay:493.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4932){-webkit-animation-delay:493.2s;animation-delay:493.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4933){-webkit-animation-delay:493.3s;animation-delay:493.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4934){-webkit-animation-delay:493.4s;animation-delay:493.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4935){-webkit-animation-delay:493.5s;animation-delay:493.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4936){-webkit-animation-delay:493.6s;animation-delay:493.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4937){-webkit-animation-delay:493.7s;animation-delay:493.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4938){-webkit-animation-delay:493.8s;animation-delay:493.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4939){-webkit-animation-delay:493.9s;animation-delay:493.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4940){-webkit-animation-delay:494s;animation-delay:494s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4941){-webkit-animation-delay:494.1s;animation-delay:494.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4942){-webkit-animation-delay:494.2s;animation-delay:494.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4943){-webkit-animation-delay:494.3s;animation-delay:494.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4944){-webkit-animation-delay:494.4s;animation-delay:494.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4945){-webkit-animation-delay:494.5s;animation-delay:494.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4946){-webkit-animation-delay:494.6s;animation-delay:494.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4947){-webkit-animation-delay:494.7s;animation-delay:494.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4948){-webkit-animation-delay:494.8s;animation-delay:494.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4949){-webkit-animation-delay:494.9s;animation-delay:494.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4950){-webkit-animation-delay:495s;animation-delay:495s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4951){-webkit-animation-delay:495.1s;animation-delay:495.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4952){-webkit-animation-delay:495.2s;animation-delay:495.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4953){-webkit-animation-delay:495.3s;animation-delay:495.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4954){-webkit-animation-delay:495.4s;animation-delay:495.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4955){-webkit-animation-delay:495.5s;animation-delay:495.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4956){-webkit-animation-delay:495.6s;animation-delay:495.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4957){-webkit-animation-delay:495.7s;animation-delay:495.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4958){-webkit-animation-delay:495.8s;animation-delay:495.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4959){-webkit-animation-delay:495.9s;animation-delay:495.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4960){-webkit-animation-delay:496s;animation-delay:496s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4961){-webkit-animation-delay:496.1s;animation-delay:496.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4962){-webkit-animation-delay:496.2s;animation-delay:496.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4963){-webkit-animation-delay:496.3s;animation-delay:496.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4964){-webkit-animation-delay:496.4s;animation-delay:496.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4965){-webkit-animation-delay:496.5s;animation-delay:496.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4966){-webkit-animation-delay:496.6s;animation-delay:496.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4967){-webkit-animation-delay:496.7s;animation-delay:496.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4968){-webkit-animation-delay:496.8s;animation-delay:496.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4969){-webkit-animation-delay:496.9s;animation-delay:496.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4970){-webkit-animation-delay:497s;animation-delay:497s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4971){-webkit-animation-delay:497.1s;animation-delay:497.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4972){-webkit-animation-delay:497.2s;animation-delay:497.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4973){-webkit-animation-delay:497.3s;animation-delay:497.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4974){-webkit-animation-delay:497.4s;animation-delay:497.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4975){-webkit-animation-delay:497.5s;animation-delay:497.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4976){-webkit-animation-delay:497.6s;animation-delay:497.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4977){-webkit-animation-delay:497.7s;animation-delay:497.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4978){-webkit-animation-delay:497.8s;animation-delay:497.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4979){-webkit-animation-delay:497.9s;animation-delay:497.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4980){-webkit-animation-delay:498s;animation-delay:498s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4981){-webkit-animation-delay:498.1s;animation-delay:498.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4982){-webkit-animation-delay:498.2s;animation-delay:498.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4983){-webkit-animation-delay:498.3s;animation-delay:498.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4984){-webkit-animation-delay:498.4s;animation-delay:498.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4985){-webkit-animation-delay:498.5s;animation-delay:498.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4986){-webkit-animation-delay:498.6s;animation-delay:498.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4987){-webkit-animation-delay:498.7s;animation-delay:498.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4988){-webkit-animation-delay:498.8s;animation-delay:498.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4989){-webkit-animation-delay:498.9s;animation-delay:498.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4990){-webkit-animation-delay:499s;animation-delay:499s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4991){-webkit-animation-delay:499.1s;animation-delay:499.1s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4992){-webkit-animation-delay:499.2s;animation-delay:499.2s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4993){-webkit-animation-delay:499.3s;animation-delay:499.3s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4994){-webkit-animation-delay:499.4s;animation-delay:499.4s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4995){-webkit-animation-delay:499.5s;animation-delay:499.5s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4996){-webkit-animation-delay:499.6s;animation-delay:499.6s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4997){-webkit-animation-delay:499.7s;animation-delay:499.7s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4998){-webkit-animation-delay:499.8s;animation-delay:499.8s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(4999){-webkit-animation-delay:499.9s;animation-delay:499.9s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:nth-child(5000){-webkit-animation-delay:500s;animation-delay:500s}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper .todo-item-action{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;width:5.75rem}.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper .todo-item-action a{cursor:pointer;font-size:1.2rem;line-height:1.5}.todo-application .content-area-wrapper .content-right .todo-task-list .no-results{display:none;padding:1.5rem;text-align:center}.todo-application .content-area-wrapper .content-right .todo-task-list .no-results.show{display:block}@-webkit-keyframes fadeIn{0%{opacity:0;top:100px}75%{opacity:.5;top:0}100%{opacity:1}}@media (max-width:575.98px){.todo-application .app-content .sidebar-left .todo-sidebar{left:-1.12rem!important}}@media (max-width:767.98px){.todo-application .sidebar-content .sidebar-close-icon{visibility:visible!important}}@media (max-width:991.98px){.todo-application .app-content .sidebar-left .todo-sidebar{-webkit-transform:translateX(-110%);-ms-transform:translateX(-110%);transform:translateX(-110%);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;position:fixed;z-index:5;left:-2px}.todo-application .app-content .sidebar-left.show .todo-sidebar{-webkit-transform:translateX(13%);-ms-transform:translateX(13%);transform:translateX(13%);-webkit-transition:all .3s ease;transition:all .3s ease;display:block}.todo-application .app-content .content-right{width:100%}.todo-application .app-content .content-right .todo-app-list-wrapper{border-left:0}.todo-application .app-content .content-right .app-fixed-search{border-top-left-radius:.5rem}}@media (max-width:575.98px){.content-right .todo-task-list .todo-title-wrapper,.todo-title-area{display:block!important}.content-right .todo-task-list .todo-title-wrapper .todo-item-action{float:none!important;width:100%!important;display:block!important;margin-top:.5rem}.content-right .todo-task-list .todo-title-wrapper .todo-item-action a{margin-right:1rem}}@media (max-width:349.98px){.todo-application .content-area-wrapper .sidebar .todo-sidebar{width:230px}}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li{padding-top:0}} \ No newline at end of file diff --git a/assets/css/pages/app-user.css b/assets/css/pages/app-user.css new file mode 100644 index 0000000..bfe30a4 --- /dev/null +++ b/assets/css/pages/app-user.css @@ -0,0 +1,51 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +/* user page css */ +/*---------------*/ +.users-list-wrapper .actions-dropodown { + box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14); + border-radius: 0.5rem; } + +.users-list-wrapper a, +.users-list-wrapper span { + color: inherit; } + .users-list-wrapper a i, + .users-list-wrapper span i { + cursor: pointer; + font-size: 1.2rem; } + .users-list-wrapper a i.users-delete-icon, + .users-list-wrapper span i.users-delete-icon { + font-size: 1.2rem; } + .users-list-wrapper a i.users-delete-icon:hover, + .users-list-wrapper span i.users-delete-icon:hover { + color: #ea5455; } + .users-list-wrapper a i.users-edit-icon:hover, + .users-list-wrapper span i.users-edit-icon:hover { + color: #3a50dc; } + +.users-list-wrapper .badge { + text-transform: uppercase; } + +.users-list-wrapper .ag-icon-checkbox-unchecked { + color: #b8c2cc !important; + font-size: 22px; } + +.users-list-wrapper .ag-icon-checkbox-checked, +.users-list-wrapper .ag-icon-checkbox-indeterminate { + font-size: 22px; } + +.page-users-view .users-view-image { + width: 150px; } + +.page-users-view table td { + padding-bottom: .8rem; + min-width: 140px; + word-break: break-word; } + +.page-users-view .users-view-permission table td, +.page-users-view .users-view-permission table th { + padding-bottom: 0; } + +.page-users-edit .users-avatar-shadow { + box-shadow: 2px 4px 14px 0 rgba(34, 41, 47, 0.4); } diff --git a/assets/css/pages/app-user.min.css b/assets/css/pages/app-user.min.css new file mode 100644 index 0000000..7b77971 --- /dev/null +++ b/assets/css/pages/app-user.min.css @@ -0,0 +1 @@ +.users-list-wrapper .actions-dropodown{box-shadow:0 2px 8px 0 rgba(0,0,0,.14);border-radius:.5rem}.users-list-wrapper a,.users-list-wrapper span{color:inherit}.users-list-wrapper a i,.users-list-wrapper span i{cursor:pointer;font-size:1.2rem}.users-list-wrapper a i.users-delete-icon,.users-list-wrapper span i.users-delete-icon{font-size:1.2rem}.users-list-wrapper a i.users-delete-icon:hover,.users-list-wrapper span i.users-delete-icon:hover{color:#EA5455}.users-list-wrapper a i.users-edit-icon:hover,.users-list-wrapper span i.users-edit-icon:hover{color:#7367F0}.users-list-wrapper .badge{text-transform:uppercase}.users-list-wrapper .ag-icon-checkbox-unchecked{color:#B8C2CC!important;font-size:22px}.users-list-wrapper .ag-icon-checkbox-checked,.users-list-wrapper .ag-icon-checkbox-indeterminate{font-size:22px}.page-users-view .users-view-image{width:150px}.page-users-view table td{padding-bottom:.8rem;min-width:140px;word-break:break-word}.page-users-view .users-view-permission table td,.page-users-view .users-view-permission table th{padding-bottom:0}.page-users-edit .users-avatar-shadow{box-shadow:2px 4px 14px 0 rgba(34,41,47,.4)} \ No newline at end of file diff --git a/assets/css/pages/app-users.css b/assets/css/pages/app-users.css new file mode 100644 index 0000000..69f9e98 --- /dev/null +++ b/assets/css/pages/app-users.css @@ -0,0 +1,135 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.dataTables_wrapper .dataTables_length { + display: inline-block; } + .dataTables_wrapper .dataTables_length .custom-select { + width: 6.714rem !important; + height: 3rem; + border-radius: 1.428rem; + border: 1px solid #dae1e7; + font-size: 1rem; + margin-bottom: 1.5rem; + background-position: calc(100% - 8px) 13px, calc(100% - 13px) 13px, 100% 0 !important; } + .dataTables_wrapper .dataTables_length .custom-select:focus { + box-shadow: none; } + +.dataTables_wrapper .dataTables_filter { + display: flex; + justify-content: flex-end; } + .dataTables_wrapper .dataTables_filter .form-control { + border-radius: 1.428rem; + border: 1px solid #dae1e7; + font-size: 1rem; + width: 197px; + height: 40px; + padding-left: 2.2rem; } + .dataTables_wrapper .dataTables_filter label { + position: relative; } + .dataTables_wrapper .dataTables_filter label:after { + content: "\e8bd"; + font-family: "feather"; + position: absolute; + left: 1.428rem; + top: 10px; + font-size: 1.1rem; + color: #dae1e7; } + +.dataTables_wrapper .dt-checkboxes-select-all input, +.dataTables_wrapper .dt-checkboxes-select input { + width: 0; + position: relative; } + .dataTables_wrapper .dt-checkboxes-select-all input:before, + .dataTables_wrapper .dt-checkboxes-select input:before { + border: 2px solid #b4b4b4; + content: ""; + width: 1.071rem; + height: 1.071rem; + padding: 0; + border-radius: 2px; + transition: all 0.2s ease; + transform: rotate(-90deg); + overflow: hidden; + transition: all 0.2s ease; + position: absolute; } + .dataTables_wrapper .dt-checkboxes-select-all input:after, + .dataTables_wrapper .dt-checkboxes-select input:after { + background-color: #3a50dc; + border: 2px solid #3a50dc; + font-family: "feather"; + content: "\e83f"; + font-size: 0.75rem; + line-height: 1.2; + color: #fff; + opacity: 0; + position: absolute; + width: 0.928rem; + height: 1rem; + transform: translate(100%); + transform-origin: right; + transition: all 0.2s ease; + overflow: hidden; } + .dataTables_wrapper .dt-checkboxes-select-all input:active:checked:after, + .dataTables_wrapper .dt-checkboxes-select input:active:checked:after { + transform: translate(3px); } + .dataTables_wrapper .dt-checkboxes-select-all input:checked:before, + .dataTables_wrapper .dt-checkboxes-select input:checked:before { + border: 2px solid #3a50dc; + transform: rotate(0deg); } + .dataTables_wrapper .dt-checkboxes-select-all input:checked:after, + .dataTables_wrapper .dt-checkboxes-select input:checked:after { + transition: all 0.2s ease; + opacity: 1; + transform: translate(0); } + +.dataTables_wrapper .dataTable thead tr th:first-child { + padding-right: 2rem; } + +.dataTables_wrapper .dataTable tbody .select-checkbox:before, .dataTables_wrapper .dataTable tbody .select-checkbox:after { + display: none !important; } + +.dataTables_wrapper .dataTable tbody tr.selected { + border-radius: 0; } + +.dataTables_wrapper .dataTable tbody tr td:first-child { + padding-right: 2rem; } + +.dataTables_wrapper .dataTable tbody tr td .user-info { + display: flex; + justify-content: flex-start; + align-items: center; } + +.dataTables_wrapper .dataTables_paginate .pagination { + justify-content: center !important; } + +@media (max-width: 1199.98px) { + .dataTables_wrapper .dataTable tbody tr td:nth-child(2) { + display: flex; + flex-wrap: wrap; } } + +_:-ms-lang(x) tbody tr td.dt-checkboxes-cell input, +_:-ms-lang(x) tbody tr th.dt-checkboxes-cell input, +_:-ms-lang(x) thead tr td.dt-checkboxes-cell input, +_:-ms-lang(x) thead tr th.dt-checkboxes-cell input, +.dataTable tbody tr td.dt-checkboxes-cell input, +.dataTable tbody tr th.dt-checkboxes-cell input, +.dataTable thead tr td.dt-checkboxes-cell input, +.dataTable thead tr th.dt-checkboxes-cell input { + width: auto !important; } + +@supports (-moz-osx-font-smoothing: auto) { + .dataTable input { + width: auto !important; } } + +@media not all and (min-resolution: 0.001dpcm) { + @supports (-webkit-appearance: none) { + .dataTable tbody td.dt-checkboxes-cell input:after { + left: -0.485rem; } + .dataTable .dt-checkboxes-cell input { + -webkit-appearance: none; + top: -10px; } } } + +.dataTable .mac-checkbox { + -webkit-appearance: none; + outline: none; + width: auto; } diff --git a/assets/css/pages/app-users.min.css b/assets/css/pages/app-users.min.css new file mode 100644 index 0000000..6ede7ea --- /dev/null +++ b/assets/css/pages/app-users.min.css @@ -0,0 +1 @@ +.dataTables_wrapper .dataTables_length{display:inline-block}.dataTables_wrapper .dataTables_length .custom-select{width:6.714rem!important;height:3rem;border-radius:1.428rem;border:1px solid #DAE1E7;font-size:1rem;margin-bottom:1.5rem;background-position:calc(100% - 8px) 13px,calc(100% - 13px) 13px,100% 0!important}.dataTables_wrapper .dataTables_length .custom-select:focus{box-shadow:none}.dataTables_wrapper .dataTables_filter{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.dataTables_wrapper .dataTables_filter .form-control{border-radius:1.428rem;border:1px solid #DAE1E7;font-size:1rem;width:197px;height:40px;padding-left:2.2rem}.dataTables_wrapper .dataTables_filter label{position:relative}.dataTables_wrapper .dataTables_filter label:after{content:'\e8bd';font-family:feather;position:absolute;left:1.428rem;top:10px;font-size:1.1rem;color:#DAE1E7}.dataTables_wrapper .dt-checkboxes-select input,.dataTables_wrapper .dt-checkboxes-select-all input{width:0;position:relative}.dataTables_wrapper .dt-checkboxes-select input:before,.dataTables_wrapper .dt-checkboxes-select-all input:before{border:2px solid #B4B4B4;content:'';width:1.071rem;height:1.071rem;padding:0;border-radius:2px;-webkit-transition:all .2s ease;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);overflow:hidden;transition:all .2s ease;position:absolute}.dataTables_wrapper .dataTable tbody tr td:first-child,.dataTables_wrapper .dataTable thead tr th:first-child{padding-right:2rem}.dataTables_wrapper .dt-checkboxes-select input:after,.dataTables_wrapper .dt-checkboxes-select-all input:after{background-color:#7367F0;border:2px solid #7367F0;font-family:feather;content:'\e83f';font-size:.75rem;line-height:1.2;color:#FFF;opacity:0;position:absolute;width:.928rem;height:1rem;-webkit-transform:translate(100%);-ms-transform:translate(100%);transform:translate(100%);-webkit-transform-origin:right;-ms-transform-origin:right;transform-origin:right;-webkit-transition:all .2s ease;transition:all .2s ease;overflow:hidden}.dataTables_wrapper .dt-checkboxes-select input:active:checked:after,.dataTables_wrapper .dt-checkboxes-select-all input:active:checked:after{-webkit-transform:translate(3px);-ms-transform:translate(3px);transform:translate(3px)}.dataTables_wrapper .dt-checkboxes-select input:checked:before,.dataTables_wrapper .dt-checkboxes-select-all input:checked:before{border:2px solid #7367F0;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.dataTables_wrapper .dt-checkboxes-select input:checked:after,.dataTables_wrapper .dt-checkboxes-select-all input:checked:after{-webkit-transition:all .2s ease;transition:all .2s ease;opacity:1;-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0)}.dataTables_wrapper .dataTable tbody .select-checkbox:after,.dataTables_wrapper .dataTable tbody .select-checkbox:before{display:none!important}.dataTables_wrapper .dataTable tbody tr.selected{border-radius:0}.dataTables_wrapper .dataTable tbody tr td .user-info{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.dataTables_wrapper .dataTables_paginate .pagination{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}@media (max-width:1199.98px){.dataTables_wrapper .dataTable tbody tr td:nth-child(2){display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}}.dataTable tbody tr td.dt-checkboxes-cell input,.dataTable tbody tr th.dt-checkboxes-cell input,.dataTable thead tr td.dt-checkboxes-cell input,.dataTable thead tr th.dt-checkboxes-cell input,_:-ms-lang(x) tbody tr td.dt-checkboxes-cell input,_:-ms-lang(x) tbody tr th.dt-checkboxes-cell input,_:-ms-lang(x) thead tr td.dt-checkboxes-cell input,_:-ms-lang(x) thead tr th.dt-checkboxes-cell input{width:auto!important}@supports (-moz-osx-font-smoothing:auto){.dataTable input{width:auto!important}}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.dataTable tbody td.dt-checkboxes-cell input:after{left:-.485rem}.dataTable .dt-checkboxes-cell input{-webkit-appearance:none;top:-10px}}}.dataTable .mac-checkbox{-webkit-appearance:none;outline:0;width:auto} \ No newline at end of file diff --git a/assets/css/pages/authentication.css b/assets/css/pages/authentication.css new file mode 100644 index 0000000..a5969a5 --- /dev/null +++ b/assets/css/pages/authentication.css @@ -0,0 +1,14 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.bg-authentication { + background-color: #eff2f7; } + .bg-authentication .login-footer { + padding: 0rem 1.5rem 0.5rem; } + .bg-authentication .login-footer .footer-btn .btn { + padding: 0.9rem 1.2rem !important; + margin: 1rem 1rem 1rem 0rem; } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .bg-authentication { + width: 100%; } } diff --git a/assets/css/pages/authentication.min.css b/assets/css/pages/authentication.min.css new file mode 100644 index 0000000..fa2f602 --- /dev/null +++ b/assets/css/pages/authentication.min.css @@ -0,0 +1 @@ +.bg-authentication{background-color:#EFF2F7}.bg-authentication .login-footer{padding:0 1.5rem .5rem}.bg-authentication .login-footer .footer-btn .btn{padding:.9rem 1.2rem!important;margin:1rem 1rem 1rem 0}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.bg-authentication{width:100%}} \ No newline at end of file diff --git a/assets/css/pages/card-analytics.css b/assets/css/pages/card-analytics.css new file mode 100644 index 0000000..4606788 --- /dev/null +++ b/assets/css/pages/card-analytics.css @@ -0,0 +1,38 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.customer-info.list-group .list-group-item:last-child { + border-bottom-left-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } + +.customer-info.list-group .list-group-item .series-info i { + top: 0; + margin-right: 0.3rem; } + +.avg-sessions .progress { + margin-top: 0.5rem; } + +.analytics-list.list-group .list-group-item { + border: 0; } + .analytics-list.list-group .list-group-item:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; } + .analytics-list.list-group .list-group-item .btn { + display: none; } + .analytics-list.list-group .list-group-item:hover .btn { + display: inline-block; } + +.chart-dropdown .btn { + font-size: 0.8rem; + font-weight: 500; } + .chart-dropdown .btn:after { + left: 0; + position: relative; } + +@media only screen and (max-width: 992px) and (min-width: 768px) { + .analytics-list .float-left, .analytics-list .float-right { + display: block; } } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + #dashboard-analytics .avatar .avatar-content, #statistics-card .avatar .avatar-content { + padding: 0 !important; } } diff --git a/assets/css/pages/card-analytics.min.css b/assets/css/pages/card-analytics.min.css new file mode 100644 index 0000000..29a31d0 --- /dev/null +++ b/assets/css/pages/card-analytics.min.css @@ -0,0 +1 @@ +.customer-info.list-group .list-group-item:last-child{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.customer-info.list-group .list-group-item .series-info i{top:0;margin-right:.3rem}.avg-sessions .progress{margin-top:.5rem}.analytics-list.list-group .list-group-item{border:0}.analytics-list.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.analytics-list.list-group .list-group-item .btn{display:none}.analytics-list.list-group .list-group-item:hover .btn{display:inline-block}.chart-dropdown .btn{font-size:.8rem;font-weight:500}.chart-dropdown .btn:after{left:0;position:relative}@media only screen and (max-width:992px) and (min-width:768px){.analytics-list .float-left,.analytics-list .float-right{display:block}}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){#dashboard-analytics .avatar .avatar-content,#statistics-card .avatar .avatar-content{padding:0!important}} \ No newline at end of file diff --git a/assets/css/pages/colors.css b/assets/css/pages/colors.css new file mode 100644 index 0000000..60880b7 --- /dev/null +++ b/assets/css/pages/colors.css @@ -0,0 +1,10 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.colors-list li { + padding: 0.4rem; } + .colors-list li i { + font-size: 1.2rem; + top: 2px; + position: relative; + margin-right: 0.25rem; } diff --git a/assets/css/pages/colors.min.css b/assets/css/pages/colors.min.css new file mode 100644 index 0000000..10398c4 --- /dev/null +++ b/assets/css/pages/colors.min.css @@ -0,0 +1 @@ +.colors-list li{padding:.4rem}.colors-list li i{font-size:1.2rem;top:2px;position:relative;margin-right:.25rem} \ No newline at end of file diff --git a/assets/css/pages/coming-soon.css b/assets/css/pages/coming-soon.css new file mode 100644 index 0000000..eb57793 --- /dev/null +++ b/assets/css/pages/coming-soon.css @@ -0,0 +1,9 @@ +/*========== Coming Soon Background Image =========*/ +.clockCard { + float: left; } + +.getting-started { + font-size: 3rem; } + +.lead { + font-size: 1rem; } diff --git a/assets/css/pages/coming-soon.min.css b/assets/css/pages/coming-soon.min.css new file mode 100644 index 0000000..b7e5529 --- /dev/null +++ b/assets/css/pages/coming-soon.min.css @@ -0,0 +1 @@ +.clockCard{float:left}.getting-started{font-size:3rem}.lead{font-size:1rem} \ No newline at end of file diff --git a/assets/css/pages/dashboard-analytics.css b/assets/css/pages/dashboard-analytics.css new file mode 100644 index 0000000..1c2869a --- /dev/null +++ b/assets/css/pages/dashboard-analytics.css @@ -0,0 +1,32 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +#dashboard-analytics .img-left { + width: 200px; + position: absolute; + top: 0; + left: 0; } + +#dashboard-analytics .img-right { + width: 175px; + position: absolute; + top: 0; + right: 0; } + +#dashboard-analytics .bg-analytics { + background: linear-gradient(118deg, #3a50dc, rgb(24, 61, 176)); } + #dashboard-analytics .bg-analytics .avatar { + margin-bottom: 2rem; } + +#dashboard-analytics table tr th:first-child, #dashboard-analytics table tr td:first-child { + padding-left: 2rem; } + +#dashboard-analytics table tr th:last-child, #dashboard-analytics table tr td:last-child { + padding-right: 2rem; } + +#dashboard-analytics table td { + padding: .75rem; } + +@media only screen and (max-width: 576px) { + #dashboard-analytics .img-left, #dashboard-analytics .img-right { + width: 140px; } } diff --git a/assets/css/pages/dashboard-analytics.min.css b/assets/css/pages/dashboard-analytics.min.css new file mode 100644 index 0000000..a64b450 --- /dev/null +++ b/assets/css/pages/dashboard-analytics.min.css @@ -0,0 +1 @@ +#dashboard-analytics .img-left{width:200px;position:absolute;top:0;left:0}#dashboard-analytics .img-right{width:175px;position:absolute;top:0;right:0}#dashboard-analytics .bg-analytics{background:-webkit-linear-gradient(332deg,#7367F0,rgba(115,103,240,.7));background:linear-gradient(118deg,#7367F0,rgba(115,103,240,.7))}#dashboard-analytics .bg-analytics .avatar{margin-bottom:2rem}#dashboard-analytics table tr td:first-child,#dashboard-analytics table tr th:first-child{padding-left:2rem}#dashboard-analytics table tr td:last-child,#dashboard-analytics table tr th:last-child{padding-right:2rem}#dashboard-analytics table td{padding:.75rem}@media only screen and (max-width:576px){#dashboard-analytics .img-left,#dashboard-analytics .img-right{width:140px}} \ No newline at end of file diff --git a/assets/css/pages/dashboard-ecommerce.css b/assets/css/pages/dashboard-ecommerce.css new file mode 100644 index 0000000..79ba4ec --- /dev/null +++ b/assets/css/pages/dashboard-ecommerce.css @@ -0,0 +1,41 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.chat-application .chat-app-window .user-chats { + padding: 10px 20px; + position: relative; + text-align: center; + height: 415px; } + .chat-application .chat-app-window .user-chats .chats { + padding: 0; } + .chat-application .chat-app-window .user-chats .chats .chat-body { + display: block; + margin: 10px 30px 0 0; + overflow: hidden; } + .chat-application .chat-app-window .user-chats .chats .chat-body .chat-content { + text-align: left; + display: block; + float: right; + padding: .75rem 1rem; + margin: 0 20px 10px 0; + clear: both; + color: #fff; + background: linear-gradient(118deg, #3a50dc, rgb(24, 61, 176)); + border-radius: .5rem; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08); } + .chat-application .chat-app-window .user-chats .chats .chat-body .chat-content p { + margin: 0; } + .chat-application .chat-app-window .user-chats .chats .chat-avatar { + float: right; } + .chat-application .chat-app-window .user-chats .chats .chat-left .chat-avatar { + float: left; } + .chat-application .chat-app-window .user-chats .chats .chat-left .chat-body { + margin: 0; } + .chat-application .chat-app-window .user-chats .chats .chat-left .chat-content { + text-align: left; + float: left; + margin: 10px 10px 10px 20px; + color: #626262; + background: none; + background-color: white; + border: 1px solid #dae1e7; } diff --git a/assets/css/pages/dashboard-ecommerce.min.css b/assets/css/pages/dashboard-ecommerce.min.css new file mode 100644 index 0000000..08ecbce --- /dev/null +++ b/assets/css/pages/dashboard-ecommerce.min.css @@ -0,0 +1 @@ +.chat-application .chat-app-window .user-chats{padding:10px 20px;position:relative;text-align:center;height:415px}.chat-application .chat-app-window .user-chats .chats{padding:0}.chat-application .chat-app-window .user-chats .chats .chat-body{display:block;margin:10px 30px 0 0;overflow:hidden}.chat-application .chat-app-window .user-chats .chats .chat-body .chat-content{text-align:left;display:block;float:right;padding:.75rem 1rem;margin:0 20px 10px 0;clear:both;color:#FFF;background:-webkit-linear-gradient(332deg,#7367F0,rgba(115,103,240,.7));background:linear-gradient(118deg,#7367F0,rgba(115,103,240,.7));border-radius:.5rem;box-shadow:0 4px 8px 0 rgba(0,0,0,.12),0 2px 4px 0 rgba(0,0,0,.08)}.chat-application .chat-app-window .user-chats .chats .chat-body .chat-content p,.chat-application .chat-app-window .user-chats .chats .chat-left .chat-body{margin:0}.chat-application .chat-app-window .user-chats .chats .chat-avatar{float:right}.chat-application .chat-app-window .user-chats .chats .chat-left .chat-avatar{float:left}.chat-application .chat-app-window .user-chats .chats .chat-left .chat-content{text-align:left;float:left;margin:10px 10px 10px 20px;color:#626262;background:#fff;border:1px solid #DAE1E7} \ No newline at end of file diff --git a/assets/css/pages/data-list-view.css b/assets/css/pages/data-list-view.css new file mode 100644 index 0000000..c5e5e23 --- /dev/null +++ b/assets/css/pages/data-list-view.css @@ -0,0 +1,384 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.data-list-view-header .table-responsive .top, +.data-thumb-view-header .table-responsive .top { + display: flex; + justify-content: space-between; + padding: 0 1rem; + margin-bottom: 1rem; } + .data-list-view-header .table-responsive .top .action-btns, + .data-thumb-view-header .table-responsive .top .action-btns { + margin-top: 1.5rem; + display: flex; } + .data-list-view-header .table-responsive .top .action-btns .actions-dropodown, + .data-thumb-view-header .table-responsive .top .action-btns .actions-dropodown { + box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14); + border-radius: 0.5rem; + margin-right: 0.75rem; } + .data-list-view-header .table-responsive .top .action-btns .actions-dropodown .dropdown-toggle, + .data-thumb-view-header .table-responsive .top .action-btns .actions-dropodown .dropdown-toggle { + font-size: 1.125rem; + font-weight: 500; } + .data-list-view-header .table-responsive .top .action-btns .actions-dropodown .dropdown-toggle:after, + .data-thumb-view-header .table-responsive .top .action-btns .actions-dropodown .dropdown-toggle:after { + left: 0; } + .data-list-view-header .table-responsive .top .action-btns .dt-buttons .btn, + .data-thumb-view-header .table-responsive .top .action-btns .dt-buttons .btn { + padding: 0.9rem 0.938rem; } + .data-list-view-header .table-responsive .top .dataTables_length, + .data-thumb-view-header .table-responsive .top .dataTables_length { + display: inline-block; } + .data-list-view-header .table-responsive .top .dataTables_length .custom-select, + .data-thumb-view-header .table-responsive .top .dataTables_length .custom-select { + width: 8.714rem; + height: 3rem; + border-radius: 1.428rem; + border: 1px solid #dae1e7; + font-size: 1rem; + background-position: calc(100% - 12px) 13px, calc(100% - 20px) 13px, 100% 0; } + .data-list-view-header .table-responsive .top .dataTables_length .custom-select:focus, + .data-thumb-view-header .table-responsive .top .dataTables_length .custom-select:focus { + box-shadow: none; } + .data-list-view-header .table-responsive .top .dataTables_filter, + .data-thumb-view-header .table-responsive .top .dataTables_filter { + display: inline-block; } + .data-list-view-header .table-responsive .top .dataTables_filter .form-control, + .data-thumb-view-header .table-responsive .top .dataTables_filter .form-control { + padding: 1.45rem 2.8rem !important; + border-radius: 1.428rem; + border: 1px solid #dae1e7; } + .data-list-view-header .table-responsive .top .dataTables_filter label, + .data-thumb-view-header .table-responsive .top .dataTables_filter label { + position: relative; } + .data-list-view-header .table-responsive .top .dataTables_filter label:after, + .data-thumb-view-header .table-responsive .top .dataTables_filter label:after { + content: "\e8bd"; + font-family: "feather"; + position: absolute; + left: 1.428rem; + top: 0.928rem; } + +.data-list-view-header .table-responsive .dataTables_wrapper .dataTables_paginate ul.pagination, +.data-thumb-view-header .table-responsive .dataTables_wrapper .dataTables_paginate ul.pagination { + justify-content: center; } + +.data-list-view-header .add-new-data-sidebar .overlay-bg, +.data-thumb-view-header .add-new-data-sidebar .overlay-bg { + background: rgba(0, 0, 0, 0.2); + width: 100%; + height: 100%; + position: fixed; + top: 0; + left: 0; + display: none; + transition: all 0.3s ease; + opacity: 0; + z-index: 1032; } + .data-list-view-header .add-new-data-sidebar .overlay-bg.show, + .data-thumb-view-header .add-new-data-sidebar .overlay-bg.show { + opacity: 1; + display: block; } + +.data-list-view-header .add-new-data-sidebar .add-new-data, +.data-thumb-view-header .add-new-data-sidebar .add-new-data { + width: 28.57rem; + max-width: 90vw; + height: 100vh; + height: calc(var(--vh, 1vh) * 100); + background: #fff; + position: fixed; + left: auto; + right: 0; + top: 0; + z-index: 1033; + box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05); + transform: translateX(100%); + transition: all 0.25s ease; + overflow: hidden; } + .data-list-view-header .add-new-data-sidebar .add-new-data.show, + .data-thumb-view-header .add-new-data-sidebar .add-new-data.show { + transform: translateX(0%); } + .data-list-view-header .add-new-data-sidebar .add-new-data .new-data-title, + .data-thumb-view-header .add-new-data-sidebar .add-new-data .new-data-title { + padding-bottom: 0.714rem; + border-bottom: 1px solid rgba(0, 0, 0, 0.1); } + .data-list-view-header .add-new-data-sidebar .add-new-data .new-data-title .hide-data-sidebar, + .data-thumb-view-header .add-new-data-sidebar .add-new-data .new-data-title .hide-data-sidebar { + position: relative; } + .data-list-view-header .add-new-data-sidebar .add-new-data .new-data-title .hide-data-sidebar i, + .data-thumb-view-header .add-new-data-sidebar .add-new-data .new-data-title .hide-data-sidebar i { + position: absolute; + font-size: 1.71rem; + right: 0; + top: -0.1428rem; + cursor: pointer; } + .data-list-view-header .add-new-data-sidebar .add-new-data .data-items, + .data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items { + border-bottom: 1px solid rgba(0, 0, 0, 0.1); + height: calc(100% - 10rem); + position: relative; } + .data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col, + .data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col { + margin-top: 1.25rem; } + .data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col.data-list-upload, + .data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col.data-list-upload { + margin-top: 2rem; } + .data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone, + .data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone { + min-height: 14.285rem; } + .data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone .dz-message, + .data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone .dz-message { + height: auto; } + .data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone .dz-message:before, + .data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone .dz-message:before { + font-size: 2.857rem; } + +table.data-list-view.dataTable, +table.data-thumb-view.dataTable { + border-spacing: 0 1.3rem; + padding: 0 0.7rem; } + table.data-list-view.dataTable thead th, + table.data-thumb-view.dataTable thead th { + padding: 0.714rem 1.785rem; + font-weight: 600; } + table.data-list-view.dataTable thead th input:focus, + table.data-thumb-view.dataTable thead th input:focus { + outline: 0; } + table.data-list-view.dataTable thead th:first-child, + table.data-thumb-view.dataTable thead th:first-child { + padding-left: 0; } + table.data-list-view.dataTable thead .sorting_asc, + table.data-list-view.dataTable thead .sorting_desc, + table.data-list-view.dataTable thead .sorting, + table.data-thumb-view.dataTable thead .sorting_asc, + table.data-thumb-view.dataTable thead .sorting_desc, + table.data-thumb-view.dataTable thead .sorting { + padding-right: inherit; } + table.data-list-view.dataTable thead .sorting_asc:before, + table.data-list-view.dataTable thead .sorting_desc:before, + table.data-list-view.dataTable thead .sorting:before, + table.data-thumb-view.dataTable thead .sorting_asc:before, + table.data-thumb-view.dataTable thead .sorting_desc:before, + table.data-thumb-view.dataTable thead .sorting:before { + font-size: 0.7rem; + left: 0.857rem; + top: 0.642rem; } + table.data-list-view.dataTable thead .sorting_asc:after, + table.data-list-view.dataTable thead .sorting_desc:after, + table.data-list-view.dataTable thead .sorting:after, + table.data-thumb-view.dataTable thead .sorting_asc:after, + table.data-thumb-view.dataTable thead .sorting_desc:after, + table.data-thumb-view.dataTable thead .sorting:after { + font-size: 0.7rem; + left: 0.857rem; + top: 1.071rem; } + table.data-list-view.dataTable thead .dt-checkboxes-select-all input, + table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input { + width: 0; + position: relative; } + table.data-list-view.dataTable thead .dt-checkboxes-select-all input:before, + table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:before { + border: 2px solid #b4b4b4; + content: ""; + width: 1.071rem; + height: 1.071rem; + padding: 0; + border-radius: 2px; + transition: all 0.2s ease; + transform: rotate(-90deg); + overflow: hidden; + transition: all 0.2s ease; + position: absolute; } + table.data-list-view.dataTable thead .dt-checkboxes-select-all input:after, + table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:after { + background-color: #3a50dc; + border: 2px solid #3a50dc; + font-family: "feather"; + content: "\e83f"; + font-size: 0.75rem; + line-height: 1.2; + color: #fff; + opacity: 0; + position: absolute; + width: 0.928rem; + height: 1rem; + transform: translate(100%); + transform-origin: right; + transition: all 0.2s ease; + overflow: hidden; } + table.data-list-view.dataTable thead .dt-checkboxes-select-all input:active:checked:after, + table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:active:checked:after { + transform: translate(3px); } + table.data-list-view.dataTable thead .dt-checkboxes-select-all input:checked:before, + table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:checked:before { + border: 2px solid #3a50dc; + transform: rotate(0deg); } + table.data-list-view.dataTable thead .dt-checkboxes-select-all input:checked:after, + table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:checked:after { + transition: all 0.2s ease; + opacity: 1; + transform: translate(0); } + table.data-list-view.dataTable tbody tr, + table.data-thumb-view.dataTable tbody tr { + background-color: #fff; + box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 0px; + cursor: pointer; + transition: all 0.3s ease; + border-radius: 0.5rem; } + table.data-list-view.dataTable tbody tr:hover, + table.data-thumb-view.dataTable tbody tr:hover { + transform: translateY(-4px); + transition: all 0.3s ease; } + table.data-list-view.dataTable tbody tr td:first-child, + table.data-thumb-view.dataTable tbody tr td:first-child { + padding-left: 1rem; + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } + table.data-list-view.dataTable tbody tr td:last-child, + table.data-thumb-view.dataTable tbody tr td:last-child { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } + table.data-list-view.dataTable tbody tr.selected td, + table.data-thumb-view.dataTable tbody tr.selected td { + border-radius: 0; } + table.data-list-view.dataTable tbody td, + table.data-thumb-view.dataTable tbody td { + padding: 1.357rem; + border: none; + vertical-align: middle; } + table.data-list-view.dataTable tbody td input:focus, + table.data-thumb-view.dataTable tbody td input:focus { + outline: 0; } + table.data-list-view.dataTable tbody td.product-name, + table.data-thumb-view.dataTable tbody td.product-name { + font-weight: 500; } + table.data-list-view.dataTable tbody td:focus, + table.data-thumb-view.dataTable tbody td:focus { + outline: 0; } + table.data-list-view.dataTable tbody td.dt-checkboxes-cell input, + table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input { + width: 0; + position: relative; } + table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:before, + table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:before { + border: 2px solid #b4b4b4; + position: absolute; + left: -8px; + content: ""; + width: 1.071rem; + height: 1.071rem; + padding: 0; + border-radius: 2px; + transform: rotate(-90deg); + overflow: hidden; + transition: all 0.2s ease; } + table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:after, + table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:after { + background-color: #3a50dc; + font-family: "feather"; + content: "\e83f"; + font-size: 0.75rem; + color: #fff; + opacity: 0; + position: absolute; + left: -0.4285rem; + width: 0.857rem; + height: 1rem; + overflow: hidden; + transform: rotate(-90deg) translate(100%); + transform-origin: right; + transition: all 0.2s ease; } + table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:active:checked:after, + table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:active:checked:after { + transform: translate(3px); } + table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:checked:before, + table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:checked:before { + transform: rotate(0deg); + border: 2px solid #3a50dc; + transition: all 0.2s ease; } + table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:checked:after, + table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:checked:after { + opacity: 1; + transition: all 0.2s ease; + transform: rotate(0deg) translate(0); } + table.data-list-view.dataTable tbody td .progress, + table.data-thumb-view.dataTable tbody td .progress { + margin-bottom: 0; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08); } + +table.data-thumb-view.dataTable tbody tr td { + padding-top: 0.714rem; + padding-bottom: 0.714rem; } + table.data-thumb-view.dataTable tbody tr td.product-img img { + height: 7.857rem; } + +@media (max-width: 768px) { + #data-list-view .table-responsive .top, + #data-thumb-view .table-responsive .top { + flex-direction: column; } + #data-list-view .table-responsive .dt-buttons, + #data-thumb-view .table-responsive .dt-buttons { + width: auto; + text-align: left; } + #data-list-view .table-responsive .dataTables_length, + #data-list-view .table-responsive .dataTables_filter, + #data-thumb-view .table-responsive .dataTables_length, + #data-thumb-view .table-responsive .dataTables_filter { + text-align: right; } } + +@media (max-width: 576px) { + .add-new-data-sidebar .data-items .data-list-upload .dropzone .dz-message:before { + top: 3.428rem; } } + +_:-ms-lang(x) tbody tr td.dt-checkboxes-cell input, +_:-ms-lang(x) tbody tr th.dt-checkboxes-cell input, +_:-ms-lang(x) thead tr td.dt-checkboxes-cell input, +_:-ms-lang(x) thead tr th.dt-checkboxes-cell input, +.data-list-view.dataTable tbody tr td.dt-checkboxes-cell input, +.data-list-view.dataTable tbody tr th.dt-checkboxes-cell input, +.data-list-view.dataTable thead tr td.dt-checkboxes-cell input, +.data-list-view.dataTable thead tr th.dt-checkboxes-cell input, +.data-thumb-view.dataTable tbody tr td.dt-checkboxes-cell input, +.data-thumb-view.dataTable tbody tr th.dt-checkboxes-cell input, +.data-thumb-view.dataTable thead tr td.dt-checkboxes-cell input, +.data-thumb-view.dataTable thead tr th.dt-checkboxes-cell input { + width: auto; } + +_:-ms-lang(x) .table-responsive .top .dataTables_filter .form-control, +.data-list-view.dataTable .table-responsive .top .dataTables_filter .form-control, +.data-thumb-view.dataTable .table-responsive .top .dataTables_filter .form-control { + height: 1.4rem !important; + padding: 0rem 0.5rem !important; } + _:-ms-lang(x) .table-responsive .top .dataTables_filter .form-control:after, + .data-list-view.dataTable .table-responsive .top .dataTables_filter .form-control:after, + .data-thumb-view.dataTable .table-responsive .top .dataTables_filter .form-control:after { + display: none; } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + #data-list-view .table-responsive .top .dataTables_filter .form-control, + #data-thumb-view .table-responsive .top .dataTables_filter .form-control { + height: 3rem !important; + padding: 0rem 1rem !important; } + #data-list-view .table-responsive .top .dataTables_filter label:after, + #data-thumb-view .table-responsive .top .dataTables_filter label:after { + display: none; } } + +@supports (-moz-osx-font-smoothing: auto) { + .data-list-view input, + .data-thumb-view input { + width: auto !important; } } + +@media not all and (min-resolution: 0.001dpcm) { + @supports (-webkit-appearance: none) { + table.data-list-view tbody td.dt-checkboxes-cell input:after, table.data-thumb-view tbody td.dt-checkboxes-cell input:after { + left: -0.485rem; } + .data-list-view .dt-checkboxes-cell input, + .data-thumb-view .dt-checkboxes-cell input { + -webkit-appearance: none; + top: -10px; } } } + +.data-list-view .mac-checkbox, +.data-thumb-view .mac-checkbox { + -webkit-appearance: none; + top: -10px; } diff --git a/assets/css/pages/data-list-view.min.css b/assets/css/pages/data-list-view.min.css new file mode 100644 index 0000000..8d91321 --- /dev/null +++ b/assets/css/pages/data-list-view.min.css @@ -0,0 +1 @@ +table.data-list-view.dataTable tbody td input:focus,table.data-list-view.dataTable tbody td:focus,table.data-list-view.dataTable thead th input:focus,table.data-thumb-view.dataTable tbody td input:focus,table.data-thumb-view.dataTable tbody td:focus,table.data-thumb-view.dataTable thead th input:focus{outline:0}.data-list-view-header .table-responsive .top,.data-thumb-view-header .table-responsive .top{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:0 1rem;margin-bottom:1rem}.data-list-view-header .table-responsive .top .action-btns,.data-thumb-view-header .table-responsive .top .action-btns{margin-top:1.5rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.data-list-view-header .table-responsive .top .dataTables_filter,.data-list-view-header .table-responsive .top .dataTables_length,.data-thumb-view-header .table-responsive .top .dataTables_filter,.data-thumb-view-header .table-responsive .top .dataTables_length{display:inline-block}.data-list-view-header .table-responsive .top .action-btns .actions-dropodown,.data-thumb-view-header .table-responsive .top .action-btns .actions-dropodown{box-shadow:0 2px 8px 0 rgba(0,0,0,.14);border-radius:.5rem;margin-right:.75rem}.data-list-view-header .table-responsive .top .action-btns .actions-dropodown .dropdown-toggle,.data-thumb-view-header .table-responsive .top .action-btns .actions-dropodown .dropdown-toggle{font-size:1.125rem;font-weight:500}.data-list-view-header .table-responsive .top .action-btns .actions-dropodown .dropdown-toggle:after,.data-thumb-view-header .table-responsive .top .action-btns .actions-dropodown .dropdown-toggle:after{left:0}.data-list-view-header .table-responsive .top .action-btns .dt-buttons .btn,.data-thumb-view-header .table-responsive .top .action-btns .dt-buttons .btn{padding:.9rem .938rem}.data-list-view-header .table-responsive .top .dataTables_length .custom-select,.data-thumb-view-header .table-responsive .top .dataTables_length .custom-select{width:8.714rem;height:3rem;border-radius:1.428rem;border:1px solid #DAE1E7;font-size:1rem;background-position:calc(100% - 12px) 13px,calc(100% - 20px) 13px,100% 0}.data-list-view-header .table-responsive .top .dataTables_length .custom-select:focus,.data-thumb-view-header .table-responsive .top .dataTables_length .custom-select:focus{box-shadow:none}.data-list-view-header .table-responsive .top .dataTables_filter .form-control,.data-thumb-view-header .table-responsive .top .dataTables_filter .form-control{padding:1.45rem 2.8rem!important;border-radius:1.428rem;border:1px solid #DAE1E7}.data-list-view-header .table-responsive .top .dataTables_filter label,.data-thumb-view-header .table-responsive .top .dataTables_filter label{position:relative}.data-list-view-header .table-responsive .top .dataTables_filter label:after,.data-thumb-view-header .table-responsive .top .dataTables_filter label:after{content:'\e8bd';font-family:feather;position:absolute;left:1.428rem;top:.928rem}.data-list-view-header .table-responsive .dataTables_wrapper .dataTables_paginate ul.pagination,.data-thumb-view-header .table-responsive .dataTables_wrapper .dataTables_paginate ul.pagination{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.data-list-view-header .add-new-data-sidebar .overlay-bg,.data-thumb-view-header .add-new-data-sidebar .overlay-bg{background:rgba(0,0,0,.2);width:100%;height:100%;position:fixed;top:0;left:0;display:none;-webkit-transition:all .3s ease;transition:all .3s ease;opacity:0;z-index:1032}.data-list-view-header .add-new-data-sidebar .overlay-bg.show,.data-thumb-view-header .add-new-data-sidebar .overlay-bg.show{opacity:1;display:block}.data-list-view-header .add-new-data-sidebar .add-new-data,.data-thumb-view-header .add-new-data-sidebar .add-new-data{width:28.57rem;max-width:90vw;height:100vh;height:calc(var(--vh,1vh) * 100);background:#FFF;position:fixed;left:auto;right:0;top:0;z-index:1033;box-shadow:0 0 15px 0 rgba(0,0,0,.05);-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);-webkit-transition:all .25s ease;transition:all .25s ease;overflow:hidden}.data-list-view-header .add-new-data-sidebar .add-new-data.show,.data-thumb-view-header .add-new-data-sidebar .add-new-data.show{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}.data-list-view-header .add-new-data-sidebar .add-new-data .new-data-title,.data-thumb-view-header .add-new-data-sidebar .add-new-data .new-data-title{padding-bottom:.714rem;border-bottom:1px solid rgba(0,0,0,.1)}.data-list-view-header .add-new-data-sidebar .add-new-data .new-data-title .hide-data-sidebar,.data-thumb-view-header .add-new-data-sidebar .add-new-data .new-data-title .hide-data-sidebar{position:relative}.data-list-view-header .add-new-data-sidebar .add-new-data .new-data-title .hide-data-sidebar i,.data-thumb-view-header .add-new-data-sidebar .add-new-data .new-data-title .hide-data-sidebar i{position:absolute;font-size:1.71rem;right:0;top:-.1428rem;cursor:pointer}.data-list-view-header .add-new-data-sidebar .add-new-data .data-items,.data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items{border-bottom:1px solid rgba(0,0,0,.1);height:calc(100% - 10rem);position:relative}.data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col,.data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col{margin-top:1.25rem}.data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col.data-list-upload,.data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col.data-list-upload{margin-top:2rem}.data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone,.data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone{min-height:14.285rem}.data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone .dz-message,.data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone .dz-message{height:auto}.data-list-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone .dz-message:before,.data-thumb-view-header .add-new-data-sidebar .add-new-data .data-items .data-field-col .dropzone .dz-message:before{font-size:2.857rem}table.data-list-view.dataTable,table.data-thumb-view.dataTable{border-spacing:0 1.3rem;padding:0 .7rem}table.data-list-view.dataTable thead th,table.data-thumb-view.dataTable thead th{padding:.714rem 1.785rem;font-weight:600}table.data-list-view.dataTable thead th:first-child,table.data-thumb-view.dataTable thead th:first-child{padding-left:0}table.data-list-view.dataTable thead .sorting,table.data-list-view.dataTable thead .sorting_asc,table.data-list-view.dataTable thead .sorting_desc,table.data-thumb-view.dataTable thead .sorting,table.data-thumb-view.dataTable thead .sorting_asc,table.data-thumb-view.dataTable thead .sorting_desc{padding-right:inherit}table.data-list-view.dataTable thead .sorting:before,table.data-list-view.dataTable thead .sorting_asc:before,table.data-list-view.dataTable thead .sorting_desc:before,table.data-thumb-view.dataTable thead .sorting:before,table.data-thumb-view.dataTable thead .sorting_asc:before,table.data-thumb-view.dataTable thead .sorting_desc:before{font-size:.7rem;left:.857rem;top:.642rem}table.data-list-view.dataTable thead .sorting:after,table.data-list-view.dataTable thead .sorting_asc:after,table.data-list-view.dataTable thead .sorting_desc:after,table.data-thumb-view.dataTable thead .sorting:after,table.data-thumb-view.dataTable thead .sorting_asc:after,table.data-thumb-view.dataTable thead .sorting_desc:after{font-size:.7rem;left:.857rem;top:1.071rem}table.data-list-view.dataTable thead .dt-checkboxes-select-all input,table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input{width:0;position:relative}table.data-list-view.dataTable thead .dt-checkboxes-select-all input:before,table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:before{border:2px solid #B4B4B4;content:'';width:1.071rem;height:1.071rem;padding:0;border-radius:2px;-webkit-transition:all .2s ease;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);overflow:hidden;transition:all .2s ease;position:absolute}table.data-list-view.dataTable thead .dt-checkboxes-select-all input:after,table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:after{background-color:#7367F0;border:2px solid #7367F0;font-family:feather;content:'\e83f';font-size:.75rem;line-height:1.2;color:#FFF;opacity:0;position:absolute;width:.928rem;height:1rem;-webkit-transform:translate(100%);-ms-transform:translate(100%);transform:translate(100%);-webkit-transform-origin:right;-ms-transform-origin:right;transform-origin:right;-webkit-transition:all .2s ease;transition:all .2s ease;overflow:hidden}table.data-list-view.dataTable thead .dt-checkboxes-select-all input:active:checked:after,table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:active:checked:after{-webkit-transform:translate(3px);-ms-transform:translate(3px);transform:translate(3px)}table.data-list-view.dataTable thead .dt-checkboxes-select-all input:checked:before,table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:checked:before{border:2px solid #7367F0;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}table.data-list-view.dataTable thead .dt-checkboxes-select-all input:checked:after,table.data-thumb-view.dataTable thead .dt-checkboxes-select-all input:checked:after{-webkit-transition:all .2s ease;transition:all .2s ease;opacity:1;-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0)}table.data-list-view.dataTable tbody tr,table.data-thumb-view.dataTable tbody tr{background-color:#FFF;box-shadow:rgba(0,0,0,.05) 0 4px 20px 0;cursor:pointer;-webkit-transition:all .3s ease;transition:all .3s ease;border-radius:.5rem}table.data-list-view.dataTable tbody tr:hover,table.data-thumb-view.dataTable tbody tr:hover{-webkit-transform:translateY(-4px);-ms-transform:translateY(-4px);transform:translateY(-4px);-webkit-transition:all .3s ease;transition:all .3s ease}table.data-list-view.dataTable tbody tr td:first-child,table.data-thumb-view.dataTable tbody tr td:first-child{padding-left:1rem;border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}table.data-list-view.dataTable tbody tr td:last-child,table.data-thumb-view.dataTable tbody tr td:last-child{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}table.data-list-view.dataTable tbody tr.selected td,table.data-thumb-view.dataTable tbody tr.selected td{border-radius:0}table.data-list-view.dataTable tbody td,table.data-thumb-view.dataTable tbody td{padding:1.357rem;border:none;vertical-align:middle}table.data-list-view.dataTable tbody td.product-name,table.data-thumb-view.dataTable tbody td.product-name{font-weight:500}table.data-list-view.dataTable tbody td.dt-checkboxes-cell input,table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input{width:0;position:relative}table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:before,table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:before{border:2px solid #B4B4B4;position:absolute;left:-8px;content:'';width:1.071rem;height:1.071rem;padding:0;border-radius:2px;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);overflow:hidden;-webkit-transition:all .2s ease;transition:all .2s ease}table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:after,table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:after{background-color:#7367F0;font-family:feather;content:'\e83f';font-size:.75rem;color:#FFF;opacity:0;position:absolute;left:-.4285rem;width:.857rem;height:1rem;overflow:hidden;-webkit-transform:rotate(-90deg) translate(100%);-ms-transform:rotate(-90deg) translate(100%);transform:rotate(-90deg) translate(100%);-webkit-transform-origin:right;-ms-transform-origin:right;transform-origin:right;-webkit-transition:all .2s ease;transition:all .2s ease}table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:active:checked:after,table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:active:checked:after{-webkit-transform:translate(3px);-ms-transform:translate(3px);transform:translate(3px)}table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:checked:before,table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:checked:before{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);border:2px solid #7367F0;-webkit-transition:all .2s ease;transition:all .2s ease}table.data-list-view.dataTable tbody td.dt-checkboxes-cell input:checked:after,table.data-thumb-view.dataTable tbody td.dt-checkboxes-cell input:checked:after{opacity:1;-webkit-transition:all .2s ease;transition:all .2s ease;-webkit-transform:rotate(0) translate(0);-ms-transform:rotate(0) translate(0);transform:rotate(0) translate(0)}table.data-list-view.dataTable tbody td .progress,table.data-thumb-view.dataTable tbody td .progress{margin-bottom:0;box-shadow:0 4px 8px 0 rgba(0,0,0,.12),0 2px 4px 0 rgba(0,0,0,.08)}table.data-thumb-view.dataTable tbody tr td{padding-top:.714rem;padding-bottom:.714rem}table.data-thumb-view.dataTable tbody tr td.product-img img{height:7.857rem}@media (max-width:768px){#data-list-view .table-responsive .top,#data-thumb-view .table-responsive .top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}#data-list-view .table-responsive .dt-buttons,#data-thumb-view .table-responsive .dt-buttons{width:auto;text-align:left}#data-list-view .table-responsive .dataTables_filter,#data-list-view .table-responsive .dataTables_length,#data-thumb-view .table-responsive .dataTables_filter,#data-thumb-view .table-responsive .dataTables_length{text-align:right}}@media (max-width:576px){.add-new-data-sidebar .data-items .data-list-upload .dropzone .dz-message:before{top:3.428rem}}.data-list-view.dataTable tbody tr td.dt-checkboxes-cell input,.data-list-view.dataTable tbody tr th.dt-checkboxes-cell input,.data-list-view.dataTable thead tr td.dt-checkboxes-cell input,.data-list-view.dataTable thead tr th.dt-checkboxes-cell input,.data-thumb-view.dataTable tbody tr td.dt-checkboxes-cell input,.data-thumb-view.dataTable tbody tr th.dt-checkboxes-cell input,.data-thumb-view.dataTable thead tr td.dt-checkboxes-cell input,.data-thumb-view.dataTable thead tr th.dt-checkboxes-cell input,_:-ms-lang(x) tbody tr td.dt-checkboxes-cell input,_:-ms-lang(x) tbody tr th.dt-checkboxes-cell input,_:-ms-lang(x) thead tr td.dt-checkboxes-cell input,_:-ms-lang(x) thead tr th.dt-checkboxes-cell input{width:auto}.data-list-view.dataTable .table-responsive .top .dataTables_filter .form-control,.data-thumb-view.dataTable .table-responsive .top .dataTables_filter .form-control,_:-ms-lang(x) .table-responsive .top .dataTables_filter .form-control{height:1.4rem!important;padding:0 .5rem!important}.data-list-view.dataTable .table-responsive .top .dataTables_filter .form-control:after,.data-thumb-view.dataTable .table-responsive .top .dataTables_filter .form-control:after,_:-ms-lang(x) .table-responsive .top .dataTables_filter .form-control:after{display:none}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){#data-list-view .table-responsive .top .dataTables_filter .form-control,#data-thumb-view .table-responsive .top .dataTables_filter .form-control{height:3rem!important;padding:0 1rem!important}#data-list-view .table-responsive .top .dataTables_filter label:after,#data-thumb-view .table-responsive .top .dataTables_filter label:after{display:none}}@supports (-moz-osx-font-smoothing:auto){.data-list-view input,.data-thumb-view input{width:auto!important}}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){table.data-list-view tbody td.dt-checkboxes-cell input:after,table.data-thumb-view tbody td.dt-checkboxes-cell input:after{left:-.485rem}.data-list-view .dt-checkboxes-cell input,.data-thumb-view .dt-checkboxes-cell input{-webkit-appearance:none;top:-10px}}}.data-list-view .mac-checkbox,.data-thumb-view .mac-checkbox{-webkit-appearance:none;top:-10px} \ No newline at end of file diff --git a/assets/css/pages/error.css b/assets/css/pages/error.css new file mode 100644 index 0000000..79e9e67 --- /dev/null +++ b/assets/css/pages/error.css @@ -0,0 +1,2 @@ +.error-code { + font-size: 10rem; } diff --git a/assets/css/pages/error.min.css b/assets/css/pages/error.min.css new file mode 100644 index 0000000..ccb036e --- /dev/null +++ b/assets/css/pages/error.min.css @@ -0,0 +1 @@ +.error-code{font-size:10rem} \ No newline at end of file diff --git a/assets/css/pages/faq.css b/assets/css/pages/faq.css new file mode 100644 index 0000000..2f2e928 --- /dev/null +++ b/assets/css/pages/faq.css @@ -0,0 +1,39 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.faq-bg { + background: url(..//assets/images/pages/faq.jpg) no-repeat; + background-size: cover; } + .faq-bg .form-control:focus ~ .form-control-position i { + color: #3a50dc; } + +.faq .faq-content .faq-table-content { + cursor: pointer; + padding: 0.5rem; + font-weight: 500; } + .faq .faq-content .faq-table-content i { + margin-right: 0.5rem; } + +.faq .supporter-details .supporter-img img { + width: 35px; + height: 35px; + margin-right: 0.5rem; + cursor: pointer; } + +.faq .supporter-info { + vertical-align: middle; } + +.faq .accordion .collapse-title { + font-weight: 500; + color: #2c2c2c; } + +.faq .accordion .collapse-margin { + background-color: #fff; } + +@media only screen and (min-width: 992px) { + .faq-bg .card-body { + padding: 8rem !important; } } + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .faq-bg .card-body { + padding: 6rem !important; } } diff --git a/assets/css/pages/faq.min.css b/assets/css/pages/faq.min.css new file mode 100644 index 0000000..9f13ec0 --- /dev/null +++ b/assets/css/pages/faq.min.css @@ -0,0 +1 @@ +.faq-bg{background:url(..//assets/images/pages/faq.jpg) no-repeat;background-size:cover}.faq-bg .form-control:focus~.form-control-position i{color:#7367F0}.faq .faq-content .faq-table-content{cursor:pointer;padding:.5rem;font-weight:500}.faq .faq-content .faq-table-content i{margin-right:.5rem}.faq .supporter-details .supporter-img img{width:35px;height:35px;margin-right:.5rem;cursor:pointer}.faq .supporter-info{vertical-align:middle}.faq .accordion .collapse-title{font-weight:500;color:#2C2C2C}.faq .accordion .collapse-margin{background-color:#FFF}@media only screen and (min-width:992px){.faq-bg .card-body{padding:8rem!important}}@media only screen and (min-width:768px) and (max-width:991px){.faq-bg .card-body{padding:6rem!important}} \ No newline at end of file diff --git a/assets/css/pages/invoice.css b/assets/css/pages/invoice.css new file mode 100644 index 0000000..0b605e7 --- /dev/null +++ b/assets/css/pages/invoice.css @@ -0,0 +1,49 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.invoice-page { + padding: 2.2rem; } + .invoice-page .recipient-contact i, + .invoice-page .company-contact i { + padding-right: 0.2rem; + position: relative; + top: 2px; } + .invoice-page .recipient-info p, + .invoice-page .company-info p, + .invoice-page .company-contact p, + .invoice-page .recipient-contact p { + line-height: 2; + margin-bottom: 0; } + .invoice-page .invoice-items-table table, + .invoice-page .invoice-total-table table { + border: 2px solid #f8f8f8; } + +@media print { + .content-header, + .buy-now, + .btn-print, + .footer, + .open, + .main-menu, + .invoice-print { + display: none; } + .app-content, + #invoice-template, + .navbar-container, + .navbar-wrapper, + .header-navbar, + .invoice-print, + .content-wrapper { + margin: 0 !important; + padding: 0 !important; } + #invoice-footer { + position: relative; + top: -80px !important; } + #invoice-company-details, + #invoice-footer { + margin-top: 5rem !important; } + .table-responsive { + -ms-overflow-style: none; } } + +@page { + margin: 10px; } diff --git a/assets/css/pages/invoice.min.css b/assets/css/pages/invoice.min.css new file mode 100644 index 0000000..5c0c1c5 --- /dev/null +++ b/assets/css/pages/invoice.min.css @@ -0,0 +1 @@ +.invoice-page{padding:2.2rem}.invoice-page .company-contact i,.invoice-page .recipient-contact i{padding-right:.2rem;position:relative;top:2px}.invoice-page .company-contact p,.invoice-page .company-info p,.invoice-page .recipient-contact p,.invoice-page .recipient-info p{line-height:2;margin-bottom:0}.invoice-page .invoice-items-table table,.invoice-page .invoice-total-table table{border:2px solid #F8F8F8}@media print{.btn-print,.buy-now,.content-header,.footer,.invoice-print,.main-menu,.open{display:none}#invoice-template,.app-content,.content-wrapper,.header-navbar,.invoice-print,.navbar-container,.navbar-wrapper{margin:0!important;padding:0!important}#invoice-footer{position:relative;top:-80px!important}#invoice-company-details,#invoice-footer{margin-top:5rem!important}.table-responsive{-ms-overflow-style:none}}@page{margin:10px} \ No newline at end of file diff --git a/assets/css/pages/knowledge-base.css b/assets/css/pages/knowledge-base.css new file mode 100644 index 0000000..ee4db8f --- /dev/null +++ b/assets/css/pages/knowledge-base.css @@ -0,0 +1,29 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.knowledge-base-bg { + background: url(..//assets/images/pages/knowledge-base-cover.jpg) no-repeat; + background-size: cover; } + +.knowledge-base-category .list-group-item, .knowledge-base-question .list-group-item { + padding: 0.5rem 0; } + .knowledge-base-category .list-group-item:hover, .knowledge-base-question .list-group-item:hover { + background-color: transparent; } + +.article-question li { + margin-bottom: 0.5rem; + display: flex; } + +.article-question i { + font-size: 1.2rem; + top: 2px; + position: relative; + margin: 0 0.5rem; } + +@media only screen and (min-width: 992px) { + .knowledge-base-bg .card-body { + padding: 8rem !important; } } + +@media only screen and (min-width: 768px) and (max-width: 991px) { + .knowledge-base-bg .card-body { + padding: 6rem !important; } } diff --git a/assets/css/pages/knowledge-base.min.css b/assets/css/pages/knowledge-base.min.css new file mode 100644 index 0000000..8eb9fa6 --- /dev/null +++ b/assets/css/pages/knowledge-base.min.css @@ -0,0 +1 @@ +.knowledge-base-bg{background:url(..//assets/images/pages/knowledge-base-cover.jpg) no-repeat;background-size:cover}.knowledge-base-category .list-group-item,.knowledge-base-question .list-group-item{padding:.5rem 0}.knowledge-base-category .list-group-item:hover,.knowledge-base-question .list-group-item:hover{background-color:transparent}.article-question li{margin-bottom:.5rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.article-question i{font-size:1.2rem;top:2px;position:relative;margin:0 .5rem}@media only screen and (min-width:992px){.knowledge-base-bg .card-body{padding:8rem!important}}@media only screen and (min-width:768px) and (max-width:991px){.knowledge-base-bg .card-body{padding:6rem!important}} \ No newline at end of file diff --git a/assets/css/pages/register.css b/assets/css/pages/register.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/pages/register.min.css b/assets/css/pages/register.min.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/css/pages/search.css b/assets/css/pages/search.css new file mode 100644 index 0000000..eb47f42 --- /dev/null +++ b/assets/css/pages/search.css @@ -0,0 +1,36 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +#search-results .media-list .media { + padding: 0.5rem 1rem; } + +#search-results .media-list .media-body .list-inline i { + font-size: 1.2rem; } + +.search-menu .search-filter, .search-menu .dropdown-toggle { + padding: 0.55rem 1rem !important; + cursor: pointer; + background-color: #fff; + box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), 0 5px 15px 0 rgba(0, 0, 0, 0.08); } + +.search-menu .dropdown-toggle { + border-radius: 1.5rem !important; } + .search-menu .dropdown-toggle::after { + display: none; } + +.search-result-info .btn.dropdown-toggle::after { + left: 0; } + +@media only screen and (min-width: 577px) { + #search-results li.media .media-object { + width: 100px; } + #search-results li.media iframe { + width: 100px; + height: 65px; } } + +@media only screen and (max-width: 576px) { + #search-results li.media .media-left { + width: 100%; } + #search-results li.media .media-left img, #search-results li.media .media-left iframe { + width: 100%; + text-align: center; } } diff --git a/assets/css/pages/search.min.css b/assets/css/pages/search.min.css new file mode 100644 index 0000000..d8a6ba3 --- /dev/null +++ b/assets/css/pages/search.min.css @@ -0,0 +1 @@ +#search-results .media-list .media{padding:.5rem 1rem}#search-results .media-list .media-body .list-inline i{font-size:1.2rem}.search-menu .dropdown-toggle,.search-menu .search-filter{padding:.55rem 1rem!important;cursor:pointer;background-color:#FFF;box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)}.search-menu .dropdown-toggle{border-radius:1.5rem!important}.search-menu .dropdown-toggle::after{display:none}.search-result-info .btn.dropdown-toggle::after{left:0}@media only screen and (min-width:577px){#search-results li.media .media-object{width:100px}#search-results li.media iframe{width:100px;height:65px}}@media only screen and (max-width:576px){#search-results li.media .media-left{width:100%}#search-results li.media .media-left iframe,#search-results li.media .media-left img{width:100%;text-align:center}} \ No newline at end of file diff --git a/assets/css/pages/timeline.css b/assets/css/pages/timeline.css new file mode 100644 index 0000000..f897411 --- /dev/null +++ b/assets/css/pages/timeline.css @@ -0,0 +1,679 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +/* Timeline */ +.timeline { + position: relative; + display: block; + margin: 0; + padding: 10px 0; + list-style: none; } + .timeline:after { + content: " "; + display: table; + clear: both; } + .timeline:before { + content: " "; + display: table; } + .timeline > li { + list-style: none; } + .timeline > li:nth-child(even) { + float: left; + clear: left; } + .timeline > li:nth-child(odd) { + float: right; + clear: right; } + .timeline .media { + border-bottom: 1px solid #eee; + font-size: 13px; } + .timeline .media p { + font-size: 13px; } + .timeline .media:last-child { + border-bottom: 0; } + +.timeline-line + .timeline-item { + margin-top: -20px; } + +.timeline-group { + display: block; + position: relative; + margin: 20px 0; + text-align: center; + float: none !important; + z-index: 1; } + +.timeline-poster { + margin-top: -20px; } + .timeline-poster .btn-link { + color: #a1aab0; } + .timeline-poster .btn-link:active { + color: #3e5771; } + .timeline-poster .btn-link:focus { + color: #3e5771; } + .timeline-poster .btn-link:hover { + color: #3e5771; } + .timeline-poster .btn-link.active { + color: #3e5771; } + +#timeline.timeline-center .timeline-line { + display: inline-block; + position: absolute; + top: 0; + bottom: 0; + left: 50%; + width: 2px; + background-color: #ddd; + transform: translate(-50%, 0); } + +#timeline.timeline-center .timeline-item { + position: relative; + display: inline-block; + width: 50%; + padding: 0 50px 35px; } + #timeline.timeline-center .timeline-item:nth-child(even) { + padding: 0px 35px 50px 0px; } + #timeline.timeline-center .timeline-item:nth-child(even):after { + content: ''; + position: absolute; + right: 19px; + top: 10px; + width: 0; + height: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-left: 12px solid #ccc; + z-index: 1; + right: 25px; + top: 20px; + border-left: 11px solid #fff; } + #timeline.timeline-center .timeline-item:nth-child(even):before { + content: ''; + position: absolute; + right: 24px; + top: 20px; + width: 0; + height: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-left: 12px solid #ccc; + z-index: 1; } + #timeline.timeline-center .timeline-item:nth-child(even) > .timeline-badge { + right: -20px; } + #timeline.timeline-center .timeline-item:nth-child(odd) { + padding: 0px 0px 50px 35px; } + #timeline.timeline-center .timeline-item:nth-child(odd):after { + content: ''; + position: absolute; + left: 19px; + top: 10px; + width: 0; + height: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-right: 12px solid #ccc; + z-index: 1; + left: 25px; + top: 20px; + border-right: 11px solid #fff; } + #timeline.timeline-center .timeline-item:nth-child(odd):before { + content: ''; + position: absolute; + left: 24px; + top: 20px; + width: 0; + height: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-right: 12px solid #ccc; + z-index: 1; } + #timeline.timeline-center .timeline-item:nth-child(odd) > .timeline-badge { + left: -20px; } + #timeline.timeline-center .timeline-item > .timeline-badge { + position: absolute; + top: 12px; + z-index: 1; } + #timeline.timeline-center .timeline-item > .timeline-badge > span { + display: inline-block; + width: 40px; + height: 40px; + border-radius: 50%; + text-align: center; + text-decoration: none; + transition: all ease .3s; } + #timeline.timeline-center .timeline-item > .timeline-badge > span i { + color: #fff; + font-size: 1.6rem; + display: block; + line-height: 40px; + top: 0; } + #timeline.timeline-center .timeline-item > .timeline-badge > span:active { + transform: scale(1.1); } + #timeline.timeline-center .timeline-item > .timeline-badge > span:focus { + transform: scale(1.1); } + #timeline.timeline-center .timeline-item > .timeline-badge > span:hover { + transform: scale(1.1); } + #timeline.timeline-center .timeline-item > .timeline-badge > a.active { + transform: scale(1.1); } + #timeline.timeline-center .timeline-item > .timeline-panel { + position: relative; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; } + #timeline.timeline-center .timeline-item > .timeline-panel:hover .timeline-actions { + display: block; } + +#timeline.timeline-right .timeline-line { + display: inline-block; + position: absolute; + top: 0; + bottom: 0; + right: 12px; + width: 2px; + background-color: #ddd; + transform: translate(-50%, 0); } + +#timeline.timeline-right .timeline-group { + text-align: right; } + +#timeline.timeline-right .timeline-item { + position: relative; + display: inline-block; + width: 100%; + padding: 0px 43px 35px 0px; } + #timeline.timeline-right .timeline-item:after { + content: ''; + position: absolute; + right: 33px; + top: 21px; + width: 0; + height: 0; + z-index: 1; + border-top: 11px solid #f8f8f8; + border-bottom: 11px solid #f8f8f8; + border-left: 11px solid #fff; } + #timeline.timeline-right .timeline-item:before { + content: ''; + position: absolute; + right: 32px; + top: 20px; + width: 0; + height: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-left: 12px solid #ccc; + z-index: 1; } + #timeline.timeline-right .timeline-item > .timeline-badge { + right: -8px; } + #timeline.timeline-right .timeline-item > .timeline-badge { + position: absolute; + top: 12px; + z-index: 1; } + #timeline.timeline-right .timeline-item > .timeline-badge > span { + display: inline-block; + width: 40px; + height: 40px; + border-radius: 50%; + text-align: center; + text-decoration: none; + transition: all ease .3s; } + #timeline.timeline-right .timeline-item > .timeline-badge > span i { + color: #fff; + font-size: 1.6rem; + display: block; + line-height: 40px; + top: 0; } + #timeline.timeline-right .timeline-item > .timeline-badge > span:active { + transform: scale(1.1); } + #timeline.timeline-right .timeline-item > .timeline-badge > span:focus { + transform: scale(1.1); } + #timeline.timeline-right .timeline-item > .timeline-badge > span:hover { + transform: scale(1.1); } + #timeline.timeline-right .timeline-item > .timeline-badge > a.active { + transform: scale(1.1); } + #timeline.timeline-right .timeline-item > .timeline-panel { + position: relative; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; } + #timeline.timeline-right .timeline-item > .timeline-panel:hover .timeline-actions { + display: block; } + +#timeline.timeline-right .timeline-item.block:nth-child(even):before { + right: 8px; + left: auto; } + +#timeline.timeline-right .timeline-item.block:nth-child(even):after { + right: 11px; + left: auto; } + +#timeline.timeline-right .timeline-item.block:nth-child(odd):after { + right: 8px; + right: auto; } + +#timeline.timeline-left .timeline-line { + display: inline-block; + position: absolute; + top: 0; + bottom: 0; + left: 12px; + width: 2px; + background-color: #ddd; + transform: translate(-50%, 0); } + +#timeline.timeline-left .timeline-group { + text-align: left; } + +#timeline.timeline-left .timeline-item { + position: relative; + display: inline-block; + width: 100%; + padding: 0 0 35px 43px; } + #timeline.timeline-left .timeline-item:after { + content: ''; + position: absolute; + left: 33px; + top: 21px; + width: 0; + height: 0; + z-index: 1; + border-top: 11px solid #f8f8f8; + border-bottom: 11px solid #f8f8f8; + border-right: 11px solid #fff; } + #timeline.timeline-left .timeline-item:before { + content: ''; + position: absolute; + left: 32px; + top: 20px; + width: 0; + height: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-right: 12px solid #ccc; + z-index: 1; } + #timeline.timeline-left .timeline-item > .timeline-badge { + left: -8px; } + #timeline.timeline-left .timeline-item > .timeline-badge { + position: absolute; + top: 12px; + z-index: 1; } + #timeline.timeline-left .timeline-item > .timeline-badge > span { + display: inline-block; + width: 40px; + height: 40px; + border-radius: 50%; + text-align: center; + text-decoration: none; + transition: all ease .3s; } + #timeline.timeline-left .timeline-item > .timeline-badge > span i { + color: #fff; + font-size: 1.6rem; + display: block; + line-height: 40px; + top: 0; } + #timeline.timeline-left .timeline-item > .timeline-badge > span:active { + transform: scale(1.1); } + #timeline.timeline-left .timeline-item > .timeline-badge > span:focus { + transform: scale(1.1); } + #timeline.timeline-left .timeline-item > .timeline-badge > span:hover { + transform: scale(1.1); } + #timeline.timeline-left .timeline-item > .timeline-badge > a.active { + transform: scale(1.1); } + #timeline.timeline-left .timeline-item > .timeline-panel { + position: relative; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; } + #timeline.timeline-left .timeline-item > .timeline-panel:hover .timeline-actions { + display: block; } + +#timeline .timeline-item.block:nth-child(even) { + width: 100% !important; + margin-top: 5px; } + #timeline .timeline-item.block:nth-child(even):after { + left: 50%; + right: auto; + top: -11px; + border: 0; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #ccc; + transform: translate(-50%, 0); + top: -10px; + border: 0; + border-left: 11px solid #f8f8f8; + border-right: 11px solid #f8f8f8; + border-bottom: 11px solid #fff; } + #timeline .timeline-item.block:nth-child(even):before { + left: 50%; + right: auto; + top: -11px; + border: 0; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #ccc; + transform: translate(-50%, 0); } + #timeline .timeline-item.block:nth-child(even) > .timeline-badge { + top: -28px; + left: 50%; + right: auto; + transform: translate(-50%, 0); } + +#timeline .timeline-item.block:nth-child(odd) { + width: 100% !important; + margin-top: 5px; } + #timeline .timeline-item.block:nth-child(odd):after { + left: 50%; + right: auto; + top: -11px; + border: 0; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #ccc; + transform: translate(-50%, 0); + top: -10px; + border: 0; + border-left: 11px solid #f8f8f8; + border-right: 11px solid #f8f8f8; + border-bottom: 11px solid #fff; } + #timeline .timeline-item.block:nth-child(odd):before { + left: 50%; + right: auto; + top: -11px; + border: 0; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #ccc; + transform: translate(-50%, 0); } + #timeline .timeline-item.block:nth-child(odd) > .timeline-badge { + top: -28px; + left: 50%; + right: auto; + transform: translate(-50%, 0); } + +.timeline-actions { + display: none; } + +.timeline-content { + padding: 15px; } + +.timeline-footer { + padding: 15px; + border-top: 1px solid #eee; + background-color: #fbfcfc; + border-radius: 0 0 5px 5px; } + +.timeline-heading { + padding: 15px; + font-size: 20px; } + +.timeline-liveliness { + padding: 15px; + border-top: 1px solid #eee; + background-color: #fbfcfc; } + +.timeline-heading + .timeline-content { + padding-top: 0; } + +.timeline-date { + font-size: 14px; + color: #aaa; } + +.timeline-embed { + position: relative; + padding-bottom: 56.25%; + padding-top: 25px; + height: 0; } + .timeline-embed .embed-element { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } + .timeline-embed embed { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } + .timeline-embed iframe { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } + .timeline-embed object { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } + +.timeline-img { + display: block; + padding: 5px 0; } + +.timeline-img.first { + margin-right: -10px; } + +.timeline-img.middle { + margin-right: -10px; + margin-left: -10px; } + +.timeline-img.last { + margin-left: -10px; } + +.timeline-resume { + border-top: 1px solid #eee; + background-color: #fbfcfc; } + +.timeline-avatar { + margin-top: -2px; + margin-right: 10px; } + +.timeline-title { + margin: 0; + padding: 0; + font-size: 14px; + line-height: 1.42857; + font-weight: 600; + color: #3e5771; + text-decoration: none; } + .timeline-title > small { + display: block; + font-size: 12px; + line-height: 1.5; + color: #a1aab0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } + +.wrapkit-content-rtl .timeline-avatar { + margin-right: 0; + margin-left: 10px; } + +@media (min-width: 992px) { + .timeline-item:nth-child(even) { + padding: 0px 35px 50px 0px; } + .timeline-item:nth-child(odd) { + padding: 0 0px 50px 35px; } } + +@media (max-width: 991.98px) { + .timeline { + padding-left: 15px; } + .timeline-line { + left: 15px; } + .timeline-group { + display: inline-block; + margin-left: -22px; } + .timeline-item { + width: 100% !important; + margin-top: 0 !important; + padding-right: 10px; } + .timeline-item:nth-child(even):after { + left: 19px; + top: 10px; + border: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-right: 12px solid #ccc; + transform: translate(0, 0); + left: 40px; + top: 21px; + border-top: 11px solid #f8f8f8; + border-bottom: 11px solid #f8f8f8; + border-right: 11px solid #fff; } + .timeline-item:nth-child(even):before { + left: 39px; + top: 20px; + border: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-right: 12px solid #ccc; + transform: translate(0, 0); } + .timeline-item:nth-child(even) > .timeline-badge { + top: 12px; + left: -20px; + right: auto; + transform: translate(0, 0); } + .timeline-item:nth-child(odd):after { + left: 19px; + top: 10px; + border: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-right: 12px solid #ccc; + transform: translate(0, 0); + left: 40px; + top: 21px; + border-top: 11px solid #f8f8f8; + border-bottom: 11px solid #f8f8f8; + border-right: 11px solid #fff; } + .timeline-item:nth-child(odd):before { + left: 39px; + top: 20px; + border: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-right: 12px solid #ccc; + transform: translate(0, 0); } + .timeline-item:nth-child(odd) > .timeline-badge { + top: 12px; + left: -20px; + right: auto; + transform: translate(0, 0); } + .timeline-item.block:nth-child(even) { + padding-bottom: 0; } + .timeline-item.block:nth-child(even):after { + left: 19px; + top: 10px; + border: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-right: 12px solid #ccc; + transform: translate(0, 0); + left: 20px; + top: 11px; + border-top: 11px solid #f8f8f8; + border-bottom: 11px solid #f8f8f8; + border-right: 11px solid #fff; } + .timeline-item.block:nth-child(even):before { + left: 19px; + top: 10px; + border: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-right: 12px solid #ccc; + transform: translate(0, 0); } + .timeline-item.block:nth-child(even) > .timeline-badge { + top: 12px; + left: -6px; + right: auto; + transform: translate(0, 0); } + .timeline-item.block:nth-child(odd) { + padding-bottom: 0; } + .timeline-item.block:nth-child(odd):after { + left: 19px; + top: 10px; + border: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-right: 12px solid #ccc; + transform: translate(0, 0); + left: 20px; + top: 11px; + border-top: 11px solid #f8f8f8; + border-bottom: 11px solid #f8f8f8; + border-right: 11px solid #fff; } + .timeline-item.block:nth-child(odd):before { + left: 19px; + top: 10px; + border: 0; + border-top: 12px solid transparent; + border-bottom: 12px solid transparent; + border-right: 12px solid #ccc; + transform: translate(0, 0); } + .timeline-item.block:nth-child(odd) > .timeline-badge { + top: 12px; + left: -6px; + right: auto; + transform: translate(0, 0); } } + +@media (max-width: 991.98px) { + #timeline.timeline-wrapper .timeline { + padding: 0; } + #timeline.timeline-wrapper .timeline .card-body { + text-align: left; } + #timeline.timeline-wrapper .timeline-line { + display: inline-block; + position: absolute; + top: 0; + bottom: 0; + left: 50%; + width: 2px; + background-color: #ddd; + transform: translate(-50%, 0); } + #timeline.timeline-wrapper .timeline-group { + display: block; + margin-left: -6px; + text-align: center; } + #timeline.timeline-wrapper .timeline-item { + display: block; + padding: 20px 0 20px !important; } + #timeline.timeline-wrapper .timeline-item:nth-child(even) { + float: none; + clear: both; } + #timeline.timeline-wrapper .timeline-item:nth-child(even):after { + display: none; } + #timeline.timeline-wrapper .timeline-item:nth-child(even):before { + display: none; } + #timeline.timeline-wrapper .timeline-item:nth-child(odd) { + float: none; + clear: both; } + #timeline.timeline-wrapper .timeline-item:nth-child(odd):after { + display: none; } + #timeline.timeline-wrapper .timeline-item:nth-child(odd):before { + display: none; } + #timeline.timeline-wrapper .timeline-item > .timeline-badge { + top: 0px !important; + left: 45% !important; } + #timeline.timeline-wrapper .timeline-item.block:nth-child(even) { + float: none; + clear: both; } + #timeline.timeline-wrapper .timeline-item.block:nth-child(even):after { + display: none; } + #timeline.timeline-wrapper .timeline-item.block:nth-child(even):before { + display: none; } + #timeline.timeline-wrapper .timeline-item.block:nth-child(odd) { + float: none; + clear: both; } + #timeline.timeline-wrapper .timeline-item.block:nth-child(odd):after { + display: none; } + #timeline.timeline-wrapper .timeline-item.block:nth-child(odd):before { + display: none; } + #timeline.timeline-wrapper .timeline-item.timeline-poster > .timeline-badge { + display: none; } } + +@media (max-width: 575.98px) { + .timeline-item > .timeline-badge { + top: 0px !important; + left: 44% !important; } } diff --git a/assets/css/pages/timeline.min.css b/assets/css/pages/timeline.min.css new file mode 100644 index 0000000..b2a349e --- /dev/null +++ b/assets/css/pages/timeline.min.css @@ -0,0 +1 @@ +.timeline,.timeline>li{list-style:none}.timeline{position:relative;display:block;margin:0;padding:10px 0}.timeline:after,.timeline:before{content:' ';display:table}.timeline:after{clear:both}.timeline>li:nth-child(even){float:left;clear:left}.timeline>li:nth-child(odd){float:right;clear:right}.timeline .media{border-bottom:1px solid #EEE;font-size:13px}.timeline .media p{font-size:13px}.timeline .media:last-child{border-bottom:0}.timeline-line+.timeline-item{margin-top:-20px}.timeline-group{display:block;position:relative;margin:20px 0;text-align:center;float:none!important;z-index:1}.timeline-poster{margin-top:-20px}.timeline-poster .btn-link{color:#A1AAB0}.timeline-poster .btn-link.active,.timeline-poster .btn-link:active,.timeline-poster .btn-link:focus,.timeline-poster .btn-link:hover{color:#3E5771}#timeline.timeline-center .timeline-line{display:inline-block;position:absolute;top:0;bottom:0;left:50%;width:2px;background-color:#DDD;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}#timeline.timeline-center .timeline-item{position:relative;display:inline-block;width:50%;padding:0 50px 35px}#timeline.timeline-center .timeline-item:nth-child(even):after,#timeline.timeline-center .timeline-item:nth-child(even):before,#timeline.timeline-center .timeline-item:nth-child(odd):after,#timeline.timeline-center .timeline-item:nth-child(odd):before{top:20px;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;position:absolute;content:'';z-index:1}#timeline.timeline-center .timeline-item:nth-child(even){padding:0 35px 50px 0}#timeline.timeline-center .timeline-item:nth-child(even):after{right:25px;border-left:11px solid #FFF}#timeline.timeline-center .timeline-item:nth-child(even):before{right:24px;border-left:12px solid #CCC}#timeline.timeline-center .timeline-item:nth-child(even)>.timeline-badge{right:-20px}#timeline.timeline-center .timeline-item:nth-child(odd){padding:0 0 50px 35px}#timeline.timeline-center .timeline-item:nth-child(odd):after{left:25px;border-right:11px solid #FFF}#timeline.timeline-center .timeline-item:nth-child(odd):before{left:24px;border-right:12px solid #CCC}#timeline.timeline-center .timeline-item:nth-child(odd)>.timeline-badge{left:-20px}#timeline.timeline-center .timeline-item>.timeline-badge{position:absolute;top:12px;z-index:1}#timeline.timeline-center .timeline-item>.timeline-badge>span{display:inline-block;width:40px;height:40px;border-radius:50%;text-align:center;text-decoration:none;-webkit-transition:all ease .3s;transition:all ease .3s}#timeline.timeline-center .timeline-item>.timeline-badge>span i{color:#FFF;font-size:1.6rem;display:block;line-height:40px;top:0}#timeline.timeline-center .timeline-item>.timeline-badge>a.active,#timeline.timeline-center .timeline-item>.timeline-badge>span:active,#timeline.timeline-center .timeline-item>.timeline-badge>span:focus,#timeline.timeline-center .timeline-item>.timeline-badge>span:hover{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}#timeline.timeline-center .timeline-item>.timeline-panel{position:relative;background-color:#FFF;border:1px solid #DDD;border-radius:4px}#timeline.timeline-center .timeline-item>.timeline-panel:hover .timeline-actions{display:block}#timeline.timeline-right .timeline-line{display:inline-block;position:absolute;top:0;bottom:0;right:12px;width:2px;background-color:#DDD;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}#timeline.timeline-right .timeline-group{text-align:right}#timeline.timeline-right .timeline-item{position:relative;display:inline-block;width:100%;padding:0 43px 35px 0}#timeline.timeline-right .timeline-item:after{content:'';position:absolute;right:33px;top:21px;width:0;height:0;z-index:1;border-top:11px solid #F8F8F8;border-bottom:11px solid #F8F8F8;border-left:11px solid #FFF}#timeline.timeline-right .timeline-item:before{content:'';position:absolute;right:32px;top:20px;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;border-left:12px solid #CCC;z-index:1}#timeline.timeline-right .timeline-item>.timeline-badge{right:-8px;position:absolute;top:12px;z-index:1}#timeline.timeline-right .timeline-item>.timeline-badge>span{display:inline-block;width:40px;height:40px;border-radius:50%;text-align:center;text-decoration:none;-webkit-transition:all ease .3s;transition:all ease .3s}#timeline.timeline-right .timeline-item>.timeline-badge>span i{color:#FFF;font-size:1.6rem;display:block;line-height:40px;top:0}#timeline.timeline-right .timeline-item>.timeline-badge>a.active,#timeline.timeline-right .timeline-item>.timeline-badge>span:active,#timeline.timeline-right .timeline-item>.timeline-badge>span:focus,#timeline.timeline-right .timeline-item>.timeline-badge>span:hover{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}#timeline.timeline-right .timeline-item>.timeline-panel{position:relative;background-color:#FFF;border:1px solid #DDD;border-radius:4px}#timeline.timeline-right .timeline-item>.timeline-panel:hover .timeline-actions{display:block}#timeline.timeline-right .timeline-item.block:nth-child(even):before{right:8px;left:auto}#timeline.timeline-right .timeline-item.block:nth-child(even):after{right:11px;left:auto}#timeline.timeline-right .timeline-item.block:nth-child(odd):after{right:8px;right:auto}#timeline.timeline-left .timeline-line{display:inline-block;position:absolute;top:0;bottom:0;left:12px;width:2px;background-color:#DDD;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}#timeline.timeline-left .timeline-group{text-align:left}#timeline.timeline-left .timeline-item{position:relative;display:inline-block;width:100%;padding:0 0 35px 43px}.timeline-content,.timeline-footer,.timeline-liveliness{padding:15px}#timeline.timeline-left .timeline-item:after{content:'';position:absolute;left:33px;top:21px;width:0;height:0;z-index:1;border-top:11px solid #F8F8F8;border-bottom:11px solid #F8F8F8;border-right:11px solid #FFF}#timeline.timeline-left .timeline-item:before{content:'';position:absolute;left:32px;top:20px;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;border-right:12px solid #CCC;z-index:1}#timeline.timeline-left .timeline-item>.timeline-badge{left:-8px;position:absolute;top:12px;z-index:1}#timeline.timeline-left .timeline-item>.timeline-badge>span{display:inline-block;width:40px;height:40px;border-radius:50%;text-align:center;text-decoration:none;-webkit-transition:all ease .3s;transition:all ease .3s}#timeline .timeline-item.block:nth-child(even),#timeline .timeline-item.block:nth-child(odd){width:100%!important;margin-top:5px}#timeline.timeline-left .timeline-item>.timeline-badge>span i{color:#FFF;font-size:1.6rem;display:block;line-height:40px;top:0}#timeline.timeline-left .timeline-item>.timeline-badge>a.active,#timeline.timeline-left .timeline-item>.timeline-badge>span:active,#timeline.timeline-left .timeline-item>.timeline-badge>span:focus,#timeline.timeline-left .timeline-item>.timeline-badge>span:hover{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}#timeline.timeline-left .timeline-item>.timeline-panel{position:relative;background-color:#FFF;border:1px solid #DDD;border-radius:4px}#timeline.timeline-left .timeline-item>.timeline-panel:hover .timeline-actions{display:block}#timeline .timeline-item.block:nth-child(even):after{left:50%;right:auto;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);top:-10px;border:0;border-left:11px solid #F8F8F8;border-right:11px solid #F8F8F8;border-bottom:11px solid #FFF}#timeline .timeline-item.block:nth-child(even):before{left:50%;right:auto;top:-11px;border:0;border-left:12px solid transparent;border-right:12px solid transparent;border-bottom:12px solid #CCC;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}#timeline .timeline-item.block:nth-child(even)>.timeline-badge{top:-28px;left:50%;right:auto;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}#timeline .timeline-item.block:nth-child(odd):after{left:50%;right:auto;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);top:-10px;border:0;border-left:11px solid #F8F8F8;border-right:11px solid #F8F8F8;border-bottom:11px solid #FFF}#timeline .timeline-item.block:nth-child(odd):before{left:50%;right:auto;top:-11px;border:0;border-left:12px solid transparent;border-right:12px solid transparent;border-bottom:12px solid #CCC;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}.timeline-footer,.timeline-liveliness,.timeline-resume{border-top:1px solid #EEE;background-color:#FBFCFC}#timeline .timeline-item.block:nth-child(odd)>.timeline-badge{top:-28px;left:50%;right:auto;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}.timeline-actions{display:none}.timeline-footer{border-radius:0 0 5px 5px}.timeline-heading{padding:15px;font-size:20px}.timeline-heading+.timeline-content{padding-top:0}.timeline-date{font-size:14px;color:#AAA}.timeline-embed{position:relative;padding-bottom:56.25%;padding-top:25px;height:0}.timeline-embed .embed-element,.timeline-embed embed,.timeline-embed iframe,.timeline-embed object{position:absolute;top:0;left:0;width:100%;height:100%}.timeline-img{display:block;padding:5px 0}.timeline-img.first{margin-right:-10px}.timeline-img.middle{margin-right:-10px;margin-left:-10px}.timeline-img.last{margin-left:-10px}.timeline-avatar{margin-top:-2px;margin-right:10px}.timeline-title{margin:0;padding:0;font-size:14px;line-height:1.42857;font-weight:600;color:#3E5771;text-decoration:none}.timeline-title>small{display:block;font-size:12px;line-height:1.5;color:#A1AAB0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wrapkit-content-rtl .timeline-avatar{margin-right:0;margin-left:10px}@media (min-width:992px){.timeline-item:nth-child(even){padding:0 35px 50px 0}.timeline-item:nth-child(odd){padding:0 0 50px 35px}}@media (max-width:991.98px){.timeline-item.block:nth-child(even),.timeline-item.block:nth-child(odd){padding-bottom:0}.timeline{padding-left:15px}.timeline-line{left:15px}.timeline-group{display:inline-block;margin-left:-22px}.timeline-item{width:100%!important;margin-top:0!important;padding-right:10px}.timeline-item:nth-child(even):after{border:0;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);left:40px;top:21px;border-top:11px solid #F8F8F8;border-bottom:11px solid #F8F8F8;border-right:11px solid #FFF}.timeline-item:nth-child(even):before{left:39px;top:20px;border:0;border-top:12px solid transparent;border-bottom:12px solid transparent;border-right:12px solid #CCC;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.timeline-item:nth-child(even)>.timeline-badge{top:12px;left:-20px;right:auto;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.timeline-item:nth-child(odd):after{border:0;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);left:40px;top:21px;border-top:11px solid #F8F8F8;border-bottom:11px solid #F8F8F8;border-right:11px solid #FFF}.timeline-item:nth-child(odd):before{left:39px;top:20px;border:0;border-top:12px solid transparent;border-bottom:12px solid transparent;border-right:12px solid #CCC;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.timeline-item:nth-child(odd)>.timeline-badge{top:12px;left:-20px;right:auto;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.timeline-item.block:nth-child(even):after{border:0;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);left:20px;top:11px;border-top:11px solid #F8F8F8;border-bottom:11px solid #F8F8F8;border-right:11px solid #FFF}.timeline-item.block:nth-child(even):before{left:19px;top:10px;border:0;border-top:12px solid transparent;border-bottom:12px solid transparent;border-right:12px solid #CCC;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.timeline-item.block:nth-child(even)>.timeline-badge{top:12px;left:-6px;right:auto;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.timeline-item.block:nth-child(odd):after{border:0;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);left:20px;top:11px;border-top:11px solid #F8F8F8;border-bottom:11px solid #F8F8F8;border-right:11px solid #FFF}.timeline-item.block:nth-child(odd):before{left:19px;top:10px;border:0;border-top:12px solid transparent;border-bottom:12px solid transparent;border-right:12px solid #CCC;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.timeline-item.block:nth-child(odd)>.timeline-badge{top:12px;left:-6px;right:auto;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}#timeline.timeline-wrapper .timeline-item.block:nth-child(even),#timeline.timeline-wrapper .timeline-item.block:nth-child(odd),#timeline.timeline-wrapper .timeline-item:nth-child(even),#timeline.timeline-wrapper .timeline-item:nth-child(odd){float:none;clear:both}#timeline.timeline-wrapper .timeline{padding:0}#timeline.timeline-wrapper .timeline .card-body{text-align:left}#timeline.timeline-wrapper .timeline-line{display:inline-block;position:absolute;top:0;bottom:0;left:50%;width:2px;background-color:#DDD;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}#timeline.timeline-wrapper .timeline-group{display:block;margin-left:-6px;text-align:center}#timeline.timeline-wrapper .timeline-item{display:block;padding:20px 0!important}#timeline.timeline-wrapper .timeline-item.block:nth-child(even):after,#timeline.timeline-wrapper .timeline-item.block:nth-child(even):before,#timeline.timeline-wrapper .timeline-item.block:nth-child(odd):after,#timeline.timeline-wrapper .timeline-item.block:nth-child(odd):before,#timeline.timeline-wrapper .timeline-item.timeline-poster>.timeline-badge,#timeline.timeline-wrapper .timeline-item:nth-child(even):after,#timeline.timeline-wrapper .timeline-item:nth-child(even):before,#timeline.timeline-wrapper .timeline-item:nth-child(odd):after,#timeline.timeline-wrapper .timeline-item:nth-child(odd):before{display:none}#timeline.timeline-wrapper .timeline-item>.timeline-badge{top:0!important;left:45%!important}}@media (max-width:575.98px){.timeline-item>.timeline-badge{top:0!important;left:44%!important}} \ No newline at end of file diff --git a/assets/css/pages/user-settings.css b/assets/css/pages/user-settings.css new file mode 100644 index 0000000..5bfab73 --- /dev/null +++ b/assets/css/pages/user-settings.css @@ -0,0 +1,11 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.user-form .dropzone { + min-height: 200px; + width: 200px; } + .user-form .dropzone .dz-message { + font-size: 1rem; + height: auto; } + .user-form .dropzone .dz-message:before { + font-size: 2rem; } diff --git a/assets/css/pages/user-settings.min.css b/assets/css/pages/user-settings.min.css new file mode 100644 index 0000000..284a0e1 --- /dev/null +++ b/assets/css/pages/user-settings.min.css @@ -0,0 +1 @@ +.user-form .dropzone{min-height:200px;width:200px}.user-form .dropzone .dz-message{font-size:1rem;height:auto}.user-form .dropzone .dz-message:before{font-size:2rem} \ No newline at end of file diff --git a/assets/css/pages/users.css b/assets/css/pages/users.css new file mode 100644 index 0000000..0f513a0 --- /dev/null +++ b/assets/css/pages/users.css @@ -0,0 +1,63 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +#user-profile .profile-img-container { + position: absolute; + bottom: -3rem; + left: 10%; + width: 80%; } + #user-profile .profile-img-container img { + border: 0.3rem solid #fff; + height: 85px; + width: 85px; } + +#user-profile #profile-info .card-header i { + position: relative; + top: -3px; } + +#user-profile #profile-info .user-like i { + font-size: 1.7rem; } + +#user-profile #profile-info .suggested-block .user-page-info p { + margin-bottom: 0; + font-weight: 500; } + +#user-profile #profile-info .suggested-block i { + cursor: pointer; } + +#user-profile .relative { + position: relative; } + +#user-profile .profile-header-nav { + background-color: #fff; + padding: 0.75rem 1rem; } + #user-profile .profile-header-nav .navbar { + justify-content: flex-end; } + #user-profile .profile-header-nav .navbar .navbar-toggler { + font-size: 1.7rem; + color: #626262; } + #user-profile .profile-header-nav .navbar .navbar-toggler:focus { + outline: none; } + +#user-profile .user-latest-img { + transition: all .2s ease-in-out; } + #user-profile .user-latest-img:hover { + transform: translateY(-4px) scale(1.2); + z-index: 30; } + +#user-profile .block-element .spinner-border { + border-width: 2px; } + +@media only screen and (min-width: 992px) { + #user-profile .profile-header-nav .navbar .nav-item { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; } } + +@media only screen and (max-width: 992px) { + #user-profile .user-latest-img img { + width: 100%; } } + +@media only screen and (max-width: 991px) and (min-width: 768px) { + #user-profile .profile-header-nav .navbar .nav-item { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; } } diff --git a/assets/css/pages/users.min.css b/assets/css/pages/users.min.css new file mode 100644 index 0000000..a42305a --- /dev/null +++ b/assets/css/pages/users.min.css @@ -0,0 +1 @@ +#user-profile .profile-img-container{position:absolute;bottom:-3rem;left:10%;width:80%}#user-profile .profile-img-container img{border:.3rem solid #FFF;height:85px;width:85px}#user-profile #profile-info .card-header i{position:relative;top:-3px}#user-profile #profile-info .user-like i{font-size:1.7rem}#user-profile #profile-info .suggested-block .user-page-info p{margin-bottom:0;font-weight:500}#user-profile #profile-info .suggested-block i{cursor:pointer}#user-profile .relative{position:relative}#user-profile .profile-header-nav{background-color:#FFF;padding:.75rem 1rem}#user-profile .profile-header-nav .navbar{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}#user-profile .profile-header-nav .navbar .navbar-toggler{font-size:1.7rem;color:#626262}#user-profile .profile-header-nav .navbar .navbar-toggler:focus{outline:0}#user-profile .user-latest-img{-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#user-profile .user-latest-img:hover{-webkit-transform:translateY(-4px) scale(1.2);-ms-transform:translateY(-4px) scale(1.2);transform:translateY(-4px) scale(1.2);z-index:30}#user-profile .block-element .spinner-border{border-width:2px}@media only screen and (min-width:992px){#user-profile .profile-header-nav .navbar .nav-item{padding-left:2.25rem!important;padding-right:2.25rem!important}}@media only screen and (max-width:992px){#user-profile .user-latest-img img{width:100%}}@media only screen and (max-width:991px) and (min-width:768px){#user-profile .profile-header-nav .navbar .nav-item{padding-left:1.5rem!important;padding-right:1.5rem!important}} \ No newline at end of file diff --git a/assets/css/plugins/animate/animate.css b/assets/css/plugins/animate/animate.css new file mode 100644 index 0000000..59a7957 --- /dev/null +++ b/assets/css/plugins/animate/animate.css @@ -0,0 +1,2352 @@ +.animated { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; } + .animated.infinite { + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; } + .animated.hinge { + -webkit-animation-duration: 2s; + animation-duration: 2s; } + .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut { + -webkit-animation-duration: .75s; + animation-duration: .75s; } + +@-webkit-keyframes bounce { + from, 20%, 53%, 80%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + 40%, 43% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); } + 70% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0); } + 90% { + -webkit-transform: translate3d(0, -4px, 0); + transform: translate3d(0, -4px, 0); } } + +@keyframes bounce { + from, 20%, 53%, 80%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + 40%, 43% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); } + 70% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0); } + 90% { + -webkit-transform: translate3d(0, -4px, 0); + transform: translate3d(0, -4px, 0); } } + +.bounce { + -webkit-animation-name: bounce; + animation-name: bounce; + -webkit-transform-origin: center bottom; + transform-origin: center bottom; } + +@-webkit-keyframes flash { + from, 50%, to { + opacity: 1; } + 25%, 75% { + opacity: 0; } } + +@keyframes flash { + from, 50%, to { + opacity: 1; } + 25%, 75% { + opacity: 0; } } + +.flash { + -webkit-animation-name: flash; + animation-name: flash; } + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ +@-webkit-keyframes pulse { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05); } + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } } + +@keyframes pulse { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05); } + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } } + +.pulse { + -webkit-animation-name: pulse; + animation-name: pulse; } + +@-webkit-keyframes rubberBand { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } + 30% { + -webkit-transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); } + 40% { + -webkit-transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); } + 50% { + -webkit-transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); } + 65% { + -webkit-transform: scale3d(0.95, 1.05, 1); + transform: scale3d(0.95, 1.05, 1); } + 75% { + -webkit-transform: scale3d(1.05, 0.95, 1); + transform: scale3d(1.05, 0.95, 1); } + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } } + +@keyframes rubberBand { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } + 30% { + -webkit-transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); } + 40% { + -webkit-transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); } + 50% { + -webkit-transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); } + 65% { + -webkit-transform: scale3d(0.95, 1.05, 1); + transform: scale3d(0.95, 1.05, 1); } + 75% { + -webkit-transform: scale3d(1.05, 0.95, 1); + transform: scale3d(1.05, 0.95, 1); } + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } } + +.rubberBand { + -webkit-animation-name: rubberBand; + animation-name: rubberBand; } + +@-webkit-keyframes shake { + from, to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + 10%, 30%, 50%, 70%, 90% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); } + 20%, 40%, 60%, 80% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); } } + +@keyframes shake { + from, to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + 10%, 30%, 50%, 70%, 90% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); } + 20%, 40%, 60%, 80% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); } } + +.shake { + -webkit-animation-name: shake; + animation-name: shake; } + +@-webkit-keyframes headShake { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); } + 6.5% { + -webkit-transform: translateX(-6px) rotateY(-9deg); + transform: translateX(-6px) rotateY(-9deg); } + 18.5% { + -webkit-transform: translateX(5px) rotateY(7deg); + transform: translateX(5px) rotateY(7deg); } + 31.5% { + -webkit-transform: translateX(-3px) rotateY(-5deg); + transform: translateX(-3px) rotateY(-5deg); } + 43.5% { + -webkit-transform: translateX(2px) rotateY(3deg); + transform: translateX(2px) rotateY(3deg); } + 50% { + -webkit-transform: translateX(0); + transform: translateX(0); } } + +@keyframes headShake { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); } + 6.5% { + -webkit-transform: translateX(-6px) rotateY(-9deg); + transform: translateX(-6px) rotateY(-9deg); } + 18.5% { + -webkit-transform: translateX(5px) rotateY(7deg); + transform: translateX(5px) rotateY(7deg); } + 31.5% { + -webkit-transform: translateX(-3px) rotateY(-5deg); + transform: translateX(-3px) rotateY(-5deg); } + 43.5% { + -webkit-transform: translateX(2px) rotateY(3deg); + transform: translateX(2px) rotateY(3deg); } + 50% { + -webkit-transform: translateX(0); + transform: translateX(0); } } + +.headShake { + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + -webkit-animation-name: headShake; + animation-name: headShake; } + +@-webkit-keyframes swing { + 20% { + -webkit-transform: rotate3d(0, 0, 1, 15deg); + transform: rotate3d(0, 0, 1, 15deg); } + 40% { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); } + 60% { + -webkit-transform: rotate3d(0, 0, 1, 5deg); + transform: rotate3d(0, 0, 1, 5deg); } + 80% { + -webkit-transform: rotate3d(0, 0, 1, -5deg); + transform: rotate3d(0, 0, 1, -5deg); } + to { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); } } + +@keyframes swing { + 20% { + -webkit-transform: rotate3d(0, 0, 1, 15deg); + transform: rotate3d(0, 0, 1, 15deg); } + 40% { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); } + 60% { + -webkit-transform: rotate3d(0, 0, 1, 5deg); + transform: rotate3d(0, 0, 1, 5deg); } + 80% { + -webkit-transform: rotate3d(0, 0, 1, -5deg); + transform: rotate3d(0, 0, 1, -5deg); } + to { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); } } + +.swing { + -webkit-transform-origin: top center; + transform-origin: top center; + -webkit-animation-name: swing; + animation-name: swing; } + +@-webkit-keyframes tada { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } + 10%, 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); } + 30%, 50%, 70%, 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); } + 40%, 60%, 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); } + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } } + +@keyframes tada { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } + 10%, 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); } + 30%, 50%, 70%, 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); } + 40%, 60%, 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); } + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } } + +.tada { + -webkit-animation-name: tada; + animation-name: tada; } + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ +@-webkit-keyframes wobble { + from { + -webkit-transform: none; + transform: none; } + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); } + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); } + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); } + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); } + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); } + to { + -webkit-transform: none; + transform: none; } } + +@keyframes wobble { + from { + -webkit-transform: none; + transform: none; } + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); } + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); } + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); } + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); } + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); } + to { + -webkit-transform: none; + transform: none; } } + +.wobble { + -webkit-animation-name: wobble; + animation-name: wobble; } + +@-webkit-keyframes jello { + from, 11.1%, to { + -webkit-transform: none; + transform: none; } + 22.2% { + -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); + transform: skewX(-12.5deg) skewY(-12.5deg); } + 33.3% { + -webkit-transform: skewX(6.25deg) skewY(6.25deg); + transform: skewX(6.25deg) skewY(6.25deg); } + 44.4% { + -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); + transform: skewX(-3.125deg) skewY(-3.125deg); } + 55.5% { + -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); + transform: skewX(1.5625deg) skewY(1.5625deg); } + 66.6% { + -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); + transform: skewX(-0.78125deg) skewY(-0.78125deg); } + 77.7% { + -webkit-transform: skewX(0.39063deg) skewY(0.39063deg); + transform: skewX(0.39063deg) skewY(0.39063deg); } + 88.8% { + -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg); + transform: skewX(-0.19531deg) skewY(-0.19531deg); } } + +@keyframes jello { + from, 11.1%, to { + -webkit-transform: none; + transform: none; } + 22.2% { + -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); + transform: skewX(-12.5deg) skewY(-12.5deg); } + 33.3% { + -webkit-transform: skewX(6.25deg) skewY(6.25deg); + transform: skewX(6.25deg) skewY(6.25deg); } + 44.4% { + -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); + transform: skewX(-3.125deg) skewY(-3.125deg); } + 55.5% { + -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); + transform: skewX(1.5625deg) skewY(1.5625deg); } + 66.6% { + -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); + transform: skewX(-0.78125deg) skewY(-0.78125deg); } + 77.7% { + -webkit-transform: skewX(0.39063deg) skewY(0.39063deg); + transform: skewX(0.39063deg) skewY(0.39063deg); } + 88.8% { + -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg); + transform: skewX(-0.19531deg) skewY(-0.19531deg); } } + +.jello { + -webkit-animation-name: jello; + animation-name: jello; + -webkit-transform-origin: center; + transform-origin: center; } + +@-webkit-keyframes bounceIn { + from, 20%, 40%, 60%, 80%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } + 0% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); } + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); } + 40% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); } + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03); } + 80% { + -webkit-transform: scale3d(0.97, 0.97, 0.97); + transform: scale3d(0.97, 0.97, 0.97); } + to { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } } + +@keyframes bounceIn { + from, 20%, 40%, 60%, 80%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } + 0% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); } + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); } + 40% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); } + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03); } + 80% { + -webkit-transform: scale3d(0.97, 0.97, 0.97); + transform: scale3d(0.97, 0.97, 0.97); } + to { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); } } + +.bounceIn { + -webkit-animation-name: bounceIn; + animation-name: bounceIn; } + +@-webkit-keyframes bounceInDown { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0); } + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0); + transform: translate3d(0, 25px, 0); } + 75% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); } + 90% { + -webkit-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); } + to { + -webkit-transform: none; + transform: none; } } + +@keyframes bounceInDown { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0); } + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0); + transform: translate3d(0, 25px, 0); } + 75% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); } + 90% { + -webkit-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); } + to { + -webkit-transform: none; + transform: none; } } + +.bounceInDown { + -webkit-animation-name: bounceInDown; + animation-name: bounceInDown; } + +@-webkit-keyframes bounceInLeft { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0); } + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0); + transform: translate3d(25px, 0, 0); } + 75% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); } + 90% { + -webkit-transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0); } + to { + -webkit-transform: none; + transform: none; } } + +@keyframes bounceInLeft { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0); } + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0); + transform: translate3d(25px, 0, 0); } + 75% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); } + 90% { + -webkit-transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0); } + to { + -webkit-transform: none; + transform: none; } } + +.bounceInLeft { + -webkit-animation-name: bounceInLeft; + animation-name: bounceInLeft; } + +@-webkit-keyframes bounceInRight { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } + from { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0); } + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0); + transform: translate3d(-25px, 0, 0); } + 75% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); } + 90% { + -webkit-transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0); } + to { + -webkit-transform: none; + transform: none; } } + +@keyframes bounceInRight { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } + from { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0); } + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0); + transform: translate3d(-25px, 0, 0); } + 75% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); } + 90% { + -webkit-transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0); } + to { + -webkit-transform: none; + transform: none; } } + +.bounceInRight { + -webkit-animation-name: bounceInRight; + animation-name: bounceInRight; } + +@-webkit-keyframes bounceInUp { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } + from { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0); } + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); } + 75% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); } + 90% { + -webkit-transform: translate3d(0, -5px, 0); + transform: translate3d(0, -5px, 0); } + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } + +@keyframes bounceInUp { + from, 60%, 75%, 90%, to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } + from { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0); } + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); } + 75% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); } + 90% { + -webkit-transform: translate3d(0, -5px, 0); + transform: translate3d(0, -5px, 0); } + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } + +.bounceInUp { + -webkit-animation-name: bounceInUp; + animation-name: bounceInUp; } + +@-webkit-keyframes bounceOut { + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); } + 50%, 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); } + to { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); } } + +@keyframes bounceOut { + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); } + 50%, 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); } + to { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); } } + +.bounceOut { + -webkit-animation-name: bounceOut; + animation-name: bounceOut; } + +@-webkit-keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); } + 40%, 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); } + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); } } + +@keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); } + 40%, 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); } + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); } } + +.bounceOutDown { + -webkit-animation-name: bounceOutDown; + animation-name: bounceOutDown; } + +@-webkit-keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0); } + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); } } + +@keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0); } + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); } } + +.bounceOutLeft { + -webkit-animation-name: bounceOutLeft; + animation-name: bounceOutLeft; } + +@-webkit-keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0); } + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); } } + +@keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0); } + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); } } + +.bounceOutRight { + -webkit-animation-name: bounceOutRight; + animation-name: bounceOutRight; } + +@-webkit-keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); } + 40%, 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); } + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); } } + +@keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); } + 40%, 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); } + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); } } + +.bounceOutUp { + -webkit-animation-name: bounceOutUp; + animation-name: bounceOutUp; } + +@-webkit-keyframes fadeIn { + from { + opacity: 0; } + to { + opacity: 1; } } + +@keyframes fadeIn { + from { + opacity: 0; } + to { + opacity: 1; } } + +.fadeIn { + -webkit-animation-name: fadeIn; + animation-name: fadeIn; } + +@-webkit-keyframes fadeInDown { + from { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +@keyframes fadeInDown { + from { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +.fadeInDown { + -webkit-animation-name: fadeInDown; + animation-name: fadeInDown; } + +@-webkit-keyframes fadeInDownBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +@keyframes fadeInDownBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +.fadeInDownBig { + -webkit-animation-name: fadeInDownBig; + animation-name: fadeInDownBig; } + +@-webkit-keyframes fadeInLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +@keyframes fadeInLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +.fadeInLeft { + -webkit-animation-name: fadeInLeft; + animation-name: fadeInLeft; } + +@-webkit-keyframes fadeInLeftBig { + from { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +@keyframes fadeInLeftBig { + from { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +.fadeInLeftBig { + -webkit-animation-name: fadeInLeftBig; + animation-name: fadeInLeftBig; } + +@-webkit-keyframes fadeInRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +@keyframes fadeInRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +.fadeInRight { + -webkit-animation-name: fadeInRight; + animation-name: fadeInRight; } + +@-webkit-keyframes fadeInRightBig { + from { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +@keyframes fadeInRightBig { + from { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +.fadeInRightBig { + -webkit-animation-name: fadeInRightBig; + animation-name: fadeInRightBig; } + +@-webkit-keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +@keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +.fadeInUp { + -webkit-animation-name: fadeInUp; + animation-name: fadeInUp; } + +@-webkit-keyframes fadeInUpBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +@keyframes fadeInUpBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +.fadeInUpBig { + -webkit-animation-name: fadeInUpBig; + animation-name: fadeInUpBig; } + +@-webkit-keyframes fadeOut { + from { + opacity: 1; } + to { + opacity: 0; } } + +@keyframes fadeOut { + from { + opacity: 1; } + to { + opacity: 0; } } + +.fadeOut { + -webkit-animation-name: fadeOut; + animation-name: fadeOut; } + +@-webkit-keyframes fadeOutDown { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); } } + +@keyframes fadeOutDown { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); } } + +.fadeOutDown { + -webkit-animation-name: fadeOutDown; + animation-name: fadeOutDown; } + +@-webkit-keyframes fadeOutDownBig { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); } } + +@keyframes fadeOutDownBig { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); } } + +.fadeOutDownBig { + -webkit-animation-name: fadeOutDownBig; + animation-name: fadeOutDownBig; } + +@-webkit-keyframes fadeOutLeft { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); } } + +@keyframes fadeOutLeft { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); } } + +.fadeOutLeft { + -webkit-animation-name: fadeOutLeft; + animation-name: fadeOutLeft; } + +@-webkit-keyframes fadeOutLeftBig { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); } } + +@keyframes fadeOutLeftBig { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); } } + +.fadeOutLeftBig { + -webkit-animation-name: fadeOutLeftBig; + animation-name: fadeOutLeftBig; } + +@-webkit-keyframes fadeOutRight { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); } } + +@keyframes fadeOutRight { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); } } + +.fadeOutRight { + -webkit-animation-name: fadeOutRight; + animation-name: fadeOutRight; } + +@-webkit-keyframes fadeOutRightBig { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); } } + +@keyframes fadeOutRightBig { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); } } + +.fadeOutRightBig { + -webkit-animation-name: fadeOutRightBig; + animation-name: fadeOutRightBig; } + +@-webkit-keyframes fadeOutUp { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); } } + +@keyframes fadeOutUp { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); } } + +.fadeOutUp { + -webkit-animation-name: fadeOutUp; + animation-name: fadeOutUp; } + +@-webkit-keyframes fadeOutUpBig { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); } } + +@keyframes fadeOutUpBig { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); } } + +.fadeOutUpBig { + -webkit-animation-name: fadeOutUpBig; + animation-name: fadeOutUpBig; } + +@-webkit-keyframes flip { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; } + 40% { + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; } + 50% { + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + 80% { + -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95); + transform: perspective(400px) scale3d(0.95, 0.95, 0.95); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } } + +@keyframes flip { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; } + 40% { + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; } + 50% { + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + 80% { + -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95); + transform: perspective(400px) scale3d(0.95, 0.95, 0.95); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } } + +.animated.flip { + -webkit-backface-visibility: visible; + backface-visibility: visible; + -webkit-animation-name: flip; + animation-name: flip; } + +@-webkit-keyframes flipInX { + from { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; } + 40% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + 60% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; } + 80% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); } } + +@keyframes flipInX { + from { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; } + 40% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + 60% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; } + 80% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); } } + +.flipInX { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInX; + animation-name: flipInX; } + +@-webkit-keyframes flipInY { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; } + 40% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + 60% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; } + 80% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); } } + +@keyframes flipInY { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; } + 40% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + 60% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; } + 80% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); } } + +.flipInY { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInY; + animation-name: flipInY; } + +@-webkit-keyframes flipOutX { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); } + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; } + to { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; } } + +@keyframes flipOutX { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); } + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; } + to { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; } } + +.flipOutX { + -webkit-animation-name: flipOutX; + animation-name: flipOutX; + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; } + +@-webkit-keyframes flipOutY { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); } + 30% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; } + to { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; } } + +@keyframes flipOutY { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); } + 30% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; } + to { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; } } + +.flipOutY { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipOutY; + animation-name: flipOutY; } + +@-webkit-keyframes lightSpeedIn { + from { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; } + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1; } + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + opacity: 1; } + to { + -webkit-transform: none; + transform: none; + opacity: 1; } } + +@keyframes lightSpeedIn { + from { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; } + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1; } + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + opacity: 1; } + to { + -webkit-transform: none; + transform: none; + opacity: 1; } } + +.lightSpeedIn { + -webkit-animation-name: lightSpeedIn; + animation-name: lightSpeedIn; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; } + +@-webkit-keyframes lightSpeedOut { + from { + opacity: 1; } + to { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; } } + +@keyframes lightSpeedOut { + from { + opacity: 1; } + to { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; } } + +.lightSpeedOut { + -webkit-animation-name: lightSpeedOut; + animation-name: lightSpeedOut; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + +@-webkit-keyframes rotateIn { + from { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, -200deg); + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; } + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: none; + transform: none; + opacity: 1; } } + +@keyframes rotateIn { + from { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, -200deg); + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; } + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: none; + transform: none; + opacity: 1; } } + +.rotateIn { + -webkit-animation-name: rotateIn; + animation-name: rotateIn; } + +@-webkit-keyframes rotateInDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: none; + transform: none; + opacity: 1; } } + +@keyframes rotateInDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: none; + transform: none; + opacity: 1; } } + +.rotateInDownLeft { + -webkit-animation-name: rotateInDownLeft; + animation-name: rotateInDownLeft; } + +@-webkit-keyframes rotateInDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: none; + transform: none; + opacity: 1; } } + +@keyframes rotateInDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: none; + transform: none; + opacity: 1; } } + +.rotateInDownRight { + -webkit-animation-name: rotateInDownRight; + animation-name: rotateInDownRight; } + +@-webkit-keyframes rotateInUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: none; + transform: none; + opacity: 1; } } + +@keyframes rotateInUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: none; + transform: none; + opacity: 1; } } + +.rotateInUpLeft { + -webkit-animation-name: rotateInUpLeft; + animation-name: rotateInUpLeft; } + +@-webkit-keyframes rotateInUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -90deg); + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: none; + transform: none; + opacity: 1; } } + +@keyframes rotateInUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -90deg); + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: none; + transform: none; + opacity: 1; } } + +.rotateInUpRight { + -webkit-animation-name: rotateInUpRight; + animation-name: rotateInUpRight; } + +@-webkit-keyframes rotateOut { + from { + -webkit-transform-origin: center; + transform-origin: center; + opacity: 1; } + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, 200deg); + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; } } + +@keyframes rotateOut { + from { + -webkit-transform-origin: center; + transform-origin: center; + opacity: 1; } + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, 200deg); + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; } } + +.rotateOut { + -webkit-animation-name: rotateOut; + animation-name: rotateOut; } + +@-webkit-keyframes rotateOutDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; } } + +@keyframes rotateOutDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; } } + +.rotateOutDownLeft { + -webkit-animation-name: rotateOutDownLeft; + animation-name: rotateOutDownLeft; } + +@-webkit-keyframes rotateOutDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; } } + +@keyframes rotateOutDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; } } + +.rotateOutDownRight { + -webkit-animation-name: rotateOutDownRight; + animation-name: rotateOutDownRight; } + +@-webkit-keyframes rotateOutUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; } } + +@keyframes rotateOutUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; } + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; } } + +.rotateOutUpLeft { + -webkit-animation-name: rotateOutUpLeft; + animation-name: rotateOutUpLeft; } + +@-webkit-keyframes rotateOutUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 90deg); + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; } } + +@keyframes rotateOutUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; } + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 90deg); + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; } } + +.rotateOutUpRight { + -webkit-animation-name: rotateOutUpRight; + animation-name: rotateOutUpRight; } + +@-webkit-keyframes hinge { + 0% { + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; } + 20%, 60% { + -webkit-transform: rotate3d(0, 0, 1, 80deg); + transform: rotate3d(0, 0, 1, 80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; } + 40%, 80% { + -webkit-transform: rotate3d(0, 0, 1, 60deg); + transform: rotate3d(0, 0, 1, 60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; } + to { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0; } } + +@keyframes hinge { + 0% { + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; } + 20%, 60% { + -webkit-transform: rotate3d(0, 0, 1, 80deg); + transform: rotate3d(0, 0, 1, 80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; } + 40%, 80% { + -webkit-transform: rotate3d(0, 0, 1, 60deg); + transform: rotate3d(0, 0, 1, 60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; } + to { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0; } } + +.hinge { + -webkit-animation-name: hinge; + animation-name: hinge; } + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ +@-webkit-keyframes rollIn { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +@keyframes rollIn { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +.rollIn { + -webkit-animation-name: rollIn; + animation-name: rollIn; } + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ +@-webkit-keyframes rollOut { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } } + +@keyframes rollOut { + from { + opacity: 1; } + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } } + +.rollOut { + -webkit-animation-name: rollOut; + animation-name: rollOut; } + +@-webkit-keyframes zoomIn { + from { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); } + 50% { + opacity: 1; } } + +@keyframes zoomIn { + from { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); } + 50% { + opacity: 1; } } + +.zoomIn { + -webkit-animation-name: zoomIn; + animation-name: zoomIn; } + +@-webkit-keyframes zoomInDown { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } + +@keyframes zoomInDown { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } + +.zoomInDown { + -webkit-animation-name: zoomInDown; + animation-name: zoomInDown; } + +@-webkit-keyframes zoomInLeft { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } + +@keyframes zoomInLeft { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } + +.zoomInLeft { + -webkit-animation-name: zoomInLeft; + animation-name: zoomInLeft; } + +@-webkit-keyframes zoomInRight { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } + +@keyframes zoomInRight { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } + +.zoomInRight { + -webkit-animation-name: zoomInRight; + animation-name: zoomInRight; } + +@-webkit-keyframes zoomInUp { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } + +@keyframes zoomInUp { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } + +.zoomInUp { + -webkit-animation-name: zoomInUp; + animation-name: zoomInUp; } + +@-webkit-keyframes zoomOut { + from { + opacity: 1; } + 50% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); } + to { + opacity: 0; } } + +@keyframes zoomOut { + from { + opacity: 1; } + 50% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); } + to { + opacity: 0; } } + +.zoomOut { + -webkit-animation-name: zoomOut; + animation-name: zoomOut; } + +@-webkit-keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } + +@keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } + +.zoomOutDown { + -webkit-animation-name: zoomOutDown; + animation-name: zoomOutDown; } + +@-webkit-keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); } + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); + transform: scale(0.1) translate3d(-2000px, 0, 0); + -webkit-transform-origin: left center; + transform-origin: left center; } } + +@keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); } + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); + transform: scale(0.1) translate3d(-2000px, 0, 0); + -webkit-transform-origin: left center; + transform-origin: left center; } } + +.zoomOutLeft { + -webkit-animation-name: zoomOutLeft; + animation-name: zoomOutLeft; } + +@-webkit-keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); } + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); + transform: scale(0.1) translate3d(2000px, 0, 0); + -webkit-transform-origin: right center; + transform-origin: right center; } } + +@keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); } + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); + transform: scale(0.1) translate3d(2000px, 0, 0); + -webkit-transform-origin: right center; + transform-origin: right center; } } + +.zoomOutRight { + -webkit-animation-name: zoomOutRight; + animation-name: zoomOutRight; } + +@-webkit-keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } + +@keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } } + +.zoomOutUp { + -webkit-animation-name: zoomOutUp; + animation-name: zoomOutUp; } + +@-webkit-keyframes slideInDown { + from { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; } + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } + +@keyframes slideInDown { + from { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; } + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } + +.slideInDown { + -webkit-animation-name: slideInDown; + animation-name: slideInDown; } + +@-webkit-keyframes slideInLeft { + from { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible; } + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } + +@keyframes slideInLeft { + from { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible; } + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } + +.slideInLeft { + -webkit-animation-name: slideInLeft; + animation-name: slideInLeft; } + +@-webkit-keyframes slideInRight { + from { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible; } + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } + +@keyframes slideInRight { + from { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible; } + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } + +.slideInRight { + -webkit-animation-name: slideInRight; + animation-name: slideInRight; } + +@-webkit-keyframes slideInUp { + from { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible; } + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } + +@keyframes slideInUp { + from { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible; } + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } + +.slideInUp { + -webkit-animation-name: slideInUp; + animation-name: slideInUp; } + +@-webkit-keyframes slideOutDown { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + to { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); } } + +@keyframes slideOutDown { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + to { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); } } + +.slideOutDown { + -webkit-animation-name: slideOutDown; + animation-name: slideOutDown; } + +@-webkit-keyframes slideOutLeft { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + to { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); } } + +@keyframes slideOutLeft { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + to { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); } } + +.slideOutLeft { + -webkit-animation-name: slideOutLeft; + animation-name: slideOutLeft; } + +@-webkit-keyframes slideOutRight { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + to { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); } } + +@keyframes slideOutRight { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + to { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); } } + +.slideOutRight { + -webkit-animation-name: slideOutRight; + animation-name: slideOutRight; } + +@-webkit-keyframes slideOutUp { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + to { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); } } + +@keyframes slideOutUp { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + to { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); } } + +.slideOutUp { + -webkit-animation-name: slideOutUp; + animation-name: slideOutUp; } diff --git a/assets/css/plugins/animate/animate.min.css b/assets/css/plugins/animate/animate.min.css new file mode 100644 index 0000000..02d0914 --- /dev/null +++ b/assets/css/plugins/animate/animate.min.css @@ -0,0 +1 @@ +.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s}@-webkit-keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{50%,from,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{50%,from,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}}@keyframes pulse{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}@keyframes rubberBand{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.swing{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}}@keyframes tada{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{from,to{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}}@keyframes wobble{from,to{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{11.1%,from,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.39063deg) skewY(.39063deg);transform:skewX(.39063deg) skewY(.39063deg)}88.8%{-webkit-transform:skewX(-.19531deg) skewY(-.19531deg);transform:skewX(-.19531deg) skewY(-.19531deg)}}@keyframes jello{11.1%,from,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.39063deg) skewY(.39063deg);transform:skewX(.39063deg) skewY(.39063deg)}88.8%{-webkit-transform:skewX(-.19531deg) skewY(-.19531deg);transform:skewX(-.19531deg) skewY(-.19531deg)}}.jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center}@-webkit-keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}.flipInY,.flipOutX{-webkit-backface-visibility:visible!important}@-webkit-keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;backface-visibility:visible!important}@-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:none;transform:none;opacity:1}}@keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:none;transform:none;opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp} \ No newline at end of file diff --git a/assets/css/plugins/calendars/fullcalendar.css b/assets/css/plugins/calendars/fullcalendar.css new file mode 100644 index 0000000..e4cdb50 --- /dev/null +++ b/assets/css/plugins/calendars/fullcalendar.css @@ -0,0 +1,557 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.btn, .fc .fc-button { + display: inline-block; + font-weight: 400; + color: #626262; + text-align: center; + vertical-align: middle; + user-select: none; + background-color: transparent; + border: 0 solid transparent; + padding: 0.9rem 2rem; + font-size: 1rem; + border-radius: 0.42rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .btn, .fc .fc-button { + transition: none; } } + .btn:hover, .fc .fc-button:hover { + color: #626262; + text-decoration: none; } + .btn:focus, .fc .fc-button:focus, .btn.focus, .fc .focus.fc-button { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.25); } + .btn.disabled, .fc .disabled.fc-button, .btn:disabled, .fc .fc-button:disabled { + opacity: 0.65; } + +a.btn.disabled, .fc a.disabled.fc-button, +fieldset:disabled a.btn, +fieldset:disabled .fc a.fc-button, +.fc fieldset:disabled a.fc-button { + pointer-events: none; } + +.btn-primary { + color: #fff; + background-color: #3a50dc; + border-color: #3a50dc; } + .btn-primary:hover { + color: #fff; + background-color: #5344ed; + border-color: #3a50dc; } + .btn-primary:focus, .btn-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(136, 126, 242, 0.5); } + .btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #3a50dc; + border-color: #3a50dc; } + .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, + .show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #3a50dc; + border-color: #3e2dea; } + .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, + .show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(136, 126, 242, 0.5); } + +.btn-secondary { + color: #2a2e30; + background-color: #b8c2cc; + border-color: #b8c2cc; } + .btn-secondary:hover { + color: #2a2e30; + background-color: #a2afbc; + border-color: #9aa9b7; } + .btn-secondary:focus, .btn-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(163, 172, 181, 0.5); } + .btn-secondary.disabled, .btn-secondary:disabled { + color: #2a2e30; + background-color: #b8c2cc; + border-color: #b8c2cc; } + .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, + .show > .btn-secondary.dropdown-toggle { + color: #2a2e30; + background-color: #9aa9b7; + border-color: #93a2b1; } + .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(163, 172, 181, 0.5); } + +.btn-success { + color: #fff; + background-color: #28c76f; + border-color: #28c76f; } + .btn-success:hover { + color: #fff; + background-color: #22a75d; + border-color: #1f9d57; } + .btn-success:focus, .btn-success.focus { + box-shadow: 0 0 0 0.2rem rgba(72, 207, 133, 0.5); } + .btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #28c76f; + border-color: #28c76f; } + .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, + .show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #1f9d57; + border-color: #1d9251; } + .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(72, 207, 133, 0.5); } + +.btn-info { + color: #fff; + background-color: #00cfe8; + border-color: #00cfe8; } + .btn-info:hover { + color: #fff; + background-color: #00adc2; + border-color: #00a1b5; } + .btn-info:focus, .btn-info.focus { + box-shadow: 0 0 0 0.2rem rgba(38, 214, 235, 0.5); } + .btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #00cfe8; + border-color: #00cfe8; } + .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, + .show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #00a1b5; + border-color: #0096a8; } + .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, + .show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(38, 214, 235, 0.5); } + +.btn-warning { + color: #2a2e30; + background-color: #ff9f43; + border-color: #ff9f43; } + .btn-warning:hover { + color: #2a2e30; + background-color: #ff8b1d; + border-color: #ff8510; } + .btn-warning:focus, .btn-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(223, 142, 64, 0.5); } + .btn-warning.disabled, .btn-warning:disabled { + color: #2a2e30; + background-color: #ff9f43; + border-color: #ff9f43; } + .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, + .show > .btn-warning.dropdown-toggle { + color: #2a2e30; + background-color: #ff8510; + border-color: #ff7e03; } + .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(223, 142, 64, 0.5); } + +.btn-danger { + color: #fff; + background-color: #ea5455; + border-color: #ea5455; } + .btn-danger:hover { + color: #fff; + background-color: #e63233; + border-color: #e42728; } + .btn-danger:focus, .btn-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(237, 110, 111, 0.5); } + .btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #ea5455; + border-color: #ea5455; } + .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, + .show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #e42728; + border-color: #e21c1d; } + .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(237, 110, 111, 0.5); } + +.btn-light { + color: #2a2e30; + background-color: #babfc7; + border-color: #babfc7; } + .btn-light:hover { + color: #2a2e30; + background-color: #a5abb6; + border-color: #9ea5b0; } + .btn-light:focus, .btn-light.focus { + box-shadow: 0 0 0 0.2rem rgba(164, 169, 176, 0.5); } + .btn-light.disabled, .btn-light:disabled { + color: #2a2e30; + background-color: #babfc7; + border-color: #babfc7; } + .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, + .show > .btn-light.dropdown-toggle { + color: #2a2e30; + background-color: #9ea5b0; + border-color: #979eaa; } + .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(164, 169, 176, 0.5); } + +.btn-dark { + color: #fff; + background-color: #1e1e1e; + border-color: #1e1e1e; } + .btn-dark:hover { + color: #fff; + background-color: #0b0b0b; + border-color: #050505; } + .btn-dark:focus, .btn-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(64, 64, 64, 0.5); } + .btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #1e1e1e; + border-color: #1e1e1e; } + .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, + .show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #050505; + border-color: black; } + .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(64, 64, 64, 0.5); } + +.btn-outline-primary, .fc .fc-button { + color: #3a50dc; + border-color: #3a50dc; } + .btn-outline-primary:hover, .fc .fc-button:hover { + color: #fff; + background-color: #3a50dc; + border-color: #3a50dc; } + .btn-outline-primary:focus, .fc .fc-button:focus, .btn-outline-primary.focus, .fc .focus.fc-button { + box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.5); } + .btn-outline-primary.disabled, .fc .disabled.fc-button, .btn-outline-primary:disabled, .fc .fc-button:disabled { + color: #3a50dc; + background-color: transparent; } + .btn-outline-primary:not(:disabled):not(.disabled):active, .fc .fc-button:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .fc .fc-button:not(:disabled):not(.disabled).active, + .show > .btn-outline-primary.dropdown-toggle, + .fc .show > .dropdown-toggle.fc-button { + color: #fff; + background-color: #3a50dc; + border-color: #3a50dc; } + .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .fc .fc-button:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .fc .fc-button:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-primary.dropdown-toggle:focus, + .fc .show > .dropdown-toggle.fc-button:focus { + box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.5); } + +.btn-outline-secondary { + color: #b8c2cc; + border-color: #b8c2cc; } + .btn-outline-secondary:hover { + color: #2a2e30; + background-color: #b8c2cc; + border-color: #b8c2cc; } + .btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(184, 194, 204, 0.5); } + .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #b8c2cc; + background-color: transparent; } + .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, + .show > .btn-outline-secondary.dropdown-toggle { + color: #2a2e30; + background-color: #b8c2cc; + border-color: #b8c2cc; } + .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(184, 194, 204, 0.5); } + +.btn-outline-success { + color: #28c76f; + border-color: #28c76f; } + .btn-outline-success:hover { + color: #fff; + background-color: #28c76f; + border-color: #28c76f; } + .btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.5); } + .btn-outline-success.disabled, .btn-outline-success:disabled { + color: #28c76f; + background-color: transparent; } + .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, + .show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28c76f; + border-color: #28c76f; } + .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 199, 111, 0.5); } + +.btn-outline-info { + color: #00cfe8; + border-color: #00cfe8; } + .btn-outline-info:hover { + color: #fff; + background-color: #00cfe8; + border-color: #00cfe8; } + .btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5); } + .btn-outline-info.disabled, .btn-outline-info:disabled { + color: #00cfe8; + background-color: transparent; } + .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, + .show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #00cfe8; + border-color: #00cfe8; } + .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5); } + +.btn-outline-warning { + color: #ff9f43; + border-color: #ff9f43; } + .btn-outline-warning:hover { + color: #2a2e30; + background-color: #ff9f43; + border-color: #ff9f43; } + .btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 159, 67, 0.5); } + .btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ff9f43; + background-color: transparent; } + .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, + .show > .btn-outline-warning.dropdown-toggle { + color: #2a2e30; + background-color: #ff9f43; + border-color: #ff9f43; } + .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 159, 67, 0.5); } + +.btn-outline-danger { + color: #ea5455; + border-color: #ea5455; } + .btn-outline-danger:hover { + color: #fff; + background-color: #ea5455; + border-color: #ea5455; } + .btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.5); } + .btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #ea5455; + background-color: transparent; } + .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, + .show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #ea5455; + border-color: #ea5455; } + .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(234, 84, 85, 0.5); } + +.btn-outline-light { + color: #babfc7; + border-color: #babfc7; } + .btn-outline-light:hover { + color: #2a2e30; + background-color: #babfc7; + border-color: #babfc7; } + .btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(186, 191, 199, 0.5); } + .btn-outline-light.disabled, .btn-outline-light:disabled { + color: #babfc7; + background-color: transparent; } + .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, + .show > .btn-outline-light.dropdown-toggle { + color: #2a2e30; + background-color: #babfc7; + border-color: #babfc7; } + .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(186, 191, 199, 0.5); } + +.btn-outline-dark { + color: #1e1e1e; + border-color: #1e1e1e; } + .btn-outline-dark:hover { + color: #fff; + background-color: #1e1e1e; + border-color: #1e1e1e; } + .btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(30, 30, 30, 0.5); } + .btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #1e1e1e; + background-color: transparent; } + .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, + .show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #1e1e1e; + border-color: #1e1e1e; } + .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(30, 30, 30, 0.5); } + +.btn-link { + font-weight: 400; + color: #3a50dc; + text-decoration: none; } + .btn-link:hover { + color: #3a50dc; + text-decoration: none; } + .btn-link:focus, .btn-link.focus { + text-decoration: none; + box-shadow: none; } + .btn-link:disabled, .btn-link.disabled { + color: #b8c2cc; + pointer-events: none; } + +.btn-lg { + padding: 1rem 2.5rem; + font-size: 1.25rem; + border-radius: 0.4285rem; } + +.btn-sm { + padding: 0.5rem 1.5rem; + font-size: 0.7rem; + border-radius: 0.4285rem; } + +.btn-block { + display: block; + width: 100%; } + .btn-block + .btn-block { + margin-top: 0.5rem; } + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; } + +.fc .fc-header-toolbar { + margin-bottom: 2rem; } + .fc .fc-header-toolbar .bullets-group-1, + .fc .fc-header-toolbar .bullets-group-2 { + display: flex; + align-items: center; + margin-left: 0; + margin: .5rem auto; } + .fc .fc-header-toolbar .bullets-group-2 { + margin-bottom: 0; } + .fc .fc-header-toolbar .fc-right div:first-child { + display: flex; + justify-content: flex-end; + align-items: center; } + .fc .fc-header-toolbar .fc-right div:first-child h2 { + font-weight: 400; + font-size: 1.3rem; + margin: 0 0.5rem; } + .fc .fc-header-toolbar .fc-right .fc-button { + border-radius: 50%; + padding: .4rem .4rem; + height: 24px; + width: 24px; } + .fc .fc-header-toolbar .fc-right .fc-button.fc-prev-button { + margin-right: 0.5rem; } + .fc .fc-header-toolbar .fc-right .fc-button.fc-prev-button .fc-icon { + position: relative; + top: -6px; + left: -4px; } + .fc .fc-header-toolbar .fc-right .fc-button.fc-next-button { + margin-left: 0.5rem; } + .fc .fc-header-toolbar .fc-right .fc-button.fc-next-button .fc-icon { + position: relative; + top: -6px; + right: 3px; } + .fc .fc-header-toolbar .fc-addNew-button { + padding: .65rem 2rem; } + .fc .fc-header-toolbar .fc-addNew-button:before { + font-family: "feather"; + content: "\e8b1"; } + +.fc .fc-view-container .fc-head .fc-head-container thead .fc-day-header { + padding: 1px 0; } + .fc .fc-view-container .fc-head .fc-head-container thead .fc-day-header.fc-today { + color: #fff; } + +.fc .fc-view-container .fc-body .fc-week table tbody .fc-day { + cursor: pointer; } + .fc .fc-view-container .fc-body .fc-week table tbody .fc-day.fc-today { + background: transparent; } + +.fc .fc-view-container .fc-body .fc-week table tbody .fc-other-month { + background-color: #f1f1f1; } + +.fc .fc-view-container .fc-body .fc-day-top.fc-today a { + background-color: #3a50dc; + color: #fff; + padding: 5px 10px; + margin-top: 2px; + margin-right: 2px; + border-radius: 50%; } + +.fc .fc-view-container .fc-body .fc-not-end, +.fc .fc-view-container .fc-body .fc-not-start { + padding: 1px 8px !important; + opacity: 1 !important; } + .fc .fc-view-container .fc-body .fc-not-end .fc-title, + .fc .fc-view-container .fc-body .fc-not-start .fc-title { + padding-left: 1rem; } + +.fc .fc-view-container .fc-body .fc-not-start { + margin-left: -6px !important; } + +.fc .fc-view-container .fc-body .fc-not-end { + margin-right: -6px !important; } + +.fc .fc-view-container td, +.fc .fc-view-container th { + border-color: #e0e0e0; + font-size: 1rem; } + +.fc .fc-button { + padding: 0.6rem 1rem; + height: auto; + outline: none; + text-shadow: none; + background-color: #3a50dc; + color: #fff; } + .fc .fc-button:not(:disabled).fc-button-active { + background-color: #3a50dc; } + .fc .fc-button:focus { + outline: none; + box-shadow: none; } + +.fc .fc-event { + background: #3a50dc; + border: 1px solid #3a50dc; + padding: 1px 8px; + border-radius: 1rem; + border: none; + padding-left: 1rem; } + .fc .fc-event .fc-title { + font-size: .85rem; + color: #fff; } + +.modal-calendar .calendar-dropdown .dropdown-toggle { + font-size: 1.2rem; } + .modal-calendar .calendar-dropdown .dropdown-toggle:after { + display: none; } + +.modal-calendar #cal-start-date:disabled { + opacity: .5; } + +@media (max-width: 900px) { + .fc .fc-header-toolbar { + margin-bottom: 2rem; } + .fc .fc-header-toolbar .bullets-group-1 [class*="category-"] { + margin: .3rem 0; } } + +@media (max-width: 767.98px) { + .fc .fc-header-toolbar { + flex-direction: column; + margin-bottom: 2rem; } + .fc .fc-header-toolbar .bullets-group-1 { + display: none; } + .fc .fc-header-toolbar .fc-left { + margin-bottom: 1rem; } + .fc .fc-header-toolbar .fc-center { + margin: 1 auto; + margin-bottom: 0; } + .fc .fc-header-toolbar .fc-right { + margin: 1rem auto; } + .fc .fc-header-toolbar .fc-right div:first-child { + justify-content: center; } } diff --git a/assets/css/plugins/calendars/fullcalendar.min.css b/assets/css/plugins/calendars/fullcalendar.min.css new file mode 100644 index 0000000..e15b570 --- /dev/null +++ b/assets/css/plugins/calendars/fullcalendar.min.css @@ -0,0 +1 @@ +.btn-block,input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.btn,.fc .fc-button{display:inline-block;font-weight:400;color:#626262;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:0 solid transparent;padding:.9rem 2rem;font-size:1rem;border-radius:.42rem;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-lg,.btn-sm{border-radius:.4285rem}@media (prefers-reduced-motion:reduce){.btn,.fc .fc-button{-webkit-transition:none;transition:none}}.btn:hover,.fc .fc-button:hover{color:#626262;text-decoration:none}.btn.focus,.btn:focus,.fc .fc-button:focus,.fc .focus.fc-button{outline:0;box-shadow:0 0 0 .2rem rgba(115,103,240,.25)}.btn-primary.focus,.btn-primary:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(136,126,242,.5)}.btn.disabled,.btn:disabled,.fc .disabled.fc-button,.fc .fc-button:disabled{opacity:.65}.fc a.disabled.fc-button,.fc fieldset:disabled a.fc-button,a.btn.disabled,fieldset:disabled .fc a.fc-button,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#FFF;background-color:#7367F0;border-color:#7367F0}.btn-primary:hover{color:#FFF;background-color:#5344ED;border-color:#4839EB}.btn-primary.disabled,.btn-primary:disabled{color:#FFF;background-color:#7367F0;border-color:#7367F0}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#FFF;background-color:#4839EB;border-color:#3E2DEA}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(163,172,181,.5)}.btn-secondary{color:#2A2E30;background-color:#B8C2CC;border-color:#B8C2CC}.btn-secondary:hover{color:#2A2E30;background-color:#A2AFBC;border-color:#9AA9B7}.btn-secondary.disabled,.btn-secondary:disabled{color:#2A2E30;background-color:#B8C2CC;border-color:#B8C2CC}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#2A2E30;background-color:#9AA9B7;border-color:#93A2B1}.btn-success.focus,.btn-success:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,207,133,.5)}.btn-success{color:#FFF;background-color:#28C76F;border-color:#28C76F}.btn-success:hover{color:#FFF;background-color:#22A75D;border-color:#1F9D57}.btn-success.disabled,.btn-success:disabled{color:#FFF;background-color:#28C76F;border-color:#28C76F}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#FFF;background-color:#1F9D57;border-color:#1D9251}.btn-info.focus,.btn-info:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,214,235,.5)}.btn-info{color:#FFF;background-color:#00CFE8;border-color:#00CFE8}.btn-info:hover{color:#FFF;background-color:#00ADC2;border-color:#00A1B5}.btn-info.disabled,.btn-info:disabled{color:#FFF;background-color:#00CFE8;border-color:#00CFE8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#FFF;background-color:#00A1B5;border-color:#0096A8}.btn-warning.focus,.btn-warning:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(223,142,64,.5)}.btn-warning{color:#2A2E30;background-color:#FF9F43;border-color:#FF9F43}.btn-warning:hover{color:#2A2E30;background-color:#FF8B1D;border-color:#FF8510}.btn-warning.disabled,.btn-warning:disabled{color:#2A2E30;background-color:#FF9F43;border-color:#FF9F43}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#2A2E30;background-color:#FF8510;border-color:#FF7E03}.btn-danger.focus,.btn-danger:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(237,110,111,.5)}.btn-danger{color:#FFF;background-color:#EA5455;border-color:#EA5455}.btn-danger:hover{color:#FFF;background-color:#E63233;border-color:#E42728}.btn-danger.disabled,.btn-danger:disabled{color:#FFF;background-color:#EA5455;border-color:#EA5455}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#FFF;background-color:#E42728;border-color:#E21C1D}.btn-light.focus,.btn-light:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(164,169,176,.5)}.btn-light{color:#2A2E30;background-color:#BABFC7;border-color:#BABFC7}.btn-light:hover{color:#2A2E30;background-color:#A5ABB6;border-color:#9EA5B0}.btn-light.disabled,.btn-light:disabled{color:#2A2E30;background-color:#BABFC7;border-color:#BABFC7}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#2A2E30;background-color:#9EA5B0;border-color:#979EAA}.btn-dark.focus,.btn-dark:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(64,64,64,.5)}.btn-dark{color:#FFF;background-color:#1E1E1E;border-color:#1E1E1E}.btn-dark:hover{color:#FFF;background-color:#0B0B0B;border-color:#050505}.btn-dark.disabled,.btn-dark:disabled{color:#FFF;background-color:#1E1E1E;border-color:#1E1E1E}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#FFF;background-color:#050505;border-color:#000}.btn-outline-primary.focus,.btn-outline-primary:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.fc .fc-button:focus,.fc .fc-button:not(:disabled):not(.disabled).active:focus,.fc .fc-button:not(:disabled):not(.disabled):active:focus,.fc .focus.fc-button,.fc .show>.dropdown-toggle.fc-button:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(115,103,240,.5)}.btn-outline-primary,.fc .fc-button{color:#7367F0;border-color:#7367F0}.btn-outline-primary:hover,.fc .fc-button:hover{color:#FFF;background-color:#7367F0;border-color:#7367F0}.btn-outline-primary.disabled,.btn-outline-primary:disabled,.fc .disabled.fc-button,.fc .fc-button:disabled{color:#7367F0;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.fc .fc-button:not(:disabled):not(.disabled).active,.fc .fc-button:not(:disabled):not(.disabled):active,.fc .show>.dropdown-toggle.fc-button,.show>.btn-outline-primary.dropdown-toggle{color:#FFF;background-color:#7367F0;border-color:#7367F0}.btn-outline-secondary.focus,.btn-outline-secondary:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(184,194,204,.5)}.btn-outline-secondary{color:#B8C2CC;border-color:#B8C2CC}.btn-outline-secondary:hover{color:#2A2E30;background-color:#B8C2CC;border-color:#B8C2CC}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#B8C2CC;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#2A2E30;background-color:#B8C2CC;border-color:#B8C2CC}.btn-outline-success.focus,.btn-outline-success:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,199,111,.5)}.btn-outline-success{color:#28C76F;border-color:#28C76F}.btn-outline-success:hover{color:#FFF;background-color:#28C76F;border-color:#28C76F}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28C76F;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#FFF;background-color:#28C76F;border-color:#28C76F}.btn-outline-info.focus,.btn-outline-info:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,207,232,.5)}.btn-outline-info{color:#00CFE8;border-color:#00CFE8}.btn-outline-info:hover{color:#FFF;background-color:#00CFE8;border-color:#00CFE8}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#00CFE8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#FFF;background-color:#00CFE8;border-color:#00CFE8}.btn-outline-warning.focus,.btn-outline-warning:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,159,67,.5)}.btn-outline-warning{color:#FF9F43;border-color:#FF9F43}.btn-outline-warning:hover{color:#2A2E30;background-color:#FF9F43;border-color:#FF9F43}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#FF9F43;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#2A2E30;background-color:#FF9F43;border-color:#FF9F43}.btn-outline-danger.focus,.btn-outline-danger:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(234,84,85,.5)}.btn-outline-danger{color:#EA5455;border-color:#EA5455}.btn-outline-danger:hover{color:#FFF;background-color:#EA5455;border-color:#EA5455}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#EA5455;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#FFF;background-color:#EA5455;border-color:#EA5455}.btn-outline-light.focus,.btn-outline-light:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(186,191,199,.5)}.btn-outline-light{color:#BABFC7;border-color:#BABFC7}.btn-outline-light:hover{color:#2A2E30;background-color:#BABFC7;border-color:#BABFC7}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#BABFC7;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#2A2E30;background-color:#BABFC7;border-color:#BABFC7}.btn-outline-dark.focus,.btn-outline-dark:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(30,30,30,.5)}.btn-outline-dark{color:#1E1E1E;border-color:#1E1E1E}.btn-outline-dark:hover{color:#FFF;background-color:#1E1E1E;border-color:#1E1E1E}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#1E1E1E;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#FFF;background-color:#1E1E1E;border-color:#1E1E1E}.btn-link{font-weight:400;color:#7367F0;text-decoration:none}.btn-link:hover{color:#5E50EE;text-decoration:none}.btn-link.focus,.btn-link:focus{text-decoration:none;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#B8C2CC;pointer-events:none}.btn-lg{padding:1rem 2.5rem;font-size:1.25rem}.btn-sm{padding:.5rem 1.5rem;font-size:.7rem}.btn-block{display:block}.btn-block+.btn-block{margin-top:.5rem}.fc .fc-header-toolbar{margin-bottom:2rem}.fc .fc-header-toolbar .bullets-group-1,.fc .fc-header-toolbar .bullets-group-2{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin:.5rem auto}.fc .fc-header-toolbar .bullets-group-2{margin-bottom:0}.fc .fc-header-toolbar .fc-right div:first-child{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.fc .fc-header-toolbar .fc-right div:first-child h2{font-weight:400;font-size:1.3rem;margin:0 .5rem}.fc .fc-header-toolbar .fc-right .fc-button{border-radius:50%;padding:.4rem;height:24px;width:24px}.fc .fc-header-toolbar .fc-right .fc-button.fc-prev-button{margin-right:.5rem}.fc .fc-header-toolbar .fc-right .fc-button.fc-prev-button .fc-icon{position:relative;top:-6px;left:-4px}.fc .fc-header-toolbar .fc-right .fc-button.fc-next-button{margin-left:.5rem}.fc .fc-header-toolbar .fc-right .fc-button.fc-next-button .fc-icon{position:relative;top:-6px;right:3px}.fc .fc-header-toolbar .fc-addNew-button{padding:.65rem 2rem}.fc .fc-header-toolbar .fc-addNew-button:before{font-family:feather;content:'\e8b1'}.fc .fc-view-container .fc-head .fc-head-container thead .fc-day-header{padding:1px 0}.fc .fc-view-container .fc-head .fc-head-container thead .fc-day-header.fc-today{color:#FFF}.fc .fc-view-container .fc-body .fc-week table tbody .fc-day{cursor:pointer}.fc .fc-view-container .fc-body .fc-week table tbody .fc-day.fc-today{background:0 0}.fc .fc-view-container .fc-body .fc-week table tbody .fc-other-month{background-color:#F1F1F1}.fc .fc-view-container .fc-body .fc-day-top.fc-today a{background-color:#7367F0;color:#FFF;padding:5px 10px;margin-top:2px;margin-right:2px;border-radius:50%}.fc .fc-view-container .fc-body .fc-not-end,.fc .fc-view-container .fc-body .fc-not-start{padding:1px 8px!important;opacity:1!important}.fc .fc-view-container .fc-body .fc-not-end .fc-title,.fc .fc-view-container .fc-body .fc-not-start .fc-title{padding-left:1rem}.fc .fc-view-container .fc-body .fc-not-start{margin-left:-6px!important}.fc .fc-view-container .fc-body .fc-not-end{margin-right:-6px!important}.fc .fc-view-container td,.fc .fc-view-container th{border-color:#E0E0E0;font-size:1rem}.fc .fc-button{padding:.6rem 1rem;height:auto;outline:0;text-shadow:none;background-color:#7367F0;color:#FFF}.fc .fc-button:not(:disabled).fc-button-active{background-color:#4839EB}.fc .fc-button:focus{outline:0;box-shadow:none}.fc .fc-event{background:#7367F0;padding:1px 8px 1px 1rem;border-radius:1rem;border:none}.fc .fc-event .fc-title{font-size:.85rem;color:#FFF}.modal-calendar .calendar-dropdown .dropdown-toggle{font-size:1.2rem}.modal-calendar .calendar-dropdown .dropdown-toggle:after{display:none}.modal-calendar #cal-start-date:disabled{opacity:.5}@media (max-width:900px){.fc .fc-header-toolbar{margin-bottom:2rem}.fc .fc-header-toolbar .bullets-group-1 [class*=category-]{margin:.3rem 0}}@media (max-width:767.98px){.fc .fc-header-toolbar{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-bottom:2rem}.fc .fc-header-toolbar .bullets-group-1{display:none}.fc .fc-header-toolbar .fc-left{margin-bottom:1rem}.fc .fc-header-toolbar .fc-center{margin:1 auto 0}.fc .fc-header-toolbar .fc-right{margin:1rem auto}.fc .fc-header-toolbar .fc-right div:first-child{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}} \ No newline at end of file diff --git a/assets/css/plugins/extensions/context-menu.css b/assets/css/plugins/extensions/context-menu.css new file mode 100644 index 0000000..3003db6 --- /dev/null +++ b/assets/css/plugins/extensions/context-menu.css @@ -0,0 +1,10 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +/********* CONTEXT MENU *********/ +.context-menu-list { + width: 248px; } + .context-menu-list .context-menu-item { + padding: .6rem 2rem; } + .context-menu-list .context-menu-item:not(:last-child) { + border-bottom: 1px solid #dae1e7; } diff --git a/assets/css/plugins/extensions/context-menu.min.css b/assets/css/plugins/extensions/context-menu.min.css new file mode 100644 index 0000000..d8b7556 --- /dev/null +++ b/assets/css/plugins/extensions/context-menu.min.css @@ -0,0 +1 @@ +.context-menu-list{width:248px}.context-menu-list .context-menu-item{padding:.6rem 2rem}.context-menu-list .context-menu-item:not(:last-child){border-bottom:1px solid #DAE1E7} \ No newline at end of file diff --git a/assets/css/plugins/extensions/drag-and-drop.css b/assets/css/plugins/extensions/drag-and-drop.css new file mode 100644 index 0000000..0eed1de --- /dev/null +++ b/assets/css/plugins/extensions/drag-and-drop.css @@ -0,0 +1,20 @@ +#draggable-cards .card { + cursor: grab; } + +#basic-list-group .list-group-item, #multiple-list-group-a .list-group-item, #multiple-list-group-b .list-group-item { + cursor: grab; } + +#clone-lists .chip { + cursor: grab; } + +#multiple-list-group-a, #multiple-list-group-b { + min-height: 5.714rem; } + +#dd-with-handle .list-group { + min-height: 5.714rem; } + #dd-with-handle .list-group .handle { + padding: 0 5px; + margin-right: 5px; + background-color: rgba(0, 0, 0, 0.1); + cursor: move; + font-size: 1.2rem; } diff --git a/assets/css/plugins/extensions/drag-and-drop.min.css b/assets/css/plugins/extensions/drag-and-drop.min.css new file mode 100644 index 0000000..e1e6c25 --- /dev/null +++ b/assets/css/plugins/extensions/drag-and-drop.min.css @@ -0,0 +1 @@ +#basic-list-group .list-group-item,#clone-lists .chip,#draggable-cards .card,#multiple-list-group-a .list-group-item,#multiple-list-group-b .list-group-item{cursor:-webkit-grab;cursor:grab}#dd-with-handle .list-group,#multiple-list-group-a,#multiple-list-group-b{min-height:5.714rem}#dd-with-handle .list-group .handle{padding:0 5px;margin-right:5px;background-color:rgba(0,0,0,.1);cursor:move;font-size:1.2rem} \ No newline at end of file diff --git a/assets/css/plugins/extensions/media-plyr.css b/assets/css/plugins/extensions/media-plyr.css new file mode 100644 index 0000000..2d5a1a6 --- /dev/null +++ b/assets/css/plugins/extensions/media-plyr.css @@ -0,0 +1,8 @@ +.audio-player:focus { + outline: 0; } + +.plyr__controls { + justify-content: flex-start; } + +.plyr__progress { + flex-grow: 1; } diff --git a/assets/css/plugins/extensions/media-plyr.min.css b/assets/css/plugins/extensions/media-plyr.min.css new file mode 100644 index 0000000..8c33e6e --- /dev/null +++ b/assets/css/plugins/extensions/media-plyr.min.css @@ -0,0 +1 @@ +.audio-player:focus{outline:0}.plyr__controls{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.plyr__progress{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1} \ No newline at end of file diff --git a/assets/css/plugins/extensions/noui-slider.css b/assets/css/plugins/extensions/noui-slider.css new file mode 100644 index 0000000..f7a458e --- /dev/null +++ b/assets/css/plugins/extensions/noui-slider.css @@ -0,0 +1,163 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.noUi-background { + background: #f0f0f0; } + +.noUi-target { + background-color: #ebebeb; + border: none; + box-shadow: none; + border-radius: 1rem; } + .noUi-target.noUi-connect { + box-shadow: none; } + +.noUi-horizontal { + height: 10px; + padding-right: 17px; } + .noUi-horizontal .noUi-handle { + width: 20px; + height: 20px; + top: -5px; + left: -1px; + cursor: pointer; } + .noUi-horizontal .noUi-origin { + left: 17px; + right: -17px; } + .noUi-horizontal.slider-xl { + height: 14px; } + .noUi-horizontal.slider-xl .noUi-handle { + width: 28px; + height: 28px; + top: -7px; } + .noUi-horizontal.slider-lg { + height: 12px; } + .noUi-horizontal.slider-lg .noUi-handle { + width: 24px; + height: 24px; + top: -6px; } + .noUi-horizontal.slider-sm { + height: 6px; } + .noUi-horizontal.slider-sm .noUi-handle { + height: 15px; + width: 15px; + right: -2px !important; } + .noUi-horizontal.slider-xs { + height: 3px; } + .noUi-horizontal.slider-xs .noUi-handle { + height: 10px; + width: 10px; + top: -4px; + right: -2px !important; } + +.noUi-handle { + box-shadow: none; + border: none; + border-radius: 50%; + background: #fff; + border: 5px solid #3a50dc; } + .noUi-handle:after, .noUi-handle:before { + display: none; } + +.circle-filled .noUi-handle { + background: #3a50dc; + border-radius: 50%; } + .circle-filled .noUi-handle:after, .circle-filled .noUi-handle:before { + display: none; } + +.square .noUi-handle { + background: #3a50dc; + border-radius: 3px; } + .square .noUi-handle:before { + display: block; + width: 2px; + height: 10px; + left: 2px; + top: 0px; } + .square .noUi-handle:after { + display: block; + width: 2px; + height: 10px; + left: 7px; + top: 0px; } + +.square.slider-xl .noUi-handle:before { + left: 5px; + top: 4px; } + +.square.slider-xl .noUi-handle:after { + left: 10px; + top: 4px; } + +.square.slider-lg .noUi-handle:before { + left: 3px; + top: 2px; } + +.square.slider-lg .noUi-handle:after { + left: 8px; + top: 2px; } + +.square.slider-sm .noUi-handle:before { + left: -1px; + top: -1px; + height: 7px; } + +.square.slider-sm .noUi-handle:after { + left: 4px; + top: -1px; + height: 7px; } + +.square.slider-xs .noUi-handle:before { + left: -3px; + top: -3px; + height: 5px; } + +.square.slider-xs .noUi-handle:after { + left: 1px; + top: -3px; + height: 5px; } + +.noUi-connect { + background: #3a50dc; + box-shadow: none; } + +.noUi-vertical { + display: inline-block; + width: 8px; + height: 150px; } + .noUi-vertical .noUi-handle { + width: 20px; + height: 20px; + top: -5px; + left: -6px; } + .noUi-vertical.square .noUi-handle { + background: #3a50dc; + border-radius: 3px; } + .noUi-vertical.square .noUi-handle:before { + display: block; + width: 12px; + height: 2px; + left: -1px; + top: 2px; } + .noUi-vertical.square .noUi-handle:after { + display: block; + width: 12px; + height: 2px; + left: -1px; + top: 7px; } + .noUi-vertical .noUi-tooltip { + transform: translate(-10%, -50%); } + +.example-val { + font: 400 12px Arial; + color: #888; + display: block; + margin: 15px 0; } + +.noUi-handle:focus { + outline: 0; } + +_:-ms-lang(x), +.slider-select { + flex: 0 0 10%; + max-width: 10%; } diff --git a/assets/css/plugins/extensions/noui-slider.min.css b/assets/css/plugins/extensions/noui-slider.min.css new file mode 100644 index 0000000..4862b00 --- /dev/null +++ b/assets/css/plugins/extensions/noui-slider.min.css @@ -0,0 +1 @@ +.circle-filled .noUi-handle:after,.circle-filled .noUi-handle:before,.noUi-handle:after,.noUi-handle:before{display:none}.noUi-connect,.noUi-handle,.noUi-target,.noUi-target.noUi-connect{box-shadow:none}.noUi-background{background:#F0F0F0}.noUi-target{background-color:#EBEBEB;border:none;border-radius:1rem}.noUi-horizontal{height:10px;padding-right:17px}.noUi-horizontal .noUi-handle{width:20px;height:20px;top:-5px;left:-1px;cursor:pointer}.noUi-horizontal .noUi-origin{left:17px;right:-17px}.noUi-horizontal.slider-xl{height:14px}.noUi-horizontal.slider-xl .noUi-handle{width:28px;height:28px;top:-7px}.noUi-horizontal.slider-lg{height:12px}.noUi-horizontal.slider-lg .noUi-handle{width:24px;height:24px;top:-6px}.noUi-horizontal.slider-sm{height:6px}.noUi-horizontal.slider-sm .noUi-handle{height:15px;width:15px;right:-2px!important}.noUi-horizontal.slider-xs{height:3px}.noUi-horizontal.slider-xs .noUi-handle{height:10px;width:10px;top:-4px;right:-2px!important}.noUi-handle{border-radius:50%;background:#FFF;border:5px solid #7367F0}.circle-filled .noUi-handle{background:#7367F0;border-radius:50%}.noUi-vertical.square .noUi-handle,.square .noUi-handle{background:#7367F0;border-radius:3px}.square .noUi-handle:before{display:block;width:2px;height:10px;left:2px;top:0}.square .noUi-handle:after{display:block;width:2px;height:10px;left:7px;top:0}.square.slider-xl .noUi-handle:before{left:5px;top:4px}.square.slider-xl .noUi-handle:after{left:10px;top:4px}.square.slider-lg .noUi-handle:before{left:3px;top:2px}.square.slider-lg .noUi-handle:after{left:8px;top:2px}.square.slider-sm .noUi-handle:before{left:-1px;top:-1px;height:7px}.square.slider-sm .noUi-handle:after{left:4px;top:-1px;height:7px}.square.slider-xs .noUi-handle:before{left:-3px;top:-3px;height:5px}.square.slider-xs .noUi-handle:after{left:1px;top:-3px;height:5px}.noUi-connect{background:#7367F0}.noUi-vertical{display:inline-block;width:8px;height:150px}.noUi-vertical .noUi-handle{width:20px;height:20px;top:-5px;left:-6px}.noUi-vertical.square .noUi-handle:before{display:block;width:12px;height:2px;left:-1px;top:2px}.noUi-vertical.square .noUi-handle:after{display:block;width:12px;height:2px;left:-1px;top:7px}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(-10%,-50%);-ms-transform:translate(-10%,-50%);transform:translate(-10%,-50%)}.example-val{font:400 12px Arial;color:#888;display:block;margin:15px 0}.noUi-handle:focus{outline:0}.slider-select,_:-ms-lang(x){-ms-flex:0 0 10%;flex:0 0 10%;max-width:10%} \ No newline at end of file diff --git a/assets/css/plugins/extensions/swiper.css b/assets/css/plugins/extensions/swiper.css new file mode 100644 index 0000000..7e6557e --- /dev/null +++ b/assets/css/plugins/extensions/swiper.css @@ -0,0 +1,146 @@ +/*========================================================================================= + File Name: swiper.scss + Description: swiper plugin scss. + ---------------------------------------------------------------------------------------- + Item Name: Intellivoid Accounts Dashboard + Author: PIXINVENT + Author URL: http://www.themeforest.net/user/pixinvent +==========================================================================================*/ +/*======================================================== + DARK LAYOUT +=========================================================*/ +/* Swiper css */ +/* ---------- */ +/* swiper slide shadow */ +.swiper-container .swiper-shadow { + box-shadow: 2px 8px 10px 0 rgba(25, 42, 70, 0.13) !important; } + +.swiper-centered-slides.swiper-container .swiper-slide { + text-align: center; + font-weight: 500; + background-color: #fff; + height: auto; + width: auto !important; + padding: 2rem 5.5rem; + cursor: pointer; } + .swiper-centered-slides.swiper-container .swiper-slide.swiper-slide-active { + border: 2px solid #3a50dc; } + .swiper-centered-slides.swiper-container .swiper-slide.swiper-slide-active i { + color: #3a50dc; } + +.swiper-centered-slides .swiper-button-next:after, +.swiper-centered-slides .swiper-button-prev:after { + border-radius: 50%; + background-color: #3a50dc; + box-shadow: 0 2px 4px 0 rgba(34, 41, 47, 0.5) !important; } + +.swiper-centered-slides-2.swiper-container .swiper-slide { + font-weight: 500; + background-color: #f2f4f4; + height: auto; + width: auto !important; + cursor: pointer; } + .swiper-centered-slides-2.swiper-container .swiper-slide.swiper-slide-active { + color: #fff; + background-color: #3a50dc; + box-shadow: 0 3px 6px 0 rgba(115, 103, 240, 0.5) !important; } + +/* cube effect */ +.swiper-cube-effect.swiper-container { + width: 300px; + left: 50%; + margin-left: -150px; + margin-top: -12px; } + +/* swiper coverflow slide width */ +.swiper-coverflow.swiper-container .swiper-slide { + width: 300px; } + +.gallery-thumbs { + padding: 10px 0; + background: #22292f; } + .gallery-thumbs .swiper-slide { + opacity: 0.4; } + .gallery-thumbs .swiper-slide-thumb-active { + opacity: 1; } + +.swiper-parallax .swiper-slide { + padding: 2.67rem 4rem; } + .swiper-parallax .swiper-slide .title { + font-size: 1.14rem; + padding: .5rem 0; } + .swiper-parallax .swiper-slide .text { + font-size: 1rem; } + +.swiper-parallax .parallax-bg { + position: absolute; + width: 130%; } + +.swiper-virtual.swiper-container { + height: 300px; } + .swiper-virtual.swiper-container .swiper-slide { + /* virtual slides */ + font-size: 1.51rem; + background-color: #eee; + display: flex; + justify-content: center; + align-items: center; } + +.swiper-button-prev, +.swiper-button-next, +.swiper-container-rtl .swiper-button-prev, +.swiper-container-rtl .swiper-button-next { + background-image: none; + color: #fff; + width: 35px; + font-size: 2rem; } + .swiper-button-prev:focus, + .swiper-button-next:focus, + .swiper-container-rtl .swiper-button-prev:focus, + .swiper-container-rtl .swiper-button-next:focus { + outline: none; } + .swiper-button-prev:after, + .swiper-button-next:after, + .swiper-container-rtl .swiper-button-prev:after, + .swiper-container-rtl .swiper-button-next:after { + font-family: 'feather'; } + +.swiper-button-prev:after { + content: "\e843"; + padding-right: 1px; } + +.swiper-button-next:after { + content: "\e844"; + padding-left: 2px; } + +.swiper-container-rtl .swiper-button-prev:after { + content: "\e844"; } + +.swiper-container-rtl .swiper-button-next:after { + content: "\e843"; } + +@media only screen and (max-width: 768px) { + .swiper-button-prev { + font-size: 1.32rem; + top: 55%; } + .swiper-button-next { + font-size: 1.32rem; + top: 55%; + width: 15px; } + .swiper-parallax .swiper-slide { + padding: 1rem 1.2rem; } + .swiper-parallax img { + height: 100% !important; } } + +@media only screen and (max-width: 576px) { + .swiper-centered-slides.swiper-container .swiper-slide { + padding: 1.6rem 2.5rem; } + .swiper-centered-slides.swiper-container .swiper-slide i { + font-size: 1.14rem !important; } + .swiper-cube-effect.swiper-container { + width: 150px; + left: 70%; } + .swiper-parallax .swiper-slide { + padding: 1rem 1.3rem; } + .swiper-virtual.swiper-container .swiper-slide { + font-size: 1rem; } } diff --git a/assets/css/plugins/extensions/swiper.min.css b/assets/css/plugins/extensions/swiper.min.css new file mode 100644 index 0000000..6d5c7cc --- /dev/null +++ b/assets/css/plugins/extensions/swiper.min.css @@ -0,0 +1 @@ +.swiper-container .swiper-shadow{box-shadow:2px 8px 10px 0 rgba(25,42,70,.13)!important}.swiper-centered-slides.swiper-container .swiper-slide{text-align:center;font-weight:500;background-color:#FFF;height:auto;width:auto!important;padding:2rem 5.5rem;cursor:pointer}.swiper-centered-slides.swiper-container .swiper-slide.swiper-slide-active{border:2px solid #7367F0}.swiper-centered-slides.swiper-container .swiper-slide.swiper-slide-active i{color:#7367F0}.swiper-centered-slides .swiper-button-next:after,.swiper-centered-slides .swiper-button-prev:after{border-radius:50%;background-color:#7367F0;box-shadow:0 2px 4px 0 rgba(34,41,47,.5)!important}.swiper-centered-slides-2.swiper-container .swiper-slide{font-weight:500;background-color:#F2F4F4;height:auto;width:auto!important;cursor:pointer}.swiper-centered-slides-2.swiper-container .swiper-slide.swiper-slide-active{color:#FFF;background-color:#7367F0;box-shadow:0 3px 6px 0 rgba(115,103,240,.5)!important}.swiper-cube-effect.swiper-container{width:300px;left:50%;margin-left:-150px;margin-top:-12px}.swiper-coverflow.swiper-container .swiper-slide{width:300px}.gallery-thumbs{padding:10px 0;background:#22292F}.gallery-thumbs .swiper-slide{opacity:.4}.gallery-thumbs .swiper-slide-thumb-active{opacity:1}.swiper-parallax .swiper-slide{padding:2.67rem 4rem}.swiper-parallax .swiper-slide .title{font-size:1.14rem;padding:.5rem 0}.swiper-parallax .swiper-slide .text{font-size:1rem}.swiper-parallax .parallax-bg{position:absolute;width:130%}.swiper-virtual.swiper-container{height:300px}.swiper-virtual.swiper-container .swiper-slide{font-size:1.51rem;background-color:#EEE;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.swiper-button-next,.swiper-button-prev,.swiper-container-rtl .swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:none;color:#FFF;width:35px;font-size:2rem}.swiper-button-next:focus,.swiper-button-prev:focus,.swiper-container-rtl .swiper-button-next:focus,.swiper-container-rtl .swiper-button-prev:focus{outline:0}.swiper-button-next:after,.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{font-family:feather}.swiper-button-prev:after{content:'\e843';padding-right:1px}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'\e844'}.swiper-button-next:after{padding-left:2px}.swiper-container-rtl .swiper-button-next:after{content:'\e843'}@media only screen and (max-width:768px){.swiper-button-next,.swiper-button-prev{font-size:1.32rem;top:55%}.swiper-button-next{width:15px}.swiper-parallax .swiper-slide{padding:1rem 1.2rem}.swiper-parallax img{height:100%!important}}@media only screen and (max-width:576px){.swiper-centered-slides.swiper-container .swiper-slide{padding:1.6rem 2.5rem}.swiper-centered-slides.swiper-container .swiper-slide i{font-size:1.14rem!important}.swiper-cube-effect.swiper-container{width:150px;left:70%}.swiper-parallax .swiper-slide{padding:1rem 1.3rem}.swiper-virtual.swiper-container .swiper-slide{font-size:1rem}} \ No newline at end of file diff --git a/assets/css/plugins/extensions/toastr.css b/assets/css/plugins/extensions/toastr.css new file mode 100644 index 0000000..a84161e --- /dev/null +++ b/assets/css/plugins/extensions/toastr.css @@ -0,0 +1,28 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +#toast-container > div { + opacity: 0.9; + -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90); + filter: alpha(opacity=90); + max-width: none; } + +#toast-container > div:hover { + -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.75); + -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.75); + box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.75); } + +.toast { + background-color: #3a50dc; } + +.toast-success { + background-color: #28c76f; } + +.toast-error { + background-color: #ea5455; } + +.toast-info { + background-color: #00cfe8; } + +.toast-warning { + background-color: #ff9f43; } diff --git a/assets/css/plugins/extensions/toastr.min.css b/assets/css/plugins/extensions/toastr.min.css new file mode 100644 index 0000000..162b170 --- /dev/null +++ b/assets/css/plugins/extensions/toastr.min.css @@ -0,0 +1 @@ +#toast-container>div{opacity:.9;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=90);filter:alpha(opacity=90);max-width:none}#toast-container>div:hover{box-shadow:2px 2px 10px 0 rgba(0,0,0,.75)}.toast{background-color:#7367F0}.toast-success{background-color:#28C76F}.toast-error{background-color:#EA5455}.toast-info{background-color:#00CFE8}.toast-warning{background-color:#FF9F43} \ No newline at end of file diff --git a/assets/css/plugins/file-uploaders/dropzone.css b/assets/css/plugins/file-uploaders/dropzone.css new file mode 100644 index 0000000..f03a576 --- /dev/null +++ b/assets/css/plugins/file-uploaders/dropzone.css @@ -0,0 +1,62 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.dropzone { + min-height: 350px; + border: 2px dashed #3a50dc; + background: #f8f8f8; } + .dropzone .dz-message { + font-size: 2rem; + position: absolute; + top: 50%; + left: 0; + width: 100%; + height: 300px; + margin-top: -30px; + color: #3a50dc; + text-align: center; } + .dropzone .dz-message:before { + content: "\e864"; + font-family: 'feather'; + font-size: 80px; + position: absolute; + top: 48px; + width: 80px; + height: 80px; + display: inline-block; + left: 50%; + margin-left: -40px; + line-height: 1; + z-index: 2; + color: #3a50dc; + text-indent: 0px; + font-weight: normal; + -webkit-font-smoothing: antialiased; } + .dropzone .dz-preview { + background: transparent; } + .dropzone .dz-preview .dz-error-mark, .dropzone .dz-preview .dz-success-mark { + background-image: url("../../../images/dropzone/spritemap.png"); } + .dropzone .dz-preview .dz-error-message { + min-width: 113px; + top: 0; + left: 0; } + .dropzone .dz-preview .dz-remove { + font-size: 1.1rem; + color: #ea5455; + line-height: 2rem; } + .dropzone .dz-preview .dz-remove:before { + content: "\e8f6"; + font-family: 'feather'; + display: inline-block; + line-height: 1; + z-index: 2; + text-indent: 0px; + font-weight: normal; + -webkit-font-smoothing: antialiased; } + .dropzone .dz-preview .dz-remove:hover { + text-decoration: none; + color: #e42728; } + +@media (max-width: 576px) { + .dropzone .dz-message:before { + top: 7.14rem; } } diff --git a/assets/css/plugins/file-uploaders/dropzone.min.css b/assets/css/plugins/file-uploaders/dropzone.min.css new file mode 100644 index 0000000..7aac6ad --- /dev/null +++ b/assets/css/plugins/file-uploaders/dropzone.min.css @@ -0,0 +1 @@ +.dropzone .dz-message:before,.dropzone .dz-preview .dz-remove:before{font-family:feather;display:inline-block;z-index:2;text-indent:0;font-weight:400;-webkit-font-smoothing:antialiased}.dropzone{min-height:350px;border:2px dashed #7367F0;background:#F8F8F8}.dropzone .dz-message{font-size:2rem;position:absolute;top:50%;left:0;width:100%;height:300px;margin-top:-30px;color:#7367F0;text-align:center}.dropzone .dz-message:before{content:'\e864';font-size:80px;position:absolute;top:48px;width:80px;height:80px;left:50%;margin-left:-40px;line-height:1;color:#7367F0}.dropzone .dz-preview{background:0 0}.dropzone .dz-preview .dz-error-mark,.dropzone .dz-preview .dz-success-mark{background-image:url(../../../images/dropzone/spritemap.png)}.dropzone .dz-preview .dz-error-message{min-width:113px;top:0;left:0}.dropzone .dz-preview .dz-remove{font-size:1.1rem;color:#EA5455;line-height:2rem}.dropzone .dz-preview .dz-remove:before{content:'\e8f6';line-height:1}.dropzone .dz-preview .dz-remove:hover{text-decoration:none;color:#E42728}@media (max-width:576px){.dropzone .dz-message:before{top:7.14rem}} \ No newline at end of file diff --git a/assets/css/plugins/forms/extended/typeahed.css b/assets/css/plugins/forms/extended/typeahed.css new file mode 100644 index 0000000..91cc1b9 --- /dev/null +++ b/assets/css/plugins/forms/extended/typeahed.css @@ -0,0 +1,25 @@ +/* Typeahead Starts */ +.typeahead .twitter-typeahead { + width: 100%; } + .typeahead .twitter-typeahead .tt-menu { + width: 100%; } + .typeahead .twitter-typeahead .empty-message { + padding: 5px 10px; + text-align: center; } + .typeahead .twitter-typeahead .rtl-typeahead .tt-menu { + text-align: right; } + .typeahead .twitter-typeahead .league-name { + margin: 0 10px 5px 10px; + padding: 7px 5px 10px; + border-bottom: 1px solid #ccc; } + +.typeahead .scrollable-dropdown .twitter-typeahead .tt-menu { + max-height: 150px; + overflow-y: auto; } + +/* Typeahead Ends */ +/* MaxLength Starts */ +.bootstrap-maxlength { + margin-top: 0.5rem; } + +/* MaxLength Ends */ diff --git a/assets/css/plugins/forms/extended/typeahed.min.css b/assets/css/plugins/forms/extended/typeahed.min.css new file mode 100644 index 0000000..eb65fd2 --- /dev/null +++ b/assets/css/plugins/forms/extended/typeahed.min.css @@ -0,0 +1 @@ +.typeahead .twitter-typeahead,.typeahead .twitter-typeahead .tt-menu{width:100%}.typeahead .twitter-typeahead .empty-message{padding:5px 10px;text-align:center}.typeahead .twitter-typeahead .rtl-typeahead .tt-menu{text-align:right}.typeahead .twitter-typeahead .league-name{margin:0 10px 5px;padding:7px 5px 10px;border-bottom:1px solid #CCC}.typeahead .scrollable-dropdown .twitter-typeahead .tt-menu{max-height:150px;overflow-y:auto}.bootstrap-maxlength{margin-top:.5rem} \ No newline at end of file diff --git a/assets/css/plugins/forms/form-inputs-groups.css b/assets/css/plugins/forms/form-inputs-groups.css new file mode 100644 index 0000000..d4c7cfa --- /dev/null +++ b/assets/css/plugins/forms/form-inputs-groups.css @@ -0,0 +1,22 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +/* For Input Group TouchPin */ +#touchspin .input-group.bootstrap-touchspin .input-group-prepend, #touchspin .input-group.bootstrap-touchspin .input-group-append { + display: block; } + +/* For Input Group TouchPin */ +.segmented-buttons-with-dropdown .input-group .form-control, .buttons-with-dropdown .input-group .form-control { + height: 3rem; } + +.bootstrap-touchspin.touchspin-with-icon .input-group-append .input-group-text i { + font-size: 1.25rem; } + +.bootstrap-touchspin-spinners .touchspin-spinners-wrapper .input-group .touchspin, .bootstrap-touchspin-spinners .touchspin-spinners-wrapper .input-group .touchspin-stop-mousewheel { + height: calc(calc(1.25em + 1.4rem)-0.05rem + 2.2px); } + +.bootstrap-touchspin-spinners .touchspin-spinners-wrapper .input-group.touchspin-with-icon .input-group-text.bootstrap-touchspin-postfix { + padding: 0.85rem 1rem; } + +.bootstrap-touchspin-spinners .touchspin-spinners-wrapper .default-height .input-group.touchspin-vertical { + height: calc(2.9rem + 2px); } diff --git a/assets/css/plugins/forms/form-inputs-groups.min.css b/assets/css/plugins/forms/form-inputs-groups.min.css new file mode 100644 index 0000000..57bbf87 --- /dev/null +++ b/assets/css/plugins/forms/form-inputs-groups.min.css @@ -0,0 +1 @@ +#touchspin .input-group.bootstrap-touchspin .input-group-append,#touchspin .input-group.bootstrap-touchspin .input-group-prepend{display:block}.buttons-with-dropdown .input-group .form-control,.segmented-buttons-with-dropdown .input-group .form-control{height:3rem}.bootstrap-touchspin.touchspin-with-icon .input-group-append .input-group-text i{font-size:1.25rem}.bootstrap-touchspin-spinners .touchspin-spinners-wrapper .input-group .touchspin,.bootstrap-touchspin-spinners .touchspin-spinners-wrapper .input-group .touchspin-stop-mousewheel{height:calc(calc(1.25em + 1.4rem) -.05rem + 2.2px)}.bootstrap-touchspin-spinners .touchspin-spinners-wrapper .input-group.touchspin-with-icon .input-group-text.bootstrap-touchspin-postfix{padding:.85rem 1rem}.bootstrap-touchspin-spinners .touchspin-spinners-wrapper .default-height .input-group.touchspin-vertical{height:calc(2.9rem + 2px)} \ No newline at end of file diff --git a/assets/css/plugins/forms/validation/form-validation.css b/assets/css/plugins/forms/validation/form-validation.css new file mode 100644 index 0000000..df13aad --- /dev/null +++ b/assets/css/plugins/forms/validation/form-validation.css @@ -0,0 +1,21 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.form-group.issue .help-block, .form-group.issue .help-inline, .form-group.error .help-block, .form-group.error .help-inline { + color: #ea5455; } + +.form-group.issue input, .form-group.issue select, .form-group.issue textarea, .form-group.error input, .form-group.error select, .form-group.error textarea { + border-color: #ea5455; } + +.form-group.issue input:focus, .form-group.issue select:focus, .form-group.issue textarea:focus, .form-group.error input:focus, .form-group.error select:focus, .form-group.error textarea:focus { + border-color: #ea5455; + -webkit-box-shadow: 0 3 10px 0 #ea5455; + -moz-box-shadow: 0 3 10px 0 #ea5455; + box-shadow: 0 3 10px 0 #ea5455; } + +.form-group .help-block ul { + padding-left: 0; } + .form-group .help-block ul li { + list-style-type: none; + font-size: 0.875rem; + padding-top: 0.2rem; } diff --git a/assets/css/plugins/forms/validation/form-validation.min.css b/assets/css/plugins/forms/validation/form-validation.min.css new file mode 100644 index 0000000..bf8cf04 --- /dev/null +++ b/assets/css/plugins/forms/validation/form-validation.min.css @@ -0,0 +1 @@ +.form-group.error .help-block,.form-group.error .help-inline,.form-group.issue .help-block,.form-group.issue .help-inline{color:#EA5455}.form-group.error input,.form-group.error select,.form-group.error textarea,.form-group.issue input,.form-group.issue select,.form-group.issue textarea{border-color:#EA5455}.form-group.error input:focus,.form-group.error select:focus,.form-group.error textarea:focus,.form-group.issue input:focus,.form-group.issue select:focus,.form-group.issue textarea:focus{border-color:#EA5455;box-shadow:0 3 10px 0 #EA5455}.form-group .help-block ul{padding-left:0}.form-group .help-block ul li{list-style-type:none;font-size:.875rem;padding-top:.2rem} \ No newline at end of file diff --git a/assets/css/plugins/forms/wizard.css b/assets/css/plugins/forms/wizard.css new file mode 100644 index 0000000..176adff --- /dev/null +++ b/assets/css/plugins/forms/wizard.css @@ -0,0 +1,210 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.app-content .wizard { + width: 100%; } + .app-content .wizard .content { + margin-left: 0 !important; } + .app-content .wizard > .steps { + position: relative; + display: block; + width: 100%; } + .app-content .wizard > .steps .current-info { + position: absolute; + left: -99999px; } + .app-content .wizard > .steps > ul { + display: table; + width: 100%; + table-layout: fixed; + margin: 0; + padding: 0; + list-style: none; } + .app-content .wizard > .steps > ul > li { + display: table-cell; + width: auto; + vertical-align: top; + text-align: center; + position: relative; } + .app-content .wizard > .steps > ul > li a { + position: relative; + padding-top: 52px; + margin-top: 20px; + margin-bottom: 20px; + display: block; } + .app-content .wizard > .steps > ul > li:before { + content: ''; + display: block; + position: absolute; + z-index: 9; + left: 0; } + .app-content .wizard > .steps > ul > li:after { + content: ''; + display: block; + position: absolute; + z-index: 9; + right: 0; } + .app-content .wizard > .steps > ul > li:last-child:after { + content: none; } + .app-content .wizard > .steps > ul > li.current > a { + color: #3a50dc; + cursor: default; } + .app-content .wizard > .steps > ul > li.current .step { + border-color: #3a50dc; + background-color: #3a50dc; + color: #fff; } + .app-content .wizard > .steps > ul > li.disabled a { + color: #636363; + cursor: default; } + .app-content .wizard > .steps > ul > li.disabled a:hover { + color: #636363; + cursor: default; } + .app-content .wizard > .steps > ul > li.disabled a:focus { + color: #636363; + cursor: default; } + .app-content .wizard > .steps > ul > li.disabled .step { + color: #b8c2cc; } + .app-content .wizard > .steps > ul > li.done a { + color: #636363; } + .app-content .wizard > .steps > ul > li.done a:hover { + color: #636363; } + .app-content .wizard > .steps > ul > li.done a:focus { + color: #636363; } + .app-content .wizard > .steps > ul > li.done .step { + background-color: #fff; + border-color: #3a50dc; + color: #b8c2cc; } + .app-content .wizard > .steps > ul > li.done:last-child .step { + background-color: #3a50dc; + border-color: #3a50dc; + color: #fff; } + .app-content .wizard > .steps > ul > li.error > a { + color: #ea5455; } + .app-content .wizard > .steps > ul > li.error .step { + border-color: #ea5455; + color: #fff; + background-color: #ea5455; } + .app-content .wizard > .steps .step { + background-color: #fff; + display: inline-block; + position: absolute; + top: 0; + left: 50%; + margin-left: -24px; + z-index: 10; + text-align: center; } + .app-content .wizard > .steps .step i { + position: relative; + top: 2px; } + .app-content .wizard > .content { + position: relative; + width: auto; + padding: 0; + margin: 0; } + .app-content .wizard > .content > .title { + position: absolute; + left: -99999px; } + .app-content .wizard > .content > .body { + padding: 0 20px; } + .app-content .wizard > .content > iframe { + border: 0 none; + width: 100%; + height: 100%; } + .app-content .wizard > .actions { + position: relative; + display: block; + text-align: right; + padding: 20px; + padding-top: 0; } + .app-content .wizard > .actions > ul { + list-style: none; + padding: 0; + margin: 0; } + .app-content .wizard > .actions > ul:after { + content: ''; + display: table; + clear: both; } + .app-content .wizard > .actions > ul > li { + float: left; } + .app-content .wizard > .actions > ul > li + li { + margin-left: 10px; + float: right; } + .app-content .wizard > .actions > ul > li > a { + background: #3a50dc; + color: #fff; + display: block; + padding: 7px 12px; + border-radius: 0.42rem; + border: 1px solid transparent; } + .app-content .wizard > .actions > ul > li > a:hover { + -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.05) inset; + box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.05) inset; } + .app-content .wizard > .actions > ul > li > a:focus { + -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.05) inset; + box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.05) inset; } + .app-content .wizard > .actions > ul > li > a:active { + -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.1) inset; + box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.1) inset; } + .app-content .wizard > .actions > ul > li > a[href="#previous"] { + background-color: #3a50dc; + color: #fff; + border-radius: 0.42rem; } + .app-content .wizard > .actions > ul > li > a[href="#previous"]:hover { + -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.02) inset; + box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.02) inset; } + .app-content .wizard > .actions > ul > li > a[href="#previous"]:focus { + -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.02) inset; + box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.02) inset; } + .app-content .wizard > .actions > ul > li > a[href="#previous"]:active { + -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.04) inset; + box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.04) inset; } + .app-content .wizard > .actions > ul > li.disabled > a { + color: #fff; } + .app-content .wizard > .actions > ul > li.disabled > a:hover { + color: #fff; } + .app-content .wizard > .actions > ul > li.disabled > a:focus { + color: #fff; } + .app-content .wizard > .actions > ul > li.disabled > a[href="#previous"] { + -webkit-box-shadow: none; + box-shadow: none; } + .app-content .wizard > .actions > ul > li.disabled > a[href="#previous"]:hover { + -webkit-box-shadow: none; + box-shadow: none; } + .app-content .wizard > .actions > ul > li.disabled > a[href="#previous"]:focus { + -webkit-box-shadow: none; + box-shadow: none; } + .app-content .wizard.wizard-circle > .steps > ul > li:before, .app-content .wizard.wizard-circle > .steps > ul > li:after { + top: 43px; + width: 50%; + height: 3px; + background-color: #3a50dc; } + .app-content .wizard.wizard-circle > .steps > ul > li.current:after { + background-color: transparent; } + .app-content .wizard.wizard-circle > .steps > ul > li.current ~ li:before { + background-color: transparent; } + .app-content .wizard.wizard-circle > .steps > ul > li.current ~ li:after { + background-color: transparent; } + .app-content .wizard.wizard-circle > .steps .step { + width: 50px; + height: 50px; + line-height: 3rem; + border: 3px solid #b8c2cc; + font-size: 1.5rem; + font-weight: 500; + border-radius: 50%; } + +@media (max-width: 768px) { + .app-content .wizard > .steps > ul { + margin-bottom: 20px; } + .app-content .wizard > .steps > ul > li { + display: block; + float: left; + width: 33%; } + .app-content .wizard > .steps > ul > li > a { + margin-bottom: 0; } + .app-content .wizard > .steps > ul > li:last-child:after { + content: ''; + background-color: #3a50dc; } } + +@media (max-width: 480px) { + .app-content .wizard > .steps > ul > li.current:after { + background-color: #3a50dc; } } diff --git a/assets/css/plugins/forms/wizard.min.css b/assets/css/plugins/forms/wizard.min.css new file mode 100644 index 0000000..c785cfe --- /dev/null +++ b/assets/css/plugins/forms/wizard.min.css @@ -0,0 +1 @@ +.app-content .wizard>.steps>ul>li:after,.app-content .wizard>.steps>ul>li:before{content:'';z-index:9;display:block;position:absolute}.app-content .wizard{width:100%}.app-content .wizard .content{margin-left:0!important}.app-content .wizard>.steps{position:relative;display:block;width:100%}.app-content .wizard>.steps .current-info{position:absolute;left:-99999px}.app-content .wizard>.steps>ul{display:table;width:100%;table-layout:fixed;margin:0;padding:0;list-style:none}.app-content .wizard>.steps>ul>li{display:table-cell;width:auto;vertical-align:top;text-align:center;position:relative}.app-content .wizard>.steps>ul>li a{position:relative;padding-top:52px;margin-top:20px;margin-bottom:20px;display:block}.app-content .wizard>.steps>ul>li:before{left:0}.app-content .wizard>.steps>ul>li:after{right:0}.app-content .wizard>.steps>ul>li:last-child:after{content:none}.app-content .wizard>.steps>ul>li.current>a{color:#7367F0;cursor:default}.app-content .wizard>.steps>ul>li.current .step{border-color:#7367F0;background-color:#7367F0;color:#FFF}.app-content .wizard>.steps>ul>li.disabled a,.app-content .wizard>.steps>ul>li.disabled a:focus,.app-content .wizard>.steps>ul>li.disabled a:hover{color:#636363;cursor:default}.app-content .wizard>.steps>ul>li.disabled .step{color:#B8C2CC}.app-content .wizard>.steps>ul>li.done a,.app-content .wizard>.steps>ul>li.done a:focus,.app-content .wizard>.steps>ul>li.done a:hover{color:#636363}.app-content .wizard>.steps>ul>li.done .step{background-color:#FFF;border-color:#7367F0;color:#B8C2CC}.app-content .wizard>.steps>ul>li.done:last-child .step{background-color:#7367F0;border-color:#7367F0;color:#FFF}.app-content .wizard>.steps>ul>li.error>a{color:#EA5455}.app-content .wizard>.steps>ul>li.error .step{border-color:#EA5455;color:#FFF;background-color:#EA5455}.app-content .wizard>.steps .step{background-color:#FFF;display:inline-block;position:absolute;top:0;left:50%;margin-left:-24px;z-index:10;text-align:center}.app-content .wizard>.steps .step i{position:relative;top:2px}.app-content .wizard>.content{position:relative;width:auto;padding:0;margin:0}.app-content .wizard>.content>.title{position:absolute;left:-99999px}.app-content .wizard>.content>.body{padding:0 20px}.app-content .wizard>.content>iframe{border:0;width:100%;height:100%}.app-content .wizard>.actions{position:relative;display:block;text-align:right;padding:0 20px 20px}.app-content .wizard>.actions>ul{list-style:none;padding:0;margin:0}.app-content .wizard>.actions>ul:after{content:'';display:table;clear:both}.app-content .wizard>.actions>ul>li{float:left}.app-content .wizard>.actions>ul>li+li{margin-left:10px;float:right}.app-content .wizard>.actions>ul>li>a{background:#7367F0;color:#FFF;display:block;padding:7px 12px;border-radius:.42rem;border:1px solid transparent}.app-content .wizard>.actions>ul>li>a:focus,.app-content .wizard>.actions>ul>li>a:hover{box-shadow:0 0 0 100px rgba(0,0,0,.05) inset}.app-content .wizard>.actions>ul>li>a:active{box-shadow:0 0 0 100px rgba(0,0,0,.1) inset}.app-content .wizard>.actions>ul>li>a[href='#previous']{background-color:#7367F0;color:#FFF;border-radius:.42rem}.app-content .wizard>.actions>ul>li>a[href='#previous']:focus,.app-content .wizard>.actions>ul>li>a[href='#previous']:hover{box-shadow:0 0 0 100px rgba(0,0,0,.02) inset}.app-content .wizard>.actions>ul>li>a[href='#previous']:active{box-shadow:0 0 0 100px rgba(0,0,0,.04) inset}.app-content .wizard>.actions>ul>li.disabled>a,.app-content .wizard>.actions>ul>li.disabled>a:focus,.app-content .wizard>.actions>ul>li.disabled>a:hover{color:#FFF}.app-content .wizard>.actions>ul>li.disabled>a[href='#previous'],.app-content .wizard>.actions>ul>li.disabled>a[href='#previous']:focus,.app-content .wizard>.actions>ul>li.disabled>a[href='#previous']:hover{box-shadow:none}.app-content .wizard.wizard-circle>.steps>ul>li:after,.app-content .wizard.wizard-circle>.steps>ul>li:before{top:43px;width:50%;height:3px;background-color:#7367F0}.app-content .wizard.wizard-circle>.steps>ul>li.current:after,.app-content .wizard.wizard-circle>.steps>ul>li.current~li:after,.app-content .wizard.wizard-circle>.steps>ul>li.current~li:before{background-color:transparent}.app-content .wizard.wizard-circle>.steps .step{width:50px;height:50px;line-height:3rem;border:3px solid #B8C2CC;font-size:1.5rem;font-weight:500;border-radius:50%}@media (max-width:768px){.app-content .wizard>.steps>ul{margin-bottom:20px}.app-content .wizard>.steps>ul>li{display:block;float:left;width:33%}.app-content .wizard>.steps>ul>li>a{margin-bottom:0}.app-content .wizard>.steps>ul>li:last-child:after{content:'';background-color:#7367F0}}@media (max-width:480px){.app-content .wizard>.steps>ul>li.current:after{background-color:#7367F0}} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-beat.css b/assets/css/plugins/loaders/animations/ball-beat.css new file mode 100644 index 0000000..af54906 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-beat.css @@ -0,0 +1,22 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-beat { + 50% { + opacity: 0.2; + transform: scale(0.75); } + 100% { + opacity: 1; + transform: scale(1); } } + +.ball-beat > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + animation: ball-beat 0.7s 0s infinite linear; } + .ball-beat > div:nth-child(2n-1) { + animation-delay: -0.35s !important; } diff --git a/assets/css/plugins/loaders/animations/ball-beat.min.css b/assets/css/plugins/loaders/animations/ball-beat.min.css new file mode 100644 index 0000000..67e3bb8 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-beat.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-beat{50%{opacity:.2;-webkit-transform:scale(.75);transform:scale(.75)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes ball-beat{50%{opacity:.2;-webkit-transform:scale(.75);transform:scale(.75)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.ball-beat>div{background-color:#B8C2CC;width:15px;height:15px;border-radius:100%;margin:2px;display:inline-block;-webkit-animation:ball-beat .7s 0s infinite linear;animation:ball-beat .7s 0s infinite linear}.ball-beat>div:nth-child(2n-1){-webkit-animation-delay:-.35s!important;animation-delay:-.35s!important} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-clip-rotate-multiple.css b/assets/css/plugins/loaders/animations/ball-clip-rotate-multiple.css new file mode 100644 index 0000000..fb397d1 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-clip-rotate-multiple.css @@ -0,0 +1,34 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes rotate { + 0% { + transform: rotate(0deg) scale(1); } + 50% { + transform: rotate(180deg) scale(0.6); } + 100% { + transform: rotate(360deg) scale(1); } } + +.ball-clip-rotate-multiple { + position: relative; } + .ball-clip-rotate-multiple > div { + animation-fill-mode: both; + position: absolute; + left: -20px; + top: -20px; + border: 2px solid #b8c2cc; + border-bottom-color: transparent; + border-top-color: transparent; + border-radius: 100%; + height: 35px; + width: 35px; + animation: rotate 1s 0s ease-in-out infinite; } + .ball-clip-rotate-multiple > div:last-child { + display: inline-block; + top: -10px; + left: -10px; + width: 15px; + height: 15px; + animation-duration: 0.5s; + border-color: #b8c2cc transparent #b8c2cc transparent; + animation-direction: reverse; } diff --git a/assets/css/plugins/loaders/animations/ball-clip-rotate-multiple.min.css b/assets/css/plugins/loaders/animations/ball-clip-rotate-multiple.min.css new file mode 100644 index 0000000..1e2b834 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-clip-rotate-multiple.min.css @@ -0,0 +1 @@ +@-webkit-keyframes rotate{0%{-webkit-transform:rotate(0) scale(1);transform:rotate(0) scale(1)}50%{-webkit-transform:rotate(180deg) scale(.6);transform:rotate(180deg) scale(.6)}100%{-webkit-transform:rotate(360deg) scale(1);transform:rotate(360deg) scale(1)}}@keyframes rotate{0%{-webkit-transform:rotate(0) scale(1);transform:rotate(0) scale(1)}50%{-webkit-transform:rotate(180deg) scale(.6);transform:rotate(180deg) scale(.6)}100%{-webkit-transform:rotate(360deg) scale(1);transform:rotate(360deg) scale(1)}}.ball-clip-rotate-multiple{position:relative}.ball-clip-rotate-multiple>div{position:absolute;left:-20px;top:-20px;border:2px solid #B8C2CC;border-bottom-color:transparent;border-top-color:transparent;border-radius:100%;height:35px;width:35px;-webkit-animation:rotate 1s 0s ease-in-out infinite;animation:rotate 1s 0s ease-in-out infinite}.ball-clip-rotate-multiple>div:last-child{display:inline-block;top:-10px;left:-10px;width:15px;height:15px;-webkit-animation-duration:.5s;animation-duration:.5s;border-color:#B8C2CC transparent;animation-direction:reverse} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-clip-rotate-pulse.css b/assets/css/plugins/loaders/animations/ball-clip-rotate-pulse.css new file mode 100644 index 0000000..4072a49 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-clip-rotate-pulse.css @@ -0,0 +1,45 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes rotate { + 0% { + transform: rotate(0deg) scale(1); } + 50% { + transform: rotate(180deg) scale(0.6); } + 100% { + transform: rotate(360deg) scale(1); } } + +@keyframes scale { + 30% { + transform: scale(0.3); } + 100% { + transform: scale(1); } } + +.ball-clip-rotate-pulse { + position: relative; + transform: translateY(-15px); } + .ball-clip-rotate-pulse > div { + animation-fill-mode: both; + position: absolute; + top: 0px; + left: 0px; + border-radius: 100%; } + .ball-clip-rotate-pulse > div:first-child { + background: #b8c2cc; + height: 16px; + width: 16px; + top: 7px; + left: -7px; + animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; } + .ball-clip-rotate-pulse > div:last-child { + position: absolute; + border: 2px solid #b8c2cc; + width: 30px; + height: 30px; + left: -16px; + top: -2px; + background: transparent; + border: 2px solid; + border-color: #b8c2cc transparent #b8c2cc transparent; + animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; + animation-duration: 1s; } diff --git a/assets/css/plugins/loaders/animations/ball-clip-rotate-pulse.min.css b/assets/css/plugins/loaders/animations/ball-clip-rotate-pulse.min.css new file mode 100644 index 0000000..8a06629 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-clip-rotate-pulse.min.css @@ -0,0 +1 @@ +@-webkit-keyframes rotate{0%{-webkit-transform:rotate(0) scale(1);transform:rotate(0) scale(1)}50%{-webkit-transform:rotate(180deg) scale(.6);transform:rotate(180deg) scale(.6)}100%{-webkit-transform:rotate(360deg) scale(1);transform:rotate(360deg) scale(1)}}@keyframes rotate{0%{-webkit-transform:rotate(0) scale(1);transform:rotate(0) scale(1)}50%{-webkit-transform:rotate(180deg) scale(.6);transform:rotate(180deg) scale(.6)}100%{-webkit-transform:rotate(360deg) scale(1);transform:rotate(360deg) scale(1)}}@-webkit-keyframes scale{30%{-webkit-transform:scale(.3);transform:scale(.3)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes scale{30%{-webkit-transform:scale(.3);transform:scale(.3)}100%{-webkit-transform:scale(1);transform:scale(1)}}.ball-clip-rotate-pulse{position:relative;-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}.ball-clip-rotate-pulse>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;top:0;left:0;border-radius:100%}.ball-clip-rotate-pulse>div:first-child{background:#B8C2CC;height:16px;width:16px;top:7px;left:-7px;-webkit-animation:scale 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;animation:scale 1s 0s cubic-bezier(.09,.57,.49,.9) infinite}.ball-clip-rotate-pulse>div:last-child{position:absolute;width:30px;height:30px;left:-16px;top:-2px;background:0 0;border:2px solid;border-color:#B8C2CC transparent;-webkit-animation:rotate 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;animation:rotate 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;-webkit-animation-duration:1s;animation-duration:1s} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-clip-rotate.css b/assets/css/plugins/loaders/animations/ball-clip-rotate.css new file mode 100644 index 0000000..3826a2f --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-clip-rotate.css @@ -0,0 +1,25 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes rotate { + 0% { + transform: rotate(0deg) scale(1); } + 50% { + transform: rotate(180deg) scale(0.6); } + 100% { + transform: rotate(360deg) scale(1); } } + +.ball-clip-rotate > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + border: 2px solid #b8c2cc; + border-bottom-color: transparent; + height: 25px; + width: 25px; + background: transparent !important; + display: inline-block; + animation: rotate 0.75s 0s linear infinite; } diff --git a/assets/css/plugins/loaders/animations/ball-clip-rotate.min.css b/assets/css/plugins/loaders/animations/ball-clip-rotate.min.css new file mode 100644 index 0000000..190edb6 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-clip-rotate.min.css @@ -0,0 +1 @@ +@-webkit-keyframes rotate{0%{-webkit-transform:rotate(0) scale(1);transform:rotate(0) scale(1)}50%{-webkit-transform:rotate(180deg) scale(.6);transform:rotate(180deg) scale(.6)}100%{-webkit-transform:rotate(360deg) scale(1);transform:rotate(360deg) scale(1)}}@keyframes rotate{0%{-webkit-transform:rotate(0) scale(1);transform:rotate(0) scale(1)}50%{-webkit-transform:rotate(180deg) scale(.6);transform:rotate(180deg) scale(.6)}100%{-webkit-transform:rotate(360deg) scale(1);transform:rotate(360deg) scale(1)}}.ball-clip-rotate>div{border-radius:100%;margin:2px;border:2px solid #B8C2CC;border-bottom-color:transparent;height:25px;width:25px;background:0 0!important;display:inline-block;-webkit-animation:rotate .75s 0s linear infinite;animation:rotate .75s 0s linear infinite} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-grid-beat.css b/assets/css/plugins/loaders/animations/ball-grid-beat.css new file mode 100644 index 0000000..11aa748 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-grid-beat.css @@ -0,0 +1,50 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-grid-beat { + 50% { + opacity: 0.7; } + 100% { + opacity: 1; } } + +.ball-grid-beat { + width: 57px; } + .ball-grid-beat > div:nth-child(1) { + animation-delay: 0.13s; + animation-duration: 1.32s; } + .ball-grid-beat > div:nth-child(2) { + animation-delay: -0.11s; + animation-duration: 1.17s; } + .ball-grid-beat > div:nth-child(3) { + animation-delay: 0.09s; + animation-duration: 1.19s; } + .ball-grid-beat > div:nth-child(4) { + animation-delay: -0.13s; + animation-duration: 1.32s; } + .ball-grid-beat > div:nth-child(5) { + animation-delay: 0.76s; + animation-duration: 0.66s; } + .ball-grid-beat > div:nth-child(6) { + animation-delay: 0.69s; + animation-duration: 1.34s; } + .ball-grid-beat > div:nth-child(7) { + animation-delay: 0.17s; + animation-duration: 1.47s; } + .ball-grid-beat > div:nth-child(8) { + animation-delay: 0.47s; + animation-duration: 0.81s; } + .ball-grid-beat > div:nth-child(9) { + animation-delay: -0.19s; + animation-duration: 1.42s; } + .ball-grid-beat > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + float: left; + animation-name: ball-grid-beat; + animation-iteration-count: infinite; + animation-delay: 0; } diff --git a/assets/css/plugins/loaders/animations/ball-grid-beat.min.css b/assets/css/plugins/loaders/animations/ball-grid-beat.min.css new file mode 100644 index 0000000..1a6d062 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-grid-beat.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-grid-beat{50%{opacity:.7}100%{opacity:1}}@keyframes ball-grid-beat{50%{opacity:.7}100%{opacity:1}}.ball-grid-beat{width:57px}.ball-grid-beat>div:nth-child(1){-webkit-animation-delay:.52s;animation-delay:.52s;-webkit-animation-duration:.67s;animation-duration:.67s}.ball-grid-beat>div:nth-child(2){-webkit-animation-delay:.7s;animation-delay:.7s;-webkit-animation-duration:1.36s;animation-duration:1.36s}.ball-grid-beat>div:nth-child(3){-webkit-animation-delay:.44s;animation-delay:.44s;-webkit-animation-duration:.97s;animation-duration:.97s}.ball-grid-beat>div:nth-child(4){-webkit-animation-delay:.21s;animation-delay:.21s;-webkit-animation-duration:1.11s;animation-duration:1.11s}.ball-grid-beat>div:nth-child(5){-webkit-animation-delay:.28s;animation-delay:.28s;-webkit-animation-duration:.99s;animation-duration:.99s}.ball-grid-beat>div:nth-child(6){-webkit-animation-delay:.59s;animation-delay:.59s;-webkit-animation-duration:1.33s;animation-duration:1.33s}.ball-grid-beat>div:nth-child(7){-webkit-animation-delay:.38s;animation-delay:.38s;-webkit-animation-duration:.67s;animation-duration:.67s}.ball-grid-beat>div:nth-child(8){-webkit-animation-delay:.18s;animation-delay:.18s;-webkit-animation-duration:1.34s;animation-duration:1.34s}.ball-grid-beat>div:nth-child(9){-webkit-animation-delay:.15s;animation-delay:.15s;-webkit-animation-duration:1.55s;animation-duration:1.55s}.ball-grid-beat>div{background-color:#B8C2CC;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;float:left;-webkit-animation-name:ball-grid-beat;animation-name:ball-grid-beat;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-delay:0;animation-delay:0} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-grid-pulse.css b/assets/css/plugins/loaders/animations/ball-grid-pulse.css new file mode 100644 index 0000000..d7336eb --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-grid-pulse.css @@ -0,0 +1,54 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-grid-pulse { + 0% { + transform: scale(1); } + 50% { + transform: scale(0.5); + opacity: 0.7; } + 100% { + transform: scale(1); + opacity: 1; } } + +.ball-grid-pulse { + width: 57px; } + .ball-grid-pulse > div:nth-child(1) { + animation-delay: 0.21s; + animation-duration: 0.68s; } + .ball-grid-pulse > div:nth-child(2) { + animation-delay: 0.74s; + animation-duration: 0.61s; } + .ball-grid-pulse > div:nth-child(3) { + animation-delay: 0.49s; + animation-duration: 0.92s; } + .ball-grid-pulse > div:nth-child(4) { + animation-delay: 0.73s; + animation-duration: 1.55s; } + .ball-grid-pulse > div:nth-child(5) { + animation-delay: -0.12s; + animation-duration: 1.49s; } + .ball-grid-pulse > div:nth-child(6) { + animation-delay: 0.09s; + animation-duration: 0.68s; } + .ball-grid-pulse > div:nth-child(7) { + animation-delay: -0.16s; + animation-duration: 1.44s; } + .ball-grid-pulse > div:nth-child(8) { + animation-delay: 0.63s; + animation-duration: 1.11s; } + .ball-grid-pulse > div:nth-child(9) { + animation-delay: -0.09s; + animation-duration: 0.65s; } + .ball-grid-pulse > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + float: left; + animation-name: ball-grid-pulse; + animation-iteration-count: infinite; + animation-delay: 0; } diff --git a/assets/css/plugins/loaders/animations/ball-grid-pulse.min.css b/assets/css/plugins/loaders/animations/ball-grid-pulse.min.css new file mode 100644 index 0000000..c850089 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-grid-pulse.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-grid-pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.5);transform:scale(.5);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes ball-grid-pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.5);transform:scale(.5);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.ball-grid-pulse{width:57px}.ball-grid-pulse>div:nth-child(1){-webkit-animation-delay:.44s;animation-delay:.44s;-webkit-animation-duration:1.43s;animation-duration:1.43s}.ball-grid-pulse>div:nth-child(2){-webkit-animation-delay:-10ms;animation-delay:-10ms;-webkit-animation-duration:1.42s;animation-duration:1.42s}.ball-grid-pulse>div:nth-child(3){-webkit-animation-delay:.3s;animation-delay:.3s;-webkit-animation-duration:.87s;animation-duration:.87s}.ball-grid-pulse>div:nth-child(4){-webkit-animation-delay:.19s;animation-delay:.19s;-webkit-animation-duration:.92s;animation-duration:.92s}.ball-grid-pulse>div:nth-child(5){-webkit-animation-delay:.42s;animation-delay:.42s;-webkit-animation-duration:1.02s;animation-duration:1.02s}.ball-grid-pulse>div:nth-child(6){-webkit-animation-delay:.67s;animation-delay:.67s;-webkit-animation-duration:.95s;animation-duration:.95s}.ball-grid-pulse>div:nth-child(7){-webkit-animation-delay:.36s;animation-delay:.36s;-webkit-animation-duration:1.36s;animation-duration:1.36s}.ball-grid-pulse>div:nth-child(8){-webkit-animation-delay:.44s;animation-delay:.44s;-webkit-animation-duration:.83s;animation-duration:.83s}.ball-grid-pulse>div:nth-child(9){-webkit-animation-delay:-.12s;animation-delay:-.12s;-webkit-animation-duration:1.36s;animation-duration:1.36s}.ball-grid-pulse>div{background-color:#B8C2CC;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;float:left;-webkit-animation-name:ball-grid-pulse;animation-name:ball-grid-pulse;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-delay:0;animation-delay:0} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-pulse-rise.css b/assets/css/plugins/loaders/animations/ball-pulse-rise.css new file mode 100644 index 0000000..da7368e --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-pulse-rise.css @@ -0,0 +1,45 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-pulse-rise-even { + 0% { + transform: scale(1.1); } + 25% { + transform: translateY(-30px); } + 50% { + transform: scale(0.4); } + 75% { + transform: translateY(30px); } + 100% { + transform: translateY(0); + transform: scale(1); } } + +@keyframes ball-pulse-rise-odd { + 0% { + transform: scale(0.4); } + 25% { + transform: translateY(30px); } + 50% { + transform: scale(1.1); } + 75% { + transform: translateY(-30px); } + 100% { + transform: translateY(0); + transform: scale(0.75); } } + +.ball-pulse-rise > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + animation-duration: 1s; + animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6); + animation-iteration-count: infinite; + animation-delay: 0; } + .ball-pulse-rise > div:nth-child(2n) { + animation-name: ball-pulse-rise-even; } + .ball-pulse-rise > div:nth-child(2n-1) { + animation-name: ball-pulse-rise-odd; } diff --git a/assets/css/plugins/loaders/animations/ball-pulse-rise.min.css b/assets/css/plugins/loaders/animations/ball-pulse-rise.min.css new file mode 100644 index 0000000..e608e74 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-pulse-rise.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-pulse-rise-even{0%{-webkit-transform:scale(1.1);transform:scale(1.1)}25%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}50%{-webkit-transform:scale(.4);transform:scale(.4)}75%{-webkit-transform:translateY(30px);transform:translateY(30px)}100%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transform:scale(1);transform:scale(1)}}@keyframes ball-pulse-rise-even{0%{-webkit-transform:scale(1.1);transform:scale(1.1)}25%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}50%{-webkit-transform:scale(.4);transform:scale(.4)}75%{-webkit-transform:translateY(30px);transform:translateY(30px)}100%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes ball-pulse-rise-odd{0%{-webkit-transform:scale(.4);transform:scale(.4)}25%{-webkit-transform:translateY(30px);transform:translateY(30px)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}75%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}100%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transform:scale(.75);transform:scale(.75)}}@keyframes ball-pulse-rise-odd{0%{-webkit-transform:scale(.4);transform:scale(.4)}25%{-webkit-transform:translateY(30px);transform:translateY(30px)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}75%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}100%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transform:scale(.75);transform:scale(.75)}}.ball-pulse-rise>div{background-color:#B8C2CC;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:cubic-bezier(.15,.46,.9,.6);animation-timing-function:cubic-bezier(.15,.46,.9,.6);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-delay:0;animation-delay:0}.ball-pulse-rise>div:nth-child(2n){-webkit-animation-name:ball-pulse-rise-even;animation-name:ball-pulse-rise-even}.ball-pulse-rise>div:nth-child(2n-1){-webkit-animation-name:ball-pulse-rise-odd;animation-name:ball-pulse-rise-odd} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-pulse-round.css b/assets/css/plugins/loaders/animations/ball-pulse-round.css new file mode 100644 index 0000000..259e79d --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-pulse-round.css @@ -0,0 +1,16 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-pulse-round { + 0%, 80%, 100% { + transform: scale(0); + -webkit-transform: scale(0); } + 40% { + transform: scale(1); + -webkit-transform: scale(1); } } + +.ball-pulse-round > div { + animation-fill-mode: both; + width: 10px; + height: 10px; + animation: ball-pulse-round 1.2s infinite ease-in-out; } diff --git a/assets/css/plugins/loaders/animations/ball-pulse-round.min.css b/assets/css/plugins/loaders/animations/ball-pulse-round.min.css new file mode 100644 index 0000000..047ff76 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-pulse-round.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-pulse-round{0%,100%,80%{transform:scale(0);-webkit-transform:scale(0)}40%{transform:scale(1);-webkit-transform:scale(1)}}@keyframes ball-pulse-round{0%,100%,80%{transform:scale(0);-webkit-transform:scale(0)}40%{transform:scale(1);-webkit-transform:scale(1)}}.ball-pulse-round>div{width:10px;height:10px;-webkit-animation:ball-pulse-round 1.2s infinite ease-in-out;animation:ball-pulse-round 1.2s infinite ease-in-out} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-pulse-sync.css b/assets/css/plugins/loaders/animations/ball-pulse-sync.css new file mode 100644 index 0000000..4e5cd17 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-pulse-sync.css @@ -0,0 +1,28 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-pulse-sync { + 33% { + transform: translateY(10px); } + 66% { + transform: translateY(-10px); } + 100% { + transform: translateY(0); } } + +.ball-pulse-sync > div:nth-child(1) { + animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out; } + +.ball-pulse-sync > div:nth-child(2) { + animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out; } + +.ball-pulse-sync > div:nth-child(3) { + animation: ball-pulse-sync 0.6s 0s infinite ease-in-out; } + +.ball-pulse-sync > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; } diff --git a/assets/css/plugins/loaders/animations/ball-pulse-sync.min.css b/assets/css/plugins/loaders/animations/ball-pulse-sync.min.css new file mode 100644 index 0000000..f241b7c --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-pulse-sync.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-pulse-sync{33%{-webkit-transform:translateY(10px);transform:translateY(10px)}66%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes ball-pulse-sync{33%{-webkit-transform:translateY(10px);transform:translateY(10px)}66%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.ball-pulse-sync>div:nth-child(1){-webkit-animation:ball-pulse-sync .6s -.14s infinite ease-in-out;animation:ball-pulse-sync .6s -.14s infinite ease-in-out}.ball-pulse-sync>div:nth-child(2){-webkit-animation:ball-pulse-sync .6s -70ms infinite ease-in-out;animation:ball-pulse-sync .6s -70ms infinite ease-in-out}.ball-pulse-sync>div:nth-child(3){-webkit-animation:ball-pulse-sync .6s 0s infinite ease-in-out;animation:ball-pulse-sync .6s 0s infinite ease-in-out}.ball-pulse-sync>div{background-color:#B8C2CC;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-pulse.css b/assets/css/plugins/loaders/animations/ball-pulse.css new file mode 100644 index 0000000..8002217 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-pulse.css @@ -0,0 +1,31 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes scale { + 0% { + transform: scale(1); + opacity: 1; } + 45% { + transform: scale(0.1); + opacity: 0.7; } + 80% { + transform: scale(1); + opacity: 1; } } + +.ball-pulse > div:nth-child(1) { + animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.ball-pulse > div:nth-child(2) { + animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.ball-pulse > div:nth-child(3) { + animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.ball-pulse > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; } diff --git a/assets/css/plugins/loaders/animations/ball-pulse.min.css b/assets/css/plugins/loaders/animations/ball-pulse.min.css new file mode 100644 index 0000000..1e2ce2b --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-pulse.min.css @@ -0,0 +1 @@ +@-webkit-keyframes scale{0%,80%{-webkit-transform:scale(1);transform:scale(1);opacity:1}45%{-webkit-transform:scale(.1);transform:scale(.1);opacity:.7}}@keyframes scale{0%,80%{-webkit-transform:scale(1);transform:scale(1);opacity:1}45%{-webkit-transform:scale(.1);transform:scale(.1);opacity:.7}}.ball-pulse>div:nth-child(1){-webkit-animation:scale .75s -.24s infinite cubic-bezier(.2,.68,.18,1.08);animation:scale .75s -.24s infinite cubic-bezier(.2,.68,.18,1.08)}.ball-pulse>div:nth-child(2){-webkit-animation:scale .75s -.12s infinite cubic-bezier(.2,.68,.18,1.08);animation:scale .75s -.12s infinite cubic-bezier(.2,.68,.18,1.08)}.ball-pulse>div:nth-child(3){-webkit-animation:scale .75s 0s infinite cubic-bezier(.2,.68,.18,1.08);animation:scale .75s 0s infinite cubic-bezier(.2,.68,.18,1.08)}.ball-pulse>div{background-color:#B8C2CC;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-rotate.css b/assets/css/plugins/loaders/animations/ball-rotate.css new file mode 100644 index 0000000..a4d066d --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-rotate.css @@ -0,0 +1,38 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes rotate { + 0% { + transform: rotate(0deg); } + 50% { + transform: rotate(180deg); } + 100% { + transform: rotate(360deg); } } + +.ball-rotate { + position: relative; } + .ball-rotate > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + position: relative; } + .ball-rotate > div:first-child { + animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite; } + .ball-rotate > div:before, .ball-rotate > div:after { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + content: ""; + position: absolute; + opacity: 0.8; } + .ball-rotate > div:before { + top: 0px; + left: -28px; } + .ball-rotate > div:after { + top: 0px; + left: 25px; } diff --git a/assets/css/plugins/loaders/animations/ball-rotate.min.css b/assets/css/plugins/loaders/animations/ball-rotate.min.css new file mode 100644 index 0000000..e74ea3a --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-rotate.min.css @@ -0,0 +1 @@ +.ball-rotate,.ball-rotate>div{position:relative}.ball-rotate>div,.ball-rotate>div:after,.ball-rotate>div:before{background-color:#B8C2CC;width:15px;height:15px;border-radius:100%;margin:2px}@-webkit-keyframes rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ball-rotate>div{-webkit-animation-fill-mode:both;animation-fill-mode:both}.ball-rotate>div:first-child{-webkit-animation:rotate 1s 0s cubic-bezier(.7,-.13,.22,.86) infinite;animation:rotate 1s 0s cubic-bezier(.7,-.13,.22,.86) infinite}.ball-rotate>div:after,.ball-rotate>div:before{content:'';position:absolute;opacity:.8}.ball-rotate>div:before{top:0;left:-28px}.ball-rotate>div:after{top:0;left:25px} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-scale-multiple.css b/assets/css/plugins/loaders/animations/ball-scale-multiple.css new file mode 100644 index 0000000..3544280 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-scale-multiple.css @@ -0,0 +1,33 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-scale-multiple { + 0% { + transform: scale(0); + opacity: 0; } + 5% { + opacity: 1; } + 100% { + transform: scale(1); + opacity: 0; } } + +.ball-scale-multiple { + position: relative; } + .ball-scale-multiple > div:nth-child(2) { + animation-delay: -0.4s; } + .ball-scale-multiple > div:nth-child(3) { + animation-delay: -0.2s; } + .ball-scale-multiple > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + position: absolute; + top: 0px; + opacity: 0; + margin: 0; + width: 60px; + height: 60px; + animation: ball-scale-multiple 1s 0s linear infinite; } diff --git a/assets/css/plugins/loaders/animations/ball-scale-multiple.min.css b/assets/css/plugins/loaders/animations/ball-scale-multiple.min.css new file mode 100644 index 0000000..f57a5c7 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-scale-multiple.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-scale-multiple{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}5%{opacity:1}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale-multiple{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}5%{opacity:1}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}.ball-scale-multiple{position:relative}.ball-scale-multiple>div:nth-child(2){-webkit-animation-delay:-.4s;animation-delay:-.4s}.ball-scale-multiple>div:nth-child(3){-webkit-animation-delay:-.2s;animation-delay:-.2s}.ball-scale-multiple>div{background-color:#B8C2CC;border-radius:100%;position:absolute;top:0;opacity:0;margin:0;width:60px;height:60px;-webkit-animation:ball-scale-multiple 1s 0s linear infinite;animation:ball-scale-multiple 1s 0s linear infinite} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-scale-random.css b/assets/css/plugins/loaders/animations/ball-scale-random.css new file mode 100644 index 0000000..ae7bce3 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-scale-random.css @@ -0,0 +1,44 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-scale { + 0% { + transform: scale(0); } + 100% { + transform: scale(1); + opacity: 0; } } + +.ball-scale > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + height: 60px; + width: 60px; + animation: ball-scale 1s 0s ease-in-out infinite; } + +.ball-scale-random { + width: 37px; + height: 40px; } + .ball-scale-random > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + position: absolute; + display: inline-block; + height: 30px; + width: 30px; + animation: ball-scale 1s 0s ease-in-out infinite; } + .ball-scale-random > div:nth-child(1) { + margin-left: -7px; + animation: ball-scale 1s 0.2s ease-in-out infinite; } + .ball-scale-random > div:nth-child(3) { + margin-left: -2px; + margin-top: 9px; + animation: ball-scale 1s 0.5s ease-in-out infinite; } diff --git a/assets/css/plugins/loaders/animations/ball-scale-random.min.css b/assets/css/plugins/loaders/animations/ball-scale-random.min.css new file mode 100644 index 0000000..414ed83 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-scale-random.min.css @@ -0,0 +1 @@ +.ball-scale-random>div,.ball-scale>div{background-color:#B8C2CC;border-radius:100%;margin:2px;display:inline-block}@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}.ball-scale>div{height:60px;width:60px;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}.ball-scale-random{width:37px;height:40px}.ball-scale-random>div{position:absolute;height:30px;width:30px;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}.ball-scale-random>div:nth-child(1){margin-left:-7px;-webkit-animation:ball-scale 1s .2s ease-in-out infinite;animation:ball-scale 1s .2s ease-in-out infinite}.ball-scale-random>div:nth-child(3){margin-left:-2px;margin-top:9px;-webkit-animation:ball-scale 1s .5s ease-in-out infinite;animation:ball-scale 1s .5s ease-in-out infinite} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-scale-ripple-multiple.css b/assets/css/plugins/loaders/animations/ball-scale-ripple-multiple.css new file mode 100644 index 0000000..0275331 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-scale-ripple-multiple.css @@ -0,0 +1,34 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-scale-ripple-multiple { + 0% { + transform: scale(0.1); + opacity: 1; } + 70% { + transform: scale(1); + opacity: 0.7; } + 100% { + opacity: 0.0; } } + +.ball-scale-ripple-multiple { + position: relative; + transform: translateY(-25px); } + .ball-scale-ripple-multiple > div:nth-child(0) { + animation-delay: -0.8s; } + .ball-scale-ripple-multiple > div:nth-child(1) { + animation-delay: -0.6s; } + .ball-scale-ripple-multiple > div:nth-child(2) { + animation-delay: -0.4s; } + .ball-scale-ripple-multiple > div:nth-child(3) { + animation-delay: -0.2s; } + .ball-scale-ripple-multiple > div { + animation-fill-mode: both; + position: absolute; + top: -2px; + left: -26px; + width: 50px; + height: 50px; + border-radius: 100%; + border: 2px solid #b8c2cc; + animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); } diff --git a/assets/css/plugins/loaders/animations/ball-scale-ripple-multiple.min.css b/assets/css/plugins/loaders/animations/ball-scale-ripple-multiple.min.css new file mode 100644 index 0000000..2de54f4 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-scale-ripple-multiple.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-scale-ripple-multiple{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}100%{opacity:0}}@keyframes ball-scale-ripple-multiple{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}100%{opacity:0}}.ball-scale-ripple-multiple{position:relative;-webkit-transform:translateY(-25px);-ms-transform:translateY(-25px);transform:translateY(-25px)}.ball-scale-ripple-multiple>div:nth-child(0){-webkit-animation-delay:-.8s;animation-delay:-.8s}.ball-scale-ripple-multiple>div:nth-child(1){-webkit-animation-delay:-.6s;animation-delay:-.6s}.ball-scale-ripple-multiple>div:nth-child(2){-webkit-animation-delay:-.4s;animation-delay:-.4s}.ball-scale-ripple-multiple>div:nth-child(3){-webkit-animation-delay:-.2s;animation-delay:-.2s}.ball-scale-ripple-multiple>div{position:absolute;top:-2px;left:-26px;width:50px;height:50px;border-radius:100%;border:2px solid #B8C2CC;-webkit-animation:ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(.21,.53,.56,.8);animation:ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(.21,.53,.56,.8)} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-scale-ripple.css b/assets/css/plugins/loaders/animations/ball-scale-ripple.css new file mode 100644 index 0000000..9e99ccc --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-scale-ripple.css @@ -0,0 +1,20 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-scale-ripple { + 0% { + transform: scale(0.1); + opacity: 1; } + 70% { + transform: scale(1); + opacity: 0.7; } + 100% { + opacity: 0.0; } } + +.ball-scale-ripple > div { + animation-fill-mode: both; + height: 50px; + width: 50px; + border-radius: 100%; + border: 2px solid #b8c2cc; + animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); } diff --git a/assets/css/plugins/loaders/animations/ball-scale-ripple.min.css b/assets/css/plugins/loaders/animations/ball-scale-ripple.min.css new file mode 100644 index 0000000..bf8e761 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-scale-ripple.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-scale-ripple{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}100%{opacity:0}}@keyframes ball-scale-ripple{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}100%{opacity:0}}.ball-scale-ripple>div{height:50px;width:50px;border-radius:100%;border:2px solid #B8C2CC;-webkit-animation:ball-scale-ripple 1s 0s infinite cubic-bezier(.21,.53,.56,.8);animation:ball-scale-ripple 1s 0s infinite cubic-bezier(.21,.53,.56,.8)} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-scale.css b/assets/css/plugins/loaders/animations/ball-scale.css new file mode 100644 index 0000000..22aeac5 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-scale.css @@ -0,0 +1,21 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-scale { + 0% { + transform: scale(0); } + 100% { + transform: scale(1); + opacity: 0; } } + +.ball-scale > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + height: 60px; + width: 60px; + animation: ball-scale 1s 0s ease-in-out infinite; } diff --git a/assets/css/plugins/loaders/animations/ball-scale.min.css b/assets/css/plugins/loaders/animations/ball-scale.min.css new file mode 100644 index 0000000..ef46f28 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-scale.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}.ball-scale>div{background-color:#B8C2CC;border-radius:100%;margin:2px;display:inline-block;height:60px;width:60px;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-spin-fade-loader.css b/assets/css/plugins/loaders/animations/ball-spin-fade-loader.css new file mode 100644 index 0000000..412bc9d --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-spin-fade-loader.css @@ -0,0 +1,55 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-spin-fade-loader { + 50% { + opacity: 0.3; + transform: scale(0.4); } + 100% { + opacity: 1; + transform: scale(1); } } + +.ball-spin-fade-loader { + position: relative; + top: -10px; + left: -10px; } + .ball-spin-fade-loader > div:nth-child(1) { + top: 25px; + left: 0; + animation: ball-spin-fade-loader 1s -0.96s infinite linear; } + .ball-spin-fade-loader > div:nth-child(2) { + top: 17.04545px; + left: 17.04545px; + animation: ball-spin-fade-loader 1s -0.84s infinite linear; } + .ball-spin-fade-loader > div:nth-child(3) { + top: 0; + left: 25px; + animation: ball-spin-fade-loader 1s -0.72s infinite linear; } + .ball-spin-fade-loader > div:nth-child(4) { + top: -17.04545px; + left: 17.04545px; + animation: ball-spin-fade-loader 1s -0.6s infinite linear; } + .ball-spin-fade-loader > div:nth-child(5) { + top: -25px; + left: 0; + animation: ball-spin-fade-loader 1s -0.48s infinite linear; } + .ball-spin-fade-loader > div:nth-child(6) { + top: -17.04545px; + left: -17.04545px; + animation: ball-spin-fade-loader 1s -0.36s infinite linear; } + .ball-spin-fade-loader > div:nth-child(7) { + top: 0; + left: -25px; + animation: ball-spin-fade-loader 1s -0.24s infinite linear; } + .ball-spin-fade-loader > div:nth-child(8) { + top: 17.04545px; + left: -17.04545px; + animation: ball-spin-fade-loader 1s -0.12s infinite linear; } + .ball-spin-fade-loader > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + position: absolute; } diff --git a/assets/css/plugins/loaders/animations/ball-spin-fade-loader.min.css b/assets/css/plugins/loaders/animations/ball-spin-fade-loader.min.css new file mode 100644 index 0000000..07e0912 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-spin-fade-loader.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-spin-fade-loader{50%{opacity:.3;-webkit-transform:scale(.4);transform:scale(.4)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes ball-spin-fade-loader{50%{opacity:.3;-webkit-transform:scale(.4);transform:scale(.4)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.ball-spin-fade-loader{position:relative;top:-10px;left:-10px}.ball-spin-fade-loader>div:nth-child(1){top:25px;left:0;-webkit-animation:ball-spin-fade-loader 1s -.96s infinite linear;animation:ball-spin-fade-loader 1s -.96s infinite linear}.ball-spin-fade-loader>div:nth-child(2){top:17.05px;left:17.05px;-webkit-animation:ball-spin-fade-loader 1s -.84s infinite linear;animation:ball-spin-fade-loader 1s -.84s infinite linear}.ball-spin-fade-loader>div:nth-child(3){top:0;left:25px;-webkit-animation:ball-spin-fade-loader 1s -.72s infinite linear;animation:ball-spin-fade-loader 1s -.72s infinite linear}.ball-spin-fade-loader>div:nth-child(4){top:-17.05px;left:17.05px;-webkit-animation:ball-spin-fade-loader 1s -.6s infinite linear;animation:ball-spin-fade-loader 1s -.6s infinite linear}.ball-spin-fade-loader>div:nth-child(5){top:-25px;left:0;-webkit-animation:ball-spin-fade-loader 1s -.48s infinite linear;animation:ball-spin-fade-loader 1s -.48s infinite linear}.ball-spin-fade-loader>div:nth-child(6){top:-17.05px;left:-17.05px;-webkit-animation:ball-spin-fade-loader 1s -.36s infinite linear;animation:ball-spin-fade-loader 1s -.36s infinite linear}.ball-spin-fade-loader>div:nth-child(7){top:0;left:-25px;-webkit-animation:ball-spin-fade-loader 1s -.24s infinite linear;animation:ball-spin-fade-loader 1s -.24s infinite linear}.ball-spin-fade-loader>div:nth-child(8){top:17.05px;left:-17.05px;-webkit-animation:ball-spin-fade-loader 1s -.12s infinite linear;animation:ball-spin-fade-loader 1s -.12s infinite linear}.ball-spin-fade-loader>div{background-color:#B8C2CC;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-spin-loader.css b/assets/css/plugins/loaders/animations/ball-spin-loader.css new file mode 100644 index 0000000..c04d4dd --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-spin-loader.css @@ -0,0 +1,50 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-spin-loader { + 75% { + opacity: 0.2; } + 100% { + opacity: 1; } } + +.ball-spin-loader { + position: relative; } + .ball-spin-loader > span:nth-child(1) { + top: 45px; + left: 0; + animation: ball-spin-loader 2s 0.9s infinite linear; } + .ball-spin-loader > span:nth-child(2) { + top: 30.68182px; + left: 30.68182px; + animation: ball-spin-loader 2s 1.8s infinite linear; } + .ball-spin-loader > span:nth-child(3) { + top: 0; + left: 45px; + animation: ball-spin-loader 2s 2.7s infinite linear; } + .ball-spin-loader > span:nth-child(4) { + top: -30.68182px; + left: 30.68182px; + animation: ball-spin-loader 2s 3.6s infinite linear; } + .ball-spin-loader > span:nth-child(5) { + top: -45px; + left: 0; + animation: ball-spin-loader 2s 4.5s infinite linear; } + .ball-spin-loader > span:nth-child(6) { + top: -30.68182px; + left: -30.68182px; + animation: ball-spin-loader 2s 5.4s infinite linear; } + .ball-spin-loader > span:nth-child(7) { + top: 0; + left: -45px; + animation: ball-spin-loader 2s 6.3s infinite linear; } + .ball-spin-loader > span:nth-child(8) { + top: 30.68182px; + left: -30.68182px; + animation: ball-spin-loader 2s 7.2s infinite linear; } + .ball-spin-loader > div { + animation-fill-mode: both; + position: absolute; + width: 15px; + height: 15px; + border-radius: 100%; + background: green; } diff --git a/assets/css/plugins/loaders/animations/ball-spin-loader.min.css b/assets/css/plugins/loaders/animations/ball-spin-loader.min.css new file mode 100644 index 0000000..18a07d9 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-spin-loader.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-spin-loader{75%{opacity:.2}100%{opacity:1}}@keyframes ball-spin-loader{75%{opacity:.2}100%{opacity:1}}.ball-spin-loader{position:relative}.ball-spin-loader>span:nth-child(1){top:45px;left:0;-webkit-animation:ball-spin-loader 2s .9s infinite linear;animation:ball-spin-loader 2s .9s infinite linear}.ball-spin-loader>span:nth-child(2){top:30.68px;left:30.68px;-webkit-animation:ball-spin-loader 2s 1.8s infinite linear;animation:ball-spin-loader 2s 1.8s infinite linear}.ball-spin-loader>span:nth-child(3){top:0;left:45px;-webkit-animation:ball-spin-loader 2s 2.7s infinite linear;animation:ball-spin-loader 2s 2.7s infinite linear}.ball-spin-loader>span:nth-child(4){top:-30.68px;left:30.68px;-webkit-animation:ball-spin-loader 2s 3.6s infinite linear;animation:ball-spin-loader 2s 3.6s infinite linear}.ball-spin-loader>span:nth-child(5){top:-45px;left:0;-webkit-animation:ball-spin-loader 2s 4.5s infinite linear;animation:ball-spin-loader 2s 4.5s infinite linear}.ball-spin-loader>span:nth-child(6){top:-30.68px;left:-30.68px;-webkit-animation:ball-spin-loader 2s 5.4s infinite linear;animation:ball-spin-loader 2s 5.4s infinite linear}.ball-spin-loader>span:nth-child(7){top:0;left:-45px;-webkit-animation:ball-spin-loader 2s 6.3s infinite linear;animation:ball-spin-loader 2s 6.3s infinite linear}.ball-spin-loader>span:nth-child(8){top:30.68px;left:-30.68px;-webkit-animation:ball-spin-loader 2s 7.2s infinite linear;animation:ball-spin-loader 2s 7.2s infinite linear}.ball-spin-loader>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;width:15px;height:15px;border-radius:100%;background:green} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-triangle-trace.css b/assets/css/plugins/loaders/animations/ball-triangle-trace.css new file mode 100644 index 0000000..9a408cf --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-triangle-trace.css @@ -0,0 +1,62 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-triangle-path-1 { + 33% { + transform: translate(25px, -50px); } + 66% { + transform: translate(50px, 0px); } + 100% { + transform: translate(0px, 0px); } } + +@keyframes ball-triangle-path-2 { + 33% { + transform: translate(25px, 50px); } + 66% { + transform: translate(-25px, 50px); } + 100% { + transform: translate(0px, 0px); } } + +@keyframes ball-triangle-path-3 { + 33% { + transform: translate(-50px, 0px); } + 66% { + transform: translate(-25px, -50px); } + 100% { + transform: translate(0px, 0px); } } + +.ball-triangle-path { + position: relative; + transform: translate(-29.994px, -37.50938px); } + .ball-triangle-path > div:nth-child(1) { + animation-name: ball-triangle-path-1; + animation-delay: 0; + animation-duration: 2s; + animation-timing-function: ease-in-out; + animation-iteration-count: infinite; } + .ball-triangle-path > div:nth-child(2) { + animation-name: ball-triangle-path-2; + animation-delay: 0; + animation-duration: 2s; + animation-timing-function: ease-in-out; + animation-iteration-count: infinite; } + .ball-triangle-path > div:nth-child(3) { + animation-name: ball-triangle-path-3; + animation-delay: 0; + animation-duration: 2s; + animation-timing-function: ease-in-out; + animation-iteration-count: infinite; } + .ball-triangle-path > div { + animation-fill-mode: both; + position: absolute; + width: 10px; + height: 10px; + border-radius: 100%; + border: 1px solid #b8c2cc; } + .ball-triangle-path > div:nth-of-type(1) { + top: 50px; } + .ball-triangle-path > div:nth-of-type(2) { + left: 25px; } + .ball-triangle-path > div:nth-of-type(3) { + top: 50px; + left: 50px; } diff --git a/assets/css/plugins/loaders/animations/ball-triangle-trace.min.css b/assets/css/plugins/loaders/animations/ball-triangle-trace.min.css new file mode 100644 index 0000000..35148d3 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-triangle-trace.min.css @@ -0,0 +1 @@ +.ball-triangle-path>div:nth-child(1),.ball-triangle-path>div:nth-child(2){-webkit-animation-delay:0;-webkit-animation-duration:2s;-webkit-animation-timing-function:ease-in-out;-webkit-animation-iteration-count:infinite}@-webkit-keyframes ball-triangle-path-1{33%{-webkit-transform:translate(25px,-50px);transform:translate(25px,-50px)}66%{-webkit-transform:translate(50px,0);transform:translate(50px,0)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-triangle-path-1{33%{-webkit-transform:translate(25px,-50px);transform:translate(25px,-50px)}66%{-webkit-transform:translate(50px,0);transform:translate(50px,0)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes ball-triangle-path-2{33%{-webkit-transform:translate(25px,50px);transform:translate(25px,50px)}66%{-webkit-transform:translate(-25px,50px);transform:translate(-25px,50px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-triangle-path-2{33%{-webkit-transform:translate(25px,50px);transform:translate(25px,50px)}66%{-webkit-transform:translate(-25px,50px);transform:translate(-25px,50px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes ball-triangle-path-3{33%{-webkit-transform:translate(-50px,0);transform:translate(-50px,0)}66%{-webkit-transform:translate(-25px,-50px);transform:translate(-25px,-50px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-triangle-path-3{33%{-webkit-transform:translate(-50px,0);transform:translate(-50px,0)}66%{-webkit-transform:translate(-25px,-50px);transform:translate(-25px,-50px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}.ball-triangle-path{position:relative;-webkit-transform:translate(-29.99px,-37.51px);-ms-transform:translate(-29.99px,-37.51px);transform:translate(-29.99px,-37.51px)}.ball-triangle-path>div:nth-child(1){-webkit-animation-name:ball-triangle-path-1;animation-name:ball-triangle-path-1;animation-delay:0;animation-duration:2s;animation-timing-function:ease-in-out;animation-iteration-count:infinite}.ball-triangle-path>div:nth-child(2){-webkit-animation-name:ball-triangle-path-2;animation-name:ball-triangle-path-2;animation-delay:0;animation-duration:2s;animation-timing-function:ease-in-out;animation-iteration-count:infinite}.ball-triangle-path>div:nth-child(3){-webkit-animation-name:ball-triangle-path-3;animation-name:ball-triangle-path-3;-webkit-animation-delay:0;animation-delay:0;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.ball-triangle-path>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;width:10px;height:10px;border-radius:100%;border:1px solid #B8C2CC}.ball-triangle-path>div:nth-of-type(1){top:50px}.ball-triangle-path>div:nth-of-type(2){left:25px}.ball-triangle-path>div:nth-of-type(3){top:50px;left:50px} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-zig-zag-deflect.css b/assets/css/plugins/loaders/animations/ball-zig-zag-deflect.css new file mode 100644 index 0000000..6399cae --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-zig-zag-deflect.css @@ -0,0 +1,49 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-zig-deflect { + 17% { + transform: translate(-15px, -30px); } + 34% { + transform: translate(15px, -30px); } + 50% { + transform: translate(0, 0); } + 67% { + transform: translate(15px, -30px); } + 84% { + transform: translate(-15px, -30px); } + 100% { + transform: translate(0, 0); } } + +@keyframes ball-zag-deflect { + 17% { + transform: translate(15px, 30px); } + 34% { + transform: translate(-15px, 30px); } + 50% { + transform: translate(0, 0); } + 67% { + transform: translate(-15px, 30px); } + 84% { + transform: translate(15px, 30px); } + 100% { + transform: translate(0, 0); } } + +.ball-zig-zag-deflect { + position: relative; + transform: translate(-15px, -15px); } + .ball-zig-zag-deflect > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + position: absolute; + margin-left: 15px; + top: 4px; + left: -7px; } + .ball-zig-zag-deflect > div:first-child { + animation: ball-zig-deflect 1.5s 0s infinite linear; } + .ball-zig-zag-deflect > div:last-child { + animation: ball-zag-deflect 1.5s 0s infinite linear; } diff --git a/assets/css/plugins/loaders/animations/ball-zig-zag-deflect.min.css b/assets/css/plugins/loaders/animations/ball-zig-zag-deflect.min.css new file mode 100644 index 0000000..65b3fae --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-zig-zag-deflect.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-zig-deflect{17%,84%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}34%,67%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}100%,50%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-zig-deflect{17%,84%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}34%,67%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}100%,50%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes ball-zag-deflect{17%,84%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}34%,67%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}100%,50%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-zag-deflect{17%,84%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}34%,67%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}100%,50%{-webkit-transform:translate(0,0);transform:translate(0,0)}}.ball-zig-zag-deflect{position:relative;-webkit-transform:translate(-15px,-15px);-ms-transform:translate(-15px,-15px);transform:translate(-15px,-15px)}.ball-zig-zag-deflect>div{background-color:#B8C2CC;width:15px;height:15px;border-radius:100%;margin:2px 2px 2px 15px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;top:4px;left:-7px}.ball-zig-zag-deflect>div:first-child{-webkit-animation:ball-zig-deflect 1.5s 0s infinite linear;animation:ball-zig-deflect 1.5s 0s infinite linear}.ball-zig-zag-deflect>div:last-child{-webkit-animation:ball-zag-deflect 1.5s 0s infinite linear;animation:ball-zag-deflect 1.5s 0s infinite linear} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/ball-zig-zag.css b/assets/css/plugins/loaders/animations/ball-zig-zag.css new file mode 100644 index 0000000..4abc9c0 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-zig-zag.css @@ -0,0 +1,37 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-zig { + 33% { + transform: translate(-15px, -30px); } + 66% { + transform: translate(15px, -30px); } + 100% { + transform: translate(0, 0); } } + +@keyframes ball-zag { + 33% { + transform: translate(15px, 30px); } + 66% { + transform: translate(-15px, 30px); } + 100% { + transform: translate(0, 0); } } + +.ball-zig-zag { + position: relative; + transform: translate(-15px, -15px); } + .ball-zig-zag > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + position: absolute; + margin-left: 15px; + top: 4px; + left: -7px; } + .ball-zig-zag > div:first-child { + animation: ball-zig 0.7s 0s infinite linear; } + .ball-zig-zag > div:last-child { + animation: ball-zag 0.7s 0s infinite linear; } diff --git a/assets/css/plugins/loaders/animations/ball-zig-zag.min.css b/assets/css/plugins/loaders/animations/ball-zig-zag.min.css new file mode 100644 index 0000000..e3b98d2 --- /dev/null +++ b/assets/css/plugins/loaders/animations/ball-zig-zag.min.css @@ -0,0 +1 @@ +@-webkit-keyframes ball-zig{33%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}66%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-zig{33%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}66%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes ball-zag{33%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}66%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-zag{33%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}66%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}.ball-zig-zag{position:relative;-webkit-transform:translate(-15px,-15px);-ms-transform:translate(-15px,-15px);transform:translate(-15px,-15px)}.ball-zig-zag>div{background-color:#B8C2CC;width:15px;height:15px;border-radius:100%;margin:2px 2px 2px 15px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;top:4px;left:-7px}.ball-zig-zag>div:first-child{-webkit-animation:ball-zig .7s 0s infinite linear;animation:ball-zig .7s 0s infinite linear}.ball-zig-zag>div:last-child{-webkit-animation:ball-zag .7s 0s infinite linear;animation:ball-zag .7s 0s infinite linear} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/cube-transition.css b/assets/css/plugins/loaders/animations/cube-transition.css new file mode 100644 index 0000000..66b8a70 --- /dev/null +++ b/assets/css/plugins/loaders/animations/cube-transition.css @@ -0,0 +1,27 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes cube-transition { + 25% { + transform: translateX(50px) scale(0.5) rotate(-90deg); } + 50% { + transform: translate(50px, 50px) rotate(-180deg); } + 75% { + transform: translateY(50px) scale(0.5) rotate(-270deg); } + 100% { + transform: rotate(-360deg); } } + +.cube-transition { + position: relative; + transform: translate(-25px, -25px); } + .cube-transition > div { + animation-fill-mode: both; + width: 10px; + height: 10px; + position: absolute; + top: -5px; + left: -5px; + background-color: #b8c2cc; + animation: cube-transition 1.6s 0s infinite ease-in-out; } + .cube-transition > div:last-child { + animation-delay: -0.8s; } diff --git a/assets/css/plugins/loaders/animations/cube-transition.min.css b/assets/css/plugins/loaders/animations/cube-transition.min.css new file mode 100644 index 0000000..8f12fc1 --- /dev/null +++ b/assets/css/plugins/loaders/animations/cube-transition.min.css @@ -0,0 +1 @@ +@-webkit-keyframes cube-transition{25%{-webkit-transform:translateX(50px) scale(.5) rotate(-90deg);transform:translateX(50px) scale(.5) rotate(-90deg)}50%{-webkit-transform:translate(50px,50px) rotate(-180deg);transform:translate(50px,50px) rotate(-180deg)}75%{-webkit-transform:translateY(50px) scale(.5) rotate(-270deg);transform:translateY(50px) scale(.5) rotate(-270deg)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@keyframes cube-transition{25%{-webkit-transform:translateX(50px) scale(.5) rotate(-90deg);transform:translateX(50px) scale(.5) rotate(-90deg)}50%{-webkit-transform:translate(50px,50px) rotate(-180deg);transform:translate(50px,50px) rotate(-180deg)}75%{-webkit-transform:translateY(50px) scale(.5) rotate(-270deg);transform:translateY(50px) scale(.5) rotate(-270deg)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}.cube-transition{position:relative;-webkit-transform:translate(-25px,-25px);-ms-transform:translate(-25px,-25px);transform:translate(-25px,-25px)}.cube-transition>div{width:10px;height:10px;position:absolute;top:-5px;left:-5px;background-color:#B8C2CC;-webkit-animation:cube-transition 1.6s 0s infinite ease-in-out;animation:cube-transition 1.6s 0s infinite ease-in-out}.cube-transition>div:last-child{-webkit-animation-delay:-.8s;animation-delay:-.8s} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/line-scale-pulse-out-rapid.css b/assets/css/plugins/loaders/animations/line-scale-pulse-out-rapid.css new file mode 100644 index 0000000..fec8ecd --- /dev/null +++ b/assets/css/plugins/loaders/animations/line-scale-pulse-out-rapid.css @@ -0,0 +1,25 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes line-scale-pulse-out-rapid { + 0% { + transform: scaley(1); } + 80% { + transform: scaley(0.3); } + 90% { + transform: scaley(1); } } + +.line-scale-pulse-out-rapid > div { + background-color: #b8c2cc; + width: 4px; + height: 3.45rem; + border-radius: 2px; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + vertical-align: middle; + animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78); } + .line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) { + animation-delay: -0.25s !important; } + .line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) { + animation-delay: 0s !important; } diff --git a/assets/css/plugins/loaders/animations/line-scale-pulse-out-rapid.min.css b/assets/css/plugins/loaders/animations/line-scale-pulse-out-rapid.min.css new file mode 100644 index 0000000..edf1472 --- /dev/null +++ b/assets/css/plugins/loaders/animations/line-scale-pulse-out-rapid.min.css @@ -0,0 +1 @@ +@-webkit-keyframes line-scale-pulse-out-rapid{0%,90%{-webkit-transform:scaley(1);transform:scaley(1)}80%{-webkit-transform:scaley(.3);transform:scaley(.3)}}@keyframes line-scale-pulse-out-rapid{0%,90%{-webkit-transform:scaley(1);transform:scaley(1)}80%{-webkit-transform:scaley(.3);transform:scaley(.3)}}.line-scale-pulse-out-rapid>div{background-color:#B8C2CC;width:4px;height:3.45rem;border-radius:2px;margin:2px;display:inline-block;vertical-align:middle;-webkit-animation:line-scale-pulse-out-rapid .9s -.5s infinite cubic-bezier(.11,.49,.38,.78);animation:line-scale-pulse-out-rapid .9s -.5s infinite cubic-bezier(.11,.49,.38,.78)}.line-scale-pulse-out-rapid>div:nth-child(2),.line-scale-pulse-out-rapid>div:nth-child(4){-webkit-animation-delay:-.25s!important;animation-delay:-.25s!important}.line-scale-pulse-out-rapid>div:nth-child(1),.line-scale-pulse-out-rapid>div:nth-child(5){-webkit-animation-delay:0s!important;animation-delay:0s!important} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/line-scale-pulse-out.css b/assets/css/plugins/loaders/animations/line-scale-pulse-out.css new file mode 100644 index 0000000..788197a --- /dev/null +++ b/assets/css/plugins/loaders/animations/line-scale-pulse-out.css @@ -0,0 +1,24 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes line-scale-pulse-out { + 0% { + transform: scaley(1); } + 50% { + transform: scaley(0.4); } + 100% { + transform: scaley(1); } } + +.line-scale-pulse-out > div { + background-color: #b8c2cc; + width: 4px; + height: 3.45rem; + border-radius: 2px; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85); } + .line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) { + animation-delay: -0.4s !important; } + .line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) { + animation-delay: -0.2s !important; } diff --git a/assets/css/plugins/loaders/animations/line-scale-pulse-out.min.css b/assets/css/plugins/loaders/animations/line-scale-pulse-out.min.css new file mode 100644 index 0000000..caecc04 --- /dev/null +++ b/assets/css/plugins/loaders/animations/line-scale-pulse-out.min.css @@ -0,0 +1 @@ +@-webkit-keyframes line-scale-pulse-out{0%,100%{-webkit-transform:scaley(1);transform:scaley(1)}50%{-webkit-transform:scaley(.4);transform:scaley(.4)}}@keyframes line-scale-pulse-out{0%,100%{-webkit-transform:scaley(1);transform:scaley(1)}50%{-webkit-transform:scaley(.4);transform:scaley(.4)}}.line-scale-pulse-out>div{background-color:#B8C2CC;width:4px;height:3.45rem;border-radius:2px;margin:2px;display:inline-block;-webkit-animation:line-scale-pulse-out .9s -.6s infinite cubic-bezier(.85,.25,.37,.85);animation:line-scale-pulse-out .9s -.6s infinite cubic-bezier(.85,.25,.37,.85)}.line-scale-pulse-out>div:nth-child(2),.line-scale-pulse-out>div:nth-child(4){-webkit-animation-delay:-.4s!important;animation-delay:-.4s!important}.line-scale-pulse-out>div:nth-child(1),.line-scale-pulse-out>div:nth-child(5){-webkit-animation-delay:-.2s!important;animation-delay:-.2s!important} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/line-scale-random.css b/assets/css/plugins/loaders/animations/line-scale-random.css new file mode 100644 index 0000000..4784aaa --- /dev/null +++ b/assets/css/plugins/loaders/animations/line-scale-random.css @@ -0,0 +1,38 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes line-scale-party { + 0% { + transform: scale(1); } + 50% { + transform: scale(0.5); } + 100% { + transform: scale(1); } } + +.line-scale-party > div:nth-child(1) { + animation-delay: -0.08s; + animation-duration: 1.27s; } + +.line-scale-party > div:nth-child(2) { + animation-delay: 0.04s; + animation-duration: 0.74s; } + +.line-scale-party > div:nth-child(3) { + animation-delay: 0.67s; + animation-duration: 1.09s; } + +.line-scale-party > div:nth-child(4) { + animation-delay: 0.34s; + animation-duration: 0.37s; } + +.line-scale-party > div { + background-color: #b8c2cc; + width: 4px; + height: 3.45rem; + border-radius: 2px; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + animation-name: line-scale-party; + animation-iteration-count: infinite; + animation-delay: 0; } diff --git a/assets/css/plugins/loaders/animations/line-scale-random.min.css b/assets/css/plugins/loaders/animations/line-scale-random.min.css new file mode 100644 index 0000000..62b26f9 --- /dev/null +++ b/assets/css/plugins/loaders/animations/line-scale-random.min.css @@ -0,0 +1 @@ +@-webkit-keyframes line-scale-party{0%,100%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.5);transform:scale(.5)}}@keyframes line-scale-party{0%,100%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.5);transform:scale(.5)}}.line-scale-party>div:nth-child(1){-webkit-animation-delay:10ms;animation-delay:10ms;-webkit-animation-duration:.69s;animation-duration:.69s}.line-scale-party>div:nth-child(2){-webkit-animation-delay:-70ms;animation-delay:-70ms;-webkit-animation-duration:.61s;animation-duration:.61s}.line-scale-party>div:nth-child(3){-webkit-animation-delay:.78s;animation-delay:.78s;-webkit-animation-duration:.65s;animation-duration:.65s}.line-scale-party>div:nth-child(4){-webkit-animation-delay:.79s;animation-delay:.79s;-webkit-animation-duration:.57s;animation-duration:.57s}.line-scale-party>div{background-color:#B8C2CC;width:4px;height:3.45rem;border-radius:2px;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;-webkit-animation-name:line-scale-party;animation-name:line-scale-party;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-delay:0;animation-delay:0} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/line-scale.css b/assets/css/plugins/loaders/animations/line-scale.css new file mode 100644 index 0000000..26e6a3c --- /dev/null +++ b/assets/css/plugins/loaders/animations/line-scale.css @@ -0,0 +1,34 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes line-scale { + 0% { + transform: scaley(1); } + 50% { + transform: scaley(0.4); } + 100% { + transform: scaley(1); } } + +.line-scale > div:nth-child(1) { + animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.line-scale > div:nth-child(2) { + animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.line-scale > div:nth-child(3) { + animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.line-scale > div:nth-child(4) { + animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.line-scale > div:nth-child(5) { + animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.line-scale > div { + background-color: #b8c2cc; + width: 4px; + height: 3.45rem; + border-radius: 2px; + margin: 2px; + animation-fill-mode: both; + display: inline-block; } diff --git a/assets/css/plugins/loaders/animations/line-scale.min.css b/assets/css/plugins/loaders/animations/line-scale.min.css new file mode 100644 index 0000000..c6a2189 --- /dev/null +++ b/assets/css/plugins/loaders/animations/line-scale.min.css @@ -0,0 +1 @@ +@-webkit-keyframes line-scale{0%,100%{-webkit-transform:scaley(1);transform:scaley(1)}50%{-webkit-transform:scaley(.4);transform:scaley(.4)}}@keyframes line-scale{0%,100%{-webkit-transform:scaley(1);transform:scaley(1)}50%{-webkit-transform:scaley(.4);transform:scaley(.4)}}.line-scale>div:nth-child(1){-webkit-animation:line-scale 1s -.4s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s -.4s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div:nth-child(2){-webkit-animation:line-scale 1s -.3s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s -.3s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div:nth-child(3){-webkit-animation:line-scale 1s -.2s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s -.2s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div:nth-child(4){-webkit-animation:line-scale 1s -.1s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s -.1s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div:nth-child(5){-webkit-animation:line-scale 1s 0s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s 0s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div{background-color:#B8C2CC;width:4px;height:3.45rem;border-radius:2px;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/line-spin-fade-loader.css b/assets/css/plugins/loaders/animations/line-spin-fade-loader.css new file mode 100644 index 0000000..54587d2 --- /dev/null +++ b/assets/css/plugins/loaders/animations/line-spin-fade-loader.css @@ -0,0 +1,61 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes line-spin-fade-loader { + 50% { + opacity: 0.3; } + 100% { + opacity: 1; } } + +.line-spin-fade-loader { + position: relative; + top: -10px; + left: -4px; } + .line-spin-fade-loader > div:nth-child(1) { + top: 20px; + left: 0; + animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(2) { + top: 13.63636px; + left: 13.63636px; + transform: rotate(-45deg); + animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(3) { + top: 0; + left: 20px; + transform: rotate(90deg); + animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(4) { + top: -13.63636px; + left: 13.63636px; + transform: rotate(45deg); + animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(5) { + top: -20px; + left: 0; + animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(6) { + top: -13.63636px; + left: -13.63636px; + transform: rotate(-45deg); + animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(7) { + top: 0; + left: -20px; + transform: rotate(90deg); + animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(8) { + top: 13.63636px; + left: -13.63636px; + transform: rotate(45deg); + animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out; } + .line-spin-fade-loader > div { + background-color: #b8c2cc; + width: 4px; + height: 3.45rem; + border-radius: 2px; + margin: 2px; + animation-fill-mode: both; + position: absolute; + width: 5px; + height: 15px; } diff --git a/assets/css/plugins/loaders/animations/line-spin-fade-loader.min.css b/assets/css/plugins/loaders/animations/line-spin-fade-loader.min.css new file mode 100644 index 0000000..b82cb32 --- /dev/null +++ b/assets/css/plugins/loaders/animations/line-spin-fade-loader.min.css @@ -0,0 +1 @@ +@-webkit-keyframes line-spin-fade-loader{50%{opacity:.3}100%{opacity:1}}@keyframes line-spin-fade-loader{50%{opacity:.3}100%{opacity:1}}.line-spin-fade-loader{position:relative;top:-10px;left:-4px}.line-spin-fade-loader>div:nth-child(1){top:20px;left:0;-webkit-animation:line-spin-fade-loader 1.2s -.84s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.84s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(2){top:13.64px;left:13.64px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-animation:line-spin-fade-loader 1.2s -.72s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.72s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(3){top:0;left:20px;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-animation:line-spin-fade-loader 1.2s -.6s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.6s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(4){top:-13.64px;left:13.64px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-animation:line-spin-fade-loader 1.2s -.48s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.48s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(5){top:-20px;left:0;-webkit-animation:line-spin-fade-loader 1.2s -.36s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.36s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(6){top:-13.64px;left:-13.64px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-animation:line-spin-fade-loader 1.2s -.24s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.24s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(7){top:0;left:-20px;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-animation:line-spin-fade-loader 1.2s -.12s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.12s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(8){top:13.64px;left:-13.64px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-animation:line-spin-fade-loader 1.2s 0s infinite ease-in-out;animation:line-spin-fade-loader 1.2s 0s infinite ease-in-out}.line-spin-fade-loader>div{background-color:#B8C2CC;border-radius:2px;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;width:5px;height:15px} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/pacman.css b/assets/css/plugins/loaders/animations/pacman.css new file mode 100644 index 0000000..d93e775 --- /dev/null +++ b/assets/css/plugins/loaders/animations/pacman.css @@ -0,0 +1,73 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes rotate_pacman_half_up { + 0% { + transform: rotate(270deg); } + 50% { + transform: rotate(360deg); } + 100% { + transform: rotate(270deg); } } + +@keyframes rotate_pacman_half_down { + 0% { + transform: rotate(90deg); } + 50% { + transform: rotate(0deg); } + 100% { + transform: rotate(90deg); } } + +@keyframes pacman-balls { + 75% { + opacity: 0.7; } + 100% { + transform: translate(-100px, -6.25px); } } + +.pacman { + position: relative; } + .pacman > div:nth-child(2) { + animation: pacman-balls 1s -0.99s infinite linear; } + .pacman > div:nth-child(3) { + animation: pacman-balls 1s -0.66s infinite linear; } + .pacman > div:nth-child(4) { + animation: pacman-balls 1s -0.33s infinite linear; } + .pacman > div:nth-child(5) { + animation: pacman-balls 1s 0s infinite linear; } + .pacman > div:first-of-type { + width: 0px; + height: 0px; + border-right: 25px solid transparent; + border-top: 25px solid #b8c2cc; + border-left: 25px solid #b8c2cc; + border-bottom: 25px solid #b8c2cc; + border-radius: 25px; + animation: rotate_pacman_half_up 0.5s 0s infinite; + position: relative; + left: -30px; } + .pacman > div:nth-child(2) { + width: 0px; + height: 0px; + border-right: 25px solid transparent; + border-top: 25px solid #b8c2cc; + border-left: 25px solid #b8c2cc; + border-bottom: 25px solid #b8c2cc; + border-radius: 25px; + animation: rotate_pacman_half_down 0.5s 0s infinite; + margin-top: -50px; + position: relative; + left: -30px; } + .pacman > div:nth-child(3), + .pacman > div:nth-child(4), + .pacman > div:nth-child(5), + .pacman > div:nth-child(6) { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + width: 10px; + height: 10px; + position: absolute; + transform: translate(0, -6.25px); + top: 25px; + left: 70px; } diff --git a/assets/css/plugins/loaders/animations/pacman.min.css b/assets/css/plugins/loaders/animations/pacman.min.css new file mode 100644 index 0000000..694e84d --- /dev/null +++ b/assets/css/plugins/loaders/animations/pacman.min.css @@ -0,0 +1 @@ +.pacman>div:first-of-type,.pacman>div:nth-child(2){width:0;height:0;border-right:25px solid transparent;border-top:25px solid #B8C2CC;border-left:25px solid #B8C2CC;border-bottom:25px solid #B8C2CC;border-radius:25px;position:relative;left:-30px}@-webkit-keyframes rotate_pacman_half_up{0%,100%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}50%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate_pacman_half_up{0%,100%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}50%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes rotate_pacman_half_down{0%,100%{-webkit-transform:rotate(90deg);transform:rotate(90deg)}50%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes rotate_pacman_half_down{0%,100%{-webkit-transform:rotate(90deg);transform:rotate(90deg)}50%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes pacman-balls{75%{opacity:.7}100%{-webkit-transform:translate(-100px,-6.25px);transform:translate(-100px,-6.25px)}}@keyframes pacman-balls{75%{opacity:.7}100%{-webkit-transform:translate(-100px,-6.25px);transform:translate(-100px,-6.25px)}}.pacman{position:relative}.pacman>div:nth-child(3){-webkit-animation:pacman-balls 1s -.66s infinite linear;animation:pacman-balls 1s -.66s infinite linear}.pacman>div:nth-child(4){-webkit-animation:pacman-balls 1s -.33s infinite linear;animation:pacman-balls 1s -.33s infinite linear}.pacman>div:nth-child(5){-webkit-animation:pacman-balls 1s 0s infinite linear;animation:pacman-balls 1s 0s infinite linear}.pacman>div:first-of-type{-webkit-animation:rotate_pacman_half_up .5s 0s infinite;animation:rotate_pacman_half_up .5s 0s infinite}.pacman>div:nth-child(2){-webkit-animation:rotate_pacman_half_down .5s 0s infinite;animation:rotate_pacman_half_down .5s 0s infinite;margin-top:-50px}.pacman>div:nth-child(3),.pacman>div:nth-child(4),.pacman>div:nth-child(5),.pacman>div:nth-child(6){background-color:#B8C2CC;border-radius:100%;margin:2px;width:10px;height:10px;position:absolute;-webkit-transform:translate(0,-6.25px);-ms-transform:translate(0,-6.25px);transform:translate(0,-6.25px);top:25px;left:70px} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/semi-circle-spin.css b/assets/css/plugins/loaders/animations/semi-circle-spin.css new file mode 100644 index 0000000..4015854 --- /dev/null +++ b/assets/css/plugins/loaders/animations/semi-circle-spin.css @@ -0,0 +1,24 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes spin-rotate { + 0% { + transform: rotate(0deg); } + 50% { + transform: rotate(180deg); } + 100% { + transform: rotate(360deg); } } + +.semi-circle-spin { + position: relative; + width: 35px; + height: 35px; + overflow: hidden; } + .semi-circle-spin > div { + position: absolute; + border-width: 0px; + border-radius: 100%; + animation: spin-rotate 0.6s 0s infinite linear; + background-image: linear-gradient(transparent 0%, transparent 70%, #b8c2cc 30%, #b8c2cc 100%); + width: 100%; + height: 100%; } diff --git a/assets/css/plugins/loaders/animations/semi-circle-spin.min.css b/assets/css/plugins/loaders/animations/semi-circle-spin.min.css new file mode 100644 index 0000000..d54b727 --- /dev/null +++ b/assets/css/plugins/loaders/animations/semi-circle-spin.min.css @@ -0,0 +1 @@ +@-webkit-keyframes spin-rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin-rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.semi-circle-spin{position:relative;width:35px;height:35px;overflow:hidden}.semi-circle-spin>div{position:absolute;border-width:0;border-radius:100%;-webkit-animation:spin-rotate .6s 0s infinite linear;animation:spin-rotate .6s 0s infinite linear;background-image:-webkit-linear-gradient(transparent 0,transparent 70%,#B8C2CC 30%,#B8C2CC 100%);background-image:linear-gradient(transparent 0,transparent 70%,#B8C2CC 30%,#B8C2CC 100%);width:100%;height:100%} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/square-spin.css b/assets/css/plugins/loaders/animations/square-spin.css new file mode 100644 index 0000000..829dfcb --- /dev/null +++ b/assets/css/plugins/loaders/animations/square-spin.css @@ -0,0 +1,19 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes square-spin { + 25% { + transform: perspective(100px) rotateX(180deg) rotateY(0); } + 50% { + transform: perspective(100px) rotateX(180deg) rotateY(180deg); } + 75% { + transform: perspective(100px) rotateX(0) rotateY(180deg); } + 100% { + transform: perspective(100px) rotateX(0) rotateY(0); } } + +.square-spin > div { + animation-fill-mode: both; + width: 50px; + height: 50px; + background: #b8c2cc; + animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; } diff --git a/assets/css/plugins/loaders/animations/square-spin.min.css b/assets/css/plugins/loaders/animations/square-spin.min.css new file mode 100644 index 0000000..91ac2c4 --- /dev/null +++ b/assets/css/plugins/loaders/animations/square-spin.min.css @@ -0,0 +1 @@ +@-webkit-keyframes square-spin{25%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(0);transform:perspective(100px) rotateX(180deg) rotateY(0)}50%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(180deg);transform:perspective(100px) rotateX(180deg) rotateY(180deg)}75%{-webkit-transform:perspective(100px) rotateX(0) rotateY(180deg);transform:perspective(100px) rotateX(0) rotateY(180deg)}100%{-webkit-transform:perspective(100px) rotateX(0) rotateY(0);transform:perspective(100px) rotateX(0) rotateY(0)}}@keyframes square-spin{25%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(0);transform:perspective(100px) rotateX(180deg) rotateY(0)}50%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(180deg);transform:perspective(100px) rotateX(180deg) rotateY(180deg)}75%{-webkit-transform:perspective(100px) rotateX(0) rotateY(180deg);transform:perspective(100px) rotateX(0) rotateY(180deg)}100%{-webkit-transform:perspective(100px) rotateX(0) rotateY(0);transform:perspective(100px) rotateX(0) rotateY(0)}}.square-spin>div{width:50px;height:50px;background:#B8C2CC;-webkit-animation:square-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite;animation:square-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite} \ No newline at end of file diff --git a/assets/css/plugins/loaders/animations/triangle-skew-spin.css b/assets/css/plugins/loaders/animations/triangle-skew-spin.css new file mode 100644 index 0000000..68c4b6a --- /dev/null +++ b/assets/css/plugins/loaders/animations/triangle-skew-spin.css @@ -0,0 +1,21 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes triangle-skew-spin { + 25% { + transform: perspective(100px) rotateX(180deg) rotateY(0); } + 50% { + transform: perspective(100px) rotateX(180deg) rotateY(180deg); } + 75% { + transform: perspective(100px) rotateX(0) rotateY(180deg); } + 100% { + transform: perspective(100px) rotateX(0) rotateY(0); } } + +.triangle-skew-spin > div { + animation-fill-mode: both; + width: 0; + height: 0; + border-left: 20px solid transparent; + border-right: 20px solid transparent; + border-bottom: 20px solid #b8c2cc; + animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; } diff --git a/assets/css/plugins/loaders/animations/triangle-skew-spin.min.css b/assets/css/plugins/loaders/animations/triangle-skew-spin.min.css new file mode 100644 index 0000000..6273109 --- /dev/null +++ b/assets/css/plugins/loaders/animations/triangle-skew-spin.min.css @@ -0,0 +1 @@ +@-webkit-keyframes triangle-skew-spin{25%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(0);transform:perspective(100px) rotateX(180deg) rotateY(0)}50%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(180deg);transform:perspective(100px) rotateX(180deg) rotateY(180deg)}75%{-webkit-transform:perspective(100px) rotateX(0) rotateY(180deg);transform:perspective(100px) rotateX(0) rotateY(180deg)}100%{-webkit-transform:perspective(100px) rotateX(0) rotateY(0);transform:perspective(100px) rotateX(0) rotateY(0)}}@keyframes triangle-skew-spin{25%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(0);transform:perspective(100px) rotateX(180deg) rotateY(0)}50%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(180deg);transform:perspective(100px) rotateX(180deg) rotateY(180deg)}75%{-webkit-transform:perspective(100px) rotateX(0) rotateY(180deg);transform:perspective(100px) rotateX(0) rotateY(180deg)}100%{-webkit-transform:perspective(100px) rotateX(0) rotateY(0);transform:perspective(100px) rotateX(0) rotateY(0)}}.triangle-skew-spin>div{width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-bottom:20px solid #B8C2CC;-webkit-animation:triangle-skew-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite;animation:triangle-skew-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite} \ No newline at end of file diff --git a/assets/css/plugins/loaders/loaders.css b/assets/css/plugins/loaders/loaders.css new file mode 100644 index 0000000..f858b76 --- /dev/null +++ b/assets/css/plugins/loaders/loaders.css @@ -0,0 +1,1508 @@ +/** + * Copyright (c) 2016 Connor Atherton + * + * All animations must live in their own file + * in the animations directory and be included + * here. + * + */ +/** + * Styles shared by multiple animations + */ +/*======================================================== + DARK LAYOUT +=========================================================*/ +/* Custom Loader.CSS */ +.loader-container { + position: absolute; + top: 50%; + left: 50%; } + +.double-bounce { + width: 40px; + height: 40px; + position: relative; + margin: 40px auto; } + .double-bounce .child { + width: 100%; + height: 100%; + border-radius: 50%; + background-color: #333; + opacity: 0.6; + position: absolute; + top: 0; + left: 0; + animation: doubleBounce 2s infinite ease-in-out; } + .double-bounce .double-bounce2 { + animation-delay: -1.0s; } + +@-webkit-keyframes doubleBounce { + 0%, 100% { + transform: scale(0); } + 50% { + transform: scale(1); } } + +@keyframes doubleBounce { + 0%, 100% { + transform: scale(0); } + 50% { + transform: scale(1); } } + +.chasing-dots { + width: 40px; + height: 40px; + position: relative; + text-align: center; + animation: chasingDotsRotate 2s infinite linear; } + .chasing-dots .child { + width: 60%; + height: 60%; + display: inline-block; + position: absolute; + top: 0; + background-color: #333; + border-radius: 100%; + animation: chasingDotsBounce 2s infinite ease-in-out; } + .chasing-dots .dot2 { + top: auto; + bottom: 0; + animation-delay: -1s; } + +@-webkit-keyframes chasingDotsRotate { + 100% { + transform: rotate(360deg); } } + +@keyframes chasingDotsRotate { + 100% { + transform: rotate(360deg); } } + +@-webkit-keyframes chasingDotsBounce { + 0%, 100% { + transform: scale(0); } + 50% { + transform: scale(1); } } + +@keyframes chasingDotsBounce { + 0%, 100% { + transform: scale(0); } + 50% { + transform: scale(1); } } + +/* + * Spinner positions + * 1 2 3 + * 4 5 6 + * 7 8 9 + */ +.cube-grid { + width: 40px; + height: 40px; + margin: 40px auto; } + .cube-grid .cube { + width: 33.33%; + height: 33.33%; + background-color: #333; + float: left; + animation: cubeGridScaleDelay 1.3s infinite ease-in-out; } + .cube-grid .cube1 { + animation-delay: 0.2s; } + .cube-grid .cube2 { + animation-delay: 0.3s; } + .cube-grid .cube3 { + animation-delay: 0.4s; } + .cube-grid .cube4 { + animation-delay: 0.1s; } + .cube-grid .cube5 { + animation-delay: 0.2s; } + .cube-grid .cube6 { + animation-delay: 0.3s; } + .cube-grid .cube7 { + animation-delay: 0.0s; } + .cube-grid .cube8 { + animation-delay: 0.1s; } + .cube-grid .cube9 { + animation-delay: 0.2s; } + +@-webkit-keyframes cubeGridScaleDelay { + 0%, 70%, 100% { + transform: scale3D(1, 1, 1); } + 35% { + transform: scale3D(0, 0, 1); } } + +@keyframes cubeGridScaleDelay { + 0%, 70%, 100% { + transform: scale3D(1, 1, 1); } + 35% { + transform: scale3D(0, 0, 1); } } + +.fading-circle { + margin: 40px auto; + width: 40px; + height: 40px; + position: relative; } + .fading-circle .circle { + width: 100%; + height: 100%; + position: absolute; + left: 0; + top: 0; } + .fading-circle .circle:before { + content: ''; + display: block; + margin: 0 auto; + width: 15%; + height: 15%; + background-color: #333; + border-radius: 100%; + animation: circleFadeDelay 1.2s infinite ease-in-out both; } + .fading-circle .circle2 { + transform: rotate(30deg); } + .fading-circle .circle2:before { + animation-delay: -1.1s; } + .fading-circle .circle3 { + transform: rotate(60deg); } + .fading-circle .circle3:before { + animation-delay: -1s; } + .fading-circle .circle4 { + transform: rotate(90deg); } + .fading-circle .circle4:before { + animation-delay: -0.9s; } + .fading-circle .circle5 { + transform: rotate(120deg); } + .fading-circle .circle5:before { + animation-delay: -0.8s; } + .fading-circle .circle6 { + transform: rotate(150deg); } + .fading-circle .circle6:before { + animation-delay: -0.7s; } + .fading-circle .circle7 { + transform: rotate(180deg); } + .fading-circle .circle7:before { + animation-delay: -0.6s; } + .fading-circle .circle8 { + transform: rotate(210deg); } + .fading-circle .circle8:before { + animation-delay: -0.5s; } + .fading-circle .circle9 { + transform: rotate(240deg); } + .fading-circle .circle9:before { + animation-delay: -0.4s; } + .fading-circle .circle10 { + transform: rotate(270deg); } + .fading-circle .circle10:before { + animation-delay: -0.3s; } + .fading-circle .circle11 { + transform: rotate(300deg); } + .fading-circle .circle11:before { + animation-delay: -0.2s; } + .fading-circle .circle12 { + transform: rotate(330deg); } + .fading-circle .circle12:before { + animation-delay: -0.1s; } + +@-webkit-keyframes circleFadeDelay { + 0%, 39%, 100% { + opacity: 0; } + 40% { + opacity: 1; } } + +@keyframes circleFadeDelay { + 0%, 39%, 100% { + opacity: 0; } + 40% { + opacity: 1; } } + +.folding-cube { + width: 40px; + height: 40px; + position: relative; + transform: rotateZ(45deg); } + .folding-cube .cube { + float: left; + width: 50%; + height: 50%; + position: relative; + transform: scale(1.1); } + .folding-cube .cube:before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: #333; + animation: foldCubeAngle 2.4s infinite linear both; + transform-origin: 100% 100%; } + .folding-cube .cube2 { + transform: scale(1.1) rotateZ(90deg); } + .folding-cube .cube2:before { + animation-delay: 0.3s; } + .folding-cube .cube3 { + transform: scale(1.1) rotateZ(180deg); } + .folding-cube .cube3:before { + animation-delay: 0.6s; } + .folding-cube .cube4 { + transform: scale(1.1) rotateZ(270deg); } + .folding-cube .cube4:before { + animation-delay: 0.9s; } + +@-webkit-keyframes foldCubeAngle { + 0%, 10% { + transform: perspective(140px) rotateX(-180deg); + opacity: 0; } + 25%, 75% { + transform: perspective(140px) rotateX(0deg); + opacity: 1; } + 90%, 100% { + transform: perspective(140px) rotateY(180deg); + opacity: 0; } } + +@keyframes foldCubeAngle { + 0%, 10% { + transform: perspective(140px) rotateX(-180deg); + opacity: 0; } + 25%, 75% { + transform: perspective(140px) rotateX(0deg); + opacity: 1; } + 90%, 100% { + transform: perspective(140px) rotateY(180deg); + opacity: 0; } } + +/** + * Dots + */ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes scale { + 0% { + transform: scale(1); + opacity: 1; } + 45% { + transform: scale(0.1); + opacity: 0.7; } + 80% { + transform: scale(1); + opacity: 1; } } + +.ball-pulse > div:nth-child(1) { + animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.ball-pulse > div:nth-child(2) { + animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.ball-pulse > div:nth-child(3) { + animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.ball-pulse > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-pulse-sync { + 33% { + transform: translateY(10px); } + 66% { + transform: translateY(-10px); } + 100% { + transform: translateY(0); } } + +.ball-pulse-sync > div:nth-child(1) { + animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out; } + +.ball-pulse-sync > div:nth-child(2) { + animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out; } + +.ball-pulse-sync > div:nth-child(3) { + animation: ball-pulse-sync 0.6s 0s infinite ease-in-out; } + +.ball-pulse-sync > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-scale { + 0% { + transform: scale(0); } + 100% { + transform: scale(1); + opacity: 0; } } + +.ball-scale > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + height: 60px; + width: 60px; + animation: ball-scale 1s 0s ease-in-out infinite; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-scale { + 0% { + transform: scale(0); } + 100% { + transform: scale(1); + opacity: 0; } } + +.ball-scale > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + height: 60px; + width: 60px; + animation: ball-scale 1s 0s ease-in-out infinite; } + +.ball-scale-random { + width: 37px; + height: 40px; } + .ball-scale-random > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + position: absolute; + display: inline-block; + height: 30px; + width: 30px; + animation: ball-scale 1s 0s ease-in-out infinite; } + .ball-scale-random > div:nth-child(1) { + margin-left: -7px; + animation: ball-scale 1s 0.2s ease-in-out infinite; } + .ball-scale-random > div:nth-child(3) { + margin-left: -2px; + margin-top: 9px; + animation: ball-scale 1s 0.5s ease-in-out infinite; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes rotate { + 0% { + transform: rotate(0deg); } + 50% { + transform: rotate(180deg); } + 100% { + transform: rotate(360deg); } } + +.ball-rotate { + position: relative; } + .ball-rotate > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + position: relative; } + .ball-rotate > div:first-child { + animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite; } + .ball-rotate > div:before, .ball-rotate > div:after { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + content: ""; + position: absolute; + opacity: 0.8; } + .ball-rotate > div:before { + top: 0px; + left: -28px; } + .ball-rotate > div:after { + top: 0px; + left: 25px; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes rotate { + 0% { + transform: rotate(0deg) scale(1); } + 50% { + transform: rotate(180deg) scale(0.6); } + 100% { + transform: rotate(360deg) scale(1); } } + +.ball-clip-rotate > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + border: 2px solid #b8c2cc; + border-bottom-color: transparent; + height: 25px; + width: 25px; + background: transparent !important; + display: inline-block; + animation: rotate 0.75s 0s linear infinite; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes rotate { + 0% { + transform: rotate(0deg) scale(1); } + 50% { + transform: rotate(180deg) scale(0.6); } + 100% { + transform: rotate(360deg) scale(1); } } + +@keyframes scale { + 30% { + transform: scale(0.3); } + 100% { + transform: scale(1); } } + +.ball-clip-rotate-pulse { + position: relative; + transform: translateY(-15px); } + .ball-clip-rotate-pulse > div { + animation-fill-mode: both; + position: absolute; + top: 0px; + left: 0px; + border-radius: 100%; } + .ball-clip-rotate-pulse > div:first-child { + background: #b8c2cc; + height: 16px; + width: 16px; + top: 7px; + left: -7px; + animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; } + .ball-clip-rotate-pulse > div:last-child { + position: absolute; + border: 2px solid #b8c2cc; + width: 30px; + height: 30px; + left: -16px; + top: -2px; + background: transparent; + border: 2px solid; + border-color: #b8c2cc transparent #b8c2cc transparent; + animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; + animation-duration: 1s; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes rotate { + 0% { + transform: rotate(0deg) scale(1); } + 50% { + transform: rotate(180deg) scale(0.6); } + 100% { + transform: rotate(360deg) scale(1); } } + +.ball-clip-rotate-multiple { + position: relative; } + .ball-clip-rotate-multiple > div { + animation-fill-mode: both; + position: absolute; + left: -20px; + top: -20px; + border: 2px solid #b8c2cc; + border-bottom-color: transparent; + border-top-color: transparent; + border-radius: 100%; + height: 35px; + width: 35px; + animation: rotate 1s 0s ease-in-out infinite; } + .ball-clip-rotate-multiple > div:last-child { + display: inline-block; + top: -10px; + left: -10px; + width: 15px; + height: 15px; + animation-duration: 0.5s; + border-color: #b8c2cc transparent #b8c2cc transparent; + animation-direction: reverse; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-scale-ripple { + 0% { + transform: scale(0.1); + opacity: 1; } + 70% { + transform: scale(1); + opacity: 0.7; } + 100% { + opacity: 0.0; } } + +.ball-scale-ripple > div { + animation-fill-mode: both; + height: 50px; + width: 50px; + border-radius: 100%; + border: 2px solid #b8c2cc; + animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-scale-ripple-multiple { + 0% { + transform: scale(0.1); + opacity: 1; } + 70% { + transform: scale(1); + opacity: 0.7; } + 100% { + opacity: 0.0; } } + +.ball-scale-ripple-multiple { + position: relative; + transform: translateY(-25px); } + .ball-scale-ripple-multiple > div:nth-child(0) { + animation-delay: -0.8s; } + .ball-scale-ripple-multiple > div:nth-child(1) { + animation-delay: -0.6s; } + .ball-scale-ripple-multiple > div:nth-child(2) { + animation-delay: -0.4s; } + .ball-scale-ripple-multiple > div:nth-child(3) { + animation-delay: -0.2s; } + .ball-scale-ripple-multiple > div { + animation-fill-mode: both; + position: absolute; + top: -2px; + left: -26px; + width: 50px; + height: 50px; + border-radius: 100%; + border: 2px solid #b8c2cc; + animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-beat { + 50% { + opacity: 0.2; + transform: scale(0.75); } + 100% { + opacity: 1; + transform: scale(1); } } + +.ball-beat > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + animation: ball-beat 0.7s 0s infinite linear; } + .ball-beat > div:nth-child(2n-1) { + animation-delay: -0.35s !important; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-scale-multiple { + 0% { + transform: scale(0); + opacity: 0; } + 5% { + opacity: 1; } + 100% { + transform: scale(1); + opacity: 0; } } + +.ball-scale-multiple { + position: relative; } + .ball-scale-multiple > div:nth-child(2) { + animation-delay: -0.4s; } + .ball-scale-multiple > div:nth-child(3) { + animation-delay: -0.2s; } + .ball-scale-multiple > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + position: absolute; + top: 0px; + opacity: 0; + margin: 0; + width: 60px; + height: 60px; + animation: ball-scale-multiple 1s 0s linear infinite; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-triangle-path-1 { + 33% { + transform: translate(25px, -50px); } + 66% { + transform: translate(50px, 0px); } + 100% { + transform: translate(0px, 0px); } } + +@keyframes ball-triangle-path-2 { + 33% { + transform: translate(25px, 50px); } + 66% { + transform: translate(-25px, 50px); } + 100% { + transform: translate(0px, 0px); } } + +@keyframes ball-triangle-path-3 { + 33% { + transform: translate(-50px, 0px); } + 66% { + transform: translate(-25px, -50px); } + 100% { + transform: translate(0px, 0px); } } + +.ball-triangle-path { + position: relative; + transform: translate(-29.994px, -37.50938px); } + .ball-triangle-path > div:nth-child(1) { + animation-name: ball-triangle-path-1; + animation-delay: 0; + animation-duration: 2s; + animation-timing-function: ease-in-out; + animation-iteration-count: infinite; } + .ball-triangle-path > div:nth-child(2) { + animation-name: ball-triangle-path-2; + animation-delay: 0; + animation-duration: 2s; + animation-timing-function: ease-in-out; + animation-iteration-count: infinite; } + .ball-triangle-path > div:nth-child(3) { + animation-name: ball-triangle-path-3; + animation-delay: 0; + animation-duration: 2s; + animation-timing-function: ease-in-out; + animation-iteration-count: infinite; } + .ball-triangle-path > div { + animation-fill-mode: both; + position: absolute; + width: 10px; + height: 10px; + border-radius: 100%; + border: 1px solid #b8c2cc; } + .ball-triangle-path > div:nth-of-type(1) { + top: 50px; } + .ball-triangle-path > div:nth-of-type(2) { + left: 25px; } + .ball-triangle-path > div:nth-of-type(3) { + top: 50px; + left: 50px; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-pulse-rise-even { + 0% { + transform: scale(1.1); } + 25% { + transform: translateY(-30px); } + 50% { + transform: scale(0.4); } + 75% { + transform: translateY(30px); } + 100% { + transform: translateY(0); + transform: scale(1); } } + +@keyframes ball-pulse-rise-odd { + 0% { + transform: scale(0.4); } + 25% { + transform: translateY(30px); } + 50% { + transform: scale(1.1); } + 75% { + transform: translateY(-30px); } + 100% { + transform: translateY(0); + transform: scale(0.75); } } + +.ball-pulse-rise > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + animation-duration: 1s; + animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6); + animation-iteration-count: infinite; + animation-delay: 0; } + .ball-pulse-rise > div:nth-child(2n) { + animation-name: ball-pulse-rise-even; } + .ball-pulse-rise > div:nth-child(2n-1) { + animation-name: ball-pulse-rise-odd; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-grid-beat { + 50% { + opacity: 0.7; } + 100% { + opacity: 1; } } + +.ball-grid-beat { + width: 57px; } + .ball-grid-beat > div:nth-child(1) { + animation-delay: 0.46s; + animation-duration: 1.36s; } + .ball-grid-beat > div:nth-child(2) { + animation-delay: 0.67s; + animation-duration: 0.71s; } + .ball-grid-beat > div:nth-child(3) { + animation-delay: 0.35s; + animation-duration: 1.51s; } + .ball-grid-beat > div:nth-child(4) { + animation-delay: 0.3s; + animation-duration: 1.06s; } + .ball-grid-beat > div:nth-child(5) { + animation-delay: -0.01s; + animation-duration: 1.59s; } + .ball-grid-beat > div:nth-child(6) { + animation-delay: 0.57s; + animation-duration: 1.14s; } + .ball-grid-beat > div:nth-child(7) { + animation-delay: 0.53s; + animation-duration: 1s; } + .ball-grid-beat > div:nth-child(8) { + animation-delay: 0.01s; + animation-duration: 1s; } + .ball-grid-beat > div:nth-child(9) { + animation-delay: 0.13s; + animation-duration: 0.96s; } + .ball-grid-beat > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + float: left; + animation-name: ball-grid-beat; + animation-iteration-count: infinite; + animation-delay: 0; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-grid-pulse { + 0% { + transform: scale(1); } + 50% { + transform: scale(0.5); + opacity: 0.7; } + 100% { + transform: scale(1); + opacity: 1; } } + +.ball-grid-pulse { + width: 57px; } + .ball-grid-pulse > div:nth-child(1) { + animation-delay: 0.63s; + animation-duration: 1.43s; } + .ball-grid-pulse > div:nth-child(2) { + animation-delay: 0.29s; + animation-duration: 0.64s; } + .ball-grid-pulse > div:nth-child(3) { + animation-delay: 0.35s; + animation-duration: 1.47s; } + .ball-grid-pulse > div:nth-child(4) { + animation-delay: 0.21s; + animation-duration: 1.38s; } + .ball-grid-pulse > div:nth-child(5) { + animation-delay: 0.24s; + animation-duration: 0.62s; } + .ball-grid-pulse > div:nth-child(6) { + animation-delay: 0.37s; + animation-duration: 0.92s; } + .ball-grid-pulse > div:nth-child(7) { + animation-delay: 0.48s; + animation-duration: 0.96s; } + .ball-grid-pulse > div:nth-child(8) { + animation-delay: -0.1s; + animation-duration: 1s; } + .ball-grid-pulse > div:nth-child(9) { + animation-delay: 0.52s; + animation-duration: 1.36s; } + .ball-grid-pulse > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + float: left; + animation-name: ball-grid-pulse; + animation-iteration-count: infinite; + animation-delay: 0; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-spin-fade-loader { + 50% { + opacity: 0.3; + transform: scale(0.4); } + 100% { + opacity: 1; + transform: scale(1); } } + +.ball-spin-fade-loader { + position: relative; + top: -10px; + left: -10px; } + .ball-spin-fade-loader > div:nth-child(1) { + top: 25px; + left: 0; + animation: ball-spin-fade-loader 1s -0.96s infinite linear; } + .ball-spin-fade-loader > div:nth-child(2) { + top: 17.04545px; + left: 17.04545px; + animation: ball-spin-fade-loader 1s -0.84s infinite linear; } + .ball-spin-fade-loader > div:nth-child(3) { + top: 0; + left: 25px; + animation: ball-spin-fade-loader 1s -0.72s infinite linear; } + .ball-spin-fade-loader > div:nth-child(4) { + top: -17.04545px; + left: 17.04545px; + animation: ball-spin-fade-loader 1s -0.6s infinite linear; } + .ball-spin-fade-loader > div:nth-child(5) { + top: -25px; + left: 0; + animation: ball-spin-fade-loader 1s -0.48s infinite linear; } + .ball-spin-fade-loader > div:nth-child(6) { + top: -17.04545px; + left: -17.04545px; + animation: ball-spin-fade-loader 1s -0.36s infinite linear; } + .ball-spin-fade-loader > div:nth-child(7) { + top: 0; + left: -25px; + animation: ball-spin-fade-loader 1s -0.24s infinite linear; } + .ball-spin-fade-loader > div:nth-child(8) { + top: 17.04545px; + left: -17.04545px; + animation: ball-spin-fade-loader 1s -0.12s infinite linear; } + .ball-spin-fade-loader > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + position: absolute; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-spin-loader { + 75% { + opacity: 0.2; } + 100% { + opacity: 1; } } + +.ball-spin-loader { + position: relative; } + .ball-spin-loader > span:nth-child(1) { + top: 45px; + left: 0; + animation: ball-spin-loader 2s 0.9s infinite linear; } + .ball-spin-loader > span:nth-child(2) { + top: 30.68182px; + left: 30.68182px; + animation: ball-spin-loader 2s 1.8s infinite linear; } + .ball-spin-loader > span:nth-child(3) { + top: 0; + left: 45px; + animation: ball-spin-loader 2s 2.7s infinite linear; } + .ball-spin-loader > span:nth-child(4) { + top: -30.68182px; + left: 30.68182px; + animation: ball-spin-loader 2s 3.6s infinite linear; } + .ball-spin-loader > span:nth-child(5) { + top: -45px; + left: 0; + animation: ball-spin-loader 2s 4.5s infinite linear; } + .ball-spin-loader > span:nth-child(6) { + top: -30.68182px; + left: -30.68182px; + animation: ball-spin-loader 2s 5.4s infinite linear; } + .ball-spin-loader > span:nth-child(7) { + top: 0; + left: -45px; + animation: ball-spin-loader 2s 6.3s infinite linear; } + .ball-spin-loader > span:nth-child(8) { + top: 30.68182px; + left: -30.68182px; + animation: ball-spin-loader 2s 7.2s infinite linear; } + .ball-spin-loader > div { + animation-fill-mode: both; + position: absolute; + width: 15px; + height: 15px; + border-radius: 100%; + background: green; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-zig { + 33% { + transform: translate(-15px, -30px); } + 66% { + transform: translate(15px, -30px); } + 100% { + transform: translate(0, 0); } } + +@keyframes ball-zag { + 33% { + transform: translate(15px, 30px); } + 66% { + transform: translate(-15px, 30px); } + 100% { + transform: translate(0, 0); } } + +.ball-zig-zag { + position: relative; + transform: translate(-15px, -15px); } + .ball-zig-zag > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + position: absolute; + margin-left: 15px; + top: 4px; + left: -7px; } + .ball-zig-zag > div:first-child { + animation: ball-zig 0.7s 0s infinite linear; } + .ball-zig-zag > div:last-child { + animation: ball-zag 0.7s 0s infinite linear; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes ball-zig-deflect { + 17% { + transform: translate(-15px, -30px); } + 34% { + transform: translate(15px, -30px); } + 50% { + transform: translate(0, 0); } + 67% { + transform: translate(15px, -30px); } + 84% { + transform: translate(-15px, -30px); } + 100% { + transform: translate(0, 0); } } + +@keyframes ball-zag-deflect { + 17% { + transform: translate(15px, 30px); } + 34% { + transform: translate(-15px, 30px); } + 50% { + transform: translate(0, 0); } + 67% { + transform: translate(-15px, 30px); } + 84% { + transform: translate(15px, 30px); } + 100% { + transform: translate(0, 0); } } + +.ball-zig-zag-deflect { + position: relative; + transform: translate(-15px, -15px); } + .ball-zig-zag-deflect > div { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + animation-fill-mode: both; + position: absolute; + margin-left: 15px; + top: 4px; + left: -7px; } + .ball-zig-zag-deflect > div:first-child { + animation: ball-zig-deflect 1.5s 0s infinite linear; } + .ball-zig-zag-deflect > div:last-child { + animation: ball-zag-deflect 1.5s 0s infinite linear; } + +/** + * Lines + */ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes line-scale { + 0% { + transform: scaley(1); } + 50% { + transform: scaley(0.4); } + 100% { + transform: scaley(1); } } + +.line-scale > div:nth-child(1) { + animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.line-scale > div:nth-child(2) { + animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.line-scale > div:nth-child(3) { + animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.line-scale > div:nth-child(4) { + animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.line-scale > div:nth-child(5) { + animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); } + +.line-scale > div { + background-color: #b8c2cc; + width: 4px; + height: 3.45rem; + border-radius: 2px; + margin: 2px; + animation-fill-mode: both; + display: inline-block; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes line-scale-party { + 0% { + transform: scale(1); } + 50% { + transform: scale(0.5); } + 100% { + transform: scale(1); } } + +.line-scale-party > div:nth-child(1) { + animation-delay: 0.64s; + animation-duration: 0.76s; } + +.line-scale-party > div:nth-child(2) { + animation-delay: -0.14s; + animation-duration: 0.78s; } + +.line-scale-party > div:nth-child(3) { + animation-delay: -0.11s; + animation-duration: 0.76s; } + +.line-scale-party > div:nth-child(4) { + animation-delay: 0.21s; + animation-duration: 1.23s; } + +.line-scale-party > div { + background-color: #b8c2cc; + width: 4px; + height: 3.45rem; + border-radius: 2px; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + animation-name: line-scale-party; + animation-iteration-count: infinite; + animation-delay: 0; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes line-scale-pulse-out { + 0% { + transform: scaley(1); } + 50% { + transform: scaley(0.4); } + 100% { + transform: scaley(1); } } + +.line-scale-pulse-out > div { + background-color: #b8c2cc; + width: 4px; + height: 3.45rem; + border-radius: 2px; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85); } + .line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) { + animation-delay: -0.4s !important; } + .line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) { + animation-delay: -0.2s !important; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes line-scale-pulse-out-rapid { + 0% { + transform: scaley(1); } + 80% { + transform: scaley(0.3); } + 90% { + transform: scaley(1); } } + +.line-scale-pulse-out-rapid > div { + background-color: #b8c2cc; + width: 4px; + height: 3.45rem; + border-radius: 2px; + margin: 2px; + animation-fill-mode: both; + display: inline-block; + vertical-align: middle; + animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78); } + .line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) { + animation-delay: -0.25s !important; } + .line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) { + animation-delay: 0s !important; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes line-spin-fade-loader { + 50% { + opacity: 0.3; } + 100% { + opacity: 1; } } + +.line-spin-fade-loader { + position: relative; + top: -10px; + left: -4px; } + .line-spin-fade-loader > div:nth-child(1) { + top: 20px; + left: 0; + animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(2) { + top: 13.63636px; + left: 13.63636px; + transform: rotate(-45deg); + animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(3) { + top: 0; + left: 20px; + transform: rotate(90deg); + animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(4) { + top: -13.63636px; + left: 13.63636px; + transform: rotate(45deg); + animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(5) { + top: -20px; + left: 0; + animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(6) { + top: -13.63636px; + left: -13.63636px; + transform: rotate(-45deg); + animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(7) { + top: 0; + left: -20px; + transform: rotate(90deg); + animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out; } + .line-spin-fade-loader > div:nth-child(8) { + top: 13.63636px; + left: -13.63636px; + transform: rotate(45deg); + animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out; } + .line-spin-fade-loader > div { + background-color: #b8c2cc; + width: 4px; + height: 3.45rem; + border-radius: 2px; + margin: 2px; + animation-fill-mode: both; + position: absolute; + width: 5px; + height: 15px; } + +/** + * Misc + */ +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes triangle-skew-spin { + 25% { + transform: perspective(100px) rotateX(180deg) rotateY(0); } + 50% { + transform: perspective(100px) rotateX(180deg) rotateY(180deg); } + 75% { + transform: perspective(100px) rotateX(0) rotateY(180deg); } + 100% { + transform: perspective(100px) rotateX(0) rotateY(0); } } + +.triangle-skew-spin > div { + animation-fill-mode: both; + width: 0; + height: 0; + border-left: 20px solid transparent; + border-right: 20px solid transparent; + border-bottom: 20px solid #b8c2cc; + animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes square-spin { + 25% { + transform: perspective(100px) rotateX(180deg) rotateY(0); } + 50% { + transform: perspective(100px) rotateX(180deg) rotateY(180deg); } + 75% { + transform: perspective(100px) rotateX(0) rotateY(180deg); } + 100% { + transform: perspective(100px) rotateX(0) rotateY(0); } } + +.square-spin > div { + animation-fill-mode: both; + width: 50px; + height: 50px; + background: #b8c2cc; + animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes rotate_pacman_half_up { + 0% { + transform: rotate(270deg); } + 50% { + transform: rotate(360deg); } + 100% { + transform: rotate(270deg); } } + +@keyframes rotate_pacman_half_down { + 0% { + transform: rotate(90deg); } + 50% { + transform: rotate(0deg); } + 100% { + transform: rotate(90deg); } } + +@keyframes pacman-balls { + 75% { + opacity: 0.7; } + 100% { + transform: translate(-100px, -6.25px); } } + +.pacman { + position: relative; } + .pacman > div:nth-child(2) { + animation: pacman-balls 1s -0.99s infinite linear; } + .pacman > div:nth-child(3) { + animation: pacman-balls 1s -0.66s infinite linear; } + .pacman > div:nth-child(4) { + animation: pacman-balls 1s -0.33s infinite linear; } + .pacman > div:nth-child(5) { + animation: pacman-balls 1s 0s infinite linear; } + .pacman > div:first-of-type { + width: 0px; + height: 0px; + border-right: 25px solid transparent; + border-top: 25px solid #b8c2cc; + border-left: 25px solid #b8c2cc; + border-bottom: 25px solid #b8c2cc; + border-radius: 25px; + animation: rotate_pacman_half_up 0.5s 0s infinite; + position: relative; + left: -30px; } + .pacman > div:nth-child(2) { + width: 0px; + height: 0px; + border-right: 25px solid transparent; + border-top: 25px solid #b8c2cc; + border-left: 25px solid #b8c2cc; + border-bottom: 25px solid #b8c2cc; + border-radius: 25px; + animation: rotate_pacman_half_down 0.5s 0s infinite; + margin-top: -50px; + position: relative; + left: -30px; } + .pacman > div:nth-child(3), + .pacman > div:nth-child(4), + .pacman > div:nth-child(5), + .pacman > div:nth-child(6) { + background-color: #b8c2cc; + width: 15px; + height: 15px; + border-radius: 100%; + margin: 2px; + width: 10px; + height: 10px; + position: absolute; + transform: translate(0, -6.25px); + top: 25px; + left: 70px; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes cube-transition { + 25% { + transform: translateX(50px) scale(0.5) rotate(-90deg); } + 50% { + transform: translate(50px, 50px) rotate(-180deg); } + 75% { + transform: translateY(50px) scale(0.5) rotate(-270deg); } + 100% { + transform: rotate(-360deg); } } + +.cube-transition { + position: relative; + transform: translate(-25px, -25px); } + .cube-transition > div { + animation-fill-mode: both; + width: 10px; + height: 10px; + position: absolute; + top: -5px; + left: -5px; + background-color: #b8c2cc; + animation: cube-transition 1.6s 0s infinite ease-in-out; } + .cube-transition > div:last-child { + animation-delay: -0.8s; } + +/*======================================================== + DARK LAYOUT +=========================================================*/ +@keyframes spin-rotate { + 0% { + transform: rotate(0deg); } + 50% { + transform: rotate(180deg); } + 100% { + transform: rotate(360deg); } } + +.semi-circle-spin { + position: relative; + width: 35px; + height: 35px; + overflow: hidden; } + .semi-circle-spin > div { + position: absolute; + border-width: 0px; + border-radius: 100%; + animation: spin-rotate 0.6s 0s infinite linear; + background-image: linear-gradient(transparent 0%, transparent 70%, #b8c2cc 30%, #b8c2cc 100%); + width: 100%; + height: 100%; } + +.loader-wrapper { + position: relative; } + +.loader-container { + margin: 0; + position: absolute; + top: 50%; + left: 50%; + margin-right: -50%; + transform: translate(-50%, -50%); } + +#preloader-wrapper { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1050; } + +#preloader-wrapper .loader-section { + position: fixed; + width: 100%; + height: 51%; + background: #222222; + z-index: 1050; } + +#preloader-wrapper .loader-section.section-top { + top: 0; } + +#preloader-wrapper .loader-section.section-bottom { + bottom: 0; } + +#loader { + display: block; + position: absolute; + left: 50%; + top: 50%; + width: 60px; + height: 60px; + margin-right: -50%; + transform: translate(-50%, -50%); + z-index: 1051; + /* anything higher than z-index: 1000 of .loader-section */ } + +/* Loaded */ +.loaded #preloader-wrapper .loader-section.section-top { + -webkit-transform: translateY(-100%); + /* Chrome, Opera 15+, Safari 3.1+ */ + -ms-transform: translateY(-100%); + /* IE 9 */ + transform: translateY(-100%); + /* Firefox 16+, IE 10+, Opera */ } + +.loaded #preloader-wrapper .loader-section.section-bottom { + -webkit-transform: translateY(100%); + /* Chrome, Opera 15+, Safari 3.1+ */ + -ms-transform: translateY(100%); + /* IE 9 */ + transform: translateY(100%); + /* Firefox 16+, IE 10+, Opera */ } + +.loaded #loader { + opacity: 0; } + +.loaded #preloader-wrapper { + visibility: hidden; } + +.loaded #loader { + opacity: 0; + -webkit-transition: all 0.3s ease-out; + transition: all 0.3s ease-out; } + +.loaded #preloader-wrapper .loader-section.section-bottom, +.loaded #preloader-wrapper .loader-section.section-top { + -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } diff --git a/assets/css/plugins/loaders/loaders.min.css b/assets/css/plugins/loaders/loaders.min.css new file mode 100644 index 0000000..cec9e25 --- /dev/null +++ b/assets/css/plugins/loaders/loaders.min.css @@ -0,0 +1 @@ +.double-bounce{width:40px;height:40px;position:relative;margin:40px auto}.double-bounce .child{width:100%;height:100%;border-radius:50%;background-color:#333;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:doubleBounce 2s infinite ease-in-out;animation:doubleBounce 2s infinite ease-in-out}.double-bounce .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes doubleBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes doubleBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}.chasing-dots{width:40px;height:40px;position:relative;text-align:center;-webkit-animation:chasingDotsRotate 2s infinite linear;animation:chasingDotsRotate 2s infinite linear}.chasing-dots .child{width:60%;height:60%;display:inline-block;position:absolute;top:0;background-color:#333;border-radius:100%;-webkit-animation:chasingDotsBounce 2s infinite ease-in-out;animation:chasingDotsBounce 2s infinite ease-in-out}.chasing-dots .dot2{top:auto;bottom:0;-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes chasingDotsRotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes chasingDotsRotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes chasingDotsBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes chasingDotsBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}.cube-grid{width:40px;height:40px;margin:40px auto}.cube-grid .cube{width:33.33%;height:33.33%;background-color:#333;float:left;-webkit-animation:cubeGridScaleDelay 1.3s infinite ease-in-out;animation:cubeGridScaleDelay 1.3s infinite ease-in-out}.cube-grid .cube1{-webkit-animation-delay:.2s;animation-delay:.2s}.cube-grid .cube2{-webkit-animation-delay:.3s;animation-delay:.3s}.cube-grid .cube3{-webkit-animation-delay:.4s;animation-delay:.4s}.cube-grid .cube4{-webkit-animation-delay:.1s;animation-delay:.1s}.cube-grid .cube5{-webkit-animation-delay:.2s;animation-delay:.2s}.cube-grid .cube6{-webkit-animation-delay:.3s;animation-delay:.3s}.cube-grid .cube7{-webkit-animation-delay:0ms;animation-delay:0ms}.cube-grid .cube8{-webkit-animation-delay:.1s;animation-delay:.1s}.cube-grid .cube9{-webkit-animation-delay:.2s;animation-delay:.2s}@-webkit-keyframes cubeGridScaleDelay{0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}}@keyframes cubeGridScaleDelay{0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}}.fading-circle{margin:40px auto;width:40px;height:40px;position:relative}.fading-circle .circle{width:100%;height:100%;position:absolute;left:0;top:0}.fading-circle .circle:before{content:'';display:block;margin:0 auto;width:15%;height:15%;background-color:#333;border-radius:100%;-webkit-animation:circleFadeDelay 1.2s infinite ease-in-out both;animation:circleFadeDelay 1.2s infinite ease-in-out both}.fading-circle .circle2{-webkit-transform:rotate(30deg);-ms-transform:rotate(30deg);transform:rotate(30deg)}.fading-circle .circle2:before{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}.fading-circle .circle3{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg)}.fading-circle .circle3:before{-webkit-animation-delay:-1s;animation-delay:-1s}.fading-circle .circle4{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fading-circle .circle4:before{-webkit-animation-delay:-.9s;animation-delay:-.9s}.fading-circle .circle5{-webkit-transform:rotate(120deg);-ms-transform:rotate(120deg);transform:rotate(120deg)}.fading-circle .circle5:before{-webkit-animation-delay:-.8s;animation-delay:-.8s}.fading-circle .circle6{-webkit-transform:rotate(150deg);-ms-transform:rotate(150deg);transform:rotate(150deg)}.fading-circle .circle6:before{-webkit-animation-delay:-.7s;animation-delay:-.7s}.fading-circle .circle7{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fading-circle .circle7:before{-webkit-animation-delay:-.6s;animation-delay:-.6s}.fading-circle .circle8{-webkit-transform:rotate(210deg);-ms-transform:rotate(210deg);transform:rotate(210deg)}.fading-circle .circle8:before{-webkit-animation-delay:-.5s;animation-delay:-.5s}.fading-circle .circle9{-webkit-transform:rotate(240deg);-ms-transform:rotate(240deg);transform:rotate(240deg)}.fading-circle .circle9:before{-webkit-animation-delay:-.4s;animation-delay:-.4s}.fading-circle .circle10{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fading-circle .circle10:before{-webkit-animation-delay:-.3s;animation-delay:-.3s}.fading-circle .circle11{-webkit-transform:rotate(300deg);-ms-transform:rotate(300deg);transform:rotate(300deg)}.fading-circle .circle11:before{-webkit-animation-delay:-.2s;animation-delay:-.2s}.fading-circle .circle12{-webkit-transform:rotate(330deg);-ms-transform:rotate(330deg);transform:rotate(330deg)}.fading-circle .circle12:before{-webkit-animation-delay:-.1s;animation-delay:-.1s}@-webkit-keyframes circleFadeDelay{0%,100%,39%{opacity:0}40%{opacity:1}}@keyframes circleFadeDelay{0%,100%,39%{opacity:0}40%{opacity:1}}.folding-cube{width:40px;height:40px;position:relative;-webkit-transform:rotateZ(45deg);-ms-transform:rotate(45deg);transform:rotateZ(45deg)}.folding-cube .cube{float:left;width:50%;height:50%;position:relative;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.folding-cube .cube:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:#333;-webkit-animation:foldCubeAngle 2.4s infinite linear both;animation:foldCubeAngle 2.4s infinite linear both;-webkit-transform-origin:100% 100%;-ms-transform-origin:100% 100%;transform-origin:100% 100%}.ball-pulse-sync>div,.ball-pulse>div,.ball-scale-random>div,.ball-scale>div{background-color:#B8C2CC;border-radius:100%;margin:2px;display:inline-block}.folding-cube .cube2{-webkit-transform:scale(1.1) rotateZ(90deg);-ms-transform:scale(1.1) rotate(90deg);transform:scale(1.1) rotateZ(90deg)}.folding-cube .cube2:before{-webkit-animation-delay:.3s;animation-delay:.3s}.folding-cube .cube3{-webkit-transform:scale(1.1) rotateZ(180deg);-ms-transform:scale(1.1) rotate(180deg);transform:scale(1.1) rotateZ(180deg)}.folding-cube .cube3:before{-webkit-animation-delay:.6s;animation-delay:.6s}.folding-cube .cube4{-webkit-transform:scale(1.1) rotateZ(270deg);-ms-transform:scale(1.1) rotate(270deg);transform:scale(1.1) rotateZ(270deg)}.folding-cube .cube4:before{-webkit-animation-delay:.9s;animation-delay:.9s}@-webkit-keyframes foldCubeAngle{0%,10%{-webkit-transform:perspective(140px) rotateX(-180deg);transform:perspective(140px) rotateX(-180deg);opacity:0}25%,75%{-webkit-transform:perspective(140px) rotateX(0);transform:perspective(140px) rotateX(0);opacity:1}100%,90%{-webkit-transform:perspective(140px) rotateY(180deg);transform:perspective(140px) rotateY(180deg);opacity:0}}@keyframes foldCubeAngle{0%,10%{-webkit-transform:perspective(140px) rotateX(-180deg);transform:perspective(140px) rotateX(-180deg);opacity:0}25%,75%{-webkit-transform:perspective(140px) rotateX(0);transform:perspective(140px) rotateX(0);opacity:1}100%,90%{-webkit-transform:perspective(140px) rotateY(180deg);transform:perspective(140px) rotateY(180deg);opacity:0}}@-webkit-keyframes scale{0%,80%{-webkit-transform:scale(1);transform:scale(1);opacity:1}45%{-webkit-transform:scale(.1);transform:scale(.1);opacity:.7}}@keyframes scale{0%,80%{-webkit-transform:scale(1);transform:scale(1);opacity:1}45%{-webkit-transform:scale(.1);transform:scale(.1);opacity:.7}}.ball-pulse>div:nth-child(1){-webkit-animation:scale .75s -.24s infinite cubic-bezier(.2,.68,.18,1.08);animation:scale .75s -.24s infinite cubic-bezier(.2,.68,.18,1.08)}.ball-pulse>div:nth-child(2){-webkit-animation:scale .75s -.12s infinite cubic-bezier(.2,.68,.18,1.08);animation:scale .75s -.12s infinite cubic-bezier(.2,.68,.18,1.08)}.ball-pulse>div:nth-child(3){-webkit-animation:scale .75s 0s infinite cubic-bezier(.2,.68,.18,1.08);animation:scale .75s 0s infinite cubic-bezier(.2,.68,.18,1.08)}.ball-pulse>div{width:15px;height:15px;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes ball-pulse-sync{33%{-webkit-transform:translateY(10px);transform:translateY(10px)}66%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes ball-pulse-sync{33%{-webkit-transform:translateY(10px);transform:translateY(10px)}66%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.ball-pulse-sync>div:nth-child(1){-webkit-animation:ball-pulse-sync .6s -.14s infinite ease-in-out;animation:ball-pulse-sync .6s -.14s infinite ease-in-out}.ball-pulse-sync>div:nth-child(2){-webkit-animation:ball-pulse-sync .6s -70ms infinite ease-in-out;animation:ball-pulse-sync .6s -70ms infinite ease-in-out}.ball-pulse-sync>div:nth-child(3){-webkit-animation:ball-pulse-sync .6s 0s infinite ease-in-out;animation:ball-pulse-sync .6s 0s infinite ease-in-out}.ball-pulse-sync>div{width:15px;height:15px;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}.ball-scale>div{height:60px;width:60px;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}.ball-scale-random{width:37px;height:40px}.ball-scale-random>div{position:absolute;height:30px;width:30px;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}.ball-rotate,.ball-rotate>div{position:relative}.ball-rotate>div,.ball-rotate>div:after,.ball-rotate>div:before{background-color:#B8C2CC;width:15px;height:15px;border-radius:100%}.ball-scale-random>div:nth-child(1){margin-left:-7px;-webkit-animation:ball-scale 1s .2s ease-in-out infinite;animation:ball-scale 1s .2s ease-in-out infinite}.ball-scale-random>div:nth-child(3){margin-left:-2px;margin-top:9px;-webkit-animation:ball-scale 1s .5s ease-in-out infinite;animation:ball-scale 1s .5s ease-in-out infinite}@-webkit-keyframes rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ball-rotate>div{margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both}.ball-rotate>div:first-child{-webkit-animation:rotate 1s 0s cubic-bezier(.7,-.13,.22,.86) infinite;animation:rotate 1s 0s cubic-bezier(.7,-.13,.22,.86) infinite}.ball-rotate>div:after,.ball-rotate>div:before{margin:2px;content:'';position:absolute;opacity:.8}.ball-rotate>div:before{top:0;left:-28px}.ball-rotate>div:after{top:0;left:25px}.ball-clip-rotate>div{border-radius:100%;margin:2px;border:2px solid #B8C2CC;border-bottom-color:transparent;height:25px;width:25px;background:0 0!important;display:inline-block;-webkit-animation:rotate .75s 0s linear infinite;animation:rotate .75s 0s linear infinite}@keyframes rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes scale{30%{-webkit-transform:scale(.3);transform:scale(.3)}100%{-webkit-transform:scale(1);transform:scale(1)}}.ball-clip-rotate-pulse{position:relative;-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}.ball-clip-rotate-pulse>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;top:0;left:0;border-radius:100%}.ball-clip-rotate-pulse>div:first-child{background:#B8C2CC;height:16px;width:16px;top:7px;left:-7px;-webkit-animation:scale 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;animation:scale 1s 0s cubic-bezier(.09,.57,.49,.9) infinite}.ball-clip-rotate-pulse>div:last-child{position:absolute;width:30px;height:30px;left:-16px;top:-2px;background:0 0;border:2px solid;border-color:#B8C2CC transparent;-webkit-animation:rotate 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;animation:rotate 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;-webkit-animation-duration:1s;animation-duration:1s}.ball-beat>div,.ball-scale-multiple>div{background-color:#B8C2CC;border-radius:100%}@keyframes rotate{0%{-webkit-transform:rotate(0) scale(1);transform:rotate(0) scale(1)}50%{-webkit-transform:rotate(180deg) scale(.6);transform:rotate(180deg) scale(.6)}100%{-webkit-transform:rotate(360deg) scale(1);transform:rotate(360deg) scale(1)}}.ball-clip-rotate-multiple{position:relative}.ball-clip-rotate-multiple>div{position:absolute;left:-20px;top:-20px;border:2px solid #B8C2CC;border-bottom-color:transparent;border-top-color:transparent;border-radius:100%;height:35px;width:35px;-webkit-animation:rotate 1s 0s ease-in-out infinite;animation:rotate 1s 0s ease-in-out infinite}.ball-clip-rotate-multiple>div:last-child{display:inline-block;top:-10px;left:-10px;width:15px;height:15px;-webkit-animation-duration:.5s;animation-duration:.5s;border-color:#B8C2CC transparent;animation-direction:reverse}@-webkit-keyframes ball-scale-ripple{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}100%{opacity:0}}@keyframes ball-scale-ripple{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}100%{opacity:0}}.ball-scale-ripple>div{height:50px;width:50px;border-radius:100%;border:2px solid #B8C2CC;-webkit-animation:ball-scale-ripple 1s 0s infinite cubic-bezier(.21,.53,.56,.8);animation:ball-scale-ripple 1s 0s infinite cubic-bezier(.21,.53,.56,.8)}@-webkit-keyframes ball-scale-ripple-multiple{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}100%{opacity:0}}@keyframes ball-scale-ripple-multiple{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}100%{opacity:0}}.ball-scale-ripple-multiple{position:relative;-webkit-transform:translateY(-25px);-ms-transform:translateY(-25px);transform:translateY(-25px)}.ball-scale-ripple-multiple>div:nth-child(0){-webkit-animation-delay:-.8s;animation-delay:-.8s}.ball-scale-ripple-multiple>div:nth-child(1){-webkit-animation-delay:-.6s;animation-delay:-.6s}.ball-scale-ripple-multiple>div:nth-child(2){-webkit-animation-delay:-.4s;animation-delay:-.4s}.ball-scale-ripple-multiple>div:nth-child(3){-webkit-animation-delay:-.2s;animation-delay:-.2s}.ball-scale-ripple-multiple>div{position:absolute;top:-2px;left:-26px;width:50px;height:50px;border-radius:100%;border:2px solid #B8C2CC;-webkit-animation:ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(.21,.53,.56,.8);animation:ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(.21,.53,.56,.8)}@-webkit-keyframes ball-beat{50%{opacity:.2;-webkit-transform:scale(.75);transform:scale(.75)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes ball-beat{50%{opacity:.2;-webkit-transform:scale(.75);transform:scale(.75)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.ball-beat>div{width:15px;height:15px;margin:2px;display:inline-block;-webkit-animation:ball-beat .7s 0s infinite linear;animation:ball-beat .7s 0s infinite linear}.ball-beat>div:nth-child(2n-1){-webkit-animation-delay:-.35s!important;animation-delay:-.35s!important}@-webkit-keyframes ball-scale-multiple{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}5%{opacity:1}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale-multiple{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}5%{opacity:1}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}.ball-scale-multiple{position:relative}.ball-scale-multiple>div:nth-child(2){-webkit-animation-delay:-.4s;animation-delay:-.4s}.ball-scale-multiple>div:nth-child(3){-webkit-animation-delay:-.2s;animation-delay:-.2s}.ball-scale-multiple>div{position:absolute;top:0;opacity:0;margin:0;width:60px;height:60px;-webkit-animation:ball-scale-multiple 1s 0s linear infinite;animation:ball-scale-multiple 1s 0s linear infinite}.ball-triangle-path>div:nth-child(1),.ball-triangle-path>div:nth-child(2){-webkit-animation-duration:2s;-webkit-animation-timing-function:ease-in-out;-webkit-animation-iteration-count:infinite}@-webkit-keyframes ball-triangle-path-1{33%{-webkit-transform:translate(25px,-50px);transform:translate(25px,-50px)}66%{-webkit-transform:translate(50px,0);transform:translate(50px,0)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-triangle-path-1{33%{-webkit-transform:translate(25px,-50px);transform:translate(25px,-50px)}66%{-webkit-transform:translate(50px,0);transform:translate(50px,0)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes ball-triangle-path-2{33%{-webkit-transform:translate(25px,50px);transform:translate(25px,50px)}66%{-webkit-transform:translate(-25px,50px);transform:translate(-25px,50px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-triangle-path-2{33%{-webkit-transform:translate(25px,50px);transform:translate(25px,50px)}66%{-webkit-transform:translate(-25px,50px);transform:translate(-25px,50px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes ball-triangle-path-3{33%{-webkit-transform:translate(-50px,0);transform:translate(-50px,0)}66%{-webkit-transform:translate(-25px,-50px);transform:translate(-25px,-50px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-triangle-path-3{33%{-webkit-transform:translate(-50px,0);transform:translate(-50px,0)}66%{-webkit-transform:translate(-25px,-50px);transform:translate(-25px,-50px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}.ball-triangle-path{position:relative;-webkit-transform:translate(-29.99px,-37.51px);-ms-transform:translate(-29.99px,-37.51px);transform:translate(-29.99px,-37.51px)}.ball-triangle-path>div:nth-child(1){-webkit-animation-name:ball-triangle-path-1;animation-name:ball-triangle-path-1;-webkit-animation-delay:0;animation-delay:0;animation-duration:2s;animation-timing-function:ease-in-out;animation-iteration-count:infinite}.ball-triangle-path>div:nth-child(2){-webkit-animation-name:ball-triangle-path-2;animation-name:ball-triangle-path-2;-webkit-animation-delay:0;animation-delay:0;animation-duration:2s;animation-timing-function:ease-in-out;animation-iteration-count:infinite}.ball-triangle-path>div:nth-child(3){-webkit-animation-name:ball-triangle-path-3;animation-name:ball-triangle-path-3;-webkit-animation-delay:0;animation-delay:0;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.ball-triangle-path>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;width:10px;height:10px;border-radius:100%;border:1px solid #B8C2CC}.ball-grid-beat>div,.ball-pulse-rise>div{-webkit-animation-fill-mode:both;-webkit-animation-iteration-count:infinite}.ball-grid-beat>div,.ball-grid-pulse>div,.ball-pulse-rise>div{height:15px;border-radius:100%;display:inline-block;background-color:#B8C2CC;margin:2px}.ball-triangle-path>div:nth-of-type(1){top:50px}.ball-triangle-path>div:nth-of-type(2){left:25px}.ball-triangle-path>div:nth-of-type(3){top:50px;left:50px}@-webkit-keyframes ball-pulse-rise-even{0%{-webkit-transform:scale(1.1);transform:scale(1.1)}25%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}50%{-webkit-transform:scale(.4);transform:scale(.4)}75%{-webkit-transform:translateY(30px);transform:translateY(30px)}100%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transform:scale(1);transform:scale(1)}}@keyframes ball-pulse-rise-even{0%{-webkit-transform:scale(1.1);transform:scale(1.1)}25%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}50%{-webkit-transform:scale(.4);transform:scale(.4)}75%{-webkit-transform:translateY(30px);transform:translateY(30px)}100%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes ball-pulse-rise-odd{0%{-webkit-transform:scale(.4);transform:scale(.4)}25%{-webkit-transform:translateY(30px);transform:translateY(30px)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}75%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}100%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transform:scale(.75);transform:scale(.75)}}@keyframes ball-pulse-rise-odd{0%{-webkit-transform:scale(.4);transform:scale(.4)}25%{-webkit-transform:translateY(30px);transform:translateY(30px)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}75%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}100%{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transform:scale(.75);transform:scale(.75)}}.ball-pulse-rise>div{width:15px;animation-fill-mode:both;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:cubic-bezier(.15,.46,.9,.6);animation-timing-function:cubic-bezier(.15,.46,.9,.6);animation-iteration-count:infinite;-webkit-animation-delay:0;animation-delay:0}.ball-pulse-rise>div:nth-child(2n){-webkit-animation-name:ball-pulse-rise-even;animation-name:ball-pulse-rise-even}.ball-pulse-rise>div:nth-child(2n-1){-webkit-animation-name:ball-pulse-rise-odd;animation-name:ball-pulse-rise-odd}@-webkit-keyframes ball-grid-beat{50%{opacity:.7}100%{opacity:1}}@keyframes ball-grid-beat{50%{opacity:.7}100%{opacity:1}}.ball-grid-beat{width:57px}.ball-grid-beat>div:nth-child(1){-webkit-animation-delay:.11s;animation-delay:.11s;-webkit-animation-duration:.91s;animation-duration:.91s}.ball-grid-beat>div:nth-child(2){-webkit-animation-delay:.57s;animation-delay:.57s;-webkit-animation-duration:1.3s;animation-duration:1.3s}.ball-grid-beat>div:nth-child(3){-webkit-animation-delay:.36s;animation-delay:.36s;-webkit-animation-duration:1.56s;animation-duration:1.56s}.ball-grid-beat>div:nth-child(4){-webkit-animation-delay:70ms;animation-delay:70ms;-webkit-animation-duration:.8s;animation-duration:.8s}.ball-grid-beat>div:nth-child(5){-webkit-animation-delay:.41s;animation-delay:.41s;-webkit-animation-duration:1.02s;animation-duration:1.02s}.ball-grid-beat>div:nth-child(6){-webkit-animation-delay:.79s;animation-delay:.79s;-webkit-animation-duration:1.44s;animation-duration:1.44s}.ball-grid-beat>div:nth-child(7){-webkit-animation-delay:.43s;animation-delay:.43s;-webkit-animation-duration:1.21s;animation-duration:1.21s}.ball-grid-beat>div:nth-child(8){-webkit-animation-delay:.57s;animation-delay:.57s;-webkit-animation-duration:.64s;animation-duration:.64s}.ball-grid-beat>div:nth-child(9){-webkit-animation-delay:-60ms;animation-delay:-60ms;-webkit-animation-duration:1.33s;animation-duration:1.33s}.ball-grid-beat>div{width:15px;animation-fill-mode:both;float:left;-webkit-animation-name:ball-grid-beat;animation-name:ball-grid-beat;animation-iteration-count:infinite;-webkit-animation-delay:0;animation-delay:0}@-webkit-keyframes ball-grid-pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.5);transform:scale(.5);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes ball-grid-pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.5);transform:scale(.5);opacity:.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.ball-grid-pulse{width:57px}.ball-grid-pulse>div:nth-child(1){-webkit-animation-delay:.27s;animation-delay:.27s;-webkit-animation-duration:.76s;animation-duration:.76s}.ball-grid-pulse>div:nth-child(2){-webkit-animation-delay:.73s;animation-delay:.73s;-webkit-animation-duration:1.28s;animation-duration:1.28s}.ball-grid-pulse>div:nth-child(3){-webkit-animation-delay:.54s;animation-delay:.54s;-webkit-animation-duration:.88s;animation-duration:.88s}.ball-grid-pulse>div:nth-child(4){-webkit-animation-delay:.41s;animation-delay:.41s;-webkit-animation-duration:.91s;animation-duration:.91s}.ball-grid-pulse>div:nth-child(5){-webkit-animation-delay:.19s;animation-delay:.19s;-webkit-animation-duration:.67s;animation-duration:.67s}.ball-grid-pulse>div:nth-child(6){-webkit-animation-delay:-.13s;animation-delay:-.13s;-webkit-animation-duration:1.3s;animation-duration:1.3s}.ball-grid-pulse>div:nth-child(7){-webkit-animation-delay:80ms;animation-delay:80ms;-webkit-animation-duration:1.07s;animation-duration:1.07s}.ball-grid-pulse>div:nth-child(8){-webkit-animation-delay:.63s;animation-delay:.63s;-webkit-animation-duration:.94s;animation-duration:.94s}.ball-grid-pulse>div:nth-child(9){-webkit-animation-delay:.24s;animation-delay:.24s;-webkit-animation-duration:.95s;animation-duration:.95s}.ball-grid-pulse>div{width:15px;-webkit-animation-fill-mode:both;animation-fill-mode:both;float:left;-webkit-animation-name:ball-grid-pulse;animation-name:ball-grid-pulse;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-delay:0;animation-delay:0}@-webkit-keyframes ball-spin-fade-loader{50%{opacity:.3;-webkit-transform:scale(.4);transform:scale(.4)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes ball-spin-fade-loader{50%{opacity:.3;-webkit-transform:scale(.4);transform:scale(.4)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.ball-spin-fade-loader{position:relative;top:-10px;left:-10px}.ball-spin-fade-loader>div:nth-child(1){top:25px;left:0;-webkit-animation:ball-spin-fade-loader 1s -.96s infinite linear;animation:ball-spin-fade-loader 1s -.96s infinite linear}.ball-spin-fade-loader>div:nth-child(2){top:17.05px;left:17.05px;-webkit-animation:ball-spin-fade-loader 1s -.84s infinite linear;animation:ball-spin-fade-loader 1s -.84s infinite linear}.ball-spin-fade-loader>div:nth-child(3){top:0;left:25px;-webkit-animation:ball-spin-fade-loader 1s -.72s infinite linear;animation:ball-spin-fade-loader 1s -.72s infinite linear}.ball-spin-fade-loader>div:nth-child(4){top:-17.05px;left:17.05px;-webkit-animation:ball-spin-fade-loader 1s -.6s infinite linear;animation:ball-spin-fade-loader 1s -.6s infinite linear}.ball-spin-fade-loader>div:nth-child(5){top:-25px;left:0;-webkit-animation:ball-spin-fade-loader 1s -.48s infinite linear;animation:ball-spin-fade-loader 1s -.48s infinite linear}.ball-spin-fade-loader>div:nth-child(6){top:-17.05px;left:-17.05px;-webkit-animation:ball-spin-fade-loader 1s -.36s infinite linear;animation:ball-spin-fade-loader 1s -.36s infinite linear}.ball-spin-fade-loader>div:nth-child(7){top:0;left:-25px;-webkit-animation:ball-spin-fade-loader 1s -.24s infinite linear;animation:ball-spin-fade-loader 1s -.24s infinite linear}.ball-spin-fade-loader>div:nth-child(8){top:17.05px;left:-17.05px;-webkit-animation:ball-spin-fade-loader 1s -.12s infinite linear;animation:ball-spin-fade-loader 1s -.12s infinite linear}.ball-spin-fade-loader>div,.ball-spin-loader>div{-webkit-animation-fill-mode:both;width:15px;height:15px;border-radius:100%}.ball-spin-fade-loader>div{background-color:#B8C2CC;margin:2px;animation-fill-mode:both;position:absolute}@-webkit-keyframes ball-spin-loader{75%{opacity:.2}100%{opacity:1}}@keyframes ball-spin-loader{75%{opacity:.2}100%{opacity:1}}.ball-spin-loader{position:relative}.ball-spin-loader>span:nth-child(1){top:45px;left:0;-webkit-animation:ball-spin-loader 2s .9s infinite linear;animation:ball-spin-loader 2s .9s infinite linear}.ball-spin-loader>span:nth-child(2){top:30.68px;left:30.68px;-webkit-animation:ball-spin-loader 2s 1.8s infinite linear;animation:ball-spin-loader 2s 1.8s infinite linear}.ball-spin-loader>span:nth-child(3){top:0;left:45px;-webkit-animation:ball-spin-loader 2s 2.7s infinite linear;animation:ball-spin-loader 2s 2.7s infinite linear}.ball-spin-loader>span:nth-child(4){top:-30.68px;left:30.68px;-webkit-animation:ball-spin-loader 2s 3.6s infinite linear;animation:ball-spin-loader 2s 3.6s infinite linear}.ball-spin-loader>span:nth-child(5){top:-45px;left:0;-webkit-animation:ball-spin-loader 2s 4.5s infinite linear;animation:ball-spin-loader 2s 4.5s infinite linear}.ball-spin-loader>span:nth-child(6){top:-30.68px;left:-30.68px;-webkit-animation:ball-spin-loader 2s 5.4s infinite linear;animation:ball-spin-loader 2s 5.4s infinite linear}.ball-spin-loader>span:nth-child(7){top:0;left:-45px;-webkit-animation:ball-spin-loader 2s 6.3s infinite linear;animation:ball-spin-loader 2s 6.3s infinite linear}.ball-spin-loader>span:nth-child(8){top:30.68px;left:-30.68px;-webkit-animation:ball-spin-loader 2s 7.2s infinite linear;animation:ball-spin-loader 2s 7.2s infinite linear}.ball-spin-loader>div{animation-fill-mode:both;position:absolute;background:green}.ball-zig-zag-deflect>div,.ball-zig-zag>div{background-color:#B8C2CC;width:15px;height:15px;border-radius:100%;margin:2px 2px 2px 15px;top:4px;left:-7px}@-webkit-keyframes ball-zig{33%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}66%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-zig{33%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}66%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes ball-zag{33%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}66%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-zag{33%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}66%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}100%{-webkit-transform:translate(0,0);transform:translate(0,0)}}.ball-zig-zag{position:relative;-webkit-transform:translate(-15px,-15px);-ms-transform:translate(-15px,-15px);transform:translate(-15px,-15px)}.ball-zig-zag>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute}.ball-zig-zag>div:first-child{-webkit-animation:ball-zig .7s 0s infinite linear;animation:ball-zig .7s 0s infinite linear}.ball-zig-zag>div:last-child{-webkit-animation:ball-zag .7s 0s infinite linear;animation:ball-zag .7s 0s infinite linear}@-webkit-keyframes ball-zig-deflect{17%,84%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}34%,67%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}100%,50%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-zig-deflect{17%,84%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}34%,67%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}100%,50%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes ball-zag-deflect{17%,84%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}34%,67%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}100%,50%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ball-zag-deflect{17%,84%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}34%,67%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}100%,50%{-webkit-transform:translate(0,0);transform:translate(0,0)}}.ball-zig-zag-deflect{position:relative;-webkit-transform:translate(-15px,-15px);-ms-transform:translate(-15px,-15px);transform:translate(-15px,-15px)}.ball-zig-zag-deflect>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute}.line-scale-party>div,.line-scale-pulse-out-rapid>div,.line-scale-pulse-out>div,.line-scale>div{width:4px;height:3.45rem;display:inline-block}.line-scale-party>div,.line-scale-pulse-out-rapid>div,.line-scale-pulse-out>div,.line-scale>div,.line-spin-fade-loader>div{border-radius:2px;margin:2px;background-color:#B8C2CC}.ball-zig-zag-deflect>div:first-child{-webkit-animation:ball-zig-deflect 1.5s 0s infinite linear;animation:ball-zig-deflect 1.5s 0s infinite linear}.ball-zig-zag-deflect>div:last-child{-webkit-animation:ball-zag-deflect 1.5s 0s infinite linear;animation:ball-zag-deflect 1.5s 0s infinite linear}@-webkit-keyframes line-scale{0%,100%{-webkit-transform:scaley(1);transform:scaley(1)}50%{-webkit-transform:scaley(.4);transform:scaley(.4)}}@keyframes line-scale{0%,100%{-webkit-transform:scaley(1);transform:scaley(1)}50%{-webkit-transform:scaley(.4);transform:scaley(.4)}}.line-scale>div:nth-child(1){-webkit-animation:line-scale 1s -.4s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s -.4s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div:nth-child(2){-webkit-animation:line-scale 1s -.3s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s -.3s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div:nth-child(3){-webkit-animation:line-scale 1s -.2s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s -.2s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div:nth-child(4){-webkit-animation:line-scale 1s -.1s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s -.1s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div:nth-child(5){-webkit-animation:line-scale 1s 0s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s 0s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div{-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes line-scale-party{0%,100%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.5);transform:scale(.5)}}@keyframes line-scale-party{0%,100%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.5);transform:scale(.5)}}.line-scale-party>div:nth-child(1){-webkit-animation-delay:.62s;animation-delay:.62s;-webkit-animation-duration:.52s;animation-duration:.52s}.line-scale-party>div:nth-child(2){-webkit-animation-delay:.38s;animation-delay:.38s;-webkit-animation-duration:.48s;animation-duration:.48s}.line-scale-party>div:nth-child(3){-webkit-animation-delay:-30ms;animation-delay:-30ms;-webkit-animation-duration:1.01s;animation-duration:1.01s}.line-scale-party>div:nth-child(4){-webkit-animation-delay:-.17s;animation-delay:-.17s;-webkit-animation-duration:1.23s;animation-duration:1.23s}.line-scale-party>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-name:line-scale-party;animation-name:line-scale-party;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-delay:0;animation-delay:0}@-webkit-keyframes line-scale-pulse-out{0%,100%{-webkit-transform:scaley(1);transform:scaley(1)}50%{-webkit-transform:scaley(.4);transform:scaley(.4)}}@keyframes line-scale-pulse-out{0%,100%{-webkit-transform:scaley(1);transform:scaley(1)}50%{-webkit-transform:scaley(.4);transform:scaley(.4)}}.line-scale-pulse-out>div{-webkit-animation:line-scale-pulse-out .9s -.6s infinite cubic-bezier(.85,.25,.37,.85);animation:line-scale-pulse-out .9s -.6s infinite cubic-bezier(.85,.25,.37,.85)}.line-scale-pulse-out>div:nth-child(2),.line-scale-pulse-out>div:nth-child(4){-webkit-animation-delay:-.4s!important;animation-delay:-.4s!important}.line-scale-pulse-out>div:nth-child(1),.line-scale-pulse-out>div:nth-child(5){-webkit-animation-delay:-.2s!important;animation-delay:-.2s!important}@-webkit-keyframes line-scale-pulse-out-rapid{0%,90%{-webkit-transform:scaley(1);transform:scaley(1)}80%{-webkit-transform:scaley(.3);transform:scaley(.3)}}@keyframes line-scale-pulse-out-rapid{0%,90%{-webkit-transform:scaley(1);transform:scaley(1)}80%{-webkit-transform:scaley(.3);transform:scaley(.3)}}.line-scale-pulse-out-rapid>div{vertical-align:middle;-webkit-animation:line-scale-pulse-out-rapid .9s -.5s infinite cubic-bezier(.11,.49,.38,.78);animation:line-scale-pulse-out-rapid .9s -.5s infinite cubic-bezier(.11,.49,.38,.78)}.line-scale-pulse-out-rapid>div:nth-child(2),.line-scale-pulse-out-rapid>div:nth-child(4){-webkit-animation-delay:-.25s!important;animation-delay:-.25s!important}.line-scale-pulse-out-rapid>div:nth-child(1),.line-scale-pulse-out-rapid>div:nth-child(5){-webkit-animation-delay:0s!important;animation-delay:0s!important}@-webkit-keyframes line-spin-fade-loader{50%{opacity:.3}100%{opacity:1}}@keyframes line-spin-fade-loader{50%{opacity:.3}100%{opacity:1}}.line-spin-fade-loader{position:relative;top:-10px;left:-4px}.line-spin-fade-loader>div:nth-child(1){top:20px;left:0;-webkit-animation:line-spin-fade-loader 1.2s -.84s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.84s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(2){top:13.64px;left:13.64px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-animation:line-spin-fade-loader 1.2s -.72s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.72s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(3){top:0;left:20px;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-animation:line-spin-fade-loader 1.2s -.6s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.6s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(4){top:-13.64px;left:13.64px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-animation:line-spin-fade-loader 1.2s -.48s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.48s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(5){top:-20px;left:0;-webkit-animation:line-spin-fade-loader 1.2s -.36s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.36s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(6){top:-13.64px;left:-13.64px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-animation:line-spin-fade-loader 1.2s -.24s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.24s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(7){top:0;left:-20px;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-animation:line-spin-fade-loader 1.2s -.12s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.12s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(8){top:13.64px;left:-13.64px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-animation:line-spin-fade-loader 1.2s 0s infinite ease-in-out;animation:line-spin-fade-loader 1.2s 0s infinite ease-in-out}.line-spin-fade-loader>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;width:5px;height:15px}@-webkit-keyframes triangle-skew-spin{25%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(0);transform:perspective(100px) rotateX(180deg) rotateY(0)}50%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(180deg);transform:perspective(100px) rotateX(180deg) rotateY(180deg)}75%{-webkit-transform:perspective(100px) rotateX(0) rotateY(180deg);transform:perspective(100px) rotateX(0) rotateY(180deg)}100%{-webkit-transform:perspective(100px) rotateX(0) rotateY(0);transform:perspective(100px) rotateX(0) rotateY(0)}}@keyframes triangle-skew-spin{25%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(0);transform:perspective(100px) rotateX(180deg) rotateY(0)}50%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(180deg);transform:perspective(100px) rotateX(180deg) rotateY(180deg)}75%{-webkit-transform:perspective(100px) rotateX(0) rotateY(180deg);transform:perspective(100px) rotateX(0) rotateY(180deg)}100%{-webkit-transform:perspective(100px) rotateX(0) rotateY(0);transform:perspective(100px) rotateX(0) rotateY(0)}}.triangle-skew-spin>div{width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-bottom:20px solid #B8C2CC;-webkit-animation:triangle-skew-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite;animation:triangle-skew-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite}@-webkit-keyframes square-spin{25%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(0);transform:perspective(100px) rotateX(180deg) rotateY(0)}50%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(180deg);transform:perspective(100px) rotateX(180deg) rotateY(180deg)}75%{-webkit-transform:perspective(100px) rotateX(0) rotateY(180deg);transform:perspective(100px) rotateX(0) rotateY(180deg)}100%{-webkit-transform:perspective(100px) rotateX(0) rotateY(0);transform:perspective(100px) rotateX(0) rotateY(0)}}@keyframes square-spin{25%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(0);transform:perspective(100px) rotateX(180deg) rotateY(0)}50%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(180deg);transform:perspective(100px) rotateX(180deg) rotateY(180deg)}75%{-webkit-transform:perspective(100px) rotateX(0) rotateY(180deg);transform:perspective(100px) rotateX(0) rotateY(180deg)}100%{-webkit-transform:perspective(100px) rotateX(0) rotateY(0);transform:perspective(100px) rotateX(0) rotateY(0)}}.square-spin>div{width:50px;height:50px;background:#B8C2CC;-webkit-animation:square-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite;animation:square-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite}.pacman>div:first-of-type,.pacman>div:nth-child(2){width:0;height:0;border-right:25px solid transparent;border-top:25px solid #B8C2CC;border-left:25px solid #B8C2CC;border-bottom:25px solid #B8C2CC;border-radius:25px;position:relative;left:-30px}@-webkit-keyframes rotate_pacman_half_up{0%,100%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}50%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate_pacman_half_up{0%,100%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}50%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes rotate_pacman_half_down{0%,100%{-webkit-transform:rotate(90deg);transform:rotate(90deg)}50%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes rotate_pacman_half_down{0%,100%{-webkit-transform:rotate(90deg);transform:rotate(90deg)}50%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes pacman-balls{75%{opacity:.7}100%{-webkit-transform:translate(-100px,-6.25px);transform:translate(-100px,-6.25px)}}@keyframes pacman-balls{75%{opacity:.7}100%{-webkit-transform:translate(-100px,-6.25px);transform:translate(-100px,-6.25px)}}.pacman{position:relative}.pacman>div:nth-child(3){-webkit-animation:pacman-balls 1s -.66s infinite linear;animation:pacman-balls 1s -.66s infinite linear}.pacman>div:nth-child(4){-webkit-animation:pacman-balls 1s -.33s infinite linear;animation:pacman-balls 1s -.33s infinite linear}.pacman>div:nth-child(5){-webkit-animation:pacman-balls 1s 0s infinite linear;animation:pacman-balls 1s 0s infinite linear}.pacman>div:first-of-type{-webkit-animation:rotate_pacman_half_up .5s 0s infinite;animation:rotate_pacman_half_up .5s 0s infinite}.pacman>div:nth-child(2){-webkit-animation:rotate_pacman_half_down .5s 0s infinite;animation:rotate_pacman_half_down .5s 0s infinite;margin-top:-50px}.pacman>div:nth-child(3),.pacman>div:nth-child(4),.pacman>div:nth-child(5),.pacman>div:nth-child(6){background-color:#B8C2CC;border-radius:100%;margin:2px;width:10px;height:10px;position:absolute;-webkit-transform:translate(0,-6.25px);-ms-transform:translate(0,-6.25px);transform:translate(0,-6.25px);top:25px;left:70px}@-webkit-keyframes cube-transition{25%{-webkit-transform:translateX(50px) scale(.5) rotate(-90deg);transform:translateX(50px) scale(.5) rotate(-90deg)}50%{-webkit-transform:translate(50px,50px) rotate(-180deg);transform:translate(50px,50px) rotate(-180deg)}75%{-webkit-transform:translateY(50px) scale(.5) rotate(-270deg);transform:translateY(50px) scale(.5) rotate(-270deg)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@keyframes cube-transition{25%{-webkit-transform:translateX(50px) scale(.5) rotate(-90deg);transform:translateX(50px) scale(.5) rotate(-90deg)}50%{-webkit-transform:translate(50px,50px) rotate(-180deg);transform:translate(50px,50px) rotate(-180deg)}75%{-webkit-transform:translateY(50px) scale(.5) rotate(-270deg);transform:translateY(50px) scale(.5) rotate(-270deg)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}.cube-transition{position:relative;-webkit-transform:translate(-25px,-25px);-ms-transform:translate(-25px,-25px);transform:translate(-25px,-25px)}.cube-transition>div{width:10px;height:10px;position:absolute;top:-5px;left:-5px;background-color:#B8C2CC;-webkit-animation:cube-transition 1.6s 0s infinite ease-in-out;animation:cube-transition 1.6s 0s infinite ease-in-out}.cube-transition>div:last-child{-webkit-animation-delay:-.8s;animation-delay:-.8s}@-webkit-keyframes spin-rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin-rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.semi-circle-spin{position:relative;width:35px;height:35px;overflow:hidden}.semi-circle-spin>div{position:absolute;border-width:0;border-radius:100%;-webkit-animation:spin-rotate .6s 0s infinite linear;animation:spin-rotate .6s 0s infinite linear;background-image:-webkit-linear-gradient(transparent 0,transparent 70%,#B8C2CC 30%,#B8C2CC 100%);background-image:linear-gradient(transparent 0,transparent 70%,#B8C2CC 30%,#B8C2CC 100%);width:100%;height:100%}.loader-wrapper{position:relative}.loader-container{margin:0 -50% 0 0;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}#preloader-wrapper{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1050}#preloader-wrapper .loader-section{position:fixed;width:100%;height:51%;background:#222;z-index:1050}#preloader-wrapper .loader-section.section-top{top:0}#preloader-wrapper .loader-section.section-bottom{bottom:0}#loader{display:block;position:absolute;left:50%;top:50%;width:60px;height:60px;margin-right:-50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);z-index:1051}.loaded #preloader-wrapper .loader-section.section-top{-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.loaded #preloader-wrapper .loader-section.section-bottom{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}.loaded #loader{opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.loaded #preloader-wrapper{visibility:hidden}.loaded #preloader-wrapper .loader-section.section-bottom,.loaded #preloader-wrapper .loader-section.section-top{-webkit-transition:all .7s .3s cubic-bezier(.645,.045,.355,1);transition:all .7s .3s cubic-bezier(.645,.045,.355,1)} \ No newline at end of file diff --git a/assets/css/plugins/pickers/bootstrap-datetimepicker-build.css b/assets/css/plugins/pickers/bootstrap-datetimepicker-build.css new file mode 100644 index 0000000..230297c --- /dev/null +++ b/assets/css/plugins/pickers/bootstrap-datetimepicker-build.css @@ -0,0 +1,204 @@ +/*======================================================== + DARK LAYOUT +=========================================================*/ +.sr-only, .bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after, .bootstrap-datetimepicker-widget .btn[data-action="clear"]::after, .bootstrap-datetimepicker-widget .btn[data-action="today"]::after, .bootstrap-datetimepicker-widget .picker-switch::after, .bootstrap-datetimepicker-widget table th.prev::after, .bootstrap-datetimepicker-widget table th.next::after { + position: absolute; + width: 1px; + height: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; } + +/*! + * Datetimepicker for Bootstrap 3 + * ! version : 4.7.14 + * https://github.com/Eonasdan/bootstrap-datetimepicker/ + */ +.bootstrap-datetimepicker-widget { + list-style: none; } + .bootstrap-datetimepicker-widget.dropdown-menu { + margin: 2px 0; + padding: 4px; + width: 19em; } + @media (max-width: 767.98px) { + .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs { + width: 38em; } } + @media (max-width: 991.98px) { + .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs { + width: 38em; } } + @media (max-width: 1199.98px) { + .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs { + width: 38em; } } + .bootstrap-datetimepicker-widget.dropdown-menu:before, .bootstrap-datetimepicker-widget.dropdown-menu:after { + content: ''; + display: inline-block; + position: absolute; } + .bootstrap-datetimepicker-widget.dropdown-menu.bottom:before { + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-bottom: 7px solid #ccc; + border-bottom-color: rgba(0, 0, 0, 0.2); + top: -7px; + left: 7px; } + .bootstrap-datetimepicker-widget.dropdown-menu.bottom:after { + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-bottom: 6px solid white; + top: -6px; + left: 8px; } + .bootstrap-datetimepicker-widget.dropdown-menu.top:before { + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-top: 7px solid #ccc; + border-top-color: rgba(0, 0, 0, 0.2); + bottom: -7px; + left: 6px; } + .bootstrap-datetimepicker-widget.dropdown-menu.top:after { + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-top: 6px solid white; + bottom: -6px; + left: 7px; } + .bootstrap-datetimepicker-widget.dropdown-menu.float-right:before { + left: auto; + right: 6px; } + .bootstrap-datetimepicker-widget.dropdown-menu.float-right:after { + left: auto; + right: 7px; } + .bootstrap-datetimepicker-widget .list-unstyled { + margin: 0; } + .bootstrap-datetimepicker-widget a[data-action] { + padding: 6px 0; } + .bootstrap-datetimepicker-widget a[data-action]:active { + box-shadow: none; } + .bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second { + width: 54px; + font-weight: bold; + font-size: 1.2em; + margin: 0; } + .bootstrap-datetimepicker-widget button[data-action] { + padding: 6px; } + .bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after { + content: "Increment Hours"; } + .bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after { + content: "Increment Minutes"; } + .bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after { + content: "Decrement Hours"; } + .bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after { + content: "Decrement Minutes"; } + .bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after { + content: "Show Hours"; } + .bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after { + content: "Show Minutes"; } + .bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after { + content: "Toggle AM/PM"; } + .bootstrap-datetimepicker-widget .btn[data-action="clear"]::after { + content: "Clear the picker"; } + .bootstrap-datetimepicker-widget .btn[data-action="today"]::after { + content: "Set the date to today"; } + .bootstrap-datetimepicker-widget .picker-switch { + text-align: center; } + .bootstrap-datetimepicker-widget .picker-switch::after { + content: "Toggle Date and Time Screens"; } + .bootstrap-datetimepicker-widget .picker-switch td { + padding: 0; + margin: 0; + height: auto; + width: auto; + line-height: inherit; } + .bootstrap-datetimepicker-widget .picker-switch td span { + line-height: 2.5; + height: 2.5em; + width: 100%; } + .bootstrap-datetimepicker-widget table { + width: 100%; + margin: 0; } + .bootstrap-datetimepicker-widget table td, + .bootstrap-datetimepicker-widget table th { + text-align: center; + border-radius: 0.5rem; } + .bootstrap-datetimepicker-widget table th { + height: 20px; + line-height: 20px; + width: 20px; } + .bootstrap-datetimepicker-widget table th.picker-switch { + width: 145px; } + .bootstrap-datetimepicker-widget table th.disabled, .bootstrap-datetimepicker-widget table th.disabled:hover { + background: none; + color: #1e1e1e; + cursor: not-allowed; } + .bootstrap-datetimepicker-widget table th.prev::after { + content: "Previous Month"; } + .bootstrap-datetimepicker-widget table th.next::after { + content: "Next Month"; } + .bootstrap-datetimepicker-widget table thead tr:first-child th { + cursor: pointer; } + .bootstrap-datetimepicker-widget table thead tr:first-child th:hover { + background: #ededed; } + .bootstrap-datetimepicker-widget table td { + height: 54px; + line-height: 54px; + width: 54px; } + .bootstrap-datetimepicker-widget table td.cw { + font-size: .8em; + height: 20px; + line-height: 20px; + color: #1e1e1e; } + .bootstrap-datetimepicker-widget table td.day { + height: 20px; + line-height: 20px; + width: 20px; } + .bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover { + background: #ededed; + cursor: pointer; } + .bootstrap-datetimepicker-widget table td.old, .bootstrap-datetimepicker-widget table td.new { + color: #1e1e1e; } + .bootstrap-datetimepicker-widget table td.today { + position: relative; } + .bootstrap-datetimepicker-widget table td.today:before { + content: ''; + display: inline-block; + border: 0 0 7px 7px solid transparent; + border-bottom-color: #3a50dc; + border-top-color: rgba(0, 0, 0, 0.2); + position: absolute; + bottom: 4px; + right: 4px; } + .bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover { + background-color: #3a50dc; + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); } + .bootstrap-datetimepicker-widget table td.active.today:before { + border-bottom-color: #fff; } + .bootstrap-datetimepicker-widget table td.disabled, .bootstrap-datetimepicker-widget table td.disabled:hover { + background: none; + color: #1e1e1e; + cursor: not-allowed; } + .bootstrap-datetimepicker-widget table td span { + display: inline-block; + width: 54px; + height: 54px; + line-height: 54px; + margin: 2px 1.5px; + cursor: pointer; + border-radius: 0.5rem; } + .bootstrap-datetimepicker-widget table td span:hover { + background: #ededed; } + .bootstrap-datetimepicker-widget table td span.active { + background-color: #3a50dc; + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); } + .bootstrap-datetimepicker-widget table td span.old { + color: #1e1e1e; } + .bootstrap-datetimepicker-widget table td span.disabled, .bootstrap-datetimepicker-widget table td span.disabled:hover { + background: none; + color: #1e1e1e; + cursor: not-allowed; } + .bootstrap-datetimepicker-widget.usetwentyfour td.hour { + height: 27px; + line-height: 27px; } + +.input-group.date .input-group-addon { + cursor: pointer; } diff --git a/assets/css/plugins/pickers/bootstrap-datetimepicker-build.min.css b/assets/css/plugins/pickers/bootstrap-datetimepicker-build.min.css new file mode 100644 index 0000000..79a7386 --- /dev/null +++ b/assets/css/plugins/pickers/bootstrap-datetimepicker-build.min.css @@ -0,0 +1,5 @@ +.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after,.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after,.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after,.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after,.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after,.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after,.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after,.bootstrap-datetimepicker-widget .btn[data-action=clear]::after,.bootstrap-datetimepicker-widget .btn[data-action=today]::after,.bootstrap-datetimepicker-widget .picker-switch::after,.bootstrap-datetimepicker-widget table th.next::after,.bootstrap-datetimepicker-widget table th.prev::after,.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}/*! + * Datetimepicker for Bootstrap 3 + * ! version : 4.7.14 + * https://github.com/Eonasdan/bootstrap-datetimepicker/ + */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{margin:2px 0;padding:4px;width:19em}@media (max-width:767.98px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (max-width:991.98px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (max-width:1199.98px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #CCC;border-bottom-color:rgba(0,0,0,.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #CCC;border-top-color:rgba(0,0,0,.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.float-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.float-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after{content:'Increment Hours'}.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after{content:'Increment Minutes'}.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after{content:'Decrement Hours'}.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after{content:'Decrement Minutes'}.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after{content:'Show Hours'}.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after{content:'Show Minutes'}.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after{content:'Toggle AM/PM'}.bootstrap-datetimepicker-widget .btn[data-action=clear]::after{content:'Clear the picker'}.bootstrap-datetimepicker-widget .btn[data-action=today]::after{content:'Set the date to today'}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{content:'Toggle Date and Time Screens'}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:.5rem}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:0 0;color:#1E1E1E;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{content:'Previous Month'}.bootstrap-datetimepicker-widget table th.next::after{content:'Next Month'}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#EDEDED}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#1E1E1E}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#EDEDED;cursor:pointer}.bootstrap-datetimepicker-widget table td.new,.bootstrap-datetimepicker-widget table td.old{color:#1E1E1E}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:0 solid transparent;border-bottom-color:#7367F0;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#7367F0;color:#FFF;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#FFF}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:0 0;color:#1E1E1E;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:.5rem}.bootstrap-datetimepicker-widget table td span:hover{background:#EDEDED}.bootstrap-datetimepicker-widget table td span.active{background-color:#7367F0;color:#FFF;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td span.old{color:#1E1E1E}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:0 0;color:#1E1E1E;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.input-group.date .input-group-addon{cursor:pointer} \ No newline at end of file diff --git a/assets/css/shared/style.css b/assets/css/shared/style.css new file mode 100755 index 0000000..2d9f034 --- /dev/null +++ b/assets/css/shared/style.css @@ -0,0 +1,16981 @@ +/*------------------------------------------------------------------ + [Master Stylesheet] + + Project: Star Admin + Version: 2.8.0 +-------------------------------------------------------------------*/ +/*------------------------------------------------------------------- + ===== Table of Contents ===== + + * Bootstrap functions + * Template variables + * Boostrap Main SCSS + * Template mixins + + Animation Mixins + + Accordion Mixins + + Background Mixins + + Badges Mixins + + BlockQuote Mixins + + Buttons Mixins + + Breadcrumbs Mixins + + Cards Mixins + + Color Functions Mixins + + Miscellaneous Mixins + + No-ui-slider Mixins + + Pagination Mixins + + Popover Mixins + + Tabs Mixins + + Tooltip Mixins + + Text Mixins + * Core Styles + + Reset Styles + + Fonts + + Functions + + Sidebar + + Navbar + + Typography + + Miscellaneous + + Footer + + Layouts + + Utilities + + Demo styles + + Dashboard + * Components + + Accordions + + Badges + + Bootstrap Alerts + + Boostrap Progress + + Buttons + + Breadcrumbs + + Cards + + Checkboxes and Radios + + Dropdowns + + Forms + + Google Maps + + Icons + + Lists + + Loaders + + Modals + + New Accounts + + Pagination + + Popovers + + Portfolio + + Preview + + Pricing Table + + Tables + + Tabs + + Tooltips + + Timeline + + Todo List + + Settings Panel + + User Profile + * Email + + Mail Sidebar + + Mail List Container + + Message Content + * Plugin Overrides + + Ace Editor + + Avgrund Popup + + Bootstrap Tour + + Chartjs + + Chartist + + CodeMirror + + Colcade + + Colorpicker + + Context Menu + + Data Tables + + Datepicker + + Dropify + + Dropzone + + Flot chart + + Full Calendar + + Google Charts + + Icheck + + Jquery File Upload + + Js-grid + + Jvectormap + + Light Gallery + + Listify + + No-ui-slider + + Owl-carousel + + Progressbar-js + + Pws-tabs + + Quill Editor + + Rating + + Select2 + + Summernote Editor + + SweetAlert + + Switchery + + Tags + + TinyMCE Editor + + Toast + + Typeahead + + Wysi Editor + + X-editable + + Wizard + * Screens + + Auth + + Error + + Lock Screen + + Landing + + Profile Page +-------------------------------------------------------------------*/ +/*-------------------------------------------------------------------*/ +/* === Import Bootstrap functions and variables === */ +/*-------------------------------------------------------------------*/ +/* === Import template variables === */ +/*-------------------------------------------------------------------*/ +/* === Boostrap Main SCSS === */ +/*! + * Bootstrap v4.1.3 (https://getbootstrap.com/) + * Copyright 2011-2018 The Bootstrap Authors + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700"); +@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"); +:root { + --blue: #00aeef; + --indigo: #6610f2; + --purple: #ab8ce4; + --pink: #E91E63; + --red: #ff0017; + --orange: #fb9678; + --yellow: #ffd500; + --green: #3bd949; + --teal: #58d8a3; + --cyan: #57c7d4; + --white: #ffffff; + --gray: #6c757d; + --gray-dark: #292b2c; + --blue: #00aeef; + --indigo: #6610f2; + --purple: #ab8ce4; + --pink: #E91E63; + --red: #ff0017; + --orange: #fb9678; + --yellow: #ffd500; + --green: #3bd949; + --teal: #58d8a3; + --cyan: #57c7d4; + --white: #ffffff; + --white-smoke: #f3f5f6; + --gray: #6c757d; + --gray-light: #8ba2b5; + --gray-lightest: #f7f7f9; + --primary: #2196f3; + --secondary: #e6eef2; + --success: #19d895; + --info: #8862e0; + --warning: #ffaf00; + --danger: #ff6258; + --light: #fbfbfb; + --dark: #252C46; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } + +*, +*::before, +*::after { + -webkit-box-sizing: border-box; + box-sizing: border-box; } + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + -ms-overflow-style: scrollbar; + -webkit-tap-highlight-color: transparent; } + +@-ms-viewport { + width: device-width; } + +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; } + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff; } + +[tabindex="-1"]:focus { + outline: 0 !important; } + +hr { + -webkit-box-sizing: content-box; + box-sizing: content-box; + height: 0; + overflow: visible; } + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; } + +p { + margin-top: 0; + margin-bottom: 1rem; } + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; } + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; } + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; } + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; } + +dt { + font-weight: 700; } + +dd { + margin-bottom: .5rem; + margin-left: 0; } + +blockquote { + margin: 0 0 1rem; } + +dfn { + font-style: italic; } + +b, +strong { + font-weight: bolder; } + +small { + font-size: 80%; } + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; } + +sub { + bottom: -.25em; } + +sup { + top: -.5em; } + +a { + color: #007bff; + text-decoration: none; + background-color: transparent; + -webkit-text-decoration-skip: objects; } + a:hover { + color: #0056b3; + text-decoration: underline; } + +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; } + a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { + color: inherit; + text-decoration: none; } + a:not([href]):not([tabindex]):focus { + outline: 0; } + +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; } + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + -ms-overflow-style: scrollbar; } + +figure { + margin: 0 0 1rem; } + +img { + vertical-align: middle; + border-style: none; } + +svg { + overflow: hidden; + vertical-align: middle; } + +table { + border-collapse: collapse; } + +caption { + padding-top: 18px 15px; + padding-bottom: 18px 15px; + color: #6c757d; + text-align: left; + caption-side: bottom; } + +th { + text-align: inherit; } + +label { + display: inline-block; + margin-bottom: 0.5rem; } + +button { + border-radius: 0; } + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; } + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; } + +button, +input { + overflow: visible;} + +button, +select { + text-transform: none; } + +button, +html [type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; } + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; } + +input[type="radio"], +input[type="checkbox"] { + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding: 0; } + +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; } + +textarea { + overflow: auto; + resize: vertical; } + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; } + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; } + +progress { + vertical-align: baseline; } + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; } + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; } + +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; } + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; } + +output { + display: inline-block; } + +summary { + display: list-item; + cursor: pointer; } + +template { + display: none; } + +[hidden] { + display: none !important; } + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-family: inherit; + font-weight: 500; + line-height: 1.2; + color: inherit; } + +h1, .h1 { + font-size: 2.5rem; } + +h2, .h2 { + font-size: 2rem; } + +h3, .h3 { + font-size: 1.75rem; } + +h4, .h4 { + font-size: 1.5rem; } + +h5, .h5 { + font-size: 1.25rem; } + +h6, .h6 { + font-size: 1rem; } + +.lead { + font-size: 1.25rem; + font-weight: 300; } + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; } + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; } + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; } + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; } + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); } + +small, +.small { + font-size: 80%; + font-weight: 400; } + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; } + +.list-unstyled { + padding-left: 0; + list-style: none; } + +.list-inline { + padding-left: 0; + list-style: none; } + +.list-inline-item { + display: inline-block; } + .list-inline-item:not(:last-child) { + margin-right: 0.5rem; } + +.initialism { + font-size: 90%; + text-transform: uppercase; } + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; } + +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d; } + .blockquote-footer::before { + content: "\2014 \00A0"; } + +.img-fluid { + max-width: 100%; + height: auto; } + +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; } + +.figure { + display: inline-block; } + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; } + +.figure-caption { + font-size: 90%; + color: #6c757d; } + +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word; } + a > code { + color: inherit; } + +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; } + kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; } + +pre { + display: block; + font-size: 87.5%; + color: #212529; } + pre code { + font-size: inherit; + color: inherit; + word-break: normal; } + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; } + +.container { + width: 100%; + padding-right: 12.5px; + padding-left: 12.5px; + margin-right: auto; + margin-left: auto; } + @media (min-width: 576px) { + .container { + max-width: 540px; } } + @media (min-width: 768px) { + .container { + max-width: 720px; } } + @media (min-width: 992px) { + .container { + max-width: 960px; } } + @media (min-width: 1200px) { + .container { + max-width: 1140px; } } + +.container-fluid { + width: 100%; + padding-right: 12.5px; + padding-left: 12.5px; + margin-right: auto; + margin-left: auto; } + +.row { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -12.5px; + margin-left: -12.5px; } + +.no-gutters { + margin-right: 0; + margin-left: 0; } + .no-gutters > .col, + .no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; } + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .lightGallery .image-tile, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + min-height: 1px; + padding-right: 12.5px; + padding-left: 12.5px; } + +.col { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + +.col-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; } + +.col-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + +.col-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + +.col-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + +.col-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + +.col-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + +.col-6, .lightGallery .image-tile { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + +.col-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + +.col-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + +.col-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + +.col-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + +.col-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + +.col-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + +.order-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + +.order-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + +.order-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + +.order-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + +.order-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + +.order-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + +.order-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + +.order-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + +.order-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + +.order-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + +.order-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + +.order-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + +.order-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + +.order-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + +.order-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + +.offset-1 { + margin-left: 8.33333%; } + +.offset-2 { + margin-left: 16.66667%; } + +.offset-3 { + margin-left: 25%; } + +.offset-4 { + margin-left: 33.33333%; } + +.offset-5 { + margin-left: 41.66667%; } + +.offset-6 { + margin-left: 50%; } + +.offset-7 { + margin-left: 58.33333%; } + +.offset-8 { + margin-left: 66.66667%; } + +.offset-9 { + margin-left: 75%; } + +.offset-10 { + margin-left: 83.33333%; } + +.offset-11 { + margin-left: 91.66667%; } + +@media (min-width: 576px) { + .col-sm { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + .col-sm-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; } + .col-sm-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-sm-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-sm-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .col-sm-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-sm-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-sm-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .col-sm-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-sm-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-sm-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + .col-sm-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-sm-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-sm-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .order-sm-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + .order-sm-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + .order-sm-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + .order-sm-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + .order-sm-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + .order-sm-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + .order-sm-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + .order-sm-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + .order-sm-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + .order-sm-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + .order-sm-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + .order-sm-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + .order-sm-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + .order-sm-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + .order-sm-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + .offset-sm-0 { + margin-left: 0; } + .offset-sm-1 { + margin-left: 8.33333%; } + .offset-sm-2 { + margin-left: 16.66667%; } + .offset-sm-3 { + margin-left: 25%; } + .offset-sm-4 { + margin-left: 33.33333%; } + .offset-sm-5 { + margin-left: 41.66667%; } + .offset-sm-6 { + margin-left: 50%; } + .offset-sm-7 { + margin-left: 58.33333%; } + .offset-sm-8 { + margin-left: 66.66667%; } + .offset-sm-9 { + margin-left: 75%; } + .offset-sm-10 { + margin-left: 83.33333%; } + .offset-sm-11 { + margin-left: 91.66667%; } } + +@media (min-width: 768px) { + .col-md { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + .col-md-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; } + .col-md-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-md-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-md-3, .lightGallery .image-tile { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .col-md-4, .lightGallery .image-tile { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-md-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-md-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .col-md-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-md-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-md-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + .col-md-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-md-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-md-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .order-md-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + .order-md-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + .order-md-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + .order-md-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + .order-md-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + .order-md-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + .order-md-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + .order-md-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + .order-md-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + .order-md-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + .order-md-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + .order-md-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + .order-md-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + .order-md-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + .order-md-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + .offset-md-0 { + margin-left: 0; } + .offset-md-1 { + margin-left: 8.33333%; } + .offset-md-2 { + margin-left: 16.66667%; } + .offset-md-3 { + margin-left: 25%; } + .offset-md-4 { + margin-left: 33.33333%; } + .offset-md-5 { + margin-left: 41.66667%; } + .offset-md-6 { + margin-left: 50%; } + .offset-md-7 { + margin-left: 58.33333%; } + .offset-md-8 { + margin-left: 66.66667%; } + .offset-md-9 { + margin-left: 75%; } + .offset-md-10 { + margin-left: 83.33333%; } + .offset-md-11 { + margin-left: 91.66667%; } } + +@media (min-width: 992px) { + .col-lg { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + .col-lg-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; } + .col-lg-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-lg-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-lg-3, .lightGallery .image-tile { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .col-lg-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-lg-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-lg-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .col-lg-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-lg-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-lg-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + .col-lg-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-lg-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-lg-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .order-lg-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + .order-lg-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + .order-lg-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + .order-lg-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + .order-lg-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + .order-lg-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + .order-lg-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + .order-lg-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + .order-lg-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + .order-lg-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + .order-lg-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + .order-lg-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + .order-lg-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + .order-lg-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + .order-lg-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + .offset-lg-0 { + margin-left: 0; } + .offset-lg-1 { + margin-left: 8.33333%; } + .offset-lg-2 { + margin-left: 16.66667%; } + .offset-lg-3 { + margin-left: 25%; } + .offset-lg-4 { + margin-left: 33.33333%; } + .offset-lg-5 { + margin-left: 41.66667%; } + .offset-lg-6 { + margin-left: 50%; } + .offset-lg-7 { + margin-left: 58.33333%; } + .offset-lg-8 { + margin-left: 66.66667%; } + .offset-lg-9 { + margin-left: 75%; } + .offset-lg-10 { + margin-left: 83.33333%; } + .offset-lg-11 { + margin-left: 91.66667%; } } + +@media (min-width: 1200px) { + .col-xl { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + .col-xl-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; } + .col-xl-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-xl-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-xl-3, .lightGallery .image-tile { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .col-xl-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-xl-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-xl-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .col-xl-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-xl-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-xl-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + .col-xl-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-xl-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-xl-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .order-xl-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + .order-xl-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + .order-xl-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + .order-xl-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + .order-xl-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + .order-xl-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + .order-xl-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + .order-xl-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + .order-xl-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + .order-xl-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + .order-xl-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + .order-xl-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + .order-xl-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + .order-xl-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + .order-xl-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + .offset-xl-0 { + margin-left: 0; } + .offset-xl-1 { + margin-left: 8.33333%; } + .offset-xl-2 { + margin-left: 16.66667%; } + .offset-xl-3 { + margin-left: 25%; } + .offset-xl-4 { + margin-left: 33.33333%; } + .offset-xl-5 { + margin-left: 41.66667%; } + .offset-xl-6 { + margin-left: 50%; } + .offset-xl-7 { + margin-left: 58.33333%; } + .offset-xl-8 { + margin-left: 66.66667%; } + .offset-xl-9 { + margin-left: 75%; } + .offset-xl-10 { + margin-left: 83.33333%; } + .offset-xl-11 { + margin-left: 91.66667%; } } + +.table, .jsgrid .jsgrid-table { + width: 100%; + margin-bottom: 1rem; + background-color: transparent; } + .table th, .jsgrid .jsgrid-table th, + .table td, .jsgrid .jsgrid-table td { + padding: 18px 15px; + vertical-align: top; + border-top: 1px solid #f2f2f2; } + .table thead th, .jsgrid .jsgrid-table thead th { + vertical-align: bottom; + border-bottom: 2px solid #f2f2f2; } + .table tbody + tbody, .jsgrid .jsgrid-table tbody + tbody { + border-top: 2px solid #f2f2f2; } + .table .table, .jsgrid .jsgrid-table .table, .table .jsgrid .jsgrid-table, .jsgrid .table .jsgrid-table, .jsgrid .jsgrid-table .jsgrid-table { + background-color: #fff; } + +.table-sm th, +.table-sm td { + padding: 0.3rem; } + +.table-bordered { + border: 1px solid #f2f2f2; } + .table-bordered th, + .table-bordered td { + border: 1px solid #f2f2f2; } + .table-bordered thead th, + .table-bordered thead td { + border-bottom-width: 2px; } + +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; } + +.table-striped tbody tr:nth-of-type(even) { + background-color: #fbfbfb; } + +.table-hover tbody tr:hover { + background-color: #f3f4fa; } + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #c1e2fc; } + +.table-hover .table-primary:hover { + background-color: #a9d7fb; } + .table-hover .table-primary:hover > td, + .table-hover .table-primary:hover > th { + background-color: #a9d7fb; } + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #f8fafb; } + +.table-hover .table-secondary:hover { + background-color: #e8eef2; } + .table-hover .table-secondary:hover > td, + .table-hover .table-secondary:hover > th { + background-color: #e8eef2; } + +.table-success, +.table-success > th, +.table-success > td { + background-color: #bff4e1; } + +.table-hover .table-success:hover { + background-color: #a9f0d7; } + .table-hover .table-success:hover > td, + .table-hover .table-success:hover > th { + background-color: #a9f0d7; } + +.table-info, +.table-info > th, +.table-info > td { + background-color: #ded3f6; } + +.table-hover .table-info:hover { + background-color: #cebef2; } + .table-hover .table-info:hover > td, + .table-hover .table-info:hover > th { + background-color: #cebef2; } + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffe9b8; } + +.table-hover .table-warning:hover { + background-color: #ffe19f; } + .table-hover .table-warning:hover > td, + .table-hover .table-warning:hover > th { + background-color: #ffe19f; } + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #ffd3d0; } + +.table-hover .table-danger:hover { + background-color: #ffbbb7; } + .table-hover .table-danger:hover > td, + .table-hover .table-danger:hover > th { + background-color: #ffbbb7; } + +.table-light, +.table-light > th, +.table-light > td { + background-color: #fefefe; } + +.table-hover .table-light:hover { + background-color: #f1f1f1; } + .table-hover .table-light:hover > td, + .table-hover .table-light:hover > th { + background-color: #f1f1f1; } + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c2c4cb; } + +.table-hover .table-dark:hover { + background-color: #b4b7bf; } + .table-hover .table-dark:hover > td, + .table-hover .table-dark:hover > th { + background-color: #b4b7bf; } + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); } + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); } + .table-hover .table-active:hover > td, + .table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); } + +.table .thead-dark th, .jsgrid .jsgrid-table .thead-dark th { + color: #fff; + background-color: #212529; + border-color: #32383e; } + +.table .thead-light th, .jsgrid .jsgrid-table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #f2f2f2; } + +.table-dark { + color: #fff; + background-color: #212529; } + .table-dark th, + .table-dark td, + .table-dark thead th { + border-color: #32383e; } + .table-dark.table-bordered { + border: 0; } + .table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); } + .table-dark.table-hover tbody tr:hover { + background-color: rgba(255, 255, 255, 0.075); } + +@media (max-width: 575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; } + .table-responsive-sm > .table-bordered { + border: 0; } } + +@media (max-width: 767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; } + .table-responsive-md > .table-bordered { + border: 0; } } + +@media (max-width: 991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; } + .table-responsive-lg > .table-bordered { + border: 0; } } + +@media (max-width: 1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; } + .table-responsive-xl > .table-bordered { + border: 0; } } + +input:-webkit-autofill, +input:-webkit-autofill:hover, +input:-webkit-autofill:focus, +textarea:-webkit-autofill, +textarea:-webkit-autofill:hover, +textarea:-webkit-autofill:focus, +select:-webkit-autofill, +select:-webkit-autofill:hover, +select:-webkit-autofill:focus { + transition: background-color 5000s ease-in-out 0s; + border-color: #8862e0 !important; +} + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; } + .table-responsive > .table-bordered { + border: 0; } + +.form-control, .asColorPicker-input, .dataTables_wrapper select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], +.jsgrid .jsgrid-table .jsgrid-filter-row select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .tt-hint, +.tt-query, +.typeahead { + display: block; + width: 100%; + height: calc(2.25rem + 2px); + padding: 0.56rem 1.375rem; + font-size: 1rem; + line-height: 1; + color: #495057; + background-color: #ffffff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: 2px; + -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } + @media screen and (prefers-reduced-motion: reduce) { + .form-control, .asColorPicker-input, .dataTables_wrapper select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], + .jsgrid .jsgrid-table .jsgrid-filter-row select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .tt-hint, + .tt-query, + .typeahead { + -webkit-transition: none; + transition: none; } } + .form-control::-ms-expand, .asColorPicker-input::-ms-expand, .dataTables_wrapper select::-ms-expand, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]::-ms-expand, + .jsgrid .jsgrid-table .jsgrid-filter-row select::-ms-expand, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]::-ms-expand, .select2-container--default .select2-selection--single::-ms-expand, .select2-container--default .select2-selection--single .select2-search__field::-ms-expand, .tt-hint::-ms-expand, + .tt-query::-ms-expand, + .typeahead::-ms-expand { + background-color: transparent; + border: 0; } + .form-control:focus, .asColorPicker-input:focus, .dataTables_wrapper select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus, + .jsgrid .jsgrid-table .jsgrid-filter-row select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .tt-hint:focus, + .tt-query:focus, + .typeahead:focus { + color: #495057; + background-color: #fff; + border-color: #80bdff; + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .form-control::-webkit-input-placeholder, .asColorPicker-input::-webkit-input-placeholder, .dataTables_wrapper select::-webkit-input-placeholder, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]::-webkit-input-placeholder, + .jsgrid .jsgrid-table .jsgrid-filter-row select::-webkit-input-placeholder, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]::-webkit-input-placeholder, .select2-container--default .select2-selection--single::-webkit-input-placeholder, .select2-container--default .select2-selection--single .select2-search__field::-webkit-input-placeholder, .tt-hint::-webkit-input-placeholder, + .tt-query::-webkit-input-placeholder, + .typeahead::-webkit-input-placeholder { + color: #c9c8c8; + opacity: 1; } + .form-control:-ms-input-placeholder, .asColorPicker-input:-ms-input-placeholder, .dataTables_wrapper select:-ms-input-placeholder, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:-ms-input-placeholder, + .jsgrid .jsgrid-table .jsgrid-filter-row select:-ms-input-placeholder, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:-ms-input-placeholder, .select2-container--default .select2-selection--single:-ms-input-placeholder, .select2-container--default .select2-selection--single .select2-search__field:-ms-input-placeholder, .tt-hint:-ms-input-placeholder, + .tt-query:-ms-input-placeholder, + .typeahead:-ms-input-placeholder { + color: #c9c8c8; + opacity: 1; } + .form-control::-ms-input-placeholder, .asColorPicker-input::-ms-input-placeholder, .dataTables_wrapper select::-ms-input-placeholder, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]::-ms-input-placeholder, + .jsgrid .jsgrid-table .jsgrid-filter-row select::-ms-input-placeholder, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]::-ms-input-placeholder, .select2-container--default .select2-selection--single::-ms-input-placeholder, .select2-container--default .select2-selection--single .select2-search__field::-ms-input-placeholder, .tt-hint::-ms-input-placeholder, + .tt-query::-ms-input-placeholder, + .typeahead::-ms-input-placeholder { + color: #c9c8c8; + opacity: 1; } + .form-control::placeholder, .asColorPicker-input::placeholder, .dataTables_wrapper select::placeholder, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]::placeholder, + .jsgrid .jsgrid-table .jsgrid-filter-row select::placeholder, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]::placeholder, .select2-container--default .select2-selection--single::placeholder, .select2-container--default .select2-selection--single .select2-search__field::placeholder, .tt-hint::placeholder, + .tt-query::placeholder, + .typeahead::placeholder { + color: #c9c8c8; + opacity: 1; } + .form-control:disabled, .asColorPicker-input:disabled, .dataTables_wrapper select:disabled, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:disabled, + .jsgrid .jsgrid-table .jsgrid-filter-row select:disabled, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:disabled, .select2-container--default .select2-selection--single:disabled, .select2-container--default .select2-selection--single .select2-search__field:disabled, .tt-hint:disabled, + .tt-query:disabled, + .typeahead:disabled, .form-control[readonly], [readonly].asColorPicker-input, .dataTables_wrapper select[readonly], .jsgrid .jsgrid-table .jsgrid-filter-row input[readonly][type=text], + .jsgrid .jsgrid-table .jsgrid-filter-row select[readonly], .jsgrid .jsgrid-table .jsgrid-filter-row input[readonly][type=number], .select2-container--default [readonly].select2-selection--single, .select2-container--default .select2-selection--single [readonly].select2-search__field, [readonly].tt-hint, + [readonly].tt-query, + [readonly].typeahead { + background-color: #e9ecef; + opacity: 1; } + +select.form-control:focus::-ms-value, select.asColorPicker-input:focus::-ms-value, .dataTables_wrapper select:focus::-ms-value, +.jsgrid .jsgrid-table .jsgrid-filter-row select:focus::-ms-value, .select2-container--default select.select2-selection--single:focus::-ms-value, .select2-container--default .select2-selection--single select.select2-search__field:focus::-ms-value, select.tt-hint:focus::-ms-value, +select.tt-query:focus::-ms-value, +select.typeahead:focus::-ms-value { + color: #495057; + background-color: #ffffff; } + +.form-control-file, +.form-control-range { + display: block; + width: 100%; } + +.col-form-label { + padding-top: calc(0.56rem + 1px); + padding-bottom: calc(0.56rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1; } + +.col-form-label-lg { + padding-top: calc(0.94rem + 1px); + padding-bottom: calc(0.94rem + 1px); + font-size: 1.25rem; + line-height: 1; } + +.col-form-label-sm { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 0.875rem; + line-height: 1; } + +.form-control-plaintext { + display: block; + width: 100%; + padding-top: 0.56rem; + padding-bottom: 0.56rem; + margin-bottom: 0; + line-height: 1; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; } + .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; } + +.form-control-sm { + height: calc(1.8125rem + 2px); + padding: 0.5rem 0.81rem; + font-size: 0.875rem; + line-height: 1; + border-radius: 0.2rem; } + +.form-control-lg { + height: calc(2.875rem + 2px); + padding: 0.94rem 1.94rem; + font-size: 1.25rem; + line-height: 1; + border-radius: 0.3rem; } + +select.form-control[size], select[size].asColorPicker-input, .dataTables_wrapper select[size], +.jsgrid .jsgrid-table .jsgrid-filter-row select[size], .select2-container--default select[size].select2-selection--single, .select2-container--default .select2-selection--single select[size].select2-search__field, select[size].tt-hint, +select[size].tt-query, +select[size].typeahead, select.form-control[multiple], select[multiple].asColorPicker-input, .dataTables_wrapper select[multiple], +.jsgrid .jsgrid-table .jsgrid-filter-row select[multiple], .select2-container--default select[multiple].select2-selection--single, .select2-container--default .select2-selection--single select[multiple].select2-search__field, select[multiple].tt-hint, +select[multiple].tt-query, +select[multiple].typeahead { + height: auto; } + +textarea.form-control, textarea.asColorPicker-input, .select2-container--default textarea.select2-selection--single, .select2-container--default .select2-selection--single textarea.select2-search__field, textarea.tt-hint, +textarea.tt-query, +textarea.typeahead { + height: auto; } + +.form-group { + margin-bottom: 1rem; } + +.form-text { + display: block; + margin-top: 0.25rem; } + +.form-row { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; } + .form-row > .col, + .form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; } + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; } + +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; } + .form-check-input:disabled ~ .form-check-label { + color: #858585; } + +.form-check-label { + margin-bottom: 0; } + +.form-check-inline { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; } + .form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; } + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #28a745; } + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.4rem 0.75rem; + margin-top: .1rem; + font-size: 0.75rem; + line-height: 1.5; + color: #fff; + background-color: rgba(40, 167, 69, 0.9); + border-radius: 0.375rem; } + +.was-validated .form-control:valid, .was-validated .asColorPicker-input:valid, .was-validated .dataTables_wrapper select:valid, .dataTables_wrapper .was-validated select:valid, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:valid, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=text]:valid, .was-validated +.jsgrid .jsgrid-table .jsgrid-filter-row select:valid, +.jsgrid .jsgrid-table .jsgrid-filter-row .was-validated select:valid, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:valid, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=number]:valid, .was-validated .select2-container--default .select2-selection--single:valid, .select2-container--default .was-validated .select2-selection--single:valid, .was-validated .select2-container--default .select2-selection--single .select2-search__field:valid, .select2-container--default .select2-selection--single .was-validated .select2-search__field:valid, .was-validated .tt-hint:valid, .was-validated +.tt-query:valid, .was-validated +.typeahead:valid, .form-control.is-valid, .is-valid.asColorPicker-input, .dataTables_wrapper select.is-valid, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=text], +.jsgrid .jsgrid-table .jsgrid-filter-row select.is-valid, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=number], .select2-container--default .is-valid.select2-selection--single, .select2-container--default .select2-selection--single .is-valid.select2-search__field, .is-valid.tt-hint, +.is-valid.tt-query, +.is-valid.typeahead, .was-validated +.custom-select:valid, +.custom-select.is-valid { + border-color: #28a745; } + .was-validated .form-control:valid:focus, .was-validated .asColorPicker-input:valid:focus, .was-validated .dataTables_wrapper select:valid:focus, .dataTables_wrapper .was-validated select:valid:focus, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:valid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=text]:valid:focus, .was-validated + .jsgrid .jsgrid-table .jsgrid-filter-row select:valid:focus, + .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated select:valid:focus, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:valid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=number]:valid:focus, .was-validated .select2-container--default .select2-selection--single:valid:focus, .select2-container--default .was-validated .select2-selection--single:valid:focus, .was-validated .select2-container--default .select2-selection--single .select2-search__field:valid:focus, .select2-container--default .select2-selection--single .was-validated .select2-search__field:valid:focus, .was-validated .tt-hint:valid:focus, .was-validated + .tt-query:valid:focus, .was-validated + .typeahead:valid:focus, .form-control.is-valid:focus, .is-valid.asColorPicker-input:focus, .dataTables_wrapper select.is-valid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=text]:focus, + .jsgrid .jsgrid-table .jsgrid-filter-row select.is-valid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=number]:focus, .select2-container--default .is-valid.select2-selection--single:focus, .select2-container--default .select2-selection--single .is-valid.select2-search__field:focus, .is-valid.tt-hint:focus, + .is-valid.tt-query:focus, + .is-valid.typeahead:focus, .was-validated + .custom-select:valid:focus, + .custom-select.is-valid:focus { + border-color: #28a745; + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + .was-validated .form-control:valid ~ .valid-feedback, .was-validated .asColorPicker-input:valid ~ .valid-feedback, .was-validated .dataTables_wrapper select:valid ~ .valid-feedback, .dataTables_wrapper .was-validated select:valid ~ .valid-feedback, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:valid ~ .valid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=text]:valid ~ .valid-feedback, .was-validated + .jsgrid .jsgrid-table .jsgrid-filter-row select:valid ~ .valid-feedback, + .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated select:valid ~ .valid-feedback, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:valid ~ .valid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=number]:valid ~ .valid-feedback, .was-validated .select2-container--default .select2-selection--single:valid ~ .valid-feedback, .select2-container--default .was-validated .select2-selection--single:valid ~ .valid-feedback, .was-validated .select2-container--default .select2-selection--single .select2-search__field:valid ~ .valid-feedback, .select2-container--default .select2-selection--single .was-validated .select2-search__field:valid ~ .valid-feedback, .was-validated .tt-hint:valid ~ .valid-feedback, .was-validated + .tt-query:valid ~ .valid-feedback, .was-validated + .typeahead:valid ~ .valid-feedback, + .was-validated .form-control:valid ~ .valid-tooltip, + .was-validated .asColorPicker-input:valid ~ .valid-tooltip, + .was-validated .dataTables_wrapper select:valid ~ .valid-tooltip, .dataTables_wrapper + .was-validated select:valid ~ .valid-tooltip, + .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:valid ~ .valid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row + .was-validated input[type=text]:valid ~ .valid-tooltip, + .was-validated + .jsgrid .jsgrid-table .jsgrid-filter-row select:valid ~ .valid-tooltip, + .jsgrid .jsgrid-table .jsgrid-filter-row + .was-validated select:valid ~ .valid-tooltip, + .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:valid ~ .valid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row + .was-validated input[type=number]:valid ~ .valid-tooltip, + .was-validated .select2-container--default .select2-selection--single:valid ~ .valid-tooltip, .select2-container--default + .was-validated .select2-selection--single:valid ~ .valid-tooltip, + .was-validated .select2-container--default .select2-selection--single .select2-search__field:valid ~ .valid-tooltip, .select2-container--default .select2-selection--single + .was-validated .select2-search__field:valid ~ .valid-tooltip, + .was-validated .tt-hint:valid ~ .valid-tooltip, + .was-validated + .tt-query:valid ~ .valid-tooltip, + .was-validated + .typeahead:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, .is-valid.asColorPicker-input ~ .valid-feedback, .dataTables_wrapper select.is-valid ~ .valid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=text] ~ .valid-feedback, + .jsgrid .jsgrid-table .jsgrid-filter-row select.is-valid ~ .valid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=number] ~ .valid-feedback, .select2-container--default .is-valid.select2-selection--single ~ .valid-feedback, .select2-container--default .select2-selection--single .is-valid.select2-search__field ~ .valid-feedback, .is-valid.tt-hint ~ .valid-feedback, + .is-valid.tt-query ~ .valid-feedback, + .is-valid.typeahead ~ .valid-feedback, + .form-control.is-valid ~ .valid-tooltip, .is-valid.asColorPicker-input ~ .valid-tooltip, .dataTables_wrapper select.is-valid ~ .valid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=text] ~ .valid-tooltip, + .jsgrid .jsgrid-table .jsgrid-filter-row select.is-valid ~ .valid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=number] ~ .valid-tooltip, .select2-container--default .is-valid.select2-selection--single ~ .valid-tooltip, .select2-container--default .select2-selection--single .is-valid.select2-search__field ~ .valid-tooltip, .is-valid.tt-hint ~ .valid-tooltip, + .is-valid.tt-query ~ .valid-tooltip, + .is-valid.typeahead ~ .valid-tooltip, .was-validated + .custom-select:valid ~ .valid-feedback, + .was-validated + .custom-select:valid ~ .valid-tooltip, + .custom-select.is-valid ~ .valid-feedback, + .custom-select.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .form-control-file:valid ~ .valid-feedback, +.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, +.form-control-file.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #28a745; } + +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #28a745; } + .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + background-color: #71dd8a; } + +.was-validated .custom-control-input:valid ~ .valid-feedback, +.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, +.custom-control-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + background-color: #34ce57; } + +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #28a745; } + .was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after { + border-color: inherit; } + +.was-validated .custom-file-input:valid ~ .valid-feedback, +.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, +.custom-file-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #dc3545; } + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.4rem 0.75rem; + margin-top: .1rem; + font-size: 0.75rem; + line-height: 1.5; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 0.375rem; } + +.was-validated .form-control:invalid, .was-validated .asColorPicker-input:invalid, .was-validated .dataTables_wrapper select:invalid, .dataTables_wrapper .was-validated select:invalid, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:invalid, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=text]:invalid, .was-validated +.jsgrid .jsgrid-table .jsgrid-filter-row select:invalid, +.jsgrid .jsgrid-table .jsgrid-filter-row .was-validated select:invalid, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:invalid, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=number]:invalid, .was-validated .select2-container--default .select2-selection--single:invalid, .select2-container--default .was-validated .select2-selection--single:invalid, .was-validated .select2-container--default .select2-selection--single .select2-search__field:invalid, .select2-container--default .select2-selection--single .was-validated .select2-search__field:invalid, .was-validated .tt-hint:invalid, .was-validated +.tt-query:invalid, .was-validated +.typeahead:invalid, .form-control.is-invalid, .is-invalid.asColorPicker-input, .dataTables_wrapper select.is-invalid, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=text], +.jsgrid .jsgrid-table .jsgrid-filter-row select.is-invalid, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=number], .select2-container--default .is-invalid.select2-selection--single, .select2-container--default .select2-selection--single .is-invalid.select2-search__field, .is-invalid.tt-hint, +.is-invalid.tt-query, +.is-invalid.typeahead, .was-validated +.custom-select:invalid, +.custom-select.is-invalid { + border-color: #dc3545; } + .was-validated .form-control:invalid:focus, .was-validated .asColorPicker-input:invalid:focus, .was-validated .dataTables_wrapper select:invalid:focus, .dataTables_wrapper .was-validated select:invalid:focus, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:invalid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=text]:invalid:focus, .was-validated + .jsgrid .jsgrid-table .jsgrid-filter-row select:invalid:focus, + .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated select:invalid:focus, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:invalid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=number]:invalid:focus, .was-validated .select2-container--default .select2-selection--single:invalid:focus, .select2-container--default .was-validated .select2-selection--single:invalid:focus, .was-validated .select2-container--default .select2-selection--single .select2-search__field:invalid:focus, .select2-container--default .select2-selection--single .was-validated .select2-search__field:invalid:focus, .was-validated .tt-hint:invalid:focus, .was-validated + .tt-query:invalid:focus, .was-validated + .typeahead:invalid:focus, .form-control.is-invalid:focus, .is-invalid.asColorPicker-input:focus, .dataTables_wrapper select.is-invalid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=text]:focus, + .jsgrid .jsgrid-table .jsgrid-filter-row select.is-invalid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=number]:focus, .select2-container--default .is-invalid.select2-selection--single:focus, .select2-container--default .select2-selection--single .is-invalid.select2-search__field:focus, .is-invalid.tt-hint:focus, + .is-invalid.tt-query:focus, + .is-invalid.typeahead:focus, .was-validated + .custom-select:invalid:focus, + .custom-select.is-invalid:focus { + border-color: #dc3545; + -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .asColorPicker-input:invalid ~ .invalid-feedback, .was-validated .dataTables_wrapper select:invalid ~ .invalid-feedback, .dataTables_wrapper .was-validated select:invalid ~ .invalid-feedback, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:invalid ~ .invalid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=text]:invalid ~ .invalid-feedback, .was-validated + .jsgrid .jsgrid-table .jsgrid-filter-row select:invalid ~ .invalid-feedback, + .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated select:invalid ~ .invalid-feedback, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:invalid ~ .invalid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=number]:invalid ~ .invalid-feedback, .was-validated .select2-container--default .select2-selection--single:invalid ~ .invalid-feedback, .select2-container--default .was-validated .select2-selection--single:invalid ~ .invalid-feedback, .was-validated .select2-container--default .select2-selection--single .select2-search__field:invalid ~ .invalid-feedback, .select2-container--default .select2-selection--single .was-validated .select2-search__field:invalid ~ .invalid-feedback, .was-validated .tt-hint:invalid ~ .invalid-feedback, .was-validated + .tt-query:invalid ~ .invalid-feedback, .was-validated + .typeahead:invalid ~ .invalid-feedback, + .was-validated .form-control:invalid ~ .invalid-tooltip, + .was-validated .asColorPicker-input:invalid ~ .invalid-tooltip, + .was-validated .dataTables_wrapper select:invalid ~ .invalid-tooltip, .dataTables_wrapper + .was-validated select:invalid ~ .invalid-tooltip, + .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:invalid ~ .invalid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row + .was-validated input[type=text]:invalid ~ .invalid-tooltip, + .was-validated + .jsgrid .jsgrid-table .jsgrid-filter-row select:invalid ~ .invalid-tooltip, + .jsgrid .jsgrid-table .jsgrid-filter-row + .was-validated select:invalid ~ .invalid-tooltip, + .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:invalid ~ .invalid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row + .was-validated input[type=number]:invalid ~ .invalid-tooltip, + .was-validated .select2-container--default .select2-selection--single:invalid ~ .invalid-tooltip, .select2-container--default + .was-validated .select2-selection--single:invalid ~ .invalid-tooltip, + .was-validated .select2-container--default .select2-selection--single .select2-search__field:invalid ~ .invalid-tooltip, .select2-container--default .select2-selection--single + .was-validated .select2-search__field:invalid ~ .invalid-tooltip, + .was-validated .tt-hint:invalid ~ .invalid-tooltip, + .was-validated + .tt-query:invalid ~ .invalid-tooltip, + .was-validated + .typeahead:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, .is-invalid.asColorPicker-input ~ .invalid-feedback, .dataTables_wrapper select.is-invalid ~ .invalid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=text] ~ .invalid-feedback, + .jsgrid .jsgrid-table .jsgrid-filter-row select.is-invalid ~ .invalid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=number] ~ .invalid-feedback, .select2-container--default .is-invalid.select2-selection--single ~ .invalid-feedback, .select2-container--default .select2-selection--single .is-invalid.select2-search__field ~ .invalid-feedback, .is-invalid.tt-hint ~ .invalid-feedback, + .is-invalid.tt-query ~ .invalid-feedback, + .is-invalid.typeahead ~ .invalid-feedback, + .form-control.is-invalid ~ .invalid-tooltip, .is-invalid.asColorPicker-input ~ .invalid-tooltip, .dataTables_wrapper select.is-invalid ~ .invalid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=text] ~ .invalid-tooltip, + .jsgrid .jsgrid-table .jsgrid-filter-row select.is-invalid ~ .invalid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=number] ~ .invalid-tooltip, .select2-container--default .is-invalid.select2-selection--single ~ .invalid-tooltip, .select2-container--default .select2-selection--single .is-invalid.select2-search__field ~ .invalid-tooltip, .is-invalid.tt-hint ~ .invalid-tooltip, + .is-invalid.tt-query ~ .invalid-tooltip, + .is-invalid.typeahead ~ .invalid-tooltip, .was-validated + .custom-select:invalid ~ .invalid-feedback, + .was-validated + .custom-select:invalid ~ .invalid-tooltip, + .custom-select.is-invalid ~ .invalid-feedback, + .custom-select.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .form-control-file:invalid ~ .invalid-feedback, +.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, +.form-control-file.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; } + +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #dc3545; } + .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + background-color: #efa2a9; } + +.was-validated .custom-control-input:invalid ~ .invalid-feedback, +.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, +.custom-control-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + background-color: #e4606d; } + +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #dc3545; } + .was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after { + border-color: inherit; } + +.was-validated .custom-file-input:invalid ~ .invalid-feedback, +.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, +.custom-file-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + +.form-inline { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .form-inline .form-check { + width: 100%; } + @media (min-width: 576px) { + .form-inline label { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + margin-bottom: 0; } + .form-inline .form-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin-bottom: 0; } + .form-inline .form-control, .form-inline .asColorPicker-input, .form-inline .dataTables_wrapper select, .dataTables_wrapper .form-inline select, .form-inline .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .form-inline input[type=text], .form-inline + .jsgrid .jsgrid-table .jsgrid-filter-row select, + .jsgrid .jsgrid-table .jsgrid-filter-row .form-inline select, .form-inline .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .form-inline input[type=number], .form-inline .select2-container--default .select2-selection--single, .select2-container--default .form-inline .select2-selection--single, .form-inline .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .form-inline .select2-search__field, .form-inline .tt-hint, .form-inline + .tt-query, .form-inline + .typeahead { + display: inline-block; + width: auto; + vertical-align: middle; } + .form-inline .form-control-plaintext { + display: inline-block; } + .form-inline .input-group, .form-inline .asColorPicker-wrap, + .form-inline .custom-select { + width: auto; } + .form-inline .form-check { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; + padding-left: 0; } + .form-inline .form-check-input { + position: relative; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; } + .form-inline .custom-control { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .form-inline .custom-control-label { + margin-bottom: 0; } } + +.btn, .ajax-upload-dragdrop .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel, .wizard > .actions a { + display: inline-block; + font-weight: 400; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + border: 1px solid transparent; + padding: 0.56rem 1.375rem; + font-size: 1rem; + line-height: 1; + border-radius: 0.1875rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } + @media screen and (prefers-reduced-motion: reduce) { + .btn, .ajax-upload-dragdrop .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel, .wizard > .actions a { + -webkit-transition: none; + transition: none; } } + .btn:hover, .ajax-upload-dragdrop .ajax-file-upload:hover, .swal2-modal .swal2-buttonswrapper .swal2-styled:hover, .wizard > .actions a:hover, .btn:focus, .ajax-upload-dragdrop .ajax-file-upload:focus, .swal2-modal .swal2-buttonswrapper .swal2-styled:focus, .wizard > .actions a:focus { + text-decoration: none; } + .btn:focus, .ajax-upload-dragdrop .ajax-file-upload:focus, .swal2-modal .swal2-buttonswrapper .swal2-styled:focus, .wizard > .actions a:focus, .btn.focus, .ajax-upload-dragdrop .focus.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .focus.swal2-styled, .wizard > .actions a.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .btn.disabled, .ajax-upload-dragdrop .disabled.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .disabled.swal2-styled, .wizard > .actions a.disabled, .btn:disabled, .ajax-upload-dragdrop .ajax-file-upload:disabled, .swal2-modal .swal2-buttonswrapper .swal2-styled:disabled, .wizard > .actions a:disabled { + opacity: 0.65; } + .btn:not(:disabled):not(.disabled), .ajax-upload-dragdrop .ajax-file-upload:not(:disabled):not(.disabled), .swal2-modal .swal2-buttonswrapper .swal2-styled:not(:disabled):not(.disabled), .wizard > .actions a:not(:disabled):not(.disabled) { + cursor: pointer; } + +a.btn.disabled, .ajax-upload-dragdrop a.disabled.ajax-file-upload, .swal2-modal .swal2-buttonswrapper a.disabled.swal2-styled, .wizard > .actions a.disabled, +fieldset:disabled a.btn, +fieldset:disabled .ajax-upload-dragdrop a.ajax-file-upload, .ajax-upload-dragdrop +fieldset:disabled a.ajax-file-upload, +fieldset:disabled .swal2-modal .swal2-buttonswrapper a.swal2-styled, .swal2-modal .swal2-buttonswrapper +fieldset:disabled a.swal2-styled, +fieldset:disabled .wizard > .actions a, .wizard > .actions +fieldset:disabled a { + pointer-events: none; } + +.btn-primary, .wizard > .actions a { + color: #fff; + background-color: #2196f3; + border-color: #2196f3; } + .btn-primary:hover, .wizard > .actions a:hover { + color: #fff; + background-color: #0c83e2; + border-color: #0c7cd5; } + .btn-primary:focus, .wizard > .actions a:focus, .btn-primary.focus, .wizard > .actions a.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); + box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); } + .btn-primary.disabled, .wizard > .actions a.disabled, .btn-primary:disabled, .wizard > .actions a:disabled { + color: #fff; + background-color: #2196f3; + border-color: #2196f3; } + .btn-primary:not(:disabled):not(.disabled):active, .wizard > .actions a:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .wizard > .actions a:not(:disabled):not(.disabled).active, + .show > .btn-primary.dropdown-toggle, .wizard > .actions + .show > a.dropdown-toggle { + color: #fff; + background-color: #0c7cd5; + border-color: #0b75c9; } + .btn-primary:not(:disabled):not(.disabled):active:focus, .wizard > .actions a:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .wizard > .actions a:not(:disabled):not(.disabled).active:focus, + .show > .btn-primary.dropdown-toggle:focus, .wizard > .actions + .show > a.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); + box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); } + +.btn-secondary, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel { + color: #212529; + background-color: #e6eef2; + border-color: #e6eef2; } + .btn-secondary:hover, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:hover { + color: #212529; + background-color: #cddde5; + border-color: #c4d7e1; } + .btn-secondary:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:focus, .btn-secondary.focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .focus.editable-cancel { + -webkit-box-shadow: 0 0 0 0.2rem rgba(230, 238, 242, 0.5); + box-shadow: 0 0 0 0.2rem rgba(230, 238, 242, 0.5); } + .btn-secondary.disabled, .editable-container.editable-inline .editableform .control-group .editable-buttons .disabled.editable-cancel, .btn-secondary:disabled, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:disabled { + color: #212529; + background-color: #e6eef2; + border-color: #e6eef2; } + .btn-secondary:not(:disabled):not(.disabled):active, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:not(:disabled):not(.disabled).active, + .show > .btn-secondary.dropdown-toggle, .editable-container.editable-inline .editableform .control-group .editable-buttons + .show > .dropdown-toggle.editable-cancel { + color: #212529; + background-color: #c4d7e1; + border-color: #bcd1dc; } + .btn-secondary:not(:disabled):not(.disabled):active:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:not(:disabled):not(.disabled).active:focus, + .show > .btn-secondary.dropdown-toggle:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons + .show > .dropdown-toggle.editable-cancel:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(230, 238, 242, 0.5); + box-shadow: 0 0 0 0.2rem rgba(230, 238, 242, 0.5); } + +.btn-success { + color: #212529; + background-color: #19d895; + border-color: #19d895; } + .btn-success:hover { + color: #fff; + background-color: #15b67d; + border-color: #14aa75; } + .btn-success:focus, .btn-success.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(25, 216, 149, 0.5); + box-shadow: 0 0 0 0.2rem rgba(25, 216, 149, 0.5); } + .btn-success.disabled, .btn-success:disabled { + color: #212529; + background-color: #19d895; + border-color: #19d895; } + .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, + .show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #14aa75; + border-color: #129f6e; } + .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-success.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(25, 216, 149, 0.5); + box-shadow: 0 0 0 0.2rem rgba(25, 216, 149, 0.5); } + +.btn-info, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit { + color: #fff; + background-color: #8862e0; + border-color: #8862e0; } + .btn-info:hover, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:hover { + color: #fff; + background-color: #7042da; + border-color: #6837d8; } + .btn-info:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:focus, .btn-info.focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .focus.editable-submit { + -webkit-box-shadow: 0 0 0 0.2rem rgba(136, 98, 224, 0.5); + box-shadow: 0 0 0 0.2rem rgba(136, 98, 224, 0.5); } + .btn-info.disabled, .editable-container.editable-inline .editableform .control-group .editable-buttons .disabled.editable-submit, .btn-info:disabled, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:disabled { + color: #fff; + background-color: #8862e0; + border-color: #8862e0; } + .btn-info:not(:disabled):not(.disabled):active, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:not(:disabled):not(.disabled).active, + .show > .btn-info.dropdown-toggle, .editable-container.editable-inline .editableform .control-group .editable-buttons + .show > .dropdown-toggle.editable-submit { + color: #fff; + background-color: #6837d8; + border-color: #602dd5; } + .btn-info:not(:disabled):not(.disabled):active:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:not(:disabled):not(.disabled).active:focus, + .show > .btn-info.dropdown-toggle:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons + .show > .dropdown-toggle.editable-submit:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(136, 98, 224, 0.5); + box-shadow: 0 0 0 0.2rem rgba(136, 98, 224, 0.5); } + +.btn-warning { + color: #212529; + background-color: #ffaf00; + border-color: #ffaf00; } + .btn-warning:hover { + color: #212529; + background-color: #d99500; + border-color: #cc8c00; } + .btn-warning:focus, .btn-warning.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 175, 0, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 175, 0, 0.5); } + .btn-warning.disabled, .btn-warning:disabled { + color: #212529; + background-color: #ffaf00; + border-color: #ffaf00; } + .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, + .show > .btn-warning.dropdown-toggle { + color: #fff; + background-color: #cc8c00; + border-color: #bf8300; } + .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-warning.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 175, 0, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 175, 0, 0.5); } + +.btn-danger { + color: #fff; + background-color: #ff6258; + border-color: #ff6258; } + .btn-danger:hover { + color: #fff; + background-color: #ff3e32; + border-color: #ff3225; } + .btn-danger:focus, .btn-danger.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 98, 88, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 98, 88, 0.5); } + .btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #ff6258; + border-color: #ff6258; } + .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, + .show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #ff3225; + border-color: #ff2618; } + .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-danger.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 98, 88, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 98, 88, 0.5); } + +.btn-light { + color: #212529; + background-color: #fbfbfb; + border-color: #fbfbfb; } + .btn-light:hover { + color: #212529; + background-color: #e8e8e8; + border-color: #e2e2e2; } + .btn-light:focus, .btn-light.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(251, 251, 251, 0.5); + box-shadow: 0 0 0 0.2rem rgba(251, 251, 251, 0.5); } + .btn-light.disabled, .btn-light:disabled { + color: #212529; + background-color: #fbfbfb; + border-color: #fbfbfb; } + .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, + .show > .btn-light.dropdown-toggle { + color: #212529; + background-color: #e2e2e2; + border-color: #dbdbdb; } + .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-light.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(251, 251, 251, 0.5); + box-shadow: 0 0 0 0.2rem rgba(251, 251, 251, 0.5); } + +.btn-dark { + color: #fff; + background-color: #252C46; + border-color: #252C46; } + .btn-dark:hover { + color: #fff; + background-color: #181c2d; + border-color: #131725; } + .btn-dark:focus, .btn-dark.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(37, 44, 70, 0.5); + box-shadow: 0 0 0 0.2rem rgba(37, 44, 70, 0.5); } + .btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #252C46; + border-color: #252C46; } + .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, + .show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #131725; + border-color: #0f121c; } + .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-dark.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(37, 44, 70, 0.5); + box-shadow: 0 0 0 0.2rem rgba(37, 44, 70, 0.5); } + +.btn-outline-primary, .wizard > .actions .disabled a { + color: #2196f3; + background-color: transparent; + background-image: none; + border-color: #2196f3; } + .btn-outline-primary:hover, .wizard > .actions .disabled a:hover { + color: #fff; + background-color: #2196f3; + border-color: #2196f3; } + .btn-outline-primary:focus, .wizard > .actions .disabled a:focus, .btn-outline-primary.focus, .wizard > .actions .disabled a.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); + box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); } + .btn-outline-primary.disabled, .wizard > .actions .disabled a.disabled, .btn-outline-primary:disabled, .wizard > .actions .disabled a:disabled { + color: #2196f3; + background-color: transparent; } + .btn-outline-primary:not(:disabled):not(.disabled):active, .wizard > .actions .disabled a:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .wizard > .actions .disabled a:not(:disabled):not(.disabled).active, + .show > .btn-outline-primary.dropdown-toggle, .wizard > .actions .disabled + .show > a.dropdown-toggle { + color: #fff; + background-color: #2196f3; + border-color: #2196f3; } + .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .wizard > .actions .disabled a:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .wizard > .actions .disabled a:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-primary.dropdown-toggle:focus, .wizard > .actions .disabled + .show > a.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); + box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); } + +.btn-outline-secondary { + color: #e6eef2; + background-color: transparent; + background-image: none; + border-color: #e6eef2; } + .btn-outline-secondary:hover { + color: #212529; + background-color: #e6eef2; + border-color: #e6eef2; } + .btn-outline-secondary:focus, .btn-outline-secondary.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(230, 238, 242, 0.5); + box-shadow: 0 0 0 0.2rem rgba(230, 238, 242, 0.5); } + .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #e6eef2; + background-color: transparent; } + .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, + .show > .btn-outline-secondary.dropdown-toggle { + color: #212529; + background-color: #e6eef2; + border-color: #e6eef2; } + .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-secondary.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(230, 238, 242, 0.5); + box-shadow: 0 0 0 0.2rem rgba(230, 238, 242, 0.5); } + +.btn-outline-success { + color: #19d895; + background-color: transparent; + background-image: none; + border-color: #19d895; } + .btn-outline-success:hover { + color: #212529; + background-color: #19d895; + border-color: #19d895; } + .btn-outline-success:focus, .btn-outline-success.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(25, 216, 149, 0.5); + box-shadow: 0 0 0 0.2rem rgba(25, 216, 149, 0.5); } + .btn-outline-success.disabled, .btn-outline-success:disabled { + color: #19d895; + background-color: transparent; } + .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, + .show > .btn-outline-success.dropdown-toggle { + color: #212529; + background-color: #19d895; + border-color: #19d895; } + .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-success.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(25, 216, 149, 0.5); + box-shadow: 0 0 0 0.2rem rgba(25, 216, 149, 0.5); } + +.btn-outline-info { + color: #8862e0; + background-color: transparent; + background-image: none; + border-color: #8862e0; } + .btn-outline-info:hover { + color: #fff; + background-color: #8862e0; + border-color: #8862e0; } + .btn-outline-info:focus, .btn-outline-info.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(136, 98, 224, 0.5); + box-shadow: 0 0 0 0.2rem rgba(136, 98, 224, 0.5); } + .btn-outline-info.disabled, .btn-outline-info:disabled { + color: #8862e0; + background-color: transparent; } + .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, + .show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #8862e0; + border-color: #8862e0; } + .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-info.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(136, 98, 224, 0.5); + box-shadow: 0 0 0 0.2rem rgba(136, 98, 224, 0.5); } + +.btn-outline-warning { + color: #ffaf00; + background-color: transparent; + background-image: none; + border-color: #ffaf00; } + .btn-outline-warning:hover { + color: #212529; + background-color: #ffaf00; + border-color: #ffaf00; } + .btn-outline-warning:focus, .btn-outline-warning.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 175, 0, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 175, 0, 0.5); } + .btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffaf00; + background-color: transparent; } + .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, + .show > .btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffaf00; + border-color: #ffaf00; } + .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-warning.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 175, 0, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 175, 0, 0.5); } + +.btn-outline-danger { + color: #ff6258; + background-color: transparent; + background-image: none; + border-color: #ff6258; } + .btn-outline-danger:hover { + color: #fff; + background-color: #ff6258; + border-color: #ff6258; } + .btn-outline-danger:focus, .btn-outline-danger.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 98, 88, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 98, 88, 0.5); } + .btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #ff6258; + background-color: transparent; } + .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, + .show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #ff6258; + border-color: #ff6258; } + .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-danger.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 98, 88, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 98, 88, 0.5); } + +.btn-outline-light { + color: #fbfbfb; + background-color: transparent; + background-image: none; + border-color: #fbfbfb; } + .btn-outline-light:hover { + color: #212529; + background-color: #fbfbfb; + border-color: #fbfbfb; } + .btn-outline-light:focus, .btn-outline-light.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(251, 251, 251, 0.5); + box-shadow: 0 0 0 0.2rem rgba(251, 251, 251, 0.5); } + .btn-outline-light.disabled, .btn-outline-light:disabled { + color: #fbfbfb; + background-color: transparent; } + .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, + .show > .btn-outline-light.dropdown-toggle { + color: #212529; + background-color: #fbfbfb; + border-color: #fbfbfb; } + .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-light.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(251, 251, 251, 0.5); + box-shadow: 0 0 0 0.2rem rgba(251, 251, 251, 0.5); } + +.btn-outline-dark { + color: #252C46; + background-color: transparent; + background-image: none; + border-color: #252C46; } + .btn-outline-dark:hover { + color: #fff; + background-color: #252C46; + border-color: #252C46; } + .btn-outline-dark:focus, .btn-outline-dark.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(37, 44, 70, 0.5); + box-shadow: 0 0 0 0.2rem rgba(37, 44, 70, 0.5); } + .btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #252C46; + background-color: transparent; } + .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, + .show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #252C46; + border-color: #252C46; } + .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-dark.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(37, 44, 70, 0.5); + box-shadow: 0 0 0 0.2rem rgba(37, 44, 70, 0.5); } + +.btn-link { + font-weight: 400; + color: #007bff; + background-color: transparent; } + .btn-link:hover { + color: #0056b3; + text-decoration: underline; + background-color: transparent; + border-color: transparent; } + .btn-link:focus, .btn-link.focus { + text-decoration: underline; + border-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; } + .btn-link:disabled, .btn-link.disabled { + color: #6c757d; + pointer-events: none; } + +.btn-lg, .btn-group-lg > .btn, .ajax-upload-dragdrop .btn-group-lg > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group-lg > .swal2-styled, .wizard > .actions .btn-group-lg > a { + padding: 0.94rem 1.94rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.1875rem; } + +.btn-sm, .btn-group-sm > .btn, .ajax-upload-dragdrop .btn-group-sm > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group-sm > .swal2-styled, .wizard > .actions .btn-group-sm > a { + padding: 0.5rem 0.81rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.1875rem; } + +.btn-block { + display: block; + width: 100%; } + .btn-block + .btn-block { + margin-top: 0.5rem; } + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; } + +.fade { + -webkit-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; } + @media screen and (prefers-reduced-motion: reduce) { + .fade { + -webkit-transition: none; + transition: none; } } + .fade:not(.show) { + opacity: 0; } + +.collapse:not(.show) { + display: none; } + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + transition: height 0.35s ease; } + @media screen and (prefers-reduced-motion: reduce) { + .collapsing { + -webkit-transition: none; + transition: none; } } + +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; } + +.dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; } + +.dropdown-toggle:empty::after { + margin-left: 0; } + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #f2f2f2; + border-radius: 0.25rem; } + +.dropdown-menu-right { + right: 0; + left: auto; } + +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; } + +.dropup .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; } + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; } + +.dropright .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; } + +.dropright .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropright .dropdown-toggle::after { + vertical-align: 0; } + +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; } + +.dropleft .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; } + +.dropleft .dropdown-toggle::after { + display: none; } + +.dropleft .dropdown-toggle::before { + display: inline-block; + width: 0; + height: 0; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; } + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropleft .dropdown-toggle::before { + vertical-align: 0; } + +.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { + right: auto; + bottom: auto; } + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #f2f2f2; } + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; } + .dropdown-item:hover, .dropdown-item:focus { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; } + .dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #007bff; } + .dropdown-item.disabled, .dropdown-item:disabled { + color: #6c757d; + background-color: transparent; } + +.dropdown-menu.show { + display: block; } + +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #212529; + white-space: nowrap; } + +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #212529; } + +.btn-group, +.btn-group-vertical { + position: relative; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + vertical-align: middle; } + .btn-group > .btn, .ajax-upload-dragdrop .btn-group > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled, .wizard > .actions .btn-group > a, + .btn-group-vertical > .btn, .ajax-upload-dragdrop + .btn-group-vertical > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical > .swal2-styled, .wizard > .actions + .btn-group-vertical > a { + position: relative; + -webkit-box-flex: 0; + -ms-flex: 0 1 auto; + flex: 0 1 auto; } + .btn-group > .btn:hover, .ajax-upload-dragdrop .btn-group > .ajax-file-upload:hover, .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled:hover, .wizard > .actions .btn-group > a:hover, + .btn-group-vertical > .btn:hover, .ajax-upload-dragdrop + .btn-group-vertical > .ajax-file-upload:hover, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical > .swal2-styled:hover, .wizard > .actions + .btn-group-vertical > a:hover { + z-index: 1; } + .btn-group > .btn:focus, .ajax-upload-dragdrop .btn-group > .ajax-file-upload:focus, .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled:focus, .wizard > .actions .btn-group > a:focus, .btn-group > .btn:active, .ajax-upload-dragdrop .btn-group > .ajax-file-upload:active, .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled:active, .wizard > .actions .btn-group > a:active, .btn-group > .btn.active, .ajax-upload-dragdrop .btn-group > .active.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group > .active.swal2-styled, .wizard > .actions .btn-group > a.active, + .btn-group-vertical > .btn:focus, .ajax-upload-dragdrop + .btn-group-vertical > .ajax-file-upload:focus, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical > .swal2-styled:focus, .wizard > .actions + .btn-group-vertical > a:focus, + .btn-group-vertical > .btn:active, .ajax-upload-dragdrop + .btn-group-vertical > .ajax-file-upload:active, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical > .swal2-styled:active, .wizard > .actions + .btn-group-vertical > a:active, + .btn-group-vertical > .btn.active, .ajax-upload-dragdrop + .btn-group-vertical > .active.ajax-file-upload, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical > .active.swal2-styled, .wizard > .actions + .btn-group-vertical > a.active { + z-index: 1; } + .btn-group .btn + .btn, .btn-group .ajax-upload-dragdrop .ajax-file-upload + .btn, .ajax-upload-dragdrop .btn-group .ajax-file-upload + .btn, .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn, .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled + .btn, .btn-group .wizard > .actions a + .btn, .wizard > .actions .btn-group a + .btn, .btn-group .ajax-upload-dragdrop .btn + .ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn + .ajax-file-upload, .btn-group .ajax-upload-dragdrop .ajax-file-upload + .ajax-file-upload, .ajax-upload-dragdrop .btn-group .ajax-file-upload + .ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled + .ajax-file-upload, .btn-group .wizard > .actions .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .btn-group .wizard > .actions a + .ajax-file-upload, .wizard > .actions .btn-group .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions .btn-group a + .ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn + .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn + .swal2-styled, .btn-group .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .ajax-upload-dragdrop .ajax-file-upload + .swal2-styled, .ajax-upload-dragdrop .btn-group .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .btn-group .ajax-file-upload + .swal2-styled, .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled + .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled + .swal2-styled, .btn-group .wizard > .actions .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .wizard > .actions a + .swal2-styled, .wizard > .actions .btn-group .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions .btn-group a + .swal2-styled, .btn-group .wizard > .actions .btn + a, .wizard > .actions .btn-group .btn + a, .btn-group .ajax-upload-dragdrop .wizard > .actions .ajax-file-upload + a, .wizard > .actions .btn-group .ajax-upload-dragdrop .ajax-file-upload + a, .ajax-upload-dragdrop .btn-group .wizard > .actions .ajax-file-upload + a, .wizard > .actions .ajax-upload-dragdrop .btn-group .ajax-file-upload + a, .btn-group .swal2-modal .swal2-buttonswrapper .wizard > .actions .swal2-styled + a, .wizard > .actions .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled + a, .swal2-modal .swal2-buttonswrapper .btn-group .wizard > .actions .swal2-styled + a, .wizard > .actions .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled + a, .btn-group .wizard > .actions a + a, .wizard > .actions .btn-group a + a, + .btn-group .btn + .btn-group, + .btn-group .ajax-upload-dragdrop .ajax-file-upload + .btn-group, .ajax-upload-dragdrop + .btn-group .ajax-file-upload + .btn-group, + .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn-group, .swal2-modal .swal2-buttonswrapper + .btn-group .swal2-styled + .btn-group, + .btn-group .wizard > .actions a + .btn-group, .wizard > .actions + .btn-group a + .btn-group, + .btn-group .btn-group + .btn, + .btn-group .ajax-upload-dragdrop .btn-group + .ajax-file-upload, .ajax-upload-dragdrop + .btn-group .btn-group + .ajax-file-upload, + .btn-group .swal2-modal .swal2-buttonswrapper .btn-group + .swal2-styled, .swal2-modal .swal2-buttonswrapper + .btn-group .btn-group + .swal2-styled, + .btn-group .wizard > .actions .btn-group + a, .wizard > .actions + .btn-group .btn-group + a, + .btn-group .btn-group + .btn-group, + .btn-group-vertical .btn + .btn, + .btn-group-vertical .ajax-upload-dragdrop .ajax-file-upload + .btn, .ajax-upload-dragdrop + .btn-group-vertical .ajax-file-upload + .btn, + .btn-group-vertical .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical .swal2-styled + .btn, + .btn-group-vertical .wizard > .actions a + .btn, .wizard > .actions + .btn-group-vertical a + .btn, + .btn-group-vertical .ajax-upload-dragdrop .btn + .ajax-file-upload, .ajax-upload-dragdrop + .btn-group-vertical .btn + .ajax-file-upload, + .btn-group-vertical .ajax-upload-dragdrop .ajax-file-upload + .ajax-file-upload, .ajax-upload-dragdrop + .btn-group-vertical .ajax-file-upload + .ajax-file-upload, + .btn-group-vertical .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop + .btn-group-vertical .swal2-modal .swal2-buttonswrapper .swal2-styled + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper + .btn-group-vertical .swal2-styled + .ajax-file-upload, + .btn-group-vertical .wizard > .actions .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop + .btn-group-vertical .wizard > .actions a + .ajax-file-upload, .wizard > .actions + .btn-group-vertical .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions + .btn-group-vertical a + .ajax-file-upload, + .btn-group-vertical .swal2-modal .swal2-buttonswrapper .btn + .swal2-styled, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical .btn + .swal2-styled, + .btn-group-vertical .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical .ajax-upload-dragdrop .ajax-file-upload + .swal2-styled, .ajax-upload-dragdrop + .btn-group-vertical .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop + .btn-group-vertical .ajax-file-upload + .swal2-styled, + .btn-group-vertical .swal2-modal .swal2-buttonswrapper .swal2-styled + .swal2-styled, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical .swal2-styled + .swal2-styled, + .btn-group-vertical .wizard > .actions .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical .wizard > .actions a + .swal2-styled, .wizard > .actions + .btn-group-vertical .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions + .btn-group-vertical a + .swal2-styled, + .btn-group-vertical .wizard > .actions .btn + a, .wizard > .actions + .btn-group-vertical .btn + a, + .btn-group-vertical .ajax-upload-dragdrop .wizard > .actions .ajax-file-upload + a, .wizard > .actions + .btn-group-vertical .ajax-upload-dragdrop .ajax-file-upload + a, .ajax-upload-dragdrop + .btn-group-vertical .wizard > .actions .ajax-file-upload + a, .wizard > .actions .ajax-upload-dragdrop + .btn-group-vertical .ajax-file-upload + a, + .btn-group-vertical .swal2-modal .swal2-buttonswrapper .wizard > .actions .swal2-styled + a, .wizard > .actions + .btn-group-vertical .swal2-modal .swal2-buttonswrapper .swal2-styled + a, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical .wizard > .actions .swal2-styled + a, .wizard > .actions .swal2-modal .swal2-buttonswrapper + .btn-group-vertical .swal2-styled + a, + .btn-group-vertical .wizard > .actions a + a, .wizard > .actions + .btn-group-vertical a + a, + .btn-group-vertical .btn + .btn-group, + .btn-group-vertical .ajax-upload-dragdrop .ajax-file-upload + .btn-group, .ajax-upload-dragdrop + .btn-group-vertical .ajax-file-upload + .btn-group, + .btn-group-vertical .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn-group, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical .swal2-styled + .btn-group, + .btn-group-vertical .wizard > .actions a + .btn-group, .wizard > .actions + .btn-group-vertical a + .btn-group, + .btn-group-vertical .btn-group + .btn, + .btn-group-vertical .ajax-upload-dragdrop .btn-group + .ajax-file-upload, .ajax-upload-dragdrop + .btn-group-vertical .btn-group + .ajax-file-upload, + .btn-group-vertical .swal2-modal .swal2-buttonswrapper .btn-group + .swal2-styled, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical .btn-group + .swal2-styled, + .btn-group-vertical .wizard > .actions .btn-group + a, .wizard > .actions + .btn-group-vertical .btn-group + a, + .btn-group-vertical .btn-group + .btn-group { + margin-left: -1px; } + +.btn-toolbar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .btn-toolbar .input-group, .btn-toolbar .asColorPicker-wrap { + width: auto; } + +.btn-group > .btn:first-child, .ajax-upload-dragdrop .btn-group > .ajax-file-upload:first-child, .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled:first-child, .wizard > .actions .btn-group > a:first-child { + margin-left: 0; } + +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .ajax-upload-dragdrop .btn-group > .ajax-file-upload:not(:last-child):not(.dropdown-toggle), .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled:not(:last-child):not(.dropdown-toggle), .wizard > .actions .btn-group > a:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn, .ajax-upload-dragdrop +.btn-group > .btn-group:not(:last-child) > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper +.btn-group > .btn-group:not(:last-child) > .swal2-styled, .wizard > .actions +.btn-group > .btn-group:not(:last-child) > a { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.btn-group > .btn:not(:first-child), .ajax-upload-dragdrop .btn-group > .ajax-file-upload:not(:first-child), .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled:not(:first-child), .wizard > .actions .btn-group > a:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn, .ajax-upload-dragdrop +.btn-group > .btn-group:not(:first-child) > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper +.btn-group > .btn-group:not(:first-child) > .swal2-styled, .wizard > .actions +.btn-group > .btn-group:not(:first-child) > a { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.dropdown-toggle-split { + padding-right: 1.03125rem; + padding-left: 1.03125rem; } + .dropdown-toggle-split::after, + .dropup .dropdown-toggle-split::after, + .dropright .dropdown-toggle-split::after { + margin-left: 0; } + .dropleft .dropdown-toggle-split::before { + margin-right: 0; } + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .ajax-upload-dragdrop .btn-group-sm > .ajax-file-upload + .dropdown-toggle-split, .swal2-modal .swal2-buttonswrapper .btn-group-sm > .swal2-styled + .dropdown-toggle-split, .wizard > .actions .btn-group-sm > a + .dropdown-toggle-split { + padding-right: 0.6075rem; + padding-left: 0.6075rem; } + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .ajax-upload-dragdrop .btn-group-lg > .ajax-file-upload + .dropdown-toggle-split, .swal2-modal .swal2-buttonswrapper .btn-group-lg > .swal2-styled + .dropdown-toggle-split, .wizard > .actions .btn-group-lg > a + .dropdown-toggle-split { + padding-right: 1.455rem; + padding-left: 1.455rem; } + +.btn-group-vertical { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .btn-group-vertical .btn, .btn-group-vertical .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .btn-group-vertical .ajax-file-upload, .btn-group-vertical .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group-vertical .swal2-styled, .btn-group-vertical .wizard > .actions a, .wizard > .actions .btn-group-vertical a, + .btn-group-vertical .btn-group { + width: 100%; } + .btn-group-vertical > .btn + .btn, .ajax-upload-dragdrop .btn-group-vertical > .ajax-file-upload + .btn, .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .swal2-styled + .btn, .wizard > .actions .btn-group-vertical > a + .btn, .ajax-upload-dragdrop .btn-group-vertical > .btn + .ajax-file-upload, .ajax-upload-dragdrop .btn-group-vertical > .ajax-file-upload + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .btn-group-vertical > .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .swal2-styled + .ajax-file-upload, .wizard > .actions .ajax-upload-dragdrop .btn-group-vertical > a + .ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions .btn-group-vertical > a + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .btn + .swal2-styled, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .btn-group-vertical > .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .swal2-styled + .swal2-styled, .wizard > .actions .swal2-modal .swal2-buttonswrapper .btn-group-vertical > a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions .btn-group-vertical > a + .swal2-styled, .wizard > .actions .btn-group-vertical > .btn + a, .ajax-upload-dragdrop .wizard > .actions .btn-group-vertical > .ajax-file-upload + a, .wizard > .actions .ajax-upload-dragdrop .btn-group-vertical > .ajax-file-upload + a, .swal2-modal .swal2-buttonswrapper .wizard > .actions .btn-group-vertical > .swal2-styled + a, .wizard > .actions .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .swal2-styled + a, .wizard > .actions .btn-group-vertical > a + a, + .btn-group-vertical > .btn + .btn-group, .ajax-upload-dragdrop + .btn-group-vertical > .ajax-file-upload + .btn-group, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical > .swal2-styled + .btn-group, .wizard > .actions + .btn-group-vertical > a + .btn-group, + .btn-group-vertical > .btn-group + .btn, .ajax-upload-dragdrop + .btn-group-vertical > .btn-group + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical > .btn-group + .swal2-styled, .wizard > .actions + .btn-group-vertical > .btn-group + a, + .btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; } + .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .ajax-upload-dragdrop .btn-group-vertical > .ajax-file-upload:not(:last-child):not(.dropdown-toggle), .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .swal2-styled:not(:last-child):not(.dropdown-toggle), .wizard > .actions .btn-group-vertical > a:not(:last-child):not(.dropdown-toggle), + .btn-group-vertical > .btn-group:not(:last-child) > .btn, .ajax-upload-dragdrop + .btn-group-vertical > .btn-group:not(:last-child) > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical > .btn-group:not(:last-child) > .swal2-styled, .wizard > .actions + .btn-group-vertical > .btn-group:not(:last-child) > a { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } + .btn-group-vertical > .btn:not(:first-child), .ajax-upload-dragdrop .btn-group-vertical > .ajax-file-upload:not(:first-child), .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .swal2-styled:not(:first-child), .wizard > .actions .btn-group-vertical > a:not(:first-child), + .btn-group-vertical > .btn-group:not(:first-child) > .btn, .ajax-upload-dragdrop + .btn-group-vertical > .btn-group:not(:first-child) > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper + .btn-group-vertical > .btn-group:not(:first-child) > .swal2-styled, .wizard > .actions + .btn-group-vertical > .btn-group:not(:first-child) > a { + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.btn-group-toggle > .btn, .ajax-upload-dragdrop .btn-group-toggle > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group-toggle > .swal2-styled, .wizard > .actions .btn-group-toggle > a, +.btn-group-toggle > .btn-group > .btn, .ajax-upload-dragdrop +.btn-group-toggle > .btn-group > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper +.btn-group-toggle > .btn-group > .swal2-styled, .wizard > .actions +.btn-group-toggle > .btn-group > a { + margin-bottom: 0; } + .btn-group-toggle > .btn input[type="radio"], .ajax-upload-dragdrop .btn-group-toggle > .ajax-file-upload input[type="radio"], .swal2-modal .swal2-buttonswrapper .btn-group-toggle > .swal2-styled input[type="radio"], .wizard > .actions .btn-group-toggle > a input[type="radio"], + .btn-group-toggle > .btn input[type="checkbox"], .ajax-upload-dragdrop + .btn-group-toggle > .ajax-file-upload input[type="checkbox"], .swal2-modal .swal2-buttonswrapper + .btn-group-toggle > .swal2-styled input[type="checkbox"], .wizard > .actions + .btn-group-toggle > a input[type="checkbox"], + .btn-group-toggle > .btn-group > .btn input[type="radio"], .ajax-upload-dragdrop + .btn-group-toggle > .btn-group > .ajax-file-upload input[type="radio"], .swal2-modal .swal2-buttonswrapper + .btn-group-toggle > .btn-group > .swal2-styled input[type="radio"], .wizard > .actions + .btn-group-toggle > .btn-group > a input[type="radio"], + .btn-group-toggle > .btn-group > .btn input[type="checkbox"], .ajax-upload-dragdrop + .btn-group-toggle > .btn-group > .ajax-file-upload input[type="checkbox"], .swal2-modal .swal2-buttonswrapper + .btn-group-toggle > .btn-group > .swal2-styled input[type="checkbox"], .wizard > .actions + .btn-group-toggle > .btn-group > a input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; } + +.input-group, .asColorPicker-wrap { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + width: 100%; } + .input-group > .form-control, .asColorPicker-wrap > .form-control, .input-group > .asColorPicker-input, .asColorPicker-wrap > .asColorPicker-input, .dataTables_wrapper .input-group > select, .dataTables_wrapper .asColorPicker-wrap > select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text], + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number], .select2-container--default .input-group > .select2-selection--single, .select2-container--default .asColorPicker-wrap > .select2-selection--single, .select2-container--default .select2-selection--single .input-group > .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field, .input-group > .tt-hint, .asColorPicker-wrap > .tt-hint, .input-group > + .tt-query, .asColorPicker-wrap > + .tt-query, .input-group > + .typeahead, .asColorPicker-wrap > + .typeahead, + .input-group > .custom-select, .asColorPicker-wrap > .custom-select, + .input-group > .custom-file, .asColorPicker-wrap > .custom-file { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; } + .input-group > .form-control + .form-control, .asColorPicker-wrap > .form-control + .form-control, .input-group > .asColorPicker-input + .form-control, .asColorPicker-wrap > .asColorPicker-input + .form-control, .dataTables_wrapper .input-group > select + .form-control, .dataTables_wrapper .asColorPicker-wrap > select + .form-control, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + .form-control, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .form-control, + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + .form-control, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .form-control, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + .form-control, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .form-control, .select2-container--default .input-group > .select2-selection--single + .form-control, .select2-container--default .asColorPicker-wrap > .select2-selection--single + .form-control, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .form-control, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .form-control, .input-group > .tt-hint + .form-control, .asColorPicker-wrap > .tt-hint + .form-control, .input-group > + .tt-query + .form-control, .asColorPicker-wrap > + .tt-query + .form-control, .input-group > + .typeahead + .form-control, .asColorPicker-wrap > + .typeahead + .form-control, .input-group > .form-control + .asColorPicker-input, .asColorPicker-wrap > .form-control + .asColorPicker-input, .input-group > .asColorPicker-input + .asColorPicker-input, .asColorPicker-wrap > .asColorPicker-input + .asColorPicker-input, .dataTables_wrapper .input-group > select + .asColorPicker-input, .dataTables_wrapper .asColorPicker-wrap > select + .asColorPicker-input, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + .asColorPicker-input, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .asColorPicker-input, + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + .asColorPicker-input, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .asColorPicker-input, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + .asColorPicker-input, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .asColorPicker-input, .select2-container--default .input-group > .select2-selection--single + .asColorPicker-input, .select2-container--default .asColorPicker-wrap > .select2-selection--single + .asColorPicker-input, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .asColorPicker-input, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .asColorPicker-input, .input-group > .tt-hint + .asColorPicker-input, .asColorPicker-wrap > .tt-hint + .asColorPicker-input, .input-group > + .tt-query + .asColorPicker-input, .asColorPicker-wrap > + .tt-query + .asColorPicker-input, .input-group > + .typeahead + .asColorPicker-input, .asColorPicker-wrap > + .typeahead + .asColorPicker-input, .dataTables_wrapper .input-group > .form-control + select, .dataTables_wrapper .asColorPicker-wrap > .form-control + select, .dataTables_wrapper .input-group > .asColorPicker-input + select, .dataTables_wrapper .asColorPicker-wrap > .asColorPicker-input + select, .dataTables_wrapper .input-group > select + select, .dataTables_wrapper .asColorPicker-wrap > select + select, .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .input-group > input[type=text] + select, .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + select, .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .asColorPicker-wrap > input[type=text] + select, .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .input-group > select + select, .dataTables_wrapper + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .asColorPicker-wrap > select + select, .dataTables_wrapper + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + select, .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .input-group > input[type=number] + select, .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + select, .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .asColorPicker-wrap > input[type=number] + select, .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + select, .select2-container--default .dataTables_wrapper .input-group > .select2-selection--single + select, .dataTables_wrapper .select2-container--default .input-group > .select2-selection--single + select, .select2-container--default .dataTables_wrapper .asColorPicker-wrap > .select2-selection--single + select, .dataTables_wrapper .select2-container--default .asColorPicker-wrap > .select2-selection--single + select, .select2-container--default .select2-selection--single .dataTables_wrapper .input-group > .select2-search__field + select, .dataTables_wrapper .select2-container--default .select2-selection--single .input-group > .select2-search__field + select, .select2-container--default .select2-selection--single .dataTables_wrapper .asColorPicker-wrap > .select2-search__field + select, .dataTables_wrapper .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + select, .dataTables_wrapper .input-group > .tt-hint + select, .dataTables_wrapper .asColorPicker-wrap > .tt-hint + select, .dataTables_wrapper .input-group > + .tt-query + select, .dataTables_wrapper .asColorPicker-wrap > + .tt-query + select, .dataTables_wrapper .input-group > + .typeahead + select, .dataTables_wrapper .asColorPicker-wrap > + .typeahead + select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .form-control + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .form-control + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .asColorPicker-input + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .asColorPicker-input + input[type=text], .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .input-group > select + input[type=text], .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .asColorPicker-wrap > select + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + input[type=text], .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .select2-selection--single + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .input-group > .select2-selection--single + input[type=text], .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .select2-selection--single + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .asColorPicker-wrap > .select2-selection--single + input[type=text], .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .select2-search__field + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .input-group > .select2-search__field + input[type=text], .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .select2-search__field + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .tt-hint + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .tt-hint + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > + .tt-query + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > + .tt-query + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > + .typeahead + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > + .typeahead + input[type=text], + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .form-control + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .form-control + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .asColorPicker-input + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .asColorPicker-input + select, .dataTables_wrapper + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .input-group > select + select, .dataTables_wrapper + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .asColorPicker-wrap > select + select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + select, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + select, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + select, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + select, .select2-container--default + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .select2-selection--single + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .input-group > .select2-selection--single + select, .select2-container--default + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .select2-selection--single + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .asColorPicker-wrap > .select2-selection--single + select, .select2-container--default .select2-selection--single + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .select2-search__field + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .input-group > .select2-search__field + select, .select2-container--default .select2-selection--single + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .select2-search__field + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .tt-hint + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .tt-hint + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > + .tt-query + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > + .tt-query + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > + .typeahead + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > + .typeahead + select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .form-control + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .form-control + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .asColorPicker-input + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .asColorPicker-input + input[type=number], .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .input-group > select + input[type=number], .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .asColorPicker-wrap > select + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + input[type=number], .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .select2-selection--single + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .input-group > .select2-selection--single + input[type=number], .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .select2-selection--single + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .asColorPicker-wrap > .select2-selection--single + input[type=number], .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .select2-search__field + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .input-group > .select2-search__field + input[type=number], .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .select2-search__field + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .tt-hint + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .tt-hint + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > + .tt-query + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > + .tt-query + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > + .typeahead + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > + .typeahead + input[type=number], .select2-container--default .input-group > .form-control + .select2-selection--single, .select2-container--default .asColorPicker-wrap > .form-control + .select2-selection--single, .select2-container--default .input-group > .asColorPicker-input + .select2-selection--single, .select2-container--default .asColorPicker-wrap > .asColorPicker-input + .select2-selection--single, .dataTables_wrapper .select2-container--default .input-group > select + .select2-selection--single, .select2-container--default .dataTables_wrapper .input-group > select + .select2-selection--single, .dataTables_wrapper .select2-container--default .asColorPicker-wrap > select + .select2-selection--single, .select2-container--default .dataTables_wrapper .asColorPicker-wrap > select + .select2-selection--single, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .input-group > input[type=text] + .select2-selection--single, .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + .select2-selection--single, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .asColorPicker-wrap > input[type=text] + .select2-selection--single, .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .select2-selection--single, + .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .input-group > select + .select2-selection--single, .select2-container--default + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + .select2-selection--single, + .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .asColorPicker-wrap > select + .select2-selection--single, .select2-container--default + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .select2-selection--single, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .input-group > input[type=number] + .select2-selection--single, .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + .select2-selection--single, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .asColorPicker-wrap > input[type=number] + .select2-selection--single, .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .select2-selection--single, .select2-container--default .input-group > .select2-selection--single + .select2-selection--single, .select2-container--default .asColorPicker-wrap > .select2-selection--single + .select2-selection--single, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .select2-selection--single, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .select2-selection--single, .select2-container--default .input-group > .tt-hint + .select2-selection--single, .select2-container--default .asColorPicker-wrap > .tt-hint + .select2-selection--single, .select2-container--default .input-group > + .tt-query + .select2-selection--single, .select2-container--default .asColorPicker-wrap > + .tt-query + .select2-selection--single, .select2-container--default .input-group > + .typeahead + .select2-selection--single, .select2-container--default .asColorPicker-wrap > + .typeahead + .select2-selection--single, .select2-container--default .select2-selection--single .input-group > .form-control + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .form-control + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .asColorPicker-input + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .asColorPicker-input + .select2-search__field, .dataTables_wrapper .select2-container--default .select2-selection--single .input-group > select + .select2-search__field, .select2-container--default .select2-selection--single .dataTables_wrapper .input-group > select + .select2-search__field, .dataTables_wrapper .select2-container--default .select2-selection--single .asColorPicker-wrap > select + .select2-search__field, .select2-container--default .select2-selection--single .dataTables_wrapper .asColorPicker-wrap > select + .select2-search__field, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .input-group > input[type=text] + .select2-search__field, .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + .select2-search__field, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .asColorPicker-wrap > input[type=text] + .select2-search__field, .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .select2-search__field, + .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .input-group > select + .select2-search__field, .select2-container--default .select2-selection--single + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + .select2-search__field, + .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .asColorPicker-wrap > select + .select2-search__field, .select2-container--default .select2-selection--single + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .select2-search__field, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .input-group > input[type=number] + .select2-search__field, .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + .select2-search__field, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .asColorPicker-wrap > input[type=number] + .select2-search__field, .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .select2-selection--single + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-selection--single + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .tt-hint + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .tt-hint + .select2-search__field, .select2-container--default .select2-selection--single .input-group > + .tt-query + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > + .tt-query + .select2-search__field, .select2-container--default .select2-selection--single .input-group > + .typeahead + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > + .typeahead + .select2-search__field, .input-group > .form-control + .tt-hint, .asColorPicker-wrap > .form-control + .tt-hint, .input-group > .asColorPicker-input + .tt-hint, .asColorPicker-wrap > .asColorPicker-input + .tt-hint, .dataTables_wrapper .input-group > select + .tt-hint, .dataTables_wrapper .asColorPicker-wrap > select + .tt-hint, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + .tt-hint, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .tt-hint, + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + .tt-hint, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .tt-hint, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + .tt-hint, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .tt-hint, .select2-container--default .input-group > .select2-selection--single + .tt-hint, .select2-container--default .asColorPicker-wrap > .select2-selection--single + .tt-hint, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .tt-hint, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .tt-hint, .input-group > .tt-hint + .tt-hint, .asColorPicker-wrap > .tt-hint + .tt-hint, .input-group > + .tt-query + .tt-hint, .asColorPicker-wrap > + .tt-query + .tt-hint, .input-group > + .typeahead + .tt-hint, .asColorPicker-wrap > + .typeahead + .tt-hint, .input-group > .form-control + + .tt-query, .asColorPicker-wrap > .form-control + + .tt-query, .input-group > .asColorPicker-input + + .tt-query, .asColorPicker-wrap > .asColorPicker-input + + .tt-query, .dataTables_wrapper .input-group > select + + .tt-query, .dataTables_wrapper .asColorPicker-wrap > select + + .tt-query, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + + .tt-query, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + + .tt-query, + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + + .tt-query, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + + .tt-query, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + + .tt-query, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + + .tt-query, .select2-container--default .input-group > .select2-selection--single + + .tt-query, .select2-container--default .asColorPicker-wrap > .select2-selection--single + + .tt-query, .select2-container--default .select2-selection--single .input-group > .select2-search__field + + .tt-query, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + + .tt-query, .input-group > .tt-hint + + .tt-query, .asColorPicker-wrap > .tt-hint + + .tt-query, .input-group > + .tt-query + + .tt-query, .asColorPicker-wrap > + .tt-query + + .tt-query, .input-group > + .typeahead + + .tt-query, .asColorPicker-wrap > + .typeahead + + .tt-query, .input-group > .form-control + + .typeahead, .asColorPicker-wrap > .form-control + + .typeahead, .input-group > .asColorPicker-input + + .typeahead, .asColorPicker-wrap > .asColorPicker-input + + .typeahead, .dataTables_wrapper .input-group > select + + .typeahead, .dataTables_wrapper .asColorPicker-wrap > select + + .typeahead, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + + .typeahead, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + + .typeahead, + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + + .typeahead, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + + .typeahead, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + + .typeahead, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + + .typeahead, .select2-container--default .input-group > .select2-selection--single + + .typeahead, .select2-container--default .asColorPicker-wrap > .select2-selection--single + + .typeahead, .select2-container--default .select2-selection--single .input-group > .select2-search__field + + .typeahead, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + + .typeahead, .input-group > .tt-hint + + .typeahead, .asColorPicker-wrap > .tt-hint + + .typeahead, .input-group > + .tt-query + + .typeahead, .asColorPicker-wrap > + .tt-query + + .typeahead, .input-group > + .typeahead + + .typeahead, .asColorPicker-wrap > + .typeahead + + .typeahead, + .input-group > .form-control + .custom-select, .asColorPicker-wrap > .form-control + .custom-select, + .input-group > .asColorPicker-input + .custom-select, .asColorPicker-wrap > .asColorPicker-input + .custom-select, .dataTables_wrapper + .input-group > select + .custom-select, .dataTables_wrapper .asColorPicker-wrap > select + .custom-select, .jsgrid .jsgrid-table .jsgrid-filter-row + .input-group > input[type=text] + .custom-select, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .custom-select, + .jsgrid .jsgrid-table .jsgrid-filter-row + .input-group > select + .custom-select, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .custom-select, .jsgrid .jsgrid-table .jsgrid-filter-row + .input-group > input[type=number] + .custom-select, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .custom-select, .select2-container--default + .input-group > .select2-selection--single + .custom-select, .select2-container--default .asColorPicker-wrap > .select2-selection--single + .custom-select, .select2-container--default .select2-selection--single + .input-group > .select2-search__field + .custom-select, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .custom-select, + .input-group > .tt-hint + .custom-select, .asColorPicker-wrap > .tt-hint + .custom-select, + .input-group > + .tt-query + .custom-select, .asColorPicker-wrap > + .tt-query + .custom-select, + .input-group > + .typeahead + .custom-select, .asColorPicker-wrap > + .typeahead + .custom-select, + .input-group > .form-control + .custom-file, .asColorPicker-wrap > .form-control + .custom-file, + .input-group > .asColorPicker-input + .custom-file, .asColorPicker-wrap > .asColorPicker-input + .custom-file, .dataTables_wrapper + .input-group > select + .custom-file, .dataTables_wrapper .asColorPicker-wrap > select + .custom-file, .jsgrid .jsgrid-table .jsgrid-filter-row + .input-group > input[type=text] + .custom-file, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .custom-file, + .jsgrid .jsgrid-table .jsgrid-filter-row + .input-group > select + .custom-file, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .custom-file, .jsgrid .jsgrid-table .jsgrid-filter-row + .input-group > input[type=number] + .custom-file, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .custom-file, .select2-container--default + .input-group > .select2-selection--single + .custom-file, .select2-container--default .asColorPicker-wrap > .select2-selection--single + .custom-file, .select2-container--default .select2-selection--single + .input-group > .select2-search__field + .custom-file, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .custom-file, + .input-group > .tt-hint + .custom-file, .asColorPicker-wrap > .tt-hint + .custom-file, + .input-group > + .tt-query + .custom-file, .asColorPicker-wrap > + .tt-query + .custom-file, + .input-group > + .typeahead + .custom-file, .asColorPicker-wrap > + .typeahead + .custom-file, + .input-group > .custom-select + .form-control, .asColorPicker-wrap > .custom-select + .form-control, + .input-group > .custom-select + .asColorPicker-input, .asColorPicker-wrap > .custom-select + .asColorPicker-input, .dataTables_wrapper + .input-group > .custom-select + select, .dataTables_wrapper .asColorPicker-wrap > .custom-select + select, .jsgrid .jsgrid-table .jsgrid-filter-row + .input-group > .custom-select + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .custom-select + input[type=text], + .jsgrid .jsgrid-table .jsgrid-filter-row + .input-group > .custom-select + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .custom-select + select, .jsgrid .jsgrid-table .jsgrid-filter-row + .input-group > .custom-select + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .custom-select + input[type=number], .select2-container--default + .input-group > .custom-select + .select2-selection--single, .select2-container--default .asColorPicker-wrap > .custom-select + .select2-selection--single, .select2-container--default .select2-selection--single + .input-group > .custom-select + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .custom-select + .select2-search__field, + .input-group > .custom-select + .tt-hint, .asColorPicker-wrap > .custom-select + .tt-hint, + .input-group > .custom-select + + .tt-query, .asColorPicker-wrap > .custom-select + + .tt-query, + .input-group > .custom-select + + .typeahead, .asColorPicker-wrap > .custom-select + + .typeahead, + .input-group > .custom-select + .custom-select, .asColorPicker-wrap > .custom-select + .custom-select, + .input-group > .custom-select + .custom-file, .asColorPicker-wrap > .custom-select + .custom-file, + .input-group > .custom-file + .form-control, .asColorPicker-wrap > .custom-file + .form-control, + .input-group > .custom-file + .asColorPicker-input, .asColorPicker-wrap > .custom-file + .asColorPicker-input, .dataTables_wrapper + .input-group > .custom-file + select, .dataTables_wrapper .asColorPicker-wrap > .custom-file + select, .jsgrid .jsgrid-table .jsgrid-filter-row + .input-group > .custom-file + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .custom-file + input[type=text], + .jsgrid .jsgrid-table .jsgrid-filter-row + .input-group > .custom-file + select, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .custom-file + select, .jsgrid .jsgrid-table .jsgrid-filter-row + .input-group > .custom-file + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .custom-file + input[type=number], .select2-container--default + .input-group > .custom-file + .select2-selection--single, .select2-container--default .asColorPicker-wrap > .custom-file + .select2-selection--single, .select2-container--default .select2-selection--single + .input-group > .custom-file + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .custom-file + .select2-search__field, + .input-group > .custom-file + .tt-hint, .asColorPicker-wrap > .custom-file + .tt-hint, + .input-group > .custom-file + + .tt-query, .asColorPicker-wrap > .custom-file + + .tt-query, + .input-group > .custom-file + + .typeahead, .asColorPicker-wrap > .custom-file + + .typeahead, + .input-group > .custom-file + .custom-select, .asColorPicker-wrap > .custom-file + .custom-select, + .input-group > .custom-file + .custom-file, .asColorPicker-wrap > .custom-file + .custom-file { + margin-left: -1px; } + .input-group > .form-control:focus, .asColorPicker-wrap > .form-control:focus, .input-group > .asColorPicker-input:focus, .asColorPicker-wrap > .asColorPicker-input:focus, .dataTables_wrapper .input-group > select:focus, .dataTables_wrapper .asColorPicker-wrap > select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text]:focus, + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select:focus, + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number]:focus, .select2-container--default .input-group > .select2-selection--single:focus, .select2-container--default .asColorPicker-wrap > .select2-selection--single:focus, .select2-container--default .select2-selection--single .input-group > .select2-search__field:focus, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field:focus, .input-group > .tt-hint:focus, .asColorPicker-wrap > .tt-hint:focus, .input-group > + .tt-query:focus, .asColorPicker-wrap > + .tt-query:focus, .input-group > + .typeahead:focus, .asColorPicker-wrap > + .typeahead:focus, + .input-group > .custom-select:focus, .asColorPicker-wrap > .custom-select:focus, + .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label, .asColorPicker-wrap > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; } + .input-group > .custom-file .custom-file-input:focus, .asColorPicker-wrap > .custom-file .custom-file-input:focus { + z-index: 4; } + .input-group > .form-control:not(:last-child), .asColorPicker-wrap > .form-control:not(:last-child), .input-group > .asColorPicker-input:not(:last-child), .asColorPicker-wrap > .asColorPicker-input:not(:last-child), .dataTables_wrapper .input-group > select:not(:last-child), .dataTables_wrapper .asColorPicker-wrap > select:not(:last-child), .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text]:not(:last-child), .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text]:not(:last-child), + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select:not(:last-child), + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select:not(:last-child), .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number]:not(:last-child), .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number]:not(:last-child), .select2-container--default .input-group > .select2-selection--single:not(:last-child), .select2-container--default .asColorPicker-wrap > .select2-selection--single:not(:last-child), .select2-container--default .select2-selection--single .input-group > .select2-search__field:not(:last-child), .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field:not(:last-child), .input-group > .tt-hint:not(:last-child), .asColorPicker-wrap > .tt-hint:not(:last-child), .input-group > + .tt-query:not(:last-child), .asColorPicker-wrap > + .tt-query:not(:last-child), .input-group > + .typeahead:not(:last-child), .asColorPicker-wrap > + .typeahead:not(:last-child), + .input-group > .custom-select:not(:last-child), .asColorPicker-wrap > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .input-group > .form-control:not(:first-child), .asColorPicker-wrap > .form-control:not(:first-child), .input-group > .asColorPicker-input:not(:first-child), .asColorPicker-wrap > .asColorPicker-input:not(:first-child), .dataTables_wrapper .input-group > select:not(:first-child), .dataTables_wrapper .asColorPicker-wrap > select:not(:first-child), .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text]:not(:first-child), .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text]:not(:first-child), + .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select:not(:first-child), + .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select:not(:first-child), .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number]:not(:first-child), .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number]:not(:first-child), .select2-container--default .input-group > .select2-selection--single:not(:first-child), .select2-container--default .asColorPicker-wrap > .select2-selection--single:not(:first-child), .select2-container--default .select2-selection--single .input-group > .select2-search__field:not(:first-child), .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field:not(:first-child), .input-group > .tt-hint:not(:first-child), .asColorPicker-wrap > .tt-hint:not(:first-child), .input-group > + .tt-query:not(:first-child), .asColorPicker-wrap > + .tt-query:not(:first-child), .input-group > + .typeahead:not(:first-child), .asColorPicker-wrap > + .typeahead:not(:first-child), + .input-group > .custom-select:not(:first-child), .asColorPicker-wrap > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .input-group > .custom-file, .asColorPicker-wrap > .custom-file { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .input-group > .custom-file:not(:last-child) .custom-file-label, .asColorPicker-wrap > .custom-file:not(:last-child) .custom-file-label, + .input-group > .custom-file:not(:last-child) .custom-file-label::after, .asColorPicker-wrap > .custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .input-group > .custom-file:not(:first-child) .custom-file-label, .asColorPicker-wrap > .custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.input-group-prepend, .asColorPicker-trigger, +.input-group-append { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .input-group-prepend .btn, .asColorPicker-trigger .btn, .input-group-prepend .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .input-group-prepend .ajax-file-upload, .asColorPicker-trigger .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-trigger .ajax-file-upload, .input-group-prepend .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .input-group-prepend .swal2-styled, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .swal2-styled, .input-group-prepend .wizard > .actions a, .wizard > .actions .input-group-prepend a, .asColorPicker-trigger .wizard > .actions a, .wizard > .actions .asColorPicker-trigger a, + .input-group-append .btn, + .input-group-append .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop + .input-group-append .ajax-file-upload, + .input-group-append .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper + .input-group-append .swal2-styled, + .input-group-append .wizard > .actions a, .wizard > .actions + .input-group-append a { + position: relative; + z-index: 2; } + .input-group-prepend .btn + .btn, .asColorPicker-trigger .btn + .btn, .input-group-prepend .ajax-upload-dragdrop .ajax-file-upload + .btn, .ajax-upload-dragdrop .input-group-prepend .ajax-file-upload + .btn, .asColorPicker-trigger .ajax-upload-dragdrop .ajax-file-upload + .btn, .ajax-upload-dragdrop .asColorPicker-trigger .ajax-file-upload + .btn, .input-group-prepend .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn, .swal2-modal .swal2-buttonswrapper .input-group-prepend .swal2-styled + .btn, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .swal2-styled + .btn, .input-group-prepend .wizard > .actions a + .btn, .wizard > .actions .input-group-prepend a + .btn, .asColorPicker-trigger .wizard > .actions a + .btn, .wizard > .actions .asColorPicker-trigger a + .btn, .input-group-prepend .ajax-upload-dragdrop .btn + .ajax-file-upload, .ajax-upload-dragdrop .input-group-prepend .btn + .ajax-file-upload, .asColorPicker-trigger .ajax-upload-dragdrop .btn + .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-trigger .btn + .ajax-file-upload, .input-group-prepend .ajax-upload-dragdrop .ajax-file-upload + .ajax-file-upload, .ajax-upload-dragdrop .input-group-prepend .ajax-file-upload + .ajax-file-upload, .asColorPicker-trigger .ajax-upload-dragdrop .ajax-file-upload + .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-trigger .ajax-file-upload + .ajax-file-upload, .input-group-prepend .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .input-group-prepend .swal2-modal .swal2-buttonswrapper .swal2-styled + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .input-group-prepend .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .input-group-prepend .swal2-styled + .ajax-file-upload, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .swal2-styled + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .swal2-styled + .ajax-file-upload, .input-group-prepend .wizard > .actions .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .input-group-prepend .wizard > .actions a + .ajax-file-upload, .wizard > .actions .input-group-prepend .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions .input-group-prepend a + .ajax-file-upload, .asColorPicker-trigger .wizard > .actions .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-trigger .wizard > .actions a + .ajax-file-upload, .wizard > .actions .asColorPicker-trigger .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions .asColorPicker-trigger a + .ajax-file-upload, .input-group-prepend .swal2-modal .swal2-buttonswrapper .btn + .swal2-styled, .swal2-modal .swal2-buttonswrapper .input-group-prepend .btn + .swal2-styled, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .btn + .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .btn + .swal2-styled, .input-group-prepend .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .input-group-prepend .ajax-upload-dragdrop .ajax-file-upload + .swal2-styled, .ajax-upload-dragdrop .input-group-prepend .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .input-group-prepend .ajax-file-upload + .swal2-styled, .asColorPicker-trigger .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .ajax-upload-dragdrop .ajax-file-upload + .swal2-styled, .ajax-upload-dragdrop .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .asColorPicker-trigger .ajax-file-upload + .swal2-styled, .input-group-prepend .swal2-modal .swal2-buttonswrapper .swal2-styled + .swal2-styled, .swal2-modal .swal2-buttonswrapper .input-group-prepend .swal2-styled + .swal2-styled, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .swal2-styled + .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .swal2-styled + .swal2-styled, .input-group-prepend .wizard > .actions .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .input-group-prepend .wizard > .actions a + .swal2-styled, .wizard > .actions .input-group-prepend .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions .input-group-prepend a + .swal2-styled, .asColorPicker-trigger .wizard > .actions .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .wizard > .actions a + .swal2-styled, .wizard > .actions .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions .asColorPicker-trigger a + .swal2-styled, .input-group-prepend .wizard > .actions .btn + a, .wizard > .actions .input-group-prepend .btn + a, .asColorPicker-trigger .wizard > .actions .btn + a, .wizard > .actions .asColorPicker-trigger .btn + a, .input-group-prepend .ajax-upload-dragdrop .wizard > .actions .ajax-file-upload + a, .wizard > .actions .input-group-prepend .ajax-upload-dragdrop .ajax-file-upload + a, .ajax-upload-dragdrop .input-group-prepend .wizard > .actions .ajax-file-upload + a, .wizard > .actions .ajax-upload-dragdrop .input-group-prepend .ajax-file-upload + a, .asColorPicker-trigger .ajax-upload-dragdrop .wizard > .actions .ajax-file-upload + a, .wizard > .actions .asColorPicker-trigger .ajax-upload-dragdrop .ajax-file-upload + a, .ajax-upload-dragdrop .asColorPicker-trigger .wizard > .actions .ajax-file-upload + a, .wizard > .actions .ajax-upload-dragdrop .asColorPicker-trigger .ajax-file-upload + a, .input-group-prepend .swal2-modal .swal2-buttonswrapper .wizard > .actions .swal2-styled + a, .wizard > .actions .input-group-prepend .swal2-modal .swal2-buttonswrapper .swal2-styled + a, .swal2-modal .swal2-buttonswrapper .input-group-prepend .wizard > .actions .swal2-styled + a, .wizard > .actions .swal2-modal .swal2-buttonswrapper .input-group-prepend .swal2-styled + a, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .wizard > .actions .swal2-styled + a, .wizard > .actions .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .swal2-styled + a, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .wizard > .actions .swal2-styled + a, .wizard > .actions .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .swal2-styled + a, .input-group-prepend .wizard > .actions a + a, .wizard > .actions .input-group-prepend a + a, .asColorPicker-trigger .wizard > .actions a + a, .wizard > .actions .asColorPicker-trigger a + a, + .input-group-prepend .btn + .input-group-text, .asColorPicker-trigger .btn + .input-group-text, + .input-group-prepend .ajax-upload-dragdrop .ajax-file-upload + .input-group-text, .ajax-upload-dragdrop + .input-group-prepend .ajax-file-upload + .input-group-text, .asColorPicker-trigger .ajax-upload-dragdrop .ajax-file-upload + .input-group-text, .ajax-upload-dragdrop .asColorPicker-trigger .ajax-file-upload + .input-group-text, + .input-group-prepend .swal2-modal .swal2-buttonswrapper .swal2-styled + .input-group-text, .swal2-modal .swal2-buttonswrapper + .input-group-prepend .swal2-styled + .input-group-text, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .swal2-styled + .input-group-text, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .swal2-styled + .input-group-text, + .input-group-prepend .wizard > .actions a + .input-group-text, .wizard > .actions + .input-group-prepend a + .input-group-text, .asColorPicker-trigger .wizard > .actions a + .input-group-text, .wizard > .actions .asColorPicker-trigger a + .input-group-text, + .input-group-prepend .input-group-text + .input-group-text, .asColorPicker-trigger .input-group-text + .input-group-text, + .input-group-prepend .input-group-text + .btn, .asColorPicker-trigger .input-group-text + .btn, + .input-group-prepend .ajax-upload-dragdrop .input-group-text + .ajax-file-upload, .ajax-upload-dragdrop + .input-group-prepend .input-group-text + .ajax-file-upload, .asColorPicker-trigger .ajax-upload-dragdrop .input-group-text + .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-trigger .input-group-text + .ajax-file-upload, + .input-group-prepend .swal2-modal .swal2-buttonswrapper .input-group-text + .swal2-styled, .swal2-modal .swal2-buttonswrapper + .input-group-prepend .input-group-text + .swal2-styled, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .input-group-text + .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .input-group-text + .swal2-styled, + .input-group-prepend .wizard > .actions .input-group-text + a, .wizard > .actions + .input-group-prepend .input-group-text + a, .asColorPicker-trigger .wizard > .actions .input-group-text + a, .wizard > .actions .asColorPicker-trigger .input-group-text + a, + .input-group-append .btn + .btn, + .input-group-append .ajax-upload-dragdrop .ajax-file-upload + .btn, .ajax-upload-dragdrop + .input-group-append .ajax-file-upload + .btn, + .input-group-append .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn, .swal2-modal .swal2-buttonswrapper + .input-group-append .swal2-styled + .btn, + .input-group-append .wizard > .actions a + .btn, .wizard > .actions + .input-group-append a + .btn, + .input-group-append .ajax-upload-dragdrop .btn + .ajax-file-upload, .ajax-upload-dragdrop + .input-group-append .btn + .ajax-file-upload, + .input-group-append .ajax-upload-dragdrop .ajax-file-upload + .ajax-file-upload, .ajax-upload-dragdrop + .input-group-append .ajax-file-upload + .ajax-file-upload, + .input-group-append .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop + .input-group-append .swal2-modal .swal2-buttonswrapper .swal2-styled + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper + .input-group-append .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper + .input-group-append .swal2-styled + .ajax-file-upload, + .input-group-append .wizard > .actions .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop + .input-group-append .wizard > .actions a + .ajax-file-upload, .wizard > .actions + .input-group-append .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions + .input-group-append a + .ajax-file-upload, + .input-group-append .swal2-modal .swal2-buttonswrapper .btn + .swal2-styled, .swal2-modal .swal2-buttonswrapper + .input-group-append .btn + .swal2-styled, + .input-group-append .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper + .input-group-append .ajax-upload-dragdrop .ajax-file-upload + .swal2-styled, .ajax-upload-dragdrop + .input-group-append .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop + .input-group-append .ajax-file-upload + .swal2-styled, + .input-group-append .swal2-modal .swal2-buttonswrapper .swal2-styled + .swal2-styled, .swal2-modal .swal2-buttonswrapper + .input-group-append .swal2-styled + .swal2-styled, + .input-group-append .wizard > .actions .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper + .input-group-append .wizard > .actions a + .swal2-styled, .wizard > .actions + .input-group-append .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions + .input-group-append a + .swal2-styled, + .input-group-append .wizard > .actions .btn + a, .wizard > .actions + .input-group-append .btn + a, + .input-group-append .ajax-upload-dragdrop .wizard > .actions .ajax-file-upload + a, .wizard > .actions + .input-group-append .ajax-upload-dragdrop .ajax-file-upload + a, .ajax-upload-dragdrop + .input-group-append .wizard > .actions .ajax-file-upload + a, .wizard > .actions .ajax-upload-dragdrop + .input-group-append .ajax-file-upload + a, + .input-group-append .swal2-modal .swal2-buttonswrapper .wizard > .actions .swal2-styled + a, .wizard > .actions + .input-group-append .swal2-modal .swal2-buttonswrapper .swal2-styled + a, .swal2-modal .swal2-buttonswrapper + .input-group-append .wizard > .actions .swal2-styled + a, .wizard > .actions .swal2-modal .swal2-buttonswrapper + .input-group-append .swal2-styled + a, + .input-group-append .wizard > .actions a + a, .wizard > .actions + .input-group-append a + a, + .input-group-append .btn + .input-group-text, + .input-group-append .ajax-upload-dragdrop .ajax-file-upload + .input-group-text, .ajax-upload-dragdrop + .input-group-append .ajax-file-upload + .input-group-text, + .input-group-append .swal2-modal .swal2-buttonswrapper .swal2-styled + .input-group-text, .swal2-modal .swal2-buttonswrapper + .input-group-append .swal2-styled + .input-group-text, + .input-group-append .wizard > .actions a + .input-group-text, .wizard > .actions + .input-group-append a + .input-group-text, + .input-group-append .input-group-text + .input-group-text, + .input-group-append .input-group-text + .btn, + .input-group-append .ajax-upload-dragdrop .input-group-text + .ajax-file-upload, .ajax-upload-dragdrop + .input-group-append .input-group-text + .ajax-file-upload, + .input-group-append .swal2-modal .swal2-buttonswrapper .input-group-text + .swal2-styled, .swal2-modal .swal2-buttonswrapper + .input-group-append .input-group-text + .swal2-styled, + .input-group-append .wizard > .actions .input-group-text + a, .wizard > .actions + .input-group-append .input-group-text + a { + margin-left: -1px; } + +.input-group-prepend, .asColorPicker-trigger { + margin-right: -1px; } + +.input-group-append { + margin-left: -1px; } + +.input-group-text { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0.56rem 1.375rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 2px; } + .input-group-text input[type="radio"], + .input-group-text input[type="checkbox"] { + margin-top: 0; } + +.input-group-lg > .form-control, .input-group-lg > .asColorPicker-input, .dataTables_wrapper .input-group-lg > select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group-lg > input[type=text], +.jsgrid .jsgrid-table .jsgrid-filter-row .input-group-lg > select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group-lg > input[type=number], .select2-container--default .input-group-lg > .select2-selection--single, .select2-container--default .select2-selection--single .input-group-lg > .select2-search__field, .input-group-lg > .tt-hint, .input-group-lg > +.tt-query, .input-group-lg > +.typeahead, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .asColorPicker-trigger > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .asColorPicker-trigger > .btn, .ajax-upload-dragdrop +.input-group-lg > .input-group-prepend > .ajax-file-upload, .ajax-upload-dragdrop +.input-group-lg > .asColorPicker-trigger > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper +.input-group-lg > .input-group-prepend > .swal2-styled, .swal2-modal .swal2-buttonswrapper +.input-group-lg > .asColorPicker-trigger > .swal2-styled, .wizard > .actions +.input-group-lg > .input-group-prepend > a, .wizard > .actions +.input-group-lg > .asColorPicker-trigger > a, +.input-group-lg > .input-group-append > .btn, .ajax-upload-dragdrop +.input-group-lg > .input-group-append > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper +.input-group-lg > .input-group-append > .swal2-styled, .wizard > .actions +.input-group-lg > .input-group-append > a { + height: calc(2.875rem + 2px); + padding: 0.94rem 1.94rem; + font-size: 1.25rem; + line-height: 1; + border-radius: 0.3rem; } + +.input-group-sm > .form-control, .input-group-sm > .asColorPicker-input, .dataTables_wrapper .input-group-sm > select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group-sm > input[type=text], +.jsgrid .jsgrid-table .jsgrid-filter-row .input-group-sm > select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group-sm > input[type=number], .select2-container--default .input-group-sm > .select2-selection--single, .select2-container--default .select2-selection--single .input-group-sm > .select2-search__field, .input-group-sm > .tt-hint, .input-group-sm > +.tt-query, .input-group-sm > +.typeahead, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .asColorPicker-trigger > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .asColorPicker-trigger > .btn, .ajax-upload-dragdrop +.input-group-sm > .input-group-prepend > .ajax-file-upload, .ajax-upload-dragdrop +.input-group-sm > .asColorPicker-trigger > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper +.input-group-sm > .input-group-prepend > .swal2-styled, .swal2-modal .swal2-buttonswrapper +.input-group-sm > .asColorPicker-trigger > .swal2-styled, .wizard > .actions +.input-group-sm > .input-group-prepend > a, .wizard > .actions +.input-group-sm > .asColorPicker-trigger > a, +.input-group-sm > .input-group-append > .btn, .ajax-upload-dragdrop +.input-group-sm > .input-group-append > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper +.input-group-sm > .input-group-append > .swal2-styled, .wizard > .actions +.input-group-sm > .input-group-append > a { + height: calc(1.8125rem + 2px); + padding: 0.5rem 0.81rem; + font-size: 0.875rem; + line-height: 1; + border-radius: 0.2rem; } + +.input-group > .input-group-prepend > .btn, .asColorPicker-wrap > .input-group-prepend > .btn, .input-group > .asColorPicker-trigger > .btn, .asColorPicker-wrap > .asColorPicker-trigger > .btn, .ajax-upload-dragdrop .input-group > .input-group-prepend > .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-wrap > .input-group-prepend > .ajax-file-upload, .ajax-upload-dragdrop .input-group > .asColorPicker-trigger > .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-wrap > .asColorPicker-trigger > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .input-group > .input-group-prepend > .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .input-group-prepend > .swal2-styled, .swal2-modal .swal2-buttonswrapper .input-group > .asColorPicker-trigger > .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .asColorPicker-trigger > .swal2-styled, .wizard > .actions .input-group > .input-group-prepend > a, .wizard > .actions .asColorPicker-wrap > .input-group-prepend > a, .wizard > .actions .input-group > .asColorPicker-trigger > a, .wizard > .actions .asColorPicker-wrap > .asColorPicker-trigger > a, +.input-group > .input-group-prepend > .input-group-text, .asColorPicker-wrap > .input-group-prepend > .input-group-text, +.input-group > .asColorPicker-trigger > .input-group-text, .asColorPicker-wrap > .asColorPicker-trigger > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, .asColorPicker-wrap > .input-group-append:not(:last-child) > .btn, .ajax-upload-dragdrop +.input-group > .input-group-append:not(:last-child) > .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-wrap > .input-group-append:not(:last-child) > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper +.input-group > .input-group-append:not(:last-child) > .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .input-group-append:not(:last-child) > .swal2-styled, .wizard > .actions +.input-group > .input-group-append:not(:last-child) > a, .wizard > .actions .asColorPicker-wrap > .input-group-append:not(:last-child) > a, +.input-group > .input-group-append:not(:last-child) > .input-group-text, .asColorPicker-wrap > .input-group-append:not(:last-child) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .asColorPicker-wrap > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .ajax-upload-dragdrop +.input-group > .input-group-append:last-child > .ajax-file-upload:not(:last-child):not(.dropdown-toggle), .ajax-upload-dragdrop .asColorPicker-wrap > .input-group-append:last-child > .ajax-file-upload:not(:last-child):not(.dropdown-toggle), .swal2-modal .swal2-buttonswrapper +.input-group > .input-group-append:last-child > .swal2-styled:not(:last-child):not(.dropdown-toggle), .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .input-group-append:last-child > .swal2-styled:not(:last-child):not(.dropdown-toggle), .wizard > .actions +.input-group > .input-group-append:last-child > a:not(:last-child):not(.dropdown-toggle), .wizard > .actions .asColorPicker-wrap > .input-group-append:last-child > a:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child), .asColorPicker-wrap > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.input-group > .input-group-append > .btn, .asColorPicker-wrap > .input-group-append > .btn, .ajax-upload-dragdrop .input-group > .input-group-append > .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-wrap > .input-group-append > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .input-group > .input-group-append > .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .input-group-append > .swal2-styled, .wizard > .actions .input-group > .input-group-append > a, .wizard > .actions .asColorPicker-wrap > .input-group-append > a, +.input-group > .input-group-append > .input-group-text, .asColorPicker-wrap > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, .asColorPicker-wrap > .input-group-prepend:not(:first-child) > .btn, +.input-group > .asColorPicker-trigger:not(:first-child) > .btn, .asColorPicker-wrap > .asColorPicker-trigger:not(:first-child) > .btn, .ajax-upload-dragdrop +.input-group > .input-group-prepend:not(:first-child) > .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-wrap > .input-group-prepend:not(:first-child) > .ajax-file-upload, .ajax-upload-dragdrop +.input-group > .asColorPicker-trigger:not(:first-child) > .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-wrap > .asColorPicker-trigger:not(:first-child) > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper +.input-group > .input-group-prepend:not(:first-child) > .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .input-group-prepend:not(:first-child) > .swal2-styled, .swal2-modal .swal2-buttonswrapper +.input-group > .asColorPicker-trigger:not(:first-child) > .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .asColorPicker-trigger:not(:first-child) > .swal2-styled, .wizard > .actions +.input-group > .input-group-prepend:not(:first-child) > a, .wizard > .actions .asColorPicker-wrap > .input-group-prepend:not(:first-child) > a, .wizard > .actions +.input-group > .asColorPicker-trigger:not(:first-child) > a, .wizard > .actions .asColorPicker-wrap > .asColorPicker-trigger:not(:first-child) > a, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, .asColorPicker-wrap > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .asColorPicker-trigger:not(:first-child) > .input-group-text, .asColorPicker-wrap > .asColorPicker-trigger:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), .asColorPicker-wrap > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .asColorPicker-trigger:first-child > .btn:not(:first-child), .asColorPicker-wrap > .asColorPicker-trigger:first-child > .btn:not(:first-child), .ajax-upload-dragdrop +.input-group > .input-group-prepend:first-child > .ajax-file-upload:not(:first-child), .ajax-upload-dragdrop .asColorPicker-wrap > .input-group-prepend:first-child > .ajax-file-upload:not(:first-child), .ajax-upload-dragdrop +.input-group > .asColorPicker-trigger:first-child > .ajax-file-upload:not(:first-child), .ajax-upload-dragdrop .asColorPicker-wrap > .asColorPicker-trigger:first-child > .ajax-file-upload:not(:first-child), .swal2-modal .swal2-buttonswrapper +.input-group > .input-group-prepend:first-child > .swal2-styled:not(:first-child), .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .input-group-prepend:first-child > .swal2-styled:not(:first-child), .swal2-modal .swal2-buttonswrapper +.input-group > .asColorPicker-trigger:first-child > .swal2-styled:not(:first-child), .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .asColorPicker-trigger:first-child > .swal2-styled:not(:first-child), .wizard > .actions +.input-group > .input-group-prepend:first-child > a:not(:first-child), .wizard > .actions .asColorPicker-wrap > .input-group-prepend:first-child > a:not(:first-child), .wizard > .actions +.input-group > .asColorPicker-trigger:first-child > a:not(:first-child), .wizard > .actions .asColorPicker-wrap > .asColorPicker-trigger:first-child > a:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .asColorPicker-wrap > .input-group-prepend:first-child > .input-group-text:not(:first-child), +.input-group > .asColorPicker-trigger:first-child > .input-group-text:not(:first-child), .asColorPicker-wrap > .asColorPicker-trigger:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; } + +.custom-control-inline { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + margin-right: 1rem; } + +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0; } + .custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + background-color: #007bff; } + .custom-control-input:focus ~ .custom-control-label::before { + -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .custom-control-input:active ~ .custom-control-label::before { + color: #fff; + background-color: #b3d7ff; } + .custom-control-input:disabled ~ .custom-control-label { + color: #6c757d; } + .custom-control-input:disabled ~ .custom-control-label::before { + background-color: #e9ecef; } + +.custom-control-label { + position: relative; + margin-bottom: 0; } + .custom-control-label::before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: #dee2e6; } + .custom-control-label::after { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background-repeat: no-repeat; + background-position: center center; + background-size: 50% 50%; } + +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; } + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { + background-color: #007bff; } + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); } + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + background-color: #007bff; } + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); } + +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); } + +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); } + +.custom-radio .custom-control-label::before { + border-radius: 50%; } + +.custom-radio .custom-control-input:checked ~ .custom-control-label::before { + background-color: #007bff; } + +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); } + +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); } + +.custom-select { + display: inline-block; + width: 100%; + height: calc(2.25rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; + background-size: 8px 10px; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } + .custom-select:focus { + border-color: #80bdff; + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5); + box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5); } + .custom-select:focus::-ms-value { + color: #495057; + background-color: #ffffff; } + .custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; } + .custom-select:disabled { + color: #6c757d; + background-color: #e9ecef; } + .custom-select::-ms-expand { + opacity: 0; } + +.custom-select-sm { + height: calc(1.8125rem + 2px); + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 75%; } + +.custom-select-lg { + height: calc(2.875rem + 2px); + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 125%; } + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(2.25rem + 2px); + margin-bottom: 0; } + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(2.25rem + 2px); + margin: 0; + opacity: 0; } + .custom-file-input:focus ~ .custom-file-label { + border-color: #80bdff; + -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .custom-file-input:focus ~ .custom-file-label::after { + border-color: #80bdff; } + .custom-file-input:disabled ~ .custom-file-label { + background-color: #e9ecef; } + .custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; } + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(2.25rem + 2px); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; } + .custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: 2.25rem; + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: 1px solid #ced4da; + border-radius: 0 0.25rem 0.25rem 0; } + +.custom-range { + width: 100%; + padding-left: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } + .custom-range:focus { + outline: none; } + .custom-range:focus::-webkit-slider-thumb { + -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .custom-range::-moz-focus-outer { + border: 0; } + .custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + appearance: none; } + @media screen and (prefers-reduced-motion: reduce) { + .custom-range::-webkit-slider-thumb { + -webkit-transition: none; + transition: none; } } + .custom-range::-webkit-slider-thumb:active { + background-color: #b3d7ff; } + .custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; } + .custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -moz-appearance: none; + appearance: none; } + @media screen and (prefers-reduced-motion: reduce) { + .custom-range::-moz-range-thumb { + -webkit-transition: none; + transition: none; } } + .custom-range::-moz-range-thumb:active { + background-color: #b3d7ff; } + .custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; } + .custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: 0.2rem; + margin-left: 0.2rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + appearance: none; } + @media screen and (prefers-reduced-motion: reduce) { + .custom-range::-ms-thumb { + -webkit-transition: none; + transition: none; } } + .custom-range::-ms-thumb:active { + background-color: #b3d7ff; } + .custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; } + .custom-range::-ms-fill-lower { + background-color: #dee2e6; + border-radius: 1rem; } + .custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dee2e6; + border-radius: 1rem; } + +.custom-control-label::before, +.custom-file-label, +.custom-select { + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } + @media screen and (prefers-reduced-motion: reduce) { + .custom-control-label::before, + .custom-file-label, + .custom-select { + -webkit-transition: none; + transition: none; } } + +.nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + +.nav-link { + display: block; + padding: 0.5rem 1rem; } + .nav-link:hover, .nav-link:focus { + text-decoration: none; } + .nav-link.disabled { + color: #6c757d; } + +.nav-tabs { + border-bottom: 1px solid #dee2e6; } + .nav-tabs .nav-item { + margin-bottom: -1px; } + .nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } + .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; } + .nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; } + .nav-tabs .nav-link.active, + .nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; } + .nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.nav-pills .nav-link { + border-radius: 0.25rem; } + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #007bff; } + +.nav-fill .nav-item { + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + text-align: center; } + +.nav-justified .nav-item { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + text-align: center; } + +.tab-content > .tab-pane { + display: none; } + +.tab-content > .active { + display: block; } + +.navbar { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 0.5rem 1rem; } + .navbar > .container, + .navbar > .container-fluid { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; } + +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; } + .navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; } + +.navbar-nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + .navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; } + .navbar-nav .dropdown-menu { + position: static; + float: none; } + +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; } + +.navbar-collapse { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; } + .navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; } + .navbar-toggler:not(:disabled):not(.disabled) { + cursor: pointer; } + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; } + +@media (max-width: 575.98px) { + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 576px) { + .navbar-expand-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand-sm .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand-sm .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .navbar-expand-sm .navbar-toggler { + display: none; } } + +@media (max-width: 767.98px) { + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 768px) { + .navbar-expand-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand-md .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand-md .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .navbar-expand-md .navbar-toggler { + display: none; } } + +@media (max-width: 991.98px) { + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 992px) { + .navbar-expand-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand-lg .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand-lg .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .navbar-expand-lg .navbar-toggler { + display: none; } } + +@media (max-width: 1199.98px) { + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 1200px) { + .navbar-expand-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand-xl .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand-xl .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .navbar-expand-xl .navbar-toggler { + display: none; } } + +.navbar-expand { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand > .container, + .navbar-expand > .container-fluid { + padding-right: 0; + padding-left: 0; } + .navbar-expand .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand > .container, + .navbar-expand > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .navbar-expand .navbar-toggler { + display: none; } + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); } + .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); } + +.navbar-light .navbar-nav .nav-link { + color: #202339; } + .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); } + .navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); } + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); } + +.navbar-light .navbar-toggler { + color: #202339; + border-color: rgba(0, 0, 0, 0.1); } + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } + +.navbar-light .navbar-text { + color: #202339; } + .navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); } + .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); } + +.navbar-dark .navbar-brand, .navbar.default-layout.navbar-danger .navbar-brand, .navbar.default-layout.navbar-dark .navbar-brand, .navbar.default-layout.navbar-primary .navbar-brand, .navbar.default-layout.navbar-success .navbar-brand, .navbar.default-layout.navbar-warning .navbar-brand { + color: #fff; } + .navbar-dark .navbar-brand:hover, .navbar.default-layout.navbar-danger .navbar-brand:hover, .navbar.default-layout.navbar-primary .navbar-brand:hover, .navbar.default-layout.navbar-success .navbar-brand:hover, .navbar.default-layout.navbar-warning .navbar-brand:hover, .navbar-dark .navbar-brand:focus, .navbar.default-layout.navbar-danger .navbar-brand:focus, .navbar.default-layout.navbar-primary .navbar-brand:focus, .navbar.default-layout.navbar-success .navbar-brand:focus, .navbar.default-layout.navbar-warning .navbar-brand:focus { + color: #fff; } + +.navbar-dark .navbar-nav .nav-link, .navbar.default-layout.navbar-danger .navbar-nav .nav-link, .navbar.default-layout.navbar-primary .navbar-nav .nav-link, .navbar.default-layout.navbar-success .navbar-nav .nav-link, .navbar.default-layout.navbar-warning .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); } + .navbar-dark .navbar-nav .nav-link:hover, .navbar.default-layout.navbar-danger .navbar-nav .nav-link:hover, .navbar.default-layout.navbar-primary .navbar-nav .nav-link:hover, .navbar.default-layout.navbar-success .navbar-nav .nav-link:hover, .navbar.default-layout.navbar-warning .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus, .navbar.default-layout.navbar-danger .navbar-nav .nav-link:focus, .navbar.default-layout.navbar-primary .navbar-nav .nav-link:focus, .navbar.default-layout.navbar-success .navbar-nav .nav-link:focus, .navbar.default-layout.navbar-warning .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); } + .navbar-dark .navbar-nav .nav-link.disabled, .navbar.default-layout.navbar-danger .navbar-nav .nav-link.disabled, .navbar.default-layout.navbar-primary .navbar-nav .nav-link.disabled, .navbar.default-layout.navbar-success .navbar-nav .nav-link.disabled, .navbar.default-layout.navbar-warning .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); } + +.navbar-dark .navbar-nav .show > .nav-link, .navbar.default-layout.navbar-danger .navbar-nav .show > .nav-link, .navbar.default-layout.navbar-primary .navbar-nav .show > .nav-link, .navbar.default-layout.navbar-success .navbar-nav .show > .nav-link, .navbar.default-layout.navbar-warning .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, .navbar.default-layout.navbar-danger .navbar-nav .active > .nav-link, .navbar.default-layout.navbar-primary .navbar-nav .active > .nav-link, .navbar.default-layout.navbar-success .navbar-nav .active > .nav-link, .navbar.default-layout.navbar-warning .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, .navbar.default-layout.navbar-danger .navbar-nav .nav-link.show, .navbar.default-layout.navbar-primary .navbar-nav .nav-link.show, .navbar.default-layout.navbar-success .navbar-nav .nav-link.show, .navbar.default-layout.navbar-warning .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active, .navbar.default-layout.navbar-danger .navbar-nav .nav-link.active, .navbar.default-layout.navbar-primary .navbar-nav .nav-link.active, .navbar.default-layout.navbar-success .navbar-nav .nav-link.active, .navbar.default-layout.navbar-warning .navbar-nav .nav-link.active { + color: #fff; } + +.navbar-dark .navbar-toggler, .navbar.default-layout.navbar-danger .navbar-toggler, .navbar.default-layout.navbar-dark .navbar-toggler, .navbar.default-layout.navbar-primary .navbar-toggler, .navbar.default-layout.navbar-success .navbar-toggler, .navbar.default-layout.navbar-warning .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); } + +.navbar-dark .navbar-toggler-icon, .navbar.default-layout.navbar-danger .navbar-toggler-icon, .navbar.default-layout.navbar-dark .navbar-toggler-icon, .navbar.default-layout.navbar-primary .navbar-toggler-icon, .navbar.default-layout.navbar-success .navbar-toggler-icon, .navbar.default-layout.navbar-warning .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } + +.navbar-dark .navbar-text, .navbar.default-layout.navbar-danger .navbar-text, .navbar.default-layout.navbar-dark .navbar-text, .navbar.default-layout.navbar-primary .navbar-text, .navbar.default-layout.navbar-success .navbar-text, .navbar.default-layout.navbar-warning .navbar-text { + color: rgba(255, 255, 255, 0.5); } + .navbar-dark .navbar-text a, .navbar.default-layout.navbar-danger .navbar-text a, .navbar.default-layout.navbar-dark .navbar-text a, .navbar.default-layout.navbar-primary .navbar-text a, .navbar.default-layout.navbar-success .navbar-text a, .navbar.default-layout.navbar-warning .navbar-text a { + color: #fff; } + .navbar-dark .navbar-text a:hover, .navbar.default-layout.navbar-danger .navbar-text a:hover, .navbar.default-layout.navbar-primary .navbar-text a:hover, .navbar.default-layout.navbar-success .navbar-text a:hover, .navbar.default-layout.navbar-warning .navbar-text a:hover, .navbar-dark .navbar-text a:focus, .navbar.default-layout.navbar-danger .navbar-text a:focus, .navbar.default-layout.navbar-primary .navbar-text a:focus, .navbar.default-layout.navbar-success .navbar-text a:focus, .navbar.default-layout.navbar-warning .navbar-text a:focus { + color: #fff; } + +.card { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; } + .card > hr { + margin-right: 0; + margin-left: 0; } + .card > .list-group:first-child .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } + .card > .list-group:last-child .list-group-item:last-child { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } + +.card-body { + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1.25rem; } + +.card-title { + margin-bottom: 0.75rem; } + +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; } + +.card-text:last-child { + margin-bottom: 0; } + +.card-link:hover { + text-decoration: none; } + +.card-link + .card-link { + margin-left: 1.25rem; } + +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); } + .card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } + .card-header + .list-group .list-group-item:first-child { + border-top: 0; } + +.card-footer { + padding: 0.75rem 1.25rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); } + .card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; } + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; } + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; } + +.card-img { + width: 100%; + border-radius: calc(0.25rem - 1px); } + +.card-img-top { + width: 100%; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); } + +.card-img-bottom { + width: 100%; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); } + +.card-deck { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + .card-deck .card { + margin-bottom: 15px; } + @media (min-width: 576px) { + .card-deck { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; } + .card-deck .card { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; } } + +.card-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + .card-group > .card { + margin-bottom: 15px; } + @media (min-width: 576px) { + .card-group { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; } + .card-group > .card { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + margin-bottom: 0; } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; } + .card-group > .card:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .card-group > .card:first-child .card-img-top, + .card-group > .card:first-child .card-header { + border-top-right-radius: 0; } + .card-group > .card:first-child .card-img-bottom, + .card-group > .card:first-child .card-footer { + border-bottom-right-radius: 0; } + .card-group > .card:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .card-group > .card:last-child .card-img-top, + .card-group > .card:last-child .card-header { + border-top-left-radius: 0; } + .card-group > .card:last-child .card-img-bottom, + .card-group > .card:last-child .card-footer { + border-bottom-left-radius: 0; } + .card-group > .card:only-child { + border-radius: 0.25rem; } + .card-group > .card:only-child .card-img-top, + .card-group > .card:only-child .card-header { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } + .card-group > .card:only-child .card-img-bottom, + .card-group > .card:only-child .card-footer { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) { + border-radius: 0; } + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer { + border-radius: 0; } } + +.card-columns .card { + margin-bottom: 0.75rem; } + +@media (min-width: 576px) { + .card-columns { + -webkit-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1; } + .card-columns .card { + display: inline-block; + width: 100%; } } + +.breadcrumb { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding: 0.56rem 1.13rem; + margin-bottom: 1rem; + list-style: none; + background-color: transparent; + border-radius: 0.25rem; } + +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; } + .breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + color: #6c757d; + content: "/"; } + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; } + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; } + +.breadcrumb-item.active { + color: #495057; } + +.pagination, .jsgrid .jsgrid-pager { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.25rem; } + +.page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, +.jsgrid .jsgrid-pager .jsgrid-pager-page a { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #007bff; + background-color: #fff; + border: 1px solid #dee2e6; } + .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, + .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover { + z-index: 2; + color: #0056b3; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6; } + .page-link:focus, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:focus, + .jsgrid .jsgrid-pager .jsgrid-pager-page a:focus { + z-index: 2; + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .page-link:not(:disabled):not(.disabled), .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:not(:disabled):not(.disabled), + .jsgrid .jsgrid-pager .jsgrid-pager-page a:not(:disabled):not(.disabled) { + cursor: pointer; } + +.page-item:first-child .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, +.jsgrid .jsgrid-pager .jsgrid-pager-page:first-child .page-link, .page-item:first-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item:first-child a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child a, .page-item:first-child +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-item:first-child a, .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child a { + margin-left: 0; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } + +.page-item:last-child .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, +.jsgrid .jsgrid-pager .jsgrid-pager-page:last-child .page-link, .page-item:last-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item:last-child a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child a, .page-item:last-child +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-item:last-child a, .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child a { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } + +.page-item.active .page-link, .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, +.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link, .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item.active a, .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .page-item.active +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-item.active a, .jsgrid .jsgrid-pager .active.jsgrid-pager-page a { + z-index: 1; + color: #fff; + background-color: #007bff; + border-color: #007bff; } + +.page-item.disabled .page-link, .jsgrid .jsgrid-pager .disabled.jsgrid-pager-nav-button .page-link, +.jsgrid .jsgrid-pager .disabled.jsgrid-pager-page .page-link, .page-item.disabled .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item.disabled a, .jsgrid .jsgrid-pager .disabled.jsgrid-pager-nav-button a, .page-item.disabled +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-item.disabled a, .jsgrid .jsgrid-pager .disabled.jsgrid-pager-page a { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6; } + +.pagination-lg .page-link, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-lg a, .pagination-lg +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-lg a { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; } + +.pagination-lg .page-item:first-child .page-link, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-nav-button:first-child .page-link, .pagination-lg +.jsgrid .jsgrid-pager .jsgrid-pager-page:first-child .page-link, +.jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-page:first-child .page-link, .pagination-lg .page-item:first-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-lg .page-item:first-child a, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child a, .jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-nav-button:first-child a, .pagination-lg .page-item:first-child +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-lg .page-item:first-child a, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child a, .jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-page:first-child a { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; } + +.pagination-lg .page-item:last-child .page-link, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-nav-button:last-child .page-link, .pagination-lg +.jsgrid .jsgrid-pager .jsgrid-pager-page:last-child .page-link, +.jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-page:last-child .page-link, .pagination-lg .page-item:last-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-lg .page-item:last-child a, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child a, .jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-nav-button:last-child a, .pagination-lg .page-item:last-child +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-lg .page-item:last-child a, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child a, .jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-page:last-child a { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; } + +.pagination-sm .page-link, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-sm a, .pagination-sm +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-sm a { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; } + +.pagination-sm .page-item:first-child .page-link, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-nav-button:first-child .page-link, .pagination-sm +.jsgrid .jsgrid-pager .jsgrid-pager-page:first-child .page-link, +.jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-page:first-child .page-link, .pagination-sm .page-item:first-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-sm .page-item:first-child a, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child a, .jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-nav-button:first-child a, .pagination-sm .page-item:first-child +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-sm .page-item:first-child a, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child a, .jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-page:first-child a { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; } + +.pagination-sm .page-item:last-child .page-link, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-nav-button:last-child .page-link, .pagination-sm +.jsgrid .jsgrid-pager .jsgrid-pager-page:last-child .page-link, +.jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-page:last-child .page-link, .pagination-sm .page-item:last-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-sm .page-item:last-child a, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child a, .jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-nav-button:last-child a, .pagination-sm .page-item:last-child +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-sm .page-item:last-child a, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child a, .jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-page:last-child a { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; } + +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; } + .badge:empty { + display: none; } + +.btn .badge, .ajax-upload-dragdrop .ajax-file-upload .badge, .swal2-modal .swal2-buttonswrapper .swal2-styled .badge, .wizard > .actions a .badge { + position: relative; + top: -1px; } + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; } + +.badge-primary { + color: #fff; + background-color: #2196f3; } + .badge-primary[href]:hover, .badge-primary[href]:focus { + color: #fff; + text-decoration: none; + background-color: #0c7cd5; } + +.badge-secondary { + color: #212529; + background-color: #e6eef2; } + .badge-secondary[href]:hover, .badge-secondary[href]:focus { + color: #212529; + text-decoration: none; + background-color: #c4d7e1; } + +.badge-success, .preview-list .preview-item .preview-thumbnail .badge.badge-online { + color: #212529; + background-color: #19d895; } + .badge-success[href]:hover, .preview-list .preview-item .preview-thumbnail [href].badge.badge-online:hover, .badge-success[href]:focus, .preview-list .preview-item .preview-thumbnail [href].badge.badge-online:focus { + color: #212529; + text-decoration: none; + background-color: #14aa75; } + +.badge-info, .preview-list .preview-item .preview-thumbnail .badge.badge-offline { + color: #fff; + background-color: #8862e0; } + .badge-info[href]:hover, .preview-list .preview-item .preview-thumbnail [href].badge.badge-offline:hover, .badge-info[href]:focus, .preview-list .preview-item .preview-thumbnail [href].badge.badge-offline:focus { + color: #fff; + text-decoration: none; + background-color: #6837d8; } + +.badge-warning, .preview-list .preview-item .preview-thumbnail .badge.badge-busy { + color: #212529; + background-color: #ffaf00; } + .badge-warning[href]:hover, .preview-list .preview-item .preview-thumbnail [href].badge.badge-busy:hover, .badge-warning[href]:focus, .preview-list .preview-item .preview-thumbnail [href].badge.badge-busy:focus { + color: #212529; + text-decoration: none; + background-color: #cc8c00; } + +.badge-danger { + color: #fff; + background-color: #ff6258; } + .badge-danger[href]:hover, .badge-danger[href]:focus { + color: #fff; + text-decoration: none; + background-color: #ff3225; } + +.badge-light { + color: #212529; + background-color: #fbfbfb; } + .badge-light[href]:hover, .badge-light[href]:focus { + color: #212529; + text-decoration: none; + background-color: #e2e2e2; } + +.badge-dark { + color: #fff; + background-color: #252C46; } + .badge-dark[href]:hover, .badge-dark[href]:focus { + color: #fff; + text-decoration: none; + background-color: #131725; } + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: 0.3rem; } + @media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; } } + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; } + +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; } + +.alert-heading { + color: inherit; } + +.alert-link { + font-weight: 700; } + +.alert-dismissible { + padding-right: 4rem; } + .alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; } + +.alert-primary { + color: #114e7e; + background-color: #d3eafd; + border-color: #c1e2fc; } + .alert-primary hr { + border-top-color: #a9d7fb; } + .alert-primary .alert-link { + color: #0b3251; } + +.alert-secondary { + color: #787c7e; + background-color: #fafcfc; + border-color: #f8fafb; } + .alert-secondary hr { + border-top-color: #e8eef2; } + .alert-secondary .alert-link { + color: #5f6264; } + +.alert-success { + color: #0d704d; + background-color: #d1f7ea; + border-color: #bff4e1; } + .alert-success hr { + border-top-color: #a9f0d7; } + .alert-success .alert-link { + color: #08422e; } + +.alert-info { + color: #473374; + background-color: #e7e0f9; + border-color: #ded3f6; } + .alert-info hr { + border-top-color: #cebef2; } + .alert-info .alert-link { + color: #312351; } + +.alert-warning { + color: #855b00; + background-color: #ffefcc; + border-color: #ffe9b8; } + .alert-warning hr { + border-top-color: #ffe19f; } + .alert-warning .alert-link { + color: #523800; } + +.alert-danger { + color: #85332e; + background-color: #ffe0de; + border-color: #ffd3d0; } + .alert-danger hr { + border-top-color: #ffbbb7; } + .alert-danger .alert-link { + color: #5f2421; } + +.alert-light { + color: #838383; + background-color: #fefefe; + border-color: #fefefe; } + .alert-light hr { + border-top-color: #f1f1f1; } + .alert-light .alert-link { + color: #6a6a6a; } + +.alert-dark { + color: #131724; + background-color: #d3d5da; + border-color: #c2c4cb; } + .alert-dark hr { + border-top-color: #b4b7bf; } + .alert-dark .alert-link { + color: #010203; } + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0; } + to { + background-position: 0 0; } } + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; } + to { + background-position: 0 0; } } + +.progress { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; } + +.progress-bar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #007bff; + -webkit-transition: width 0.6s ease; + transition: width 0.6s ease; } + @media screen and (prefers-reduced-motion: reduce) { + .progress-bar { + -webkit-transition: none; + transition: none; } } + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; } + +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite; } + +.media { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; } + +.media-body { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; } + +.list-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; } + +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; } + .list-group-item-action:hover, .list-group-item-action:focus { + color: #495057; + text-decoration: none; + background-color: #f8f9fa; } + .list-group-item-action:active { + color: #212529; + background-color: #e9ecef; } + +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); } + .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } + .list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } + .list-group-item:hover, .list-group-item:focus { + z-index: 1; + text-decoration: none; } + .list-group-item.disabled, .list-group-item:disabled { + color: #6c757d; + background-color: #fff; } + .list-group-item.active { + z-index: 2; + color: #fff; + background-color: #007bff; + border-color: #007bff; } + +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; + border-radius: 0; } + +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; } + +.list-group-flush:last-child .list-group-item:last-child { + border-bottom: 0; } + +.list-group-item-primary { + color: #114e7e; + background-color: #c1e2fc; } + .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #114e7e; + background-color: #a9d7fb; } + .list-group-item-primary.list-group-item-action.active { + color: #ffffff; + background-color: #114e7e; + border-color: #114e7e; } + +.list-group-item-secondary { + color: #787c7e; + background-color: #f8fafb; } + .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #787c7e; + background-color: #e8eef2; } + .list-group-item-secondary.list-group-item-action.active { + color: #ffffff; + background-color: #787c7e; + border-color: #787c7e; } + +.list-group-item-success { + color: #0d704d; + background-color: #bff4e1; } + .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #0d704d; + background-color: #a9f0d7; } + .list-group-item-success.list-group-item-action.active { + color: #ffffff; + background-color: #0d704d; + border-color: #0d704d; } + +.list-group-item-info { + color: #473374; + background-color: #ded3f6; } + .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #473374; + background-color: #cebef2; } + .list-group-item-info.list-group-item-action.active { + color: #ffffff; + background-color: #473374; + border-color: #473374; } + +.list-group-item-warning { + color: #855b00; + background-color: #ffe9b8; } + .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #855b00; + background-color: #ffe19f; } + .list-group-item-warning.list-group-item-action.active { + color: #ffffff; + background-color: #855b00; + border-color: #855b00; } + +.list-group-item-danger { + color: #85332e; + background-color: #ffd3d0; } + .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #85332e; + background-color: #ffbbb7; } + .list-group-item-danger.list-group-item-action.active { + color: #ffffff; + background-color: #85332e; + border-color: #85332e; } + +.list-group-item-light { + color: #838383; + background-color: #fefefe; } + .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #838383; + background-color: #f1f1f1; } + .list-group-item-light.list-group-item-action.active { + color: #ffffff; + background-color: #838383; + border-color: #838383; } + +.list-group-item-dark { + color: #131724; + background-color: #c2c4cb; } + .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #131724; + background-color: #b4b7bf; } + .list-group-item-dark.list-group-item-action.active { + color: #ffffff; + background-color: #131724; + border-color: #131724; } + +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; } + .close:not(:disabled):not(.disabled) { + cursor: pointer; } + .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + color: #000; + text-decoration: none; + opacity: .75; } + +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none; } + +.modal-open { + overflow: hidden; } + .modal-open .modal { + overflow-x: hidden; + overflow-y: auto; } + +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + display: none; + overflow: hidden; + outline: 0; } + +.modal-dialog { + position: relative; + width: auto; + margin: 10px; + pointer-events: none; } + .modal.fade .modal-dialog { + -webkit-transition: -webkit-transform 0.4s ease; + transition: -webkit-transform 0.4s ease; + transition: transform 0.4s ease; + transition: transform 0.4s ease, -webkit-transform 0.4s ease; + -webkit-transform: translate(0, -25%); + transform: translate(0, -25%); } + @media screen and (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + -webkit-transition: none; + transition: none; } } + .modal.show .modal-dialog { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); } + +.modal-dialog-centered { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + min-height: calc(100% - (10px * 2)); } + .modal-dialog-centered::before { + display: block; + height: calc(100vh - (10px * 2)); + content: ""; } + +.modal-content { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #f3f4fa; + background-clip: padding-box; + border: 1px solid #f2f2f2; + border-radius: 0.3rem; + outline: 0; } + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000; } + .modal-backdrop.fade { + opacity: 0; } + .modal-backdrop.show { + opacity: 0.5; } + +.modal-header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 1rem; + border-bottom: 1px solid #f2f2f2; + border-top-left-radius: 0.3rem; + border-top-right-radius: 0.3rem; } + .modal-header .close { + padding: 1rem; + margin: -1rem -1rem -1rem auto; } + +.modal-title { + margin-bottom: 0; + line-height: 1.5; } + +.modal-body { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 15px; } + +.modal-footer { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 15px; + border-top: 1px solid #f2f2f2; } + .modal-footer > :not(:first-child) { + margin-left: .25rem; } + .modal-footer > :not(:last-child) { + margin-right: .25rem; } + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; } + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 30px auto; } + .modal-dialog-centered { + min-height: calc(100% - (30px * 2)); } + .modal-dialog-centered::before { + height: calc(100vh - (30px * 2)); } + .modal-sm { + max-width: 300px; } } + +@media (min-width: 992px) { + .modal-lg { + max-width: 90%; } } + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.75rem; + word-wrap: break-word; + opacity: 0; } + .tooltip.show { + opacity: 0.9; } + .tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; } + .tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; } + .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; } + .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #252C46; } + +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; } + .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #252C46; } + +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; } + .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; } + .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #252C46; } + +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; } + .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #252C46; } + +.tooltip-inner { + max-width: 200px; + padding: 0.4rem 0.75rem; + color: #fff; + text-align: center; + background-color: #252C46; + border-radius: 0.375rem; } + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #e3f2fd; + background-clip: padding-box; + border: 1px solid #f2f2f2; + border-radius: 0.3rem; } + .popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; } + .popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; } + .bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow { + bottom: calc((0.5rem + 1px) * -1); } + .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, + .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { + border-width: 0.5rem 0.5rem 0; } + .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before { + bottom: 0; + border-top-color: #f2f2f2; } + .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { + bottom: 1px; + border-top-color: #e3f2fd; } + +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; } + .bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow { + left: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; } + .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, + .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { + border-width: 0.5rem 0.5rem 0.5rem 0; } + .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before { + left: 0; + border-right-color: #f2f2f2; } + .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { + left: 1px; + border-right-color: #e3f2fd; } + +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; } + .bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow { + top: calc((0.5rem + 1px) * -1); } + .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, + .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { + border-width: 0 0.5rem 0.5rem 0.5rem; } + .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before { + top: 0; + border-bottom-color: #f2f2f2; } + .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { + top: 1px; + border-bottom-color: #e3f2fd; } + .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #e3f2fd; } + +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; } + .bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow { + right: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; } + .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, + .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { + border-width: 0.5rem 0 0.5rem 0.5rem; } + .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before { + right: 0; + border-left-color: #f2f2f2; } + .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { + right: 1px; + border-left-color: #e3f2fd; } + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + color: inherit; + background-color: #e3f2fd; + border-bottom: 1px solid #cae6fc; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); } + .popover-header:empty { + display: none; } + +.popover-body { + padding: 0.5rem 0.75rem; + color: #212529; } + +.carousel { + position: relative; } + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; } + +.carousel-item { + position: relative; + display: none; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000px; + perspective: 1000px; } + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; + -webkit-transition: -webkit-transform 0.6s ease; + transition: -webkit-transform 0.6s ease; + transition: transform 0.6s ease; + transition: transform 0.6s ease, -webkit-transform 0.6s ease; } + @media screen and (prefers-reduced-motion: reduce) { + .carousel-item.active, + .carousel-item-next, + .carousel-item-prev { + -webkit-transition: none; + transition: none; } } + +.carousel-item-next, +.carousel-item-prev { + position: absolute; + top: 0; } + +.carousel-item-next.carousel-item-left, +.carousel-item-prev.carousel-item-right { + -webkit-transform: translateX(0); + transform: translateX(0); } + @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-next.carousel-item-left, + .carousel-item-prev.carousel-item-right { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } + +.carousel-item-next, +.active.carousel-item-right { + -webkit-transform: translateX(100%); + transform: translateX(100%); } + @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-next, + .active.carousel-item-right { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); } } + +.carousel-item-prev, +.active.carousel-item-left { + -webkit-transform: translateX(-100%); + transform: translateX(-100%); } + @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-prev, + .active.carousel-item-left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); } } + +.carousel-fade .carousel-item { + opacity: 0; + -webkit-transition-duration: .6s; + transition-duration: .6s; + -webkit-transition-property: opacity; + transition-property: opacity; } + +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + opacity: 1; } + +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + opacity: 0; } + +.carousel-fade .carousel-item-next, +.carousel-fade .carousel-item-prev, +.carousel-fade .carousel-item.active, +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-prev { + -webkit-transform: translateX(0); + transform: translateX(0); } + @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-fade .carousel-item-next, + .carousel-fade .carousel-item-prev, + .carousel-fade .carousel-item.active, + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-prev { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; } + .carousel-control-prev:hover, .carousel-control-prev:focus, + .carousel-control-next:hover, + .carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: .9; } + +.carousel-control-prev { + left: 0; } + +.carousel-control-next { + right: 0; } + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: transparent no-repeat center center; + background-size: 100% 100%; } + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); } + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); } + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 10px; + left: 0; + z-index: 15; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; } + .carousel-indicators li { + position: relative; + -webkit-box-flex: 0; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: rgba(255, 255, 255, 0.5); } + .carousel-indicators li::before { + position: absolute; + top: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: ""; } + .carousel-indicators li::after { + position: absolute; + bottom: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: ""; } + .carousel-indicators .active { + background-color: #fff; } + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; } + +.align-baseline { + vertical-align: baseline !important; } + +.align-top { + vertical-align: top !important; } + +.align-middle { + vertical-align: middle !important; } + +.align-bottom { + vertical-align: bottom !important; } + +.align-text-bottom { + vertical-align: text-bottom !important; } + +.align-text-top { + vertical-align: text-top !important; } + +.bg-primary, .settings-panel .color-tiles .tiles.primary { + background-color: #2196f3 !important; } + +a.bg-primary:hover, .settings-panel .color-tiles a.tiles.primary:hover, a.bg-primary:focus, .settings-panel .color-tiles a.tiles.primary:focus, +button.bg-primary:hover, +.settings-panel .color-tiles button.tiles.primary:hover, +button.bg-primary:focus, +.settings-panel .color-tiles button.tiles.primary:focus { + background-color: #0c7cd5 !important; } + +.bg-secondary { + background-color: #e6eef2 !important; } + +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #c4d7e1 !important; } + +.bg-success, .settings-panel .color-tiles .tiles.success { + background-color: #19d895 !important; } + +a.bg-success:hover, .settings-panel .color-tiles a.tiles.success:hover, a.bg-success:focus, .settings-panel .color-tiles a.tiles.success:focus, +button.bg-success:hover, +.settings-panel .color-tiles button.tiles.success:hover, +button.bg-success:focus, +.settings-panel .color-tiles button.tiles.success:focus { + background-color: #14aa75 !important; } + +.bg-info, .settings-panel .color-tiles .tiles.info { + background-color: #8862e0 !important; } + +a.bg-info:hover, .settings-panel .color-tiles a.tiles.info:hover, a.bg-info:focus, .settings-panel .color-tiles a.tiles.info:focus, +button.bg-info:hover, +.settings-panel .color-tiles button.tiles.info:hover, +button.bg-info:focus, +.settings-panel .color-tiles button.tiles.info:focus { + background-color: #6837d8 !important; } + +.bg-warning, .settings-panel .color-tiles .tiles.warning { + background-color: #ffaf00 !important; } + +a.bg-warning:hover, .settings-panel .color-tiles a.tiles.warning:hover, a.bg-warning:focus, .settings-panel .color-tiles a.tiles.warning:focus, +button.bg-warning:hover, +.settings-panel .color-tiles button.tiles.warning:hover, +button.bg-warning:focus, +.settings-panel .color-tiles button.tiles.warning:focus { + background-color: #cc8c00 !important; } + +.bg-danger, .settings-panel .color-tiles .tiles.danger { + background-color: #ff6258 !important; } + +a.bg-danger:hover, .settings-panel .color-tiles a.tiles.danger:hover, a.bg-danger:focus, .settings-panel .color-tiles a.tiles.danger:focus, +button.bg-danger:hover, +.settings-panel .color-tiles button.tiles.danger:hover, +button.bg-danger:focus, +.settings-panel .color-tiles button.tiles.danger:focus { + background-color: #ff3225 !important; } + +.bg-light { + background-color: #fbfbfb !important; } + +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #e2e2e2 !important; } + +.bg-dark, .settings-panel .color-tiles .tiles.dark { + background-color: #252C46 !important; } + +a.bg-dark:hover, .settings-panel .color-tiles a.tiles.dark:hover, a.bg-dark:focus, .settings-panel .color-tiles a.tiles.dark:focus, +button.bg-dark:hover, +.settings-panel .color-tiles button.tiles.dark:hover, +button.bg-dark:focus, +.settings-panel .color-tiles button.tiles.dark:focus { + background-color: #131725 !important; } + +.bg-white { + background-color: #ffffff !important; } + +.bg-transparent { + background-color: transparent !important; } + +.border, .loader-demo-box { + border: 1px solid #f2f2f2 !important; } + +.border-top { + border-top: 1px solid #f2f2f2 !important; } + +.border-right { + border-right: 1px solid #f2f2f2 !important; } + +.border-bottom { + border-bottom: 1px solid #f2f2f2 !important; } + +.border-left { + border-left: 1px solid #f2f2f2 !important; } + +.border-0 { + border: 0 !important; } + +.border-top-0 { + border-top: 0 !important; } + +.border-right-0 { + border-right: 0 !important; } + +.border-bottom-0 { + border-bottom: 0 !important; } + +.border-left-0 { + border-left: 0 !important; } + +.border-primary { + border-color: #2196f3 !important; } + +.border-secondary, .loader-demo-box { + border-color: #e6eef2 !important; } + +.border-success { + border-color: #19d895 !important; } + +.border-info { + border-color: #8862e0 !important; } + +.border-warning { + border-color: #ffaf00 !important; } + +.border-danger { + border-color: #ff6258 !important; } + +.border-light { + border-color: #fbfbfb !important; } + +.border-dark { + border-color: #252C46 !important; } + +.border-white { + border-color: #ffffff !important; } + +.rounded, .loader-demo-box { + border-radius: 0.25rem !important; } + +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; } + +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; } + +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } + +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } + +.rounded-circle, .settings-panel .color-tiles .tiles { + border-radius: 50% !important; } + +.rounded-0 { + border-radius: 0 !important; } + +.clearfix::after { + display: block; + clear: both; + content: ""; } + +.d-none { + display: none !important; } + +.tiny-text { + font-size: 0.75rem; +} + +.d-inline { + display: inline !important; } + +.d-inline-block { + display: inline-block !important; } + +.d-block { + display: block !important; } + +.d-table { + display: table !important; } + +.d-table-row { + display: table-row !important; } + +.d-table-cell { + display: table-cell !important; } + +.d-flex, .loader-demo-box, .nav .nav-item.dropdown .navbar-dropdown .dropdown-item, +.navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item, .new-accounts ul.chats li.chat-persons a, .new-accounts ul.chats li.chat-persons a div.user, .list-wrapper ul li, .email-wrapper .mail-sidebar .menu-bar .profile-list-item a, .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user, .email-wrapper .mail-list-container .mail-list .details, .email-wrapper .message-body .attachments-sections ul li .thumb, .email-wrapper .message-body .attachments-sections ul li .details .buttons, .lightGallery .image-tile .demo-gallery-poster, .swal2-modal { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + +.d-inline-flex, .email-wrapper .message-body .attachments-sections ul li { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; } + .d-sm-inline { + display: inline !important; } + .d-sm-inline-block { + display: inline-block !important; } + .d-sm-block { + display: block !important; } + .d-sm-table { + display: table !important; } + .d-sm-table-row { + display: table-row !important; } + .d-sm-table-cell { + display: table-cell !important; } + .d-sm-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-sm-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +@media (min-width: 768px) { + .d-md-none { + display: none !important; } + .d-md-inline { + display: inline !important; } + .d-md-inline-block { + display: inline-block !important; } + .d-md-block { + display: block !important; } + .d-md-table { + display: table !important; } + .d-md-table-row { + display: table-row !important; } + .d-md-table-cell { + display: table-cell !important; } + .d-md-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-md-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +@media (min-width: 992px) { + .d-lg-none { + display: none !important; } + .d-lg-inline { + display: inline !important; } + .d-lg-inline-block { + display: inline-block !important; } + .d-lg-block { + display: block !important; } + .d-lg-table { + display: table !important; } + .d-lg-table-row { + display: table-row !important; } + .d-lg-table-cell { + display: table-cell !important; } + .d-lg-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-lg-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; } + .d-xl-inline { + display: inline !important; } + .d-xl-inline-block { + display: inline-block !important; } + .d-xl-block { + display: block !important; } + .d-xl-table { + display: table !important; } + .d-xl-table-row { + display: table-row !important; } + .d-xl-table-cell { + display: table-cell !important; } + .d-xl-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-xl-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +@media print { + .d-print-none { + display: none !important; } + .d-print-inline { + display: inline !important; } + .d-print-inline-block { + display: inline-block !important; } + .d-print-block { + display: block !important; } + .d-print-table { + display: table !important; } + .d-print-table-row { + display: table-row !important; } + .d-print-table-cell { + display: table-cell !important; } + .d-print-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-print-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; } + .embed-responsive::before { + display: block; + content: ""; } + .embed-responsive .embed-responsive-item, + .embed-responsive iframe, + .embed-responsive embed, + .embed-responsive object, + .embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; } + +.embed-responsive-21by9::before { + padding-top: 42.85714%; } + +.embed-responsive-16by9::before { + padding-top: 56.25%; } + +.embed-responsive-4by3::before { + padding-top: 75%; } + +.embed-responsive-1by1::before { + padding-top: 100%; } + +.flex-row, .email-wrapper .message-body .attachments-sections ul li { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + +.flex-column, .new-accounts ul.chats li.chat-persons a div.user, .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + +.flex-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + +.flex-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + +.flex-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + +.flex-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + +.flex-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + +.flex-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + +.flex-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + +.flex-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + +.flex-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + +.flex-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + +.justify-content-start, .list-wrapper ul li { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + +.justify-content-end, .email-wrapper .mail-list-container .mail-list .details { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + +.justify-content-center, .email-wrapper .message-body .attachments-sections ul li .thumb { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + +.justify-content-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + +.justify-content-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + +.align-items-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + +.align-items-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + +.align-items-center, .loader-demo-box, .nav .nav-item.dropdown .navbar-dropdown .dropdown-item, +.navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item, .new-accounts ul.chats li.chat-persons a, .list-wrapper ul li, .email-wrapper .message-body .attachments-sections ul li .thumb, .email-wrapper .message-body .attachments-sections ul li .details .buttons { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + +.align-items-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + +.align-items-stretch, .email-wrapper .message-body .attachments-sections ul li { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + +.align-content-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + +.align-content-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + +.align-content-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + +.align-content-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + +.align-content-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + +.align-content-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + +.align-self-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; } + +.align-self-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + +.align-self-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + +.align-self-center { + -ms-flex-item-align: center !important; + align-self: center !important; } + +.align-self-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + +.align-self-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; } + +@media (min-width: 576px) { + .flex-sm-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + .flex-sm-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + .flex-sm-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + .flex-sm-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + .flex-sm-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + .flex-sm-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + .flex-sm-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + .flex-sm-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + .flex-sm-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + .flex-sm-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + .flex-sm-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + .flex-sm-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + .justify-content-sm-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + .justify-content-sm-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + .justify-content-sm-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + .justify-content-sm-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + .justify-content-sm-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + .align-items-sm-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + .align-items-sm-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + .align-items-sm-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + .align-items-sm-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + .align-items-sm-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + .align-content-sm-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + .align-content-sm-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + .align-content-sm-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + .align-content-sm-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + .align-content-sm-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + .align-content-sm-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + .align-self-sm-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; } + .align-self-sm-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + .align-self-sm-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + .align-self-sm-center { + -ms-flex-item-align: center !important; + align-self: center !important; } + .align-self-sm-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + .align-self-sm-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; } } + +@media (min-width: 768px) { + .flex-md-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + .flex-md-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + .flex-md-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + .flex-md-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + .flex-md-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + .flex-md-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + .flex-md-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + .flex-md-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + .flex-md-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + .flex-md-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + .flex-md-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + .flex-md-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + .justify-content-md-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + .justify-content-md-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + .justify-content-md-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + .justify-content-md-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + .justify-content-md-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + .align-items-md-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + .align-items-md-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + .align-items-md-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + .align-items-md-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + .align-items-md-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + .align-content-md-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + .align-content-md-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + .align-content-md-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + .align-content-md-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + .align-content-md-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + .align-content-md-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + .align-self-md-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; } + .align-self-md-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + .align-self-md-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + .align-self-md-center { + -ms-flex-item-align: center !important; + align-self: center !important; } + .align-self-md-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + .align-self-md-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; } } + +@media (min-width: 992px) { + .flex-lg-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + .flex-lg-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + .flex-lg-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + .flex-lg-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + .flex-lg-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + .flex-lg-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + .flex-lg-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + .flex-lg-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + .flex-lg-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + .flex-lg-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + .flex-lg-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + .flex-lg-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + .justify-content-lg-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + .justify-content-lg-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + .justify-content-lg-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + .justify-content-lg-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + .justify-content-lg-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + .align-items-lg-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + .align-items-lg-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + .align-items-lg-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + .align-items-lg-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + .align-items-lg-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + .align-content-lg-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + .align-content-lg-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + .align-content-lg-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + .align-content-lg-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + .align-content-lg-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + .align-content-lg-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + .align-self-lg-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; } + .align-self-lg-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + .align-self-lg-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + .align-self-lg-center { + -ms-flex-item-align: center !important; + align-self: center !important; } + .align-self-lg-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + .align-self-lg-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; } } + +@media (min-width: 1200px) { + .flex-xl-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + .flex-xl-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + .flex-xl-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + .flex-xl-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + .flex-xl-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + .flex-xl-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + .flex-xl-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + .flex-xl-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + .flex-xl-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + .flex-xl-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + .flex-xl-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + .flex-xl-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + .justify-content-xl-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + .justify-content-xl-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + .justify-content-xl-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + .justify-content-xl-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + .justify-content-xl-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + .align-items-xl-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + .align-items-xl-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + .align-items-xl-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + .align-items-xl-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + .align-items-xl-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + .align-content-xl-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + .align-content-xl-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + .align-content-xl-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + .align-content-xl-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + .align-content-xl-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + .align-content-xl-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + .align-self-xl-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; } + .align-self-xl-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + .align-self-xl-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + .align-self-xl-center { + -ms-flex-item-align: center !important; + align-self: center !important; } + .align-self-xl-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + .align-self-xl-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; } } + +.float-left { + float: left !important; } + +.float-right { + float: right !important; } + +.float-none { + float: none !important; } + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; } + .float-sm-right { + float: right !important; } + .float-sm-none { + float: none !important; } } + +@media (min-width: 768px) { + .float-md-left { + float: left !important; } + .float-md-right { + float: right !important; } + .float-md-none { + float: none !important; } } + +@media (min-width: 992px) { + .float-lg-left { + float: left !important; } + .float-lg-right { + float: right !important; } + .float-lg-none { + float: none !important; } } + +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; } + .float-xl-right { + float: right !important; } + .float-xl-none { + float: none !important; } } + +.position-static { + position: static !important; } + +.position-relative { + position: relative !important; } + +.position-absolute { + position: absolute !important; } + +.position-fixed { + position: fixed !important; } + +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; } + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; } + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; } + +@supports ((position: -webkit-sticky) or (position: sticky)) { + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; } } + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; } + +.shadow-sm { + -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } + +.shadow { + -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } + +.shadow-lg { + -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } + +.shadow-none { + -webkit-box-shadow: none !important; + box-shadow: none !important; } + +.w-25 { + width: 25% !important; } + +.w-50 { + width: 50% !important; } + +.w-75 { + width: 75% !important; } + +.w-100 { + width: 100% !important; } + +.w-auto { + width: auto !important; } + +.h-25 { + height: 25% !important; } + +.h-50 { + height: 50% !important; } + +.h-75 { + height: 75% !important; } + +.h-100 { + height: 100% !important; } + +.h-auto { + height: auto !important; } + +.mw-100 { + max-width: 100% !important; } + +.mh-100 { + max-height: 100% !important; } + +.m-0 { + margin: 0 !important; } + +.mt-0, +.my-0 { + margin-top: 0 !important; } + +.mr-0, .rtl .settings-panel .sidebar-bg-options .rounded-circle, .rtl .settings-panel .sidebar-bg-options .color-tiles .tiles, .rtl .settings-panel .color-tiles .sidebar-bg-options .tiles, .rtl .settings-panel .events i, +.mx-0 { + margin-right: 0 !important; } + +.mb-0, +.my-0 { + margin-bottom: 0 !important; } + +.ml-0, +.mx-0 { + margin-left: 0 !important; } + +.m-1 { + margin: 0.25rem !important; } + +.mt-1, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel, +.my-1 { + margin-top: 0.25rem !important; } + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; } + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; } + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; } + +.m-2 { + margin: 0.5rem !important; } + +.mt-2, .template-demo > .btn, .ajax-upload-dragdrop .template-demo > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .template-demo > .swal2-styled, .wizard > .actions .template-demo > a, .template-demo > .btn-toolbar, .template-demo > .btn-group, .template-demo .circle-progress, +.my-2 { + margin-top: 0.5rem !important; } + +.mr-2, .template-demo > .btn, .ajax-upload-dragdrop .template-demo > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .template-demo > .swal2-styled, .wizard > .actions .template-demo > a, .template-demo > .btn-toolbar, .template-demo > .btn-group, .template-demo .dropdown, +.mx-2 { + margin-right: 0.5rem !important; } + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; } + +.ml-2, .btn-toolbar .btn-group + .btn-group, .rtl .settings-panel .events i, +.mx-2 { + margin-left: 0.5rem !important; } + +.m-3 { + margin: 1rem !important; } + +.mt-3, +.my-3 { + margin-top: 1rem !important; } + +.mr-3, +.mx-3 { + margin-right: 1rem !important; } + +.mb-3, .template-demo .circle-progress-block, .user-profile .side-left .card .avatar img, +.my-3 { + margin-bottom: 1rem !important; } + +.ml-3, .rtl .settings-panel .sidebar-bg-options .rounded-circle, .rtl .settings-panel .sidebar-bg-options .color-tiles .tiles, .rtl .settings-panel .color-tiles .sidebar-bg-options .tiles, +.mx-3 { + margin-left: 1rem !important; } + +.m-4 { + margin: 1.5rem !important; } + +.mt-4, .user-profile .side-left .card .avatar img, +.my-4 { + margin-top: 1.5rem !important; } + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; } + +.mb-4, .user-profile .side-left .card .overview .about-user, +.my-4 { + margin-bottom: 1.5rem !important; } + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; } + +.m-5 { + margin: 3rem !important; } + +.mt-5, +.my-5 { + margin-top: 3rem !important; } + +.mr-5, +.mx-5 { + margin-right: 3rem !important; } + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; } + +.ml-5, +.mx-5 { + margin-left: 3rem !important; } + +.p-0 { + padding: 0 !important; } + +.pt-0, .card-revenue-table .revenue-item:first-child, +.py-0 { + padding-top: 0 !important; } + +.pr-0, +.px-0 { + padding-right: 0 !important; } + +.pb-0, .card-revenue-table .revenue-item:last-child, +.py-0 { + padding-bottom: 0 !important; } + +.pl-0, +.px-0 { + padding-left: 0 !important; } + +.p-1 { + padding: 0.25rem !important; } + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; } + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; } + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; } + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; } + +.p-2 { + padding: 0.5rem !important; } + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; } + +.pr-2, +.px-2, +.template-demo .circle-progress-block { + padding-right: 0.5rem !important; } + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; } + +.pl-2, +.px-2, +.template-demo .circle-progress-block { + padding-left: 0.5rem !important; } + +.p-3 { + padding: 1rem !important; } + +.pt-3, +.py-3, +.card-revenue-table .revenue-item { + padding-top: 1rem !important; } + +.pr-3, +.px-3 { + padding-right: 1rem !important; } + +.pb-3, +.py-3, +.card-revenue-table .revenue-item { + padding-bottom: 1rem !important; } + +.pl-3, +.px-3 { + padding-left: 1rem !important; } + +.p-4 { + padding: 1.5rem !important; } + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; } + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; } + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; } + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; } + +.p-5 { + padding: 3rem !important; } + +.pt-5, +.py-5 { + padding-top: 3rem !important; } + +.pr-5, +.px-5 { + padding-right: 3rem !important; } + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; } + +.pl-5, +.px-5 { + padding-left: 3rem !important; } + +.m-auto { + margin: auto !important; } + +.mt-auto, +.my-auto { + margin-top: auto !important; } + +.mr-auto, +.mx-auto { + margin-right: auto !important; } + +.mb-auto, +.my-auto { + margin-bottom: auto !important; } + +.ml-auto, +.mx-auto { + margin-left: auto !important; } + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; } + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; } + .m-sm-1 { + margin: 0.25rem !important; } + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; } + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; } + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; } + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; } + .m-sm-2 { + margin: 0.5rem !important; } + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; } + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; } + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; } + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; } + .m-sm-3 { + margin: 1rem !important; } + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; } + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; } + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; } + .m-sm-4 { + margin: 1.5rem !important; } + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; } + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; } + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; } + .m-sm-5 { + margin: 3rem !important; } + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; } + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; } + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; } + .p-sm-0 { + padding: 0 !important; } + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; } + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; } + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; } + .p-sm-1 { + padding: 0.25rem !important; } + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; } + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; } + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; } + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; } + .p-sm-2 { + padding: 0.5rem !important; } + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; } + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; } + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; } + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; } + .p-sm-3 { + padding: 1rem !important; } + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; } + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; } + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; } + .p-sm-4 { + padding: 1.5rem !important; } + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; } + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; } + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; } + .p-sm-5 { + padding: 3rem !important; } + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; } + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; } + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; } + .m-sm-auto { + margin: auto !important; } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; } } + +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; } + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; } + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; } + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; } + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; } + .m-md-1 { + margin: 0.25rem !important; } + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; } + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; } + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; } + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; } + .m-md-2 { + margin: 0.5rem !important; } + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; } + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; } + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; } + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; } + .m-md-3 { + margin: 1rem !important; } + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; } + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; } + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; } + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; } + .m-md-4 { + margin: 1.5rem !important; } + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; } + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; } + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; } + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; } + .m-md-5 { + margin: 3rem !important; } + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; } + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; } + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; } + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; } + .p-md-0 { + padding: 0 !important; } + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; } + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; } + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; } + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; } + .p-md-1 { + padding: 0.25rem !important; } + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; } + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; } + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; } + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; } + .p-md-2 { + padding: 0.5rem !important; } + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; } + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; } + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; } + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; } + .p-md-3 { + padding: 1rem !important; } + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; } + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; } + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; } + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; } + .p-md-4 { + padding: 1.5rem !important; } + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; } + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; } + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; } + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; } + .p-md-5 { + padding: 3rem !important; } + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; } + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; } + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; } + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; } + .m-md-auto { + margin: auto !important; } + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; } + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; } + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; } } + +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; } + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; } + .m-lg-1 { + margin: 0.25rem !important; } + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; } + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; } + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; } + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; } + .m-lg-2 { + margin: 0.5rem !important; } + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; } + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; } + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; } + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; } + .m-lg-3 { + margin: 1rem !important; } + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; } + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; } + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; } + .m-lg-4 { + margin: 1.5rem !important; } + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; } + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; } + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; } + .m-lg-5 { + margin: 3rem !important; } + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; } + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; } + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; } + .p-lg-0 { + padding: 0 !important; } + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; } + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; } + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; } + .p-lg-1 { + padding: 0.25rem !important; } + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; } + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; } + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; } + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; } + .p-lg-2 { + padding: 0.5rem !important; } + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; } + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; } + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; } + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; } + .p-lg-3 { + padding: 1rem !important; } + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; } + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; } + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; } + .p-lg-4 { + padding: 1.5rem !important; } + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; } + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; } + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; } + .p-lg-5 { + padding: 3rem !important; } + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; } + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; } + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; } + .m-lg-auto { + margin: auto !important; } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; } } + +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; } + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; } + .m-xl-1 { + margin: 0.25rem !important; } + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; } + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; } + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; } + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; } + .m-xl-2 { + margin: 0.5rem !important; } + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; } + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; } + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; } + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; } + .m-xl-3 { + margin: 1rem !important; } + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; } + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; } + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; } + .m-xl-4 { + margin: 1.5rem !important; } + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; } + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; } + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; } + .m-xl-5 { + margin: 3rem !important; } + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; } + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; } + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; } + .p-xl-0 { + padding: 0 !important; } + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; } + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; } + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; } + .p-xl-1 { + padding: 0.25rem !important; } + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; } + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; } + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; } + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; } + .p-xl-2 { + padding: 0.5rem !important; } + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; } + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; } + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; } + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; } + .p-xl-3 { + padding: 1rem !important; } + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; } + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; } + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; } + .p-xl-4 { + padding: 1.5rem !important; } + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; } + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; } + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; } + .p-xl-5 { + padding: 3rem !important; } + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; } + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; } + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; } + .m-xl-auto { + margin: auto !important; } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; } } + +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } + +.text-justify { + text-align: justify !important; } + +.text-nowrap { + white-space: nowrap !important; } + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } + +.text-left { + text-align: left !important; } + +.text-right { + text-align: right !important; } + +.text-center { + text-align: center !important; } + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; } + .text-sm-right { + text-align: right !important; } + .text-sm-center { + text-align: center !important; } } + +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; } + .text-md-right { + text-align: right !important; } + .text-md-center { + text-align: center !important; } } + +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; } + .text-lg-right { + text-align: right !important; } + .text-lg-center { + text-align: center !important; } } + +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; } + .text-xl-right { + text-align: right !important; } + .text-xl-center { + text-align: center !important; } } + +.text-lowercase { + text-transform: lowercase !important; } + +.text-uppercase { + text-transform: uppercase !important; } + +.text-capitalize { + text-transform: capitalize !important; } + +.font-weight-light, .landing-page .feature-list .feature-list-row .feature-list-item p { + font-weight: 300 !important; } + +.font-weight-normal, .landing-page .feature-list .feature-list-row .feature-list-item h4 { + font-weight: 400 !important; } + +.font-weight-bold { + font-weight: 700 !important; } + +.font-italic { + font-style: italic !important; } + +.text-white { + color: #ffffff !important; } + +.text-primary { + color: #2196f3 !important; } + +a.text-primary:hover, a.text-primary:focus { + color: #0c7cd5 !important; } + +.text-secondary { + color: #e6eef2 !important; } + +a.text-secondary:hover, a.text-secondary:focus { + color: #c4d7e1 !important; } + +.text-success { + color: #19d895 !important; } + +a.text-success:hover, a.text-success:focus { + color: #14aa75 !important; } + +.text-info { + color: #8862e0 !important; } + +a.text-info:hover, a.text-info:focus { + color: #6837d8 !important; } + +.text-warning { + color: #ffaf00 !important; } + +a.text-warning:hover, a.text-warning:focus { + color: #cc8c00 !important; } + +.text-danger { + color: #ff6258 !important; } + +a.text-danger:hover, a.text-danger:focus { + color: #ff3225 !important; } + +.text-light { + color: #fbfbfb !important; } + +a.text-light:hover, a.text-light:focus { + color: #e2e2e2 !important; } + +.text-dark { + color: #252C46 !important; } + +a.text-dark:hover, a.text-dark:focus { + color: #131725 !important; } + +.text-body { + color: #212529 !important; } + +.text-muted, .preview-list .preview-item .preview-item-content p .content-category, .email-wrapper .mail-list-container .mail-list .content .message_text, .email-wrapper .mail-list-container .mail-list .details .date { + color: #858585 !important; } + +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; } + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; } + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; } + +.visible { + visibility: visible !important; } + +.invisible { + visibility: hidden !important; } + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + -webkit-box-shadow: none !important; + box-shadow: none !important; } + a:not(.btn):not(.ajax-upload-dragdrop .ajax-file-upload):not(.swal2-modal .swal2-buttonswrapper .swal2-styled):not(.swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm):not(.swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel):not(.wizard > .actions a) { + text-decoration: underline; } + abbr[title]::after { + content: " (" attr(title) ")"; } + pre { + white-space: pre-wrap !important; } + pre, + blockquote { + border: 1px solid #adb5bd; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } + @page { + size: a3; } + body { + min-width: 992px !important; } + .container { + min-width: 992px !important; } + .navbar { + display: none; } + .badge { + border: 1px solid #000; } + .table, .jsgrid .jsgrid-table { + border-collapse: collapse !important; } + .table td, .jsgrid .jsgrid-table td, + .table th, .jsgrid .jsgrid-table th { + background-color: #ffffff !important; } + .table-bordered th, + .table-bordered td { + border: 1px solid #dee2e6 !important; } + .table-dark { + color: inherit; } + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #f2f2f2; } + .table .thead-dark th, .jsgrid .jsgrid-table .thead-dark th { + color: inherit; + border-color: #f2f2f2; } } + +/*-------------------------------------------------------------------*/ +/* === Template mixins === */ +/* Animation Mixins */ +@-webkit-keyframes dropdownAnimation { + from { + opacity: 0; + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; + -webkit-transform: translate3d(0, 0px, 0); + transform: translate3d(0, 0px, 0); } } +@keyframes dropdownAnimation { + from { + opacity: 0; + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; + -webkit-transform: translate3d(0, 0px, 0); + transform: translate3d(0, 0px, 0); } } + +.dropdownAnimation, .nav .nav-item.dropdown .navbar-dropdown, +.navbar-nav .nav-item.dropdown .navbar-dropdown { + -webkit-animation-name: dropdownAnimation; + animation-name: dropdownAnimation; + -webkit-animation-duration: 0.25s; + animation-duration: 0.25s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; } + +@-webkit-keyframes fadeOut { + from { + opacity: 1; } + to { + opacity: 0; } } + +@keyframes fadeOut { + from { + opacity: 1; } + to { + opacity: 0; } } + +.fadeOut { + -webkit-animation-name: fadeOut; + animation-name: fadeOut; } + +.infinite-spin { + -webkit-animation-name: spin; + animation-name: spin; + -webkit-animation-duration: 3s; + animation-duration: 3s; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; + -webkit-animation-timing-function: linear; + animation-timing-function: linear; } + +@-webkit-keyframes spin { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes spin { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@-webkit-keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +@keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +.fadeInUp { + -webkit-animation-name: fadeInUp; + animation-name: fadeInUp; } + +.new-accounts ul.chats li.chat-persons a div.user p.u-name, .new-accounts ul.chats li.chat-persons a div.user p.u-designation, .settings-panel .chat-list .list .info p, .list-wrapper ul li .form-check, .list-wrapper ul li .form-check .form-check-label, .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user .u-name, .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user .u-designation, .email-wrapper .mail-list-container .mail-list .content .sender-name, .email-wrapper .message-body .attachments-sections ul li .details p.file-name { + text-overflow: ellipsis; + overflow: hidden; + max-width: 100%; + white-space: nowrap; } + +/*-------------------------------------------------------------------*/ +/* === Core Styles === */ +/* Reset Styles */ +body { + padding: 0; + margin: 0; + overflow-x: hidden; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } + +.form-control, .asColorPicker-input, .dataTables_wrapper select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], +.jsgrid .jsgrid-table .jsgrid-filter-row select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .tt-hint, +.tt-query, +.typeahead, +.form-control:focus, +.asColorPicker-input:focus, +.dataTables_wrapper select:focus, +.jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus, +.jsgrid .jsgrid-table .jsgrid-filter-row select:focus, +.jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, +.select2-container--default .select2-selection--single:focus, +.select2-container--default .select2-selection--single .select2-search__field:focus, +.tt-hint:focus, +.tt-query:focus, +.typeahead:focus { + -webkit-box-shadow: none; + -moz-box-shadow: none; } + +.form-control, .asColorPicker-input, .dataTables_wrapper select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], +.jsgrid .jsgrid-table .jsgrid-filter-row select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .tt-hint, +.tt-query, +.typeahead { + -webkit-box-shadow: none; + box-shadow: none; } + +.form-control:focus, .asColorPicker-input:focus, .dataTables_wrapper select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus, +.jsgrid .jsgrid-table .jsgrid-filter-row select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .tt-hint:focus, +.tt-query:focus, +.typeahead:focus { + outline: 0; + -webkit-box-shadow: none; + box-shadow: none; } + +a, +div, +h1, +h2, +h3, +h4, +h5, +p, +span { + text-shadow: none; } + +[type=button]:focus, +a:active, +a:focus, +a:visited, +button::-moz-focus-inner, +input[type=button]::-moz-focus-inner, +input[type=file] > input[type=button]::-moz-focus-inner, +input[type=reset]::-moz-focus-inner, +input[type=submit]::-moz-focus-inner, +select::-moz-focus-inner { + outline: 0; } + +.form-control:focus, .asColorPicker-input:focus, .dataTables_wrapper select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus, +.jsgrid .jsgrid-table .jsgrid-filter-row select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .tt-hint:focus, +.tt-query:focus, +.typeahead:focus, +button:focus, +input, +input:focus, +select:focus, +textarea:focus { + outline: none; + outline-width: 0; + outline-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; + outline-style: none; } + +textarea { + resize: none; + overflow-x: hidden; } + +.btn, .ajax-upload-dragdrop .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel, .wizard > .actions a, +.btn-group.open .dropdown-toggle, +.btn:active, +.ajax-upload-dragdrop .ajax-file-upload:active, +.swal2-modal .swal2-buttonswrapper .swal2-styled:active, +.wizard > .actions a:active, +.btn:focus, +.ajax-upload-dragdrop .ajax-file-upload:focus, +.swal2-modal .swal2-buttonswrapper .swal2-styled:focus, +.wizard > .actions a:focus, +.btn:hover, +.ajax-upload-dragdrop .ajax-file-upload:hover, +.swal2-modal .swal2-buttonswrapper .swal2-styled:hover, +.wizard > .actions a:hover, +.btn:visited, +.ajax-upload-dragdrop .ajax-file-upload:visited, +.swal2-modal .swal2-buttonswrapper .swal2-styled:visited, +.wizard > .actions a:visited, +a, +a:active, +a:checked, +a:focus, +a:hover, +a:visited, +body, +button, +button:active, +button:hover, +button:visited, +div, +input, +input:active, +input:focus, +input:hover, +input:visited, +select, +select:active, +select:focus, +select:visited, +textarea, +textarea:active, +textarea:focus, +textarea:hover, +textarea:visited { + -webkit-box-shadow: none; + box-shadow: none; } + +.btn.active.focus, .ajax-upload-dragdrop .active.focus.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .active.focus.swal2-styled, .wizard > .actions a.active.focus, +.btn.active:focus, +.ajax-upload-dragdrop .active.ajax-file-upload:focus, +.swal2-modal .swal2-buttonswrapper .active.swal2-styled:focus, +.wizard > .actions a.active:focus, +.btn.focus, +.ajax-upload-dragdrop .focus.ajax-file-upload, +.swal2-modal .swal2-buttonswrapper .focus.swal2-styled, +.wizard > .actions a.focus, +.btn:active.focus, +.ajax-upload-dragdrop .ajax-file-upload:active.focus, +.swal2-modal .swal2-buttonswrapper .swal2-styled:active.focus, +.wizard > .actions a:active.focus, +.btn:active:focus, +.ajax-upload-dragdrop .ajax-file-upload:active:focus, +.swal2-modal .swal2-buttonswrapper .swal2-styled:active:focus, +.wizard > .actions a:active:focus, +.btn:focus, +.ajax-upload-dragdrop .ajax-file-upload:focus, +.swal2-modal .swal2-buttonswrapper .swal2-styled:focus, +.wizard > .actions a:focus, +button, +button:active, +button:checked, +button:focus, +button:hover, +button:visited { + outline: 0; + outline-offset: 0; } + +.bootstrap-select .dropdown-toggle:focus { + outline: 0 !important; + outline-offset: 0; } + +.dropdown-menu > li > a:active, +.dropdown-menu > li > a:focus, +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:visited { + outline: 0 !important; } + +a:focus, +input:focus { + border-color: transparent; + outline: none; } + +/* Fonts */ +.text-twitter { + color: #4DBFF5; } + +.text-facebook { + color: #648ACA; } + +.text-google { + color: #E55F4B; } + +.text-linkedin { + color: #0177b4; } + +.text-pinterest { + color: #cc2127; } + +.text-youtube { + color: #e52d27; } + +.text-github { + color: #333333; } + +.text-behance { + color: #1769ff; } + +.text-dribbble { + color: #ea4c89; } + +.text-reddit { + color: #ff4500; } + +.bg-twitter { + background: #4DBFF5; } + +.bg-facebook { + background: #648ACA; } + +.bg-google { + background: #E55F4B; } + +.bg-linkedin { + background: #0177b4; } + +.bg-pinterest { + background: #cc2127; } + +.bg-youtube { + background: #e52d27; } + +.bg-github { + background: #333333; } + +.bg-behance { + background: #1769ff; } + +.bg-dribbble { + background: #ea4c89; } + +.bg-reddit { + background: #ff4500; } + +/* Navbar */ +.navbar.default-layout { + font-family: "Poppins", sans-serif; + background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1); + transition: background 0.25s ease; + -webkit-transition: background 0.25s ease; + -moz-transition: background 0.25s ease; + -ms-transition: background 0.25s ease; } + .navbar.default-layout .navbar-brand-wrapper { + transition: width 0.25s ease, background 0.25s ease; + -webkit-transition: width 0.25s ease, background 0.25s ease; + -moz-transition: width 0.25s ease, background 0.25s ease; + -ms-transition: width 0.25s ease, background 0.25s ease; + background: #ffffff; + width: 255px; + height: 63px; } + .sidebar-dark .navbar.default-layout .navbar-brand-wrapper { + background: #252C46; } + .navbar.default-layout .navbar-brand-wrapper .navbar-brand { + color: #ffffff; + font-size: 1.5rem; + line-height: 48px; + margin-right: 0; + padding: 0.25rem 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .navbar.default-layout .navbar-brand-wrapper .navbar-brand:active, .navbar.default-layout .navbar-brand-wrapper .navbar-brand:focus, .navbar.default-layout .navbar-brand-wrapper .navbar-brand:hover { + color: #424546; } + .navbar.default-layout .navbar-brand-wrapper .navbar-brand img { + width: calc(255px - 130px); + max-width: 100%; + height: 28px; + margin: auto; + vertical-align: middle; } + .navbar.default-layout .navbar-brand-wrapper .brand-logo-mini { + display: none; } + .navbar.default-layout .navbar-brand-wrapper .brand-logo-mini img { + width: calc(70px - 50px); + max-width: 100%; + height: 28px; + margin: auto; } + .navbar.default-layout .navbar-menu-wrapper { + transition: width 0.25s ease; + -webkit-transition: width 0.25s ease; + -moz-transition: width 0.25s ease; + -ms-transition: width 0.25s ease; + color: #ffffff; + padding-left: 15px; + padding-right: 15px; + width: calc(100% - 255px); + height: 63px; } + @media (max-width: 991px) { + .navbar.default-layout .navbar-menu-wrapper { + width: auto; } } + .navbar.default-layout .navbar-menu-wrapper .navbar-toggler { + border: 0; + color: inherit; } + @media (max-width: 991px) { + .navbar.default-layout .navbar-menu-wrapper .navbar-toggler:not(.navbar-toggler-right) { + display: none; } } + .navbar.default-layout .navbar-menu-wrapper .navbar-text { + font-size: 0.875rem; } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item { + margin-left: 1rem; + margin-right: 1rem; } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link { + color: inherit; + font-size: 12px; + vertical-align: middle; } + @media (max-width: 767px) { + .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link { + margin-left: 0.5rem; + margin-right: 0.5rem; } } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link i { + font-size: 1.25rem; + vertical-align: middle; } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link .profile-text { + margin-right: 15px; } + .rtl .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link .profile-text { + margin-right: 0; + margin-left: 15px; } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn .btn, .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn .ajax-file-upload, .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn .swal2-styled, .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn .wizard > .actions a, .wizard > .actions .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn a { + background: rgba(255, 255, 255, 0.1); + padding: 0.75rem 1rem; + color: #ffffff; } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn:after { + display: none; } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item.color-setting i { + font-size: 25px; + vertical-align: text-top; } + @media (min-width: 992px) { + .navbar.default-layout .navbar-menu-wrapper .navbar-nav.navbar-nav-right { + margin-left: auto; } + .rtl .navbar.default-layout .navbar-menu-wrapper .navbar-nav.navbar-nav-right { + margin-left: 0; + margin-right: auto; } } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav.header-links { + height: 63px; + padding-left: 2%; } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav.header-links .nav-item { + margin: 0; } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav.header-links .nav-item .nav-link { + height: 63px; + font-size: 12px; + padding: 16px 25px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav.header-links .nav-item .nav-link i { + margin-right: 10px; + font-size: 21px; } + .rtl .navbar.default-layout .navbar-menu-wrapper .navbar-nav.header-links .nav-item .nav-link i { + margin-right: 0; + margin-left: 10px; } + .navbar.default-layout .navbar-menu-wrapper .navbar-nav.header-links .nav-item.active { + background: rgba(255, 255, 255, 0.13); } + .navbar.default-layout.navbar-danger, .navbar.default-layout.navbar-dark, .navbar.default-layout.navbar-primary, .navbar.default-layout.navbar-success, .navbar.default-layout.navbar-warning { + background: #252C46; } + .navbar.default-layout.navbar-danger .navbar-toggler, .navbar.default-layout.navbar-dark .navbar-toggler, .navbar.default-layout.navbar-primary .navbar-toggler, .navbar.default-layout.navbar-success .navbar-toggler, .navbar.default-layout.navbar-warning .navbar-toggler { + color: #ffffff; } + .navbar.default-layout.navbar-danger .count, .navbar.default-layout.navbar-dark .count, .navbar.default-layout.navbar-primary .count, .navbar.default-layout.navbar-success .count, .navbar.default-layout.navbar-warning .count { + border-color: #252C46; } + .navbar.default-layout.navbar-primary { + background: #2196f3; } + .navbar.default-layout.navbar-primary .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count { + background: #ff6258; + color: #ffffff; } + .navbar.default-layout.navbar-success { + background: #19d895; } + .navbar.default-layout.navbar-success .navbar-menu-wrapper input { + color: #ffffff; } + .navbar.default-layout.navbar-success .navbar-menu-wrapper input::-webkit-input-placeholder { + color: inherit; } + .navbar.default-layout.navbar-success .navbar-menu-wrapper input:-moz-placeholder { + color: inherit; } + .navbar.default-layout.navbar-success .navbar-menu-wrapper input::-moz-placeholder { + color: inherit; } + .navbar.default-layout.navbar-success .navbar-menu-wrapper input:-ms-input-placeholder { + color: inherit; } + .navbar.default-layout.navbar-success .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count { + background: #094f36; + color: #ffffff; + border-color: #19d895; } + .navbar.default-layout.navbar-success .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.bg-success, .navbar.default-layout.navbar-success .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .settings-panel .color-tiles .count.tiles.success, .settings-panel .color-tiles .navbar.default-layout.navbar-success .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.tiles.success { + background: #0e7d56 !important; } + .navbar.default-layout.navbar-danger { + background: #ff6258; } + .navbar.default-layout.navbar-danger .navbar-menu-wrapper input { + color: #ffffff; } + .navbar.default-layout.navbar-danger .navbar-menu-wrapper input::-webkit-input-placeholder { + color: inherit; } + .navbar.default-layout.navbar-danger .navbar-menu-wrapper input:-moz-placeholder { + color: inherit; } + .navbar.default-layout.navbar-danger .navbar-menu-wrapper input::-moz-placeholder { + color: inherit; } + .navbar.default-layout.navbar-danger .navbar-menu-wrapper input:-ms-input-placeholder { + color: inherit; } + .navbar.default-layout.navbar-danger .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count { + background: #be0b00; + color: #ffffff; + border-color: #ff6258; } + .navbar.default-layout.navbar-danger .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.bg-danger, .navbar.default-layout.navbar-danger .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .settings-panel .color-tiles .count.tiles.danger, .settings-panel .color-tiles .navbar.default-layout.navbar-danger .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.tiles.danger { + background: #f10e00 !important; } + .navbar.default-layout.navbar-warning { + background: #ffaf00; } + .navbar.default-layout.navbar-warning .navbar-menu-wrapper input { + color: #ffffff; } + .navbar.default-layout.navbar-warning .navbar-menu-wrapper input::-webkit-input-placeholder { + color: inherit; } + .navbar.default-layout.navbar-warning .navbar-menu-wrapper input:-moz-placeholder { + color: inherit; } + .navbar.default-layout.navbar-warning .navbar-menu-wrapper input::-moz-placeholder { + color: inherit; } + .navbar.default-layout.navbar-warning .navbar-menu-wrapper input:-ms-input-placeholder { + color: inherit; } + .navbar.default-layout.navbar-warning .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count { + background: #664600; + color: #ffffff; + border-color: #ffaf00; } + .navbar.default-layout.navbar-warning .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.bg-warning, .navbar.default-layout.navbar-warning .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .settings-panel .color-tiles .count.tiles.warning, .settings-panel .color-tiles .navbar.default-layout.navbar-warning .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.tiles.warning { + background: #996900 !important; } + .navbar.default-layout.navbar-pink { + background: #E91E63; } + .navbar.default-layout.navbar-pink a { + color: #ffffff; } + .navbar.default-layout.navbar-pink .navbar-toggler { + color: #ffffff; } + .navbar.default-layout.navbar-pink .navbar-brand-wrapper .navbar-brand { + color: #ffffff; } + .navbar.default-layout.navbar-pink .navbar-menu-wrapper input { + color: #ffffff; } + .navbar.default-layout.navbar-pink .navbar-menu-wrapper input::-webkit-input-placeholder { + color: inherit; } + .navbar.default-layout.navbar-pink .navbar-menu-wrapper input:-moz-placeholder { + color: inherit; } + .navbar.default-layout.navbar-pink .navbar-menu-wrapper input::-moz-placeholder { + color: inherit; } + .navbar.default-layout.navbar-pink .navbar-menu-wrapper input:-ms-input-placeholder { + color: inherit; } + .navbar.default-layout.navbar-pink .navbar-menu-wrapper .navbar-nav .nav-item .nav-link { + color: #ffffff; } + .navbar.default-layout.navbar-pink .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count { + background: #640a29; + color: #ffffff; + border-color: #E91E63; } + .navbar.default-layout.navbar-pink .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.bg-pink { + background: #930e3b !important; } + .navbar.default-layout.navbar-pink .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item { + color: #000; } + .navbar.default-layout.navbar-info { + background: #8862e0; } + .navbar.default-layout.navbar-info a { + color: #ffffff; } + .navbar.default-layout.navbar-info .navbar-toggler { + color: #ffffff; } + .navbar.default-layout.navbar-info .navbar-menu-wrapper input { + color: #ffffff; } + .navbar.default-layout.navbar-info .navbar-menu-wrapper input::-webkit-input-placeholder { + color: inherit; } + .navbar.default-layout.navbar-info .navbar-menu-wrapper input:-moz-placeholder { + color: inherit; } + .navbar.default-layout.navbar-info .navbar-menu-wrapper input::-moz-placeholder { + color: inherit; } + .navbar.default-layout.navbar-info .navbar-menu-wrapper input:-ms-input-placeholder { + color: inherit; } + .navbar.default-layout.navbar-info .navbar-menu-wrapper .navbar-nav .nav-item { + color: #ffffff; } + .navbar.default-layout.navbar-info .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count { + background: #3e1c8d; + color: #ffffff; + border-color: #8862e0; } + .navbar.default-layout.navbar-info .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.bg-info, .navbar.default-layout.navbar-info .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .settings-panel .color-tiles .count.tiles.info, .settings-panel .color-tiles .navbar.default-layout.navbar-info .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.tiles.info { + background: #5124b8 !important; } + .navbar.default-layout.navbar-info .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item { + color: #000; } + .navbar.default-layout.navbar-danger .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-danger .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-dark .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-primary .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-success .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-warning .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-primary .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-success .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-warning .navbar-brand-wrapper .navbar-brand { + color: #ffffff; } + .navbar.default-layout.navbar-danger .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-danger .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-dark .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-primary .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-success .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-warning .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-primary .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-success .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-warning .navbar-menu-wrapper .navbar-nav .nav-item .nav-link { + color: #ffffff; } + +@media (max-width: 991px) { + .navbar.default-layout { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar.default-layout .navbar-brand-wrapper { + width: 75px; } + .navbar.default-layout .navbar-brand-wrapper .brand-logo { + display: none; } + .navbar.default-layout .navbar-brand-wrapper .brand-logo-mini { + display: inline-block; } + .navbar-collapse { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + margin-top: 0.5rem; } } + +/* Typography */ +:root, +body { + font-size: 1rem; + font-family: "Poppins", sans-serif; } + +.h1, +.h2, +.h3, +.h4, +.h5, +.h6, +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: "Poppins", sans-serif; + font-weight: normal; + font-style: normal; + font-stretch: normal; + line-height: normal; } + +p { + font-size: 0.875rem; } + +.h1, +h1 { + font-size: 2.3125rem; } + +.h2, +h2 { + font-size: 2rem; } + +.h3, +h3 { + font-size: 1.6875rem; } + +.h4, +h4 { + font-size: 1.25rem; } + +.h5, +h5 { + font-size: 1.0625rem; } + +.h6, +h6 { + font-size: 1rem; } + +p { + font-size: 0.875rem; } + +.display-1 { + font-size: 3.75rem; } + @media (max-width: 991px) { + .display-1 { + font-size: 3rem; } } + +.display-2 { + font-size: 3.125rem; } + @media (max-width: 991px) { + .display-2 { + font-size: 2.5rem; } } + +.display-3 { + font-size: 2.5rem; } + @media (max-width: 991px) { + .display-3 { + font-size: 2rem; } } + +.display-4 { + font-size: 1.875rem; } + @media (max-width: 991px) { + .display-4 { + font-size: 1.5rem; } } + +.display-5 { + font-size: 1.25rem; } + @media (max-width: 991px) { + .display-5 { + font-size: 1rem; } } + +.blockquote { + padding: 1.25rem; + border: 1px solid #f2f2f2; } + +address p { + margin-bottom: 0; } + +.blockquote-primary { + border-color: #2196f3; } + .blockquote-primary .blockquote-footer { + color: #2196f3; } + +.blockquote-secondary { + border-color: #e6eef2; } + .blockquote-secondary .blockquote-footer { + color: #e6eef2; } + +.blockquote-success { + border-color: #19d895; } + .blockquote-success .blockquote-footer { + color: #19d895; } + +.blockquote-info { + border-color: #8862e0; } + .blockquote-info .blockquote-footer { + color: #8862e0; } + +.blockquote-warning { + border-color: #ffaf00; } + .blockquote-warning .blockquote-footer { + color: #ffaf00; } + +.blockquote-danger { + border-color: #ff6258; } + .blockquote-danger .blockquote-footer { + color: #ff6258; } + +.blockquote-light { + border-color: #fbfbfb; } + .blockquote-light .blockquote-footer { + color: #fbfbfb; } + +.blockquote-dark { + border-color: #252C46; } + .blockquote-dark .blockquote-footer { + color: #252C46; } + +.page-title { + color: #000; + margin: 0.38rem 0 0.75rem; } + +.card-title { + font-family: "Poppins", sans-serif; + font-weight: 500; + color: #404852; + margin-bottom: 22px; + font-size: 14px; + text-transform: capitalize; } + .rtl .card-title { + text-align: right; } + +.card-subtitle { + font-weight: 300; + font-family: "Poppins", sans-serif; + margin-top: 0.625rem; + margin-bottom: 0.625rem; } + +.card-description { + margin-bottom: 0.9375rem; + font-family: "Poppins", sans-serif; } + .rtl .card-description { + text-align: right; } + +.font-weight-normal, .landing-page .feature-list .feature-list-row .feature-list-item h4 { + font-weight: 400; } + +.font-weight-medium { + font-weight: 500; } + +.font-weight-semibold { + font-weight: 600; } + +small, +.text-small, +.new-accounts ul.chats li.chat-persons a div.user p.u-designation, +.new-accounts ul.chats li.chat-persons a p.joined-date, +#calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-h-event { + font-size: 12px; } + +.text-large { + font-size: 24px; +} + +.icon-lg { + font-size: 2.5rem; } + +.icon-md { + font-size: 1.875rem; } + +.icon-sm { + font-size: 1rem; } + +/* Miscellanoeous */ +body, +html { + overflow-x: hidden; + padding-right: 0 !important; } + +*:-moz-full-screen, +*:-webkit-full-screen, +*:-moz-full-screen *:-ms-fullscreen { + overflow: auto !important; } + +*:-moz-full-screen, +*:-webkit-full-screen, +*:fullscreen *:-ms-fullscreen { + overflow: auto !important; } + +.page-body-wrapper { + min-height: calc(100vh - 63px); + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + padding-left: 0; + padding-right: 0; } + .page-body-wrapper.full-page-wrapper { + width: 100%; + min-height: 100vh; } + +.main-panel { + -webkit-transition: width 0.25s ease, margin 0.25s ease; + transition: width 0.25s ease, margin 0.25s ease; + width: 100%; + min-height: calc(100vh - 63px); + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + @media (max-width: 991px) { + .main-panel { + margin-left: 0; + width: 100%; } } + +.content-wrapper { + background: #f3f4fa; + padding: 1.5rem 1.7rem; + width: 100%; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; } + +.container-scroller { + overflow: hidden; } + +.scroll-container { + position: relative; } + .scroll-container.horizontally { + overflow-x: hidden; + width: 100%; + max-width: 100%; } + .scroll-container.vertically { + overflow-y: hidden; + height: 100%; + max-height: 100%; } + +pre { + padding: 15px; + font-size: 14px; } + +/* Footer */ +.footer { + background: #ffffff; + border-top-right-radius: 10px; + border-top-left-radius: 10px; + box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08); + padding: 20px 1rem; + transition: all 0.25s ease; + -moz-transition: all 0.25s ease; + -webkit-transition: all 0.25s ease; + -ms-transition: all 0.25s ease; + border-top: 1px solid #f2f2f2; + font-size: calc(0.875rem - 0.05rem); + font-family: "Poppins", sans-serif; } + .footer a { + color: #19d895; + font-size: inherit; } + @media (max-width: 991px) { + .footer { + margin-left: 0; + width: 100%; } } + +/* Utilities */ +.grid-margin { + margin-bottom: 25px; } + +@media (min-width: 576px) { + .grid-margin-sm-0 { + margin-bottom: 0; } } + +@media (min-width: 768px) { + .grid-margin-md-0 { + margin-bottom: 0; } } + +@media (min-width: 992px) { + .grid-margin-lg-0 { + margin-bottom: 0; } } + +@media (min-width: 1200px) { + .grid-margin-xl-0 { + margin-bottom: 0; } } + +.img-lg { + width: 92px; + height: 92px; } + +.img-md { + width: 60px; + height: 60px; } + +.img-sm { + width: 43px; + height: 43px; } + +.img-xs { + width: 32px; + height: 32px; } + +.img-ss, .image-grouped img, .table td img, .jsgrid .jsgrid-table td img, +.table th img, .jsgrid .jsgrid-table th img, .settings-panel .color-tiles .tiles { + width: 26px; + height: 26px; } + +.stretch-card { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + -webkit-box-pack: stretch; + -ms-flex-pack: stretch; + justify-content: stretch; } + .stretch-card > .card { + width: 100%; + min-width: 100%; } + +.dot-indicator { + width: 10px; + height: 10px; + border-radius: 100%; } + +@media (min-width: 576px) { + .border-right-sm { + border-right: 1px solid #f2f2f2; } } + +@media (min-width: 768px) { + .border-right-md { + border-right: 1px solid #f2f2f2; } } + +@media (min-width: 992px) { + .border-right-lg { + border-right: 1px solid #f2f2f2; } } + +@media (min-width: 576px) { + .border-left-sm { + border-left: 1px solid #f2f2f2; } } + +.border-strong { + border-color: #262626; } + +.count-wrapper { + position: relative; } + .count-wrapper .count { + position: absolute; + width: auto; + min-width: 8px; + min-height: 8px; + padding: 2px 4px; + font-size: 75%; + line-height: 1; + vertical-align: middle; + border-radius: 100%; + color: #ffffff; + font-weight: 500; } + .count-wrapper .count.top-right { + top: -5px; + right: 0; } + .count-wrapper .count.bottom-right { + bottom: -5px; + right: 0; } + .count-wrapper .count.bottom-left { + bottom: -5px; + left: 0; } + .count-wrapper .count.top-left { + top: -5px; + left: 0; } + +@media (min-width: 768px) { + .border-left-md { + border-left: 1px solid #f2f2f2; } } + +@media (min-width: 992px) { + .border-left-lg { + border-left: 1px solid #f2f2f2; } } + +.text-gray, .card-subtitle, .new-accounts ul.chats li.chat-persons a p.joined-date { + color: #969696; } + +.text-black { + color: #000; } + +.flex-grow { + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; } + +.ellipsis { + max-width: 95%; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; } + +.no-wrap { + white-space: nowrap; } + +.status-indicator { + border-width: 2px; + border-style: solid; + border-color: #ffaf00; + border-radius: 100%; + display: inline-block; + height: 8px; + width: 8px; } + .status-indicator.online { + border-color: #19d895; } + .status-indicator.offline { + border-color: #2196f3; } + .status-indicator.away { + border-color: #ffaf00; } + +.bg-transparent { + background: transparent; } + +.aligner-wrapper { + position: relative; } + .aligner-wrapper .absolute { + position: absolute; } + .aligner-wrapper .absolute.absolute-center { + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + bottom: 0; + right: 0; + left: 0; + margin: auto; } + .aligner-wrapper .absolute.left { + left: 0; } + .aligner-wrapper .absolute.right { + right: 0; } + .aligner-wrapper .absolute.bottom { + bottom: 0; } + .aligner-wrapper .absolute.top { + top: 0; } + +.image-grouped { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .image-grouped img { + border-radius: 100%; + margin-left: -15px; + width: 60px; + height: 60px; + border: 2px solid #ffffff; } + .image-grouped img:first-child { + margin-left: 0; } + +.v-strock-1 { + width: 2px; } + +.v-strock-2 { + width: 3px; } + +.v-strock-3 { + width: 4px; } + +.v-strock-4 { + width: 5px; } + +.h-strock-1 { + height: 2px; } + +.h-strock-2 { + height: 3px; } + +.h-strock-3 { + height: 4px; } + +.h-strock-4 { + height: 5px; } + +.bg-inverse-primary { + background: rgba(33, 150, 243, 0.2); } + +.bg-inverse-secondary { + background: rgba(230, 238, 242, 0.2); } + +.bg-inverse-success { + background: rgba(25, 216, 149, 0.2); } + +.bg-inverse-info { + background: rgba(136, 98, 224, 0.2); } + +.bg-inverse-warning { + background: rgba(255, 175, 0, 0.2); } + +.bg-inverse-danger { + background: rgba(255, 98, 88, 0.2); } + +.bg-inverse-light { + background: rgba(251, 251, 251, 0.2); } + +.bg-inverse-dark { + background: rgba(37, 44, 70, 0.2); } + +/* Demo Styles */ +.template-demo > .btn-group .btn, .template-demo > .btn-group .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .template-demo > .btn-group .ajax-file-upload, .template-demo > .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .template-demo > .btn-group .swal2-styled, .template-demo > .btn-group .wizard > .actions a, .wizard > .actions .template-demo > .btn-group a { + margin: 0 !important; } + +.template-demo .progress { + margin-top: 1.5rem; } + +.template-demo > h2, +.template-demo > h3, +.template-demo > h4, +.template-demo > h5, +.template-demo > h6, +.template-demo > h1 { + border-top: 1px solid #f2f2f2; + padding: 0.5rem 0 0; } + +.template-demo .ul-slider.noUi-horizontal { + margin-top: 2rem; } + +.template-demo .ul-slider.noUi-vertical { + margin-right: 2rem; } + +.template-demo .dropdown { + display: inline-block; + margin-bottom: 0.5rem; } + +.template-demo nav .breadcrumb { + margin-bottom: 1.375rem; } + +.template-demo nav:last-child .breadcrumb { + margin-bottom: 0; } + +.template-demo .editable-form > .form-group { + border-bottom: 1px solid #f2f2f2; + padding-bottom: 0.8rem; + margin-bottom: 0.8rem; } + +.template-demo .circle-progress { + padding: 15px; } + +.demo-modal { + position: static; + display: block; } + .demo-modal .modal-dialog { + margin-top: 0 !important; } + .demo-modal .modal-dialog.modal-lg { + max-width: 100%; } + +.documentation { + padding-top: 0; + max-width: 100%; } + .documentation .content-wrapper { + padding-top: 0; + min-height: calc(100vh - 60px); } + +.doc-table-contents, +.doc-header { + position: fixed; } + +.doc-header { + padding-top: 24px; + padding-bottom: 24px; + z-index: 2; + background: #f3f4fa; } + +.doc-content { + padding-top: 157px; } + +.doc-table-contents { + overflow: auto; + max-height: calc(100% - 157px); } + .doc-table-contents ul li { + margin-top: 10px; } + .doc-table-contents ul li:before { + font-size: .5rem; } + +.doc-credits ul li { + margin-bottom: 10px; } + .doc-credits ul li a { + margin-left: .25rem; } + +.loader-demo-box { + width: 100%; + height: 200px; } + +/* Dashboard */ +.card-statistics .highlight-icon { + height: 53px; + width: 53px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + border-radius: 50px; } + .card-statistics .highlight-icon i { + font-size: 27px; } + +.card-statistics .card-col { + border-right: 1px solid #f2f2f2; } + .card-statistics .card-col:last-child { + border-right: none; } + @media (max-width: 767.98px) { + .card-statistics .card-col { + padding-left: 0; + padding-right: 0; + position: relative; + border: none; } + .card-statistics .card-col:first-child:after, .card-statistics .card-col:first-child:before, .card-statistics .card-col:nth-child(2):after, .card-statistics .card-col:nth-child(2):before, .card-statistics .card-col:nth-child(3):after, .card-statistics .card-col:nth-child(3):before { + content: ""; + position: absolute; + background: #f2f2f2; } + .card-statistics .card-col:first-child:before { + bottom: 0; + width: 94.2%; + height: 1px; + right: 0; } + .card-statistics .card-col:first-child:after { + bottom: 0; + width: 1px; + height: 100%; + right: 0; } + .card-statistics .card-col:nth-child(2):before { + bottom: 0; + width: 94.2%; + height: 1px; + left: 0; } + .card-statistics .card-col:nth-child(3):before { + width: 1px; + height: 100%; + right: 0; } } + +.card-revenue-table .revenue-item { + border-bottom: 1px solid #f2f2f2; } + .card-revenue-table .revenue-item:last-child { + border-bottom: 0; } + .card-revenue-table .revenue-item .revenue-desc { + margin-right: auto; + width: 80%; } + .card-revenue-table .revenue-item .revenue-desc p { + margin-bottom: 0; } + .card-revenue-table .revenue-item .revenue-amount { + margin-left: auto; + width: 40%; } + .card-revenue-table .revenue-item .revenue-amount p { + font-size: 1.25rem; + font-family: "Poppins", sans-serif; + font-weight: 600; + text-align: right; } + .rtl .card-revenue-table .revenue-item .revenue-amount p { + text-align: left; } + +.card-revenue { + background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1); + background-size: cover; + color: #ffffff; } + .card-revenue .highlight-text { + font-size: 1.875rem; + font-family: "Poppins", sans-serif; + font-weight: 500; } + .card-revenue .badge { + background-color: rgba(255, 255, 255, 0.2); + font-size: 1.125rem; + padding: 0.5rem 1.25rem; } + +.card-weather { + background: #e1ecff; + background-image: -webkit-gradient(linear, right top, left bottom, from(#d6eef6), color-stop(#dff0fa), color-stop(#e7f3fc), color-stop(#eff6fe), to(#f6f9ff)); + background-image: linear-gradient(to left bottom, #d6eef6, #dff0fa, #e7f3fc, #eff6fe, #f6f9ff); } + .card-weather .card-body { + background: #ffffff; } + .card-weather .card-body:first-child { + background: url("/assets/images/dashboard/banner_bg_alt.jpg") no-repeat center; + background-size: cover; } + .card-weather .weather-date-location { + padding: 0 0 38px; } + .card-weather .weather-data { + padding: 0 0 4.75rem; } + .card-weather .weather-data i { + font-size: 5.313rem; + line-height: 1; } + .card-weather .weakly-weather { + background: #ffffff; + overflow-x: auto; } + .card-weather .weakly-weather .weakly-weather-item { + -webkit-box-flex: 0; + -ms-flex: 0 0 14.28%; + flex: 0 0 14.28%; + border-right: 1px solid #f2f2f2; + padding: 1rem; + text-align: center; } + .card-weather .weakly-weather .weakly-weather-item i { + font-size: 1.2rem; } + .card-weather .weakly-weather .weakly-weather-item:last-child { + border-right: 0; } + .card-weather .weakly-weather .weakly-weather-item .symbol { + color: #858585; + font-size: 1.875rem; + font-weight: 300; } + +.product-chart-wrapper { + height: 92%; } + +#dashboardTrendingProgress { + width: 60px; } + +.dashboard-bar-chart-legend .col { + text-align: center; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + .dashboard-bar-chart-legend .col .bg { + margin-left: auto; + margin-right: auto; + height: 5px; + width: 30px; + display: block; + margin-top: 5px; } + .dashboard-bar-chart-legend .col:nth-child(1) .bg { + background: #8862e0; } + .dashboard-bar-chart-legend .col:nth-child(2) .bg { + background: #2196f3; } + .dashboard-bar-chart-legend .col:nth-child(3) .bg { + background: #ff6258; } + +.intro-banner { + background: #dbe4ec; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 20px; + border-radius: 2px; } + .intro-banner .banner-image { + width: 24%; + max-width: 100%; } + .intro-banner .banner-image img { + display: block; + margin: auto; } + .intro-banner .content-area { + width: 58%; + color: #000; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: end; + -ms-flex-align: end; + align-items: end; } + +/*-------------------------------------------------------------------*/ +/* === Components === */ +/* Accordions */ +.accordion .card { + margin-bottom: 15px; + border: 1px solid #f2f2f2; + border-radius: 4px; } + .accordion .card .card-header { + background-color: transparent; + border: none; + padding: 0; + font-size: 14px; } + .accordion .card .card-header a { + display: block; + padding: 0.75rem 1.70rem 0.75rem 1.25rem; + color: #252C46; + text-decoration: none; + font-size: 0.875rem; + position: relative; + font-weight: 600; + transition-property: border-color, background; + -webkit-transition-property: border-color, background; + -webkit-transition-duration: 0.5s; + transition-duration: 0.5s; + text-overflow: ellipsis; + overflow: hidden; + max-width: 100%; + white-space: nowrap; } + .accordion .card .card-header a:before { + font-family: "Material Design Icons"; + position: absolute; + right: 8px; + top: 16px; + font-size: 16px; + display: block; + font-weight: 500; + color: #000; } + .accordion .card .card-header a .card-icon { + margin-right: 15px; + font-size: 20px; } + .accordion .card .card-body { + font-size: 0.88rem; + padding: 12px 20px 26px; } + .accordion .card .card-body i { + font-size: 1.25rem; } + +.accordion.basic-accordion .card .card-header a[aria-expanded="true"] { + background: #fbfbfb; } + .accordion.basic-accordion .card .card-header a[aria-expanded="true"]:before { + content: "\F374"; } + +.accordion.basic-accordion .card .card-header a[aria-expanded="false"]:before { + content: "\F415"; } + +.accordion.accordion-multiple-outline .card:nth-child(5n+1) { + border-color: #8862e0; } + .accordion.accordion-multiple-outline .card:nth-child(5n+1) .card-header a .card-icon { + color: #8862e0; } + .accordion.accordion-multiple-outline .card:nth-child(5n+1) .card-header a:before { + color: #8862e0; } + .accordion.accordion-multiple-outline .card:nth-child(5n+1) .card-header a[aria-expanded="true"] { + border-bottom: 1px solid #8862e0; } + .accordion.accordion-multiple-outline .card:nth-child(5n+1) .card-header a[aria-expanded="false"] { + border-bottom: 1px solid #ffffff; } + +.accordion.accordion-multiple-outline .card:nth-child(5n+2) { + border-color: #19d895; } + .accordion.accordion-multiple-outline .card:nth-child(5n+2) .card-header a .card-icon { + color: #19d895; } + .accordion.accordion-multiple-outline .card:nth-child(5n+2) .card-header a:before { + color: #19d895; } + .accordion.accordion-multiple-outline .card:nth-child(5n+2) .card-header a[aria-expanded="true"] { + border-bottom: 1px solid #19d895; } + .accordion.accordion-multiple-outline .card:nth-child(5n+2) .card-header a[aria-expanded="false"] { + border-bottom: 1px solid #ffffff; } + +.accordion.accordion-multiple-outline .card:nth-child(5n+3) { + border-color: #2196f3; } + .accordion.accordion-multiple-outline .card:nth-child(5n+3) .card-header a .card-icon { + color: #2196f3; } + .accordion.accordion-multiple-outline .card:nth-child(5n+3) .card-header a:before { + color: #2196f3; } + .accordion.accordion-multiple-outline .card:nth-child(5n+3) .card-header a[aria-expanded="true"] { + border-bottom: 1px solid #2196f3; } + .accordion.accordion-multiple-outline .card:nth-child(5n+3) .card-header a[aria-expanded="false"] { + border-bottom: 1px solid #ffffff; } + +.accordion.accordion-multiple-outline .card:nth-child(5n+4) { + border-color: #ffaf00; } + .accordion.accordion-multiple-outline .card:nth-child(5n+4) .card-header a .card-icon { + color: #ffaf00; } + .accordion.accordion-multiple-outline .card:nth-child(5n+4) .card-header a:before { + color: #ffaf00; } + .accordion.accordion-multiple-outline .card:nth-child(5n+4) .card-header a[aria-expanded="true"] { + border-bottom: 1px solid #ffaf00; } + .accordion.accordion-multiple-outline .card:nth-child(5n+4) .card-header a[aria-expanded="false"] { + border-bottom: 1px solid #ffffff; } + +.accordion.accordion-multiple-outline .card:nth-child(5n+5) { + border-color: #ff6258; } + .accordion.accordion-multiple-outline .card:nth-child(5n+5) .card-header a .card-icon { + color: #ff6258; } + .accordion.accordion-multiple-outline .card:nth-child(5n+5) .card-header a:before { + color: #ff6258; } + .accordion.accordion-multiple-outline .card:nth-child(5n+5) .card-header a[aria-expanded="true"] { + border-bottom: 1px solid #ff6258; } + .accordion.accordion-multiple-outline .card:nth-child(5n+5) .card-header a[aria-expanded="false"] { + border-bottom: 1px solid #ffffff; } + +.accordion.accordion-multiple-outline .card .card-header a[aria-expanded="true"]:before { + content: "\F143"; } + +.accordion.accordion-multiple-outline .card .card-header a[aria-expanded="false"]:before { + content: "\F140"; } + +.accordion.accordion-multiple-filled .card { + overflow: hidden; } + .accordion.accordion-multiple-filled .card:nth-child(5n+1) .card-header a { + background: #8862e0; } + .accordion.accordion-multiple-filled .card:nth-child(5n+1) .card-header a[aria-expanded="true"] { + background: #8862e0; } + .accordion.accordion-multiple-filled .card:nth-child(5n+1) .card-header a[aria-expanded="false"] { + background: #8862e0; } + .accordion.accordion-multiple-filled .card:nth-child(5n+2) .card-header a { + background: #19d895; } + .accordion.accordion-multiple-filled .card:nth-child(5n+2) .card-header a[aria-expanded="true"] { + background: #19d895; } + .accordion.accordion-multiple-filled .card:nth-child(5n+2) .card-header a[aria-expanded="false"] { + background: #19d895; } + .accordion.accordion-multiple-filled .card:nth-child(5n+3) .card-header a { + background: #2196f3; } + .accordion.accordion-multiple-filled .card:nth-child(5n+3) .card-header a[aria-expanded="true"] { + background: #2196f3; } + .accordion.accordion-multiple-filled .card:nth-child(5n+3) .card-header a[aria-expanded="false"] { + background: #2196f3; } + .accordion.accordion-multiple-filled .card:nth-child(5n+4) .card-header a { + background: #ffaf00; } + .accordion.accordion-multiple-filled .card:nth-child(5n+4) .card-header a[aria-expanded="true"] { + background: #ffaf00; } + .accordion.accordion-multiple-filled .card:nth-child(5n+4) .card-header a[aria-expanded="false"] { + background: #ffaf00; } + .accordion.accordion-multiple-filled .card:nth-child(5n+5) .card-header a { + background: #ff6258; } + .accordion.accordion-multiple-filled .card:nth-child(5n+5) .card-header a[aria-expanded="true"] { + background: #ff6258; } + .accordion.accordion-multiple-filled .card:nth-child(5n+5) .card-header a[aria-expanded="false"] { + background: #ff6258; } + .accordion.accordion-multiple-filled .card .card-header a { + padding-left: 2.5rem; + padding-right: 1rem; + color: #ffffff; + font-weight: 300; } + .accordion.accordion-multiple-filled .card .card-header a:before { + left: 10px; + right: unset; + top: 12px; + color: #ffffff; } + .accordion.accordion-multiple-filled .card .card-header a[aria-expanded="true"]:before { + content: "\F143"; } + .accordion.accordion-multiple-filled .card .card-header a[aria-expanded="false"]:before { + content: "\F140"; } + +.accordion.accordion-solid-bg .card { + background: #fbfbfb; } + .accordion.accordion-solid-bg .card .card-header a { + color: #8862e0; + font-weight: 400; } + .accordion.accordion-solid-bg .card .card-header a:before { + top: 12px; + color: #8862e0; } + .accordion.accordion-solid-bg .card .card-header a[aria-expanded="true"] { + background: #fbfbfb; } + .accordion.accordion-solid-bg .card .card-header a[aria-expanded="true"]:before { + content: "\F143"; } + .accordion.accordion-solid-bg .card .card-header a[aria-expanded="false"] { + background: #ffffff; } + .accordion.accordion-solid-bg .card .card-header a[aria-expanded="false"]:before { + content: "\F140"; } + +.accordion.accordion-body-filled .card { + border-top: none; + border-right: none; + border-left: none; + margin-bottom: 0; } + .accordion.accordion-body-filled .card .card-header a { + padding: 23px 10px 23px 2.5rem; + font-weight: 300; } + .accordion.accordion-body-filled .card .card-header a:before { + right: unset; + left: 8px; + top: 22px; + font-size: 24px; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; + -webkit-transition-property: color; + transition-property: color; } + .accordion.accordion-body-filled .card .card-header a[aria-expanded="true"]:before { + content: "\F376"; + color: #2196f3; } + .accordion.accordion-body-filled .card .card-header a[aria-expanded="false"]:before { + content: "\F417"; + color: #e6eef2; } + .accordion.accordion-body-filled .card .card-body { + background: #2196f3; + color: #ffffff; + border-radius: 4px; } + +.accordion.accordion-minimal .card { + border-top: none; + border-right: none; + border-left: none; + margin-bottom: 0; } + .accordion.accordion-minimal .card .card-header a { + padding: 23px 20px; + -webkit-transition-duration: 0.4s; + transition-duration: 0.4s; + -webkit-transition-property: font-weight; + transition-property: font-weight; } + .accordion.accordion-minimal .card .card-header a[aria-expanded="true"] { + font-weight: 600; } + .accordion.accordion-minimal .card .card-header a[aria-expanded="false"] { + font-weight: 300; } + .accordion.accordion-minimal .card .card-body { + padding: 30px 0; } + +/* inverse buttons */ +.accordion-inverse-primary { + background: rgba(33, 150, 243, 0.16); + color: #2196f3; + border: none; } + .accordion-inverse-primary .card-header { + color: #2196f3; + border: none; } + .accordion-inverse-primary .card-header a, + .accordion-inverse-primary .card-header h1, + .accordion-inverse-primary .card-header h2, + .accordion-inverse-primary .card-header h3, + .accordion-inverse-primary .card-header h4, + .accordion-inverse-primary .card-header h5, + .accordion-inverse-primary .card-header h6, + .accordion-inverse-primary .card-header p, + .accordion-inverse-primary .card-header span { + color: #2196f3 !important; } + .accordion-inverse-primary .card-header a { + border-color: #2196f3; } + .accordion-inverse-primary .card-header a:before { + color: #2196f3 !important; } + .accordion-inverse-primary .card-header a[aria-expanded="true"] { + border-bottom: 1px solid rgba(33, 150, 243, 0.16); } + .accordion-inverse-primary .card-header a[aria-expanded="false"] { + border-bottom: 1px solid transparent; } + +.accordion-inverse-secondary { + background: rgba(230, 238, 242, 0.16); + color: #e6eef2; + border: none; } + .accordion-inverse-secondary .card-header { + color: #e6eef2; + border: none; } + .accordion-inverse-secondary .card-header a, + .accordion-inverse-secondary .card-header h1, + .accordion-inverse-secondary .card-header h2, + .accordion-inverse-secondary .card-header h3, + .accordion-inverse-secondary .card-header h4, + .accordion-inverse-secondary .card-header h5, + .accordion-inverse-secondary .card-header h6, + .accordion-inverse-secondary .card-header p, + .accordion-inverse-secondary .card-header span { + color: #e6eef2 !important; } + .accordion-inverse-secondary .card-header a { + border-color: #e6eef2; } + .accordion-inverse-secondary .card-header a:before { + color: #e6eef2 !important; } + .accordion-inverse-secondary .card-header a[aria-expanded="true"] { + border-bottom: 1px solid rgba(230, 238, 242, 0.16); } + .accordion-inverse-secondary .card-header a[aria-expanded="false"] { + border-bottom: 1px solid transparent; } + +.accordion-inverse-success { + background: rgba(25, 216, 149, 0.16); + color: #19d895; + border: none; } + .accordion-inverse-success .card-header { + color: #19d895; + border: none; } + .accordion-inverse-success .card-header a, + .accordion-inverse-success .card-header h1, + .accordion-inverse-success .card-header h2, + .accordion-inverse-success .card-header h3, + .accordion-inverse-success .card-header h4, + .accordion-inverse-success .card-header h5, + .accordion-inverse-success .card-header h6, + .accordion-inverse-success .card-header p, + .accordion-inverse-success .card-header span { + color: #19d895 !important; } + .accordion-inverse-success .card-header a { + border-color: #19d895; } + .accordion-inverse-success .card-header a:before { + color: #19d895 !important; } + .accordion-inverse-success .card-header a[aria-expanded="true"] { + border-bottom: 1px solid rgba(25, 216, 149, 0.16); } + .accordion-inverse-success .card-header a[aria-expanded="false"] { + border-bottom: 1px solid transparent; } + +.accordion-inverse-info { + background: rgba(136, 98, 224, 0.16); + color: #8862e0; + border: none; } + .accordion-inverse-info .card-header { + color: #8862e0; + border: none; } + .accordion-inverse-info .card-header a, + .accordion-inverse-info .card-header h1, + .accordion-inverse-info .card-header h2, + .accordion-inverse-info .card-header h3, + .accordion-inverse-info .card-header h4, + .accordion-inverse-info .card-header h5, + .accordion-inverse-info .card-header h6, + .accordion-inverse-info .card-header p, + .accordion-inverse-info .card-header span { + color: #8862e0 !important; } + .accordion-inverse-info .card-header a { + border-color: #8862e0; } + .accordion-inverse-info .card-header a:before { + color: #8862e0 !important; } + .accordion-inverse-info .card-header a[aria-expanded="true"] { + border-bottom: 1px solid rgba(136, 98, 224, 0.16); } + .accordion-inverse-info .card-header a[aria-expanded="false"] { + border-bottom: 1px solid transparent; } + +.accordion-inverse-warning { + background: rgba(255, 175, 0, 0.16); + color: #ffaf00; + border: none; } + .accordion-inverse-warning .card-header { + color: #ffaf00; + border: none; } + .accordion-inverse-warning .card-header a, + .accordion-inverse-warning .card-header h1, + .accordion-inverse-warning .card-header h2, + .accordion-inverse-warning .card-header h3, + .accordion-inverse-warning .card-header h4, + .accordion-inverse-warning .card-header h5, + .accordion-inverse-warning .card-header h6, + .accordion-inverse-warning .card-header p, + .accordion-inverse-warning .card-header span { + color: #ffaf00 !important; } + .accordion-inverse-warning .card-header a { + border-color: #ffaf00; } + .accordion-inverse-warning .card-header a:before { + color: #ffaf00 !important; } + .accordion-inverse-warning .card-header a[aria-expanded="true"] { + border-bottom: 1px solid rgba(255, 175, 0, 0.16); } + .accordion-inverse-warning .card-header a[aria-expanded="false"] { + border-bottom: 1px solid transparent; } + +.accordion-inverse-danger { + background: rgba(255, 98, 88, 0.16); + color: #ff6258; + border: none; } + .accordion-inverse-danger .card-header { + color: #ff6258; + border: none; } + .accordion-inverse-danger .card-header a, + .accordion-inverse-danger .card-header h1, + .accordion-inverse-danger .card-header h2, + .accordion-inverse-danger .card-header h3, + .accordion-inverse-danger .card-header h4, + .accordion-inverse-danger .card-header h5, + .accordion-inverse-danger .card-header h6, + .accordion-inverse-danger .card-header p, + .accordion-inverse-danger .card-header span { + color: #ff6258 !important; } + .accordion-inverse-danger .card-header a { + border-color: #ff6258; } + .accordion-inverse-danger .card-header a:before { + color: #ff6258 !important; } + .accordion-inverse-danger .card-header a[aria-expanded="true"] { + border-bottom: 1px solid rgba(255, 98, 88, 0.16); } + .accordion-inverse-danger .card-header a[aria-expanded="false"] { + border-bottom: 1px solid transparent; } + +.accordion-inverse-light { + background: rgba(251, 251, 251, 0.16); + color: #fbfbfb; + border: none; } + .accordion-inverse-light .card-header { + color: #fbfbfb; + border: none; } + .accordion-inverse-light .card-header a, + .accordion-inverse-light .card-header h1, + .accordion-inverse-light .card-header h2, + .accordion-inverse-light .card-header h3, + .accordion-inverse-light .card-header h4, + .accordion-inverse-light .card-header h5, + .accordion-inverse-light .card-header h6, + .accordion-inverse-light .card-header p, + .accordion-inverse-light .card-header span { + color: #fbfbfb !important; } + .accordion-inverse-light .card-header a { + border-color: #fbfbfb; } + .accordion-inverse-light .card-header a:before { + color: #fbfbfb !important; } + .accordion-inverse-light .card-header a[aria-expanded="true"] { + border-bottom: 1px solid rgba(251, 251, 251, 0.16); } + .accordion-inverse-light .card-header a[aria-expanded="false"] { + border-bottom: 1px solid transparent; } + +.accordion-inverse-dark { + background: rgba(37, 44, 70, 0.16); + color: #252C46; + border: none; } + .accordion-inverse-dark .card-header { + color: #252C46; + border: none; } + .accordion-inverse-dark .card-header a, + .accordion-inverse-dark .card-header h1, + .accordion-inverse-dark .card-header h2, + .accordion-inverse-dark .card-header h3, + .accordion-inverse-dark .card-header h4, + .accordion-inverse-dark .card-header h5, + .accordion-inverse-dark .card-header h6, + .accordion-inverse-dark .card-header p, + .accordion-inverse-dark .card-header span { + color: #252C46 !important; } + .accordion-inverse-dark .card-header a { + border-color: #252C46; } + .accordion-inverse-dark .card-header a:before { + color: #252C46 !important; } + .accordion-inverse-dark .card-header a[aria-expanded="true"] { + border-bottom: 1px solid rgba(37, 44, 70, 0.16); } + .accordion-inverse-dark .card-header a[aria-expanded="false"] { + border-bottom: 1px solid transparent; } + +.accordion-outline-primary .card { + border-color: #2196f3; } + .accordion-outline-primary .card .card-header { + border: none; } + .accordion-outline-primary .card .card-header a { + border-color: #2196f3; } + .accordion-outline-primary .card .card-header a:before { + color: #2196f3; } + +.accordion-outline-secondary .card { + border-color: #e6eef2; } + .accordion-outline-secondary .card .card-header { + border: none; } + .accordion-outline-secondary .card .card-header a { + border-color: #e6eef2; } + .accordion-outline-secondary .card .card-header a:before { + color: #e6eef2; } + +.accordion-outline-success .card { + border-color: #19d895; } + .accordion-outline-success .card .card-header { + border: none; } + .accordion-outline-success .card .card-header a { + border-color: #19d895; } + .accordion-outline-success .card .card-header a:before { + color: #19d895; } + +.accordion-outline-info .card { + border-color: #8862e0; } + .accordion-outline-info .card .card-header { + border: none; } + .accordion-outline-info .card .card-header a { + border-color: #8862e0; } + .accordion-outline-info .card .card-header a:before { + color: #8862e0; } + +.accordion-outline-warning .card { + border-color: #ffaf00; } + .accordion-outline-warning .card .card-header { + border: none; } + .accordion-outline-warning .card .card-header a { + border-color: #ffaf00; } + .accordion-outline-warning .card .card-header a:before { + color: #ffaf00; } + +.accordion-outline-danger .card { + border-color: #ff6258; } + .accordion-outline-danger .card .card-header { + border: none; } + .accordion-outline-danger .card .card-header a { + border-color: #ff6258; } + .accordion-outline-danger .card .card-header a:before { + color: #ff6258; } + +.accordion-outline-light .card { + border-color: #fbfbfb; } + .accordion-outline-light .card .card-header { + border: none; } + .accordion-outline-light .card .card-header a { + border-color: #fbfbfb; } + .accordion-outline-light .card .card-header a:before { + color: #fbfbfb; } + +.accordion-outline-dark .card { + border-color: #252C46; } + .accordion-outline-dark .card .card-header { + border: none; } + .accordion-outline-dark .card .card-header a { + border-color: #252C46; } + .accordion-outline-dark .card .card-header a:before { + color: #252C46; } + +/* Badges */ +.badge { + border-radius: 0.25rem; + font-size: 11px; + font-weight: initial; + line-height: 1; + padding: 0.2rem 0.3rem; + font-family: "Poppins", sans-serif; + font-weight: 600; } + .badge:empty { + display: inline-block; + min-width: 10px; + min-height: 10px; + padding: 0; + margin-right: 10px; + border-radius: 100%; } + .rtl .badge:empty { + margin-left: 10px; + margin-right: 0; } + .badge.badge-pill { + border-radius: 10rem; } + .badge.badge-fw { + min-width: 70px; } + .badge.badge-lg { + padding: 0.4rem 0.9rem; } + +/*Badge variations*/ +.badge-primary { + border: 1px solid #2196f3; + color: #ffffff; } + +.badge-secondary { + border: 1px solid #e6eef2; + color: #ffffff; } + +.badge-success, .preview-list .preview-item .preview-thumbnail .badge.badge-online { + border: 1px solid #19d895; + color: #ffffff; } + +.badge-info, .preview-list .preview-item .preview-thumbnail .badge.badge-offline { + border: 1px solid #8862e0; + color: #ffffff; } + +.badge-warning, .preview-list .preview-item .preview-thumbnail .badge.badge-busy { + border: 1px solid #ffaf00; + color: #ffffff; } + +.badge-danger { + border: 1px solid #ff6258; + color: #ffffff; } + +.badge-light { + border: 1px solid #fbfbfb; + color: #ffffff; } + +.badge-dark { + border: 1px solid #252C46; + color: #ffffff; } + +/*Badge inverse variations*/ +.badge-inverse-primary { + background: rgba(33, 150, 243, 0.3); + color: #2196f3; } + +.badge-inverse-secondary { + background: rgba(230, 238, 242, 0.3); + color: #e6eef2; } + +.badge-inverse-success { + background: rgba(25, 216, 149, 0.3); + color: #19d895; } + +.badge-inverse-info { + background: rgba(136, 98, 224, 0.3); + color: #8862e0; } + +.badge-inverse-warning { + background: rgba(255, 175, 0, 0.3); + color: #ffaf00; } + +.badge-inverse-danger { + background: rgba(255, 98, 88, 0.3); + color: #ff6258; } + +.badge-inverse-light { + background: rgba(251, 251, 251, 0.3); + color: #fbfbfb; } + +.badge-inverse-dark { + background: rgba(37, 44, 70, 0.3); + color: #252C46; } + +/*Badge outlined variations*/ +.badge-outline-primary { + color: #2196f3; + border: 1px solid #2196f3; } + +.badge-outline-secondary { + color: #e6eef2; + border: 1px solid #e6eef2; } + +.badge-outline-success { + color: #19d895; + border: 1px solid #19d895; } + +.badge-outline-info { + color: #8862e0; + border: 1px solid #8862e0; } + +.badge-outline-warning { + color: #ffaf00; + border: 1px solid #ffaf00; } + +.badge-outline-danger { + color: #ff6258; + border: 1px solid #ff6258; } + +.badge-outline-light { + color: #fbfbfb; + border: 1px solid #fbfbfb; } + +.badge-outline-dark { + color: #252C46; + border: 1px solid #252C46; } + +/* Bootstrap Alerts */ +.alert { + font-size: 0.875rem; } + .alert i { + font-size: 1.25rem; + margin-right: 1.25rem; + vertical-align: middle; + line-height: 0.5; } + +.alert-primary { + color: #1972b9; + background-color: rgba(33, 150, 243, 0.2); + border-color: #1e8ae0; } + .alert-primary hr { + border-top-color: #1b7cca; } + .alert-primary .alert-link { + color: #13568c; } + +.alert-secondary { + color: #afb5b8; + background-color: rgba(230, 238, 242, 0.2); + border-color: #d4dbdf; } + .alert-secondary hr { + border-top-color: #c5cfd4; } + .alert-secondary .alert-link { + color: #949ca0; } + +.alert-success { + color: #13a471; + background-color: rgba(25, 216, 149, 0.2); + border-color: #17c789; } + .alert-success hr { + border-top-color: #14b079; } + .alert-success .alert-link { + color: #0e7652; } + +.alert-info { + color: #674aaa; + background-color: rgba(136, 98, 224, 0.2); + border-color: #7d5ace; } + .alert-info hr { + border-top-color: #6e46c8; } + .alert-info .alert-link { + color: #513b86; } + +.alert-warning { + color: #c28500; + background-color: rgba(255, 175, 0, 0.2); + border-color: #eba100; } + .alert-warning hr { + border-top-color: #d29000; } + .alert-warning .alert-link { + color: #8f6200; } + +.alert-danger { + color: #c24a43; + background-color: rgba(255, 98, 88, 0.2); + border-color: #eb5a51; } + .alert-danger hr { + border-top-color: #e8443a; } + .alert-danger .alert-link { + color: #9f3933; } + +.alert-light { + color: #bfbfbf; + background-color: rgba(251, 251, 251, 0.2); + border-color: #e7e7e7; } + .alert-light hr { + border-top-color: #dadada; } + .alert-light .alert-link { + color: #a6a6a6; } + +.alert-dark { + color: #1c2135; + background-color: rgba(37, 44, 70, 0.2); + border-color: #222840; } + .alert-dark hr { + border-top-color: #191e2f; } + .alert-dark .alert-link { + color: #0a0c14; } + +.alert-fill-primary { + color: #ffffff; + background-color: #2196f3; + border-color: #2196f3; } + .alert-fill-primary hr { + border-top-color: #0d8aee; } + .alert-fill-primary .alert-link { + color: #e6e6e6; } + +.alert-fill-secondary { + color: #ffffff; + background-color: #e6eef2; + border-color: #e6eef2; } + .alert-fill-secondary hr { + border-top-color: #d5e3e9; } + .alert-fill-secondary .alert-link { + color: #e6e6e6; } + +.alert-fill-success { + color: #ffffff; + background-color: #19d895; + border-color: #19d895; } + .alert-fill-success hr { + border-top-color: #16c185; } + .alert-fill-success .alert-link { + color: #e6e6e6; } + +.alert-fill-info { + color: #ffffff; + background-color: #8862e0; + border-color: #8862e0; } + .alert-fill-info hr { + border-top-color: #784ddc; } + .alert-fill-info .alert-link { + color: #e6e6e6; } + +.alert-fill-warning { + color: #ffffff; + background-color: #ffaf00; + border-color: #ffaf00; } + .alert-fill-warning hr { + border-top-color: #e69e00; } + .alert-fill-warning .alert-link { + color: #e6e6e6; } + +.alert-fill-danger { + color: #ffffff; + background-color: #ff6258; + border-color: #ff6258; } + .alert-fill-danger hr { + border-top-color: #ff4a3f; } + .alert-fill-danger .alert-link { + color: #e6e6e6; } + +.alert-fill-light { + color: #ffffff; + background-color: #fbfbfb; + border-color: #fbfbfb; } + .alert-fill-light hr { + border-top-color: #eeeeee; } + .alert-fill-light .alert-link { + color: #e6e6e6; } + +.alert-fill-dark { + color: #ffffff; + background-color: #252C46; + border-color: #252C46; } + .alert-fill-dark hr { + border-top-color: #1c2235; } + .alert-fill-dark .alert-link { + color: #e6e6e6; } + +/* Bootstrap Progress */ +.progress { + border-radius: 3px; + height: 8px; } + .progress .progress-bar { + border-radius: 3px; } + .progress.grouped .progress-bar { + border-radius: 0px; } + .progress.grouped .progress-bar:last-child { + border-radius: 0px 3px 3px 0px; } + .progress.progress-sm { + height: 0.375rem; } + .progress.progress-md { + height: 8px; } + .progress.progress-lg { + height: 15px; } + .progress.progress-xl { + height: 18px; } + +/* Buttons */ +.btn, .ajax-upload-dragdrop .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel, .wizard > .actions a { + font-size: 0.875rem; + line-height: 1; + font-family: "Poppins", sans-serif; } + .btn i, .ajax-upload-dragdrop .ajax-file-upload i, .swal2-modal .swal2-buttonswrapper .swal2-styled i, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm i, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel i, .wizard > .actions a i { + margin-right: 0.3125rem; + font-size: inherit; } + .btn .btn-label:before, .ajax-upload-dragdrop .ajax-file-upload .btn-label:before, .swal2-modal .swal2-buttonswrapper .swal2-styled .btn-label:before, .wizard > .actions a .btn-label:before { + font-size: 1rem; + line-height: 5px; + vertical-align: middle; } + .btn .btn-label.btn-label-left, .ajax-upload-dragdrop .ajax-file-upload .btn-label.btn-label-left, .swal2-modal .swal2-buttonswrapper .swal2-styled .btn-label.btn-label-left, .wizard > .actions a .btn-label.btn-label-left { + margin-right: 5px; } + .btn .btn-label.btn-label-right, .ajax-upload-dragdrop .ajax-file-upload .btn-label.btn-label-right, .swal2-modal .swal2-buttonswrapper .swal2-styled .btn-label.btn-label-right, .wizard > .actions a .btn-label.btn-label-right { + margin-left: 5px; } + .btn.btn-rounded, .ajax-upload-dragdrop .btn-rounded.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-rounded.swal2-styled, .wizard > .actions a.btn-rounded { + border-radius: 50px; } + .btn.btn-icons, .ajax-upload-dragdrop .btn-icons.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-icons.swal2-styled, .wizard > .actions a.btn-icons { + width: 40px; + height: 40px; + padding: 10px; + text-align: center; + vertical-align: middle; } + .btn.btn-icons i, .ajax-upload-dragdrop .btn-icons.ajax-file-upload i, .swal2-modal .swal2-buttonswrapper .btn-icons.swal2-styled i, .wizard > .actions a.btn-icons i { + margin: auto; + line-height: initial; } + .btn.btn-fw, .ajax-upload-dragdrop .btn-fw.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-fw.swal2-styled, .wizard > .actions a.btn-fw { + min-width: 120px; } + .btn.icon-btn i, .ajax-upload-dragdrop .icon-btn.ajax-file-upload i, .swal2-modal .swal2-buttonswrapper .icon-btn.swal2-styled i, .wizard > .actions a.icon-btn i { + margin-right: 0; } + .btn.social-btn, .ajax-upload-dragdrop .social-btn.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .social-btn.swal2-styled, .wizard > .actions a.social-btn { + padding: 13px; } + .btn.social-btn i, .ajax-upload-dragdrop .social-btn.ajax-file-upload i, .swal2-modal .swal2-buttonswrapper .social-btn.swal2-styled i, .wizard > .actions a.social-btn i { + margin-right: 0; + font-size: 1rem; } + .btn.btn-sm, .btn-group-sm > .btn, .ajax-upload-dragdrop .btn-group-sm > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group-sm > .swal2-styled, .wizard > .actions .btn-group-sm > a, .ajax-upload-dragdrop .btn-sm.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-sm.swal2-styled, .wizard > .actions a.btn-sm { + font-size: 0.875rem; } + .btn.btn-lg, .btn-group-lg > .btn, .ajax-upload-dragdrop .btn-group-lg > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group-lg > .swal2-styled, .wizard > .actions .btn-group-lg > a, .ajax-upload-dragdrop .btn-lg.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-lg.swal2-styled, .wizard > .actions a.btn-lg { + font-size: 0.875rem; } + .btn.btn-xs, .ajax-upload-dragdrop .btn-xs.ajax-file-upload, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-submit, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-cancel, .swal2-modal .swal2-buttonswrapper .btn-xs.swal2-styled, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-submit, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-submit, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-cancel, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-cancel, .wizard > .actions a.btn-xs { + padding: 0.5rem 0.75rem; + font-size: 0.625rem; } + .btn.btn-transparent, .ajax-upload-dragdrop .btn-transparent.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-transparent.swal2-styled, .wizard > .actions a.btn-transparent { + background: transparent; } + .btn.btn-danger, .ajax-upload-dragdrop .btn-danger.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-danger.swal2-styled, .wizard > .actions a.btn-danger, .btn.btn-info, .ajax-upload-dragdrop .btn-info.ajax-file-upload, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-submit, .swal2-modal .swal2-buttonswrapper .btn-info.swal2-styled, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-submit, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-submit, .wizard > .actions a.btn-info, .btn.btn-success, .ajax-upload-dragdrop .btn-success.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-success.swal2-styled, .wizard > .actions a.btn-success, .btn.btn-teal, .ajax-upload-dragdrop .btn-teal.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-teal.swal2-styled, .wizard > .actions a.btn-teal, .btn.btn-warning, .ajax-upload-dragdrop .btn-warning.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-warning.swal2-styled, .wizard > .actions a.btn-warning { + color: #ffffff; } + .btn.btn-outline-light, .ajax-upload-dragdrop .btn-outline-light.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-outline-light.swal2-styled, .wizard > .actions a.btn-outline-light { + border-color: #d5d5d5; + color: #d5d5d5; } + .btn.btn-outline-secondary, .ajax-upload-dragdrop .btn-outline-secondary.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-outline-secondary.swal2-styled, .wizard > .actions a.btn-outline-secondary { + color: rgba(0, 0, 0, 0.5); } + .btn.btn-inverse-secondary, .ajax-upload-dragdrop .btn-inverse-secondary.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-inverse-secondary.swal2-styled, .wizard > .actions a.btn-inverse-secondary { + background-color: rgba(230, 238, 242, 0.5); + color: rgba(0, 0, 0, 0.5); } + .btn.btn-inverse-secondary:hover, .ajax-upload-dragdrop .btn-inverse-secondary.ajax-file-upload:hover, .swal2-modal .swal2-buttonswrapper .btn-inverse-secondary.swal2-styled:hover, .wizard > .actions a.btn-inverse-secondary:hover { + color: rgba(0, 0, 0, 0.5); } + .btn.btn-inverse-light, .ajax-upload-dragdrop .btn-inverse-light.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-inverse-light.swal2-styled, .wizard > .actions a.btn-inverse-light { + background-color: #ffffff; + color: rgba(0, 0, 0, 0.5); + border-color: #d9d9d9; } + .btn.btn-inverse-light:hover, .ajax-upload-dragdrop .btn-inverse-light.ajax-file-upload:hover, .swal2-modal .swal2-buttonswrapper .btn-inverse-light.swal2-styled:hover, .wizard > .actions a.btn-inverse-light:hover { + color: rgba(0, 0, 0, 0.5); + border-color: #d9d9d9; } + +.btn-group { + border: 1px solid #f2f2f2; + border-radius: 0.1875rem; } + .btn-group .btn, .btn-group .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .btn-group .ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled, .btn-group .wizard > .actions a, .wizard > .actions .btn-group a { + border-top: none; + border-bottom: none; + border-left: none; } + .btn-group .btn:last-child, .btn-group .ajax-upload-dragdrop .ajax-file-upload:last-child, .ajax-upload-dragdrop .btn-group .ajax-file-upload:last-child, .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled:last-child, .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled:last-child, .btn-group .wizard > .actions a:last-child, .wizard > .actions .btn-group a:last-child { + border-right: none; } + .btn-group .btn.btn-primary, .btn-group .ajax-upload-dragdrop .btn-primary.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-primary.ajax-file-upload, .btn-group .ajax-upload-dragdrop .wizard > .actions a.ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions .btn-group a.ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn-primary.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-primary.swal2-styled, .btn-group .swal2-modal .swal2-buttonswrapper .wizard > .actions a.swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions .btn-group a.swal2-styled, .btn-group .wizard > .actions .swal2-modal .swal2-buttonswrapper a.swal2-styled.swal2-confirm, .wizard > .actions .swal2-modal .swal2-buttonswrapper .btn-group a.swal2-styled.swal2-confirm, .btn-group .wizard > .actions .swal2-modal .swal2-buttonswrapper a.swal2-styled.swal2-cancel, .wizard > .actions .swal2-modal .swal2-buttonswrapper .btn-group a.swal2-styled.swal2-cancel, .btn-group .wizard > .actions a, .wizard > .actions .btn-group a { + border-color: #128ff2; } + .btn-group .btn.btn-secondary, .btn-group .ajax-upload-dragdrop .btn-secondary.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-secondary.ajax-file-upload, .btn-group .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-cancel, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group .ajax-file-upload.editable-cancel, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .btn-group .ajax-file-upload.editable-cancel, .btn-group .swal2-modal .swal2-buttonswrapper .btn-secondary.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-secondary.swal2-styled, .btn-group .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-cancel, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group .swal2-styled.editable-cancel, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled.editable-cancel, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group .btn.editable-cancel, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions .btn-group a.editable-cancel, .btn-group .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-cancel, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group a.editable-cancel, .btn-group .wizard > .actions a.btn-secondary, .wizard > .actions .btn-group a.btn-secondary { + border-color: #dce7ed; } + .btn-group .btn.btn-info, .btn-group .ajax-upload-dragdrop .btn-info.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-info.ajax-file-upload, .btn-group .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-submit, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group .ajax-file-upload.editable-submit, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .btn-group .ajax-file-upload.editable-submit, .btn-group .swal2-modal .swal2-buttonswrapper .btn-info.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-info.swal2-styled, .btn-group .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-submit, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group .swal2-styled.editable-submit, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled.editable-submit, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group .btn.editable-submit, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions .btn-group a.editable-submit, .btn-group .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-submit, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group a.editable-submit, .btn-group .wizard > .actions a.btn-info, .wizard > .actions .btn-group a.btn-info { + border-color: #7e55dd; } + .btn-group .btn.btn-warning, .btn-group .ajax-upload-dragdrop .btn-warning.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-warning.ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn-warning.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-warning.swal2-styled, .btn-group .wizard > .actions a.btn-warning, .wizard > .actions .btn-group a.btn-warning { + border-color: #f0a500; } + .btn-group .btn.btn-success, .btn-group .ajax-upload-dragdrop .btn-success.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-success.ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn-success.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-success.swal2-styled, .btn-group .wizard > .actions a.btn-success, .wizard > .actions .btn-group a.btn-success { + border-color: #17ca8c; } + .btn-group .btn.btn-danger, .btn-group .ajax-upload-dragdrop .btn-danger.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-danger.ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn-danger.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-danger.swal2-styled, .btn-group .wizard > .actions a.btn-danger, .wizard > .actions .btn-group a.btn-danger { + border-color: #ff5449; } + .btn-group .btn.btn-dark, .btn-group .ajax-upload-dragdrop .btn-dark.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-dark.ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn-dark.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-dark.swal2-styled, .btn-group .wizard > .actions a.btn-dark, .wizard > .actions .btn-group a.btn-dark { + border-color: #20263c; } + .btn-group .btn.btn-light, .btn-group .ajax-upload-dragdrop .btn-light.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-light.ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn-light.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-light.swal2-styled, .btn-group .wizard > .actions a.btn-light, .wizard > .actions .btn-group a.btn-light { + border-color: #f3f3f3; } + +/*social buttons*/ +.btn-twitter { + background: #4DBFF5; + color: #ffffff; } + .btn-twitter:hover { + background: #1daef2; } + .btn-twitter.btn-link { + background: none; + color: #4DBFF5; } + .btn-twitter.btn-link:hover { + color: #1daef2; } + +.btn-facebook { + background: #648ACA; + color: #ffffff; } + .btn-facebook:hover { + background: #406ebb; } + .btn-facebook.btn-link { + background: none; + color: #648ACA; } + .btn-facebook.btn-link:hover { + color: #406ebb; } + +.btn-google { + background: #E55F4B; + color: #ffffff; } + .btn-google:hover { + background: #dd3820; } + .btn-google.btn-link { + background: none; + color: #E55F4B; } + .btn-google.btn-link:hover { + color: #dd3820; } + +.btn-linkedin { + background: #0177b4; + color: #ffffff; } + .btn-linkedin:hover { + background: #015581; } + .btn-linkedin.btn-link { + background: none; + color: #0177b4; } + .btn-linkedin.btn-link:hover { + color: #015581; } + +.btn-pinterest { + background: #cc2127; + color: #ffffff; } + .btn-pinterest:hover { + background: #a01a1f; } + .btn-pinterest.btn-link { + background: none; + color: #cc2127; } + .btn-pinterest.btn-link:hover { + color: #a01a1f; } + +.btn-youtube { + background: #e52d27; + color: #ffffff; } + .btn-youtube:hover { + background: #c21d17; } + .btn-youtube.btn-link { + background: none; + color: #e52d27; } + .btn-youtube.btn-link:hover { + color: #c21d17; } + +.btn-github { + background: #333333; + color: #ffffff; } + .btn-github:hover { + background: #1a1a1a; } + .btn-github.btn-link { + background: none; + color: #333333; } + .btn-github.btn-link:hover { + color: #1a1a1a; } + +.btn-behance { + background: #1769ff; + color: #ffffff; } + .btn-behance:hover { + background: #0050e3; } + .btn-behance.btn-link { + background: none; + color: #1769ff; } + .btn-behance.btn-link:hover { + color: #0050e3; } + +.btn-dribbble { + background: #ea4c89; + color: #ffffff; } + .btn-dribbble:hover { + background: #e51e6b; } + .btn-dribbble.btn-link { + background: none; + color: #ea4c89; } + .btn-dribbble.btn-link:hover { + color: #e51e6b; } + +.btn-reddit { + background: #ff4500; + color: #ffffff; } + .btn-reddit:hover { + background: #cc3700; } + .btn-reddit.btn-link { + background: none; + color: #ff4500; } + .btn-reddit.btn-link:hover { + color: #cc3700; } + +/*social buttons*/ +.btn-social-outline-twitter { + background: transparent; + border-color: #4DBFF5; + color: #4DBFF5; } + .btn-social-outline-twitter:hover { + background: rgba(77, 191, 245, 0.2); } + +.btn-social-outline-facebook { + background: transparent; + border-color: #648ACA; + color: #648ACA; } + .btn-social-outline-facebook:hover { + background: rgba(100, 138, 202, 0.2); } + +.btn-social-outline-google { + background: transparent; + border-color: #E55F4B; + color: #E55F4B; } + .btn-social-outline-google:hover { + background: rgba(229, 95, 75, 0.2); } + +.btn-social-outline-linkedin { + background: transparent; + border-color: #0177b4; + color: #0177b4; } + .btn-social-outline-linkedin:hover { + background: rgba(1, 119, 180, 0.2); } + +.btn-social-outline-pinterest { + background: transparent; + border-color: #cc2127; + color: #cc2127; } + .btn-social-outline-pinterest:hover { + background: rgba(204, 33, 39, 0.2); } + +.btn-social-outline-youtube { + background: transparent; + border-color: #e52d27; + color: #e52d27; } + .btn-social-outline-youtube:hover { + background: rgba(229, 45, 39, 0.2); } + +.btn-social-outline-github { + background: transparent; + border-color: #333333; + color: #333333; } + .btn-social-outline-github:hover { + background: rgba(51, 51, 51, 0.2); } + +.btn-social-outline-behance { + background: transparent; + border-color: #1769ff; + color: #1769ff; } + .btn-social-outline-behance:hover { + background: rgba(23, 105, 255, 0.2); } + +.btn-social-outline-dribbble { + background: transparent; + border-color: #ea4c89; + color: #ea4c89; } + .btn-social-outline-dribbble:hover { + background: rgba(234, 76, 137, 0.2); } + +.btn-social-outline-reddit { + background: transparent; + border-color: #ff4500; + color: #ff4500; } + .btn-social-outline-reddit:hover { + background: rgba(255, 69, 0, 0.2); } + +/* inverse buttons */ +.btn-inverse-primary { + color: #2196f3; + background-color: rgba(33, 150, 243, 0.2); + background-image: none; + border-color: rgba(33, 150, 243, 0); } + .btn-inverse-primary:hover { + color: #ffffff; + background-color: #2196f3; + border-color: #2196f3; } + .btn-inverse-primary.focus, .btn-inverse-primary:focus { + -webkit-box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.5); + box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.5); } + .btn-inverse-primary.disabled, .btn-inverse-primary:disabled { + color: #2196f3; + background-color: transparent; } + .btn-inverse-primary.active, .btn-inverse-primary:active, + .show > .btn-inverse-primary.dropdown-toggle { + color: #ffffff; + background-color: #2196f3; + border-color: #2196f3; } + +.btn-inverse-secondary { + color: #e6eef2; + background-color: rgba(230, 238, 242, 0.2); + background-image: none; + border-color: rgba(230, 238, 242, 0); } + .btn-inverse-secondary:hover { + color: #ffffff; + background-color: #e6eef2; + border-color: #e6eef2; } + .btn-inverse-secondary.focus, .btn-inverse-secondary:focus { + -webkit-box-shadow: 0 0 0 3px rgba(230, 238, 242, 0.5); + box-shadow: 0 0 0 3px rgba(230, 238, 242, 0.5); } + .btn-inverse-secondary.disabled, .btn-inverse-secondary:disabled { + color: #e6eef2; + background-color: transparent; } + .btn-inverse-secondary.active, .btn-inverse-secondary:active, + .show > .btn-inverse-secondary.dropdown-toggle { + color: #ffffff; + background-color: #e6eef2; + border-color: #e6eef2; } + +.btn-inverse-success { + color: #19d895; + background-color: rgba(25, 216, 149, 0.2); + background-image: none; + border-color: rgba(25, 216, 149, 0); } + .btn-inverse-success:hover { + color: #ffffff; + background-color: #19d895; + border-color: #19d895; } + .btn-inverse-success.focus, .btn-inverse-success:focus { + -webkit-box-shadow: 0 0 0 3px rgba(25, 216, 149, 0.5); + box-shadow: 0 0 0 3px rgba(25, 216, 149, 0.5); } + .btn-inverse-success.disabled, .btn-inverse-success:disabled { + color: #19d895; + background-color: transparent; } + .btn-inverse-success.active, .btn-inverse-success:active, + .show > .btn-inverse-success.dropdown-toggle { + color: #ffffff; + background-color: #19d895; + border-color: #19d895; } + +.btn-inverse-info { + color: #8862e0; + background-color: rgba(136, 98, 224, 0.2); + background-image: none; + border-color: rgba(136, 98, 224, 0); } + .btn-inverse-info:hover { + color: #ffffff; + background-color: #8862e0; + border-color: #8862e0; } + .btn-inverse-info.focus, .btn-inverse-info:focus { + -webkit-box-shadow: 0 0 0 3px rgba(136, 98, 224, 0.5); + box-shadow: 0 0 0 3px rgba(136, 98, 224, 0.5); } + .btn-inverse-info.disabled, .btn-inverse-info:disabled { + color: #8862e0; + background-color: transparent; } + .btn-inverse-info.active, .btn-inverse-info:active, + .show > .btn-inverse-info.dropdown-toggle { + color: #ffffff; + background-color: #8862e0; + border-color: #8862e0; } + +.btn-inverse-warning { + color: #ffaf00; + background-color: rgba(255, 175, 0, 0.2); + background-image: none; + border-color: rgba(255, 175, 0, 0); } + .btn-inverse-warning:hover { + color: #ffffff; + background-color: #ffaf00; + border-color: #ffaf00; } + .btn-inverse-warning.focus, .btn-inverse-warning:focus { + -webkit-box-shadow: 0 0 0 3px rgba(255, 175, 0, 0.5); + box-shadow: 0 0 0 3px rgba(255, 175, 0, 0.5); } + .btn-inverse-warning.disabled, .btn-inverse-warning:disabled { + color: #ffaf00; + background-color: transparent; } + .btn-inverse-warning.active, .btn-inverse-warning:active, + .show > .btn-inverse-warning.dropdown-toggle { + color: #ffffff; + background-color: #ffaf00; + border-color: #ffaf00; } + +.btn-inverse-danger { + color: #ff6258; + background-color: rgba(255, 98, 88, 0.2); + background-image: none; + border-color: rgba(255, 98, 88, 0); } + .btn-inverse-danger:hover { + color: #ffffff; + background-color: #ff6258; + border-color: #ff6258; } + .btn-inverse-danger.focus, .btn-inverse-danger:focus { + -webkit-box-shadow: 0 0 0 3px rgba(255, 98, 88, 0.5); + box-shadow: 0 0 0 3px rgba(255, 98, 88, 0.5); } + .btn-inverse-danger.disabled, .btn-inverse-danger:disabled { + color: #ff6258; + background-color: transparent; } + .btn-inverse-danger.active, .btn-inverse-danger:active, + .show > .btn-inverse-danger.dropdown-toggle { + color: #ffffff; + background-color: #ff6258; + border-color: #ff6258; } + +.btn-inverse-light { + color: #fbfbfb; + background-color: rgba(251, 251, 251, 0.2); + background-image: none; + border-color: rgba(251, 251, 251, 0); } + .btn-inverse-light:hover { + color: #ffffff; + background-color: #fbfbfb; + border-color: #fbfbfb; } + .btn-inverse-light.focus, .btn-inverse-light:focus { + -webkit-box-shadow: 0 0 0 3px rgba(251, 251, 251, 0.5); + box-shadow: 0 0 0 3px rgba(251, 251, 251, 0.5); } + .btn-inverse-light.disabled, .btn-inverse-light:disabled { + color: #fbfbfb; + background-color: transparent; } + .btn-inverse-light.active, .btn-inverse-light:active, + .show > .btn-inverse-light.dropdown-toggle { + color: #ffffff; + background-color: #fbfbfb; + border-color: #fbfbfb; } + +.btn-inverse-dark { + color: #252C46; + background-color: rgba(37, 44, 70, 0.2); + background-image: none; + border-color: rgba(37, 44, 70, 0); } + .btn-inverse-dark:hover { + color: #ffffff; + background-color: #252C46; + border-color: #252C46; } + .btn-inverse-dark.focus, .btn-inverse-dark:focus { + -webkit-box-shadow: 0 0 0 3px rgba(37, 44, 70, 0.5); + box-shadow: 0 0 0 3px rgba(37, 44, 70, 0.5); } + .btn-inverse-dark.disabled, .btn-inverse-dark:disabled { + color: #252C46; + background-color: transparent; } + .btn-inverse-dark.active, .btn-inverse-dark:active, + .show > .btn-inverse-dark.dropdown-toggle { + color: #ffffff; + background-color: #252C46; + border-color: #252C46; } + +/* Inverse Outlined Buttons */ +.btn-inverse-outline-primary { + color: #2196f3; + background-image: none; + background: transparent; + border-color: rgba(33, 150, 243, 0.2); } + .btn-inverse-outline-primary:hover { + color: #2196f3; + background-color: rgba(33, 150, 243, 0.2); + border-color: rgba(33, 150, 243, 0.2); } + .btn-inverse-outline-primary.focus, .btn-inverse-outline-primary:focus { + -webkit-box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.5); + box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.5); } + .btn-inverse-outline-primary.disabled, .btn-inverse-outline-primary:disabled { + color: #2196f3; + background-color: transparent; } + .btn-inverse-outline-primary.active, .btn-inverse-outline-primary:active, + .show > .btn-inverse-outline-primary.dropdown-toggle { + color: #ffffff; + border-color: #2196f3; } + +.btn-inverse-outline-secondary { + color: #e6eef2; + background-image: none; + background: transparent; + border-color: rgba(230, 238, 242, 0.2); } + .btn-inverse-outline-secondary:hover { + color: #e6eef2; + background-color: rgba(230, 238, 242, 0.2); + border-color: rgba(230, 238, 242, 0.2); } + .btn-inverse-outline-secondary.focus, .btn-inverse-outline-secondary:focus { + -webkit-box-shadow: 0 0 0 3px rgba(230, 238, 242, 0.5); + box-shadow: 0 0 0 3px rgba(230, 238, 242, 0.5); } + .btn-inverse-outline-secondary.disabled, .btn-inverse-outline-secondary:disabled { + color: #e6eef2; + background-color: transparent; } + .btn-inverse-outline-secondary.active, .btn-inverse-outline-secondary:active, + .show > .btn-inverse-outline-secondary.dropdown-toggle { + color: #ffffff; + border-color: #e6eef2; } + +.btn-inverse-outline-success { + color: #19d895; + background-image: none; + background: transparent; + border-color: rgba(25, 216, 149, 0.2); } + .btn-inverse-outline-success:hover { + color: #19d895; + background-color: rgba(25, 216, 149, 0.2); + border-color: rgba(25, 216, 149, 0.2); } + .btn-inverse-outline-success.focus, .btn-inverse-outline-success:focus { + -webkit-box-shadow: 0 0 0 3px rgba(25, 216, 149, 0.5); + box-shadow: 0 0 0 3px rgba(25, 216, 149, 0.5); } + .btn-inverse-outline-success.disabled, .btn-inverse-outline-success:disabled { + color: #19d895; + background-color: transparent; } + .btn-inverse-outline-success.active, .btn-inverse-outline-success:active, + .show > .btn-inverse-outline-success.dropdown-toggle { + color: #ffffff; + border-color: #19d895; } + +.btn-inverse-outline-info { + color: #8862e0; + background-image: none; + background: transparent; + border-color: rgba(136, 98, 224, 0.2); } + .btn-inverse-outline-info:hover { + color: #8862e0; + background-color: rgba(136, 98, 224, 0.2); + border-color: rgba(136, 98, 224, 0.2); } + .btn-inverse-outline-info.focus, .btn-inverse-outline-info:focus { + -webkit-box-shadow: 0 0 0 3px rgba(136, 98, 224, 0.5); + box-shadow: 0 0 0 3px rgba(136, 98, 224, 0.5); } + .btn-inverse-outline-info.disabled, .btn-inverse-outline-info:disabled { + color: #8862e0; + background-color: transparent; } + .btn-inverse-outline-info.active, .btn-inverse-outline-info:active, + .show > .btn-inverse-outline-info.dropdown-toggle { + color: #ffffff; + border-color: #8862e0; } + +.btn-inverse-outline-warning { + color: #ffaf00; + background-image: none; + background: transparent; + border-color: rgba(255, 175, 0, 0.2); } + .btn-inverse-outline-warning:hover { + color: #ffaf00; + background-color: rgba(255, 175, 0, 0.2); + border-color: rgba(255, 175, 0, 0.2); } + .btn-inverse-outline-warning.focus, .btn-inverse-outline-warning:focus { + -webkit-box-shadow: 0 0 0 3px rgba(255, 175, 0, 0.5); + box-shadow: 0 0 0 3px rgba(255, 175, 0, 0.5); } + .btn-inverse-outline-warning.disabled, .btn-inverse-outline-warning:disabled { + color: #ffaf00; + background-color: transparent; } + .btn-inverse-outline-warning.active, .btn-inverse-outline-warning:active, + .show > .btn-inverse-outline-warning.dropdown-toggle { + color: #ffffff; + border-color: #ffaf00; } + +.btn-inverse-outline-danger { + color: #ff6258; + background-image: none; + background: transparent; + border-color: rgba(255, 98, 88, 0.2); } + .btn-inverse-outline-danger:hover { + color: #ff6258; + background-color: rgba(255, 98, 88, 0.2); + border-color: rgba(255, 98, 88, 0.2); } + .btn-inverse-outline-danger.focus, .btn-inverse-outline-danger:focus { + -webkit-box-shadow: 0 0 0 3px rgba(255, 98, 88, 0.5); + box-shadow: 0 0 0 3px rgba(255, 98, 88, 0.5); } + .btn-inverse-outline-danger.disabled, .btn-inverse-outline-danger:disabled { + color: #ff6258; + background-color: transparent; } + .btn-inverse-outline-danger.active, .btn-inverse-outline-danger:active, + .show > .btn-inverse-outline-danger.dropdown-toggle { + color: #ffffff; + border-color: #ff6258; } + +.btn-inverse-outline-light { + color: #fbfbfb; + background-image: none; + background: transparent; + border-color: rgba(251, 251, 251, 0.2); } + .btn-inverse-outline-light:hover { + color: #fbfbfb; + background-color: rgba(251, 251, 251, 0.2); + border-color: rgba(251, 251, 251, 0.2); } + .btn-inverse-outline-light.focus, .btn-inverse-outline-light:focus { + -webkit-box-shadow: 0 0 0 3px rgba(251, 251, 251, 0.5); + box-shadow: 0 0 0 3px rgba(251, 251, 251, 0.5); } + .btn-inverse-outline-light.disabled, .btn-inverse-outline-light:disabled { + color: #fbfbfb; + background-color: transparent; } + .btn-inverse-outline-light.active, .btn-inverse-outline-light:active, + .show > .btn-inverse-outline-light.dropdown-toggle { + color: #ffffff; + border-color: #fbfbfb; } + +.btn-inverse-outline-dark { + color: #252C46; + background-image: none; + background: transparent; + border-color: rgba(37, 44, 70, 0.2); } + .btn-inverse-outline-dark:hover { + color: #252C46; + background-color: rgba(37, 44, 70, 0.2); + border-color: rgba(37, 44, 70, 0.2); } + .btn-inverse-outline-dark.focus, .btn-inverse-outline-dark:focus { + -webkit-box-shadow: 0 0 0 3px rgba(37, 44, 70, 0.5); + box-shadow: 0 0 0 3px rgba(37, 44, 70, 0.5); } + .btn-inverse-outline-dark.disabled, .btn-inverse-outline-dark:disabled { + color: #252C46; + background-color: transparent; } + .btn-inverse-outline-dark.active, .btn-inverse-outline-dark:active, + .show > .btn-inverse-outline-dark.dropdown-toggle { + color: #ffffff; + border-color: #252C46; } + +/* Breadcrumbs */ +.breadcrumb .breadcrumb-item { + font-size: 0.875rem; } + +.breadcrumb.breadcrumb-custom { + padding: 0 0; + border-color: #dbe3e6; } + .breadcrumb.breadcrumb-custom .breadcrumb-item { + font-size: 0.875rem; + background: #dbe3e6; + padding: 0.56rem 10px; + color: #000; + display: inline-block; + vertical-align: top; } + .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child { + background: transparent; } + .breadcrumb.breadcrumb-custom .breadcrumb-item:before { + content: ""; } + .breadcrumb.breadcrumb-custom .breadcrumb-item a { + position: relative; + color: inherit; + border: 1px solid #dbe3e6; + display: inline-block; + vertical-align: top; } + .breadcrumb.breadcrumb-custom .breadcrumb-item a:after, .breadcrumb.breadcrumb-custom .breadcrumb-item a:before { + position: absolute; + top: -9px; + width: 0; + height: 0; + content: ""; + border-top: 21px solid transparent; + border-bottom: 21px solid transparent; } + .breadcrumb.breadcrumb-custom .breadcrumb-item a:before { + right: -22px; + z-index: 3; + border-left-color: #dbe3e6; + border-left-style: solid; + border-left-width: 12px; } + .breadcrumb.breadcrumb-custom .breadcrumb-item a:after { + border-top: 21px solid transparent; + border-bottom: 22px solid transparent; + border-left: 12px solid #ffffff; + top: -9px; + right: -23px; } + .breadcrumb.breadcrumb-custom .breadcrumb-item span { + display: inline-block; + vertical-align: top; } + +.breadcrumb.bg-danger, .settings-panel .color-tiles .breadcrumb.tiles.danger, .breadcrumb.bg-dark, .settings-panel .color-tiles .breadcrumb.tiles.dark, .breadcrumb.bg-info, .settings-panel .color-tiles .breadcrumb.tiles.info, .breadcrumb.bg-primary, .settings-panel .color-tiles .breadcrumb.tiles.primary, .breadcrumb.bg-success, .settings-panel .color-tiles .breadcrumb.tiles.success, .breadcrumb.bg-warning, .settings-panel .color-tiles .breadcrumb.tiles.warning { + border: none; } + .breadcrumb.bg-danger .breadcrumb-item, .settings-panel .color-tiles .breadcrumb.tiles.danger .breadcrumb-item, .breadcrumb.bg-dark .breadcrumb-item, .settings-panel .color-tiles .breadcrumb.tiles.dark .breadcrumb-item, .breadcrumb.bg-info .breadcrumb-item, .settings-panel .color-tiles .breadcrumb.tiles.info .breadcrumb-item, .breadcrumb.bg-primary .breadcrumb-item, .settings-panel .color-tiles .breadcrumb.tiles.primary .breadcrumb-item, .breadcrumb.bg-success .breadcrumb-item, .settings-panel .color-tiles .breadcrumb.tiles.success .breadcrumb-item, .breadcrumb.bg-warning .breadcrumb-item, .settings-panel .color-tiles .breadcrumb.tiles.warning .breadcrumb-item { + color: #ffffff; } + .breadcrumb.bg-danger .breadcrumb-item:before, .settings-panel .color-tiles .breadcrumb.tiles.danger .breadcrumb-item:before, .breadcrumb.bg-dark .breadcrumb-item:before, .settings-panel .color-tiles .breadcrumb.tiles.dark .breadcrumb-item:before, .breadcrumb.bg-info .breadcrumb-item:before, .settings-panel .color-tiles .breadcrumb.tiles.info .breadcrumb-item:before, .breadcrumb.bg-primary .breadcrumb-item:before, .settings-panel .color-tiles .breadcrumb.tiles.primary .breadcrumb-item:before, .breadcrumb.bg-success .breadcrumb-item:before, .settings-panel .color-tiles .breadcrumb.tiles.success .breadcrumb-item:before, .breadcrumb.bg-warning .breadcrumb-item:before, .settings-panel .color-tiles .breadcrumb.tiles.warning .breadcrumb-item:before { + color: inherit; } + .breadcrumb.bg-danger .breadcrumb-item a, .settings-panel .color-tiles .breadcrumb.tiles.danger .breadcrumb-item a, + .breadcrumb.bg-danger .breadcrumb-item span, .settings-panel .color-tiles .breadcrumb.tiles.danger .breadcrumb-item span, .breadcrumb.bg-dark .breadcrumb-item a, .settings-panel .color-tiles .breadcrumb.tiles.dark .breadcrumb-item a, + .breadcrumb.bg-dark .breadcrumb-item span, .settings-panel .color-tiles .breadcrumb.tiles.dark .breadcrumb-item span, .breadcrumb.bg-info .breadcrumb-item a, .settings-panel .color-tiles .breadcrumb.tiles.info .breadcrumb-item a, + .breadcrumb.bg-info .breadcrumb-item span, .settings-panel .color-tiles .breadcrumb.tiles.info .breadcrumb-item span, .breadcrumb.bg-primary .breadcrumb-item a, .settings-panel .color-tiles .breadcrumb.tiles.primary .breadcrumb-item a, + .breadcrumb.bg-primary .breadcrumb-item span, .settings-panel .color-tiles .breadcrumb.tiles.primary .breadcrumb-item span, .breadcrumb.bg-success .breadcrumb-item a, .settings-panel .color-tiles .breadcrumb.tiles.success .breadcrumb-item a, + .breadcrumb.bg-success .breadcrumb-item span, .settings-panel .color-tiles .breadcrumb.tiles.success .breadcrumb-item span, .breadcrumb.bg-warning .breadcrumb-item a, .settings-panel .color-tiles .breadcrumb.tiles.warning .breadcrumb-item a, + .breadcrumb.bg-warning .breadcrumb-item span, .settings-panel .color-tiles .breadcrumb.tiles.warning .breadcrumb-item span { + color: inherit; } + +/* inverse breadcrumb */ +.bg-inverse-primary .breadcrumb { + background: #9acffa; + border-color: #2196f3; } + .bg-inverse-primary .breadcrumb .breadcrumb-item { + color: #2196f3; } + .bg-inverse-primary .breadcrumb .breadcrumb-item:before { + color: inherit; } + .bg-inverse-primary .breadcrumb .breadcrumb-item a { + color: inherit; } + .bg-inverse-primary .breadcrumb.breadcrumb-custom { + background: #2196f3; } + .bg-inverse-primary .breadcrumb.breadcrumb-custom .breadcrumb-item { + background: #9acffa; } + .bg-inverse-primary .breadcrumb.breadcrumb-custom .breadcrumb-item a { + color: #2196f3; + border: none; } + .bg-inverse-primary .breadcrumb.breadcrumb-custom .breadcrumb-item a:before { + border-left-color: #9acffa; } + .bg-inverse-primary .breadcrumb.breadcrumb-custom .breadcrumb-item span { + color: #2196f3; } + .bg-inverse-primary .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child { + background: transparent; } + +.bg-inverse-secondary .breadcrumb { + background: white; + border-color: #e6eef2; } + .bg-inverse-secondary .breadcrumb .breadcrumb-item { + color: #e6eef2; } + .bg-inverse-secondary .breadcrumb .breadcrumb-item:before { + color: inherit; } + .bg-inverse-secondary .breadcrumb .breadcrumb-item a { + color: inherit; } + .bg-inverse-secondary .breadcrumb.breadcrumb-custom { + background: #e6eef2; } + .bg-inverse-secondary .breadcrumb.breadcrumb-custom .breadcrumb-item { + background: white; } + .bg-inverse-secondary .breadcrumb.breadcrumb-custom .breadcrumb-item a { + color: #e6eef2; + border: none; } + .bg-inverse-secondary .breadcrumb.breadcrumb-custom .breadcrumb-item a:before { + border-left-color: white; } + .bg-inverse-secondary .breadcrumb.breadcrumb-custom .breadcrumb-item span { + color: #e6eef2; } + .bg-inverse-secondary .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child { + background: transparent; } + +.bg-inverse-success .breadcrumb { + background: #80f0c9; + border-color: #19d895; } + .bg-inverse-success .breadcrumb .breadcrumb-item { + color: #19d895; } + .bg-inverse-success .breadcrumb .breadcrumb-item:before { + color: inherit; } + .bg-inverse-success .breadcrumb .breadcrumb-item a { + color: inherit; } + .bg-inverse-success .breadcrumb.breadcrumb-custom { + background: #19d895; } + .bg-inverse-success .breadcrumb.breadcrumb-custom .breadcrumb-item { + background: #80f0c9; } + .bg-inverse-success .breadcrumb.breadcrumb-custom .breadcrumb-item a { + color: #19d895; + border: none; } + .bg-inverse-success .breadcrumb.breadcrumb-custom .breadcrumb-item a:before { + border-left-color: #80f0c9; } + .bg-inverse-success .breadcrumb.breadcrumb-custom .breadcrumb-item span { + color: #19d895; } + .bg-inverse-success .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child { + background: transparent; } + +.bg-inverse-info .breadcrumb { + background: #d9ccf5; + border-color: #8862e0; } + .bg-inverse-info .breadcrumb .breadcrumb-item { + color: #8862e0; } + .bg-inverse-info .breadcrumb .breadcrumb-item:before { + color: inherit; } + .bg-inverse-info .breadcrumb .breadcrumb-item a { + color: inherit; } + .bg-inverse-info .breadcrumb.breadcrumb-custom { + background: #8862e0; } + .bg-inverse-info .breadcrumb.breadcrumb-custom .breadcrumb-item { + background: #d9ccf5; } + .bg-inverse-info .breadcrumb.breadcrumb-custom .breadcrumb-item a { + color: #8862e0; + border: none; } + .bg-inverse-info .breadcrumb.breadcrumb-custom .breadcrumb-item a:before { + border-left-color: #d9ccf5; } + .bg-inverse-info .breadcrumb.breadcrumb-custom .breadcrumb-item span { + color: #8862e0; } + .bg-inverse-info .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child { + background: transparent; } + +.bg-inverse-warning .breadcrumb { + background: #ffd780; + border-color: #ffaf00; } + .bg-inverse-warning .breadcrumb .breadcrumb-item { + color: #ffaf00; } + .bg-inverse-warning .breadcrumb .breadcrumb-item:before { + color: inherit; } + .bg-inverse-warning .breadcrumb .breadcrumb-item a { + color: inherit; } + .bg-inverse-warning .breadcrumb.breadcrumb-custom { + background: #ffaf00; } + .bg-inverse-warning .breadcrumb.breadcrumb-custom .breadcrumb-item { + background: #ffd780; } + .bg-inverse-warning .breadcrumb.breadcrumb-custom .breadcrumb-item a { + color: #ffaf00; + border: none; } + .bg-inverse-warning .breadcrumb.breadcrumb-custom .breadcrumb-item a:before { + border-left-color: #ffd780; } + .bg-inverse-warning .breadcrumb.breadcrumb-custom .breadcrumb-item span { + color: #ffaf00; } + .bg-inverse-warning .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child { + background: transparent; } + +.bg-inverse-danger .breadcrumb { + background: #ffdad8; + border-color: #ff6258; } + .bg-inverse-danger .breadcrumb .breadcrumb-item { + color: #ff6258; } + .bg-inverse-danger .breadcrumb .breadcrumb-item:before { + color: inherit; } + .bg-inverse-danger .breadcrumb .breadcrumb-item a { + color: inherit; } + .bg-inverse-danger .breadcrumb.breadcrumb-custom { + background: #ff6258; } + .bg-inverse-danger .breadcrumb.breadcrumb-custom .breadcrumb-item { + background: #ffdad8; } + .bg-inverse-danger .breadcrumb.breadcrumb-custom .breadcrumb-item a { + color: #ff6258; + border: none; } + .bg-inverse-danger .breadcrumb.breadcrumb-custom .breadcrumb-item a:before { + border-left-color: #ffdad8; } + .bg-inverse-danger .breadcrumb.breadcrumb-custom .breadcrumb-item span { + color: #ff6258; } + .bg-inverse-danger .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child { + background: transparent; } + +.bg-inverse-light .breadcrumb { + background: white; + border-color: #fbfbfb; } + .bg-inverse-light .breadcrumb .breadcrumb-item { + color: #fbfbfb; } + .bg-inverse-light .breadcrumb .breadcrumb-item:before { + color: inherit; } + .bg-inverse-light .breadcrumb .breadcrumb-item a { + color: inherit; } + .bg-inverse-light .breadcrumb.breadcrumb-custom { + background: #fbfbfb; } + .bg-inverse-light .breadcrumb.breadcrumb-custom .breadcrumb-item { + background: white; } + .bg-inverse-light .breadcrumb.breadcrumb-custom .breadcrumb-item a { + color: #fbfbfb; + border: none; } + .bg-inverse-light .breadcrumb.breadcrumb-custom .breadcrumb-item a:before { + border-left-color: white; } + .bg-inverse-light .breadcrumb.breadcrumb-custom .breadcrumb-item span { + color: #fbfbfb; } + .bg-inverse-light .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child { + background: transparent; } + +.bg-inverse-dark .breadcrumb { + background: #516099; + border-color: #252C46; } + .bg-inverse-dark .breadcrumb .breadcrumb-item { + color: #252C46; } + .bg-inverse-dark .breadcrumb .breadcrumb-item:before { + color: inherit; } + .bg-inverse-dark .breadcrumb .breadcrumb-item a { + color: inherit; } + .bg-inverse-dark .breadcrumb.breadcrumb-custom { + background: #252C46; } + .bg-inverse-dark .breadcrumb.breadcrumb-custom .breadcrumb-item { + background: #516099; } + .bg-inverse-dark .breadcrumb.breadcrumb-custom .breadcrumb-item a { + color: #252C46; + border: none; } + .bg-inverse-dark .breadcrumb.breadcrumb-custom .breadcrumb-item a:before { + border-left-color: #516099; } + .bg-inverse-dark .breadcrumb.breadcrumb-custom .breadcrumb-item span { + color: #252C46; } + .bg-inverse-dark .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child { + background: transparent; } + +/* Cards */ +.card { + border: none; + -webkit-box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08); + box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08); + border-radius: 4px; } + .card .card-header { + background: #ffffff; + padding: 1.88rem 1.81rem; + border-bottom: 1px solid #f2f2f2; } + .card .card-header h1, + .card .card-header h2, + .card .card-header h3, + .card .card-header h4, + .card .card-header h5, + .card .card-header h6, + .card .card-header p, + .card .card-header small { + margin-bottom: 0px; } + .card .card-header.header-sm { + padding: 15px 1.81rem; + height: 60px; } + .card .card-header.header-sm p, + .card .card-header.header-sm .dropdown .dropdown-toggle i { + color: #858585; } + .card .card-body { + padding: 1.88rem 1.81rem; } + .card .card-body.no-gutter { + padding: 0; } + .card .card-body + .card-body { + padding-top: 0; } + .card.card-outline-success { + border: 1px solid #19d895; } + .card.card-outline-primary { + border: 1px solid #2196f3; } + .card.card-outline-warning { + border: 1px solid #ffaf00; } + .card.card-outline-danger { + border: 1px solid #ff6258; } + .card.card-rounded { + border-radius: 5px; } + .card.card-faded { + background: #b5b0b2; + border-color: #b5b0b2; } + .card.card-circle-progress { + color: #ffffff; + text-align: center; } + .card.bg-blue-gradient { + background: -webkit-gradient(linear, left top, right top, from(#065efd), color-stop(#3169fd), to(#6f79fc)); + background: linear-gradient(to right, #065efd, #3169fd, #6f79fc); + color: #fff; } + .card.bg-orange-gradient { + background: -webkit-gradient(linear, left top, right top, from(#ff7f2e), to(#fe7452)); + background: linear-gradient(to right, #ff7f2e, #fe7452); + color: #fff; } + .card.bg-green-gradient { + background: -webkit-gradient(linear, left top, right top, from(#24e8a6), to(#09cdd1)); + background: linear-gradient(to right, #24e8a6, #09cdd1); + color: #fff; } + +.card-inverse-primary { + background: rgba(33, 150, 243, 0.2); + border: 1px solid #1e8ae0; + color: #1972b9; } + +.card-inverse-secondary { + background: rgba(230, 238, 242, 0.2); + border: 1px solid #d4dbdf; + color: #afb5b8; } + +.card-inverse-success { + background: rgba(25, 216, 149, 0.2); + border: 1px solid #17c789; + color: #13a471; } + +.card-inverse-info { + background: rgba(136, 98, 224, 0.2); + border: 1px solid #7d5ace; + color: #674aaa; } + +.card-inverse-warning { + background: rgba(255, 175, 0, 0.2); + border: 1px solid #eba100; + color: #c28500; } + +.card-inverse-danger { + background: rgba(255, 98, 88, 0.2); + border: 1px solid #eb5a51; + color: #c24a43; } + +.card-inverse-light { + background: rgba(251, 251, 251, 0.2); + border: 1px solid #e7e7e7; + color: #bfbfbf; } + +.card-inverse-dark { + background: rgba(37, 44, 70, 0.2); + border: 1px solid #222840; + color: #1c2135; } + +/* Checkboxes and Radios */ +.form-check, +.form-radio { + position: relative; + display: block; + margin-top: 15px; + margin-bottom: 10px; } + .form-check .form-check-label, + .form-radio .form-check-label { + display: block; + padding-left: 30px; + line-height: 1.5; } + .rtl .form-check .form-check-label, .rtl + .form-radio .form-check-label { + padding-left: 0; + padding-right: 30px; } + .form-check .form-check-label input, + .form-radio .form-check-label input { + position: absolute; + margin-left: -20px; + margin-top: 4px\9; + top: 0; + left: 0; + z-index: 1; + cursor: pointer; + opacity: 0; + filter: alpha(opacity=0); + margin-top: 0; } + .rtl .form-check .form-check-label input, .rtl + .form-radio .form-check-label input { + left: auto; + right: 0; } + +.form-check .form-check-label { + font-size: 0.875rem; + line-height: 1.5; + padding-left: 10px; } + .form-check .form-check-label input:checked + .input-helper:before { + background-color: #ffffff; } + .form-check .form-check-label input:checked + .input-helper:after { + width: 18px; + opacity: 1; + line-height: 18px; + filter: alpha(opacity=100); + -webkit-transform: scale(1); + transform: scale(1); } + .form-check .form-check-label input:disabled + .input-helper:before { + border-color: #f2f2f2; } + .form-check .form-check-label input:disabled:checked + .input-helper:after { + color: #f2f2f2; } + .form-check .form-check-label .input-helper:before { + position: absolute; + content: ""; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + width: 18px; + height: 18px; + border-radius: 2px; + left: 0; + border: 2px solid #f2f2f2; + -webkit-transition: all; + transition: all; + transition-duration: 0s; + -webkit-transition-duration: 250ms; + transition-duration: 250ms; } + .rtl .form-check .form-check-label .input-helper:before { + left: auto; + right: 0; } + .form-check .form-check-label .input-helper:after { + -webkit-transition: all; + transition: all; + transition-duration: 0s; + -webkit-transition-duration: 250ms; + transition-duration: 250ms; + font-family: Material Design Icons; + opacity: 0; + filter: alpha(opacity=0); + -webkit-transform: scale(0); + transform: scale(0); + content: '\F12C'; + position: absolute; + font-size: 0.9375rem; + font-weight: bold; + left: 0; + top: 14%; + -webkit-transform: translateY(-14%); + transform: translateY(-14%); + color: #8862e0; } + .rtl .form-check .form-check-label .input-helper:after { + left: auto; + right: 0; } + +.form-check.form-check-flat label input:checked + .input-helper:before { + background-color: #19d895; + border: none; } + +.form-check.form-check-flat label input:disabled + .input-helper:after { + color: #ffffff; } + +.form-check.form-check-flat label input:disabled + .input-helper:before { + border-color: #f2f2f2; } + +.form-check.form-check-flat label input:disabled:checked + .input-helper:before { + background: #f7f7f9; } + +.form-check.form-check-flat label .input-helper:before { + border: 2px solid #f2f2f2; } + +.form-check.form-check-flat label .input-helper:after { + color: #ffffff; } + +.form-radio label input + .input-helper:before { + position: absolute; + content: ""; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + left: 0; + border: 2px solid #f2f2f2; + width: 20px; + height: 20px; + border-radius: 50%; + -webkit-transition: all; + transition: all; + transition-duration: 0s; + -webkit-transition-duration: 250ms; + transition-duration: 250ms; } + .rtl .form-radio label input + .input-helper:before { + left: auto; + right: 0; } + +.form-radio label input + .input-helper:after { + content: ""; + width: 8px; + height: 8px; + background: #ff6258; + border-radius: 50%; + top: 30%; + -webkit-transform: translateY(-30%); + transform: translateY(-30%); + left: 6px; + -webkit-transition: all; + transition: all; + -webkit-transition-duration: 250s; + transition-duration: 250s; + opacity: 0; + filter: alpha(opacity=0); + -webkit-transform: scale(0); + transform: scale(0); + position: absolute; } + .rtl .form-radio label input + .input-helper:after { + left: auto; + right: 6px; } + +.form-radio label input:checked + .input-helper:before { + background-color: #ffffff; + border: 2px solid #f2f2f2; + top: 30%; + -webkit-transform: translateY(-30%); + transform: translateY(-30%); } + +.form-radio label input:checked + .input-helper:after { + opacity: 1; + line-height: 1.5; + filter: alpha(opacity=100); + -webkit-transform: scale(1); + transform: scale(1); } + +.form-radio label input:disabled + .input-helper:before { + border-color: #f2f2f2; } + +.form-radio label input:disabled:checked + .input-helper:before { + background-color: #ffffff; + border-color: #f2f2f2; } + +.form-radio label input:disabled:checked + .input-helper:after { + background-color: #f2f2f2; } + +.form-radio.form-radio-flat label input:checked + .input-helper:before { + background: #19d895; + border-color: #19d895; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); } + +.form-radio.form-radio-flat label input:checked + .input-helper:after { + width: 20px; + height: 20px; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + left: -2px; + color: #ffffff; + background: none; + content: '\F12C'; + font-family: Material Design Icons; + text-align: center; + font-weight: bold; } + .rtl .form-radio.form-radio-flat label input:checked + .input-helper:after { + left: auto; + right: -2px; } + +/* Dropdowns */ +.dropdown .dropdown-toggle:after { + vertical-align: middle; + margin-left: 9px; } + +.dropdown .dropdown-toggle.arrow-disabled { + border: none; + outline: none; + -webkit-box-shadow: none; + box-shadow: none; } + .dropdown .dropdown-toggle.arrow-disabled:focus, .dropdown .dropdown-toggle.arrow-disabled:visited, .dropdown .dropdown-toggle.arrow-disabled:active { + outline: none; + -webkit-box-shadow: none; + box-shadow: none; } + .dropdown .dropdown-toggle.arrow-disabled:after { + display: none; } + +.dropdown-menu { + font-size: 0.875rem; } + .dropdown-menu .dropdown-item:active { + background: initial; } + +/* Forms */ +.input-group-append, +.input-group-prepend, +.asColorPicker-trigger { + background: #ffffff; + color: #c9c8c8; + width: auto; + border: none; } + .input-group-append .input-group-text, + .input-group-prepend .input-group-text, .asColorPicker-trigger .input-group-text { + background: transparent; + border-color: #f2f2f2; } + +.form-control, .asColorPicker-input, .dataTables_wrapper select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], +.jsgrid .jsgrid-table .jsgrid-filter-row select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .tt-hint, +.tt-query, +.typeahead { + border: 1px solid #f2f2f2; + font-family: "Poppins", sans-serif; + font-size: 0.75rem; + padding: 1.32rem .75rem; + line-height: 14px; + font-weight: 300; } + .form-control.form-control-lg, .form-control-lg.asColorPicker-input, .dataTables_wrapper select.form-control-lg, .jsgrid .jsgrid-table .jsgrid-filter-row input.form-control-lg[type=text], + .jsgrid .jsgrid-table .jsgrid-filter-row select.form-control-lg, .jsgrid .jsgrid-table .jsgrid-filter-row input.form-control-lg[type=number], .select2-container--default .form-control-lg.select2-selection--single, .select2-container--default .select2-selection--single .form-control-lg.select2-search__field, .form-control-lg.tt-hint, + .form-control-lg.tt-query, + .form-control-lg.typeahead { + padding: 0.5rem 0.75rem; } + .form-control.form-control-sm, .form-control-sm.asColorPicker-input, .dataTables_wrapper select.form-control-sm, .jsgrid .jsgrid-table .jsgrid-filter-row input.form-control-sm[type=text], + .jsgrid .jsgrid-table .jsgrid-filter-row select.form-control-sm, .jsgrid .jsgrid-table .jsgrid-filter-row input.form-control-sm[type=number], .select2-container--default .form-control-sm.select2-selection--single, .select2-container--default .select2-selection--single .form-control-sm.select2-search__field, .form-control-sm.tt-hint, + .form-control-sm.tt-query, + .form-control-sm.typeahead { + padding: 0.25rem 0.75rem; } + +select.form-control, select.asColorPicker-input, .dataTables_wrapper select, +.jsgrid .jsgrid-table .jsgrid-filter-row select, .select2-container--default select.select2-selection--single, .select2-container--default .select2-selection--single select.select2-search__field, select.tt-hint, +select.tt-query, +select.typeahead { + padding: 0.4375rem 0.75rem; } + +.form-group label { + font-size: 0.875rem; + line-height: 1; + vertical-align: top; } + +.form-group.has-danger .form-control, .form-group.has-danger .asColorPicker-input, .form-group.has-danger .dataTables_wrapper select, .dataTables_wrapper .form-group.has-danger select, .form-group.has-danger .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .form-group.has-danger input[type=text], .form-group.has-danger +.jsgrid .jsgrid-table .jsgrid-filter-row select, +.jsgrid .jsgrid-table .jsgrid-filter-row .form-group.has-danger select, .form-group.has-danger .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .form-group.has-danger input[type=number], .form-group.has-danger .select2-container--default .select2-selection--single, .select2-container--default .form-group.has-danger .select2-selection--single, .form-group.has-danger .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .form-group.has-danger .select2-search__field, .form-group.has-danger .tt-hint, .form-group.has-danger +.tt-query, .form-group.has-danger +.typeahead { + border-color: #ff6258; } + +.form-group .file-upload-default { + visibility: hidden; + position: absolute; } + +.form-group .file-upload-info { + background: transparent; } + +.map-container { + position: relative; + min-width: 100%; + max-width: 100%; + display: block; + padding: 35% 0; + overflow: hidden; + border-radius: 5px; } + .map-container .google-map { + display: block; + position: absolute; + top: 0; + right: 0; + left: 0; + bottom: 0; + width: 100%; + height: 100%; } + .map-container .google-map.no-controls .gm-style-cc, + .map-container .google-map.no-controls .gmnoprint { + display: none; } + +/* Icons */ +.icons-list { + border-left: 1px solid #f2f2f2; + border-bottom: 1px solid #f2f2f2; } + .icons-list > div { + background: #ffffff; + border-top: 1px solid #f2f2f2; + border-right: 1px solid #f2f2f2; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 15px; + font-family: "Poppins", sans-serif; + font-size: 0.875rem; } + .icons-list > div i { + display: inline-block; + font-size: 20px; + width: 40px; + text-align: left; + color: #2196f3; } + +/* Lists */ +dl, +ol, +ul { + padding-left: 1rem; + font-size: 0.875rem; } + dl li, + ol li, + ul li { + line-height: 1.8; } + +.list-arrow, +.list-star, +.list-ticked { + list-style: none; + padding: 0; } + .list-arrow li, + .list-star li, + .list-ticked li { + padding-left: 1.5rem; } + .list-arrow li:before, + .list-star li:before, + .list-ticked li:before { + font-family: "Material Design Icons"; + margin-left: -1.5rem; + width: 1.5rem; + margin-right: 0.5rem; } + +.list-ticked li:before { + content: '\F12D'; + color: #ff6258; } + +.list-arrow li:before { + content: '\F142'; + color: #19d895; } + +.list-star li:before { + content: '\F4CE'; + color: #ffaf00; } + +.bullet-line-list { + padding-left: 30px; + margin-bottom: 0; + position: relative; + list-style-type: none; } + .rtl .bullet-line-list { + padding-right: 0px; } + .bullet-line-list li { + position: relative; + line-height: 1; + padding-bottom: 10px; } + .bullet-line-list li:before { + content: ""; + position: absolute; + border-radius: 100%; + width: 12px; + height: 12px; + left: -28px; + top: 6px; + border: 3px solid #2196f3; + margin-right: 15px; + z-index: 2; + background: #ffffff; } + .bullet-line-list li:after { + content: ""; + border: 1px solid #f2f2f2; + position: absolute; + bottom: 0; + left: -23px; + height: 100%; } + .bullet-line-list li:first-child:after { + content: ""; + height: 80%; } + .bullet-line-list li:last-child { + padding-bottom: 0; } + .bullet-line-list li:last-child:after { + content: ""; + top: 0; + height: 30%; } + +/* Loaders */ +#pgloading { + position: static; } + #pgloading .bokeh { + font-size: 100px; + width: 1em; + height: 1em; + position: relative; + margin: 0 auto; + border-radius: 50%; + border: 0.01em solid #f2f2f2; + list-style: none; + padding: 0; } + #pgloading .bokeh li { + position: absolute; + width: 0.2em; + height: 0.2em; + border-radius: 50%; } + #pgloading .bokeh li:nth-child(1) { + left: 50%; + top: 0; + margin: 0 0 0 -.1em; + background: #19d895; + -webkit-transform-origin: 50% 250%; + transform-origin: 50% 250%; + -webkit-animation: rota 1.13s linear infinite, opa 3.67s ease-in-out infinite alternate; + animation: rota 1.13s linear infinite, opa 3.67s ease-in-out infinite alternate; } + #pgloading .bokeh li:nth-child(2) { + top: 50%; + right: 0; + margin: -.1em 0 0; + background: #ff6258; + -webkit-transform-origin: -150% 50%; + transform-origin: -150% 50%; + -webkit-animation: rota 1.86s linear infinite, opa 4.29s ease-in-out infinite alternate; + animation: rota 1.86s linear infinite, opa 4.29s ease-in-out infinite alternate; } + #pgloading .bokeh li:nth-child(3) { + left: 50%; + bottom: 0; + margin: 0 0 0 -.1em; + background: #ffaf00; + -webkit-transform-origin: 50% -150%; + transform-origin: 50% -150%; + -webkit-animation: rota 1.45s linear infinite, opa 5.12s ease-in-out infinite alternate; + animation: rota 1.45s linear infinite, opa 5.12s ease-in-out infinite alternate; } + #pgloading .bokeh li:nth-child(4) { + top: 50%; + left: 0; + margin: -.1em 0 0; + background: #2196f3; + -webkit-transform-origin: 250% 50%; + transform-origin: 250% 50%; + -webkit-animation: rota 1.72s linear infinite, opa 5.25s ease-in-out infinite alternate; + animation: rota 1.72s linear infinite, opa 5.25s ease-in-out infinite alternate; } + +@-webkit-keyframes rota { + from { } + to { + -webkit-transform: rotate(360deg); } } + +@keyframes rota { + from { } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@-webkit-keyframes opa { + 0% { } + 12.0% { + opacity: 0.80; } + 19.5% { + opacity: 0.88; } + 37.2% { + opacity: 0.64; } + 40.5% { + opacity: 0.52; } + 52.7% { + opacity: 0.69; } + 60.2% { + opacity: 0.60; } + 66.6% { + opacity: 0.52; } + 70.0% { + opacity: 0.63; } + 79.9% { + opacity: 0.60; } + 84.2% { + opacity: 0.75; } + 91.0% { + opacity: 0.87; } } + +@keyframes opa { + 0% { } + 12.0% { + opacity: 0.80; } + 19.5% { + opacity: 0.88; } + 37.2% { + opacity: 0.64; } + 40.5% { + opacity: 0.52; } + 52.7% { + opacity: 0.69; } + 60.2% { + opacity: 0.60; } + 66.6% { + opacity: 0.52; } + 70.0% { + opacity: 0.63; } + 79.9% { + opacity: 0.60; } + 84.2% { + opacity: 0.75; } + 91.0% { + opacity: 0.87; } } + +.glowing-loader { + position: relative; } + +.s2 { + position: absolute; + height: 70px; + width: 70px; + top: 50px; + background-color: transparent; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); } + +.s1 { + position: absolute; + height: 70px; + width: 70px; + left: 50%; + top: 50px; + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: translate(-50%, -50%) rotate(45deg); + transform: translate(-50%, -50%) rotate(45deg); + background-color: transparent; } + +.bigcon { + position: absolute; + height: 75px; + width: 75px; + left: 50%; + top: 50px; + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: translate(-50%, -50%) rotate(-45deg); + transform: translate(-50%, -50%) rotate(-45deg); + background-color: transparent; + -webkit-animation: bigcon 2s infinite linear; + animation: bigcon 2s infinite linear; + -webkit-animation-delay: 0.25s; + animation-delay: 0.25s; } + +.b { + border-radius: 50%; + position: absolute; } + +.s { + width: 15px; + height: 15px; + -webkit-animation: small 2s infinite ease; + animation: small 2s infinite ease; + -webkit-box-shadow: 0 2px rgba(0, 0, 0, 0.3); + box-shadow: 0 2px rgba(0, 0, 0, 0.3); + background-color: #2196f3; } + +.s:nth-child(1) { + top: 0; + left: 0; } + +.s:nth-child(2) { + top: 0; + right: 0; } + +.s:nth-child(3) { + right: 0; + bottom: 0; } + +.s:nth-child(4) { + bottom: 0; + left: 0; } + +.big { + width: 15px; + height: 15px; + border-radius: 15px; + -webkit-box-shadow: 0 0 10px #2196f3, 0 0 20px #2196f3, 0 0 30px #2196f3, 0 0 50px #2196f3, 0 0 60px #2196f3; + box-shadow: 0 0 10px #2196f3, 0 0 20px #2196f3, 0 0 30px #2196f3, 0 0 50px #2196f3, 0 0 60px #2196f3; + z-index: 1; + background-color: #2196f3; + -webkit-animation: bigball 1s infinite linear; + animation: bigball 1s infinite linear; } + +.sb1 { + -webkit-animation-delay: -1.75s; + animation-delay: -1.75s; } + +.sb6 { + -webkit-animation-delay: -1.5s; + animation-delay: -1.5s; } + +.sb2 { + -webkit-animation-delay: -1.25s; + animation-delay: -1.25s; } + +.sb7 { + -webkit-animation-delay: -1s; + animation-delay: -1s; } + +.sb3 { + -webkit-animation-delay: -0.75s; + animation-delay: -0.75s; } + +.sb8 { + -webkit-animation-delay: -0.5s; + animation-delay: -0.5s; } + +.sb4 { + -webkit-animation-delay: -0.25s; + animation-delay: -0.25s; } + +.sb5 { + -webkit-animation-delay: -0s; + animation-delay: -0s; } + +@-webkit-keyframes bigcon { + 0% { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: translate(-50%, -50%) rotate(45deg); + transform: translate(-50%, -50%) rotate(45deg); } + 100% { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: translate(-50%, -50%) rotate(405deg); + transform: translate(-50%, -50%) rotate(405deg); } } + +@keyframes bigcon { + 0% { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: translate(-50%, -50%) rotate(45deg); + transform: translate(-50%, -50%) rotate(45deg); } + 100% { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: translate(-50%, -50%) rotate(405deg); + transform: translate(-50%, -50%) rotate(405deg); } } + +@-webkit-keyframes small { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + background-color: #82c4f8; } + 10% { + -webkit-transform: scale(1.3); + transform: scale(1.3); + background-color: #2196f3; } + 15% { + -webkit-transform: scale(1); + transform: scale(1); } + 25% { + -webkit-transform: scale(1); + transform: scale(1); + background-color: #2196f3; } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + background-color: #2196f3; } } + +@keyframes small { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + background-color: #82c4f8; } + 10% { + -webkit-transform: scale(1.3); + transform: scale(1.3); + background-color: #2196f3; } + 15% { + -webkit-transform: scale(1); + transform: scale(1); } + 25% { + -webkit-transform: scale(1); + transform: scale(1); + background-color: #2196f3; } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + background-color: #2196f3; } } + +/* Pixel loader */ +.pixel-loader { + width: 10px; + height: 10px; + background: #ffaf00; + color: #ffaf00; + margin: 80px auto; + -webkit-box-shadow: 15px 15px 0 0, -15px -15px 0 0, 15px -15px 0 0, -15px 15px 0 0, 0 15px 0 0, 15px 0 0 0, -15px 0 0 0, 0 -15px 0 0; + box-shadow: 15px 15px 0 0, -15px -15px 0 0, 15px -15px 0 0, -15px 15px 0 0, 0 15px 0 0, 15px 0 0 0, -15px 0 0 0, 0 -15px 0 0; + -webkit-animation: anim 2s linear infinite; + animation: anim 2s linear infinite; } + +@-webkit-keyframes anim { + 0% { + -webkit-filter: hue-rotate(0deg); } + 50% { + -webkit-box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0, 0 10px 0 0, 10px 0 0 0, -10px 0 0 0, 0 -10px 0 0; + box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0, 0 10px 0 0, 10px 0 0 0, -10px 0 0 0, 0 -10px 0 0; } + 75% { + -webkit-box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0, 0 10px 0 0, 10px 0 0 0, -10px 0 0 0, 0 -10px 0 0; + box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0, 0 10px 0 0, 10px 0 0 0, -10px 0 0 0, 0 -10px 0 0; } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + -webkit-filter: hue-rotate(360deg); } } + +@keyframes anim { + 0% { + -webkit-filter: hue-rotate(0deg); } + 50% { + -webkit-box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0, 0 10px 0 0, 10px 0 0 0, -10px 0 0 0, 0 -10px 0 0; + box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0, 0 10px 0 0, 10px 0 0 0, -10px 0 0 0, 0 -10px 0 0; } + 75% { + -webkit-box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0, 0 10px 0 0, 10px 0 0 0, -10px 0 0 0, 0 -10px 0 0; + box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0, 0 10px 0 0, 10px 0 0 0, -10px 0 0 0, 0 -10px 0 0; } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + -webkit-filter: hue-rotate(360deg); } } + +/* Square box loader */ +@-webkit-keyframes dyinglight { + 15% { + -webkit-transform: scale(1.6); + transform: scale(1.6); } + 50% { + -webkit-transform: rotate(-89deg); + transform: rotate(-89deg); } + 100% { + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); } } +@keyframes dyinglight { + 15% { + -webkit-transform: scale(1.6); + transform: scale(1.6); } + 50% { + -webkit-transform: rotate(-89deg); + transform: rotate(-89deg); } + 100% { + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); } } + +.square-box-loader { + position: absolute; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + display: inline-block; } + +.square-box-loader-square { + display: block; + width: 30px; + height: 30px; + background: #2196f3; } + +.square-box-loader-container { + position: absolute; + left: 0; + top: 0; + bottom: 0; + right: 0; + -webkit-transform-origin: 50% 50% 0; + transform-origin: 50% 50% 0; + -webkit-animation: dyinglight 1s ease infinite; + animation: dyinglight 1s ease infinite; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + +.square-box-loader-corner-bottom:after, +.square-box-loader-corner-bottom:before, +.square-box-loader-corner-top:after, +.square-box-loader-corner-top:before { + position: absolute; + width: 10px; + height: 10px; + color: #2196f3; + content: ''; } + +.square-box-loader-corner-top:before { + border-left: 1px solid; + border-top: 1px solid; + top: -4px; + left: -4px; } + +.square-box-loader-corner-top:after { + border-right: 1px solid; + border-top: 1px solid; + top: -4px; + right: -4px; } + +.square-box-loader-corner-bottom:before { + border-left: 1px solid; + border-bottom: 1px solid; + bottom: -4px; + left: -4px; } + +.square-box-loader-corner-bottom:after { + border-right: 1px solid; + border-bottom: 1px solid; + bottom: -4px; + right: -4px; } + +/* Circle loader */ +.circle-loader { + width: 70px; + height: 70px; + border-radius: 100%; + position: relative; + margin: 0 auto; } + +.circle-loader:after, +.circle-loader:before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-radius: 100%; + border: 10px solid transparent; + border-top-color: #ffaf00; } + +.circle-loader:before { + z-index: 100; + -webkit-animation: spin 1s infinite; + animation: spin 1s infinite; } + +.circle-loader:after { + border: 10px solid #e6eef2; } + +@keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +/* Jumping dots loader */ +.jumping-dots-loader { + width: 100px; + height: 100px; + border-radius: 100%; + position: relative; + margin: 0 auto; } + +.jumping-dots-loader span { + display: inline-block; + width: 20px; + height: 20px; + border-radius: 100%; + background-color: rgba(255, 98, 88, 0.8); + margin: 35px 5px; } + +.jumping-dots-loader span:nth-child(1) { + -webkit-animation: bounce 1s ease-in-out infinite; + animation: bounce 1s ease-in-out infinite; } + +.jumping-dots-loader span:nth-child(2) { + -webkit-animation: bounce 1s ease-in-out 0.33s infinite; + animation: bounce 1s ease-in-out 0.33s infinite; } + +.jumping-dots-loader span:nth-child(3) { + -webkit-animation: bounce 1s ease-in-out 0.66s infinite; + animation: bounce 1s ease-in-out 0.66s infinite; } + +@-webkit-keyframes bounce { + 0%, + 100%, + 75% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 25% { + -webkit-transform: translateY(-20px); + transform: translateY(-20px); } } + +@keyframes bounce { + 0%, + 100%, + 75% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 25% { + -webkit-transform: translateY(-20px); + transform: translateY(-20px); } } + +/* Bar loader */ +.bar-loader { + width: 50px; + height: 50px; + border-radius: 100%; + position: relative; + margin: 0 auto; } + +.bar-loader span { + display: inline-block; + width: 5px; + height: 30px; + background-color: rgba(255, 98, 88, 0.7); } + +.bar-loader span:nth-child(1) { + -webkit-animation: grow 1s ease-in-out infinite; + animation: grow 1s ease-in-out infinite; } + +.bar-loader span:nth-child(2) { + -webkit-animation: grow 1s ease-in-out 0.15s infinite; + animation: grow 1s ease-in-out 0.15s infinite; } + +.bar-loader span:nth-child(3) { + -webkit-animation: grow 1s ease-in-out 0.30s infinite; + animation: grow 1s ease-in-out 0.30s infinite; } + +.bar-loader span:nth-child(4) { + -webkit-animation: grow 1s ease-in-out 0.45s infinite; + animation: grow 1s ease-in-out 0.45s infinite; } + +@-webkit-keyframes grow { + 0%, + 100% { + -webkit-transform: scaleY(1); + transform: scaleY(1); } + 50% { + -webkit-transform: scaleY(1.8); + transform: scaleY(1.8); } } + +@keyframes grow { + 0%, + 100% { + -webkit-transform: scaleY(1); + transform: scaleY(1); } + 50% { + -webkit-transform: scaleY(1.8); + transform: scaleY(1.8); } } + +/* Square path loader */ +.square-path-loader { + width: 100px; + height: 100px; + border-radius: 100%; + position: relative; + margin: 0 auto; } + +.square-path-loader:after, +.square-path-loader:before { + content: ""; + width: 15px; + height: 15px; + position: absolute; + top: 0; + left: calc(50% - 10px); + background-color: rgba(25, 216, 149, 0.7); + -webkit-animation: squaremove 1s ease-in-out infinite; + animation: squaremove 1s ease-in-out infinite; } + +.square-path-loader:after { + bottom: 0; + -webkit-animation-delay: 0.5s; + animation-delay: 0.5s; } + +@-webkit-keyframes squaremove { + 0%, + 100% { + -webkit-transform: translate(0, 0) rotate(0); + transform: translate(0, 0) rotate(0); } + 25% { + -webkit-transform: translate(40px, 40px) rotate(45deg); + transform: translate(40px, 40px) rotate(45deg); } + 50% { + -webkit-transform: translate(0px, 80px) rotate(0deg); + transform: translate(0px, 80px) rotate(0deg); } + 75% { + -webkit-transform: translate(-40px, 40px) rotate(45deg); + transform: translate(-40px, 40px) rotate(45deg); } } + +@keyframes squaremove { + 0%, + 100% { + -webkit-transform: translate(0, 0) rotate(0); + transform: translate(0, 0) rotate(0); } + 25% { + -webkit-transform: translate(40px, 40px) rotate(45deg); + transform: translate(40px, 40px) rotate(45deg); } + 50% { + -webkit-transform: translate(0px, 80px) rotate(0deg); + transform: translate(0px, 80px) rotate(0deg); } + 75% { + -webkit-transform: translate(-40px, 40px) rotate(45deg); + transform: translate(-40px, 40px) rotate(45deg); } } + +/* Dot opacity loader */ +.dot-opacity-loader { + width: 100px; + height: 100px; + border-radius: 100%; + position: relative; + margin: 0 auto; } + +.dot-opacity-loader span { + display: inline-block; + width: 20px; + height: 20px; + border-radius: 100%; + background-color: #2196f3; + margin: 35px 5px; + opacity: 0; } + +.dot-opacity-loader span:nth-child(1) { + -webkit-animation: opacitychange 1s ease-in-out infinite; + animation: opacitychange 1s ease-in-out infinite; } + +.dot-opacity-loader span:nth-child(2) { + -webkit-animation: opacitychange 1s ease-in-out 0.33s infinite; + animation: opacitychange 1s ease-in-out 0.33s infinite; } + +.dot-opacity-loader span:nth-child(3) { + -webkit-animation: opacitychange 1s ease-in-out 0.66s infinite; + animation: opacitychange 1s ease-in-out 0.66s infinite; } + +@-webkit-keyframes opacitychange { + 0%, + 100% { + opacity: 0; } + 60% { + opacity: 1; } } + +@keyframes opacitychange { + 0%, + 100% { + opacity: 0; } + 60% { + opacity: 1; } } + +/* Flip square */ +.flip-square-loader { + -webkit-perspective: 120px; + -ms-perspective: 120px; + perspective: 120px; + width: 100px; + height: 100px; + border-radius: 100%; + position: relative; + margin: 0 auto; } + +.flip-square-loader:before { + content: ""; + position: absolute; + left: 25px; + top: 25px; + width: 50px; + height: 50px; + background-color: rgba(25, 216, 149, 0.7); + -webkit-animation: flip 1s infinite; + animation: flip 1s infinite; } + +@-webkit-keyframes flip { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); } + 50% { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); } + 100% { + -webkit-transform: rotateY(180deg) rotateX(180deg); + transform: rotateY(180deg) rotateX(180deg); } } + +@keyframes flip { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); } + 50% { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); } + 100% { + -webkit-transform: rotateY(180deg) rotateX(180deg); + transform: rotateY(180deg) rotateX(180deg); } } + +/* Moving square loader */ +.moving-square-loader { + width: 100px; + height: 100px; + border-radius: 100%; + position: relative; + margin: 0 auto; } + +.moving-square-loader:before { + content: ""; + position: absolute; + width: 10px; + height: 10px; + top: calc(50% - 10px); + left: 0; + background-color: rgba(255, 98, 88, 0.7); + -webkit-animation: rotatemove 1s infinite; + animation: rotatemove 1s infinite; } + +@-webkit-keyframes rotatemove { + 0% { + -webkit-transform: scale(1) translateX(0px); + transform: scale(1) translateX(0px); } + 100% { + -webkit-transform: scale(2) translateX(45px); + transform: scale(2) translateX(45px); } } + +@keyframes rotatemove { + 0% { + -webkit-transform: scale(1) translateX(0px); + transform: scale(1) translateX(0px); } + 100% { + -webkit-transform: scale(2) translateX(45px); + transform: scale(2) translateX(45px); } } + +/* Modals */ +.modal .modal-dialog { + margin-top: calc(63px + 30px); } + .modal .modal-dialog .modal-content .modal-header { + padding: 25px 26px; } + .modal .modal-dialog .modal-content .modal-header .close span { + font-size: 20px; + font-weight: 400; + color: #6a6a6a; } + .modal .modal-dialog .modal-content .modal-body { + padding: 35px 26px; } + .modal .modal-dialog .modal-content .modal-footer { + padding: 15px 31px; } + +.nav .nav-item, +.navbar-nav .nav-item { + line-height: 1; } + .nav .nav-item.dropdown .dropdown-toggle:after, + .navbar-nav .nav-item.dropdown .dropdown-toggle:after { + border: none; + content: "\F140"; + font: normal normal normal 28px/1 "Material Design Icons"; + font-size: inherit; + text-rendering: auto; + line-height: inherit; + vertical-align: 0; } + .nav .nav-item.dropdown .count-indicator, + .navbar-nav .nav-item.dropdown .count-indicator { + position: relative; + text-align: center; } + .nav .nav-item.dropdown .count-indicator i, + .navbar-nav .nav-item.dropdown .count-indicator i { + font-size: 21px; + margin-right: 0; + vertical-align: middle; } + .nav .nav-item.dropdown .count-indicator .count, + .navbar-nav .nav-item.dropdown .count-indicator .count { + position: absolute; + left: 50%; + width: 1rem; + height: 1rem; + border-radius: 100%; + background: #FF0017; + color: #ffffff; + font-size: 11px; + top: -1px; + font-weight: 600; + line-height: 1rem; + border: none; + text-align: center; } + .nav .nav-item.dropdown .count-indicator:after, + .navbar-nav .nav-item.dropdown .count-indicator:after { + display: none; } + .nav .nav-item.dropdown i, + .navbar-nav .nav-item.dropdown i { + margin-right: 0.5rem; + vertical-align: middle; } + .rtl .nav .nav-item.dropdown i, .rtl + .navbar-nav .nav-item.dropdown i { + margin-left: 0.5rem; + margin-right: 0; } + .nav .nav-item.dropdown .navbar-dropdown, + .navbar-nav .nav-item.dropdown .navbar-dropdown { + font-size: 0.9rem; + margin-top: 0; + position: absolute; + top: calc(63px - 6px); + right: 0; + left: auto; + border: 1px solid rgba(182, 182, 182, 0.1); + padding: 0 0 20px; + min-width: 100%; + border-radius: 2px; + -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.13); + box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.13); + overflow: hidden; } + .rtl .nav .nav-item.dropdown .navbar-dropdown, .rtl + .navbar-nav .nav-item.dropdown .navbar-dropdown { + right: auto; + left: 0; } + @media (max-width: 991px) { + .nav .nav-item.dropdown .navbar-dropdown, + .navbar-nav .nav-item.dropdown .navbar-dropdown { + right: -85px; } } + .nav .nav-item.dropdown .navbar-dropdown.dropdown-left, + .navbar-nav .nav-item.dropdown .navbar-dropdown.dropdown-left { + left: 0; + right: auto; } + .nav .nav-item.dropdown .navbar-dropdown .badge, + .navbar-nav .nav-item.dropdown .navbar-dropdown .badge { + margin-left: 2.5rem; } + .rtl .nav .nav-item.dropdown .navbar-dropdown .badge, .rtl + .navbar-nav .nav-item.dropdown .navbar-dropdown .badge { + margin-left: 0; + margin-right: 1.25rem; } + @media (max-width: 991px) { + .nav .nav-item.dropdown .navbar-dropdown .badge, + .navbar-nav .nav-item.dropdown .navbar-dropdown .badge { + margin-right: 0.5rem; } + .rtl .nav .nav-item.dropdown .navbar-dropdown .badge, .rtl + .navbar-nav .nav-item.dropdown .navbar-dropdown .badge { + margin-left: 0.5rem; + margin-right: 0; } } + .nav .nav-item.dropdown .navbar-dropdown .dropdown-item, + .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item { + margin-bottom: 0; + padding: 7px 25px; } + .nav .nav-item.dropdown .navbar-dropdown .dropdown-item i, + .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item i { + font-size: 24px; } + .nav .nav-item.dropdown .navbar-dropdown .dropdown-item .ellipsis, + .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item .ellipsis { + max-width: 200px; + overflow: hidden; + text-overflow: ellipsis; } + .nav .nav-item.dropdown .navbar-dropdown .dropdown-item .preview-icon, + .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item .preview-icon { + width: 40px; + height: 40px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .nav .nav-item.dropdown .navbar-dropdown .dropdown-item .small-text, + .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item .small-text { + font-size: 0.75rem; } + .nav .nav-item.dropdown .navbar-dropdown .dropdown-divider, + .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-divider { + margin: 0; } + +/* New Account */ +.new-accounts { + overflow: hidden; + position: relative; } + .new-accounts ul.chats { + height: 100%; + padding: 0; + margin-bottom: 0; + overflow-x: hidden; } + .new-accounts ul.chats li.chat-persons { + padding: 15px 0; + display: block; + border-bottom: 1px solid #f2f2f2; } + .new-accounts ul.chats li.chat-persons:last-child { + border-bottom: none; } + .new-accounts ul.chats li.chat-persons .btn.btn-xs, .new-accounts ul.chats li.chat-persons .ajax-upload-dragdrop .btn-xs.ajax-file-upload, .ajax-upload-dragdrop .new-accounts ul.chats li.chat-persons .btn-xs.ajax-file-upload, .new-accounts ul.chats li.chat-persons .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-submit, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons .ajax-file-upload.editable-submit, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .new-accounts ul.chats li.chat-persons .ajax-file-upload.editable-submit, .new-accounts ul.chats li.chat-persons .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-cancel, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons .ajax-file-upload.editable-cancel, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .new-accounts ul.chats li.chat-persons .ajax-file-upload.editable-cancel, .new-accounts ul.chats li.chat-persons .swal2-modal .swal2-buttonswrapper .btn-xs.swal2-styled, .swal2-modal .swal2-buttonswrapper .new-accounts ul.chats li.chat-persons .btn-xs.swal2-styled, .new-accounts ul.chats li.chat-persons .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-submit, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons .swal2-styled.editable-submit, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .new-accounts ul.chats li.chat-persons .swal2-styled.editable-submit, .new-accounts ul.chats li.chat-persons .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-cancel, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons .swal2-styled.editable-cancel, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .new-accounts ul.chats li.chat-persons .swal2-styled.editable-cancel, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons .btn.editable-submit, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions .new-accounts ul.chats li.chat-persons a.editable-submit, .new-accounts ul.chats li.chat-persons .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-submit, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons a.editable-submit, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons .btn.editable-cancel, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions .new-accounts ul.chats li.chat-persons a.editable-cancel, .new-accounts ul.chats li.chat-persons .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-cancel, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons a.editable-cancel, .new-accounts ul.chats li.chat-persons .wizard > .actions a.btn-xs, .wizard > .actions .new-accounts ul.chats li.chat-persons a.btn-xs { + padding: 0.2rem 0.75rem; } + .new-accounts ul.chats li.chat-persons a { + text-decoration: none; } + .new-accounts ul.chats li.chat-persons a span.pro-pic { + display: inline-block; + padding: 0; + width: 20%; + max-width: 40px; } + .new-accounts ul.chats li.chat-persons a span.pro-pic img { + max-width: 100%; + width: 100%; + border-radius: 100%; } + .new-accounts ul.chats li.chat-persons a div.user { + width: 60%; + padding: 5px 10px 0 15px; } + .new-accounts ul.chats li.chat-persons a div.user p.u-name { + margin: 0; + color: #000; } + .new-accounts ul.chats li.chat-persons a div.user p.u-designation { + margin: 0; + color: #000; } + .new-accounts ul.chats li.chat-persons a p.joined-date { + text-align: right; + margin-left: auto; + margin-bottom: 0; } + .rtl .new-accounts ul.chats li.chat-persons a p.joined-date { + margin-left: 0; + margin-right: auto; } + +/* Pagination */ +.pagination .page-item .page-link, .jsgrid .jsgrid-pager .page-item .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-page a { + border-color: #f2f2f2; + font-size: 0.875rem; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; } + .pagination .page-item .page-link:focus, .jsgrid .jsgrid-pager .page-item .page-link:focus, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:focus, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:focus, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:focus, .jsgrid .jsgrid-pager .jsgrid-pager-page a:focus { + background: inherit; } + .pagination .page-item .page-link i:before, .jsgrid .jsgrid-pager .page-item .page-link i:before, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link i:before, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-link i:before, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a i:before, .jsgrid .jsgrid-pager .jsgrid-pager-page a i:before { + font-size: inherit; + line-height: 1; + vertical-align: middle; } + +.pagination .page-item.active .page-link, .jsgrid .jsgrid-pager .page-item.active .page-link, .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link, .pagination .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .page-item.active .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item.active a, .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .pagination .page-item.active +.jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .page-item.active .jsgrid-pager-page a, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-item.active a, .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .pagination .page-item:active .page-link, .jsgrid .jsgrid-pager .page-item:active .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:active .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-page:active .page-link, .pagination .page-item:active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .page-item:active .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item:active a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:active a, .pagination .page-item:active +.jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .page-item:active .jsgrid-pager-page a, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-item:active a, .jsgrid .jsgrid-pager .jsgrid-pager-page:active a, .pagination .page-item:focus .page-link, .jsgrid .jsgrid-pager .page-item:focus .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:focus .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-page:focus .page-link, .pagination .page-item:focus .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .page-item:focus .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item:focus a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:focus a, .pagination .page-item:focus +.jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .page-item:focus .jsgrid-pager-page a, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-item:focus a, .jsgrid .jsgrid-pager .jsgrid-pager-page:focus a, .pagination .page-item:hover .page-link, .jsgrid .jsgrid-pager .page-item:hover .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:hover .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-page:hover .page-link, .pagination .page-item:hover .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .page-item:hover .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item:hover a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:hover a, .pagination .page-item:hover +.jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .page-item:hover .jsgrid-pager-page a, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-item:hover a, .jsgrid .jsgrid-pager .jsgrid-pager-page:hover a { + background: #2196f3; + border-color: #2196f3; + color: #ffffff; } + +.pagination.flat .page-item .page-link, .jsgrid .flat.jsgrid-pager .page-item .page-link, .pagination.flat .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination.flat .jsgrid-pager-nav-button .page-link, .jsgrid .flat.jsgrid-pager .jsgrid-pager-nav-button .page-link, .pagination.flat +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link, +.jsgrid .jsgrid-pager .pagination.flat .jsgrid-pager-page .page-link, .jsgrid .flat.jsgrid-pager .jsgrid-pager-page .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.flat .page-item a, .pagination.flat .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination.flat .jsgrid-pager-nav-button a, .jsgrid .flat.jsgrid-pager .jsgrid-pager-nav-button a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.flat .page-item a, .pagination.flat .jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination.flat .jsgrid-pager-page a, .jsgrid .flat.jsgrid-pager .jsgrid-pager-page a { + border: none; + border-radius: 2px; } + +.pagination.separated .page-item, .jsgrid .separated.jsgrid-pager .page-item, .pagination.separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button, .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-nav-button, .jsgrid .separated.jsgrid-pager .jsgrid-pager-nav-button, .pagination.separated +.jsgrid .jsgrid-pager .jsgrid-pager-page, +.jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-page, .jsgrid .separated.jsgrid-pager .jsgrid-pager-page { + margin-left: 2px; + margin-right: 2px; } + .pagination.separated .page-item:first-child, .jsgrid .separated.jsgrid-pager .page-item:first-child, .pagination.separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child, .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-nav-button:first-child, .jsgrid .separated.jsgrid-pager .jsgrid-pager-nav-button:first-child, .pagination.separated + .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child, + .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-page:first-child, .jsgrid .separated.jsgrid-pager .jsgrid-pager-page:first-child { + margin-left: 0; } + .pagination.separated .page-item:last-child, .jsgrid .separated.jsgrid-pager .page-item:last-child, .pagination.separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child, .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-nav-button:last-child, .jsgrid .separated.jsgrid-pager .jsgrid-pager-nav-button:last-child, .pagination.separated + .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child, + .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-page:last-child, .jsgrid .separated.jsgrid-pager .jsgrid-pager-page:last-child { + margin-right: 0; } + .pagination.separated .page-item .page-link, .jsgrid .separated.jsgrid-pager .page-item .page-link, .pagination.separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-nav-button .page-link, .jsgrid .separated.jsgrid-pager .jsgrid-pager-nav-button .page-link, .pagination.separated + .jsgrid .jsgrid-pager .jsgrid-pager-page .page-link, + .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-page .page-link, .jsgrid .separated.jsgrid-pager .jsgrid-pager-page .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.separated .page-item a, .pagination.separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-nav-button a, .jsgrid .separated.jsgrid-pager .jsgrid-pager-nav-button a, + .jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.separated .page-item a, .pagination.separated .jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-page a, .jsgrid .separated.jsgrid-pager .jsgrid-pager-page a { + border-radius: 2px; } + +.pagination.rounded .page-item:first-child .page-link, .pagination.loader-demo-box .page-item:first-child .page-link, .jsgrid .loader-demo-box.jsgrid-pager .page-item:first-child .page-link, .jsgrid .rounded.jsgrid-pager .page-item:first-child .page-link, .pagination.rounded .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-nav-button:first-child .page-link, .pagination.loader-demo-box .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .pagination.rounded +.jsgrid .jsgrid-pager .jsgrid-pager-page:first-child .page-link, +.jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-page:first-child .page-link, .pagination.loader-demo-box +.jsgrid .jsgrid-pager .jsgrid-pager-page:first-child .page-link, +.jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-page:first-child .page-link, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-page:first-child .page-link, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-page:first-child .page-link, .pagination.rounded .page-item:first-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.rounded .page-item:first-child a, .pagination.loader-demo-box .page-item:first-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.loader-demo-box .page-item:first-child a, .jsgrid .loader-demo-box.jsgrid-pager .page-item:first-child .jsgrid-pager-nav-button a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-nav-button .page-item:first-child a, .jsgrid .rounded.jsgrid-pager .page-item:first-child .jsgrid-pager-nav-button a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-nav-button .page-item:first-child a, .pagination.rounded .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child a, .jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-nav-button:first-child a, .pagination.loader-demo-box .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child a, .jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-nav-button:first-child a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-nav-button:first-child a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-nav-button:first-child a, .pagination.rounded .page-item:first-child +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.rounded .page-item:first-child a, .pagination.loader-demo-box .page-item:first-child +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.loader-demo-box .page-item:first-child a, .jsgrid .loader-demo-box.jsgrid-pager .page-item:first-child .jsgrid-pager-page a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-page .page-item:first-child a, .jsgrid .rounded.jsgrid-pager .page-item:first-child .jsgrid-pager-page a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-page .page-item:first-child a, .pagination.rounded .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child a, .jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-page:first-child a, .pagination.loader-demo-box .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child a, .jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-page:first-child a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-page:first-child a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-page:first-child a { + border-radius: 25px 0 0 25px; } + +.pagination.rounded .page-item:last-child .page-link, .pagination.loader-demo-box .page-item:last-child .page-link, .jsgrid .loader-demo-box.jsgrid-pager .page-item:last-child .page-link, .jsgrid .rounded.jsgrid-pager .page-item:last-child .page-link, .pagination.rounded .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-nav-button:last-child .page-link, .pagination.loader-demo-box .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .pagination.rounded +.jsgrid .jsgrid-pager .jsgrid-pager-page:last-child .page-link, +.jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-page:last-child .page-link, .pagination.loader-demo-box +.jsgrid .jsgrid-pager .jsgrid-pager-page:last-child .page-link, +.jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-page:last-child .page-link, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-page:last-child .page-link, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-page:last-child .page-link, .pagination.rounded .page-item:last-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.rounded .page-item:last-child a, .pagination.loader-demo-box .page-item:last-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.loader-demo-box .page-item:last-child a, .jsgrid .loader-demo-box.jsgrid-pager .page-item:last-child .jsgrid-pager-nav-button a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-nav-button .page-item:last-child a, .jsgrid .rounded.jsgrid-pager .page-item:last-child .jsgrid-pager-nav-button a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-nav-button .page-item:last-child a, .pagination.rounded .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child a, .jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-nav-button:last-child a, .pagination.loader-demo-box .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child a, .jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-nav-button:last-child a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-nav-button:last-child a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-nav-button:last-child a, .pagination.rounded .page-item:last-child +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.rounded .page-item:last-child a, .pagination.loader-demo-box .page-item:last-child +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.loader-demo-box .page-item:last-child a, .jsgrid .loader-demo-box.jsgrid-pager .page-item:last-child .jsgrid-pager-page a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-page .page-item:last-child a, .jsgrid .rounded.jsgrid-pager .page-item:last-child .jsgrid-pager-page a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-page .page-item:last-child a, .pagination.rounded .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child a, .jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-page:last-child a, .pagination.loader-demo-box .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child a, .jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-page:last-child a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-page:last-child a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-page:last-child a { + border-radius: 0 25px 25px 0; } + +.pagination.rounded-flat .page-item, .jsgrid .rounded-flat.jsgrid-pager .page-item, .pagination.rounded-flat .jsgrid .jsgrid-pager .jsgrid-pager-nav-button, .jsgrid .jsgrid-pager .pagination.rounded-flat .jsgrid-pager-nav-button, .jsgrid .rounded-flat.jsgrid-pager .jsgrid-pager-nav-button, .pagination.rounded-flat +.jsgrid .jsgrid-pager .jsgrid-pager-page, +.jsgrid .jsgrid-pager .pagination.rounded-flat .jsgrid-pager-page, .jsgrid .rounded-flat.jsgrid-pager .jsgrid-pager-page { + margin-right: 3px; + margin-left: 3px; } + .pagination.rounded-flat .page-item .page-link, .jsgrid .rounded-flat.jsgrid-pager .page-item .page-link, .pagination.rounded-flat .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination.rounded-flat .jsgrid-pager-nav-button .page-link, .jsgrid .rounded-flat.jsgrid-pager .jsgrid-pager-nav-button .page-link, .pagination.rounded-flat + .jsgrid .jsgrid-pager .jsgrid-pager-page .page-link, + .jsgrid .jsgrid-pager .pagination.rounded-flat .jsgrid-pager-page .page-link, .jsgrid .rounded-flat.jsgrid-pager .jsgrid-pager-page .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.rounded-flat .page-item a, .pagination.rounded-flat .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination.rounded-flat .jsgrid-pager-nav-button a, .jsgrid .rounded-flat.jsgrid-pager .jsgrid-pager-nav-button a, + .jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.rounded-flat .page-item a, .pagination.rounded-flat .jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination.rounded-flat .jsgrid-pager-page a, .jsgrid .rounded-flat.jsgrid-pager .jsgrid-pager-page a { + border: none; + border-radius: 50px; } + +.pagination.rounded-separated .page-item, .jsgrid .rounded-separated.jsgrid-pager .page-item, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button, .pagination.rounded-separated +.jsgrid .jsgrid-pager .jsgrid-pager-page, +.jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page { + margin-left: 2px; + margin-right: 2px; } + .pagination.rounded-separated .page-item:first-child, .jsgrid .rounded-separated.jsgrid-pager .page-item:first-child, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button:first-child, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button:first-child, .pagination.rounded-separated + .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child, + .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page:first-child, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page:first-child { + margin-left: 0; } + .pagination.rounded-separated .page-item:first-child .page-link, .jsgrid .rounded-separated.jsgrid-pager .page-item:first-child .page-link, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .pagination.rounded-separated + .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child .page-link, + .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page:first-child .page-link, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page:first-child .page-link, .pagination.rounded-separated .page-item:first-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.rounded-separated .page-item:first-child a, .jsgrid .rounded-separated.jsgrid-pager .page-item:first-child .jsgrid-pager-nav-button a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button .page-item:first-child a, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child a, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button:first-child a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button:first-child a, .pagination.rounded-separated .page-item:first-child + .jsgrid .jsgrid-pager .jsgrid-pager-page a, + .jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.rounded-separated .page-item:first-child a, .jsgrid .rounded-separated.jsgrid-pager .page-item:first-child .jsgrid-pager-page a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page .page-item:first-child a, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child a, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page:first-child a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page:first-child a { + border-radius: 10px 0 0 10px; } + .pagination.rounded-separated .page-item:last-child, .jsgrid .rounded-separated.jsgrid-pager .page-item:last-child, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button:last-child, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button:last-child, .pagination.rounded-separated + .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child, + .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page:last-child, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page:last-child { + margin-right: 0; } + .pagination.rounded-separated .page-item:last-child .page-link, .jsgrid .rounded-separated.jsgrid-pager .page-item:last-child .page-link, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .pagination.rounded-separated + .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child .page-link, + .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page:last-child .page-link, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page:last-child .page-link, .pagination.rounded-separated .page-item:last-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.rounded-separated .page-item:last-child a, .jsgrid .rounded-separated.jsgrid-pager .page-item:last-child .jsgrid-pager-nav-button a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button .page-item:last-child a, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child a, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button:last-child a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button:last-child a, .pagination.rounded-separated .page-item:last-child + .jsgrid .jsgrid-pager .jsgrid-pager-page a, + .jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.rounded-separated .page-item:last-child a, .jsgrid .rounded-separated.jsgrid-pager .page-item:last-child .jsgrid-pager-page a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page .page-item:last-child a, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child a, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page:last-child a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page:last-child a { + border-radius: 0 10px 10px 0; } + .pagination.rounded-separated .page-item .page-link, .jsgrid .rounded-separated.jsgrid-pager .page-item .page-link, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button .page-link, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button .page-link, .pagination.rounded-separated + .jsgrid .jsgrid-pager .jsgrid-pager-page .page-link, + .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page .page-link, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.rounded-separated .page-item a, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button a, + .jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.rounded-separated .page-item a, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page a { + border-radius: 2px; } + +/* pagination variations */ +.pagination-primary .page-item.active .page-link, .pagination-primary .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-primary .active.jsgrid-pager-nav-button .page-link, .pagination-primary +.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link, +.jsgrid .jsgrid-pager .pagination-primary .active.jsgrid-pager-page .page-link, .pagination-primary .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-primary .page-item.active a, .pagination-primary .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-primary .active.jsgrid-pager-nav-button a, .pagination-primary .page-item.active +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-primary .page-item.active a, .pagination-primary .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-primary .active.jsgrid-pager-page a { + background: #2196f3; + border-color: #2196f3; } + +.pagination-primary .page-item .page-link:hover, .pagination-primary .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-primary .jsgrid-pager-nav-button .page-link:hover, .pagination-primary +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover, +.jsgrid .jsgrid-pager .pagination-primary .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-primary .page-item a:hover, .pagination-primary .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-primary .jsgrid-pager-nav-button a:hover, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-primary .page-item a:hover, .pagination-primary .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-primary .jsgrid-pager-page a:hover { + background: #39a1f4; + border-color: #2196f3; + color: #ffffff; } + +.pagination-secondary .page-item.active .page-link, .pagination-secondary .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-secondary .active.jsgrid-pager-nav-button .page-link, .pagination-secondary +.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link, +.jsgrid .jsgrid-pager .pagination-secondary .active.jsgrid-pager-page .page-link, .pagination-secondary .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-secondary .page-item.active a, .pagination-secondary .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-secondary .active.jsgrid-pager-nav-button a, .pagination-secondary .page-item.active +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-secondary .page-item.active a, .pagination-secondary .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-secondary .active.jsgrid-pager-page a { + background: #e6eef2; + border-color: #e6eef2; } + +.pagination-secondary .page-item .page-link:hover, .pagination-secondary .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-secondary .jsgrid-pager-nav-button .page-link:hover, .pagination-secondary +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover, +.jsgrid .jsgrid-pager .pagination-secondary .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-secondary .page-item a:hover, .pagination-secondary .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-secondary .jsgrid-pager-nav-button a:hover, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-secondary .page-item a:hover, .pagination-secondary .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-secondary .jsgrid-pager-page a:hover { + background: #f7f9fb; + border-color: #e6eef2; + color: #ffffff; } + +.pagination-success .page-item.active .page-link, .pagination-success .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-success .active.jsgrid-pager-nav-button .page-link, .pagination-success +.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link, +.jsgrid .jsgrid-pager .pagination-success .active.jsgrid-pager-page .page-link, .pagination-success .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-success .page-item.active a, .pagination-success .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-success .active.jsgrid-pager-nav-button a, .pagination-success .page-item.active +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-success .page-item.active a, .pagination-success .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-success .active.jsgrid-pager-page a { + background: #19d895; + border-color: #19d895; } + +.pagination-success .page-item .page-link:hover, .pagination-success .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-success .jsgrid-pager-nav-button .page-link:hover, .pagination-success +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover, +.jsgrid .jsgrid-pager .pagination-success .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-success .page-item a:hover, .pagination-success .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-success .jsgrid-pager-nav-button a:hover, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-success .page-item a:hover, .pagination-success .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-success .jsgrid-pager-page a:hover { + background: #25e6a2; + border-color: #19d895; + color: #ffffff; } + +.pagination-info .page-item.active .page-link, .pagination-info .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-info .active.jsgrid-pager-nav-button .page-link, .pagination-info +.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link, +.jsgrid .jsgrid-pager .pagination-info .active.jsgrid-pager-page .page-link, .pagination-info .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-info .page-item.active a, .pagination-info .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-info .active.jsgrid-pager-nav-button a, .pagination-info .page-item.active +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-info .page-item.active a, .pagination-info .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-info .active.jsgrid-pager-page a { + background: #8862e0; + border-color: #8862e0; } + +.pagination-info .page-item .page-link:hover, .pagination-info .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-info .jsgrid-pager-nav-button .page-link:hover, .pagination-info +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover, +.jsgrid .jsgrid-pager .pagination-info .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-info .page-item a:hover, .pagination-info .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-info .jsgrid-pager-nav-button a:hover, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-info .page-item a:hover, .pagination-info .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-info .jsgrid-pager-page a:hover { + background: #9877e4; + border-color: #8862e0; + color: #ffffff; } + +.pagination-warning .page-item.active .page-link, .pagination-warning .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-warning .active.jsgrid-pager-nav-button .page-link, .pagination-warning +.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link, +.jsgrid .jsgrid-pager .pagination-warning .active.jsgrid-pager-page .page-link, .pagination-warning .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-warning .page-item.active a, .pagination-warning .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-warning .active.jsgrid-pager-nav-button a, .pagination-warning .page-item.active +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-warning .page-item.active a, .pagination-warning .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-warning .active.jsgrid-pager-page a { + background: #ffaf00; + border-color: #ffaf00; } + +.pagination-warning .page-item .page-link:hover, .pagination-warning .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-warning .jsgrid-pager-nav-button .page-link:hover, .pagination-warning +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover, +.jsgrid .jsgrid-pager .pagination-warning .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-warning .page-item a:hover, .pagination-warning .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-warning .jsgrid-pager-nav-button a:hover, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-warning .page-item a:hover, .pagination-warning .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-warning .jsgrid-pager-page a:hover { + background: #ffb71a; + border-color: #ffaf00; + color: #ffffff; } + +.pagination-danger .page-item.active .page-link, .pagination-danger .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-danger .active.jsgrid-pager-nav-button .page-link, .pagination-danger +.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link, +.jsgrid .jsgrid-pager .pagination-danger .active.jsgrid-pager-page .page-link, .pagination-danger .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-danger .page-item.active a, .pagination-danger .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-danger .active.jsgrid-pager-nav-button a, .pagination-danger .page-item.active +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-danger .page-item.active a, .pagination-danger .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-danger .active.jsgrid-pager-page a { + background: #ff6258; + border-color: #ff6258; } + +.pagination-danger .page-item .page-link:hover, .pagination-danger .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-danger .jsgrid-pager-nav-button .page-link:hover, .pagination-danger +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover, +.jsgrid .jsgrid-pager .pagination-danger .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-danger .page-item a:hover, .pagination-danger .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-danger .jsgrid-pager-nav-button a:hover, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-danger .page-item a:hover, .pagination-danger .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-danger .jsgrid-pager-page a:hover { + background: #ff7a72; + border-color: #ff6258; + color: #ffffff; } + +.pagination-light .page-item.active .page-link, .pagination-light .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-light .active.jsgrid-pager-nav-button .page-link, .pagination-light +.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link, +.jsgrid .jsgrid-pager .pagination-light .active.jsgrid-pager-page .page-link, .pagination-light .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-light .page-item.active a, .pagination-light .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-light .active.jsgrid-pager-nav-button a, .pagination-light .page-item.active +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-light .page-item.active a, .pagination-light .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-light .active.jsgrid-pager-page a { + background: #fbfbfb; + border-color: #fbfbfb; } + +.pagination-light .page-item .page-link:hover, .pagination-light .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-light .jsgrid-pager-nav-button .page-link:hover, .pagination-light +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover, +.jsgrid .jsgrid-pager .pagination-light .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-light .page-item a:hover, .pagination-light .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-light .jsgrid-pager-nav-button a:hover, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-light .page-item a:hover, .pagination-light .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-light .jsgrid-pager-page a:hover { + background: white; + border-color: #fbfbfb; + color: #ffffff; } + +.pagination-dark .page-item.active .page-link, .pagination-dark .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-dark .active.jsgrid-pager-nav-button .page-link, .pagination-dark +.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link, +.jsgrid .jsgrid-pager .pagination-dark .active.jsgrid-pager-page .page-link, .pagination-dark .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-dark .page-item.active a, .pagination-dark .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-dark .active.jsgrid-pager-nav-button a, .pagination-dark .page-item.active +.jsgrid .jsgrid-pager .jsgrid-pager-page a, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-dark .page-item.active a, .pagination-dark .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-dark .active.jsgrid-pager-page a { + background: #252C46; + border-color: #252C46; } + +.pagination-dark .page-item .page-link:hover, .pagination-dark .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-dark .jsgrid-pager-nav-button .page-link:hover, .pagination-dark +.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover, +.jsgrid .jsgrid-pager .pagination-dark .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-dark .page-item a:hover, .pagination-dark .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-dark .jsgrid-pager-nav-button a:hover, +.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-dark .page-item a:hover, .pagination-dark .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-dark .jsgrid-pager-page a:hover { + background: #2e3657; + border-color: #252C46; + color: #ffffff; } + +/* Popovers */ +.popover-static-demo .popover { + width: 185px; + position: relative; + display: block; + float: left; + margin: 1rem 0.5rem; } + .popover-static-demo .popover.bs-popover-bottom-demo .arrow, .popover-static-demo .popover.bs-popover-top-demo .arrow { + left: 50%; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); } + .popover-static-demo .popover.bs-popover-left-demo .arrow, .popover-static-demo .popover.bs-popover-right-demo .arrow { + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); } + +.popover { + z-index: 1029; } + .popover.bs-popover-top-demo .arrow:before { + border-top-color: #e3f2fd; } + .popover.bs-popover-top-demo .arrow:after { + border-top-color: #e3f2fd; } + .popover.bs-popover-right-demo .arrow:before { + border-right-color: #e3f2fd; } + .popover.bs-popover-right-demo .arrow:after { + border-right-color: #e3f2fd; } + .popover.bs-popover-bottom-demo .arrow:before { + border-bottom-color: #e3f2fd; } + .popover.bs-popover-bottom-demo .arrow:after { + border-bottom-color: #e3f2fd; } + .popover.bs-popover-bottom-demo .popover-header:before { + border-bottom: 0; } + .popover.bs-popover-left-demo .arrow:before { + border-left-color: #e3f2fd; } + .popover.bs-popover-left-demo .arrow:after { + border-left-color: #e3f2fd; } + .popover .popover-header { + font-size: 0.9375rem; + border-bottom: 0; + color: #2196f3; + background: #e3f2fd; } + .popover .popover-body { + color: #000; + background: #e3f2fd; } + .popover.left .arrow:after { + border-left-color: #e3f2fd; } + .popover.right .arrow:after { + border-right-color: #e3f2fd; } + +.popover-primary .popover-header { + background: #2196f3; + color: #ffffff; } + +.popover-primary.bs-popover-top .arrow:after, .popover-primary.bs-popover-auto[x-placement^="top"] .arrow:after, .popover-primary.bs-popover-top .arrow:before, .popover-primary.bs-popover-auto[x-placement^="top"] .arrow:before { + border-top-color: #2196f3; } + +.popover-primary.bs-popover-right .arrow:after, .popover-primary.bs-popover-auto[x-placement^="right"] .arrow:after, .popover-primary.bs-popover-right .arrow:before, .popover-primary.bs-popover-auto[x-placement^="right"] .arrow:before { + border-right-color: #2196f3; } + +.popover-primary.bs-popover-bottom .arrow:after, .popover-primary.bs-popover-auto[x-placement^="bottom"] .arrow:after, .popover-primary.bs-popover-bottom .arrow:before, .popover-primary.bs-popover-auto[x-placement^="bottom"] .arrow:before { + border-bottom-color: #2196f3; } + +.popover-primary.bs-popover-left .arrow:after, .popover-primary.bs-popover-auto[x-placement^="left"] .arrow:after, .popover-primary.bs-popover-left .arrow:before, .popover-primary.bs-popover-auto[x-placement^="left"] .arrow:before { + border-left-color: #2196f3; } + +.popover-secondary .popover-header { + background: #e6eef2; + color: #ffffff; } + +.popover-secondary.bs-popover-top .arrow:after, .popover-secondary.bs-popover-auto[x-placement^="top"] .arrow:after, .popover-secondary.bs-popover-top .arrow:before, .popover-secondary.bs-popover-auto[x-placement^="top"] .arrow:before { + border-top-color: #e6eef2; } + +.popover-secondary.bs-popover-right .arrow:after, .popover-secondary.bs-popover-auto[x-placement^="right"] .arrow:after, .popover-secondary.bs-popover-right .arrow:before, .popover-secondary.bs-popover-auto[x-placement^="right"] .arrow:before { + border-right-color: #e6eef2; } + +.popover-secondary.bs-popover-bottom .arrow:after, .popover-secondary.bs-popover-auto[x-placement^="bottom"] .arrow:after, .popover-secondary.bs-popover-bottom .arrow:before, .popover-secondary.bs-popover-auto[x-placement^="bottom"] .arrow:before { + border-bottom-color: #e6eef2; } + +.popover-secondary.bs-popover-left .arrow:after, .popover-secondary.bs-popover-auto[x-placement^="left"] .arrow:after, .popover-secondary.bs-popover-left .arrow:before, .popover-secondary.bs-popover-auto[x-placement^="left"] .arrow:before { + border-left-color: #e6eef2; } + +.popover-success .popover-header { + background: #19d895; + color: #ffffff; } + +.popover-success.bs-popover-top .arrow:after, .popover-success.bs-popover-auto[x-placement^="top"] .arrow:after, .popover-success.bs-popover-top .arrow:before, .popover-success.bs-popover-auto[x-placement^="top"] .arrow:before { + border-top-color: #19d895; } + +.popover-success.bs-popover-right .arrow:after, .popover-success.bs-popover-auto[x-placement^="right"] .arrow:after, .popover-success.bs-popover-right .arrow:before, .popover-success.bs-popover-auto[x-placement^="right"] .arrow:before { + border-right-color: #19d895; } + +.popover-success.bs-popover-bottom .arrow:after, .popover-success.bs-popover-auto[x-placement^="bottom"] .arrow:after, .popover-success.bs-popover-bottom .arrow:before, .popover-success.bs-popover-auto[x-placement^="bottom"] .arrow:before { + border-bottom-color: #19d895; } + +.popover-success.bs-popover-left .arrow:after, .popover-success.bs-popover-auto[x-placement^="left"] .arrow:after, .popover-success.bs-popover-left .arrow:before, .popover-success.bs-popover-auto[x-placement^="left"] .arrow:before { + border-left-color: #19d895; } + +.popover-info .popover-header { + background: #8862e0; + color: #ffffff; } + +.popover-info.bs-popover-top .arrow:after, .popover-info.bs-popover-auto[x-placement^="top"] .arrow:after, .popover-info.bs-popover-top .arrow:before, .popover-info.bs-popover-auto[x-placement^="top"] .arrow:before { + border-top-color: #8862e0; } + +.popover-info.bs-popover-right .arrow:after, .popover-info.bs-popover-auto[x-placement^="right"] .arrow:after, .popover-info.bs-popover-right .arrow:before, .popover-info.bs-popover-auto[x-placement^="right"] .arrow:before { + border-right-color: #8862e0; } + +.popover-info.bs-popover-bottom .arrow:after, .popover-info.bs-popover-auto[x-placement^="bottom"] .arrow:after, .popover-info.bs-popover-bottom .arrow:before, .popover-info.bs-popover-auto[x-placement^="bottom"] .arrow:before { + border-bottom-color: #8862e0; } + +.popover-info.bs-popover-left .arrow:after, .popover-info.bs-popover-auto[x-placement^="left"] .arrow:after, .popover-info.bs-popover-left .arrow:before, .popover-info.bs-popover-auto[x-placement^="left"] .arrow:before { + border-left-color: #8862e0; } + +.popover-warning .popover-header { + background: #ffaf00; + color: #ffffff; } + +.popover-warning.bs-popover-top .arrow:after, .popover-warning.bs-popover-auto[x-placement^="top"] .arrow:after, .popover-warning.bs-popover-top .arrow:before, .popover-warning.bs-popover-auto[x-placement^="top"] .arrow:before { + border-top-color: #ffaf00; } + +.popover-warning.bs-popover-right .arrow:after, .popover-warning.bs-popover-auto[x-placement^="right"] .arrow:after, .popover-warning.bs-popover-right .arrow:before, .popover-warning.bs-popover-auto[x-placement^="right"] .arrow:before { + border-right-color: #ffaf00; } + +.popover-warning.bs-popover-bottom .arrow:after, .popover-warning.bs-popover-auto[x-placement^="bottom"] .arrow:after, .popover-warning.bs-popover-bottom .arrow:before, .popover-warning.bs-popover-auto[x-placement^="bottom"] .arrow:before { + border-bottom-color: #ffaf00; } + +.popover-warning.bs-popover-left .arrow:after, .popover-warning.bs-popover-auto[x-placement^="left"] .arrow:after, .popover-warning.bs-popover-left .arrow:before, .popover-warning.bs-popover-auto[x-placement^="left"] .arrow:before { + border-left-color: #ffaf00; } + +.popover-danger .popover-header { + background: #ff6258; + color: #ffffff; } + +.popover-danger.bs-popover-top .arrow:after, .popover-danger.bs-popover-auto[x-placement^="top"] .arrow:after, .popover-danger.bs-popover-top .arrow:before, .popover-danger.bs-popover-auto[x-placement^="top"] .arrow:before { + border-top-color: #ff6258; } + +.popover-danger.bs-popover-right .arrow:after, .popover-danger.bs-popover-auto[x-placement^="right"] .arrow:after, .popover-danger.bs-popover-right .arrow:before, .popover-danger.bs-popover-auto[x-placement^="right"] .arrow:before { + border-right-color: #ff6258; } + +.popover-danger.bs-popover-bottom .arrow:after, .popover-danger.bs-popover-auto[x-placement^="bottom"] .arrow:after, .popover-danger.bs-popover-bottom .arrow:before, .popover-danger.bs-popover-auto[x-placement^="bottom"] .arrow:before { + border-bottom-color: #ff6258; } + +.popover-danger.bs-popover-left .arrow:after, .popover-danger.bs-popover-auto[x-placement^="left"] .arrow:after, .popover-danger.bs-popover-left .arrow:before, .popover-danger.bs-popover-auto[x-placement^="left"] .arrow:before { + border-left-color: #ff6258; } + +.popover-light .popover-header { + background: #fbfbfb; + color: #ffffff; } + +.popover-light.bs-popover-top .arrow:after, .popover-light.bs-popover-auto[x-placement^="top"] .arrow:after, .popover-light.bs-popover-top .arrow:before, .popover-light.bs-popover-auto[x-placement^="top"] .arrow:before { + border-top-color: #fbfbfb; } + +.popover-light.bs-popover-right .arrow:after, .popover-light.bs-popover-auto[x-placement^="right"] .arrow:after, .popover-light.bs-popover-right .arrow:before, .popover-light.bs-popover-auto[x-placement^="right"] .arrow:before { + border-right-color: #fbfbfb; } + +.popover-light.bs-popover-bottom .arrow:after, .popover-light.bs-popover-auto[x-placement^="bottom"] .arrow:after, .popover-light.bs-popover-bottom .arrow:before, .popover-light.bs-popover-auto[x-placement^="bottom"] .arrow:before { + border-bottom-color: #fbfbfb; } + +.popover-light.bs-popover-left .arrow:after, .popover-light.bs-popover-auto[x-placement^="left"] .arrow:after, .popover-light.bs-popover-left .arrow:before, .popover-light.bs-popover-auto[x-placement^="left"] .arrow:before { + border-left-color: #fbfbfb; } + +.popover-dark .popover-header { + background: #252C46; + color: #ffffff; } + +.popover-dark.bs-popover-top .arrow:after, .popover-dark.bs-popover-auto[x-placement^="top"] .arrow:after, .popover-dark.bs-popover-top .arrow:before, .popover-dark.bs-popover-auto[x-placement^="top"] .arrow:before { + border-top-color: #252C46; } + +.popover-dark.bs-popover-right .arrow:after, .popover-dark.bs-popover-auto[x-placement^="right"] .arrow:after, .popover-dark.bs-popover-right .arrow:before, .popover-dark.bs-popover-auto[x-placement^="right"] .arrow:before { + border-right-color: #252C46; } + +.popover-dark.bs-popover-bottom .arrow:after, .popover-dark.bs-popover-auto[x-placement^="bottom"] .arrow:after, .popover-dark.bs-popover-bottom .arrow:before, .popover-dark.bs-popover-auto[x-placement^="bottom"] .arrow:before { + border-bottom-color: #252C46; } + +.popover-dark.bs-popover-left .arrow:after, .popover-dark.bs-popover-auto[x-placement^="left"] .arrow:after, .popover-dark.bs-popover-left .arrow:before, .popover-dark.bs-popover-auto[x-placement^="left"] .arrow:before { + border-left-color: #252C46; } + +/* Portfolio */ +.portfolio-grid figure { + position: relative; + float: left; + overflow: hidden; + width: 100%; + background: #ffaf00; + text-align: center; + cursor: pointer; } + @media (max-width: 767px) { + .portfolio-grid figure { + width: 270px; } } + .portfolio-grid figure img { + position: relative; + display: block; + min-height: 100%; + max-width: 100%; + width: 100%; + opacity: 0.8; } + .portfolio-grid figure figcaption { + padding: 2em; + color: #ffffff; + text-transform: uppercase; + font-size: 1.25em; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } + .portfolio-grid figure figcaption:after, .portfolio-grid figure figcaption:before { + pointer-events: none; } + .portfolio-grid figure.effect-text-in { + border-radius: 0.25rem; } + .portfolio-grid figure.effect-text-in h4, + .portfolio-grid figure.effect-text-in img { + -webkit-transition: -webkit-transform 0.35s; + transition: -webkit-transform 0.35s; + transition: transform 0.35s; + transition: transform 0.35s, -webkit-transform 0.35s; } + .portfolio-grid figure.effect-text-in img { + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } + .portfolio-grid figure.effect-text-in h4, + .portfolio-grid figure.effect-text-in p { + position: absolute; + bottom: 10px; + left: 0; + padding: 10px; + margin-bottom: 0; + width: 100%; } + .portfolio-grid figure.effect-text-in p { + text-transform: none; + opacity: 0; + -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; + transition: opacity 0.35s, -webkit-transform 0.35s; + transition: opacity 0.35s, transform 0.35s; + transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; + -webkit-transform: translate3d(0, 50px, 0); + transform: translate3d(0, 50px, 0); } + .portfolio-grid figure.effect-text-in:hover img { + -webkit-transform: translate3d(0, -80px, 0); + transform: translate3d(0, -80px, 0); } + .portfolio-grid figure.effect-text-in:hover h4 { + -webkit-transform: translate3d(0, -100px, 0); + transform: translate3d(0, -100px, 0); } + .portfolio-grid figure.effect-text-in:hover p { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } + +/* Preview */ +.preview-list .preview-item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + padding: 0.75rem 1.5rem; + font-size: 0.875rem; + border-bottom: 1px solid #f2f2f2; } + .preview-list .preview-item:last-child { + border-bottom: 0; } + .preview-list .preview-item:hover { + background: #f8f9fa; } + .preview-list .preview-item .form-check { + margin-top: 8px; + margin-right: 1rem; } + .preview-list .preview-item .preview-thumbnail { + color: #ffffff; + position: relative; } + .preview-list .preview-item .preview-thumbnail .preview-icon, + .preview-list .preview-item .preview-thumbnail img { + border-radius: 100%; } + .preview-list .preview-item .preview-thumbnail .preview-icon { + padding: 6px; + text-align: center; } + .preview-list .preview-item .preview-thumbnail .preview-icon i { + font-size: 1.125rem; } + .preview-list .preview-item .preview-thumbnail .badge { + border: 2px solid #ffffff; + border-radius: 100%; + bottom: 5px; + display: block; + height: 14px; + left: -5px; + padding: 0; + position: absolute; + width: 14px; } + .preview-list .preview-item .preview-item-content { + line-height: 1; + padding-left: 1.5rem; } + .rtl .preview-list .preview-item .preview-item-content { + padding-left: 0; + padding-right: 1.5rem; } + .preview-list .preview-item .preview-item-content:first-child { + padding-left: 0; } + .rtl .preview-list .preview-item .preview-item-content:first-child { + padding-right: 0; } + .preview-list .preview-item .preview-item-content p { + margin-bottom: 10px; } + .preview-list .preview-item .preview-item-content p .content-category { + font-family: "Poppins", sans-serif; + padding-right: 15px; + border-right: 1px solid #f2f2f2; } + .preview-list .preview-item .preview-actions { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .preview-list .preview-item .preview-actions i { + width: 29px; + color: #f7f7f9; + height: 29px; + border: 2px solid #f7f7f9; + border-radius: 100%; + padding: 3px 6px; + display: inline-block; } + .preview-list .preview-item .preview-actions i:first-child { + margin-right: 10px; } + +.preview-list.comment-preview .preview-item { + padding: 0.87rem 0; } + .preview-list.comment-preview .preview-item:first-child { + padding-top: 0; } + .preview-list.comment-preview .preview-item p { + line-height: 27px; } + +.preview-list.bordered .preview-item { + border-bottom: 1px solid #f2f2f2; } + .preview-list.bordered .preview-item:last-child { + border-bottom: 0; } + +/* Pricing table */ +.pricing-table .pricing-card .pricing-card-body { + padding: 50px 56px 43px; } + .pricing-table .pricing-card .pricing-card-body .plan-features { + width: 100%; + margin-bottom: 32px; } + .pricing-table .pricing-card .pricing-card-body .plan-features li { + text-align: left; + padding: 4px 0; + font-family: "Poppins", sans-serif; + font-size: 0.875rem; } + +/* Tables */ +.table, .jsgrid .jsgrid-table { + margin-bottom: 0; } + .table thead th, .jsgrid .jsgrid-table thead th { + border-top: 0; + border-bottom-width: 1px; + font-family: "Poppins", sans-serif; + font-weight: 500; } + .table thead th i, .jsgrid .jsgrid-table thead th i { + margin-left: 0.325rem; } + .table td, .jsgrid .jsgrid-table td, + .table th, .jsgrid .jsgrid-table th { + vertical-align: middle; + font-size: 0.875rem; + line-height: 1; + white-space: nowrap; + height: 35px; + padding: 18px 15px; } + .table td img, .jsgrid .jsgrid-table td img, + .table th img, .jsgrid .jsgrid-table th img { + border-radius: 100%; } + .table td .badge, .jsgrid .jsgrid-table td .badge, + .table th .badge, .jsgrid .jsgrid-table th .badge { + margin-bottom: 0; } + .table td .form-check, .jsgrid .jsgrid-table td .form-check, + .table td .form-radio, .jsgrid .jsgrid-table td .form-radio, + .table th .form-check, .jsgrid .jsgrid-table th .form-check, + .table th .form-radio, .jsgrid .jsgrid-table th .form-radio { + margin-top: 0; + margin-bottom: -0px; } + .table.table-borderless, .jsgrid .table-borderless.jsgrid-table { + border: none; } + .table.table-borderless td, .jsgrid .table-borderless.jsgrid-table td, + .table.table-borderless th, .jsgrid .table-borderless.jsgrid-table th, + .table.table-borderless tr, .jsgrid .table-borderless.jsgrid-table tr { + border: none; } + .table.table-bordered thead, .jsgrid .table-bordered.jsgrid-table thead { + border: 1px solid #f2f2f2; + border-bottom: none; } + .table.table-bordered thead tr th, .jsgrid .table-bordered.jsgrid-table thead tr th { + border-left: none; + border-right: none; } + .table.table-striped thead tr, .jsgrid .table-striped.jsgrid-table thead tr { + background-color: #fbfbfb; } + +/* Tabs */ +.nav-pills .nav-item .nav-link, +.nav-tabs .nav-item .nav-link { + font-family: "Poppins", sans-serif; + line-height: 1; + font-size: 0.875rem; + color: #000; + text-align: center; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .nav-pills .nav-item .nav-link i, + .nav-tabs .nav-item .nav-link i { + margin-right: 10px; } + +.tab-content { + font-family: "Poppins", sans-serif; + font-size: 0.875rem; + line-height: 1.71; } + +.tab-basic { + border-bottom: none; + margin-bottom: 20px; } + .tab-basic .nav-item { + margin-right: 7%; } + .tab-basic .nav-item .nav-link { + color: #858585; + padding: 0 0 7px; + border-top: none; + border-right: none; + border-left: none; + border-bottom: 2px solid #ffffff; } + .tab-basic .nav-item .nav-link.active { + border-top: none; + border-right: none; + border-left: none; + border-bottom: 2px solid #19d895; + color: #19d895; } + +.tab-solid { + border: none; + margin-bottom: 30px; } + .tab-solid .nav-item .nav-link { + border: none; + padding: 10px 16px; + border-radius: 4px; } + .tab-solid .nav-item .nav-link:nth(fist-child) { + padding-left: 0; } + .tab-solid .nav-item .nav-link.active { + border: none; + color: #ffffff; } + +.tab-content-solid { + border: none; + padding-left: 0; + padding-right: 0; } + +.tab-solid-primary .nav-link.active { + background: #2196f3; } + +.tab-solid-secondary .nav-link.active { + background: #e6eef2; } + +.tab-solid-success .nav-link.active { + background: #19d895; } + +.tab-solid-info .nav-link.active { + background: #8862e0; } + +.tab-solid-warning .nav-link.active { + background: #ffaf00; } + +.tab-solid-danger .nav-link.active { + background: #ff6258; } + +.tab-solid-light .nav-link.active { + background: #fbfbfb; } + +.tab-solid-dark .nav-link.active { + background: #252C46; } + +.tab-minimal .nav-tabs { + border: none; } + .tab-minimal .nav-tabs .nav-item .nav-link { + border: none; + font-size: 14px; } + .tab-minimal .nav-tabs .nav-item .nav-link.active { + font-weight: 600; } + .tab-minimal .nav-tabs .nav-item .nav-link:first-child { + padding-left: 0; } + +.tab-simple-styled { + border-bottom: none; + margin-top: 30px; + margin-bottom: 30px; } + .tab-simple-styled .nav-item { + margin-right: 30px; } + .tab-simple-styled .nav-item .nav-link { + border: none; + padding: 0; + color: #858585; } + .tab-simple-styled .nav-item .nav-link.active { + color: #8862e0; } + +.vertical-tab { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .vertical-tab .nav-tabs { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + margin-bottom: 0; } + .vertical-tab .tab-content { + margin-bottom: 0; } + +/* Settings Panel */ +.settings-panel { + display: block; + position: fixed; + top: 0; + right: -300px; + bottom: 0; + width: 300px; + height: 100vh; + min-height: 100%; + background: #ffffff; + padding-top: 50px; + -webkit-transition-duration: 0.25s; + transition-duration: 0.25s; + -webkit-transition-timing-function: ease; + transition-timing-function: ease; + -webkit-transition-property: right, -webkit-box-shadow; + transition-property: right, -webkit-box-shadow; + transition-property: right, box-shadow; + transition-property: right, box-shadow, -webkit-box-shadow; + z-index: 9999; } + .settings-panel .nav-tabs { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; + margin: 0; + padding: 0; + background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1); } + .settings-panel .nav-tabs .nav-item { + border: none; } + .settings-panel .nav-tabs .nav-item .nav-link { + text-align: center; + border: none; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + color: rgba(255, 255, 255, 0.5); + -webkit-transition-duration: 0.4s; + transition-duration: 0.4s; + -webkit-transition-property: color; + transition-property: color; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .settings-panel .nav-tabs .nav-item .nav-link.active { + background: transparent; + color: #ffffff; } + .settings-panel .tab-content { + border: none; + padding: 20px 0 0; } + .settings-panel .tab-content .tab-pane.scroll-wrapper { + position: relative; + max-height: 100vh; + height: 100%; + padding-bottom: 150px; } + .settings-panel .settings-heading { + padding: 16px 0 13px 20px; } + .rtl .settings-panel .settings-heading { + padding: 16px 35px 13px 0; + text-align: right; } + .rtl .settings-panel small.settings-heading { + padding: 16px 0 13px 12px; } + .settings-panel .sidebar-bg-options { + padding: 13px 35px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + font-size: 0.875rem; + line-height: 1; + color: #595959; + background: #ffffff; + -webkit-transition-duration: 0.25s; + transition-duration: 0.25s; + -webkit-transition-property: background; + transition-property: background; } + .settings-panel .sidebar-bg-options.selected { + background: #f7f7f9; } + .settings-panel .color-tiles { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-pack: distribute; + justify-content: space-around; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin: 0 35px 10px; + padding-top: 15px; } + .settings-panel .color-tiles .tiles { + margin: 10px 18px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .settings-panel .color-tiles .tiles:before { + content: ""; + width: 0; + height: 0; + opacity: 0; + background: rgba(255, 255, 255, 0.5); + border-radius: 100%; + border: 0 solid rgba(255, 255, 255, 0.4); + -webkit-transition-duration: 0.25s; + transition-duration: 0.25s; + -webkit-transition-timing-function: ease; + transition-timing-function: ease; } + .settings-panel .color-tiles .tiles.selected:before { + width: 10px; + height: 10px; + opacity: 1; + border-width: 1px; } + .settings-panel .color-tiles .tiles.pink { + background: #E91E63; } + .settings-panel .color-tiles .tiles.default { + border: 1px solid white; + background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1); } + .settings-panel .chat-list { + padding-left: 0; } + .settings-panel .chat-list .list { + padding: 0.4rem 0.8rem; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + border-bottom: 1px solid #f2f2f2; } + .settings-panel .chat-list .list:last-child { + border-bottom: none; } + .settings-panel .chat-list .list .profile { + position: relative; + margin-right: 1rem; } + .settings-panel .chat-list .list .profile img { + width: 2.50rem; + height: 2.50rem; + border-radius: 100%; } + .settings-panel .chat-list .list .profile span { + height: 0.75rem; + width: 0.75rem; + position: absolute; + bottom: 0.34rem; + right: 0; + border: 0.13rem solid #ffffff; + border-radius: 100%; } + .settings-panel .chat-list .list .profile span.online { + background: #19d895; } + .settings-panel .chat-list .list .profile span.offline { + background: #ffaf00; } + .settings-panel .chat-list .list .info { + margin-right: auto; } + .settings-panel .chat-list .list .info p { + display: block; + margin-bottom: 0; } + .settings-panel .chat-list .list .info p:last-child { + opacity: 0.5; + font-size: 0.8rem; } + .rtl .settings-panel .chat-list .list .info p:last-child { + text-align: right; } + .settings-panel .chat-list .list.active { + background: #fbfbfb; } + .settings-panel.open { + right: 0; + -webkit-box-shadow: 7px 0 80px -9px rgba(0, 0, 0, 0.2); + box-shadow: 7px 0 80px -9px rgba(0, 0, 0, 0.2); } + .dark-theme .settings-panel.open { + -webkit-box-shadow: 7px 0 80px -9px rgba(0, 0, 0, 0.8); + box-shadow: 7px 0 80px -9px rgba(0, 0, 0, 0.8); } + .settings-panel .settings-close { + position: absolute; + top: 47px; + right: 10px; + color: #2196f3; + background: transparent; + border-radius: 4px; + padding: 0 3px; + cursor: pointer; + -webkit-transition-duration: 0.2s; + transition-duration: 0.2s; + z-index: 999; } + .settings-panel .settings-close:hover { + background: rgba(255, 255, 255, 0.3); } + .rtl .settings-panel .settings-close { + right: unset; + left: 10px; } + .settings-panel .events p { + font-family: "Poppins", sans-serif; } + .rtl .settings-panel .events p { + text-align: right; } + .rtl .settings-panel { + right: unset; + left: -300px; + -webkit-transition-property: left; + transition-property: left; } + .rtl .settings-panel .chat-list { + padding-right: 0; } + .rtl .settings-panel .chat-list .list .profile { + margin-right: 0; + margin-left: 1rem; } + .rtl .settings-panel .chat-list .list .info { + margin-right: 0; + margin-left: auto; } + .rtl .settings-panel .chat-list .list .info .badge { + margin-right: 10px; } + .rtl .settings-panel.open { + left: 0; + right: unset; } + +/* Tabs */ +.add-items { + margin-bottom: 1.5rem; + overflow: hidden; } + .add-items input[type="text"] { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + width: 100%; } + .add-items .btn, .add-items .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .add-items .ajax-file-upload, .add-items .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .add-items .swal2-styled, .add-items .wizard > .actions a, .wizard > .actions .add-items a { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.list-wrapper { + height: 100%; + max-height: 100%; } + .list-wrapper ul { + padding: 0; + text-align: left; + list-style: none; + margin-bottom: 0; } + .list-wrapper ul li { + font-size: 0.9375rem; + padding: 0.4rem 0; + border-bottom: 1px solid #f2f2f2; } + .list-wrapper ul li .form-check { + max-width: 90%; } + .list-wrapper ul li .col-content { + width: 100%; } + .list-wrapper ul li .col-content > div { + width: 100%; } + .list-wrapper input[type="checkbox"] { + margin-right: 15px; } + .list-wrapper .remove { + margin-left: auto; + cursor: pointer; + font-size: 1.3rem; + font-weight: 600; + color: #2196f3; + width: 1.25rem; + height: 1.25rem; + line-height: 20px; + text-align: center; } + .rtl .list-wrapper .remove { + margin-right: auto; + margin-left: 0; } + .list-wrapper .completed { + text-decoration: line-through; + -webkit-text-decoration-color: #2196f3; + text-decoration-color: #2196f3; } + .list-wrapper .completed .remove { + text-decoration: none; } + +/* Tooltips */ +.tooltip-static-demo .tooltip { + position: relative; + display: inline-block; + opacity: 1; + margin: 0 10px 10px 0; } + +.tooltip-static-demo .bs-tooltip-bottom-demo .arrow, +.tooltip-static-demo .bs-tooltip-top-demo .arrow { + left: 50%; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); } + +.tooltip-static-demo .bs-tooltip-left-demo .arrow, +.tooltip-static-demo .bs-tooltip-right-demo .arrow { + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); } + +.tooltip { + font-size: 0.75rem; + min-width: 5.625rem; + z-index: 1029; } + .tooltip .tooltip-inner { + font-family: "Poppins", sans-serif; } + +.tooltip-primary .tooltip-inner { + background: #2196f3; + color: #ffffff; } + +.tooltip-primary.bs-tooltip-top .arrow::before, .tooltip-primary.bs-tooltip-auto[x-placement^="top"] .arrow::before { + border-top-color: #2196f3; } + +.tooltip-primary.bs-tooltip-right .arrow::before, .tooltip-primary.bs-tooltip-auto[x-placement^="right"] .arrow::before { + border-right-color: #2196f3; } + +.tooltip-primary.bs-tooltip-bottom .arrow::before, .tooltip-primary.bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + border-bottom-color: #2196f3; } + +.tooltip-primary.bs-tooltip-left .arrow::before, .tooltip-primary.bs-tooltip-auto[x-placement^="left"] .arrow::before { + border-left-color: #2196f3; } + +.tooltip-secondary .tooltip-inner { + background: #e6eef2; + color: #ffffff; } + +.tooltip-secondary.bs-tooltip-top .arrow::before, .tooltip-secondary.bs-tooltip-auto[x-placement^="top"] .arrow::before { + border-top-color: #e6eef2; } + +.tooltip-secondary.bs-tooltip-right .arrow::before, .tooltip-secondary.bs-tooltip-auto[x-placement^="right"] .arrow::before { + border-right-color: #e6eef2; } + +.tooltip-secondary.bs-tooltip-bottom .arrow::before, .tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + border-bottom-color: #e6eef2; } + +.tooltip-secondary.bs-tooltip-left .arrow::before, .tooltip-secondary.bs-tooltip-auto[x-placement^="left"] .arrow::before { + border-left-color: #e6eef2; } + +.tooltip-success .tooltip-inner { + background: #19d895; + color: #ffffff; } + +.tooltip-success.bs-tooltip-top .arrow::before, .tooltip-success.bs-tooltip-auto[x-placement^="top"] .arrow::before { + border-top-color: #19d895; } + +.tooltip-success.bs-tooltip-right .arrow::before, .tooltip-success.bs-tooltip-auto[x-placement^="right"] .arrow::before { + border-right-color: #19d895; } + +.tooltip-success.bs-tooltip-bottom .arrow::before, .tooltip-success.bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + border-bottom-color: #19d895; } + +.tooltip-success.bs-tooltip-left .arrow::before, .tooltip-success.bs-tooltip-auto[x-placement^="left"] .arrow::before { + border-left-color: #19d895; } + +.tooltip-info .tooltip-inner { + background: #8862e0; + color: #ffffff; } + +.tooltip-info.bs-tooltip-top .arrow::before, .tooltip-info.bs-tooltip-auto[x-placement^="top"] .arrow::before { + border-top-color: #8862e0; } + +.tooltip-info.bs-tooltip-right .arrow::before, .tooltip-info.bs-tooltip-auto[x-placement^="right"] .arrow::before { + border-right-color: #8862e0; } + +.tooltip-info.bs-tooltip-bottom .arrow::before, .tooltip-info.bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + border-bottom-color: #8862e0; } + +.tooltip-info.bs-tooltip-left .arrow::before, .tooltip-info.bs-tooltip-auto[x-placement^="left"] .arrow::before { + border-left-color: #8862e0; } + +.tooltip-warning .tooltip-inner { + background: #ffaf00; + color: #ffffff; } + +.tooltip-warning.bs-tooltip-top .arrow::before, .tooltip-warning.bs-tooltip-auto[x-placement^="top"] .arrow::before { + border-top-color: #ffaf00; } + +.tooltip-warning.bs-tooltip-right .arrow::before, .tooltip-warning.bs-tooltip-auto[x-placement^="right"] .arrow::before { + border-right-color: #ffaf00; } + +.tooltip-warning.bs-tooltip-bottom .arrow::before, .tooltip-warning.bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + border-bottom-color: #ffaf00; } + +.tooltip-warning.bs-tooltip-left .arrow::before, .tooltip-warning.bs-tooltip-auto[x-placement^="left"] .arrow::before { + border-left-color: #ffaf00; } + +.tooltip-danger .tooltip-inner { + background: #ff6258; + color: #ffffff; } + +.tooltip-danger.bs-tooltip-top .arrow::before, .tooltip-danger.bs-tooltip-auto[x-placement^="top"] .arrow::before { + border-top-color: #ff6258; } + +.tooltip-danger.bs-tooltip-right .arrow::before, .tooltip-danger.bs-tooltip-auto[x-placement^="right"] .arrow::before { + border-right-color: #ff6258; } + +.tooltip-danger.bs-tooltip-bottom .arrow::before, .tooltip-danger.bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + border-bottom-color: #ff6258; } + +.tooltip-danger.bs-tooltip-left .arrow::before, .tooltip-danger.bs-tooltip-auto[x-placement^="left"] .arrow::before { + border-left-color: #ff6258; } + +.tooltip-light .tooltip-inner { + background: #fbfbfb; + color: #ffffff; } + +.tooltip-light.bs-tooltip-top .arrow::before, .tooltip-light.bs-tooltip-auto[x-placement^="top"] .arrow::before { + border-top-color: #fbfbfb; } + +.tooltip-light.bs-tooltip-right .arrow::before, .tooltip-light.bs-tooltip-auto[x-placement^="right"] .arrow::before { + border-right-color: #fbfbfb; } + +.tooltip-light.bs-tooltip-bottom .arrow::before, .tooltip-light.bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + border-bottom-color: #fbfbfb; } + +.tooltip-light.bs-tooltip-left .arrow::before, .tooltip-light.bs-tooltip-auto[x-placement^="left"] .arrow::before { + border-left-color: #fbfbfb; } + +.tooltip-dark .tooltip-inner { + background: #252C46; + color: #ffffff; } + +.tooltip-dark.bs-tooltip-top .arrow::before, .tooltip-dark.bs-tooltip-auto[x-placement^="top"] .arrow::before { + border-top-color: #252C46; } + +.tooltip-dark.bs-tooltip-right .arrow::before, .tooltip-dark.bs-tooltip-auto[x-placement^="right"] .arrow::before { + border-right-color: #252C46; } + +.tooltip-dark.bs-tooltip-bottom .arrow::before, .tooltip-dark.bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + border-bottom-color: #252C46; } + +.tooltip-dark.bs-tooltip-left .arrow::before, .tooltip-dark.bs-tooltip-auto[x-placement^="left"] .arrow::before { + border-left-color: #252C46; } + +/* User Profile */ +.user-profile .side-left .card .avatar img { + display: block; + width: 90px; + height: 90px; + border-radius: 100%; + margin-left: auto; + margin-right: auto; } + +.user-profile .side-left .card .avatar .name { + text-align: center; + color: #252C46; + font-size: 1.2rem; + font-weight: 600; + margin-bottom: 0; } + +.user-profile .side-left .card .avatar .designation { + text-align: center; + color: #6c757d; + font-size: 0.8rem; + font-weight: 600; } + +.user-profile .side-left .card .avatar .email { + text-align: center; + color: #2196f3; + display: block; } + +.user-profile .side-left .card .avatar .number { + display: block; + text-align: center; + color: #2196f3; } + +.user-profile .side-left .card .overview .achivements { + padding-left: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .user-profile .side-left .card .overview .achivements li { + width: 33.333%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + .user-profile .side-left .card .overview .achivements li p { + text-align: center; + margin-bottom: 0; + font-weight: 600; + font-size: 1.4rem; + color: #252C46; } + .user-profile .side-left .card .overview .achivements li p:last-child { + font-weight: 500; + font-size: 0.9rem; } + +.user-profile .side-left .card .overview .about-user p { + font-size: 0.8rem; } + +.user-profile .side-left .card .overview .info-links a { + font-size: 0.8rem; + display: block; + margin-bottom: 10px; } + .user-profile .side-left .card .overview .info-links a i { + font-size: 0.8rem; + margin-right: 10px; } + .user-profile .side-left .card .overview .info-links a span { + text-align: left; + display: inline-block; } + +.calendar-aside { + display: block; } + .calendar-aside .list { + position: relative; + padding: 10px 8px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + border-radius: 5px; + -webkit-transition-duration: 0.25s; + transition-duration: 0.25s; + -webkit-transition-property: background; + transition-property: background; } + .calendar-aside .list .user-text { + margin-bottom: 0; + margin-left: 20px; + font-size: 0.875rem; } + .calendar-aside .list .count { + width: 20px; + height: 20px; + position: relative; + border-radius: 50px; + -webkit-transition-duration: 0.25s; + transition-duration: 0.25s; + -webkit-transition-timing-function: ease; + transition-timing-function: ease; + -webkit-transition-property: opacity; + transition-property: opacity; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .calendar-aside .list .count:before { + content: ""; + position: absolute; + left: 0; + right: 0; + top: 50%; + display: block; + height: 10px; + width: 10px; + margin: auto; + border-radius: 50px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + -webkit-transition-duration: 0.25s; + transition-duration: 0.25s; + -webkit-transition-timing-function: ease; + transition-timing-function: ease; } + .calendar-aside .list .count.online:before { + background: #19d895; } + .calendar-aside .list .count.offline:before { + background: #ff6258; } + .calendar-aside .list .count .close { + font-size: 15px; + margin: auto; + opacity: 0; + color: #ff6258; + -webkit-transition-duration: 0.25s; + transition-duration: 0.25s; + -webkit-transition-timing-function: ease; + transition-timing-function: ease; } + .calendar-aside .list:hover { + background: #fbfbfb; } + .calendar-aside .list:hover .count:before { + z-index: 0; + height: 20px; + width: 20px; + background: #fbfbfb; } + .calendar-aside .list:hover .count .close { + z-index: 2; + opacity: 1; } + +.data-list { + width: 100%; + overflow: auto; } + .data-list .list-item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + width: 100%; + padding: 10px; + border-bottom: 1px solid #f2f2f2; } + .data-list .list-item:last-child { + border-bottom: none; } + .data-list .list-item .graph { + margin-left: auto; + width: 110px; } + +#sourceLineChartLegend { + padding-left: 0; + margin-bottom: 0; + list-style-type: none; } + #sourceLineChartLegend li { + display: inline-block; + margin-right: 20px; + color: #858585; } + #sourceLineChartLegend li .chart-color { + height: 10px; + width: 10px; + display: inline-block; + margin-right: 5px; + border-radius: 100%; } + .rtl #sourceLineChartLegend li .chart-color { + margin-right: 0px; + margin-left: 5px; } + #sourceLineChartLegend li:last-child { + margin-right: 0; } + .rtl #sourceLineChartLegend li { + margin-right: 0px; + margin-left: 20px; } + .rtl #sourceLineChartLegend li:last-child { + margin-left: 0px; } + +.social-card.card-default .action-bar i { + color: #e6eef2; } + +.social-card.card-default .comment { + color: #858585; } + +.social-card.card-default .posted-date { + color: #2196f3; } + +.social-card.card-colored .card-header { + background: inherit; } + +.social-card.card-colored.facebook-card { + background: #648ACA; } + .social-card.card-colored.facebook-card .card-header { + border-bottom-color: #517cc4; } + +.social-card.card-colored.twitter-card { + background: #4DBFF5; } + .social-card.card-colored.twitter-card .card-header { + border-bottom-color: #35b6f4; } + +.social-card.card-colored.google-card { + background: #E55F4B; } + .social-card.card-colored.google-card .card-header { + border-bottom-color: #e24b35; } + +.social-card.card-colored.linkedin-card { + background: #0177b4; } + .social-card.card-colored.linkedin-card .card-header { + border-bottom-color: #01669b; } + +.social-card.card-colored a, +.social-card.card-colored .media-info, +.social-card.card-colored .user-name, +.social-card.card-colored .comment, +.social-card.card-colored .posted-date, +.social-card.card-colored .platform-name, +.social-card.card-colored .headline, +.social-card.card-colored .action-bar { + color: #ffffff; } + +.top-selling-card .column-wrapper { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-pack: distribute; + justify-content: space-around; } + .top-selling-card .column-wrapper .column { + width: 45%; + padding: 25px 26px; + border-radius: 3px; + background: #ffffff; + -webkit-transform: translateY(-25px); + transform: translateY(-25px); + -webkit-box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1); + box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1); + z-index: 10; } + .top-selling-card .column-wrapper .column i { + font-size: 20px; } + +.top-selling-card .item-wrapper { + max-height: 210px; + overflow-y: auto; } + +.review-card .comment-text { + text-overflow: ellipsis; + overflow: hidden; + max-width: 100%; + white-space: nowrap; + max-width: 70%; } + +.list-item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + width: 100%; + padding: 20px 0; + border-bottom: 1px solid #f2f2f2; } + .list-item:first-child { + padding-top: 30px; } + .list-item:last-child { + border-bottom: none; } + .list-item .preview-image { + max-width: 80px; + width: 80px; + min-width: 80px; } + .list-item .preview-image img { + display: block; + margin: auto; } + .list-item .content { + width: calc(100% - 80px); + padding-right: 30px; } + .list-item .content .user-name { + margin-bottom: 0; + margin-right: 10px; + color: #858585; + white-space: nowrap; } + .list-item .content .time { + color: #858585; + margin-bottom: 3px; } + .list-item .content .product-name { + font-weight: 500; + text-overflow: ellipsis; + overflow: hidden; + max-width: 100%; + white-space: nowrap; } + .list-item .content .review-text { + margin-bottom: 0; + font-weight: 300; + text-overflow: ellipsis; + overflow: hidden; + max-width: 100%; + white-space: nowrap; + max-width: 95%; } + +.todo-list .todo-item { + border: 1px solid #f2f2f2; + border-radius: 6px; + padding: 10px; + margin-bottom: 10px; } + .todo-list .todo-item form { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .todo-list .todo-item form .checkbox { + width: 40px; } + .todo-list .todo-item form .checkbox .form-check { + margin-left: 10px; } + .todo-list .todo-item form .checkbox .form-check .input-helper:after { + line-height: 0px; } + .todo-list .todo-item form .field-wrapper { + width: calc(100% - 40px); } + .todo-list .todo-item form .field-wrapper .form-group .form-control, .todo-list .todo-item form .field-wrapper .form-group .asColorPicker-input, .todo-list .todo-item form .field-wrapper .form-group .dataTables_wrapper select, .dataTables_wrapper .todo-list .todo-item form .field-wrapper .form-group select, .todo-list .todo-item form .field-wrapper .form-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .todo-list .todo-item form .field-wrapper .form-group input[type=text], .todo-list .todo-item form .field-wrapper .form-group + .jsgrid .jsgrid-table .jsgrid-filter-row select, + .jsgrid .jsgrid-table .jsgrid-filter-row .todo-list .todo-item form .field-wrapper .form-group select, .todo-list .todo-item form .field-wrapper .form-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .todo-list .todo-item form .field-wrapper .form-group input[type=number], .todo-list .todo-item form .field-wrapper .form-group .select2-container--default .select2-selection--single, .select2-container--default .todo-list .todo-item form .field-wrapper .form-group .select2-selection--single, .todo-list .todo-item form .field-wrapper .form-group .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .todo-list .todo-item form .field-wrapper .form-group .select2-search__field, .todo-list .todo-item form .field-wrapper .form-group .tt-hint, .todo-list .todo-item form .field-wrapper .form-group + .tt-query, .todo-list .todo-item form .field-wrapper .form-group + .typeahead { + font-weight: 500; } + .todo-list .todo-item form .field-wrapper .form-group .tagsinput .tag { + color: #858585; } + .todo-list .todo-item form .field-wrapper .form-group .tagsinput .tag:before { + content: "#"; + display: inline-block; } + .todo-list .todo-item form .field-wrapper .form-group .btn, .todo-list .todo-item form .field-wrapper .form-group .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .todo-list .todo-item form .field-wrapper .form-group .ajax-file-upload, .todo-list .todo-item form .field-wrapper .form-group .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .todo-list .todo-item form .field-wrapper .form-group .swal2-styled, .todo-list .todo-item form .field-wrapper .form-group .wizard > .actions a, .wizard > .actions .todo-list .todo-item form .field-wrapper .form-group a { + margin-right: 10px; } + .todo-list .todo-item form .field-wrapper .form-group .btn:last-child, .todo-list .todo-item form .field-wrapper .form-group .ajax-upload-dragdrop .ajax-file-upload:last-child, .ajax-upload-dragdrop .todo-list .todo-item form .field-wrapper .form-group .ajax-file-upload:last-child, .todo-list .todo-item form .field-wrapper .form-group .swal2-modal .swal2-buttonswrapper .swal2-styled:last-child, .swal2-modal .swal2-buttonswrapper .todo-list .todo-item form .field-wrapper .form-group .swal2-styled:last-child, .todo-list .todo-item form .field-wrapper .form-group .wizard > .actions a:last-child, .wizard > .actions .todo-list .todo-item form .field-wrapper .form-group a:last-child { + margin-right: 0; } + .todo-list .todo-item:not(.edit-mode) { + position: relative; } + .todo-list .todo-item:not(.edit-mode) .edit-icon { + display: none; + position: absolute; + top: 0; + right: 0; + padding: 10px; + cursor: pointer; } + .todo-list .todo-item:not(.edit-mode):hover { + background: #fbfbfb; } + .todo-list .todo-item:not(.edit-mode):hover .edit-icon { + display: block; } + .todo-list .todo-item:not(.edit-mode):hover * { + background: #fbfbfb; } + .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group { + margin-bottom: 0; } + .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .tagsinput { + border: none; + height: 25px; + max-height: 25px !important; + min-height: 25px !important; + padding: 0px 13px !important; } + .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .tagsinput .tag { + background: transparent; + padding: 0; + margin-bottom: 0; } + .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .tagsinput .tag a { + display: none; } + .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .tagsinput #todo-tags-1_addTag, + .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .tagsinput .tags_clear { + display: none; } + .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .form-control, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .asColorPicker-input, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .dataTables_wrapper select, .dataTables_wrapper .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group select, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group input[type=text], .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group + .jsgrid .jsgrid-table .jsgrid-filter-row select, + .jsgrid .jsgrid-table .jsgrid-filter-row .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group select, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group input[type=number], .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .select2-container--default .select2-selection--single, .select2-container--default .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .select2-selection--single, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .select2-search__field, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .tt-hint, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group + .tt-query, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group + .typeahead { + border: none; } + .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .btn, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .ajax-file-upload, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .swal2-styled, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .wizard > .actions a, .wizard > .actions .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group a { + display: none; } + .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group.hidden-field { + display: none; } + .todo-list .todo-item.edit-mode form .field-wrapper .form-group .tagsinput .tag { + color: #ffffff; } + +.horizontal-timeline .time-frame { + border-bottom: 1px solid #f2f2f2; + padding-top: 20px; } + .horizontal-timeline .time-frame:last-child { + border-bottom: none; } + .horizontal-timeline .time-frame .section-time-frame { + margin-bottom: 30px; } + .horizontal-timeline .time-frame .event { + border-left: 1px solid #f2f2f2; + padding-left: 2rem; + padding-bottom: 30px; + position: relative; } + .horizontal-timeline .time-frame .event:last-child { + border-left: none; } + .horizontal-timeline .time-frame .event .event-text { + line-height: 1; + font-weight: 400; + margin-bottom: 0; + text-overflow: ellipsis; + overflow: hidden; + max-width: 100%; + white-space: nowrap; } + .horizontal-timeline .time-frame .event .tumbnail-views { + display: inline-block; } + .horizontal-timeline .time-frame .event .tumbnail-views .thumbnail { + float: left; + margin-right: 16px; + margin-top: 1rem; } + .horizontal-timeline .time-frame .event .tumbnail-views .thumbnail img { + max-width: 100%; + border-radius: 4px; } + .horizontal-timeline .time-frame .event .event-alert { + margin-top: 1rem; + padding: 11px 25px; + background: #fbfbfb; + width: 80%; + font-family: "Poppins", sans-serif; + font-size: 13px; + font-weight: 300; + border-radius: 4px; } + .horizontal-timeline .time-frame .event .event-info { + margin-top: 0.8rem; + font-family: "Poppins", sans-serif; + font-size: 12px; + font-weight: 400; + color: #858585; } + .horizontal-timeline .time-frame .event:before { + content: ""; + position: absolute; + top: 0; + left: -5px; + height: 10px; + width: 10px; + border-radius: 100%; } + .horizontal-timeline .time-frame .event:nth-child(3n+1):before { + background: #8862e0; } + .horizontal-timeline .time-frame .event:nth-child(3n+2):before { + background: #19d895; } + .horizontal-timeline .time-frame .event:nth-child(3n+3):before { + background: #2196f3; } + +/* Timeline */ +.vertical-timeline { + list-style: none; + padding: 0; + position: relative; } + .vertical-timeline:before { + top: 0; + bottom: 0; + position: absolute; + content: " "; + width: 3px; + background-color: #e6eef2; + left: 50%; + margin-left: -1.5px; } + .vertical-timeline .timeline-wrapper { + display: block; + margin-bottom: 20px; + position: relative; + width: 100%; + padding-right: 90px; } + .vertical-timeline .timeline-wrapper:before { + content: " "; + display: table; } + .vertical-timeline .timeline-wrapper:after { + content: " "; + display: table; + clear: both; } + .vertical-timeline .timeline-wrapper .timeline-panel { + border-radius: 2px; + padding: 20px; + position: relative; + background: #ffffff; + border-radius: 6px; + -webkit-box-shadow: 1px 2px 35px 0 rgba(1, 1, 1, 0.1); + box-shadow: 1px 2px 35px 0 rgba(1, 1, 1, 0.1); + width: 35%; + margin-left: 15%; } + .vertical-timeline .timeline-wrapper .timeline-panel:before { + position: absolute; + top: 0; + width: 100%; + height: 2px; + content: ""; + left: 0; + right: 0; } + .vertical-timeline .timeline-wrapper .timeline-panel:after { + position: absolute; + top: 7px; + right: -14px; + display: inline-block; + border-top: 14px solid transparent; + border-left: 14px solid #ffffff; + border-right: 0 solid #ffffff; + border-bottom: 14px solid transparent; + content: " "; } + .vertical-timeline .timeline-wrapper .timeline-panel .timeline-title { + margin-top: 0; + color: #252C46; + text-transform: uppercase; } + .vertical-timeline .timeline-wrapper .timeline-panel .timeline-body p { + margin-bottom: 0; } + .vertical-timeline .timeline-wrapper .timeline-panel .timeline-body p + p { + margin-top: 5px; } + .vertical-timeline .timeline-wrapper .timeline-panel .timeline-body ul { + margin-bottom: 0; } + .vertical-timeline .timeline-wrapper .timeline-panel .timeline-footer span { + font-size: 0.6875rem; } + .vertical-timeline .timeline-wrapper .timeline-panel .timeline-footer i { + font-size: 1.5rem; } + .vertical-timeline .timeline-wrapper .timeline-badge { + width: 14px; + height: 14px; + position: absolute; + top: 16px; + left: calc(50% - 7px); + z-index: 100; + border-top-right-radius: 50%; + border-top-left-radius: 50%; + border-bottom-right-radius: 50%; + border-bottom-left-radius: 50%; + border: 2px solid #ffffff; } + .vertical-timeline .timeline-wrapper .timeline-badge i { + color: #ffffff; } + .vertical-timeline .timeline-wrapper.timeline-inverted { + padding-right: 0; + padding-left: 90px; } + .vertical-timeline .timeline-wrapper.timeline-inverted .timeline-panel { + margin-left: auto; + margin-right: 15%; } + .vertical-timeline .timeline-wrapper.timeline-inverted .timeline-panel:after { + border-left-width: 0; + border-right-width: 14px; + left: -14px; + right: auto; } + +@media (max-width: 767px) { + .timeline .timeline-wrapper { + padding-right: 150px; } + .timeline .timeline-wrapper.timeline-inverted { + padding-left: 150px; } + .timeline .timeline-wrapper .timeline-panel { + width: 100%; + margin-left: 0; + margin-right: 0; } } + +.timeline-wrapper-primary .timeline-panel:before { + background: #2196f3; } + +.timeline-wrapper-primary .timeline-badge { + background: #2196f3; } + +.timeline-wrapper-secondary .timeline-panel:before { + background: #e6eef2; } + +.timeline-wrapper-secondary .timeline-badge { + background: #e6eef2; } + +.timeline-wrapper-success .timeline-panel:before { + background: #19d895; } + +.timeline-wrapper-success .timeline-badge { + background: #19d895; } + +.timeline-wrapper-info .timeline-panel:before { + background: #8862e0; } + +.timeline-wrapper-info .timeline-badge { + background: #8862e0; } + +.timeline-wrapper-warning .timeline-panel:before { + background: #ffaf00; } + +.timeline-wrapper-warning .timeline-badge { + background: #ffaf00; } + +.timeline-wrapper-danger .timeline-panel:before { + background: #ff6258; } + +.timeline-wrapper-danger .timeline-badge { + background: #ff6258; } + +.timeline-wrapper-light .timeline-panel:before { + background: #fbfbfb; } + +.timeline-wrapper-light .timeline-badge { + background: #fbfbfb; } + +.timeline-wrapper-dark .timeline-panel:before { + background: #252C46; } + +.timeline-wrapper-dark .timeline-badge { + background: #252C46; } + +/*-------------------------------------------------------------------*/ +/* === Email === */ +/* Mail Sidebar */ +@media (max-width: 769px) { + .email-wrapper .mail-sidebar { + position: relative; } } + +@media (max-width: 576px) { + .email-wrapper .mail-sidebar { + position: fixed; + z-index: 99; + background: #ffffff; + width: 45%; + min-width: 300px; + left: -100%; + display: block; + transition: 0.4s ease; + -webkit-transition: 0.4s ease; + -moz-transition: 0.4s ease; } } + +.email-wrapper .mail-sidebar .menu-bar { + width: 100%; + float: right; + height: 100%; + min-height: 100%; } + @media (max-width: 576px) { + .email-wrapper .mail-sidebar .menu-bar { + min-height: 100vh; + max-height: 100%; + height: auto; + overflow-y: auto; + overflow-x: hidden; } } + .email-wrapper .mail-sidebar .menu-bar .menu-items { + padding: 0; + margin-bottom: 0; + height: auto; + list-style-type: none; } + .email-wrapper .mail-sidebar .menu-bar .menu-items li { + padding: 10px 15px; + -webkit-transition: 0.4s; + transition: 0.4s; + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; } + .email-wrapper .mail-sidebar .menu-bar .menu-items li:hover { + background: rgba(240, 244, 249, 0.8); } + .email-wrapper .mail-sidebar .menu-bar .menu-items li a { + color: #252C46; + font-size: 0.875rem; + text-decoration: none; } + .email-wrapper .mail-sidebar .menu-bar .menu-items li a i { + margin-right: 8px; + font-size: 0.875rem; + line-height: 1.5; } + .email-wrapper .mail-sidebar .menu-bar .menu-items li.active { + background: rgba(33, 150, 243, 0.3); + border-radius: 4px; } + .email-wrapper .mail-sidebar .menu-bar .menu-items li.active a { + color: #2196f3; } + .email-wrapper .mail-sidebar .menu-bar .menu-items li.compose:hover { + background: transparent; } + .email-wrapper .mail-sidebar .menu-bar .online-status { + margin-top: 1rem; } + .email-wrapper .mail-sidebar .menu-bar .online-status .chat { + font-size: 0.875rem; + color: #858585; + margin-bottom: 0; + font-family: "Poppins", sans-serif; } + .email-wrapper .mail-sidebar .menu-bar .online-status .status { + height: 10px; + width: 10px; + border-radius: 100%; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + -webkit-transform: translateX(-43px) translateY(2px); + transform: translateX(-43px) translateY(2px); } + .email-wrapper .mail-sidebar .menu-bar .online-status .status:after { + font-size: 12px; + color: #858585; + margin: -5px 0 0 18px; } + .email-wrapper .mail-sidebar .menu-bar .online-status .status.offline { + background: #ff6258; } + .email-wrapper .mail-sidebar .menu-bar .online-status .status.offline:after { + content: "Offline"; } + .email-wrapper .mail-sidebar .menu-bar .online-status .status.online { + background: #19d895; } + .email-wrapper .mail-sidebar .menu-bar .online-status .status.online:after { + content: "Online"; } + .email-wrapper .mail-sidebar .menu-bar .profile-list { + padding: 10px 0; } + .email-wrapper .mail-sidebar .menu-bar .profile-list-item { + border-bottom: 1px solid #f2f2f2; + padding: 6px 0; + display: block; } + .email-wrapper .mail-sidebar .menu-bar .profile-list-item:last-child { + border-bottom: 0; } + .email-wrapper .mail-sidebar .menu-bar .profile-list-item a { + text-decoration: none; } + .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .pro-pic { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0; + width: 20%; + max-width: 40px; } + .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .pro-pic img { + max-width: 100%; + width: 100%; + border-radius: 100%; } + .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user { + width: 100%; + padding: 5px 10px 0 15px; } + .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user .u-name { + margin: 0; + font-family: "Poppins", sans-serif; + font-size: 0.875rem; + line-height: 1; + color: #252C46; + font-weight: 500; } + .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user .u-designation { + font-size: calc(0.875rem - 0.1rem); + color: #252C46; + margin-bottom: 0; } + +.email-wrapper .sidebar.open { + left: 0; } + +/* Mail List Container */ +.email-wrapper .mail-list-container { + border-left: 1px solid #f2f2f2; + height: 100%; + padding-left: 0; + padding-right: 0; } + .email-wrapper .mail-list-container a { + text-decoration: none; } + .email-wrapper .mail-list-container .mail-list { + border-bottom: 1px solid #f2f2f2; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + padding: 10px 15px; + width: 100%; } + .email-wrapper .mail-list-container .mail-list:last-child { + border-bottom: none; } + .email-wrapper .mail-list-container .mail-list .form-check { + margin-top: 12px; + width: 11%; + min-width: 20px; } + .email-wrapper .mail-list-container .mail-list .content { + width: 83%; + padding-left: 0; + padding-right: 0; } + .email-wrapper .mail-list-container .mail-list .content .sender-name { + margin-bottom: 0; + font-size: 0.875rem; + font-family: "Poppins", sans-serif; + max-width: 95%; } + .email-wrapper .mail-list-container .mail-list .content .message_text { + margin: 0; + max-width: 93%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } + .email-wrapper .mail-list-container .mail-list .details { + width: 5.5%; } + .email-wrapper .mail-list-container .mail-list .details .date { + text-align: right; + margin: auto 15px auto 0; + white-space: nowrap; } + .email-wrapper .mail-list-container .mail-list .details i { + margin: auto 0; + color: #ddd; } + .email-wrapper .mail-list-container .mail-list .details i.favorite { + color: #ffaf00; } + .email-wrapper .mail-list-container .mail-list.new_mail { + background: rgba(33, 150, 243, 0.3); } + +/* Message Content */ +.email-wrapper .message-body .sender-details { + padding: 20px 15px 0; + border-bottom: 1px solid #f2f2f2; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .email-wrapper .message-body .sender-details .details { + padding-bottom: 0; } + .email-wrapper .message-body .sender-details .details .msg-subject { + margin-bottom: 0; + font-family: "Poppins", sans-serif; } + .email-wrapper .message-body .sender-details .details .sender-email { + margin-bottom: 20px; + font-family: "Poppins", sans-serif; } + .email-wrapper .message-body .sender-details .details .sender-email i { + font-size: 1rem; + font-family: "Poppins", sans-serif; + margin: 0 1px 0 7px; } + +.email-wrapper .message-body .message-content { + padding: 50px 15px; } + +.email-wrapper .message-body .attachments-sections ul { + list-style: none; + border-top: 1px solid #f2f2f2; + padding: 30px 15px 20px; } + .email-wrapper .message-body .attachments-sections ul li { + padding: 10px; + margin-right: 20px; + border: 1px solid #f2f2f2; + border-radius: 5px; } + .email-wrapper .message-body .attachments-sections ul li .thumb { + display: inline-block; + margin-right: 10px; } + .email-wrapper .message-body .attachments-sections ul li .thumb i { + font-size: 30px; + margin: 0; + color: #252C46; } + .email-wrapper .message-body .attachments-sections ul li .details p.file-name { + display: block; + margin-bottom: 0; + color: #252C46; } + .email-wrapper .message-body .attachments-sections ul li .details .buttons .file-size { + margin-right: 10px; + margin-bottom: 0; + font-size: 0.875rem; } + .email-wrapper .message-body .attachments-sections ul li .details .buttons a { + font-size: 0.875rem; + margin-right: 10px; } + .email-wrapper .message-body .attachments-sections ul li .details .buttons a:last-child { + margin-right: 0; } + +/*-------------------------------------------------------------------*/ +/* === Plugin overrides === */ +/* Ace Editor */ +.ace_editor { + margin: auto; + height: 300px; + width: 100%; } + .ace_editor .ace_content { + font-size: 0.875rem; } + +/* Avgrund Popup */ +.avgrund-popin { + position: absolute; + background: #fff; + padding: 37px 33px; + overflow: hidden; + visibility: hidden; + opacity: 0; + filter: alpha(opacity=0); + top: 50%; + left: 50%; + z-index: 1000; + font-size: 0.875rem; + font-family: "Poppins", sans-serif; + font-weight: initial; + line-height: 1.85; + border-radius: 10px; + -webkit-transform: scale(0.8); + transform: scale(0.8); } + .avgrund-popin p { + font-size: 0.875rem; + font-family: "Poppins", sans-serif; + font-weight: initial; } + +.avgrund-overlay { + background: #000; + width: 100%; + position: fixed; + top: 0; + left: 0; + bottom: 0; + right: 0; + z-index: 101; + visibility: hidden; + opacity: 0; + filter: alpha(opacity=0); } + +.avgrund-ready .avgrund-overlay, +.avgrund-ready .avgrund-popin, +body.avgrund-ready { + -webkit-transform-origin: 50% 50%; + transform-origin: 50% 50%; + -webkit-transition: 0.3s all ease-out; + transition: 0.3s all ease-out; } + +body.avgrund-active { + overflow: hidden; } + +.avgrund-active .avgrund-popin { + visibility: visible; + opacity: 1; + filter: alpha(opacity=100); + -webkit-transform: scale(1.1); + transform: scale(1.1); } + +.avgrund-active .avgrund-overlay { + visibility: visible; + opacity: 0.5; + filter: alpha(opacity=50); + height: 20000px; } + +.avgrund-popin.stack { + -webkit-transform: scale(1.5); + transform: scale(1.5); } + +.avgrund-active .avgrund-popin.stack { + -webkit-transform: scale(1.1); + transform: scale(1.1); } + +/* Optional close button styles */ +.avgrund-close { + display: block; + color: #fff; + background: #212529; + font-size: 10px; + text-decoration: none; + text-transform: uppercase; + position: absolute; + top: 10px; + right: 10px; + height: 17px; + width: 17px; + text-align: center; + line-height: 16px; + border-radius: 50px; } + .avgrund-close:hover { + color: #fff; + text-decoration: none; } + +/* Bootstrap Tour */ +.tour-tour { + padding: 0; + border: 0; + font-family: "Poppins", sans-serif; + background: #ffffff; } + .tour-tour .popover-title { + background: #2196f3; + color: #ffffff; + font-size: 0.8125rem; + font-family: "Poppins", sans-serif; + padding: 0.75rem; } + .tour-tour.left .arrow:after { + border-left-color: #ffffff; } + .tour-tour.right .arrow:after { + border-right-color: #ffffff; } + .tour-tour.top .arrow:after { + border-top-color: #ffffff; } + .tour-tour.bottom .arrow:after { + border-bottom-color: #ffffff; } + +.tour-step-background { + display: none; } + +.chartjs-legend ul { + list-style: none; + padding-left: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } + .chartjs-legend ul li { + margin-right: 8%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .chartjs-legend ul li span { + height: 20px; + width: 20px; + margin-right: 1rem; + display: inline-block; + font-size: 0.875rem; } + +.rtl .chartjs-legend ul { + padding-right: 0; } + .rtl .chartjs-legend ul li { + margin-right: 0; + margin-left: 8%; } + .rtl .chartjs-legend ul li span { + margin-right: 0; + margin-left: 1rem; } + +/* Chartist */ +.ct-series-a .ct-line { + stroke: #3dcaff; + stroke-width: 3px; + stroke-dasharray: 0px; } + +.ct-series-a .ct-point { + stroke: #00b2f4; + stroke-width: 10px; + stroke-linecap: round; } + +.ct-series-b .ct-line { + stroke: #7be585; + stroke-width: 3px; + stroke-dasharray: 0px; } + +.ct-series-b .ct-point { + stroke: #3fda4d; + stroke-width: 10px; + stroke-linecap: round; } + +.ct-series-c .ct-line { + stroke: #fdd0c2; + stroke-width: 3px; + stroke-dasharray: 0px; } + +.ct-series-c .ct-point { + stroke: #fb9a7d; + stroke-width: 10px; + stroke-linecap: round; } + +.ct-series-a .ct-bar { + stroke: #3dcaff; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +.ct-series-b .ct-bar { + stroke: #7be585; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +.ct-series-c .ct-bar { + stroke: #fdd0c2; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +.ct-series-d .ct-bar { + stroke: #ff4d5d; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +.ct-series-a .ct-slice-pie { + fill: #3dcaff; + stroke-width: 4px; } + +.ct-series-b .ct-slice-pie { + fill: #7be585; + stroke-width: 4px; } + +.ct-series-c .ct-slice-pie { + fill: #ff4d5d; + stroke-width: 4px; } + +.ct-series-d .ct-slice-pie { + fill: #fdd0c2; + stroke-width: 4px; } + +.ct-series-a .ct-slice-donut-solid { + fill: #3dcaff; } + +.ct-series-b .ct-slice-donut-solid { + fill: #7be585; } + +.ct-series-c .ct-slice-donut-solid { + fill: #ff4d5d; } + +.ct-series-a .ct-slice-donut-solid { + fill: #fdd0c2; } + +#ct-chart-dash-barChart .ct-series-a .ct-bar { + stroke: #ff3345; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +#ct-chart-dash-barChart .ct-series-b .ct-bar { + stroke: #23c3ff; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +#ct-chart-dash-barChart .ct-series-c .ct-bar { + stroke: #3dcaff; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +#ct-chart-dash-barChart .ct-series-d .ct-bar { + stroke: #56d1ff; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +/* CodeMirror */ +.CodeMirror { + font-size: 1rem; + height: auto; + min-height: auto; + text-align: left; } + .CodeMirror .CodeMirror-scroll { + min-height: auto; } + +/* Colcade */ +* { + -webkit-box-sizing: border-box; + box-sizing: border-box; } + +.grid { + border: 1px solid #8ba2b5 est; } + +.grid:after { + display: block; + content: ''; + clear: both; } + +.grid-col { + float: left; + width: 49%; + margin-right: 2%; + background: rgba(77, 199, 160, 0.2); } + +.grid-col--4 { + margin-right: 0; } + +/* hide two middle */ +.grid-col--2, +.grid-col--3 { + display: none; } + +@media (min-width: 768px) { + .grid-col { + width: 32%; } + .grid-col--2 { + display: block; } } + +@media (min-width: 1200px) { + .grid-col { + width: 23.5%; } + .grid-col--2, + .grid-col--3 { + display: block; } } + +.grid-item { + background: #4dc7a0; + margin-bottom: 20px; } + +.grid-item--a { + height: 80px; } + +.grid-item--b { + height: 140px; } + +.grid-item--c { + height: 300px; } + +/* Colorpicker */ +.asColorPicker-dropdown { + max-width: initial; } + +.asColorPicker-trigger { + height: auto; + padding: 10px; + border: 1px solid #f2f2f2; + border-left: none; } + .asColorPicker-trigger span { + width: 8px; + height: 8px; + border-radius: 2px; } + +/* Context Menu */ +.context-menu-icon:before { + color: #000; + font: normal normal normal 15px/1 "Material Design Icons"; } + +.context-menu-icon.context-menu-icon-cut:before { + content: '\F190'; } + +.context-menu-icon.context-menu-icon-edit:before { + content: '\F3EF'; } + +.context-menu-icon.context-menu-icon-copy:before { + content: '\F18F'; } + +.context-menu-icon.context-menu-icon-paste:before { + content: '\F613'; } + +.context-menu-icon.context-menu-icon-delete:before { + content: '\F6CB'; } + +.context-menu-icon.context-menu-icon-quit:before { + content: '\F156'; } + +.context-menu-list { + -webkit-box-shadow: none; + box-shadow: none; + border: 1px solid #f2f2f2; } + .context-menu-list .context-menu-item span { + color: #000; + font-size: 0.75rem; + font-family: "Poppins", sans-serif; } + .context-menu-list .context-menu-item.context-menu-hover { + background: #000; } + .context-menu-list .context-menu-item.context-menu-hover span { + color: #ffffff; } + +/* Clockpicker */ +.clockpicker-popover { + background-color: #f2f2f2; } + .clockpicker-popover.left .arrow:after { + border-left-color: #f2f2f2; } + .clockpicker-popover.right .arrow:after { + border-right-color: #f2f2f2; } + .clockpicker-popover.top .arrow:after { + border-top-color: #f2f2f2; } + .clockpicker-popover.bottom .arrow:after { + border-bottom-color: #ffffff; } + +/* Data Tables */ +.dataTables_wrapper { + padding-left: 0; + padding-right: 0; } + .dataTables_wrapper label { + font-size: 0.8125rem; } + .dataTables_wrapper select { + padding: 0.4rem; } + .dataTables_wrapper .dataTables_length select { + margin-left: 0.25rem; + margin-right: 0.25rem; } + .dataTables_wrapper .table-footer { + padding-top: 1.88rem; } + .dataTables_wrapper .height-limiter { + max-height: 400px; + overflow-y: auto; + -webkit-box-shadow: inset 0px -6px 18px rgba(0, 0, 0, 0.06); + box-shadow: inset 0px -6px 18px rgba(0, 0, 0, 0.06); } + .dataTables_wrapper .dataTable { + border-collapse: collapse !important; } + .dataTables_wrapper .dataTable .btn, .dataTables_wrapper .dataTable .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .dataTables_wrapper .dataTable .ajax-file-upload, .dataTables_wrapper .dataTable .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .dataTables_wrapper .dataTable .swal2-styled, .dataTables_wrapper .dataTable .wizard > .actions a, .wizard > .actions .dataTables_wrapper .dataTable a { + padding: 0.1rem 1rem; + vertical-align: top; } + .dataTables_wrapper .dataTable thead .sorting:after, .dataTables_wrapper .dataTable thead .sorting:before, + .dataTables_wrapper .dataTable thead .sorting_asc:after, + .dataTables_wrapper .dataTable thead .sorting_asc:before, + .dataTables_wrapper .dataTable thead .sorting_asc_disabled:after, + .dataTables_wrapper .dataTable thead .sorting_asc_disabled:before, + .dataTables_wrapper .dataTable thead .sorting_desc:after, + .dataTables_wrapper .dataTable thead .sorting_desc:before, + .dataTables_wrapper .dataTable thead .sorting_desc_disabled:after, + .dataTables_wrapper .dataTable thead .sorting_desc_disabled:before { + display: none; } + .dataTables_wrapper .dataTable thead th { + vertical-align: middle; + padding: 18px 15px; } + .dataTables_wrapper .dataTable tbody td { + z-index: 10; } + .dataTables_wrapper .dataTables_paginate { + margin-top: 20px; } + .dataTables_wrapper .dataTables_info { + font-size: 0.875rem; + color: #858585; } + +/* Datepicker */ +.datepicker.datepicker-dropdown, +.datepicker.datepicker-inline { + padding: 0 25px; + width: 30%; + max-width: 500px; + min-width: 250px; } + .datepicker.datepicker-dropdown .datepicker-days, + .datepicker.datepicker-inline .datepicker-days { + padding: 0.8rem 0.7rem; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed, + .datepicker.datepicker-inline .datepicker-days table.table-condensed { + width: 100%; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th, + .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th { + text-align: center; + padding: 0.5rem 0; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.prev, + .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th.prev { + color: #6c757d; + padding-bottom: 1rem; + padding-top: 1rem; + text-align: left; + background: #ffffff; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.datepicker-switch, + .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th.datepicker-switch { + color: #6c757d; + background: #ffffff; + padding-bottom: 1rem; + padding-top: 1rem; + font-size: 1rem; + font-weight: 600; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.next, + .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th.next { + color: grey; + padding-bottom: 1rem; + padding-top: 1rem; + text-align: right; + background: #ffffff; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.dow, + .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th.dow { + font-family: "Poppins", sans-serif; + color: #6c757d; + font-size: 0.875rem; + font-weight: initial; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.dow:first-child, + .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th.dow:first-child { + text-align: left; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.dow:last-child, + .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th.dow:last-child { + text-align: right; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody, + .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody { + position: relative; + top: 13px; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td, + .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td { + text-align: center; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day, + .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day { + font-size: 0.9375rem; + padding: 0.5rem 0; + color: #6c757d; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day:hover, + .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day:hover { + background: #ffffff; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day:first-child, + .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day:first-child { + text-align: left; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day:last-child, + .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day:last-child { + text-align: right; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day.active, + .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day.active { + color: #fff; + background: transparent; + position: relative; + z-index: 1; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day.active:before, + .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day.active:before { + content: ""; + width: 38px; + height: 38px; + background: #19d895; + border-radius: 100%; + display: block; + margin: auto; + vertical-align: middle; + position: absolute; + top: 1px; + z-index: -1; + left: 0; + right: 0; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day.today, + .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day.today { + color: #fff; + background: transparent; + position: relative; + z-index: 1; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day.today:before, + .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day.today:before { + content: ""; + width: 38px; + height: 38px; + background: #2196f3; + border-radius: 100%; + display: block; + margin: auto; + vertical-align: middle; + position: absolute; + top: 1px; + z-index: -1; + left: 0; + right: 0; } + .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.old.day, + .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.old.day { + color: #eaeaef; } + +.datepicker.datepicker-inline { + width: 100%; + max-width: 100%; + min-width: 250px; } + .datepicker.datepicker-inline thead tr th.prev { + color: grey; + padding-bottom: 0.5rem; + padding-top: 0.5rem; } + .datepicker.datepicker-inline thead tr th.datepicker-switch { + color: #2196f3; + padding-bottom: 0.5rem; + padding-top: 0.5rem; } + .datepicker.datepicker-inline thead tr th.next { + color: grey; + padding-bottom: 0.5rem; + padding-top: 0.5rem; } + +.datepicker > div { + display: initial; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + border-radius: 2px; } + +.datepicker.input-group, .datepicker.asColorPicker-wrap { + border: 1px solid #f2f2f2; + padding: 0; } + .datepicker.input-group .form-control, .datepicker.asColorPicker-wrap .form-control, .datepicker.input-group .asColorPicker-input, .datepicker.asColorPicker-wrap .asColorPicker-input, .datepicker.input-group .dataTables_wrapper select, .dataTables_wrapper .datepicker.input-group select, .datepicker.asColorPicker-wrap .dataTables_wrapper select, .dataTables_wrapper .datepicker.asColorPicker-wrap select, .datepicker.input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .datepicker.input-group input[type=text], .datepicker.asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .datepicker.asColorPicker-wrap input[type=text], .datepicker.input-group + .jsgrid .jsgrid-table .jsgrid-filter-row select, + .jsgrid .jsgrid-table .jsgrid-filter-row .datepicker.input-group select, .datepicker.asColorPicker-wrap + .jsgrid .jsgrid-table .jsgrid-filter-row select, + .jsgrid .jsgrid-table .jsgrid-filter-row .datepicker.asColorPicker-wrap select, .datepicker.input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .datepicker.input-group input[type=number], .datepicker.asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .datepicker.asColorPicker-wrap input[type=number], .datepicker.input-group .select2-container--default .select2-selection--single, .select2-container--default .datepicker.input-group .select2-selection--single, .datepicker.asColorPicker-wrap .select2-container--default .select2-selection--single, .select2-container--default .datepicker.asColorPicker-wrap .select2-selection--single, .datepicker.input-group .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .datepicker.input-group .select2-search__field, .datepicker.asColorPicker-wrap .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .datepicker.asColorPicker-wrap .select2-search__field, .datepicker.input-group .tt-hint, .datepicker.asColorPicker-wrap .tt-hint, .datepicker.input-group + .tt-query, .datepicker.asColorPicker-wrap + .tt-query, .datepicker.input-group + .typeahead, .datepicker.asColorPicker-wrap + .typeahead { + border: none; } + +/* Dropify */ +.dropify-wrapper { + border: 2px dashed #f2f2f2; + border-radius: 7px; } + .dropify-wrapper:hover { + background-size: 30px 30px; + background-image: linear-gradient(135deg, #F2F7F8 25%, transparent 25%, transparent 50%, #F2F7F8 50%, #F2F7F8 75%, transparent 75%, transparent); + -webkit-animation: stripes 2s linear infinite; + animation: stripes 2s linear infinite; } + .dropify-wrapper .dropify-message span.file-icon:before { + display: inline-block; + font: normal normal normal 24px/1 "Material Design Icons"; + font-size: inherit; + text-rendering: auto; + line-height: inherit; + -webkit-font-smoothing: antialiased; + content: '\F552'; + color: #212529; + font-size: 1.25rem; } + .dropify-wrapper .dropify-message p { + font-size: 0.8125rem; + color: #212529; } + .dropify-wrapper .dropify-preview .dropify-infos { + background: rgba(255, 255, 255, 0.9); } + .dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner .dropify-filename { + color: #2196f3; + font-size: 20px; + font-weight: 400; } + .dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner .dropify-infos-message { + color: #333; + font-weight: 500; } + .dropify-wrapper .dropify-preview .dropify-render img { + opacity: 0.7; } + .dropify-wrapper .dropify-clear { + background: #fff; + border: none; + font-weight: 700; + color: #6c757d; } + +/* Dropzone */ +.dropzone { + border: 1px solid #f2f2f2; + height: 200px; } + .dropzone .dz-message { + text-align: center; + width: 100%; } + .dropzone .dz-message span { + font-size: 0.8125rem; + color: #212529; } + +/* Flot chart */ +.float-chart-container { + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 100%; + height: 100%; + min-height: 300px; + max-height: 100%; } + +.float-chart { + width: 100%; + position: relative; + max-width: none; + height: 400px; } + .float-chart canvas { + position: absolute !important; + top: 0; + bottom: 0; } + +/* Full Calendar */ +#calendar .fc-header-toolbar { + background: #ffffff; + padding: 28px 0 80px; + margin-bottom: 0; } + #calendar .fc-header-toolbar .fc-button-group { + border-radius: 5px; } + #calendar .fc-header-toolbar .fc-button-group .fc-button { + -webkit-box-shadow: none; + box-shadow: none; + padding: 1px 12px; + margin-right: 0; + font-size: 0.9375rem; + font-weight: 400; + line-height: 1.33; + border: none; + background: #2196f3; + color: #ffffff; + text-shadow: none; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; } + #calendar .fc-header-toolbar .fc-button-group .fc-button:first-letter { + text-transform: uppercase; } + #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-state-active { + background: #0d8aee; + color: #ffffff; } + #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-next-button, #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-prev-button { + background: #ffffff; + color: #2196f3; + margin-right: 7px; + height: 2.0625rem; + width: 2.25rem; + border: none; } + #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-next-button span, #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-prev-button span { + top: -3px; + right: 9px; } + #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-next-button span:after, #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-prev-button span:after { + font: normal normal normal 24px/1 "Material Design Icons"; + display: block; + line-height: 21px; } + #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-prev-button span:after { + content: "\F141"; } + #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-next-button span:after { + content: "\F142"; } + #calendar .fc-header-toolbar .fc-today-button { + -webkit-box-shadow: none; + box-shadow: none; + padding: 1px 12px; + border-radius: 2px; + margin-right: 4px; + font-size: 0.9375rem; + font-weight: 400; + line-height: 1.33; + border: none; + background: #2196f3; + color: #ffffff; + text-shadow: none; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; } + #calendar .fc-header-toolbar .fc-today-button:first-letter { + text-transform: uppercase; } + #calendar .fc-header-toolbar .fc-center h2 { + font-size: 1.125rem; + font-weight: 600; + text-transform: uppercase; } + +#calendar .fc-view-container .fc-view { + background: #f3f4fa; } + #calendar .fc-view-container .fc-view table thead.fc-head { + border: none; } + #calendar .fc-view-container .fc-view table thead.fc-head tr td .fc-widget-header { + border: none; } + #calendar .fc-view-container .fc-view table thead.fc-head tr td .fc-widget-header table thead { + border: none; } + #calendar .fc-view-container .fc-view table thead.fc-head tr td .fc-widget-header table thead tr th.fc-day-header { + text-transform: uppercase; + padding: 0.4375rem 0; + border-color: #f2f2f2; + font-size: 0.875rem; } + #calendar .fc-view-container .fc-view table thead.fc-head tr td.fc-head-container { + border-color: #f7f7f7; + border-bottom: none; } + #calendar .fc-view-container .fc-view table tbody.fc-body { + background: #ffffff; } + #calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content { + border-color: #f2f2f2; } + #calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row { + border-color: #f2f2f2; } + #calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-bg table tr td { + border-color: #f2f2f2; } + #calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table thead tr td.fc-day-top { + padding: 8px; + font-size: 0.875rem; + font-weight: 600; } + #calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-h-event { + background: #19d895; + border: none; + padding: 6px 12px 6px 22px; + font-weight: 500; + color: #ffffff; + border-radius: 4px; } + #calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-more-cell { + font-weight: 600; + color: #252C46; + padding: 0 7px; } + +/* Google Charts */ +.google-chart-container .google-charts { + width: 100%; + height: 280px; + min-height: 280px; + min-width: 100%; } + +/* Icheck */ +.icheck, +.icheck-flat, +.icheck-line, +.icheck-square { + margin-bottom: 0.5rem; } + .icheck label, + .icheck-flat label, + .icheck-line label, + .icheck-square label { + font-size: 0.8125rem; + line-height: 1.5; + margin-left: 5px; + margin-bottom: 0; } + +/* Jquery File Upload */ +.ajax-upload-dragdrop { + border-color: #f2f2f2; + border-style: dotted; + max-width: 100%; } + .ajax-upload-dragdrop span b { + font-size: 0.8125rem; + color: #212529; + font-weight: initial; } + .ajax-upload-dragdrop .ajax-file-upload { + background: #8862e0; + -webkit-box-shadow: none; + box-shadow: none; + height: auto; } + +.ajax-file-upload-container { + min-height: 100px; } + .ajax-file-upload-container .ajax-file-upload-statusbar { + max-width: 100%; } + +/* Js-grid */ +.jsgrid .jsgrid-button { + background-image: url("../../images/sprites/jsgrid-icons.png"); } + +.jsgrid .jsgrid-grid-header { + border: 1px solid #f2f2f2; + border-top: 0; } + +.jsgrid .jsgrid-table th { + font-weight: initial; + font-family: "Poppins", sans-serif; } + +.jsgrid .jsgrid-table .jsgrid-filter-row input[type=number] { + padding: 0.56rem 0; } + +.jsgrid .jsgrid-header-sort:before { + margin-top: 10px; + float: right; } + +.jsgrid .jsgrid-header-sort-asc:before { + border-color: transparent transparent #212529; } + +.jsgrid .jsgrid-header-sort-desc:before { + border-color: #212529 transparent transparent; } + +.jsgrid .jsgrid-pager { + line-height: 2; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + +.jsgrid .jsgrid-pager-current-page { + padding: 0.5rem 0.75rem; + font-weight: initial; + line-height: 1.25; } + +/* Jvectormap */ +.jvectormap-container { + background: #ffffff; } + +/* Light Gallery */ +.lightGallery { + width: 100%; + margin: 0; } + .lightGallery .image-tile { + position: relative; + margin-bottom: 30px; } + .lightGallery .image-tile .demo-gallery-poster { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; } + .lightGallery .image-tile .demo-gallery-poster img { + display: block; + margin: auto; + width: 40%; + max-width: 60px; + min-width: 20px; } + .lightGallery .image-tile img { + max-width: 100%; + width: 100%; } + +/* Listify */ +.listify-list input { + border: 1px solid #f4f4f4; + color: #8ba2b5; + background: #fff; } + +.listify-list ul.list { + list-style: none; + padding-left: 0; } + .listify-list ul.list li { + display: block; + border-bottom: 1px solid #f2f2f2; + padding: 15px 10px; } + .listify-list ul.list li h5 { + color: #2196f3; } + .listify-list ul.list li p { + color: #8ba2b5; + margin: 0; } + +/* No-ui-slider */ +.noUi-target { + border: none; + -webkit-box-shadow: none; + box-shadow: none; + border-radius: 0; } + .noUi-target.noUi-horizontal { + height: 0.25rem; } + .noUi-target.noUi-horizontal .noUi-handle { + left: -17px; } + .noUi-target.noUi-vertical { + width: 0.25rem; + height: 156px; + display: inline-block; } + .noUi-target.noUi-vertical .noUi-handle { + left: -6px; } + .noUi-target .noUi-base { + background: #f7f7f9; + -webkit-box-shadow: none; + box-shadow: none; + border: none; } + .noUi-target .noUi-base .noUi-connect { + background: #2196f3; + -webkit-box-shadow: none; + box-shadow: none; } + .noUi-target .noUi-base .noUi-origin { + background: #19d895; } + .noUi-target .noUi-base .noUi-origin .noUi-handle { + position: relative; + background: #ffffff; + border-radius: 100%; + border: 1px solid #f2f2f2; + width: 18px; + height: 18px; + top: -7px; + outline: none; + -webkit-transition-duration: 0.4s; + transition-duration: 0.4s; } + .noUi-target .noUi-base .noUi-origin .noUi-handle:after, .noUi-target .noUi-base .noUi-origin .noUi-handle:before { + display: none; } + .noUi-target .noUi-base .noUi-origin .noUi-handle:after { + display: block; + position: absolute; + top: 5px; + left: 0; + right: 0; + margin: auto; + width: 6px; + height: 6px; + background: #2196f3; + border-radius: 100%; } + .noUi-target .noUi-base .noUi-origin .noUi-handle .noUi-tooltip { + font-family: "Poppins", sans-serif; + border-radius: 4px; + border: none; + line-height: 1; + font-size: 0.875rem; + padding: 13px 12px; + bottom: 190%; } + .noUi-target .noUi-pips .noUi-marker-horizontal, + .noUi-target .noUi-pips .noUi-marker-vertical { + background: #f2f2f2; } + .noUi-target .noUi-pips .noUi-marker-horizontal { + height: 9px; + width: 1px; } + .noUi-target .noUi-pips .noUi-marker-vertical { + height: 1px; + width: 9px; } + .noUi-target .noUi-pips .noUi-value { + color: #000; + font-size: 0.94rem; + font-family: "Poppins", sans-serif; } + +/* Slider Color variations */ +.slider-primary .noUi-base .noUi-connect { + background: #2196f3; } + +.slider-primary .noUi-base .noUi-origin { + background: #2196f3; } + .slider-primary .noUi-base .noUi-origin .noUi-handle:after { + background: #2196f3; } + .slider-primary .noUi-base .noUi-origin .noUi-handle .noUi-tooltip { + background: #2196f3; + color: #ffffff; } + +.slider-secondary .noUi-base .noUi-connect { + background: #e6eef2; } + +.slider-secondary .noUi-base .noUi-origin { + background: #e6eef2; } + .slider-secondary .noUi-base .noUi-origin .noUi-handle:after { + background: #e6eef2; } + .slider-secondary .noUi-base .noUi-origin .noUi-handle .noUi-tooltip { + background: #e6eef2; + color: #ffffff; } + +.slider-success .noUi-base .noUi-connect { + background: #19d895; } + +.slider-success .noUi-base .noUi-origin { + background: #19d895; } + .slider-success .noUi-base .noUi-origin .noUi-handle:after { + background: #19d895; } + .slider-success .noUi-base .noUi-origin .noUi-handle .noUi-tooltip { + background: #19d895; + color: #ffffff; } + +.slider-info .noUi-base .noUi-connect { + background: #8862e0; } + +.slider-info .noUi-base .noUi-origin { + background: #8862e0; } + .slider-info .noUi-base .noUi-origin .noUi-handle:after { + background: #8862e0; } + .slider-info .noUi-base .noUi-origin .noUi-handle .noUi-tooltip { + background: #8862e0; + color: #ffffff; } + +.slider-warning .noUi-base .noUi-connect { + background: #ffaf00; } + +.slider-warning .noUi-base .noUi-origin { + background: #ffaf00; } + .slider-warning .noUi-base .noUi-origin .noUi-handle:after { + background: #ffaf00; } + .slider-warning .noUi-base .noUi-origin .noUi-handle .noUi-tooltip { + background: #ffaf00; + color: #ffffff; } + +.slider-danger .noUi-base .noUi-connect { + background: #ff6258; } + +.slider-danger .noUi-base .noUi-origin { + background: #ff6258; } + .slider-danger .noUi-base .noUi-origin .noUi-handle:after { + background: #ff6258; } + .slider-danger .noUi-base .noUi-origin .noUi-handle .noUi-tooltip { + background: #ff6258; + color: #ffffff; } + +.slider-light .noUi-base .noUi-connect { + background: #fbfbfb; } + +.slider-light .noUi-base .noUi-origin { + background: #fbfbfb; } + .slider-light .noUi-base .noUi-origin .noUi-handle:after { + background: #fbfbfb; } + .slider-light .noUi-base .noUi-origin .noUi-handle .noUi-tooltip { + background: #fbfbfb; + color: #ffffff; } + +.slider-dark .noUi-base .noUi-connect { + background: #252C46; } + +.slider-dark .noUi-base .noUi-origin { + background: #252C46; } + .slider-dark .noUi-base .noUi-origin .noUi-handle:after { + background: #252C46; } + .slider-dark .noUi-base .noUi-origin .noUi-handle .noUi-tooltip { + background: #252C46; + color: #ffffff; } + +/* Owl-carousel */ +.owl-carousel img { + border-radius: 4px; } + +.owl-carousel.full-width .owl-nav { + position: absolute; + top: 30%; + width: 100%; + margin-top: 0; } + .owl-carousel.full-width .owl-nav .owl-next, + .owl-carousel.full-width .owl-nav .owl-prev { + background: transparent; + color: #ffffff; } + .owl-carousel.full-width .owl-nav .owl-next i:before, + .owl-carousel.full-width .owl-nav .owl-prev i:before { + width: 40px; + height: 40px; + background: rgba(0, 0, 0, 0.5); + border-radius: 100%; + font-size: 1.6rem; + font-weight: bold; + line-height: 40px; } + .owl-carousel.full-width .owl-nav .owl-prev { + float: left; } + .owl-carousel.full-width .owl-nav .owl-next { + float: right; } + +.owl-carousel.full-width .owl-dots { + margin-top: 1rem; } + +.owl-carousel .item-video { + width: 200px; + height: 200px; } + +/* Progressbar-js */ +.ui-progress { + border-radius: 50px; } + .ui-progress svg { + background: #f2f2f2; + border-radius: 50px; } + +.progressbar-js-circle { + width: 100%; } + +/* Pws-tabs */ +.pws_tabs_container ul.pws_tabs_controll { + border-bottom: 1px solid #2196f3; } + .pws_tabs_container ul.pws_tabs_controll li:first-child a { + border-radius: 5px 0 0 0; } + .pws_tabs_container ul.pws_tabs_controll li:last-child a { + border-right: 1px solid #2196f3; + border-radius: 0 5px 0 0; } + .pws_tabs_container ul.pws_tabs_controll li a { + border: 1px solid #2196f3; + border-bottom: none; + border-right: none; + background: #fff; + color: #2196f3; + padding: 0.3em 1.3em; + margin-right: 0; + font-weight: 500; + font-size: 14px; } + .pws_tabs_container ul.pws_tabs_controll li a:hover { + background: #fff; + color: #2196f3; } + .pws_tabs_container ul.pws_tabs_controll li a.pws_tab_active { + background: #2196f3; + color: #fff; } + +.pws_tabs_container .demo-tabs { + border: 1px solid #2196f3; + border-radius: 0 5px 5px 5px; + overflow: hidden; + background: #fbfbfb; + margin-bottom: 45px; + padding-top: 3.5rem; } + .pws_tabs_container .demo-tabs .CodeMirror { + margin-bottom: 20px; } + +.pws_tabs_container.pws_tabs_vertical .pws_tabs_controll { + border-right: none; + border-bottom: none; } + .pws_tabs_container.pws_tabs_vertical .pws_tabs_controll li:first-child a { + border-radius: 5px 0 0 0; } + .pws_tabs_container.pws_tabs_vertical .pws_tabs_controll li:last-child a { + border-bottom: 1px solid #2196f3; + border-radius: 0 0 0 5px; + border-right: 0; } + .pws_tabs_container.pws_tabs_vertical .pws_tabs_controll li a { + border-radius: 0; + border: 1px solid #2196f3; + border-right: none; + border-bottom: none; + margin-bottom: 0; } + +.pws_tabs_container.pws_tabs_horizontal_bottom .pws_tabs_list { + margin-bottom: 0; } + +.pws_tabs_container.pws_tabs_horizontal_bottom .pws_tabs_controll { + border-top: 1px solid #2196f3; + border-right: none; + border-bottom: none; } + .pws_tabs_container.pws_tabs_horizontal_bottom .pws_tabs_controll li:first-child a { + border-radius: 0 0 0 5px; } + .pws_tabs_container.pws_tabs_horizontal_bottom .pws_tabs_controll li:last-child a { + border-radius: 0 0 5px 0; + border-right: 1px solid #2196f3; } + .pws_tabs_container.pws_tabs_horizontal_bottom .pws_tabs_controll li a { + border-radius: 0; + border: 1px solid #2196f3; + border-top: none; + border-right: none; + margin-right: 0; + margin-bottom: 0; } + +.pws_tabs_container.pws_tabs_horizontal_top .pws_tabs_controll { + border-bottom: 0px; } + +.pws_tabs_container.pws_tabs_rtl .pws_tabs_controll li:first-child a { + border-radius: 0 5px 0 0; + border-right: 1px solid #2196f3; } + +.pws_tabs_container.pws_tabs_rtl .pws_tabs_controll li:last-child a { + border-right: none; + border-radius: 5px 0 0 0; } + +.pws_tabs_container.pws_tabs_rtl .pws_tabs_controll li a { + border: 1px solid #2196f3; + border-bottom: none; + border-right: none; + margin-right: 0; + margin-left: 0; } + +/* Quill Editor */ +.quill-container { + height: 300px; } + +.ql-toolbar.ql-snow, +.quill-container.ql-snow { + border-color: #f2f2f2; } + +/* Rating */ +.br-theme-css-stars .br-widget a, +.br-theme-fontawesome-stars .br-widget a { + font-size: 15px; + margin-right: 0px; } + .br-theme-css-stars .br-widget a:last-child, + .br-theme-fontawesome-stars .br-widget a:last-child { + margin-right: 0; } + +.br-theme-css-stars .br-widget a.br-active:after, +.br-theme-css-stars .br-widget a.br-selected:after, +.br-theme-fontawesome-stars .br-widget a.br-active:after, +.br-theme-fontawesome-stars .br-widget a.br-selected:after { + color: #F9CF57; } + +.br-theme-bars-1to10 .br-widget a, +.br-theme-bars-horizontal .br-widget a, +.br-theme-bars-movie .br-widget a, +.br-theme-bars-pill .br-widget a, +.br-theme-bars-reversed .br-widget a { + background-color: rgba(249, 207, 87, 0.6); + color: #F9CF57; } + .br-theme-bars-1to10 .br-widget a.br-active, .br-theme-bars-1to10 .br-widget a.br-selected, + .br-theme-bars-horizontal .br-widget a.br-active, + .br-theme-bars-horizontal .br-widget a.br-selected, + .br-theme-bars-movie .br-widget a.br-active, + .br-theme-bars-movie .br-widget a.br-selected, + .br-theme-bars-pill .br-widget a.br-active, + .br-theme-bars-pill .br-widget a.br-selected, + .br-theme-bars-reversed .br-widget a.br-active, + .br-theme-bars-reversed .br-widget a.br-selected { + background-color: #F9CF57; } + +.br-theme-bars-square .br-widget a { + border-color: rgba(249, 207, 87, 0.6); + color: rgba(249, 207, 87, 0.6); } + .br-theme-bars-square .br-widget a.br-active, .br-theme-bars-square .br-widget a.br-selected { + border-color: #F9CF57; + color: #F9CF57; } + +.br-theme-bars-1to10 .br-widget .br-current-rating, +.br-theme-bars-horizontal .br-widget .br-current-rating, +.br-theme-bars-movie .br-widget .br-current-rating, +.br-theme-bars-reversed .br-widget .br-current-rating { + color: #212529; + font-size: 0.875rem; + font-weight: initial; } + +.br-theme-bars-1to10 { + height: 26px; } + .br-theme-bars-1to10 .br-widget { + height: 24px; } + .br-theme-bars-1to10 .br-widget .br-current-rating { + line-height: 1; } + +.br-theme-bars-pill .br-widget a { + line-height: 2.5; } + +/* Select2 */ +.select2-container--default .select2-results__option--highlighted[aria-selected] { + background: #2196f3; } + +.select2-container--default .select2-dropdown, +.select2-container--default .select2-selection--multiple, +.select2-container--default .select2-selection--single { + border-color: #f2f2f2; } + .select2-container--default .select2-dropdown .select2-search__field, + .select2-container--default .select2-selection--multiple .select2-search__field, + .select2-container--default .select2-selection--single .select2-search__field { + border-color: #f2f2f2; } + +.select2-container--default .select2-selection--single { + height: auto; } + .select2-container--default .select2-selection--single .select2-selection__rendered { + line-height: 14px; } + +.select2-container--default .select2-dropdown { + font-size: 0.8125rem; } + +.select2-container--default.select2-container--focus .select2-selection--multiple { + border-color: #f2f2f2; } + +.select2-container--default .select2-selection--multiple .select2-selection__choice { + color: #ffffff; + border: 0; + border-radius: 3px; + padding: 6px; + font-size: 0.625rem; + font-family: inherit; + line-height: 1; } + .select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove { + color: #ffffff; } + .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+1) { + background: #2196f3; } + .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+2) { + background: #19d895; } + .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+3) { + background: #8862e0; } + .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+4) { + background: #ff6258; } + .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+5) { + background: #ffaf00; } + +/* Summernote Editor */ +.note-editor.note-frame { + border: 1px solid #f2f2f2; } + +.note-popover { + border: 1px solid #f2f2f2; } + +/* SweetAlert */ +.swal2-container { + z-index: 1500; } + +.swal2-modal { + min-height: 315px; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + border-radius: 10px; } + .swal2-modal .swal2-title { + font-size: 25px; + line-height: 1; + font-family: "Poppins", sans-serif; + color: #212529; + font-weight: initial; + margin-bottom: 0; } + .swal2-modal .swal2-icon, + .swal2-modal .swal2-success-ring { + margin-top: 0; + margin-bottom: 42px; } + .swal2-modal .swal2-buttonswrapper { + margin-top: 0; + padding: 0; } + .swal2-modal .swal2-buttonswrapper .swal2-styled { + margin-top: 0; + font-weight: initial; } + .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm { + background-color: #19d895 !important; + border: 1px solid #19d895 !important; + font-weight: initial; + margin-top: 32px; } + .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel { + margin-top: 32px; + background-color: #ffffff !important; + border: 1px solid #f2f2f2; + color: #212529; + font-weight: initial; } + .swal2-modal .swal2-content { + font-size: 0.875rem; + font-family: "Poppins", sans-serif; + color: #212529; + font-weight: initial; + margin-top: 11px; } + .swal2-modal .swal2-close { + font-size: 20px; } + .swal2-modal .swal2-success-ring { + left: -30px; } + +/* Switchery */ +.switchery { + width: 35px; + height: 21px; + border-radius: 11px; } + .switchery > small { + width: 20px; + height: 20px; } + +.switchery-small { + width: 25px; + height: 13px; } + .switchery-small > small { + width: 13px; + height: 13px; } + +.switchery-large { + width: 50px; + height: 28px; + border-radius: 14px; } + .switchery-large > small { + width: 27px; + height: 27px; } + +/* Tags */ +div.tagsinput { + padding: 15px 15px 10px; + border-color: #f2f2f2; } + div.tagsinput span.tag { + background: #2196f3; + border: 0; + color: #ffffff; + padding: 6px 14px; + font-size: 0.8125rem; + font-family: inherit; + line-height: 1; } + div.tagsinput span.tag a { + color: #ffffff; } + +/* TinyMCE Editor */ +.mce-tinymce.mce-panel, +.mce-tinymce .mce-panel { + border-color: #f2f2f2; } + +/* Toast */ +.jq-toast-wrap .jq-icon-success { + background-color: #19d895; } + +.jq-toast-wrap .jq-icon-info { + background-color: #8862e0; } + +.jq-toast-wrap .jq-icon-warning { + background-color: #ffaf00; } + +.jq-toast-wrap .jq-icon-error { + background-color: #ff6258; } + +/* Typeahead */ +.gist, +.tt-menu { + text-align: left; } + +.twitter-typeahead { + max-width: 100%; } + +.typeahead { + background-color: #ffffff; } + .typeahead:focus { + border-color: #f2f2f2; } + +.tt-query { + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } + +.tt-hint { + color: #6c757d; } + +.tt-menu { + width: 100%; + margin: 12px 0; + padding: 8px 0; + background-color: #ffffff; + border: 1px solid #f2f2f2; + border-radius: 8px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); } + +.tt-suggestion { + padding: 3px 20px; + font-size: inherit; } + .tt-suggestion:hover { + cursor: pointer; + color: #ffffff; + background-color: #2196f3; } + .tt-suggestion .tt-cursor { + color: #ffffff; + background-color: #2196f3; } + .tt-suggestion p { + margin: 0; } + +/* Wysi Editor */ +.wysi-editor #toolbar [data-wysihtml-action] { + float: right; } + +.wysi-editor #toolbar, +.wysi-editor textarea { + width: 920px; + padding: 5px; + -webkit-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; } + +.wysi-editor textarea { + height: 280px; + border: 1px solid #f2f2f2; + font-family: inherit; + font-size: 1rem; } + +.wysi-editor textarea:focus { + color: black; + border: 1px solid #f2f2f2; } + +.wysi-editor .wysihtml-action-active, +.wysi-editor .wysihtml-command-active { + font-weight: bold; } + +.wysi-editor [data-wysihtml-dialog] { + margin: 5px 0 0; + padding: 5px; + border: 1px solid #666; } + +.wysi-editor a[data-wysihtml-command-value="red"] { + color: #ff6258; } + +.wysi-editor a[data-wysihtml-command-value="green"] { + color: #19d895; } + +.wysi-editor a[data-wysihtml-command-value="blue"] { + color: #8862e0; } + +.wysi-editor .wysihtml-editor, +.wysi-editor .wysihtml-editor table td { + outline: 1px dotted #f2f2f2; } + +.wysi-editor code { + background: #ddd; + padding: 10px; + white-space: pre; + display: block; + margin: 1em 0; } + +.wysi-editor .toolbar { + display: block; + border-radius: 3px; + border: 1px solid #fff; + margin-bottom: 9px; + line-height: 1em; } + +.wysi-editor .toolbar a { + display: inline-block; + height: 1.5em; + border-radius: 3px; + font-size: 1rem; + line-height: 1.5em; + text-decoration: none; + background: #ffffff; + border: 1px solid #f2f2f2; + padding: 0 0.2em; + margin: 1px 0; + color: #2196f3; } + +.wysi-editor .toolbar .wysihtml-action-active, +.wysi-editor .toolbar a.wysihtml-command-active { + background: #222; + color: white; } + +.wysi-editor .toolbar .block { + padding: 1px; + display: inline-block; + background: #eee; + border-radius: 3px; + margin: 0 1px 1px 0; } + +.wysi-editor div[data-wysihtml-dialog="createTable"] { + position: absolute; + background: white; } + +.wysi-editor div[data-wysihtml-dialog="createTable"] td { + width: 10px; + height: 5px; + border: 1px solid #f2f2f2; } + +.wysi-editor .wysihtml-editor table td.wysiwyg-tmp-selected-cell { + outline: 2px solid #19d895; } + +.wysi-editor .editor-container-tag { + padding: 5px 10px; + position: absolute; + color: white; + background: rgba(0, 0, 0, 0.8); + width: 100px; + margin-left: -50px; + -webkit-transition: 0.1s left, 0.1s top; } + +.wysi-editor .wrap { + max-width: 700px; + margin: 40px; } + +.wysi-editor .editable .wysihtml-uneditable-container { + outline: 1px dotted #f2f2f2; + position: relative; } + +.wysi-editor .editable .wysihtml-uneditable-container-right { + float: right; + width: 50%; + margin-left: 2em; + margin-bottom: 1em; } + +.wysi-editor .editable .wysihtml-uneditable-container-left { + float: left; + width: 50%; + margin-right: 2em; + margin-bottom: 1em; } + +/* X-editable */ +.editable-form .editable { + color: #212529; + font-size: 0.8125rem; } + +.editable-form .editable-click { + border-color: #212529; } + +.editable-container.editable-inline { + max-width: 100%; } + .editable-container.editable-inline .editableform { + max-width: 100%; } + .editable-container.editable-inline .editableform .control-group { + max-width: 100%; + white-space: initial; } + .editable-container.editable-inline .editableform .control-group > div { + max-width: 100%; } + .editable-container.editable-inline .editableform .control-group .editable-input input, + .editable-container.editable-inline .editableform .control-group .editable-input textarea { + max-width: 100%; } + .editable-container.editable-inline .editableform .control-group .editable-input .combodate .form-control, .editable-container.editable-inline .editableform .control-group .editable-input .combodate .asColorPicker-input, .editable-container.editable-inline .editableform .control-group .editable-input .combodate .dataTables_wrapper select, .dataTables_wrapper .editable-container.editable-inline .editableform .control-group .editable-input .combodate select, .editable-container.editable-inline .editableform .control-group .editable-input .combodate .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .editable-container.editable-inline .editableform .control-group .editable-input .combodate input[type=text], .editable-container.editable-inline .editableform .control-group .editable-input .combodate + .jsgrid .jsgrid-table .jsgrid-filter-row select, + .jsgrid .jsgrid-table .jsgrid-filter-row .editable-container.editable-inline .editableform .control-group .editable-input .combodate select, .editable-container.editable-inline .editableform .control-group .editable-input .combodate .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .editable-container.editable-inline .editableform .control-group .editable-input .combodate input[type=number], .editable-container.editable-inline .editableform .control-group .editable-input .combodate .select2-container--default .select2-selection--single, .select2-container--default .editable-container.editable-inline .editableform .control-group .editable-input .combodate .select2-selection--single, .editable-container.editable-inline .editableform .control-group .editable-input .combodate .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .editable-container.editable-inline .editableform .control-group .editable-input .combodate .select2-search__field, .editable-container.editable-inline .editableform .control-group .editable-input .combodate .tt-hint, .editable-container.editable-inline .editableform .control-group .editable-input .combodate + .tt-query, .editable-container.editable-inline .editableform .control-group .editable-input .combodate + .typeahead { + padding-left: 0; + padding-right: 0; } + @media (max-width: 991px) { + .editable-container.editable-inline .editableform .control-group .editable-buttons { + display: block; + margin-top: 10px; } } + +/* Wizard */ +.wizard { + display: block; + width: 100%; + overflow: hidden; } + .wizard a { + outline: 0; } + .wizard ul { + list-style: none !important; + padding: 0; + margin: 0; } + .wizard ul > li { + display: block; + padding: 0; } + .wizard > .steps { + position: relative; + display: block; + width: 100%; } + .wizard > .steps .current-info { + position: absolute; + left: -999em; } + .wizard > .steps .number { + font-size: 0.875rem; } + .wizard > .steps > ul > li { + width: 25%; + float: left; + text-align: center; } + .wizard > .steps a { + display: block; + width: auto; + margin: 0 0.5em 0.5em; + padding: 1em; + text-decoration: none; + border-radius: 5px; + font-size: 0.875rem; + font-family: "Poppins", sans-serif; } + .wizard > .steps a:hover { + display: block; + width: auto; + margin: 0 0.5em 0.5em; + padding: 1em; + text-decoration: none; + border-radius: 5px; } + .wizard > .steps a:active { + display: block; + width: auto; + margin: 0 0.5em 0.5em; + padding: 1em; + text-decoration: none; + border-radius: 5px; } + .wizard > .steps .disabled a { + background: #f7f7f9; + color: #6c757d; + cursor: default; } + .wizard > .steps .disabled a:hover { + background: #f7f7f9; + color: #6c757d; + cursor: default; } + .wizard > .steps .disabled a:active { + background: #f7f7f9 e; + color: #6c757d; + cursor: default; } + .wizard > .steps .current a { + background: #2196f3; + color: #ffffff; + cursor: default; } + .wizard > .steps .current a:hover { + background: #2196f3; + color: #ffffff; + cursor: default; } + .wizard > .steps .current a:active { + background: #2196f3; + color: #ffffff; + cursor: default; } + .wizard > .steps .done a { + background: #82c4f8; + color: #ffffff; } + .wizard > .steps .done a:hover { + background: #82c4f8; + color: #ffffff; } + .wizard > .steps .done a:active { + background: #82c4f8; + color: #ffffff; } + .wizard > .steps .error a { + background: #ff6258; + color: #fff; } + .wizard > .steps .error a:hover { + background: #ff6258; + color: #fff; } + .wizard > .steps .error a:active { + background: #ff6258; + color: #fff; } + .wizard > .content { + background: #f3f4fa; + display: block; + margin: 0.5em; + min-height: 24em; + overflow: hidden; + position: relative; + width: auto; + border-radius: 5px; } + .wizard > .content > .title { + position: absolute; + left: -999em; } + .wizard > .content > .body { + float: left; + position: absolute; + width: 95%; + height: 95%; + padding: 2.5%; } + .wizard > .content > .body ul { + list-style: disc !important; } + .wizard > .content > .body ul > li { + display: list-item; } + .wizard > .content > .body > iframe { + border: 0 none; + width: 100%; + height: 100%; } + .wizard > .content > .body input { + display: block; + border: 1px solid #f2f2f2; } + .wizard > .content > .body input[type="checkbox"] { + display: inline-block; } + .wizard > .content > .body input.error { + background: #fbe3e4; + border: 1px solid #ffc2be; + color: #ff6258; } + .wizard > .content > .body label { + display: inline-block; + margin-bottom: 0.5em; } + .wizard > .content > .body label.error { + color: #ff6258; + display: inline-block; + margin-left: 1.5em; } + .wizard > .actions { + padding-top: 20px; + position: relative; + display: block; + text-align: right; + width: 100%; } + .wizard > .actions > ul { + display: inline-block; + text-align: right; } + .wizard > .actions > ul > li { + float: left; + margin: 0 0.5em; } + .wizard.vertical > .steps { + display: inline; + float: left; + width: 30%; } + .wizard.vertical > .steps > ul > li { + float: none; + width: 100%; + text-align: left; } + .wizard.vertical > .content { + display: inline; + float: left; + margin: 0 2.5% 0.5em; + width: 65%; } + .wizard.vertical > .actions { + display: inline; + float: right; + margin: 0 2.5%; + width: 95%; } + .wizard.vertical > .actions > ul > li { + margin: 0 0 0 1em; } + +.tabcontrol { + display: block; + width: 100%; + overflow: hidden; } + .tabcontrol a { + outline: 0; } + .tabcontrol ul { + list-style: none !important; + padding: 0; + margin: 0; } + .tabcontrol ul > li { + display: block; + padding: 0; } + .tabcontrol > .steps { + position: relative; + display: block; + width: 100%; } + .tabcontrol > .steps .current-info { + position: absolute; + left: -999em; } + .tabcontrol > .steps > ul { + position: relative; + margin: 6px 0 0; + top: 1px; + z-index: 1; } + .tabcontrol > .steps > ul > li { + float: left; + margin: 5px 2px 0 0; + padding: 1px; + -webkit-border-top-left-radius: 5px; + -webkit-border-top-right-radius: 5px; + -moz-border-radius-topleft: 5px; + -moz-border-radius-topright: 5px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; } + .tabcontrol > .steps > ul > li:hover { + background: #edecec; + border: 1px solid #f2f2f2; + padding: 0; } + .tabcontrol > .steps > ul > li > a { + color: #8ba2b5; + display: inline-block; + border: 0 none; + margin: 0; + padding: 10px 30px; + text-decoration: none; } + .tabcontrol > .steps > ul > li > a:hover { + text-decoration: none; } + .tabcontrol > .steps > ul > li.current { + background: #ffffff; + border: 1px solid #f2f2f2; + border-bottom: 0 none; + padding: 0 0 1px; + margin-top: 0; } + .tabcontrol > .steps > ul > li.current > a { + padding: 15px 30px 10px; } + .tabcontrol > .content { + position: relative; + display: inline-block; + width: 100%; + height: 35em; + overflow: hidden; + border-top: 1px solid #f2f2f2; + padding-top: 20px; } + .tabcontrol > .content > .title { + position: absolute; + left: -999em; } + .tabcontrol > .content > .body { + float: left; + position: absolute; + width: 95%; + height: 95%; + padding: 2.5%; } + .tabcontrol > .content > .body ul { + list-style: disc !important; } + .tabcontrol > .content > .body ul > li { + display: list-item; } + +/*-------------------------------------------------------------------*/ +/* === Landing screens === */ +/* Auth */ +.auth.auth-bg-1 { + background: url("../../images/auth/login_1.jpg"); + background-size: cover; } + +.auth.register-bg-1 { + background: url("../../images/auth/register.jpg") center center no-repeat; + background-size: cover; } + +.auth.theme-one .auto-form-wrapper { + background: #ffffff; + padding: 40px 40px 10px; + border-radius: 4px; + -webkit-box-shadow: 0 -25px 37.7px 11.3px rgba(8, 143, 220, 0.07); + box-shadow: 0 -25px 37.7px 11.3px rgba(8, 143, 220, 0.07); } + .auth.theme-one .auto-form-wrapper .form-group .input-group, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap { + height: 44px; } + .auth.theme-one .auto-form-wrapper .form-group .input-group .form-control, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .form-control, .auth.theme-one .auto-form-wrapper .form-group .input-group .asColorPicker-input, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .asColorPicker-input, .auth.theme-one .auto-form-wrapper .form-group .input-group .dataTables_wrapper select, .dataTables_wrapper .auth.theme-one .auto-form-wrapper .form-group .input-group select, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .dataTables_wrapper select, .dataTables_wrapper .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap select, .auth.theme-one .auto-form-wrapper .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .input-group input[type=text], .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap input[type=text], .auth.theme-one .auto-form-wrapper .form-group .input-group + .jsgrid .jsgrid-table .jsgrid-filter-row select, + .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .input-group select, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap + .jsgrid .jsgrid-table .jsgrid-filter-row select, + .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap select, .auth.theme-one .auto-form-wrapper .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .input-group input[type=number], .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap input[type=number], .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-container--default .select2-selection--single, .select2-container--default .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-selection--single, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single, .select2-container--default .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-selection--single, .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-search__field, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-search__field, .auth.theme-one .auto-form-wrapper .form-group .input-group .tt-hint, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .tt-hint, .auth.theme-one .auto-form-wrapper .form-group .input-group + .tt-query, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap + .tt-query, .auth.theme-one .auto-form-wrapper .form-group .input-group + .typeahead, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap + .typeahead { + border: 1px solid #e5e5e5; + border-right: none; + border-radius: 6px 0 0 6px; } + .auth.theme-one .auto-form-wrapper .form-group .input-group .form-control:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .form-control:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .asColorPicker-input:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .asColorPicker-input:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .dataTables_wrapper select:focus, .dataTables_wrapper .auth.theme-one .auto-form-wrapper .form-group .input-group select:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .dataTables_wrapper select:focus, .dataTables_wrapper .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap select:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .input-group input[type=text]:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap input[type=text]:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group + .jsgrid .jsgrid-table .jsgrid-filter-row select:focus, + .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .input-group select:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap + .jsgrid .jsgrid-table .jsgrid-filter-row select:focus, + .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap select:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .input-group input[type=number]:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap input[type=number]:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-container--default .select2-selection--single:focus, .select2-container--default .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-selection--single:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single:focus, .select2-container--default .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-selection--single:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-container--default .select2-selection--single .select2-search__field:focus, .select2-container--default .select2-selection--single .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-search__field:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single .select2-search__field:focus, .select2-container--default .select2-selection--single .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-search__field:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .tt-hint:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .tt-hint:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group + .tt-query:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap + .tt-query:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group + .typeahead:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap + .typeahead:focus { + border-right: none; + border-color: #e5e5e5; } + .auth.theme-one .auto-form-wrapper .form-group .input-group .input-group-append, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .input-group-append { + border-left: none; } + .auth.theme-one .auto-form-wrapper .form-group .input-group .input-group-append .input-group-text, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .input-group-append .input-group-text { + border-radius: 0 6px 6px 0; + border-left: none; + border-color: #e5e5e5; + color: #b6b6b6; } + .auth.theme-one .auto-form-wrapper .form-group .submit-btn { + font-family: "Poppins", sans-serif; + font-size: 13px; + padding: 12px 8px; + font-weight: 600; } + .auth.theme-one .auto-form-wrapper .g-login { + border: 1px solid #f2f2f2; + padding: 13px; + font-size: 12px; + font-weight: 600; + background: transparent; } + +.auth.theme-one .auth-footer { + list-style-type: none; + padding-left: 0; + margin-top: 20px; + margin-bottom: 10px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .auth.theme-one .auth-footer li { + margin-right: 10px; + line-height: 1; + padding-right: 10px; + border-right: 1px solid rgba(255, 255, 255, 0.4); } + .auth.theme-one .auth-footer li:last-child { + margin-right: 0; + border-right: none; } + .auth.theme-one .auth-footer li a { + font-size: 13px; + color: rgba(255, 255, 255, 0.4); } + @media (max-width: 576px) { + .auth.theme-one .auth-footer { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } } + +.auth.theme-one .footer-text { + color: rgba(255, 255, 255, 0.4); } + +.auth.theme-two .auto-form-wrapper { + position: relative; + height: 100vh; + min-height: 100vh; + max-height: 100vh; + padding: 110px 5% 5%; + border-radius: 4px; } + @media (max-width: 576px) { + .auth.theme-two .auto-form-wrapper { + padding: 11% 15px; + text-align: center; + height: 100%; + max-height: 100%; } } + .auth.theme-two .auto-form-wrapper .nav-get-started { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + position: absolute; + top: 30px; + right: 30px; } + @media (max-width: 576px) { + .auth.theme-two .auto-form-wrapper .nav-get-started { + margin-bottom: 5%; + margin-right: auto; + margin-left: auto; + position: relative; + top: unset; + right: unset; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } } + .auth.theme-two .auto-form-wrapper .nav-get-started p { + margin-bottom: 0; + font-weight: 300; } + .auth.theme-two .auto-form-wrapper .nav-get-started .get-started-btn { + border: 1px solid #f2f2f2; + padding: 10px 20px; + font-size: 12px; + font-weight: 600; + color: #000; + margin-left: 20px; + border-radius: 50px; } + .auth.theme-two .auto-form-wrapper form { + width: 50%; + min-width: 300px; + max-width: 480px; } + .auth.theme-two .auto-form-wrapper form .form-group { + width: 100%; + margin-bottom: 25px; } + @media (max-width: 576px) { + .auth.theme-two .auto-form-wrapper form .form-group { + margin-right: auto; + margin-left: auto; } } + .auth.theme-two .auto-form-wrapper form .form-group .input-group, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap { + height: 44px; } + .auth.theme-two .auto-form-wrapper form .form-group .input-group .form-control, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .form-control, .auth.theme-two .auto-form-wrapper form .form-group .input-group .asColorPicker-input, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .asColorPicker-input, .auth.theme-two .auto-form-wrapper form .form-group .input-group .dataTables_wrapper select, .dataTables_wrapper .auth.theme-two .auto-form-wrapper form .form-group .input-group select, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .dataTables_wrapper select, .dataTables_wrapper .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap select, .auth.theme-two .auto-form-wrapper form .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .input-group input[type=text], .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap input[type=text], .auth.theme-two .auto-form-wrapper form .form-group .input-group + .jsgrid .jsgrid-table .jsgrid-filter-row select, + .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .input-group select, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap + .jsgrid .jsgrid-table .jsgrid-filter-row select, + .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap select, .auth.theme-two .auto-form-wrapper form .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .input-group input[type=number], .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap input[type=number], .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-container--default .select2-selection--single, .select2-container--default .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-selection--single, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single, .select2-container--default .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-selection--single, .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-search__field, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-search__field, .auth.theme-two .auto-form-wrapper form .form-group .input-group .tt-hint, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .tt-hint, .auth.theme-two .auto-form-wrapper form .form-group .input-group + .tt-query, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap + .tt-query, .auth.theme-two .auto-form-wrapper form .form-group .input-group + .typeahead, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap + .typeahead { + border: 1px solid #e5e5e5; + border-left: none; + border-radius: 0 6px 6px 0; } + .auth.theme-two .auto-form-wrapper form .form-group .input-group .form-control:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .form-control:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .asColorPicker-input:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .asColorPicker-input:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .dataTables_wrapper select:focus, .dataTables_wrapper .auth.theme-two .auto-form-wrapper form .form-group .input-group select:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .dataTables_wrapper select:focus, .dataTables_wrapper .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap select:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .input-group input[type=text]:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap input[type=text]:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group + .jsgrid .jsgrid-table .jsgrid-filter-row select:focus, + .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .input-group select:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap + .jsgrid .jsgrid-table .jsgrid-filter-row select:focus, + .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap select:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .input-group input[type=number]:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap input[type=number]:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-container--default .select2-selection--single:focus, .select2-container--default .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-selection--single:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single:focus, .select2-container--default .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-selection--single:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-container--default .select2-selection--single .select2-search__field:focus, .select2-container--default .select2-selection--single .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-search__field:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single .select2-search__field:focus, .select2-container--default .select2-selection--single .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-search__field:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .tt-hint:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .tt-hint:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group + .tt-query:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap + .tt-query:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group + .typeahead:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap + .typeahead:focus { + border-left: none; + border-color: #e5e5e5; } + .auth.theme-two .auto-form-wrapper form .form-group .input-group .input-group-prepend .input-group-text, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .input-group-prepend .input-group-text, .auth.theme-two .auto-form-wrapper form .form-group .input-group .asColorPicker-trigger .input-group-text, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .asColorPicker-trigger .input-group-text { + border-radius: 6px 0 0 6px; + border-color: #e5e5e5; + border-right: none; + color: #dfdfdf; } + .auth.theme-two .auto-form-wrapper form .form-group .submit-btn { + font-family: "Poppins", sans-serif; + font-size: 13px; + padding: 11px 33px; + font-weight: 600; + background-image: linear-gradient(120deg, #556cdc, #128bfc, #18bef1); } + .auth.theme-two .auto-form-wrapper .footer-text { + font-size: 13px; + margin-bottom: 0; } + .auth.theme-two .auto-form-wrapper .auth-footer { + list-style-type: none; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + margin-top: 7px; + padding-left: 0; + margin-bottom: 0; } + .auth.theme-two .auto-form-wrapper .auth-footer li { + margin-right: 10px; + line-height: 1; + padding-right: 10px; + border-right: 1px solid #858585; } + .auth.theme-two .auto-form-wrapper .auth-footer li:last-child { + margin-right: 0; + border-right: none; } + .auth.theme-two .auto-form-wrapper .auth-footer li a { + font-size: 13px; + color: #858585; } + @media (max-width: 576px) { + .auth.theme-two .auto-form-wrapper .auth-footer { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } } + +.auth.theme-two .banner-section { + padding-right: 0; } + .auth.theme-two .banner-section .slide-content { + width: 100%; } + .auth.theme-two .banner-section .slide-content.bg-1 { + background: url("../../images/auth/login_2.jpg") no-repeat center center; + background-size: cover; } + .auth.theme-two .banner-section .slide-content.bg-2 { + background: url("../../images/auth/register_2.jpg") no-repeat center center; + background-size: cover; } + +/* Error */ +.error-page h1 { + font-size: 9.375rem; + line-height: 1; } + @media (max-width: 991px) { + .error-page h1 { + font-size: 8rem; } } + +.error-page h2 { + font-size: 4.375rem; + line-height: 1; } + +@media (min-width: 992px) { + .error-page .error-page-divider { + border-left: 3px solid rgba(255, 255, 255, 0.2); } } + +/* Landing */ +.landing-page .navbar { + padding: 2rem 0; + box-shadow: none; + -webkit-box-shadow: none; } + .landing-page .navbar .navbar-brand img { + width: 145px; } + @media (max-width: 991px) { + .landing-page .navbar .navbar-collapse { + display: block; } } + .landing-page .navbar .navbar-collapse.collapse { + display: none; } + .landing-page .navbar .navbar-collapse.show { + display: block; } + .landing-page .navbar .navbar-collapse .navbar-nav .nav-item .nav-link { + color: #ffffff; + padding-left: 1rem; + padding-right: 1rem; + font-size: 0.9375rem; + font-family: "Poppins", sans-serif; + text-align: left; } + @media (min-width: 992px) { + .landing-page .navbar .navbar-collapse .navbar-nav .nav-item .nav-link { + margin-left: 1rem; + margin-right: 1rem; } + .landing-page .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:first-child { + margin-left: 0; } + .landing-page .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:last-child { + margin-right: 0; } } + +.landing-page .top-banner { + background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1); } + .landing-page .top-banner .demo-image img { + max-width: 500px; } + @media (min-width: 992px) { + .landing-page .top-banner .demo-image img { + position: absolute; + left: -80px; } } + @media (max-width: 991px) { + .landing-page .top-banner .demo-image img { + margin-top: 1rem; + max-width: 100%; } } + .landing-page .top-banner .top-banner-content { + padding-top: 80px; + padding-bottom: 120px; } + +.landing-page .middle-section { + padding-top: 120px; + padding-bottom: 80px; + text-align: center; + color: #000; } + .landing-page .middle-section .card { + background: #ffffff; + border-radius: 10px; + -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1); + -webkit-transition: -webkit-box-shadow 0.5s ease; + transition: -webkit-box-shadow 0.5s ease; + transition: box-shadow 0.5s ease; + transition: box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease; } + .landing-page .middle-section .card:hover { + -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.05); } + .landing-page .middle-section .card.card-icon-top { + position: relative; } + .landing-page .middle-section .card.card-icon-top .card-body { + padding: 3rem; } + .landing-page .middle-section .card.card-icon-top .card-icon { + position: absolute; + width: 65px; + height: 65px; + top: -30px; + left: calc(50% - 30px); } + .landing-page .middle-section .card.card-item-preview { + position: relative; } + .landing-page .middle-section .card.card-item-preview .badge { + position: absolute; + top: -25px; + right: -35px; + width: 65px; + height: 65px; + padding: 1rem; + border-radius: 50%; + line-height: 32px; + font-size: 1rem; } + .landing-page .middle-section .card.card-item-preview .card-img-top { + border-top-left-radius: 10px; + border-top-right-radius: 10px; } + +.landing-page .bottom-section { + color: #000; + text-align: center; + padding-top: 80px; } + +.landing-page .feature-list { + margin-top: 100px; + margin-bottom: 100px; } + @media (min-width: 992px) { + .landing-page .feature-list .feature-list-row:first-child { + border-bottom: 1px solid #f4f4f4; } } + .landing-page .feature-list .feature-list-row .feature-list-item { + padding-top: 1rem; + padding-bottom: 2rem; } + .landing-page .feature-list .feature-list-row .feature-list-item i { + display: block; + font-size: 1.875rem; + margin-bottom: 2rem; } + @media (min-width: 992px) { + .landing-page .feature-list .feature-list-row .feature-list-item { + border-right: 1px solid #f4f4f4; } + .landing-page .feature-list .feature-list-row .feature-list-item:last-child { + border-right: 0; } } + .landing-page .feature-list .feature-list-row .feature-list-item .feature-description { + font-family: "Poppins", sans-serif; } + +.landing-page .footer { + background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1); + margin: 0; + width: 100%; + padding: 80px 0 0; } + .landing-page .footer .footer-top { + border-bottom: 1px solid rgba(255, 255, 255, 0.2); } + .landing-page .footer .footer-top .brand-logo { + width: 145px; } + .landing-page .footer .footer-top .footer-social-icons { + margin-top: 3rem; } + .landing-page .footer .footer-top .footer-social-icons i { + width: 43px; + height: 43px; + font-size: 1rem; + border-radius: 100%; + text-align: center; + line-height: 43px; + margin-right: 0.5rem; } + .landing-page .footer .footer-top .contact-details i { + font-size: 1.25rem; + font-weight: 500; } + .landing-page .footer .footer-top .nav .nav-item .nav-link { + color: #ffffff; + border-right: 1px solid #f2f2f2; + padding-top: 0; + padding-bottom: 0; + font-size: 0.9375rem; + font-family: "Poppins", sans-serif; + line-height: 1; } + .landing-page .footer .footer-top .nav .nav-item:last-child .nav-link { + border-right: 0; } + .landing-page .footer .footer-top .nav .nav-item:first-child .nav-link { + padding-left: 0; } + .landing-page .footer .footer-top .form-control, .landing-page .footer .footer-top .asColorPicker-input, .landing-page .footer .footer-top .dataTables_wrapper select, .dataTables_wrapper .landing-page .footer .footer-top select, .landing-page .footer .footer-top .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .landing-page .footer .footer-top input[type=text], .landing-page .footer .footer-top + .jsgrid .jsgrid-table .jsgrid-filter-row select, + .jsgrid .jsgrid-table .jsgrid-filter-row .landing-page .footer .footer-top select, .landing-page .footer .footer-top .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .landing-page .footer .footer-top input[type=number], .landing-page .footer .footer-top .select2-container--default .select2-selection--single, .select2-container--default .landing-page .footer .footer-top .select2-selection--single, .landing-page .footer .footer-top .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .landing-page .footer .footer-top .select2-search__field, .landing-page .footer .footer-top .tt-hint, .landing-page .footer .footer-top + .tt-query, .landing-page .footer .footer-top + .typeahead { + background: rgba(0, 0, 0, 0.3); + border: none; + border-radius: 1.25rem; + padding-top: 0.75rem; + padding-bottom: 0.75rem; } + .landing-page .footer .footer-bottom { + color: #ffffff; + font-family: "Poppins", sans-serif; } + +.profile-page .profile-header { + width: 100%; + background: url("/assets/images/dashboard/banner_bg.jpg") no-repeat center center; + background-size: cover; + padding: 60px 0; + border-radius: 5px; } + .profile-page .profile-header .profile-info .profile-user-name { + margin-bottom: 0; + font-family: "Poppins", sans-serif; + font-weight: 600; } + .profile-page .profile-header .profile-info .profile-user-designation { + margin-bottom: 0; + font-family: "Poppins", sans-serif; } + .profile-page .profile-header .profile-info .br-wrapper { + padding-left: 15px; } + .profile-page .profile-header .profile-info .br-wrapper .br-widget { + height: auto; + -webkit-transform: translateY(-5px); + transform: translateY(-5px); } + .profile-page .profile-header .profile-info .br-wrapper .br-widget a { + font-size: 18px; + margin-right: 0; } + .profile-page .profile-header .details { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .profile-page .profile-header .details .detail-col { + padding-right: 20%; + border-right: 1px solid rgba(242, 242, 242, 0.3); + margin-right: 20%; } + .profile-page .profile-header .details .detail-col:last-child { + border-right: none; + margin-right: 0; } + .profile-page .profile-header .details .detail-col p { + margin-bottom: 0; + font-weight: 400; } + .profile-page .profile-header .details .detail-col p:first-child { + font-weight: 700; } + +.profile-page .profile-body { + padding-top: 50px; } + .profile-page .profile-body .tab-switch { + border-bottom: 1px solid #f2f2f2; } + .profile-page .profile-body .tab-switch .nav-item .nav-link { + color: #858585; + font-size: 1rem; + padding-bottom: 1.2rem; + font-weight: 600; + border-bottom: 3px solid #ffffff; + -webkit-transition-duration: 0.4s; + transition-duration: 0.4s; + -webkit-transition-timing-function: ease-in; + transition-timing-function: ease-in; + -webkit-transition-property: color, border-color; + transition-property: color, border-color; } + .profile-page .profile-body .tab-switch .nav-item .nav-link.active { + color: #000; + border-bottom: 3px solid #2196f3; } + .profile-page .profile-body .tab-body { + border: none; + padding: 10px 0; } + .profile-page .profile-body .tab-body .stages { + position: relative; } + .profile-page .profile-body .tab-body .stages .stage-badge { + position: absolute; + top: 0; + left: -20px; } + .profile-page .profile-body .tab-body .stages .file-icon-wrapper { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } + .profile-page .profile-body .tab-body .stages .file-icon-wrapper .file-icon { + height: 77px; + width: 69px; + padding: 5px; + margin-right: 25px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .profile-page .profile-body .tab-body .stages .file-icon-wrapper .file-icon i { + font-size: 43px; + margin-right: 0; } + +/*-------------------------------------------------------------------*/ + +/*# sourceMappingURL=style.css.map */ diff --git a/assets/css/shared/style.css.map b/assets/css/shared/style.css.map new file mode 100755 index 0000000..b568303 --- /dev/null +++ b/assets/css/shared/style.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["shared/style.scss","../../../node_modules/bootstrap/scss/bootstrap.scss","shared/_fonts.scss","../../../node_modules/bootstrap/scss/_root.scss","../../../node_modules/bootstrap/scss/_reboot.scss","shared/_variables.scss","../../../node_modules/bootstrap/scss/_variables.scss","shared/style.css","../../../node_modules/bootstrap/scss/mixins/_hover.scss","../../../node_modules/bootstrap/scss/_type.scss","../../../node_modules/bootstrap/scss/mixins/_lists.scss","../../../node_modules/bootstrap/scss/_images.scss","../../../node_modules/bootstrap/scss/mixins/_image.scss","../../../node_modules/bootstrap/scss/mixins/_border-radius.scss","../../../node_modules/bootstrap/scss/_code.scss","../../../node_modules/bootstrap/scss/_grid.scss","../../../node_modules/bootstrap/scss/mixins/_grid.scss","../../../node_modules/bootstrap/scss/mixins/_breakpoints.scss","../../../node_modules/bootstrap/scss/mixins/_grid-framework.scss","../../../node_modules/bootstrap/scss/_tables.scss","../../../node_modules/bootstrap/scss/mixins/_table-row.scss","../../../node_modules/bootstrap/scss/_functions.scss","../../../node_modules/bootstrap/scss/_forms.scss","../../../node_modules/bootstrap/scss/mixins/_transition.scss","../../../node_modules/bootstrap/scss/mixins/_forms.scss","../../../node_modules/bootstrap/scss/mixins/_gradients.scss","../../../node_modules/bootstrap/scss/_buttons.scss","../../../node_modules/bootstrap/scss/mixins/_buttons.scss","../../../node_modules/bootstrap/scss/_transitions.scss","../../../node_modules/bootstrap/scss/_dropdown.scss","../../../node_modules/bootstrap/scss/mixins/_caret.scss","../../../node_modules/bootstrap/scss/mixins/_nav-divider.scss","../../../node_modules/bootstrap/scss/_button-group.scss","../../../node_modules/bootstrap/scss/_input-group.scss","../../../node_modules/bootstrap/scss/_custom-forms.scss","../../../node_modules/bootstrap/scss/_nav.scss","../../../node_modules/bootstrap/scss/_navbar.scss","../../../node_modules/bootstrap/scss/_card.scss","../../../node_modules/bootstrap/scss/_breadcrumb.scss","../../../node_modules/bootstrap/scss/_pagination.scss","../../../node_modules/bootstrap/scss/mixins/_pagination.scss","../../../node_modules/bootstrap/scss/_badge.scss","../../../node_modules/bootstrap/scss/mixins/_badge.scss","../../../node_modules/bootstrap/scss/_jumbotron.scss","../../../node_modules/bootstrap/scss/_alert.scss","../../../node_modules/bootstrap/scss/mixins/_alert.scss","../../../node_modules/bootstrap/scss/_progress.scss","../../../node_modules/bootstrap/scss/_media.scss","../../../node_modules/bootstrap/scss/_list-group.scss","../../../node_modules/bootstrap/scss/mixins/_list-group.scss","../../../node_modules/bootstrap/scss/_close.scss","../../../node_modules/bootstrap/scss/_modal.scss","../../../node_modules/bootstrap/scss/_tooltip.scss","../../../node_modules/bootstrap/scss/mixins/_reset-text.scss","../../../node_modules/bootstrap/scss/_popover.scss","../../../node_modules/bootstrap/scss/_carousel.scss","../../../node_modules/bootstrap/scss/utilities/_align.scss","../../../node_modules/bootstrap/scss/mixins/_background-variant.scss","../../../node_modules/bootstrap/scss/utilities/_background.scss","../../../node_modules/bootstrap/scss/utilities/_borders.scss","../../../node_modules/bootstrap/scss/utilities/_clearfix.scss","../../../node_modules/bootstrap/scss/mixins/_clearfix.scss","../../../node_modules/bootstrap/scss/utilities/_display.scss","../../../node_modules/bootstrap/scss/utilities/_embed.scss","../../../node_modules/bootstrap/scss/utilities/_flex.scss","../../../node_modules/bootstrap/scss/utilities/_float.scss","../../../node_modules/bootstrap/scss/mixins/_float.scss","../../../node_modules/bootstrap/scss/utilities/_position.scss","../../../node_modules/bootstrap/scss/utilities/_screenreaders.scss","../../../node_modules/bootstrap/scss/mixins/_screen-reader.scss","../../../node_modules/bootstrap/scss/utilities/_shadows.scss","../../../node_modules/bootstrap/scss/utilities/_sizing.scss","../../../node_modules/bootstrap/scss/utilities/_spacing.scss","../../../node_modules/bootstrap/scss/utilities/_text.scss","../../../node_modules/bootstrap/scss/mixins/_text-truncate.scss","../../../node_modules/bootstrap/scss/mixins/_text-emphasis.scss","../../../node_modules/bootstrap/scss/mixins/_text-hide.scss","../../../node_modules/bootstrap/scss/utilities/_visibility.scss","../../../node_modules/bootstrap/scss/mixins/_visibility.scss","../../../node_modules/bootstrap/scss/_print.scss","shared/mixins/_animation.scss","shared/mixins/_misc.scss","shared/_reset.scss","shared/_functions.scss","shared/mixins/_text.scss","shared/_navbar.scss","shared/_typography.scss","shared/mixins/_blockqoute.scss","shared/_misc.scss","shared/_footer.scss","shared/_utilities.scss","shared/mixins/_background.scss","shared/_demo.scss","shared/_dashboard.scss","shared/components/_accordions.scss","shared/mixins/_accordions.scss","shared/components/_badges.scss","shared/mixins/_badges.scss","shared/components/_bootstrap-alerts.scss","shared/components/_bootstrap-progress.scss","shared/components/_buttons.scss","shared/mixins/_buttons.scss","shared/components/_breadcrumbs.scss","shared/mixins/_breadcrumbs.scss","shared/components/_cards.scss","shared/mixins/_cards.scss","shared/components/_checkbox-radio.scss","shared/components/_dropdown.scss","shared/components/_forms.scss","shared/components/_google-maps.scss","shared/components/_icons.scss","shared/components/_lists.scss","shared/components/loaders/_loaders.scss","shared/components/loaders/_colored-balls.scss","shared/components/loaders/_glowing-ball.scss","shared/components/loaders/_pixel-loader.scss","shared/components/loaders/_square-box.scss","shared/components/loaders/_variables.scss","shared/components/loaders/_circle-loader.scss","shared/components/loaders/_jumping-dots-loader.scss","shared/components/loaders/_bar-loader.scss","shared/components/loaders/_square-path-loader.scss","shared/components/loaders/_dot-opacity-loader.scss","shared/components/loaders/_flip-square-loader.scss","shared/components/loaders/_moving-square-loader.scss","shared/components/_modals.scss","shared/components/_nav.scss","shared/components/_new-account.scss","shared/components/_pagination.scss","shared/mixins/_pagination.scss","shared/components/_popovers.scss","shared/mixins/_popovers.scss","shared/components/_portfolio.scss","shared/components/_preview.scss","shared/components/_pricing-table.scss","shared/components/_tables.scss","shared/components/_tabs.scss","shared/mixins/_tabs.scss","shared/components/_settings-panel.scss","shared/components/_todo-list.scss","shared/components/_tooltips.scss","shared/mixins/_tooltips.scss","shared/components/_user-profile.scss","shared/components/_widgets.scss","shared/components/timeline/_timeline-horizontal.scss","shared/components/timeline/_timeline-vertical.scss","shared/components/mail-components/_mail-sidebar.scss","shared/components/mail-components/_mail-list-container.scss","shared/components/mail-components/_messagecontent.scss","shared/components/plugin-overrides/_ace.scss","shared/components/plugin-overrides/_avgrund.scss","shared/components/plugin-overrides/_bootstrap-tour.scss","shared/components/plugin-overrides/_chartjs.scss","shared/components/plugin-overrides/_chartist.scss","shared/components/plugin-overrides/_codemirror.scss","shared/components/plugin-overrides/_colcade.scss","shared/components/plugin-overrides/_colorpicker.scss","shared/components/plugin-overrides/_context-menu.scss","shared/components/plugin-overrides/_clockpicker.scss","shared/components/plugin-overrides/_data-tables.scss","shared/components/plugin-overrides/_datepicker.scss","shared/components/plugin-overrides/_dropify.scss","shared/components/plugin-overrides/_dropzone.scss","shared/components/plugin-overrides/_flot-chart.scss","shared/components/plugin-overrides/_full-calendar.scss","shared/components/plugin-overrides/_google-charts.scss","shared/components/plugin-overrides/_icheck.scss","shared/components/plugin-overrides/_jquery-file-upload.scss","shared/components/plugin-overrides/_js-grid.scss","shared/components/plugin-overrides/_jvectormap.scss","shared/components/plugin-overrides/_light-gallery.scss","shared/components/plugin-overrides/_listify.scss","shared/components/plugin-overrides/_no-ui-slider.scss","shared/mixins/_no-ui-slider.scss","shared/components/plugin-overrides/_owl-carousel.scss","shared/components/plugin-overrides/_progressbar-js.scss","shared/components/plugin-overrides/_pws-tabs.scss","shared/components/plugin-overrides/_quill.scss","shared/components/plugin-overrides/_rating.scss","shared/components/plugin-overrides/_select2.scss","shared/components/plugin-overrides/_summernote.scss","shared/components/plugin-overrides/_sweet-alert.scss","shared/components/plugin-overrides/_switchery.scss","shared/components/plugin-overrides/_tags.scss","shared/components/plugin-overrides/_tinymce.scss","shared/components/plugin-overrides/_toast.scss","shared/components/plugin-overrides/_typeahead.scss","shared/components/plugin-overrides/_wysieditor.scss","shared/components/plugin-overrides/_x-editable.scss","shared/components/plugin-overrides/_wizard.scss","shared/screens/_auth.scss","shared/screens/_error.scss","shared/screens/_landing.scss","shared/screens/_profile-page.scss"],"names":[],"mappings":"AAAA;;;;;qEAKqE;AAErE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qEAmHqE;AAErE,uEAAuE;AAEvE,sDAAsD;AAItD,uEAAuE;AAEvE,uCAAuC;AAGvC,uEAAuE;AAEvE,gCAAgC;ACzIhC;;;;;GAKG;ACHH,8EAAY;AACZ,mFAAY;ACHZ;EAGI,gBAAe;EAAf,kBAAe;EAAf,kBAAe;EAAf,gBAAe;EAAf,eAAe;EAAf,kBAAe;EAAf,kBAAe;EAAf,iBAAe;EAAf,gBAAe;EAAf,gBAAe;EAAf,iBAAe;EAAf,gBAAe;EAAf,qBAAe;EAAf,gBAAe;EAAf,kBAAe;EAAf,kBAAe;EAAf,gBAAe;EAAf,eAAe;EAAf,kBAAe;EAAf,kBAAe;EAAf,iBAAe;EAAf,gBAAe;EAAf,gBAAe;EAAf,iBAAe;EAAf,uBAAe;EAAf,gBAAe;EAAf,sBAAe;EAAf,yBAAe;EAIf,mBAAe;EAAf,qBAAe;EAAf,mBAAe;EAAf,gBAAe;EAAf,mBAAe;EAAf,kBAAe;EAAf,iBAAe;EAAf,gBAAe;EAIf,mBAAkC;EAAlC,uBAAkC;EAAlC,uBAAkC;EAAlC,uBAAkC;EAAlC,wBAAkC;EAKpC,mMAA0B;EAC1B,8GAAyB,EAC1B;;ACED;;;EAGE,+BAAuB;EAAvB,uBAAuB,EACxB;;AAED;EACE,wBAAwB;EACxB,kBAAkB;EAClB,+BAA+B;EAC/B,2BAA2B;EAC3B,8BAA8B;EAC9B,yCCrBU,EDsBX;;AAIC;EACE,oBAAoB,EAAA;;AAMxB;EACE,eAAe,EAChB;;AAUD;EACE,UAAU;EACV,sLEgMoM;EF/LpM,gBEoMgC;EFnMhC,iBEwM+B;EFvM/B,iBE2M+B;EF1M/B,eCvBkB;EDwBlB,iBAAiB;EACjB,uBEtDa,EFuDd;;AGiJD;EHzIE,sBAAsB,EACvB;;AAQD;EACE,gCAAwB;EAAxB,wBAAwB;EACxB,UAAU;EACV,kBAAkB,EACnB;;AAYD;EACE,cAAc;EACd,sBE6KoC,EF5KrC;;AAOD;EACE,cAAc;EACd,oBEkE8B,EFjE/B;;AASD;;EAEE,2BAA2B;EAC3B,0CAAkC;EAAlC,kCAAkC;EAClC,aAAa;EACb,iBAAiB,EAClB;;AAED;EACE,oBAAoB;EACpB,mBAAmB;EACnB,qBAAqB,EACtB;;AAED;;;EAGE,cAAc;EACd,oBAAoB,EACrB;;AAED;;;;EAIE,iBAAiB,EAClB;;AAED;EACE,iBEgH+B,EF/GhC;;AAED;EACE,qBAAqB;EACrB,eAAe,EAChB;;AAED;EACE,iBAAiB,EAClB;;AAED;EACE,mBAAmB,EACpB;;AAGD;;EAEE,oBAAoB,EACrB;;AAGD;EACE,eAAe,EAChB;;AAOD;;EAEE,mBAAmB;EACnB,eAAe;EACf,eAAe;EACf,yBAAyB,EAC1B;;AAED;EAAM,eAAe,EAAI;;AACzB;EAAM,WAAW,EAAI;;AAOrB;EACE,eE9Je;EF+Jf,sBE/B8B;EFgC9B,8BAA8B;EAC9B,sCAAsC,EAMvC;EAVD;IAOI,eEnC8B;IFoC9B,2BEnCiC,EE9Jb;;AJ2MxB;EACE,eAAe;EACf,sBAAsB,EAUvB;EAZD;IAKI,eAAe;IACf,sBAAsB,EI1MvB;EJoMH;IAUI,WAAW,EACZ;;AAQH;;;;EAIE,kGEagH;EFZhH,eAAe,EAChB;;AAED;EAEE,cAAc;EAEd,oBAAoB;EAEpB,eAAe;EAGf,8BAA8B,EAC/B;;AAOD;EAEE,iBAAiB,EAClB;;AAOD;EACE,uBAAuB;EACvB,mBAAmB,EACpB;;AAED;EAGE,iBAAiB;EACjB,uBAAuB,EACxB;;AAOD;EACE,0BAA0B,EAC3B;;AAED;EACE,uBC9I4B;ED+I5B,0BC/I4B;EDgJ5B,eErRgB;EFsRhB,iBAAiB;EACjB,qBAAqB,EACtB;;AAED;EAGE,oBAAoB,EACrB;;AAOD;EAEE,sBAAsB;EACtB,sBE+F2C,EF9F5C;;AAKD;EACE,iBAAiB,EAClB;;AAMD;EACE,oBAAoB;EACpB,2CAA2C,EAC5C;;AAED;;;;;EAKE,UAAU;EACV,qBAAqB;EACrB,mBAAmB;EACnB,qBAAqB,EACtB;;AAED;;EAEE,kBAAkB,EACnB;;AAED;;EAEE,qBAAqB,EACtB;;AAKD;;;;EAIE,2BAA2B,EAC5B;;AAGD;;;;EAIE,WAAW;EACX,mBAAmB,EACpB;;AAED;;EAEE,+BAAuB;EAAvB,uBAAuB;EACvB,WAAW,EACZ;;AAGD;;;;EASE,4BAA4B,EAC7B;;AAED;EACE,eAAe;EAEf,iBAAiB,EAClB;;AAED;EAME,aAAa;EAEb,WAAW;EACX,UAAU;EACV,UAAU,EACX;;AAID;EACE,eAAe;EACf,YAAY;EACZ,gBAAgB;EAChB,WAAW;EACX,qBAAqB;EACrB,kBAAkB;EAClB,qBAAqB;EACrB,eAAe;EACf,oBAAoB,EACrB;;AAED;EACE,yBAAyB,EAC1B;;AGVD;;EHeE,aAAa,EACd;;AGZD;EHmBE,qBAAqB;EACrB,yBAAyB,EAC1B;;AGjBD;;EHyBE,yBAAyB,EAC1B;;AAOD;EACE,cAAc;EACd,2BAA2B,EAC5B;;AAMD;EACE,sBAAsB,EACvB;;AAED;EACE,mBAAmB;EACnB,gBAAgB,EACjB;;AAED;EACE,cAAc,EACf;;AGnCD;EHwCE,yBAAyB,EAC1B;;AK5dD;;EAEE,sBHyQoC;EGxQpC,qBHyQmC;EGxQnC,iBHyQ+B;EGxQ/B,iBHyQ+B;EGxQ/B,eHyQmC,EGxQpC;;AAED;EAAU,kBH2PmC,EG3PP;;AACtC;EAAU,gBH2PmC,EG3PP;;AACtC;EAAU,mBH2PmC,EG3PP;;AACtC;EAAU,kBH2PmC,EG3PP;;AACtC;EAAU,mBH2PmC,EG3PP;;AACtC;EAAU,gBH2OwB,EG3OI;;AAEtC;EACE,mBH2Q4C;EG1Q5C,iBH2Q+B,EG1QhC;;AAGD;EACE,gBH0PgC;EGzPhC,iBH8P+B;EG7P/B,iBHqP+B,EGpPhC;;AACD;EACE,kBHsPkC;EGrPlC,iBH0P+B;EGzP/B,iBHgP+B,EG/OhC;;AACD;EACE,kBHkPkC;EGjPlC,iBHsP+B;EGrP/B,iBH2O+B,EG1OhC;;AACD;EACE,kBH8OkC;EG7OlC,iBHkP+B;EGjP/B,iBHsO+B,EGrOhC;;AAOD;EACE,iBHwEW;EGvEX,oBHuEW;EGtEX,UAAU;EACV,yCHtCa,EGuCd;;AAOD;;EAEE,eHiO+B;EGhO/B,iBH+L+B,EG9LhC;;AAED;;EAEE,eHqOgC;EGpOhC,0BH6OmC,EG5OpC;;AAOD;EC/EE,gBAAgB;EAChB,iBAAiB,EDgFlB;;AAGD;ECpFE,gBAAgB;EAChB,iBAAiB,EDqFlB;;AACD;EACE,sBAAsB,EAKvB;EAND;IAII,qBHuN+B,EGtNhC;;AASH;EACE,eAAe;EACf,0BAA0B,EAC3B;;AAGD;EACE,oBHeW;EGdX,mBHyL4C,EGxL7C;;AAED;EACE,eAAe;EACf,eAAe;EACf,eHvGgB,EG4GjB;EARD;IAMI,uBAAuB,EACxB;;AEpHH;ECIE,gBAAgB;EAGhB,aAAa,EDLd;;AAID;EACE,iBL61BwC;EK51BxC,uBLLa;EKMb,0BLHgB;EOTd,uBP+NgC;EMxNlC,gBAAgB;EAGhB,aAAa,EDQd;;AAMD;EAEE,sBAAsB,EACvB;;AAED;EACE,sBAAuB;EACvB,eAAe,EAChB;;AAED;EACE,eL80BqC;EK70BrC,eLxBgB,EKyBjB;;AGxCD;EACE,iBRs6BuC;EQr6BvC,eRwCe;EQvCf,uBAAuB,EAMxB;EATD;IAOI,eAAe,EAChB;;AAIH;EACE,uBR85BuC;EQ75BvC,iBRy5BuC;EQx5BvC,YRNa;EQOb,0BREgB;EOfd,sBPiO+B,EQ1MlC;EAdD;IASI,WAAW;IACX,gBAAgB;IAChB,iBR6O6B,EQ3O9B;;AAIH;EACE,eAAe;EACf,iBRw4BuC;EQv4BvC,eRdgB,EQsBjB;EAXD;IAOI,mBAAmB;IACnB,eAAe;IACf,mBAAmB,EACpB;;AAIH;EACE,kBRq4BuC;EQp4BvC,mBAAmB,EACpB;;AC1CC;ECAA,YAAY;EACZ,sBAAkC;EAClC,qBAAiC;EACjC,mBAAmB;EACnB,kBAAkB,EDDjB;EEoDC;IFvDF;MCYI,iBVwLK,ESjMR,EAAA;EEoDC;IFvDF;MCYI,iBVyLK,ESlMR,EAAA;EEoDC;IFvDF;MCYI,iBV0LK,ESnMR,EAAA;EEoDC;IFvDF;MCYI,kBV2LM,ESpMT,EAAA;;AASD;ECZA,YAAY;EACZ,sBAAkC;EAClC,qBAAiC;EACjC,mBAAmB;EACnB,kBAAkB,EDUjB;;AAQD;ECJA,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,oBAAgB;EAAhB,gBAAgB;EAChB,sBAAiC;EACjC,qBAAgC,EDG/B;;AAID;EACE,gBAAgB;EAChB,eAAe,EAOhB;EATD;;IAMI,iBAAiB;IACjB,gBAAgB,EACjB;;AGlCH;;;;;;EACE,mBAAmB;EACnB,YAAY;EACZ,gBAAgB;EAChB,sBAAuB;EACvB,qBAAsB,EACvB;;AAiBG;EACE,2BAAc;EAAd,cAAc;EACd,oBAAa;EAAb,qBAAa;EAAb,aAAa;EACb,gBAAgB,EACjB;;AACD;EACE,oBAAe;EAAf,mBAAe;EAAf,eAAe;EACf,YAAY;EACZ,gBAAgB,EACjB;;AAGC;EFDN,oBAAoB;EAApB,uBAAoB;EAApB,mBAAoB;EAIpB,oBAAqB,EEDd;;AAFD;EFDN,oBAAoB;EAApB,wBAAoB;EAApB,oBAAoB;EAIpB,qBAAqB,EEDd;;AAFD;EFDN,oBAAoB;EAApB,kBAAoB;EAApB,cAAoB;EAIpB,eAAqB,EEDd;;AAFD;EFDN,oBAAoB;EAApB,wBAAoB;EAApB,oBAAoB;EAIpB,qBAAqB,EEDd;;AAFD;EFDN,oBAAoB;EAApB,wBAAoB;EAApB,oBAAoB;EAIpB,qBAAqB,EEDd;;AAFD;EFDN,oBAAoB;EAApB,kBAAoB;EAApB,cAAoB;EAIpB,eAAqB,EEDd;;AAFD;EFDN,oBAAoB;EAApB,wBAAoB;EAApB,oBAAoB;EAIpB,qBAAqB,EEDd;;AAFD;EFDN,oBAAoB;EAApB,wBAAoB;EAApB,oBAAoB;EAIpB,qBAAqB,EEDd;;AAFD;EFDN,oBAAoB;EAApB,kBAAoB;EAApB,cAAoB;EAIpB,eAAqB,EEDd;;AAFD;EFDN,oBAAoB;EAApB,wBAAoB;EAApB,oBAAoB;EAIpB,qBAAqB,EEDd;;AAFD;EFDN,oBAAoB;EAApB,wBAAoB;EAApB,oBAAoB;EAIpB,qBAAqB,EEDd;;AAFD;EFDN,oBAAoB;EAApB,mBAAoB;EAApB,eAAoB;EAIpB,gBAAqB,EEDd;;AAGH;EAAE,6BAAU;EAAV,mBAAU;EAAV,UAAU,EAAI;;AAEhB;EAAE,8BAAe;EAAf,mBAAe;EAAf,UAAe,EAAQ;;AAGvB;EAAE,6BADU;EACV,kBADU;EACV,SADU,EACG;;AAAf;EAAE,6BADU;EACV,kBADU;EACV,SADU,EACG;;AAAf;EAAE,6BADU;EACV,kBADU;EACV,SADU,EACG;;AAAf;EAAE,6BADU;EACV,kBADU;EACV,SADU,EACG;;AAAf;EAAE,6BADU;EACV,kBADU;EACV,SADU,EACG;;AAAf;EAAE,6BADU;EACV,kBADU;EACV,SADU,EACG;;AAAf;EAAE,6BADU;EACV,kBADU;EACV,SADU,EACG;;AAAf;EAAE,6BADU;EACV,kBADU;EACV,SADU,EACG;;AAAf;EAAE,6BADU;EACV,kBADU;EACV,SADU,EACG;;AAAf;EAAE,8BADU;EACV,kBADU;EACV,SADU,EACG;;AAAf;EAAE,8BADU;EACV,mBADU;EACV,UADU,EACG;;AAAf;EAAE,8BADU;EACV,mBADU;EACV,UADU,EACG;;AAAf;EAAE,8BADU;EACV,mBADU;EACV,UADU,EACG;;AAMb;EFRR,sBAAwC,EEU/B;;AAFD;EFRR,uBAAwC,EEU/B;;AAFD;EFRR,iBAAwC,EEU/B;;AAFD;EFRR,uBAAwC,EEU/B;;AAFD;EFRR,uBAAwC,EEU/B;;AAFD;EFRR,iBAAwC,EEU/B;;AAFD;EFRR,uBAAwC,EEU/B;;AAFD;EFRR,uBAAwC,EEU/B;;AAFD;EFRR,iBAAwC,EEU/B;;AAFD;EFRR,uBAAwC,EEU/B;;AAFD;EFRR,uBAAwC,EEU/B;;ADAP;EC9BE;IACE,2BAAc;IAAd,cAAc;IACd,oBAAa;IAAb,qBAAa;IAAb,aAAa;IACb,gBAAgB,EACjB;EACD;IACE,oBAAe;IAAf,mBAAe;IAAf,eAAe;IACf,YAAY;IACZ,gBAAgB,EACjB;EAGC;IFDN,oBAAoB;IAApB,uBAAoB;IAApB,mBAAoB;IAIpB,oBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,kBAAoB;IAApB,cAAoB;IAIpB,eAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,kBAAoB;IAApB,cAAoB;IAIpB,eAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,kBAAoB;IAApB,cAAoB;IAIpB,eAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,mBAAoB;IAApB,eAAoB;IAIpB,gBAAqB,EEDd;EAGH;IAAE,6BAAU;IAAV,mBAAU;IAAV,UAAU,EAAI;EAEhB;IAAE,8BAAe;IAAf,mBAAe;IAAf,UAAe,EAAQ;EAGvB;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,8BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,8BADU;IACV,mBADU;IACV,UADU,EACG;EAAf;IAAE,8BADU;IACV,mBADU;IACV,UADU,EACG;EAAf;IAAE,8BADU;IACV,mBADU;IACV,UADU,EACG;EAMb;IFRR,eAA4B,EEUnB;EAFD;IFRR,sBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,iBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,iBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,iBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B,EAAA;;ADAP;EC9BE;IACE,2BAAc;IAAd,cAAc;IACd,oBAAa;IAAb,qBAAa;IAAb,aAAa;IACb,gBAAgB,EACjB;EACD;IACE,oBAAe;IAAf,mBAAe;IAAf,eAAe;IACf,YAAY;IACZ,gBAAgB,EACjB;EAGC;IFDN,oBAAoB;IAApB,uBAAoB;IAApB,mBAAoB;IAIpB,oBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,kBAAoB;IAApB,cAAoB;IAIpB,eAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,kBAAoB;IAApB,cAAoB;IAIpB,eAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,kBAAoB;IAApB,cAAoB;IAIpB,eAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,mBAAoB;IAApB,eAAoB;IAIpB,gBAAqB,EEDd;EAGH;IAAE,6BAAU;IAAV,mBAAU;IAAV,UAAU,EAAI;EAEhB;IAAE,8BAAe;IAAf,mBAAe;IAAf,UAAe,EAAQ;EAGvB;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,8BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,8BADU;IACV,mBADU;IACV,UADU,EACG;EAAf;IAAE,8BADU;IACV,mBADU;IACV,UADU,EACG;EAAf;IAAE,8BADU;IACV,mBADU;IACV,UADU,EACG;EAMb;IFRR,eAA4B,EEUnB;EAFD;IFRR,sBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,iBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,iBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,iBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B,EAAA;;ADAP;EC9BE;IACE,2BAAc;IAAd,cAAc;IACd,oBAAa;IAAb,qBAAa;IAAb,aAAa;IACb,gBAAgB,EACjB;EACD;IACE,oBAAe;IAAf,mBAAe;IAAf,eAAe;IACf,YAAY;IACZ,gBAAgB,EACjB;EAGC;IFDN,oBAAoB;IAApB,uBAAoB;IAApB,mBAAoB;IAIpB,oBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,kBAAoB;IAApB,cAAoB;IAIpB,eAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,kBAAoB;IAApB,cAAoB;IAIpB,eAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,kBAAoB;IAApB,cAAoB;IAIpB,eAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,mBAAoB;IAApB,eAAoB;IAIpB,gBAAqB,EEDd;EAGH;IAAE,6BAAU;IAAV,mBAAU;IAAV,UAAU,EAAI;EAEhB;IAAE,8BAAe;IAAf,mBAAe;IAAf,UAAe,EAAQ;EAGvB;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,8BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,8BADU;IACV,mBADU;IACV,UADU,EACG;EAAf;IAAE,8BADU;IACV,mBADU;IACV,UADU,EACG;EAAf;IAAE,8BADU;IACV,mBADU;IACV,UADU,EACG;EAMb;IFRR,eAA4B,EEUnB;EAFD;IFRR,sBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,iBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,iBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,iBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B,EAAA;;ADAP;EC9BE;IACE,2BAAc;IAAd,cAAc;IACd,oBAAa;IAAb,qBAAa;IAAb,aAAa;IACb,gBAAgB,EACjB;EACD;IACE,oBAAe;IAAf,mBAAe;IAAf,eAAe;IACf,YAAY;IACZ,gBAAgB,EACjB;EAGC;IFDN,oBAAoB;IAApB,uBAAoB;IAApB,mBAAoB;IAIpB,oBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,kBAAoB;IAApB,cAAoB;IAIpB,eAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,kBAAoB;IAApB,cAAoB;IAIpB,eAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,kBAAoB;IAApB,cAAoB;IAIpB,eAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IAIpB,qBAAqB,EEDd;EAFD;IFDN,oBAAoB;IAApB,mBAAoB;IAApB,eAAoB;IAIpB,gBAAqB,EEDd;EAGH;IAAE,6BAAU;IAAV,mBAAU;IAAV,UAAU,EAAI;EAEhB;IAAE,8BAAe;IAAf,mBAAe;IAAf,UAAe,EAAQ;EAGvB;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,6BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,8BADU;IACV,kBADU;IACV,SADU,EACG;EAAf;IAAE,8BADU;IACV,mBADU;IACV,UADU,EACG;EAAf;IAAE,8BADU;IACV,mBADU;IACV,UADU,EACG;EAAf;IAAE,8BADU;IACV,mBADU;IACV,UADU,EACG;EAMb;IFRR,eAA4B,EEUnB;EAFD;IFRR,sBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,iBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,iBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,iBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B;EAFD;IFRR,uBAAwC,EEU/B,EAAA;;ACxDX;EACE,YAAY;EACZ,oBbyHW;EaxHX,8Bb6TuC,EaxSxC;EAxBD;;IAOI,mBd0I0B;IczI1B,oBAAoB;IACpB,8BdckB,EcbnB;EAVH;IAaI,uBAAuB;IACvB,iCdSkB,EcRnB;EAfH;IAkBI,8BdKkB,EcJnB;EAnBH;IAsBI,uBbhBW,EaiBZ;;AAQH;;EAGI,gBb4R+B,Ea3RhC;;AAQH;EACE,0BdrBoB,EckCrB;EAdD;;IAKI,0BdzBkB,Ec0BnB;EANH;;IAWM,yBAAuB,EACxB;;AAIL;;;;EAKI,UAAU,EACX;;AAOH;EAEI,0Bd1DmI,Ec2DpI;;AAQH;EAGM,0BdlEa,EGZK;;AYPtB;;;EAII,0BC2EO,ED1ER;;AAKH;EAKM,0BAJqB,EZJL;EYGtB;;IASQ,0BARmB,EASpB;;AApBP;;;EAII,0BC2EO,ED1ER;;AAKH;EAKM,0BAJqB,EZJL;EYGtB;;IASQ,0BARmB,EASpB;;AApBP;;;EAII,0BC2EO,ED1ER;;AAKH;EAKM,0BAJqB,EZJL;EYGtB;;IASQ,0BARmB,EASpB;;AApBP;;;EAII,0BC2EO,ED1ER;;AAKH;EAKM,0BAJqB,EZJL;EYGtB;;IASQ,0BARmB,EASpB;;AApBP;;;EAII,0BC2EO,ED1ER;;AAKH;EAKM,0BAJqB,EZJL;EYGtB;;IASQ,0BARmB,EASpB;;AApBP;;;EAII,0BC2EO,ED1ER;;AAKH;EAKM,0BAJqB,EZJL;EYGtB;;IASQ,0BARmB,EASpB;;AApBP;;;EAII,0BC2EO,ED1ER;;AAKH;EAKM,0BAJqB,EZJL;EYGtB;;IASQ,0BARmB,EASpB;;AApBP;;;EAII,0BC2EO,ED1ER;;AAKH;EAKM,0BAJqB,EZJL;EYGtB;;IASQ,0BARmB,EASpB;;AApBP;;;EAII,uCdWS,EcVV;;AAKH;EAKM,uCAJqB,EZJL;EYGtB;;IASQ,uCARmB,EASpB;;ADwFT;EAGM,Yb1GS;Ea2GT,0BblGY;EamGZ,sBb4N+B,Ea3NhC;;AANL;EAWM,eb3GY;Ea4GZ,0BbjHY;EakHZ,sBdnGgB,EcoGjB;;AAIL;EACE,Yb1Ha;Ea2Hb,0BblHgB,Ea2IjB;EA3BD;;;IAOI,sBbwMiC,EavMlC;EARH;IAWI,UAAU,EACX;EAZH;IAgBM,4CbzIS,Ea0IV;EAjBL;IAuBQ,6CbhJO,EEES;;AS6DpB;EE6FJ;IAOQ,eAAe;IACf,YAAY;IACZ,iBAAiB;IACjB,kCAAkC;IAClC,6CAA6C,EAOhD;IAlBL;MAeU,UAAU,EACX,EAAA;;AF7GL;EE6FJ;IAOQ,eAAe;IACf,YAAY;IACZ,iBAAiB;IACjB,kCAAkC;IAClC,6CAA6C,EAOhD;IAlBL;MAeU,UAAU,EACX,EAAA;;AF7GL;EE6FJ;IAOQ,eAAe;IACf,YAAY;IACZ,iBAAiB;IACjB,kCAAkC;IAClC,6CAA6C,EAOhD;IAlBL;MAeU,UAAU,EACX,EAAA;;AF7GL;EE6FJ;IAOQ,eAAe;IACf,YAAY;IACZ,iBAAiB;IACjB,kCAAkC;IAClC,6CAA6C,EAOhD;IAlBL;MAeU,UAAU,EACX,EAAA;;AAhBT;EAOQ,eAAe;EACf,YAAY;EACZ,iBAAiB;EACjB,kCAAkC;EAClC,6CAA6C,EAOhD;EAlBL;IAeU,UAAU,EACX;;AGhLT;;;;EACE,eAAe;EACf,YAAY;EACZ,4BhBob0C;EgBnb1C,0BjByHwB;EiBxHxB,gBhBoPgC;EgBnPhC,ejBwHmB;EiBvHnB,ehBIgB;EgBHhB,0BjBFa;EiBGb,6BAA6B;EAC7B,0BhBFgB;EgBOd,mBjB0GqB;EkB1HnB,yFjBgc4F;EiBhc5F,iFjBgc4F;EiBhc5F,yEjBgc4F;EiBhc5F,+GjBgc4F,EgB5YjG;EChDC;IDHF;;;;MCII,yBAAiB;MAAjB,iBAAiB,ED+CpB,EAAA;EAnDD;;;;IA0BI,8BAA8B;IAC9B,UAAU,EACX;EA5BH;;;;IEQI,elBGc;IkBFd,uBlBLW;IkBMX,sBlBka2C;IkBja3C,WAAW;IAKT,yDlBkBW;IkBlBX,iDlBkBW,EkBhBd;EFlBH;;;;IAmCI,ejBuF6B;IiBrF7B,WAAW,EACZ;EAtCH;;;;IAmCI,ejBuF6B;IiBrF7B,WAAW,EACZ;EAtCH;;;;IAmCI,ejBuF6B;IiBrF7B,WAAW,EACZ;EAtCH;;;;IAmCI,ejBuF6B;IiBrF7B,WAAW,EACZ;EAtCH;;;;;;;IA+CI,0BhBzCc;IgB2Cd,WAAW,EACZ;;AAGH;;;;EAOI,ehBjDc;EgBkDd,0BjBvDW,EiBwDZ;;AAIH;;EAEE,eAAe;EACf,YAAY,EACb;;AASD;EACE,iCAAiB;EACjB,oCAAoB;EACpB,iBAAiB;EACjB,mBAAmB;EACnB,ejB0CmB,EiBzCpB;;AAED;EACE,iCAAiB;EACjB,oCAAoB;EACpB,mBhBgK4C;EgB/J5C,ejByCsB,EiBxCvB;;AAED;EACE,gCAAiB;EACjB,mCAAoB;EACpB,oBhB0J4C;EgBzJ5C,ejB+BsB,EiB9BvB;;AAQD;EACE,eAAe;EACf,YAAY;EACZ,qBjBcsB;EiBbtB,wBjBasB;EiBZtB,iBAAiB;EACjB,ejBamB;EiBZnB,ehBrGgB;EgBsGhB,8BAA8B;EAC9B,0BAA0B;EAC1B,oBAAmC,EAOpC;EAjBD;IAcI,iBAAiB;IACjB,gBAAgB,EACjB;;AAWH;EACE,8BhBmT0C;EgBlT1C,wBjBRyB;EiBSzB,oBhBkH4C;EgBjH5C,ejBTsB;EQnIpB,sBPiO+B,EgBnFlC;;AAED;EACE,6BhB8S0C;EgB7S1C,yBjBb0B;EiBc1B,mBhByG4C;EgBxG5C,ejBdsB;EQtIpB,sBPgO+B,EgB1ElC;;AAGD;;;;;;;EAGI,aAAa,EACd;;AAGH;;;EACE,aAAa,EACd;;AAQD;EACE,oBhBiS0C,EgBhS3C;;AAED;EACE,eAAe;EACf,oBhBmR4C,EgBlR7C;;AAOD;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,oBAAgB;EAAhB,gBAAgB;EAChB,mBAAmB;EACnB,kBAAkB,EAOnB;EAXD;;IAQI,mBAAmB;IACnB,kBAAkB,EACnB;;AAQH;EACE,mBAAmB;EACnB,eAAe;EACf,sBhBwP6C,EgBvP9C;;AAED;EACE,mBAAmB;EACnB,mBhBoP2C;EgBnP3C,sBhBkP6C,EgB7O9C;EARD;IAMI,ejBpLgB,EiBqLjB;;AAGH;EACE,iBAAiB,EAClB;;AAED;EACE,4BAAqB;EAArB,4BAAqB;EAArB,qBAAqB;EACrB,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,gBAAgB;EAChB,sBhBuO4C,EgB9N7C;EAbD;IAQI,iBAAiB;IACjB,cAAc;IACd,wBhBkO4C;IgBjO5C,eAAe,EAChB;;AEjND;EACE,cAAc;EACd,YAAY;EACZ,oBlBua0C;EkBta1C,elBoQ6B;EkBnQ7B,elBaa,EkBZd;;AAED;EACE,mBAAmB;EACnB,UAAU;EACV,WAAW;EACX,cAAc;EACd,gBAAgB;EAChB,wBnB8KsB;EmB7KtB,kBAAkB;EAClB,mBnB0KsB;EmBzKtB,iBlB0N6B;EkBzN7B,YlBrCW;EkBsCX,yClBDa;EO3Cb,wBRsN2B,EmBxK5B;;AAED;;;;;;;;;;EAGI,sBlBRW,EkBkBZ;EAbH;;;;;;;;;;IAMM,sBlBXS;IkBYT,yDlBZS;IkBYT,iDlBZS,EkBaV;EANH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IASI,eAAe,EAChB;;AAKH;;;EAEI,eAAe,EAChB;;AAKH;EAEI,elBhCS,EkBiCV;;AAHH;;;EAMI,eAAe,EAChB;;AAKH;EAEI,elB5CS,EkBiDV;EAPH;IAKM,0BAAyB,EAC1B;;AANL;;;EAUI,eAAe,EAChB;;AAXH;ECnFA,0BDkGkC,EAC7B;;AAhBL;EAqBM,yElB/DO;EkB+DP,iElB/DO,EkBgER;;AAOL;EAEI,sBlBzES,EkB4EV;EALH;IAIe,sBAAsB,EAAI;;AAJzC;;;EAQI,eAAe,EAChB;;AATH;EAaM,yDlBpFO;EkBoFP,iDlBpFO,EkBqFR;;AAvGP;EACE,cAAc;EACd,YAAY;EACZ,oBlBua0C;EkBta1C,elBoQ6B;EkBnQ7B,elBUa,EkBTd;;AAED;EACE,mBAAmB;EACnB,UAAU;EACV,WAAW;EACX,cAAc;EACd,gBAAgB;EAChB,wBnB8KsB;EmB7KtB,kBAAkB;EAClB,mBnB0KsB;EmBzKtB,iBlB0N6B;EkBzN7B,YlBrCW;EkBsCX,yClBJa;EOxCb,wBRsN2B,EmBxK5B;;AAED;;;;;;;;;;EAGI,sBlBXW,EkBqBZ;EAbH;;;;;;;;;;IAMM,sBlBdS;IkBeT,yDlBfS;IkBeT,iDlBfS,EkBgBV;EANH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IASI,eAAe,EAChB;;AAKH;;;EAEI,eAAe,EAChB;;AAKH;EAEI,elBnCS,EkBoCV;;AAHH;;;EAMI,eAAe,EAChB;;AAKH;EAEI,elB/CS,EkBoDV;EAPH;IAKM,0BAAyB,EAC1B;;AANL;;;EAUI,eAAe,EAChB;;AAXH;ECnFA,0BDkGkC,EAC7B;;AAhBL;EAqBM,yElBlEO;EkBkEP,iElBlEO,EkBmER;;AAOL;EAEI,sBlB5ES,EkB+EV;EALH;IAIe,sBAAsB,EAAI;;AAJzC;;;EAQI,eAAe,EAChB;;AATH;EAaM,yDlBvFO;EkBuFP,iDlBvFO,EkBwFR;;AFiIT;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,+BAAoB;EAApB,8BAAoB;EAApB,wBAAoB;EAApB,oBAAoB;EACpB,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB,EAoErB;EAvED;IASI,YAAY,EACb;ELnNC;IKyMJ;MAeM,qBAAc;MAAd,qBAAc;MAAd,cAAc;MACd,0BAAoB;MAApB,uBAAoB;MAApB,oBAAoB;MACpB,yBAAwB;MAAxB,sBAAwB;MAAxB,wBAAwB;MACxB,iBAAiB,EAClB;IAnBL;MAuBM,qBAAc;MAAd,qBAAc;MAAd,cAAc;MACd,oBAAe;MAAf,mBAAe;MAAf,eAAe;MACf,+BAAoB;MAApB,8BAAoB;MAApB,wBAAoB;MAApB,oBAAoB;MACpB,0BAAoB;MAApB,uBAAoB;MAApB,oBAAoB;MACpB,iBAAiB,EAClB;IA5BL;;;;;MAgCM,sBAAsB;MACtB,YAAY;MACZ,uBAAuB,EACxB;IAnCL;MAuCM,sBAAsB,EACvB;IAxCL;;MA4CM,YAAY,EACb;IA7CL;MAkDM,qBAAc;MAAd,qBAAc;MAAd,cAAc;MACd,0BAAoB;MAApB,uBAAoB;MAApB,oBAAoB;MACpB,yBAAwB;MAAxB,sBAAwB;MAAxB,wBAAwB;MACxB,YAAY;MACZ,gBAAgB,EACjB;IAvDL;MAyDM,mBAAmB;MACnB,cAAc;MACd,sBhB2IwC;MgB1IxC,eAAe,EAChB;IA7DL;MAgEM,0BAAoB;MAApB,uBAAoB;MAApB,oBAAoB;MACpB,yBAAwB;MAAxB,sBAAwB;MAAxB,wBAAwB,EACzB;IAlEL;MAoEM,iBAAiB,EAClB,EAAA;;AIpUL;EACE,sBAAsB;EACtB,iBpB4P+B;EoB3P/B,mBAAmB;EACnB,oBAAoB;EACpB,uBAAuB;EACvB,0BAAkB;EAAlB,uBAAkB;EAAlB,sBAAkB;EAAlB,kBAAkB;EAClB,8BAA2C;ECsF3C,0BtBOsB;EsBNtB,gBrB2JgC;EqB1JhC,etBMiB;EsBHf,yBtBcwB;EkBjHtB,sJjB6Y6I;EiB7Y7I,8IjB6Y6I;EiB7Y7I,sIjB6Y6I;EiB7Y7I,4KjB6Y6I,EoBlWlJ;EHvCC;IGHF;MHII,yBAAiB;MAAjB,iBAAiB,EGsCpB,EAAA;EA1CD;IAaI,sBAAsB,ElBAvB;EkBbH;IAkBI,WAAW;IACX,yDpBea;IoBfb,iDpBea,EoBdd;EApBH;IAyBI,cpBuW6B,EoBrW9B;EA3BH;IA+BI,gBAAgB,EACjB;;AAaH;;;;;;;;EAEE,qBAAqB,EACtB;;AAQC;ECxDA,YrBIa;EmBJX,0BpBc4B;EsBZ9B,sBtBY8B,EqB4C7B;EAFD;IClDE,YrBFW;ImBJX,0BEDiE;IASjE,sBAT2G,EnBOvF;EkBkDtB;ICvCI,yDtBH0B;IsBG1B,iDtBH0B,EsBK7B;EDqCD;IChCE,YrBpBW;IqBqBX,0BtBX4B;IsBY5B,sBtBZ4B,EsBa7B;ED6BD;;;ICxBE,YrB5BW;IqB6BX,0BAlCqJ;IAsCrJ,sBAtC+L,EAgDhM;IDSD;;;MCZM,yDtB9BwB;MsB8BxB,iDtB9BwB,EsBgC3B;;ADUH;ECxDA,erBagB;EmBbd,0BpBcgD;EsBZlD,sBtBYkD,EqB4CjD;EAFD;IClDE,erBOc;ImBbd,0BEDiE;IASjE,sBAT2G,EnBOvF;EkBkDtB;ICvCI,0DtBH8C;IsBG9C,kDtBH8C,EsBKjD;EDqCD;IChCE,erBXc;IqBYd,0BtBXgD;IsBYhD,sBtBZgD,EsBajD;ED6BD;;;ICxBE,erBnBc;IqBoBd,0BAlCqJ;IAsCrJ,sBAtC+L,EAgDhM;IDSD;;;MCZM,0DtB9B4C;MsB8B5C,kDtB9B4C,EsBgC/C;;ADUH;ECxDA,erBagB;EmBbd,0BpBciE;EsBZnE,sBtBYmE,EqB4ClE;EAFD;IClDE,YrBFW;ImBJX,0BEDiE;IASjE,sBAT2G,EnBOvF;EkBkDtB;ICvCI,yDtBH+D;IsBG/D,iDtBH+D,EsBKlE;EDqCD;IChCE,erBXc;IqBYd,0BtBXiE;IsBYjE,sBtBZiE,EsBalE;ED6BD;;ICxBE,YrB5BW;IqB6BX,0BAlCqJ;IAsCrJ,sBAtC+L,EAgDhM;IDSD;;MCZM,yDtB9B6D;MsB8B7D,iDtB9B6D,EsBgChE;;ADUH;ECxDA,YrBIa;EmBJX,0BpBcgF;EsBZlF,sBtBYkF,EqB4CjF;EAFD;IClDE,YrBFW;ImBJX,0BEDiE;IASjE,sBAT2G,EnBOvF;EkBkDtB;ICvCI,yDtBH8E;IsBG9E,iDtBH8E,EsBKjF;EDqCD;IChCE,YrBpBW;IqBqBX,0BtBXgF;IsBYhF,sBtBZgF,EsBajF;ED6BD;;;ICxBE,YrB5BW;IqB6BX,0BAlCqJ;IAsCrJ,sBAtC+L,EAgDhM;IDSD;;;MCZM,yDtB9B4E;MsB8B5E,iDtB9B4E,EsBgC/E;;ADUH;ECxDA,erBagB;EmBbd,0BpBckG;EsBZpG,sBtBYoG,EqB4CnG;EAFD;IClDE,erBOc;ImBbd,0BEDiE;IASjE,sBAT2G,EnBOvF;EkBkDtB;ICvCI,wDtBHgG;IsBGhG,gDtBHgG,EsBKnG;EDqCD;IChCE,erBXc;IqBYd,0BtBXkG;IsBYlG,sBtBZkG,EsBanG;ED6BD;;ICxBE,YrB5BW;IqB6BX,0BAlCqJ;IAsCrJ,sBAtC+L,EAgDhM;IDSD;;MCZM,wDtB9B8F;MsB8B9F,gDtB9B8F,EsBgCjG;;ADUH;ECxDA,YrBIa;EmBJX,0BpBcmH;EsBZrH,sBtBYqH,EqB4CpH;EAFD;IClDE,YrBFW;ImBJX,0BEDiE;IASjE,sBAT2G,EnBOvF;EkBkDtB;ICvCI,wDtBHiH;IsBGjH,gDtBHiH,EsBKpH;EDqCD;IChCE,YrBpBW;IqBqBX,0BtBXmH;IsBYnH,sBtBZmH,EsBapH;ED6BD;;ICxBE,YrB5BW;IqB6BX,0BAlCqJ;IAsCrJ,sBAtC+L,EAgDhM;IDSD;;MCZM,wDtB9B+G;MsB8B/G,gDtB9B+G,EsBgClH;;ADUH;ECxDA,erBagB;EmBbd,0BpBcmI;EsBZrI,sBtBYqI,EqB4CpI;EAFD;IClDE,erBOc;ImBbd,0BEDiE;IASjE,sBAT2G,EnBOvF;EkBkDtB;ICvCI,0DtBHiI;IsBGjI,kDtBHiI,EsBKpI;EDqCD;IChCE,erBXc;IqBYd,0BtBXmI;IsBYnI,sBtBZmI,EsBapI;ED6BD;;ICxBE,erBnBc;IqBoBd,0BAlCqJ;IAsCrJ,sBAtC+L,EAgDhM;IDSD;;MCZM,0DtB9B+H;MsB8B/H,kDtB9B+H,EsBgClI;;ADUH;ECxDA,YrBIa;EmBJX,0BpBckJ;EsBZpJ,sBtBYoJ,EqB4CnJ;EAFD;IClDE,YrBFW;ImBJX,0BEDiE;IASjE,sBAT2G,EnBOvF;EkBkDtB;ICvCI,uDtBHgJ;IsBGhJ,+CtBHgJ,EsBKnJ;EDqCD;IChCE,YrBpBW;IqBqBX,0BtBXkJ;IsBYlJ,sBtBZkJ,EsBanJ;ED6BD;;ICxBE,YrB5BW;IqB6BX,0BAlCqJ;IAsCrJ,sBAtC+L,EAgDhM;IDSD;;MCZM,uDtB9B8I;MsB8B9I,+CtB9B8I,EsBgCjJ;;ADgBH;ECXA,etBrC8B;EsBsC9B,8BAA8B;EAC9B,uBAAuB;EACvB,sBtBxC8B,EqBkD7B;EAFD;ICLE,YrBrDW;IqBsDX,0BtB5C4B;IsB6C5B,sBtB7C4B,EsB8C7B;EDED;ICEE,yDtBlD4B;IsBkD5B,iDtBlD4B,EsBmD7B;EDHD;ICOE,etBvD4B;IsBwD5B,8BAA8B,EAC/B;EDTD;;;ICcE,YrBxEW;IqByEX,0BtB/D4B;IsBgE5B,sBtBhE4B,EsB0E7B;ID1BD;;;MCuBM,yDtBvEwB;MsBuExB,iDtBvEwB,EsByE3B;;ADzBH;ECXA,etBrCkD;EsBsClD,8BAA8B;EAC9B,uBAAuB;EACvB,sBtBxCkD,EqBkDjD;EAFD;ICLE,erB5Cc;IqB6Cd,0BtB5CgD;IsB6ChD,sBtB7CgD,EsB8CjD;EDED;ICEE,0DtBlDgD;IsBkDhD,kDtBlDgD,EsBmDjD;EDHD;ICOE,etBvDgD;IsBwDhD,8BAA8B,EAC/B;EDTD;;ICcE,erB/Dc;IqBgEd,0BtB/DgD;IsBgEhD,sBtBhEgD,EsB0EjD;ID1BD;;MCuBM,0DtBvE4C;MsBuE5C,kDtBvE4C,EsByE/C;;ADzBH;ECXA,etBrCmE;EsBsCnE,8BAA8B;EAC9B,uBAAuB;EACvB,sBtBxCmE,EqBkDlE;EAFD;ICLE,erB5Cc;IqB6Cd,0BtB5CiE;IsB6CjE,sBtB7CiE,EsB8ClE;EDED;ICEE,yDtBlDiE;IsBkDjE,iDtBlDiE,EsBmDlE;EDHD;ICOE,etBvDiE;IsBwDjE,8BAA8B,EAC/B;EDTD;;ICcE,erB/Dc;IqBgEd,0BtB/DiE;IsBgEjE,sBtBhEiE,EsB0ElE;ID1BD;;MCuBM,yDtBvE6D;MsBuE7D,iDtBvE6D,EsByEhE;;ADzBH;ECXA,etBrCkF;EsBsClF,8BAA8B;EAC9B,uBAAuB;EACvB,sBtBxCkF,EqBkDjF;EAFD;ICLE,YrBrDW;IqBsDX,0BtB5CgF;IsB6ChF,sBtB7CgF,EsB8CjF;EDED;ICEE,yDtBlDgF;IsBkDhF,iDtBlDgF,EsBmDjF;EDHD;ICOE,etBvDgF;IsBwDhF,8BAA8B,EAC/B;EDTD;;ICcE,YrBxEW;IqByEX,0BtB/DgF;IsBgEhF,sBtBhEgF,EsB0EjF;ID1BD;;MCuBM,yDtBvE4E;MsBuE5E,iDtBvE4E,EsByE/E;;ADzBH;ECXA,etBrCoG;EsBsCpG,8BAA8B;EAC9B,uBAAuB;EACvB,sBtBxCoG,EqBkDnG;EAFD;ICLE,erB5Cc;IqB6Cd,0BtB5CkG;IsB6ClG,sBtB7CkG,EsB8CnG;EDED;ICEE,wDtBlDkG;IsBkDlG,gDtBlDkG,EsBmDnG;EDHD;ICOE,etBvDkG;IsBwDlG,8BAA8B,EAC/B;EDTD;;ICcE,erB/Dc;IqBgEd,0BtB/DkG;IsBgElG,sBtBhEkG,EsB0EnG;ID1BD;;MCuBM,wDtBvE8F;MsBuE9F,gDtBvE8F,EsByEjG;;ADzBH;ECXA,etBrCqH;EsBsCrH,8BAA8B;EAC9B,uBAAuB;EACvB,sBtBxCqH,EqBkDpH;EAFD;ICLE,YrBrDW;IqBsDX,0BtB5CmH;IsB6CnH,sBtB7CmH,EsB8CpH;EDED;ICEE,wDtBlDmH;IsBkDnH,gDtBlDmH,EsBmDpH;EDHD;ICOE,etBvDmH;IsBwDnH,8BAA8B,EAC/B;EDTD;;ICcE,YrBxEW;IqByEX,0BtB/DmH;IsBgEnH,sBtBhEmH,EsB0EpH;ID1BD;;MCuBM,wDtBvE+G;MsBuE/G,gDtBvE+G,EsByElH;;ADzBH;ECXA,etBrCqI;EsBsCrI,8BAA8B;EAC9B,uBAAuB;EACvB,sBtBxCqI,EqBkDpI;EAFD;ICLE,erB5Cc;IqB6Cd,0BtB5CmI;IsB6CnI,sBtB7CmI,EsB8CpI;EDED;ICEE,0DtBlDmI;IsBkDnI,kDtBlDmI,EsBmDpI;EDHD;ICOE,etBvDmI;IsBwDnI,8BAA8B,EAC/B;EDTD;;ICcE,erB/Dc;IqBgEd,0BtB/DmI;IsBgEnI,sBtBhEmI,EsB0EpI;ID1BD;;MCuBM,0DtBvE+H;MsBuE/H,kDtBvE+H,EsByElI;;ADzBH;ECXA,etBrCoJ;EsBsCpJ,8BAA8B;EAC9B,uBAAuB;EACvB,sBtBxCoJ,EqBkDnJ;EAFD;ICLE,YrBrDW;IqBsDX,0BtB5CkJ;IsB6ClJ,sBtB7CkJ,EsB8CnJ;EDED;ICEE,uDtBlDkJ;IsBkDlJ,+CtBlDkJ,EsBmDnJ;EDHD;ICOE,etBvDkJ;IsBwDlJ,8BAA8B,EAC/B;EDTD;;ICcE,YrBxEW;IqByEX,0BtB/DkJ;IsBgElJ,sBtBhEkJ,EsB0EnJ;ID1BD;;MCuBM,uDtBvE8I;MsBuE9I,+CtBvE8I,EsByEjJ;;ADdL;EACE,iBpBoL+B;EoBnL/B,epBzCe;EoB0Cf,8BAA8B,EAuB/B;EA1BD;IAMI,epBoF8B;IoBnF9B,2BpBoFiC;IoBnFjC,8BAA8B;IAC9B,0BAA0B,ElB5EN;EkBmExB;IAcI,2BpB6EiC;IoB5EjC,0BAA0B;IAC1B,yBAAiB;IAAjB,iBAAiB,EAClB;EAjBH;IAqBI,epBpFc;IoBqFd,qBAAqB,EACtB;;AAUH;ECbE,yBtBcwB;EsBbxB,mBrB4J4C;EqB3J5C,iBrBwH+B;EqBrH7B,yBtBiB2B,EqBP9B;;AAED;ECjBE,wBtBYwB;EsBXxB,oBrB6J4C;EqB5J5C,iBrByH+B;EqBtH7B,yBtBgB2B,EqBF9B;;AAOD;EACE,eAAe;EACf,YAAY,EAMb;EARD;IAMI,mBpBwQ+B,EoBvQhC;;AAIH;;;EAII,YAAY,EACb;;AE3IH;ELGM,yCjB4O2C;EiB5O3C,iCjB4O2C,EsBzOhD;ELCC;IKPF;MLQI,yBAAiB;MAAjB,iBAAiB,EKFpB,EAAA;EAND;IAII,WAAW,EACZ;;AAGH;EAEI,cAAc,EACf;;AAGH;EACE,mBAAmB;EACnB,UAAU;EACV,iBAAiB;ELdb,sCjB6OwC;EiB7OxC,8BjB6OwC,EsB7N7C;ELZC;IKOF;MLNI,yBAAiB;MAAjB,iBAAiB,EKWpB,EAAA;;ACpBD;;;;EAIE,mBAAmB,EACpB;;AAED;ECsBM,sBAAsB;EACtB,SAAS;EACT,UAAU;EACV,qBAAyB;EACzB,wBAA4B;EAC5B,YAAY;EAlChB,wBAA8B;EAC9B,sCAA4C;EAC5C,iBAAiB;EACjB,qCAA2C,EAuCxC;;ADnCL;ECsDM,eAAe,EAChB;;ADjDL;EACE,mBAAmB;EACnB,UAAU;EACV,QAAQ;EACR,cvBklBsC;EuBjlBtC,cAAc;EACd,YAAY;EACZ,iBvBijBuC;EuBhjBvC,kBAA8B;EAC9B,qBAA4B;EAC5B,gBvBuOgC;EuBtOhC,exBckB;EwBblB,iBAAiB;EACjB,iBAAiB;EACjB,uBvBlBa;EuBmBb,6BAA6B;EAC7B,0BxBHoB;EQvBlB,uBP+NgC,EuBlMnC;;AAED;EACE,SAAS;EACT,WAAW,EACZ;;AAID;EAEI,UAAU;EACV,aAAa;EACb,cAAc;EACd,wBvByhBuC,EuBxhBxC;;AANH;ECZM,sBAAsB;EACtB,SAAS;EACT,UAAU;EACV,qBAAyB;EACzB,wBAA4B;EAC5B,YAAY;EA3BhB,cAAc;EACd,sCAA4C;EAC5C,2BAAiC;EACjC,qCAA2C,EAgCxC;;ADDL;ECoBM,eAAe,EAChB;;ADRL;EAEI,OAAO;EACP,YAAY;EACZ,WAAW;EACX,cAAc;EACd,sBvB2gBuC,EuB1gBxC;;AAPH;ECzBM,sBAAsB;EACtB,SAAS;EACT,UAAU;EACV,qBAAyB;EACzB,wBAA4B;EAC5B,YAAY;EApBhB,oCAA0C;EAC1C,gBAAgB;EAChB,uCAA6C;EAC7C,yBAA+B,EAyB5B;;ADYL;ECOM,eAAe,EAChB;;ADRL;EAYM,kBAAkB,EACnB;;AAIL;EAEI,OAAO;EACP,YAAY;EACZ,WAAW;EACX,cAAc;EACd,uBvB0fuC,EuBzfxC;;AAPH;EC1CM,sBAAsB;EACtB,SAAS;EACT,UAAU;EACV,qBAAyB;EACzB,wBAA4B;EAC5B,YAAY,EAQb;;AD6BL;ECzBQ,cAAc,EACf;;ADwBP;ECrBQ,sBAAsB;EACtB,SAAS;EACT,UAAU;EACV,sBAA0B;EAC1B,wBAA4B;EAC5B,YAAY;EAlClB,oCAA0C;EAC1C,0BAAgC;EAChC,uCAA6C,EAkCxC;;ADcP;ECVM,eAAe,EAChB;;ADSL;EAYM,kBAAkB,EACnB;;AAML;EAKI,YAAY;EACZ,aAAa,EACd;;AAKH;EElGE,UAAU;EACV,iBAAmB;EACnB,iBAAiB;EACjB,8B1BmBoB,EwB8ErB;;AAKD;EACE,eAAe;EACf,YAAY;EACZ,wBvByewC;EuBxexC,YAAY;EACZ,iBvBiJ+B;EuBhJ/B,exB7EkB;EwB8ElB,oBAAoB;EACpB,oBAAoB;EACpB,8BAA8B;EAC9B,UAAU,EAwBX;EAlCD;IAaI,evBsdsC;IuBrdtC,sBAAsB;IJtHtB,0BnBKc,EEQf;EqB2FH;IAoBI,YvBxHW;IuByHX,sBAAsB;IJ7HtB,0BnBkCa,EuB6Fd;EAvBH;IA2BI,evBzHc;IuB0Hd,8BAA8B,EAK/B;;AAGH;EACE,eAAe,EAChB;;AAGD;EACE,eAAe;EACf,uBvBicwC;EuBhcxC,iBAAiB;EACjB,oBvBsG4C;EuBrG5C,exBrHkB;EwBsHlB,oBAAoB,EACrB;;AAGD;EACE,eAAe;EACf,wBvBubwC;EuBtbxC,exB7HkB,EwB8HnB;;AGlKD;;EAEE,mBAAmB;EACnB,4BAAqB;EAArB,4BAAqB;EAArB,qBAAqB;EACrB,uBAAuB,EAyBxB;EA7BD;;;;;IAOI,mBAAmB;IACnB,oBAAe;IAAf,mBAAe;IAAf,eAAe,EAYhB;IApBH;;;;;MAaM,WAAW,ExBJO;IwBTxB;;;;;;;;;;;;;MAkBM,WAAW,EACZ;EAnBL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA2BI,kB1BkM6B,E0BjM9B;;AAIH;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,oBAAgB;EAAhB,gBAAgB;EAChB,wBAA4B;EAA5B,qBAA4B;EAA5B,4BAA4B,EAK7B;EARD;IAMI,YAAY,EACb;;AAGH;EAEI,eAAe,EAChB;;AAHH;;;;;EnB5BI,2BmBoC8B;EnBnC9B,8BmBmC8B,EAC/B;;AATH;;;;;EnBdI,0BmB2B6B;EnB1B7B,6BmB0B6B,EAC9B;;AAeH;EACE,0BAA6B;EAC7B,yBAA4B,EAW7B;EAbD;;;IAOI,eAAe,EAChB;EARH;IAWI,gBAAgB,EACjB;;AAGH;EACE,yBAAgC;EAChC,wBAA+B,EAChC;;AAED;EACE,wBAAgC;EAChC,uBAA+B,EAChC;;AAmBD;EACE,6BAAuB;EAAvB,8BAAuB;EAAvB,2BAAuB;EAAvB,uBAAuB;EACvB,yBAAwB;EAAxB,sBAAwB;EAAxB,wBAAwB;EACxB,yBAAwB;EAAxB,sBAAwB;EAAxB,wBAAwB,EAyBzB;EA5BD;;IAOI,YAAY,EACb;EARH;;;;;;;;;;IAcI,iB1B8F6B;I0B7F7B,eAAe,EAChB;EAhBH;;;;;InB5FI,8BmBiH+B;InBhH/B,6BmBgH+B,EAChC;EAtBH;;;;;InB1GI,0BmBoI4B;InBnI5B,2BmBmI4B,EAC7B;;AAgBH;;;;;EAGI,iBAAiB,EAQlB;EAXH;;;;;;;;;;;;;IAOM,mBAAmB;IACnB,uBAAU;IACV,qBAAqB,EACtB;;ACnKL;EACE,mBAAmB;EACnB,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,oBAAgB;EAAhB,gBAAgB;EAChB,2BAAqB;EAArB,wBAAqB;EAArB,qBAAqB;EACrB,YAAY,EA+Cb;EApDD;;;;;;;;;IAUI,mBAAmB;IACnB,oBAAe;IAAf,mBAAe;IAAf,eAAe;IAGf,UAAU;IACV,iBAAiB,EAOlB;IAtBH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAoBM,kB3BsM2B,E2BrM5B;EArBL;;;;;;;;;IA4BI,WAAW,EACZ;EA7BH;IAiCI,WAAW,EACZ;EAlCH;;;;;;;;IpBWI,2BoB2BmD;IpB1BnD,8BoB0BmD,EAAK;EAtC5D;;;;;;;;IpByBI,0BoBcmD;IpBbnD,6BoBamD,EAAK;EAvC5D;IA6CI,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,0BAAoB;IAApB,uBAAoB;IAApB,oBAAoB,EAKrB;IAnDH;;MpBWI,2BoBsC6E;MpBrC7E,8BoBqC6E,EAAK;IAjDtF;MpByBI,0BoByBsE;MpBxBtE,6BoBwBsE,EAAK;;AAW/E;;EAEE,qBAAc;EAAd,qBAAc;EAAd,cAAc,EAgBf;EAlBD;;;;;;;;IAQI,mBAAmB;IACnB,WAAW,EACZ;EAVH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAgBI,kB3B6I6B,E2B5I9B;;AAGH;EAAuB,mB3ByIU,E2BzI4B;;AAC7D;EAAsB,kB3BwIW,E2BxI0B;;AAQ3D;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,0B5BgCwB;E4B/BxB,iBAAiB;EACjB,gB3B0JgC;E2BzJhC,iB3B8J+B;E2B7J/B,e5B6BmB;E4B5BnB,e3BvFgB;E2BwFhB,mBAAmB;EACnB,oBAAoB;EACpB,0B3B/FgB;E2BgGhB,0B3B9FgB;EOVd,mBR2HqB,E4BXxB;EApBD;;IAkBI,cAAc,EACf;;AASH;;;;;;;;;;;;;;;;;;;EAKE,6B3BkU0C;E2BjU1C,yB5BO0B;E4BN1B,mB3B6H4C;E2B5H5C,e5BMsB;EQtIpB,sBPgO+B,E2B9FlC;;AAED;;;;;;;;;;;;;;;;;;;EAKE,8B3BmT0C;E2BlT1C,wB5BRyB;E4BSzB,oB3BkH4C;E2BjH5C,e5BTsB;EQnIpB,sBPiO+B,E2BnFlC;;AAUD;;;;;;;;;;;;;EpB3II,2BoBiJ4B;EpBhJ5B,8BoBgJ4B,EAC/B;;AAED;;;;;;;;;;;;;;;;;;;;;;EpBtII,0BoB4I2B;EpB3I3B,6BoB2I2B,EAC9B;;ACnKD;EACE,mBAAmB;EACnB,eAAe;EACf,mBAA4B;EAC5B,qB5B2c4C,E4B1c7C;;AAED;EACE,4BAAqB;EAArB,4BAAqB;EAArB,qBAAqB;EACrB,mB5Buc0C,E4Btc3C;;AAED;EACE,mBAAmB;EACnB,YAAY;EACZ,WAAW,EA4BZ;EA/BD;IAMI,Y5BjBW;ImBJX,0BnBkCa,E4BVd;EATH;IAaI,yE5BMa;I4BNb,iE5BMa,E4BLd;EAdH;IAiBI,Y5B5BW;I4B6BX,0B5BocmD,E4BlcpD;EApBH;IAwBM,e5B7BY,E4BkCb;IA7BL;MA2BQ,0B5BpCU,E4BqCX;;AASP;EACE,mBAAmB;EACnB,iBAAiB,EA8BlB;EAhCD;IAMI,mBAAmB;IACnB,aAAsB;IACtB,c5BsZ0C;I4BrZ1C,eAAe;IACf,Y5BuZwC;I4BtZxC,a5BsZwC;I4BrZxC,qBAAqB;IACrB,YAAY;IACZ,0BAAkB;IAAlB,uBAAkB;IAAlB,sBAAkB;IAAlB,kBAAkB;IAClB,0B5B5Dc,E4B8Df;EAjBH;IAqBI,mBAAmB;IACnB,aAAsB;IACtB,c5BuY0C;I4BtY1C,eAAe;IACf,Y5BwYwC;I4BvYxC,a5BuYwC;I4BtYxC,YAAY;IACZ,6BAA6B;IAC7B,mCAAmC;IACnC,yB5BqY2C,E4BpY5C;;AAQH;ErB7FI,uBP+NgC,E4B/HjC;;AAHH;ET3FI,0BnBkCa,E4BiEZ;;AARL;EAUM,2Nb/De,EagEhB;;AAXL;ET3FI,0BnBkCa,E4B2EZ;;AAlBL;EAoBM,wKbzEe,Ea0EhB;;AArBL;EA0BM,yC5BnFW,E4BoFZ;;AA3BL;EA6BM,yC5BtFW,E4BuFZ;;AAQL;EAEI,mB5B6W+C,E4B5WhD;;AAHH;ETjII,0BnBkCa,E4BuGZ;;AARL;EAUM,qKbrGe,EasGhB;;AAXL;EAgBM,yC5B/GW,E4BgHZ;;AAWL;EACE,sBAAsB;EACtB,YAAY;EACZ,4B5BuR0C;E4BtR1C,2C5BmVwC;E4BlVxC,iB5BgG+B;E4B/F/B,e5BxJgB;E4ByJhB,uBAAuB;EACvB,uNAAsG;EACtG,0B5BsV0C;E4BrV1C,0B5B/JgB;E4BiKd,uB5BoDgC;E4B/ClC,yBAAiB;EAAjB,sBAAiB;EAAjB,iBAAiB,EAsClB;EAvDD;IAoBI,sB5B2P2C;I4B1P3C,WAAW;IAIT,0D5BsPyC;I4BtPzC,kD5BsPyC,E4B1O5C;IArCH;MAkCM,e5BpLY;M4BqLZ,0B7B1LS,E6B2LV;EApCL;IAyCI,aAAa;IACb,uB5B6SsC;I4B5StC,uBAAuB,EACxB;EA5CH;IA+CI,e5BlMc;I4BmMd,0B5BvMc,E4BwMf;EAjDH;IAqDI,WAAW,EACZ;;AAGH;EACE,8B5BmO0C;E4BlO1C,sB5B2RyC;E4B1RzC,yB5B0RyC;E4BzRzC,e5B8SqC,E4B7StC;;AAED;EACE,6B5B+N0C;E4B9N1C,sB5BoRyC;E4BnRzC,yB5BmRyC;E4BlRzC,gB5B0SsC,E4BzSvC;;AAOD;EACE,mBAAmB;EACnB,sBAAsB;EACtB,YAAY;EACZ,4B5B0M0C;E4BzM1C,iBAAiB,EAClB;;AAED;EACE,mBAAmB;EACnB,WAAW;EACX,YAAY;EACZ,4B5BkM0C;E4BjM1C,UAAU;EACV,WAAW,EAoBZ;EA1BD;IASI,sB5BkL2C;I4BjL3C,yD5BzNa;I4ByNb,iD5BzNa,E4B8Nd;IAfH;MAaM,sB5B8KyC,E4B7K1C;EAdL;IAkBI,0B5B7Pc,E4B8Pf;EAnBH;IAuBM,kB5BySQ,E4BxST;;AAIL;EACE,mBAAmB;EACnB,OAAO;EACP,SAAS;EACT,QAAQ;EACR,WAAW;EACX,4B5BoK0C;E4BnK1C,0B5BoEkC;E4BnElC,iB5BnB+B;E4BoB/B,e5B3QgB;E4B4QhB,uB5BnRa;E4BoRb,0B5BhRgB;EOVd,uBP+NgC,E4B+EnC;EA/BD;IAgBI,mBAAmB;IACnB,OAAO;IACP,SAAS;IACT,UAAU;IACV,WAAW;IACX,eAAe;IACf,gB5BmJoD;I4BlJpD,0B5BoDgC;I4BnDhC,iB5BnC6B;I4BoC7B,e5B3Rc;I4B4Rd,kBAAkB;ITvSlB,0BnBMc;I4BmSd,+B5BjSc;IOVd,mCqB4SgF,EACjF;;AASH;EACE,YAAY;EACZ,gBAAgB;EAChB,8BAA8B;EAC9B,yBAAiB;EAAjB,sBAAiB;EAAjB,iBAAiB,EA4GlB;EAhHD;IAOI,cAAc,EAOf;IAdH;MAW8B,yE5B7Rb;M4B6Ra,iE5B7Rb,E4B6RiE;IAXlF;MAY8B,iE5B9Rb,E4B8RiE;IAZlF;MAa8B,iE5B/Rb,E4B+RiE;EAblF;IAiBI,UAAU,EACX;EAlBH;IAqBI,Y5B4M6C;I4B3M7C,a5B2M6C;I4B1M7C,qBAAwC;IT3UxC,0BnBkCa;I4B2Sb,U5B2M0C;IO1hB1C,oBP2hB6C;IiB1hB3C,6HjBid+H;IiBjd/H,qHjBid+H;IiBjd/H,6GjBid+H;IiBjd/H,mJjBid+H;I4B/HjI,yBAAiB;IAAjB,iBAAiB,EAKlB;IXnVD;MWiTF;QXhTI,yBAAiB;QAAjB,iBAAiB,EWkVlB,EAAA;IAlCH;MTpTI,0BnB6hBgD,E4BxM/C;EAjCL;IAqCI,Y5BqLoC;I4BpLpC,e5BqLqC;I4BpLrC,mBAAmB;IACnB,gB5BoLuC;I4BnLvC,0B5BtVc;I4BuVd,0BAA0B;IrBhW1B,oBPohBoC,E4BjLrC;EA7CH;IAgDI,Y5BiL6C;I4BhL7C,a5BgL6C;ImBrhB7C,0BnBkCa;I4BqUb,U5BiL0C;IO1hB1C,oBP2hB6C;IiB1hB3C,6HjBid+H;IiBjd/H,qHjBid+H;IiBjd/H,6GjBid+H;IiBjd/H,mJjBid+H;I4BrGjI,sBAAiB;IAAjB,iBAAiB,EAKlB;IX7WD;MWiTF;QXhTI,yBAAiB;QAAjB,iBAAiB,EW4WlB,EAAA;IA5DH;MTpTI,0BnB6hBgD,E4B9K/C;EA3DL;IA+DI,Y5B2JoC;I4B1JpC,e5B2JqC;I4B1JrC,mBAAmB;IACnB,gB5B0JuC;I4BzJvC,0B5BhXc;I4BiXd,0BAA0B;IrB1X1B,oBPohBoC,E4BvJrC;EAvEH;IA0EI,Y5BuJ6C;I4BtJ7C,a5BsJ6C;I4BrJ7C,cAAc;IACd,qB5BtC+B;I4BuC/B,oB5BvC+B;ImB3V/B,0BnBkCa;I4BkWb,U5BoJ0C;IO1hB1C,oBP2hB6C;IiB1hB3C,6HjBid+H;IiBjd/H,qHjBid+H;IiBjd/H,6GjBid+H;IiBjd/H,mJjBid+H;I4BxEjI,iBAAiB,EAKlB;IX1YD;MWiTF;QXhTI,yBAAiB;QAAjB,iBAAiB,EWyYlB,EAAA;IAzFH;MTpTI,0BnB6hBgD,E4BjJ/C;EAxFL;IA4FI,Y5B8HoC;I4B7HpC,e5B8HqC;I4B7HrC,mBAAmB;IACnB,gB5B6HuC;I4B5HvC,8BAA8B;IAC9B,0BAA0B;IAC1B,qBAAyC,EAE1C;EApGH;IAuGI,0B5BpZc;IOTd,oBPohBoC,E4BrHrC;EAzGH;IA4GI,mBAAmB;IACnB,0B5B1Zc;IOTd,oBPohBoC,E4B/GrC;;AAGH;;;EXvaM,6HjBid+H;EiBjd/H,qHjBid+H;EiBjd/H,6GjBid+H;EiBjd/H,mJjBid+H,E4BtCpI;EXvaC;IWmaF;;;MXlaI,yBAAiB;MAAjB,iBAAiB,EWsapB,EAAA;;AC3aD;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,oBAAgB;EAAhB,gBAAgB;EAChB,gBAAgB;EAChB,iBAAiB;EACjB,iBAAiB,EAClB;;AAED;EACE,eAAe;EACf,qB7BgmBsC,E6BtlBvC;EAZD;IAKI,sBAAsB,E3BCvB;E2BNH;IAUI,e7BPc,E6BQf;;AAOH;EACE,iC7BnBgB,E6BqDjB;EAnCD;IAII,oB7B6L6B,E6B5L9B;EALH;IAQI,8BAAgD;ItB7BhD,gCPyNgC;IOxNhC,iCPwNgC,E6BhLjC;IApBH;MAYM,sC7B9BY,EEMf;I2BYH;MAgBM,e7B/BY;M6BgCZ,8BAA8B;MAC9B,0BAA0B,EAC3B;EAnBL;;IAwBI,e7BtCc;I6BuCd,uB7B9CW;I6B+CX,mC7B/CW,E6BgDZ;EA3BH;IA+BI,iB7BkK6B;IOtN7B,0BsBsD4B;ItBrD5B,2BsBqD4B,EAC7B;;AAQH;EtBrEI,uBP+NgC,E6BvJjC;;AAHH;;EAOI,Y7BtEW;E6BuEX,0B7BzCa,E6B0Cd;;AAQH;EAEI,oBAAe;EAAf,mBAAe;EAAf,eAAe;EACf,mBAAmB,EACpB;;AAGH;EAEI,2BAAc;EAAd,cAAc;EACd,oBAAa;EAAb,qBAAa;EAAb,aAAa;EACb,mBAAmB,EACpB;;AAQH;EAEI,cAAc,EACf;;AAHH;EAKI,eAAe,EAChB;;ACnGH;EACE,mBAAmB;EACnB,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,oBAAgB;EAAhB,gBAAgB;EAChB,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,0BAA+B;EAA/B,uBAA+B;EAA/B,+BAA+B;EAC/B,qB9BwGW,E8B7FZ;EAjBD;;IAYI,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,oBAAgB;IAAhB,gBAAgB;IAChB,0BAAoB;IAApB,uBAAoB;IAApB,oBAAoB;IACpB,0BAA+B;IAA/B,uBAA+B;IAA/B,+BAA+B,EAChC;;AAQH;EACE,sBAAsB;EACtB,uB9BimBmD;E8BhmBnD,0B9BgmBmD;E8B/lBnD,mB9BkFW;E8BjFX,mB9BkN4C;E8BjN5C,qBAAqB;EACrB,oBAAoB,EAKrB;EAZD;IAUI,sBAAsB,E5BhCvB;;A4ByCH;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,6BAAuB;EAAvB,8BAAuB;EAAvB,2BAAuB;EAAvB,uBAAuB;EACvB,gBAAgB;EAChB,iBAAiB;EACjB,iBAAiB,EAWlB;EAhBD;IAQI,iBAAiB;IACjB,gBAAgB,EACjB;EAVH;IAaI,iBAAiB;IACjB,YAAY,EACb;;AAQH;EACE,sBAAsB;EACtB,oB9ByhBuC;E8BxhBvC,uB9BwhBuC,E8BvhBxC;;AAWD;EACE,8BAAiB;EAAjB,iBAAiB;EACjB,oBAAa;EAAb,qBAAa;EAAb,aAAa;EAGb,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB,EACrB;;AAGD;EACE,yB9BmiBwC;E8BliBxC,mB9BmJ4C;E8BlJ5C,eAAe;EACf,8BAA8B;EAC9B,8BAAuC;EvB5GrC,uBP+NgC,E8BxGnC;EAhBD;IASI,sBAAsB,E5BjGvB;E4BwFH;IAcI,gBAAgB,EACjB;;AAKH;EACE,sBAAsB;EACtB,aAAa;EACb,cAAc;EACd,uBAAuB;EACvB,YAAY;EACZ,oCAAoC;EACpC,2BAA2B,EAC5B;;AnB9DG;EmBkEJ;;IASU,iBAAiB;IACjB,gBAAgB,EACjB,EAAA;;AnB1FL;EmB+EJ;IAeQ,+BAAsB;IAAtB,8BAAsB;IAAtB,0BAAsB;IAAtB,sBAAsB;IACtB,wBAA4B;IAA5B,qBAA4B;IAA5B,4BAA4B,EAgC/B;IAhDL;MAmBU,+BAAoB;MAApB,8BAAoB;MAApB,wBAAoB;MAApB,oBAAoB,EAUrB;MA7BT;QAsBY,mBAAmB,EACpB;MAvBX;QA0BY,sB9Bie6B;Q8Bhe7B,qB9Bge6B,E8B/d9B;IA5BX;;MAkCU,sBAAkB;MAAlB,kBAAkB,EACnB;IAnCT;MAsCU,gCAAyB;MAAzB,gCAAyB;MAAzB,yBAAyB;MAGzB,8BAAiB;MAAjB,iBAAiB,EAClB;IA1CT;MA6CU,cAAc,EACf,EAAA;;AnBhHL;EmBkEJ;;IASU,iBAAiB;IACjB,gBAAgB,EACjB,EAAA;;AnB1FL;EmB+EJ;IAeQ,+BAAsB;IAAtB,8BAAsB;IAAtB,0BAAsB;IAAtB,sBAAsB;IACtB,wBAA4B;IAA5B,qBAA4B;IAA5B,4BAA4B,EAgC/B;IAhDL;MAmBU,+BAAoB;MAApB,8BAAoB;MAApB,wBAAoB;MAApB,oBAAoB,EAUrB;MA7BT;QAsBY,mBAAmB,EACpB;MAvBX;QA0BY,sB9Bie6B;Q8Bhe7B,qB9Bge6B,E8B/d9B;IA5BX;;MAkCU,sBAAkB;MAAlB,kBAAkB,EACnB;IAnCT;MAsCU,gCAAyB;MAAzB,gCAAyB;MAAzB,yBAAyB;MAGzB,8BAAiB;MAAjB,iBAAiB,EAClB;IA1CT;MA6CU,cAAc,EACf,EAAA;;AnBhHL;EmBkEJ;;IASU,iBAAiB;IACjB,gBAAgB,EACjB,EAAA;;AnB1FL;EmB+EJ;IAeQ,+BAAsB;IAAtB,8BAAsB;IAAtB,0BAAsB;IAAtB,sBAAsB;IACtB,wBAA4B;IAA5B,qBAA4B;IAA5B,4BAA4B,EAgC/B;IAhDL;MAmBU,+BAAoB;MAApB,8BAAoB;MAApB,wBAAoB;MAApB,oBAAoB,EAUrB;MA7BT;QAsBY,mBAAmB,EACpB;MAvBX;QA0BY,sB9Bie6B;Q8Bhe7B,qB9Bge6B,E8B/d9B;IA5BX;;MAkCU,sBAAkB;MAAlB,kBAAkB,EACnB;IAnCT;MAsCU,gCAAyB;MAAzB,gCAAyB;MAAzB,yBAAyB;MAGzB,8BAAiB;MAAjB,iBAAiB,EAClB;IA1CT;MA6CU,cAAc,EACf,EAAA;;AnBhHL;EmBkEJ;;IASU,iBAAiB;IACjB,gBAAgB,EACjB,EAAA;;AnB1FL;EmB+EJ;IAeQ,+BAAsB;IAAtB,8BAAsB;IAAtB,0BAAsB;IAAtB,sBAAsB;IACtB,wBAA4B;IAA5B,qBAA4B;IAA5B,4BAA4B,EAgC/B;IAhDL;MAmBU,+BAAoB;MAApB,8BAAoB;MAApB,wBAAoB;MAApB,oBAAoB,EAUrB;MA7BT;QAsBY,mBAAmB,EACpB;MAvBX;QA0BY,sB9Bie6B;Q8Bhe7B,qB9Bge6B,E8B/d9B;IA5BX;;MAkCU,sBAAkB;MAAlB,kBAAkB,EACnB;IAnCT;MAsCU,gCAAyB;MAAzB,gCAAyB;MAAzB,yBAAyB;MAGzB,8BAAiB;MAAjB,iBAAiB,EAClB;IA1CT;MA6CU,cAAc,EACf,EAAA;;AA9CT;EAeQ,+BAAsB;EAAtB,8BAAsB;EAAtB,0BAAsB;EAAtB,sBAAsB;EACtB,wBAA4B;EAA5B,qBAA4B;EAA5B,4BAA4B,EAgC/B;EAhDL;;IASU,iBAAiB;IACjB,gBAAgB,EACjB;EAXT;IAmBU,+BAAoB;IAApB,8BAAoB;IAApB,wBAAoB;IAApB,oBAAoB,EAUrB;IA7BT;MAsBY,mBAAmB,EACpB;IAvBX;MA0BY,sB9Bie6B;M8Bhe7B,qB9Bge6B,E8B/d9B;EA5BX;;IAkCU,sBAAkB;IAAlB,kBAAkB,EACnB;EAnCT;IAsCU,gCAAyB;IAAzB,gCAAyB;IAAzB,yBAAyB;IAGzB,8BAAiB;IAAjB,iBAAiB,EAClB;EA1CT;IA6CU,cAAc,EACf;;AAYT;EAEI,0B9BnLW,E8BwLZ;EAPH;IAKM,0B9BtLS,EEDZ;;A4BkLH;EAWM,e/B7GsB,E+BsHvB;EApBL;IAcQ,0B9B/LO,EEDZ;E4BkLH;IAkBQ,0B9BnMO,E8BoMR;;AAnBP;;;;EA0BM,0B9B3MS,E8B4MV;;AA3BL;EA+BI,e/BjIwB;E+BkIxB,iC9BjNW,E8BkNZ;;AAjCH;EAoCI,sQ9Bqb+C,E8BpbhD;;AArCH;EAwCI,e/B1IwB,E+BkJzB;EAhDH;IA0CM,0B9B3NS,E8BgOV;IA/CL;MA6CQ,0B9B9NO,EEDZ;;A4BsOH;EAEI,Y9BjPW,E8BsPZ;EAPH;IAKM,Y9BpPS,EESZ;;A4BsOH;EAWM,gC9B1PS,E8BmQV;EApBL;IAcQ,iC9B7PO,EESZ;E4BsOH;IAkBQ,iC9BjQO,E8BkQR;;AAnBP;;;;EA0BM,Y9BzQS,E8B0QV;;AA3BL;EA+BI,gC9B9QW;E8B+QX,uC9B/QW,E8BgRZ;;AAjCH;EAoCI,4Q9B0X+C,E8BzXhD;;AArCH;EAwCI,gC9BvRW,E8B+RZ;EAhDH;IA0CM,Y9BzRS,E8B8RV;IA/CL;MA6CQ,Y9B5RO,EESZ;;A6BfH;EACE,mBAAmB;EACnB,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,6BAAuB;EAAvB,8BAAuB;EAAvB,2BAAuB;EAAvB,uBAAuB;EACvB,aAAa;EACb,sBAAsB;EACtB,uB/BAa;E+BCb,4BAA4B;EAC5B,uC/BQa;EOhBX,uBP+NgC,E+BpMnC;EA3BD;IAYI,gBAAgB;IAChB,eAAe,EAChB;EAdH;IxBMI,gCPyNgC;IOxNhC,iCPwNgC,E+B5M/B;EAnBL;IxBoBI,oCP2MgC;IO1MhC,mCP0MgC,E+BtM/B;;AAIL;EAGE,oBAAe;EAAf,mBAAe;EAAf,eAAe;EACf,iB/BoqByC,E+BnqB1C;;AAED;EACE,uB/B+pBwC,E+B9pBzC;;AAED;EACE,sBAA4B;EAC5B,iBAAiB,EAClB;;AAED;EACE,iBAAiB,EAClB;;AAED;EAEI,sBAAsB,E7B3CF;;A6ByCxB;EAMI,qB/B8oBuC,E+B7oBxC;;AAOH;EACE,yB/BqoByC;E+BpoBzC,iBAAiB;EACjB,sC/BlDa;E+BmDb,8C/BnDa,E+B8Dd;EAfD;IxB/DI,2DwBsE8E,EAC/E;EARH;IAYM,cAAc,EACf;;AAIL;EACE,yB/BonByC;E+BnnBzC,sC/BlEa;E+BmEb,2C/BnEa,E+BwEd;EARD;IxBhFI,2DPysBoC,E+BlnBrC;;AAQH;EACE,wBAA8B;EAC9B,wB/BmmBwC;E+BlmBxC,uBAA6B;EAC7B,iBAAiB,EAClB;;AAED;EACE,wBAA8B;EAC9B,uBAA6B,EAC9B;;AAGD;EACE,mBAAmB;EACnB,OAAO;EACP,SAAS;EACT,UAAU;EACV,QAAQ;EACR,iB/B2lByC,E+B1lB1C;;AAED;EACE,YAAY;ExBtHV,mCPysBoC,E+BjlBvC;;AAGD;EACE,YAAY;ExBtHV,4CPmsBoC;EOlsBpC,6CPksBoC,E+B3kBvC;;AAED;EACE,YAAY;ExB7GV,gDPqrBoC;EOprBpC,+CPorBoC,E+BtkBvC;;AAKD;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,6BAAuB;EAAvB,8BAAuB;EAAvB,2BAAuB;EAAvB,uBAAuB,EAqBxB;EAvBD;IAKI,oB/BkkBmD,E+BjkBpD;EpBtFC;IoBgFJ;MASI,+BAAoB;MAApB,8BAAoB;MAApB,wBAAoB;MAApB,oBAAoB;MACpB,oB/B6jBmD;M+B5jBnD,mB/B4jBmD,E+BhjBtD;MAvBD;QAcM,qBAAc;QAAd,qBAAc;QAAd,cAAc;QAEd,oBAAa;QAAb,iBAAa;QAAb,aAAa;QACb,6BAAuB;QAAvB,8BAAuB;QAAvB,2BAAuB;QAAvB,uBAAuB;QACvB,mB/BqjBiD;Q+BpjBjD,iBAAiB;QACjB,kB/BmjBiD,E+BljBlD,EAAA;;AASL;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,6BAAuB;EAAvB,8BAAuB;EAAvB,2BAAuB;EAAvB,uBAAuB,EA4ExB;EA9ED;IAOI,oB/BkiBmD,E+BjiBpD;EpBtHC;IoB8GJ;MAWI,+BAAoB;MAApB,8BAAoB;MAApB,wBAAoB;MAApB,oBAAoB,EAmEvB;MA9ED;QAgBM,oBAAa;QAAb,iBAAa;QAAb,aAAa;QACb,iBAAiB,EA2DlB;QA5EL;UAoBQ,eAAe;UACf,eAAe,EAChB;QAtBP;UxBzJI,2BwBoLoC;UxBnLpC,8BwBmLoC,EAU/B;UArCT;;YA+BY,2BAA2B,EAC5B;UAhCX;;YAmCY,8BAA8B,EAC/B;QApCX;UxB3II,0BwBmLmC;UxBlLnC,6BwBkLmC,EAU9B;UAlDT;;YA4CY,0BAA0B,EAC3B;UA7CX;;YAgDY,6BAA6B,EAC9B;QAjDX;UxBtKI,uBP+NgC,E+BM3B;UA/DT;;YxBhKI,gCPyNgC;YOxNhC,iCPwNgC,E+BCzB;UA1DX;;YxBlJI,oCP2MgC;YO1MhC,mCP0MgC,E+BKzB;QA9DX;UxBtKI,iBwBwO8B,EAQzB;UA1ET;;;;YxBtKI,iBwB8OgC,EACzB,EAAA;;AAYX;EAEI,uB/BucsC,E+BtcvC;;ApBtMC;EoBmMJ;IAMI,wB/BidiC;I+BjdjC,gB/BidiC;I+BhdjC,4B/BiduC;I+BjdvC,oB/BiduC;I+BhdvC,WAAW;IACX,UAAU,EAOb;IAhBD;MAYM,sBAAsB;MACtB,YAAY,EACb,EAAA;;AASL;EAEI,iBAAiB;EACjB,iBAAiB,EAClB;;AAJH;EAQM,iBAAiB,EAClB;;AATL;EAaI,iBAAiB;EACjB,8BAA8B;EAC9B,6BAA6B,EAC9B;;AAhBH;EAmBI,0BAA0B;EAC1B,2BAA2B,EAC5B;;AC3SH;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,oBAAgB;EAAhB,gBAAgB;EAChB,yBjCsK4B;EiCrK5B,oBjCuK6B;EiCtK7B,iBAAiB;EACjB,8BjCuKyB;EQzKvB,uBP+NgC,EgC3NnC;;AAED;EAGI,qBjC6J2B,EiCrJ5B;EAXH;IAMM,sBAAsB;IACtB,sBjCyJyB;IiCxJzB,ehCFY;IgCGZ,ajC8JkB,EiC7JnB;;AAVL;EAoBI,2BAA2B,EAC5B;;AArBH;EAwBI,sBAAsB,EACvB;;AAzBH;EA4BI,ehCrBc,EgCsBf;;ACvCH;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;E7BGd,gBAAgB;EAChB,iBAAiB;EGDf,uBP+NgC,EiC/NnC;;AAED;;EACE,mBAAmB;EACnB,eAAe;EACf,wBjC2pBwC;EiC1pBxC,kBjCsN+B;EiCrN/B,kBjC8pBsC;EiC7pBtC,ejC4Be;EiC3Bf,uBjCHa;EiCIb,0BjCDgB,EiCqBjB;EA5BD;;IAWI,WAAW;IACX,ejCuJ8B;IiCtJ9B,sBAAsB;IACtB,0BjCRc;IiCSd,sBjCRc,EiCSf;EAhBH;;IAmBI,WAAW;IACX,WjCupBiC;IiCtpBjC,yDjCaa;IiCbb,iDjCaa,EiCZd;EAtBH;;IA0BI,gBAAgB,EACjB;;AAGH;;;;EAGM,eAAe;E1BRjB,gCPoMgC;EOnMhC,mCPmMgC,EiC1L/B;;AALL;;;;E1BnBI,iCPkNgC;EOjNhC,oCPiNgC,EiCrL/B;;AAVL;;;;EAcI,WAAW;EACX,YjCzCW;EiC0CX,0BjCZa;EiCab,sBjCba,EiCcd;;AAlBH;;;;EAqBI,ejCzCc;EiC0Cd,qBAAqB;EAErB,aAAa;EACb,uBjCnDW;EiCoDX,sBjCjDc,EiCkDf;;AC5DD;;;EACE,wBlCoqBsC;EkCnqBtC,mBlC2P0C;EkC1P1C,iBlCuN6B,EkCtN9B;;AAIG;;;;;E3BoBF,+BPqM+B;EOpM/B,kCPoM+B,EkCvN5B;;AAGD;;;;;E3BCF,gCPmN+B;EOlN/B,mCPkN+B,EkClN5B;;AAfL;;;EACE,wBlCkqBqC;EkCjqBrC,oBlC4P0C;EkC3P1C,iBlCwN6B,EkCvN9B;;AAIG;;;;;E3BoBF,+BPsM+B;EOrM/B,kCPqM+B,EkCxN5B;;AAGD;;;;;E3BCF,gCPoN+B;EOnN/B,mCPmN+B,EkCnN5B;;ACbP;EACE,sBAAsB;EACtB,sBnCowBsC;EmCnwBtC,enCgwBqC;EmC/vBrC,iBnC4P+B;EmC3P/B,eAAe;EACf,mBAAmB;EACnB,oBAAoB;EACpB,yBAAyB;E5BTvB,uBP+NgC,EmC/MnC;EAfD;IAaI,cAAc,EACf;;AAIH;EACE,mBAAmB;EACnB,UAAU,EACX;;AAMD;EACE,qBnC6uBsC;EmC5uBtC,oBnC4uBsC;EO1wBpC,qBP6wBqC,EmC7uBxC;;AAOC;EC1CA,YpCSa;EoCRb,0BrCkB8B,EoCyB7B;EAFD;ICrCI,YpCIS;IoCHT,sBAAsB;IACtB,0BAAwB,ElCW3B;;AiCwBD;EC1CA,epCkBgB;EoCjBhB,0BrCkBkD,EoCyBjD;EAFD;ICrCI,epCaY;IoCZZ,sBAAsB;IACtB,0BAAwB,ElCW3B;;AiCwBD;EC1CA,epCkBgB;EoCjBhB,0BrCkBmE,EoCyBlE;EAFD;ICrCI,epCaY;IoCZZ,sBAAsB;IACtB,0BAAwB,ElCW3B;;AiCwBD;EC1CA,YpCSa;EoCRb,0BrCkBkF,EoCyBjF;EAFD;ICrCI,YpCIS;IoCHT,sBAAsB;IACtB,0BAAwB,ElCW3B;;AiCwBD;EC1CA,epCkBgB;EoCjBhB,0BrCkBoG,EoCyBnG;EAFD;ICrCI,epCaY;IoCZZ,sBAAsB;IACtB,0BAAwB,ElCW3B;;AiCwBD;EC1CA,YpCSa;EoCRb,0BrCkBqH,EoCyBpH;EAFD;ICrCI,YpCIS;IoCHT,sBAAsB;IACtB,0BAAwB,ElCW3B;;AiCwBD;EC1CA,epCkBgB;EoCjBhB,0BrCkBqI,EoCyBpI;EAFD;ICrCI,epCaY;IoCZZ,sBAAsB;IACtB,0BAAwB,ElCW3B;;AiCwBD;EC1CA,YpCSa;EoCRb,0BrCkBoJ,EoCyBnJ;EAFD;ICrCI,YpCIS;IoCHT,sBAAsB;IACtB,0BAAwB,ElCW3B;;AmCnBH;EACE,mBAA+C;EAC/C,oBrCgsBsC;EqC/rBtC,0BrCSgB;EORd,sBPgO+B,EqC3NlC;E1BmDG;I0B5DJ;MAOI,mBrC2rBoC,EqCzrBvC,EAAA;;AAED;EACE,iBAAiB;EACjB,gBAAgB;E9BTd,iB8BUsB,EACzB;;ACXD;EACE,mBAAmB;EACnB,yBtCmzByC;EsClzBzC,oBtCmzBsC;EsClzBtC,8BAA6C;E/BJ3C,uBP+NgC,EsCzNnC;;AAGD;EAEE,eAAe,EAChB;;AAGD;EACE,iBtCiP+B,EsChPhC;;AAOD;EACE,oBAAgC,EAUjC;EAXD;IAKI,mBAAmB;IACnB,OAAO;IACP,SAAS;IACT,yBtCqxBuC;IsCpxBvC,eAAe,EAChB;;AASD;EC9CA,exBmFW;EI9ET,0BJ8ES;EwBjFX,sBxBiFW,EuBnCV;EC5CD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;ADoCD;EC9CA,exBmFW;EI9ET,0BJ8ES;EwBjFX,sBxBiFW,EuBnCV;EC5CD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;ADoCD;EC9CA,exBmFW;EI9ET,0BJ8ES;EwBjFX,sBxBiFW,EuBnCV;EC5CD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;ADoCD;EC9CA,exBmFW;EI9ET,0BJ8ES;EwBjFX,sBxBiFW,EuBnCV;EC5CD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;ADoCD;EC9CA,exBmFW;EI9ET,0BJ8ES;EwBjFX,sBxBiFW,EuBnCV;EC5CD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;ADoCD;EC9CA,exBmFW;EI9ET,0BJ8ES;EwBjFX,sBxBiFW,EuBnCV;EC5CD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;ADoCD;EC9CA,exBmFW;EI9ET,0BJ8ES;EwBjFX,sBxBiFW,EuBnCV;EC5CD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;ADoCD;EC9CA,exBmFW;EI9ET,0BJ8ES;EwBjFX,sBxBiFW,EuBnCV;EC5CD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;ACXH;EACE;IAAO,4BAAuC,EAAA;EAC9C;IAAK,yBAAyB,EAAA,EAAA;;AAFhC;EACE;IAAO,4BAAuC,EAAA;EAC9C;IAAK,yBAAyB,EAAA,EAAA;;AAGhC;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,axC+zBsC;EwC9zBtC,iBAAiB;EACjB,mBxC8zBkD;EwC7zBlD,0BxCEgB;EORd,uBP+NgC,EwCtNnC;;AAED;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,6BAAuB;EAAvB,8BAAuB;EAAvB,2BAAuB;EAAvB,uBAAuB;EACvB,yBAAwB;EAAxB,sBAAwB;EAAxB,wBAAwB;EACxB,YxCTa;EwCUb,mBAAmB;EACnB,oBAAoB;EACpB,0BxCkBe;EiBnCX,oCjBy0B4C;EiBz0B5C,4BjBy0B4C,EwCtzBjD;EvBfC;IuBMF;MvBLI,yBAAiB;MAAjB,iBAAiB,EuBcpB,EAAA;;AAED;ErBiBE,sMAAiC;EqBfjC,2BxC0yBsC,EwCzyBvC;;AAED;EACE,2DxC6yBoD;EwC7yBpD,mDxC6yBoD,EwC5yBrD;;ACjCD;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,yBAAwB;EAAxB,sBAAwB;EAAxB,wBAAwB,EACzB;;AAED;EACE,oBAAQ;EAAR,YAAQ;EAAR,QAAQ,EACT;;ACHD;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,6BAAuB;EAAvB,8BAAuB;EAAvB,2BAAuB;EAAvB,uBAAuB;EAGvB,gBAAgB;EAChB,iBAAiB,EAClB;;AAQD;EACE,YAAY;EACZ,e1CJgB;E0CKhB,oBAAoB,EAarB;EAhBD;IAOI,e1CTc;I0CUd,sBAAsB;IACtB,0B1CjBc,EEQf;EwCAH;IAaI,e1Cbc;I0Ccd,0B1CrBc,E0CsBf;;AAQH;EACE,mBAAmB;EACnB,eAAe;EACf,yB1C2yByC;E0CzyBzC,oB1CiL+B;E0ChL/B,uB1CtCa;E0CuCb,uC1C7Ba,E0C0Dd;EApCD;InChCI,gCPyNgC;IOxNhC,iCPwNgC,E0C9KjC;EAXH;IAcI,iBAAiB;InChCjB,oCP2MgC;IO1MhC,mCP0MgC,E0CzKjC;EAhBH;IAmBI,WAAW;IACX,sBAAsB,ExC3CvB;EwCuBH;IAyBI,e1CnDc;I0CoDd,uB1C1DW,E0C2DZ;EA3BH;IA+BI,WAAW;IACX,Y1ChEW;I0CiEX,0B1CnCa;I0CoCb,sB1CpCa,E0CqCd;;AASH;EAEI,gBAAgB;EAChB,eAAe;EnCrFf,iBmCsFwB,EACzB;;AALH;EASM,cAAc,EACf;;AAVL;EAeM,iBAAiB,EAClB;;ACnGH;EACE,e5BgFS;E4B/ET,0B5B+ES,E4BjEV;EAhBD;IAMM,e5B2EK;I4B1EL,0BAAwB,EzCS7B;EyChBD;IAWM,e5CFO;I4CGP,0B5BqEK;I4BpEL,sB5BoEK,E4BnEN;;AAdL;EACE,e5BgFS;E4B/ET,0B5B+ES,E4BjEV;EAhBD;IAMM,e5B2EK;I4B1EL,0BAAwB,EzCS7B;EyChBD;IAWM,e5CFO;I4CGP,0B5BqEK;I4BpEL,sB5BoEK,E4BnEN;;AAdL;EACE,e5BgFS;E4B/ET,0B5B+ES,E4BjEV;EAhBD;IAMM,e5B2EK;I4B1EL,0BAAwB,EzCS7B;EyChBD;IAWM,e5CFO;I4CGP,0B5BqEK;I4BpEL,sB5BoEK,E4BnEN;;AAdL;EACE,e5BgFS;E4B/ET,0B5B+ES,E4BjEV;EAhBD;IAMM,e5B2EK;I4B1EL,0BAAwB,EzCS7B;EyChBD;IAWM,e5CFO;I4CGP,0B5BqEK;I4BpEL,sB5BoEK,E4BnEN;;AAdL;EACE,e5BgFS;E4B/ET,0B5B+ES,E4BjEV;EAhBD;IAMM,e5B2EK;I4B1EL,0BAAwB,EzCS7B;EyChBD;IAWM,e5CFO;I4CGP,0B5BqEK;I4BpEL,sB5BoEK,E4BnEN;;AAdL;EACE,e5BgFS;E4B/ET,0B5B+ES,E4BjEV;EAhBD;IAMM,e5B2EK;I4B1EL,0BAAwB,EzCS7B;EyChBD;IAWM,e5CFO;I4CGP,0B5BqEK;I4BpEL,sB5BoEK,E4BnEN;;AAdL;EACE,e5BgFS;E4B/ET,0B5B+ES,E4BjEV;EAhBD;IAMM,e5B2EK;I4B1EL,0BAAwB,EzCS7B;EyChBD;IAWM,e5CFO;I4CGP,0B5BqEK;I4BpEL,sB5BoEK,E4BnEN;;AAdL;EACE,e5BgFS;E4B/ET,0B5B+ES,E4BjEV;EAhBD;IAMM,e5B2EK;I4B1EL,0BAAwB,EzCS7B;EyChBD;IAWM,e5CFO;I4CGP,0B5BqEK;I4BpEL,sB5BoEK,E4BnEN;;ACjBP;EACE,aAAa;EACb,kB5C+5BiD;E4C95BjD,iB5CkQ+B;E4CjQ/B,eAAe;EACf,Y5Cea;E4Cdb,0B5CIa;E4CHb,YAAY,EAab;EApBD;IAkBI,gBAAgB,EACjB;IAnBH;MAYM,Y5CQS;M4CPT,sBAAsB;MACtB,aAAa,E1CKhB;;A0CSH;EACE,WAAW;EACX,8BAA8B;EAC9B,UAAU;EACV,yBAAyB,EAC1B;;AC3BD;EAEE,iBAAiB,EAMlB;EARD;IAKI,mBAAmB;IACnB,iBAAiB,EAClB;;AAIH;EACE,gBAAgB;EAChB,OAAO;EACP,SAAS;EACT,UAAU;EACV,QAAQ;EACR,c7CilBsC;E6ChlBtC,cAAc;EACd,iBAAiB;EAGjB,WAAW,EAIZ;;AAGD;EACE,mBAAmB;EACnB,YAAY;EACZ,a9CsJwB;E8CpJxB,qBAAqB,EAUtB;EAfD;I5B9BM,gDlB8M+B;IkB9M/B,wClB8M+B;IkB9M/B,gClB8M+B;IkB9M/B,6DlB8M+B;I8CtKjC,sCAAoB;IAApB,8BAAoB,EACrB;I5BrCD;M4B0BF;Q5BzBI,yBAAiB;QAAjB,iBAAiB,E4BoClB,EAAA;EAXH;IAaI,mCAAoB;IAApB,2BAAoB,EACrB;;AAGH;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,oCAAgB,EAQjB;EAXD;IAOI,eAAe;IACf,iCAAY;IACZ,YAAY,EACb;;AAIH;EACE,mBAAmB;EACnB,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,6BAAuB;EAAvB,8BAAuB;EAAvB,2BAAuB;EAAvB,uBAAuB;EACvB,YAAY;EAEZ,qBAAqB;EACrB,0B9CjDiB;E8CkDjB,6BAA6B;EAC7B,0B9ChDoB;EQvBlB,sBPgO+B;E6CrJjC,WAAW,EACZ;;AAGD;EACE,gBAAgB;EAChB,OAAO;EACP,SAAS;EACT,UAAU;EACV,QAAQ;EACR,c7C8gBsC;E6C7gBtC,uB9C/EU,E8CoFX;EAZD;IAUW,WAAW,EAAI;EAV1B;IAWW,a9CqGgB,E8CrGoB;;AAK/C;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,yBAAwB;EAAxB,sBAAwB;EAAxB,wBAAwB;EACxB,0BAA+B;EAA/B,uBAA+B;EAA/B,+BAA+B;EAC/B,c7CosBsC;E6CnsBtC,iC9C7EoB;EQjBlB,+BP0N+B;EOzN/B,gCPyN+B,E6CpHlC;EAbD;IASI,c7C+rBoC;I6C7rBpC,+BAAuF,EACxF;;AAIH;EACE,iBAAiB;EACjB,iB7CmJ+B,E6ClJhC;;AAID;EACE,mBAAmB;EAGnB,oBAAe;EAAf,mBAAe;EAAf,eAAe;EACf,c9C4DwB,E8C3DzB;;AAGD;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,sBAA0B;EAA1B,mBAA0B;EAA1B,0BAA0B;EAC1B,c9CoDwB;E8CnDxB,8B9C7GoB,E8CkHrB;EAVD;IAQyB,oBAAoB,EAAI;EARjD;IASwB,qBAAqB,EAAI;;AAIjD;EACE,mBAAmB;EACnB,aAAa;EACb,YAAY;EACZ,aAAa;EACb,iBAAiB,EAClB;;AlC1FG;EkC+FF;IACE,iB9CqDY;I8CpDZ,kBAAyC,EAC1C;EAED;IACE,oCAAgB,EAMjB;IAPD;MAII,iCAAY,EACb;EAQH;IAAY,iB9CqCE,E8CrCsB,EAAA;;AlCjHlC;EkCsHF;IAAY,e9C8BA,E8C9BwB,EAAA;;ACjLtC;EACE,mBAAmB;EACnB,c9CumBsC;E8CtmBtC,eAAe;EACf,U9CguBmC;E+CpuBnC,sL/CyPoM;E+CvPpM,mBAAmB;EACnB,iB/CgQ+B;E+C/P/B,iB/CmQ+B;E+ClQ/B,iBAAiB;EACjB,kBAAkB;EAClB,sBAAsB;EACtB,kBAAkB;EAClB,qBAAqB;EACrB,uBAAuB;EACvB,mBAAmB;EACnB,qBAAqB;EACrB,oBAAoB;EACpB,iBAAiB;EDNjB,mB/C8MwB;E+C5MxB,sBAAsB;EACtB,WAAW,EAiBZ;EA5BD;IAaW,a9CotB2B,E8CptBE;EAbxC;IAgBI,mBAAmB;IACnB,eAAe;IACf,c9CotBqC;I8CntBrC,e9CotBqC,E8C5sBtC;IA3BH;MAsBM,mBAAmB;MACnB,YAAY;MACZ,0BAA0B;MAC1B,oBAAoB,EACrB;;AAIL;EACE,kBAAgC,EAWjC;EAZD;IAII,UAAU,EAOX;IAXH;MAOM,OAAO;MACP,8BAAgE;MAChE,0B/CpBgJ,E+CqBjJ;;AAIL;EACE,kB9C0rBuC,E8C7qBxC;EAdD;IAII,QAAQ;IACR,c9CsrBqC;I8CrrBrC,e9CorBqC,E8C7qBtC;IAbH;MASM,SAAS;MACT,qCAA2F;MAC3F,4B/CpCgJ,E+CqCjJ;;AAIL;EACE,kBAAgC,EAWjC;EAZD;IAII,OAAO,EAOR;IAXH;MAOM,UAAU;MACV,8B9CmqBmC;M8ClqBnC,6B/ClDgJ,E+CmDjJ;;AAIL;EACE,kB9C4pBuC,E8C/oBxC;EAdD;IAII,SAAS;IACT,c9CwpBqC;I8CvpBrC,e9CspBqC,E8C/oBtC;IAbH;MASM,QAAQ;MACR,qC9CmpBmC;M8ClpBnC,2B/ClEgJ,E+CmEjJ;;AAoBL;EACE,iB9CknBuC;E8CjnBvC,wB/C4GwB;E+C3GxB,Y9CpGa;E8CqGb,mBAAmB;EACnB,0B/C5FoJ;EQhBlJ,wBRsN2B,E+CxG9B;;AElHD;EACE,mBAAmB;EACnB,OAAO;EACP,QAAQ;EACR,chDqmBsC;EgDpmBtC,eAAe;EACf,iBhD0uBuC;E+C/uBvC,sL/CyPoM;E+CvPpM,mBAAmB;EACnB,iB/CgQ+B;E+C/P/B,iB/CmQ+B;E+ClQ/B,iBAAiB;EACjB,kBAAkB;EAClB,sBAAsB;EACtB,kBAAkB;EAClB,qBAAqB;EACrB,uBAAuB;EACvB,mBAAmB;EACnB,qBAAqB;EACrB,oBAAoB;EACpB,iBAAiB;ECLjB,oBhDuP4C;EgDrP5C,sBAAsB;EACtB,0BjDmNkB;EiDlNlB,6BAA6B;EAC7B,0BjDYoB;EQvBlB,sBPgO+B,EgDjMlC;EAnCD;IAoBI,mBAAmB;IACnB,eAAe;IACf,YhDyuBoC;IgDxuBpC,ehDyuBqC;IgDxuBrC,iBhD4M+B,EgDlMhC;IAlCH;MA4BM,mBAAmB;MACnB,eAAe;MACf,YAAY;MACZ,0BAA0B;MAC1B,oBAAoB,EACrB;;AAIL;EACE,sBhD0tBuC,EgDtsBxC;EArBD;IAII,kCAAY,EACb;EALH;;IASI,8BAAgE,EACjE;EAVH;IAaI,UAAU;IACV,0BjDxBkB,EiDyBnB;EAfH;IAkBI,YhDyK6B;IgDxK7B,0BjDwKgB,EiDvKjB;;AAGH;EACE,oBhDmsBuC,EgD5qBxC;EAxBD;IAII,gCAAU;IACV,chD+rBqC;IgD9rBrC,ahD6rBoC;IgD5rBpC,iBAA2B,EAC5B;EARH;;IAYI,qCAA2F,EAC5F;EAbH;IAgBI,QAAQ;IACR,4BjDlDkB,EiDmDnB;EAlBH;IAqBI,UhD+I6B;IgD9I7B,4BjD8IgB,EiD7IjB;;AAGH;EACE,mBhDyqBuC,EgDzoBxC;EAjCD;IAII,+BAAS,EACV;EALH;;IASI,qCAAsF,EACvF;EAVH;IAaI,OAAO;IACP,6BjDzEkB,EiD0EnB;EAfH;IAkBI,ShDwH6B;IgDvH7B,6BjDuHgB,EiDtHjB;EApBH;IAwBI,mBAAmB;IACnB,OAAO;IACP,UAAU;IACV,eAAe;IACf,YhD6oBoC;IgD5oBpC,qBAAkC;IAClC,YAAY;IACZ,iCjD2GgB,EiD1GjB;;AAGH;EACE,qBhDsoBuC,EgD/mBxC;EAxBD;IAII,iCAAW;IACX,chDkoBqC;IgDjoBrC,ahDgoBoC;IgD/nBpC,iBAA2B,EAC5B;EARH;;IAYI,qChD2nBqC,EgD1nBtC;EAbH;IAgBI,SAAS;IACT,2BjD/GkB,EiDgHnB;EAlBH;IAqBI,WhDkF6B;IgDjF7B,2BjDiFgB,EiDhFjB;;AAoBH;EACE,wBhDolBwC;EgDnlBxC,iBAAiB;EACjB,gBhDwFgC;EgDvFhC,ehD6GmC;EgD5GnC,0BjDuDkB;EiDtDlB,iCAAiD;EzChK/C,2CyCiKwB;EzChKxB,4CyCgKwB,EAM3B;EAbD;IAWI,cAAc,EACf;;AAGH;EACE,wBhDqkBwC;EgDpkBxC,ehDlKgB,EgDmKjB;;AC5KD;EACE,mBAAmB,EACpB;;AAED;EACE,mBAAmB;EACnB,YAAY;EACZ,iBAAiB,EAClB;;AAED;EACE,mBAAmB;EACnB,cAAc;EACd,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,YAAY;EACZ,oCAA4B;EAA5B,4BAA4B;EAC5B,4BAAoB;EAApB,oBAAoB,EACrB;;AAED;;;EAGE,eAAe;EhC3BX,gDjBu5BgD;EiBv5BhD,wCjBu5BgD;EiBv5BhD,gCjBu5BgD;EiBv5BhD,6DjBu5BgD,EiD13BrD;EhCzBC;IgCoBF;;;MhCnBI,yBAAiB;MAAjB,iBAAiB,EgCwBpB,EAAA;;AAED;;EAEE,mBAAmB;EACnB,OAAO,EACR;;AAED;;EAEE,iCAAqB;EAArB,yBAAqB,EAKtB;EAHyC;IAJ1C;;MAKI,wCAAsB;MAAtB,gCAAsB,EAEzB,EAAA;;AAED;;EAEE,oCAAqB;EAArB,4BAAqB,EAKtB;EAHyC;IAJ1C;;MAKI,2CAAsB;MAAtB,mCAAsB,EAEzB,EAAA;;AAED;;EAEE,qCAAqB;EAArB,6BAAqB,EAKtB;EAHyC;IAJ1C;;MAKI,4CAAsB;MAAtB,oCAAsB,EAEzB,EAAA;;AAOD;EAEI,WAAW;EACX,iCAAyB;EAAzB,yBAAyB;EACzB,qCAA6B;EAA7B,6BAA6B,EAC9B;;AALH;;;EAUI,WAAW,EACZ;;AAXH;;EAeI,WAAW,EACZ;;AAhBH;;;;;EAuBI,iCAAqB;EAArB,yBAAqB,EAKtB;EAHyC;IAzB5C;;;;;MA0BM,wCAAsB;MAAtB,gCAAsB,EAEzB,EAAA;;AAQH;;EAEE,mBAAmB;EACnB,OAAO;EACP,UAAU;EAEV,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,yBAAwB;EAAxB,sBAAwB;EAAxB,wBAAwB;EACxB,WjDqxBqC;EiDpxBrC,YjD9Ga;EiD+Gb,mBAAmB;EACnB,ajDmxBoC,EiDxwBrC;EAvBD;;;IAkBI,YjDtHW;IiDuHX,sBAAsB;IACtB,WAAW;IACX,YAAY,E/ChHb;;A+CmHH;EACE,QAAQ,EAIT;;AACD;EACE,SAAS,EAIV;;AAGD;;EAEE,sBAAsB;EACtB,YjDgwBsC;EiD/vBtC,ajD+vBsC;EiD9vBtC,gDAAgD;EAChD,2BAA2B,EAC5B;;AACD;EACE,iNlCjHmB,EkCkHpB;;AACD;EACE,iNlCpHmB,EkCqHpB;;AAQD;EACE,mBAAmB;EACnB,SAAS;EACT,aAAa;EACb,QAAQ;EACR,YAAY;EACZ,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,yBAAwB;EAAxB,sBAAwB;EAAxB,wBAAwB;EACxB,gBAAgB;EAEhB,kBjDytBqC;EiDxtBrC,iBjDwtBqC;EiDvtBrC,iBAAiB,EAqClB;EAjDD;IAeI,mBAAmB;IACnB,oBAAe;IAAf,mBAAe;IAAf,eAAe;IACf,YjDqtBoC;IiDptBpC,YjDqtBmC;IiDptBnC,kBjDqtBmC;IiDptBnC,iBjDotBmC;IiDntBnC,oBAAoB;IACpB,gBAAgB;IAChB,2CjDtLW,EiD2MZ;IA5CH;MA2BM,mBAAmB;MACnB,WAAW;MACX,QAAQ;MACR,sBAAsB;MACtB,YAAY;MACZ,aAAa;MACb,YAAY,EACb;IAlCL;MAoCM,mBAAmB;MACnB,cAAc;MACd,QAAQ;MACR,sBAAsB;MACtB,YAAY;MACZ,aAAa;MACb,YAAY,EACb;EA3CL;IA+CI,uBjD9MW,EiD+MZ;;AAQH;EACE,mBAAmB;EACnB,WAAa;EACb,aAAa;EACb,UAAY;EACZ,YAAY;EACZ,kBAAkB;EAClB,qBAAqB;EACrB,YjD/Na;EiDgOb,mBAAmB,EACpB;;ACzOD;EAAqB,oCAAoC,EAAI;;AAC7D;EAAqB,+BAA+B,EAAI;;AACxD;EAAqB,kCAAkC,EAAI;;AAC3D;EAAqB,kCAAkC,EAAI;;AAC3D;EAAqB,uCAAuC,EAAI;;AAChE;EAAqB,oCAAoC,EAAI;;ACF3D;EACE,qCAAmC,EACpC;;AACD;;;;;EAEI,qCAAgD,EjDSnD;;AiDdD;EACE,qCAAmC,EACpC;;AACD;;;EAEI,qCAAgD,EjDSnD;;AiDdD;EACE,qCAAmC,EACpC;;AACD;;;;;EAEI,qCAAgD,EjDSnD;;AiDdD;EACE,qCAAmC,EACpC;;AACD;;;;;EAEI,qCAAgD,EjDSnD;;AiDdD;EACE,qCAAmC,EACpC;;AACD;;;;;EAEI,qCAAgD,EjDSnD;;AiDdD;EACE,qCAAmC,EACpC;;AACD;;;;;EAEI,qCAAgD,EjDSnD;;AiDdD;EACE,qCAAmC,EACpC;;AACD;;;EAEI,qCAAgD,EjDSnD;;AiDdD;EACE,qCAAmC,EACpC;;AACD;;;;;EAEI,qCAAgD,EjDSnD;;AkDPH;EACE,qCAAmC,EACpC;;AAED;EACE,yCAAyC,EAC1C;;ACZD;EAAkB,qCAAoD,EAAI;;AAC1E;EAAkB,yCAAwD,EAAI;;AAC9E;EAAkB,2CAA0D,EAAI;;AAChF;EAAkB,4CAA2D,EAAI;;AACjF;EAAkB,0CAAyD,EAAI;;AAE/E;EAAmB,qBAAqB,EAAI;;AAC5C;EAAmB,yBAAyB,EAAI;;AAChD;EAAmB,2BAA2B,EAAI;;AAClD;EAAmB,4BAA4B,EAAI;;AACnD;EAAmB,0BAA0B,EAAI;;AAG/C;EACE,iCAA+B,EAChC;;AAFD;EACE,iCAA+B,EAChC;;AAFD;EACE,iCAA+B,EAChC;;AAFD;EACE,iCAA+B,EAChC;;AAFD;EACE,iCAA+B,EAChC;;AAFD;EACE,iCAA+B,EAChC;;AAFD;EACE,iCAA+B,EAChC;;AAFD;EACE,iCAA+B,EAChC;;AAGH;EACE,iCAA+B,EAChC;;AAMD;EACE,kCAAwC,EACzC;;AACD;EACE,2CAAiD;EACjD,4CAAkD,EACnD;;AACD;EACE,4CAAkD;EAClD,+CAAqD,EACtD;;AACD;EACE,+CAAqD;EACrD,8CAAoD,EACrD;;AACD;EACE,2CAAiD;EACjD,8CAAoD,EACrD;;AAED;EACE,8BAA8B,EAC/B;;AAED;EACE,4BAA4B,EAC7B;;AC1DD;ECEI,eAAe;EACf,YAAY;EACZ,YAAY,EACb;;ACKC;EAAE,yBAAyB,EAAI;;AAC/B;EAAE,2BAA2B,EAAI;;AACjC;EAAE,iCAAiC,EAAI;;AACvC;EAAE,0BAA0B,EAAI;;AAChC;EAAE,0BAA0B,EAAI;;AAChC;EAAE,8BAA8B,EAAI;;AACpC;EAAE,+BAA+B,EAAI;;AACrC;;EAAE,gCAAyB;EAAzB,gCAAyB;EAAzB,yBAAyB,EAAI;;AAC/B;EAAE,uCAAgC;EAAhC,uCAAgC;EAAhC,gCAAgC,EAAI;;A7C0CtC;E6ClDA;IAAE,yBAAyB,EAAI;EAC/B;IAAE,2BAA2B,EAAI;EACjC;IAAE,iCAAiC,EAAI;EACvC;IAAE,0BAA0B,EAAI;EAChC;IAAE,0BAA0B,EAAI;EAChC;IAAE,8BAA8B,EAAI;EACpC;IAAE,+BAA+B,EAAI;EACrC;IAAE,gCAAyB;IAAzB,gCAAyB;IAAzB,yBAAyB,EAAI;EAC/B;IAAE,uCAAgC;IAAhC,uCAAgC;IAAhC,gCAAgC,EAAI,EAAA;;A7C0CtC;E6ClDA;IAAE,yBAAyB,EAAI;EAC/B;IAAE,2BAA2B,EAAI;EACjC;IAAE,iCAAiC,EAAI;EACvC;IAAE,0BAA0B,EAAI;EAChC;IAAE,0BAA0B,EAAI;EAChC;IAAE,8BAA8B,EAAI;EACpC;IAAE,+BAA+B,EAAI;EACrC;IAAE,gCAAyB;IAAzB,gCAAyB;IAAzB,yBAAyB,EAAI;EAC/B;IAAE,uCAAgC;IAAhC,uCAAgC;IAAhC,gCAAgC,EAAI,EAAA;;A7C0CtC;E6ClDA;IAAE,yBAAyB,EAAI;EAC/B;IAAE,2BAA2B,EAAI;EACjC;IAAE,iCAAiC,EAAI;EACvC;IAAE,0BAA0B,EAAI;EAChC;IAAE,0BAA0B,EAAI;EAChC;IAAE,8BAA8B,EAAI;EACpC;IAAE,+BAA+B,EAAI;EACrC;IAAE,gCAAyB;IAAzB,gCAAyB;IAAzB,yBAAyB,EAAI;EAC/B;IAAE,uCAAgC;IAAhC,uCAAgC;IAAhC,gCAAgC,EAAI,EAAA;;A7C0CtC;E6ClDA;IAAE,yBAAyB,EAAI;EAC/B;IAAE,2BAA2B,EAAI;EACjC;IAAE,iCAAiC,EAAI;EACvC;IAAE,0BAA0B,EAAI;EAChC;IAAE,0BAA0B,EAAI;EAChC;IAAE,8BAA8B,EAAI;EACpC;IAAE,+BAA+B,EAAI;EACrC;IAAE,gCAAyB;IAAzB,gCAAyB;IAAzB,yBAAyB,EAAI;EAC/B;IAAE,uCAAgC;IAAhC,uCAAgC;IAAhC,gCAAgC,EAAI,EAAA;;AAS1C;EACE;IAAwB,yBAAyB,EAAI;EACrD;IAAwB,2BAA2B,EAAI;EACvD;IAAwB,iCAAiC,EAAI;EAC7D;IAAwB,0BAA0B,EAAI;EACtD;IAAwB,0BAA0B,EAAI;EACtD;IAAwB,8BAA8B,EAAI;EAC1D;IAAwB,+BAA+B,EAAI;EAC3D;IAAwB,gCAAyB;IAAzB,gCAAyB;IAAzB,yBAAyB,EAAI;EACrD;IAAwB,uCAAgC;IAAhC,uCAAgC;IAAhC,gCAAgC,EAAI,EAAA;;AClC9D;EACE,mBAAmB;EACnB,eAAe;EACf,YAAY;EACZ,WAAW;EACX,iBAAiB,EAoBlB;EAzBD;IAQI,eAAe;IACf,YAAY,EACb;EAVH;;;;;IAiBI,mBAAmB;IACnB,OAAO;IACP,UAAU;IACV,QAAQ;IACR,YAAY;IACZ,aAAa;IACb,UAAU,EACX;;AAGH;EAEI,uBAAuB,EACxB;;AAGH;EAEI,oBAAuB,EACxB;;AAGH;EAEI,iBAAuB,EACxB;;AAGH;EAEI,kBAAuB,EACxB;;ACxCC;EAAE,0CAA+B;EAA/B,yCAA+B;EAA/B,mCAA+B;EAA/B,+BAA+B,EAAI;;AACrC;EAAE,wCAAkC;EAAlC,yCAAkC;EAAlC,sCAAkC;EAAlC,kCAAkC,EAAI;;AACxC;EAAE,0CAAuC;EAAvC,0CAAuC;EAAvC,2CAAuC;EAAvC,uCAAuC,EAAI;;AAC7C;EAAE,wCAA0C;EAA1C,0CAA0C;EAA1C,8CAA0C;EAA1C,0CAA0C,EAAI;;AAEhD;EAAE,+BAA2B;EAA3B,2BAA2B,EAAI;;AACjC;EAAE,iCAA6B;EAA7B,6BAA6B,EAAI;;AACnC;EAAE,uCAAmC;EAAnC,mCAAmC,EAAI;;AACzC;EAAE,+BAA0B;EAA1B,8BAA0B;EAA1B,0BAA0B,EAAI;;AAChC;EAAE,+BAAwB;EAAxB,gCAAwB;EAAxB,wBAAwB,EAAI;;AAC9B;EAAE,+BAAwB;EAAxB,gCAAwB;EAAxB,wBAAwB,EAAI;;AAC9B;EAAE,gCAA0B;EAA1B,0BAA0B,EAAI;;AAChC;EAAE,gCAA0B;EAA1B,0BAA0B,EAAI;;AAEhC;EAAE,mCAAuC;EAAvC,gCAAuC;EAAvC,uCAAuC,EAAI;;AAC7C;EAAE,iCAAqC;EAArC,8BAAqC;EAArC,qCAAqC,EAAI;;AAC3C;EAAE,oCAAmC;EAAnC,iCAAmC;EAAnC,mCAAmC,EAAI;;AACzC;EAAE,qCAA0C;EAA1C,kCAA0C;EAA1C,0CAA0C,EAAI;;AAChD;EAAE,qCAAyC;EAAzC,yCAAyC,EAAI;;AAE/C;EAAE,oCAAmC;EAAnC,iCAAmC;EAAnC,mCAAmC,EAAI;;AACzC;EAAE,kCAAiC;EAAjC,+BAAiC;EAAjC,iCAAiC,EAAI;;AACvC;;EAAE,qCAA+B;EAA/B,kCAA+B;EAA/B,+BAA+B,EAAI;;AACrC;EAAE,uCAAiC;EAAjC,oCAAiC;EAAjC,iCAAiC,EAAI;;AACvC;EAAE,sCAAgC;EAAhC,mCAAgC;EAAhC,gCAAgC,EAAI;;AAEtC;EAAE,qCAAqC;EAArC,qCAAqC,EAAI;;AAC3C;EAAE,mCAAmC;EAAnC,mCAAmC,EAAI;;AACzC;EAAE,sCAAiC;EAAjC,iCAAiC,EAAI;;AACvC;EAAE,uCAAwC;EAAxC,wCAAwC,EAAI;;AAC9C;EAAE,0CAAuC;EAAvC,uCAAuC,EAAI;;AAC7C;EAAE,uCAAkC;EAAlC,kCAAkC,EAAI;;AAExC;EAAE,qCAA4B;EAA5B,4BAA4B,EAAI;;AAClC;EAAE,sCAAkC;EAAlC,kCAAkC,EAAI;;AACxC;EAAE,oCAAgC;EAAhC,gCAAgC,EAAI;;AACtC;EAAE,uCAA8B;EAA9B,8BAA8B,EAAI;;AACpC;EAAE,yCAAgC;EAAhC,gCAAgC,EAAI;;AACtC;EAAE,wCAA+B;EAA/B,+BAA+B,EAAI;;A/CYrC;E+ClDA;IAAE,0CAA+B;IAA/B,yCAA+B;IAA/B,mCAA+B;IAA/B,+BAA+B,EAAI;EACrC;IAAE,wCAAkC;IAAlC,yCAAkC;IAAlC,sCAAkC;IAAlC,kCAAkC,EAAI;EACxC;IAAE,0CAAuC;IAAvC,0CAAuC;IAAvC,2CAAuC;IAAvC,uCAAuC,EAAI;EAC7C;IAAE,wCAA0C;IAA1C,0CAA0C;IAA1C,8CAA0C;IAA1C,0CAA0C,EAAI;EAEhD;IAAE,+BAA2B;IAA3B,2BAA2B,EAAI;EACjC;IAAE,iCAA6B;IAA7B,6BAA6B,EAAI;EACnC;IAAE,uCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,+BAA0B;IAA1B,8BAA0B;IAA1B,0BAA0B,EAAI;EAChC;IAAE,+BAAwB;IAAxB,gCAAwB;IAAxB,wBAAwB,EAAI;EAC9B;IAAE,+BAAwB;IAAxB,gCAAwB;IAAxB,wBAAwB,EAAI;EAC9B;IAAE,gCAA0B;IAA1B,0BAA0B,EAAI;EAChC;IAAE,gCAA0B;IAA1B,0BAA0B,EAAI;EAEhC;IAAE,mCAAuC;IAAvC,gCAAuC;IAAvC,uCAAuC,EAAI;EAC7C;IAAE,iCAAqC;IAArC,8BAAqC;IAArC,qCAAqC,EAAI;EAC3C;IAAE,oCAAmC;IAAnC,iCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,qCAA0C;IAA1C,kCAA0C;IAA1C,0CAA0C,EAAI;EAChD;IAAE,qCAAyC;IAAzC,yCAAyC,EAAI;EAE/C;IAAE,oCAAmC;IAAnC,iCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,kCAAiC;IAAjC,+BAAiC;IAAjC,iCAAiC,EAAI;EACvC;IAAE,qCAA+B;IAA/B,kCAA+B;IAA/B,+BAA+B,EAAI;EACrC;IAAE,uCAAiC;IAAjC,oCAAiC;IAAjC,iCAAiC,EAAI;EACvC;IAAE,sCAAgC;IAAhC,mCAAgC;IAAhC,gCAAgC,EAAI;EAEtC;IAAE,qCAAqC;IAArC,qCAAqC,EAAI;EAC3C;IAAE,mCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,sCAAiC;IAAjC,iCAAiC,EAAI;EACvC;IAAE,uCAAwC;IAAxC,wCAAwC,EAAI;EAC9C;IAAE,0CAAuC;IAAvC,uCAAuC,EAAI;EAC7C;IAAE,uCAAkC;IAAlC,kCAAkC,EAAI;EAExC;IAAE,qCAA4B;IAA5B,4BAA4B,EAAI;EAClC;IAAE,sCAAkC;IAAlC,kCAAkC,EAAI;EACxC;IAAE,oCAAgC;IAAhC,gCAAgC,EAAI;EACtC;IAAE,uCAA8B;IAA9B,8BAA8B,EAAI;EACpC;IAAE,yCAAgC;IAAhC,gCAAgC,EAAI;EACtC;IAAE,wCAA+B;IAA/B,+BAA+B,EAAI,EAAA;;A/CYrC;E+ClDA;IAAE,0CAA+B;IAA/B,yCAA+B;IAA/B,mCAA+B;IAA/B,+BAA+B,EAAI;EACrC;IAAE,wCAAkC;IAAlC,yCAAkC;IAAlC,sCAAkC;IAAlC,kCAAkC,EAAI;EACxC;IAAE,0CAAuC;IAAvC,0CAAuC;IAAvC,2CAAuC;IAAvC,uCAAuC,EAAI;EAC7C;IAAE,wCAA0C;IAA1C,0CAA0C;IAA1C,8CAA0C;IAA1C,0CAA0C,EAAI;EAEhD;IAAE,+BAA2B;IAA3B,2BAA2B,EAAI;EACjC;IAAE,iCAA6B;IAA7B,6BAA6B,EAAI;EACnC;IAAE,uCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,+BAA0B;IAA1B,8BAA0B;IAA1B,0BAA0B,EAAI;EAChC;IAAE,+BAAwB;IAAxB,gCAAwB;IAAxB,wBAAwB,EAAI;EAC9B;IAAE,+BAAwB;IAAxB,gCAAwB;IAAxB,wBAAwB,EAAI;EAC9B;IAAE,gCAA0B;IAA1B,0BAA0B,EAAI;EAChC;IAAE,gCAA0B;IAA1B,0BAA0B,EAAI;EAEhC;IAAE,mCAAuC;IAAvC,gCAAuC;IAAvC,uCAAuC,EAAI;EAC7C;IAAE,iCAAqC;IAArC,8BAAqC;IAArC,qCAAqC,EAAI;EAC3C;IAAE,oCAAmC;IAAnC,iCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,qCAA0C;IAA1C,kCAA0C;IAA1C,0CAA0C,EAAI;EAChD;IAAE,qCAAyC;IAAzC,yCAAyC,EAAI;EAE/C;IAAE,oCAAmC;IAAnC,iCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,kCAAiC;IAAjC,+BAAiC;IAAjC,iCAAiC,EAAI;EACvC;IAAE,qCAA+B;IAA/B,kCAA+B;IAA/B,+BAA+B,EAAI;EACrC;IAAE,uCAAiC;IAAjC,oCAAiC;IAAjC,iCAAiC,EAAI;EACvC;IAAE,sCAAgC;IAAhC,mCAAgC;IAAhC,gCAAgC,EAAI;EAEtC;IAAE,qCAAqC;IAArC,qCAAqC,EAAI;EAC3C;IAAE,mCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,sCAAiC;IAAjC,iCAAiC,EAAI;EACvC;IAAE,uCAAwC;IAAxC,wCAAwC,EAAI;EAC9C;IAAE,0CAAuC;IAAvC,uCAAuC,EAAI;EAC7C;IAAE,uCAAkC;IAAlC,kCAAkC,EAAI;EAExC;IAAE,qCAA4B;IAA5B,4BAA4B,EAAI;EAClC;IAAE,sCAAkC;IAAlC,kCAAkC,EAAI;EACxC;IAAE,oCAAgC;IAAhC,gCAAgC,EAAI;EACtC;IAAE,uCAA8B;IAA9B,8BAA8B,EAAI;EACpC;IAAE,yCAAgC;IAAhC,gCAAgC,EAAI;EACtC;IAAE,wCAA+B;IAA/B,+BAA+B,EAAI,EAAA;;A/CYrC;E+ClDA;IAAE,0CAA+B;IAA/B,yCAA+B;IAA/B,mCAA+B;IAA/B,+BAA+B,EAAI;EACrC;IAAE,wCAAkC;IAAlC,yCAAkC;IAAlC,sCAAkC;IAAlC,kCAAkC,EAAI;EACxC;IAAE,0CAAuC;IAAvC,0CAAuC;IAAvC,2CAAuC;IAAvC,uCAAuC,EAAI;EAC7C;IAAE,wCAA0C;IAA1C,0CAA0C;IAA1C,8CAA0C;IAA1C,0CAA0C,EAAI;EAEhD;IAAE,+BAA2B;IAA3B,2BAA2B,EAAI;EACjC;IAAE,iCAA6B;IAA7B,6BAA6B,EAAI;EACnC;IAAE,uCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,+BAA0B;IAA1B,8BAA0B;IAA1B,0BAA0B,EAAI;EAChC;IAAE,+BAAwB;IAAxB,gCAAwB;IAAxB,wBAAwB,EAAI;EAC9B;IAAE,+BAAwB;IAAxB,gCAAwB;IAAxB,wBAAwB,EAAI;EAC9B;IAAE,gCAA0B;IAA1B,0BAA0B,EAAI;EAChC;IAAE,gCAA0B;IAA1B,0BAA0B,EAAI;EAEhC;IAAE,mCAAuC;IAAvC,gCAAuC;IAAvC,uCAAuC,EAAI;EAC7C;IAAE,iCAAqC;IAArC,8BAAqC;IAArC,qCAAqC,EAAI;EAC3C;IAAE,oCAAmC;IAAnC,iCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,qCAA0C;IAA1C,kCAA0C;IAA1C,0CAA0C,EAAI;EAChD;IAAE,qCAAyC;IAAzC,yCAAyC,EAAI;EAE/C;IAAE,oCAAmC;IAAnC,iCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,kCAAiC;IAAjC,+BAAiC;IAAjC,iCAAiC,EAAI;EACvC;IAAE,qCAA+B;IAA/B,kCAA+B;IAA/B,+BAA+B,EAAI;EACrC;IAAE,uCAAiC;IAAjC,oCAAiC;IAAjC,iCAAiC,EAAI;EACvC;IAAE,sCAAgC;IAAhC,mCAAgC;IAAhC,gCAAgC,EAAI;EAEtC;IAAE,qCAAqC;IAArC,qCAAqC,EAAI;EAC3C;IAAE,mCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,sCAAiC;IAAjC,iCAAiC,EAAI;EACvC;IAAE,uCAAwC;IAAxC,wCAAwC,EAAI;EAC9C;IAAE,0CAAuC;IAAvC,uCAAuC,EAAI;EAC7C;IAAE,uCAAkC;IAAlC,kCAAkC,EAAI;EAExC;IAAE,qCAA4B;IAA5B,4BAA4B,EAAI;EAClC;IAAE,sCAAkC;IAAlC,kCAAkC,EAAI;EACxC;IAAE,oCAAgC;IAAhC,gCAAgC,EAAI;EACtC;IAAE,uCAA8B;IAA9B,8BAA8B,EAAI;EACpC;IAAE,yCAAgC;IAAhC,gCAAgC,EAAI;EACtC;IAAE,wCAA+B;IAA/B,+BAA+B,EAAI,EAAA;;A/CYrC;E+ClDA;IAAE,0CAA+B;IAA/B,yCAA+B;IAA/B,mCAA+B;IAA/B,+BAA+B,EAAI;EACrC;IAAE,wCAAkC;IAAlC,yCAAkC;IAAlC,sCAAkC;IAAlC,kCAAkC,EAAI;EACxC;IAAE,0CAAuC;IAAvC,0CAAuC;IAAvC,2CAAuC;IAAvC,uCAAuC,EAAI;EAC7C;IAAE,wCAA0C;IAA1C,0CAA0C;IAA1C,8CAA0C;IAA1C,0CAA0C,EAAI;EAEhD;IAAE,+BAA2B;IAA3B,2BAA2B,EAAI;EACjC;IAAE,iCAA6B;IAA7B,6BAA6B,EAAI;EACnC;IAAE,uCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,+BAA0B;IAA1B,8BAA0B;IAA1B,0BAA0B,EAAI;EAChC;IAAE,+BAAwB;IAAxB,gCAAwB;IAAxB,wBAAwB,EAAI;EAC9B;IAAE,+BAAwB;IAAxB,gCAAwB;IAAxB,wBAAwB,EAAI;EAC9B;IAAE,gCAA0B;IAA1B,0BAA0B,EAAI;EAChC;IAAE,gCAA0B;IAA1B,0BAA0B,EAAI;EAEhC;IAAE,mCAAuC;IAAvC,gCAAuC;IAAvC,uCAAuC,EAAI;EAC7C;IAAE,iCAAqC;IAArC,8BAAqC;IAArC,qCAAqC,EAAI;EAC3C;IAAE,oCAAmC;IAAnC,iCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,qCAA0C;IAA1C,kCAA0C;IAA1C,0CAA0C,EAAI;EAChD;IAAE,qCAAyC;IAAzC,yCAAyC,EAAI;EAE/C;IAAE,oCAAmC;IAAnC,iCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,kCAAiC;IAAjC,+BAAiC;IAAjC,iCAAiC,EAAI;EACvC;IAAE,qCAA+B;IAA/B,kCAA+B;IAA/B,+BAA+B,EAAI;EACrC;IAAE,uCAAiC;IAAjC,oCAAiC;IAAjC,iCAAiC,EAAI;EACvC;IAAE,sCAAgC;IAAhC,mCAAgC;IAAhC,gCAAgC,EAAI;EAEtC;IAAE,qCAAqC;IAArC,qCAAqC,EAAI;EAC3C;IAAE,mCAAmC;IAAnC,mCAAmC,EAAI;EACzC;IAAE,sCAAiC;IAAjC,iCAAiC,EAAI;EACvC;IAAE,uCAAwC;IAAxC,wCAAwC,EAAI;EAC9C;IAAE,0CAAuC;IAAvC,uCAAuC,EAAI;EAC7C;IAAE,uCAAkC;IAAlC,kCAAkC,EAAI;EAExC;IAAE,qCAA4B;IAA5B,4BAA4B,EAAI;EAClC;IAAE,sCAAkC;IAAlC,kCAAkC,EAAI;EACxC;IAAE,oCAAgC;IAAhC,gCAAgC,EAAI;EACtC;IAAE,uCAA8B;IAA9B,8BAA8B,EAAI;EACpC;IAAE,yCAAgC;IAAhC,gCAAgC,EAAI;EACtC;IAAE,wCAA+B;IAA/B,+BAA+B,EAAI,EAAA;;AC5CrC;ECDF,uBAAuB,EDCI;;AACzB;ECCF,wBAAwB,EDDI;;AAC1B;ECGF,uBAAuB,EDHI;;AhDsDzB;EgDxDA;ICDF,uBAAuB,EDCI;EACzB;ICCF,wBAAwB,EDDI;EAC1B;ICGF,uBAAuB,EDHI,EAAA;;AhDsDzB;EgDxDA;ICDF,uBAAuB,EDCI;EACzB;ICCF,wBAAwB,EDDI;EAC1B;ICGF,uBAAuB,EDHI,EAAA;;AhDsDzB;EgDxDA;ICDF,uBAAuB,EDCI;EACzB;ICCF,wBAAwB,EDDI;EAC1B;ICGF,uBAAuB,EDHI,EAAA;;AhDsDzB;EgDxDA;ICDF,uBAAuB,EDCI;EACzB;ICCF,wBAAwB,EDDI;EAC1B;ICGF,uBAAuB,EDHI,EAAA;;AEG3B;EAAE,4BAA8B,EAAI;;AAApC;EAAE,8BAA8B,EAAI;;AAApC;EAAE,8BAA8B,EAAI;;AAApC;EAAE,2BAA8B,EAAI;;AAApC;EAAE,oCAA8B;EAA9B,4BAA8B,EAAI;;AAKtC;EACE,gBAAgB;EAChB,OAAO;EACP,SAAS;EACT,QAAQ;EACR,c7DmlBsC,E6DllBvC;;AAED;EACE,gBAAgB;EAChB,SAAS;EACT,UAAU;EACV,QAAQ;EACR,c7D2kBsC,E6D1kBvC;;AAG6B;EAD9B;IAEI,yBAAiB;IAAjB,iBAAiB;IACjB,OAAO;IACP,c7DmkBoC,E6DjkBvC,EAAA;;AChCD;ECEE,mBAAmB;EACnB,WAAW;EACX,YAAY;EACZ,WAAW;EACX,iBAAiB;EACjB,uBAAU;EACV,oBAAoB;EACpB,UAAU,EDPX;;AAED;ECiBI,iBAAiB;EACjB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,WAAW;EACX,oBAAoB,EACrB;;AC7BH;EAAa,uEAAqC;EAArC,+DAAqC,EAAI;;AACtD;EAAU,iEAAkC;EAAlC,yDAAkC,EAAI;;AAChD;EAAa,gEAAqC;EAArC,wDAAqC,EAAI;;AACtD;EAAe,oCAA4B;EAA5B,4BAA4B,EAAI;;ACC3C;EAAE,sBAA4B,EAAI;;AAAlC;EAAE,sBAA4B,EAAI;;AAAlC;EAAE,sBAA4B,EAAI;;AAAlC;EAAE,uBAA4B,EAAI;;AAAlC;EAAE,uBAA4B,EAAI;;AAAlC;EAAE,uBAA4B,EAAI;;AAAlC;EAAE,uBAA4B,EAAI;;AAAlC;EAAE,uBAA4B,EAAI;;AAAlC;EAAE,wBAA4B,EAAI;;AAAlC;EAAE,wBAA4B,EAAI;;AAItC;EAAU,2BAA2B,EAAI;;AACzC;EAAU,4BAA4B,EAAI;;ACAlC;EAAE,qBAA4B,EAAI;;AAClC;;EACE,yBAAoC,EACrC;;AACD;;EACE,2BAAwC,EACzC;;AACD;;EACE,4BAA0C,EAC3C;;AACD;;EACE,0BAAsC,EACvC;;AAZD;EAAE,2BAA4B,EAAI;;AAClC;;EACE,+BAAoC,EACrC;;AACD;;EACE,iCAAwC,EACzC;;AACD;;EACE,kCAA0C,EAC3C;;AACD;;EACE,gCAAsC,EACvC;;AAZD;EAAE,0BAA4B,EAAI;;AAClC;;EACE,8BAAoC,EACrC;;AACD;;EACE,gCAAwC,EACzC;;AACD;;EACE,iCAA0C,EAC3C;;AACD;;EACE,+BAAsC,EACvC;;AAZD;EAAE,wBAA4B,EAAI;;AAClC;;EACE,4BAAoC,EACrC;;AACD;;EACE,8BAAwC,EACzC;;AACD;;EACE,+BAA0C,EAC3C;;AACD;;EACE,6BAAsC,EACvC;;AAZD;EAAE,0BAA4B,EAAI;;AAClC;;EACE,8BAAoC,EACrC;;AACD;;EACE,gCAAwC,EACzC;;AACD;;EACE,iCAA0C,EAC3C;;AACD;;EACE,+BAAsC,EACvC;;AAZD;EAAE,wBAA4B,EAAI;;AAClC;;EACE,4BAAoC,EACrC;;AACD;;EACE,8BAAwC,EACzC;;AACD;;EACE,+BAA0C,EAC3C;;AACD;;EACE,6BAAsC,EACvC;;AAZD;EAAE,sBAA4B,EAAI;;AAClC;;EACE,0BAAoC,EACrC;;AACD;;EACE,4BAAwC,EACzC;;AACD;;EACE,6BAA0C,EAC3C;;AACD;;EACE,2BAAsC,EACvC;;AAZD;EAAE,4BAA4B,EAAI;;AAClC;;EACE,gCAAoC,EACrC;;AACD;;EACE,kCAAwC,EACzC;;AACD;;EACE,mCAA0C,EAC3C;;AACD;;EACE,iCAAsC,EACvC;;AAZD;EAAE,2BAA4B,EAAI;;AAClC;;EACE,+BAAoC,EACrC;;AACD;;;EACE,iCAAwC,EACzC;;AACD;;EACE,kCAA0C,EAC3C;;AACD;;;EACE,gCAAsC,EACvC;;AAZD;EAAE,yBAA4B,EAAI;;AAClC;;;EACE,6BAAoC,EACrC;;AACD;;EACE,+BAAwC,EACzC;;AACD;;;EACE,gCAA0C,EAC3C;;AACD;;EACE,8BAAsC,EACvC;;AAZD;EAAE,2BAA4B,EAAI;;AAClC;;EACE,+BAAoC,EACrC;;AACD;;EACE,iCAAwC,EACzC;;AACD;;EACE,kCAA0C,EAC3C;;AACD;;EACE,gCAAsC,EACvC;;AAZD;EAAE,yBAA4B,EAAI;;AAClC;;EACE,6BAAoC,EACrC;;AACD;;EACE,+BAAwC,EACzC;;AACD;;EACE,gCAA0C,EAC3C;;AACD;;EACE,8BAAsC,EACvC;;AAKL;EAAE,wBAAwB,EAAI;;AAC9B;;EACE,4BAA4B,EAC7B;;AACD;;EACE,8BAA8B,EAC/B;;AACD;;EACE,+BAA+B,EAChC;;AACD;;EACE,6BAA6B,EAC9B;;AvDoBD;EuDjDI;IAAE,qBAA4B,EAAI;EAClC;;IACE,yBAAoC,EACrC;EACD;;IACE,2BAAwC,EACzC;EACD;;IACE,4BAA0C,EAC3C;EACD;;IACE,0BAAsC,EACvC;EAZD;IAAE,2BAA4B,EAAI;EAClC;;IACE,+BAAoC,EACrC;EACD;;IACE,iCAAwC,EACzC;EACD;;IACE,kCAA0C,EAC3C;EACD;;IACE,gCAAsC,EACvC;EAZD;IAAE,0BAA4B,EAAI;EAClC;;IACE,8BAAoC,EACrC;EACD;;IACE,gCAAwC,EACzC;EACD;;IACE,iCAA0C,EAC3C;EACD;;IACE,+BAAsC,EACvC;EAZD;IAAE,wBAA4B,EAAI;EAClC;;IACE,4BAAoC,EACrC;EACD;;IACE,8BAAwC,EACzC;EACD;;IACE,+BAA0C,EAC3C;EACD;;IACE,6BAAsC,EACvC;EAZD;IAAE,0BAA4B,EAAI;EAClC;;IACE,8BAAoC,EACrC;EACD;;IACE,gCAAwC,EACzC;EACD;;IACE,iCAA0C,EAC3C;EACD;;IACE,+BAAsC,EACvC;EAZD;IAAE,wBAA4B,EAAI;EAClC;;IACE,4BAAoC,EACrC;EACD;;IACE,8BAAwC,EACzC;EACD;;IACE,+BAA0C,EAC3C;EACD;;IACE,6BAAsC,EACvC;EAZD;IAAE,sBAA4B,EAAI;EAClC;;IACE,0BAAoC,EACrC;EACD;;IACE,4BAAwC,EACzC;EACD;;IACE,6BAA0C,EAC3C;EACD;;IACE,2BAAsC,EACvC;EAZD;IAAE,4BAA4B,EAAI;EAClC;;IACE,gCAAoC,EACrC;EACD;;IACE,kCAAwC,EACzC;EACD;;IACE,mCAA0C,EAC3C;EACD;;IACE,iCAAsC,EACvC;EAZD;IAAE,2BAA4B,EAAI;EAClC;;IACE,+BAAoC,EACrC;EACD;;IACE,iCAAwC,EACzC;EACD;;IACE,kCAA0C,EAC3C;EACD;;IACE,gCAAsC,EACvC;EAZD;IAAE,yBAA4B,EAAI;EAClC;;IACE,6BAAoC,EACrC;EACD;;IACE,+BAAwC,EACzC;EACD;;IACE,gCAA0C,EAC3C;EACD;;IACE,8BAAsC,EACvC;EAZD;IAAE,2BAA4B,EAAI;EAClC;;IACE,+BAAoC,EACrC;EACD;;IACE,iCAAwC,EACzC;EACD;;IACE,kCAA0C,EAC3C;EACD;;IACE,gCAAsC,EACvC;EAZD;IAAE,yBAA4B,EAAI;EAClC;;IACE,6BAAoC,EACrC;EACD;;IACE,+BAAwC,EACzC;EACD;;IACE,gCAA0C,EAC3C;EACD;;IACE,8BAAsC,EACvC;EAKL;IAAE,wBAAwB,EAAI;EAC9B;;IACE,4BAA4B,EAC7B;EACD;;IACE,8BAA8B,EAC/B;EACD;;IACE,+BAA+B,EAChC;EACD;;IACE,6BAA6B,EAC9B,EAAA;;AvDoBD;EuDjDI;IAAE,qBAA4B,EAAI;EAClC;;IACE,yBAAoC,EACrC;EACD;;IACE,2BAAwC,EACzC;EACD;;IACE,4BAA0C,EAC3C;EACD;;IACE,0BAAsC,EACvC;EAZD;IAAE,2BAA4B,EAAI;EAClC;;IACE,+BAAoC,EACrC;EACD;;IACE,iCAAwC,EACzC;EACD;;IACE,kCAA0C,EAC3C;EACD;;IACE,gCAAsC,EACvC;EAZD;IAAE,0BAA4B,EAAI;EAClC;;IACE,8BAAoC,EACrC;EACD;;IACE,gCAAwC,EACzC;EACD;;IACE,iCAA0C,EAC3C;EACD;;IACE,+BAAsC,EACvC;EAZD;IAAE,wBAA4B,EAAI;EAClC;;IACE,4BAAoC,EACrC;EACD;;IACE,8BAAwC,EACzC;EACD;;IACE,+BAA0C,EAC3C;EACD;;IACE,6BAAsC,EACvC;EAZD;IAAE,0BAA4B,EAAI;EAClC;;IACE,8BAAoC,EACrC;EACD;;IACE,gCAAwC,EACzC;EACD;;IACE,iCAA0C,EAC3C;EACD;;IACE,+BAAsC,EACvC;EAZD;IAAE,wBAA4B,EAAI;EAClC;;IACE,4BAAoC,EACrC;EACD;;IACE,8BAAwC,EACzC;EACD;;IACE,+BAA0C,EAC3C;EACD;;IACE,6BAAsC,EACvC;EAZD;IAAE,sBAA4B,EAAI;EAClC;;IACE,0BAAoC,EACrC;EACD;;IACE,4BAAwC,EACzC;EACD;;IACE,6BAA0C,EAC3C;EACD;;IACE,2BAAsC,EACvC;EAZD;IAAE,4BAA4B,EAAI;EAClC;;IACE,gCAAoC,EACrC;EACD;;IACE,kCAAwC,EACzC;EACD;;IACE,mCAA0C,EAC3C;EACD;;IACE,iCAAsC,EACvC;EAZD;IAAE,2BAA4B,EAAI;EAClC;;IACE,+BAAoC,EACrC;EACD;;IACE,iCAAwC,EACzC;EACD;;IACE,kCAA0C,EAC3C;EACD;;IACE,gCAAsC,EACvC;EAZD;IAAE,yBAA4B,EAAI;EAClC;;IACE,6BAAoC,EACrC;EACD;;IACE,+BAAwC,EACzC;EACD;;IACE,gCAA0C,EAC3C;EACD;;IACE,8BAAsC,EACvC;EAZD;IAAE,2BAA4B,EAAI;EAClC;;IACE,+BAAoC,EACrC;EACD;;IACE,iCAAwC,EACzC;EACD;;IACE,kCAA0C,EAC3C;EACD;;IACE,gCAAsC,EACvC;EAZD;IAAE,yBAA4B,EAAI;EAClC;;IACE,6BAAoC,EACrC;EACD;;IACE,+BAAwC,EACzC;EACD;;IACE,gCAA0C,EAC3C;EACD;;IACE,8BAAsC,EACvC;EAKL;IAAE,wBAAwB,EAAI;EAC9B;;IACE,4BAA4B,EAC7B;EACD;;IACE,8BAA8B,EAC/B;EACD;;IACE,+BAA+B,EAChC;EACD;;IACE,6BAA6B,EAC9B,EAAA;;AvDoBD;EuDjDI;IAAE,qBAA4B,EAAI;EAClC;;IACE,yBAAoC,EACrC;EACD;;IACE,2BAAwC,EACzC;EACD;;IACE,4BAA0C,EAC3C;EACD;;IACE,0BAAsC,EACvC;EAZD;IAAE,2BAA4B,EAAI;EAClC;;IACE,+BAAoC,EACrC;EACD;;IACE,iCAAwC,EACzC;EACD;;IACE,kCAA0C,EAC3C;EACD;;IACE,gCAAsC,EACvC;EAZD;IAAE,0BAA4B,EAAI;EAClC;;IACE,8BAAoC,EACrC;EACD;;IACE,gCAAwC,EACzC;EACD;;IACE,iCAA0C,EAC3C;EACD;;IACE,+BAAsC,EACvC;EAZD;IAAE,wBAA4B,EAAI;EAClC;;IACE,4BAAoC,EACrC;EACD;;IACE,8BAAwC,EACzC;EACD;;IACE,+BAA0C,EAC3C;EACD;;IACE,6BAAsC,EACvC;EAZD;IAAE,0BAA4B,EAAI;EAClC;;IACE,8BAAoC,EACrC;EACD;;IACE,gCAAwC,EACzC;EACD;;IACE,iCAA0C,EAC3C;EACD;;IACE,+BAAsC,EACvC;EAZD;IAAE,wBAA4B,EAAI;EAClC;;IACE,4BAAoC,EACrC;EACD;;IACE,8BAAwC,EACzC;EACD;;IACE,+BAA0C,EAC3C;EACD;;IACE,6BAAsC,EACvC;EAZD;IAAE,sBAA4B,EAAI;EAClC;;IACE,0BAAoC,EACrC;EACD;;IACE,4BAAwC,EACzC;EACD;;IACE,6BAA0C,EAC3C;EACD;;IACE,2BAAsC,EACvC;EAZD;IAAE,4BAA4B,EAAI;EAClC;;IACE,gCAAoC,EACrC;EACD;;IACE,kCAAwC,EACzC;EACD;;IACE,mCAA0C,EAC3C;EACD;;IACE,iCAAsC,EACvC;EAZD;IAAE,2BAA4B,EAAI;EAClC;;IACE,+BAAoC,EACrC;EACD;;IACE,iCAAwC,EACzC;EACD;;IACE,kCAA0C,EAC3C;EACD;;IACE,gCAAsC,EACvC;EAZD;IAAE,yBAA4B,EAAI;EAClC;;IACE,6BAAoC,EACrC;EACD;;IACE,+BAAwC,EACzC;EACD;;IACE,gCAA0C,EAC3C;EACD;;IACE,8BAAsC,EACvC;EAZD;IAAE,2BAA4B,EAAI;EAClC;;IACE,+BAAoC,EACrC;EACD;;IACE,iCAAwC,EACzC;EACD;;IACE,kCAA0C,EAC3C;EACD;;IACE,gCAAsC,EACvC;EAZD;IAAE,yBAA4B,EAAI;EAClC;;IACE,6BAAoC,EACrC;EACD;;IACE,+BAAwC,EACzC;EACD;;IACE,gCAA0C,EAC3C;EACD;;IACE,8BAAsC,EACvC;EAKL;IAAE,wBAAwB,EAAI;EAC9B;;IACE,4BAA4B,EAC7B;EACD;;IACE,8BAA8B,EAC/B;EACD;;IACE,+BAA+B,EAChC;EACD;;IACE,6BAA6B,EAC9B,EAAA;;AvDoBD;EuDjDI;IAAE,qBAA4B,EAAI;EAClC;;IACE,yBAAoC,EACrC;EACD;;IACE,2BAAwC,EACzC;EACD;;IACE,4BAA0C,EAC3C;EACD;;IACE,0BAAsC,EACvC;EAZD;IAAE,2BAA4B,EAAI;EAClC;;IACE,+BAAoC,EACrC;EACD;;IACE,iCAAwC,EACzC;EACD;;IACE,kCAA0C,EAC3C;EACD;;IACE,gCAAsC,EACvC;EAZD;IAAE,0BAA4B,EAAI;EAClC;;IACE,8BAAoC,EACrC;EACD;;IACE,gCAAwC,EACzC;EACD;;IACE,iCAA0C,EAC3C;EACD;;IACE,+BAAsC,EACvC;EAZD;IAAE,wBAA4B,EAAI;EAClC;;IACE,4BAAoC,EACrC;EACD;;IACE,8BAAwC,EACzC;EACD;;IACE,+BAA0C,EAC3C;EACD;;IACE,6BAAsC,EACvC;EAZD;IAAE,0BAA4B,EAAI;EAClC;;IACE,8BAAoC,EACrC;EACD;;IACE,gCAAwC,EACzC;EACD;;IACE,iCAA0C,EAC3C;EACD;;IACE,+BAAsC,EACvC;EAZD;IAAE,wBAA4B,EAAI;EAClC;;IACE,4BAAoC,EACrC;EACD;;IACE,8BAAwC,EACzC;EACD;;IACE,+BAA0C,EAC3C;EACD;;IACE,6BAAsC,EACvC;EAZD;IAAE,sBAA4B,EAAI;EAClC;;IACE,0BAAoC,EACrC;EACD;;IACE,4BAAwC,EACzC;EACD;;IACE,6BAA0C,EAC3C;EACD;;IACE,2BAAsC,EACvC;EAZD;IAAE,4BAA4B,EAAI;EAClC;;IACE,gCAAoC,EACrC;EACD;;IACE,kCAAwC,EACzC;EACD;;IACE,mCAA0C,EAC3C;EACD;;IACE,iCAAsC,EACvC;EAZD;IAAE,2BAA4B,EAAI;EAClC;;IACE,+BAAoC,EACrC;EACD;;IACE,iCAAwC,EACzC;EACD;;IACE,kCAA0C,EAC3C;EACD;;IACE,gCAAsC,EACvC;EAZD;IAAE,yBAA4B,EAAI;EAClC;;IACE,6BAAoC,EACrC;EACD;;IACE,+BAAwC,EACzC;EACD;;IACE,gCAA0C,EAC3C;EACD;;IACE,8BAAsC,EACvC;EAZD;IAAE,2BAA4B,EAAI;EAClC;;IACE,+BAAoC,EACrC;EACD;;IACE,iCAAwC,EACzC;EACD;;IACE,kCAA0C,EAC3C;EACD;;IACE,gCAAsC,EACvC;EAZD;IAAE,yBAA4B,EAAI;EAClC;;IACE,6BAAoC,EACrC;EACD;;IACE,+BAAwC,EACzC;EACD;;IACE,gCAA0C,EAC3C;EACD;;IACE,8BAAsC,EACvC;EAKL;IAAE,wBAAwB,EAAI;EAC9B;;IACE,4BAA4B,EAC7B;EACD;;IACE,8BAA8B,EAC/B;EACD;;IACE,+BAA+B,EAChC;EACD;;IACE,6BAA6B,EAC9B,EAAA;;AClCL;EAAkB,kGnEqPgG,EmErPzD;;AAIzD;EAAiB,+BAA+B,EAAI;;AACpD;EAAiB,+BAA+B,EAAI;;AACpD;ECRE,iBAAiB;EACjB,wBAAwB;EACxB,oBAAoB,EDMqB;;AAQvC;EAAE,4BAA4B,EAAI;;AAClC;EAAE,6BAA6B,EAAI;;AACnC;EAAE,8BAA8B,EAAI;;AxDsCpC;EwDxCA;IAAE,4BAA4B,EAAI;EAClC;IAAE,6BAA6B,EAAI;EACnC;IAAE,8BAA8B,EAAI,EAAA;;AxDsCpC;EwDxCA;IAAE,4BAA4B,EAAI;EAClC;IAAE,6BAA6B,EAAI;EACnC;IAAE,8BAA8B,EAAI,EAAA;;AxDsCpC;EwDxCA;IAAE,4BAA4B,EAAI;EAClC;IAAE,6BAA6B,EAAI;EACnC;IAAE,8BAA8B,EAAI,EAAA;;AxDsCpC;EwDxCA;IAAE,4BAA4B,EAAI;EAClC;IAAE,6BAA6B,EAAI;EACnC;IAAE,8BAA8B,EAAI,EAAA;;AAMxC;EAAmB,qCAAqC,EAAI;;AAC5D;EAAmB,qCAAqC,EAAI;;AAC5D;EAAmB,sCAAsC,EAAI;;AAI7D;EAAsB,4BAA0C,EAAI;;AACpE;EAAsB,4BAA2C,EAAI;;AACrE;EAAsB,4BAAyC,EAAI;;AACnE;EAAsB,8BAA8B,EAAI;;AAIxD;EAAc,0BAAwB,EAAI;;AEpCxC;EACE,0BAAwB,EACzB;;AACD;EAEI,0BAAqC,EnESxC;;AmEdD;EACE,0BAAwB,EACzB;;AACD;EAEI,0BAAqC,EnESxC;;AmEdD;EACE,0BAAwB,EACzB;;AACD;EAEI,0BAAqC,EnESxC;;AmEdD;EACE,0BAAwB,EACzB;;AACD;EAEI,0BAAqC,EnESxC;;AmEdD;EACE,0BAAwB,EACzB;;AACD;EAEI,0BAAqC,EnESxC;;AmEdD;EACE,0BAAwB,EACzB;;AACD;EAEI,0BAAqC,EnESxC;;AmEdD;EACE,0BAAwB,EACzB;;AACD;EAEI,0BAAqC,EnESxC;;AmEdD;EACE,0BAAwB,EACzB;;AACD;EAEI,0BAAqC,EnESxC;;AiE4BH;EAAa,0BAA6B,EAAI;;AAC9C;EAAc,0BAA6B,EAAI;;AAE/C;EAAiB,qCAAkC,EAAI;;AACvD;EAAiB,2CAAkC,EAAI;;AAIvD;EGpDE,YAAY;EACZ,mBAAmB;EACnB,kBAAkB;EAClB,8BAA8B;EAC9B,UAAU,EHkDX;;AIrDD;ECCE,+BAAkC,EDCnC;;AAED;ECHE,8BAAkC,EDKnC;;AECC;EACE;;;IAKE,6BAA6B;IAE7B,oCAA4B;IAA5B,4BAA4B,EAC7B;EAED;IAEI,2BAA2B,EAC5B;EAQH;IACE,8BAA6B,EAC9B;EAaD;IACE,iCAAiC,EAClC;EACD;;IAEE,0BzEtCY;IyEuCZ,yBAAyB,EAC1B;EAOD;IACE,4BAA4B,EAC7B;EAED;;IAEE,yBAAyB,EAC1B;EAED;;;IAGE,WAAW;IACX,UAAU,EACX;EAED;;IAEE,wBAAwB,EACzB;EAOD;IACE,SzE61BgC,EAAA;EyE31BlC;IACE,4BAA2C,EAC5C;EACD;IACE,4BAA2C,EAC5C;EAGD;IACE,cAAc,EACf;EACD;IACE,uB1E5FM,E0E6FP;EAED;IACE,qCAAqC,EAMtC;IAPD;;MAKI,qCAAmC,EACpC;EAGH;;IAGI,qCAAsC,EACvC;EAGH;IACE,eAAe,EAQhB;IATD;;;;MAOI,sB1EtGc,E0EuGf;EAGH;IACE,eAAe;IACf,sB1E5GgB,E0E6GjB,EAAA;;A/EIL,uEAAuE;AAEvE,6BAA6B;AgF9I7B,sBAAsB;AAEtB;EACE;IACE,WAAW;IACX,4CAAsB;IAAtB,oCAAsB,EAAA;EAExB;IACE,WAAW;IACX,wBAAgB;IAAhB,gBAAgB;IAChB,0CAAsB;IAAtB,kCAAsB,EAAA,EAAA;AAR1B;EACE;IACE,WAAW;IACX,4CAAsB;IAAtB,oCAAsB,EAAA;EAExB;IACE,WAAW;IACX,wBAAgB;IAAhB,gBAAgB;IAChB,0CAAsB;IAAtB,kCAAsB,EAAA,EAAA;;AAI1B;;EACE,0CAAkC;EAAlC,kCAAkC;EAClC,kC3EmJgC;E2EnJhC,0B3EmJgC;E2ElJhC,kCAA0B;EAA1B,0BAA0B,EAC3B;;AAUD;EACE;IACE,WAAW,EAAA;EAEb;IACE,WAAW,EAAA,EAAA;;AALf;EACE;IACE,WAAW,EAAA;EAEb;IACE,WAAW,EAAA,EAAA;;AAIf;EACE,gCAAwB;EAAxB,wBAAwB,EACzB;;AAED;EASE,6BAAqB;EAArB,qBAAqB;EACrB,+BAAuB;EAAvB,uBAAuB;EACvB,4CAAoC;EAApC,oCAAoC;EACpC,0CAAkC;EAAlC,kCAAkC,EACnC;;AAZC;EACE;IACE,gCAAiB;IAAjB,wBAAiB,EAAA;EAEnB;IACE,kCAAiB;IAAjB,0BAAiB,EAAA,EAAA;;AALrB;EACE;IACE,gCAAiB;IAAjB,wBAAiB,EAAA;EAEnB;IACE,kCAAiB;IAAjB,0BAAiB,EAAA,EAAA;;AASvB;EACE;IACE,WAAW;IACX,2CAAsB;IAAtB,mCAAsB,EAAA;EAExB;IACE,WAAW;IACX,wBAAgB;IAAhB,gBAAgB,EAAA,EAAA;;AAPpB;EACE;IACE,WAAW;IACX,2CAAsB;IAAtB,mCAAsB,EAAA;EAExB;IACE,WAAW;IACX,wBAAgB;IAAhB,gBAAgB,EAAA,EAAA;;AAIpB;EACE,iCAAyB;EAAzB,yBAAyB,EAC1B;;AC9BD;EACE,wBAAwB;EACxB,iBAAiB;EACjB,gBAAgB;EAChB,oBAAoB,EACrB;;AjFmHD,uEAAuE;AAEvE,yBAAyB;AkFjKzB,kBAAkB;AAElB;EACE,WAAW;EACX,UAAU;EACV,mBAAmB;EACnB,oCAAoC;EACpC,mCAAmC,EACpC;;AAED;;;;;;;;;;;;;;;EAEE,yBAAyB;EACzB,sBAAsB,EACvB;;AAED;;;;EACE,yBAAiB;EAAjB,iBAAiB,EAClB;;AAED;;;;EACE,WAAW;EACX,yBAAiB;EAAjB,iBAAiB,EAClB;;AAED;;;;;;;;;EASE,kBAAkB,EACnB;;A3E8/ND;;;;;;;;;;E2El/NE,WAAW,EACZ;;AAED;;;;;;;;;EAME,cAAc;EACd,iBAAiB;EACjB,2BAA2B;EAC3B,yBAAiB;EAAjB,iBAAiB;EACjB,oBAAoB,EACrB;;AAED;EACE,aAAa;EACb,mBAAmB,EACpB;;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgCE,yBAAyB;EAEzB,iBAAiB,EAClB;;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYE,WAAW;EACX,kBAAkB,EACnB;;AAED;EACE,sBAAsB;EACtB,kBAAkB,EACnB;;AAED;;;;EAIE,sBAAsB,EACvB;;AAED;;EAEE,0BAA0B;EAC1B,cAAc,EACf;;AhFzID,WAAW;AiFMT;ECLA,e/E8B+B,E8EvB9B;;AAFD;ECLA,e/E8BkD,E8EvBjD;;AAFD;ECLA,e/E8BmE,E8EvBlE;;AAFD;ECLA,e/E8BsF,E8EvBrF;;AAFD;ECLA,e/E8B0G,E8EvBzG;;AAFD;ECLA,e/E8B4H,E8EvB3H;;AAFD;ECLA,e/E8B6I,E8EvB5I;;AAFD;ECLA,e/E8B+J,E8EvB9J;;AAFD;ECLA,e/E8BkL,E8EvBjL;;AAFD;ECLA,e/E8BmM,E8EvBlM;;AAGD;EACE,oB9EmB6B,E8ElB9B;;AAFD;EACE,oB9EmBgD,E8ElBjD;;AAFD;EACE,oB9EmBiE,E8ElBlE;;AAFD;EACE,oB9EmBoF,E8ElBrF;;AAFD;EACE,oB9EmBwG,E8ElBzG;;AAFD;EACE,oB9EmB0H,E8ElB3H;;AAFD;EACE,oB9EmB2I,E8ElB5I;;AAFD;EACE,oB9EmB6J,E8ElB9J;;AAFD;EACE,oB9EmBgL,E8ElBjL;;AAFD;EACE,oB9EmBiM,E8ElBlM;;AEbH,YAAY;AAEZ;EAEI,mChF+BM;EgF9BN,+DhFagC;EgFZhC,kChF8JoC;EgF7JpC,0ChF6JoC;EgF5JpC,uChF4JoC;EgF3JpC,sChF2JoC,EgFwRrC;EA1bH;IAUM,oDhFwJkC;IgFvJlC,4DhFuJkC;IgFtJlC,yDhFsJkC;IgFrJlC,wDhFqJkC;IgFpJlC,oBhFJS;IgFUT,ahF2BkB;IgF1BlB,ahF2Ec,EgFxCf;IA/CD;MAQI,oBhF8CiB,EgF7ClB;IAlBP;MAwBQ,ehFdO;MgFeP,kBAAkB;MAClB,kBAAkB;MAClB,gBAAgB;MAChB,mBAAmB;MACnB,qBAAc;MAAd,qBAAc;MAAd,cAAc,EAef;MA5CP;QAkCU,eAAc,EACf;MAnCT;QAsCU,2BAAW;QACX,gBAAgB;QAChB,aAAa;QACb,aAAa;QACb,uBAAuB,EACxB;IA3CT;MA+CQ,cAAc,EAQf;MAvDP;QAkDU,yBAAW;QACX,gBAAgB;QAChB,aAAa;QACb,aAAa,EACd;EAtDT;IA2DM,6BhFuGkC;IgFtGlC,qChFsGkC;IgFrGlC,kChFqGkC;IgFpGlC,iChFoGkC;IgFnGlC,ehFrDS;IgFsDT,mBAAmB;IACnB,oBAAoB;IACpB,0BAAW;IACX,ahF6Bc,EgFuFf;IAlHC;MArEN;QAsEQ,YAAY,EAiHf,EAAA;IAvLL;MA0EQ,UAAU;MACV,eAAe,EAOhB;MAJG;QA9EV;UA+EY,cAAc,EAEjB,EAAA;IAjFT;MAqFQ,oBhFlDoB,EgFmDrB;IAtFP;MAyFQ,+BAAoB;MAApB,8BAAoB;MAApB,wBAAoB;MAApB,oBAAoB;MACpB,0BAAoB;MAApB,uBAAoB;MAApB,oBAAoB,EA4FrB;MAtLP;QA6FU,kBAAkB;QAClB,mBAAmB,EA6CpB;QA3IT;UAiGY,eAAe;UACf,gBhFtBiB;UgFuBjB,uBAAuB,EAgCxB;UA9BC;YArGZ;cAsGc,oBAAoB;cACpB,qBAAqB,EA4BxB,EAAA;UAnIX;YA2Gc,mBhFRiB;YgFSjB,uBAAuB,EACxB;UA7Gb;YAgHc,mBAAmB,EAMpB;YAPD;cAII,gBAAgB;cAChB,kBAAkB,EACnB;UArHf;YA0HgB,qChFhHD;YgFiHC,sBAAsB;YACtB,ehFlHD,EgFmHA;UA7Hf;YAgIgB,cAAc,EACf;QAjIf;UAuIc,gBAAgB;UAChB,yBAAyB,EAC1B;MAKH;QA9IV;UA+IY,kBAAkB,EAOrB;UA9DH;YA0DQ,eAAe;YACf,mBAAmB,EACpB,EAAA;MApJb;QAyJU,ahFzDU;QgF0DV,iBAAiB,EA2BlB;QArLT;UA6JY,UAAU,EAuBX;UApLX;YAgKc,ahFhEM;YgFiEN,gBhFrFe;YgFsFf,mBAAmB;YACnB,qBAAc;YAAd,qBAAc;YAAd,cAAc;YACd,0BAAoB;YAApB,uBAAoB;YAApB,oBAAoB,EAWrB;YA/Kb;cAuKgB,mBAAmB;cACnB,gBAAgB,EAMjB;cARD;gBAKI,gBAAgB;gBAChB,kBAAkB,EACnB;UA7KjB;YAkLc,sChFxKC,EgFyKF;EAnLb;IA2LM,oBhFzKgJ,EgFkLjJ;IApML;MA8LQ,ehFpLO,EgFqLR;IA/LP;MAkMQ,sBhFhL8I,EgFiL/I;EAnMP;IAuMM,oBhFrL0B,EgFqM3B;IAvNL;MA+MkB,oBhF7LqG;MgF8LrG,ehFtMH,EgFuME;EAjNjB;IA0NM,oBhFxM+D,EgFqOhE;IAvPL;MA8NU,ehFpNK,EgFyNN;MAnOT;QAiOY,eAAe,EJ3KxB;MItDH;QAiOY,eAAe,EJxKxB;MIzDH;QAiOY,eAAe,EJrKxB;MI5DH;QAiOY,eAAe,EJlKxB;II/DH;MA0OkB,oBAAkB;MAClB,ehFjOH;MgFkOG,sBhF1NmD,EgF+NpD;MAjPjB;QA+OoB,+BAAwD,EACzD;EAhPnB;IA0PM,oBhFxOiH,EgFqQlH;IAvRL;MA8PU,ehFpPK,EgFyPN;MAnQT;QAiQY,eAAe,EJ3MxB;MItDH;QAiQY,eAAe,EJxMxB;MIzDH;QAiQY,eAAe,EJrMxB;MI5DH;QAiQY,eAAe,EJlMxB;II/DH;MA0QkB,oBAAkB;MAClB,ehFjQH;MgFkQG,sBhF1PqG,EgF+PtG;MAjRjB;QA+QoB,+BAAuD,EACxD;EAhRnB;IA0RM,oBhFxQgG,EgFqSjG;IAvTL;MA8RU,ehFpRK,EgFyRN;MAnST;QAiSY,eAAe,EJ3OxB;MItDH;QAiSY,eAAe,EJxOxB;MIzDH;QAiSY,eAAe,EJrOxB;MI5DH;QAiSY,eAAe,EJlOxB;II/DH;MA0SkB,oBAAkB;MAClB,ehFjSH;MgFkSG,sBhF1RoF,EgF+RrF;MAjTjB;QA+SoB,+BAAwD,EACzD;EAhTnB;IA0TM,oBhFxTQ,EgF6WT;IA/WL;MA6TQ,ehFnTO,EgFoTR;IA9TP;MAiUQ,ehFvTO,EgFwTR;IAlUP;MAsUU,ehF5TK,EgF6TN;IAvUT;MA4UU,ehFlUK,EgFuUN;MAjVT;QA+UY,eAAe,EJzRxB;MItDH;QA+UY,eAAe,EJtRxB;MIzDH;QA+UY,eAAe,EJnRxB;MI5DH;QA+UY,eAAe,EJhRxB;II/DH;MAsVc,ehF5UC,EgFyVF;MAnWb;QA0VkB,oBAAkB;QAClB,ehFjVH;QgFkVG,sBhF1VJ,EgF+VG;QAjWjB;UA+VoB,+BAA+C,EAChD;IAhWnB;MAwWkB,YhF/VN,EgFgWK;EAzWjB;IAkXM,oBhFhW8E,EgF+Y/E;IAjaL;MAqXQ,ehF3WO,EgF4WR;IAtXP;MAyXQ,ehF/WO,EgFgXR;IA1XP;MA8XU,ehFpXK,EgFyXN;MAnYT;QAiYY,eAAe,EJ3UxB;MItDH;QAiYY,eAAe,EJxUxB;MIzDH;QAiYY,eAAe,EJrUxB;MI5DH;QAiYY,eAAe,EJlUxB;II/DH;MAuYY,ehF7XG,EgFoZJ;MA9ZX;QA4YkB,oBAAkB;QAClB,ehFnYH;QgFoYG,sBhF5XkE,EgFiYnE;QAnZjB;UAiZoB,+BAAqD,EACtD;MAlZnB;QA0ZkB,YhFjZN,EgFkZK;EA3ZjB;IA0aU,ehFhaK,EgFiaN;EA3aT;IAkbc,ehFxaC,EgFyaF;;AAUb;EACE;IAEI,+BAAoB;IAApB,8BAAoB;IAApB,wBAAoB;IAApB,oBAAoB,EAarB;IAfH;MAKM,YAAY,EASb;MAdL;QAQQ,cAAc,EACf;MATP;QAYQ,sBAAsB,EACvB;EAKP;IACE,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,mBAAmB,EACpB,EAAA;;ACrdH,gBAAgB;AAEhB;;EAEE,gBAAgB;EAChB,mCjF8BQ,EiF7BT;;AAED;;;;;;;;;;;;EAYE,mCjFeQ;EiFdR,oBAAoB;EACpB,mBAAmB;EACnB,qBAAqB;EACrB,oBAAoB,EACrB;;AAED;EACE,oBjFS0B,EiFR3B;;AAED;;EAEE,qBAAqB,EACtB;;AAED;;EAEE,gBAAgB,EACjB;;AAED;;EAEE,qBAAqB,EACtB;;AAED;;EAEE,mBAAmB,EACpB;;AAED;;EAEE,qBAAqB,EACtB;;AAED;;EAEE,gBAAgB,EACjB;;AAED;EACE,oBjFzB0B,EiF0B3B;;AAED;EACE,mBAAmB,EAIpB;EAHC;IAFF;MAGI,gBAAgB,EAEnB,EAAA;;AAED;EACE,oBAAoB,EAIrB;EAHC;IAFF;MAGI,kBAAkB,EAErB,EAAA;;AAED;EACE,kBAAkB,EAInB;EAHC;IAFF;MAGI,gBAAgB,EAEnB,EAAA;;AAED;EACE,oBAAoB,EAIrB;EAHC;IAFF;MAGI,kBAAkB,EAErB,EAAA;;AAED;EACE,mBAAmB,EAIpB;EAHC;IAFF;MAGI,gBAAgB,EAEnB,EAAA;;AAED;EACE,iBAAiB;EACjB,0BjF3EoB,EiF4ErB;;AAED;EAEI,iBAAiB,EAClB;;AAMD;EChHA,sBlFkB8B,EiFgG7B;EChHD;IACE,elFe4B,EkFd7B;;AD4GD;EChHA,sBlFkBkD,EiFgGjD;EChHD;IACE,elFegD,EkFdjD;;AD4GD;EChHA,sBlFkBmE,EiFgGlE;EChHD;IACE,elFeiE,EkFdlE;;AD4GD;EChHA,sBlFkBkF,EiFgGjF;EChHD;IACE,elFegF,EkFdjF;;AD4GD;EChHA,sBlFkBoG,EiFgGnG;EChHD;IACE,elFekG,EkFdnG;;AD4GD;EChHA,sBlFkBqH,EiFgGpH;EChHD;IACE,elFemH,EkFdpH;;AD4GD;EChHA,sBlFkBqI,EiFgGpI;EChHD;IACE,elFemI,EkFdpI;;AD4GD;EChHA,sBlFkBoJ,EiFgGnJ;EChHD;IACE,elFekJ,EkFdnJ;;ADiHH;EACE,YjF7GU;EiF8GV,0BAA0B,EAC3B;;AAED;EACE,mCjF1FQ;EiF2FR,iBAAiB;EACjB,eAAe;EACf,oBAAoB;EACpB,gBAAgB;EAChB,2BAA2B,EAI5B;EAVD;IAQI,kBAAkB,EACnB;;AAGH;EAEE,iBAAiB;EACjB,mCjFxGQ;EiFyGR,qBAAqB;EACrB,wBAAwB,EACzB;;AAED;EACE,yBAAyB;EACzB,mCjF/GQ,EiFmHT;EAND;IAII,kBAAkB,EACnB;;AAGH;EACE,iBAAiB,EAClB;;AAED;EACE,iBAAiB,EAClB;;AAED;EACE,iBAAiB,EAClB;;AAED;;;;;EAEE,gBAAgB,EACjB;;AAED;EACE,kBAAkB,EACnB;;AAED;EACE,oBAAoB,EACrB;;AAED;EACE,gBAAgB,EACjB;;AEnLD,oBAAoB;AAEpB;;EAEE,mBAAmB;EACnB,4BAA4B,EAC7B;;AAED;;;EAGE,0BAA0B,EAC3B;;AAJD;;;EAGE,0BAA0B,EAC3B;;AAED;EACE,+BAAgB;EAChB,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,+BAAoB;EAApB,8BAAoB;EAApB,wBAAoB;EAApB,oBAAoB;EACpB,gBAAgB;EAChB,iBAAiB,EAMlB;EAXD;IAQI,YAAY;IACZ,kBAAkB,EACnB;;AAGH;EACE,wDnFwIsC;EmFxItC,gDnFwIsC;EmFvItC,0BAAW;EACX,+BAAgB;EAChB,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,6BAAuB;EAAvB,8BAAuB;EAAvB,2BAAuB;EAAvB,uBAAuB,EAMxB;EAJC;IAPF;MAQI,eAAe;MACf,YAAY,EAEf,EAAA;;AAED;EACE,oBnFjBiB;EmFkBjB,uBAAuB;EACvB,YAAY;EACZ,oBAAa;EAAb,qBAAa;EAAb,aAAa,EACd;;AAED;EACE,iBAAiB,EAClB;;AAED;EACE,mBAAmB,EAapB;EAdD;IAII,mBAAmB;IACnB,YAAY;IACZ,gBAAgB,EACjB;EAPH;IAUI,mBAAmB;IACnB,aAAa;IACb,iBAAiB,EAClB;;AAGH;EAEE,cAAc;EACd,gBAAgB,EACjB;;ACvED,YAAY;AACZ;EACE,oBpFsBiB;EoFpBjB,mBAAmB;EACnB,2BpF+JsC;EoF9JtC,gCpF8JsC;EoF7JtC,mCpF6JsC;EoF5JtC,+BpF4JsC;EoF3JtC,8BpFkBoB;EoFjBpB,oCAAe;EACf,mCpFwBQ,EoFdT;EApBD;IAaI,epFMiE;IoFLjE,mBAAmB,EACpB;EACD;IAhBF;MAiBI,eAAe;MACf,YAAY,EAEf,EAAA;;ACrBD,eAAe;AAEf;EACE,oBrF+JsB,EqF9JvB;;AAGC;EADF;IAEI,iBAAiB,EAEpB,EAAA;;AAGC;EADF;IAEI,iBAAiB,EAEpB,EAAA;;AAGC;EADF;IAEI,iBAAiB,EAEpB,EAAA;;AAGC;EADF;IAEI,iBAAiB,EAEpB,EAAA;;AAED;EACE,YAAY;EACZ,aAAa,EACd;;AAED;EACE,YAAY;EACZ,aAAa,EACd;;AAED;EACE,YAAY;EACZ,aAAa,EACd;;AAED;EACE,YAAY;EACZ,aAAa,EACd;;AAED;;EACE,YAAY;EACZ,aAAa,EACd;;AAED;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,2BAAqB;EAArB,wBAAqB;EAArB,qBAAqB;EACrB,0BAAyB;EAAzB,uBAAyB;EAAzB,yBAAyB,EAM1B;EATD;IAMI,YAAY;IACZ,gBAAgB,EACjB;;AAGH;EACE,YAAY;EACZ,aAAa;EACb,oBAAoB,EACrB;;AAGC;EADF;IAEI,gCrF/CkB,EqFiDrB,EAAA;;AAGC;EADF;IAEI,gCrFrDkB,EqFuDrB,EAAA;;AAGC;EADF;IAEI,gCrF3DkB,EqF6DrB,EAAA;;AAGC;EADF;IAEI,+BrFjEkB,EqFmErB,EAAA;;AAED;EACE,sBAAoB,EACrB;;AAED;EACE,mBAAmB,EAmCpB;EApCD;IAII,mBAAmB;IACnB,YAAY;IACZ,eAAe;IACf,gBAAgB;IAChB,iBAAiB;IACjB,eAAe;IACf,eAAe;IACf,uBAAuB;IACvB,oBAAoB;IACpB,erFrGW;IqFsGX,iBAAiB,EAqBlB;IAnCH;MAiBM,UAAU;MACV,SAAS,EACV;IAnBL;MAsBM,aAAa;MACb,SAAS,EACV;IAxBL;MA2BM,aAAa;MACb,QAAQ,EACT;IA7BL;MAgCM,UAAU;MACV,QAAQ,EACT;;AAKH;EADF;IAEI,+BrFjHkB,EqFmHrB,EAAA;;AAGC;EADF;IAEI,+BrFvHkB,EqFyHrB,EAAA;;AAED;EACE,eAAe,EAChB;;AAED;EACE,YrFhJU,EqFiJX;;AAED;EACE,oBAAa;EAAb,qBAAa;EAAb,aAAa,EACd;;AAED;EACE,eAAe;EACf,oBAAoB;EACpB,wBAAwB;EACxB,iBAAiB,EAClB;;AAED;EACE,oBAAoB,EACrB;;AAED;EACE,kBAAkB;EAClB,oBAAoB;EACpB,sBrF5JoG;EqF6JpG,oBAAoB;EACpB,sBAAsB;EACtB,YAAY;EACZ,WAAW,EAaZ;EApBD;IAUI,sBrFnKiE,EqFoKlE;EAXH;IAcI,sBrFvK4B,EqFwK7B;EAfH;IAkBI,sBrF3KkG,EqF4KnG;;AAGH;EACE,wBAAwB,EACzB;;AAED;EACE,mBAAmB,EA8BpB;EA/BD;IAII,mBAAmB,EA0BpB;IA9BH;MAOM,SAAS;MACT,oCAAqB;MAArB,4BAAqB;MACrB,UAAU;MACV,SAAS;MACT,QAAQ;MACR,aAAa,EACd;IAbL;MAgBM,QAAQ,EACT;IAjBL;MAoBM,SAAS,EACV;IArBL;MAwBM,UAAU,EACX;IAzBL;MA4BM,OAAO,EACR;;AAIL;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc,EAYf;EAbD;IAKI,oBAAoB;IACpB,kBAAkB;IAClB,0BrFnOW,EqFwOZ;IAZH;MAUM,eAAe,EAChB;;AAIL;EACE,WAAW,EACZ;;AAED;EACE,WAAW,EACZ;;AAED;EACE,WAAW,EACZ;;AAED;EACE,WAAW,EACZ;;AAED;EACE,YAAY,EACb;;AAED;EACE,YAAY,EACb;;AAED;EACE,YAAY,EACb;;AAED;EACE,YAAY,EACb;;AAIC;ECxQA,oCtFG8B,EqFuQ7B;;AAFD;ECxQA,qCtFGkD,EqFuQjD;;AAFD;ECxQA,oCtFGmE,EqFuQlE;;AAFD;ECxQA,oCtFGkF,EqFuQjF;;AAFD;ECxQA,mCtFGoG,EqFuQnG;;AAFD;ECxQA,mCtFGqH,EqFuQpH;;AAFD;ECxQA,qCtFGqI,EqFuQpI;;AAFD;ECxQA,kCtFGoJ,EqFuQnJ;;AE3RH,iBAAiB;AAEjB;EAgBM,qBAAqB,EACtB;;AAjBL;EAqBI,mBAAmB,EACpB;;AAtBH;;;;;;EAkCI,8BvFTkB;EuFUlB,oBAAoB,EACrB;;AApCH;EAwCM,iBAAiB,EAClB;;AAzCL;EA4CM,mBAAmB,EACpB;;AA7CL;EAiDI,sBAAsB;EAEtB,sBAAsB,EACvB;;AApDH;EAwDM,wBAAwB,EACzB;;AAzDL;EA6DQ,iBAAiB,EAClB;;AA9DP;EAoEM,iCvF3CgB;EuF4ChB,uBAAuB;EACvB,sBAAsB,EACvB;;AAvEL;EA2EI,cAAc,EACf;;AAQH;EACE,iBAAiB;EACjB,eAAe,EAShB;EAXD;IAKI,yBAAyB,EAK1B;IAVH;MAQM,gBAAgB,EACjB;;AAKL;EACE,eAAe;EACf,gBAAgB,EAKjB;EAPD;IAII,eAAe;IACf,+BAAgB,EACjB;;AAEH;;EAEE,gBAAgB,EACjB;;AACD;EACE,kBAAkB;EAClB,qBAAqB;EACrB,WAAW;EACX,oBvF5FiB,EuF6FlB;;AAED;EACE,mBAAmB,EACpB;;AAED;EACE,eAAe;EACf,+BAAgB,EASjB;EAXD;IAKM,iBAAiB,EAIlB;IATL;MAOQ,iBAAiB,EAClB;;AAKP;EAGM,oBAAoB,EAIrB;EAPL;IAKQ,oBAAoB,EACrB;;AAKP;EAIE,YAAY;EACZ,cAAc,EAGf;;AC3JD,eAAe;AAEf;EAEI,aAAa;EACb,YAAY;EACZ,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,yBAAwB;EAAxB,sBAAwB;EAAxB,wBAAwB;EACxB,oBAAoB,EAKrB;EAZH;IAUM,gBAAgB,EACjB;;AAXL;EAeI,gCxFUkB,EwF+CnB;EAxEH;IAkBM,mBAAmB,EACpB;E5EoDD;I4EvEJ;MAsBM,gBAAgB;MAChB,iBAAiB;MACjB,mBAAmB;MACnB,aAAa,EA+ChB;MAxEH;QAiCU,YAAY;QACZ,mBAAmB;QACnB,oBxFVY,EwFWb;MApCT;QAyCU,UAAU;QACV,aAAa;QACb,YAAY;QACZ,SAAS,EACV;MA7CT;QAgDU,UAAU;QACV,WAAW;QACX,aAAa;QACb,SAAS,EACV;MApDT;QAyDU,UAAU;QACV,aAAa;QACb,YAAY;QACZ,QAAQ,EACT;MA7DT;QAkEU,WAAW;QACX,aAAa;QACb,SAAS,EACV,EAAA;;AAMT;EAEI,iCxFpDkB,EwFwFnB;EAtCH;IAMM,iBAAiB,EAElB;EARL;IAeM,mBAAmB;IACnB,WAAW,EAKZ;IArBL;MAmBQ,iBAAiB,EAClB;EApBP;IAwBM,kBAAkB;IAClB,WAAW,EAYZ;IArCL;MA4BQ,mBAAmB;MACnB,mCxFvEE;MwFwEF,iBAAiB;MACjB,kBAAkB,EAKnB;MATD;QAOI,iBAAiB,EAClB;;AAMT;EACE,+DAA2B;EAC3B,uBAAuB;EACvB,exF7Ga,EwF0Hd;EAhBD;IAMI,oBAAoB;IACpB,mCxF1FM;IwF2FN,iBAAiB,EAClB;EATH;IAYI,2CxFtHW;IwFuHX,oBAAoB;IACpB,wBAAwB,EACzB;;AAGH;EACE,oBAAoB;EACpB,8JAAiC;EAAjC,+FAAiC,EAiDlC;EAnDD;IAKI,oBxFjIW,EwFuIZ;IAXH;MAQM,qEAAoE;MACpE,uBAAuB,EACxB;EAVL;IAcI,kBAAkB,EACnB;EAfH;IAkBI,qBAAqB,EAMtB;IAxBH;MAqBM,oBAAoB;MACpB,eAAe,EAChB;EAvBL;IA2BI,oBxFvJW;IwFwJX,iBAAiB,EAsBlB;IAlDH;MA+BM,oBAAiB;MAAjB,qBAAiB;MAAjB,iBAAiB;MACjB,gCxF7IgB;MwF8IhB,cAAc;MACd,mBAAmB,EAepB;MAjDL;QAqCQ,kBAAkB,EACnB;MAtCP;QAyCQ,gBAAgB,EACjB;MA1CP;QA6CQ,exF/IY;QwFgJZ,oBAAoB;QACpB,iBAAiB,EAClB;;AAKP;EACE,YAAY,EACb;;AAED;EACE,YAAY,EACb;;AAED;EAEI,mBAAmB;EACnB,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,6BAAuB;EAAvB,8BAAuB;EAAvB,2BAAuB;EAAvB,uBAAuB,EA4BxB;EAjCH;IAQM,kBAAkB;IAClB,mBAAmB;IACnB,YAAY;IACZ,YAAY;IACZ,eAAe;IACf,gBAAgB,EACjB;EAdL;IAkBQ,oBxFnM4E,EwFoM7E;EAnBP;IAwBQ,oBxFzMwB,EwF0MzB;EAzBP;IA8BQ,oBxF/M+G,EwFgNhH;;AAKP;EACE,oBAAoB;EACpB,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,cAAc;EACd,mBAAmB,EAmBpB;EAxBD;IAQI,WAAW;IACX,gBAAgB,EAMjB;IAfH;MAYM,eAAe;MACf,aAAa,EACd;EAdL;IAkBI,WAAW;IACX,YxFjPQ;IwFkPR,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,6BAAuB;IAAvB,8BAAuB;IAAvB,2BAAuB;IAAvB,uBAAuB;IACvB,uBAAiB;IAAjB,oBAAiB;IAAjB,iBAAiB,EAClB;;A7FnFH,uEAAuE;AAEvE,wBAAwB;A8F/KxB,gBAAgB;AAEhB;EAEI,oBAAoB;EACpB,0BzFsBkB;EyFrBlB,mBAAmB,EAyCpB;EA7CH;IAMM,8BAA8B;IAC9B,aAAa;IACb,WAAW;IACX,gBAAgB,EA4BjB;IArCL;MAWQ,eAAe;MACf,yCAAyC;MACzC,ezFK8I;MyFJ9I,sBAAsB;MACtB,oBzFoBoB;MyFnBpB,mBAAmB;MACnB,iBAAiB;MACjB,8CAA8C;MAC9C,sDAAsD;MACtD,kCAA0B;MAA1B,0BAA0B;MbyBhC,wBAAwB;MACxB,iBAAiB;MACjB,gBAAgB;MAChB,oBAAoB,EaZf;MApCP;QAuBU,qCAAqC;QACrC,mBAAmB;QACnB,WAAW;QACX,UAAU;QACV,gBAAgB;QAChB,eAAe;QACf,iBAAiB;QACjB,YzFrBE,EyFsBH;MA/BT;QAiCU,mBAAmB;QACnB,gBAAgB,EACjB;EAnCT;IAuCM,mBAAmB;IACnB,wBAAwB,EAIzB;IA5CL;MA0CQ,mBAAmB,EACpB;;AA3CP;EAmDY,oBzFjC2H,EyFqC5H;EAvDX;IAqDc,iBAAiB,EAClB;;AAtDb;EA0Dc,iBAAiB,EAClB;;AA3Db;ECuDE,sB1FrCkF,EyFmD7E;ECVD;IACE,e1F1C4E,E0F2C7E;EAHH;IAMI,e1F9C4E,E0F+C7E;EAPH;IAUI,iC1FlD4E,E0FmD7E;EAXH;IAcI,iC1F9DO,E0F+DR;;ADzEP;ECuDE,sB1FrCmE,EyFsD9D;ECbD;IACE,e1F1C6D,E0F2C9D;EAHH;IAMI,e1F9C6D,E0F+C9D;EAPH;IAUI,iC1FlD6D,E0FmD9D;EAXH;IAcI,iC1F9DO,E0F+DR;;ADzEP;ECuDE,sB1FrC8B,EyFyDzB;EChBD;IACE,e1F1CwB,E0F2CzB;EAHH;IAMI,e1F9CwB,E0F+CzB;EAPH;IAUI,iC1FlDwB,E0FmDzB;EAXH;IAcI,iC1F9DO,E0F+DR;;ADzEP;ECuDE,sB1FrCoG,EyF4D/F;ECnBD;IACE,e1F1C8F,E0F2C/F;EAHH;IAMI,e1F9C8F,E0F+C/F;EAPH;IAUI,iC1FlD8F,E0FmD/F;EAXH;IAcI,iC1F9DO,E0F+DR;;ADzEP;ECuDE,sB1FrCqH,EyF+DhH;ECtBD;IACE,e1F1C+G,E0F2ChH;EAHH;IAMI,e1F9C+G,E0F+ChH;EAPH;IAUI,iC1FlD+G,E0FmDhH;EAXH;IAcI,iC1F9DO,E0F+DR;;ADzEP;EAsFc,iBAAiB,EAClB;;AAvFb;EA2Fc,iBAAiB,EAClB;;AA5Fb;EAoGM,iBAAiB,EAwClB;EC7DD;IACE,oB1F9D8E,E0FuE/E;IAVD;MAII,oB1FjE4E,E0FkE7E;IALH;MAQI,oB1FrE4E,E0FsE7E;EATH;IACE,oB1F9D+D,E0FuEhE;IAVD;MAII,oB1FjE6D,E0FkE9D;IALH;MAQI,oB1FrE6D,E0FsE9D;EATH;IACE,oB1F9D0B,E0FuE3B;IAVD;MAII,oB1FjEwB,E0FkEzB;IALH;MAQI,oB1FrEwB,E0FsEzB;EATH;IACE,oB1F9DgG,E0FuEjG;IAVD;MAII,oB1FjE8F,E0FkE/F;IALH;MAQI,oB1FrE8F,E0FsE/F;EATH;IACE,oB1F9DiH,E0FuElH;IAVD;MAII,oB1FjE+G,E0FkEhH;IALH;MAQI,oB1FrE+G,E0FsEhH;EDxFP;IAsHU,qBAAqB;IACrB,oBAAoB;IACpB,ezF9GK;IyF+GL,iBAAiB,EAiBlB;IA1IT;MA2HY,WAAW;MACX,aAAa;MACb,UAAU;MACV,ezFpHG,EyFqHJ;IA/HX;MAkIc,iBAAiB,EAClB;IAnIb;MAuIc,iBAAiB,EAClB;;AAxIb;EAgJM,oBzF9HiI,EyFwJlI;EA1KL;IAmJU,ezFjI0E;IyFkI1E,iBAAiB,EAiBlB;IArKT;MAsJY,UAAU;MACV,ezFrIwE,EyFsIzE;IAxJX;MA0JY,oBzFxI2H,EyF4I5H;MA9JX;QA4Jc,iBAAiB,EAClB;IA7Jb;MAgKY,oBzFtJG,EyF0JJ;MApKX;QAkKc,iBAAiB,EAClB;;AAnKb;EA8KM,iBAAiB;EACjB,mBAAmB;EACnB,kBAAkB;EAClB,iBAAiB,EAgClB;EAjNL;IAoLU,+BAA+B;IAC/B,iBAAiB,EAqBlB;IA1MT;MAuLY,aAAa;MACb,UAAU;MACV,UAAU;MACV,gBAAgB;MAChB,kCAA0B;MAA1B,0BAA0B;MAC1B,mCAA2B;MAA3B,2BAA2B,EAC5B;IA7LX;MAgMc,iBAAiB;MACjB,ezF/KkB,EyFgLnB;IAlMb;MAsMc,iBAAiB;MACjB,ezFrLsC,EyFsLvC;EAxMb;IA6MQ,oBzF3LwB;IyF4LxB,ezFpMO;IyFqMP,mBAAmB,EACpB;;AAhNP;EAqNM,iBAAiB;EACjB,mBAAmB;EACnB,kBAAkB;EAClB,iBAAiB,EAiBlB;EAzOL;IA2NU,mBAAmB;IACnB,kCAA0B;IAA1B,0BAA0B;IAC1B,yCAAiC;IAAjC,iCAAiC,EAOlC;IApOT;MA+NY,iBAAiB,EAClB;IAhOX;MAkOY,iBAAiB,EAClB;EAnOX;IAuOQ,gBAAgB,EACjB;;AAKP,qBAAqB;AAInB;ECjPA,qC1FkB8B;E0FjB9B,e1FiB8B;E0FhB9B,aAAa,EDiPZ;EC/OD;IACE,e1Fa4B;I0FZ5B,aAAa,EA6Bd;IA3BC;;;;;;;;;MASE,0BAAwB,EACzB;IAED;MACE,sB1FH0B,E0FgB3B;MAdD;QAII,0BAAwB,EACzB;MALH;QAQI,kD1FVwB,E0FWzB;MATH;QAYI,qCAAqC,EACtC;;ADgNL;ECjPA,sC1FkBkD;E0FjBlD,e1FiBkD;E0FhBlD,aAAa,EDiPZ;EC/OD;IACE,e1FagD;I0FZhD,aAAa,EA6Bd;IA3BC;;;;;;;;;MASE,0BAAwB,EACzB;IAED;MACE,sB1FH8C,E0FgB/C;MAdD;QAII,0BAAwB,EACzB;MALH;QAQI,mD1FV4C,E0FW7C;MATH;QAYI,qCAAqC,EACtC;;ADgNL;ECjPA,qC1FkBmE;E0FjBnE,e1FiBmE;E0FhBnE,aAAa,EDiPZ;EC/OD;IACE,e1FaiE;I0FZjE,aAAa,EA6Bd;IA3BC;;;;;;;;;MASE,0BAAwB,EACzB;IAED;MACE,sB1FH+D,E0FgBhE;MAdD;QAII,0BAAwB,EACzB;MALH;QAQI,kD1FV6D,E0FW9D;MATH;QAYI,qCAAqC,EACtC;;ADgNL;ECjPA,qC1FkBkF;E0FjBlF,e1FiBkF;E0FhBlF,aAAa,EDiPZ;EC/OD;IACE,e1FagF;I0FZhF,aAAa,EA6Bd;IA3BC;;;;;;;;;MASE,0BAAwB,EACzB;IAED;MACE,sB1FH8E,E0FgB/E;MAdD;QAII,0BAAwB,EACzB;MALH;QAQI,kD1FV4E,E0FW7E;MATH;QAYI,qCAAqC,EACtC;;ADgNL;ECjPA,oC1FkBoG;E0FjBpG,e1FiBoG;E0FhBpG,aAAa,EDiPZ;EC/OD;IACE,e1FakG;I0FZlG,aAAa,EA6Bd;IA3BC;;;;;;;;;MASE,0BAAwB,EACzB;IAED;MACE,sB1FHgG,E0FgBjG;MAdD;QAII,0BAAwB,EACzB;MALH;QAQI,iD1FV8F,E0FW/F;MATH;QAYI,qCAAqC,EACtC;;ADgNL;ECjPA,oC1FkBqH;E0FjBrH,e1FiBqH;E0FhBrH,aAAa,EDiPZ;EC/OD;IACE,e1FamH;I0FZnH,aAAa,EA6Bd;IA3BC;;;;;;;;;MASE,0BAAwB,EACzB;IAED;MACE,sB1FHiH,E0FgBlH;MAdD;QAII,0BAAwB,EACzB;MALH;QAQI,iD1FV+G,E0FWhH;MATH;QAYI,qCAAqC,EACtC;;ADgNL;ECjPA,sC1FkBqI;E0FjBrI,e1FiBqI;E0FhBrI,aAAa,EDiPZ;EC/OD;IACE,e1FamI;I0FZnI,aAAa,EA6Bd;IA3BC;;;;;;;;;MASE,0BAAwB,EACzB;IAED;MACE,sB1FHiI,E0FgBlI;MAdD;QAII,0BAAwB,EACzB;MALH;QAQI,mD1FV+H,E0FWhI;MATH;QAYI,qCAAqC,EACtC;;ADgNL;ECjPA,mC1FkBoJ;E0FjBpJ,e1FiBoJ;E0FhBpJ,aAAa,EDiPZ;EC/OD;IACE,e1FakJ;I0FZlJ,aAAa,EA6Bd;IA3BC;;;;;;;;;MASE,0BAAwB,EACzB;IAED;MACE,sB1FHgJ,E0FgBjJ;MAdD;QAII,0BAAwB,EACzB;MALH;QAQI,gD1FV8I,E0FW/I;MATH;QAYI,qCAAqC,EACtC;;AAKL;EACE,sB1FrB4B,E0FkC7B;EAXC;IACE,aAAa,EASd;IAPC;MACE,sB1F3BwB,E0FgCzB;MAND;QAII,e1F9BsB,E0F+BvB;;AAXP;EACE,sB1FrBgD,E0FkCjD;EAXC;IACE,aAAa,EASd;IAPC;MACE,sB1F3B4C,E0FgC7C;MAND;QAII,e1F9B0C,E0F+B3C;;AAXP;EACE,sB1FrBiE,E0FkClE;EAXC;IACE,aAAa,EASd;IAPC;MACE,sB1F3B6D,E0FgC9D;MAND;QAII,e1F9B2D,E0F+B5D;;AAXP;EACE,sB1FrBgF,E0FkCjF;EAXC;IACE,aAAa,EASd;IAPC;MACE,sB1F3B4E,E0FgC7E;MAND;QAII,e1F9B0E,E0F+B3E;;AAXP;EACE,sB1FrBkG,E0FkCnG;EAXC;IACE,aAAa,EASd;IAPC;MACE,sB1F3B8F,E0FgC/F;MAND;QAII,e1F9B4F,E0F+B7F;;AAXP;EACE,sB1FrBmH,E0FkCpH;EAXC;IACE,aAAa,EASd;IAPC;MACE,sB1F3B+G,E0FgChH;MAND;QAII,e1F9B6G,E0F+B9G;;AAXP;EACE,sB1FrBmI,E0FkCpI;EAXC;IACE,aAAa,EASd;IAPC;MACE,sB1F3B+H,E0FgChI;MAND;QAII,e1F9B6H,E0F+B9H;;AAXP;EACE,sB1FrBkJ,E0FkCnJ;EAXC;IACE,aAAa,EASd;IAPC;MACE,sB1F3B8I,E0FgC/I;MAND;QAII,e1F9B4I,E0F+B7I;;ACnDT,YAAY;AAEZ;EACE,uBAAuB;EACvB,gBAAgB;EAChB,qBAAqB;EACrB,eAAe;EACf,uBAAuB;EACvB,mC3F2BQ;E2F1BR,iBAAiB,EA2BlB;EAlCD;IAUI,sBAAsB;IACtB,gBAAgB;IAChB,iBAAiB;IACjB,WAAW;IACX,mBAAmB;IACnB,oBAAoB,EAMrB;IArBH;MAkBM,kBAAkB;MAClB,gBAAgB,EACjB;EApBL;IAwBI,qBAAqB,EACtB;EAzBH;IA4BI,gBAAgB,EACjB;EA7BH;IAgCI,uBAAuB,EACxB;;AAGH,oBAAoB;AAIlB;ECxCA,0B5FkB8B;E4FjB9B,e5FSa,E2FgCZ;;AAFD;ECxCA,0B5FkBkD;E4FjBlD,e5FSa,E2FgCZ;;AAFD;ECxCA,0B5FkBmE;E4FjBnE,e5FSa,E2FgCZ;;AAFD;ECxCA,0B5FkBkF;E4FjBlF,e5FSa,E2FgCZ;;AAFD;ECxCA,0B5FkBoG;E4FjBpG,e5FSa,E2FgCZ;;AAFD;ECxCA,0B5FkBqH;E4FjBrH,e5FSa,E2FgCZ;;AAFD;ECxCA,0B5FkBqI;E4FjBrI,e5FSa,E2FgCZ;;AAFD;ECxCA,0B5FkBoJ;E4FjBpJ,e5FSa,E2FgCZ;;AAGH,4BAA4B;AAI1B;ECxCA,oC5FS8B;E4FR9B,e5FQ8B,E2FiC7B;;AAFD;ECxCA,qC5FSkD;E4FRlD,e5FQkD,E2FiCjD;;AAFD;ECxCA,oC5FSmE;E4FRnE,e5FQmE,E2FiClE;;AAFD;ECxCA,oC5FSkF;E4FRlF,e5FQkF,E2FiCjF;;AAFD;ECxCA,mC5FSoG;E4FRpG,e5FQoG,E2FiCnG;;AAFD;ECxCA,mC5FSqH;E4FRrH,e5FQqH,E2FiCpH;;AAFD;ECxCA,qC5FSqI;E4FRrI,e5FQqI,E2FiCpI;;AAFD;ECxCA,kC5FSoJ;E4FRpJ,e5FQoJ,E2FiCnJ;;AAGH,6BAA6B;AAI3B;ECrDA,e5Fa8B;E4FZ9B,0B5FY8B,E2F0C7B;;AAFD;ECrDA,e5FakD;E4FZlD,0B5FYkD,E2F0CjD;;AAFD;ECrDA,e5FamE;E4FZnE,0B5FYmE,E2F0ClE;;AAFD;ECrDA,e5FakF;E4FZlF,0B5FYkF,E2F0CjF;;AAFD;ECrDA,e5FaoG;E4FZpG,0B5FYoG,E2F0CnG;;AAFD;ECrDA,e5FaqH;E4FZrH,0B5FYqH,E2F0CpH;;AAFD;ECrDA,e5FaqI;E4FZrI,0B5FYqI,E2F0CpI;;AAFD;ECrDA,e5FaoJ;E4FZpJ,0B5FYoJ,E2F0CnJ;;AE9DH,sBAAsB;AACtB;EACE,oB7FmC0B,E6F3B3B;EATD;IAII,mBAAmB;IACnB,sBAAsB;IACtB,uBAAuB;IACvB,iBAAiB,EAClB;;AAGD;ErDXA,exBmFW;EI9ET,0CpBc4B;EwCjB9B,sBxBiFW,E6EtEV;ErDTD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDCD;ErDXA,exBmFW;EI9ET,2CpBcgD;EwCjBlD,sBxBiFW,E6EtEV;ErDTD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDCD;ErDXA,exBmFW;EI9ET,0CpBciE;EwCjBnE,sBxBiFW,E6EtEV;ErDTD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDCD;ErDXA,exBmFW;EI9ET,0CpBcgF;EwCjBlF,sBxBiFW,E6EtEV;ErDTD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDCD;ErDXA,exBmFW;EI9ET,yCpBckG;EwCjBpG,sBxBiFW,E6EtEV;ErDTD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDCD;ErDXA,exBmFW;EI9ET,yCpBcmH;EwCjBrH,sBxBiFW,E6EtEV;ErDTD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDCD;ErDXA,exBmFW;EI9ET,2CpBcmI;EwCjBrI,sBxBiFW,E6EtEV;ErDTD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDCD;ErDXA,exBmFW;EI9ET,wCpBckJ;EwCjBpJ,sBxBiFW,E6EtEV;ErDTD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDMD;ErDhBA,exCWa;EoBNX,0BpBc4B;EwCjB9B,sBxCiB8B,E6FD7B;ErDdD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDMD;ErDhBA,exCWa;EoBNX,0BpBcgD;EwCjBlD,sBxCiBkD,E6FDjD;ErDdD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDMD;ErDhBA,exCWa;EoBNX,0BpBciE;EwCjBnE,sBxCiBmE,E6FDlE;ErDdD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDMD;ErDhBA,exCWa;EoBNX,0BpBcgF;EwCjBlF,sBxCiBkF,E6FDjF;ErDdD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDMD;ErDhBA,exCWa;EoBNX,0BpBckG;EwCjBpG,sBxCiBoG,E6FDnG;ErDdD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDMD;ErDhBA,exCWa;EoBNX,0BpBcmH;EwCjBrH,sBxCiBqH,E6FDpH;ErDdD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDMD;ErDhBA,exCWa;EoBNX,0BpBcmI;EwCjBrI,sBxCiBqI,E6FDpI;ErDdD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AqDMD;ErDhBA,exCWa;EoBNX,0BpBckJ;EwCjBpJ,sBxCiBoJ,E6FDnJ;ErDdD;IACE,0BAAwB,EACzB;EAED;IACE,eAAa,EACd;;AsDXH,wBAAwB;AAExB;EACE,mBAAmB;EACnB,YAAY,EAwBb;EA1BD;IAII,mBAAmB,EACpB;EALH;IAQM,mBAAmB,EAIpB;IAZL;MAUQ,+BAA+B,EAChC;EAXP;IAeI,iBAAiB,EAClB;EAhBH;IAkBI,YAAY,EACb;EAnBH;IAqBI,aAAa,EACd;EAtBH;IAwBI,aAAa,EACd;;AC3BH,aAAa;AAEb;EACE,oB/F+GqB;E+F9GrB,eAAe;EACf,mC/F8BQ,E+F4DT;EA7FD;IAKI,wBAAwB;IACxB,mBAAmB,EACpB;EAPH;IAUM,gBAAgB;IAChB,iBAAiB;IACjB,uBAAuB,EACxB;EAbL;IAeM,kBAAkB,EACnB;EAhBL;IAkBM,iBAAiB,EAClB;EAnBL;IAsBI,oBAAoB,EACrB;EAvBH;IAyBI,YAAY;IACZ,aAAa;IACb,cAAc;IACd,mBAAmB;IACnB,uBAAuB,EAKxB;IAlCH;MA+BM,aAAa;MACb,qBAAqB,EACtB;EAjCL;IAoCI,iB/FkEsB,E+FjEvB;EArCH;IAwCM,gBAAgB,EACjB;EAzCL;IA4CI,c/F4EqB,E+FvEtB;IAjDH;MA8CM,gBAAgB;MAChB,gB/F0EqB,E+FzEtB;EAhDL;IAmDI,oB/F+DsB,E+F9DvB;EApDH;IAsDI,oB/F6DsB,E+F5DvB;EAvDH;IAyDI,wB/FkDqB;I+FjDrB,oB/FuDsB,E+FtDvB;EA3DH;IA6DI,wBAAwB,EACzB;EA9DH;IAoEI,e/F1DW,E+F2DZ;EArEH;IAuEI,sBAAoB;IACpB,eAAa,EACd;EAzEH;IA2EI,0B/FlEQ,E+FmET;EA5EH;IA8EI,2C/F5DgD;I+F6DhD,0B/FtEQ,E+F0ET;IAnFH;MAiFM,0B/FxEM,E+FyEP;EAlFL;IAqFI,0B/F3EW;I+F4EX,0B/F7EQ;I+F8ER,sBAAqB,EAKtB;IA5FH;MAyFM,0B/FhFM;M+FiFN,sBAAqB,EACtB;;AAIL;EACE,0B/FvEoB;E+FwEpB,yB/FmB0B,E+Fc3B;EAnCD;IAII,iBAAiB;IACjB,oBAAoB;IACpB,kBAAkB,EA4BnB;IAlCH;MAQM,mBAAmB,EACpB;IATL;MAWM,sBAAoB,EACrB;IAZL;MAcM,sBAAoB,EACrB;IAfL;MAiBM,sBAAoB,EACrB;IAlBL;MAoBM,sBAAoB,EACrB;IArBL;MAuBM,sBAAoB,EACrB;IAxBL;MA0BM,sBAAoB,EACrB;IA3BL;MA6BM,sBAAoB,EACrB;IA9BL;MAgCM,sBAAoB,EACrB;;AAYL,kBAAkB;AAIhB;ECjJD,oBhG8BgC;EgG7BhC,ehGUc,E+FwIZ;EAFD;IC7IA,oBAAkB,EAClB;ED4IA;ICzIA,iBAAiB;IACjB,ehGqB+B,EgGhB/B;IDmIA;MCrIC,eAAa,EACb;;ADoID;ECjJD,oBhG8BmD;EgG7BnD,ehGUc,E+FwIZ;EAFD;IC7IA,oBAAkB,EAClB;ED4IA;ICzIA,iBAAiB;IACjB,ehGqBkD,EgGhBlD;IDmIA;MCrIC,eAAa,EACb;;ADoID;ECjJD,oBhG8BoE;EgG7BpE,ehGUc,E+FwIZ;EAFD;IC7IA,oBAAkB,EAClB;ED4IA;ICzIA,iBAAiB;IACjB,ehGqBmE,EgGhBnE;IDmIA;MCrIC,eAAa,EACb;;ADoID;ECjJD,oBhG8BuF;EgG7BvF,ehGUc,E+FwIZ;EAFD;IC7IA,oBAAkB,EAClB;ED4IA;ICzIA,iBAAiB;IACjB,ehGqBsF,EgGhBtF;IDmIA;MCrIC,eAAa,EACb;;ADoID;ECjJD,oBhG8B2G;EgG7B3G,ehGUc,E+FwIZ;EAFD;IC7IA,oBAAkB,EAClB;ED4IA;ICzIA,iBAAiB;IACjB,ehGqB0G,EgGhB1G;IDmIA;MCrIC,eAAa,EACb;;ADoID;ECjJD,oBhG8B6H;EgG7B7H,ehGUc,E+FwIZ;EAFD;IC7IA,oBAAkB,EAClB;ED4IA;ICzIA,iBAAiB;IACjB,ehGqB4H,EgGhB5H;IDmIA;MCrIC,eAAa,EACb;;ADoID;ECjJD,oBhG8B8I;EgG7B9I,ehGUc,E+FwIZ;EAFD;IC7IA,oBAAkB,EAClB;ED4IA;ICzIA,iBAAiB;IACjB,ehGqB6I,EgGhB7I;IDmIA;MCrIC,eAAa,EACb;;ADoID;ECjJD,oBhG8BgK;EgG7BhK,ehGUc,E+FwIZ;EAFD;IC7IA,oBAAkB,EAClB;ED4IA;ICzIA,iBAAiB;IACjB,ehGqB+J,EgGhB/J;IDmIA;MCrIC,eAAa,EACb;;ADoID;ECjJD,oBhG8BmL;EgG7BnL,ehGUc,E+FwIZ;EAFD;IC7IA,oBAAkB,EAClB;ED4IA;ICzIA,iBAAiB;IACjB,ehGqBkL,EgGhBlL;IDmIA;MCrIC,eAAa,EACb;;ADoID;ECjJD,oBhG8BoM;EgG7BpM,ehGUc,E+FwIZ;EAFD;IC7IA,oBAAkB,EAClB;ED4IA;ICzIA,iBAAiB;IACjB,ehGqBmM,EgGhBnM;IDmIA;MCrIC,eAAa,EACb;;ADyIH,kBAAkB;AAIhB;ECxID,wBAAwB;EACxB,sBhGWgC;EgGVhC,ehGUgC,E+F8H9B;EAFD;ICnIA,oChGO+B,EgGN/B;;ADkIA;ECxID,wBAAwB;EACxB,sBhGWmD;EgGVnD,ehGUmD,E+F8HjD;EAFD;ICnIA,qChGOkD,EgGNlD;;ADkIA;ECxID,wBAAwB;EACxB,sBhGWoE;EgGVpE,ehGUoE,E+F8HlE;EAFD;ICnIA,mChGOmE,EgGNnE;;ADkIA;ECxID,wBAAwB;EACxB,sBhGWuF;EgGVvF,ehGUuF,E+F8HrF;EAFD;ICnIA,mChGOsF,EgGNtF;;ADkIA;ECxID,wBAAwB;EACxB,sBhGW2G;EgGV3G,ehGU2G,E+F8HzG;EAFD;ICnIA,mChGO0G,EgGN1G;;ADkIA;ECxID,wBAAwB;EACxB,sBhGW6H;EgGV7H,ehGU6H,E+F8H3H;EAFD;ICnIA,mChGO4H,EgGN5H;;ADkIA;ECxID,wBAAwB;EACxB,sBhGW8I;EgGV9I,ehGU8I,E+F8H5I;EAFD;ICnIA,kChGO6I,EgGN7I;;ADkIA;ECxID,wBAAwB;EACxB,sBhGWgK;EgGVhK,ehGUgK,E+F8H9J;EAFD;ICnIA,oChGO+J,EgGN/J;;ADkIA;ECxID,wBAAwB;EACxB,sBhGWmL;EgGVnL,ehGUmL,E+F8HjL;EAFD;ICnIA,oChGOkL,EgGNlL;;ADkIA;ECxID,wBAAwB;EACxB,sBhGWoM;EgGVpM,ehGUoM,E+F8HlM;EAFD;ICnIA,kChGOmM,EgGNnM;;ADuIF,qBAAqB;AAInB;ECvID,ehGT+B;EgGU/B,0ChGV+B;EgGW/B,uBAAuB;EACvB,oChGZ+B,E+FkJ7B;EAFD;ICjIA,ehGvBa;IgGwBb,0BhGhB8B;IgGiB9B,sBhGjB8B,EGRR;E4FwJtB;IC1HA,sDhGtB8B;IgGsB9B,8ChGtB8B,EgGuB9B;EDyHA;ICrHA,ehG3B8B;IgG4B9B,8BAA8B,EAC9B;EDmHA;;IC9GA,ehG1Ca;IgG2Cb,0BhGnC8B;IgGoC9B,sBhGpC8B,EgGqC9B;;AD2GA;ECvID,ehGTmD;EgGUnD,2ChGVmD;EgGWnD,uBAAuB;EACvB,qChGZmD,E+FkJjD;EAFD;ICjIA,ehGvBa;IgGwBb,0BhGhBkD;IgGiBlD,sBhGjBkD,EGR5B;E4FwJtB;IC1HA,uDhGtBkD;IgGsBlD,+ChGtBkD,EgGuBlD;EDyHA;ICrHA,ehG3BkD;IgG4BlD,8BAA8B,EAC9B;EDmHA;;IC9GA,ehG1Ca;IgG2Cb,0BhGnCkD;IgGoClD,sBhGpCkD,EgGqClD;;AD2GA;ECvID,ehGToE;EgGUpE,0ChGVoE;EgGWpE,uBAAuB;EACvB,oChGZoE,E+FkJlE;EAFD;ICjIA,ehGvBa;IgGwBb,0BhGhBmE;IgGiBnE,sBhGjBmE,EGR7C;E4FwJtB;IC1HA,sDhGtBmE;IgGsBnE,8ChGtBmE,EgGuBnE;EDyHA;ICrHA,ehG3BmE;IgG4BnE,8BAA8B,EAC9B;EDmHA;;IC9GA,ehG1Ca;IgG2Cb,0BhGnCmE;IgGoCnE,sBhGpCmE,EgGqCnE;;AD2GA;ECvID,ehGTmF;EgGUnF,0ChGVmF;EgGWnF,uBAAuB;EACvB,oChGZmF,E+FkJjF;EAFD;ICjIA,ehGvBa;IgGwBb,0BhGhBkF;IgGiBlF,sBhGjBkF,EGR5D;E4FwJtB;IC1HA,sDhGtBkF;IgGsBlF,8ChGtBkF,EgGuBlF;EDyHA;ICrHA,ehG3BkF;IgG4BlF,8BAA8B,EAC9B;EDmHA;;IC9GA,ehG1Ca;IgG2Cb,0BhGnCkF;IgGoClF,sBhGpCkF,EgGqClF;;AD2GA;ECvID,ehGTqG;EgGUrG,yChGVqG;EgGWrG,uBAAuB;EACvB,mChGZqG,E+FkJnG;EAFD;ICjIA,ehGvBa;IgGwBb,0BhGhBoG;IgGiBpG,sBhGjBoG,EGR9E;E4FwJtB;IC1HA,qDhGtBoG;IgGsBpG,6ChGtBoG,EgGuBpG;EDyHA;ICrHA,ehG3BoG;IgG4BpG,8BAA8B,EAC9B;EDmHA;;IC9GA,ehG1Ca;IgG2Cb,0BhGnCoG;IgGoCpG,sBhGpCoG,EgGqCpG;;AD2GA;ECvID,ehGTsH;EgGUtH,yChGVsH;EgGWtH,uBAAuB;EACvB,mChGZsH,E+FkJpH;EAFD;ICjIA,ehGvBa;IgGwBb,0BhGhBqH;IgGiBrH,sBhGjBqH,EGR/F;E4FwJtB;IC1HA,qDhGtBqH;IgGsBrH,6ChGtBqH,EgGuBrH;EDyHA;ICrHA,ehG3BqH;IgG4BrH,8BAA8B,EAC9B;EDmHA;;IC9GA,ehG1Ca;IgG2Cb,0BhGnCqH;IgGoCrH,sBhGpCqH,EgGqCrH;;AD2GA;ECvID,ehGTsI;EgGUtI,2ChGVsI;EgGWtI,uBAAuB;EACvB,qChGZsI,E+FkJpI;EAFD;ICjIA,ehGvBa;IgGwBb,0BhGhBqI;IgGiBrI,sBhGjBqI,EGR/G;E4FwJtB;IC1HA,uDhGtBqI;IgGsBrI,+ChGtBqI,EgGuBrI;EDyHA;ICrHA,ehG3BqI;IgG4BrI,8BAA8B,EAC9B;EDmHA;;IC9GA,ehG1Ca;IgG2Cb,0BhGnCqI;IgGoCrI,sBhGpCqI,EgGqCrI;;AD2GA;ECvID,ehGTqJ;EgGUrJ,wChGVqJ;EgGWrJ,uBAAuB;EACvB,kChGZqJ,E+FkJnJ;EAFD;ICjIA,ehGvBa;IgGwBb,0BhGhBoJ;IgGiBpJ,sBhGjBoJ,EGR9H;E4FwJtB;IC1HA,oDhGtBoJ;IgGsBpJ,4ChGtBoJ,EgGuBpJ;EDyHA;ICrHA,ehG3BoJ;IgG4BpJ,8BAA8B,EAC9B;EDmHA;;IC9GA,ehG1Ca;IgG2Cb,0BhGnCoJ;IgGoCpJ,sBhGpCoJ,EgGqCpJ;;ADgHF,8BAA8B;AAI5B;EChHD,ehGzC+B;EgG0C/B,uBAAuB;EACvB,wBAAwB;EACxB,sChG5C+B,E+F2J7B;EAFD;IC1GA,ehG/C8B;IgGgD9B,0ChGhD8B;IgGiD9B,sChGjD8B,EGRR;E4FiKtB;ICnGA,sDhGtD8B;IgGsD9B,8ChGtD8B,EgGuD9B;EDkGA;IC9FA,ehG3D8B;IgG4D9B,8BAA8B,EAC9B;ED4FA;;ICvFA,ehG1Ea;IgG2Eb,sBhGnE8B,EgGoE9B;;ADqFA;EChHD,ehGzCmD;EgG0CnD,uBAAuB;EACvB,wBAAwB;EACxB,uChG5CmD,E+F2JjD;EAFD;IC1GA,ehG/CkD;IgGgDlD,2ChGhDkD;IgGiDlD,uChGjDkD,EGR5B;E4FiKtB;ICnGA,uDhGtDkD;IgGsDlD,+ChGtDkD,EgGuDlD;EDkGA;IC9FA,ehG3DkD;IgG4DlD,8BAA8B,EAC9B;ED4FA;;ICvFA,ehG1Ea;IgG2Eb,sBhGnEkD,EgGoElD;;ADqFA;EChHD,ehGzCoE;EgG0CpE,uBAAuB;EACvB,wBAAwB;EACxB,sChG5CoE,E+F2JlE;EAFD;IC1GA,ehG/CmE;IgGgDnE,0ChGhDmE;IgGiDnE,sChGjDmE,EGR7C;E4FiKtB;ICnGA,sDhGtDmE;IgGsDnE,8ChGtDmE,EgGuDnE;EDkGA;IC9FA,ehG3DmE;IgG4DnE,8BAA8B,EAC9B;ED4FA;;ICvFA,ehG1Ea;IgG2Eb,sBhGnEmE,EgGoEnE;;ADqFA;EChHD,ehGzCmF;EgG0CnF,uBAAuB;EACvB,wBAAwB;EACxB,sChG5CmF,E+F2JjF;EAFD;IC1GA,ehG/CkF;IgGgDlF,0ChGhDkF;IgGiDlF,sChGjDkF,EGR5D;E4FiKtB;ICnGA,sDhGtDkF;IgGsDlF,8ChGtDkF,EgGuDlF;EDkGA;IC9FA,ehG3DkF;IgG4DlF,8BAA8B,EAC9B;ED4FA;;ICvFA,ehG1Ea;IgG2Eb,sBhGnEkF,EgGoElF;;ADqFA;EChHD,ehGzCqG;EgG0CrG,uBAAuB;EACvB,wBAAwB;EACxB,qChG5CqG,E+F2JnG;EAFD;IC1GA,ehG/CoG;IgGgDpG,yChGhDoG;IgGiDpG,qChGjDoG,EGR9E;E4FiKtB;ICnGA,qDhGtDoG;IgGsDpG,6ChGtDoG,EgGuDpG;EDkGA;IC9FA,ehG3DoG;IgG4DpG,8BAA8B,EAC9B;ED4FA;;ICvFA,ehG1Ea;IgG2Eb,sBhGnEoG,EgGoEpG;;ADqFA;EChHD,ehGzCsH;EgG0CtH,uBAAuB;EACvB,wBAAwB;EACxB,qChG5CsH,E+F2JpH;EAFD;IC1GA,ehG/CqH;IgGgDrH,yChGhDqH;IgGiDrH,qChGjDqH,EGR/F;E4FiKtB;ICnGA,qDhGtDqH;IgGsDrH,6ChGtDqH,EgGuDrH;EDkGA;IC9FA,ehG3DqH;IgG4DrH,8BAA8B,EAC9B;ED4FA;;ICvFA,ehG1Ea;IgG2Eb,sBhGnEqH,EgGoErH;;ADqFA;EChHD,ehGzCsI;EgG0CtI,uBAAuB;EACvB,wBAAwB;EACxB,uChG5CsI,E+F2JpI;EAFD;IC1GA,ehG/CqI;IgGgDrI,2ChGhDqI;IgGiDrI,uChGjDqI,EGR/G;E4FiKtB;ICnGA,uDhGtDqI;IgGsDrI,+ChGtDqI,EgGuDrI;EDkGA;IC9FA,ehG3DqI;IgG4DrI,8BAA8B,EAC9B;ED4FA;;ICvFA,ehG1Ea;IgG2Eb,sBhGnEqI,EgGoErI;;ADqFA;EChHD,ehGzCqJ;EgG0CrJ,uBAAuB;EACvB,wBAAwB;EACxB,oChG5CqJ,E+F2JnJ;EAFD;IC1GA,ehG/CoJ;IgGgDpJ,wChGhDoJ;IgGiDpJ,oChGjDoJ,EGR9H;E4FiKtB;ICnGA,oDhGtDoJ;IgGsDpJ,4ChGtDoJ,EgGuDpJ;EDkGA;IC9FA,ehG3DoJ;IgG4DpJ,8BAA8B,EAC9B;ED4FA;;ICvFA,ehG1Ea;IgG2Eb,sBhGnEoJ,EgGoEpJ;;ACxFF,iBAAiB;AAEjB;EAEI,oBjGiCwB,EiG/BzB;;AAJH;EAMI,ajG4K2B;EiG3K3B,sBjG+KwB,EiG5HzB;EA1DH;IASM,oBjG0BsB;IiGzBtB,oBjG4KsB;IiG3KtB,sBjGyKiC;IiGxKjC,YjGHM;IiGIN,sBAAsB;IACtB,oBAAoB,EA2CrB;IAzDL;MAgBQ,wBAAwB,EACzB;IAjBP;MAmBQ,YAAY,EACb;IApBP;MAsBQ,mBAAmB;MACnB,eAAe;MACf,0BjG8JoB;MiG7JpB,sBAAsB;MACtB,oBAAoB,EAyBrB;MAnDP;QA6BU,mBAAmB;QACnB,UAAU;QACV,SAAS;QACT,UAAU;QACV,YAAY;QACZ,mCAAmC;QACnC,sCAAsC,EACvC;MApCT;QAsCU,aAAa;QACb,WAAW;QACX,2BjG8IkB;QiG7IlB,yBAAyB;QACzB,wBAAwB,EACzB;MA3CT;QA6CU,mCAAmC;QACnC,sCAAsC;QACtC,gCjGrCK;QiGsCL,UAAU;QACV,aAAa,EACd;IAlDT;MAqDQ,sBAAsB;MACtB,oBAAoB,EACrB;;AAvDP;EAiEI,aAAa,EAWd;EA5EH;IAmEM,ejGzDS,EiGiEV;IA3EL;MAqEQ,eAAe,EAChB;IAtEP;;;;;;;MAyEQ,eAAe,EAChB;;AAKP,wBAAwB;AC/EtB;EACE,oBAAmB;EACnB,sBlGgB4B,EkGsB7B;EApCC;IACE,elGa0B,EkGJ3B;IAVD;MAII,eAAe,EAChB;IAED;MACE,eAAe,EAChB;EAbL;IAiBI,oBlGC0B,EkGqB3B;IApBC;MACE,oBAAmB,EAkBpB;MAhBC;QACE,elGLsB;QkGMtB,aAAa,EAKd;QAPD;UAKI,2BAA0B,EAC3B;MAGH;QACE,elGdsB,EkGevB;MAdH;QAiBI,wBAAwB,EACzB;;AArCP;EACE,kBAAmB;EACnB,sBlGgBgD,EkGsBjD;EApCC;IACE,elGa8C,EkGJ/C;IAVD;MAII,eAAe,EAChB;IAED;MACE,eAAe,EAChB;EAbL;IAiBI,oBlGC8C,EkGqB/C;IApBC;MACE,kBAAmB,EAkBpB;MAhBC;QACE,elGL0C;QkGM1C,aAAa,EAKd;QAPD;UAKI,yBAA0B,EAC3B;MAGH;QACE,elGd0C,EkGe3C;MAdH;QAiBI,wBAAwB,EACzB;;AArCP;EACE,oBAAmB;EACnB,sBlGgBiE,EkGsBlE;EApCC;IACE,elGa+D,EkGJhE;IAVD;MAII,eAAe,EAChB;IAED;MACE,eAAe,EAChB;EAbL;IAiBI,oBlGC+D,EkGqBhE;IApBC;MACE,oBAAmB,EAkBpB;MAhBC;QACE,elGL2D;QkGM3D,aAAa,EAKd;QAPD;UAKI,2BAA0B,EAC3B;MAGH;QACE,elGd2D,EkGe5D;MAdH;QAiBI,wBAAwB,EACzB;;AArCP;EACE,oBAAmB;EACnB,sBlGgBgF,EkGsBjF;EApCC;IACE,elGa8E,EkGJ/E;IAVD;MAII,eAAe,EAChB;IAED;MACE,eAAe,EAChB;EAbL;IAiBI,oBlGC8E,EkGqB/E;IApBC;MACE,oBAAmB,EAkBpB;MAhBC;QACE,elGL0E;QkGM1E,aAAa,EAKd;QAPD;UAKI,2BAA0B,EAC3B;MAGH;QACE,elGd0E,EkGe3E;MAdH;QAiBI,wBAAwB,EACzB;;AArCP;EACE,oBAAmB;EACnB,sBlGgBkG,EkGsBnG;EApCC;IACE,elGagG,EkGJjG;IAVD;MAII,eAAe,EAChB;IAED;MACE,eAAe,EAChB;EAbL;IAiBI,oBlGCgG,EkGqBjG;IApBC;MACE,oBAAmB,EAkBpB;MAhBC;QACE,elGL4F;QkGM5F,aAAa,EAKd;QAPD;UAKI,2BAA0B,EAC3B;MAGH;QACE,elGd4F,EkGe7F;MAdH;QAiBI,wBAAwB,EACzB;;AArCP;EACE,oBAAmB;EACnB,sBlGgBmH,EkGsBpH;EApCC;IACE,elGaiH,EkGJlH;IAVD;MAII,eAAe,EAChB;IAED;MACE,eAAe,EAChB;EAbL;IAiBI,oBlGCiH,EkGqBlH;IApBC;MACE,oBAAmB,EAkBpB;MAhBC;QACE,elGL6G;QkGM7G,aAAa,EAKd;QAPD;UAKI,2BAA0B,EAC3B;MAGH;QACE,elGd6G,EkGe9G;MAdH;QAiBI,wBAAwB,EACzB;;AArCP;EACE,kBAAmB;EACnB,sBlGgBmI,EkGsBpI;EApCC;IACE,elGaiI,EkGJlI;IAVD;MAII,eAAe,EAChB;IAED;MACE,eAAe,EAChB;EAbL;IAiBI,oBlGCiI,EkGqBlI;IApBC;MACE,kBAAmB,EAkBpB;MAhBC;QACE,elGL6H;QkGM7H,aAAa,EAKd;QAPD;UAKI,yBAA0B,EAC3B;MAGH;QACE,elGd6H,EkGe9H;MAdH;QAiBI,wBAAwB,EACzB;;AArCP;EACE,oBAAmB;EACnB,sBlGgBkJ,EkGsBnJ;EApCC;IACE,elGagJ,EkGJjJ;IAVD;MAII,eAAe,EAChB;IAED;MACE,eAAe,EAChB;EAbL;IAiBI,oBlGCgJ,EkGqBjJ;IApBC;MACE,oBAAmB,EAkBpB;MAhBC;QACE,elGL4I;QkGM5I,aAAa,EAKd;QAPD;UAKI,2BAA0B,EAC3B;MAGH;QACE,elGd4I,EkGe7I;MAdH;QAiBI,wBAAwB,EACzB;;ACvCT,WAAW;AAEX;EACE,aAAa;EACb,4DAAiC;EAAjC,oDAAiC;EACjC,mBAAmB,EAqFpB;EAxFD;IAMI,oBnGIW;ImGHX,yBnGwJoB;ImGvJpB,iCnGiBkB,EmGKnB;IA9BH;;;;;;;;MAkBM,mBAAmB,EACpB;IAnBL;MAsBM,sBnGyIkB;MmGxIlB,aAAa,EAMd;MA7BL;;QA2BQ,enGSY,EmGRb;EA5BP;IAiCI,yBnG8HoB,EmGrHrB;IA1CH;MAoCM,WAAW,EACZ;IArCL;MAwCM,eAAe,EAChB;EAzCL;IA6CI,0BnG3BiE,EmG4BlE;EA9CH;IAiDI,0BnG/B4B,EmGgC7B;EAlDH;IAqDI,0BnGnCkG,EmGoCnG;EAtDH;IAyDI,0BnGvCmH,EmGwCpH;EA1DH;IA6DI,mBAAmB,EACpB;EA9DH;IAiEI,oBAAoB;IACpB,sBAAsB,EACvB;EAnEH;IAsEI,enG5DW;ImG6DX,mBAAmB,EACpB;EAxEH;IA2EI,2GAA2B;IAA3B,iEAA2B;IAC3B,YAAY,EACb;EA7EH;IAgFI,sFAA2B;IAA3B,wDAA2B;IAC3B,YAAY,EACb;EAlFH;IAqFI,sFAA2B;IAA3B,wDAA2B;IAC3B,YAAY,EACb;;AAKD;EC5FA,oCpGkB8B;EoGjB9B,0BpFiFW;EoFhFX,epFgFW,EmFYV;;AAFD;EC5FA,qCpGkBkD;EoGjBlD,0BpFiFW;EoFhFX,epFgFW,EmFYV;;AAFD;EC5FA,oCpGkBmE;EoGjBnE,0BpFiFW;EoFhFX,epFgFW,EmFYV;;AAFD;EC5FA,oCpGkBkF;EoGjBlF,0BpFiFW;EoFhFX,epFgFW,EmFYV;;AAFD;EC5FA,mCpGkBoG;EoGjBpG,0BpFiFW;EoFhFX,epFgFW,EmFYV;;AAFD;EC5FA,mCpGkBqH;EoGjBrH,0BpFiFW;EoFhFX,epFgFW,EmFYV;;AAFD;EC5FA,qCpGkBqI;EoGjBrI,0BpFiFW;EoFhFX,epFgFW,EmFYV;;AAFD;EC5FA,kCpGkBoJ;EoGjBpJ,0BpFiFW;EoFhFX,epFgFW,EmFYV;;AEhGH,2BAA2B;AAE3B;;EAEE,mBAAmB;EACnB,eAAe;EACf,iBAAiB;EACjB,oBAAoB,EA0BrB;EA/BD;;IAOI,eAAe;IACf,mBAAmB;IAKnB,iBAAiB,EAiBlB;IAxBD;;MAII,gBAAgB;MAChB,oBAAoB,EACrB;IAZL;;MAeM,mBAAmB;MACnB,mBAAmB;MACnB,kBAAkB;MAClB,OAAO;MACP,QAAQ;MAKR,WAAW;MACX,gBAAgB;MAChB,WAAW;MACX,yBAAa;MACb,cAAc,EACf;MAfD;;QAOI,WAAW;QACX,SAAS,EACV;;AAUP;EAEI,oBrGAwB;EqGCxB,iBAAiB;EACjB,mBAAmB,EAoFpB;EAxFH;IASY,0BrGhCG,EqGiCJ;EAVX;IAYY,YAAY;IACZ,WAAW;IACX,kBAAkB;IAClB,2BAAa;IACb,4BAAwB;IAGxB,oBAAgB,EACjB;EApBX;IA0BY,sBrGlCU,EqGmCX;EA3BX;IAgCc,erGxCQ,EqGyCT;EAjCb;IAwCQ,mBAAmB;IACnB,YAAY;IACZ,SAAS;IACT,oCAAqB;IAArB,4BAAqB;IACrB,YAAY;IACZ,aAAa;IACb,mBAAmB;IACnB,QAAQ;IAKR,0BrG5Dc;IqG6Dd,wBAAwB;IAExB,gBAAgB;IAChB,wBAAwB;IACxB,mCAAmC;IACnC,2BAA2B,EAC5B;IArBH;MAWM,WAAW;MACX,SAAS,EACV;EAnDT;IA6DQ,wBAAwB;IAExB,gBAAgB;IAChB,wBAAwB;IACxB,mCAAmC;IACnC,2BAA2B;IAC3B,mCAAmC;IACnC,WAAW;IACX,yBAAa;IACb,4BAAwB;IAGxB,oBAAgB;IAChB,iBAAiB;IACjB,mBAAmB;IACnB,qBAAqB;IACrB,kBAAkB;IAClB,QAAQ;IAKR,SAAS;IACT,oCAAoB;IAApB,4BAAoB;IACpB,erGpG4E,EqGqG7E;IAhDH;MA0CM,WAAW;MACX,SAAS,EACV;;AAlFT;EA+Fc,0BrG9GuD;EqG+GvD,aAAa,EACd;;AAjGb;EAuGc,erG9HC,EqG+HF;;AAxGb;EA0Gc,sBrGlHQ,EqGmHT;;AA3Gb;EAgHgB,oBrG9H6O,EqG+H9O;;AAjHf;EAwHU,0BrGhIY,EqGiIb;;AAzHT;EA2HU,erGlJK,EqGmJN;;AAMT;EAKU,mBAAmB;EACnB,YAAY;EACZ,SAAS;EACT,oCAAqB;EAArB,4BAAqB;EACrB,QAAQ;EAKR,0BrGxJY;EqGyJZ,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,wBAAwB;EAExB,gBAAgB;EAChB,wBAAwB;EACxB,mCAAmC;EACnC,2BAA2B,EAC5B;EArBF;IAQK,WAAW;IACX,SAAS,EACV;;AAbX;EA0BU,YAAY;EACZ,WAAW;EACX,YAAY;EACZ,oBrG9K6G;EqG+K7G,mBAAmB;EACnB,SAAS;EACT,oCAAqB;EAArB,4BAAqB;EACrB,UAAU;EAKV,wBAAgB;EAAhB,gBAAgB;EAChB,kCAA0B;EAA1B,0BAA0B;EAC1B,WAAW;EACX,yBAAa;EACb,4BAAgB;EAAhB,oBAAgB;EAChB,mBAAmB,EACpB;EAzCF;IAgCK,WAAW;IACX,WAAW,EACZ;;AArCX;EAiDY,0BrG1MG;EqG2MH,0BrG5LU;EqG6LV,SAAS;EACT,oCAAqB;EAArB,4BAAqB,EACtB;;AArDX;EAuDY,WAAW;EACX,iBAAiB;EACjB,2BAAa;EACb,4BAAgB;EAAhB,oBAAgB,EACjB;;AA3DX;EAiEY,sBrG3MU,EqG4MX;;AAlEX;EAuEc,0BrGhOC;EqGiOD,sBrGlNQ,EqGmNT;;AAzEb;EA2Ec,0BrGrNQ,EqGsNT;;AA5Eb;EAwFc,oBrGzOuD;EqG0OvD,sBrG1OuD;EqG2OvD,SAAS;EACT,oCAAqB;EAArB,4BAAqB,EACtB;;AA5Fb;EA8Fc,YAAY;EACZ,aAAa;EACb,SAAS;EACT,oCAAqB;EAArB,4BAAqB;EACrB,WAAW;EAKX,erGhQC;EqGiQD,iBAAiB;EACjB,iBAAiB;EACjB,mCAAmC;EACnC,mBAAmB;EACnB,kBAAkB,EACnB;EAvBF;IAcK,WAAW;IACX,YAAY,EACb;;AC3Qf,eAAe;AAEf;EAGM,uBAAuB;EACvB,iBAAiB,EAClB;;AALL;EAQM,aAAa;EACb,cAAc;EACd,yBAAiB;EAAjB,iBAAiB,EAYlB;EAtBL;IAeQ,cAAc;IACd,yBAAiB;IAAjB,iBAAiB,EAClB;EAjBP;IAoBQ,cAAc,EACf;;AAKP;EACE,oBtGQ0B,EsGD3B;EARD;IAKM,oBAAoB,EACrB;;AClCL,WAAW;AAEX;;;EAEE,oBvGQa;EuGPb,evG2H+B;EuG1H/B,YAAY;EACZ,aAAa,EAKd;EAVD;;IAOI,wBAAwB;IACxB,sBvGiBkB,EuGhBnB;;AAGH;;;;EACE,0BvGYoB;EuGXpB,mCvGmBQ;EuGlBR,mBvGgHsB;EuG/GtB,wBAAwB;EACxB,kBAAkB;EAClB,iBAAiB,EAOlB;EAbD;;;;IAQI,wBAAuC,EACxC;EATH;;;;IAWI,yBAAuC,EACxC;;AAGH;;;;EAEI,2BAA2B,EAC5B;;AAGH;EAEI,oBvGAwB;EuGCxB,eAAe;EACf,oBAAoB,EACrB;;AALH;;;;;EAQM,sBvGvBiH,EuGwBlH;;AATL;EAYI,mBAAmB;EACnB,mBAAmB,EACpB;;AAdH;EAgBI,wBAAwB,EACzB;;ACpDH;EACE,mBAAmB;EACnB,gBAAgB;EAChB,gBAAgB;EAChB,eAAe;EACf,eAAe;EACf,iBAAiB;EACjB,mBAAmB,EAiBpB;EAxBD;IASI,eAAe;IACf,mBAAmB;IACnB,OAAO;IACP,SAAS;IACT,QAAQ;IACR,UAAU;IACV,YAAY;IACZ,aAAa,EAOd;IAvBH;;MAoBQ,cAAc,EACf;;ACrBP,WAAW;AAEX;EACE,+BzGwBoB;EyGvBpB,iCzGuBoB,EyGLrB;EApBD;IAII,oBzGMW;IyGLX,8BzGoBkB;IyGnBlB,gCzGmBkB;IyGlBlB,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,0BAAoB;IAApB,uBAAoB;IAApB,oBAAoB;IACpB,cAAc;IACd,mCzGuBM;IyGtBN,oBzGwBwB,EyGhBzB;IAnBH;MAaM,sBAAsB;MACtB,gBAAgB;MAChB,YAAY;MACZ,iBAAiB;MACjB,ezGC0B,EyGA3B;;ACpBL,WAAW;AAEX;;;EAGE,mBAAmB;EACnB,oB1G+B0B,E0G3B3B;EARD;;;IAMI,iBAAiB,EAClB;;AAGH;;;EAGE,iBAAiB;EACjB,WAAW,EAUZ;EAdD;;;IAMI,qBAAqB,EAOtB;IAbH;;;MAQM,qCAAqC;MACrC,qBAAqB;MACrB,cAAc;MACd,qBAAqB,EACtB;;AAIL;EAGM,iBAAiB;EACjB,e1GZiH,E0GalH;;AAIL;EAGM,iBAAiB;EACjB,e1GrB+D,E0GsBhE;;AAIL;EAGM,iBAAiB;EACjB,e1G9BgG,E0G+BjG;;AAIL;EACE,mBAAmB;EACnB,iBAAiB;EACjB,mBAAmB;EACnB,sBAAsB,EA4CvB;EAhDD;IAMI,mBAAmB,EACpB;EAPH;IASI,mBAAmB;IACnB,eAAe;IACf,qBAAqB,EAoCtB;IA/CH;MAaM,YAAY;MACZ,mBAAmB;MACnB,oBAAoB;MACpB,YAAY;MACZ,aAAa;MACb,YAAY;MACZ,SAAS;MACT,0B1GvD0B;M0GwD1B,mBAAmB;MACnB,WAAW;MACX,oB1GlES,E0GmEV;IAxBL;MA0BM,YAAY;MACZ,0B1GvDgB;M0GwDhB,mBAAmB;MACnB,UAAU;MACV,YAAY;MACZ,aAAa,EACd;IAhCL;MAmCQ,YAAY;MACZ,YAAY,EACb;IArCP;MAwCM,kBAAkB,EAMnB;MA9CL;QA0CQ,YAAY;QACZ,OAAO;QACP,YAAY,EACb;;ACpGP,aAAa;ACAb;EACC,iBAAiB,EAgEjB;EAjED;IAIE,iBAAiB;IACjB,WAAW;IACX,YAAY;IACZ,mBAAmB;IACnB,eAAe;IACf,mBAAmB;IACnB,6B5GiBoB;I4GhBpB,iBAAiB;IACjB,WAAW,EAoDX;IAhEF;MAeG,mBAAmB;MACnB,aAAa;MACb,cAAc;MACd,mBAAmB,EA6CnB;MA/DH;QAqBI,UAAU;QACV,OAAO;QACP,oBAAoB;QACpB,oB5GJiE;Q4GKjE,mCAAmC;QACnC,2BAA2B;QAC3B,wFAAwF;QACxF,gFAAgF,EAChF;MA7BJ;QAgCI,SAAS;QACT,SAAS;QACT,kBAAkB;QAClB,oB5GfmH;Q4GgBnH,oCAAoC;QACpC,4BAA4B;QAC5B,wFAAwF;QACxF,gFAAgF,EAChF;MAxCJ;QA2CI,UAAU;QACV,UAAU;QACV,oBAAoB;QACpB,oB5G1BkG;Q4G2BlG,oCAAoC;QACpC,4BAA4B;QAC5B,wFAAwF;QACxF,gFAAgF,EAChF;MAnDJ;QAsDI,SAAS;QACT,QAAQ;QACR,kBAAkB;QAClB,oB5GrC4B;Q4GsC5B,mCAAmC;QACnC,2BAA2B;QAC3B,wFAAwF;QACxF,gFAAgF,EAChF;;AAIJ;EACC,QAAI;EAEJ;IACC,kCAAyB,EAAA,EAAA;;AAG3B;EACC,QAAI;EAEJ;IACC,kCAAyB;IACzB,0BAAiB,EAAA,EAAA;;AAGnB;EACC,MAAE;EAEF;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA,EAAA;;AAGhB;EACC,MAAE;EAEF;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA;EAGf;IACC,cAAc,EAAA,EAAA;;AC5KhB;EACC,mBAAmB,EACnB;;AAED;EACC,mBAAmB;EACnB,aAAa;EACb,YAAY;EACZ,UAAU;EACV,8BAA8B;EAC9B,UAAU;EACV,yCAAoB;EAApB,iCAAoB,EACpB;;AAED;EACC,mBAAmB;EACnB,aAAa;EACb,YAAY;EACZ,UAAU;EACV,UAAU;EACV,iCAAyB;EAAzB,yBAAyB;EACzB,uDAAuC;EAAvC,+CAAuC;EACvC,8BAA8B,EAC9B;;AAED;EACC,mBAAmB;EACnB,aAAa;EACb,YAAY;EACZ,UAAU;EACV,UAAU;EACV,iCAAyB;EAAzB,yBAAyB;EACzB,wDAAuC;EAAvC,gDAAuC;EACvC,8BAA8B;EAC9B,6CAAqC;EAArC,qCAAqC;EACrC,+BAAuB;EAAvB,uBAAuB,EACvB;;AAED;EACC,mBAAmB;EACnB,mBAAmB,EACnB;;AAED;EACC,YAAY;EACZ,aAAa;EACb,0CAAkC;EAAlC,kCAAkC;EAClC,6C7GpCW;E6GoCX,qC7GpCW;E6GqCX,0B7G5B+B,E6G6B/B;;AAED;EACC,OAAO;EACP,QAAQ,EACR;;AAED;EACC,OAAO;EACP,SAAS,EACT;;AAED;EACC,SAAS;EACT,UAAU,EACV;;AAED;EACC,UAAU;EACV,QAAQ,EACR;;AAED;EACC,YAAY;EACZ,aAAa;EACb,oBAAoB;EACpB,6G7GvD+B;E6GuD/B,qG7GvD+B;E6GwD/B,WAAW;EACX,0B7GzD+B;E6G0D/B,8CAAsC;EAAtC,sCAAsC,EACtC;;AAED;EACC,gCAAwB;EAAxB,wBAAwB,EACxB;;AAED;EACC,+BAAuB;EAAvB,uBAAuB,EACvB;;AAED;EACC,gCAAwB;EAAxB,wBAAwB,EACxB;;AAED;EACC,6BAAqB;EAArB,qBAAqB,EACrB;;AAED;EACC,gCAAwB;EAAxB,wBAAwB,EACxB;;AAED;EACC,+BAAuB;EAAvB,uBAAuB,EACvB;;AAED;EACC,gCAAwB;EAAxB,wBAAwB,EACxB;;AAED;EACC,6BAAqB;EAArB,qBAAqB,EACrB;;AACD;EACC;IACC,iCAAyB;IAAzB,yBAAyB;IACzB,uDAAuC;IAAvC,+CAAuC,EAAA;EAGxC;IACC,iCAAyB;IAAzB,yBAAyB;IACzB,wDAAuC;IAAvC,gDAAuC,EAAA,EAAA;;AARzC;EACC;IACC,iCAAyB;IAAzB,yBAAyB;IACzB,uDAAuC;IAAvC,+CAAuC,EAAA;EAGxC;IACC,iCAAyB;IAAzB,yBAAyB;IACzB,wDAAuC;IAAvC,gDAAuC,EAAA,EAAA;;AAGzC;EACC;IACC,4BAAgB;IAAhB,oBAAgB;IAChB,0BAAyB,EAAA;EAG1B;IACC,8BAAgB;IAAhB,sBAAgB;IAChB,0B7G/G8B,EAAA;E6GkH/B;IACC,4BAAgB;IAAhB,oBAAgB,EAAA;EAGjB;IACC,4BAAgB;IAAhB,oBAAgB;IAChB,0B7GxH8B,EAAA;E6G2H/B;IACC,4BAAgB;IAAhB,oBAAgB;IAChB,0B7G7H8B,EAAA,EAAA;;A6GuGhC;EACC;IACC,4BAAgB;IAAhB,oBAAgB;IAChB,0BAAyB,EAAA;EAG1B;IACC,8BAAgB;IAAhB,sBAAgB;IAChB,0B7G/G8B,EAAA;E6GkH/B;IACC,4BAAgB;IAAhB,oBAAgB,EAAA;EAGjB;IACC,4BAAgB;IAAhB,oBAAgB;IAChB,0B7GxH8B,EAAA;E6G2H/B;IACC,4BAAgB;IAAhB,oBAAgB;IAChB,0B7G7H8B,EAAA,EAAA;;A8GpBhC,kBAAkB;AAClB;EACE,YAAY;EACZ,aAAa;EACb,oB9GgBoG;E8GfpG,e9GeoG;E8GdpG,kBAAkB;EAClB,qIAA6H;EAA7H,6HAA6H;EAC7H,2CAAmC;EAAnC,mCAAmC,EACpC;;AACD;EACE;IACE,iCAA0B,EAAA;EAG5B;IACE,qIAA6H;IAA7H,6HAA6H,EAAA;EAG/H;IACE,qIAA6H;IAA7H,6HAA6H,EAAA;EAG/H;IACE,kCAAiB;IAAjB,0BAAiB;IACjB,mCAA0B,EAAA,EAAA;;AAf9B;EACE;IACE,iCAA0B,EAAA;EAG5B;IACE,qIAA6H;IAA7H,6HAA6H,EAAA;EAG/H;IACE,qIAA6H;IAA7H,6HAA6H,EAAA;EAG/H;IACE,kCAAiB;IAAjB,0BAAiB;IACjB,mCAA0B,EAAA,EAAA;;ACzB9B,uBAAuB;AACvB;EACC;IACC,8BAAgB;IAAhB,sBAAgB,EAAA;EAGjB;IACC,kCAAiB;IAAjB,0BAAiB,EAAA;EAGlB;IACC,kCAAiB;IAAjB,0BAAiB,EAAA,EAAA;AAVnB;EACC;IACC,8BAAgB;IAAhB,sBAAgB,EAAA;EAGjB;IACC,kCAAiB;IAAjB,0BAAiB,EAAA;EAGlB;IACC,kCAAiB;IAAjB,0BAAiB,EAAA,EAAA;;AAInB;EACC,mBAAmB;EACnB,UAAU;EACV,SAAS;EACT,yCAAoB;EAApB,iCAAoB;EACpB,sBAAsB,EACtB;;AAED;EACC,eAAe;EACf,YCxBiB;EDyBjB,aCzBiB;ED0BjB,oB/GP+B,E+GQ/B;;AAED;EACC,mBAAmB;EACnB,QAAQ;EACR,OAAO;EACP,UAAU;EACV,SAAS;EACT,oCAA4B;EAA5B,4BAA4B;EAC5B,+CAAuC;EAAvC,uCAAuC;EACvC,oCAA4B;EAA5B,4BAA4B,EAC5B;;AAED;;;;EAIC,mBAAmB;EACnB,YC5CwB;ED6CxB,aC7CwB;ED8CxB,e/G5B+B;E+G6B/B,YAAY,EACZ;;AAED;EAEE,uBAAuB;EACvB,sBAAsB;EACtB,UCrD2B;EDsD3B,WCtD2B,EDuD3B;;AANF;EASE,wBAAwB;EACxB,sBAAsB;EACtB,UC5D2B;ED6D3B,YC7D2B,ED8D3B;;AAGF;EAEE,uBAAuB;EACvB,yBAAyB;EACzB,aCrE2B;EDsE3B,WCtE2B,EDuE3B;;AANF;EASE,wBAAwB;EACxB,yBAAyB;EACzB,aC5E2B;ED6E3B,YC7E2B,ED8E3B;;AEjFF,mBAAmB;AACnB;EACE,YAAY;EACZ,aAAa;EACb,oBAAoB;EACpB,mBAAmB;EACnB,eAAe,EAChB;;AAED;;EAEE,YAAY;EACZ,mBAAmB;EACnB,OAAO;EACP,QAAQ;EACR,YAAY;EACZ,aAAa;EACb,oBAAoB;EACpB,+BAA+B;EAC/B,0BjHCoG,EiHArG;;AAED;EACE,aAAa;EACb,oCAA4B;EAA5B,4BAA4B,EAC7B;;AAED;EACE,2BjHRkD,EiHSnD;;AACD;EACE;IACE,gCAAyB;IAGzB,wBAAiB,EAAA;EAGnB;IACE,kCAAyB;IAGzB,0BAAiB,EAAA,EAAA;;AC1CrB,yBAAyB;AACzB;EACE,aAAa;EACb,cAAc;EACd,oBAAoB;EACpB,mBAAmB;EACnB,eAAe,EAChB;;AAED;EACE,sBAAsB;EACtB,YAAY;EACZ,aAAa;EACb,oBAAoB;EACpB,yClHMqH;EkHLrH,iBAAiB,EAClB;;AAED;EACE,kDAA0C;EAA1C,0CAA0C,EAC3C;;AAED;EACE,wDAAgD;EAAhD,gDAAgD,EACjD;;AAED;EACE,wDAAgD;EAAhD,gDAAgD,EACjD;;AACD;EACE;;;IAGE,iCAA6B;IAG7B,yBAAqB,EAAA;EAGvB;IACE,qCAA6B;IAG7B,6BAAqB,EAAA,EAAA;;AAdzB;EACE;;;IAGE,iCAA6B;IAG7B,yBAAqB,EAAA;EAGvB;IACE,qCAA6B;IAG7B,6BAAqB,EAAA,EAAA;;AC3CzB,gBAAgB;AAChB;EACE,YAAY;EACZ,aAAa;EACb,oBAAoB;EACpB,mBAAmB;EACnB,eAAe,EAChB;;AAED;EACE,sBAAsB;EACtB,WAAW;EACX,aAAa;EACb,yCnHOqH,EmHNtH;;AAED;EACE,gDAAwC;EAAxC,wCAAwC,EACzC;;AAED;EACE,sDAA8C;EAA9C,8CAA8C,EAC/C;;AAED;EACE,sDAA8C;EAA9C,8CAA8C,EAC/C;;AAED;EACE,sDAA8C;EAA9C,8CAA8C,EAC/C;;AACD;EACE;;IAEE,6BAAyB;IAGzB,qBAAiB,EAAA;EAGnB;IACE,+BAAyB;IAGzB,uBAAiB,EAAA,EAAA;;AAbrB;EACE;;IAEE,6BAAyB;IAGzB,qBAAiB,EAAA;EAGnB;IACE,+BAAyB;IAGzB,uBAAiB,EAAA,EAAA;;AC5CrB,wBAAwB;AACxB;EACE,aAAa;EACb,cAAc;EACd,oBAAoB;EACpB,mBAAmB;EACnB,eAAe,EAChB;;AAED;;EAEE,YAAY;EACZ,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,OAAO;EACP,uBAAU;EACV,0CpHGmE;EoHFnE,sDAA8C;EAA9C,8CAA8C,EAC/C;;AAED;EACE,UAAU;EACV,8BAAsB;EAAtB,sBAAsB,EACvB;;AACD;EACE;;IAEE,6CAAwC;IAGxC,qCAAgC,EAAA;EAGlC;IACE,uDAA8C;IAG9C,+CAAsC,EAAA;EAGxC;IACE,qDAA6C;IAG7C,6CAAqC,EAAA;EAGvC;IACE,wDAA+C;IAG/C,gDAAuC,EAAA,EAAA;;AA3B3C;EACE;;IAEE,6CAAwC;IAGxC,qCAAgC,EAAA;EAGlC;IACE,uDAA8C;IAG9C,+CAAsC,EAAA;EAGxC;IACE,qDAA6C;IAG7C,6CAAqC,EAAA;EAGvC;IACE,wDAA+C;IAG/C,gDAAuC,EAAA,EAAA;;ACpD3C,wBAAwB;AACxB;EACE,aAAa;EACb,cAAc;EACd,oBAAoB;EACpB,mBAAmB;EACnB,eAAe,EAChB;;AAED;EACE,sBAAsB;EACtB,YAAY;EACZ,aAAa;EACb,oBAAoB;EACpB,0BrHM8B;EqHL9B,iBAAiB;EACjB,WAAW,EACZ;;AAED;EACE,yDAAiD;EAAjD,iDAAiD,EAClD;;AAED;EACE,+DAAuD;EAAvD,uDAAuD,EACxD;;AAED;EACE,+DAAuD;EAAvD,uDAAuD,EACxD;;AACD;EACE;;IAEE,WAAW,EAAA;EAGb;IACE,WAAW,EAAA,EAAA;;AAPf;EACE;;IAEE,WAAW,EAAA;EAGb;IACE,WAAW,EAAA,EAAA;;ACrCf,iBAAiB;AACjB;EACE,2BAA2B;EAE3B,uBAAuB;EACvB,mBAAmB;EACnB,aAAa;EACb,cAAc;EACd,oBAAoB;EACpB,mBAAmB;EACnB,eAAe,EAChB;;AAED;EACE,YAAY;EACZ,mBAAmB;EACnB,WAAW;EACX,UAAU;EACV,YAAY;EACZ,aAAa;EACb,0CtHAmE;EsHCnE,oCAA4B;EAA5B,4BAA4B,EAC7B;;AACD;EACE;IACE,6BAAiB;IAAjB,qBAAiB,EAAA;EAGnB;IACE,mCAAkB;IAAlB,2BAAkB,EAAA;EAGpB;IACE,mDAAkC;IAAlC,2CAAkC,EAAA,EAAA;;AAVtC;EACE;IACE,6BAAiB;IAAjB,qBAAiB,EAAA;EAGnB;IACE,mCAAkB;IAAlB,2BAAkB,EAAA;EAGpB;IACE,mDAAkC;IAAlC,2CAAkC,EAAA,EAAA;;ACjCtC,0BAA0B;AAC1B;EACE,aAAa;EACb,cAAc;EACd,oBAAoB;EACpB,mBAAmB;EACnB,eAAe,EAChB;;AAED;EACE,YAAY;EACZ,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb,sBAAS;EACT,QAAQ;EACR,yCvHIqH;EuHHrH,0CAAkC;EAAlC,kCAAkC,EACnC;;AACD;EACE;IACE,4CAAsC;IAGtC,oCAA8B,EAAA;EAGhC;IACE,6CAAsC;IAGtC,qCAA8B,EAAA,EAAA;;AAZlC;EACE;IACE,4CAAsC;IAGtC,oCAA8B,EAAA;EAGhC;IACE,6CAAsC;IAGtC,qCAA8B,EAAA,EAAA;;AC/BlC,YAAY;AACZ;EAEI,8BAAgB,EAuBjB;EAzBH;IAMQ,mBxHmMqB,EwH1LtB;IAfP;MAUY,gBAAgB;MAChB,iBAAiB;MACjB,eAAe,EAChB;EAbX;IAkBQ,mBxHyLmB,EwHxLpB;EAnBP;IAsBQ,mBxHuLqB,EwHtLtB;;ACxBP;;EAGI,eAAe,EAuHhB;EA1HH;;IAOU,aAAa;IACb,iBAAiB;IACjB,0DAA0D;IAC1D,mBAAmB;IACnB,qBAAqB;IACrB,qBAAqB;IACrB,kBAAkB,EACnB;EAdT;;IAiBQ,mBAAmB;IACnB,mBAAmB,EAwBpB;IA1CP;;MAoBU,gBAAgB;MAChB,gBAAgB;MAChB,uBAAuB,EACxB;IAvBT;;MAyBU,mBAAmB;MACnB,UAAU;MACV,YAAY;MACZ,aAAa;MACb,oBAAoB;MACpB,oBAAoB;MACpB,ezHnBK;MyHoBL,gBAAgB;MAChB,UAAU;MACV,iBAAiB;MACjB,kBAAkB;MAClB,aAAa;MACb,mBAAmB,EACpB;IAtCT;;MAwCU,cAAc,EACf;EAzCT;;IA4CQ,qBAAqB;IACrB,uBAAuB,EAKxB;IAPD;;MAII,oBAAoB;MACpB,gBAAgB,EACjB;EAjDT;;IAoDQ,kBAAkB;IAClB,cAAc;IACd,mBAAmB;IACnB,sBAAS;IACT,SAAS;IACT,WAAW;IACX,2CAAsB;IACtB,kBAAkB;IAClB,gBAAgB;IAChB,mBAAmB;IAEnB,qDAAqC;IAErC,6CAA6B;IAK7B,iBAAiB,EAiDlB;IApED;;MAgBI,YAAY;MACZ,QAAQ,EACT;IAED;MAvER;;QAwEU,aAAa,EA+ChB,EAAA;IAvHP;;MA2EU,QAAQ;MACR,YAAY,EACb;IA7ET;;MA+EU,oBAAoB,EAYrB;MAbD;;QAGI,eAAe;QACf,sBAAsB,EACvB;MACD;QApFV;;UAqFY,qBAAqB,EAMxB;UAbD;;YASM,oBAAoB;YACpB,gBAAgB,EACjB,EAAA;IAzFb;;MA+FU,iBAAiB;MACjB,kBAAkB,EAmBnB;MAnHT;;QAkGY,gBAAgB,EACjB;MAnGX;;QAqGY,iBAAiB;QACjB,iBAAiB;QACjB,wBAAwB,EACzB;MAxGX;;QA0GY,YAAY;QACZ,aAAa;QACb,qBAAc;QAAd,qBAAc;QAAd,cAAc;QACd,0BAAoB;QAApB,uBAAoB;QAApB,oBAAoB;QACpB,yBAAwB;QAAxB,sBAAwB;QAAxB,wBAAwB,EACzB;MA/GX;;QAiHY,mBAAmB,EACpB;IAlHX;;MAqHU,UAAU,EACX;;ACtHT,iBAAiB;AAEjB;EACE,iBAAiB;EACjB,mBAAmB,EAgEpB;EAlED;IAII,aAAa;IACb,WAAW;IACX,iBAAiB;IACjB,mBAAmB,EA0DpB;IAjEH;MASM,gBAAgB;MAChB,eAAe;MACf,iC1HcgB,E0HuCjB;MAhEL;QAaQ,oBAAoB,EACrB;MAdP;QAiBU,wBAAwB,EACzB;MAlBT;QAuBQ,sBAAsB,EAwCvB;QA/DP;UAyBU,sBAAsB;UACtB,WAAW;UACX,WAAW;UACX,gBAAgB,EAMjB;UAlCT;YA8BY,gBAAgB;YAChB,YAAY;YACZ,oBAAoB,EACrB;QAjCX;UAoCU,WAAW;UAGX,yBAAyB,EAY1B;UAnDT;YAyCY,UAAU;YACV,Y1HjCA,E0HmCD;UA5CX;YA8CY,UAAU;YACV,Y1HtCA,E0HyCD;QAlDX;UAqDU,kBAAkB;UAClB,kBAAkB;UAClB,iBAAiB,EAOlB;UAVA;YAOG,eAAe;YACf,mBAAmB,EACpB;;AC/DX,gBAAgB;AAEhB;EAGM,sB3HsBgB;E2HpBhB,oBAAoB;EACpB,kCAA0B;EAA1B,0BAA0B,EAW3B;EAjBL;IAQQ,oBAAoB,EACrB;EATP;IAYU,mBAAmB;IACnB,eAAe;IACf,uBAAuB,EACxB;;AAfT;;;;;EAuBQ,oB3HLwB;E2HMxB,sB3HNwB;E2HOxB,e3HfO,E2HgBR;;AA1BP;;;;EAgCQ,aAAa;EACb,mBAAmB,EACpB;;AAlCP;;;EAuCM,iBAAiB;EACjB,kBAAkB,EAUnB;EAlDL;;;IA0CQ,eAAe,EAChB;EA3CP;;;IA6CQ,gBAAgB,EACjB;EA9CP;;;;IAgDQ,mBAAmB,EACpB;;AAjDP;;;;;;;;;EAyDU,6BAA6B,EAC9B;;AA1DT;;;;;;;;;EA8DU,6BAA6B,EAC9B;;AA/DT;;;EAqEM,kBAAkB;EAClB,iBAAiB,EAKlB;EA3EL;;;;IAwEQ,aAAa;IACb,oBAAoB,EACrB;;AA1EP;;;EA+EM,iBAAiB;EACjB,kBAAkB,EAgBnB;EAhGL;;;IAkFQ,eAAe,EAIhB;IAtFP;;;;;MAoFU,6BAA6B,EAC9B;EArFT;;;IAwFQ,gBAAgB,EAIjB;IA5FP;;;;;MA0FU,6BAA6B,EAC9B;EA3FT;;;;IA8FQ,mBAAmB,EACpB;;AAKP,2BAA2B;AClGrB;;;;;EACE,oB5HewB;E4HdxB,sB5HcwB,E4HbzB;;AAGH;;;;EAEI,oBAAmB;EACnB,sB5HOwB;E4HNxB,e5HFO,E4HGR;;AAXD;;;;;EACE,oB5He4C;E4Hd5C,sB5Hc4C,E4Hb7C;;AAGH;;;;EAEI,oBAAmB;EACnB,sB5HO4C;E4HN5C,e5HFO,E4HGR;;AAXD;;;;;EACE,oB5He6D;E4Hd7D,sB5Hc6D,E4Hb9D;;AAGH;;;;EAEI,oBAAmB;EACnB,sB5HO6D;E4HN7D,e5HFO,E4HGR;;AAXD;;;;;EACE,oB5He4E;E4Hd5E,sB5Hc4E,E4Hb7E;;AAGH;;;;EAEI,oBAAmB;EACnB,sB5HO4E;E4HN5E,e5HFO,E4HGR;;AAXD;;;;;EACE,oB5He8F;E4Hd9F,sB5Hc8F,E4Hb/F;;AAGH;;;;EAEI,oBAAmB;EACnB,sB5HO8F;E4HN9F,e5HFO,E4HGR;;AAXD;;;;;EACE,oB5He+G;E4Hd/G,sB5Hc+G,E4HbhH;;AAGH;;;;EAEI,oBAAmB;EACnB,sB5HO+G;E4HN/G,e5HFO,E4HGR;;AAXD;;;;;EACE,oB5He+H;E4Hd/H,sB5Hc+H,E4HbhI;;AAGH;;;;EAEI,kBAAmB;EACnB,sB5HO+H;E4HN/H,e5HFO,E4HGR;;AAXD;;;;;EACE,oB5He8I;E4Hd9I,sB5Hc8I,E4Hb/I;;AAGH;;;;EAEI,oBAAmB;EACnB,sB5HO8I;E4HN9I,e5HFO,E4HGR;;ACfP,cAAc;AAEd;EAEE,aAAa;EACb,mBAAmB;EACnB,eAAe;EACf,YAAY;EACZ,oBAAoB,EAepB;EArBF;IAUI,UAAU;IACV,oCAAqB;IAArB,4BAAqB,EACrB;EAZJ;IAiBI,SAAS;IACT,oCAAqB;IAArB,4BAAqB,EACrB;;AAKJ;EACC,cAAc,EAsEd;EAvED;IAKI,0B7HiMgB,E6HhMhB;EANJ;IAQI,0B7H8LgB,E6H7LhB;EATJ;IAeI,4B7HuLgB,E6HtLhB;EAhBJ;IAkBI,4B7HoLgB,E6HnLhB;EAnBJ;IAyBI,6B7H6KgB,E6H5KhB;EA1BJ;IA4BI,6B7H0KgB,E6HzKhB;EA7BJ;IAiCI,iBAAiB,EACjB;EAlCJ;IAwCI,2B7H8JgB,E6H7JhB;EAzCJ;IA2CI,2B7H2JgB,E6H1JhB;EA5CJ;IAgDE,qBAAqB;IACrB,iBAAiB;IACjB,e7HxD8B;I6HyD9B,oB7HmJkB,E6HlJlB;EApDF;IAsDE,Y7HrEU;I6HsEV,oB7H+IkB,E6H9IlB;EAxDF;IA4DI,2B7H0IgB,E6HzIhB;EA7DJ;IAmEI,4B7HmIgB,E6HlIhB;;AC5FH;EACC,oB9HiB8B;E8HhB9B,e9HQa,E8HPb;;AAGA;EAGE,0B9HS4B,E8HR5B;;AAKF;EAGE,4B9HA4B,E8HC5B;;AAKF;EAGE,6B9HT4B,E8HU5B;;AAKF;EAGE,2B9HlB4B,E8HmB5B;;AArCH;EACC,oB9HiBkD;E8HhBlD,e9HQa,E8HPb;;AAGA;EAGE,0B9HSgD,E8HRhD;;AAKF;EAGE,4B9HAgD,E8HChD;;AAKF;EAGE,6B9HTgD,E8HUhD;;AAKF;EAGE,2B9HlBgD,E8HmBhD;;AArCH;EACC,oB9HiBmE;E8HhBnE,e9HQa,E8HPb;;AAGA;EAGE,0B9HSiE,E8HRjE;;AAKF;EAGE,4B9HAiE,E8HCjE;;AAKF;EAGE,6B9HTiE,E8HUjE;;AAKF;EAGE,2B9HlBiE,E8HmBjE;;AArCH;EACC,oB9HiBkF;E8HhBlF,e9HQa,E8HPb;;AAGA;EAGE,0B9HSgF,E8HRhF;;AAKF;EAGE,4B9HAgF,E8HChF;;AAKF;EAGE,6B9HTgF,E8HUhF;;AAKF;EAGE,2B9HlBgF,E8HmBhF;;AArCH;EACC,oB9HiBoG;E8HhBpG,e9HQa,E8HPb;;AAGA;EAGE,0B9HSkG,E8HRlG;;AAKF;EAGE,4B9HAkG,E8HClG;;AAKF;EAGE,6B9HTkG,E8HUlG;;AAKF;EAGE,2B9HlBkG,E8HmBlG;;AArCH;EACC,oB9HiBqH;E8HhBrH,e9HQa,E8HPb;;AAGA;EAGE,0B9HSmH,E8HRnH;;AAKF;EAGE,4B9HAmH,E8HCnH;;AAKF;EAGE,6B9HTmH,E8HUnH;;AAKF;EAGE,2B9HlBmH,E8HmBnH;;AArCH;EACC,oB9HiBqI;E8HhBrI,e9HQa,E8HPb;;AAGA;EAGE,0B9HSmI,E8HRnI;;AAKF;EAGE,4B9HAmI,E8HCnI;;AAKF;EAGE,6B9HTmI,E8HUnI;;AAKF;EAGE,2B9HlBmI,E8HmBnI;;AArCH;EACC,oB9HiBoJ;E8HhBpJ,e9HQa,E8HPb;;AAGA;EAGE,0B9HSkJ,E8HRlJ;;AAKF;EAGE,4B9HAkJ,E8HClJ;;AAKF;EAGE,6B9HTkJ,E8HUlJ;;AAKF;EAGE,2B9HlBkJ,E8HmBlJ;;ACvCJ,eAAe;AACf;EAEE,mBAAmB;EACnB,YAAY;EACZ,iBAAiB;EACjB,YAAY;EACZ,oB/HaoG;E+HZpG,mBAAmB;EACnB,gBAAgB,EAoFhB;EAnFA;IATF;MAUG,aAAa,EAkFd,EAAA;EA5FF;IAcG,mBAAmB;IACnB,eAAe;IACf,iBAAiB;IACjB,gBAAgB;IAChB,YAAY;IACZ,aAAa,EACb;EApBH;IAuBG,aAAa;IACb,e/HbY;I+HcZ,0BAA0B;IAC1B,kBAAkB;IAClB,oCAAoC;IACpC,4BAA4B;IAC5B,mBAAmB;IACnB,OAAO;IACP,QAAQ;IACR,YAAY;IACZ,aAAa,EAMb;IAvCH;MAqCI,qBAAqB,EACrB;EAtCJ;IA0CG,uBAAuB,EAiDvB;IA3FH;;MA8CI,4CAA4C;MAC5C,oCAA4B;MAA5B,4BAA4B;MAA5B,qDAA4B,EAC5B;IAhDJ;MAmDI,oCAAoC;MACpC,4BAA4B,EAC5B;IArDJ;;MAyDI,mBAAmB;MACnB,aAAa;MACb,QAAQ;MACR,cAAc;MACd,iBAAiB;MACjB,YAAY,EACZ;IA/DJ;MAkEI,qBAAqB;MACrB,WAAW;MACX,2DAA2D;MAC3D,mDAA2C;MAA3C,2CAA2C;MAA3C,oEAA2C;MAC3C,2CAA8B;MAC9B,mCAAsB,EACtB;IAxEJ;MA4EK,4CAA8B;MAC9B,oCAAsB,EACtB;IA9EL;MAiFK,6CAA8B;MAC9B,qCAAsB,EACtB;IAnFL;MAsFK,WAAW;MACX,wCAA8B;MAC9B,gCAAsB,EACtB;;AC1FL,aAAa;AAEb;EAEI,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,+BAAoB;EAApB,8BAAoB;EAApB,wBAAoB;EAApB,oBAAoB;EACpB,yBAAwB;EAAxB,sBAAwB;EAAxB,wBAAwB;EACxB,wBAAwB;EACxB,oBAAoB;EACpB,iChIkBkB,EgImEnB;EA5FH;IASM,iBAAiB,EAClB;EAVL;IAYM,oB/HHY,E+HIb;EAbL;IAeM,gBAAgB;IAChB,mBAAmB,EACpB;EAjBL;IAmBM,ehITS;IgIUT,mBAAmB,EAgCpB;IApDL;;MAuBQ,oBAAoB,EACrB;IAxBP;MA0BQ,aAAa;MACb,mBAAmB,EAIpB;MA/BP;QA6BU,oBAAoB,EACrB;IA9BT;MAiCQ,0BhIvBO;MgIwBP,oBAAoB;MACpB,YAAY;MACZ,eAAe;MACf,aAAa;MACb,WAAW;MACX,WAAW;MACX,mBAAmB;MACnB,YAAY,EAUb;EAnDP;IAsDM,eAAe;IACf,qBAAqB,EAoBtB;IAtBD;MAII,gBAAgB;MAChB,sBAAsB,EACvB;IA3DP;MA6DQ,gBAAgB,EAIjB;MAZH;QAUM,iBAAiB,EAClB;IAhET;MAmEQ,oBAAoB,EAOrB;MA1EP;QAqEU,mChIpCA;QgIqCA,oBAAoB;QACpB,gChI9CY,EgIgDb;EAzET;IA6EM,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,+BAAoB;IAApB,8BAAoB;IAApB,wBAAoB;IAApB,oBAAoB,EAarB;IA3FL;MAgFQ,YAAY;MACZ,ehI9DqP;MgI+DrP,aAAa;MACb,0BhIhEqP;MgIiErP,oBAAoB;MACpB,iBAAiB;MACjB,sBAAsB,EAIvB;MA1FP;QAwFU,mBAAmB,EACpB;;AAzFT;EA+FM,mBAAmB,EAOpB;EAtGL;IAiGQ,eAAe,EAChB;EAlGP;IAoGQ,kBAAkB,EACnB;;AArGP;EA0GM,iChIjFgB,EgIqFjB;EA9GL;IA4GQ,iBAAiB,EAClB;;AC/GP,mBAAmB;AACnB;EAGM,wBAAwB,EAazB;EAhBL;IAMQ,YAAY;IACZ,oBAAoB,EAQrB;IAfP;MAUU,iBAAiB;MACjB,eAAe;MACf,mCjIsBA;MiIrBA,oBjIuBkB,EiItBnB;;ACfT,YAAY;AAEZ;EACE,iBAAiB,EA+DlB;EAhED;IAIM,cAAc;IACd,yBAAyB;IACzB,mClI2BI;IkI1BJ,iBAAiB,EAIlB;IAXL;MASQ,sBAAsB,EACvB;EAVP;;IAeI,uBAAuB;IACvB,oBlImBwB;IkIlBxB,eAAe;IACf,oBAAoB;IACpB,aAAa;IACb,mBlI+H0B,EkIlH3B;IAjCH;;MAuBM,oBAAoB,EACrB;IAxBL;;MA0BM,iBAAiB,EAClB;IA3BL;;;;MA8BM,cAAc;MACd,oBAAoB,EACrB;EAhCL;IAmCI,aAAa,EAMd;IAzCH;;;MAuCM,aAAa,EACd;EAxCL;IA4CM,0BlInBgB;IkIoBhB,oBAAoB,EAOrB;IApDL;MAgDU,kBAAkB;MAClB,mBAAmB,EACpB;EAlDT;IA6DM,0BlI3CiI,EkI4ClI;;AChEL,UAAU;AAGV;;EAIG,mCnI4BO;EmI3BP,eAAe;EACf,oBnI4ByB;EmI3BzB,YnICS;EmIAT,mBAAmB;EACnB,qBAAc;EAAd,qBAAc;EAAd,cAAc,EAId;EAbH;;IAWI,mBAAmB,EACnB;;AAKJ;EACC,mCnIcS;EmIbT,oBnIe2B;EmId3B,kBAAkB,EAClB;;AAED;EACC,oBAAoB;EACpB,oBAAoB,EAmBpB;EArBD;IAIE,iBAAiB,EAgBjB;IApBF;MAMG,enIMiB;MmILjB,iBAAiB;MACjB,iBAAiB;MACjB,mBAAmB;MACnB,kBAAkB;MAClB,iCnIzBY,EmIiCZ;MAnBH;QAaI,iBAAiB;QACjB,mBAAmB;QACnB,kBAAkB;QAClB,iCnItBiE;QmIuBjE,enIvBiE,EmIwBjE;;AAOJ;EACC,aAAa;EACb,oBAAoB,EAepB;EAjBD;IAKG,aAAa;IACb,mBAAmB;IACnB,mBAAmB,EAQnB;IAfH;MASI,gBAAgB,EAChB;IAVJ;MAYI,aAAa;MACb,enIpDW,EmIqDX;;AAKJ;EACC,aAAa;EACb,gBAAgB;EAChB,iBAAiB,EACjB;;ACxEC;EAEI,oBpIgB0B,EoIf3B;;AAHH;EAEI,oBpIgB8C,EoIf/C;;AAHH;EAEI,oBpIgB+D,EoIfhE;;AAHH;EAEI,oBpIgB8E,EoIf/E;;AAHH;EAEI,oBpIgBgG,EoIfjG;;AAHH;EAEI,oBpIgBiH,EoIflH;;AAHH;EAEI,oBpIgBiI,EoIflI;;AAHH;EAEI,oBpIgBgJ,EoIfjJ;;AD8EL;EAEE,aAAa,EAab;EAfF;IAKI,aAAa;IACb,gBAAgB,EAOhB;IAbJ;MAQK,iBAAiB,EACjB;IATL;MAWK,gBAAgB,EAChB;;AAOL;EACC,oBAAoB;EACpB,iBAAiB;EACjB,oBAAoB,EAYpB;EAfD;IAKE,mBAAmB,EASnB;IAdF;MAOG,aAAa;MACb,WAAW;MACX,enIzEiB,EmI6EjB;MAbH;QAWI,enI7FgF,EmI8FhF;;AAKJ;EACC,qBAAc;EAAd,qBAAc;EAAd,cAAc,EAQd;EATD;IAGE,6BAAuB;IAAvB,8BAAuB;IAAvB,2BAAuB;IAAvB,uBAAuB;IACvB,iBAAiB,EACjB;EALF;IAOE,iBAAiB,EACjB;;AE/HF,oBAAoB;AAEpB;EACE,eAAe;EACf,gBAAgB;EAChB,OAAO;EACP,crI0F0B;EqIzF1B,UAAU;EACV,arIwF0B;EqIvF1B,cAAc;EACd,iBAAiB;EACjB,oBrICa;EqIAb,kBAAkB;EAClB,mCrIsJgC;EqItJhC,2BrIsJgC;EqIrJhC,yCrIsJsC;EqItJtC,iCrIsJsC;EqIrJtC,uDAAuC;EAAvC,+CAAuC;EAAvC,uCAAuC;EAAvC,2DAAuC;EACvC,cAAc,EA2Sf;EAzTD;IAiBI,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,yBAAwB;IAAxB,sBAAwB;IAAxB,wBAAwB;IACxB,YAAY;IACZ,UAAU;IACV,WAAW;IACX,+DrINgC,EqI2BjC;IA3CH;MAyBM,aAAa,EAiBd;MA1CL;QA4BQ,mBAAmB;QACnB,aAAa;QACb,qBAAc;QAAd,qBAAc;QAAd,cAAc;QACd,0BAAoB;QAApB,uBAAoB;QAApB,oBAAoB;QACpB,gCrItBO;QqIuBP,kCAA0B;QAA1B,0BAA0B;QAC1B,mCAA2B;QAA3B,2BAA2B;QAC3B,yBAAwB;QAAxB,sBAAwB;QAAxB,wBAAwB,EAMzB;QAzCP;UAsCU,wBAAwB;UACxB,erI7BK,EqI8BN;EAxCT;IA8CI,aAAa;IACb,kBAAkB,EAUnB;IAzDH;MAmDQ,mBAAmB;MACnB,kBAAkB;MAClB,aAAa;MACb,sBAAsB,EACvB;EAvDP;IA4DI,0BAA0B,EAM3B;IAPD;MAII,0BAA0B;MAC1B,kBAAkB,EACnB;EAGE;IAED,0BAA0B,EAC3B;EAvEL;IA2EI,mBAAmB;IACnB,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,0BAAoB;IAApB,uBAAoB;IAApB,oBAAoB;IACpB,oBrI3CwB;IqI4CxB,eAAe;IACf,eAAc;IACd,oBrIvEW;IqIwEX,mCrI+E8B;IqI/E9B,2BrI+E8B;IqI9E9B,wCAAgC;IAAhC,gCAAgC,EAYjC;IA/FH;MAsFM,oBrInEuP,EqIoExP;EAvFL;IAkGI,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,0BAA8B;IAA9B,8BAA8B;IAC9B,oBAAgB;IAAhB,gBAAgB;IAChB,oBAAoB;IACpB,kBAAkB,EAgEnB;IAtKH;MA2GM,kBAAkB;MAClB,qBAAc;MAAd,qBAAc;MAAd,cAAc;MACd,0BAAoB;MAApB,uBAAoB;MAApB,oBAAoB;MACpB,yBAAwB;MAAxB,sBAAwB;MAAxB,wBAAwB,EAuDzB;MArKL;QAiHQ,YAAY;QACZ,SAAS;QACT,UAAU;QACV,WAAW;QACX,qCrI3GO;QqI4GP,oBAAoB;QACpB,yCrI7GO;QqI8GP,mCrIyC0B;QqIzC1B,2BrIyC0B;QqIxC1B,yCrIyCgC;QqIzChC,iCrIyCgC,EqIxCjC;MA1HP;QA8HU,YAAY;QACZ,aAAa;QACb,WAAW;QACX,kBpI6FuB,EoI5FxB;MAlIT;QAsJQ,oBrIpJM,EqIqJP;MAvJP;QAkKQ,wBAAyB;QACzB,+DrInJ4B,EqIoJ7B;EApKP;IAyKI,gBAAgB,EAgEjB;IAzOH;MA4KM,uBAAuB;MACvB,qBAAc;MAAd,qBAAc;MAAd,cAAc;MACd,0BAA+B;MAA/B,uBAA+B;MAA/B,+BAA+B;MAC/B,iCrItJgB,EqI+MjB;MAxOL;QAkLQ,oBAAoB,EACrB;MAnLP;QAsLQ,mBAAmB;QACnB,mBAAmB,EAyBpB;QAhNP;UA0LU,eAAe;UACf,gBAAgB;UAChB,oBAAoB,EACrB;QA7LT;UAgMU,gBAAgB;UAChB,eAAe;UACf,mBAAmB;UACnB,gBAAgB;UAChB,SAAS;UACT,8BrI3LK;UqI4LL,oBAAoB,EASrB;UA/MT;YAyMY,oBrIvLyD,EqIwL1D;UA1MX;YA6MY,oBrI3L0F,EqI4L3F;MA9MX;QAmNQ,mBAAmB,EAgBpB;QAnOP;UAsNU,eAAe;UACf,iBAAiB,EAWlB;UAlOT;YA2NY,aAAa;YACb,kBAAkB,EAKnB;YAZH;cAUM,kBAAkB,EACnB;MAhOb;QAsOQ,oBrIpN+H,EqIqNhI;EAvOP;IA4OI,SAAS;IACT,uDAAgC;IAAhC,+CAAgC,EAKjC;IAlPH;MAgPM,uDAAgC;MAAhC,+CAAgC,EACjC;EAjPL;IAqPI,mBAAmB;IACnB,UAAU;IACV,YAAY;IACZ,erItO4B;IqIuO5B,wBAAwB;IACxB,mBAAmB;IACnB,eAAe;IACf,gBAAgB;IAChB,kCAA0B;IAA1B,0BAA0B;IAC1B,aAAa,EAUd;IAxQH;MAiQM,qCrIvPS,EqIwPV;IAdH;MAiBI,aAAa;MACb,WAAW,EACZ;EAvQL;IA4QM,mCrI3OI,EqI4OL;EAED;IAEI,kBAAkB,EACnB;EAlRP;IA4RI,aAAa;IACb,arI/LwB;IqIgMxB,kCAA0B;IAA1B,0BAA0B,EA0B3B;IA7BD;MAMI,iBAAiB,EAiBlB;MAvBH;QAUQ,gBAAgB;QAChB,kBAAkB,EACnB;MAZP;QAeQ,gBAAgB;QAChB,kBAAkB,EAKnB;QArBP;UAmBU,mBAAmB,EACpB;IA/SX;MAqTM,QAAQ;MACR,aAAa,EACd;;ACzTL,UAAU;AACV;EACE,sBAAsB;EACtB,iBAAiB,EAYlB;EAdD;IAKI,2BAA2B;IAC3B,8BAA8B;IAC9B,YAAY,EACb;EARH;IAWI,0BAA0B;IAC1B,6BAA6B,EAC9B;;AAGH;EACE,aAAa;EACb,iBAAiB,EA8DlB;EAhED;IAKI,WAAW;IACX,iBAAiB;IACjB,iBAAiB;IACjB,iBAAiB,EAyBlB;IAjCH;MAcM,qBAAqB;MACrB,kBAAkB;MAClB,iCtINgB,EsIsBjB;MAhCL;QAoBQ,eAAe,EAKhB;MAzBP;QA2BQ,YAAY,EAIb;QA/BP;UA6BU,YAAY,EACb;EA9BT;IAoCI,mBAAmB,EACpB;EArCH;IAwCI,kBAAkB;IAClB,gBAAgB;IAChB,kBAAkB;IAClB,iBAAiB;IACjB,etIzC4B;IsI0C5B,eAAe;IACf,gBAAgB;IAChB,kBAAkB;IAClB,mBAAmB,EAMpB;IAfD;MAYI,mBAAmB;MACnB,eAAe,EAChB;EArDL;IAyDI,8BAA8B;IAC9B,uCtIvD4B;IsIuD5B,+BtIvD4B,EsI4D7B;IA/DH;MA6DM,sBAAsB,EACvB;;AC/EL,cAAc;AAEd;EAEE,mBAAmB;EACnB,sBAAsB;EACtB,WAAW;EACX,sBAAsB,EACtB;;AANF;;EAUG,UAAU;EACV,oCAAqB;EAArB,4BAAqB,EACrB;;AAZH;;EAiBG,SAAS;EACT,oCAAqB;EAArB,4BAAqB,EACrB;;AAIH;EACC,mBvI6LyB;EuI5LzB,oBAAoB;EAIpB,cAAc,EACd;EAPD;IAIE,mCvIMQ,EuILR;;AC5BD;EACC,oBxIiB8B;EwIhB9B,exIQa,EwIPb;;AAGM;EACL,0BxIW6B,EwIV7B;;AAIK;EACL,4BxIK6B,EwIJ7B;;AAIK;EACL,6BxID6B,EwIE7B;;AAIK;EACL,2BxIP6B,EwIQ7B;;AA1BF;EACC,oBxIiBkD;EwIhBlD,exIQa,EwIPb;;AAGM;EACL,0BxIWiD,EwIVjD;;AAIK;EACL,4BxIKiD,EwIJjD;;AAIK;EACL,6BxIDiD,EwIEjD;;AAIK;EACL,2BxIPiD,EwIQjD;;AA1BF;EACC,oBxIiBmE;EwIhBnE,exIQa,EwIPb;;AAGM;EACL,0BxIWkE,EwIVlE;;AAIK;EACL,4BxIKkE,EwIJlE;;AAIK;EACL,6BxIDkE,EwIElE;;AAIK;EACL,2BxIPkE,EwIQlE;;AA1BF;EACC,oBxIiBkF;EwIhBlF,exIQa,EwIPb;;AAGM;EACL,0BxIWiF,EwIVjF;;AAIK;EACL,4BxIKiF,EwIJjF;;AAIK;EACL,6BxIDiF,EwIEjF;;AAIK;EACL,2BxIPiF,EwIQjF;;AA1BF;EACC,oBxIiBoG;EwIhBpG,exIQa,EwIPb;;AAGM;EACL,0BxIWmG,EwIVnG;;AAIK;EACL,4BxIKmG,EwIJnG;;AAIK;EACL,6BxIDmG,EwIEnG;;AAIK;EACL,2BxIPmG,EwIQnG;;AA1BF;EACC,oBxIiBqH;EwIhBrH,exIQa,EwIPb;;AAGM;EACL,0BxIWoH,EwIVpH;;AAIK;EACL,4BxIKoH,EwIJpH;;AAIK;EACL,6BxIDoH,EwIEpH;;AAIK;EACL,2BxIPoH,EwIQpH;;AA1BF;EACC,oBxIiBqI;EwIhBrI,exIQa,EwIPb;;AAGM;EACL,0BxIWoI,EwIVpI;;AAIK;EACL,4BxIKoI,EwIJpI;;AAIK;EACL,6BxIDoI,EwIEpI;;AAIK;EACL,2BxIPoI,EwIQpI;;AA1BF;EACC,oBxIiBoJ;EwIhBpJ,exIQa,EwIPb;;AAGM;EACL,0BxIWmJ,EwIVnJ;;AAIK;EACL,4BxIKmJ,EwIJnJ;;AAIK;EACL,6BxIDmJ,EwIEnJ;;AAIK;EACL,2BxIPmJ,EwIQnJ;;AC5BH,kBAAkB;AAElB;EAKU,eAAe;EACf,YAAY;EACZ,aAAa;EACb,oBAAoB;EACpB,kBAAkB;EAClB,mBAAmB,EAGpB;;AAbT;EAeU,mBAAmB;EACnB,ezIE4I;EyID5I,kBAAkB;EAClB,iBAAiB;EACjB,iBAAiB,EAClB;;AApBT;EAsBU,mBAAmB;EACnB,exITQ;EwIUR,kBAAkB;EAClB,iBAAiB,EAClB;;AA1BT;EA4BU,mBAAmB;EACnB,ezIXsB;EyIYtB,eAAe,EAChB;;AA/BT;EAiCU,eAAe;EACf,mBAAmB;EACnB,ezIjBsB,EyIkBvB;;AApCT;EAwCU,gBAAgB;EAChB,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,yBAAwB;EAAxB,sBAAwB;EAAxB,wBAAwB,EAmBzB;EA7DT;IA4CY,eAAe;IACf,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,yBAAwB;IAAxB,sBAAwB;IAAxB,wBAAwB;IACxB,0BAAoB;IAApB,uBAAoB;IAApB,oBAAoB;IACpB,6BAAuB;IAAvB,8BAAuB;IAAvB,2BAAuB;IAAvB,uBAAuB,EAYxB;IA5DX;MAkDc,mBAAmB;MACnB,iBAAiB;MACjB,iBAAiB;MACjB,kBAAkB;MAClB,ezIpCwI,EyIyCzI;MA3Db;QAwDgB,iBAAiB;QACjB,kBAAkB,EACnB;;AA1Df;EAiEY,kBAAkB,EACnB;;AAlEX;EAsEY,kBAAkB;EAClB,eAAe;EACf,oBAAoB,EASrB;EAjFX;IA0Ec,kBAAkB;IAClB,mBAAmB,EACpB;EA5Eb;IA8Ec,iBAAiB;IACjB,sBAAsB,EACvB;;AClFb;EACE,eAAe,EA2EhB;EA5ED;IAGI,mBAAmB;IACnB,kBAAkB;IAClB,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,0BAAoB;IAApB,uBAAoB;IAApB,oBAAoB;IACpB,mBAAmB;IACnB,mC1I2J8B;I0I3J9B,2B1I2J8B;I0I1J9B,wCAAgC;IAAhC,gCAAgC,EAkEjC;IA3EH;MAWM,iBAAiB;MACjB,kBAAkB;MAClB,oB1IwBsB,E0IvBvB;IAdL;MAgBM,YAAY;MACZ,aAAa;MACb,mBAAmB;MACnB,oBAAoB;MACpB,mC1I+I4B;M0I/I5B,2B1I+I4B;M0I9I5B,yC1I+IkC;M0I/IlC,iC1I+IkC;M0I9IlC,qCAA6B;MAA7B,6BAA6B;MAC7B,qBAAc;MAAd,qBAAc;MAAd,cAAc;MACd,0BAAoB;MAApB,uBAAoB;MAApB,oBAAoB;MACpB,yBAAwB;MAAxB,sBAAwB;MAAxB,wBAAwB,EAkCzB;MA3DL;QA2BQ,YAAY;QACZ,mBAAmB;QACnB,QAAQ;QACR,SAAS;QACT,SAAS;QACT,eAAe;QACf,aAAa;QACb,YAAY;QACZ,aAAa;QACb,oBAAoB;QACpB,oCAAqB;QAArB,4BAAqB;QACrB,mC1I6H0B;Q0I7H1B,2B1I6H0B;Q0I5H1B,yC1I6HgC;Q0I7HhC,iC1I6HgC,E0I5HjC;MAxCP;QA2CU,oB1IvB2D,E0IwB5D;MA5CT;QAgDU,oB1I5B6G,E0I6B9G;MAjDT;QAoDQ,gBAAgB;QAChB,aAAa;QACb,WAAW;QACX,e1InC+G;Q0IoC/G,mC1I2G0B;Q0I3G1B,2B1I2G0B;Q0I1G1B,yC1I2GgC;Q0I3GhC,iC1I2GgC,E0I1GjC;IA1DP;MA6DM,oB1IzCiI,E0IsDlI;MA1EL;QAgEU,WAAW;QACX,aAAa;QACb,YAAY;QACZ,oB1I/C6H,E0IgD9H;MApET;QAsEU,WAAW;QACX,WAAW,EACZ;;AAMT;EACE,YAAY;EACZ,eAAe,EAgBhB;EAlBD;IAII,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,0BAAoB;IAApB,uBAAoB;IAApB,oBAAoB;IACpB,sBAAkB;IAAlB,kBAAkB;IAClB,YAAY;IACZ,cAAc;IACd,iC1I5DkB,E0IoEnB;IAjBH;MAWM,oBAAoB,EACrB;IAZL;MAcM,kBAAkB;MAClB,aAAa,EACd;;AAIL;EACE,gBAAgB;EAChB,iBAAiB;EACjB,sBAAsB,EA2BvB;EA9BD;IAKI,sBAAsB;IACtB,mBAAmB;IACnB,e1InEgB,E0IyFjB;IA7BH;MASM,aAAa;MACb,YAAY;MACZ,sBAAsB;MACtB,kBAAkB;MlI1GpB,oBkI2G6B,EAK5B;MAVD;QAOI,kBAAkB;QAClB,iBAAiB,EAClB;IAjBP;MAoBM,gBAAgB,EACjB;IAjBH;MAmBI,kBAAkB;MAClB,kBAAkB,EAInB;MAxBH;QAsBM,iBAAiB,EAClB;;AAKP;EAIQ,e1IlH4C,E0ImH7C;;AALP;EAQM,e1IpGc,E0IqGf;;AATL;EAWM,e1IzH0B,E0I0H3B;;AAZL;EAgBM,oBAAoB,EACrB;;AAjBL;EAmBM,oB1ItH8C,E0I0H/C;EAvBL;IAqBQ,6BAA2B,EAC5B;;AAtBP;EAyBM,oB1I5H2B,E0IgI5B;EA7BL;IA2BQ,6BAA2B,EAC5B;;AA5BP;EA+BM,oB1IlI+D,E0IsIhE;EAnCL;IAiCQ,6BAA2B,EAC5B;;AAlCP;EAqCM,oB1IxIkF,E0I4InF;EAzCL;IAuCQ,6BAA2B,EAC5B;;AAxCP;;;;;;;;EAkDM,e1IxKS,E0IyKV;;AAIL;EAEI,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,0BAA8B;EAA9B,8BAA8B,EAa/B;EAhBH;IAKM,WAAW;IACX,mBAAmB;IACnB,mBAAmB;IACnB,oB1IrLS;I0IsLT,qCAAqB;IAArB,6BAAqB;IACrB,uDAAgC;IAAhC,+CAAgC;IAChC,YAAY,EAIb;IAfL;MAaQ,gBAAgB,EACjB;;AAdP;EAkBI,kBAAkB;EAClB,iBAAiB,EAClB;;AAGH;E9DjKE,wBAAwB;EACxB,iBAAiB;EACjB,gBAAgB;EAChB,oBAAoB;E8DiKlB,eAAe,EAChB;;AAGH;EACE,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,YAAY;EACZ,gBAAgB;EAChB,iC1IhMoB,E0IwOrB;EA5CD;IAMI,kBAAkB,EACnB;EAPH;IASI,oBAAoB,EACrB;EAVH;IAYI,gBAAgB;IAChB,YAAY;IACZ,gBAAgB,EAKjB;IAnBH;MAgBM,eAAe;MACf,aAAa,EACd;EAlBL;IAqBI,yBAAW;IACX,oBAAoB,EAqBrB;IA3CH;MAwBM,iBAAiB;MACjB,mBAAmB;MACnB,e1I3Mc;M0I4Md,oBAAoB,EACrB;IA5BL;MA8BM,e1I/Mc;M0IgNd,mBAAmB,EACpB;IAhCL;MAkCM,iBAAiB;M9D1MrB,wBAAwB;MACxB,iBAAiB;MACjB,gBAAgB;MAChB,oBAAoB,E8DyMjB;IApCL;MAsCM,iBAAiB;MACjB,iBAAiB;M9D/MrB,wBAAwB;MACxB,iBAAiB;MACjB,gBAAgB;MAChB,oBAAoB;M8D8MhB,eAAe,EAChB;;AAIL;EAEI,0B1I5OkB;E0I6OlB,mBAAmB;EACnB,cAAc;EACd,oBAAoB,EA0GrB;EA/GH;IAOM,qBAAc;IAAd,qBAAc;IAAd,cAAc,EAmCf;IA1CL;MASQ,YAAY,EASb;MAlBP;QAWU,kBAAkB,EAMnB;QAjBT;UAcc,iBAAiB,EAClB;IAfb;MAoBQ,yBAAW,EAqBZ;MAzCP;;;;;QAuBY,iBAAiB,EAClB;MAxBX;QA2Bc,e1I1PM,E0I+PP;QAhCb;UA6BgB,aAAa;UACb,sBAAsB,EACvB;MA/Bf;QAmCY,mBAAmB,EAIpB;QAvCX;UAqCc,gBAAgB,EACjB;EAtCb;IA4CM,mBAAmB,EAqDpB;IAjGL;MA8CQ,cAAc;MACd,mBAAmB;MACnB,OAAO;MACP,SAAS;MACT,cAAc;MACd,gBAAgB,EACjB;IApDP;MAsDQ,oB1IvS+H,E0I8ShI;MA7DP;QAwDU,eAAe,EAChB;MAzDT;QA2DU,oB1I5S6H,E0I6S9H;IA5DT;MAiEY,iBAAiB,EA6BlB;MA9FX;QAmEc,aAAa;QACb,aAAa;QACb,4BAA4B;QAC5B,4BAA4B;QAC5B,6BAA6B,EAa9B;QApFb;UAyEgB,wBAAwB;UACxB,WAAW;UACX,iBAAiB,EAIlB;UA/Ef;YA6EkB,cAAc,EACf;QA9EjB;;UAkFgB,cAAc,EACf;MAnFf;;;;;QAsFc,aAAa,EACd;MAvFb;QAyFc,cAAc,EACf;MA1Fb;QA4Fc,cAAc,EACf;EA7Fb;IAwGgB,e1IjWD,E0IkWA;;AC9Wf;EAEI,iC3IyBkB;E2IxBlB,kBAAkB,EA2EnB;EA9EH;IAKM,oBAAoB,EACrB;EANL;IAQM,oBAAoB,EACrB;EATL;IAWM,+B3IgBgB;I2IfhB,mBAAmB;IACnB,qBAAqB;IACrB,mBAAmB,EA+DpB;IA7EL;MAgBQ,kBAAkB,EACnB;IAjBP;MAmBQ,eAAe;MACf,iBAAiB;MACjB,iBAAiB;M/D0BvB,wBAAwB;MACxB,iBAAiB;MACjB,gBAAgB;MAChB,oBAAoB,E+D3Bf;IAvBP;MAyBQ,sBAAsB,EAUvB;MAnCP;QA2BU,YAAY;QACZ,mBAAmB;QACnB,iBAAiB,EAKlB;QAlCT;UA+BY,gBAAgB;UAChB,mBAAmB,EACpB;IAjCX;MAqCQ,iBAAiB;MACjB,mBAAmB;MACnB,oB3InB+H;M2IoB/H,WAAW;MACX,mC3INE;M2IOF,gBAAgB;MAChB,iBAAiB;MACjB,mBAAmB,EACpB;IA7CP;MA+CQ,mBAAmB;MACnB,mC3IbE;M2IcF,gBAAgB;MAChB,iBAAiB;MACjB,e3IbY,E2Icb;IApDP;MAsDQ,YAAY;MACZ,mBAAmB;MACnB,OAAO;MACP,WAAW;MACX,aAAa;MACb,YAAY;MACZ,oBAAoB,EACrB;IA7DP;MAgEU,oB3I5C0E,E2I6C3E;IAjET;MAqEU,oB3IjD2D,E2IkD5D;IAtET;MA0EU,oB3ItDsB,E2IuDvB;;AC3ET,cAAc;AAEd;EACC,iBAAiB;EACjB,WAAW;EACX,mBAAmB,EAiInB;EApID;IAME,OAAO;IACP,UAAU;IACV,mBAAmB;IACnB,aAAa;IACb,WAAW;IACX,0B5IOkD;I4INlD,UAAU;IACV,oBAAoB,EACpB;EAdF;IAiBE,eAAe;IACf,oBAAoB;IACpB,mBAAmB;IACnB,YAAY;IACZ,oBAAoB,EA8GpB;IAnIF;MAwBG,aAAa;MACb,eAAe,EACf;IA1BH;MA6BG,aAAa;MACb,eAAe;MACf,YAAY,EACZ;IAhCH;MAmCG,mBAAmB;MACnB,cAAc;MACd,mBAAmB;MACnB,oB5I5BY;M4I6BZ,mBAAmB;MACnB,sDAA+B;MAA/B,8CAA+B;MAC/B,WAAW;MACX,iBAAiB,EAqDjB;MA/FH;QA6CI,mBAAmB;QACnB,OAAO;QACP,YAAY;QACZ,YAAY;QACZ,YAAY;QACZ,QAAQ;QACR,SAAS,EACT;MApDJ;QAuDI,mBAAmB;QACnB,SAAS;QACT,aAAa;QACb,sBAAsB;QACtB,mCAAmC;QACnC,gC5IlDW;Q4ImDX,8B5InDW;Q4IoDX,sCAAsC;QACtC,aAAa,EACb;MAhEJ;QAmEI,cAAc;QACd,e5IlDkJ;Q4ImDlJ,0BAA0B,EAC1B;MAtEJ;QA0EK,iBAAiB,EAKjB;QA/EL;UA6EM,gBAAgB,EAChB;MA9EN;QAkFK,iBAAiB,EACjB;MAnFL;QAwFK,qBAAqB,EACrB;MAzFL;QA4FK,kBAAkB,EAClB;IA7FL;MAkGG,YAAY;MACZ,aAAa;MACb,mBAAmB;MACnB,UAAU;MACV,sBAAU;MACV,aAAa;MACb,6BAA6B;MAC7B,4BAA4B;MAC5B,gCAAgC;MAChC,+BAA+B;MAC/B,0B5IlGY,E4IuGZ;MAjHH;QA+GI,e5IrGW,E4IsGX;IAhHJ;MAoHG,iBAAiB;MACjB,mBAAmB,EAanB;MAlIH;QAwHI,kBAAkB;QAClB,kBAAkB,EAQlB;QAjIJ;UA4HK,qBAAqB;UACrB,yBAAyB;UACzB,YAAY;UACZ,YAAY,EACZ;;AAML;EACC;IAEE,qBAAqB,EAWrB;IAbF;MAKG,oBAAoB,EACpB;IANH;MASG,YAAY;MACZ,eAAe;MACf,gBAAgB,EAChB,EAAA;;AAOH;EAGG,oB5I3I4B,E4I4I5B;;AAJH;EAQE,oB5IhJ6B,E4IiJ7B;;AATF;EAGG,oB5I3IgD,E4I4IhD;;AAJH;EAQE,oB5IhJiD,E4IiJjD;;AATF;EAGG,oB5I3IiE,E4I4IjE;;AAJH;EAQE,oB5IhJkE,E4IiJlE;;AATF;EAGG,oB5I3IgF,E4I4IhF;;AAJH;EAQE,oB5IhJiF,E4IiJjF;;AATF;EAGG,oB5I3IkG,E4I4IlG;;AAJH;EAQE,oB5IhJmG,E4IiJnG;;AATF;EAGG,oB5I3ImH,E4I4InH;;AAJH;EAQE,oB5IhJoH,E4IiJpH;;AATF;EAGG,oB5I3ImI,E4I4InI;;AAJH;EAQE,oB5IhJoI,E4IiJpI;;AATF;EAGG,oB5I3IkJ,E4I4IlJ;;AAJH;EAQE,oB5IhJmJ,E4IiJnJ;;AjJ2CH,uEAAuE;AAEvE,mBAAmB;AkJlNnB,kBAAkB;AAIhB;EAFF;IAGG,mBAAmB,EAgLpB,EAAA;;AA7KA;EANF;IAOG,gBAAgB;IAChB,YAAY;IACZ,oB7ICY;I6IAZ,WAAW;IACX,iBAAiB;IACjB,YAAY;IACZ,eAAe;IACf,sBAAsB;IACtB,8BAA8B;IAC9B,2BAA2B,EAmK5B,EAAA;;AAnLF;EAoBG,YAAY;EACZ,aAAa;EACb,aAAa;EACb,iBAAiB,EA2JjB;EAzJA;IAzBH;MA0BI,kBAAkB;MAClB,iBAAiB;MACjB,aAAa;MACb,iBAAiB;MACjB,mBAAmB,EAoJpB,EAAA;EAlLH;IAkCI,WAAW;IACX,iBAAiB;IACjB,aAAa;IACb,sBAAsB,EAyCtB;IA9EJ;MAwCK,mBAAmB;MACnB,yBAAiB;MAAjB,iBAAiB;MACjB,mBAAmB;MACnB,qBAAc;MAAd,qBAAc;MAAd,cAAc;MACd,0BAAoB;MAApB,uBAAoB;MAApB,oBAAoB;MACpB,0BAA+B;MAA/B,uBAA+B;MAA/B,+BAA+B,EAgC/B;MA7EL;QAgDM,qCAAgB,EAChB;MAjDN;QAoDM,e7IlCgJ;Q6ImChJ,oB7IlBsB;Q6ImBtB,sBAAsB,EAOtB;QA7DN;UAyDO,kBAAkB;UAClB,oB7IvBqB;U6IwBrB,iBAAiB,EACjB;MA5DP;QAgEM,oC7I9C0B;Q6I+C1B,mBAAmB,EAKnB;QAtEN;UAoEO,e7IlDyB,E6ImDzB;MArEP;QA0EO,wBAAwB,EACxB;EA3EP;IAiFI,iBAAiB,EAuCjB;IAxHJ;MAoFK,oB7IjDuB;M6IkDvB,e7IjDe;M6IkDf,iBAAiB;MACjB,mC7ItDK,E6IuDL;IAxFL;MA2FK,aAAa;MACb,YAAY;MACZ,oBAAoB;MACpB,4BAAqB;MAArB,4BAAqB;MAArB,qBAAqB;MACrB,wBAA4B;MAA5B,qBAA4B;MAA5B,4BAA4B;MAC5B,qDAAuC;MAAvC,6CAAuC,EAOvC;MAvGL;QAmGM,gBAAgB;QAChB,e7IhEc;Q6IiEd,sBAAsB,EACtB;IAtGN;MA0GK,oB7IxFkH,E6I6FlH;MA/GL;QA6GM,mBAAmB,EACnB;IA9GN;MAkHK,oB7IhGgE,E6IqGhE;MAvHL;QAqHM,kBAAkB,EAClB;EAtHN;IA2HI,gBAAgB,EAChB;EA5HJ;IA+HI,iC7ItGkB;I6IuGlB,eAAe;IACf,eAAe,EAgDf;IAjLJ;MAoIK,iBAAiB,EACjB;IArIL;MAwIK,sBAAsB,EAwCtB;MAhLL;QA4IM,qBAAc;QAAd,qBAAc;QAAd,cAAc;QACd,0BAAoB;QAApB,uBAAoB;QAApB,oBAAoB;QACpB,WAAW;QACX,WAAW;QACX,gBAAgB,EAOhB;QAvJN;UAmJO,gBAAgB;UAChB,YAAY;UACZ,oBAAoB,EACpB;MAtJP;QA0JM,YAAY;QAGZ,yBAAyB,EAkBzB;QA/KN;UAgKO,UAAU;UACV,mC7IhIG;U6IiIH,oB7I/HqB;U6IgIrB,eAAe;UAEf,e7InJ+I;U6IoJ/I,iBAAiB,EACjB;QAvKP;UA0KO,mCAAe;UACf,e7IzJ+I;U6I2J/I,iBAAiB,EACjB;;AA9KP;EAsLE,QAAQ,EACR;;ACzLF,yBAAyB;AACzB;EAEE,+B9IwBoB;E8IvBpB,aAAa;EACb,gBAAgB;EAChB,iBAAiB,EA8EjB;EAnFF;IAQG,sBAAsB,EACtB;EATH;IAYG,iC9IcmB;I8IbnB,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,+BAAoB;IAApB,8BAAoB;IAApB,wBAAoB;IAApB,oBAAoB;IACpB,mBAAmB;IACnB,YAAY,EAkEZ;IAlFH;MAmBI,oBAAoB,EACpB;IApBJ;MAuBI,iBAAiB;MACjB,WAAW;MACX,gBAAgB,EAChB;IA1BJ;MA6BI,WAAW;MACX,gBAAgB;MAChB,iBAAiB,EAkBjB;MAjDJ;QAkCK,iBAAiB;QACjB,oB9ICuB;Q8IAvB,mC9IFK;Q8IIL,eAAe,EACf;MAvCL;QA0CK,UAAU;QACV,eAAe;QACf,iBAAiB;QACjB,wBAAwB;QACxB,oBAAoB,EAEpB;IAhDL;MAsDI,YAAY,EAiBZ;MAvEJ;QAyDK,kBAAkB;QAClB,yBAAyB;QACzB,oBAAoB,EAEpB;MA7DL;QAgEK,eAAe;QACf,YAAY,EAKZ;QAtEL;UAoEM,e9IjDgG,E8IkDhG;IArEN;MA0EI,oC9IvD4B,E8I8D5B;;AClFJ,qBAAqB;AACrB;EAGG,qBAAqB;EACrB,iC/IsBmB;E+IrBnB,qBAAc;EAAd,qBAAc;EAAd,cAAc,EAqBd;EA1BH;IAQI,kBAAkB,EAiBlB;IAzBJ;MAWK,iBAAiB;MACjB,mC/IsBK,E+IrBL;IAbL;MAgBK,oBAAoB;MACpB,mC/IiBK,E+IVL;MAxBL;QAoBM,gBAAgB;QAChB,mC/IaI;Q+IZJ,oBAAoB,EACpB;;AAvBN;EA6BG,mBAAmB,EACnB;;AA9BH;EAkCI,iBAAiB;EACjB,8B/ITkB;E+IUlB,wBAAwB,EAsDxB;EA1FJ;IAuCK,cAAc;IACd,mBAAmB;IACnB,0B/IfiB;I+IgBjB,mBAAmB,EA+CnB;IAzFL;MAgDM,sBAAsB;MACtB,mBAAmB,EAUnB;MA3DN;QAuDO,gBAAgB;QAChB,UAAU;QACV,e/ItC+I,E+IuC/I;IA1DP;MA+DO,eAAe;MAEf,iBAAiB;MACjB,e/I/C+I,E+IgD/I;IAnEP;MA0EQ,mBAAmB;MACnB,iBAAiB;MACjB,oB/IxCoB,E+IyCpB;IA7ER;MAgFQ,oB/I5CoB;M+I6CpB,mBAAmB,EAKnB;MAtFR;QAoFS,gBAAgB,EAChB;;ApJiIT,uEAAuE;AAEvE,8BAA8B;AqJzN9B,gBAAgB;AAChB;EACC,aAAa;EACb,cAAc;EACd,YAAY,EAKZ;EARD;IAME,oBhJ8B0B,EgJ7B1B;;ACRF,mBAAmB;AAEnB;EACC,mBAAmB;EACnB,iBAAiB;EACjB,mBAAmB;EACnB,iBAAiB;EACjB,mBAAmB;EACnB,WAAW;EACX,yBAAa;EACb,SAAS;EACT,UAAU;EACV,cAAc;EACd,oBjJwB2B;EiJvB3B,mCjJqBS;EiJpBT,qBAAqB;EACrB,kBAAkB;EAClB,oBAAoB;EACpB,8BAAwB;EAIxB,sBAAgB,EAMhB;EA1BD;IAsBE,oBjJa0B;IiJZ1B,mCjJUQ;IiJTR,qBAAqB,EACrB;;AAGF;EACC,iBjJpBW;EiJqBX,YAAY;EACZ,gBAAgB;EAChB,OAAO;EACP,QAAQ;EACR,UAAU;EACV,SAAS;EACT,aAAa;EACb,mBAAmB;EACnB,WAAW;EACX,yBAAa,EACb;;AAED;;;EAGC,kCAAkC;EAIlC,0BAA0B;EAC1B,sCAAsC;EAItC,8BAA8B,EAC9B;;AAED;EACC,iBAAiB,EACjB;;AAED;EACC,oBAAoB;EACpB,WAAW;EACX,2BAAa;EACb,8BAAwB;EAIxB,sBAAgB,EAChB;;AAED;EACC,oBAAoB;EACpB,aAAa;EACb,0BAAa;EACb,gBAAgB,EAChB;;AAED;EACC,8BAAwB;EAIxB,sBAAgB,EAChB;;AAED;EACC,8BAAwB;EAIxB,sBAAgB,EAChB;;AAID,kCAAkC;AAElC;EACC,eAAe;EACf,YAAY;EACZ,oBjJjEmB;EiJkEnB,gBAAgB;EAChB,sBAAsB;EACtB,0BAA0B;EAC1B,mBAAmB;EACnB,UAAU;EACV,YAAY;EACZ,aAAa;EACb,YAAY;EACZ,mBAAmB;EACnB,kBAAkB;EAClB,oBAAoB,EAKpB;EAnBD;IAgBE,YAAY;IACZ,sBAAsB,EACtB;;ACvHF,oBAAoB;AACpB;EACE,WAAW;EACX,UAAU;EACV,mClJ+BQ;EkJ9BR,oBlJOa,EkJkCd;EA7CD;IAOI,oBlJY4B;IkJX5B,elJGW;IkJFX,qBAAqB;IACrB,mClJwBM;IkJvBN,iBAAiB,EAClB;EAZH;IAiBQ,2BlJNO,EkJOR;EAlBP;IAyBQ,4BlJdO,EkJeR;EA1BP;IAiCQ,0BlJtBO,EkJuBR;EAlCP;IAyCQ,6BlJ9BO,EkJ+BR;;AAKP;EACE,cAAc,EACf;;AClDD;EAEI,iBAAiB;EACjB,gBAAgB;EAChB,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,+BAAoB;EAApB,8BAAoB;EAApB,wBAAoB;EAApB,oBAAoB;EACpB,oBAAgB;EAAhB,gBAAgB,EAajB;EApBH;IASM,iBAAiB;IACjB,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,0BAAoB;IAApB,uBAAoB;IAApB,oBAAoB,EAQrB;IAnBL;MAaQ,aAAa;MACb,YAAY;MACZ,mBAAmB;MACnB,sBAAsB;MACtB,oBnJoBoB,EmJnBrB;;AAGL;EAEI,iBAAiB,EASlB;EAXH;IAIM,gBAAgB;IAChB,gBAAgB,EAKjB;IAVL;MAOQ,gBAAgB;MAChB,kBAAkB,EACnB;;AC9BT,cAAc;AAId;EACE,gBAAe;EACf,kBAAkB;EAClB,sBAAsB,EACvB;;AAED;EACE,gBAAe;EACf,mBAAmB;EACnB,sBAAsB,EACvB;;AAGD;EACE,gBAAe;EACf,kBAAkB;EAClB,sBAAsB,EACvB;;AAED;EACE,gBAAe;EACf,mBAAmB;EACnB,sBAAsB,EACvB;;AAGD;EACE,gBAAe;EACf,kBAAkB;EAClB,sBAAsB,EACvB;;AAED;EACE,gBAAe;EACf,mBAAmB;EACnB,sBAAsB,EACvB;;AAKD;EACE,gBAAe;EACf,mBAAmB;EACnB,oBAAoB;EACpB,sBAAsB,EACvB;;AAGD;EACE,gBAAe;EACf,mBAAmB;EACnB,oBAAoB;EACpB,sBAAsB,EACvB;;AAGD;EACE,gBAAe;EACf,mBAAmB;EACnB,oBAAoB;EACpB,sBAAsB,EACvB;;AAGD;EACE,gBAAe;EACf,mBAAmB;EACnB,oBAAoB;EACpB,sBAAsB,EACvB;;AAKD;EACE,cAAa;EACb,kBAAkB,EACnB;;AAGD;EACE,cAAa;EACb,kBAAkB,EACnB;;AAGD;EACE,cAAa;EACb,kBAAkB,EACnB;;AAGD;EACE,cAAa;EACb,kBAAkB,EACnB;;AAKD;EACE,cAAa,EACd;;AAED;EACE,cAAa,EACd;;AAED;EACE,cAAa,EACd;;AAED;EACE,cAAa,EACd;;AAED;EAGI,gBAAe;EACf,mBAAmB;EACnB,oBAAoB;EACpB,sBAAsB,EACvB;;AAPH;EAUI,gBAAe;EACf,mBAAmB;EACnB,oBAAoB;EACpB,sBAAsB,EACvB;;AAdH;EAiBI,gBAAe;EACf,mBAAmB;EACnB,oBAAoB;EACpB,sBAAsB,EACvB;;AArBH;EAwBI,gBAAe;EACf,mBAAmB;EACnB,oBAAoB;EACpB,sBAAsB,EACvB;;ACrJH,gBAAgB;AAChB;EACE,gBAAgB;EAChB,aAAa;EACb,iBAAiB;EACjB,iBAAiB,EAKlB;EATD;IAOI,iBAAiB,EAClB;;ACTH,aAAa;AACb;EACE,+BAAuB;EAAvB,uBAAuB,EACxB;;AAED;EACE,8BAAsC,EACvC;;AAED;EACE,eAAe;EACf,YAAY;EACZ,YAAY,EACb;;AAED;EACE,YAAY;EACZ,WAAW;EACX,iBAAiB;EACjB,oCAAgB,EACjB;;AAED;EACE,gBAAgB,EACjB;;AACD,qBAAqB;AACrB;;EAEE,cAAc,EACf;;AACD;EACE;IACE,WAAW,EACZ;EAED;IACE,eAAe,EAChB,EAAA;;AAEH;EACE;IACE,aAAa,EACd;EAED;;IAEE,eAAe,EAChB,EAAA;;AAGH;EACE,oBAAe;EACf,oBAAoB,EACrB;;AAED;EACE,aAAa,EACd;;AAED;EACE,cAAc,EACf;;AAED;EACE,cAAc,EACf;;ACjED,iBAAiB;AACjB;EACE,mBAAmB,EACpB;;AAED;EACE,aAAa;EAEb,cAAc;EACd,0BvJkBoB;EuJjBpB,kBAAkB,EAOnB;EAZD;IAQI,WAAW;IACX,YAAY;IACZ,mBAAmB,EACpB;;AChBH,kBAAkB;AAClB;EAEI,YxJQQ;EwJPR,0DAA0D,EAC3D;;AAJH;EAQM,iBAAiB,EAClB;;AATL;EAcM,iBAAiB,EAClB;;AAfL;EAoBM,iBAAiB,EAClB;;AArBL;EA0BM,iBAAiB,EAClB;;AA3BL;EAgCM,iBAAiB,EAClB;;AAjCL;EAsCM,iBAAiB,EAClB;;AAIL;EACE,yBAAiB;EAAjB,iBAAiB;EACjB,0BxJnBoB,EwJoCrB;EAnBD;IAMM,YxJvCM;IwJwCN,mBAAmB;IACnB,mCxJjBI,EwJkBL;EATL;IAYM,iBxJ7CM,EwJkDP;IAjBL;MAeQ,exJ/CO,EwJgDR;;AC5DP,iBAAiB;AACjB;EACC,0BzJyBqB,EyJQrB;EAlCD;IAMI,2BzJoBkB,EyJnBlB;EAPJ;IAcI,4BzJYkB,EyJXlB;EAfJ;IAsBI,0BzJIkB,EyJHlB;EAvBJ;IA8BI,6BzJnBW,EyJoBX;;AChCJ,iBAAiB;AAEjB;EACE,gBAAgB;EAChB,iBAAiB,EAyDlB;EA3DD;IAII,qBAAqB,EACtB;EALH;IAQI,gBAAgB,EACjB;EATH;IAYM,qBAAqB;IACrB,sBAAsB,EACvB;EAdL;IAiBI,qB1J6IoB,E0J5IrB;EAlBH;IAoBI,kBAAkB;IAClB,iBAAiB;IACjB,4DAAoC;IAApC,oDAAoC,EACrC;EAvBH;IAyBI,qCAAqC,EA0BtC;IAnDH;MA2BM,qBAAqB;MACrB,oBAAoB,EACrB;IA7BL;;;;;;;;;MAsCU,cAAc,EACf;IAvCT;MA0CQ,uBAAuB;MACvB,mB1JwGsB,E0JvGvB;IA5CP;MAgDQ,YAAY,EACb;EAjDP;IAqDI,iBAAiB,EAClB;EAtDH;IAwDI,oB1JrBwB;I0JsBxB,e1JrBgB,E0JsBjB;;AC5DH,gBAAgB;AAChB;;EAEC,gBAAgB;EAChB,WAAW;EACX,iBAAiB;EACjB,iBAAiB,EAyIjB;EA9ID;;IAQE,uBAAuB,EAqIvB;IA7IF;;MAWG,YAAY,EAiIZ;MA5IH;;QAgBM,mBAAmB;QACnB,kBAAkB,EAyClB;QA1DN;;UAoBO,e1JLW;U0JMX,qBAAqB;UACrB,kBAAkB;UAClB,iBAAiB;UACjB,oB3JbQ,E2JcR;QAzBP;;UA4BO,e1JbW;U0JcX,oB3JlBQ;U2JmBR,qBAAqB;UACrB,kBAAkB;UAClB,gBAAgB;UAChB,iBAAiB,EACjB;QAlCP;;UAqCO,YAAY;UACZ,qBAAqB;UACrB,kBAAkB;UAClB,kBAAkB;UAClB,oB3J9BQ,E2J+BR;QA1CP;;UA6CO,mC3JXG;U2JYH,e1J/BW;U0JgCX,oBAAoB;UACpB,qBAAqB,EASrB;UAzDP;;YAmDQ,iBAAiB,EACjB;UApDR;;YAuDQ,kBAAkB,EAClB;MAxDR;;QA+DI,mBAAmB;QACnB,UAAU,EA2EV;QA3IJ;;UAmEK,mBAAmB,EAuEnB;UA1IL;;YAsEM,qBAAqB;YACrB,kBAAkB;YAClB,e1JzDY,E0JoHZ;YAnIN;;cA2EO,oB3JhEQ,E2JiER;YA5EP;;cA+EO,iBAAiB,EACjB;YAhFP;;cAmFO,kBAAkB,EAClB;YApFP;;cAuFO,YAAY;cACZ,wBAAwB;cACxB,mBAAmB;cACnB,WAAW,EAiBX;cA3GP;;gBA6FQ,YAAY;gBACZ,YAAY;gBACZ,aAAa;gBACb,oB3J7E6D;gB2J8E7D,oBAAmB;gBACnB,eAAe;gBACf,aAAa;gBACb,uBAAuB;gBACvB,mBAAmB;gBACnB,SAAS;gBACT,YAAY;gBACZ,QAAQ;gBACR,SAAS,EACT;YA1GR;;cA8GO,YAAY;cACZ,wBAAwB;cACxB,mBAAmB;cACnB,WAAW,EAiBX;cAlIP;;gBAoHQ,YAAY;gBACZ,YAAY;gBACZ,aAAa;gBACb,oB3JpGwB;gB2JqGxB,oBAAmB;gBACnB,eAAe;gBACf,aAAa;gBACb,uBAAuB;gBACvB,mBAAmB;gBACnB,SAAS;gBACT,YAAY;gBACZ,QAAQ;gBACR,SAAS,EACT;UAjIR;;YAsIM,eAAa,EACb;;AASN;EACC,YAAY;EACZ,gBAAgB;EAChB,iBAAiB,EA2BjB;EA9BD;IASK,YAAY;IACZ,uBAAuB;IACvB,oBAAoB,EACpB;EAZL;IAeK,e3J5I2B;I2J6I3B,uBAAuB;IACvB,oBAAoB,EACpB;EAlBL;IAqBK,YAAY;IACZ,uBAAuB;IACvB,oBAAoB,EACpB;;AAQL;EAEE,iBAAiB;EACjB,0BAA0B;EAC1B,iBAAiB;EACjB,gBAAgB;EAChB,iBAAiB;EACjB,iBAAiB;EACjB,eAAe;EACf,mBAAmB;EACnB,oBAAoB;EACpB,mBAAmB,EACnB;;AAZF;EAeE,0B3JrKoB;E2JsKpB,WAAW,EAKX;EArBF;;;;;;;;;IAmBG,aAAa,EACb;;ACrMH,aAAa;AAEb;EACC,2B5JwBqB;E4JvBrB,mBAAmB,EAsDnB;EAxDD;IAIE,2BAA2B;IAE3B,iJAAiC;IACjC,8CAA8C;IAC9C,sCAAsC,EACtC;EATF;IAaI,sBAAsB;IACtB,0DAA0D;IAC1D,mBAAmB;IACnB,qBAAqB;IACrB,qBAAqB;IACrB,oCAAoC;IACpC,iBAAiB;IACjB,e5JiBgB;I4JhBhB,mBAAmB,EACnB;EAtBJ;IAyBG,qBAAqB;IACrB,e5JWiB,E4JVjB;EA3BH;IA+BG,qCAAgB,EAYhB;IA3CH;MAkCK,e5JhB2B;M4JiB3B,gBAAgB;MAChB,iBAAiB,EACjB;IArCL;MAuCK,YAAY;MACZ,iBAAiB,EACjB;EAzCL;IA8CI,aAAa,EACb;EA/CJ;IAmDE,iBAAiB;IACjB,aAAa;IACb,iBAAiB;IACjB,e3JxCgB,E2JyChB;;ACzDF,cAAc;AACd;EACE,0B7JyBoB;E6JxBpB,cAAc,EAWf;EAbD;IAKI,mBAAmB;IACnB,YAAY,EAMb;IAZH;MASM,qBAAqB;MACrB,e7J4Bc,E6J3Bf;;ACZL,gBAAgB;AAChB;EACE,+BAAuB;EAAvB,uBAAuB;EACvB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,iBAAiB,EAClB;;AAED;EACE,YAAY;EACZ,mBAAmB;EAOnB,gBAAgB;EAChB,cAAc,EACf;EAXD;IAKI,8BAA8B;IAC9B,OAAO;IACP,UAAU,EACX;;ACjBH,mBAAmB;AAEnB;EAEI,oB/JQW;E+JPX,qBAAqB;EACrB,iBAAiB,EA4FlB;EAhGH;IAOM,mBAAmB,EA6DpB;IApEL;MAUQ,yBAAiB;MAAjB,iBAAiB;MACjB,kBAAkB;MAClB,gBAAgB;MAChB,qBAAqB;MACrB,iBAAiB;MACjB,kBAAkB;MAClB,aAAa;MACb,oB/JCwB;M+JAxB,e/JRO;M+JSP,kBAAkB;MAClB,kCAA0B;MAA1B,0BAA0B,EA+C3B;MAnEP;QAuBU,0BAA0B,EAC3B;MAxBT;QA2BU,oBAAkB;QAClB,e/JlBK,E+JmBN;MA7BT;QAiCU,oB/JvBK;Q+JwBL,e/JhBsB;Q+JiBtB,kBAAkB;QAClB,kBAAkB;QAClB,eAAe;QACf,aAAa,EAYd;QAlDT;UAyCY,UAAU;UACV,WAAW,EAOZ;UAjDX;YA6Cc,0DAA0D;YAC1D,eAAe;YACf,kBAAkB,EACnB;MAhDb;QAuDc,iBAAiB,EAClB;MAxDb;QA+Dc,iBAAiB,EAClB;EAhEb;IAuEM,yBAAiB;IAAjB,iBAAiB;IACjB,kBAAkB;IAClB,mBAAmB;IACnB,kBAAkB;IAClB,qBAAqB;IACrB,iBAAiB;IACjB,kBAAkB;IAClB,aAAa;IACb,oB/J7D0B;I+J8D1B,e/JtES;I+JuET,kBAAkB;IAClB,kCAA0B;IAA1B,0BAA0B,EAK3B;IAvFL;MAqFQ,0BAA0B,EAC3B;EAtFP;IA2FQ,oBAAoB;IACpB,iBAAiB;IACjB,0BAA0B,EAC3B;;AA9FP;EAoGM,oB/J9Ea,E+JmLd;EAzML;IAwGU,aAAa,EA6Bd;IArIT;MA6GgB,aAAa,EAgBd;MA7Hf;QAiHoB,aAAa,EAUd;QA3HnB;UAqHwB,0BAA0B;UAC1B,qBAAqB;UACrB,sB/J9FF;U+J+FE,oB/JrFI,E+JsFL;IAzHvB;MAgIgB,sBAAsB;MACtB,oBAAoB,EACrB;EAlIf;IAwIU,oB/J9HK,E+J6LN;IAvMT;MA4Ic,sB/JnHQ,E+J4KT;MArMb;QAiJoB,sB/JxHE,E+JyKH;QAlMnB;UAuJ4B,sB/J9HN,E+J+HK;QAxJ3B;UAkK8B,aAAa;UACb,oB/JhIF;U+JiIE,iBAAiB,EAClB;QArK7B;UA8KkC,oB/J5JmC;U+J6JnC,aAAa;UACb,2BAA2B;UAC3B,iBAAiB;UACjB,e/JxKnB;U+J0KmB,mBAAmB,EACpB;QArLjC;UAyLgC,iBAAiB;UACjB,e/JxKsH;U+JyKtH,eAAe,EAChB;;AC9L/B,mBAAmB;AACnB;EAEI,YAAY;EACZ,cAAc;EACd,kBAAkB;EAClB,gBAAgB,EACjB;;ACPH,YAAY;AACZ;;;;EAIE,sBAAsB,EAQvB;EAZD;;;;IAOI,qBAAqB;IACrB,iBAAiB;IACjB,iBAAiB;IACjB,iBAAiB,EAClB;;ACZH,wBAAwB;AACxB;EACE,sBlKyBoB;EkKxBpB,qBAAqB;EACrB,gBAAgB,EAgBjB;EAnBD;IAOM,qBAAqB;IACrB,elK8Bc;IkK7Bd,qBAAqB,EACtB;EAVL;IAcI,oBlKKgF;IkKJhF,yBAAiB;IAAjB,iBAAiB;IACjB,aAAa,EAEd;;AAGH;EACE,kBAAkB,EAKnB;EAND;IAII,gBAAgB,EACjB;;AC3BH,aAAa;AACb;EAEE,+DAAqB,EACrB;;AAHF;EAME,0BnKoBoB;EmKnBpB,cAAc,EACd;;AARF;EAcG,qBAAqB;EACrB,mCnKmBO,EmKlBP;;AAhBH;EA2BI,mBAAmB,EACnB;;AA5BJ;EAkCG,iBAAiB;EACjB,aAAa,EACb;;AApCH;EAyCG,8CnKHiB,EmKIjB;;AA1CH;EA+CG,8CAAiD,EACjD;;AAhDH;EAoDE,eAAe;EACf,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB,EAWpB;;AAjEF;EAoEE,wBAAwB;EACxB,qBAAqB;EACrB,kBAAkB,EAClB;;ACxEF,gBAAgB;AAChB;EACE,oBpKUa,EoKTd;;ACHD,mBAAmB;AACnB;EACE,YAAY;EACZ,UAAU,EAiCX;EAnCD;IAKI,mBAAmB;IAMnB,oBAAoB,EAuBrB;IAlCH;MAeM,mBAAmB;MACnB,OAAO;MACP,UAAU;MACV,QAAQ;MACR,SAAS,EASV;MA5BL;QAsBQ,eAAe;QACf,aAAa;QACb,WAAW;QACX,gBAAgB;QAChB,gBAAgB,EACjB;IA3BP;MA+BM,gBAAgB;MAChB,YAAY,EACb;;AClCL,aAAa;AACb;EAEI,0BtKUiB;EsKTjB,etKiBiO;EsKhBjO,iBAAiB,EAClB;;AALH;EAUI,iBAAiB;EACjB,gBAAgB,EAgBjB;EA3BH;IAcM,eAAe;IACf,iCtKWgB;IsKVhB,mBAAmB,EAUpB;IA1BL;MAmBQ,etKAwB,EsKCzB;IApBP;MAuBQ,etKH6N;MsKI7N,UAAU,EACX;;AC1BP,kBAAkB;AAElB;EACE,aAAa;EACb,yBAAiB;EAAjB,iBAAiB;EACjB,iBAAiB,EAmFlB;EAtFD;IAKI,gBAAgB,EAIjB;IATH;MAOM,YAAY,EACb;EARL;IAWI,eAAe;IACf,cAAc;IACd,sBAAsB,EAIvB;IAjBH;MAeM,WAAW,EACZ;EAhBL;IAmBI,oBvKAyP;IuKCzP,yBAAiB;IAAjB,iBAAiB;IACjB,aAAa,EA6Cd;IAlEH;MAuBM,oBvKL0B;MuKM1B,yBAAiB;MAAjB,iBAAiB,EAClB;IAzBL;MA2BM,oBvKT+D,EuK+ChE;MAjEL;QA6BQ,mBAAmB;QACnB,oBvKpBO;QuKqBP,oBAAoB;QACpB,0BvKPc;QuKQd,YAAY;QACZ,aAAa;QACb,UAAU;QACV,cAAc;QACd,kCAA0B;QAA1B,0BAA0B,EA2B3B;QAhEP;UAwCU,cAAc,EACf;QAzCT;UA2CU,eAAe;UACf,mBAAmB;UACnB,SAAS;UACT,QAAQ;UACR,SAAS;UACT,aAAa;UACb,WAAW;UACX,YAAY;UACZ,oBvKjCsB;UuKkCtB,oBAAoB,EACrB;QArDT;UAuDU,mCvKtBA;UuKuBA,mBAAmB;UACnB,aAAa;UACb,eAAe;UACf,oBvKxBkB;UuKyBlB,mBAAmB;UACnB,aAAa,EACd;EA9DT;;IAsEM,oBvK7CgB,EuK8CjB;EAvEL;IAyEM,YAAY;IACZ,WAAW,EACZ;EA3EL;IA6EM,YAAY;IACZ,WAAW,EACZ;EA/EL;IAiFM,YvKxEM;IuKyEN,mBAAmB;IACnB,mCvKlDI,EuKmDL;;AAIL,6BAA6B;ACvFzB;EACE,oBxKgB0B,EwKf3B;;AAED;EACE,oBxKY0B,EwKA3B;EAVC;IAEI,oBxKQsB,EwKPvB;EAED;IACE,oBxKIsB;IwKHtB,exKLK,EwKMN;;AAfL;EACE,oBxKgB8C,EwKf/C;;AAED;EACE,oBxKY8C,EwKA/C;EAVC;IAEI,oBxKQ0C,EwKP3C;EAED;IACE,oBxKI0C;IwKH1C,exKLK,EwKMN;;AAfL;EACE,oBxKgB+D,EwKfhE;;AAED;EACE,oBxKY+D,EwKAhE;EAVC;IAEI,oBxKQ2D,EwKP5D;EAED;IACE,oBxKI2D;IwKH3D,exKLK,EwKMN;;AAfL;EACE,oBxKgB8E,EwKf/E;;AAED;EACE,oBxKY8E,EwKA/E;EAVC;IAEI,oBxKQ0E,EwKP3E;EAED;IACE,oBxKI0E;IwKH1E,exKLK,EwKMN;;AAfL;EACE,oBxKgBgG,EwKfjG;;AAED;EACE,oBxKYgG,EwKAjG;EAVC;IAEI,oBxKQ4F,EwKP7F;EAED;IACE,oBxKI4F;IwKH5F,exKLK,EwKMN;;AAfL;EACE,oBxKgBiH,EwKflH;;AAED;EACE,oBxKYiH,EwKAlH;EAVC;IAEI,oBxKQ6G,EwKP9G;EAED;IACE,oBxKI6G;IwKH7G,exKLK,EwKMN;;AAfL;EACE,oBxKgBiI,EwKflI;;AAED;EACE,oBxKYiI,EwKAlI;EAVC;IAEI,oBxKQ6H,EwKP9H;EAED;IACE,oBxKI6H;IwKH7H,exKLK,EwKMN;;AAfL;EACE,oBxKgBgJ,EwKfjJ;;AAED;EACE,oBxKYgJ,EwKAjJ;EAVC;IAEI,oBxKQ4I,EwKP7I;EAED;IACE,oBxKI4I;IwKH5I,exKLK,EwKMN;;AClBT,kBAAkB;AAClB;EAEI,mBAAmB,EACpB;;AAHH;EAOM,mBAAmB;EACnB,SAAS;EACT,YAAY;EACZ,cAAc,EA2Bf;EArCL;;IAcQ,wBAAwB;IACxB,ezKJO,EyKiBR;IA5BP;;MAmBY,YAAY;MACZ,aAAa;MACb,+BzKXA;MyKYA,oBAAoB;MACpB,kBAAkB;MAClB,kBAAkB;MAClB,kBAAkB,EACnB;EA1BX;IA+BQ,YAAY,EACb;EAhCP;IAmCQ,aAAa,EACd;;AApCP;EAwCM,iBAAiB,EAClB;;AAzCL;EA6CI,aAAa;EACb,cAAc,EACf;;AChDH,oBAAoB;AACpB;EACE,oBAAoB,EAMrB;EAPD;IAII,oB1KsBkB;I0KrBlB,oBAAoB,EACrB;;AAGH;EACE,YAAY,EACb;;ACZD,cAAc;AAEd;EAEE,iC3KgB8B,E2KiB9B;EAnCF;IAMK,yBAAyB,EACzB;EAPL;IAWK,gC3KO2B;I2KN3B,yBAAyB,EACzB;EAbL;IAgBI,0B3KE4B;I2KD5B,oBAAoB;IACpB,mBAAmB;IACnB,iBAAiB;IACjB,e3KF4B;I2KG5B,qBAAqB;IACrB,gBAAgB;IAChB,iBAAiB;IACjB,gBAAgB,EAShB;IAjCJ;MA0BK,iBAAiB;MACjB,e3KT2B,E2KU3B;IA5BL;MA8BK,oB3KZ2B;M2Ka3B,YAAY,EACZ;;AAhCL;EAqCE,0B3KnB8B;E2KoB9B,6BAA6B;EAC7B,iBAAiB;EACjB,oB3KtBqI;E2KuBrI,oBAAoB;EACpB,oBAAoB,EAIpB;EA9CF;IA4CG,oBAAoB,EACpB;;AA7CH;EAiDG,mBAAmB;EACnB,oBAAoB,EAsBpB;EAxEH;IAsDM,yBAAyB,EACzB;EAvDN;IA2DM,iC3KzC0B;I2K0C1B,yBAAyB;IACzB,gBAAgB,EAChB;EA9DN;IAiEK,iBAAiB;IACjB,0B3KhD2B;I2KiD3B,mBAAmB;IACnB,oBAAoB;IACpB,iBAAiB,EACjB;;AAtEL;EA6EG,iBAAiB,EACjB;;AA9EH;EAgFG,8B3K9D6B;E2K+D7B,mBAAmB;EACnB,oBAAoB,EAsBpB;EAxGH;IAsFM,yBAAyB,EACzB;EAvFN;IA2FM,yBAAyB;IACzB,gC3K1E0B,E2K2E1B;EA7FN;IAgGK,iBAAiB;IACjB,0B3K/E2B;I2KgF3B,iBAAiB;IACjB,mBAAmB;IACnB,gBAAgB;IAChB,iBAAiB,EACjB;;AAtGL;EA4GG,mBAAmB,EACnB;;AA7GH;EAqHM,yBAAyB;EACzB,gC3KpG0B,E2KqG1B;;AAvHN;EA2HM,mBAAmB;EACnB,yBAAyB,EACzB;;AA7HN;EAgIK,0B3K9G2B;E2K+G3B,oBAAoB;EACpB,mBAAmB;EACnB,gBAAgB;EAChB,eAAe,EACf;;ACvIL,kBAAkB;AAClB;EACE,cAAc,EACf;;AAED;;EAGI,sB5KmBkB,E4KlBnB;;ACTH,YAAY;AAEZ;;EAIM,gBAAgB;EAChB,kBAAkB,EAInB;EATL;;IAOQ,gBAAgB,EACjB;;AARP;;;;EAaQ,eAAe,EAChB;;AAKP;;;;;EAOM,0CAA8B;EAC9B,eAAe,EAKhB;EAbL;;;;;;;;;IAWQ,0BAA0B,EAC3B;;AAKP;EAGM,sCAA0B;EAC1B,+BAAmB,EAMpB;EAVL;IAOQ,sBAAsB;IACtB,eAAe,EAChB;;AAKP;;;;EAMM,e7KnBc;E6KoBd,oB7KtBsB;E6KuBtB,qBAAqB,EACtB;;AAIL;EACE,aAAa,EAOd;EARD;IAGI,aAAa,EAId;IAPH;MAKM,eAAe,EAChB;;AAIL;EAGM,iBAAiB,EAClB;;AC/EL,aAAa;AACb;EAEI,oB9KiB4B,E8KhB7B;;AAHH;;;EAQI,sB9KkBkB,E8KbnB;EAbH;;;IAWM,sB9KegB,E8KdjB;;AAZL;EAgBI,aAAa,EAUd;EA1BH;IAwBM,kBAAkB,EACnB;;AAzBL;EA6BI,qBAAqB,EACtB;;AA9BH;EAkCM,sB9KRgB,E8KSjB;;AAnCL;EAwCM,e9K7BS;E8K8BT,UAAU;EACV,mBAAmB;EACnB,aAAa;EACb,oBAAoB;EACpB,qBAAqB;EACrB,eAAe,EAyBhB;EAvEL;IAiDQ,e9KtCO,E8KuCR;EAlDP;IAqDQ,oB9KlCwB,E8KmCzB;EAtDP;IAyDQ,oB9KtC6D,E8KuC9D;EA1DP;IA6DQ,oB9K1C4E,E8K2C7E;EA9DP;IAiEQ,oB9K9C+G,E8K+ChH;EAlEP;IAqEQ,oB9KlD8F,E8KmD/F;;ACvEP,uBAAuB;AACvB;EAEI,0B/KwBkB,E+KvBnB;;AAGH;EACE,0B/KmBoB,E+KlBrB;;ACTD,gBAAgB;AAEhB;EACE,cAAc,EACf;;AAED;EACE,kBAAkB;EAElB,0BAAoB;EAApB,uBAAoB;EAApB,oBAAoB;EACpB,yBAAwB;EAAxB,sBAAwB;EAAxB,wBAAwB;EACxB,6BAAuB;EAAvB,8BAAuB;EAAvB,2BAAuB;EAAvB,uBAAuB;EACvB,oBAAmB,EAmDpB;EAzDD;IAQI,gBAAgB;IAChB,eAAe;IACf,mChLmBM;IgLlBN,ehLsBgB;IgLrBhB,qBAAqB;IACrB,iBAAiB,EAClB;EAdH;;IAiBI,cAAc;IACd,oBAAoB,EACrB;EAnBH;IAqBI,cAAc;IACd,WAAW,EAqBZ;IA3CH;MAyBM,cAAc;MACd,qBAAqB,EAgBtB;MA1CL;QA6BQ,qCAAiD;QACjD,qCAAiD;QACjD,qBAAqB;QACrB,iBAAiB,EAClB;MAjCP;QAoCQ,iBAAiB;QACjB,qCAAmC;QACnC,0BhLjBc;QgLkBd,ehLNY;QgLOZ,qBAAqB,EACtB;EAzCP;IA6CI,oBhLdwB;IgLexB,mChLjBM;IgLkBN,ehLdgB;IgLehB,qBAAqB;IACrB,iBAAiB,EAClB;EAlDH;IAoDI,gBAAgB,EACjB;EArDH;IAuDI,YAAY,EACb;;AC9DH,eAAe;AACf;EACE,YAAY;EACZ,aAAa;EACb,oBAAoB,EAMrB;EATD;IAMI,YAAY;IACZ,aAAa,EACd;;AAGH;EACE,YAAY;EACZ,aAAa,EAMd;EARD;IAKI,YAAY;IACZ,aAAa,EACd;;AAGH;EACE,YAAY;EACZ,aAAa;EACb,oBAAoB,EAMrB;EATD;IAMI,YAAY;IACZ,aAAa,EACd;;AC9BH,UAAU;AACV;EACE,wBAAwB;EACxB,sBlLwBoB,EkLTrB;EAjBD;IAKI,oBlLc4B;IkLb5B,UAAU;IACV,elLIW;IkLHX,kBAAkB;IAClB,qBAAqB;IACrB,qBAAqB;IACrB,eAAe,EAKhB;IAhBH;MAcM,elLHS,EkLIV;;AChBL,oBAAoB;AACpB;;EAGI,sBnLuBkB,EmLtBnB;;ACLH,WAAW;AACX;EAEI,0BpLiBiE,EoLhBlE;;AAHH;EAMI,0BpLagF,EoLZjF;;AAPH;EAUI,0BpLSkG,EoLRnG;;AAXH;EAcI,0BpLKmH,EoLJpH;;AChBH,eAAe;AACf;;EAEE,iBAAiB,EAClB;;AAED;EACE,gBAAgB,EACjB;;AAQD;EACE,0BrLLa,EqLUd;EAND;IAII,sBrLOkB,EqLNnB;;AAGH;EACE,yDAAwC;EAExC,iDAAgC,EACjC;;AAED;EACE,epLfgB,EoLgBjB;;AAED;EACE,YAAY;EACZ,eAAe;EACf,eAAe;EACf,0BrL1Ba;EqL2Bb,0BrLZoB;EqLepB,mBAAmB;EACnB,kDAAmC;EAEnC,0CAA2B,EAC5B;;AAED;EACE,kBAAkB;EAClB,mBAAmB,EAgBpB;EAlBD;IAKI,gBAAgB;IAChB,erL1CW;IqL2CX,0BrLnC4B,EqLoC7B;EARH;IAWI,erL/CW;IqLgDX,0BrLxC4B,EqLyC7B;EAbH;IAgBI,UAAU,EACX;;ACjEH,iBAAiB;AACjB;EAEI,aAAa,EACd;;AAHH;;EAOI,aAAa;EACb,aAAa;EACb,+BAA+B;EAC/B,2BAA2B;EAE3B,uBAAuB,EACxB;;AAbH;EAgBI,cAAc;EACd,0BtLSkB;EsLRlB,qBAAqB;EACrB,gBAAgB,EACjB;;AApBH;EAuBI,aAAa;EACb,0BtLEkB,EsLDnB;;AAzBH;;EA6BI,kBAAkB,EACnB;;AA9BH;EAiCI,gBAAgB;EAChB,aAAa;EACb,uBAAuB,EACxB;;AApCH;EAuCI,etLpBmH,EsLqBpH;;AAxCH;EA2CI,etLxBiE,EsLyBlE;;AA5CH;EA+CI,etL5BgF,EsL6BjF;;AAhDH;;EAoDI,4BtL1BkB,EsL2BnB;;AArDH;EAwDI,iBAAiB;EACjB,cAAc;EACd,iBAAiB;EACjB,eAAe;EACf,cAAc,EACf;;AA7DH;EAgEI,eAAe;EACf,mBAAmB;EACnB,uBAAuB;EACvB,mBAAmB;EACnB,iBAAiB,EAClB;;AArEH;EAwEI,sBAAsB;EACtB,cAAc;EACd,mBAAmB;EACnB,gBAAgB;EAChB,mBAAmB;EACnB,sBAAsB;EACtB,oBtLnEW;EsLoEX,0BtLrDkB;EsLsDlB,iBAAiB;EACjB,cAAc;EACd,etL/D4B,EsLgE7B;;AAnFH;;EAuFI,iBAAiB;EACjB,aAAa,EACd;;AAzFH;EA4FI,aAAa;EACb,sBAAsB;EACtB,iBAAiB;EACjB,mBAAmB;EACnB,oBAAoB,EACrB;;AAjGH;EAoGI,mBAAmB;EACnB,kBAAkB,EACnB;;AAtGH;EAyGI,YAAY;EACZ,YAAY;EACZ,0BtLjFkB,EsLkFnB;;AA5GH;EA+GI,2BtL5FiE,EsL6FlE;;AAhHH;EAmHI,kBAAkB;EAClB,mBAAmB;EACnB,aAAa;EACb,+BAAgB;EAChB,aAAa;EACb,mBAAmB;EACnB,wCAAwC,EACzC;;AA1HH;EA6HI,iBAAiB;EACjB,aAAa,EACd;;AA/HH;EAkII,4BtLxGkB;EsLyGlB,mBAAmB,EACpB;;AApIH;EAuII,aAAa;EACb,WAAW;EACX,iBAAiB;EACjB,mBAAmB,EACpB;;AA3IH;EA8II,YAAY;EACZ,WAAW;EACX,kBAAkB;EAClB,mBAAmB,EACpB;;ACnJH,gBAAgB;AAChB;EAEI,evLoCgB;EuLnChB,qBAAqB,EACtB;;AAJH;EAOI,sBvL+BgB,EuL9BjB;;AAGH;EAEI,gBAAgB,EAgDjB;EAlDH;IAKM,gBAAgB,EA4CjB;IAjDL;MAQQ,gBAAgB;MAChB,qBAAqB,EAuCtB;MAhDP;QAYU,gBAAgB,EACjB;MAbT;;QAmBY,gBAAgB,EACjB;MApBX;;;;;QAwBc,gBAAgB;QAChB,iBAAiB,EAClB;MAKH;QA/BV;UAgCY,eAAe;UACf,iBAAiB,EAcpB,EAAA;;AC3DT,YAAY;AACZ;EACE,eAAe;EACf,YAAY;EACZ,iBAAiB,EAoRlB;EAvRD;IAMI,WAAW,EACZ;EAPH;IAUI,4BAA4B;IAC5B,WAAW;IACX,UAAU,EAMX;IAlBH;MAeM,eAAe;MACf,WAAW,EACZ;EAjBL;IAyBI,mBAAmB;IACnB,eAAe;IACf,YAAY,EA0Hb;IArJH;MAsBM,mBAAmB;MACnB,aAAa,EACd;IAxBL;MA8BM,oBxLMsB,EwLLvB;IA/BL;MAmCQ,WAAW;MACX,YAAY;MACZ,mBAAmB,EACpB;IAtCP;MA0CM,eAAe;MACf,YAAY;MACZ,sBAAsB;MACtB,aAAa;MACb,sBAAsB;MAGtB,mBAAmB;MACnB,oBxLdsB;MwLetB,mCxLjBI,EwLwCL;MA1EL;QAsDQ,eAAe;QACf,YAAY;QACZ,sBAAsB;QACtB,aAAa;QACb,sBAAsB;QAGtB,mBAAmB,EACpB;MA9DP;QAiEQ,eAAe;QACf,YAAY;QACZ,sBAAsB;QACtB,aAAa;QACb,sBAAsB;QAGtB,mBAAmB,EACpB;IAzEP;MA8EQ,oBxL1DqP;MwL2DrP,evLhEU;MuLiEV,gBAAgB,EAajB;MA7FP;QAmFU,oBxL/DmP;QwLgEnP,evLrEQ;QuLsER,gBAAgB,EACjB;MAtFT;QAyFU,sBAAiC;QACjC,evL3EQ;QuL4ER,gBAAgB,EACjB;IA5FT;MAkGQ,oBxL/EwB;MwLgFxB,exLxFO;MwLyFP,gBAAgB,EAajB;MAjHP;QAuGU,oBxLpFsB;QwLqFtB,exL7FK;QwL8FL,gBAAgB,EACjB;MA1GT;QA6GU,oBxL1FsB;QwL2FtB,exLnGK;QwLoGL,gBAAgB,EACjB;IAhHT;MAsHQ,oBAAmB;MACnB,exL5GO,EwLuHR;MAlIP;QA0HU,oBAAmB;QACnB,exLhHK,EwLiHN;MA5HT;QA+HU,oBAAmB;QACnB,exLrHK,EwLsHN;IAjIT;MAuIQ,oBxLpH+G;MwLqH/G,YAAY,EAWb;MAnJP;QA2IU,oBxLxH6G;QwLyH7G,YAAY,EACb;MA7IT;QAgJU,oBxL7H6G;QwL8H7G,YAAY,EACb;EAlJT;IA4JI,oBxLrIe;IwLsIf,eAAe;IACf,cAAc;IACd,iBAAiB;IACjB,iBAAiB;IACjB,mBAAmB;IACnB,YAAY;IAGZ,mBAAmB,EAiDpB;IAtNH;MAyJM,mBAAmB;MACnB,aAAa,EACd;IA3JL;MAwKM,YAAY;MACZ,mBAAmB;MACnB,WAAW;MACX,YAAY;MACZ,cAAc,EAyCf;MArNL;QA+KQ,4BAA4B,EAK7B;QApLP;UAkLU,mBAAmB,EACpB;MAnLT;QAuLQ,eAAe;QACf,YAAY;QACZ,aAAa,EACd;MA1LP;QA6LQ,eAAe;QACf,0BxLpKc,EwLqKf;MA/LP;QAkMQ,sBAAsB,EACvB;MAnMP;QAsMQ,oBAAe;QACf,0BAAyB;QACzB,exLrL+G,EwLsLhH;MAzMP;QA4MQ,sBAAsB;QACtB,qBAAqB,EACtB;MA9MP;QAiNQ,exL9L+G;QwL+L/G,sBAAsB;QACtB,mBAAmB,EACpB;EApNP;IAyNI,kBAAkB;IAUlB,mBAAmB;IACnB,eAAe;IACf,kBAAkB;IAClB,YAAY,EAYb;IAlPH;MAgOM,sBAAsB;MACtB,kBAAkB,EACnB;MAlOL;QA6NQ,YAAY;QACZ,gBAAgB,EACjB;EA/NP;IAsPM,gBAAgB;IAChB,YAAY;IACZ,WAAW,EASZ;IAjQL;MA4PU,YAAY;MACZ,YAAY;MACZ,iBAAiB,EAClB;EA/PT;IAoQM,gBAAgB;IAChB,YAAY;IACZ,qBAAqB;IACrB,WAAW,EACZ;EAxQL;IA2QM,gBAAgB;IAChB,aAAa;IACb,eAAe;IACf,WAAW,EAOZ;IArRL;MAkRU,kBAAkB,EACnB;;AAMT;EACE,eAAe;EACf,YAAY;EACZ,iBAAiB,EA0GlB;EA7GD;IAMI,WAAW,EACZ;EAPH;IAUI,4BAA4B;IAC5B,WAAW;IACX,UAAU,EAMX;IAlBH;MAeM,eAAe;MACf,WAAW,EACZ;EAjBL;IAyBI,mBAAmB;IACnB,eAAe;IACf,YAAY,EAmDb;IA9EH;MAsBM,mBAAmB;MACnB,aAAa,EACd;IAxBL;MA8BM,mBAAmB;MACnB,gBAAgB;MAChB,SAAS;MACT,WAAW,EA4CZ;MA7EL;QAoCQ,YAAY;QACZ,oBAAoB;QACpB,aAAa;QACb,oCAAoC;QACpC,qCAAqC;QACrC,gCAAgC;QAChC,iCAAiC;QACjC,4BAA4B;QAC5B,6BAA6B,EAoB9B;QAhEP;UA+CU,oBAAoB;UACpB,0BxL/SY;UwLgTZ,WAAW,EACZ;QAlDT;UAqDU,exL1T2N;UwL2T3N,sBAAsB;UACtB,eAAe;UACf,UAAU;UACV,mBAAmB;UACnB,sBAAsB,EAKvB;UA/DT;YA6DY,sBAAsB,EACvB;MA9DX;QAmEQ,oBxLjVO;QwLkVP,0BxLnUc;QwLoUd,sBAAsB;QACtB,iBAAiB;QACjB,cAAc,EAKf;QA5EP;UA0EU,wBAAwB,EACzB;EA3ET;IAqFI,mBAAmB;IACnB,sBAAsB;IACtB,YAAY;IACZ,aAAa;IACb,iBAAiB;IACjB,8BxLzVkB;IwL0VlB,kBAAkB,EAiBnB;IA5GH;MAkFM,mBAAmB;MACnB,aAAa,EACd;IApFL;MA8FM,YAAY;MACZ,mBAAmB;MACnB,WAAW;MACX,YAAY;MACZ,cAAc,EASf;MA3GL;QAqGQ,4BAA4B,EAK7B;QA1GP;UAwGU,mBAAmB,EACpB;;A7LhIT,uEAAuE;AAEvE,6BAA6B;A8LrQ7B,UAAU;AAEV;EAEI,iDAAe;EACf,uBAAuB,EACxB;;AAJH;EAMI,0EAAyE;EACzE,uBAAuB,EACxB;;AARH;EAWM,oBzLDS;EyLET,wBAAwB;EACxB,mBAAmB;EACnB,kEAAsC;EAAtC,0DAAsC,EAqCvC;EAnDL;IAiBU,aAAa,EAmBd;IApCT;;;;;;;;;MAmBY,0BAAwB;MACxB,mBAAmB;MACnB,2BAA2B,EAK5B;MA1BX;;;;;;;;;QAuBc,mBAAmB;QACnB,sBAAoB,EACrB;IAzBb;MA4BY,kBAAkB,EAOnB;MAnCX;QA8Bc,2BAA2B;QAC3B,kBAAkB;QAClB,sBAAoB;QACpB,eAAe,EAChB;EAlCb;IAsCU,mCzLLA;IyLMA,gBAAgB;IAChB,kBAAkB;IAClB,iBAAiB,EAClB;EA1CT;IA6CQ,0BzLpBc;IyLqBd,cAAc;IACd,gBAAgB;IAChB,iBAAiB;IACjB,wBAAwB,EACzB;;AAlDP;EAqDM,sBAAsB;EACtB,gBAAgB;EAChB,iBAAiB;EACjB,oBAAoB;EACpB,qBAAc;EAAd,qBAAc;EAAd,cAAc;EACd,yBAAwB;EAAxB,sBAAwB;EAAxB,wBAAwB,EAkBzB;EA5EL;IA4DQ,mBAAmB;IACnB,eAAe;IACf,oBAAoB;IACpB,iDAA4B,EAS7B;IAxEP;MAiEU,gBAAgB;MAChB,mBAAmB,EACpB;IAnET;MAqEU,gBAAgB;MAChB,gCAAW,EACZ;EAEH;IAzEN;MA0EQ,yBAAwB;MAAxB,sBAAwB;MAAxB,wBAAwB,EAE3B,EAAA;;AA5EL;EA8EM,gCAAW,EACZ;;AA/EL;EAmFM,mBAAmB;EACnB,cAAc;EACd,kBAAkB;EAClB,kBAAkB;EAClB,qBAAqB;EACrB,mBAAmB,EAyGpB;EAxGC;IAzFN;MA0FQ,kBAAkB;MAClB,mBAAmB;MACnB,aAAa;MACb,iBAAiB,EAoGpB,EAAA;EAjML;IAgGQ,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,0BAAoB;IAApB,uBAAoB;IAApB,oBAAoB;IACpB,sBAA0B;IAA1B,mBAA0B;IAA1B,0BAA0B;IAC1B,mBAAmB;IACnB,UAAU;IACV,YAAY,EAuBb;IAtBC;MAtGR;QAuGU,kBAAkB;QAClB,mBAAmB;QACnB,kBAAkB;QAClB,mBAAmB;QACnB,WAAW;QACX,aAAa;QACb,yBAAwB;QAAxB,sBAAwB;QAAxB,wBAAwB,EAe3B,EAAA;IA5HP;MAgHU,iBAAiB;MACjB,iBAAiB,EAClB;IAlHT;MAoHU,0BzL3FY;MyL4FZ,mBAAmB;MACnB,gBAAgB;MAChB,iBAAiB;MACjB,YzL/GE;MyLgHF,kBAAkB;MAClB,oBAAoB,EACrB;EA3HT;IA8HQ,WAAW;IACX,iBAAiB;IACjB,iBAAiB,EAoClB;IApKP;MAkIU,YAAY;MACZ,oBAAoB,EAgCrB;MA/BC;QApIV;UAqIY,mBAAmB;UACnB,kBAAkB,EA6BrB,EAAA;MAnKT;QAyIY,aAAa,EAkBd;QA3JX;;;;;;;;;UA2Ic,0BAAwB;UACxB,kBAAkB;UAClB,2BAA2B,EAK5B;UAlJb;;;;;;;;;YA+IgB,kBAAkB;YAClB,sBAAoB,EACrB;QAjJf;UAqJgB,2BAA2B;UAC3B,sBAAoB;UACpB,mBAAmB;UACnB,eAAe,EAChB;MAzJf;QA6JY,mCzL5HF;QyL6HE,gBAAgB;QAChB,mBAAmB;QACnB,iBAAiB;QACjB,qEzLjJwB,EyLkJzB;EAlKX;IAsKQ,gBAAgB;IAChB,iBAAiB,EAClB;EAxKP;IA0KQ,sBAAsB;IACtB,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,gBAAgB;IAChB,gBAAgB;IAChB,iBAAiB,EAkBlB;IAhMP;MAgLU,mBAAmB;MACnB,eAAe;MACf,oBAAoB;MACpB,gCzL/IU,EyLwJX;MA5LT;QAqLY,gBAAgB;QAChB,mBAAmB,EACpB;MAvLX;QAyLY,gBAAgB;QAChB,ezLtJQ,EyLuJT;IAEH;MA7LR;QA8LU,yBAAwB;QAAxB,sBAAwB;QAAxB,wBAAwB,EAE3B,EAAA;;AAhMP;EAmMM,iBAAiB,EAYlB;EA/ML;IAqMQ,YAAY,EASb;IA9MP;MAuMU,yEAAwE;MACxE,uBAAuB,EACxB;IAzMT;MA2MU,4EAA2E;MAC3E,uBAAuB,EACxB;;AC/MT,WAAW;AACX;EAEE,oBAAoB;EACpB,eAAe,EAIf;EAHA;IAJF;MAKG,gBAAgB,EAEjB,EAAA;;AAPF;EAUE,oBAAoB;EACpB,eAAe,EACf;;AAGA;EAfF;IAgBG,gD1LLY,E0LOb,EAAA;;ACnBF,aAAa;AAEb;EAEE,gBAAgB;EAChB,iBAAiB;EACjB,yBAAyB,EAuCzB;EA3CF;IAOI,aAAa,EACb;EAGD;IAXH;MAYI,eAAe,EA8BhB,EAAA;EA1CH;IAeI,cAAc,EACd;EAhBJ;IAkBI,eAAe,EACf;EAnBJ;IAuBM,e3LbS;I2LcT,mBAAmB;IACnB,oBAAoB;IACpB,qBAAqB;IACrB,mC3LMI;I2LLJ,iBAAiB,EAWjB;IAVA;MA7BN;QA8BO,kBAAkB;QAClB,mBAAmB,EAQpB;QAvCN;UAiCQ,eAAe,EACf;QAlCR;UAoCQ,gBAAgB,EAChB,EAAA;;AArCR;EA6CE,+D3L7BkC,E2L+ClC;EA/DF;IAgDI,iBAAiB,EASjB;IARA;MAjDJ;QAkDK,mBAAmB;QACnB,YAAY,EAMb,EAAA;IAJA;MArDJ;QAsDK,iBAAiB;QACjB,gBAAgB,EAEjB,EAAA;EAzDJ;IA4DG,kBAAkB;IAClB,sBAAsB,EACtB;;AA9DH;EAiEE,mBAAmB;EACnB,qBAAqB;EACrB,mBAAmB;EACnB,Y3L3DU,E2LoGV;EA7GF;IAsEG,oB3L5DY;I2L6DZ,oBAAoB;IACpB,mDAA4B;IAA5B,2CAA4B;IAC5B,iDAAiC;IAAjC,yCAAiC;IAAjC,iCAAiC;IAAjC,+DAAiC,EAmCjC;IA5GH;MA2EI,+GAAqF;MAArF,uGAAqF,EACrF;IA5EJ;MA8EI,mBAAmB,EAWnB;MAzFJ;QAgFK,cAAc,EACd;MAjFL;QAmFK,mBAAmB;QACnB,YAAY;QACZ,aAAa;QACb,WAAW;QACX,uBAAU,EACV;IAxFL;MA2FI,mBAAmB,EAgBnB;MA3GJ;QA6FK,mBAAmB;QACnB,WAAW;QACX,aAAa;QACb,YAAY;QACZ,aAAa;QACb,cAAc;QACd,mBAAmB;QACnB,kBAAkB;QAClB,gBAAgB,EAChB;MAtGL;QAwGK,6BAA6B;QAC7B,8BAA8B,EAC9B;;AA1GL;EA+GE,Y3LtGU;E2LuGV,mBAAmB;EACnB,kBAAkB,EAClB;;AAlHF;EAoHE,kBAAkB;EAClB,qBAAqB,EAgCrB;EA7BE;IAxHJ;MAyHK,iC3L9GgB,E2LgHjB,EAAA;EA3HJ;IA6HI,kBAAkB;IAClB,qBAAqB,EAqBrB;IAnJJ;MAgIK,eAAe;MACf,oBAAoB;MACpB,oBAAoB,EACpB;IAOD;MA1IJ;QA2IK,gC3LhIgB,E2LwIjB;QAnJJ;UA6IM,gBAAgB,EAChB,EAAA;IA9IN;MAiJK,mC3LhHK,E2LiHL;;AAlJL;EAuJE,+D3LvIkC;E2LwIlC,UAAU;EACV,YAAY;EACZ,kBAAkB,EA2DlB;EArNF;IA4JG,kD3LlJY,E2LsMZ;IAhNH;MA8JI,aAAa,EACb;IA/JJ;MAiKI,iBAAiB,EAUjB;MA3KJ;QAmKK,YAAY;QACZ,aAAa;QACb,gBAAgB;QAChB,oBAAoB;QACpB,mBAAmB;QACnB,kBAAkB;QAClB,qBAAqB,EACrB;IA1KL;MA8KK,mBAAmB;MACnB,iBAAiB,EACjB;IAhLL;MAqLM,e3L3KS;M2L4KT,gC3L7JgB;M2L8JhB,eAAe;MACf,kBAAkB;MAClB,qBAAqB;MACrB,mC3LzJI;M2L0JJ,eAAe,EACf;IA5LN;MA+LO,gBAAgB,EAChB;IAhMP;MAoMO,gBAAgB,EAChB;IArMP;;;;;MA0MI,+B3LjMQ;M2LkMR,aAAa;MACb,uBAAuB;MACvB,qBAAqB;MACrB,wBAAwB,EACxB;EA/MJ;IAkNG,e3LxMY;I2LyMZ,mC3LlLO,E2LmLP;;ACtNH;EAEI,YAAY;EACZ,uGAAsG;EACtG,uBAAuB;EACvB,gBAAgB;EAChB,mBAAmB,EA2CpB;EAjDH;IASQ,iBAAiB;IACjB,mC5LyBE;I4LxBF,iBAAiB,EAClB;EAZP;IAcQ,iBAAiB;IACjB,mC5LoBE,E4LnBH;EAhBP;IAkBQ,mBAAmB,EASpB;IA3BP;MAoBU,aAAa;MACb,oCAAqB;MAArB,4BAAqB,EAKtB;MA1BT;QAuBY,gBAAgB;QAChB,gBAAgB,EACjB;EAzBX;IA8BM,qBAAc;IAAd,qBAAc;IAAd,cAAc;IACd,0BAAoB;IAApB,uBAAoB;IAApB,oBAAoB,EAiBrB;IAhDL;MAiCQ,mBAAmB;MACnB,iD5LPc;M4LQd,kBAAkB,EAYnB;MA/CP;QAqCU,mBAAmB;QACnB,gBAAgB,EACjB;MAvCT;QAyCU,iBAAiB;QACjB,iBAAiB,EAIlB;QA9CT;UA4CY,iBAAiB,EAClB;;AA7CX;EAmDI,kBAAkB,EAkDnB;EArGH;IAqDM,iC5L1BgB,E4L2CjB;IAtEL;MAwDU,e5LlBU;M4LmBV,gBAAgB;MAChB,uBAAuB;MACvB,iBAAiB;MACjB,iC5LhDK;M4LiDL,kCAA0B;MAA1B,0BAA0B;MAC1B,4CAAoC;MAApC,oCAAoC;MACpC,iDAAyC;MAAzC,yCAAyC,EAK1C;MApET;QAiEY,Y5LtDA;Q4LuDA,iC5L9CoB,E4L+CrB;EAnEX;IAwEM,aAAa;IACb,gBAAgB,EA2BjB;IApGL;MA2EQ,mBAAmB,EAwBpB;MAnGP;QA6EU,mBAAmB;QACnB,OAAO;QACP,YAAY,EACb;MAhFT;QAkFU,qBAAc;QAAd,qBAAc;QAAd,cAAc;QACd,+BAAoB;QAApB,8BAAoB;QAApB,wBAAoB;QAApB,oBAAoB;QACpB,oBAAgB;QAAhB,gBAAgB,EAcjB;QAlGT;UAsFY,aAAa;UACb,YAAY;UACZ,aAAa;UACb,mBAAmB;UACnB,qBAAc;UAAd,qBAAc;UAAd,cAAc;UACd,0BAAoB;UAApB,uBAAoB;UAApB,oBAAoB;UACpB,yBAAwB;UAAxB,sBAAwB;UAAxB,wBAAwB,EAKzB;UAjGX;YA8Fc,gBAAgB;YAChB,gBAAgB,EACjB;;AjM4Kb,uEAAuE","file":"style.css","sourcesContent":["/*------------------------------------------------------------------\n [Master Stylesheet]\n\n Project:\tStar Admin\n Version:\t2.8.0\n-------------------------------------------------------------------*/\n\n/*-------------------------------------------------------------------\n ===== Table of Contents =====\n\n * Bootstrap functions\n * Template variables\n * Boostrap Main SCSS\n * Template mixins\n + Animation Mixins\n + Accordion Mixins\n + Background Mixins\n + Badges Mixins\n + BlockQuote Mixins\n + Buttons Mixins\n + Breadcrumbs Mixins\n + Cards Mixins\n + Color Functions Mixins\n + Miscellaneous Mixins\n + No-ui-slider Mixins\n + Pagination Mixins\n + Popover Mixins\n + Tabs Mixins\n + Tooltip Mixins\n + Text Mixins\n * Core Styles\n + Reset Styles\n + Fonts\n + Functions\n + Sidebar\n + Navbar\n + Typography\n + Miscellaneous\n + Footer\n + Layouts\n + Utilities\n + Demo styles\n + Dashboard\n * Components\n + Accordions\n + Badges\n + Bootstrap Alerts\n + Boostrap Progress\n + Buttons\n + Breadcrumbs\n + Cards\n + Checkboxes and Radios\n + Dropdowns\n + Forms\n + Google Maps\n + Icons\n + Lists\n + Loaders\n + Modals\n + New Accounts\n + Pagination\n + Popovers\n + Portfolio\n + Preview\n + Pricing Table\n + Tables\n + Tabs\n + Tooltips\n + Timeline\n + Todo List\n + Settings Panel\n + User Profile\n * Email\n + Mail Sidebar\n + Mail List Container\n + Message Content\n * Plugin Overrides\n + Ace Editor\n + Avgrund Popup\n + Bootstrap Tour\n + Chartjs\n + Chartist\n + CodeMirror\n + Colcade\n + Colorpicker\n + Context Menu\n + Data Tables\n + Datepicker\n + Dropify\n + Dropzone\n + Flot chart\n + Full Calendar\n + Google Charts\n + Icheck\n + Jquery File Upload\n + Js-grid\n + Jvectormap\n + Light Gallery\n + Listify\n + No-ui-slider\n + Owl-carousel\n + Progressbar-js\n + Pws-tabs\n + Quill Editor\n + Rating\n + Select2\n + Summernote Editor\n + SweetAlert\n + Switchery\n + Tags\n + TinyMCE Editor\n + Toast\n + Typeahead\n + Wysi Editor\n + X-editable\n + Wizard\n * Screens\n + Auth\n + Error\n + Lock Screen\n + Landing\n + Profile Page\n-------------------------------------------------------------------*/\n\n/*-------------------------------------------------------------------*/\n\n/* === Import Bootstrap functions and variables === */\n\n@import \"../../../../node_modules/bootstrap/scss/functions\";\n@import \"../../../../node_modules/bootstrap/scss/variables\";\n/*-------------------------------------------------------------------*/\n\n/* === Import template variables === */\n\n@import \"variables\";\n/*-------------------------------------------------------------------*/\n\n/* === Boostrap Main SCSS === */\n\n@import \"../../../../node_modules/bootstrap/scss/bootstrap\";\n/*-------------------------------------------------------------------*/\n\n/* === Template mixins === */\n\n@import \"mixins/animation\";\n@import \"mixins/accordions\";\n@import \"mixins/background\";\n@import \"mixins/badges\";\n@import \"mixins/blockqoute\";\n@import \"mixins/breadcrumbs\";\n@import \"mixins/buttons\";\n@import \"mixins/cards\";\n@import \"mixins/misc\";\n@import \"mixins/no-ui-slider\";\n@import \"mixins/pagination\";\n@import \"mixins/text\";\n@import \"mixins/popovers\";\n@import \"mixins/tabs\";\n@import \"mixins/tooltips\";\n/*-------------------------------------------------------------------*/\n\n/* === Core Styles === */\n\n@import \"reset\";\n@import \"fonts\";\n@import \"functions\";\n@import \"navbar\";\n@import \"typography\";\n@import \"misc\";\n@import \"footer\";\n@import \"utilities\";\n@import \"demo\";\n@import \"dashboard\";\n/*-------------------------------------------------------------------*/\n\n/* === Components === */\n\n@import \"components/accordions\";\n@import \"components/badges\";\n@import \"components/bootstrap-alerts\";\n@import \"components/bootstrap-progress\";\n@import \"components/buttons\";\n@import \"components/breadcrumbs\";\n@import \"components/cards\";\n@import \"components/checkbox-radio\";\n@import \"components/dropdown\";\n@import \"components/forms\";\n@import \"components/google-maps\";\n@import \"components/icons\";\n@import \"components/lists\";\n@import \"components/loaders/loaders\";\n@import \"components/modals\";\n@import \"components/nav\";\n@import \"components/new-account\";\n@import \"components/pagination\";\n@import \"components/popovers\";\n@import \"components/portfolio\";\n@import \"components/preview\";\n@import \"components/pricing-table\";\n@import \"components/tables\";\n@import \"components/tabs\";\n@import \"components/settings-panel\";\n@import \"components/todo-list\";\n@import \"components/tooltips\";\n@import \"components/user-profile\";\n@import \"components/widgets\";\n@import \"components/timeline/timeline-horizontal\";\n@import \"components/timeline/timeline-vertical\";\n/*-------------------------------------------------------------------*/\n\n/* === Email === */\n\n@import \"components/mail-components/mail-sidebar\";\n@import \"components/mail-components/mail-list-container\";\n@import \"components/mail-components/messagecontent\";\n/*-------------------------------------------------------------------*/\n\n/* === Plugin overrides === */\n\n@import \"components/plugin-overrides/ace\";\n@import \"components/plugin-overrides/avgrund\";\n@import \"components/plugin-overrides/bootstrap-tour\";\n@import \"components/plugin-overrides/chartjs\";\n@import \"components/plugin-overrides/chartist\";\n@import \"components/plugin-overrides/codemirror\";\n@import \"components/plugin-overrides/colcade\";\n@import \"components/plugin-overrides/colorpicker\";\n@import \"components/plugin-overrides/context-menu\";\n@import \"components/plugin-overrides/clockpicker\";\n@import \"components/plugin-overrides/data-tables\";\n@import \"components/plugin-overrides/datepicker\";\n@import \"components/plugin-overrides/dropify\";\n@import \"components/plugin-overrides/dropzone\";\n@import \"components/plugin-overrides/flot-chart\";\n@import \"components/plugin-overrides/full-calendar\";\n@import \"components/plugin-overrides/google-charts\";\n@import \"components/plugin-overrides/icheck\";\n@import \"components/plugin-overrides/jquery-file-upload\";\n@import \"components/plugin-overrides/js-grid\";\n@import \"components/plugin-overrides/jvectormap\";\n@import \"components/plugin-overrides/light-gallery\";\n@import \"components/plugin-overrides/listify\";\n@import \"components/plugin-overrides/no-ui-slider\";\n@import \"components/plugin-overrides/owl-carousel\";\n@import \"components/plugin-overrides/progressbar-js\";\n@import \"components/plugin-overrides/pws-tabs\";\n@import \"components/plugin-overrides/quill\";\n@import \"components/plugin-overrides/rating\";\n@import \"components/plugin-overrides/select2\";\n@import \"components/plugin-overrides/summernote\";\n@import \"components/plugin-overrides/sweet-alert\";\n@import \"components/plugin-overrides/switchery\";\n@import \"components/plugin-overrides/tags\";\n@import \"components/plugin-overrides/tinymce\";\n@import \"components/plugin-overrides/toast\";\n@import \"components/plugin-overrides/typeahead\";\n@import \"components/plugin-overrides/wysieditor\";\n@import \"components/plugin-overrides/x-editable\";\n@import \"components/plugin-overrides/wizard\";\n/*-------------------------------------------------------------------*/\n\n/* === Landing screens === */\n\n@import \"screens/auth\";\n@import \"screens/error\";\n@import \"screens/lock-screen\";\n@import \"screens/landing\";\n@import \"screens/profile-page\";\n/*-------------------------------------------------------------------*/","/*!\n * Bootstrap v4.1.3 (https://getbootstrap.com/)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"code\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"input-group\";\n@import \"custom-forms\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"jumbotron\";\n@import \"alert\";\n@import \"progress\";\n@import \"media\";\n@import \"list-group\";\n@import \"close\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"utilities\";\n@import \"print\";\n","/* Fonts */\n\n@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');\n@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');",":root {\n // Custom variable values only support SassScript inside `#{}`.\n @each $color, $value in $colors {\n --#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$color}: #{$value};\n }\n\n @each $bp, $value in $grid-breakpoints {\n --breakpoint-#{$bp}: #{$value};\n }\n\n // Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --font-family-sans-serif: #{inspect($font-family-sans-serif)};\n --font-family-monospace: #{inspect($font-family-monospace)};\n}\n","// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so\n// we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n// 6. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -ms-text-size-adjust: 100%; // 4\n -ms-overflow-style: scrollbar; // 5\n -webkit-tap-highlight-color: rgba($black, 0); // 6\n}\n\n// IE10+ doesn't honor `` in some cases.\n@at-root {\n @-ms-viewport {\n width: device-width;\n }\n}\n\n// stylelint-disable selector-list-comma-newline-after\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use the\n// the `inherit` value on things like `` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n font-size: $font-size-base;\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Suppress the focus outline on elements that cannot be accessed via keyboard.\n// This prevents an unwanted focus outline from appearing around elements that\n// might still respond to pointer events.\n//\n// Credit: https://github.com/suitcss/base\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Remove the bottom border in Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Duplicate behavior to the data-* attribute for our tooltip plugin\n\nabbr[title],\nabbr[data-original-title] { // 4\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 1\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic; // Add the correct font style in Android 4.3-\n}\n\n// stylelint-disable font-weight-notation\nb,\nstrong {\n font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n// stylelint-enable font-weight-notation\n\nsmall {\n font-size: 80%; // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.\n\n @include hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href)\n// which have not been made explicitly keyboard-focusable (without tabindex).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n\n @include hover-focus {\n color: inherit;\n text-decoration: none;\n }\n\n &:focus {\n outline: 0;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n font-size: 1em; // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so\n // we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `` alignment by inheriting from the ``, or the\n // closest parent with a set `text-align`.\n text-align: inherit;\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: $label-margin-bottom;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\nbutton,\nhtml [type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box; // 1. Add the correct box sizing in IE 10-\n padding: 0; // 2. Remove the padding in IE 10-\n}\n\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n // Remove the default appearance of temporal inputs to avoid a Mobile Safari\n // bug where setting a custom line-height prevents text from being vertically\n // centered within the input.\n // See https://bugs.webkit.org/show_bug.cgi?id=139848\n // and https://github.com/twbs/bootstrap/issues/11266\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto; // Remove the default vertical scrollbar in IE.\n // Textareas should really only resize vertically so they don't break their (horizontal) containers.\n resize: vertical;\n}\n\nfieldset {\n // Browsers set a default `min-width: min-content;` on fieldsets,\n // unlike e.g. `

`s, which have `min-width: 0;` by default.\n // So we reset that to ensure fieldsets behave more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359\n // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n min-width: 0;\n // Reset the default outline behavior of fieldsets so they don't affect page layout.\n padding: 0;\n margin: 0;\n border: 0;\n}\n\n// 1. Correct the text wrapping in Edge and IE.\n// 2. Correct the color inheritance from `fieldset` elements in IE.\nlegend {\n display: block;\n width: 100%;\n max-width: 100%; // 1\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit; // 2\n white-space: normal; // 1\n}\n\nprogress {\n vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.\n}\n\n// Correct the cursor style of increment and decrement buttons in Chrome.\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n outline-offset: -2px; // 2. Correct the outline style in Safari.\n -webkit-appearance: none;\n}\n\n//\n// Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n//\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// 1. Correct the inability to style clickable types in iOS and Safari.\n// 2. Change font properties to `inherit` in Safari.\n//\n\n::-webkit-file-upload-button {\n font: inherit; // 2\n -webkit-appearance: button; // 1\n}\n\n//\n// Correct element displays\n//\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item; // Add the correct display in all browsers\n cursor: pointer;\n}\n\ntemplate {\n display: none; // Add the correct display in IE\n}\n\n// Always hide an element with the `hidden` HTML attribute (from PureCSS).\n// Needed for proper display in IE 10-.\n[hidden] {\n display: none !important;\n}\n","////////// COLOR SYSTEM //////////\n$blue: #00aeef;\n$indigo: #6610f2;\n$purple: #ab8ce4;\n$pink: #E91E63;\n$red: #ff0017;\n$orange: #fb9678;\n$yellow: #ffd500;\n$green: #3bd949;\n$teal: #58d8a3;\n$cyan: #57c7d4;\n$black: #000;\n$white: #ffffff;\n$white-smoke: #f4f4f4;\n$ghost-white: #f7fafc;\n$violet: #41478a;\n$darkslategray: #2e383e;\n$dodger-blue: #3498db;\n$blue-teal-gradient: linear-gradient(120deg, #556cdc, #128bfc, #18bef1);\n$blue-teal-gradient-light: linear-gradient(120deg, rgba(0, 228, 208, 0.7), rgba(89, 131, 232, 0.7));\n$theme-colors: (primary: #2196f3, secondary: #e6eef2, success:#19d895, info: #8862e0, warning: #ffaf00, danger: #ff6258, light: #fbfbfb, dark: #252C46);\n$colors: (blue: $blue, indigo: $indigo, purple: $purple, pink: $pink, red: $red, orange: $orange, yellow: $yellow, green: $green, teal: $teal, cyan: $cyan, white: $white, white-smoke: #f3f5f6, gray: $gray-600, gray-light: #8ba2b5, gray-lightest: #f7f7f9, gray-dark: #292b2c);\n////////// COLOR SYSTEM //////////\n////////// COLOR VARIABLES //////////\n$content-bg:#f3f4fa;\n$footer-bg: $content-bg;\n$footer-color: color(dark);\n$border-color: #f2f2f2;\n$footer-height: 60px;\n////////// COLOR VARIABLES //////////\n////////// SOCIAL COLORS //////////\n$social-colors: (twitter: #4DBFF5, facebook: #648ACA, google: #E55F4B, linkedin: #0177b4, pinterest: #cc2127, youtube: #e52d27, github: #333333, behance: #1769ff, dribbble: #ea4c89, reddit: #ff4500);\n////////// SOCIAL COLORS //////////\n////////// FONTS //////////\n$type-1: 'Poppins',\nsans-serif;\n$type-2: $type-1;\n$default-font-size: 0.875rem; //14px\n$text-muted: #858585;\n$body-color: #212529;\n////////// FONT VARIABLES //////////\n////////// BOOTSTRAP BREAKPOINTS //////////\n$grid-breakpoints-xs: 0px;\n$grid-breakpoints-sm: 576px;\n$grid-breakpoints-md: 768px;\n$grid-breakpoints-lg: 992px;\n$grid-breakpoints-xl: 1200px;\n////////// BOOTSTRAP BREAKPOINTS //////////\n////////// SIDEBAR ////////\n$sidebar-width-lg: 255px;\n$sidebar-width-mini: 185px;\n$sidebar-width-icon: 70px;\n$sidebar-light-bg: $white;\n$sidebar-light-menu-color: #4a4a4a;\n$sidebar-light-menu-active-bg: #fafbfc;\n$sidebar-light-menu-active-color: theme-color(primary);\n$sidebar-light-menu-hover-bg: $sidebar-light-menu-active-bg;\n$sidebar-light-menu-hover-color: $sidebar-light-menu-color;\n$sidebar-light-submenu-color: $sidebar-light-menu-color;\n$sidebar-light-submenu-hover-bg: initial;\n$sidebar-light-submenu-hover-color: #000;\n$sidebar-light-category-color: #999999;\n$sidebar-light-menu-icon-color: $sidebar-light-menu-color;\n$sidebar-light-profile-name-color: #404852;\n$sidebar-light-profile-title-color: #8d9498;\n$sidebar-dark-bg: #252C46;\n$sidebar-dark-menu-color: #9F9EA3;\n$sidebar-dark-menu-active-bg: lighten($sidebar-dark-bg, 5%);\n$sidebar-dark-menu-active-color: $white;\n$sidebar-dark-menu-hover-bg: $sidebar-dark-menu-active-bg;\n$sidebar-dark-menu-hover-color: $sidebar-dark-menu-color;\n$sidebar-dark-submenu-color: $sidebar-dark-menu-color;\n$sidebar-dark-submenu-hover-bg: initial;\n$sidebar-dark-submenu-hover-color: #000;\n$sidebar-dark-category-color: #999999;\n$sidebar-dark-menu-icon-color: #9F9EA3;\n$sidebar-dark-profile-name-color: #404852;\n$sidebar-dark-profile-title-color: #8d9498;\n$sidebar-menu-font-size: 12px;\n$sidebar-icon-size: 16px;\n$sidebar-menu-padding: 16px 35px;\n$nav-link-height: 52px;\n$sidebar-submenu-padding: 0 0 0 4rem;\n$sidebar-submenu-font-size: $sidebar-menu-font-size;\n$sidebar-submenu-item-padding: .75rem 1rem;\n$sidebar-icon-font-size: .9375rem;\n$sidebar-arrow-font-size: .625rem;\n$sidebar-profile-bg: transparent;\n$sidebar-profile-padding: 0rem 1.625rem 2.25rem 1.188rem;\n$sidebar-mini-menu-padding: .8125rem 1rem .8125rem 1rem;\n$sidebar-icon-only-menu-padding: .5rem 1.625rem .5rem 1.188rem;\n$sidebar-icon-only-submenu-padding: 0 0 0 1.5rem;\n$sidebar-icon-only-submenu-width: 200px;\n$rtl-sidebar-submenu-padding: 0 3.45rem 0 0;\n///////// SIDEBAR ////////\n///////// SETTINGS PANEL ////////\n$settings-panel-width: 300px;\n///////// NAVBAR ////////\n$navbar-height: 63px;\n$navbar-light-color: #202339;\n$navbar-font-size: $sidebar-menu-font-size;\n$navbar-icon-font-size: 1.25rem;\n///////// NAVBAR ////////\n///////// BUTTONS ////////\n$button-fixed-width: 120px;\n$btn-padding-y: 0.56rem;\n$btn-padding-x: 1.375rem;\n$btn-line-height: 1;\n$btn-padding-y-xs: .5rem;\n$btn-padding-x-xs: .75rem;\n$btn-padding-y-sm: 0.50rem;\n$btn-padding-x-sm: 0.81rem;\n$btn-padding-y-lg: 0.94rem;\n$btn-padding-x-lg: 1.94rem;\n$btn-font-size: .875rem;\n$btn-font-size-xs: .625rem;\n$btn-font-size-sm: .875rem;\n$btn-font-size-lg: .875rem;\n$btn-border-radius: .1875rem;\n$btn-border-radius-xs: .1875rem;\n$btn-border-radius-sm: .1875rem;\n$btn-border-radius-lg: .1875rem;\n$social-btn-padding: 13px;\n$social-btn-icon-size: 1rem;\n///////// BUTTONS ////////\n///////// FORMS /////////\n$input-bg: color(white);\n$input-border-radius: 2px;\n$input-placeholder-color: #c9c8c8;\n$input-font-size: .75rem;\n$input-padding-y: .56rem;\n$input-padding-x: 1.375rem;\n$input-line-height: 1;\n$input-padding-y-sm: .5rem;\n$input-padding-x-sm: .81rem;\n$input-line-height-sm: 1;\n$input-padding-y-lg: .94rem;\n$input-padding-x-lg: 1.94rem;\n$input-line-height-lg: 1;\n///////// FORMS /////////\n//////// DROPDOWNS ///////\n$dropdown-border-color: $border-color;\n$dropdown-divider-bg: $border-color;\n$dropdown-link-color: $body-color;\n$dropdown-header-color: $body-color;\n//////// DROPDOWNS ///////\n//////// TABLES ////////\n$table-accent-bg: $content-bg;\n$table-hover-bg: $content-bg;\n$table-cell-padding: 18px 15px;\n$table-border-color: $border-color;\n$table-accent-bg: theme-color(light);\n$table-inverse-bg: #2a2b32;\n$table-inverse-color: color(white);\n$table-striped-order: even;\n//////// TABLES ////////\n////////// MEASUREMENT AND PROPERTY VARIABLES //////////\n$boxed-container-width: 1200px;\n$border-property: 1px solid $border-color;\n$card-spacing-y: 1.875rem;\n$card-padding-y: 1.88rem;\n$card-padding-x: 1.81rem;\n$grid-gutter-width: 25px;\n$action-transition-duration: 0.25s;\n$action-transition-timing-function: ease;\n////////// OTHER VARIABLES //////////\n////////// BREAD CRUMBS VARIABLES //////////\n// default styles\n$breadcrumb-padding-y: 0.56rem;\n$breadcrumb-padding-x: 1.13rem;\n$breadcrumb-item-padding: .5rem;\n$breadcrumb-margin-bottom: 1rem;\n$breadcrumb-font-size: $default-font-size;\n$breadcrumb-bg: transparent;\n$breadcrumb-border-color: $border-color;\n$breadcrumb-divider-color: $gray-600;\n$breadcrumb-active-color: $gray-700;\n$breadcrumb-divider: \"/\";\n// custom styles\n$breadcrumb-custom-padding-y: 0;\n$breadcrumb-custom-padding-x: 0;\n$breadcrumb-custom-item-padding-y: 0.56rem;\n$breadcrumb-custom-item-padding-x: 10px;\n$breadcrumb-custom-item-color: $black;\n$breadcrumb-item-bg: #dbe3e6;\n////////// BREAD CRUMBS VARIABLES //////////\n////////// MODALS VARIABLES //////////\n$modal-inner-padding: 15px;\n$modal-dialog-margin: 10px;\n$modal-dialog-margin-y-sm-up: 30px;\n$modal-title-line-height: $line-height-base;\n$modal-content-bg: $content-bg;\n$modal-content-box-shadow-xs: 0 3px 9px rgba($black, .5);\n$modal-content-box-shadow-sm-up: 0 5px 15px rgba($black, .5);\n$modal-backdrop-bg: $black;\n$modal-backdrop-opacity: .5;\n$modal-header-border-color: $border-color;\n$modal-content-border-color: $border-color;\n$modal-footer-border-color: $border-color;\n$modal-header-border-width: $border-width;\n$modal-content-border-width: $border-width;\n$modal-footer-border-width: $border-width;\n$modal-header-padding-x: 26px;\n$modal-header-padding-y: 25px;\n$modal-body-padding-x: 26px;\n$modal-body-padding-y: 35px;\n$modal-footer-padding-x: 31px;\n$modal-footer-padding-y: 15px;\n$modal-lg: 90%;\n$modal-md: 500px;\n$modal-sm: 300px;\n$modal-transition: transform .4s ease;\n////////// MODALS VARIABLES //////////\n////////// TOOLTIP VARIABLES //////////\n//default styles\n$tooltip-font-size: .75rem;\n$tooltip-padding-y: .4rem;\n$tooltip-padding-x: .75rem;\n$tooltip-border-radius: .375rem;\n$tooltip-bg: theme-color(dark);\n$tooltip-arrow-color: $tooltip-bg;\n////////// TOOLTIP VARIABLES //////////\n////////// POPOVER VARIABLES //////////\n//default styles\n$popover-bg: lighten(theme-color(primary), 40%);\n$popover-text-color: $black;\n$popover-border-color: $border-color;\n$popover-arrow-color: $popover-bg;\n$popover-arrow-outer-color: $popover-border-color;\n$popover-header-bg: $popover-bg;\n////////// POPOVER VARIABLES //////////","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n\n//\n// Color system\n//\n\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n\n$grays: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$grays: map-merge(\n (\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n ),\n $grays\n);\n\n\n$blue: #007bff !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #e83e8c !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #28a745 !default;\n$teal: #20c997 !default;\n$cyan: #17a2b8 !default;\n\n$colors: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$colors: map-merge(\n (\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n ),\n $colors\n);\n\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-800 !default;\n\n$theme-colors: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$theme-colors: map-merge(\n (\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n ),\n $theme-colors\n);\n\n// Set a specific jump point for requesting color jumps\n$theme-color-interval: 8% !default;\n\n// The yiq lightness value that determines when the lightness of color changes from \"dark\" to \"light\". Acceptable values are between 0 and 255.\n$yiq-contrasted-threshold: 150 !default;\n\n// Customize the light and dark text colors for use in our YIQ color contrast function.\n$yiq-text-dark: $gray-900 !default;\n$yiq-text-light: $white !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS\n$enable-grid-classes: true !default;\n$enable-print-styles: true !default;\n\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n$spacer: 1rem !default;\n$spacers: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$spacers: map-merge(\n (\n 0: 0,\n 1: ($spacer * .25),\n 2: ($spacer * .5),\n 3: $spacer,\n 4: ($spacer * 1.5),\n 5: ($spacer * 3)\n ),\n $spacers\n);\n\n// This variable affects the `.h-*` and `.w-*` classes.\n$sizes: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$sizes: map-merge(\n (\n 25: 25%,\n 50: 50%,\n 75: 75%,\n 100: 100%,\n auto: auto\n ),\n $sizes\n);\n\n// Body\n//\n// Settings for the `` element.\n\n$body-bg: $white !default;\n$body-color: $gray-900 !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: theme-color(\"primary\") !default;\n$link-decoration: none !default;\n$link-hover-color: darken($link-color, 15%) !default;\n$link-hover-decoration: underline !default;\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px\n) !default;\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints);\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px\n) !default;\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 30px !default;\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n$line-height-lg: 1.5 !default;\n$line-height-sm: 1.5 !default;\n\n$border-width: 1px !default;\n$border-color: $gray-300 !default;\n\n$border-radius: .25rem !default;\n$border-radius-lg: .3rem !default;\n$border-radius-sm: .2rem !default;\n\n$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;\n\n$component-active-color: $white !default;\n$component-active-bg: theme-color(\"primary\") !default;\n\n$caret-width: .3em !default;\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n$transition-collapse: height .35s ease !default;\n\n\n// Fonts\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n$font-family-base: $font-family-sans-serif !default;\n// stylelint-enable value-keyword-case\n\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-lg: ($font-size-base * 1.25) !default;\n$font-size-sm: ($font-size-base * .875) !default;\n\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-bold: 700 !default;\n\n$font-weight-base: $font-weight-normal !default;\n$line-height-base: 1.5 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n\n$headings-margin-bottom: ($spacer / 2) !default;\n$headings-font-family: inherit !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: inherit !default;\n\n$display1-size: 6rem !default;\n$display2-size: 5.5rem !default;\n$display3-size: 4.5rem !default;\n$display4-size: 3.5rem !default;\n\n$display1-weight: 300 !default;\n$display2-weight: 300 !default;\n$display3-weight: 300 !default;\n$display4-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n\n$lead-font-size: ($font-size-base * 1.25) !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: 80% !default;\n\n$text-muted: $gray-600 !default;\n\n$blockquote-small-color: $gray-600 !default;\n$blockquote-font-size: ($font-size-base * 1.25) !default;\n\n$hr-border-color: rgba($black, .1) !default;\n$hr-border-width: $border-width !default;\n\n$mark-padding: .2em !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;\n$nested-kbd-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-bg: #fcf8e3 !default;\n\n$hr-margin-y: $spacer !default;\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n$table-cell-padding: .75rem !default;\n$table-cell-padding-sm: .3rem !default;\n\n$table-bg: transparent !default;\n$table-accent-bg: rgba($black, .05) !default;\n$table-hover-bg: rgba($black, .075) !default;\n$table-active-bg: $table-hover-bg !default;\n\n$table-border-width: $border-width !default;\n$table-border-color: $gray-300 !default;\n\n$table-head-bg: $gray-200 !default;\n$table-head-color: $gray-700 !default;\n\n$table-dark-bg: $gray-900 !default;\n$table-dark-accent-bg: rgba($white, .05) !default;\n$table-dark-hover-bg: rgba($white, .075) !default;\n$table-dark-border-color: lighten($gray-900, 7.5%) !default;\n$table-dark-color: $body-bg !default;\n\n$table-striped-order: odd !default;\n\n$table-caption-color: $text-muted !default;\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: .2rem !default;\n$input-btn-focus-color: rgba($component-active-bg, .25) !default;\n$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-line-height-sm: $line-height-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-line-height-lg: $line-height-lg !default;\n\n$input-btn-border-width: $border-width !default;\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-line-height: $input-btn-line-height !default;\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-line-height-sm: $input-btn-line-height-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-line-height-lg: $input-btn-line-height-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-disabled-color: $gray-600 !default;\n\n$btn-block-spacing-y: .5rem !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: $border-radius !default;\n$btn-border-radius-lg: $border-radius-lg !default;\n$btn-border-radius-sm: $border-radius-sm !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n\n// Forms\n\n$label-margin-bottom: .5rem !default;\n\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-line-height-sm: $input-btn-line-height-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-line-height-lg: $input-btn-line-height-lg !default;\n\n$input-bg: $white !default;\n$input-disabled-bg: $gray-200 !default;\n\n$input-color: $gray-700 !default;\n$input-border-color: $gray-400 !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;\n\n$input-border-radius: $border-radius !default;\n$input-border-radius-lg: $border-radius-lg !default;\n$input-border-radius-sm: $border-radius-sm !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: lighten($component-active-bg, 25%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: $gray-600 !default;\n$input-plaintext-color: $body-color !default;\n\n$input-height-border: $input-border-width * 2 !default;\n\n$input-height-inner: ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2) !default;\n$input-height: calc(#{$input-height-inner} + #{$input-height-border}) !default;\n\n$input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default;\n$input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default;\n\n$input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;\n$input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-text-margin-top: .25rem !default;\n\n$form-check-input-gutter: 1.25rem !default;\n$form-check-input-margin-y: .3rem !default;\n$form-check-input-margin-x: .25rem !default;\n\n$form-check-inline-margin-x: .75rem !default;\n$form-check-inline-input-margin-x: .3125rem !default;\n\n$form-group-margin-bottom: 1rem !default;\n\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: $gray-200 !default;\n$input-group-addon-border-color: $input-border-color !default;\n\n$custom-forms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$custom-control-gutter: 1.5rem !default;\n$custom-control-spacer-x: 1rem !default;\n\n$custom-control-indicator-size: 1rem !default;\n$custom-control-indicator-bg: $gray-300 !default;\n$custom-control-indicator-bg-size: 50% 50% !default;\n$custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;\n\n$custom-control-indicator-disabled-bg: $gray-200 !default;\n$custom-control-label-disabled-color: $gray-600 !default;\n\n$custom-control-indicator-checked-color: $component-active-color !default;\n$custom-control-indicator-checked-bg: $component-active-bg !default;\n$custom-control-indicator-checked-disabled-bg: rgba(theme-color(\"primary\"), .5) !default;\n$custom-control-indicator-checked-box-shadow: none !default;\n\n$custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;\n\n$custom-control-indicator-active-color: $component-active-color !default;\n$custom-control-indicator-active-bg: lighten($component-active-bg, 35%) !default;\n$custom-control-indicator-active-box-shadow: none !default;\n\n$custom-checkbox-indicator-border-radius: $border-radius !default;\n$custom-checkbox-indicator-icon-checked: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;\n$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;\n$custom-checkbox-indicator-icon-indeterminate: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-checkbox-indicator-indeterminate-box-shadow: none !default;\n\n$custom-radio-indicator-border-radius: 50% !default;\n$custom-radio-indicator-icon-checked: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-select-padding-y: .375rem !default;\n$custom-select-padding-x: .75rem !default;\n$custom-select-height: $input-height !default;\n$custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator\n$custom-select-line-height: $input-btn-line-height !default;\n$custom-select-color: $input-color !default;\n$custom-select-disabled-color: $gray-600 !default;\n$custom-select-bg: $input-bg !default;\n$custom-select-disabled-bg: $gray-200 !default;\n$custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions\n$custom-select-indicator-color: $gray-800 !default;\n$custom-select-indicator: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-select-border-width: $input-btn-border-width !default;\n$custom-select-border-color: $input-border-color !default;\n$custom-select-border-radius: $border-radius !default;\n$custom-select-box-shadow: inset 0 1px 2px rgba($black, .075) !default;\n\n$custom-select-focus-border-color: $input-focus-border-color !default;\n$custom-select-focus-width: $input-btn-focus-width !default;\n$custom-select-focus-box-shadow: 0 0 0 $custom-select-focus-width rgba($custom-select-focus-border-color, .5) !default;\n\n$custom-select-font-size-sm: 75% !default;\n$custom-select-height-sm: $input-height-sm !default;\n\n$custom-select-font-size-lg: 125% !default;\n$custom-select-height-lg: $input-height-lg !default;\n\n$custom-range-track-width: 100% !default;\n$custom-range-track-height: .5rem !default;\n$custom-range-track-cursor: pointer !default;\n$custom-range-track-bg: $gray-300 !default;\n$custom-range-track-border-radius: 1rem !default;\n$custom-range-track-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;\n\n$custom-range-thumb-width: 1rem !default;\n$custom-range-thumb-height: $custom-range-thumb-width !default;\n$custom-range-thumb-bg: $component-active-bg !default;\n$custom-range-thumb-border: 0 !default;\n$custom-range-thumb-border-radius: 1rem !default;\n$custom-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;\n$custom-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;\n$custom-range-thumb-focus-box-shadow-width: $input-btn-focus-width !default; // For focus box shadow issue in IE/Edge\n$custom-range-thumb-active-bg: lighten($component-active-bg, 35%) !default;\n\n$custom-file-height: $input-height !default;\n$custom-file-height-inner: $input-height-inner !default;\n$custom-file-focus-border-color: $input-focus-border-color !default;\n$custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$custom-file-disabled-bg: $input-disabled-bg !default;\n\n$custom-file-padding-y: $input-btn-padding-y !default;\n$custom-file-padding-x: $input-btn-padding-x !default;\n$custom-file-line-height: $input-btn-line-height !default;\n$custom-file-color: $input-color !default;\n$custom-file-bg: $input-bg !default;\n$custom-file-border-width: $input-btn-border-width !default;\n$custom-file-border-color: $input-border-color !default;\n$custom-file-border-radius: $input-border-radius !default;\n$custom-file-box-shadow: $input-box-shadow !default;\n$custom-file-button-color: $custom-file-color !default;\n$custom-file-button-bg: $input-group-addon-bg !default;\n$custom-file-text: (\n en: \"Browse\"\n) !default;\n\n\n// Form validation\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $small-font-size !default;\n$form-feedback-valid-color: theme-color(\"success\") !default;\n$form-feedback-invalid-color: theme-color(\"danger\") !default;\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-bg: $white !default;\n$dropdown-border-color: rgba($black, .15) !default;\n$dropdown-border-radius: $border-radius !default;\n$dropdown-border-width: $border-width !default;\n$dropdown-divider-bg: $gray-200 !default;\n$dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;\n\n$dropdown-link-color: $gray-900 !default;\n$dropdown-link-hover-color: darken($gray-900, 5%) !default;\n$dropdown-link-hover-bg: $gray-100 !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: $gray-600 !default;\n\n$dropdown-item-padding-y: .25rem !default;\n$dropdown-item-padding-x: 1.5rem !default;\n\n$dropdown-header-color: $gray-600 !default;\n\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-modal-backdrop: 1040 !default;\n$zindex-modal: 1050 !default;\n$zindex-popover: 1060 !default;\n$zindex-tooltip: 1070 !default;\n\n// Navs\n\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-disabled-color: $gray-600 !default;\n\n$nav-tabs-border-color: $gray-300 !default;\n$nav-tabs-border-width: $border-width !default;\n$nav-tabs-border-radius: $border-radius !default;\n$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: $gray-700 !default;\n$nav-tabs-link-active-bg: $body-bg !default;\n$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: $border-radius !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n\n$nav-divider-color: $gray-200 !default;\n$nav-divider-margin-y: ($spacer / 2) !default;\n\n// Navbar\n\n$navbar-padding-y: ($spacer / 2) !default;\n$navbar-padding-x: $spacer !default;\n\n$navbar-nav-link-padding-x: .5rem !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: ($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n\n$navbar-dark-color: rgba($white, .5) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-toggler-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n\n$navbar-light-color: rgba($black, .5) !default;\n$navbar-light-hover-color: rgba($black, .7) !default;\n$navbar-light-active-color: rgba($black, .9) !default;\n$navbar-light-disabled-color: rgba($black, .3) !default;\n$navbar-light-toggler-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-light-toggler-border-color: rgba($black, .1) !default;\n\n// Pagination\n\n$pagination-padding-y: .5rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n$pagination-line-height: 1.25 !default;\n\n$pagination-color: $link-color !default;\n$pagination-bg: $white !default;\n$pagination-border-width: $border-width !default;\n$pagination-border-color: $gray-300 !default;\n\n$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$pagination-focus-outline: 0 !default;\n\n$pagination-hover-color: $link-hover-color !default;\n$pagination-hover-bg: $gray-200 !default;\n$pagination-hover-border-color: $gray-300 !default;\n\n$pagination-active-color: $component-active-color !default;\n$pagination-active-bg: $component-active-bg !default;\n$pagination-active-border-color: $pagination-active-bg !default;\n\n$pagination-disabled-color: $gray-600 !default;\n$pagination-disabled-bg: $white !default;\n$pagination-disabled-border-color: $gray-300 !default;\n\n\n// Jumbotron\n\n$jumbotron-padding: 2rem !default;\n$jumbotron-bg: $gray-200 !default;\n\n\n// Cards\n\n$card-spacer-y: .75rem !default;\n$card-spacer-x: 1.25rem !default;\n$card-border-width: $border-width !default;\n$card-border-radius: $border-radius !default;\n$card-border-color: rgba($black, .125) !default;\n$card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;\n$card-cap-bg: rgba($black, .03) !default;\n$card-bg: $white !default;\n\n$card-img-overlay-padding: 1.25rem !default;\n\n$card-group-margin: ($grid-gutter-width / 2) !default;\n$card-deck-margin: $card-group-margin !default;\n\n$card-columns-count: 3 !default;\n$card-columns-gap: 1.25rem !default;\n$card-columns-margin: $card-spacer-y !default;\n\n\n// Tooltips\n\n$tooltip-font-size: $font-size-sm !default;\n$tooltip-max-width: 200px !default;\n$tooltip-color: $white !default;\n$tooltip-bg: $black !default;\n$tooltip-border-radius: $border-radius !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: .25rem !default;\n$tooltip-padding-x: .5rem !default;\n$tooltip-margin: 0 !default;\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n$tooltip-arrow-color: $tooltip-bg !default;\n\n\n// Popovers\n\n$popover-font-size: $font-size-sm !default;\n$popover-bg: $white !default;\n$popover-max-width: 276px !default;\n$popover-border-width: $border-width !default;\n$popover-border-color: rgba($black, .2) !default;\n$popover-border-radius: $border-radius-lg !default;\n$popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;\n\n$popover-header-bg: darken($popover-bg, 3%) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: .75rem !default;\n\n$popover-body-color: $body-color !default;\n$popover-body-padding-y: $popover-header-padding-y !default;\n$popover-body-padding-x: $popover-header-padding-x !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n$popover-arrow-color: $popover-bg !default;\n\n$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;\n\n\n// Badges\n\n$badge-font-size: 75% !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-padding-y: .25em !default;\n$badge-padding-x: .4em !default;\n$badge-border-radius: $border-radius !default;\n\n$badge-pill-padding-x: .6em !default;\n// Use a higher than normal value to ensure completely rounded edges when\n// customizing padding or font-size on labels.\n$badge-pill-border-radius: 10rem !default;\n\n\n// Modals\n\n// Padding applied to the modal body\n$modal-inner-padding: 1rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-bg: $white !default;\n$modal-content-border-color: rgba($black, .2) !default;\n$modal-content-border-width: $border-width !default;\n$modal-content-border-radius: $border-radius-lg !default;\n$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;\n$modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n$modal-header-border-color: $gray-200 !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n$modal-header-padding: 1rem !default;\n\n$modal-lg: 800px !default;\n$modal-md: 500px !default;\n$modal-sm: 300px !default;\n\n$modal-transition: transform .3s ease-out !default;\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n$alert-padding-y: .75rem !default;\n$alert-padding-x: 1.25rem !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: $border-radius !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: $border-width !default;\n\n$alert-bg-level: -10 !default;\n$alert-border-level: -9 !default;\n$alert-color-level: 6 !default;\n\n\n// Progress bars\n\n$progress-height: 1rem !default;\n$progress-font-size: ($font-size-base * .75) !default;\n$progress-bg: $gray-200 !default;\n$progress-border-radius: $border-radius !default;\n$progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: theme-color(\"primary\") !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n\n// List group\n\n$list-group-bg: $white !default;\n$list-group-border-color: rgba($black, .125) !default;\n$list-group-border-width: $border-width !default;\n$list-group-border-radius: $border-radius !default;\n\n$list-group-item-padding-y: .75rem !default;\n$list-group-item-padding-x: 1.25rem !default;\n\n$list-group-hover-bg: $gray-100 !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: $gray-600 !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: $gray-700 !default;\n$list-group-action-hover-color: $list-group-action-color !default;\n\n$list-group-action-active-color: $body-color !default;\n$list-group-action-active-bg: $gray-200 !default;\n\n\n// Image thumbnails\n\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: $body-bg !default;\n$thumbnail-border-width: $border-width !default;\n$thumbnail-border-color: $gray-300 !default;\n$thumbnail-border-radius: $border-radius !default;\n$thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;\n\n\n// Figures\n\n$figure-caption-font-size: 90% !default;\n$figure-caption-color: $gray-600 !default;\n\n\n// Breadcrumbs\n\n$breadcrumb-padding-y: .75rem !default;\n$breadcrumb-padding-x: 1rem !default;\n$breadcrumb-item-padding: .5rem !default;\n\n$breadcrumb-margin-bottom: 1rem !default;\n\n$breadcrumb-bg: $gray-200 !default;\n$breadcrumb-divider-color: $gray-600 !default;\n$breadcrumb-active-color: $gray-600 !default;\n$breadcrumb-divider: quote(\"/\") !default;\n\n$breadcrumb-border-radius: $border-radius !default;\n\n\n// Carousel\n\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-active-bg: $white !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n\n$carousel-control-icon-width: 20px !default;\n\n$carousel-control-prev-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$carousel-control-next-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$carousel-transition: transform .6s ease !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)\n\n\n// Close\n\n$close-font-size: $font-size-base * 1.5 !default;\n$close-font-weight: $font-weight-bold !default;\n$close-color: $black !default;\n$close-text-shadow: 0 1px 0 $white !default;\n\n// Code\n\n$code-font-size: 87.5% !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .2rem !default;\n$kbd-padding-x: .4rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: $white !default;\n$kbd-bg: $gray-900 !default;\n\n$pre-color: $gray-900 !default;\n$pre-scrollable-max-height: 340px !default;\n\n\n// Printing\n$print-page-size: a3 !default;\n$print-body-min-width: map-get($grid-breakpoints, \"lg\") !default;\n","/*------------------------------------------------------------------\n [Master Stylesheet]\n\n Project:\tStar Admin\n Version:\t2.8.0\n-------------------------------------------------------------------*/\n/*-------------------------------------------------------------------\n ===== Table of Contents =====\n\n * Bootstrap functions\n * Template variables\n * Boostrap Main SCSS\n * Template mixins\n + Animation Mixins\n + Accordion Mixins\n + Background Mixins\n + Badges Mixins\n + BlockQuote Mixins\n + Buttons Mixins\n + Breadcrumbs Mixins\n + Cards Mixins\n + Color Functions Mixins\n + Miscellaneous Mixins\n + No-ui-slider Mixins\n + Pagination Mixins\n + Popover Mixins\n + Tabs Mixins\n + Tooltip Mixins\n + Text Mixins\n * Core Styles\n + Reset Styles\n + Fonts\n + Functions\n + Sidebar\n + Navbar\n + Typography\n + Miscellaneous\n + Footer\n + Layouts\n + Utilities\n + Demo styles\n + Dashboard\n * Components\n + Accordions\n + Badges\n + Bootstrap Alerts\n + Boostrap Progress\n + Buttons\n + Breadcrumbs\n + Cards\n + Checkboxes and Radios\n + Dropdowns\n + Forms\n + Google Maps\n + Icons\n + Lists\n + Loaders\n + Modals\n + New Accounts\n + Pagination\n + Popovers\n + Portfolio\n + Preview\n + Pricing Table\n + Tables\n + Tabs\n + Tooltips\n + Timeline\n + Todo List\n + Settings Panel\n + User Profile\n * Email\n + Mail Sidebar\n + Mail List Container\n + Message Content\n * Plugin Overrides\n + Ace Editor\n + Avgrund Popup\n + Bootstrap Tour\n + Chartjs\n + Chartist\n + CodeMirror\n + Colcade\n + Colorpicker\n + Context Menu\n + Data Tables\n + Datepicker\n + Dropify\n + Dropzone\n + Flot chart\n + Full Calendar\n + Google Charts\n + Icheck\n + Jquery File Upload\n + Js-grid\n + Jvectormap\n + Light Gallery\n + Listify\n + No-ui-slider\n + Owl-carousel\n + Progressbar-js\n + Pws-tabs\n + Quill Editor\n + Rating\n + Select2\n + Summernote Editor\n + SweetAlert\n + Switchery\n + Tags\n + TinyMCE Editor\n + Toast\n + Typeahead\n + Wysi Editor\n + X-editable\n + Wizard\n * Screens\n + Auth\n + Error\n + Lock Screen\n + Landing\n + Profile Page\n-------------------------------------------------------------------*/\n/*-------------------------------------------------------------------*/\n/* === Import Bootstrap functions and variables === */\n/*-------------------------------------------------------------------*/\n/* === Import template variables === */\n/*-------------------------------------------------------------------*/\n/* === Boostrap Main SCSS === */\n/*!\n * Bootstrap v4.1.3 (https://getbootstrap.com/)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n@import url(\"https://fonts.googleapis.com/css?family=Roboto:300,400,500,700\");\n@import url(\"https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700\");\n:root {\n --blue: #00aeef;\n --indigo: #6610f2;\n --purple: #ab8ce4;\n --pink: #E91E63;\n --red: #ff0017;\n --orange: #fb9678;\n --yellow: #ffd500;\n --green: #3bd949;\n --teal: #58d8a3;\n --cyan: #57c7d4;\n --white: #ffffff;\n --gray: #6c757d;\n --gray-dark: #292b2c;\n --blue: #00aeef;\n --indigo: #6610f2;\n --purple: #ab8ce4;\n --pink: #E91E63;\n --red: #ff0017;\n --orange: #fb9678;\n --yellow: #ffd500;\n --green: #3bd949;\n --teal: #58d8a3;\n --cyan: #57c7d4;\n --white: #ffffff;\n --white-smoke: #f3f5f6;\n --gray: #6c757d;\n --gray-light: #8ba2b5;\n --gray-lightest: #f7f7f9;\n --primary: #2196f3;\n --secondary: #e6eef2;\n --success: #19d895;\n --info: #8862e0;\n --warning: #ffaf00;\n --danger: #ff6258;\n --light: #fbfbfb;\n --dark: #252C46;\n --breakpoint-xs: 0;\n --breakpoint-sm: 576px;\n --breakpoint-md: 768px;\n --breakpoint-lg: 992px;\n --breakpoint-xl: 1200px;\n --font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace; }\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; }\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n -ms-overflow-style: scrollbar;\n -webkit-tap-highlight-color: transparent; }\n\n@-ms-viewport {\n width: device-width; }\n\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block; }\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff; }\n\n[tabindex=\"-1\"]:focus {\n outline: 0 !important; }\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible; }\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem; }\n\np {\n margin-top: 0;\n margin-bottom: 1rem; }\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0; }\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit; }\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem; }\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0; }\n\ndt {\n font-weight: 700; }\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; }\n\nblockquote {\n margin: 0 0 1rem; }\n\ndfn {\n font-style: italic; }\n\nb,\nstrong {\n font-weight: bolder; }\n\nsmall {\n font-size: 80%; }\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline; }\n\nsub {\n bottom: -.25em; }\n\nsup {\n top: -.5em; }\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n -webkit-text-decoration-skip: objects; }\n a:hover {\n color: #0056b3;\n text-decoration: underline; }\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none; }\n a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {\n color: inherit;\n text-decoration: none; }\n a:not([href]):not([tabindex]):focus {\n outline: 0; }\n\npre,\ncode,\nkbd,\nsamp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n font-size: 1em; }\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar; }\n\nfigure {\n margin: 0 0 1rem; }\n\nimg {\n vertical-align: middle;\n border-style: none; }\n\nsvg {\n overflow: hidden;\n vertical-align: middle; }\n\ntable {\n border-collapse: collapse; }\n\ncaption {\n padding-top: 18px 15px;\n padding-bottom: 18px 15px;\n color: #6c757d;\n text-align: left;\n caption-side: bottom; }\n\nth {\n text-align: inherit; }\n\nlabel {\n display: inline-block;\n margin-bottom: 0.5rem; }\n\nbutton {\n border-radius: 0; }\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color; }\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit; }\n\nbutton,\ninput {\n overflow: visible; }\n\nbutton,\nselect {\n text-transform: none; }\n\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; }\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none; }\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0; }\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n -webkit-appearance: listbox; }\n\ntextarea {\n overflow: auto;\n resize: vertical; }\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0; }\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal; }\n\nprogress {\n vertical-align: baseline; }\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto; }\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none; }\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none; }\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button; }\n\noutput {\n display: inline-block; }\n\nsummary {\n display: list-item;\n cursor: pointer; }\n\ntemplate {\n display: none; }\n\n[hidden] {\n display: none !important; }\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: 0.5rem;\n font-family: inherit;\n font-weight: 500;\n line-height: 1.2;\n color: inherit; }\n\nh1, .h1 {\n font-size: 2.5rem; }\n\nh2, .h2 {\n font-size: 2rem; }\n\nh3, .h3 {\n font-size: 1.75rem; }\n\nh4, .h4 {\n font-size: 1.5rem; }\n\nh5, .h5 {\n font-size: 1.25rem; }\n\nh6, .h6 {\n font-size: 1rem; }\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300; }\n\n.display-1 {\n font-size: 6rem;\n font-weight: 300;\n line-height: 1.2; }\n\n.display-2 {\n font-size: 5.5rem;\n font-weight: 300;\n line-height: 1.2; }\n\n.display-3 {\n font-size: 4.5rem;\n font-weight: 300;\n line-height: 1.2; }\n\n.display-4 {\n font-size: 3.5rem;\n font-weight: 300;\n line-height: 1.2; }\n\nhr {\n margin-top: 1rem;\n margin-bottom: 1rem;\n border: 0;\n border-top: 1px solid rgba(0, 0, 0, 0.1); }\n\nsmall,\n.small {\n font-size: 80%;\n font-weight: 400; }\n\nmark,\n.mark {\n padding: 0.2em;\n background-color: #fcf8e3; }\n\n.list-unstyled {\n padding-left: 0;\n list-style: none; }\n\n.list-inline {\n padding-left: 0;\n list-style: none; }\n\n.list-inline-item {\n display: inline-block; }\n .list-inline-item:not(:last-child) {\n margin-right: 0.5rem; }\n\n.initialism {\n font-size: 90%;\n text-transform: uppercase; }\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem; }\n\n.blockquote-footer {\n display: block;\n font-size: 80%;\n color: #6c757d; }\n .blockquote-footer::before {\n content: \"\\2014 \\00A0\"; }\n\n.img-fluid {\n max-width: 100%;\n height: auto; }\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: #fff;\n border: 1px solid #dee2e6;\n border-radius: 0.25rem;\n max-width: 100%;\n height: auto; }\n\n.figure {\n display: inline-block; }\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1; }\n\n.figure-caption {\n font-size: 90%;\n color: #6c757d; }\n\ncode {\n font-size: 87.5%;\n color: #e83e8c;\n word-break: break-word; }\n a > code {\n color: inherit; }\n\nkbd {\n padding: 0.2rem 0.4rem;\n font-size: 87.5%;\n color: #fff;\n background-color: #212529;\n border-radius: 0.2rem; }\n kbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700; }\n\npre {\n display: block;\n font-size: 87.5%;\n color: #212529; }\n pre code {\n font-size: inherit;\n color: inherit;\n word-break: normal; }\n\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll; }\n\n.container {\n width: 100%;\n padding-right: 12.5px;\n padding-left: 12.5px;\n margin-right: auto;\n margin-left: auto; }\n @media (min-width: 576px) {\n .container {\n max-width: 540px; } }\n @media (min-width: 768px) {\n .container {\n max-width: 720px; } }\n @media (min-width: 992px) {\n .container {\n max-width: 960px; } }\n @media (min-width: 1200px) {\n .container {\n max-width: 1140px; } }\n\n.container-fluid {\n width: 100%;\n padding-right: 12.5px;\n padding-left: 12.5px;\n margin-right: auto;\n margin-left: auto; }\n\n.row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -12.5px;\n margin-left: -12.5px; }\n\n.no-gutters {\n margin-right: 0;\n margin-left: 0; }\n .no-gutters > .col,\n .no-gutters > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0; }\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .lightGallery .image-tile, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n position: relative;\n width: 100%;\n min-height: 1px;\n padding-right: 12.5px;\n padding-left: 12.5px; }\n\n.col {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%; }\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none; }\n\n.col-1 {\n flex: 0 0 8.33333%;\n max-width: 8.33333%; }\n\n.col-2 {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n\n.col-3 {\n flex: 0 0 25%;\n max-width: 25%; }\n\n.col-4 {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n\n.col-5 {\n flex: 0 0 41.66667%;\n max-width: 41.66667%; }\n\n.col-6, .lightGallery .image-tile {\n flex: 0 0 50%;\n max-width: 50%; }\n\n.col-7 {\n flex: 0 0 58.33333%;\n max-width: 58.33333%; }\n\n.col-8 {\n flex: 0 0 66.66667%;\n max-width: 66.66667%; }\n\n.col-9 {\n flex: 0 0 75%;\n max-width: 75%; }\n\n.col-10 {\n flex: 0 0 83.33333%;\n max-width: 83.33333%; }\n\n.col-11 {\n flex: 0 0 91.66667%;\n max-width: 91.66667%; }\n\n.col-12 {\n flex: 0 0 100%;\n max-width: 100%; }\n\n.order-first {\n order: -1; }\n\n.order-last {\n order: 13; }\n\n.order-0 {\n order: 0; }\n\n.order-1 {\n order: 1; }\n\n.order-2 {\n order: 2; }\n\n.order-3 {\n order: 3; }\n\n.order-4 {\n order: 4; }\n\n.order-5 {\n order: 5; }\n\n.order-6 {\n order: 6; }\n\n.order-7 {\n order: 7; }\n\n.order-8 {\n order: 8; }\n\n.order-9 {\n order: 9; }\n\n.order-10 {\n order: 10; }\n\n.order-11 {\n order: 11; }\n\n.order-12 {\n order: 12; }\n\n.offset-1 {\n margin-left: 8.33333%; }\n\n.offset-2 {\n margin-left: 16.66667%; }\n\n.offset-3 {\n margin-left: 25%; }\n\n.offset-4 {\n margin-left: 33.33333%; }\n\n.offset-5 {\n margin-left: 41.66667%; }\n\n.offset-6 {\n margin-left: 50%; }\n\n.offset-7 {\n margin-left: 58.33333%; }\n\n.offset-8 {\n margin-left: 66.66667%; }\n\n.offset-9 {\n margin-left: 75%; }\n\n.offset-10 {\n margin-left: 83.33333%; }\n\n.offset-11 {\n margin-left: 91.66667%; }\n\n@media (min-width: 576px) {\n .col-sm {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%; }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none; }\n .col-sm-1 {\n flex: 0 0 8.33333%;\n max-width: 8.33333%; }\n .col-sm-2 {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n .col-sm-3 {\n flex: 0 0 25%;\n max-width: 25%; }\n .col-sm-4 {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n .col-sm-5 {\n flex: 0 0 41.66667%;\n max-width: 41.66667%; }\n .col-sm-6 {\n flex: 0 0 50%;\n max-width: 50%; }\n .col-sm-7 {\n flex: 0 0 58.33333%;\n max-width: 58.33333%; }\n .col-sm-8 {\n flex: 0 0 66.66667%;\n max-width: 66.66667%; }\n .col-sm-9 {\n flex: 0 0 75%;\n max-width: 75%; }\n .col-sm-10 {\n flex: 0 0 83.33333%;\n max-width: 83.33333%; }\n .col-sm-11 {\n flex: 0 0 91.66667%;\n max-width: 91.66667%; }\n .col-sm-12 {\n flex: 0 0 100%;\n max-width: 100%; }\n .order-sm-first {\n order: -1; }\n .order-sm-last {\n order: 13; }\n .order-sm-0 {\n order: 0; }\n .order-sm-1 {\n order: 1; }\n .order-sm-2 {\n order: 2; }\n .order-sm-3 {\n order: 3; }\n .order-sm-4 {\n order: 4; }\n .order-sm-5 {\n order: 5; }\n .order-sm-6 {\n order: 6; }\n .order-sm-7 {\n order: 7; }\n .order-sm-8 {\n order: 8; }\n .order-sm-9 {\n order: 9; }\n .order-sm-10 {\n order: 10; }\n .order-sm-11 {\n order: 11; }\n .order-sm-12 {\n order: 12; }\n .offset-sm-0 {\n margin-left: 0; }\n .offset-sm-1 {\n margin-left: 8.33333%; }\n .offset-sm-2 {\n margin-left: 16.66667%; }\n .offset-sm-3 {\n margin-left: 25%; }\n .offset-sm-4 {\n margin-left: 33.33333%; }\n .offset-sm-5 {\n margin-left: 41.66667%; }\n .offset-sm-6 {\n margin-left: 50%; }\n .offset-sm-7 {\n margin-left: 58.33333%; }\n .offset-sm-8 {\n margin-left: 66.66667%; }\n .offset-sm-9 {\n margin-left: 75%; }\n .offset-sm-10 {\n margin-left: 83.33333%; }\n .offset-sm-11 {\n margin-left: 91.66667%; } }\n\n@media (min-width: 768px) {\n .col-md {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%; }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none; }\n .col-md-1 {\n flex: 0 0 8.33333%;\n max-width: 8.33333%; }\n .col-md-2 {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n .col-md-3, .lightGallery .image-tile {\n flex: 0 0 25%;\n max-width: 25%; }\n .col-md-4, .lightGallery .image-tile {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n .col-md-5 {\n flex: 0 0 41.66667%;\n max-width: 41.66667%; }\n .col-md-6 {\n flex: 0 0 50%;\n max-width: 50%; }\n .col-md-7 {\n flex: 0 0 58.33333%;\n max-width: 58.33333%; }\n .col-md-8 {\n flex: 0 0 66.66667%;\n max-width: 66.66667%; }\n .col-md-9 {\n flex: 0 0 75%;\n max-width: 75%; }\n .col-md-10 {\n flex: 0 0 83.33333%;\n max-width: 83.33333%; }\n .col-md-11 {\n flex: 0 0 91.66667%;\n max-width: 91.66667%; }\n .col-md-12 {\n flex: 0 0 100%;\n max-width: 100%; }\n .order-md-first {\n order: -1; }\n .order-md-last {\n order: 13; }\n .order-md-0 {\n order: 0; }\n .order-md-1 {\n order: 1; }\n .order-md-2 {\n order: 2; }\n .order-md-3 {\n order: 3; }\n .order-md-4 {\n order: 4; }\n .order-md-5 {\n order: 5; }\n .order-md-6 {\n order: 6; }\n .order-md-7 {\n order: 7; }\n .order-md-8 {\n order: 8; }\n .order-md-9 {\n order: 9; }\n .order-md-10 {\n order: 10; }\n .order-md-11 {\n order: 11; }\n .order-md-12 {\n order: 12; }\n .offset-md-0 {\n margin-left: 0; }\n .offset-md-1 {\n margin-left: 8.33333%; }\n .offset-md-2 {\n margin-left: 16.66667%; }\n .offset-md-3 {\n margin-left: 25%; }\n .offset-md-4 {\n margin-left: 33.33333%; }\n .offset-md-5 {\n margin-left: 41.66667%; }\n .offset-md-6 {\n margin-left: 50%; }\n .offset-md-7 {\n margin-left: 58.33333%; }\n .offset-md-8 {\n margin-left: 66.66667%; }\n .offset-md-9 {\n margin-left: 75%; }\n .offset-md-10 {\n margin-left: 83.33333%; }\n .offset-md-11 {\n margin-left: 91.66667%; } }\n\n@media (min-width: 992px) {\n .col-lg {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%; }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none; }\n .col-lg-1 {\n flex: 0 0 8.33333%;\n max-width: 8.33333%; }\n .col-lg-2 {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n .col-lg-3, .lightGallery .image-tile {\n flex: 0 0 25%;\n max-width: 25%; }\n .col-lg-4 {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n .col-lg-5 {\n flex: 0 0 41.66667%;\n max-width: 41.66667%; }\n .col-lg-6 {\n flex: 0 0 50%;\n max-width: 50%; }\n .col-lg-7 {\n flex: 0 0 58.33333%;\n max-width: 58.33333%; }\n .col-lg-8 {\n flex: 0 0 66.66667%;\n max-width: 66.66667%; }\n .col-lg-9 {\n flex: 0 0 75%;\n max-width: 75%; }\n .col-lg-10 {\n flex: 0 0 83.33333%;\n max-width: 83.33333%; }\n .col-lg-11 {\n flex: 0 0 91.66667%;\n max-width: 91.66667%; }\n .col-lg-12 {\n flex: 0 0 100%;\n max-width: 100%; }\n .order-lg-first {\n order: -1; }\n .order-lg-last {\n order: 13; }\n .order-lg-0 {\n order: 0; }\n .order-lg-1 {\n order: 1; }\n .order-lg-2 {\n order: 2; }\n .order-lg-3 {\n order: 3; }\n .order-lg-4 {\n order: 4; }\n .order-lg-5 {\n order: 5; }\n .order-lg-6 {\n order: 6; }\n .order-lg-7 {\n order: 7; }\n .order-lg-8 {\n order: 8; }\n .order-lg-9 {\n order: 9; }\n .order-lg-10 {\n order: 10; }\n .order-lg-11 {\n order: 11; }\n .order-lg-12 {\n order: 12; }\n .offset-lg-0 {\n margin-left: 0; }\n .offset-lg-1 {\n margin-left: 8.33333%; }\n .offset-lg-2 {\n margin-left: 16.66667%; }\n .offset-lg-3 {\n margin-left: 25%; }\n .offset-lg-4 {\n margin-left: 33.33333%; }\n .offset-lg-5 {\n margin-left: 41.66667%; }\n .offset-lg-6 {\n margin-left: 50%; }\n .offset-lg-7 {\n margin-left: 58.33333%; }\n .offset-lg-8 {\n margin-left: 66.66667%; }\n .offset-lg-9 {\n margin-left: 75%; }\n .offset-lg-10 {\n margin-left: 83.33333%; }\n .offset-lg-11 {\n margin-left: 91.66667%; } }\n\n@media (min-width: 1200px) {\n .col-xl {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%; }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none; }\n .col-xl-1 {\n flex: 0 0 8.33333%;\n max-width: 8.33333%; }\n .col-xl-2 {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n .col-xl-3, .lightGallery .image-tile {\n flex: 0 0 25%;\n max-width: 25%; }\n .col-xl-4 {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n .col-xl-5 {\n flex: 0 0 41.66667%;\n max-width: 41.66667%; }\n .col-xl-6 {\n flex: 0 0 50%;\n max-width: 50%; }\n .col-xl-7 {\n flex: 0 0 58.33333%;\n max-width: 58.33333%; }\n .col-xl-8 {\n flex: 0 0 66.66667%;\n max-width: 66.66667%; }\n .col-xl-9 {\n flex: 0 0 75%;\n max-width: 75%; }\n .col-xl-10 {\n flex: 0 0 83.33333%;\n max-width: 83.33333%; }\n .col-xl-11 {\n flex: 0 0 91.66667%;\n max-width: 91.66667%; }\n .col-xl-12 {\n flex: 0 0 100%;\n max-width: 100%; }\n .order-xl-first {\n order: -1; }\n .order-xl-last {\n order: 13; }\n .order-xl-0 {\n order: 0; }\n .order-xl-1 {\n order: 1; }\n .order-xl-2 {\n order: 2; }\n .order-xl-3 {\n order: 3; }\n .order-xl-4 {\n order: 4; }\n .order-xl-5 {\n order: 5; }\n .order-xl-6 {\n order: 6; }\n .order-xl-7 {\n order: 7; }\n .order-xl-8 {\n order: 8; }\n .order-xl-9 {\n order: 9; }\n .order-xl-10 {\n order: 10; }\n .order-xl-11 {\n order: 11; }\n .order-xl-12 {\n order: 12; }\n .offset-xl-0 {\n margin-left: 0; }\n .offset-xl-1 {\n margin-left: 8.33333%; }\n .offset-xl-2 {\n margin-left: 16.66667%; }\n .offset-xl-3 {\n margin-left: 25%; }\n .offset-xl-4 {\n margin-left: 33.33333%; }\n .offset-xl-5 {\n margin-left: 41.66667%; }\n .offset-xl-6 {\n margin-left: 50%; }\n .offset-xl-7 {\n margin-left: 58.33333%; }\n .offset-xl-8 {\n margin-left: 66.66667%; }\n .offset-xl-9 {\n margin-left: 75%; }\n .offset-xl-10 {\n margin-left: 83.33333%; }\n .offset-xl-11 {\n margin-left: 91.66667%; } }\n\n.table, .jsgrid .jsgrid-table {\n width: 100%;\n margin-bottom: 1rem;\n background-color: transparent; }\n .table th, .jsgrid .jsgrid-table th,\n .table td, .jsgrid .jsgrid-table td {\n padding: 18px 15px;\n vertical-align: top;\n border-top: 1px solid #f2f2f2; }\n .table thead th, .jsgrid .jsgrid-table thead th {\n vertical-align: bottom;\n border-bottom: 2px solid #f2f2f2; }\n .table tbody + tbody, .jsgrid .jsgrid-table tbody + tbody {\n border-top: 2px solid #f2f2f2; }\n .table .table, .jsgrid .jsgrid-table .table, .table .jsgrid .jsgrid-table, .jsgrid .table .jsgrid-table, .jsgrid .jsgrid-table .jsgrid-table {\n background-color: #fff; }\n\n.table-sm th,\n.table-sm td {\n padding: 0.3rem; }\n\n.table-bordered {\n border: 1px solid #f2f2f2; }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #f2f2f2; }\n .table-bordered thead th,\n .table-bordered thead td {\n border-bottom-width: 2px; }\n\n.table-borderless th,\n.table-borderless td,\n.table-borderless thead th,\n.table-borderless tbody + tbody {\n border: 0; }\n\n.table-striped tbody tr:nth-of-type(even) {\n background-color: #fbfbfb; }\n\n.table-hover tbody tr:hover {\n background-color: #f3f4fa; }\n\n.table-primary,\n.table-primary > th,\n.table-primary > td {\n background-color: #c1e2fc; }\n\n.table-hover .table-primary:hover {\n background-color: #a9d7fb; }\n .table-hover .table-primary:hover > td,\n .table-hover .table-primary:hover > th {\n background-color: #a9d7fb; }\n\n.table-secondary,\n.table-secondary > th,\n.table-secondary > td {\n background-color: #f8fafb; }\n\n.table-hover .table-secondary:hover {\n background-color: #e8eef2; }\n .table-hover .table-secondary:hover > td,\n .table-hover .table-secondary:hover > th {\n background-color: #e8eef2; }\n\n.table-success,\n.table-success > th,\n.table-success > td {\n background-color: #bff4e1; }\n\n.table-hover .table-success:hover {\n background-color: #a9f0d7; }\n .table-hover .table-success:hover > td,\n .table-hover .table-success:hover > th {\n background-color: #a9f0d7; }\n\n.table-info,\n.table-info > th,\n.table-info > td {\n background-color: #ded3f6; }\n\n.table-hover .table-info:hover {\n background-color: #cebef2; }\n .table-hover .table-info:hover > td,\n .table-hover .table-info:hover > th {\n background-color: #cebef2; }\n\n.table-warning,\n.table-warning > th,\n.table-warning > td {\n background-color: #ffe9b8; }\n\n.table-hover .table-warning:hover {\n background-color: #ffe19f; }\n .table-hover .table-warning:hover > td,\n .table-hover .table-warning:hover > th {\n background-color: #ffe19f; }\n\n.table-danger,\n.table-danger > th,\n.table-danger > td {\n background-color: #ffd3d0; }\n\n.table-hover .table-danger:hover {\n background-color: #ffbbb7; }\n .table-hover .table-danger:hover > td,\n .table-hover .table-danger:hover > th {\n background-color: #ffbbb7; }\n\n.table-light,\n.table-light > th,\n.table-light > td {\n background-color: #fefefe; }\n\n.table-hover .table-light:hover {\n background-color: #f1f1f1; }\n .table-hover .table-light:hover > td,\n .table-hover .table-light:hover > th {\n background-color: #f1f1f1; }\n\n.table-dark,\n.table-dark > th,\n.table-dark > td {\n background-color: #c2c4cb; }\n\n.table-hover .table-dark:hover {\n background-color: #b4b7bf; }\n .table-hover .table-dark:hover > td,\n .table-hover .table-dark:hover > th {\n background-color: #b4b7bf; }\n\n.table-active,\n.table-active > th,\n.table-active > td {\n background-color: rgba(0, 0, 0, 0.075); }\n\n.table-hover .table-active:hover {\n background-color: rgba(0, 0, 0, 0.075); }\n .table-hover .table-active:hover > td,\n .table-hover .table-active:hover > th {\n background-color: rgba(0, 0, 0, 0.075); }\n\n.table .thead-dark th, .jsgrid .jsgrid-table .thead-dark th {\n color: #fff;\n background-color: #212529;\n border-color: #32383e; }\n\n.table .thead-light th, .jsgrid .jsgrid-table .thead-light th {\n color: #495057;\n background-color: #e9ecef;\n border-color: #f2f2f2; }\n\n.table-dark {\n color: #fff;\n background-color: #212529; }\n .table-dark th,\n .table-dark td,\n .table-dark thead th {\n border-color: #32383e; }\n .table-dark.table-bordered {\n border: 0; }\n .table-dark.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05); }\n .table-dark.table-hover tbody tr:hover {\n background-color: rgba(255, 255, 255, 0.075); }\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar; }\n .table-responsive-sm > .table-bordered {\n border: 0; } }\n\n@media (max-width: 767.98px) {\n .table-responsive-md {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar; }\n .table-responsive-md > .table-bordered {\n border: 0; } }\n\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar; }\n .table-responsive-lg > .table-bordered {\n border: 0; } }\n\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar; }\n .table-responsive-xl > .table-bordered {\n border: 0; } }\n\n.table-responsive {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar; }\n .table-responsive > .table-bordered {\n border: 0; }\n\n.form-control, .asColorPicker-input, .dataTables_wrapper select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text],\n.jsgrid .jsgrid-table .jsgrid-filter-row select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .tt-hint,\n.tt-query,\n.typeahead {\n display: block;\n width: 100%;\n height: calc(2.25rem + 2px);\n padding: 0.56rem 1.375rem;\n font-size: 1rem;\n line-height: 1;\n color: #495057;\n background-color: #ffffff;\n background-clip: padding-box;\n border: 1px solid #ced4da;\n border-radius: 2px;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }\n @media screen and (prefers-reduced-motion: reduce) {\n .form-control, .asColorPicker-input, .dataTables_wrapper select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text],\n .jsgrid .jsgrid-table .jsgrid-filter-row select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .tt-hint,\n .tt-query,\n .typeahead {\n transition: none; } }\n .form-control::-ms-expand, .asColorPicker-input::-ms-expand, .dataTables_wrapper select::-ms-expand, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]::-ms-expand,\n .jsgrid .jsgrid-table .jsgrid-filter-row select::-ms-expand, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]::-ms-expand, .select2-container--default .select2-selection--single::-ms-expand, .select2-container--default .select2-selection--single .select2-search__field::-ms-expand, .tt-hint::-ms-expand,\n .tt-query::-ms-expand,\n .typeahead::-ms-expand {\n background-color: transparent;\n border: 0; }\n .form-control:focus, .asColorPicker-input:focus, .dataTables_wrapper select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus,\n .jsgrid .jsgrid-table .jsgrid-filter-row select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .tt-hint:focus,\n .tt-query:focus,\n .typeahead:focus {\n color: #495057;\n background-color: #fff;\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .form-control::placeholder, .asColorPicker-input::placeholder, .dataTables_wrapper select::placeholder, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]::placeholder,\n .jsgrid .jsgrid-table .jsgrid-filter-row select::placeholder, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]::placeholder, .select2-container--default .select2-selection--single::placeholder, .select2-container--default .select2-selection--single .select2-search__field::placeholder, .tt-hint::placeholder,\n .tt-query::placeholder,\n .typeahead::placeholder {\n color: #c9c8c8;\n opacity: 1; }\n .form-control:disabled, .asColorPicker-input:disabled, .dataTables_wrapper select:disabled, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:disabled,\n .jsgrid .jsgrid-table .jsgrid-filter-row select:disabled, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:disabled, .select2-container--default .select2-selection--single:disabled, .select2-container--default .select2-selection--single .select2-search__field:disabled, .tt-hint:disabled,\n .tt-query:disabled,\n .typeahead:disabled, .form-control[readonly], [readonly].asColorPicker-input, .dataTables_wrapper select[readonly], .jsgrid .jsgrid-table .jsgrid-filter-row input[readonly][type=text],\n .jsgrid .jsgrid-table .jsgrid-filter-row select[readonly], .jsgrid .jsgrid-table .jsgrid-filter-row input[readonly][type=number], .select2-container--default [readonly].select2-selection--single, .select2-container--default .select2-selection--single [readonly].select2-search__field, [readonly].tt-hint,\n [readonly].tt-query,\n [readonly].typeahead {\n background-color: #e9ecef;\n opacity: 1; }\n\nselect.form-control:focus::-ms-value, select.asColorPicker-input:focus::-ms-value, .dataTables_wrapper select:focus::-ms-value,\n.jsgrid .jsgrid-table .jsgrid-filter-row select:focus::-ms-value, .select2-container--default select.select2-selection--single:focus::-ms-value, .select2-container--default .select2-selection--single select.select2-search__field:focus::-ms-value, select.tt-hint:focus::-ms-value,\nselect.tt-query:focus::-ms-value,\nselect.typeahead:focus::-ms-value {\n color: #495057;\n background-color: #ffffff; }\n\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%; }\n\n.col-form-label {\n padding-top: calc(0.56rem + 1px);\n padding-bottom: calc(0.56rem + 1px);\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1; }\n\n.col-form-label-lg {\n padding-top: calc(0.94rem + 1px);\n padding-bottom: calc(0.94rem + 1px);\n font-size: 1.25rem;\n line-height: 1; }\n\n.col-form-label-sm {\n padding-top: calc(0.5rem + 1px);\n padding-bottom: calc(0.5rem + 1px);\n font-size: 0.875rem;\n line-height: 1; }\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding-top: 0.56rem;\n padding-bottom: 0.56rem;\n margin-bottom: 0;\n line-height: 1;\n color: #212529;\n background-color: transparent;\n border: solid transparent;\n border-width: 1px 0; }\n .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {\n padding-right: 0;\n padding-left: 0; }\n\n.form-control-sm {\n height: calc(1.8125rem + 2px);\n padding: 0.5rem 0.81rem;\n font-size: 0.875rem;\n line-height: 1;\n border-radius: 0.2rem; }\n\n.form-control-lg {\n height: calc(2.875rem + 2px);\n padding: 0.94rem 1.94rem;\n font-size: 1.25rem;\n line-height: 1;\n border-radius: 0.3rem; }\n\nselect.form-control[size], select[size].asColorPicker-input, .dataTables_wrapper select[size],\n.jsgrid .jsgrid-table .jsgrid-filter-row select[size], .select2-container--default select[size].select2-selection--single, .select2-container--default .select2-selection--single select[size].select2-search__field, select[size].tt-hint,\nselect[size].tt-query,\nselect[size].typeahead, select.form-control[multiple], select[multiple].asColorPicker-input, .dataTables_wrapper select[multiple],\n.jsgrid .jsgrid-table .jsgrid-filter-row select[multiple], .select2-container--default select[multiple].select2-selection--single, .select2-container--default .select2-selection--single select[multiple].select2-search__field, select[multiple].tt-hint,\nselect[multiple].tt-query,\nselect[multiple].typeahead {\n height: auto; }\n\ntextarea.form-control, textarea.asColorPicker-input, .select2-container--default textarea.select2-selection--single, .select2-container--default .select2-selection--single textarea.select2-search__field, textarea.tt-hint,\ntextarea.tt-query,\ntextarea.typeahead {\n height: auto; }\n\n.form-group {\n margin-bottom: 1rem; }\n\n.form-text {\n display: block;\n margin-top: 0.25rem; }\n\n.form-row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -5px;\n margin-left: -5px; }\n .form-row > .col,\n .form-row > [class*=\"col-\"] {\n padding-right: 5px;\n padding-left: 5px; }\n\n.form-check {\n position: relative;\n display: block;\n padding-left: 1.25rem; }\n\n.form-check-input {\n position: absolute;\n margin-top: 0.3rem;\n margin-left: -1.25rem; }\n .form-check-input:disabled ~ .form-check-label {\n color: #858585; }\n\n.form-check-label {\n margin-bottom: 0; }\n\n.form-check-inline {\n display: inline-flex;\n align-items: center;\n padding-left: 0;\n margin-right: 0.75rem; }\n .form-check-inline .form-check-input {\n position: static;\n margin-top: 0;\n margin-right: 0.3125rem;\n margin-left: 0; }\n\n.valid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #28a745; }\n\n.valid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.4rem 0.75rem;\n margin-top: .1rem;\n font-size: 0.75rem;\n line-height: 1.5;\n color: #fff;\n background-color: rgba(40, 167, 69, 0.9);\n border-radius: 0.375rem; }\n\n.was-validated .form-control:valid, .was-validated .asColorPicker-input:valid, .was-validated .dataTables_wrapper select:valid, .dataTables_wrapper .was-validated select:valid, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:valid, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=text]:valid, .was-validated\n.jsgrid .jsgrid-table .jsgrid-filter-row select:valid,\n.jsgrid .jsgrid-table .jsgrid-filter-row .was-validated select:valid, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:valid, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=number]:valid, .was-validated .select2-container--default .select2-selection--single:valid, .select2-container--default .was-validated .select2-selection--single:valid, .was-validated .select2-container--default .select2-selection--single .select2-search__field:valid, .select2-container--default .select2-selection--single .was-validated .select2-search__field:valid, .was-validated .tt-hint:valid, .was-validated\n.tt-query:valid, .was-validated\n.typeahead:valid, .form-control.is-valid, .is-valid.asColorPicker-input, .dataTables_wrapper select.is-valid, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=text],\n.jsgrid .jsgrid-table .jsgrid-filter-row select.is-valid, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=number], .select2-container--default .is-valid.select2-selection--single, .select2-container--default .select2-selection--single .is-valid.select2-search__field, .is-valid.tt-hint,\n.is-valid.tt-query,\n.is-valid.typeahead, .was-validated\n.custom-select:valid,\n.custom-select.is-valid {\n border-color: #28a745; }\n .was-validated .form-control:valid:focus, .was-validated .asColorPicker-input:valid:focus, .was-validated .dataTables_wrapper select:valid:focus, .dataTables_wrapper .was-validated select:valid:focus, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:valid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=text]:valid:focus, .was-validated\n .jsgrid .jsgrid-table .jsgrid-filter-row select:valid:focus,\n .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated select:valid:focus, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:valid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=number]:valid:focus, .was-validated .select2-container--default .select2-selection--single:valid:focus, .select2-container--default .was-validated .select2-selection--single:valid:focus, .was-validated .select2-container--default .select2-selection--single .select2-search__field:valid:focus, .select2-container--default .select2-selection--single .was-validated .select2-search__field:valid:focus, .was-validated .tt-hint:valid:focus, .was-validated\n .tt-query:valid:focus, .was-validated\n .typeahead:valid:focus, .form-control.is-valid:focus, .is-valid.asColorPicker-input:focus, .dataTables_wrapper select.is-valid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=text]:focus,\n .jsgrid .jsgrid-table .jsgrid-filter-row select.is-valid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=number]:focus, .select2-container--default .is-valid.select2-selection--single:focus, .select2-container--default .select2-selection--single .is-valid.select2-search__field:focus, .is-valid.tt-hint:focus,\n .is-valid.tt-query:focus,\n .is-valid.typeahead:focus, .was-validated\n .custom-select:valid:focus,\n .custom-select.is-valid:focus {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }\n .was-validated .form-control:valid ~ .valid-feedback, .was-validated .asColorPicker-input:valid ~ .valid-feedback, .was-validated .dataTables_wrapper select:valid ~ .valid-feedback, .dataTables_wrapper .was-validated select:valid ~ .valid-feedback, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:valid ~ .valid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=text]:valid ~ .valid-feedback, .was-validated\n .jsgrid .jsgrid-table .jsgrid-filter-row select:valid ~ .valid-feedback,\n .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated select:valid ~ .valid-feedback, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:valid ~ .valid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=number]:valid ~ .valid-feedback, .was-validated .select2-container--default .select2-selection--single:valid ~ .valid-feedback, .select2-container--default .was-validated .select2-selection--single:valid ~ .valid-feedback, .was-validated .select2-container--default .select2-selection--single .select2-search__field:valid ~ .valid-feedback, .select2-container--default .select2-selection--single .was-validated .select2-search__field:valid ~ .valid-feedback, .was-validated .tt-hint:valid ~ .valid-feedback, .was-validated\n .tt-query:valid ~ .valid-feedback, .was-validated\n .typeahead:valid ~ .valid-feedback,\n .was-validated .form-control:valid ~ .valid-tooltip,\n .was-validated .asColorPicker-input:valid ~ .valid-tooltip,\n .was-validated .dataTables_wrapper select:valid ~ .valid-tooltip, .dataTables_wrapper\n .was-validated select:valid ~ .valid-tooltip,\n .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:valid ~ .valid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row\n .was-validated input[type=text]:valid ~ .valid-tooltip,\n .was-validated\n .jsgrid .jsgrid-table .jsgrid-filter-row select:valid ~ .valid-tooltip,\n .jsgrid .jsgrid-table .jsgrid-filter-row\n .was-validated select:valid ~ .valid-tooltip,\n .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:valid ~ .valid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row\n .was-validated input[type=number]:valid ~ .valid-tooltip,\n .was-validated .select2-container--default .select2-selection--single:valid ~ .valid-tooltip, .select2-container--default\n .was-validated .select2-selection--single:valid ~ .valid-tooltip,\n .was-validated .select2-container--default .select2-selection--single .select2-search__field:valid ~ .valid-tooltip, .select2-container--default .select2-selection--single\n .was-validated .select2-search__field:valid ~ .valid-tooltip,\n .was-validated .tt-hint:valid ~ .valid-tooltip,\n .was-validated\n .tt-query:valid ~ .valid-tooltip,\n .was-validated\n .typeahead:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, .is-valid.asColorPicker-input ~ .valid-feedback, .dataTables_wrapper select.is-valid ~ .valid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=text] ~ .valid-feedback,\n .jsgrid .jsgrid-table .jsgrid-filter-row select.is-valid ~ .valid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=number] ~ .valid-feedback, .select2-container--default .is-valid.select2-selection--single ~ .valid-feedback, .select2-container--default .select2-selection--single .is-valid.select2-search__field ~ .valid-feedback, .is-valid.tt-hint ~ .valid-feedback,\n .is-valid.tt-query ~ .valid-feedback,\n .is-valid.typeahead ~ .valid-feedback,\n .form-control.is-valid ~ .valid-tooltip, .is-valid.asColorPicker-input ~ .valid-tooltip, .dataTables_wrapper select.is-valid ~ .valid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=text] ~ .valid-tooltip,\n .jsgrid .jsgrid-table .jsgrid-filter-row select.is-valid ~ .valid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-valid[type=number] ~ .valid-tooltip, .select2-container--default .is-valid.select2-selection--single ~ .valid-tooltip, .select2-container--default .select2-selection--single .is-valid.select2-search__field ~ .valid-tooltip, .is-valid.tt-hint ~ .valid-tooltip,\n .is-valid.tt-query ~ .valid-tooltip,\n .is-valid.typeahead ~ .valid-tooltip, .was-validated\n .custom-select:valid ~ .valid-feedback,\n .was-validated\n .custom-select:valid ~ .valid-tooltip,\n .custom-select.is-valid ~ .valid-feedback,\n .custom-select.is-valid ~ .valid-tooltip {\n display: block; }\n\n.was-validated .form-control-file:valid ~ .valid-feedback,\n.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,\n.form-control-file.is-valid ~ .valid-tooltip {\n display: block; }\n\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n color: #28a745; }\n\n.was-validated .form-check-input:valid ~ .valid-feedback,\n.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,\n.form-check-input.is-valid ~ .valid-tooltip {\n display: block; }\n\n.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {\n color: #28a745; }\n .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {\n background-color: #71dd8a; }\n\n.was-validated .custom-control-input:valid ~ .valid-feedback,\n.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,\n.custom-control-input.is-valid ~ .valid-tooltip {\n display: block; }\n\n.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {\n background-color: #34ce57; }\n\n.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }\n\n.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {\n border-color: #28a745; }\n .was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after {\n border-color: inherit; }\n\n.was-validated .custom-file-input:valid ~ .valid-feedback,\n.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,\n.custom-file-input.is-valid ~ .valid-tooltip {\n display: block; }\n\n.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }\n\n.invalid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #dc3545; }\n\n.invalid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.4rem 0.75rem;\n margin-top: .1rem;\n font-size: 0.75rem;\n line-height: 1.5;\n color: #fff;\n background-color: rgba(220, 53, 69, 0.9);\n border-radius: 0.375rem; }\n\n.was-validated .form-control:invalid, .was-validated .asColorPicker-input:invalid, .was-validated .dataTables_wrapper select:invalid, .dataTables_wrapper .was-validated select:invalid, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:invalid, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=text]:invalid, .was-validated\n.jsgrid .jsgrid-table .jsgrid-filter-row select:invalid,\n.jsgrid .jsgrid-table .jsgrid-filter-row .was-validated select:invalid, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:invalid, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=number]:invalid, .was-validated .select2-container--default .select2-selection--single:invalid, .select2-container--default .was-validated .select2-selection--single:invalid, .was-validated .select2-container--default .select2-selection--single .select2-search__field:invalid, .select2-container--default .select2-selection--single .was-validated .select2-search__field:invalid, .was-validated .tt-hint:invalid, .was-validated\n.tt-query:invalid, .was-validated\n.typeahead:invalid, .form-control.is-invalid, .is-invalid.asColorPicker-input, .dataTables_wrapper select.is-invalid, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=text],\n.jsgrid .jsgrid-table .jsgrid-filter-row select.is-invalid, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=number], .select2-container--default .is-invalid.select2-selection--single, .select2-container--default .select2-selection--single .is-invalid.select2-search__field, .is-invalid.tt-hint,\n.is-invalid.tt-query,\n.is-invalid.typeahead, .was-validated\n.custom-select:invalid,\n.custom-select.is-invalid {\n border-color: #dc3545; }\n .was-validated .form-control:invalid:focus, .was-validated .asColorPicker-input:invalid:focus, .was-validated .dataTables_wrapper select:invalid:focus, .dataTables_wrapper .was-validated select:invalid:focus, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:invalid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=text]:invalid:focus, .was-validated\n .jsgrid .jsgrid-table .jsgrid-filter-row select:invalid:focus,\n .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated select:invalid:focus, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:invalid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=number]:invalid:focus, .was-validated .select2-container--default .select2-selection--single:invalid:focus, .select2-container--default .was-validated .select2-selection--single:invalid:focus, .was-validated .select2-container--default .select2-selection--single .select2-search__field:invalid:focus, .select2-container--default .select2-selection--single .was-validated .select2-search__field:invalid:focus, .was-validated .tt-hint:invalid:focus, .was-validated\n .tt-query:invalid:focus, .was-validated\n .typeahead:invalid:focus, .form-control.is-invalid:focus, .is-invalid.asColorPicker-input:focus, .dataTables_wrapper select.is-invalid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=text]:focus,\n .jsgrid .jsgrid-table .jsgrid-filter-row select.is-invalid:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=number]:focus, .select2-container--default .is-invalid.select2-selection--single:focus, .select2-container--default .select2-selection--single .is-invalid.select2-search__field:focus, .is-invalid.tt-hint:focus,\n .is-invalid.tt-query:focus,\n .is-invalid.typeahead:focus, .was-validated\n .custom-select:invalid:focus,\n .custom-select.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }\n .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .asColorPicker-input:invalid ~ .invalid-feedback, .was-validated .dataTables_wrapper select:invalid ~ .invalid-feedback, .dataTables_wrapper .was-validated select:invalid ~ .invalid-feedback, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:invalid ~ .invalid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=text]:invalid ~ .invalid-feedback, .was-validated\n .jsgrid .jsgrid-table .jsgrid-filter-row select:invalid ~ .invalid-feedback,\n .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated select:invalid ~ .invalid-feedback, .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:invalid ~ .invalid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row .was-validated input[type=number]:invalid ~ .invalid-feedback, .was-validated .select2-container--default .select2-selection--single:invalid ~ .invalid-feedback, .select2-container--default .was-validated .select2-selection--single:invalid ~ .invalid-feedback, .was-validated .select2-container--default .select2-selection--single .select2-search__field:invalid ~ .invalid-feedback, .select2-container--default .select2-selection--single .was-validated .select2-search__field:invalid ~ .invalid-feedback, .was-validated .tt-hint:invalid ~ .invalid-feedback, .was-validated\n .tt-query:invalid ~ .invalid-feedback, .was-validated\n .typeahead:invalid ~ .invalid-feedback,\n .was-validated .form-control:invalid ~ .invalid-tooltip,\n .was-validated .asColorPicker-input:invalid ~ .invalid-tooltip,\n .was-validated .dataTables_wrapper select:invalid ~ .invalid-tooltip, .dataTables_wrapper\n .was-validated select:invalid ~ .invalid-tooltip,\n .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:invalid ~ .invalid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row\n .was-validated input[type=text]:invalid ~ .invalid-tooltip,\n .was-validated\n .jsgrid .jsgrid-table .jsgrid-filter-row select:invalid ~ .invalid-tooltip,\n .jsgrid .jsgrid-table .jsgrid-filter-row\n .was-validated select:invalid ~ .invalid-tooltip,\n .was-validated .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:invalid ~ .invalid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row\n .was-validated input[type=number]:invalid ~ .invalid-tooltip,\n .was-validated .select2-container--default .select2-selection--single:invalid ~ .invalid-tooltip, .select2-container--default\n .was-validated .select2-selection--single:invalid ~ .invalid-tooltip,\n .was-validated .select2-container--default .select2-selection--single .select2-search__field:invalid ~ .invalid-tooltip, .select2-container--default .select2-selection--single\n .was-validated .select2-search__field:invalid ~ .invalid-tooltip,\n .was-validated .tt-hint:invalid ~ .invalid-tooltip,\n .was-validated\n .tt-query:invalid ~ .invalid-tooltip,\n .was-validated\n .typeahead:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, .is-invalid.asColorPicker-input ~ .invalid-feedback, .dataTables_wrapper select.is-invalid ~ .invalid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=text] ~ .invalid-feedback,\n .jsgrid .jsgrid-table .jsgrid-filter-row select.is-invalid ~ .invalid-feedback, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=number] ~ .invalid-feedback, .select2-container--default .is-invalid.select2-selection--single ~ .invalid-feedback, .select2-container--default .select2-selection--single .is-invalid.select2-search__field ~ .invalid-feedback, .is-invalid.tt-hint ~ .invalid-feedback,\n .is-invalid.tt-query ~ .invalid-feedback,\n .is-invalid.typeahead ~ .invalid-feedback,\n .form-control.is-invalid ~ .invalid-tooltip, .is-invalid.asColorPicker-input ~ .invalid-tooltip, .dataTables_wrapper select.is-invalid ~ .invalid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=text] ~ .invalid-tooltip,\n .jsgrid .jsgrid-table .jsgrid-filter-row select.is-invalid ~ .invalid-tooltip, .jsgrid .jsgrid-table .jsgrid-filter-row input.is-invalid[type=number] ~ .invalid-tooltip, .select2-container--default .is-invalid.select2-selection--single ~ .invalid-tooltip, .select2-container--default .select2-selection--single .is-invalid.select2-search__field ~ .invalid-tooltip, .is-invalid.tt-hint ~ .invalid-tooltip,\n .is-invalid.tt-query ~ .invalid-tooltip,\n .is-invalid.typeahead ~ .invalid-tooltip, .was-validated\n .custom-select:invalid ~ .invalid-feedback,\n .was-validated\n .custom-select:invalid ~ .invalid-tooltip,\n .custom-select.is-invalid ~ .invalid-feedback,\n .custom-select.is-invalid ~ .invalid-tooltip {\n display: block; }\n\n.was-validated .form-control-file:invalid ~ .invalid-feedback,\n.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,\n.form-control-file.is-invalid ~ .invalid-tooltip {\n display: block; }\n\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n color: #dc3545; }\n\n.was-validated .form-check-input:invalid ~ .invalid-feedback,\n.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,\n.form-check-input.is-invalid ~ .invalid-tooltip {\n display: block; }\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {\n color: #dc3545; }\n .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {\n background-color: #efa2a9; }\n\n.was-validated .custom-control-input:invalid ~ .invalid-feedback,\n.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,\n.custom-control-input.is-invalid ~ .invalid-tooltip {\n display: block; }\n\n.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {\n background-color: #e4606d; }\n\n.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {\n border-color: #dc3545; }\n .was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after {\n border-color: inherit; }\n\n.was-validated .custom-file-input:invalid ~ .invalid-feedback,\n.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,\n.custom-file-input.is-invalid ~ .invalid-tooltip {\n display: block; }\n\n.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }\n\n.form-inline {\n display: flex;\n flex-flow: row wrap;\n align-items: center; }\n .form-inline .form-check {\n width: 100%; }\n @media (min-width: 576px) {\n .form-inline label {\n display: flex;\n align-items: center;\n justify-content: center;\n margin-bottom: 0; }\n .form-inline .form-group {\n display: flex;\n flex: 0 0 auto;\n flex-flow: row wrap;\n align-items: center;\n margin-bottom: 0; }\n .form-inline .form-control, .form-inline .asColorPicker-input, .form-inline .dataTables_wrapper select, .dataTables_wrapper .form-inline select, .form-inline .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .form-inline input[type=text], .form-inline\n .jsgrid .jsgrid-table .jsgrid-filter-row select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .form-inline select, .form-inline .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .form-inline input[type=number], .form-inline .select2-container--default .select2-selection--single, .select2-container--default .form-inline .select2-selection--single, .form-inline .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .form-inline .select2-search__field, .form-inline .tt-hint, .form-inline\n .tt-query, .form-inline\n .typeahead {\n display: inline-block;\n width: auto;\n vertical-align: middle; }\n .form-inline .form-control-plaintext {\n display: inline-block; }\n .form-inline .input-group, .form-inline .asColorPicker-wrap,\n .form-inline .custom-select {\n width: auto; }\n .form-inline .form-check {\n display: flex;\n align-items: center;\n justify-content: center;\n width: auto;\n padding-left: 0; }\n .form-inline .form-check-input {\n position: relative;\n margin-top: 0;\n margin-right: 0.25rem;\n margin-left: 0; }\n .form-inline .custom-control {\n align-items: center;\n justify-content: center; }\n .form-inline .custom-control-label {\n margin-bottom: 0; } }\n\n.btn, .ajax-upload-dragdrop .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel, .wizard > .actions a {\n display: inline-block;\n font-weight: 400;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n user-select: none;\n border: 1px solid transparent;\n padding: 0.56rem 1.375rem;\n font-size: 1rem;\n line-height: 1;\n border-radius: 0.1875rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }\n @media screen and (prefers-reduced-motion: reduce) {\n .btn, .ajax-upload-dragdrop .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel, .wizard > .actions a {\n transition: none; } }\n .btn:hover, .ajax-upload-dragdrop .ajax-file-upload:hover, .swal2-modal .swal2-buttonswrapper .swal2-styled:hover, .wizard > .actions a:hover, .btn:focus, .ajax-upload-dragdrop .ajax-file-upload:focus, .swal2-modal .swal2-buttonswrapper .swal2-styled:focus, .wizard > .actions a:focus {\n text-decoration: none; }\n .btn:focus, .ajax-upload-dragdrop .ajax-file-upload:focus, .swal2-modal .swal2-buttonswrapper .swal2-styled:focus, .wizard > .actions a:focus, .btn.focus, .ajax-upload-dragdrop .focus.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .focus.swal2-styled, .wizard > .actions a.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .btn.disabled, .ajax-upload-dragdrop .disabled.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .disabled.swal2-styled, .wizard > .actions a.disabled, .btn:disabled, .ajax-upload-dragdrop .ajax-file-upload:disabled, .swal2-modal .swal2-buttonswrapper .swal2-styled:disabled, .wizard > .actions a:disabled {\n opacity: 0.65; }\n .btn:not(:disabled):not(.disabled), .ajax-upload-dragdrop .ajax-file-upload:not(:disabled):not(.disabled), .swal2-modal .swal2-buttonswrapper .swal2-styled:not(:disabled):not(.disabled), .wizard > .actions a:not(:disabled):not(.disabled) {\n cursor: pointer; }\n\na.btn.disabled, .ajax-upload-dragdrop a.disabled.ajax-file-upload, .swal2-modal .swal2-buttonswrapper a.disabled.swal2-styled, .wizard > .actions a.disabled,\nfieldset:disabled a.btn,\nfieldset:disabled .ajax-upload-dragdrop a.ajax-file-upload, .ajax-upload-dragdrop\nfieldset:disabled a.ajax-file-upload,\nfieldset:disabled .swal2-modal .swal2-buttonswrapper a.swal2-styled, .swal2-modal .swal2-buttonswrapper\nfieldset:disabled a.swal2-styled,\nfieldset:disabled .wizard > .actions a, .wizard > .actions\nfieldset:disabled a {\n pointer-events: none; }\n\n.btn-primary, .wizard > .actions a {\n color: #fff;\n background-color: #2196f3;\n border-color: #2196f3; }\n .btn-primary:hover, .wizard > .actions a:hover {\n color: #fff;\n background-color: #0c83e2;\n border-color: #0c7cd5; }\n .btn-primary:focus, .wizard > .actions a:focus, .btn-primary.focus, .wizard > .actions a.focus {\n box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); }\n .btn-primary.disabled, .wizard > .actions a.disabled, .btn-primary:disabled, .wizard > .actions a:disabled {\n color: #fff;\n background-color: #2196f3;\n border-color: #2196f3; }\n .btn-primary:not(:disabled):not(.disabled):active, .wizard > .actions a:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .wizard > .actions a:not(:disabled):not(.disabled).active,\n .show > .btn-primary.dropdown-toggle, .wizard > .actions\n .show > a.dropdown-toggle {\n color: #fff;\n background-color: #0c7cd5;\n border-color: #0b75c9; }\n .btn-primary:not(:disabled):not(.disabled):active:focus, .wizard > .actions a:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .wizard > .actions a:not(:disabled):not(.disabled).active:focus,\n .show > .btn-primary.dropdown-toggle:focus, .wizard > .actions\n .show > a.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); }\n\n.btn-secondary, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel {\n color: #212529;\n background-color: #e6eef2;\n border-color: #e6eef2; }\n .btn-secondary:hover, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:hover {\n color: #212529;\n background-color: #cddde5;\n border-color: #c4d7e1; }\n .btn-secondary:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:focus, .btn-secondary.focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .focus.editable-cancel {\n box-shadow: 0 0 0 0.2rem rgba(230, 238, 242, 0.5); }\n .btn-secondary.disabled, .editable-container.editable-inline .editableform .control-group .editable-buttons .disabled.editable-cancel, .btn-secondary:disabled, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:disabled {\n color: #212529;\n background-color: #e6eef2;\n border-color: #e6eef2; }\n .btn-secondary:not(:disabled):not(.disabled):active, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:not(:disabled):not(.disabled).active,\n .show > .btn-secondary.dropdown-toggle, .editable-container.editable-inline .editableform .control-group .editable-buttons\n .show > .dropdown-toggle.editable-cancel {\n color: #212529;\n background-color: #c4d7e1;\n border-color: #bcd1dc; }\n .btn-secondary:not(:disabled):not(.disabled):active:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel:not(:disabled):not(.disabled).active:focus,\n .show > .btn-secondary.dropdown-toggle:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons\n .show > .dropdown-toggle.editable-cancel:focus {\n box-shadow: 0 0 0 0.2rem rgba(230, 238, 242, 0.5); }\n\n.btn-success {\n color: #212529;\n background-color: #19d895;\n border-color: #19d895; }\n .btn-success:hover {\n color: #fff;\n background-color: #15b67d;\n border-color: #14aa75; }\n .btn-success:focus, .btn-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(25, 216, 149, 0.5); }\n .btn-success.disabled, .btn-success:disabled {\n color: #212529;\n background-color: #19d895;\n border-color: #19d895; }\n .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,\n .show > .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #14aa75;\n border-color: #129f6e; }\n .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,\n .show > .btn-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(25, 216, 149, 0.5); }\n\n.btn-info, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit {\n color: #fff;\n background-color: #8862e0;\n border-color: #8862e0; }\n .btn-info:hover, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:hover {\n color: #fff;\n background-color: #7042da;\n border-color: #6837d8; }\n .btn-info:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:focus, .btn-info.focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .focus.editable-submit {\n box-shadow: 0 0 0 0.2rem rgba(136, 98, 224, 0.5); }\n .btn-info.disabled, .editable-container.editable-inline .editableform .control-group .editable-buttons .disabled.editable-submit, .btn-info:disabled, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:disabled {\n color: #fff;\n background-color: #8862e0;\n border-color: #8862e0; }\n .btn-info:not(:disabled):not(.disabled):active, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:not(:disabled):not(.disabled).active,\n .show > .btn-info.dropdown-toggle, .editable-container.editable-inline .editableform .control-group .editable-buttons\n .show > .dropdown-toggle.editable-submit {\n color: #fff;\n background-color: #6837d8;\n border-color: #602dd5; }\n .btn-info:not(:disabled):not(.disabled):active:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit:not(:disabled):not(.disabled).active:focus,\n .show > .btn-info.dropdown-toggle:focus, .editable-container.editable-inline .editableform .control-group .editable-buttons\n .show > .dropdown-toggle.editable-submit:focus {\n box-shadow: 0 0 0 0.2rem rgba(136, 98, 224, 0.5); }\n\n.btn-warning {\n color: #212529;\n background-color: #ffaf00;\n border-color: #ffaf00; }\n .btn-warning:hover {\n color: #212529;\n background-color: #d99500;\n border-color: #cc8c00; }\n .btn-warning:focus, .btn-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 175, 0, 0.5); }\n .btn-warning.disabled, .btn-warning:disabled {\n color: #212529;\n background-color: #ffaf00;\n border-color: #ffaf00; }\n .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,\n .show > .btn-warning.dropdown-toggle {\n color: #fff;\n background-color: #cc8c00;\n border-color: #bf8300; }\n .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,\n .show > .btn-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 175, 0, 0.5); }\n\n.btn-danger {\n color: #fff;\n background-color: #ff6258;\n border-color: #ff6258; }\n .btn-danger:hover {\n color: #fff;\n background-color: #ff3e32;\n border-color: #ff3225; }\n .btn-danger:focus, .btn-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 98, 88, 0.5); }\n .btn-danger.disabled, .btn-danger:disabled {\n color: #fff;\n background-color: #ff6258;\n border-color: #ff6258; }\n .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,\n .show > .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #ff3225;\n border-color: #ff2618; }\n .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,\n .show > .btn-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 98, 88, 0.5); }\n\n.btn-light {\n color: #212529;\n background-color: #fbfbfb;\n border-color: #fbfbfb; }\n .btn-light:hover {\n color: #212529;\n background-color: #e8e8e8;\n border-color: #e2e2e2; }\n .btn-light:focus, .btn-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(251, 251, 251, 0.5); }\n .btn-light.disabled, .btn-light:disabled {\n color: #212529;\n background-color: #fbfbfb;\n border-color: #fbfbfb; }\n .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,\n .show > .btn-light.dropdown-toggle {\n color: #212529;\n background-color: #e2e2e2;\n border-color: #dbdbdb; }\n .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,\n .show > .btn-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(251, 251, 251, 0.5); }\n\n.btn-dark {\n color: #fff;\n background-color: #252C46;\n border-color: #252C46; }\n .btn-dark:hover {\n color: #fff;\n background-color: #181c2d;\n border-color: #131725; }\n .btn-dark:focus, .btn-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(37, 44, 70, 0.5); }\n .btn-dark.disabled, .btn-dark:disabled {\n color: #fff;\n background-color: #252C46;\n border-color: #252C46; }\n .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,\n .show > .btn-dark.dropdown-toggle {\n color: #fff;\n background-color: #131725;\n border-color: #0f121c; }\n .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,\n .show > .btn-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(37, 44, 70, 0.5); }\n\n.btn-outline-primary, .wizard > .actions .disabled a {\n color: #2196f3;\n background-color: transparent;\n background-image: none;\n border-color: #2196f3; }\n .btn-outline-primary:hover, .wizard > .actions .disabled a:hover {\n color: #fff;\n background-color: #2196f3;\n border-color: #2196f3; }\n .btn-outline-primary:focus, .wizard > .actions .disabled a:focus, .btn-outline-primary.focus, .wizard > .actions .disabled a.focus {\n box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); }\n .btn-outline-primary.disabled, .wizard > .actions .disabled a.disabled, .btn-outline-primary:disabled, .wizard > .actions .disabled a:disabled {\n color: #2196f3;\n background-color: transparent; }\n .btn-outline-primary:not(:disabled):not(.disabled):active, .wizard > .actions .disabled a:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .wizard > .actions .disabled a:not(:disabled):not(.disabled).active,\n .show > .btn-outline-primary.dropdown-toggle, .wizard > .actions .disabled\n .show > a.dropdown-toggle {\n color: #fff;\n background-color: #2196f3;\n border-color: #2196f3; }\n .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .wizard > .actions .disabled a:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .wizard > .actions .disabled a:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-primary.dropdown-toggle:focus, .wizard > .actions .disabled\n .show > a.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5); }\n\n.btn-outline-secondary {\n color: #e6eef2;\n background-color: transparent;\n background-image: none;\n border-color: #e6eef2; }\n .btn-outline-secondary:hover {\n color: #212529;\n background-color: #e6eef2;\n border-color: #e6eef2; }\n .btn-outline-secondary:focus, .btn-outline-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(230, 238, 242, 0.5); }\n .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {\n color: #e6eef2;\n background-color: transparent; }\n .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,\n .show > .btn-outline-secondary.dropdown-toggle {\n color: #212529;\n background-color: #e6eef2;\n border-color: #e6eef2; }\n .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(230, 238, 242, 0.5); }\n\n.btn-outline-success {\n color: #19d895;\n background-color: transparent;\n background-image: none;\n border-color: #19d895; }\n .btn-outline-success:hover {\n color: #212529;\n background-color: #19d895;\n border-color: #19d895; }\n .btn-outline-success:focus, .btn-outline-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(25, 216, 149, 0.5); }\n .btn-outline-success.disabled, .btn-outline-success:disabled {\n color: #19d895;\n background-color: transparent; }\n .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,\n .show > .btn-outline-success.dropdown-toggle {\n color: #212529;\n background-color: #19d895;\n border-color: #19d895; }\n .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(25, 216, 149, 0.5); }\n\n.btn-outline-info {\n color: #8862e0;\n background-color: transparent;\n background-image: none;\n border-color: #8862e0; }\n .btn-outline-info:hover {\n color: #fff;\n background-color: #8862e0;\n border-color: #8862e0; }\n .btn-outline-info:focus, .btn-outline-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(136, 98, 224, 0.5); }\n .btn-outline-info.disabled, .btn-outline-info:disabled {\n color: #8862e0;\n background-color: transparent; }\n .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,\n .show > .btn-outline-info.dropdown-toggle {\n color: #fff;\n background-color: #8862e0;\n border-color: #8862e0; }\n .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(136, 98, 224, 0.5); }\n\n.btn-outline-warning {\n color: #ffaf00;\n background-color: transparent;\n background-image: none;\n border-color: #ffaf00; }\n .btn-outline-warning:hover {\n color: #212529;\n background-color: #ffaf00;\n border-color: #ffaf00; }\n .btn-outline-warning:focus, .btn-outline-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 175, 0, 0.5); }\n .btn-outline-warning.disabled, .btn-outline-warning:disabled {\n color: #ffaf00;\n background-color: transparent; }\n .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,\n .show > .btn-outline-warning.dropdown-toggle {\n color: #212529;\n background-color: #ffaf00;\n border-color: #ffaf00; }\n .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 175, 0, 0.5); }\n\n.btn-outline-danger {\n color: #ff6258;\n background-color: transparent;\n background-image: none;\n border-color: #ff6258; }\n .btn-outline-danger:hover {\n color: #fff;\n background-color: #ff6258;\n border-color: #ff6258; }\n .btn-outline-danger:focus, .btn-outline-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 98, 88, 0.5); }\n .btn-outline-danger.disabled, .btn-outline-danger:disabled {\n color: #ff6258;\n background-color: transparent; }\n .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,\n .show > .btn-outline-danger.dropdown-toggle {\n color: #fff;\n background-color: #ff6258;\n border-color: #ff6258; }\n .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 98, 88, 0.5); }\n\n.btn-outline-light {\n color: #fbfbfb;\n background-color: transparent;\n background-image: none;\n border-color: #fbfbfb; }\n .btn-outline-light:hover {\n color: #212529;\n background-color: #fbfbfb;\n border-color: #fbfbfb; }\n .btn-outline-light:focus, .btn-outline-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(251, 251, 251, 0.5); }\n .btn-outline-light.disabled, .btn-outline-light:disabled {\n color: #fbfbfb;\n background-color: transparent; }\n .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,\n .show > .btn-outline-light.dropdown-toggle {\n color: #212529;\n background-color: #fbfbfb;\n border-color: #fbfbfb; }\n .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(251, 251, 251, 0.5); }\n\n.btn-outline-dark {\n color: #252C46;\n background-color: transparent;\n background-image: none;\n border-color: #252C46; }\n .btn-outline-dark:hover {\n color: #fff;\n background-color: #252C46;\n border-color: #252C46; }\n .btn-outline-dark:focus, .btn-outline-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(37, 44, 70, 0.5); }\n .btn-outline-dark.disabled, .btn-outline-dark:disabled {\n color: #252C46;\n background-color: transparent; }\n .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,\n .show > .btn-outline-dark.dropdown-toggle {\n color: #fff;\n background-color: #252C46;\n border-color: #252C46; }\n .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(37, 44, 70, 0.5); }\n\n.btn-link {\n font-weight: 400;\n color: #007bff;\n background-color: transparent; }\n .btn-link:hover {\n color: #0056b3;\n text-decoration: underline;\n background-color: transparent;\n border-color: transparent; }\n .btn-link:focus, .btn-link.focus {\n text-decoration: underline;\n border-color: transparent;\n box-shadow: none; }\n .btn-link:disabled, .btn-link.disabled {\n color: #6c757d;\n pointer-events: none; }\n\n.btn-lg, .btn-group-lg > .btn, .ajax-upload-dragdrop .btn-group-lg > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group-lg > .swal2-styled, .wizard > .actions .btn-group-lg > a {\n padding: 0.94rem 1.94rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.1875rem; }\n\n.btn-sm, .btn-group-sm > .btn, .ajax-upload-dragdrop .btn-group-sm > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group-sm > .swal2-styled, .wizard > .actions .btn-group-sm > a {\n padding: 0.5rem 0.81rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.1875rem; }\n\n.btn-block {\n display: block;\n width: 100%; }\n .btn-block + .btn-block {\n margin-top: 0.5rem; }\n\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%; }\n\n.fade {\n transition: opacity 0.15s linear; }\n @media screen and (prefers-reduced-motion: reduce) {\n .fade {\n transition: none; } }\n .fade:not(.show) {\n opacity: 0; }\n\n.collapse:not(.show) {\n display: none; }\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n transition: height 0.35s ease; }\n @media screen and (prefers-reduced-motion: reduce) {\n .collapsing {\n transition: none; } }\n\n.dropup,\n.dropright,\n.dropdown,\n.dropleft {\n position: relative; }\n\n.dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid;\n border-right: 0.3em solid transparent;\n border-bottom: 0;\n border-left: 0.3em solid transparent; }\n\n.dropdown-toggle:empty::after {\n margin-left: 0; }\n\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 10rem;\n padding: 0.5rem 0;\n margin: 0.125rem 0 0;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #f2f2f2;\n border-radius: 0.25rem; }\n\n.dropdown-menu-right {\n right: 0;\n left: auto; }\n\n.dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: 0.125rem; }\n\n.dropup .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0;\n border-right: 0.3em solid transparent;\n border-bottom: 0.3em solid;\n border-left: 0.3em solid transparent; }\n\n.dropup .dropdown-toggle:empty::after {\n margin-left: 0; }\n\n.dropright .dropdown-menu {\n top: 0;\n right: auto;\n left: 100%;\n margin-top: 0;\n margin-left: 0.125rem; }\n\n.dropright .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0;\n border-bottom: 0.3em solid transparent;\n border-left: 0.3em solid; }\n\n.dropright .dropdown-toggle:empty::after {\n margin-left: 0; }\n\n.dropright .dropdown-toggle::after {\n vertical-align: 0; }\n\n.dropleft .dropdown-menu {\n top: 0;\n right: 100%;\n left: auto;\n margin-top: 0;\n margin-right: 0.125rem; }\n\n.dropleft .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\"; }\n\n.dropleft .dropdown-toggle::after {\n display: none; }\n\n.dropleft .dropdown-toggle::before {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0.3em solid;\n border-bottom: 0.3em solid transparent; }\n\n.dropleft .dropdown-toggle:empty::after {\n margin-left: 0; }\n\n.dropleft .dropdown-toggle::before {\n vertical-align: 0; }\n\n.dropdown-menu[x-placement^=\"top\"], .dropdown-menu[x-placement^=\"right\"], .dropdown-menu[x-placement^=\"bottom\"], .dropdown-menu[x-placement^=\"left\"] {\n right: auto;\n bottom: auto; }\n\n.dropdown-divider {\n height: 0;\n margin: 0.5rem 0;\n overflow: hidden;\n border-top: 1px solid #f2f2f2; }\n\n.dropdown-item {\n display: block;\n width: 100%;\n padding: 0.25rem 1.5rem;\n clear: both;\n font-weight: 400;\n color: #212529;\n text-align: inherit;\n white-space: nowrap;\n background-color: transparent;\n border: 0; }\n .dropdown-item:hover, .dropdown-item:focus {\n color: #16181b;\n text-decoration: none;\n background-color: #f8f9fa; }\n .dropdown-item.active, .dropdown-item:active {\n color: #fff;\n text-decoration: none;\n background-color: #007bff; }\n .dropdown-item.disabled, .dropdown-item:disabled {\n color: #6c757d;\n background-color: transparent; }\n\n.dropdown-menu.show {\n display: block; }\n\n.dropdown-header {\n display: block;\n padding: 0.5rem 1.5rem;\n margin-bottom: 0;\n font-size: 0.875rem;\n color: #212529;\n white-space: nowrap; }\n\n.dropdown-item-text {\n display: block;\n padding: 0.25rem 1.5rem;\n color: #212529; }\n\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-flex;\n vertical-align: middle; }\n .btn-group > .btn, .ajax-upload-dragdrop .btn-group > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled, .wizard > .actions .btn-group > a,\n .btn-group-vertical > .btn, .ajax-upload-dragdrop\n .btn-group-vertical > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical > .swal2-styled, .wizard > .actions\n .btn-group-vertical > a {\n position: relative;\n flex: 0 1 auto; }\n .btn-group > .btn:hover, .ajax-upload-dragdrop .btn-group > .ajax-file-upload:hover, .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled:hover, .wizard > .actions .btn-group > a:hover,\n .btn-group-vertical > .btn:hover, .ajax-upload-dragdrop\n .btn-group-vertical > .ajax-file-upload:hover, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical > .swal2-styled:hover, .wizard > .actions\n .btn-group-vertical > a:hover {\n z-index: 1; }\n .btn-group > .btn:focus, .ajax-upload-dragdrop .btn-group > .ajax-file-upload:focus, .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled:focus, .wizard > .actions .btn-group > a:focus, .btn-group > .btn:active, .ajax-upload-dragdrop .btn-group > .ajax-file-upload:active, .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled:active, .wizard > .actions .btn-group > a:active, .btn-group > .btn.active, .ajax-upload-dragdrop .btn-group > .active.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group > .active.swal2-styled, .wizard > .actions .btn-group > a.active,\n .btn-group-vertical > .btn:focus, .ajax-upload-dragdrop\n .btn-group-vertical > .ajax-file-upload:focus, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical > .swal2-styled:focus, .wizard > .actions\n .btn-group-vertical > a:focus,\n .btn-group-vertical > .btn:active, .ajax-upload-dragdrop\n .btn-group-vertical > .ajax-file-upload:active, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical > .swal2-styled:active, .wizard > .actions\n .btn-group-vertical > a:active,\n .btn-group-vertical > .btn.active, .ajax-upload-dragdrop\n .btn-group-vertical > .active.ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical > .active.swal2-styled, .wizard > .actions\n .btn-group-vertical > a.active {\n z-index: 1; }\n .btn-group .btn + .btn, .btn-group .ajax-upload-dragdrop .ajax-file-upload + .btn, .ajax-upload-dragdrop .btn-group .ajax-file-upload + .btn, .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn, .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled + .btn, .btn-group .wizard > .actions a + .btn, .wizard > .actions .btn-group a + .btn, .btn-group .ajax-upload-dragdrop .btn + .ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn + .ajax-file-upload, .btn-group .ajax-upload-dragdrop .ajax-file-upload + .ajax-file-upload, .ajax-upload-dragdrop .btn-group .ajax-file-upload + .ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled + .ajax-file-upload, .btn-group .wizard > .actions .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .btn-group .wizard > .actions a + .ajax-file-upload, .wizard > .actions .btn-group .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions .btn-group a + .ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn + .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn + .swal2-styled, .btn-group .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .ajax-upload-dragdrop .ajax-file-upload + .swal2-styled, .ajax-upload-dragdrop .btn-group .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .btn-group .ajax-file-upload + .swal2-styled, .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled + .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled + .swal2-styled, .btn-group .wizard > .actions .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .wizard > .actions a + .swal2-styled, .wizard > .actions .btn-group .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions .btn-group a + .swal2-styled, .btn-group .wizard > .actions .btn + a, .wizard > .actions .btn-group .btn + a, .btn-group .ajax-upload-dragdrop .wizard > .actions .ajax-file-upload + a, .wizard > .actions .btn-group .ajax-upload-dragdrop .ajax-file-upload + a, .ajax-upload-dragdrop .btn-group .wizard > .actions .ajax-file-upload + a, .wizard > .actions .ajax-upload-dragdrop .btn-group .ajax-file-upload + a, .btn-group .swal2-modal .swal2-buttonswrapper .wizard > .actions .swal2-styled + a, .wizard > .actions .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled + a, .swal2-modal .swal2-buttonswrapper .btn-group .wizard > .actions .swal2-styled + a, .wizard > .actions .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled + a, .btn-group .wizard > .actions a + a, .wizard > .actions .btn-group a + a,\n .btn-group .btn + .btn-group,\n .btn-group .ajax-upload-dragdrop .ajax-file-upload + .btn-group, .ajax-upload-dragdrop\n .btn-group .ajax-file-upload + .btn-group,\n .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn-group, .swal2-modal .swal2-buttonswrapper\n .btn-group .swal2-styled + .btn-group,\n .btn-group .wizard > .actions a + .btn-group, .wizard > .actions\n .btn-group a + .btn-group,\n .btn-group .btn-group + .btn,\n .btn-group .ajax-upload-dragdrop .btn-group + .ajax-file-upload, .ajax-upload-dragdrop\n .btn-group .btn-group + .ajax-file-upload,\n .btn-group .swal2-modal .swal2-buttonswrapper .btn-group + .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .btn-group .btn-group + .swal2-styled,\n .btn-group .wizard > .actions .btn-group + a, .wizard > .actions\n .btn-group .btn-group + a,\n .btn-group .btn-group + .btn-group,\n .btn-group-vertical .btn + .btn,\n .btn-group-vertical .ajax-upload-dragdrop .ajax-file-upload + .btn, .ajax-upload-dragdrop\n .btn-group-vertical .ajax-file-upload + .btn,\n .btn-group-vertical .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical .swal2-styled + .btn,\n .btn-group-vertical .wizard > .actions a + .btn, .wizard > .actions\n .btn-group-vertical a + .btn,\n .btn-group-vertical .ajax-upload-dragdrop .btn + .ajax-file-upload, .ajax-upload-dragdrop\n .btn-group-vertical .btn + .ajax-file-upload,\n .btn-group-vertical .ajax-upload-dragdrop .ajax-file-upload + .ajax-file-upload, .ajax-upload-dragdrop\n .btn-group-vertical .ajax-file-upload + .ajax-file-upload,\n .btn-group-vertical .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop\n .btn-group-vertical .swal2-modal .swal2-buttonswrapper .swal2-styled + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical .swal2-styled + .ajax-file-upload,\n .btn-group-vertical .wizard > .actions .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop\n .btn-group-vertical .wizard > .actions a + .ajax-file-upload, .wizard > .actions\n .btn-group-vertical .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions\n .btn-group-vertical a + .ajax-file-upload,\n .btn-group-vertical .swal2-modal .swal2-buttonswrapper .btn + .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical .btn + .swal2-styled,\n .btn-group-vertical .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical .ajax-upload-dragdrop .ajax-file-upload + .swal2-styled, .ajax-upload-dragdrop\n .btn-group-vertical .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop\n .btn-group-vertical .ajax-file-upload + .swal2-styled,\n .btn-group-vertical .swal2-modal .swal2-buttonswrapper .swal2-styled + .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical .swal2-styled + .swal2-styled,\n .btn-group-vertical .wizard > .actions .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical .wizard > .actions a + .swal2-styled, .wizard > .actions\n .btn-group-vertical .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions\n .btn-group-vertical a + .swal2-styled,\n .btn-group-vertical .wizard > .actions .btn + a, .wizard > .actions\n .btn-group-vertical .btn + a,\n .btn-group-vertical .ajax-upload-dragdrop .wizard > .actions .ajax-file-upload + a, .wizard > .actions\n .btn-group-vertical .ajax-upload-dragdrop .ajax-file-upload + a, .ajax-upload-dragdrop\n .btn-group-vertical .wizard > .actions .ajax-file-upload + a, .wizard > .actions .ajax-upload-dragdrop\n .btn-group-vertical .ajax-file-upload + a,\n .btn-group-vertical .swal2-modal .swal2-buttonswrapper .wizard > .actions .swal2-styled + a, .wizard > .actions\n .btn-group-vertical .swal2-modal .swal2-buttonswrapper .swal2-styled + a, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical .wizard > .actions .swal2-styled + a, .wizard > .actions .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical .swal2-styled + a,\n .btn-group-vertical .wizard > .actions a + a, .wizard > .actions\n .btn-group-vertical a + a,\n .btn-group-vertical .btn + .btn-group,\n .btn-group-vertical .ajax-upload-dragdrop .ajax-file-upload + .btn-group, .ajax-upload-dragdrop\n .btn-group-vertical .ajax-file-upload + .btn-group,\n .btn-group-vertical .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn-group, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical .swal2-styled + .btn-group,\n .btn-group-vertical .wizard > .actions a + .btn-group, .wizard > .actions\n .btn-group-vertical a + .btn-group,\n .btn-group-vertical .btn-group + .btn,\n .btn-group-vertical .ajax-upload-dragdrop .btn-group + .ajax-file-upload, .ajax-upload-dragdrop\n .btn-group-vertical .btn-group + .ajax-file-upload,\n .btn-group-vertical .swal2-modal .swal2-buttonswrapper .btn-group + .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical .btn-group + .swal2-styled,\n .btn-group-vertical .wizard > .actions .btn-group + a, .wizard > .actions\n .btn-group-vertical .btn-group + a,\n .btn-group-vertical .btn-group + .btn-group {\n margin-left: -1px; }\n\n.btn-toolbar {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start; }\n .btn-toolbar .input-group, .btn-toolbar .asColorPicker-wrap {\n width: auto; }\n\n.btn-group > .btn:first-child, .ajax-upload-dragdrop .btn-group > .ajax-file-upload:first-child, .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled:first-child, .wizard > .actions .btn-group > a:first-child {\n margin-left: 0; }\n\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .ajax-upload-dragdrop .btn-group > .ajax-file-upload:not(:last-child):not(.dropdown-toggle), .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled:not(:last-child):not(.dropdown-toggle), .wizard > .actions .btn-group > a:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn, .ajax-upload-dragdrop\n.btn-group > .btn-group:not(:last-child) > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n.btn-group > .btn-group:not(:last-child) > .swal2-styled, .wizard > .actions\n.btn-group > .btn-group:not(:last-child) > a {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0; }\n\n.btn-group > .btn:not(:first-child), .ajax-upload-dragdrop .btn-group > .ajax-file-upload:not(:first-child), .swal2-modal .swal2-buttonswrapper .btn-group > .swal2-styled:not(:first-child), .wizard > .actions .btn-group > a:not(:first-child),\n.btn-group > .btn-group:not(:first-child) > .btn, .ajax-upload-dragdrop\n.btn-group > .btn-group:not(:first-child) > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n.btn-group > .btn-group:not(:first-child) > .swal2-styled, .wizard > .actions\n.btn-group > .btn-group:not(:first-child) > a {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0; }\n\n.dropdown-toggle-split {\n padding-right: 1.03125rem;\n padding-left: 1.03125rem; }\n .dropdown-toggle-split::after,\n .dropup .dropdown-toggle-split::after,\n .dropright .dropdown-toggle-split::after {\n margin-left: 0; }\n .dropleft .dropdown-toggle-split::before {\n margin-right: 0; }\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .ajax-upload-dragdrop .btn-group-sm > .ajax-file-upload + .dropdown-toggle-split, .swal2-modal .swal2-buttonswrapper .btn-group-sm > .swal2-styled + .dropdown-toggle-split, .wizard > .actions .btn-group-sm > a + .dropdown-toggle-split {\n padding-right: 0.6075rem;\n padding-left: 0.6075rem; }\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .ajax-upload-dragdrop .btn-group-lg > .ajax-file-upload + .dropdown-toggle-split, .swal2-modal .swal2-buttonswrapper .btn-group-lg > .swal2-styled + .dropdown-toggle-split, .wizard > .actions .btn-group-lg > a + .dropdown-toggle-split {\n padding-right: 1.455rem;\n padding-left: 1.455rem; }\n\n.btn-group-vertical {\n flex-direction: column;\n align-items: flex-start;\n justify-content: center; }\n .btn-group-vertical .btn, .btn-group-vertical .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .btn-group-vertical .ajax-file-upload, .btn-group-vertical .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group-vertical .swal2-styled, .btn-group-vertical .wizard > .actions a, .wizard > .actions .btn-group-vertical a,\n .btn-group-vertical .btn-group {\n width: 100%; }\n .btn-group-vertical > .btn + .btn, .ajax-upload-dragdrop .btn-group-vertical > .ajax-file-upload + .btn, .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .swal2-styled + .btn, .wizard > .actions .btn-group-vertical > a + .btn, .ajax-upload-dragdrop .btn-group-vertical > .btn + .ajax-file-upload, .ajax-upload-dragdrop .btn-group-vertical > .ajax-file-upload + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .btn-group-vertical > .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .swal2-styled + .ajax-file-upload, .wizard > .actions .ajax-upload-dragdrop .btn-group-vertical > a + .ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions .btn-group-vertical > a + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .btn + .swal2-styled, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .btn-group-vertical > .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .swal2-styled + .swal2-styled, .wizard > .actions .swal2-modal .swal2-buttonswrapper .btn-group-vertical > a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions .btn-group-vertical > a + .swal2-styled, .wizard > .actions .btn-group-vertical > .btn + a, .ajax-upload-dragdrop .wizard > .actions .btn-group-vertical > .ajax-file-upload + a, .wizard > .actions .ajax-upload-dragdrop .btn-group-vertical > .ajax-file-upload + a, .swal2-modal .swal2-buttonswrapper .wizard > .actions .btn-group-vertical > .swal2-styled + a, .wizard > .actions .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .swal2-styled + a, .wizard > .actions .btn-group-vertical > a + a,\n .btn-group-vertical > .btn + .btn-group, .ajax-upload-dragdrop\n .btn-group-vertical > .ajax-file-upload + .btn-group, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical > .swal2-styled + .btn-group, .wizard > .actions\n .btn-group-vertical > a + .btn-group,\n .btn-group-vertical > .btn-group + .btn, .ajax-upload-dragdrop\n .btn-group-vertical > .btn-group + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical > .btn-group + .swal2-styled, .wizard > .actions\n .btn-group-vertical > .btn-group + a,\n .btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0; }\n .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .ajax-upload-dragdrop .btn-group-vertical > .ajax-file-upload:not(:last-child):not(.dropdown-toggle), .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .swal2-styled:not(:last-child):not(.dropdown-toggle), .wizard > .actions .btn-group-vertical > a:not(:last-child):not(.dropdown-toggle),\n .btn-group-vertical > .btn-group:not(:last-child) > .btn, .ajax-upload-dragdrop\n .btn-group-vertical > .btn-group:not(:last-child) > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical > .btn-group:not(:last-child) > .swal2-styled, .wizard > .actions\n .btn-group-vertical > .btn-group:not(:last-child) > a {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0; }\n .btn-group-vertical > .btn:not(:first-child), .ajax-upload-dragdrop .btn-group-vertical > .ajax-file-upload:not(:first-child), .swal2-modal .swal2-buttonswrapper .btn-group-vertical > .swal2-styled:not(:first-child), .wizard > .actions .btn-group-vertical > a:not(:first-child),\n .btn-group-vertical > .btn-group:not(:first-child) > .btn, .ajax-upload-dragdrop\n .btn-group-vertical > .btn-group:not(:first-child) > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n .btn-group-vertical > .btn-group:not(:first-child) > .swal2-styled, .wizard > .actions\n .btn-group-vertical > .btn-group:not(:first-child) > a {\n border-top-left-radius: 0;\n border-top-right-radius: 0; }\n\n.btn-group-toggle > .btn, .ajax-upload-dragdrop .btn-group-toggle > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group-toggle > .swal2-styled, .wizard > .actions .btn-group-toggle > a,\n.btn-group-toggle > .btn-group > .btn, .ajax-upload-dragdrop\n.btn-group-toggle > .btn-group > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n.btn-group-toggle > .btn-group > .swal2-styled, .wizard > .actions\n.btn-group-toggle > .btn-group > a {\n margin-bottom: 0; }\n .btn-group-toggle > .btn input[type=\"radio\"], .ajax-upload-dragdrop .btn-group-toggle > .ajax-file-upload input[type=\"radio\"], .swal2-modal .swal2-buttonswrapper .btn-group-toggle > .swal2-styled input[type=\"radio\"], .wizard > .actions .btn-group-toggle > a input[type=\"radio\"],\n .btn-group-toggle > .btn input[type=\"checkbox\"], .ajax-upload-dragdrop\n .btn-group-toggle > .ajax-file-upload input[type=\"checkbox\"], .swal2-modal .swal2-buttonswrapper\n .btn-group-toggle > .swal2-styled input[type=\"checkbox\"], .wizard > .actions\n .btn-group-toggle > a input[type=\"checkbox\"],\n .btn-group-toggle > .btn-group > .btn input[type=\"radio\"], .ajax-upload-dragdrop\n .btn-group-toggle > .btn-group > .ajax-file-upload input[type=\"radio\"], .swal2-modal .swal2-buttonswrapper\n .btn-group-toggle > .btn-group > .swal2-styled input[type=\"radio\"], .wizard > .actions\n .btn-group-toggle > .btn-group > a input[type=\"radio\"],\n .btn-group-toggle > .btn-group > .btn input[type=\"checkbox\"], .ajax-upload-dragdrop\n .btn-group-toggle > .btn-group > .ajax-file-upload input[type=\"checkbox\"], .swal2-modal .swal2-buttonswrapper\n .btn-group-toggle > .btn-group > .swal2-styled input[type=\"checkbox\"], .wizard > .actions\n .btn-group-toggle > .btn-group > a input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none; }\n\n.input-group, .asColorPicker-wrap {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: stretch;\n width: 100%; }\n .input-group > .form-control, .asColorPicker-wrap > .form-control, .input-group > .asColorPicker-input, .asColorPicker-wrap > .asColorPicker-input, .dataTables_wrapper .input-group > select, .dataTables_wrapper .asColorPicker-wrap > select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text],\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number], .select2-container--default .input-group > .select2-selection--single, .select2-container--default .asColorPicker-wrap > .select2-selection--single, .select2-container--default .select2-selection--single .input-group > .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field, .input-group > .tt-hint, .asColorPicker-wrap > .tt-hint, .input-group >\n .tt-query, .asColorPicker-wrap >\n .tt-query, .input-group >\n .typeahead, .asColorPicker-wrap >\n .typeahead,\n .input-group > .custom-select, .asColorPicker-wrap > .custom-select,\n .input-group > .custom-file, .asColorPicker-wrap > .custom-file {\n position: relative;\n flex: 1 1 auto;\n width: 1%;\n margin-bottom: 0; }\n .input-group > .form-control + .form-control, .asColorPicker-wrap > .form-control + .form-control, .input-group > .asColorPicker-input + .form-control, .asColorPicker-wrap > .asColorPicker-input + .form-control, .dataTables_wrapper .input-group > select + .form-control, .dataTables_wrapper .asColorPicker-wrap > select + .form-control, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + .form-control, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .form-control,\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + .form-control,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .form-control, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + .form-control, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .form-control, .select2-container--default .input-group > .select2-selection--single + .form-control, .select2-container--default .asColorPicker-wrap > .select2-selection--single + .form-control, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .form-control, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .form-control, .input-group > .tt-hint + .form-control, .asColorPicker-wrap > .tt-hint + .form-control, .input-group >\n .tt-query + .form-control, .asColorPicker-wrap >\n .tt-query + .form-control, .input-group >\n .typeahead + .form-control, .asColorPicker-wrap >\n .typeahead + .form-control, .input-group > .form-control + .asColorPicker-input, .asColorPicker-wrap > .form-control + .asColorPicker-input, .input-group > .asColorPicker-input + .asColorPicker-input, .asColorPicker-wrap > .asColorPicker-input + .asColorPicker-input, .dataTables_wrapper .input-group > select + .asColorPicker-input, .dataTables_wrapper .asColorPicker-wrap > select + .asColorPicker-input, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + .asColorPicker-input, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .asColorPicker-input,\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + .asColorPicker-input,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .asColorPicker-input, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + .asColorPicker-input, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .asColorPicker-input, .select2-container--default .input-group > .select2-selection--single + .asColorPicker-input, .select2-container--default .asColorPicker-wrap > .select2-selection--single + .asColorPicker-input, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .asColorPicker-input, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .asColorPicker-input, .input-group > .tt-hint + .asColorPicker-input, .asColorPicker-wrap > .tt-hint + .asColorPicker-input, .input-group >\n .tt-query + .asColorPicker-input, .asColorPicker-wrap >\n .tt-query + .asColorPicker-input, .input-group >\n .typeahead + .asColorPicker-input, .asColorPicker-wrap >\n .typeahead + .asColorPicker-input, .dataTables_wrapper .input-group > .form-control + select, .dataTables_wrapper .asColorPicker-wrap > .form-control + select, .dataTables_wrapper .input-group > .asColorPicker-input + select, .dataTables_wrapper .asColorPicker-wrap > .asColorPicker-input + select, .dataTables_wrapper .input-group > select + select, .dataTables_wrapper .asColorPicker-wrap > select + select, .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .input-group > input[type=text] + select, .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + select, .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .asColorPicker-wrap > input[type=text] + select, .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .input-group > select + select, .dataTables_wrapper\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .asColorPicker-wrap > select + select, .dataTables_wrapper\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + select, .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .input-group > input[type=number] + select, .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + select, .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .asColorPicker-wrap > input[type=number] + select, .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + select, .select2-container--default .dataTables_wrapper .input-group > .select2-selection--single + select, .dataTables_wrapper .select2-container--default .input-group > .select2-selection--single + select, .select2-container--default .dataTables_wrapper .asColorPicker-wrap > .select2-selection--single + select, .dataTables_wrapper .select2-container--default .asColorPicker-wrap > .select2-selection--single + select, .select2-container--default .select2-selection--single .dataTables_wrapper .input-group > .select2-search__field + select, .dataTables_wrapper .select2-container--default .select2-selection--single .input-group > .select2-search__field + select, .select2-container--default .select2-selection--single .dataTables_wrapper .asColorPicker-wrap > .select2-search__field + select, .dataTables_wrapper .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + select, .dataTables_wrapper .input-group > .tt-hint + select, .dataTables_wrapper .asColorPicker-wrap > .tt-hint + select, .dataTables_wrapper .input-group >\n .tt-query + select, .dataTables_wrapper .asColorPicker-wrap >\n .tt-query + select, .dataTables_wrapper .input-group >\n .typeahead + select, .dataTables_wrapper .asColorPicker-wrap >\n .typeahead + select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .form-control + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .form-control + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .asColorPicker-input + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .asColorPicker-input + input[type=text], .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .input-group > select + input[type=text], .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .asColorPicker-wrap > select + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + input[type=text], .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .select2-selection--single + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .input-group > .select2-selection--single + input[type=text], .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .select2-selection--single + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .asColorPicker-wrap > .select2-selection--single + input[type=text], .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .select2-search__field + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .input-group > .select2-search__field + input[type=text], .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .select2-search__field + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .tt-hint + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .tt-hint + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group >\n .tt-query + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap >\n .tt-query + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group >\n .typeahead + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap >\n .typeahead + input[type=text],\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .form-control + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .form-control + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .asColorPicker-input + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .asColorPicker-input + select, .dataTables_wrapper\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .input-group > select + select, .dataTables_wrapper\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .asColorPicker-wrap > select + select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + select, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + select, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + select, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + select, .select2-container--default\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .select2-selection--single + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .input-group > .select2-selection--single + select, .select2-container--default\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .select2-selection--single + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .asColorPicker-wrap > .select2-selection--single + select, .select2-container--default .select2-selection--single\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .select2-search__field + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .input-group > .select2-search__field + select, .select2-container--default .select2-selection--single\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .select2-search__field + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .tt-hint + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .tt-hint + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group >\n .tt-query + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap >\n .tt-query + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group >\n .typeahead + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap >\n .typeahead + select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .form-control + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .form-control + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .asColorPicker-input + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .asColorPicker-input + input[type=number], .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .input-group > select + input[type=number], .dataTables_wrapper .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .dataTables_wrapper .asColorPicker-wrap > select + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + input[type=number], .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .select2-selection--single + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .input-group > .select2-selection--single + input[type=number], .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .select2-selection--single + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .asColorPicker-wrap > .select2-selection--single + input[type=number], .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .select2-search__field + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .input-group > .select2-search__field + input[type=number], .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .select2-search__field + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > .tt-hint + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .tt-hint + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group >\n .tt-query + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap >\n .tt-query + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .input-group >\n .typeahead + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap >\n .typeahead + input[type=number], .select2-container--default .input-group > .form-control + .select2-selection--single, .select2-container--default .asColorPicker-wrap > .form-control + .select2-selection--single, .select2-container--default .input-group > .asColorPicker-input + .select2-selection--single, .select2-container--default .asColorPicker-wrap > .asColorPicker-input + .select2-selection--single, .dataTables_wrapper .select2-container--default .input-group > select + .select2-selection--single, .select2-container--default .dataTables_wrapper .input-group > select + .select2-selection--single, .dataTables_wrapper .select2-container--default .asColorPicker-wrap > select + .select2-selection--single, .select2-container--default .dataTables_wrapper .asColorPicker-wrap > select + .select2-selection--single, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .input-group > input[type=text] + .select2-selection--single, .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + .select2-selection--single, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .asColorPicker-wrap > input[type=text] + .select2-selection--single, .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .select2-selection--single,\n .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .input-group > select + .select2-selection--single, .select2-container--default\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + .select2-selection--single,\n .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .asColorPicker-wrap > select + .select2-selection--single, .select2-container--default\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .select2-selection--single, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .input-group > input[type=number] + .select2-selection--single, .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + .select2-selection--single, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .asColorPicker-wrap > input[type=number] + .select2-selection--single, .select2-container--default .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .select2-selection--single, .select2-container--default .input-group > .select2-selection--single + .select2-selection--single, .select2-container--default .asColorPicker-wrap > .select2-selection--single + .select2-selection--single, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .select2-selection--single, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .select2-selection--single, .select2-container--default .input-group > .tt-hint + .select2-selection--single, .select2-container--default .asColorPicker-wrap > .tt-hint + .select2-selection--single, .select2-container--default .input-group >\n .tt-query + .select2-selection--single, .select2-container--default .asColorPicker-wrap >\n .tt-query + .select2-selection--single, .select2-container--default .input-group >\n .typeahead + .select2-selection--single, .select2-container--default .asColorPicker-wrap >\n .typeahead + .select2-selection--single, .select2-container--default .select2-selection--single .input-group > .form-control + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .form-control + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .asColorPicker-input + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .asColorPicker-input + .select2-search__field, .dataTables_wrapper .select2-container--default .select2-selection--single .input-group > select + .select2-search__field, .select2-container--default .select2-selection--single .dataTables_wrapper .input-group > select + .select2-search__field, .dataTables_wrapper .select2-container--default .select2-selection--single .asColorPicker-wrap > select + .select2-search__field, .select2-container--default .select2-selection--single .dataTables_wrapper .asColorPicker-wrap > select + .select2-search__field, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .input-group > input[type=text] + .select2-search__field, .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + .select2-search__field, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .asColorPicker-wrap > input[type=text] + .select2-search__field, .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .select2-search__field,\n .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .input-group > select + .select2-search__field, .select2-container--default .select2-selection--single\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + .select2-search__field,\n .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .asColorPicker-wrap > select + .select2-search__field, .select2-container--default .select2-selection--single\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .select2-search__field, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .input-group > input[type=number] + .select2-search__field, .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + .select2-search__field, .jsgrid .jsgrid-table .jsgrid-filter-row .select2-container--default .select2-selection--single .asColorPicker-wrap > input[type=number] + .select2-search__field, .select2-container--default .select2-selection--single .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .select2-selection--single + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-selection--single + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .tt-hint + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .tt-hint + .select2-search__field, .select2-container--default .select2-selection--single .input-group >\n .tt-query + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap >\n .tt-query + .select2-search__field, .select2-container--default .select2-selection--single .input-group >\n .typeahead + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap >\n .typeahead + .select2-search__field, .input-group > .form-control + .tt-hint, .asColorPicker-wrap > .form-control + .tt-hint, .input-group > .asColorPicker-input + .tt-hint, .asColorPicker-wrap > .asColorPicker-input + .tt-hint, .dataTables_wrapper .input-group > select + .tt-hint, .dataTables_wrapper .asColorPicker-wrap > select + .tt-hint, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] + .tt-hint, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .tt-hint,\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select + .tt-hint,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .tt-hint, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] + .tt-hint, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .tt-hint, .select2-container--default .input-group > .select2-selection--single + .tt-hint, .select2-container--default .asColorPicker-wrap > .select2-selection--single + .tt-hint, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .tt-hint, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .tt-hint, .input-group > .tt-hint + .tt-hint, .asColorPicker-wrap > .tt-hint + .tt-hint, .input-group >\n .tt-query + .tt-hint, .asColorPicker-wrap >\n .tt-query + .tt-hint, .input-group >\n .typeahead + .tt-hint, .asColorPicker-wrap >\n .typeahead + .tt-hint, .input-group > .form-control +\n .tt-query, .asColorPicker-wrap > .form-control +\n .tt-query, .input-group > .asColorPicker-input +\n .tt-query, .asColorPicker-wrap > .asColorPicker-input +\n .tt-query, .dataTables_wrapper .input-group > select +\n .tt-query, .dataTables_wrapper .asColorPicker-wrap > select +\n .tt-query, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] +\n .tt-query, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] +\n .tt-query,\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select +\n .tt-query,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select +\n .tt-query, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] +\n .tt-query, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] +\n .tt-query, .select2-container--default .input-group > .select2-selection--single +\n .tt-query, .select2-container--default .asColorPicker-wrap > .select2-selection--single +\n .tt-query, .select2-container--default .select2-selection--single .input-group > .select2-search__field +\n .tt-query, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field +\n .tt-query, .input-group > .tt-hint +\n .tt-query, .asColorPicker-wrap > .tt-hint +\n .tt-query, .input-group >\n .tt-query +\n .tt-query, .asColorPicker-wrap >\n .tt-query +\n .tt-query, .input-group >\n .typeahead +\n .tt-query, .asColorPicker-wrap >\n .typeahead +\n .tt-query, .input-group > .form-control +\n .typeahead, .asColorPicker-wrap > .form-control +\n .typeahead, .input-group > .asColorPicker-input +\n .typeahead, .asColorPicker-wrap > .asColorPicker-input +\n .typeahead, .dataTables_wrapper .input-group > select +\n .typeahead, .dataTables_wrapper .asColorPicker-wrap > select +\n .typeahead, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text] +\n .typeahead, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] +\n .typeahead,\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select +\n .typeahead,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select +\n .typeahead, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number] +\n .typeahead, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] +\n .typeahead, .select2-container--default .input-group > .select2-selection--single +\n .typeahead, .select2-container--default .asColorPicker-wrap > .select2-selection--single +\n .typeahead, .select2-container--default .select2-selection--single .input-group > .select2-search__field +\n .typeahead, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field +\n .typeahead, .input-group > .tt-hint +\n .typeahead, .asColorPicker-wrap > .tt-hint +\n .typeahead, .input-group >\n .tt-query +\n .typeahead, .asColorPicker-wrap >\n .tt-query +\n .typeahead, .input-group >\n .typeahead +\n .typeahead, .asColorPicker-wrap >\n .typeahead +\n .typeahead,\n .input-group > .form-control + .custom-select, .asColorPicker-wrap > .form-control + .custom-select,\n .input-group > .asColorPicker-input + .custom-select, .asColorPicker-wrap > .asColorPicker-input + .custom-select, .dataTables_wrapper\n .input-group > select + .custom-select, .dataTables_wrapper .asColorPicker-wrap > select + .custom-select, .jsgrid .jsgrid-table .jsgrid-filter-row\n .input-group > input[type=text] + .custom-select, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .custom-select,\n .jsgrid .jsgrid-table .jsgrid-filter-row\n .input-group > select + .custom-select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .custom-select, .jsgrid .jsgrid-table .jsgrid-filter-row\n .input-group > input[type=number] + .custom-select, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .custom-select, .select2-container--default\n .input-group > .select2-selection--single + .custom-select, .select2-container--default .asColorPicker-wrap > .select2-selection--single + .custom-select, .select2-container--default .select2-selection--single\n .input-group > .select2-search__field + .custom-select, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .custom-select,\n .input-group > .tt-hint + .custom-select, .asColorPicker-wrap > .tt-hint + .custom-select,\n .input-group >\n .tt-query + .custom-select, .asColorPicker-wrap >\n .tt-query + .custom-select,\n .input-group >\n .typeahead + .custom-select, .asColorPicker-wrap >\n .typeahead + .custom-select,\n .input-group > .form-control + .custom-file, .asColorPicker-wrap > .form-control + .custom-file,\n .input-group > .asColorPicker-input + .custom-file, .asColorPicker-wrap > .asColorPicker-input + .custom-file, .dataTables_wrapper\n .input-group > select + .custom-file, .dataTables_wrapper .asColorPicker-wrap > select + .custom-file, .jsgrid .jsgrid-table .jsgrid-filter-row\n .input-group > input[type=text] + .custom-file, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text] + .custom-file,\n .jsgrid .jsgrid-table .jsgrid-filter-row\n .input-group > select + .custom-file,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select + .custom-file, .jsgrid .jsgrid-table .jsgrid-filter-row\n .input-group > input[type=number] + .custom-file, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number] + .custom-file, .select2-container--default\n .input-group > .select2-selection--single + .custom-file, .select2-container--default .asColorPicker-wrap > .select2-selection--single + .custom-file, .select2-container--default .select2-selection--single\n .input-group > .select2-search__field + .custom-file, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field + .custom-file,\n .input-group > .tt-hint + .custom-file, .asColorPicker-wrap > .tt-hint + .custom-file,\n .input-group >\n .tt-query + .custom-file, .asColorPicker-wrap >\n .tt-query + .custom-file,\n .input-group >\n .typeahead + .custom-file, .asColorPicker-wrap >\n .typeahead + .custom-file,\n .input-group > .custom-select + .form-control, .asColorPicker-wrap > .custom-select + .form-control,\n .input-group > .custom-select + .asColorPicker-input, .asColorPicker-wrap > .custom-select + .asColorPicker-input, .dataTables_wrapper\n .input-group > .custom-select + select, .dataTables_wrapper .asColorPicker-wrap > .custom-select + select, .jsgrid .jsgrid-table .jsgrid-filter-row\n .input-group > .custom-select + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .custom-select + input[type=text],\n .jsgrid .jsgrid-table .jsgrid-filter-row\n .input-group > .custom-select + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .custom-select + select, .jsgrid .jsgrid-table .jsgrid-filter-row\n .input-group > .custom-select + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .custom-select + input[type=number], .select2-container--default\n .input-group > .custom-select + .select2-selection--single, .select2-container--default .asColorPicker-wrap > .custom-select + .select2-selection--single, .select2-container--default .select2-selection--single\n .input-group > .custom-select + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .custom-select + .select2-search__field,\n .input-group > .custom-select + .tt-hint, .asColorPicker-wrap > .custom-select + .tt-hint,\n .input-group > .custom-select +\n .tt-query, .asColorPicker-wrap > .custom-select +\n .tt-query,\n .input-group > .custom-select +\n .typeahead, .asColorPicker-wrap > .custom-select +\n .typeahead,\n .input-group > .custom-select + .custom-select, .asColorPicker-wrap > .custom-select + .custom-select,\n .input-group > .custom-select + .custom-file, .asColorPicker-wrap > .custom-select + .custom-file,\n .input-group > .custom-file + .form-control, .asColorPicker-wrap > .custom-file + .form-control,\n .input-group > .custom-file + .asColorPicker-input, .asColorPicker-wrap > .custom-file + .asColorPicker-input, .dataTables_wrapper\n .input-group > .custom-file + select, .dataTables_wrapper .asColorPicker-wrap > .custom-file + select, .jsgrid .jsgrid-table .jsgrid-filter-row\n .input-group > .custom-file + input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .custom-file + input[type=text],\n .jsgrid .jsgrid-table .jsgrid-filter-row\n .input-group > .custom-file + select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .custom-file + select, .jsgrid .jsgrid-table .jsgrid-filter-row\n .input-group > .custom-file + input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > .custom-file + input[type=number], .select2-container--default\n .input-group > .custom-file + .select2-selection--single, .select2-container--default .asColorPicker-wrap > .custom-file + .select2-selection--single, .select2-container--default .select2-selection--single\n .input-group > .custom-file + .select2-search__field, .select2-container--default .select2-selection--single .asColorPicker-wrap > .custom-file + .select2-search__field,\n .input-group > .custom-file + .tt-hint, .asColorPicker-wrap > .custom-file + .tt-hint,\n .input-group > .custom-file +\n .tt-query, .asColorPicker-wrap > .custom-file +\n .tt-query,\n .input-group > .custom-file +\n .typeahead, .asColorPicker-wrap > .custom-file +\n .typeahead,\n .input-group > .custom-file + .custom-select, .asColorPicker-wrap > .custom-file + .custom-select,\n .input-group > .custom-file + .custom-file, .asColorPicker-wrap > .custom-file + .custom-file {\n margin-left: -1px; }\n .input-group > .form-control:focus, .asColorPicker-wrap > .form-control:focus, .input-group > .asColorPicker-input:focus, .asColorPicker-wrap > .asColorPicker-input:focus, .dataTables_wrapper .input-group > select:focus, .dataTables_wrapper .asColorPicker-wrap > select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text]:focus,\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select:focus,\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number]:focus, .select2-container--default .input-group > .select2-selection--single:focus, .select2-container--default .asColorPicker-wrap > .select2-selection--single:focus, .select2-container--default .select2-selection--single .input-group > .select2-search__field:focus, .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field:focus, .input-group > .tt-hint:focus, .asColorPicker-wrap > .tt-hint:focus, .input-group >\n .tt-query:focus, .asColorPicker-wrap >\n .tt-query:focus, .input-group >\n .typeahead:focus, .asColorPicker-wrap >\n .typeahead:focus,\n .input-group > .custom-select:focus, .asColorPicker-wrap > .custom-select:focus,\n .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label, .asColorPicker-wrap > .custom-file .custom-file-input:focus ~ .custom-file-label {\n z-index: 3; }\n .input-group > .custom-file .custom-file-input:focus, .asColorPicker-wrap > .custom-file .custom-file-input:focus {\n z-index: 4; }\n .input-group > .form-control:not(:last-child), .asColorPicker-wrap > .form-control:not(:last-child), .input-group > .asColorPicker-input:not(:last-child), .asColorPicker-wrap > .asColorPicker-input:not(:last-child), .dataTables_wrapper .input-group > select:not(:last-child), .dataTables_wrapper .asColorPicker-wrap > select:not(:last-child), .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text]:not(:last-child), .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text]:not(:last-child),\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select:not(:last-child),\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select:not(:last-child), .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number]:not(:last-child), .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number]:not(:last-child), .select2-container--default .input-group > .select2-selection--single:not(:last-child), .select2-container--default .asColorPicker-wrap > .select2-selection--single:not(:last-child), .select2-container--default .select2-selection--single .input-group > .select2-search__field:not(:last-child), .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field:not(:last-child), .input-group > .tt-hint:not(:last-child), .asColorPicker-wrap > .tt-hint:not(:last-child), .input-group >\n .tt-query:not(:last-child), .asColorPicker-wrap >\n .tt-query:not(:last-child), .input-group >\n .typeahead:not(:last-child), .asColorPicker-wrap >\n .typeahead:not(:last-child),\n .input-group > .custom-select:not(:last-child), .asColorPicker-wrap > .custom-select:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0; }\n .input-group > .form-control:not(:first-child), .asColorPicker-wrap > .form-control:not(:first-child), .input-group > .asColorPicker-input:not(:first-child), .asColorPicker-wrap > .asColorPicker-input:not(:first-child), .dataTables_wrapper .input-group > select:not(:first-child), .dataTables_wrapper .asColorPicker-wrap > select:not(:first-child), .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=text]:not(:first-child), .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=text]:not(:first-child),\n .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > select:not(:first-child),\n .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > select:not(:first-child), .jsgrid .jsgrid-table .jsgrid-filter-row .input-group > input[type=number]:not(:first-child), .jsgrid .jsgrid-table .jsgrid-filter-row .asColorPicker-wrap > input[type=number]:not(:first-child), .select2-container--default .input-group > .select2-selection--single:not(:first-child), .select2-container--default .asColorPicker-wrap > .select2-selection--single:not(:first-child), .select2-container--default .select2-selection--single .input-group > .select2-search__field:not(:first-child), .select2-container--default .select2-selection--single .asColorPicker-wrap > .select2-search__field:not(:first-child), .input-group > .tt-hint:not(:first-child), .asColorPicker-wrap > .tt-hint:not(:first-child), .input-group >\n .tt-query:not(:first-child), .asColorPicker-wrap >\n .tt-query:not(:first-child), .input-group >\n .typeahead:not(:first-child), .asColorPicker-wrap >\n .typeahead:not(:first-child),\n .input-group > .custom-select:not(:first-child), .asColorPicker-wrap > .custom-select:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0; }\n .input-group > .custom-file, .asColorPicker-wrap > .custom-file {\n display: flex;\n align-items: center; }\n .input-group > .custom-file:not(:last-child) .custom-file-label, .asColorPicker-wrap > .custom-file:not(:last-child) .custom-file-label,\n .input-group > .custom-file:not(:last-child) .custom-file-label::after, .asColorPicker-wrap > .custom-file:not(:last-child) .custom-file-label::after {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0; }\n .input-group > .custom-file:not(:first-child) .custom-file-label, .asColorPicker-wrap > .custom-file:not(:first-child) .custom-file-label {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0; }\n\n.input-group-prepend, .asColorPicker-trigger,\n.input-group-append {\n display: flex; }\n .input-group-prepend .btn, .asColorPicker-trigger .btn, .input-group-prepend .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .input-group-prepend .ajax-file-upload, .asColorPicker-trigger .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-trigger .ajax-file-upload, .input-group-prepend .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .input-group-prepend .swal2-styled, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .swal2-styled, .input-group-prepend .wizard > .actions a, .wizard > .actions .input-group-prepend a, .asColorPicker-trigger .wizard > .actions a, .wizard > .actions .asColorPicker-trigger a,\n .input-group-append .btn,\n .input-group-append .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop\n .input-group-append .ajax-file-upload,\n .input-group-append .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .input-group-append .swal2-styled,\n .input-group-append .wizard > .actions a, .wizard > .actions\n .input-group-append a {\n position: relative;\n z-index: 2; }\n .input-group-prepend .btn + .btn, .asColorPicker-trigger .btn + .btn, .input-group-prepend .ajax-upload-dragdrop .ajax-file-upload + .btn, .ajax-upload-dragdrop .input-group-prepend .ajax-file-upload + .btn, .asColorPicker-trigger .ajax-upload-dragdrop .ajax-file-upload + .btn, .ajax-upload-dragdrop .asColorPicker-trigger .ajax-file-upload + .btn, .input-group-prepend .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn, .swal2-modal .swal2-buttonswrapper .input-group-prepend .swal2-styled + .btn, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .swal2-styled + .btn, .input-group-prepend .wizard > .actions a + .btn, .wizard > .actions .input-group-prepend a + .btn, .asColorPicker-trigger .wizard > .actions a + .btn, .wizard > .actions .asColorPicker-trigger a + .btn, .input-group-prepend .ajax-upload-dragdrop .btn + .ajax-file-upload, .ajax-upload-dragdrop .input-group-prepend .btn + .ajax-file-upload, .asColorPicker-trigger .ajax-upload-dragdrop .btn + .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-trigger .btn + .ajax-file-upload, .input-group-prepend .ajax-upload-dragdrop .ajax-file-upload + .ajax-file-upload, .ajax-upload-dragdrop .input-group-prepend .ajax-file-upload + .ajax-file-upload, .asColorPicker-trigger .ajax-upload-dragdrop .ajax-file-upload + .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-trigger .ajax-file-upload + .ajax-file-upload, .input-group-prepend .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .input-group-prepend .swal2-modal .swal2-buttonswrapper .swal2-styled + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .input-group-prepend .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .input-group-prepend .swal2-styled + .ajax-file-upload, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .swal2-styled + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .swal2-styled + .ajax-file-upload, .input-group-prepend .wizard > .actions .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .input-group-prepend .wizard > .actions a + .ajax-file-upload, .wizard > .actions .input-group-prepend .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions .input-group-prepend a + .ajax-file-upload, .asColorPicker-trigger .wizard > .actions .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-trigger .wizard > .actions a + .ajax-file-upload, .wizard > .actions .asColorPicker-trigger .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions .asColorPicker-trigger a + .ajax-file-upload, .input-group-prepend .swal2-modal .swal2-buttonswrapper .btn + .swal2-styled, .swal2-modal .swal2-buttonswrapper .input-group-prepend .btn + .swal2-styled, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .btn + .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .btn + .swal2-styled, .input-group-prepend .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .input-group-prepend .ajax-upload-dragdrop .ajax-file-upload + .swal2-styled, .ajax-upload-dragdrop .input-group-prepend .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .input-group-prepend .ajax-file-upload + .swal2-styled, .asColorPicker-trigger .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .ajax-upload-dragdrop .ajax-file-upload + .swal2-styled, .ajax-upload-dragdrop .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .asColorPicker-trigger .ajax-file-upload + .swal2-styled, .input-group-prepend .swal2-modal .swal2-buttonswrapper .swal2-styled + .swal2-styled, .swal2-modal .swal2-buttonswrapper .input-group-prepend .swal2-styled + .swal2-styled, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .swal2-styled + .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .swal2-styled + .swal2-styled, .input-group-prepend .wizard > .actions .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .input-group-prepend .wizard > .actions a + .swal2-styled, .wizard > .actions .input-group-prepend .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions .input-group-prepend a + .swal2-styled, .asColorPicker-trigger .wizard > .actions .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .wizard > .actions a + .swal2-styled, .wizard > .actions .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions .asColorPicker-trigger a + .swal2-styled, .input-group-prepend .wizard > .actions .btn + a, .wizard > .actions .input-group-prepend .btn + a, .asColorPicker-trigger .wizard > .actions .btn + a, .wizard > .actions .asColorPicker-trigger .btn + a, .input-group-prepend .ajax-upload-dragdrop .wizard > .actions .ajax-file-upload + a, .wizard > .actions .input-group-prepend .ajax-upload-dragdrop .ajax-file-upload + a, .ajax-upload-dragdrop .input-group-prepend .wizard > .actions .ajax-file-upload + a, .wizard > .actions .ajax-upload-dragdrop .input-group-prepend .ajax-file-upload + a, .asColorPicker-trigger .ajax-upload-dragdrop .wizard > .actions .ajax-file-upload + a, .wizard > .actions .asColorPicker-trigger .ajax-upload-dragdrop .ajax-file-upload + a, .ajax-upload-dragdrop .asColorPicker-trigger .wizard > .actions .ajax-file-upload + a, .wizard > .actions .ajax-upload-dragdrop .asColorPicker-trigger .ajax-file-upload + a, .input-group-prepend .swal2-modal .swal2-buttonswrapper .wizard > .actions .swal2-styled + a, .wizard > .actions .input-group-prepend .swal2-modal .swal2-buttonswrapper .swal2-styled + a, .swal2-modal .swal2-buttonswrapper .input-group-prepend .wizard > .actions .swal2-styled + a, .wizard > .actions .swal2-modal .swal2-buttonswrapper .input-group-prepend .swal2-styled + a, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .wizard > .actions .swal2-styled + a, .wizard > .actions .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .swal2-styled + a, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .wizard > .actions .swal2-styled + a, .wizard > .actions .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .swal2-styled + a, .input-group-prepend .wizard > .actions a + a, .wizard > .actions .input-group-prepend a + a, .asColorPicker-trigger .wizard > .actions a + a, .wizard > .actions .asColorPicker-trigger a + a,\n .input-group-prepend .btn + .input-group-text, .asColorPicker-trigger .btn + .input-group-text,\n .input-group-prepend .ajax-upload-dragdrop .ajax-file-upload + .input-group-text, .ajax-upload-dragdrop\n .input-group-prepend .ajax-file-upload + .input-group-text, .asColorPicker-trigger .ajax-upload-dragdrop .ajax-file-upload + .input-group-text, .ajax-upload-dragdrop .asColorPicker-trigger .ajax-file-upload + .input-group-text,\n .input-group-prepend .swal2-modal .swal2-buttonswrapper .swal2-styled + .input-group-text, .swal2-modal .swal2-buttonswrapper\n .input-group-prepend .swal2-styled + .input-group-text, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .swal2-styled + .input-group-text, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .swal2-styled + .input-group-text,\n .input-group-prepend .wizard > .actions a + .input-group-text, .wizard > .actions\n .input-group-prepend a + .input-group-text, .asColorPicker-trigger .wizard > .actions a + .input-group-text, .wizard > .actions .asColorPicker-trigger a + .input-group-text,\n .input-group-prepend .input-group-text + .input-group-text, .asColorPicker-trigger .input-group-text + .input-group-text,\n .input-group-prepend .input-group-text + .btn, .asColorPicker-trigger .input-group-text + .btn,\n .input-group-prepend .ajax-upload-dragdrop .input-group-text + .ajax-file-upload, .ajax-upload-dragdrop\n .input-group-prepend .input-group-text + .ajax-file-upload, .asColorPicker-trigger .ajax-upload-dragdrop .input-group-text + .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-trigger .input-group-text + .ajax-file-upload,\n .input-group-prepend .swal2-modal .swal2-buttonswrapper .input-group-text + .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .input-group-prepend .input-group-text + .swal2-styled, .asColorPicker-trigger .swal2-modal .swal2-buttonswrapper .input-group-text + .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-trigger .input-group-text + .swal2-styled,\n .input-group-prepend .wizard > .actions .input-group-text + a, .wizard > .actions\n .input-group-prepend .input-group-text + a, .asColorPicker-trigger .wizard > .actions .input-group-text + a, .wizard > .actions .asColorPicker-trigger .input-group-text + a,\n .input-group-append .btn + .btn,\n .input-group-append .ajax-upload-dragdrop .ajax-file-upload + .btn, .ajax-upload-dragdrop\n .input-group-append .ajax-file-upload + .btn,\n .input-group-append .swal2-modal .swal2-buttonswrapper .swal2-styled + .btn, .swal2-modal .swal2-buttonswrapper\n .input-group-append .swal2-styled + .btn,\n .input-group-append .wizard > .actions a + .btn, .wizard > .actions\n .input-group-append a + .btn,\n .input-group-append .ajax-upload-dragdrop .btn + .ajax-file-upload, .ajax-upload-dragdrop\n .input-group-append .btn + .ajax-file-upload,\n .input-group-append .ajax-upload-dragdrop .ajax-file-upload + .ajax-file-upload, .ajax-upload-dragdrop\n .input-group-append .ajax-file-upload + .ajax-file-upload,\n .input-group-append .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop\n .input-group-append .swal2-modal .swal2-buttonswrapper .swal2-styled + .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n .input-group-append .ajax-upload-dragdrop .swal2-styled + .ajax-file-upload, .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper\n .input-group-append .swal2-styled + .ajax-file-upload,\n .input-group-append .wizard > .actions .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop\n .input-group-append .wizard > .actions a + .ajax-file-upload, .wizard > .actions\n .input-group-append .ajax-upload-dragdrop a + .ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions\n .input-group-append a + .ajax-file-upload,\n .input-group-append .swal2-modal .swal2-buttonswrapper .btn + .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .input-group-append .btn + .swal2-styled,\n .input-group-append .ajax-upload-dragdrop .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .input-group-append .ajax-upload-dragdrop .ajax-file-upload + .swal2-styled, .ajax-upload-dragdrop\n .input-group-append .swal2-modal .swal2-buttonswrapper .ajax-file-upload + .swal2-styled, .swal2-modal .swal2-buttonswrapper .ajax-upload-dragdrop\n .input-group-append .ajax-file-upload + .swal2-styled,\n .input-group-append .swal2-modal .swal2-buttonswrapper .swal2-styled + .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .input-group-append .swal2-styled + .swal2-styled,\n .input-group-append .wizard > .actions .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .input-group-append .wizard > .actions a + .swal2-styled, .wizard > .actions\n .input-group-append .swal2-modal .swal2-buttonswrapper a + .swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions\n .input-group-append a + .swal2-styled,\n .input-group-append .wizard > .actions .btn + a, .wizard > .actions\n .input-group-append .btn + a,\n .input-group-append .ajax-upload-dragdrop .wizard > .actions .ajax-file-upload + a, .wizard > .actions\n .input-group-append .ajax-upload-dragdrop .ajax-file-upload + a, .ajax-upload-dragdrop\n .input-group-append .wizard > .actions .ajax-file-upload + a, .wizard > .actions .ajax-upload-dragdrop\n .input-group-append .ajax-file-upload + a,\n .input-group-append .swal2-modal .swal2-buttonswrapper .wizard > .actions .swal2-styled + a, .wizard > .actions\n .input-group-append .swal2-modal .swal2-buttonswrapper .swal2-styled + a, .swal2-modal .swal2-buttonswrapper\n .input-group-append .wizard > .actions .swal2-styled + a, .wizard > .actions .swal2-modal .swal2-buttonswrapper\n .input-group-append .swal2-styled + a,\n .input-group-append .wizard > .actions a + a, .wizard > .actions\n .input-group-append a + a,\n .input-group-append .btn + .input-group-text,\n .input-group-append .ajax-upload-dragdrop .ajax-file-upload + .input-group-text, .ajax-upload-dragdrop\n .input-group-append .ajax-file-upload + .input-group-text,\n .input-group-append .swal2-modal .swal2-buttonswrapper .swal2-styled + .input-group-text, .swal2-modal .swal2-buttonswrapper\n .input-group-append .swal2-styled + .input-group-text,\n .input-group-append .wizard > .actions a + .input-group-text, .wizard > .actions\n .input-group-append a + .input-group-text,\n .input-group-append .input-group-text + .input-group-text,\n .input-group-append .input-group-text + .btn,\n .input-group-append .ajax-upload-dragdrop .input-group-text + .ajax-file-upload, .ajax-upload-dragdrop\n .input-group-append .input-group-text + .ajax-file-upload,\n .input-group-append .swal2-modal .swal2-buttonswrapper .input-group-text + .swal2-styled, .swal2-modal .swal2-buttonswrapper\n .input-group-append .input-group-text + .swal2-styled,\n .input-group-append .wizard > .actions .input-group-text + a, .wizard > .actions\n .input-group-append .input-group-text + a {\n margin-left: -1px; }\n\n.input-group-prepend, .asColorPicker-trigger {\n margin-right: -1px; }\n\n.input-group-append {\n margin-left: -1px; }\n\n.input-group-text {\n display: flex;\n align-items: center;\n padding: 0.56rem 1.375rem;\n margin-bottom: 0;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1;\n color: #495057;\n text-align: center;\n white-space: nowrap;\n background-color: #e9ecef;\n border: 1px solid #ced4da;\n border-radius: 2px; }\n .input-group-text input[type=\"radio\"],\n .input-group-text input[type=\"checkbox\"] {\n margin-top: 0; }\n\n.input-group-lg > .form-control, .input-group-lg > .asColorPicker-input, .dataTables_wrapper .input-group-lg > select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group-lg > input[type=text],\n.jsgrid .jsgrid-table .jsgrid-filter-row .input-group-lg > select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group-lg > input[type=number], .select2-container--default .input-group-lg > .select2-selection--single, .select2-container--default .select2-selection--single .input-group-lg > .select2-search__field, .input-group-lg > .tt-hint, .input-group-lg >\n.tt-query, .input-group-lg >\n.typeahead,\n.input-group-lg > .input-group-prepend > .input-group-text,\n.input-group-lg > .asColorPicker-trigger > .input-group-text,\n.input-group-lg > .input-group-append > .input-group-text,\n.input-group-lg > .input-group-prepend > .btn,\n.input-group-lg > .asColorPicker-trigger > .btn, .ajax-upload-dragdrop\n.input-group-lg > .input-group-prepend > .ajax-file-upload, .ajax-upload-dragdrop\n.input-group-lg > .asColorPicker-trigger > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n.input-group-lg > .input-group-prepend > .swal2-styled, .swal2-modal .swal2-buttonswrapper\n.input-group-lg > .asColorPicker-trigger > .swal2-styled, .wizard > .actions\n.input-group-lg > .input-group-prepend > a, .wizard > .actions\n.input-group-lg > .asColorPicker-trigger > a,\n.input-group-lg > .input-group-append > .btn, .ajax-upload-dragdrop\n.input-group-lg > .input-group-append > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n.input-group-lg > .input-group-append > .swal2-styled, .wizard > .actions\n.input-group-lg > .input-group-append > a {\n height: calc(2.875rem + 2px);\n padding: 0.94rem 1.94rem;\n font-size: 1.25rem;\n line-height: 1;\n border-radius: 0.3rem; }\n\n.input-group-sm > .form-control, .input-group-sm > .asColorPicker-input, .dataTables_wrapper .input-group-sm > select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group-sm > input[type=text],\n.jsgrid .jsgrid-table .jsgrid-filter-row .input-group-sm > select, .jsgrid .jsgrid-table .jsgrid-filter-row .input-group-sm > input[type=number], .select2-container--default .input-group-sm > .select2-selection--single, .select2-container--default .select2-selection--single .input-group-sm > .select2-search__field, .input-group-sm > .tt-hint, .input-group-sm >\n.tt-query, .input-group-sm >\n.typeahead,\n.input-group-sm > .input-group-prepend > .input-group-text,\n.input-group-sm > .asColorPicker-trigger > .input-group-text,\n.input-group-sm > .input-group-append > .input-group-text,\n.input-group-sm > .input-group-prepend > .btn,\n.input-group-sm > .asColorPicker-trigger > .btn, .ajax-upload-dragdrop\n.input-group-sm > .input-group-prepend > .ajax-file-upload, .ajax-upload-dragdrop\n.input-group-sm > .asColorPicker-trigger > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n.input-group-sm > .input-group-prepend > .swal2-styled, .swal2-modal .swal2-buttonswrapper\n.input-group-sm > .asColorPicker-trigger > .swal2-styled, .wizard > .actions\n.input-group-sm > .input-group-prepend > a, .wizard > .actions\n.input-group-sm > .asColorPicker-trigger > a,\n.input-group-sm > .input-group-append > .btn, .ajax-upload-dragdrop\n.input-group-sm > .input-group-append > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n.input-group-sm > .input-group-append > .swal2-styled, .wizard > .actions\n.input-group-sm > .input-group-append > a {\n height: calc(1.8125rem + 2px);\n padding: 0.5rem 0.81rem;\n font-size: 0.875rem;\n line-height: 1;\n border-radius: 0.2rem; }\n\n.input-group > .input-group-prepend > .btn, .asColorPicker-wrap > .input-group-prepend > .btn, .input-group > .asColorPicker-trigger > .btn, .asColorPicker-wrap > .asColorPicker-trigger > .btn, .ajax-upload-dragdrop .input-group > .input-group-prepend > .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-wrap > .input-group-prepend > .ajax-file-upload, .ajax-upload-dragdrop .input-group > .asColorPicker-trigger > .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-wrap > .asColorPicker-trigger > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .input-group > .input-group-prepend > .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .input-group-prepend > .swal2-styled, .swal2-modal .swal2-buttonswrapper .input-group > .asColorPicker-trigger > .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .asColorPicker-trigger > .swal2-styled, .wizard > .actions .input-group > .input-group-prepend > a, .wizard > .actions .asColorPicker-wrap > .input-group-prepend > a, .wizard > .actions .input-group > .asColorPicker-trigger > a, .wizard > .actions .asColorPicker-wrap > .asColorPicker-trigger > a,\n.input-group > .input-group-prepend > .input-group-text, .asColorPicker-wrap > .input-group-prepend > .input-group-text,\n.input-group > .asColorPicker-trigger > .input-group-text, .asColorPicker-wrap > .asColorPicker-trigger > .input-group-text,\n.input-group > .input-group-append:not(:last-child) > .btn, .asColorPicker-wrap > .input-group-append:not(:last-child) > .btn, .ajax-upload-dragdrop\n.input-group > .input-group-append:not(:last-child) > .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-wrap > .input-group-append:not(:last-child) > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n.input-group > .input-group-append:not(:last-child) > .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .input-group-append:not(:last-child) > .swal2-styled, .wizard > .actions\n.input-group > .input-group-append:not(:last-child) > a, .wizard > .actions .asColorPicker-wrap > .input-group-append:not(:last-child) > a,\n.input-group > .input-group-append:not(:last-child) > .input-group-text, .asColorPicker-wrap > .input-group-append:not(:last-child) > .input-group-text,\n.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .asColorPicker-wrap > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .ajax-upload-dragdrop\n.input-group > .input-group-append:last-child > .ajax-file-upload:not(:last-child):not(.dropdown-toggle), .ajax-upload-dragdrop .asColorPicker-wrap > .input-group-append:last-child > .ajax-file-upload:not(:last-child):not(.dropdown-toggle), .swal2-modal .swal2-buttonswrapper\n.input-group > .input-group-append:last-child > .swal2-styled:not(:last-child):not(.dropdown-toggle), .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .input-group-append:last-child > .swal2-styled:not(:last-child):not(.dropdown-toggle), .wizard > .actions\n.input-group > .input-group-append:last-child > a:not(:last-child):not(.dropdown-toggle), .wizard > .actions .asColorPicker-wrap > .input-group-append:last-child > a:not(:last-child):not(.dropdown-toggle),\n.input-group > .input-group-append:last-child > .input-group-text:not(:last-child), .asColorPicker-wrap > .input-group-append:last-child > .input-group-text:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0; }\n\n.input-group > .input-group-append > .btn, .asColorPicker-wrap > .input-group-append > .btn, .ajax-upload-dragdrop .input-group > .input-group-append > .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-wrap > .input-group-append > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .input-group > .input-group-append > .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .input-group-append > .swal2-styled, .wizard > .actions .input-group > .input-group-append > a, .wizard > .actions .asColorPicker-wrap > .input-group-append > a,\n.input-group > .input-group-append > .input-group-text, .asColorPicker-wrap > .input-group-append > .input-group-text,\n.input-group > .input-group-prepend:not(:first-child) > .btn, .asColorPicker-wrap > .input-group-prepend:not(:first-child) > .btn,\n.input-group > .asColorPicker-trigger:not(:first-child) > .btn, .asColorPicker-wrap > .asColorPicker-trigger:not(:first-child) > .btn, .ajax-upload-dragdrop\n.input-group > .input-group-prepend:not(:first-child) > .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-wrap > .input-group-prepend:not(:first-child) > .ajax-file-upload, .ajax-upload-dragdrop\n.input-group > .asColorPicker-trigger:not(:first-child) > .ajax-file-upload, .ajax-upload-dragdrop .asColorPicker-wrap > .asColorPicker-trigger:not(:first-child) > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper\n.input-group > .input-group-prepend:not(:first-child) > .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .input-group-prepend:not(:first-child) > .swal2-styled, .swal2-modal .swal2-buttonswrapper\n.input-group > .asColorPicker-trigger:not(:first-child) > .swal2-styled, .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .asColorPicker-trigger:not(:first-child) > .swal2-styled, .wizard > .actions\n.input-group > .input-group-prepend:not(:first-child) > a, .wizard > .actions .asColorPicker-wrap > .input-group-prepend:not(:first-child) > a, .wizard > .actions\n.input-group > .asColorPicker-trigger:not(:first-child) > a, .wizard > .actions .asColorPicker-wrap > .asColorPicker-trigger:not(:first-child) > a,\n.input-group > .input-group-prepend:not(:first-child) > .input-group-text, .asColorPicker-wrap > .input-group-prepend:not(:first-child) > .input-group-text,\n.input-group > .asColorPicker-trigger:not(:first-child) > .input-group-text, .asColorPicker-wrap > .asColorPicker-trigger:not(:first-child) > .input-group-text,\n.input-group > .input-group-prepend:first-child > .btn:not(:first-child), .asColorPicker-wrap > .input-group-prepend:first-child > .btn:not(:first-child),\n.input-group > .asColorPicker-trigger:first-child > .btn:not(:first-child), .asColorPicker-wrap > .asColorPicker-trigger:first-child > .btn:not(:first-child), .ajax-upload-dragdrop\n.input-group > .input-group-prepend:first-child > .ajax-file-upload:not(:first-child), .ajax-upload-dragdrop .asColorPicker-wrap > .input-group-prepend:first-child > .ajax-file-upload:not(:first-child), .ajax-upload-dragdrop\n.input-group > .asColorPicker-trigger:first-child > .ajax-file-upload:not(:first-child), .ajax-upload-dragdrop .asColorPicker-wrap > .asColorPicker-trigger:first-child > .ajax-file-upload:not(:first-child), .swal2-modal .swal2-buttonswrapper\n.input-group > .input-group-prepend:first-child > .swal2-styled:not(:first-child), .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .input-group-prepend:first-child > .swal2-styled:not(:first-child), .swal2-modal .swal2-buttonswrapper\n.input-group > .asColorPicker-trigger:first-child > .swal2-styled:not(:first-child), .swal2-modal .swal2-buttonswrapper .asColorPicker-wrap > .asColorPicker-trigger:first-child > .swal2-styled:not(:first-child), .wizard > .actions\n.input-group > .input-group-prepend:first-child > a:not(:first-child), .wizard > .actions .asColorPicker-wrap > .input-group-prepend:first-child > a:not(:first-child), .wizard > .actions\n.input-group > .asColorPicker-trigger:first-child > a:not(:first-child), .wizard > .actions .asColorPicker-wrap > .asColorPicker-trigger:first-child > a:not(:first-child),\n.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .asColorPicker-wrap > .input-group-prepend:first-child > .input-group-text:not(:first-child),\n.input-group > .asColorPicker-trigger:first-child > .input-group-text:not(:first-child), .asColorPicker-wrap > .asColorPicker-trigger:first-child > .input-group-text:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0; }\n\n.custom-control {\n position: relative;\n display: block;\n min-height: 1.5rem;\n padding-left: 1.5rem; }\n\n.custom-control-inline {\n display: inline-flex;\n margin-right: 1rem; }\n\n.custom-control-input {\n position: absolute;\n z-index: -1;\n opacity: 0; }\n .custom-control-input:checked ~ .custom-control-label::before {\n color: #fff;\n background-color: #007bff; }\n .custom-control-input:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .custom-control-input:active ~ .custom-control-label::before {\n color: #fff;\n background-color: #b3d7ff; }\n .custom-control-input:disabled ~ .custom-control-label {\n color: #6c757d; }\n .custom-control-input:disabled ~ .custom-control-label::before {\n background-color: #e9ecef; }\n\n.custom-control-label {\n position: relative;\n margin-bottom: 0; }\n .custom-control-label::before {\n position: absolute;\n top: 0.25rem;\n left: -1.5rem;\n display: block;\n width: 1rem;\n height: 1rem;\n pointer-events: none;\n content: \"\";\n user-select: none;\n background-color: #dee2e6; }\n .custom-control-label::after {\n position: absolute;\n top: 0.25rem;\n left: -1.5rem;\n display: block;\n width: 1rem;\n height: 1rem;\n content: \"\";\n background-repeat: no-repeat;\n background-position: center center;\n background-size: 50% 50%; }\n\n.custom-checkbox .custom-control-label::before {\n border-radius: 0.25rem; }\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {\n background-color: #007bff; }\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\"); }\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {\n background-color: #007bff; }\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E\"); }\n\n.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5); }\n\n.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5); }\n\n.custom-radio .custom-control-label::before {\n border-radius: 50%; }\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::before {\n background-color: #007bff; }\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E\"); }\n\n.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5); }\n\n.custom-select {\n display: inline-block;\n width: 100%;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 1.75rem 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n vertical-align: middle;\n background: #fff url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right 0.75rem center;\n background-size: 8px 10px;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n appearance: none; }\n .custom-select:focus {\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5); }\n .custom-select:focus::-ms-value {\n color: #495057;\n background-color: #ffffff; }\n .custom-select[multiple], .custom-select[size]:not([size=\"1\"]) {\n height: auto;\n padding-right: 0.75rem;\n background-image: none; }\n .custom-select:disabled {\n color: #6c757d;\n background-color: #e9ecef; }\n .custom-select::-ms-expand {\n opacity: 0; }\n\n.custom-select-sm {\n height: calc(1.8125rem + 2px);\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n font-size: 75%; }\n\n.custom-select-lg {\n height: calc(2.875rem + 2px);\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n font-size: 125%; }\n\n.custom-file {\n position: relative;\n display: inline-block;\n width: 100%;\n height: calc(2.25rem + 2px);\n margin-bottom: 0; }\n\n.custom-file-input {\n position: relative;\n z-index: 2;\n width: 100%;\n height: calc(2.25rem + 2px);\n margin: 0;\n opacity: 0; }\n .custom-file-input:focus ~ .custom-file-label {\n border-color: #80bdff;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .custom-file-input:focus ~ .custom-file-label::after {\n border-color: #80bdff; }\n .custom-file-input:disabled ~ .custom-file-label {\n background-color: #e9ecef; }\n .custom-file-input:lang(en) ~ .custom-file-label::after {\n content: \"Browse\"; }\n\n.custom-file-label {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n border: 1px solid #ced4da;\n border-radius: 0.25rem; }\n .custom-file-label::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n z-index: 3;\n display: block;\n height: 2.25rem;\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n content: \"Browse\";\n background-color: #e9ecef;\n border-left: 1px solid #ced4da;\n border-radius: 0 0.25rem 0.25rem 0; }\n\n.custom-range {\n width: 100%;\n padding-left: 0;\n background-color: transparent;\n appearance: none; }\n .custom-range:focus {\n outline: none; }\n .custom-range:focus::-webkit-slider-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .custom-range:focus::-moz-range-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .custom-range:focus::-ms-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .custom-range::-moz-focus-outer {\n border: 0; }\n .custom-range::-webkit-slider-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: -0.25rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none; }\n @media screen and (prefers-reduced-motion: reduce) {\n .custom-range::-webkit-slider-thumb {\n transition: none; } }\n .custom-range::-webkit-slider-thumb:active {\n background-color: #b3d7ff; }\n .custom-range::-webkit-slider-runnable-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem; }\n .custom-range::-moz-range-thumb {\n width: 1rem;\n height: 1rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none; }\n @media screen and (prefers-reduced-motion: reduce) {\n .custom-range::-moz-range-thumb {\n transition: none; } }\n .custom-range::-moz-range-thumb:active {\n background-color: #b3d7ff; }\n .custom-range::-moz-range-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem; }\n .custom-range::-ms-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: 0;\n margin-right: 0.2rem;\n margin-left: 0.2rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none; }\n @media screen and (prefers-reduced-motion: reduce) {\n .custom-range::-ms-thumb {\n transition: none; } }\n .custom-range::-ms-thumb:active {\n background-color: #b3d7ff; }\n .custom-range::-ms-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: transparent;\n border-color: transparent;\n border-width: 0.5rem; }\n .custom-range::-ms-fill-lower {\n background-color: #dee2e6;\n border-radius: 1rem; }\n .custom-range::-ms-fill-upper {\n margin-right: 15px;\n background-color: #dee2e6;\n border-radius: 1rem; }\n\n.custom-control-label::before,\n.custom-file-label,\n.custom-select {\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }\n @media screen and (prefers-reduced-motion: reduce) {\n .custom-control-label::before,\n .custom-file-label,\n .custom-select {\n transition: none; } }\n\n.nav {\n display: flex;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none; }\n\n.nav-link {\n display: block;\n padding: 0.5rem 1rem; }\n .nav-link:hover, .nav-link:focus {\n text-decoration: none; }\n .nav-link.disabled {\n color: #6c757d; }\n\n.nav-tabs {\n border-bottom: 1px solid #dee2e6; }\n .nav-tabs .nav-item {\n margin-bottom: -1px; }\n .nav-tabs .nav-link {\n border: 1px solid transparent;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem; }\n .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {\n border-color: #e9ecef #e9ecef #dee2e6; }\n .nav-tabs .nav-link.disabled {\n color: #6c757d;\n background-color: transparent;\n border-color: transparent; }\n .nav-tabs .nav-link.active,\n .nav-tabs .nav-item.show .nav-link {\n color: #495057;\n background-color: #fff;\n border-color: #dee2e6 #dee2e6 #fff; }\n .nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0; }\n\n.nav-pills .nav-link {\n border-radius: 0.25rem; }\n\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n color: #fff;\n background-color: #007bff; }\n\n.nav-fill .nav-item {\n flex: 1 1 auto;\n text-align: center; }\n\n.nav-justified .nav-item {\n flex-basis: 0;\n flex-grow: 1;\n text-align: center; }\n\n.tab-content > .tab-pane {\n display: none; }\n\n.tab-content > .active {\n display: block; }\n\n.navbar {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n padding: 0.5rem 1rem; }\n .navbar > .container,\n .navbar > .container-fluid {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between; }\n\n.navbar-brand {\n display: inline-block;\n padding-top: 0.3125rem;\n padding-bottom: 0.3125rem;\n margin-right: 1rem;\n font-size: 1.25rem;\n line-height: inherit;\n white-space: nowrap; }\n .navbar-brand:hover, .navbar-brand:focus {\n text-decoration: none; }\n\n.navbar-nav {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none; }\n .navbar-nav .nav-link {\n padding-right: 0;\n padding-left: 0; }\n .navbar-nav .dropdown-menu {\n position: static;\n float: none; }\n\n.navbar-text {\n display: inline-block;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem; }\n\n.navbar-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n align-items: center; }\n\n.navbar-toggler {\n padding: 0.25rem 0.75rem;\n font-size: 1.25rem;\n line-height: 1;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 0.25rem; }\n .navbar-toggler:hover, .navbar-toggler:focus {\n text-decoration: none; }\n .navbar-toggler:not(:disabled):not(.disabled) {\n cursor: pointer; }\n\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n content: \"\";\n background: no-repeat center center;\n background-size: 100% 100%; }\n\n@media (max-width: 575.98px) {\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n padding-right: 0;\n padding-left: 0; } }\n\n@media (min-width: 576px) {\n .navbar-expand-sm {\n flex-flow: row nowrap;\n justify-content: flex-start; }\n .navbar-expand-sm .navbar-nav {\n flex-direction: row; }\n .navbar-expand-sm .navbar-nav .dropdown-menu {\n position: absolute; }\n .navbar-expand-sm .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem; }\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n flex-wrap: nowrap; }\n .navbar-expand-sm .navbar-collapse {\n display: flex !important;\n flex-basis: auto; }\n .navbar-expand-sm .navbar-toggler {\n display: none; } }\n\n@media (max-width: 767.98px) {\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n padding-right: 0;\n padding-left: 0; } }\n\n@media (min-width: 768px) {\n .navbar-expand-md {\n flex-flow: row nowrap;\n justify-content: flex-start; }\n .navbar-expand-md .navbar-nav {\n flex-direction: row; }\n .navbar-expand-md .navbar-nav .dropdown-menu {\n position: absolute; }\n .navbar-expand-md .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem; }\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n flex-wrap: nowrap; }\n .navbar-expand-md .navbar-collapse {\n display: flex !important;\n flex-basis: auto; }\n .navbar-expand-md .navbar-toggler {\n display: none; } }\n\n@media (max-width: 991.98px) {\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n padding-right: 0;\n padding-left: 0; } }\n\n@media (min-width: 992px) {\n .navbar-expand-lg {\n flex-flow: row nowrap;\n justify-content: flex-start; }\n .navbar-expand-lg .navbar-nav {\n flex-direction: row; }\n .navbar-expand-lg .navbar-nav .dropdown-menu {\n position: absolute; }\n .navbar-expand-lg .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem; }\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n flex-wrap: nowrap; }\n .navbar-expand-lg .navbar-collapse {\n display: flex !important;\n flex-basis: auto; }\n .navbar-expand-lg .navbar-toggler {\n display: none; } }\n\n@media (max-width: 1199.98px) {\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n padding-right: 0;\n padding-left: 0; } }\n\n@media (min-width: 1200px) {\n .navbar-expand-xl {\n flex-flow: row nowrap;\n justify-content: flex-start; }\n .navbar-expand-xl .navbar-nav {\n flex-direction: row; }\n .navbar-expand-xl .navbar-nav .dropdown-menu {\n position: absolute; }\n .navbar-expand-xl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem; }\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n flex-wrap: nowrap; }\n .navbar-expand-xl .navbar-collapse {\n display: flex !important;\n flex-basis: auto; }\n .navbar-expand-xl .navbar-toggler {\n display: none; } }\n\n.navbar-expand {\n flex-flow: row nowrap;\n justify-content: flex-start; }\n .navbar-expand > .container,\n .navbar-expand > .container-fluid {\n padding-right: 0;\n padding-left: 0; }\n .navbar-expand .navbar-nav {\n flex-direction: row; }\n .navbar-expand .navbar-nav .dropdown-menu {\n position: absolute; }\n .navbar-expand .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem; }\n .navbar-expand > .container,\n .navbar-expand > .container-fluid {\n flex-wrap: nowrap; }\n .navbar-expand .navbar-collapse {\n display: flex !important;\n flex-basis: auto; }\n .navbar-expand .navbar-toggler {\n display: none; }\n\n.navbar-light .navbar-brand {\n color: rgba(0, 0, 0, 0.9); }\n .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {\n color: rgba(0, 0, 0, 0.9); }\n\n.navbar-light .navbar-nav .nav-link {\n color: #202339; }\n .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {\n color: rgba(0, 0, 0, 0.7); }\n .navbar-light .navbar-nav .nav-link.disabled {\n color: rgba(0, 0, 0, 0.3); }\n\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .active > .nav-link,\n.navbar-light .navbar-nav .nav-link.show,\n.navbar-light .navbar-nav .nav-link.active {\n color: rgba(0, 0, 0, 0.9); }\n\n.navbar-light .navbar-toggler {\n color: #202339;\n border-color: rgba(0, 0, 0, 0.1); }\n\n.navbar-light .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"); }\n\n.navbar-light .navbar-text {\n color: #202339; }\n .navbar-light .navbar-text a {\n color: rgba(0, 0, 0, 0.9); }\n .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {\n color: rgba(0, 0, 0, 0.9); }\n\n.navbar-dark .navbar-brand, .navbar.default-layout.navbar-danger .navbar-brand, .navbar.default-layout.navbar-dark .navbar-brand, .navbar.default-layout.navbar-primary .navbar-brand, .navbar.default-layout.navbar-success .navbar-brand, .navbar.default-layout.navbar-warning .navbar-brand {\n color: #fff; }\n .navbar-dark .navbar-brand:hover, .navbar.default-layout.navbar-danger .navbar-brand:hover, .navbar.default-layout.navbar-primary .navbar-brand:hover, .navbar.default-layout.navbar-success .navbar-brand:hover, .navbar.default-layout.navbar-warning .navbar-brand:hover, .navbar-dark .navbar-brand:focus, .navbar.default-layout.navbar-danger .navbar-brand:focus, .navbar.default-layout.navbar-primary .navbar-brand:focus, .navbar.default-layout.navbar-success .navbar-brand:focus, .navbar.default-layout.navbar-warning .navbar-brand:focus {\n color: #fff; }\n\n.navbar-dark .navbar-nav .nav-link, .navbar.default-layout.navbar-danger .navbar-nav .nav-link, .navbar.default-layout.navbar-primary .navbar-nav .nav-link, .navbar.default-layout.navbar-success .navbar-nav .nav-link, .navbar.default-layout.navbar-warning .navbar-nav .nav-link {\n color: rgba(255, 255, 255, 0.5); }\n .navbar-dark .navbar-nav .nav-link:hover, .navbar.default-layout.navbar-danger .navbar-nav .nav-link:hover, .navbar.default-layout.navbar-primary .navbar-nav .nav-link:hover, .navbar.default-layout.navbar-success .navbar-nav .nav-link:hover, .navbar.default-layout.navbar-warning .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus, .navbar.default-layout.navbar-danger .navbar-nav .nav-link:focus, .navbar.default-layout.navbar-primary .navbar-nav .nav-link:focus, .navbar.default-layout.navbar-success .navbar-nav .nav-link:focus, .navbar.default-layout.navbar-warning .navbar-nav .nav-link:focus {\n color: rgba(255, 255, 255, 0.75); }\n .navbar-dark .navbar-nav .nav-link.disabled, .navbar.default-layout.navbar-danger .navbar-nav .nav-link.disabled, .navbar.default-layout.navbar-primary .navbar-nav .nav-link.disabled, .navbar.default-layout.navbar-success .navbar-nav .nav-link.disabled, .navbar.default-layout.navbar-warning .navbar-nav .nav-link.disabled {\n color: rgba(255, 255, 255, 0.25); }\n\n.navbar-dark .navbar-nav .show > .nav-link, .navbar.default-layout.navbar-danger .navbar-nav .show > .nav-link, .navbar.default-layout.navbar-primary .navbar-nav .show > .nav-link, .navbar.default-layout.navbar-success .navbar-nav .show > .nav-link, .navbar.default-layout.navbar-warning .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .active > .nav-link, .navbar.default-layout.navbar-danger .navbar-nav .active > .nav-link, .navbar.default-layout.navbar-primary .navbar-nav .active > .nav-link, .navbar.default-layout.navbar-success .navbar-nav .active > .nav-link, .navbar.default-layout.navbar-warning .navbar-nav .active > .nav-link,\n.navbar-dark .navbar-nav .nav-link.show, .navbar.default-layout.navbar-danger .navbar-nav .nav-link.show, .navbar.default-layout.navbar-primary .navbar-nav .nav-link.show, .navbar.default-layout.navbar-success .navbar-nav .nav-link.show, .navbar.default-layout.navbar-warning .navbar-nav .nav-link.show,\n.navbar-dark .navbar-nav .nav-link.active, .navbar.default-layout.navbar-danger .navbar-nav .nav-link.active, .navbar.default-layout.navbar-primary .navbar-nav .nav-link.active, .navbar.default-layout.navbar-success .navbar-nav .nav-link.active, .navbar.default-layout.navbar-warning .navbar-nav .nav-link.active {\n color: #fff; }\n\n.navbar-dark .navbar-toggler, .navbar.default-layout.navbar-danger .navbar-toggler, .navbar.default-layout.navbar-dark .navbar-toggler, .navbar.default-layout.navbar-primary .navbar-toggler, .navbar.default-layout.navbar-success .navbar-toggler, .navbar.default-layout.navbar-warning .navbar-toggler {\n color: rgba(255, 255, 255, 0.5);\n border-color: rgba(255, 255, 255, 0.1); }\n\n.navbar-dark .navbar-toggler-icon, .navbar.default-layout.navbar-danger .navbar-toggler-icon, .navbar.default-layout.navbar-dark .navbar-toggler-icon, .navbar.default-layout.navbar-primary .navbar-toggler-icon, .navbar.default-layout.navbar-success .navbar-toggler-icon, .navbar.default-layout.navbar-warning .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"); }\n\n.navbar-dark .navbar-text, .navbar.default-layout.navbar-danger .navbar-text, .navbar.default-layout.navbar-dark .navbar-text, .navbar.default-layout.navbar-primary .navbar-text, .navbar.default-layout.navbar-success .navbar-text, .navbar.default-layout.navbar-warning .navbar-text {\n color: rgba(255, 255, 255, 0.5); }\n .navbar-dark .navbar-text a, .navbar.default-layout.navbar-danger .navbar-text a, .navbar.default-layout.navbar-dark .navbar-text a, .navbar.default-layout.navbar-primary .navbar-text a, .navbar.default-layout.navbar-success .navbar-text a, .navbar.default-layout.navbar-warning .navbar-text a {\n color: #fff; }\n .navbar-dark .navbar-text a:hover, .navbar.default-layout.navbar-danger .navbar-text a:hover, .navbar.default-layout.navbar-primary .navbar-text a:hover, .navbar.default-layout.navbar-success .navbar-text a:hover, .navbar.default-layout.navbar-warning .navbar-text a:hover, .navbar-dark .navbar-text a:focus, .navbar.default-layout.navbar-danger .navbar-text a:focus, .navbar.default-layout.navbar-primary .navbar-text a:focus, .navbar.default-layout.navbar-success .navbar-text a:focus, .navbar.default-layout.navbar-warning .navbar-text a:focus {\n color: #fff; }\n\n.card {\n position: relative;\n display: flex;\n flex-direction: column;\n min-width: 0;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: border-box;\n border: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0.25rem; }\n .card > hr {\n margin-right: 0;\n margin-left: 0; }\n .card > .list-group:first-child .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem; }\n .card > .list-group:last-child .list-group-item:last-child {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem; }\n\n.card-body {\n flex: 1 1 auto;\n padding: 1.25rem; }\n\n.card-title {\n margin-bottom: 0.75rem; }\n\n.card-subtitle {\n margin-top: -0.375rem;\n margin-bottom: 0; }\n\n.card-text:last-child {\n margin-bottom: 0; }\n\n.card-link:hover {\n text-decoration: none; }\n\n.card-link + .card-link {\n margin-left: 1.25rem; }\n\n.card-header {\n padding: 0.75rem 1.25rem;\n margin-bottom: 0;\n background-color: rgba(0, 0, 0, 0.03);\n border-bottom: 1px solid rgba(0, 0, 0, 0.125); }\n .card-header:first-child {\n border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }\n .card-header + .list-group .list-group-item:first-child {\n border-top: 0; }\n\n.card-footer {\n padding: 0.75rem 1.25rem;\n background-color: rgba(0, 0, 0, 0.03);\n border-top: 1px solid rgba(0, 0, 0, 0.125); }\n .card-footer:last-child {\n border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }\n\n.card-header-tabs {\n margin-right: -0.625rem;\n margin-bottom: -0.75rem;\n margin-left: -0.625rem;\n border-bottom: 0; }\n\n.card-header-pills {\n margin-right: -0.625rem;\n margin-left: -0.625rem; }\n\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 1.25rem; }\n\n.card-img {\n width: 100%;\n border-radius: calc(0.25rem - 1px); }\n\n.card-img-top {\n width: 100%;\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px); }\n\n.card-img-bottom {\n width: 100%;\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px); }\n\n.card-deck {\n display: flex;\n flex-direction: column; }\n .card-deck .card {\n margin-bottom: 15px; }\n @media (min-width: 576px) {\n .card-deck {\n flex-flow: row wrap;\n margin-right: -15px;\n margin-left: -15px; }\n .card-deck .card {\n display: flex;\n flex: 1 0 0%;\n flex-direction: column;\n margin-right: 15px;\n margin-bottom: 0;\n margin-left: 15px; } }\n\n.card-group {\n display: flex;\n flex-direction: column; }\n .card-group > .card {\n margin-bottom: 15px; }\n @media (min-width: 576px) {\n .card-group {\n flex-flow: row wrap; }\n .card-group > .card {\n flex: 1 0 0%;\n margin-bottom: 0; }\n .card-group > .card + .card {\n margin-left: 0;\n border-left: 0; }\n .card-group > .card:first-child {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0; }\n .card-group > .card:first-child .card-img-top,\n .card-group > .card:first-child .card-header {\n border-top-right-radius: 0; }\n .card-group > .card:first-child .card-img-bottom,\n .card-group > .card:first-child .card-footer {\n border-bottom-right-radius: 0; }\n .card-group > .card:last-child {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0; }\n .card-group > .card:last-child .card-img-top,\n .card-group > .card:last-child .card-header {\n border-top-left-radius: 0; }\n .card-group > .card:last-child .card-img-bottom,\n .card-group > .card:last-child .card-footer {\n border-bottom-left-radius: 0; }\n .card-group > .card:only-child {\n border-radius: 0.25rem; }\n .card-group > .card:only-child .card-img-top,\n .card-group > .card:only-child .card-header {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem; }\n .card-group > .card:only-child .card-img-bottom,\n .card-group > .card:only-child .card-footer {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem; }\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {\n border-radius: 0; }\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {\n border-radius: 0; } }\n\n.card-columns .card {\n margin-bottom: 0.75rem; }\n\n@media (min-width: 576px) {\n .card-columns {\n column-count: 3;\n column-gap: 1.25rem;\n orphans: 1;\n widows: 1; }\n .card-columns .card {\n display: inline-block;\n width: 100%; } }\n\n.accordion .card:not(:first-of-type):not(:last-of-type) {\n border-bottom: 0;\n border-radius: 0; }\n\n.accordion .card:not(:first-of-type) .card-header:first-child {\n border-radius: 0; }\n\n.accordion .card:first-of-type {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0; }\n\n.accordion .card:last-of-type {\n border-top-left-radius: 0;\n border-top-right-radius: 0; }\n\n.breadcrumb {\n display: flex;\n flex-wrap: wrap;\n padding: 0.56rem 1.13rem;\n margin-bottom: 1rem;\n list-style: none;\n background-color: transparent;\n border-radius: 0.25rem; }\n\n.breadcrumb-item + .breadcrumb-item {\n padding-left: 0.5rem; }\n .breadcrumb-item + .breadcrumb-item::before {\n display: inline-block;\n padding-right: 0.5rem;\n color: #6c757d;\n content: \"/\"; }\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: underline; }\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: none; }\n\n.breadcrumb-item.active {\n color: #495057; }\n\n.pagination, .jsgrid .jsgrid-pager {\n display: flex;\n padding-left: 0;\n list-style: none;\n border-radius: 0.25rem; }\n\n.page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page a {\n position: relative;\n display: block;\n padding: 0.5rem 0.75rem;\n margin-left: -1px;\n line-height: 1.25;\n color: #007bff;\n background-color: #fff;\n border: 1px solid #dee2e6; }\n .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover,\n .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover {\n z-index: 2;\n color: #0056b3;\n text-decoration: none;\n background-color: #e9ecef;\n border-color: #dee2e6; }\n .page-link:focus, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:focus,\n .jsgrid .jsgrid-pager .jsgrid-pager-page a:focus {\n z-index: 2;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .page-link:not(:disabled):not(.disabled), .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:not(:disabled):not(.disabled),\n .jsgrid .jsgrid-pager .jsgrid-pager-page a:not(:disabled):not(.disabled) {\n cursor: pointer; }\n\n.page-item:first-child .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link,\n.jsgrid .jsgrid-pager .jsgrid-pager-page:first-child .page-link, .page-item:first-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item:first-child a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child a, .page-item:first-child\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-item:first-child a, .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child a {\n margin-left: 0;\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem; }\n\n.page-item:last-child .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link,\n.jsgrid .jsgrid-pager .jsgrid-pager-page:last-child .page-link, .page-item:last-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item:last-child a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child a, .page-item:last-child\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-item:last-child a, .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child a {\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem; }\n\n.page-item.active .page-link, .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link,\n.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link, .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item.active a, .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .page-item.active\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-item.active a, .jsgrid .jsgrid-pager .active.jsgrid-pager-page a {\n z-index: 1;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff; }\n\n.page-item.disabled .page-link, .jsgrid .jsgrid-pager .disabled.jsgrid-pager-nav-button .page-link,\n.jsgrid .jsgrid-pager .disabled.jsgrid-pager-page .page-link, .page-item.disabled .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item.disabled a, .jsgrid .jsgrid-pager .disabled.jsgrid-pager-nav-button a, .page-item.disabled\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-item.disabled a, .jsgrid .jsgrid-pager .disabled.jsgrid-pager-page a {\n color: #6c757d;\n pointer-events: none;\n cursor: auto;\n background-color: #fff;\n border-color: #dee2e6; }\n\n.pagination-lg .page-link, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-lg a, .pagination-lg\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-lg a {\n padding: 0.75rem 1.5rem;\n font-size: 1.25rem;\n line-height: 1.5; }\n\n.pagination-lg .page-item:first-child .page-link, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-nav-button:first-child .page-link, .pagination-lg\n.jsgrid .jsgrid-pager .jsgrid-pager-page:first-child .page-link,\n.jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-page:first-child .page-link, .pagination-lg .page-item:first-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-lg .page-item:first-child a, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child a, .jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-nav-button:first-child a, .pagination-lg .page-item:first-child\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-lg .page-item:first-child a, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child a, .jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-page:first-child a {\n border-top-left-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem; }\n\n.pagination-lg .page-item:last-child .page-link, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-nav-button:last-child .page-link, .pagination-lg\n.jsgrid .jsgrid-pager .jsgrid-pager-page:last-child .page-link,\n.jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-page:last-child .page-link, .pagination-lg .page-item:last-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-lg .page-item:last-child a, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child a, .jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-nav-button:last-child a, .pagination-lg .page-item:last-child\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-lg .page-item:last-child a, .pagination-lg .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child a, .jsgrid .jsgrid-pager .pagination-lg .jsgrid-pager-page:last-child a {\n border-top-right-radius: 0.3rem;\n border-bottom-right-radius: 0.3rem; }\n\n.pagination-sm .page-link, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-sm a, .pagination-sm\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-sm a {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5; }\n\n.pagination-sm .page-item:first-child .page-link, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-nav-button:first-child .page-link, .pagination-sm\n.jsgrid .jsgrid-pager .jsgrid-pager-page:first-child .page-link,\n.jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-page:first-child .page-link, .pagination-sm .page-item:first-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-sm .page-item:first-child a, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child a, .jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-nav-button:first-child a, .pagination-sm .page-item:first-child\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-sm .page-item:first-child a, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child a, .jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-page:first-child a {\n border-top-left-radius: 0.2rem;\n border-bottom-left-radius: 0.2rem; }\n\n.pagination-sm .page-item:last-child .page-link, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-nav-button:last-child .page-link, .pagination-sm\n.jsgrid .jsgrid-pager .jsgrid-pager-page:last-child .page-link,\n.jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-page:last-child .page-link, .pagination-sm .page-item:last-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-sm .page-item:last-child a, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child a, .jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-nav-button:last-child a, .pagination-sm .page-item:last-child\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-sm .page-item:last-child a, .pagination-sm .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child a, .jsgrid .jsgrid-pager .pagination-sm .jsgrid-pager-page:last-child a {\n border-top-right-radius: 0.2rem;\n border-bottom-right-radius: 0.2rem; }\n\n.badge {\n display: inline-block;\n padding: 0.25em 0.4em;\n font-size: 75%;\n font-weight: 700;\n line-height: 1;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25rem; }\n .badge:empty {\n display: none; }\n\n.btn .badge, .ajax-upload-dragdrop .ajax-file-upload .badge, .swal2-modal .swal2-buttonswrapper .swal2-styled .badge, .wizard > .actions a .badge {\n position: relative;\n top: -1px; }\n\n.badge-pill {\n padding-right: 0.6em;\n padding-left: 0.6em;\n border-radius: 10rem; }\n\n.badge-primary {\n color: #fff;\n background-color: #2196f3; }\n .badge-primary[href]:hover, .badge-primary[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #0c7cd5; }\n\n.badge-secondary {\n color: #212529;\n background-color: #e6eef2; }\n .badge-secondary[href]:hover, .badge-secondary[href]:focus {\n color: #212529;\n text-decoration: none;\n background-color: #c4d7e1; }\n\n.badge-success, .preview-list .preview-item .preview-thumbnail .badge.badge-online {\n color: #212529;\n background-color: #19d895; }\n .badge-success[href]:hover, .preview-list .preview-item .preview-thumbnail [href].badge.badge-online:hover, .badge-success[href]:focus, .preview-list .preview-item .preview-thumbnail [href].badge.badge-online:focus {\n color: #212529;\n text-decoration: none;\n background-color: #14aa75; }\n\n.badge-info, .preview-list .preview-item .preview-thumbnail .badge.badge-offline {\n color: #fff;\n background-color: #8862e0; }\n .badge-info[href]:hover, .preview-list .preview-item .preview-thumbnail [href].badge.badge-offline:hover, .badge-info[href]:focus, .preview-list .preview-item .preview-thumbnail [href].badge.badge-offline:focus {\n color: #fff;\n text-decoration: none;\n background-color: #6837d8; }\n\n.badge-warning, .preview-list .preview-item .preview-thumbnail .badge.badge-busy {\n color: #212529;\n background-color: #ffaf00; }\n .badge-warning[href]:hover, .preview-list .preview-item .preview-thumbnail [href].badge.badge-busy:hover, .badge-warning[href]:focus, .preview-list .preview-item .preview-thumbnail [href].badge.badge-busy:focus {\n color: #212529;\n text-decoration: none;\n background-color: #cc8c00; }\n\n.badge-danger {\n color: #fff;\n background-color: #ff6258; }\n .badge-danger[href]:hover, .badge-danger[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #ff3225; }\n\n.badge-light {\n color: #212529;\n background-color: #fbfbfb; }\n .badge-light[href]:hover, .badge-light[href]:focus {\n color: #212529;\n text-decoration: none;\n background-color: #e2e2e2; }\n\n.badge-dark {\n color: #fff;\n background-color: #252C46; }\n .badge-dark[href]:hover, .badge-dark[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #131725; }\n\n.jumbotron {\n padding: 2rem 1rem;\n margin-bottom: 2rem;\n background-color: #e9ecef;\n border-radius: 0.3rem; }\n @media (min-width: 576px) {\n .jumbotron {\n padding: 4rem 2rem; } }\n\n.jumbotron-fluid {\n padding-right: 0;\n padding-left: 0;\n border-radius: 0; }\n\n.alert {\n position: relative;\n padding: 0.75rem 1.25rem;\n margin-bottom: 1rem;\n border: 1px solid transparent;\n border-radius: 0.25rem; }\n\n.alert-heading {\n color: inherit; }\n\n.alert-link {\n font-weight: 700; }\n\n.alert-dismissible {\n padding-right: 4rem; }\n .alert-dismissible .close {\n position: absolute;\n top: 0;\n right: 0;\n padding: 0.75rem 1.25rem;\n color: inherit; }\n\n.alert-primary {\n color: #114e7e;\n background-color: #d3eafd;\n border-color: #c1e2fc; }\n .alert-primary hr {\n border-top-color: #a9d7fb; }\n .alert-primary .alert-link {\n color: #0b3251; }\n\n.alert-secondary {\n color: #787c7e;\n background-color: #fafcfc;\n border-color: #f8fafb; }\n .alert-secondary hr {\n border-top-color: #e8eef2; }\n .alert-secondary .alert-link {\n color: #5f6264; }\n\n.alert-success {\n color: #0d704d;\n background-color: #d1f7ea;\n border-color: #bff4e1; }\n .alert-success hr {\n border-top-color: #a9f0d7; }\n .alert-success .alert-link {\n color: #08422e; }\n\n.alert-info {\n color: #473374;\n background-color: #e7e0f9;\n border-color: #ded3f6; }\n .alert-info hr {\n border-top-color: #cebef2; }\n .alert-info .alert-link {\n color: #312351; }\n\n.alert-warning {\n color: #855b00;\n background-color: #ffefcc;\n border-color: #ffe9b8; }\n .alert-warning hr {\n border-top-color: #ffe19f; }\n .alert-warning .alert-link {\n color: #523800; }\n\n.alert-danger {\n color: #85332e;\n background-color: #ffe0de;\n border-color: #ffd3d0; }\n .alert-danger hr {\n border-top-color: #ffbbb7; }\n .alert-danger .alert-link {\n color: #5f2421; }\n\n.alert-light {\n color: #838383;\n background-color: #fefefe;\n border-color: #fefefe; }\n .alert-light hr {\n border-top-color: #f1f1f1; }\n .alert-light .alert-link {\n color: #6a6a6a; }\n\n.alert-dark {\n color: #131724;\n background-color: #d3d5da;\n border-color: #c2c4cb; }\n .alert-dark hr {\n border-top-color: #b4b7bf; }\n .alert-dark .alert-link {\n color: #010203; }\n\n@keyframes progress-bar-stripes {\n from {\n background-position: 1rem 0; }\n to {\n background-position: 0 0; } }\n\n.progress {\n display: flex;\n height: 1rem;\n overflow: hidden;\n font-size: 0.75rem;\n background-color: #e9ecef;\n border-radius: 0.25rem; }\n\n.progress-bar {\n display: flex;\n flex-direction: column;\n justify-content: center;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n background-color: #007bff;\n transition: width 0.6s ease; }\n @media screen and (prefers-reduced-motion: reduce) {\n .progress-bar {\n transition: none; } }\n\n.progress-bar-striped {\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 1rem 1rem; }\n\n.progress-bar-animated {\n animation: progress-bar-stripes 1s linear infinite; }\n\n.media {\n display: flex;\n align-items: flex-start; }\n\n.media-body {\n flex: 1; }\n\n.list-group {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0; }\n\n.list-group-item-action {\n width: 100%;\n color: #495057;\n text-align: inherit; }\n .list-group-item-action:hover, .list-group-item-action:focus {\n color: #495057;\n text-decoration: none;\n background-color: #f8f9fa; }\n .list-group-item-action:active {\n color: #212529;\n background-color: #e9ecef; }\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 0.75rem 1.25rem;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125); }\n .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem; }\n .list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem; }\n .list-group-item:hover, .list-group-item:focus {\n z-index: 1;\n text-decoration: none; }\n .list-group-item.disabled, .list-group-item:disabled {\n color: #6c757d;\n background-color: #fff; }\n .list-group-item.active {\n z-index: 2;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff; }\n\n.list-group-flush .list-group-item {\n border-right: 0;\n border-left: 0;\n border-radius: 0; }\n\n.list-group-flush:first-child .list-group-item:first-child {\n border-top: 0; }\n\n.list-group-flush:last-child .list-group-item:last-child {\n border-bottom: 0; }\n\n.list-group-item-primary {\n color: #114e7e;\n background-color: #c1e2fc; }\n .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {\n color: #114e7e;\n background-color: #a9d7fb; }\n .list-group-item-primary.list-group-item-action.active {\n color: #ffffff;\n background-color: #114e7e;\n border-color: #114e7e; }\n\n.list-group-item-secondary {\n color: #787c7e;\n background-color: #f8fafb; }\n .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {\n color: #787c7e;\n background-color: #e8eef2; }\n .list-group-item-secondary.list-group-item-action.active {\n color: #ffffff;\n background-color: #787c7e;\n border-color: #787c7e; }\n\n.list-group-item-success {\n color: #0d704d;\n background-color: #bff4e1; }\n .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {\n color: #0d704d;\n background-color: #a9f0d7; }\n .list-group-item-success.list-group-item-action.active {\n color: #ffffff;\n background-color: #0d704d;\n border-color: #0d704d; }\n\n.list-group-item-info {\n color: #473374;\n background-color: #ded3f6; }\n .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {\n color: #473374;\n background-color: #cebef2; }\n .list-group-item-info.list-group-item-action.active {\n color: #ffffff;\n background-color: #473374;\n border-color: #473374; }\n\n.list-group-item-warning {\n color: #855b00;\n background-color: #ffe9b8; }\n .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {\n color: #855b00;\n background-color: #ffe19f; }\n .list-group-item-warning.list-group-item-action.active {\n color: #ffffff;\n background-color: #855b00;\n border-color: #855b00; }\n\n.list-group-item-danger {\n color: #85332e;\n background-color: #ffd3d0; }\n .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {\n color: #85332e;\n background-color: #ffbbb7; }\n .list-group-item-danger.list-group-item-action.active {\n color: #ffffff;\n background-color: #85332e;\n border-color: #85332e; }\n\n.list-group-item-light {\n color: #838383;\n background-color: #fefefe; }\n .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {\n color: #838383;\n background-color: #f1f1f1; }\n .list-group-item-light.list-group-item-action.active {\n color: #ffffff;\n background-color: #838383;\n border-color: #838383; }\n\n.list-group-item-dark {\n color: #131724;\n background-color: #c2c4cb; }\n .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {\n color: #131724;\n background-color: #b4b7bf; }\n .list-group-item-dark.list-group-item-action.active {\n color: #ffffff;\n background-color: #131724;\n border-color: #131724; }\n\n.close {\n float: right;\n font-size: 1.5rem;\n font-weight: 700;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: .5; }\n .close:not(:disabled):not(.disabled) {\n cursor: pointer; }\n .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {\n color: #000;\n text-decoration: none;\n opacity: .75; }\n\nbutton.close {\n padding: 0;\n background-color: transparent;\n border: 0;\n -webkit-appearance: none; }\n\n.modal-open {\n overflow: hidden; }\n .modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto; }\n\n.modal {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n display: none;\n overflow: hidden;\n outline: 0; }\n\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n pointer-events: none; }\n .modal.fade .modal-dialog {\n transition: transform 0.4s ease;\n transform: translate(0, -25%); }\n @media screen and (prefers-reduced-motion: reduce) {\n .modal.fade .modal-dialog {\n transition: none; } }\n .modal.show .modal-dialog {\n transform: translate(0, 0); }\n\n.modal-dialog-centered {\n display: flex;\n align-items: center;\n min-height: calc(100% - (10px * 2)); }\n .modal-dialog-centered::before {\n display: block;\n height: calc(100vh - (10px * 2));\n content: \"\"; }\n\n.modal-content {\n position: relative;\n display: flex;\n flex-direction: column;\n width: 100%;\n pointer-events: auto;\n background-color: #f3f4fa;\n background-clip: padding-box;\n border: 1px solid #f2f2f2;\n border-radius: 0.3rem;\n outline: 0; }\n\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000; }\n .modal-backdrop.fade {\n opacity: 0; }\n .modal-backdrop.show {\n opacity: 0.5; }\n\n.modal-header {\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n padding: 1rem;\n border-bottom: 1px solid #f2f2f2;\n border-top-left-radius: 0.3rem;\n border-top-right-radius: 0.3rem; }\n .modal-header .close {\n padding: 1rem;\n margin: -1rem -1rem -1rem auto; }\n\n.modal-title {\n margin-bottom: 0;\n line-height: 1.5; }\n\n.modal-body {\n position: relative;\n flex: 1 1 auto;\n padding: 15px; }\n\n.modal-footer {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n padding: 15px;\n border-top: 1px solid #f2f2f2; }\n .modal-footer > :not(:first-child) {\n margin-left: .25rem; }\n .modal-footer > :not(:last-child) {\n margin-right: .25rem; }\n\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll; }\n\n@media (min-width: 576px) {\n .modal-dialog {\n max-width: 500px;\n margin: 30px auto; }\n .modal-dialog-centered {\n min-height: calc(100% - (30px * 2)); }\n .modal-dialog-centered::before {\n height: calc(100vh - (30px * 2)); }\n .modal-sm {\n max-width: 300px; } }\n\n@media (min-width: 992px) {\n .modal-lg {\n max-width: 90%; } }\n\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.75rem;\n word-wrap: break-word;\n opacity: 0; }\n .tooltip.show {\n opacity: 0.9; }\n .tooltip .arrow {\n position: absolute;\n display: block;\n width: 0.8rem;\n height: 0.4rem; }\n .tooltip .arrow::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid; }\n\n.bs-tooltip-top, .bs-tooltip-auto[x-placement^=\"top\"] {\n padding: 0.4rem 0; }\n .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=\"top\"] .arrow {\n bottom: 0; }\n .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n top: 0;\n border-width: 0.4rem 0.4rem 0;\n border-top-color: #252C46; }\n\n.bs-tooltip-right, .bs-tooltip-auto[x-placement^=\"right\"] {\n padding: 0 0.4rem; }\n .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=\"right\"] .arrow {\n left: 0;\n width: 0.4rem;\n height: 0.8rem; }\n .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n right: 0;\n border-width: 0.4rem 0.4rem 0.4rem 0;\n border-right-color: #252C46; }\n\n.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=\"bottom\"] {\n padding: 0.4rem 0; }\n .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow {\n top: 0; }\n .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n bottom: 0;\n border-width: 0 0.4rem 0.4rem;\n border-bottom-color: #252C46; }\n\n.bs-tooltip-left, .bs-tooltip-auto[x-placement^=\"left\"] {\n padding: 0 0.4rem; }\n .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=\"left\"] .arrow {\n right: 0;\n width: 0.4rem;\n height: 0.8rem; }\n .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n left: 0;\n border-width: 0.4rem 0 0.4rem 0.4rem;\n border-left-color: #252C46; }\n\n.tooltip-inner {\n max-width: 200px;\n padding: 0.4rem 0.75rem;\n color: #fff;\n text-align: center;\n background-color: #252C46;\n border-radius: 0.375rem; }\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: block;\n max-width: 276px;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n background-color: #e3f2fd;\n background-clip: padding-box;\n border: 1px solid #f2f2f2;\n border-radius: 0.3rem; }\n .popover .arrow {\n position: absolute;\n display: block;\n width: 1rem;\n height: 0.5rem;\n margin: 0 0.3rem; }\n .popover .arrow::before, .popover .arrow::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid; }\n\n.bs-popover-top, .bs-popover-auto[x-placement^=\"top\"] {\n margin-bottom: 0.5rem; }\n .bs-popover-top .arrow, .bs-popover-auto[x-placement^=\"top\"] .arrow {\n bottom: calc((0.5rem + 1px) * -1); }\n .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=\"top\"] .arrow::before,\n .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=\"top\"] .arrow::after {\n border-width: 0.5rem 0.5rem 0; }\n .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=\"top\"] .arrow::before {\n bottom: 0;\n border-top-color: #f2f2f2; }\n .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=\"top\"] .arrow::after {\n bottom: 1px;\n border-top-color: #e3f2fd; }\n\n.bs-popover-right, .bs-popover-auto[x-placement^=\"right\"] {\n margin-left: 0.5rem; }\n .bs-popover-right .arrow, .bs-popover-auto[x-placement^=\"right\"] .arrow {\n left: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0; }\n .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=\"right\"] .arrow::before,\n .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=\"right\"] .arrow::after {\n border-width: 0.5rem 0.5rem 0.5rem 0; }\n .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=\"right\"] .arrow::before {\n left: 0;\n border-right-color: #f2f2f2; }\n .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=\"right\"] .arrow::after {\n left: 1px;\n border-right-color: #e3f2fd; }\n\n.bs-popover-bottom, .bs-popover-auto[x-placement^=\"bottom\"] {\n margin-top: 0.5rem; }\n .bs-popover-bottom .arrow, .bs-popover-auto[x-placement^=\"bottom\"] .arrow {\n top: calc((0.5rem + 1px) * -1); }\n .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::before,\n .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::after {\n border-width: 0 0.5rem 0.5rem 0.5rem; }\n .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::before {\n top: 0;\n border-bottom-color: #f2f2f2; }\n .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::after {\n top: 1px;\n border-bottom-color: #e3f2fd; }\n .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=\"bottom\"] .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: 1rem;\n margin-left: -0.5rem;\n content: \"\";\n border-bottom: 1px solid #e3f2fd; }\n\n.bs-popover-left, .bs-popover-auto[x-placement^=\"left\"] {\n margin-right: 0.5rem; }\n .bs-popover-left .arrow, .bs-popover-auto[x-placement^=\"left\"] .arrow {\n right: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0; }\n .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=\"left\"] .arrow::before,\n .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=\"left\"] .arrow::after {\n border-width: 0.5rem 0 0.5rem 0.5rem; }\n .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=\"left\"] .arrow::before {\n right: 0;\n border-left-color: #f2f2f2; }\n .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=\"left\"] .arrow::after {\n right: 1px;\n border-left-color: #e3f2fd; }\n\n.popover-header {\n padding: 0.5rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n color: inherit;\n background-color: #e3f2fd;\n border-bottom: 1px solid #cae6fc;\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px); }\n .popover-header:empty {\n display: none; }\n\n.popover-body {\n padding: 0.5rem 0.75rem;\n color: #212529; }\n\n.carousel {\n position: relative; }\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden; }\n\n.carousel-item {\n position: relative;\n display: none;\n align-items: center;\n width: 100%;\n backface-visibility: hidden;\n perspective: 1000px; }\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block;\n transition: transform 0.6s ease; }\n @media screen and (prefers-reduced-motion: reduce) {\n .carousel-item.active,\n .carousel-item-next,\n .carousel-item-prev {\n transition: none; } }\n\n.carousel-item-next,\n.carousel-item-prev {\n position: absolute;\n top: 0; }\n\n.carousel-item-next.carousel-item-left,\n.carousel-item-prev.carousel-item-right {\n transform: translateX(0); }\n @supports (transform-style: preserve-3d) {\n .carousel-item-next.carousel-item-left,\n .carousel-item-prev.carousel-item-right {\n transform: translate3d(0, 0, 0); } }\n\n.carousel-item-next,\n.active.carousel-item-right {\n transform: translateX(100%); }\n @supports (transform-style: preserve-3d) {\n .carousel-item-next,\n .active.carousel-item-right {\n transform: translate3d(100%, 0, 0); } }\n\n.carousel-item-prev,\n.active.carousel-item-left {\n transform: translateX(-100%); }\n @supports (transform-style: preserve-3d) {\n .carousel-item-prev,\n .active.carousel-item-left {\n transform: translate3d(-100%, 0, 0); } }\n\n.carousel-fade .carousel-item {\n opacity: 0;\n transition-duration: .6s;\n transition-property: opacity; }\n\n.carousel-fade .carousel-item.active,\n.carousel-fade .carousel-item-next.carousel-item-left,\n.carousel-fade .carousel-item-prev.carousel-item-right {\n opacity: 1; }\n\n.carousel-fade .active.carousel-item-left,\n.carousel-fade .active.carousel-item-right {\n opacity: 0; }\n\n.carousel-fade .carousel-item-next,\n.carousel-fade .carousel-item-prev,\n.carousel-fade .carousel-item.active,\n.carousel-fade .active.carousel-item-left,\n.carousel-fade .active.carousel-item-prev {\n transform: translateX(0); }\n @supports (transform-style: preserve-3d) {\n .carousel-fade .carousel-item-next,\n .carousel-fade .carousel-item-prev,\n .carousel-fade .carousel-item.active,\n .carousel-fade .active.carousel-item-left,\n .carousel-fade .active.carousel-item-prev {\n transform: translate3d(0, 0, 0); } }\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 15%;\n color: #fff;\n text-align: center;\n opacity: 0.5; }\n .carousel-control-prev:hover, .carousel-control-prev:focus,\n .carousel-control-next:hover,\n .carousel-control-next:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n opacity: .9; }\n\n.carousel-control-prev {\n left: 0; }\n\n.carousel-control-next {\n right: 0; }\n\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: 20px;\n height: 20px;\n background: transparent no-repeat center center;\n background-size: 100% 100%; }\n\n.carousel-control-prev-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\"); }\n\n.carousel-control-next-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\"); }\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 10px;\n left: 0;\n z-index: 15;\n display: flex;\n justify-content: center;\n padding-left: 0;\n margin-right: 15%;\n margin-left: 15%;\n list-style: none; }\n .carousel-indicators li {\n position: relative;\n flex: 0 1 auto;\n width: 30px;\n height: 3px;\n margin-right: 3px;\n margin-left: 3px;\n text-indent: -999px;\n cursor: pointer;\n background-color: rgba(255, 255, 255, 0.5); }\n .carousel-indicators li::before {\n position: absolute;\n top: -10px;\n left: 0;\n display: inline-block;\n width: 100%;\n height: 10px;\n content: \"\"; }\n .carousel-indicators li::after {\n position: absolute;\n bottom: -10px;\n left: 0;\n display: inline-block;\n width: 100%;\n height: 10px;\n content: \"\"; }\n .carousel-indicators .active {\n background-color: #fff; }\n\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 20px;\n left: 15%;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center; }\n\n.align-baseline {\n vertical-align: baseline !important; }\n\n.align-top {\n vertical-align: top !important; }\n\n.align-middle {\n vertical-align: middle !important; }\n\n.align-bottom {\n vertical-align: bottom !important; }\n\n.align-text-bottom {\n vertical-align: text-bottom !important; }\n\n.align-text-top {\n vertical-align: text-top !important; }\n\n.bg-primary, .settings-panel .color-tiles .tiles.primary {\n background-color: #2196f3 !important; }\n\na.bg-primary:hover, .settings-panel .color-tiles a.tiles.primary:hover, a.bg-primary:focus, .settings-panel .color-tiles a.tiles.primary:focus,\nbutton.bg-primary:hover,\n.settings-panel .color-tiles button.tiles.primary:hover,\nbutton.bg-primary:focus,\n.settings-panel .color-tiles button.tiles.primary:focus {\n background-color: #0c7cd5 !important; }\n\n.bg-secondary {\n background-color: #e6eef2 !important; }\n\na.bg-secondary:hover, a.bg-secondary:focus,\nbutton.bg-secondary:hover,\nbutton.bg-secondary:focus {\n background-color: #c4d7e1 !important; }\n\n.bg-success, .settings-panel .color-tiles .tiles.success {\n background-color: #19d895 !important; }\n\na.bg-success:hover, .settings-panel .color-tiles a.tiles.success:hover, a.bg-success:focus, .settings-panel .color-tiles a.tiles.success:focus,\nbutton.bg-success:hover,\n.settings-panel .color-tiles button.tiles.success:hover,\nbutton.bg-success:focus,\n.settings-panel .color-tiles button.tiles.success:focus {\n background-color: #14aa75 !important; }\n\n.bg-info, .settings-panel .color-tiles .tiles.info {\n background-color: #8862e0 !important; }\n\na.bg-info:hover, .settings-panel .color-tiles a.tiles.info:hover, a.bg-info:focus, .settings-panel .color-tiles a.tiles.info:focus,\nbutton.bg-info:hover,\n.settings-panel .color-tiles button.tiles.info:hover,\nbutton.bg-info:focus,\n.settings-panel .color-tiles button.tiles.info:focus {\n background-color: #6837d8 !important; }\n\n.bg-warning, .settings-panel .color-tiles .tiles.warning {\n background-color: #ffaf00 !important; }\n\na.bg-warning:hover, .settings-panel .color-tiles a.tiles.warning:hover, a.bg-warning:focus, .settings-panel .color-tiles a.tiles.warning:focus,\nbutton.bg-warning:hover,\n.settings-panel .color-tiles button.tiles.warning:hover,\nbutton.bg-warning:focus,\n.settings-panel .color-tiles button.tiles.warning:focus {\n background-color: #cc8c00 !important; }\n\n.bg-danger, .settings-panel .color-tiles .tiles.danger {\n background-color: #ff6258 !important; }\n\na.bg-danger:hover, .settings-panel .color-tiles a.tiles.danger:hover, a.bg-danger:focus, .settings-panel .color-tiles a.tiles.danger:focus,\nbutton.bg-danger:hover,\n.settings-panel .color-tiles button.tiles.danger:hover,\nbutton.bg-danger:focus,\n.settings-panel .color-tiles button.tiles.danger:focus {\n background-color: #ff3225 !important; }\n\n.bg-light {\n background-color: #fbfbfb !important; }\n\na.bg-light:hover, a.bg-light:focus,\nbutton.bg-light:hover,\nbutton.bg-light:focus {\n background-color: #e2e2e2 !important; }\n\n.bg-dark, .settings-panel .color-tiles .tiles.dark {\n background-color: #252C46 !important; }\n\na.bg-dark:hover, .settings-panel .color-tiles a.tiles.dark:hover, a.bg-dark:focus, .settings-panel .color-tiles a.tiles.dark:focus,\nbutton.bg-dark:hover,\n.settings-panel .color-tiles button.tiles.dark:hover,\nbutton.bg-dark:focus,\n.settings-panel .color-tiles button.tiles.dark:focus {\n background-color: #131725 !important; }\n\n.bg-white {\n background-color: #ffffff !important; }\n\n.bg-transparent {\n background-color: transparent !important; }\n\n.border, .loader-demo-box {\n border: 1px solid #f2f2f2 !important; }\n\n.border-top {\n border-top: 1px solid #f2f2f2 !important; }\n\n.border-right {\n border-right: 1px solid #f2f2f2 !important; }\n\n.border-bottom {\n border-bottom: 1px solid #f2f2f2 !important; }\n\n.border-left {\n border-left: 1px solid #f2f2f2 !important; }\n\n.border-0 {\n border: 0 !important; }\n\n.border-top-0 {\n border-top: 0 !important; }\n\n.border-right-0 {\n border-right: 0 !important; }\n\n.border-bottom-0 {\n border-bottom: 0 !important; }\n\n.border-left-0 {\n border-left: 0 !important; }\n\n.border-primary {\n border-color: #2196f3 !important; }\n\n.border-secondary, .loader-demo-box {\n border-color: #e6eef2 !important; }\n\n.border-success {\n border-color: #19d895 !important; }\n\n.border-info {\n border-color: #8862e0 !important; }\n\n.border-warning {\n border-color: #ffaf00 !important; }\n\n.border-danger {\n border-color: #ff6258 !important; }\n\n.border-light {\n border-color: #fbfbfb !important; }\n\n.border-dark {\n border-color: #252C46 !important; }\n\n.border-white {\n border-color: #ffffff !important; }\n\n.rounded, .loader-demo-box {\n border-radius: 0.25rem !important; }\n\n.rounded-top {\n border-top-left-radius: 0.25rem !important;\n border-top-right-radius: 0.25rem !important; }\n\n.rounded-right {\n border-top-right-radius: 0.25rem !important;\n border-bottom-right-radius: 0.25rem !important; }\n\n.rounded-bottom {\n border-bottom-right-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important; }\n\n.rounded-left {\n border-top-left-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important; }\n\n.rounded-circle, .settings-panel .color-tiles .tiles {\n border-radius: 50% !important; }\n\n.rounded-0 {\n border-radius: 0 !important; }\n\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\"; }\n\n.d-none {\n display: none !important; }\n\n.d-inline {\n display: inline !important; }\n\n.d-inline-block {\n display: inline-block !important; }\n\n.d-block {\n display: block !important; }\n\n.d-table {\n display: table !important; }\n\n.d-table-row {\n display: table-row !important; }\n\n.d-table-cell {\n display: table-cell !important; }\n\n.d-flex, .loader-demo-box, .nav .nav-item.dropdown .navbar-dropdown .dropdown-item,\n.navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item, .new-accounts ul.chats li.chat-persons a, .new-accounts ul.chats li.chat-persons a div.user, .list-wrapper ul li, .email-wrapper .mail-sidebar .menu-bar .profile-list-item a, .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user, .email-wrapper .mail-list-container .mail-list .details, .email-wrapper .message-body .attachments-sections ul li .thumb, .email-wrapper .message-body .attachments-sections ul li .details .buttons, .lightGallery .image-tile .demo-gallery-poster, .swal2-modal {\n display: flex !important; }\n\n.d-inline-flex, .email-wrapper .message-body .attachments-sections ul li {\n display: inline-flex !important; }\n\n@media (min-width: 576px) {\n .d-sm-none {\n display: none !important; }\n .d-sm-inline {\n display: inline !important; }\n .d-sm-inline-block {\n display: inline-block !important; }\n .d-sm-block {\n display: block !important; }\n .d-sm-table {\n display: table !important; }\n .d-sm-table-row {\n display: table-row !important; }\n .d-sm-table-cell {\n display: table-cell !important; }\n .d-sm-flex {\n display: flex !important; }\n .d-sm-inline-flex {\n display: inline-flex !important; } }\n\n@media (min-width: 768px) {\n .d-md-none {\n display: none !important; }\n .d-md-inline {\n display: inline !important; }\n .d-md-inline-block {\n display: inline-block !important; }\n .d-md-block {\n display: block !important; }\n .d-md-table {\n display: table !important; }\n .d-md-table-row {\n display: table-row !important; }\n .d-md-table-cell {\n display: table-cell !important; }\n .d-md-flex {\n display: flex !important; }\n .d-md-inline-flex {\n display: inline-flex !important; } }\n\n@media (min-width: 992px) {\n .d-lg-none {\n display: none !important; }\n .d-lg-inline {\n display: inline !important; }\n .d-lg-inline-block {\n display: inline-block !important; }\n .d-lg-block {\n display: block !important; }\n .d-lg-table {\n display: table !important; }\n .d-lg-table-row {\n display: table-row !important; }\n .d-lg-table-cell {\n display: table-cell !important; }\n .d-lg-flex {\n display: flex !important; }\n .d-lg-inline-flex {\n display: inline-flex !important; } }\n\n@media (min-width: 1200px) {\n .d-xl-none {\n display: none !important; }\n .d-xl-inline {\n display: inline !important; }\n .d-xl-inline-block {\n display: inline-block !important; }\n .d-xl-block {\n display: block !important; }\n .d-xl-table {\n display: table !important; }\n .d-xl-table-row {\n display: table-row !important; }\n .d-xl-table-cell {\n display: table-cell !important; }\n .d-xl-flex {\n display: flex !important; }\n .d-xl-inline-flex {\n display: inline-flex !important; } }\n\n@media print {\n .d-print-none {\n display: none !important; }\n .d-print-inline {\n display: inline !important; }\n .d-print-inline-block {\n display: inline-block !important; }\n .d-print-block {\n display: block !important; }\n .d-print-table {\n display: table !important; }\n .d-print-table-row {\n display: table-row !important; }\n .d-print-table-cell {\n display: table-cell !important; }\n .d-print-flex {\n display: flex !important; }\n .d-print-inline-flex {\n display: inline-flex !important; } }\n\n.embed-responsive {\n position: relative;\n display: block;\n width: 100%;\n padding: 0;\n overflow: hidden; }\n .embed-responsive::before {\n display: block;\n content: \"\"; }\n .embed-responsive .embed-responsive-item,\n .embed-responsive iframe,\n .embed-responsive embed,\n .embed-responsive object,\n .embed-responsive video {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: 0; }\n\n.embed-responsive-21by9::before {\n padding-top: 42.85714%; }\n\n.embed-responsive-16by9::before {\n padding-top: 56.25%; }\n\n.embed-responsive-4by3::before {\n padding-top: 75%; }\n\n.embed-responsive-1by1::before {\n padding-top: 100%; }\n\n.flex-row, .email-wrapper .message-body .attachments-sections ul li {\n flex-direction: row !important; }\n\n.flex-column, .new-accounts ul.chats li.chat-persons a div.user, .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user {\n flex-direction: column !important; }\n\n.flex-row-reverse {\n flex-direction: row-reverse !important; }\n\n.flex-column-reverse {\n flex-direction: column-reverse !important; }\n\n.flex-wrap {\n flex-wrap: wrap !important; }\n\n.flex-nowrap {\n flex-wrap: nowrap !important; }\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important; }\n\n.flex-fill {\n flex: 1 1 auto !important; }\n\n.flex-grow-0 {\n flex-grow: 0 !important; }\n\n.flex-grow-1 {\n flex-grow: 1 !important; }\n\n.flex-shrink-0 {\n flex-shrink: 0 !important; }\n\n.flex-shrink-1 {\n flex-shrink: 1 !important; }\n\n.justify-content-start, .list-wrapper ul li {\n justify-content: flex-start !important; }\n\n.justify-content-end, .email-wrapper .mail-list-container .mail-list .details {\n justify-content: flex-end !important; }\n\n.justify-content-center, .email-wrapper .message-body .attachments-sections ul li .thumb {\n justify-content: center !important; }\n\n.justify-content-between {\n justify-content: space-between !important; }\n\n.justify-content-around {\n justify-content: space-around !important; }\n\n.align-items-start {\n align-items: flex-start !important; }\n\n.align-items-end {\n align-items: flex-end !important; }\n\n.align-items-center, .loader-demo-box, .nav .nav-item.dropdown .navbar-dropdown .dropdown-item,\n.navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item, .new-accounts ul.chats li.chat-persons a, .list-wrapper ul li, .email-wrapper .message-body .attachments-sections ul li .thumb, .email-wrapper .message-body .attachments-sections ul li .details .buttons {\n align-items: center !important; }\n\n.align-items-baseline {\n align-items: baseline !important; }\n\n.align-items-stretch, .email-wrapper .message-body .attachments-sections ul li {\n align-items: stretch !important; }\n\n.align-content-start {\n align-content: flex-start !important; }\n\n.align-content-end {\n align-content: flex-end !important; }\n\n.align-content-center {\n align-content: center !important; }\n\n.align-content-between {\n align-content: space-between !important; }\n\n.align-content-around {\n align-content: space-around !important; }\n\n.align-content-stretch {\n align-content: stretch !important; }\n\n.align-self-auto {\n align-self: auto !important; }\n\n.align-self-start {\n align-self: flex-start !important; }\n\n.align-self-end {\n align-self: flex-end !important; }\n\n.align-self-center {\n align-self: center !important; }\n\n.align-self-baseline {\n align-self: baseline !important; }\n\n.align-self-stretch {\n align-self: stretch !important; }\n\n@media (min-width: 576px) {\n .flex-sm-row {\n flex-direction: row !important; }\n .flex-sm-column {\n flex-direction: column !important; }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important; }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important; }\n .flex-sm-wrap {\n flex-wrap: wrap !important; }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important; }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important; }\n .flex-sm-fill {\n flex: 1 1 auto !important; }\n .flex-sm-grow-0 {\n flex-grow: 0 !important; }\n .flex-sm-grow-1 {\n flex-grow: 1 !important; }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important; }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important; }\n .justify-content-sm-start {\n justify-content: flex-start !important; }\n .justify-content-sm-end {\n justify-content: flex-end !important; }\n .justify-content-sm-center {\n justify-content: center !important; }\n .justify-content-sm-between {\n justify-content: space-between !important; }\n .justify-content-sm-around {\n justify-content: space-around !important; }\n .align-items-sm-start {\n align-items: flex-start !important; }\n .align-items-sm-end {\n align-items: flex-end !important; }\n .align-items-sm-center {\n align-items: center !important; }\n .align-items-sm-baseline {\n align-items: baseline !important; }\n .align-items-sm-stretch {\n align-items: stretch !important; }\n .align-content-sm-start {\n align-content: flex-start !important; }\n .align-content-sm-end {\n align-content: flex-end !important; }\n .align-content-sm-center {\n align-content: center !important; }\n .align-content-sm-between {\n align-content: space-between !important; }\n .align-content-sm-around {\n align-content: space-around !important; }\n .align-content-sm-stretch {\n align-content: stretch !important; }\n .align-self-sm-auto {\n align-self: auto !important; }\n .align-self-sm-start {\n align-self: flex-start !important; }\n .align-self-sm-end {\n align-self: flex-end !important; }\n .align-self-sm-center {\n align-self: center !important; }\n .align-self-sm-baseline {\n align-self: baseline !important; }\n .align-self-sm-stretch {\n align-self: stretch !important; } }\n\n@media (min-width: 768px) {\n .flex-md-row {\n flex-direction: row !important; }\n .flex-md-column {\n flex-direction: column !important; }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important; }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important; }\n .flex-md-wrap {\n flex-wrap: wrap !important; }\n .flex-md-nowrap {\n flex-wrap: nowrap !important; }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important; }\n .flex-md-fill {\n flex: 1 1 auto !important; }\n .flex-md-grow-0 {\n flex-grow: 0 !important; }\n .flex-md-grow-1 {\n flex-grow: 1 !important; }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important; }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important; }\n .justify-content-md-start {\n justify-content: flex-start !important; }\n .justify-content-md-end {\n justify-content: flex-end !important; }\n .justify-content-md-center {\n justify-content: center !important; }\n .justify-content-md-between {\n justify-content: space-between !important; }\n .justify-content-md-around {\n justify-content: space-around !important; }\n .align-items-md-start {\n align-items: flex-start !important; }\n .align-items-md-end {\n align-items: flex-end !important; }\n .align-items-md-center {\n align-items: center !important; }\n .align-items-md-baseline {\n align-items: baseline !important; }\n .align-items-md-stretch {\n align-items: stretch !important; }\n .align-content-md-start {\n align-content: flex-start !important; }\n .align-content-md-end {\n align-content: flex-end !important; }\n .align-content-md-center {\n align-content: center !important; }\n .align-content-md-between {\n align-content: space-between !important; }\n .align-content-md-around {\n align-content: space-around !important; }\n .align-content-md-stretch {\n align-content: stretch !important; }\n .align-self-md-auto {\n align-self: auto !important; }\n .align-self-md-start {\n align-self: flex-start !important; }\n .align-self-md-end {\n align-self: flex-end !important; }\n .align-self-md-center {\n align-self: center !important; }\n .align-self-md-baseline {\n align-self: baseline !important; }\n .align-self-md-stretch {\n align-self: stretch !important; } }\n\n@media (min-width: 992px) {\n .flex-lg-row {\n flex-direction: row !important; }\n .flex-lg-column {\n flex-direction: column !important; }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important; }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important; }\n .flex-lg-wrap {\n flex-wrap: wrap !important; }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important; }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important; }\n .flex-lg-fill {\n flex: 1 1 auto !important; }\n .flex-lg-grow-0 {\n flex-grow: 0 !important; }\n .flex-lg-grow-1 {\n flex-grow: 1 !important; }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important; }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important; }\n .justify-content-lg-start {\n justify-content: flex-start !important; }\n .justify-content-lg-end {\n justify-content: flex-end !important; }\n .justify-content-lg-center {\n justify-content: center !important; }\n .justify-content-lg-between {\n justify-content: space-between !important; }\n .justify-content-lg-around {\n justify-content: space-around !important; }\n .align-items-lg-start {\n align-items: flex-start !important; }\n .align-items-lg-end {\n align-items: flex-end !important; }\n .align-items-lg-center {\n align-items: center !important; }\n .align-items-lg-baseline {\n align-items: baseline !important; }\n .align-items-lg-stretch {\n align-items: stretch !important; }\n .align-content-lg-start {\n align-content: flex-start !important; }\n .align-content-lg-end {\n align-content: flex-end !important; }\n .align-content-lg-center {\n align-content: center !important; }\n .align-content-lg-between {\n align-content: space-between !important; }\n .align-content-lg-around {\n align-content: space-around !important; }\n .align-content-lg-stretch {\n align-content: stretch !important; }\n .align-self-lg-auto {\n align-self: auto !important; }\n .align-self-lg-start {\n align-self: flex-start !important; }\n .align-self-lg-end {\n align-self: flex-end !important; }\n .align-self-lg-center {\n align-self: center !important; }\n .align-self-lg-baseline {\n align-self: baseline !important; }\n .align-self-lg-stretch {\n align-self: stretch !important; } }\n\n@media (min-width: 1200px) {\n .flex-xl-row {\n flex-direction: row !important; }\n .flex-xl-column {\n flex-direction: column !important; }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important; }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important; }\n .flex-xl-wrap {\n flex-wrap: wrap !important; }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important; }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important; }\n .flex-xl-fill {\n flex: 1 1 auto !important; }\n .flex-xl-grow-0 {\n flex-grow: 0 !important; }\n .flex-xl-grow-1 {\n flex-grow: 1 !important; }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important; }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important; }\n .justify-content-xl-start {\n justify-content: flex-start !important; }\n .justify-content-xl-end {\n justify-content: flex-end !important; }\n .justify-content-xl-center {\n justify-content: center !important; }\n .justify-content-xl-between {\n justify-content: space-between !important; }\n .justify-content-xl-around {\n justify-content: space-around !important; }\n .align-items-xl-start {\n align-items: flex-start !important; }\n .align-items-xl-end {\n align-items: flex-end !important; }\n .align-items-xl-center {\n align-items: center !important; }\n .align-items-xl-baseline {\n align-items: baseline !important; }\n .align-items-xl-stretch {\n align-items: stretch !important; }\n .align-content-xl-start {\n align-content: flex-start !important; }\n .align-content-xl-end {\n align-content: flex-end !important; }\n .align-content-xl-center {\n align-content: center !important; }\n .align-content-xl-between {\n align-content: space-between !important; }\n .align-content-xl-around {\n align-content: space-around !important; }\n .align-content-xl-stretch {\n align-content: stretch !important; }\n .align-self-xl-auto {\n align-self: auto !important; }\n .align-self-xl-start {\n align-self: flex-start !important; }\n .align-self-xl-end {\n align-self: flex-end !important; }\n .align-self-xl-center {\n align-self: center !important; }\n .align-self-xl-baseline {\n align-self: baseline !important; }\n .align-self-xl-stretch {\n align-self: stretch !important; } }\n\n.float-left {\n float: left !important; }\n\n.float-right {\n float: right !important; }\n\n.float-none {\n float: none !important; }\n\n@media (min-width: 576px) {\n .float-sm-left {\n float: left !important; }\n .float-sm-right {\n float: right !important; }\n .float-sm-none {\n float: none !important; } }\n\n@media (min-width: 768px) {\n .float-md-left {\n float: left !important; }\n .float-md-right {\n float: right !important; }\n .float-md-none {\n float: none !important; } }\n\n@media (min-width: 992px) {\n .float-lg-left {\n float: left !important; }\n .float-lg-right {\n float: right !important; }\n .float-lg-none {\n float: none !important; } }\n\n@media (min-width: 1200px) {\n .float-xl-left {\n float: left !important; }\n .float-xl-right {\n float: right !important; }\n .float-xl-none {\n float: none !important; } }\n\n.position-static {\n position: static !important; }\n\n.position-relative {\n position: relative !important; }\n\n.position-absolute {\n position: absolute !important; }\n\n.position-fixed {\n position: fixed !important; }\n\n.position-sticky {\n position: sticky !important; }\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1030; }\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1030; }\n\n@supports (position: sticky) {\n .sticky-top {\n position: sticky;\n top: 0;\n z-index: 1020; } }\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border: 0; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n overflow: visible;\n clip: auto;\n white-space: normal; }\n\n.shadow-sm {\n box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }\n\n.shadow {\n box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }\n\n.shadow-lg {\n box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }\n\n.shadow-none {\n box-shadow: none !important; }\n\n.w-25 {\n width: 25% !important; }\n\n.w-50 {\n width: 50% !important; }\n\n.w-75 {\n width: 75% !important; }\n\n.w-100 {\n width: 100% !important; }\n\n.w-auto {\n width: auto !important; }\n\n.h-25 {\n height: 25% !important; }\n\n.h-50 {\n height: 50% !important; }\n\n.h-75 {\n height: 75% !important; }\n\n.h-100 {\n height: 100% !important; }\n\n.h-auto {\n height: auto !important; }\n\n.mw-100 {\n max-width: 100% !important; }\n\n.mh-100 {\n max-height: 100% !important; }\n\n.m-0 {\n margin: 0 !important; }\n\n.mt-0,\n.my-0 {\n margin-top: 0 !important; }\n\n.mr-0, .rtl .settings-panel .sidebar-bg-options .rounded-circle, .rtl .settings-panel .sidebar-bg-options .color-tiles .tiles, .rtl .settings-panel .color-tiles .sidebar-bg-options .tiles, .rtl .settings-panel .events i,\n.mx-0 {\n margin-right: 0 !important; }\n\n.mb-0,\n.my-0 {\n margin-bottom: 0 !important; }\n\n.ml-0,\n.mx-0 {\n margin-left: 0 !important; }\n\n.m-1 {\n margin: 0.25rem !important; }\n\n.mt-1, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .editable-cancel,\n.my-1 {\n margin-top: 0.25rem !important; }\n\n.mr-1,\n.mx-1 {\n margin-right: 0.25rem !important; }\n\n.mb-1,\n.my-1 {\n margin-bottom: 0.25rem !important; }\n\n.ml-1,\n.mx-1 {\n margin-left: 0.25rem !important; }\n\n.m-2 {\n margin: 0.5rem !important; }\n\n.mt-2, .template-demo > .btn, .ajax-upload-dragdrop .template-demo > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .template-demo > .swal2-styled, .wizard > .actions .template-demo > a, .template-demo > .btn-toolbar, .template-demo > .btn-group, .template-demo .circle-progress,\n.my-2 {\n margin-top: 0.5rem !important; }\n\n.mr-2, .template-demo > .btn, .ajax-upload-dragdrop .template-demo > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .template-demo > .swal2-styled, .wizard > .actions .template-demo > a, .template-demo > .btn-toolbar, .template-demo > .btn-group, .template-demo .dropdown,\n.mx-2 {\n margin-right: 0.5rem !important; }\n\n.mb-2,\n.my-2 {\n margin-bottom: 0.5rem !important; }\n\n.ml-2, .btn-toolbar .btn-group + .btn-group, .rtl .settings-panel .events i,\n.mx-2 {\n margin-left: 0.5rem !important; }\n\n.m-3 {\n margin: 1rem !important; }\n\n.mt-3,\n.my-3 {\n margin-top: 1rem !important; }\n\n.mr-3,\n.mx-3 {\n margin-right: 1rem !important; }\n\n.mb-3, .template-demo .circle-progress-block, .user-profile .side-left .card .avatar img,\n.my-3 {\n margin-bottom: 1rem !important; }\n\n.ml-3, .rtl .settings-panel .sidebar-bg-options .rounded-circle, .rtl .settings-panel .sidebar-bg-options .color-tiles .tiles, .rtl .settings-panel .color-tiles .sidebar-bg-options .tiles,\n.mx-3 {\n margin-left: 1rem !important; }\n\n.m-4 {\n margin: 1.5rem !important; }\n\n.mt-4, .user-profile .side-left .card .avatar img,\n.my-4 {\n margin-top: 1.5rem !important; }\n\n.mr-4,\n.mx-4 {\n margin-right: 1.5rem !important; }\n\n.mb-4, .user-profile .side-left .card .overview .about-user,\n.my-4 {\n margin-bottom: 1.5rem !important; }\n\n.ml-4,\n.mx-4 {\n margin-left: 1.5rem !important; }\n\n.m-5 {\n margin: 3rem !important; }\n\n.mt-5,\n.my-5 {\n margin-top: 3rem !important; }\n\n.mr-5,\n.mx-5 {\n margin-right: 3rem !important; }\n\n.mb-5,\n.my-5 {\n margin-bottom: 3rem !important; }\n\n.ml-5,\n.mx-5 {\n margin-left: 3rem !important; }\n\n.p-0 {\n padding: 0 !important; }\n\n.pt-0, .card-revenue-table .revenue-item:first-child,\n.py-0 {\n padding-top: 0 !important; }\n\n.pr-0,\n.px-0 {\n padding-right: 0 !important; }\n\n.pb-0, .card-revenue-table .revenue-item:last-child,\n.py-0 {\n padding-bottom: 0 !important; }\n\n.pl-0,\n.px-0 {\n padding-left: 0 !important; }\n\n.p-1 {\n padding: 0.25rem !important; }\n\n.pt-1,\n.py-1 {\n padding-top: 0.25rem !important; }\n\n.pr-1,\n.px-1 {\n padding-right: 0.25rem !important; }\n\n.pb-1,\n.py-1 {\n padding-bottom: 0.25rem !important; }\n\n.pl-1,\n.px-1 {\n padding-left: 0.25rem !important; }\n\n.p-2 {\n padding: 0.5rem !important; }\n\n.pt-2,\n.py-2 {\n padding-top: 0.5rem !important; }\n\n.pr-2,\n.px-2,\n.template-demo .circle-progress-block {\n padding-right: 0.5rem !important; }\n\n.pb-2,\n.py-2 {\n padding-bottom: 0.5rem !important; }\n\n.pl-2,\n.px-2,\n.template-demo .circle-progress-block {\n padding-left: 0.5rem !important; }\n\n.p-3 {\n padding: 1rem !important; }\n\n.pt-3,\n.py-3,\n.card-revenue-table .revenue-item {\n padding-top: 1rem !important; }\n\n.pr-3,\n.px-3 {\n padding-right: 1rem !important; }\n\n.pb-3,\n.py-3,\n.card-revenue-table .revenue-item {\n padding-bottom: 1rem !important; }\n\n.pl-3,\n.px-3 {\n padding-left: 1rem !important; }\n\n.p-4 {\n padding: 1.5rem !important; }\n\n.pt-4,\n.py-4 {\n padding-top: 1.5rem !important; }\n\n.pr-4,\n.px-4 {\n padding-right: 1.5rem !important; }\n\n.pb-4,\n.py-4 {\n padding-bottom: 1.5rem !important; }\n\n.pl-4,\n.px-4 {\n padding-left: 1.5rem !important; }\n\n.p-5 {\n padding: 3rem !important; }\n\n.pt-5,\n.py-5 {\n padding-top: 3rem !important; }\n\n.pr-5,\n.px-5 {\n padding-right: 3rem !important; }\n\n.pb-5,\n.py-5 {\n padding-bottom: 3rem !important; }\n\n.pl-5,\n.px-5 {\n padding-left: 3rem !important; }\n\n.m-auto {\n margin: auto !important; }\n\n.mt-auto,\n.my-auto {\n margin-top: auto !important; }\n\n.mr-auto,\n.mx-auto {\n margin-right: auto !important; }\n\n.mb-auto,\n.my-auto {\n margin-bottom: auto !important; }\n\n.ml-auto,\n.mx-auto {\n margin-left: auto !important; }\n\n@media (min-width: 576px) {\n .m-sm-0 {\n margin: 0 !important; }\n .mt-sm-0,\n .my-sm-0 {\n margin-top: 0 !important; }\n .mr-sm-0,\n .mx-sm-0 {\n margin-right: 0 !important; }\n .mb-sm-0,\n .my-sm-0 {\n margin-bottom: 0 !important; }\n .ml-sm-0,\n .mx-sm-0 {\n margin-left: 0 !important; }\n .m-sm-1 {\n margin: 0.25rem !important; }\n .mt-sm-1,\n .my-sm-1 {\n margin-top: 0.25rem !important; }\n .mr-sm-1,\n .mx-sm-1 {\n margin-right: 0.25rem !important; }\n .mb-sm-1,\n .my-sm-1 {\n margin-bottom: 0.25rem !important; }\n .ml-sm-1,\n .mx-sm-1 {\n margin-left: 0.25rem !important; }\n .m-sm-2 {\n margin: 0.5rem !important; }\n .mt-sm-2,\n .my-sm-2 {\n margin-top: 0.5rem !important; }\n .mr-sm-2,\n .mx-sm-2 {\n margin-right: 0.5rem !important; }\n .mb-sm-2,\n .my-sm-2 {\n margin-bottom: 0.5rem !important; }\n .ml-sm-2,\n .mx-sm-2 {\n margin-left: 0.5rem !important; }\n .m-sm-3 {\n margin: 1rem !important; }\n .mt-sm-3,\n .my-sm-3 {\n margin-top: 1rem !important; }\n .mr-sm-3,\n .mx-sm-3 {\n margin-right: 1rem !important; }\n .mb-sm-3,\n .my-sm-3 {\n margin-bottom: 1rem !important; }\n .ml-sm-3,\n .mx-sm-3 {\n margin-left: 1rem !important; }\n .m-sm-4 {\n margin: 1.5rem !important; }\n .mt-sm-4,\n .my-sm-4 {\n margin-top: 1.5rem !important; }\n .mr-sm-4,\n .mx-sm-4 {\n margin-right: 1.5rem !important; }\n .mb-sm-4,\n .my-sm-4 {\n margin-bottom: 1.5rem !important; }\n .ml-sm-4,\n .mx-sm-4 {\n margin-left: 1.5rem !important; }\n .m-sm-5 {\n margin: 3rem !important; }\n .mt-sm-5,\n .my-sm-5 {\n margin-top: 3rem !important; }\n .mr-sm-5,\n .mx-sm-5 {\n margin-right: 3rem !important; }\n .mb-sm-5,\n .my-sm-5 {\n margin-bottom: 3rem !important; }\n .ml-sm-5,\n .mx-sm-5 {\n margin-left: 3rem !important; }\n .p-sm-0 {\n padding: 0 !important; }\n .pt-sm-0,\n .py-sm-0 {\n padding-top: 0 !important; }\n .pr-sm-0,\n .px-sm-0 {\n padding-right: 0 !important; }\n .pb-sm-0,\n .py-sm-0 {\n padding-bottom: 0 !important; }\n .pl-sm-0,\n .px-sm-0 {\n padding-left: 0 !important; }\n .p-sm-1 {\n padding: 0.25rem !important; }\n .pt-sm-1,\n .py-sm-1 {\n padding-top: 0.25rem !important; }\n .pr-sm-1,\n .px-sm-1 {\n padding-right: 0.25rem !important; }\n .pb-sm-1,\n .py-sm-1 {\n padding-bottom: 0.25rem !important; }\n .pl-sm-1,\n .px-sm-1 {\n padding-left: 0.25rem !important; }\n .p-sm-2 {\n padding: 0.5rem !important; }\n .pt-sm-2,\n .py-sm-2 {\n padding-top: 0.5rem !important; }\n .pr-sm-2,\n .px-sm-2 {\n padding-right: 0.5rem !important; }\n .pb-sm-2,\n .py-sm-2 {\n padding-bottom: 0.5rem !important; }\n .pl-sm-2,\n .px-sm-2 {\n padding-left: 0.5rem !important; }\n .p-sm-3 {\n padding: 1rem !important; }\n .pt-sm-3,\n .py-sm-3 {\n padding-top: 1rem !important; }\n .pr-sm-3,\n .px-sm-3 {\n padding-right: 1rem !important; }\n .pb-sm-3,\n .py-sm-3 {\n padding-bottom: 1rem !important; }\n .pl-sm-3,\n .px-sm-3 {\n padding-left: 1rem !important; }\n .p-sm-4 {\n padding: 1.5rem !important; }\n .pt-sm-4,\n .py-sm-4 {\n padding-top: 1.5rem !important; }\n .pr-sm-4,\n .px-sm-4 {\n padding-right: 1.5rem !important; }\n .pb-sm-4,\n .py-sm-4 {\n padding-bottom: 1.5rem !important; }\n .pl-sm-4,\n .px-sm-4 {\n padding-left: 1.5rem !important; }\n .p-sm-5 {\n padding: 3rem !important; }\n .pt-sm-5,\n .py-sm-5 {\n padding-top: 3rem !important; }\n .pr-sm-5,\n .px-sm-5 {\n padding-right: 3rem !important; }\n .pb-sm-5,\n .py-sm-5 {\n padding-bottom: 3rem !important; }\n .pl-sm-5,\n .px-sm-5 {\n padding-left: 3rem !important; }\n .m-sm-auto {\n margin: auto !important; }\n .mt-sm-auto,\n .my-sm-auto {\n margin-top: auto !important; }\n .mr-sm-auto,\n .mx-sm-auto {\n margin-right: auto !important; }\n .mb-sm-auto,\n .my-sm-auto {\n margin-bottom: auto !important; }\n .ml-sm-auto,\n .mx-sm-auto {\n margin-left: auto !important; } }\n\n@media (min-width: 768px) {\n .m-md-0 {\n margin: 0 !important; }\n .mt-md-0,\n .my-md-0 {\n margin-top: 0 !important; }\n .mr-md-0,\n .mx-md-0 {\n margin-right: 0 !important; }\n .mb-md-0,\n .my-md-0 {\n margin-bottom: 0 !important; }\n .ml-md-0,\n .mx-md-0 {\n margin-left: 0 !important; }\n .m-md-1 {\n margin: 0.25rem !important; }\n .mt-md-1,\n .my-md-1 {\n margin-top: 0.25rem !important; }\n .mr-md-1,\n .mx-md-1 {\n margin-right: 0.25rem !important; }\n .mb-md-1,\n .my-md-1 {\n margin-bottom: 0.25rem !important; }\n .ml-md-1,\n .mx-md-1 {\n margin-left: 0.25rem !important; }\n .m-md-2 {\n margin: 0.5rem !important; }\n .mt-md-2,\n .my-md-2 {\n margin-top: 0.5rem !important; }\n .mr-md-2,\n .mx-md-2 {\n margin-right: 0.5rem !important; }\n .mb-md-2,\n .my-md-2 {\n margin-bottom: 0.5rem !important; }\n .ml-md-2,\n .mx-md-2 {\n margin-left: 0.5rem !important; }\n .m-md-3 {\n margin: 1rem !important; }\n .mt-md-3,\n .my-md-3 {\n margin-top: 1rem !important; }\n .mr-md-3,\n .mx-md-3 {\n margin-right: 1rem !important; }\n .mb-md-3,\n .my-md-3 {\n margin-bottom: 1rem !important; }\n .ml-md-3,\n .mx-md-3 {\n margin-left: 1rem !important; }\n .m-md-4 {\n margin: 1.5rem !important; }\n .mt-md-4,\n .my-md-4 {\n margin-top: 1.5rem !important; }\n .mr-md-4,\n .mx-md-4 {\n margin-right: 1.5rem !important; }\n .mb-md-4,\n .my-md-4 {\n margin-bottom: 1.5rem !important; }\n .ml-md-4,\n .mx-md-4 {\n margin-left: 1.5rem !important; }\n .m-md-5 {\n margin: 3rem !important; }\n .mt-md-5,\n .my-md-5 {\n margin-top: 3rem !important; }\n .mr-md-5,\n .mx-md-5 {\n margin-right: 3rem !important; }\n .mb-md-5,\n .my-md-5 {\n margin-bottom: 3rem !important; }\n .ml-md-5,\n .mx-md-5 {\n margin-left: 3rem !important; }\n .p-md-0 {\n padding: 0 !important; }\n .pt-md-0,\n .py-md-0 {\n padding-top: 0 !important; }\n .pr-md-0,\n .px-md-0 {\n padding-right: 0 !important; }\n .pb-md-0,\n .py-md-0 {\n padding-bottom: 0 !important; }\n .pl-md-0,\n .px-md-0 {\n padding-left: 0 !important; }\n .p-md-1 {\n padding: 0.25rem !important; }\n .pt-md-1,\n .py-md-1 {\n padding-top: 0.25rem !important; }\n .pr-md-1,\n .px-md-1 {\n padding-right: 0.25rem !important; }\n .pb-md-1,\n .py-md-1 {\n padding-bottom: 0.25rem !important; }\n .pl-md-1,\n .px-md-1 {\n padding-left: 0.25rem !important; }\n .p-md-2 {\n padding: 0.5rem !important; }\n .pt-md-2,\n .py-md-2 {\n padding-top: 0.5rem !important; }\n .pr-md-2,\n .px-md-2 {\n padding-right: 0.5rem !important; }\n .pb-md-2,\n .py-md-2 {\n padding-bottom: 0.5rem !important; }\n .pl-md-2,\n .px-md-2 {\n padding-left: 0.5rem !important; }\n .p-md-3 {\n padding: 1rem !important; }\n .pt-md-3,\n .py-md-3 {\n padding-top: 1rem !important; }\n .pr-md-3,\n .px-md-3 {\n padding-right: 1rem !important; }\n .pb-md-3,\n .py-md-3 {\n padding-bottom: 1rem !important; }\n .pl-md-3,\n .px-md-3 {\n padding-left: 1rem !important; }\n .p-md-4 {\n padding: 1.5rem !important; }\n .pt-md-4,\n .py-md-4 {\n padding-top: 1.5rem !important; }\n .pr-md-4,\n .px-md-4 {\n padding-right: 1.5rem !important; }\n .pb-md-4,\n .py-md-4 {\n padding-bottom: 1.5rem !important; }\n .pl-md-4,\n .px-md-4 {\n padding-left: 1.5rem !important; }\n .p-md-5 {\n padding: 3rem !important; }\n .pt-md-5,\n .py-md-5 {\n padding-top: 3rem !important; }\n .pr-md-5,\n .px-md-5 {\n padding-right: 3rem !important; }\n .pb-md-5,\n .py-md-5 {\n padding-bottom: 3rem !important; }\n .pl-md-5,\n .px-md-5 {\n padding-left: 3rem !important; }\n .m-md-auto {\n margin: auto !important; }\n .mt-md-auto,\n .my-md-auto {\n margin-top: auto !important; }\n .mr-md-auto,\n .mx-md-auto {\n margin-right: auto !important; }\n .mb-md-auto,\n .my-md-auto {\n margin-bottom: auto !important; }\n .ml-md-auto,\n .mx-md-auto {\n margin-left: auto !important; } }\n\n@media (min-width: 992px) {\n .m-lg-0 {\n margin: 0 !important; }\n .mt-lg-0,\n .my-lg-0 {\n margin-top: 0 !important; }\n .mr-lg-0,\n .mx-lg-0 {\n margin-right: 0 !important; }\n .mb-lg-0,\n .my-lg-0 {\n margin-bottom: 0 !important; }\n .ml-lg-0,\n .mx-lg-0 {\n margin-left: 0 !important; }\n .m-lg-1 {\n margin: 0.25rem !important; }\n .mt-lg-1,\n .my-lg-1 {\n margin-top: 0.25rem !important; }\n .mr-lg-1,\n .mx-lg-1 {\n margin-right: 0.25rem !important; }\n .mb-lg-1,\n .my-lg-1 {\n margin-bottom: 0.25rem !important; }\n .ml-lg-1,\n .mx-lg-1 {\n margin-left: 0.25rem !important; }\n .m-lg-2 {\n margin: 0.5rem !important; }\n .mt-lg-2,\n .my-lg-2 {\n margin-top: 0.5rem !important; }\n .mr-lg-2,\n .mx-lg-2 {\n margin-right: 0.5rem !important; }\n .mb-lg-2,\n .my-lg-2 {\n margin-bottom: 0.5rem !important; }\n .ml-lg-2,\n .mx-lg-2 {\n margin-left: 0.5rem !important; }\n .m-lg-3 {\n margin: 1rem !important; }\n .mt-lg-3,\n .my-lg-3 {\n margin-top: 1rem !important; }\n .mr-lg-3,\n .mx-lg-3 {\n margin-right: 1rem !important; }\n .mb-lg-3,\n .my-lg-3 {\n margin-bottom: 1rem !important; }\n .ml-lg-3,\n .mx-lg-3 {\n margin-left: 1rem !important; }\n .m-lg-4 {\n margin: 1.5rem !important; }\n .mt-lg-4,\n .my-lg-4 {\n margin-top: 1.5rem !important; }\n .mr-lg-4,\n .mx-lg-4 {\n margin-right: 1.5rem !important; }\n .mb-lg-4,\n .my-lg-4 {\n margin-bottom: 1.5rem !important; }\n .ml-lg-4,\n .mx-lg-4 {\n margin-left: 1.5rem !important; }\n .m-lg-5 {\n margin: 3rem !important; }\n .mt-lg-5,\n .my-lg-5 {\n margin-top: 3rem !important; }\n .mr-lg-5,\n .mx-lg-5 {\n margin-right: 3rem !important; }\n .mb-lg-5,\n .my-lg-5 {\n margin-bottom: 3rem !important; }\n .ml-lg-5,\n .mx-lg-5 {\n margin-left: 3rem !important; }\n .p-lg-0 {\n padding: 0 !important; }\n .pt-lg-0,\n .py-lg-0 {\n padding-top: 0 !important; }\n .pr-lg-0,\n .px-lg-0 {\n padding-right: 0 !important; }\n .pb-lg-0,\n .py-lg-0 {\n padding-bottom: 0 !important; }\n .pl-lg-0,\n .px-lg-0 {\n padding-left: 0 !important; }\n .p-lg-1 {\n padding: 0.25rem !important; }\n .pt-lg-1,\n .py-lg-1 {\n padding-top: 0.25rem !important; }\n .pr-lg-1,\n .px-lg-1 {\n padding-right: 0.25rem !important; }\n .pb-lg-1,\n .py-lg-1 {\n padding-bottom: 0.25rem !important; }\n .pl-lg-1,\n .px-lg-1 {\n padding-left: 0.25rem !important; }\n .p-lg-2 {\n padding: 0.5rem !important; }\n .pt-lg-2,\n .py-lg-2 {\n padding-top: 0.5rem !important; }\n .pr-lg-2,\n .px-lg-2 {\n padding-right: 0.5rem !important; }\n .pb-lg-2,\n .py-lg-2 {\n padding-bottom: 0.5rem !important; }\n .pl-lg-2,\n .px-lg-2 {\n padding-left: 0.5rem !important; }\n .p-lg-3 {\n padding: 1rem !important; }\n .pt-lg-3,\n .py-lg-3 {\n padding-top: 1rem !important; }\n .pr-lg-3,\n .px-lg-3 {\n padding-right: 1rem !important; }\n .pb-lg-3,\n .py-lg-3 {\n padding-bottom: 1rem !important; }\n .pl-lg-3,\n .px-lg-3 {\n padding-left: 1rem !important; }\n .p-lg-4 {\n padding: 1.5rem !important; }\n .pt-lg-4,\n .py-lg-4 {\n padding-top: 1.5rem !important; }\n .pr-lg-4,\n .px-lg-4 {\n padding-right: 1.5rem !important; }\n .pb-lg-4,\n .py-lg-4 {\n padding-bottom: 1.5rem !important; }\n .pl-lg-4,\n .px-lg-4 {\n padding-left: 1.5rem !important; }\n .p-lg-5 {\n padding: 3rem !important; }\n .pt-lg-5,\n .py-lg-5 {\n padding-top: 3rem !important; }\n .pr-lg-5,\n .px-lg-5 {\n padding-right: 3rem !important; }\n .pb-lg-5,\n .py-lg-5 {\n padding-bottom: 3rem !important; }\n .pl-lg-5,\n .px-lg-5 {\n padding-left: 3rem !important; }\n .m-lg-auto {\n margin: auto !important; }\n .mt-lg-auto,\n .my-lg-auto {\n margin-top: auto !important; }\n .mr-lg-auto,\n .mx-lg-auto {\n margin-right: auto !important; }\n .mb-lg-auto,\n .my-lg-auto {\n margin-bottom: auto !important; }\n .ml-lg-auto,\n .mx-lg-auto {\n margin-left: auto !important; } }\n\n@media (min-width: 1200px) {\n .m-xl-0 {\n margin: 0 !important; }\n .mt-xl-0,\n .my-xl-0 {\n margin-top: 0 !important; }\n .mr-xl-0,\n .mx-xl-0 {\n margin-right: 0 !important; }\n .mb-xl-0,\n .my-xl-0 {\n margin-bottom: 0 !important; }\n .ml-xl-0,\n .mx-xl-0 {\n margin-left: 0 !important; }\n .m-xl-1 {\n margin: 0.25rem !important; }\n .mt-xl-1,\n .my-xl-1 {\n margin-top: 0.25rem !important; }\n .mr-xl-1,\n .mx-xl-1 {\n margin-right: 0.25rem !important; }\n .mb-xl-1,\n .my-xl-1 {\n margin-bottom: 0.25rem !important; }\n .ml-xl-1,\n .mx-xl-1 {\n margin-left: 0.25rem !important; }\n .m-xl-2 {\n margin: 0.5rem !important; }\n .mt-xl-2,\n .my-xl-2 {\n margin-top: 0.5rem !important; }\n .mr-xl-2,\n .mx-xl-2 {\n margin-right: 0.5rem !important; }\n .mb-xl-2,\n .my-xl-2 {\n margin-bottom: 0.5rem !important; }\n .ml-xl-2,\n .mx-xl-2 {\n margin-left: 0.5rem !important; }\n .m-xl-3 {\n margin: 1rem !important; }\n .mt-xl-3,\n .my-xl-3 {\n margin-top: 1rem !important; }\n .mr-xl-3,\n .mx-xl-3 {\n margin-right: 1rem !important; }\n .mb-xl-3,\n .my-xl-3 {\n margin-bottom: 1rem !important; }\n .ml-xl-3,\n .mx-xl-3 {\n margin-left: 1rem !important; }\n .m-xl-4 {\n margin: 1.5rem !important; }\n .mt-xl-4,\n .my-xl-4 {\n margin-top: 1.5rem !important; }\n .mr-xl-4,\n .mx-xl-4 {\n margin-right: 1.5rem !important; }\n .mb-xl-4,\n .my-xl-4 {\n margin-bottom: 1.5rem !important; }\n .ml-xl-4,\n .mx-xl-4 {\n margin-left: 1.5rem !important; }\n .m-xl-5 {\n margin: 3rem !important; }\n .mt-xl-5,\n .my-xl-5 {\n margin-top: 3rem !important; }\n .mr-xl-5,\n .mx-xl-5 {\n margin-right: 3rem !important; }\n .mb-xl-5,\n .my-xl-5 {\n margin-bottom: 3rem !important; }\n .ml-xl-5,\n .mx-xl-5 {\n margin-left: 3rem !important; }\n .p-xl-0 {\n padding: 0 !important; }\n .pt-xl-0,\n .py-xl-0 {\n padding-top: 0 !important; }\n .pr-xl-0,\n .px-xl-0 {\n padding-right: 0 !important; }\n .pb-xl-0,\n .py-xl-0 {\n padding-bottom: 0 !important; }\n .pl-xl-0,\n .px-xl-0 {\n padding-left: 0 !important; }\n .p-xl-1 {\n padding: 0.25rem !important; }\n .pt-xl-1,\n .py-xl-1 {\n padding-top: 0.25rem !important; }\n .pr-xl-1,\n .px-xl-1 {\n padding-right: 0.25rem !important; }\n .pb-xl-1,\n .py-xl-1 {\n padding-bottom: 0.25rem !important; }\n .pl-xl-1,\n .px-xl-1 {\n padding-left: 0.25rem !important; }\n .p-xl-2 {\n padding: 0.5rem !important; }\n .pt-xl-2,\n .py-xl-2 {\n padding-top: 0.5rem !important; }\n .pr-xl-2,\n .px-xl-2 {\n padding-right: 0.5rem !important; }\n .pb-xl-2,\n .py-xl-2 {\n padding-bottom: 0.5rem !important; }\n .pl-xl-2,\n .px-xl-2 {\n padding-left: 0.5rem !important; }\n .p-xl-3 {\n padding: 1rem !important; }\n .pt-xl-3,\n .py-xl-3 {\n padding-top: 1rem !important; }\n .pr-xl-3,\n .px-xl-3 {\n padding-right: 1rem !important; }\n .pb-xl-3,\n .py-xl-3 {\n padding-bottom: 1rem !important; }\n .pl-xl-3,\n .px-xl-3 {\n padding-left: 1rem !important; }\n .p-xl-4 {\n padding: 1.5rem !important; }\n .pt-xl-4,\n .py-xl-4 {\n padding-top: 1.5rem !important; }\n .pr-xl-4,\n .px-xl-4 {\n padding-right: 1.5rem !important; }\n .pb-xl-4,\n .py-xl-4 {\n padding-bottom: 1.5rem !important; }\n .pl-xl-4,\n .px-xl-4 {\n padding-left: 1.5rem !important; }\n .p-xl-5 {\n padding: 3rem !important; }\n .pt-xl-5,\n .py-xl-5 {\n padding-top: 3rem !important; }\n .pr-xl-5,\n .px-xl-5 {\n padding-right: 3rem !important; }\n .pb-xl-5,\n .py-xl-5 {\n padding-bottom: 3rem !important; }\n .pl-xl-5,\n .px-xl-5 {\n padding-left: 3rem !important; }\n .m-xl-auto {\n margin: auto !important; }\n .mt-xl-auto,\n .my-xl-auto {\n margin-top: auto !important; }\n .mr-xl-auto,\n .mx-xl-auto {\n margin-right: auto !important; }\n .mb-xl-auto,\n .my-xl-auto {\n margin-bottom: auto !important; }\n .ml-xl-auto,\n .mx-xl-auto {\n margin-left: auto !important; } }\n\n.text-monospace {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace; }\n\n.text-justify {\n text-align: justify !important; }\n\n.text-nowrap {\n white-space: nowrap !important; }\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap; }\n\n.text-left {\n text-align: left !important; }\n\n.text-right {\n text-align: right !important; }\n\n.text-center {\n text-align: center !important; }\n\n@media (min-width: 576px) {\n .text-sm-left {\n text-align: left !important; }\n .text-sm-right {\n text-align: right !important; }\n .text-sm-center {\n text-align: center !important; } }\n\n@media (min-width: 768px) {\n .text-md-left {\n text-align: left !important; }\n .text-md-right {\n text-align: right !important; }\n .text-md-center {\n text-align: center !important; } }\n\n@media (min-width: 992px) {\n .text-lg-left {\n text-align: left !important; }\n .text-lg-right {\n text-align: right !important; }\n .text-lg-center {\n text-align: center !important; } }\n\n@media (min-width: 1200px) {\n .text-xl-left {\n text-align: left !important; }\n .text-xl-right {\n text-align: right !important; }\n .text-xl-center {\n text-align: center !important; } }\n\n.text-lowercase {\n text-transform: lowercase !important; }\n\n.text-uppercase {\n text-transform: uppercase !important; }\n\n.text-capitalize {\n text-transform: capitalize !important; }\n\n.font-weight-light, .landing-page .feature-list .feature-list-row .feature-list-item p {\n font-weight: 300 !important; }\n\n.font-weight-normal, .landing-page .feature-list .feature-list-row .feature-list-item h4 {\n font-weight: 400 !important; }\n\n.font-weight-bold {\n font-weight: 700 !important; }\n\n.font-italic {\n font-style: italic !important; }\n\n.text-white {\n color: #ffffff !important; }\n\n.text-primary {\n color: #2196f3 !important; }\n\na.text-primary:hover, a.text-primary:focus {\n color: #0c7cd5 !important; }\n\n.text-secondary {\n color: #e6eef2 !important; }\n\na.text-secondary:hover, a.text-secondary:focus {\n color: #c4d7e1 !important; }\n\n.text-success {\n color: #19d895 !important; }\n\na.text-success:hover, a.text-success:focus {\n color: #14aa75 !important; }\n\n.text-info {\n color: #8862e0 !important; }\n\na.text-info:hover, a.text-info:focus {\n color: #6837d8 !important; }\n\n.text-warning {\n color: #ffaf00 !important; }\n\na.text-warning:hover, a.text-warning:focus {\n color: #cc8c00 !important; }\n\n.text-danger {\n color: #ff6258 !important; }\n\na.text-danger:hover, a.text-danger:focus {\n color: #ff3225 !important; }\n\n.text-light {\n color: #fbfbfb !important; }\n\na.text-light:hover, a.text-light:focus {\n color: #e2e2e2 !important; }\n\n.text-dark {\n color: #252C46 !important; }\n\na.text-dark:hover, a.text-dark:focus {\n color: #131725 !important; }\n\n.text-body {\n color: #212529 !important; }\n\n.text-muted, .preview-list .preview-item .preview-item-content p .content-category, .email-wrapper .mail-list-container .mail-list .content .message_text, .email-wrapper .mail-list-container .mail-list .details .date {\n color: #858585 !important; }\n\n.text-black-50 {\n color: rgba(0, 0, 0, 0.5) !important; }\n\n.text-white-50 {\n color: rgba(255, 255, 255, 0.5) !important; }\n\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0; }\n\n.visible {\n visibility: visible !important; }\n\n.invisible {\n visibility: hidden !important; }\n\n@media print {\n *,\n *::before,\n *::after {\n text-shadow: none !important;\n box-shadow: none !important; }\n a:not(.btn):not(.ajax-upload-dragdrop .ajax-file-upload):not(.swal2-modal .swal2-buttonswrapper .swal2-styled):not(.swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm):not(.swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel):not(.wizard > .actions a) {\n text-decoration: underline; }\n abbr[title]::after {\n content: \" (\" attr(title) \")\"; }\n pre {\n white-space: pre-wrap !important; }\n pre,\n blockquote {\n border: 1px solid #adb5bd;\n page-break-inside: avoid; }\n thead {\n display: table-header-group; }\n tr,\n img {\n page-break-inside: avoid; }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3; }\n h2,\n h3 {\n page-break-after: avoid; }\n @page {\n size: a3; }\n body {\n min-width: 992px !important; }\n .container {\n min-width: 992px !important; }\n .navbar {\n display: none; }\n .badge {\n border: 1px solid #000; }\n .table, .jsgrid .jsgrid-table {\n border-collapse: collapse !important; }\n .table td, .jsgrid .jsgrid-table td,\n .table th, .jsgrid .jsgrid-table th {\n background-color: #ffffff !important; }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #dee2e6 !important; }\n .table-dark {\n color: inherit; }\n .table-dark th,\n .table-dark td,\n .table-dark thead th,\n .table-dark tbody + tbody {\n border-color: #f2f2f2; }\n .table .thead-dark th, .jsgrid .jsgrid-table .thead-dark th {\n color: inherit;\n border-color: #f2f2f2; } }\n\n/*-------------------------------------------------------------------*/\n/* === Template mixins === */\n/* Animation Mixins */\n@keyframes dropdownAnimation {\n from {\n opacity: 0;\n transform: translate3d(0, -30px, 0); }\n to {\n opacity: 1;\n transform: none;\n transform: translate3d(0, 0px, 0); } }\n\n.dropdownAnimation, .nav .nav-item.dropdown .navbar-dropdown,\n.navbar-nav .nav-item.dropdown .navbar-dropdown {\n animation-name: dropdownAnimation;\n animation-duration: 0.25s;\n animation-fill-mode: both; }\n\n@keyframes fadeOut {\n from {\n opacity: 1; }\n to {\n opacity: 0; } }\n\n.fadeOut {\n animation-name: fadeOut; }\n\n.infinite-spin {\n animation-name: spin;\n animation-duration: 3s;\n animation-iteration-count: infinite;\n animation-timing-function: linear; }\n\n@keyframes spin {\n from {\n transform: rotate(0deg); }\n to {\n transform: rotate(360deg); } }\n\n@keyframes fadeInUp {\n from {\n opacity: 0;\n transform: translate3d(0, 100%, 0); }\n to {\n opacity: 1;\n transform: none; } }\n\n.fadeInUp {\n animation-name: fadeInUp; }\n\n.new-accounts ul.chats li.chat-persons a div.user p.u-name, .new-accounts ul.chats li.chat-persons a div.user p.u-designation, .settings-panel .chat-list .list .info p, .list-wrapper ul li .form-check, .list-wrapper ul li .form-check .form-check-label, .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user .u-name, .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user .u-designation, .email-wrapper .mail-list-container .mail-list .content .sender-name, .email-wrapper .message-body .attachments-sections ul li .details p.file-name {\n text-overflow: ellipsis;\n overflow: hidden;\n max-width: 100%;\n white-space: nowrap; }\n\n/*-------------------------------------------------------------------*/\n/* === Core Styles === */\n/* Reset Styles */\nbody {\n padding: 0;\n margin: 0;\n overflow-x: hidden;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale; }\n\n.form-control, .asColorPicker-input, .dataTables_wrapper select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text],\n.jsgrid .jsgrid-table .jsgrid-filter-row select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .tt-hint,\n.tt-query,\n.typeahead,\n.form-control:focus,\n.asColorPicker-input:focus,\n.dataTables_wrapper select:focus,\n.jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus,\n.jsgrid .jsgrid-table .jsgrid-filter-row select:focus,\n.jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus,\n.select2-container--default .select2-selection--single:focus,\n.select2-container--default .select2-selection--single .select2-search__field:focus,\n.tt-hint:focus,\n.tt-query:focus,\n.typeahead:focus {\n -webkit-box-shadow: none;\n -moz-box-shadow: none; }\n\n.form-control, .asColorPicker-input, .dataTables_wrapper select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text],\n.jsgrid .jsgrid-table .jsgrid-filter-row select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .tt-hint,\n.tt-query,\n.typeahead {\n box-shadow: none; }\n\n.form-control:focus, .asColorPicker-input:focus, .dataTables_wrapper select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus,\n.jsgrid .jsgrid-table .jsgrid-filter-row select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .tt-hint:focus,\n.tt-query:focus,\n.typeahead:focus {\n outline: 0;\n box-shadow: none; }\n\na,\ndiv,\nh1,\nh2,\nh3,\nh4,\nh5,\np,\nspan {\n text-shadow: none; }\n\n[type=button]:focus,\na:active,\na:focus,\na:visited,\nbutton::-moz-focus-inner,\ninput[type=button]::-moz-focus-inner,\ninput[type=file] > input[type=button]::-moz-focus-inner,\ninput[type=reset]::-moz-focus-inner,\ninput[type=submit]::-moz-focus-inner,\nselect::-moz-focus-inner {\n outline: 0; }\n\n.form-control:focus, .asColorPicker-input:focus, .dataTables_wrapper select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus,\n.jsgrid .jsgrid-table .jsgrid-filter-row select:focus, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .tt-hint:focus,\n.tt-query:focus,\n.typeahead:focus,\nbutton:focus,\ninput,\ninput:focus,\nselect:focus,\ntextarea:focus {\n outline: none;\n outline-width: 0;\n outline-color: transparent;\n box-shadow: none;\n outline-style: none; }\n\ntextarea {\n resize: none;\n overflow-x: hidden; }\n\n.btn, .ajax-upload-dragdrop .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel, .wizard > .actions a,\n.btn-group.open .dropdown-toggle,\n.btn:active,\n.ajax-upload-dragdrop .ajax-file-upload:active,\n.swal2-modal .swal2-buttonswrapper .swal2-styled:active,\n.wizard > .actions a:active,\n.btn:focus,\n.ajax-upload-dragdrop .ajax-file-upload:focus,\n.swal2-modal .swal2-buttonswrapper .swal2-styled:focus,\n.wizard > .actions a:focus,\n.btn:hover,\n.ajax-upload-dragdrop .ajax-file-upload:hover,\n.swal2-modal .swal2-buttonswrapper .swal2-styled:hover,\n.wizard > .actions a:hover,\n.btn:visited,\n.ajax-upload-dragdrop .ajax-file-upload:visited,\n.swal2-modal .swal2-buttonswrapper .swal2-styled:visited,\n.wizard > .actions a:visited,\na,\na:active,\na:checked,\na:focus,\na:hover,\na:visited,\nbody,\nbutton,\nbutton:active,\nbutton:hover,\nbutton:visited,\ndiv,\ninput,\ninput:active,\ninput:focus,\ninput:hover,\ninput:visited,\nselect,\nselect:active,\nselect:focus,\nselect:visited,\ntextarea,\ntextarea:active,\ntextarea:focus,\ntextarea:hover,\ntextarea:visited {\n -webkit-box-shadow: none;\n -moz-box-shadow: none;\n box-shadow: none; }\n\n.btn.active.focus, .ajax-upload-dragdrop .active.focus.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .active.focus.swal2-styled, .wizard > .actions a.active.focus,\n.btn.active:focus,\n.ajax-upload-dragdrop .active.ajax-file-upload:focus,\n.swal2-modal .swal2-buttonswrapper .active.swal2-styled:focus,\n.wizard > .actions a.active:focus,\n.btn.focus,\n.ajax-upload-dragdrop .focus.ajax-file-upload,\n.swal2-modal .swal2-buttonswrapper .focus.swal2-styled,\n.wizard > .actions a.focus,\n.btn:active.focus,\n.ajax-upload-dragdrop .ajax-file-upload:active.focus,\n.swal2-modal .swal2-buttonswrapper .swal2-styled:active.focus,\n.wizard > .actions a:active.focus,\n.btn:active:focus,\n.ajax-upload-dragdrop .ajax-file-upload:active:focus,\n.swal2-modal .swal2-buttonswrapper .swal2-styled:active:focus,\n.wizard > .actions a:active:focus,\n.btn:focus,\n.ajax-upload-dragdrop .ajax-file-upload:focus,\n.swal2-modal .swal2-buttonswrapper .swal2-styled:focus,\n.wizard > .actions a:focus,\nbutton,\nbutton:active,\nbutton:checked,\nbutton:focus,\nbutton:hover,\nbutton:visited {\n outline: 0;\n outline-offset: 0; }\n\n.bootstrap-select .dropdown-toggle:focus {\n outline: 0 !important;\n outline-offset: 0; }\n\n.dropdown-menu > li > a:active,\n.dropdown-menu > li > a:focus,\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:visited {\n outline: 0 !important; }\n\na:focus,\ninput:focus {\n border-color: transparent;\n outline: none; }\n\n/* Fonts */\n.text-twitter {\n color: #4DBFF5; }\n\n.text-facebook {\n color: #648ACA; }\n\n.text-google {\n color: #E55F4B; }\n\n.text-linkedin {\n color: #0177b4; }\n\n.text-pinterest {\n color: #cc2127; }\n\n.text-youtube {\n color: #e52d27; }\n\n.text-github {\n color: #333333; }\n\n.text-behance {\n color: #1769ff; }\n\n.text-dribbble {\n color: #ea4c89; }\n\n.text-reddit {\n color: #ff4500; }\n\n.bg-twitter {\n background: #4DBFF5; }\n\n.bg-facebook {\n background: #648ACA; }\n\n.bg-google {\n background: #E55F4B; }\n\n.bg-linkedin {\n background: #0177b4; }\n\n.bg-pinterest {\n background: #cc2127; }\n\n.bg-youtube {\n background: #e52d27; }\n\n.bg-github {\n background: #333333; }\n\n.bg-behance {\n background: #1769ff; }\n\n.bg-dribbble {\n background: #ea4c89; }\n\n.bg-reddit {\n background: #ff4500; }\n\n/* Navbar */\n.navbar.default-layout {\n font-family: \"Poppins\", sans-serif;\n background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1);\n transition: background 0.25s ease;\n -webkit-transition: background 0.25s ease;\n -moz-transition: background 0.25s ease;\n -ms-transition: background 0.25s ease; }\n .navbar.default-layout .navbar-brand-wrapper {\n transition: width 0.25s ease, background 0.25s ease;\n -webkit-transition: width 0.25s ease, background 0.25s ease;\n -moz-transition: width 0.25s ease, background 0.25s ease;\n -ms-transition: width 0.25s ease, background 0.25s ease;\n background: #ffffff;\n width: 255px;\n height: 63px; }\n .sidebar-dark .navbar.default-layout .navbar-brand-wrapper {\n background: #252C46; }\n .navbar.default-layout .navbar-brand-wrapper .navbar-brand {\n color: #ffffff;\n font-size: 1.5rem;\n line-height: 48px;\n margin-right: 0;\n padding: 0.25rem 0;\n display: flex; }\n .navbar.default-layout .navbar-brand-wrapper .navbar-brand:active, .navbar.default-layout .navbar-brand-wrapper .navbar-brand:focus, .navbar.default-layout .navbar-brand-wrapper .navbar-brand:hover {\n color: #424546; }\n .navbar.default-layout .navbar-brand-wrapper .navbar-brand img {\n width: calc(255px - 130px);\n max-width: 100%;\n height: 28px;\n margin: auto;\n vertical-align: middle; }\n .navbar.default-layout .navbar-brand-wrapper .brand-logo-mini {\n display: none; }\n .navbar.default-layout .navbar-brand-wrapper .brand-logo-mini img {\n width: calc(70px - 50px);\n max-width: 100%;\n height: 28px;\n margin: auto; }\n .navbar.default-layout .navbar-menu-wrapper {\n transition: width 0.25s ease;\n -webkit-transition: width 0.25s ease;\n -moz-transition: width 0.25s ease;\n -ms-transition: width 0.25s ease;\n color: #ffffff;\n padding-left: 15px;\n padding-right: 15px;\n width: calc(100% - 255px);\n height: 63px; }\n @media (max-width: 991px) {\n .navbar.default-layout .navbar-menu-wrapper {\n width: auto; } }\n .navbar.default-layout .navbar-menu-wrapper .navbar-toggler {\n border: 0;\n color: inherit; }\n @media (max-width: 991px) {\n .navbar.default-layout .navbar-menu-wrapper .navbar-toggler:not(.navbar-toggler-right) {\n display: none; } }\n .navbar.default-layout .navbar-menu-wrapper .navbar-text {\n font-size: 0.875rem; }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav {\n flex-direction: row;\n align-items: center; }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item {\n margin-left: 1rem;\n margin-right: 1rem; }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link {\n color: inherit;\n font-size: 12px;\n vertical-align: middle; }\n @media (max-width: 767px) {\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link {\n margin-left: 0.5rem;\n margin-right: 0.5rem; } }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link i {\n font-size: 1.25rem;\n vertical-align: middle; }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link .profile-text {\n margin-right: 15px; }\n .rtl .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link .profile-text {\n margin-right: 0;\n margin-left: 15px; }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn .btn, .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn .ajax-file-upload, .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn .swal2-styled, .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn .wizard > .actions a, .wizard > .actions .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn a {\n background: rgba(255, 255, 255, 0.1);\n padding: 0.75rem 1rem;\n color: #ffffff; }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.nav-btn:after {\n display: none; }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav .nav-item.color-setting i {\n font-size: 25px;\n vertical-align: text-top; }\n @media (min-width: 992px) {\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav.navbar-nav-right {\n margin-left: auto; }\n .rtl .navbar.default-layout .navbar-menu-wrapper .navbar-nav.navbar-nav-right {\n margin-left: 0;\n margin-right: auto; } }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav.header-links {\n height: 63px;\n padding-left: 2%; }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav.header-links .nav-item {\n margin: 0; }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav.header-links .nav-item .nav-link {\n height: 63px;\n font-size: 12px;\n padding: 16px 25px;\n display: flex;\n align-items: center; }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav.header-links .nav-item .nav-link i {\n margin-right: 10px;\n font-size: 21px; }\n .rtl .navbar.default-layout .navbar-menu-wrapper .navbar-nav.header-links .nav-item .nav-link i {\n margin-right: 0;\n margin-left: 10px; }\n .navbar.default-layout .navbar-menu-wrapper .navbar-nav.header-links .nav-item.active {\n background: rgba(255, 255, 255, 0.13); }\n .navbar.default-layout.navbar-danger, .navbar.default-layout.navbar-dark, .navbar.default-layout.navbar-primary, .navbar.default-layout.navbar-success, .navbar.default-layout.navbar-warning {\n background: #252C46; }\n .navbar.default-layout.navbar-danger .navbar-toggler, .navbar.default-layout.navbar-dark .navbar-toggler, .navbar.default-layout.navbar-primary .navbar-toggler, .navbar.default-layout.navbar-success .navbar-toggler, .navbar.default-layout.navbar-warning .navbar-toggler {\n color: #ffffff; }\n .navbar.default-layout.navbar-danger .count, .navbar.default-layout.navbar-dark .count, .navbar.default-layout.navbar-primary .count, .navbar.default-layout.navbar-success .count, .navbar.default-layout.navbar-warning .count {\n border-color: #252C46; }\n .navbar.default-layout.navbar-primary {\n background: #2196f3; }\n .navbar.default-layout.navbar-primary .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count {\n background: #ff6258;\n color: #ffffff; }\n .navbar.default-layout.navbar-success {\n background: #19d895; }\n .navbar.default-layout.navbar-success .navbar-menu-wrapper input {\n color: #ffffff; }\n .navbar.default-layout.navbar-success .navbar-menu-wrapper input::-webkit-input-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-success .navbar-menu-wrapper input:-moz-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-success .navbar-menu-wrapper input::-moz-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-success .navbar-menu-wrapper input:-ms-input-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-success .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count {\n background: #094f36;\n color: #ffffff;\n border-color: #19d895; }\n .navbar.default-layout.navbar-success .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.bg-success, .navbar.default-layout.navbar-success .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .settings-panel .color-tiles .count.tiles.success, .settings-panel .color-tiles .navbar.default-layout.navbar-success .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.tiles.success {\n background: #0e7d56 !important; }\n .navbar.default-layout.navbar-danger {\n background: #ff6258; }\n .navbar.default-layout.navbar-danger .navbar-menu-wrapper input {\n color: #ffffff; }\n .navbar.default-layout.navbar-danger .navbar-menu-wrapper input::-webkit-input-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-danger .navbar-menu-wrapper input:-moz-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-danger .navbar-menu-wrapper input::-moz-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-danger .navbar-menu-wrapper input:-ms-input-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-danger .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count {\n background: #be0b00;\n color: #ffffff;\n border-color: #ff6258; }\n .navbar.default-layout.navbar-danger .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.bg-danger, .navbar.default-layout.navbar-danger .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .settings-panel .color-tiles .count.tiles.danger, .settings-panel .color-tiles .navbar.default-layout.navbar-danger .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.tiles.danger {\n background: #f10e00 !important; }\n .navbar.default-layout.navbar-warning {\n background: #ffaf00; }\n .navbar.default-layout.navbar-warning .navbar-menu-wrapper input {\n color: #ffffff; }\n .navbar.default-layout.navbar-warning .navbar-menu-wrapper input::-webkit-input-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-warning .navbar-menu-wrapper input:-moz-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-warning .navbar-menu-wrapper input::-moz-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-warning .navbar-menu-wrapper input:-ms-input-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-warning .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count {\n background: #664600;\n color: #ffffff;\n border-color: #ffaf00; }\n .navbar.default-layout.navbar-warning .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.bg-warning, .navbar.default-layout.navbar-warning .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .settings-panel .color-tiles .count.tiles.warning, .settings-panel .color-tiles .navbar.default-layout.navbar-warning .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.tiles.warning {\n background: #996900 !important; }\n .navbar.default-layout.navbar-pink {\n background: #E91E63; }\n .navbar.default-layout.navbar-pink a {\n color: #ffffff; }\n .navbar.default-layout.navbar-pink .navbar-toggler {\n color: #ffffff; }\n .navbar.default-layout.navbar-pink .navbar-brand-wrapper .navbar-brand {\n color: #ffffff; }\n .navbar.default-layout.navbar-pink .navbar-menu-wrapper input {\n color: #ffffff; }\n .navbar.default-layout.navbar-pink .navbar-menu-wrapper input::-webkit-input-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-pink .navbar-menu-wrapper input:-moz-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-pink .navbar-menu-wrapper input::-moz-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-pink .navbar-menu-wrapper input:-ms-input-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-pink .navbar-menu-wrapper .navbar-nav .nav-item .nav-link {\n color: #ffffff; }\n .navbar.default-layout.navbar-pink .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count {\n background: #640a29;\n color: #ffffff;\n border-color: #E91E63; }\n .navbar.default-layout.navbar-pink .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.bg-pink {\n background: #930e3b !important; }\n .navbar.default-layout.navbar-pink .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item {\n color: #000; }\n .navbar.default-layout.navbar-info {\n background: #8862e0; }\n .navbar.default-layout.navbar-info a {\n color: #ffffff; }\n .navbar.default-layout.navbar-info .navbar-toggler {\n color: #ffffff; }\n .navbar.default-layout.navbar-info .navbar-menu-wrapper input {\n color: #ffffff; }\n .navbar.default-layout.navbar-info .navbar-menu-wrapper input::-webkit-input-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-info .navbar-menu-wrapper input:-moz-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-info .navbar-menu-wrapper input::-moz-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-info .navbar-menu-wrapper input:-ms-input-placeholder {\n color: inherit; }\n .navbar.default-layout.navbar-info .navbar-menu-wrapper .navbar-nav .nav-item {\n color: #ffffff; }\n .navbar.default-layout.navbar-info .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count {\n background: #3e1c8d;\n color: #ffffff;\n border-color: #8862e0; }\n .navbar.default-layout.navbar-info .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.bg-info, .navbar.default-layout.navbar-info .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .settings-panel .color-tiles .count.tiles.info, .settings-panel .color-tiles .navbar.default-layout.navbar-info .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.count-indicator .count.tiles.info {\n background: #5124b8 !important; }\n .navbar.default-layout.navbar-info .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item {\n color: #000; }\n .navbar.default-layout.navbar-danger .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-danger .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-dark .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-primary .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-success .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-warning .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-primary .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-success .navbar-brand-wrapper .navbar-brand, .navbar.default-layout.navbar-warning .navbar-brand-wrapper .navbar-brand {\n color: #ffffff; }\n .navbar.default-layout.navbar-danger .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-danger .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-dark .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-primary .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-success .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-warning .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-primary .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-success .navbar-menu-wrapper .navbar-nav .nav-item .nav-link, .navbar.default-layout.navbar-warning .navbar-menu-wrapper .navbar-nav .nav-item .nav-link {\n color: #ffffff; }\n\n@media (max-width: 991px) {\n .navbar.default-layout {\n flex-direction: row; }\n .navbar.default-layout .navbar-brand-wrapper {\n width: 75px; }\n .navbar.default-layout .navbar-brand-wrapper .brand-logo {\n display: none; }\n .navbar.default-layout .navbar-brand-wrapper .brand-logo-mini {\n display: inline-block; }\n .navbar-collapse {\n display: flex;\n margin-top: 0.5rem; } }\n\n/* Typography */\n:root,\nbody {\n font-size: 1rem;\n font-family: \"Poppins\", sans-serif; }\n\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n font-family: \"Poppins\", sans-serif;\n font-weight: normal;\n font-style: normal;\n font-stretch: normal;\n line-height: normal; }\n\np {\n font-size: 0.875rem; }\n\n.h1,\nh1 {\n font-size: 2.3125rem; }\n\n.h2,\nh2 {\n font-size: 2rem; }\n\n.h3,\nh3 {\n font-size: 1.6875rem; }\n\n.h4,\nh4 {\n font-size: 1.25rem; }\n\n.h5,\nh5 {\n font-size: 1.0625rem; }\n\n.h6,\nh6 {\n font-size: 1rem; }\n\np {\n font-size: 0.875rem; }\n\n.display-1 {\n font-size: 3.75rem; }\n @media (max-width: 991px) {\n .display-1 {\n font-size: 3rem; } }\n\n.display-2 {\n font-size: 3.125rem; }\n @media (max-width: 991px) {\n .display-2 {\n font-size: 2.5rem; } }\n\n.display-3 {\n font-size: 2.5rem; }\n @media (max-width: 991px) {\n .display-3 {\n font-size: 2rem; } }\n\n.display-4 {\n font-size: 1.875rem; }\n @media (max-width: 991px) {\n .display-4 {\n font-size: 1.5rem; } }\n\n.display-5 {\n font-size: 1.25rem; }\n @media (max-width: 991px) {\n .display-5 {\n font-size: 1rem; } }\n\n.blockquote {\n padding: 1.25rem;\n border: 1px solid #f2f2f2; }\n\naddress p {\n margin-bottom: 0; }\n\n.blockquote-primary {\n border-color: #2196f3; }\n .blockquote-primary .blockquote-footer {\n color: #2196f3; }\n\n.blockquote-secondary {\n border-color: #e6eef2; }\n .blockquote-secondary .blockquote-footer {\n color: #e6eef2; }\n\n.blockquote-success {\n border-color: #19d895; }\n .blockquote-success .blockquote-footer {\n color: #19d895; }\n\n.blockquote-info {\n border-color: #8862e0; }\n .blockquote-info .blockquote-footer {\n color: #8862e0; }\n\n.blockquote-warning {\n border-color: #ffaf00; }\n .blockquote-warning .blockquote-footer {\n color: #ffaf00; }\n\n.blockquote-danger {\n border-color: #ff6258; }\n .blockquote-danger .blockquote-footer {\n color: #ff6258; }\n\n.blockquote-light {\n border-color: #fbfbfb; }\n .blockquote-light .blockquote-footer {\n color: #fbfbfb; }\n\n.blockquote-dark {\n border-color: #252C46; }\n .blockquote-dark .blockquote-footer {\n color: #252C46; }\n\n.page-title {\n color: #000;\n margin: 0.38rem 0 0.75rem; }\n\n.card-title {\n font-family: \"Poppins\", sans-serif;\n font-weight: 500;\n color: #404852;\n margin-bottom: 22px;\n font-size: 14px;\n text-transform: capitalize; }\n .rtl .card-title {\n text-align: right; }\n\n.card-subtitle {\n font-weight: 300;\n font-family: \"Poppins\", sans-serif;\n margin-top: 0.625rem;\n margin-bottom: 0.625rem; }\n\n.card-description {\n margin-bottom: 0.9375rem;\n font-family: \"Poppins\", sans-serif; }\n .rtl .card-description {\n text-align: right; }\n\n.font-weight-normal, .landing-page .feature-list .feature-list-row .feature-list-item h4 {\n font-weight: 400; }\n\n.font-weight-medium {\n font-weight: 500; }\n\n.font-weight-semibold {\n font-weight: 600; }\n\nsmall,\n.text-small,\n.new-accounts ul.chats li.chat-persons a div.user p.u-designation,\n.new-accounts ul.chats li.chat-persons a p.joined-date,\n#calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-h-event {\n font-size: 12px; }\n\n.icon-lg {\n font-size: 2.5rem; }\n\n.icon-md {\n font-size: 1.875rem; }\n\n.icon-sm {\n font-size: 1rem; }\n\n/* Miscellanoeous */\nbody,\nhtml {\n overflow-x: hidden;\n padding-right: 0 !important; }\n\n*:-moz-full-screen,\n*:-webkit-full-screen,\n*:fullscreen *:-ms-fullscreen {\n overflow: auto !important; }\n\n.page-body-wrapper {\n min-height: calc(100vh - 63px);\n display: flex;\n flex-direction: row;\n padding-left: 0;\n padding-right: 0; }\n .page-body-wrapper.full-page-wrapper {\n width: 100%;\n min-height: 100vh; }\n\n.main-panel {\n transition: width 0.25s ease, margin 0.25s ease;\n width: calc(100% - 255px);\n min-height: calc(100vh - 63px);\n display: flex;\n flex-direction: column; }\n @media (max-width: 991px) {\n .main-panel {\n margin-left: 0;\n width: 100%; } }\n\n.content-wrapper {\n background: #f3f4fa;\n padding: 1.5rem 1.7rem;\n width: 100%;\n flex-grow: 1; }\n\n.container-scroller {\n overflow: hidden; }\n\n.scroll-container {\n position: relative; }\n .scroll-container.horizontally {\n overflow-x: hidden;\n width: 100%;\n max-width: 100%; }\n .scroll-container.vertically {\n overflow-y: hidden;\n height: 100%;\n max-height: 100%; }\n\npre {\n padding: 15px;\n font-size: 14px; }\n\n/* Footer */\n.footer {\n background: #f3f4fa;\n padding: 20px 1rem;\n transition: all 0.25s ease;\n -moz-transition: all 0.25s ease;\n -webkit-transition: all 0.25s ease;\n -ms-transition: all 0.25s ease;\n border-top: 1px solid #f2f2f2;\n font-size: calc(0.875rem - 0.05rem);\n font-family: \"Poppins\", sans-serif; }\n .footer a {\n color: #19d895;\n font-size: inherit; }\n @media (max-width: 991px) {\n .footer {\n margin-left: 0;\n width: 100%; } }\n\n/* Utilities */\n.grid-margin {\n margin-bottom: 25px; }\n\n@media (min-width: 576px) {\n .grid-margin-sm-0 {\n margin-bottom: 0; } }\n\n@media (min-width: 768px) {\n .grid-margin-md-0 {\n margin-bottom: 0; } }\n\n@media (min-width: 992px) {\n .grid-margin-lg-0 {\n margin-bottom: 0; } }\n\n@media (min-width: 1200px) {\n .grid-margin-xl-0 {\n margin-bottom: 0; } }\n\n.img-lg {\n width: 92px;\n height: 92px; }\n\n.img-md {\n width: 60px;\n height: 60px; }\n\n.img-sm {\n width: 43px;\n height: 43px; }\n\n.img-xs {\n width: 32px;\n height: 32px; }\n\n.img-ss, .image-grouped img, .table td img, .jsgrid .jsgrid-table td img,\n.table th img, .jsgrid .jsgrid-table th img, .settings-panel .color-tiles .tiles {\n width: 26px;\n height: 26px; }\n\n.stretch-card {\n display: flex;\n align-items: stretch;\n justify-content: stretch; }\n .stretch-card > .card {\n width: 100%;\n min-width: 100%; }\n\n.dot-indicator {\n width: 10px;\n height: 10px;\n border-radius: 100%; }\n\n@media (min-width: 576px) {\n .border-right-sm {\n border-right: 1px solid #f2f2f2; } }\n\n@media (min-width: 768px) {\n .border-right-md {\n border-right: 1px solid #f2f2f2; } }\n\n@media (min-width: 992px) {\n .border-right-lg {\n border-right: 1px solid #f2f2f2; } }\n\n@media (min-width: 576px) {\n .border-left-sm {\n border-left: 1px solid #f2f2f2; } }\n\n.border-strong {\n border-color: #262626; }\n\n.count-wrapper {\n position: relative; }\n .count-wrapper .count {\n position: absolute;\n width: auto;\n min-width: 8px;\n min-height: 8px;\n padding: 2px 4px;\n font-size: 75%;\n line-height: 1;\n vertical-align: middle;\n border-radius: 100%;\n color: #ffffff;\n font-weight: 500; }\n .count-wrapper .count.top-right {\n top: -5px;\n right: 0; }\n .count-wrapper .count.bottom-right {\n bottom: -5px;\n right: 0; }\n .count-wrapper .count.bottom-left {\n bottom: -5px;\n left: 0; }\n .count-wrapper .count.top-left {\n top: -5px;\n left: 0; }\n\n@media (min-width: 768px) {\n .border-left-md {\n border-left: 1px solid #f2f2f2; } }\n\n@media (min-width: 992px) {\n .border-left-lg {\n border-left: 1px solid #f2f2f2; } }\n\n.text-gray, .card-subtitle, .new-accounts ul.chats li.chat-persons a p.joined-date {\n color: #969696; }\n\n.text-black {\n color: #000; }\n\n.flex-grow {\n flex-grow: 1; }\n\n.ellipsis {\n max-width: 95%;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden; }\n\n.no-wrap {\n white-space: nowrap; }\n\n.status-indicator {\n border-width: 2px;\n border-style: solid;\n border-color: #ffaf00;\n border-radius: 100%;\n display: inline-block;\n height: 8px;\n width: 8px; }\n .status-indicator.online {\n border-color: #19d895; }\n .status-indicator.offline {\n border-color: #2196f3; }\n .status-indicator.away {\n border-color: #ffaf00; }\n\n.bg-transparent {\n background: transparent; }\n\n.aligner-wrapper {\n position: relative; }\n .aligner-wrapper .absolute {\n position: absolute; }\n .aligner-wrapper .absolute.absolute-center {\n top: 50%;\n transform: translateY(-50%);\n bottom: 0;\n right: 0;\n left: 0;\n margin: auto; }\n .aligner-wrapper .absolute.left {\n left: 0; }\n .aligner-wrapper .absolute.right {\n right: 0; }\n .aligner-wrapper .absolute.bottom {\n bottom: 0; }\n .aligner-wrapper .absolute.top {\n top: 0; }\n\n.image-grouped {\n display: flex; }\n .image-grouped img {\n border-radius: 100%;\n margin-left: -5px;\n border: 2px solid #ffffff; }\n .image-grouped img:first-child {\n margin-left: 0; }\n\n.v-strock-1 {\n width: 2px; }\n\n.v-strock-2 {\n width: 3px; }\n\n.v-strock-3 {\n width: 4px; }\n\n.v-strock-4 {\n width: 5px; }\n\n.h-strock-1 {\n height: 2px; }\n\n.h-strock-2 {\n height: 3px; }\n\n.h-strock-3 {\n height: 4px; }\n\n.h-strock-4 {\n height: 5px; }\n\n.bg-inverse-primary {\n background: rgba(33, 150, 243, 0.2); }\n\n.bg-inverse-secondary {\n background: rgba(230, 238, 242, 0.2); }\n\n.bg-inverse-success {\n background: rgba(25, 216, 149, 0.2); }\n\n.bg-inverse-info {\n background: rgba(136, 98, 224, 0.2); }\n\n.bg-inverse-warning {\n background: rgba(255, 175, 0, 0.2); }\n\n.bg-inverse-danger {\n background: rgba(255, 98, 88, 0.2); }\n\n.bg-inverse-light {\n background: rgba(251, 251, 251, 0.2); }\n\n.bg-inverse-dark {\n background: rgba(37, 44, 70, 0.2); }\n\n/* Demo Styles */\n.template-demo > .btn-group .btn, .template-demo > .btn-group .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .template-demo > .btn-group .ajax-file-upload, .template-demo > .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .template-demo > .btn-group .swal2-styled, .template-demo > .btn-group .wizard > .actions a, .wizard > .actions .template-demo > .btn-group a {\n margin: 0 !important; }\n\n.template-demo .progress {\n margin-top: 1.5rem; }\n\n.template-demo > h2,\n.template-demo > h3,\n.template-demo > h4,\n.template-demo > h5,\n.template-demo > h6,\n.template-demo > h1 {\n border-top: 1px solid #f2f2f2;\n padding: 0.5rem 0 0; }\n\n.template-demo .ul-slider.noUi-horizontal {\n margin-top: 2rem; }\n\n.template-demo .ul-slider.noUi-vertical {\n margin-right: 2rem; }\n\n.template-demo .dropdown {\n display: inline-block;\n margin-bottom: 0.5rem; }\n\n.template-demo nav .breadcrumb {\n margin-bottom: 1.375rem; }\n\n.template-demo nav:last-child .breadcrumb {\n margin-bottom: 0; }\n\n.template-demo .editable-form > .form-group {\n border-bottom: 1px solid #f2f2f2;\n padding-bottom: 0.8rem;\n margin-bottom: 0.8rem; }\n\n.template-demo .circle-progress {\n padding: 15px; }\n\n.demo-modal {\n position: static;\n display: block; }\n .demo-modal .modal-dialog {\n margin-top: 0 !important; }\n .demo-modal .modal-dialog.modal-lg {\n max-width: 100%; }\n\n.documentation {\n padding-top: 0;\n max-width: 100%; }\n .documentation .content-wrapper {\n padding-top: 0;\n min-height: calc(100vh - 60px); }\n\n.doc-table-contents,\n.doc-header {\n position: fixed; }\n\n.doc-header {\n padding-top: 24px;\n padding-bottom: 24px;\n z-index: 2;\n background: #f3f4fa; }\n\n.doc-content {\n padding-top: 157px; }\n\n.doc-table-contents {\n overflow: auto;\n max-height: calc(100% - 157px); }\n .doc-table-contents ul li {\n margin-top: 10px; }\n .doc-table-contents ul li:before {\n font-size: .5rem; }\n\n.doc-credits ul li {\n margin-bottom: 10px; }\n .doc-credits ul li a {\n margin-left: .25rem; }\n\n.loader-demo-box {\n width: 100%;\n height: 200px; }\n\n/* Dashboard */\n.card-statistics .highlight-icon {\n height: 53px;\n width: 53px;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: 50px; }\n .card-statistics .highlight-icon i {\n font-size: 27px; }\n\n.card-statistics .card-col {\n border-right: 1px solid #f2f2f2; }\n .card-statistics .card-col:last-child {\n border-right: none; }\n @media (max-width: 767.98px) {\n .card-statistics .card-col {\n padding-left: 0;\n padding-right: 0;\n position: relative;\n border: none; }\n .card-statistics .card-col:first-child:after, .card-statistics .card-col:first-child:before, .card-statistics .card-col:nth-child(2):after, .card-statistics .card-col:nth-child(2):before, .card-statistics .card-col:nth-child(3):after, .card-statistics .card-col:nth-child(3):before {\n content: \"\";\n position: absolute;\n background: #f2f2f2; }\n .card-statistics .card-col:first-child:before {\n bottom: 0;\n width: 94.2%;\n height: 1px;\n right: 0; }\n .card-statistics .card-col:first-child:after {\n bottom: 0;\n width: 1px;\n height: 100%;\n right: 0; }\n .card-statistics .card-col:nth-child(2):before {\n bottom: 0;\n width: 94.2%;\n height: 1px;\n left: 0; }\n .card-statistics .card-col:nth-child(3):before {\n width: 1px;\n height: 100%;\n right: 0; } }\n\n.card-revenue-table .revenue-item {\n border-bottom: 1px solid #f2f2f2; }\n .card-revenue-table .revenue-item:last-child {\n border-bottom: 0; }\n .card-revenue-table .revenue-item .revenue-desc {\n margin-right: auto;\n width: 80%; }\n .card-revenue-table .revenue-item .revenue-desc p {\n margin-bottom: 0; }\n .card-revenue-table .revenue-item .revenue-amount {\n margin-left: auto;\n width: 40%; }\n .card-revenue-table .revenue-item .revenue-amount p {\n font-size: 1.25rem;\n font-family: \"Poppins\", sans-serif;\n font-weight: 600;\n text-align: right; }\n .rtl .card-revenue-table .revenue-item .revenue-amount p {\n text-align: left; }\n\n.card-revenue {\n background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1);\n background-size: cover;\n color: #ffffff; }\n .card-revenue .highlight-text {\n font-size: 1.875rem;\n font-family: \"Poppins\", sans-serif;\n font-weight: 500; }\n .card-revenue .badge {\n background-color: rgba(255, 255, 255, 0.2);\n font-size: 1.125rem;\n padding: 0.5rem 1.25rem; }\n\n.card-weather {\n background: #e1ecff;\n background-image: linear-gradient(to left bottom, #d6eef6, #dff0fa, #e7f3fc, #eff6fe, #f6f9ff); }\n .card-weather .card-body {\n background: #ffffff; }\n .card-weather .card-body:first-child {\n background: url(\"../../images/samples/weather.svg\") no-repeat center;\n background-size: cover; }\n .card-weather .weather-date-location {\n padding: 0 0 38px; }\n .card-weather .weather-data {\n padding: 0 0 4.75rem; }\n .card-weather .weather-data i {\n font-size: 5.313rem;\n line-height: 1; }\n .card-weather .weakly-weather {\n background: #ffffff;\n overflow-x: auto; }\n .card-weather .weakly-weather .weakly-weather-item {\n flex: 0 0 14.28%;\n border-right: 1px solid #f2f2f2;\n padding: 1rem;\n text-align: center; }\n .card-weather .weakly-weather .weakly-weather-item i {\n font-size: 1.2rem; }\n .card-weather .weakly-weather .weakly-weather-item:last-child {\n border-right: 0; }\n .card-weather .weakly-weather .weakly-weather-item .symbol {\n color: #858585;\n font-size: 1.875rem;\n font-weight: 300; }\n\n.product-chart-wrapper {\n height: 92%; }\n\n#dashboardTrendingProgress {\n width: 60px; }\n\n.dashboard-bar-chart-legend .col {\n text-align: center;\n display: flex;\n align-items: center;\n flex-direction: column; }\n .dashboard-bar-chart-legend .col .bg {\n margin-left: auto;\n margin-right: auto;\n height: 5px;\n width: 30px;\n display: block;\n margin-top: 5px; }\n .dashboard-bar-chart-legend .col:nth-child(1) .bg {\n background: #8862e0; }\n .dashboard-bar-chart-legend .col:nth-child(2) .bg {\n background: #2196f3; }\n .dashboard-bar-chart-legend .col:nth-child(3) .bg {\n background: #ff6258; }\n\n.intro-banner {\n background: #dbe4ec;\n display: flex;\n align-items: center;\n padding: 20px;\n border-radius: 2px; }\n .intro-banner .banner-image {\n width: 24%;\n max-width: 100%; }\n .intro-banner .banner-image img {\n display: block;\n margin: auto; }\n .intro-banner .content-area {\n width: 58%;\n color: #000;\n display: flex;\n flex-direction: column;\n align-items: end; }\n\n/*-------------------------------------------------------------------*/\n/* === Components === */\n/* Accordions */\n.accordion .card {\n margin-bottom: 15px;\n border: 1px solid #f2f2f2;\n border-radius: 4px; }\n .accordion .card .card-header {\n background-color: transparent;\n border: none;\n padding: 0;\n font-size: 14px; }\n .accordion .card .card-header a {\n display: block;\n padding: 0.75rem 1.70rem 0.75rem 1.25rem;\n color: #252C46;\n text-decoration: none;\n font-size: 0.875rem;\n position: relative;\n font-weight: 600;\n transition-property: border-color, background;\n -webkit-transition-property: border-color, background;\n transition-duration: 0.5s;\n text-overflow: ellipsis;\n overflow: hidden;\n max-width: 100%;\n white-space: nowrap; }\n .accordion .card .card-header a:before {\n font-family: \"Material Design Icons\";\n position: absolute;\n right: 8px;\n top: 16px;\n font-size: 16px;\n display: block;\n font-weight: 500;\n color: #000; }\n .accordion .card .card-header a .card-icon {\n margin-right: 15px;\n font-size: 20px; }\n .accordion .card .card-body {\n font-size: 0.88rem;\n padding: 12px 20px 26px; }\n .accordion .card .card-body i {\n font-size: 1.25rem; }\n\n.accordion.basic-accordion .card .card-header a[aria-expanded=\"true\"] {\n background: #fbfbfb; }\n .accordion.basic-accordion .card .card-header a[aria-expanded=\"true\"]:before {\n content: \"\\F374\"; }\n\n.accordion.basic-accordion .card .card-header a[aria-expanded=\"false\"]:before {\n content: \"\\F415\"; }\n\n.accordion.accordion-multiple-outline .card:nth-child(5n+1) {\n border-color: #8862e0; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+1) .card-header a .card-icon {\n color: #8862e0; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+1) .card-header a:before {\n color: #8862e0; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+1) .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid #8862e0; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+1) .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid #ffffff; }\n\n.accordion.accordion-multiple-outline .card:nth-child(5n+2) {\n border-color: #19d895; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+2) .card-header a .card-icon {\n color: #19d895; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+2) .card-header a:before {\n color: #19d895; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+2) .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid #19d895; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+2) .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid #ffffff; }\n\n.accordion.accordion-multiple-outline .card:nth-child(5n+3) {\n border-color: #2196f3; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+3) .card-header a .card-icon {\n color: #2196f3; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+3) .card-header a:before {\n color: #2196f3; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+3) .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid #2196f3; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+3) .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid #ffffff; }\n\n.accordion.accordion-multiple-outline .card:nth-child(5n+4) {\n border-color: #ffaf00; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+4) .card-header a .card-icon {\n color: #ffaf00; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+4) .card-header a:before {\n color: #ffaf00; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+4) .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid #ffaf00; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+4) .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid #ffffff; }\n\n.accordion.accordion-multiple-outline .card:nth-child(5n+5) {\n border-color: #ff6258; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+5) .card-header a .card-icon {\n color: #ff6258; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+5) .card-header a:before {\n color: #ff6258; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+5) .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid #ff6258; }\n .accordion.accordion-multiple-outline .card:nth-child(5n+5) .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid #ffffff; }\n\n.accordion.accordion-multiple-outline .card .card-header a[aria-expanded=\"true\"]:before {\n content: \"\\F143\"; }\n\n.accordion.accordion-multiple-outline .card .card-header a[aria-expanded=\"false\"]:before {\n content: \"\\F140\"; }\n\n.accordion.accordion-multiple-filled .card {\n overflow: hidden; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+1) .card-header a {\n background: #8862e0; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+1) .card-header a[aria-expanded=\"true\"] {\n background: #8862e0; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+1) .card-header a[aria-expanded=\"false\"] {\n background: #8862e0; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+2) .card-header a {\n background: #19d895; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+2) .card-header a[aria-expanded=\"true\"] {\n background: #19d895; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+2) .card-header a[aria-expanded=\"false\"] {\n background: #19d895; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+3) .card-header a {\n background: #2196f3; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+3) .card-header a[aria-expanded=\"true\"] {\n background: #2196f3; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+3) .card-header a[aria-expanded=\"false\"] {\n background: #2196f3; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+4) .card-header a {\n background: #ffaf00; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+4) .card-header a[aria-expanded=\"true\"] {\n background: #ffaf00; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+4) .card-header a[aria-expanded=\"false\"] {\n background: #ffaf00; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+5) .card-header a {\n background: #ff6258; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+5) .card-header a[aria-expanded=\"true\"] {\n background: #ff6258; }\n .accordion.accordion-multiple-filled .card:nth-child(5n+5) .card-header a[aria-expanded=\"false\"] {\n background: #ff6258; }\n .accordion.accordion-multiple-filled .card .card-header a {\n padding-left: 2.5rem;\n padding-right: 1rem;\n color: #ffffff;\n font-weight: 300; }\n .accordion.accordion-multiple-filled .card .card-header a:before {\n left: 10px;\n right: unset;\n top: 12px;\n color: #ffffff; }\n .accordion.accordion-multiple-filled .card .card-header a[aria-expanded=\"true\"]:before {\n content: \"\\F143\"; }\n .accordion.accordion-multiple-filled .card .card-header a[aria-expanded=\"false\"]:before {\n content: \"\\F140\"; }\n\n.accordion.accordion-solid-bg .card {\n background: #fbfbfb; }\n .accordion.accordion-solid-bg .card .card-header a {\n color: #8862e0;\n font-weight: 400; }\n .accordion.accordion-solid-bg .card .card-header a:before {\n top: 12px;\n color: #8862e0; }\n .accordion.accordion-solid-bg .card .card-header a[aria-expanded=\"true\"] {\n background: #fbfbfb; }\n .accordion.accordion-solid-bg .card .card-header a[aria-expanded=\"true\"]:before {\n content: \"\\F143\"; }\n .accordion.accordion-solid-bg .card .card-header a[aria-expanded=\"false\"] {\n background: #ffffff; }\n .accordion.accordion-solid-bg .card .card-header a[aria-expanded=\"false\"]:before {\n content: \"\\F140\"; }\n\n.accordion.accordion-body-filled .card {\n border-top: none;\n border-right: none;\n border-left: none;\n margin-bottom: 0; }\n .accordion.accordion-body-filled .card .card-header a {\n padding: 23px 10px 23px 2.5rem;\n font-weight: 300; }\n .accordion.accordion-body-filled .card .card-header a:before {\n right: unset;\n left: 8px;\n top: 22px;\n font-size: 24px;\n transition-duration: 0.3s;\n transition-property: color; }\n .accordion.accordion-body-filled .card .card-header a[aria-expanded=\"true\"]:before {\n content: \"\\F376\";\n color: #2196f3; }\n .accordion.accordion-body-filled .card .card-header a[aria-expanded=\"false\"]:before {\n content: \"\\F417\";\n color: #e6eef2; }\n .accordion.accordion-body-filled .card .card-body {\n background: #2196f3;\n color: #ffffff;\n border-radius: 4px; }\n\n.accordion.accordion-minimal .card {\n border-top: none;\n border-right: none;\n border-left: none;\n margin-bottom: 0; }\n .accordion.accordion-minimal .card .card-header a {\n padding: 23px 20px;\n transition-duration: 0.4s;\n transition-property: font-weight; }\n .accordion.accordion-minimal .card .card-header a[aria-expanded=\"true\"] {\n font-weight: 600; }\n .accordion.accordion-minimal .card .card-header a[aria-expanded=\"false\"] {\n font-weight: 300; }\n .accordion.accordion-minimal .card .card-body {\n padding: 30px 0; }\n\n/* inverse buttons */\n.accordion-inverse-primary {\n background: rgba(33, 150, 243, 0.16);\n color: #2196f3;\n border: none; }\n .accordion-inverse-primary .card-header {\n color: #2196f3;\n border: none; }\n .accordion-inverse-primary .card-header a,\n .accordion-inverse-primary .card-header h1,\n .accordion-inverse-primary .card-header h2,\n .accordion-inverse-primary .card-header h3,\n .accordion-inverse-primary .card-header h4,\n .accordion-inverse-primary .card-header h5,\n .accordion-inverse-primary .card-header h6,\n .accordion-inverse-primary .card-header p,\n .accordion-inverse-primary .card-header span {\n color: #2196f3 !important; }\n .accordion-inverse-primary .card-header a {\n border-color: #2196f3; }\n .accordion-inverse-primary .card-header a:before {\n color: #2196f3 !important; }\n .accordion-inverse-primary .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid rgba(33, 150, 243, 0.16); }\n .accordion-inverse-primary .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid transparent; }\n\n.accordion-inverse-secondary {\n background: rgba(230, 238, 242, 0.16);\n color: #e6eef2;\n border: none; }\n .accordion-inverse-secondary .card-header {\n color: #e6eef2;\n border: none; }\n .accordion-inverse-secondary .card-header a,\n .accordion-inverse-secondary .card-header h1,\n .accordion-inverse-secondary .card-header h2,\n .accordion-inverse-secondary .card-header h3,\n .accordion-inverse-secondary .card-header h4,\n .accordion-inverse-secondary .card-header h5,\n .accordion-inverse-secondary .card-header h6,\n .accordion-inverse-secondary .card-header p,\n .accordion-inverse-secondary .card-header span {\n color: #e6eef2 !important; }\n .accordion-inverse-secondary .card-header a {\n border-color: #e6eef2; }\n .accordion-inverse-secondary .card-header a:before {\n color: #e6eef2 !important; }\n .accordion-inverse-secondary .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid rgba(230, 238, 242, 0.16); }\n .accordion-inverse-secondary .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid transparent; }\n\n.accordion-inverse-success {\n background: rgba(25, 216, 149, 0.16);\n color: #19d895;\n border: none; }\n .accordion-inverse-success .card-header {\n color: #19d895;\n border: none; }\n .accordion-inverse-success .card-header a,\n .accordion-inverse-success .card-header h1,\n .accordion-inverse-success .card-header h2,\n .accordion-inverse-success .card-header h3,\n .accordion-inverse-success .card-header h4,\n .accordion-inverse-success .card-header h5,\n .accordion-inverse-success .card-header h6,\n .accordion-inverse-success .card-header p,\n .accordion-inverse-success .card-header span {\n color: #19d895 !important; }\n .accordion-inverse-success .card-header a {\n border-color: #19d895; }\n .accordion-inverse-success .card-header a:before {\n color: #19d895 !important; }\n .accordion-inverse-success .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid rgba(25, 216, 149, 0.16); }\n .accordion-inverse-success .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid transparent; }\n\n.accordion-inverse-info {\n background: rgba(136, 98, 224, 0.16);\n color: #8862e0;\n border: none; }\n .accordion-inverse-info .card-header {\n color: #8862e0;\n border: none; }\n .accordion-inverse-info .card-header a,\n .accordion-inverse-info .card-header h1,\n .accordion-inverse-info .card-header h2,\n .accordion-inverse-info .card-header h3,\n .accordion-inverse-info .card-header h4,\n .accordion-inverse-info .card-header h5,\n .accordion-inverse-info .card-header h6,\n .accordion-inverse-info .card-header p,\n .accordion-inverse-info .card-header span {\n color: #8862e0 !important; }\n .accordion-inverse-info .card-header a {\n border-color: #8862e0; }\n .accordion-inverse-info .card-header a:before {\n color: #8862e0 !important; }\n .accordion-inverse-info .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid rgba(136, 98, 224, 0.16); }\n .accordion-inverse-info .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid transparent; }\n\n.accordion-inverse-warning {\n background: rgba(255, 175, 0, 0.16);\n color: #ffaf00;\n border: none; }\n .accordion-inverse-warning .card-header {\n color: #ffaf00;\n border: none; }\n .accordion-inverse-warning .card-header a,\n .accordion-inverse-warning .card-header h1,\n .accordion-inverse-warning .card-header h2,\n .accordion-inverse-warning .card-header h3,\n .accordion-inverse-warning .card-header h4,\n .accordion-inverse-warning .card-header h5,\n .accordion-inverse-warning .card-header h6,\n .accordion-inverse-warning .card-header p,\n .accordion-inverse-warning .card-header span {\n color: #ffaf00 !important; }\n .accordion-inverse-warning .card-header a {\n border-color: #ffaf00; }\n .accordion-inverse-warning .card-header a:before {\n color: #ffaf00 !important; }\n .accordion-inverse-warning .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid rgba(255, 175, 0, 0.16); }\n .accordion-inverse-warning .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid transparent; }\n\n.accordion-inverse-danger {\n background: rgba(255, 98, 88, 0.16);\n color: #ff6258;\n border: none; }\n .accordion-inverse-danger .card-header {\n color: #ff6258;\n border: none; }\n .accordion-inverse-danger .card-header a,\n .accordion-inverse-danger .card-header h1,\n .accordion-inverse-danger .card-header h2,\n .accordion-inverse-danger .card-header h3,\n .accordion-inverse-danger .card-header h4,\n .accordion-inverse-danger .card-header h5,\n .accordion-inverse-danger .card-header h6,\n .accordion-inverse-danger .card-header p,\n .accordion-inverse-danger .card-header span {\n color: #ff6258 !important; }\n .accordion-inverse-danger .card-header a {\n border-color: #ff6258; }\n .accordion-inverse-danger .card-header a:before {\n color: #ff6258 !important; }\n .accordion-inverse-danger .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid rgba(255, 98, 88, 0.16); }\n .accordion-inverse-danger .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid transparent; }\n\n.accordion-inverse-light {\n background: rgba(251, 251, 251, 0.16);\n color: #fbfbfb;\n border: none; }\n .accordion-inverse-light .card-header {\n color: #fbfbfb;\n border: none; }\n .accordion-inverse-light .card-header a,\n .accordion-inverse-light .card-header h1,\n .accordion-inverse-light .card-header h2,\n .accordion-inverse-light .card-header h3,\n .accordion-inverse-light .card-header h4,\n .accordion-inverse-light .card-header h5,\n .accordion-inverse-light .card-header h6,\n .accordion-inverse-light .card-header p,\n .accordion-inverse-light .card-header span {\n color: #fbfbfb !important; }\n .accordion-inverse-light .card-header a {\n border-color: #fbfbfb; }\n .accordion-inverse-light .card-header a:before {\n color: #fbfbfb !important; }\n .accordion-inverse-light .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid rgba(251, 251, 251, 0.16); }\n .accordion-inverse-light .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid transparent; }\n\n.accordion-inverse-dark {\n background: rgba(37, 44, 70, 0.16);\n color: #252C46;\n border: none; }\n .accordion-inverse-dark .card-header {\n color: #252C46;\n border: none; }\n .accordion-inverse-dark .card-header a,\n .accordion-inverse-dark .card-header h1,\n .accordion-inverse-dark .card-header h2,\n .accordion-inverse-dark .card-header h3,\n .accordion-inverse-dark .card-header h4,\n .accordion-inverse-dark .card-header h5,\n .accordion-inverse-dark .card-header h6,\n .accordion-inverse-dark .card-header p,\n .accordion-inverse-dark .card-header span {\n color: #252C46 !important; }\n .accordion-inverse-dark .card-header a {\n border-color: #252C46; }\n .accordion-inverse-dark .card-header a:before {\n color: #252C46 !important; }\n .accordion-inverse-dark .card-header a[aria-expanded=\"true\"] {\n border-bottom: 1px solid rgba(37, 44, 70, 0.16); }\n .accordion-inverse-dark .card-header a[aria-expanded=\"false\"] {\n border-bottom: 1px solid transparent; }\n\n.accordion-outline-primary .card {\n border-color: #2196f3; }\n .accordion-outline-primary .card .card-header {\n border: none; }\n .accordion-outline-primary .card .card-header a {\n border-color: #2196f3; }\n .accordion-outline-primary .card .card-header a:before {\n color: #2196f3; }\n\n.accordion-outline-secondary .card {\n border-color: #e6eef2; }\n .accordion-outline-secondary .card .card-header {\n border: none; }\n .accordion-outline-secondary .card .card-header a {\n border-color: #e6eef2; }\n .accordion-outline-secondary .card .card-header a:before {\n color: #e6eef2; }\n\n.accordion-outline-success .card {\n border-color: #19d895; }\n .accordion-outline-success .card .card-header {\n border: none; }\n .accordion-outline-success .card .card-header a {\n border-color: #19d895; }\n .accordion-outline-success .card .card-header a:before {\n color: #19d895; }\n\n.accordion-outline-info .card {\n border-color: #8862e0; }\n .accordion-outline-info .card .card-header {\n border: none; }\n .accordion-outline-info .card .card-header a {\n border-color: #8862e0; }\n .accordion-outline-info .card .card-header a:before {\n color: #8862e0; }\n\n.accordion-outline-warning .card {\n border-color: #ffaf00; }\n .accordion-outline-warning .card .card-header {\n border: none; }\n .accordion-outline-warning .card .card-header a {\n border-color: #ffaf00; }\n .accordion-outline-warning .card .card-header a:before {\n color: #ffaf00; }\n\n.accordion-outline-danger .card {\n border-color: #ff6258; }\n .accordion-outline-danger .card .card-header {\n border: none; }\n .accordion-outline-danger .card .card-header a {\n border-color: #ff6258; }\n .accordion-outline-danger .card .card-header a:before {\n color: #ff6258; }\n\n.accordion-outline-light .card {\n border-color: #fbfbfb; }\n .accordion-outline-light .card .card-header {\n border: none; }\n .accordion-outline-light .card .card-header a {\n border-color: #fbfbfb; }\n .accordion-outline-light .card .card-header a:before {\n color: #fbfbfb; }\n\n.accordion-outline-dark .card {\n border-color: #252C46; }\n .accordion-outline-dark .card .card-header {\n border: none; }\n .accordion-outline-dark .card .card-header a {\n border-color: #252C46; }\n .accordion-outline-dark .card .card-header a:before {\n color: #252C46; }\n\n/* Badges */\n.badge {\n border-radius: 0.25rem;\n font-size: 11px;\n font-weight: initial;\n line-height: 1;\n padding: 0.2rem 0.3rem;\n font-family: \"Poppins\", sans-serif;\n font-weight: 600; }\n .badge:empty {\n display: inline-block;\n min-width: 10px;\n min-height: 10px;\n padding: 0;\n margin-right: 10px;\n border-radius: 100%; }\n .rtl .badge:empty {\n margin-left: 10px;\n margin-right: 0; }\n .badge.badge-pill {\n border-radius: 10rem; }\n .badge.badge-fw {\n min-width: 70px; }\n .badge.badge-lg {\n padding: 0.4rem 0.9rem; }\n\n/*Badge variations*/\n.badge-primary {\n border: 1px solid #2196f3;\n color: #ffffff; }\n\n.badge-secondary {\n border: 1px solid #e6eef2;\n color: #ffffff; }\n\n.badge-success, .preview-list .preview-item .preview-thumbnail .badge.badge-online {\n border: 1px solid #19d895;\n color: #ffffff; }\n\n.badge-info, .preview-list .preview-item .preview-thumbnail .badge.badge-offline {\n border: 1px solid #8862e0;\n color: #ffffff; }\n\n.badge-warning, .preview-list .preview-item .preview-thumbnail .badge.badge-busy {\n border: 1px solid #ffaf00;\n color: #ffffff; }\n\n.badge-danger {\n border: 1px solid #ff6258;\n color: #ffffff; }\n\n.badge-light {\n border: 1px solid #fbfbfb;\n color: #ffffff; }\n\n.badge-dark {\n border: 1px solid #252C46;\n color: #ffffff; }\n\n/*Badge inverse variations*/\n.badge-inverse-primary {\n background: rgba(33, 150, 243, 0.3);\n color: #2196f3; }\n\n.badge-inverse-secondary {\n background: rgba(230, 238, 242, 0.3);\n color: #e6eef2; }\n\n.badge-inverse-success {\n background: rgba(25, 216, 149, 0.3);\n color: #19d895; }\n\n.badge-inverse-info {\n background: rgba(136, 98, 224, 0.3);\n color: #8862e0; }\n\n.badge-inverse-warning {\n background: rgba(255, 175, 0, 0.3);\n color: #ffaf00; }\n\n.badge-inverse-danger {\n background: rgba(255, 98, 88, 0.3);\n color: #ff6258; }\n\n.badge-inverse-light {\n background: rgba(251, 251, 251, 0.3);\n color: #fbfbfb; }\n\n.badge-inverse-dark {\n background: rgba(37, 44, 70, 0.3);\n color: #252C46; }\n\n/*Badge outlined variations*/\n.badge-outline-primary {\n color: #2196f3;\n border: 1px solid #2196f3; }\n\n.badge-outline-secondary {\n color: #e6eef2;\n border: 1px solid #e6eef2; }\n\n.badge-outline-success {\n color: #19d895;\n border: 1px solid #19d895; }\n\n.badge-outline-info {\n color: #8862e0;\n border: 1px solid #8862e0; }\n\n.badge-outline-warning {\n color: #ffaf00;\n border: 1px solid #ffaf00; }\n\n.badge-outline-danger {\n color: #ff6258;\n border: 1px solid #ff6258; }\n\n.badge-outline-light {\n color: #fbfbfb;\n border: 1px solid #fbfbfb; }\n\n.badge-outline-dark {\n color: #252C46;\n border: 1px solid #252C46; }\n\n/* Bootstrap Alerts */\n.alert {\n font-size: 0.875rem; }\n .alert i {\n font-size: 1.25rem;\n margin-right: 1.25rem;\n vertical-align: middle;\n line-height: 0.5; }\n\n.alert-primary {\n color: #1972b9;\n background-color: rgba(33, 150, 243, 0.2);\n border-color: #1e8ae0; }\n .alert-primary hr {\n border-top-color: #1b7cca; }\n .alert-primary .alert-link {\n color: #13568c; }\n\n.alert-secondary {\n color: #afb5b8;\n background-color: rgba(230, 238, 242, 0.2);\n border-color: #d4dbdf; }\n .alert-secondary hr {\n border-top-color: #c5cfd4; }\n .alert-secondary .alert-link {\n color: #949ca0; }\n\n.alert-success {\n color: #13a471;\n background-color: rgba(25, 216, 149, 0.2);\n border-color: #17c789; }\n .alert-success hr {\n border-top-color: #14b079; }\n .alert-success .alert-link {\n color: #0e7652; }\n\n.alert-info {\n color: #674aaa;\n background-color: rgba(136, 98, 224, 0.2);\n border-color: #7d5ace; }\n .alert-info hr {\n border-top-color: #6e46c8; }\n .alert-info .alert-link {\n color: #513b86; }\n\n.alert-warning {\n color: #c28500;\n background-color: rgba(255, 175, 0, 0.2);\n border-color: #eba100; }\n .alert-warning hr {\n border-top-color: #d29000; }\n .alert-warning .alert-link {\n color: #8f6200; }\n\n.alert-danger {\n color: #c24a43;\n background-color: rgba(255, 98, 88, 0.2);\n border-color: #eb5a51; }\n .alert-danger hr {\n border-top-color: #e8443a; }\n .alert-danger .alert-link {\n color: #9f3933; }\n\n.alert-light {\n color: #bfbfbf;\n background-color: rgba(251, 251, 251, 0.2);\n border-color: #e7e7e7; }\n .alert-light hr {\n border-top-color: #dadada; }\n .alert-light .alert-link {\n color: #a6a6a6; }\n\n.alert-dark {\n color: #1c2135;\n background-color: rgba(37, 44, 70, 0.2);\n border-color: #222840; }\n .alert-dark hr {\n border-top-color: #191e2f; }\n .alert-dark .alert-link {\n color: #0a0c14; }\n\n.alert-fill-primary {\n color: #ffffff;\n background-color: #2196f3;\n border-color: #2196f3; }\n .alert-fill-primary hr {\n border-top-color: #0d8aee; }\n .alert-fill-primary .alert-link {\n color: #e6e6e6; }\n\n.alert-fill-secondary {\n color: #ffffff;\n background-color: #e6eef2;\n border-color: #e6eef2; }\n .alert-fill-secondary hr {\n border-top-color: #d5e3e9; }\n .alert-fill-secondary .alert-link {\n color: #e6e6e6; }\n\n.alert-fill-success {\n color: #ffffff;\n background-color: #19d895;\n border-color: #19d895; }\n .alert-fill-success hr {\n border-top-color: #16c185; }\n .alert-fill-success .alert-link {\n color: #e6e6e6; }\n\n.alert-fill-info {\n color: #ffffff;\n background-color: #8862e0;\n border-color: #8862e0; }\n .alert-fill-info hr {\n border-top-color: #784ddc; }\n .alert-fill-info .alert-link {\n color: #e6e6e6; }\n\n.alert-fill-warning {\n color: #ffffff;\n background-color: #ffaf00;\n border-color: #ffaf00; }\n .alert-fill-warning hr {\n border-top-color: #e69e00; }\n .alert-fill-warning .alert-link {\n color: #e6e6e6; }\n\n.alert-fill-danger {\n color: #ffffff;\n background-color: #ff6258;\n border-color: #ff6258; }\n .alert-fill-danger hr {\n border-top-color: #ff4a3f; }\n .alert-fill-danger .alert-link {\n color: #e6e6e6; }\n\n.alert-fill-light {\n color: #ffffff;\n background-color: #fbfbfb;\n border-color: #fbfbfb; }\n .alert-fill-light hr {\n border-top-color: #eeeeee; }\n .alert-fill-light .alert-link {\n color: #e6e6e6; }\n\n.alert-fill-dark {\n color: #ffffff;\n background-color: #252C46;\n border-color: #252C46; }\n .alert-fill-dark hr {\n border-top-color: #1c2235; }\n .alert-fill-dark .alert-link {\n color: #e6e6e6; }\n\n/* Bootstrap Progress */\n.progress {\n border-radius: 3px;\n height: 8px; }\n .progress .progress-bar {\n border-radius: 3px; }\n .progress.grouped .progress-bar {\n border-radius: 0px; }\n .progress.grouped .progress-bar:last-child {\n border-radius: 0px 3px 3px 0px; }\n .progress.progress-sm {\n height: 0.375rem; }\n .progress.progress-md {\n height: 8px; }\n .progress.progress-lg {\n height: 15px; }\n .progress.progress-xl {\n height: 18px; }\n\n/* Buttons */\n.btn, .ajax-upload-dragdrop .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel, .wizard > .actions a {\n font-size: 0.875rem;\n line-height: 1;\n font-family: \"Poppins\", sans-serif; }\n .btn i, .ajax-upload-dragdrop .ajax-file-upload i, .swal2-modal .swal2-buttonswrapper .swal2-styled i, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm i, .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel i, .wizard > .actions a i {\n margin-right: 0.3125rem;\n font-size: inherit; }\n .btn .btn-label:before, .ajax-upload-dragdrop .ajax-file-upload .btn-label:before, .swal2-modal .swal2-buttonswrapper .swal2-styled .btn-label:before, .wizard > .actions a .btn-label:before {\n font-size: 1rem;\n line-height: 5px;\n vertical-align: middle; }\n .btn .btn-label.btn-label-left, .ajax-upload-dragdrop .ajax-file-upload .btn-label.btn-label-left, .swal2-modal .swal2-buttonswrapper .swal2-styled .btn-label.btn-label-left, .wizard > .actions a .btn-label.btn-label-left {\n margin-right: 5px; }\n .btn .btn-label.btn-label-right, .ajax-upload-dragdrop .ajax-file-upload .btn-label.btn-label-right, .swal2-modal .swal2-buttonswrapper .swal2-styled .btn-label.btn-label-right, .wizard > .actions a .btn-label.btn-label-right {\n margin-left: 5px; }\n .btn.btn-rounded, .ajax-upload-dragdrop .btn-rounded.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-rounded.swal2-styled, .wizard > .actions a.btn-rounded {\n border-radius: 50px; }\n .btn.btn-icons, .ajax-upload-dragdrop .btn-icons.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-icons.swal2-styled, .wizard > .actions a.btn-icons {\n width: 40px;\n height: 40px;\n padding: 10px;\n text-align: center;\n vertical-align: middle; }\n .btn.btn-icons i, .ajax-upload-dragdrop .btn-icons.ajax-file-upload i, .swal2-modal .swal2-buttonswrapper .btn-icons.swal2-styled i, .wizard > .actions a.btn-icons i {\n margin: auto;\n line-height: initial; }\n .btn.btn-fw, .ajax-upload-dragdrop .btn-fw.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-fw.swal2-styled, .wizard > .actions a.btn-fw {\n min-width: 120px; }\n .btn.icon-btn i, .ajax-upload-dragdrop .icon-btn.ajax-file-upload i, .swal2-modal .swal2-buttonswrapper .icon-btn.swal2-styled i, .wizard > .actions a.icon-btn i {\n margin-right: 0; }\n .btn.social-btn, .ajax-upload-dragdrop .social-btn.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .social-btn.swal2-styled, .wizard > .actions a.social-btn {\n padding: 13px; }\n .btn.social-btn i, .ajax-upload-dragdrop .social-btn.ajax-file-upload i, .swal2-modal .swal2-buttonswrapper .social-btn.swal2-styled i, .wizard > .actions a.social-btn i {\n margin-right: 0;\n font-size: 1rem; }\n .btn.btn-sm, .btn-group-sm > .btn, .ajax-upload-dragdrop .btn-group-sm > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group-sm > .swal2-styled, .wizard > .actions .btn-group-sm > a, .ajax-upload-dragdrop .btn-sm.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-sm.swal2-styled, .wizard > .actions a.btn-sm {\n font-size: 0.875rem; }\n .btn.btn-lg, .btn-group-lg > .btn, .ajax-upload-dragdrop .btn-group-lg > .ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-group-lg > .swal2-styled, .wizard > .actions .btn-group-lg > a, .ajax-upload-dragdrop .btn-lg.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-lg.swal2-styled, .wizard > .actions a.btn-lg {\n font-size: 0.875rem; }\n .btn.btn-xs, .ajax-upload-dragdrop .btn-xs.ajax-file-upload, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-submit, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-cancel, .swal2-modal .swal2-buttonswrapper .btn-xs.swal2-styled, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-submit, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-submit, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-cancel, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-cancel, .wizard > .actions a.btn-xs {\n padding: 0.5rem 0.75rem;\n font-size: 0.625rem; }\n .btn.btn-transparent, .ajax-upload-dragdrop .btn-transparent.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-transparent.swal2-styled, .wizard > .actions a.btn-transparent {\n background: transparent; }\n .btn.btn-danger, .ajax-upload-dragdrop .btn-danger.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-danger.swal2-styled, .wizard > .actions a.btn-danger, .btn.btn-info, .ajax-upload-dragdrop .btn-info.ajax-file-upload, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-submit, .swal2-modal .swal2-buttonswrapper .btn-info.swal2-styled, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-submit, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-submit, .wizard > .actions a.btn-info, .btn.btn-success, .ajax-upload-dragdrop .btn-success.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-success.swal2-styled, .wizard > .actions a.btn-success, .btn.btn-teal, .ajax-upload-dragdrop .btn-teal.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-teal.swal2-styled, .wizard > .actions a.btn-teal, .btn.btn-warning, .ajax-upload-dragdrop .btn-warning.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-warning.swal2-styled, .wizard > .actions a.btn-warning {\n color: #ffffff; }\n .btn.btn-outline-light, .ajax-upload-dragdrop .btn-outline-light.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-outline-light.swal2-styled, .wizard > .actions a.btn-outline-light {\n border-color: #d5d5d5;\n color: #d5d5d5; }\n .btn.btn-outline-secondary, .ajax-upload-dragdrop .btn-outline-secondary.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-outline-secondary.swal2-styled, .wizard > .actions a.btn-outline-secondary {\n color: rgba(0, 0, 0, 0.5); }\n .btn.btn-inverse-secondary, .ajax-upload-dragdrop .btn-inverse-secondary.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-inverse-secondary.swal2-styled, .wizard > .actions a.btn-inverse-secondary {\n background-color: rgba(230, 238, 242, 0.5);\n color: rgba(0, 0, 0, 0.5); }\n .btn.btn-inverse-secondary:hover, .ajax-upload-dragdrop .btn-inverse-secondary.ajax-file-upload:hover, .swal2-modal .swal2-buttonswrapper .btn-inverse-secondary.swal2-styled:hover, .wizard > .actions a.btn-inverse-secondary:hover {\n color: rgba(0, 0, 0, 0.5); }\n .btn.btn-inverse-light, .ajax-upload-dragdrop .btn-inverse-light.ajax-file-upload, .swal2-modal .swal2-buttonswrapper .btn-inverse-light.swal2-styled, .wizard > .actions a.btn-inverse-light {\n background-color: #ffffff;\n color: rgba(0, 0, 0, 0.5);\n border-color: #d9d9d9; }\n .btn.btn-inverse-light:hover, .ajax-upload-dragdrop .btn-inverse-light.ajax-file-upload:hover, .swal2-modal .swal2-buttonswrapper .btn-inverse-light.swal2-styled:hover, .wizard > .actions a.btn-inverse-light:hover {\n color: rgba(0, 0, 0, 0.5);\n border-color: #d9d9d9; }\n\n.btn-group {\n border: 1px solid #f2f2f2;\n border-radius: 0.1875rem; }\n .btn-group .btn, .btn-group .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .btn-group .ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled, .btn-group .wizard > .actions a, .wizard > .actions .btn-group a {\n border-top: none;\n border-bottom: none;\n border-left: none; }\n .btn-group .btn:last-child, .btn-group .ajax-upload-dragdrop .ajax-file-upload:last-child, .ajax-upload-dragdrop .btn-group .ajax-file-upload:last-child, .btn-group .swal2-modal .swal2-buttonswrapper .swal2-styled:last-child, .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled:last-child, .btn-group .wizard > .actions a:last-child, .wizard > .actions .btn-group a:last-child {\n border-right: none; }\n .btn-group .btn.btn-primary, .btn-group .ajax-upload-dragdrop .btn-primary.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-primary.ajax-file-upload, .btn-group .ajax-upload-dragdrop .wizard > .actions a.ajax-file-upload, .ajax-upload-dragdrop .wizard > .actions .btn-group a.ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn-primary.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-primary.swal2-styled, .btn-group .swal2-modal .swal2-buttonswrapper .wizard > .actions a.swal2-styled, .swal2-modal .swal2-buttonswrapper .wizard > .actions .btn-group a.swal2-styled, .btn-group .wizard > .actions .swal2-modal .swal2-buttonswrapper a.swal2-styled.swal2-confirm, .wizard > .actions .swal2-modal .swal2-buttonswrapper .btn-group a.swal2-styled.swal2-confirm, .btn-group .wizard > .actions .swal2-modal .swal2-buttonswrapper a.swal2-styled.swal2-cancel, .wizard > .actions .swal2-modal .swal2-buttonswrapper .btn-group a.swal2-styled.swal2-cancel, .btn-group .wizard > .actions a, .wizard > .actions .btn-group a {\n border-color: #128ff2; }\n .btn-group .btn.btn-secondary, .btn-group .ajax-upload-dragdrop .btn-secondary.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-secondary.ajax-file-upload, .btn-group .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-cancel, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group .ajax-file-upload.editable-cancel, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .btn-group .ajax-file-upload.editable-cancel, .btn-group .swal2-modal .swal2-buttonswrapper .btn-secondary.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-secondary.swal2-styled, .btn-group .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-cancel, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group .swal2-styled.editable-cancel, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled.editable-cancel, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group .btn.editable-cancel, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions .btn-group a.editable-cancel, .btn-group .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-cancel, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group a.editable-cancel, .btn-group .wizard > .actions a.btn-secondary, .wizard > .actions .btn-group a.btn-secondary {\n border-color: #dce7ed; }\n .btn-group .btn.btn-info, .btn-group .ajax-upload-dragdrop .btn-info.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-info.ajax-file-upload, .btn-group .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-submit, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group .ajax-file-upload.editable-submit, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .btn-group .ajax-file-upload.editable-submit, .btn-group .swal2-modal .swal2-buttonswrapper .btn-info.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-info.swal2-styled, .btn-group .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-submit, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group .swal2-styled.editable-submit, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .btn-group .swal2-styled.editable-submit, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group .btn.editable-submit, .btn-group .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions .btn-group a.editable-submit, .btn-group .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-submit, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons .btn-group a.editable-submit, .btn-group .wizard > .actions a.btn-info, .wizard > .actions .btn-group a.btn-info {\n border-color: #7e55dd; }\n .btn-group .btn.btn-warning, .btn-group .ajax-upload-dragdrop .btn-warning.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-warning.ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn-warning.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-warning.swal2-styled, .btn-group .wizard > .actions a.btn-warning, .wizard > .actions .btn-group a.btn-warning {\n border-color: #f0a500; }\n .btn-group .btn.btn-success, .btn-group .ajax-upload-dragdrop .btn-success.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-success.ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn-success.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-success.swal2-styled, .btn-group .wizard > .actions a.btn-success, .wizard > .actions .btn-group a.btn-success {\n border-color: #17ca8c; }\n .btn-group .btn.btn-danger, .btn-group .ajax-upload-dragdrop .btn-danger.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-danger.ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn-danger.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-danger.swal2-styled, .btn-group .wizard > .actions a.btn-danger, .wizard > .actions .btn-group a.btn-danger {\n border-color: #ff5449; }\n .btn-group .btn.btn-dark, .btn-group .ajax-upload-dragdrop .btn-dark.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-dark.ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn-dark.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-dark.swal2-styled, .btn-group .wizard > .actions a.btn-dark, .wizard > .actions .btn-group a.btn-dark {\n border-color: #20263c; }\n .btn-group .btn.btn-light, .btn-group .ajax-upload-dragdrop .btn-light.ajax-file-upload, .ajax-upload-dragdrop .btn-group .btn-light.ajax-file-upload, .btn-group .swal2-modal .swal2-buttonswrapper .btn-light.swal2-styled, .swal2-modal .swal2-buttonswrapper .btn-group .btn-light.swal2-styled, .btn-group .wizard > .actions a.btn-light, .wizard > .actions .btn-group a.btn-light {\n border-color: #f3f3f3; }\n\n/*social buttons*/\n.btn-twitter {\n background: #4DBFF5;\n color: #ffffff; }\n .btn-twitter:hover {\n background: #1daef2; }\n .btn-twitter.btn-link {\n background: none;\n color: #4DBFF5; }\n .btn-twitter.btn-link:hover {\n color: #1daef2; }\n\n.btn-facebook {\n background: #648ACA;\n color: #ffffff; }\n .btn-facebook:hover {\n background: #406ebb; }\n .btn-facebook.btn-link {\n background: none;\n color: #648ACA; }\n .btn-facebook.btn-link:hover {\n color: #406ebb; }\n\n.btn-google {\n background: #E55F4B;\n color: #ffffff; }\n .btn-google:hover {\n background: #dd3820; }\n .btn-google.btn-link {\n background: none;\n color: #E55F4B; }\n .btn-google.btn-link:hover {\n color: #dd3820; }\n\n.btn-linkedin {\n background: #0177b4;\n color: #ffffff; }\n .btn-linkedin:hover {\n background: #015581; }\n .btn-linkedin.btn-link {\n background: none;\n color: #0177b4; }\n .btn-linkedin.btn-link:hover {\n color: #015581; }\n\n.btn-pinterest {\n background: #cc2127;\n color: #ffffff; }\n .btn-pinterest:hover {\n background: #a01a1f; }\n .btn-pinterest.btn-link {\n background: none;\n color: #cc2127; }\n .btn-pinterest.btn-link:hover {\n color: #a01a1f; }\n\n.btn-youtube {\n background: #e52d27;\n color: #ffffff; }\n .btn-youtube:hover {\n background: #c21d17; }\n .btn-youtube.btn-link {\n background: none;\n color: #e52d27; }\n .btn-youtube.btn-link:hover {\n color: #c21d17; }\n\n.btn-github {\n background: #333333;\n color: #ffffff; }\n .btn-github:hover {\n background: #1a1a1a; }\n .btn-github.btn-link {\n background: none;\n color: #333333; }\n .btn-github.btn-link:hover {\n color: #1a1a1a; }\n\n.btn-behance {\n background: #1769ff;\n color: #ffffff; }\n .btn-behance:hover {\n background: #0050e3; }\n .btn-behance.btn-link {\n background: none;\n color: #1769ff; }\n .btn-behance.btn-link:hover {\n color: #0050e3; }\n\n.btn-dribbble {\n background: #ea4c89;\n color: #ffffff; }\n .btn-dribbble:hover {\n background: #e51e6b; }\n .btn-dribbble.btn-link {\n background: none;\n color: #ea4c89; }\n .btn-dribbble.btn-link:hover {\n color: #e51e6b; }\n\n.btn-reddit {\n background: #ff4500;\n color: #ffffff; }\n .btn-reddit:hover {\n background: #cc3700; }\n .btn-reddit.btn-link {\n background: none;\n color: #ff4500; }\n .btn-reddit.btn-link:hover {\n color: #cc3700; }\n\n/*social buttons*/\n.btn-social-outline-twitter {\n background: transparent;\n border-color: #4DBFF5;\n color: #4DBFF5; }\n .btn-social-outline-twitter:hover {\n background: rgba(77, 191, 245, 0.2); }\n\n.btn-social-outline-facebook {\n background: transparent;\n border-color: #648ACA;\n color: #648ACA; }\n .btn-social-outline-facebook:hover {\n background: rgba(100, 138, 202, 0.2); }\n\n.btn-social-outline-google {\n background: transparent;\n border-color: #E55F4B;\n color: #E55F4B; }\n .btn-social-outline-google:hover {\n background: rgba(229, 95, 75, 0.2); }\n\n.btn-social-outline-linkedin {\n background: transparent;\n border-color: #0177b4;\n color: #0177b4; }\n .btn-social-outline-linkedin:hover {\n background: rgba(1, 119, 180, 0.2); }\n\n.btn-social-outline-pinterest {\n background: transparent;\n border-color: #cc2127;\n color: #cc2127; }\n .btn-social-outline-pinterest:hover {\n background: rgba(204, 33, 39, 0.2); }\n\n.btn-social-outline-youtube {\n background: transparent;\n border-color: #e52d27;\n color: #e52d27; }\n .btn-social-outline-youtube:hover {\n background: rgba(229, 45, 39, 0.2); }\n\n.btn-social-outline-github {\n background: transparent;\n border-color: #333333;\n color: #333333; }\n .btn-social-outline-github:hover {\n background: rgba(51, 51, 51, 0.2); }\n\n.btn-social-outline-behance {\n background: transparent;\n border-color: #1769ff;\n color: #1769ff; }\n .btn-social-outline-behance:hover {\n background: rgba(23, 105, 255, 0.2); }\n\n.btn-social-outline-dribbble {\n background: transparent;\n border-color: #ea4c89;\n color: #ea4c89; }\n .btn-social-outline-dribbble:hover {\n background: rgba(234, 76, 137, 0.2); }\n\n.btn-social-outline-reddit {\n background: transparent;\n border-color: #ff4500;\n color: #ff4500; }\n .btn-social-outline-reddit:hover {\n background: rgba(255, 69, 0, 0.2); }\n\n/* inverse buttons */\n.btn-inverse-primary {\n color: #2196f3;\n background-color: rgba(33, 150, 243, 0.2);\n background-image: none;\n border-color: rgba(33, 150, 243, 0); }\n .btn-inverse-primary:hover {\n color: #ffffff;\n background-color: #2196f3;\n border-color: #2196f3; }\n .btn-inverse-primary.focus, .btn-inverse-primary:focus {\n box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.5); }\n .btn-inverse-primary.disabled, .btn-inverse-primary:disabled {\n color: #2196f3;\n background-color: transparent; }\n .btn-inverse-primary.active, .btn-inverse-primary:active,\n .show > .btn-inverse-primary.dropdown-toggle {\n color: #ffffff;\n background-color: #2196f3;\n border-color: #2196f3; }\n\n.btn-inverse-secondary {\n color: #e6eef2;\n background-color: rgba(230, 238, 242, 0.2);\n background-image: none;\n border-color: rgba(230, 238, 242, 0); }\n .btn-inverse-secondary:hover {\n color: #ffffff;\n background-color: #e6eef2;\n border-color: #e6eef2; }\n .btn-inverse-secondary.focus, .btn-inverse-secondary:focus {\n box-shadow: 0 0 0 3px rgba(230, 238, 242, 0.5); }\n .btn-inverse-secondary.disabled, .btn-inverse-secondary:disabled {\n color: #e6eef2;\n background-color: transparent; }\n .btn-inverse-secondary.active, .btn-inverse-secondary:active,\n .show > .btn-inverse-secondary.dropdown-toggle {\n color: #ffffff;\n background-color: #e6eef2;\n border-color: #e6eef2; }\n\n.btn-inverse-success {\n color: #19d895;\n background-color: rgba(25, 216, 149, 0.2);\n background-image: none;\n border-color: rgba(25, 216, 149, 0); }\n .btn-inverse-success:hover {\n color: #ffffff;\n background-color: #19d895;\n border-color: #19d895; }\n .btn-inverse-success.focus, .btn-inverse-success:focus {\n box-shadow: 0 0 0 3px rgba(25, 216, 149, 0.5); }\n .btn-inverse-success.disabled, .btn-inverse-success:disabled {\n color: #19d895;\n background-color: transparent; }\n .btn-inverse-success.active, .btn-inverse-success:active,\n .show > .btn-inverse-success.dropdown-toggle {\n color: #ffffff;\n background-color: #19d895;\n border-color: #19d895; }\n\n.btn-inverse-info {\n color: #8862e0;\n background-color: rgba(136, 98, 224, 0.2);\n background-image: none;\n border-color: rgba(136, 98, 224, 0); }\n .btn-inverse-info:hover {\n color: #ffffff;\n background-color: #8862e0;\n border-color: #8862e0; }\n .btn-inverse-info.focus, .btn-inverse-info:focus {\n box-shadow: 0 0 0 3px rgba(136, 98, 224, 0.5); }\n .btn-inverse-info.disabled, .btn-inverse-info:disabled {\n color: #8862e0;\n background-color: transparent; }\n .btn-inverse-info.active, .btn-inverse-info:active,\n .show > .btn-inverse-info.dropdown-toggle {\n color: #ffffff;\n background-color: #8862e0;\n border-color: #8862e0; }\n\n.btn-inverse-warning {\n color: #ffaf00;\n background-color: rgba(255, 175, 0, 0.2);\n background-image: none;\n border-color: rgba(255, 175, 0, 0); }\n .btn-inverse-warning:hover {\n color: #ffffff;\n background-color: #ffaf00;\n border-color: #ffaf00; }\n .btn-inverse-warning.focus, .btn-inverse-warning:focus {\n box-shadow: 0 0 0 3px rgba(255, 175, 0, 0.5); }\n .btn-inverse-warning.disabled, .btn-inverse-warning:disabled {\n color: #ffaf00;\n background-color: transparent; }\n .btn-inverse-warning.active, .btn-inverse-warning:active,\n .show > .btn-inverse-warning.dropdown-toggle {\n color: #ffffff;\n background-color: #ffaf00;\n border-color: #ffaf00; }\n\n.btn-inverse-danger {\n color: #ff6258;\n background-color: rgba(255, 98, 88, 0.2);\n background-image: none;\n border-color: rgba(255, 98, 88, 0); }\n .btn-inverse-danger:hover {\n color: #ffffff;\n background-color: #ff6258;\n border-color: #ff6258; }\n .btn-inverse-danger.focus, .btn-inverse-danger:focus {\n box-shadow: 0 0 0 3px rgba(255, 98, 88, 0.5); }\n .btn-inverse-danger.disabled, .btn-inverse-danger:disabled {\n color: #ff6258;\n background-color: transparent; }\n .btn-inverse-danger.active, .btn-inverse-danger:active,\n .show > .btn-inverse-danger.dropdown-toggle {\n color: #ffffff;\n background-color: #ff6258;\n border-color: #ff6258; }\n\n.btn-inverse-light {\n color: #fbfbfb;\n background-color: rgba(251, 251, 251, 0.2);\n background-image: none;\n border-color: rgba(251, 251, 251, 0); }\n .btn-inverse-light:hover {\n color: #ffffff;\n background-color: #fbfbfb;\n border-color: #fbfbfb; }\n .btn-inverse-light.focus, .btn-inverse-light:focus {\n box-shadow: 0 0 0 3px rgba(251, 251, 251, 0.5); }\n .btn-inverse-light.disabled, .btn-inverse-light:disabled {\n color: #fbfbfb;\n background-color: transparent; }\n .btn-inverse-light.active, .btn-inverse-light:active,\n .show > .btn-inverse-light.dropdown-toggle {\n color: #ffffff;\n background-color: #fbfbfb;\n border-color: #fbfbfb; }\n\n.btn-inverse-dark {\n color: #252C46;\n background-color: rgba(37, 44, 70, 0.2);\n background-image: none;\n border-color: rgba(37, 44, 70, 0); }\n .btn-inverse-dark:hover {\n color: #ffffff;\n background-color: #252C46;\n border-color: #252C46; }\n .btn-inverse-dark.focus, .btn-inverse-dark:focus {\n box-shadow: 0 0 0 3px rgba(37, 44, 70, 0.5); }\n .btn-inverse-dark.disabled, .btn-inverse-dark:disabled {\n color: #252C46;\n background-color: transparent; }\n .btn-inverse-dark.active, .btn-inverse-dark:active,\n .show > .btn-inverse-dark.dropdown-toggle {\n color: #ffffff;\n background-color: #252C46;\n border-color: #252C46; }\n\n/* Inverse Outlined Buttons */\n.btn-inverse-outline-primary {\n color: #2196f3;\n background-image: none;\n background: transparent;\n border-color: rgba(33, 150, 243, 0.2); }\n .btn-inverse-outline-primary:hover {\n color: #2196f3;\n background-color: rgba(33, 150, 243, 0.2);\n border-color: rgba(33, 150, 243, 0.2); }\n .btn-inverse-outline-primary.focus, .btn-inverse-outline-primary:focus {\n box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.5); }\n .btn-inverse-outline-primary.disabled, .btn-inverse-outline-primary:disabled {\n color: #2196f3;\n background-color: transparent; }\n .btn-inverse-outline-primary.active, .btn-inverse-outline-primary:active,\n .show > .btn-inverse-outline-primary.dropdown-toggle {\n color: #ffffff;\n border-color: #2196f3; }\n\n.btn-inverse-outline-secondary {\n color: #e6eef2;\n background-image: none;\n background: transparent;\n border-color: rgba(230, 238, 242, 0.2); }\n .btn-inverse-outline-secondary:hover {\n color: #e6eef2;\n background-color: rgba(230, 238, 242, 0.2);\n border-color: rgba(230, 238, 242, 0.2); }\n .btn-inverse-outline-secondary.focus, .btn-inverse-outline-secondary:focus {\n box-shadow: 0 0 0 3px rgba(230, 238, 242, 0.5); }\n .btn-inverse-outline-secondary.disabled, .btn-inverse-outline-secondary:disabled {\n color: #e6eef2;\n background-color: transparent; }\n .btn-inverse-outline-secondary.active, .btn-inverse-outline-secondary:active,\n .show > .btn-inverse-outline-secondary.dropdown-toggle {\n color: #ffffff;\n border-color: #e6eef2; }\n\n.btn-inverse-outline-success {\n color: #19d895;\n background-image: none;\n background: transparent;\n border-color: rgba(25, 216, 149, 0.2); }\n .btn-inverse-outline-success:hover {\n color: #19d895;\n background-color: rgba(25, 216, 149, 0.2);\n border-color: rgba(25, 216, 149, 0.2); }\n .btn-inverse-outline-success.focus, .btn-inverse-outline-success:focus {\n box-shadow: 0 0 0 3px rgba(25, 216, 149, 0.5); }\n .btn-inverse-outline-success.disabled, .btn-inverse-outline-success:disabled {\n color: #19d895;\n background-color: transparent; }\n .btn-inverse-outline-success.active, .btn-inverse-outline-success:active,\n .show > .btn-inverse-outline-success.dropdown-toggle {\n color: #ffffff;\n border-color: #19d895; }\n\n.btn-inverse-outline-info {\n color: #8862e0;\n background-image: none;\n background: transparent;\n border-color: rgba(136, 98, 224, 0.2); }\n .btn-inverse-outline-info:hover {\n color: #8862e0;\n background-color: rgba(136, 98, 224, 0.2);\n border-color: rgba(136, 98, 224, 0.2); }\n .btn-inverse-outline-info.focus, .btn-inverse-outline-info:focus {\n box-shadow: 0 0 0 3px rgba(136, 98, 224, 0.5); }\n .btn-inverse-outline-info.disabled, .btn-inverse-outline-info:disabled {\n color: #8862e0;\n background-color: transparent; }\n .btn-inverse-outline-info.active, .btn-inverse-outline-info:active,\n .show > .btn-inverse-outline-info.dropdown-toggle {\n color: #ffffff;\n border-color: #8862e0; }\n\n.btn-inverse-outline-warning {\n color: #ffaf00;\n background-image: none;\n background: transparent;\n border-color: rgba(255, 175, 0, 0.2); }\n .btn-inverse-outline-warning:hover {\n color: #ffaf00;\n background-color: rgba(255, 175, 0, 0.2);\n border-color: rgba(255, 175, 0, 0.2); }\n .btn-inverse-outline-warning.focus, .btn-inverse-outline-warning:focus {\n box-shadow: 0 0 0 3px rgba(255, 175, 0, 0.5); }\n .btn-inverse-outline-warning.disabled, .btn-inverse-outline-warning:disabled {\n color: #ffaf00;\n background-color: transparent; }\n .btn-inverse-outline-warning.active, .btn-inverse-outline-warning:active,\n .show > .btn-inverse-outline-warning.dropdown-toggle {\n color: #ffffff;\n border-color: #ffaf00; }\n\n.btn-inverse-outline-danger {\n color: #ff6258;\n background-image: none;\n background: transparent;\n border-color: rgba(255, 98, 88, 0.2); }\n .btn-inverse-outline-danger:hover {\n color: #ff6258;\n background-color: rgba(255, 98, 88, 0.2);\n border-color: rgba(255, 98, 88, 0.2); }\n .btn-inverse-outline-danger.focus, .btn-inverse-outline-danger:focus {\n box-shadow: 0 0 0 3px rgba(255, 98, 88, 0.5); }\n .btn-inverse-outline-danger.disabled, .btn-inverse-outline-danger:disabled {\n color: #ff6258;\n background-color: transparent; }\n .btn-inverse-outline-danger.active, .btn-inverse-outline-danger:active,\n .show > .btn-inverse-outline-danger.dropdown-toggle {\n color: #ffffff;\n border-color: #ff6258; }\n\n.btn-inverse-outline-light {\n color: #fbfbfb;\n background-image: none;\n background: transparent;\n border-color: rgba(251, 251, 251, 0.2); }\n .btn-inverse-outline-light:hover {\n color: #fbfbfb;\n background-color: rgba(251, 251, 251, 0.2);\n border-color: rgba(251, 251, 251, 0.2); }\n .btn-inverse-outline-light.focus, .btn-inverse-outline-light:focus {\n box-shadow: 0 0 0 3px rgba(251, 251, 251, 0.5); }\n .btn-inverse-outline-light.disabled, .btn-inverse-outline-light:disabled {\n color: #fbfbfb;\n background-color: transparent; }\n .btn-inverse-outline-light.active, .btn-inverse-outline-light:active,\n .show > .btn-inverse-outline-light.dropdown-toggle {\n color: #ffffff;\n border-color: #fbfbfb; }\n\n.btn-inverse-outline-dark {\n color: #252C46;\n background-image: none;\n background: transparent;\n border-color: rgba(37, 44, 70, 0.2); }\n .btn-inverse-outline-dark:hover {\n color: #252C46;\n background-color: rgba(37, 44, 70, 0.2);\n border-color: rgba(37, 44, 70, 0.2); }\n .btn-inverse-outline-dark.focus, .btn-inverse-outline-dark:focus {\n box-shadow: 0 0 0 3px rgba(37, 44, 70, 0.5); }\n .btn-inverse-outline-dark.disabled, .btn-inverse-outline-dark:disabled {\n color: #252C46;\n background-color: transparent; }\n .btn-inverse-outline-dark.active, .btn-inverse-outline-dark:active,\n .show > .btn-inverse-outline-dark.dropdown-toggle {\n color: #ffffff;\n border-color: #252C46; }\n\n/* Breadcrumbs */\n.breadcrumb .breadcrumb-item {\n font-size: 0.875rem; }\n\n.breadcrumb.breadcrumb-custom {\n padding: 0 0;\n border-color: #dbe3e6; }\n .breadcrumb.breadcrumb-custom .breadcrumb-item {\n font-size: 0.875rem;\n background: #dbe3e6;\n padding: 0.56rem 10px;\n color: #000;\n display: inline-block;\n vertical-align: top; }\n .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child {\n background: transparent; }\n .breadcrumb.breadcrumb-custom .breadcrumb-item:before {\n content: \"\"; }\n .breadcrumb.breadcrumb-custom .breadcrumb-item a {\n position: relative;\n color: inherit;\n border: 1px solid #dbe3e6;\n display: inline-block;\n vertical-align: top; }\n .breadcrumb.breadcrumb-custom .breadcrumb-item a:after, .breadcrumb.breadcrumb-custom .breadcrumb-item a:before {\n position: absolute;\n top: -9px;\n width: 0;\n height: 0;\n content: \"\";\n border-top: 21px solid transparent;\n border-bottom: 21px solid transparent; }\n .breadcrumb.breadcrumb-custom .breadcrumb-item a:before {\n right: -22px;\n z-index: 3;\n border-left-color: #dbe3e6;\n border-left-style: solid;\n border-left-width: 12px; }\n .breadcrumb.breadcrumb-custom .breadcrumb-item a:after {\n border-top: 21px solid transparent;\n border-bottom: 22px solid transparent;\n border-left: 12px solid #ffffff;\n top: -9px;\n right: -23px; }\n .breadcrumb.breadcrumb-custom .breadcrumb-item span {\n display: inline-block;\n vertical-align: top; }\n\n.breadcrumb.bg-danger, .settings-panel .color-tiles .breadcrumb.tiles.danger, .breadcrumb.bg-dark, .settings-panel .color-tiles .breadcrumb.tiles.dark, .breadcrumb.bg-info, .settings-panel .color-tiles .breadcrumb.tiles.info, .breadcrumb.bg-primary, .settings-panel .color-tiles .breadcrumb.tiles.primary, .breadcrumb.bg-success, .settings-panel .color-tiles .breadcrumb.tiles.success, .breadcrumb.bg-warning, .settings-panel .color-tiles .breadcrumb.tiles.warning {\n border: none; }\n .breadcrumb.bg-danger .breadcrumb-item, .settings-panel .color-tiles .breadcrumb.tiles.danger .breadcrumb-item, .breadcrumb.bg-dark .breadcrumb-item, .settings-panel .color-tiles .breadcrumb.tiles.dark .breadcrumb-item, .breadcrumb.bg-info .breadcrumb-item, .settings-panel .color-tiles .breadcrumb.tiles.info .breadcrumb-item, .breadcrumb.bg-primary .breadcrumb-item, .settings-panel .color-tiles .breadcrumb.tiles.primary .breadcrumb-item, .breadcrumb.bg-success .breadcrumb-item, .settings-panel .color-tiles .breadcrumb.tiles.success .breadcrumb-item, .breadcrumb.bg-warning .breadcrumb-item, .settings-panel .color-tiles .breadcrumb.tiles.warning .breadcrumb-item {\n color: #ffffff; }\n .breadcrumb.bg-danger .breadcrumb-item:before, .settings-panel .color-tiles .breadcrumb.tiles.danger .breadcrumb-item:before, .breadcrumb.bg-dark .breadcrumb-item:before, .settings-panel .color-tiles .breadcrumb.tiles.dark .breadcrumb-item:before, .breadcrumb.bg-info .breadcrumb-item:before, .settings-panel .color-tiles .breadcrumb.tiles.info .breadcrumb-item:before, .breadcrumb.bg-primary .breadcrumb-item:before, .settings-panel .color-tiles .breadcrumb.tiles.primary .breadcrumb-item:before, .breadcrumb.bg-success .breadcrumb-item:before, .settings-panel .color-tiles .breadcrumb.tiles.success .breadcrumb-item:before, .breadcrumb.bg-warning .breadcrumb-item:before, .settings-panel .color-tiles .breadcrumb.tiles.warning .breadcrumb-item:before {\n color: inherit; }\n .breadcrumb.bg-danger .breadcrumb-item a, .settings-panel .color-tiles .breadcrumb.tiles.danger .breadcrumb-item a,\n .breadcrumb.bg-danger .breadcrumb-item span, .settings-panel .color-tiles .breadcrumb.tiles.danger .breadcrumb-item span, .breadcrumb.bg-dark .breadcrumb-item a, .settings-panel .color-tiles .breadcrumb.tiles.dark .breadcrumb-item a,\n .breadcrumb.bg-dark .breadcrumb-item span, .settings-panel .color-tiles .breadcrumb.tiles.dark .breadcrumb-item span, .breadcrumb.bg-info .breadcrumb-item a, .settings-panel .color-tiles .breadcrumb.tiles.info .breadcrumb-item a,\n .breadcrumb.bg-info .breadcrumb-item span, .settings-panel .color-tiles .breadcrumb.tiles.info .breadcrumb-item span, .breadcrumb.bg-primary .breadcrumb-item a, .settings-panel .color-tiles .breadcrumb.tiles.primary .breadcrumb-item a,\n .breadcrumb.bg-primary .breadcrumb-item span, .settings-panel .color-tiles .breadcrumb.tiles.primary .breadcrumb-item span, .breadcrumb.bg-success .breadcrumb-item a, .settings-panel .color-tiles .breadcrumb.tiles.success .breadcrumb-item a,\n .breadcrumb.bg-success .breadcrumb-item span, .settings-panel .color-tiles .breadcrumb.tiles.success .breadcrumb-item span, .breadcrumb.bg-warning .breadcrumb-item a, .settings-panel .color-tiles .breadcrumb.tiles.warning .breadcrumb-item a,\n .breadcrumb.bg-warning .breadcrumb-item span, .settings-panel .color-tiles .breadcrumb.tiles.warning .breadcrumb-item span {\n color: inherit; }\n\n/* inverse breadcrumb */\n.bg-inverse-primary .breadcrumb {\n background: #9acffa;\n border-color: #2196f3; }\n .bg-inverse-primary .breadcrumb .breadcrumb-item {\n color: #2196f3; }\n .bg-inverse-primary .breadcrumb .breadcrumb-item:before {\n color: inherit; }\n .bg-inverse-primary .breadcrumb .breadcrumb-item a {\n color: inherit; }\n .bg-inverse-primary .breadcrumb.breadcrumb-custom {\n background: #2196f3; }\n .bg-inverse-primary .breadcrumb.breadcrumb-custom .breadcrumb-item {\n background: #9acffa; }\n .bg-inverse-primary .breadcrumb.breadcrumb-custom .breadcrumb-item a {\n color: #2196f3;\n border: none; }\n .bg-inverse-primary .breadcrumb.breadcrumb-custom .breadcrumb-item a:before {\n border-left-color: #9acffa; }\n .bg-inverse-primary .breadcrumb.breadcrumb-custom .breadcrumb-item span {\n color: #2196f3; }\n .bg-inverse-primary .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child {\n background: transparent; }\n\n.bg-inverse-secondary .breadcrumb {\n background: white;\n border-color: #e6eef2; }\n .bg-inverse-secondary .breadcrumb .breadcrumb-item {\n color: #e6eef2; }\n .bg-inverse-secondary .breadcrumb .breadcrumb-item:before {\n color: inherit; }\n .bg-inverse-secondary .breadcrumb .breadcrumb-item a {\n color: inherit; }\n .bg-inverse-secondary .breadcrumb.breadcrumb-custom {\n background: #e6eef2; }\n .bg-inverse-secondary .breadcrumb.breadcrumb-custom .breadcrumb-item {\n background: white; }\n .bg-inverse-secondary .breadcrumb.breadcrumb-custom .breadcrumb-item a {\n color: #e6eef2;\n border: none; }\n .bg-inverse-secondary .breadcrumb.breadcrumb-custom .breadcrumb-item a:before {\n border-left-color: white; }\n .bg-inverse-secondary .breadcrumb.breadcrumb-custom .breadcrumb-item span {\n color: #e6eef2; }\n .bg-inverse-secondary .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child {\n background: transparent; }\n\n.bg-inverse-success .breadcrumb {\n background: #80f0c9;\n border-color: #19d895; }\n .bg-inverse-success .breadcrumb .breadcrumb-item {\n color: #19d895; }\n .bg-inverse-success .breadcrumb .breadcrumb-item:before {\n color: inherit; }\n .bg-inverse-success .breadcrumb .breadcrumb-item a {\n color: inherit; }\n .bg-inverse-success .breadcrumb.breadcrumb-custom {\n background: #19d895; }\n .bg-inverse-success .breadcrumb.breadcrumb-custom .breadcrumb-item {\n background: #80f0c9; }\n .bg-inverse-success .breadcrumb.breadcrumb-custom .breadcrumb-item a {\n color: #19d895;\n border: none; }\n .bg-inverse-success .breadcrumb.breadcrumb-custom .breadcrumb-item a:before {\n border-left-color: #80f0c9; }\n .bg-inverse-success .breadcrumb.breadcrumb-custom .breadcrumb-item span {\n color: #19d895; }\n .bg-inverse-success .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child {\n background: transparent; }\n\n.bg-inverse-info .breadcrumb {\n background: #d9ccf5;\n border-color: #8862e0; }\n .bg-inverse-info .breadcrumb .breadcrumb-item {\n color: #8862e0; }\n .bg-inverse-info .breadcrumb .breadcrumb-item:before {\n color: inherit; }\n .bg-inverse-info .breadcrumb .breadcrumb-item a {\n color: inherit; }\n .bg-inverse-info .breadcrumb.breadcrumb-custom {\n background: #8862e0; }\n .bg-inverse-info .breadcrumb.breadcrumb-custom .breadcrumb-item {\n background: #d9ccf5; }\n .bg-inverse-info .breadcrumb.breadcrumb-custom .breadcrumb-item a {\n color: #8862e0;\n border: none; }\n .bg-inverse-info .breadcrumb.breadcrumb-custom .breadcrumb-item a:before {\n border-left-color: #d9ccf5; }\n .bg-inverse-info .breadcrumb.breadcrumb-custom .breadcrumb-item span {\n color: #8862e0; }\n .bg-inverse-info .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child {\n background: transparent; }\n\n.bg-inverse-warning .breadcrumb {\n background: #ffd780;\n border-color: #ffaf00; }\n .bg-inverse-warning .breadcrumb .breadcrumb-item {\n color: #ffaf00; }\n .bg-inverse-warning .breadcrumb .breadcrumb-item:before {\n color: inherit; }\n .bg-inverse-warning .breadcrumb .breadcrumb-item a {\n color: inherit; }\n .bg-inverse-warning .breadcrumb.breadcrumb-custom {\n background: #ffaf00; }\n .bg-inverse-warning .breadcrumb.breadcrumb-custom .breadcrumb-item {\n background: #ffd780; }\n .bg-inverse-warning .breadcrumb.breadcrumb-custom .breadcrumb-item a {\n color: #ffaf00;\n border: none; }\n .bg-inverse-warning .breadcrumb.breadcrumb-custom .breadcrumb-item a:before {\n border-left-color: #ffd780; }\n .bg-inverse-warning .breadcrumb.breadcrumb-custom .breadcrumb-item span {\n color: #ffaf00; }\n .bg-inverse-warning .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child {\n background: transparent; }\n\n.bg-inverse-danger .breadcrumb {\n background: #ffdad8;\n border-color: #ff6258; }\n .bg-inverse-danger .breadcrumb .breadcrumb-item {\n color: #ff6258; }\n .bg-inverse-danger .breadcrumb .breadcrumb-item:before {\n color: inherit; }\n .bg-inverse-danger .breadcrumb .breadcrumb-item a {\n color: inherit; }\n .bg-inverse-danger .breadcrumb.breadcrumb-custom {\n background: #ff6258; }\n .bg-inverse-danger .breadcrumb.breadcrumb-custom .breadcrumb-item {\n background: #ffdad8; }\n .bg-inverse-danger .breadcrumb.breadcrumb-custom .breadcrumb-item a {\n color: #ff6258;\n border: none; }\n .bg-inverse-danger .breadcrumb.breadcrumb-custom .breadcrumb-item a:before {\n border-left-color: #ffdad8; }\n .bg-inverse-danger .breadcrumb.breadcrumb-custom .breadcrumb-item span {\n color: #ff6258; }\n .bg-inverse-danger .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child {\n background: transparent; }\n\n.bg-inverse-light .breadcrumb {\n background: white;\n border-color: #fbfbfb; }\n .bg-inverse-light .breadcrumb .breadcrumb-item {\n color: #fbfbfb; }\n .bg-inverse-light .breadcrumb .breadcrumb-item:before {\n color: inherit; }\n .bg-inverse-light .breadcrumb .breadcrumb-item a {\n color: inherit; }\n .bg-inverse-light .breadcrumb.breadcrumb-custom {\n background: #fbfbfb; }\n .bg-inverse-light .breadcrumb.breadcrumb-custom .breadcrumb-item {\n background: white; }\n .bg-inverse-light .breadcrumb.breadcrumb-custom .breadcrumb-item a {\n color: #fbfbfb;\n border: none; }\n .bg-inverse-light .breadcrumb.breadcrumb-custom .breadcrumb-item a:before {\n border-left-color: white; }\n .bg-inverse-light .breadcrumb.breadcrumb-custom .breadcrumb-item span {\n color: #fbfbfb; }\n .bg-inverse-light .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child {\n background: transparent; }\n\n.bg-inverse-dark .breadcrumb {\n background: #516099;\n border-color: #252C46; }\n .bg-inverse-dark .breadcrumb .breadcrumb-item {\n color: #252C46; }\n .bg-inverse-dark .breadcrumb .breadcrumb-item:before {\n color: inherit; }\n .bg-inverse-dark .breadcrumb .breadcrumb-item a {\n color: inherit; }\n .bg-inverse-dark .breadcrumb.breadcrumb-custom {\n background: #252C46; }\n .bg-inverse-dark .breadcrumb.breadcrumb-custom .breadcrumb-item {\n background: #516099; }\n .bg-inverse-dark .breadcrumb.breadcrumb-custom .breadcrumb-item a {\n color: #252C46;\n border: none; }\n .bg-inverse-dark .breadcrumb.breadcrumb-custom .breadcrumb-item a:before {\n border-left-color: #516099; }\n .bg-inverse-dark .breadcrumb.breadcrumb-custom .breadcrumb-item span {\n color: #252C46; }\n .bg-inverse-dark .breadcrumb.breadcrumb-custom .breadcrumb-item:last-child {\n background: transparent; }\n\n/* Cards */\n.card {\n border: none;\n box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);\n border-radius: 4px; }\n .card .card-header {\n background: #ffffff;\n padding: 1.88rem 1.81rem;\n border-bottom: 1px solid #f2f2f2; }\n .card .card-header h1,\n .card .card-header h2,\n .card .card-header h3,\n .card .card-header h4,\n .card .card-header h5,\n .card .card-header h6,\n .card .card-header p,\n .card .card-header small {\n margin-bottom: 0px; }\n .card .card-header.header-sm {\n padding: 15px 1.81rem;\n height: 60px; }\n .card .card-header.header-sm p,\n .card .card-header.header-sm .dropdown .dropdown-toggle i {\n color: #858585; }\n .card .card-body {\n padding: 1.88rem 1.81rem; }\n .card .card-body.no-gutter {\n padding: 0; }\n .card .card-body + .card-body {\n padding-top: 0; }\n .card.card-outline-success {\n border: 1px solid #19d895; }\n .card.card-outline-primary {\n border: 1px solid #2196f3; }\n .card.card-outline-warning {\n border: 1px solid #ffaf00; }\n .card.card-outline-danger {\n border: 1px solid #ff6258; }\n .card.card-rounded {\n border-radius: 5px; }\n .card.card-faded {\n background: #b5b0b2;\n border-color: #b5b0b2; }\n .card.card-circle-progress {\n color: #ffffff;\n text-align: center; }\n .card.bg-blue-gradient {\n background: linear-gradient(to right, #065efd, #3169fd, #6f79fc);\n color: #fff; }\n .card.bg-orange-gradient {\n background: linear-gradient(to right, #ff7f2e, #fe7452);\n color: #fff; }\n .card.bg-green-gradient {\n background: linear-gradient(to right, #24e8a6, #09cdd1);\n color: #fff; }\n\n.card-inverse-primary {\n background: rgba(33, 150, 243, 0.2);\n border: 1px solid #1e8ae0;\n color: #1972b9; }\n\n.card-inverse-secondary {\n background: rgba(230, 238, 242, 0.2);\n border: 1px solid #d4dbdf;\n color: #afb5b8; }\n\n.card-inverse-success {\n background: rgba(25, 216, 149, 0.2);\n border: 1px solid #17c789;\n color: #13a471; }\n\n.card-inverse-info {\n background: rgba(136, 98, 224, 0.2);\n border: 1px solid #7d5ace;\n color: #674aaa; }\n\n.card-inverse-warning {\n background: rgba(255, 175, 0, 0.2);\n border: 1px solid #eba100;\n color: #c28500; }\n\n.card-inverse-danger {\n background: rgba(255, 98, 88, 0.2);\n border: 1px solid #eb5a51;\n color: #c24a43; }\n\n.card-inverse-light {\n background: rgba(251, 251, 251, 0.2);\n border: 1px solid #e7e7e7;\n color: #bfbfbf; }\n\n.card-inverse-dark {\n background: rgba(37, 44, 70, 0.2);\n border: 1px solid #222840;\n color: #1c2135; }\n\n/* Checkboxes and Radios */\n.form-check,\n.form-radio {\n position: relative;\n display: block;\n margin-top: 15px;\n margin-bottom: 10px; }\n .form-check .form-check-label,\n .form-radio .form-check-label {\n display: block;\n padding-left: 30px;\n line-height: 1.5; }\n .rtl .form-check .form-check-label, .rtl\n .form-radio .form-check-label {\n padding-left: 0;\n padding-right: 30px; }\n .form-check .form-check-label input,\n .form-radio .form-check-label input {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px\\9;\n top: 0;\n left: 0;\n z-index: 1;\n cursor: pointer;\n opacity: 0;\n filter: alpha(opacity=0);\n margin-top: 0; }\n .rtl .form-check .form-check-label input, .rtl\n .form-radio .form-check-label input {\n left: auto;\n right: 0; }\n\n.form-check .form-check-label {\n font-size: 0.875rem;\n line-height: 1.5;\n padding-left: 10px; }\n .form-check .form-check-label input:checked + .input-helper:before {\n background-color: #ffffff; }\n .form-check .form-check-label input:checked + .input-helper:after {\n width: 18px;\n opacity: 1;\n line-height: 18px;\n filter: alpha(opacity=100);\n -webkit-transform: scale(1);\n -ms-transform: scale(1);\n -o-transform: scale(1);\n transform: scale(1); }\n .form-check .form-check-label input:disabled + .input-helper:before {\n border-color: #f2f2f2; }\n .form-check .form-check-label input:disabled:checked + .input-helper:after {\n color: #f2f2f2; }\n .form-check .form-check-label .input-helper:before {\n position: absolute;\n content: \"\";\n top: 50%;\n transform: translateY(-50%);\n width: 18px;\n height: 18px;\n border-radius: 2px;\n left: 0;\n border: 2px solid #f2f2f2;\n -webkit-transition: all;\n -o-transition: all;\n transition: all;\n transition-duration: 0s;\n -webkit-transition-duration: 250ms;\n transition-duration: 250ms; }\n .rtl .form-check .form-check-label .input-helper:before {\n left: auto;\n right: 0; }\n .form-check .form-check-label .input-helper:after {\n -webkit-transition: all;\n -o-transition: all;\n transition: all;\n transition-duration: 0s;\n -webkit-transition-duration: 250ms;\n transition-duration: 250ms;\n font-family: Material Design Icons;\n opacity: 0;\n filter: alpha(opacity=0);\n -webkit-transform: scale(0);\n -ms-transform: scale(0);\n -o-transform: scale(0);\n transform: scale(0);\n content: '\\F12C';\n position: absolute;\n font-size: 0.9375rem;\n font-weight: bold;\n left: 0;\n top: 14%;\n transform: translateY(-14%);\n color: #8862e0; }\n .rtl .form-check .form-check-label .input-helper:after {\n left: auto;\n right: 0; }\n\n.form-check.form-check-flat label input:checked + .input-helper:before {\n background-color: #19d895;\n border: none; }\n\n.form-check.form-check-flat label input:disabled + .input-helper:after {\n color: #ffffff; }\n\n.form-check.form-check-flat label input:disabled + .input-helper:before {\n border-color: #f2f2f2; }\n\n.form-check.form-check-flat label input:disabled:checked + .input-helper:before {\n background: #f7f7f9; }\n\n.form-check.form-check-flat label .input-helper:before {\n border: 2px solid #f2f2f2; }\n\n.form-check.form-check-flat label .input-helper:after {\n color: #ffffff; }\n\n.form-radio label input + .input-helper:before {\n position: absolute;\n content: \"\";\n top: 50%;\n transform: translateY(-50%);\n left: 0;\n border: 2px solid #f2f2f2;\n width: 20px;\n height: 20px;\n border-radius: 50%;\n -webkit-transition: all;\n -o-transition: all;\n transition: all;\n transition-duration: 0s;\n -webkit-transition-duration: 250ms;\n transition-duration: 250ms; }\n .rtl .form-radio label input + .input-helper:before {\n left: auto;\n right: 0; }\n\n.form-radio label input + .input-helper:after {\n content: \"\";\n width: 8px;\n height: 8px;\n background: #ff6258;\n border-radius: 50%;\n top: 30%;\n transform: translateY(-30%);\n left: 6px;\n transition: all;\n transition-duration: 250s;\n opacity: 0;\n filter: alpha(opacity=0);\n transform: scale(0);\n position: absolute; }\n .rtl .form-radio label input + .input-helper:after {\n left: auto;\n right: 6px; }\n\n.form-radio label input:checked + .input-helper:before {\n background-color: #ffffff;\n border: 2px solid #f2f2f2;\n top: 30%;\n transform: translateY(-30%); }\n\n.form-radio label input:checked + .input-helper:after {\n opacity: 1;\n line-height: 1.5;\n filter: alpha(opacity=100);\n transform: scale(1); }\n\n.form-radio label input:disabled + .input-helper:before {\n border-color: #f2f2f2; }\n\n.form-radio label input:disabled:checked + .input-helper:before {\n background-color: #ffffff;\n border-color: #f2f2f2; }\n\n.form-radio label input:disabled:checked + .input-helper:after {\n background-color: #f2f2f2; }\n\n.form-radio.form-radio-flat label input:checked + .input-helper:before {\n background: #19d895;\n border-color: #19d895;\n top: 50%;\n transform: translateY(-50%); }\n\n.form-radio.form-radio-flat label input:checked + .input-helper:after {\n width: 20px;\n height: 20px;\n top: 50%;\n transform: translateY(-50%);\n left: -2px;\n color: #ffffff;\n background: none;\n content: '\\F12C';\n font-family: Material Design Icons;\n text-align: center;\n font-weight: bold; }\n .rtl .form-radio.form-radio-flat label input:checked + .input-helper:after {\n left: auto;\n right: -2px; }\n\n/* Dropdowns */\n.dropdown .dropdown-toggle:after {\n vertical-align: middle;\n margin-left: 9px; }\n\n.dropdown .dropdown-toggle.arrow-disabled {\n border: none;\n outline: none;\n box-shadow: none; }\n .dropdown .dropdown-toggle.arrow-disabled:focus, .dropdown .dropdown-toggle.arrow-disabled:visited, .dropdown .dropdown-toggle.arrow-disabled:active {\n outline: none;\n box-shadow: none; }\n .dropdown .dropdown-toggle.arrow-disabled:after {\n display: none; }\n\n.dropdown-menu {\n font-size: 0.875rem; }\n .dropdown-menu .dropdown-item:active {\n background: initial; }\n\n/* Forms */\n.input-group-append,\n.input-group-prepend,\n.asColorPicker-trigger {\n background: #ffffff;\n color: #c9c8c8;\n width: auto;\n border: none; }\n .input-group-append .input-group-text,\n .input-group-prepend .input-group-text, .asColorPicker-trigger .input-group-text {\n background: transparent;\n border-color: #f2f2f2; }\n\n.form-control, .asColorPicker-input, .dataTables_wrapper select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text],\n.jsgrid .jsgrid-table .jsgrid-filter-row select, .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .tt-hint,\n.tt-query,\n.typeahead {\n border: 1px solid #f2f2f2;\n font-family: \"Poppins\", sans-serif;\n font-size: 0.75rem;\n padding: 1.32rem .75rem;\n line-height: 14px;\n font-weight: 300; }\n .form-control.form-control-lg, .form-control-lg.asColorPicker-input, .dataTables_wrapper select.form-control-lg, .jsgrid .jsgrid-table .jsgrid-filter-row input.form-control-lg[type=text],\n .jsgrid .jsgrid-table .jsgrid-filter-row select.form-control-lg, .jsgrid .jsgrid-table .jsgrid-filter-row input.form-control-lg[type=number], .select2-container--default .form-control-lg.select2-selection--single, .select2-container--default .select2-selection--single .form-control-lg.select2-search__field, .form-control-lg.tt-hint,\n .form-control-lg.tt-query,\n .form-control-lg.typeahead {\n padding: 0.5rem 0.75rem; }\n .form-control.form-control-sm, .form-control-sm.asColorPicker-input, .dataTables_wrapper select.form-control-sm, .jsgrid .jsgrid-table .jsgrid-filter-row input.form-control-sm[type=text],\n .jsgrid .jsgrid-table .jsgrid-filter-row select.form-control-sm, .jsgrid .jsgrid-table .jsgrid-filter-row input.form-control-sm[type=number], .select2-container--default .form-control-sm.select2-selection--single, .select2-container--default .select2-selection--single .form-control-sm.select2-search__field, .form-control-sm.tt-hint,\n .form-control-sm.tt-query,\n .form-control-sm.typeahead {\n padding: 0.25rem 0.75rem; }\n\nselect.form-control, select.asColorPicker-input, .dataTables_wrapper select,\n.jsgrid .jsgrid-table .jsgrid-filter-row select, .select2-container--default select.select2-selection--single, .select2-container--default .select2-selection--single select.select2-search__field, select.tt-hint,\nselect.tt-query,\nselect.typeahead {\n padding: 0.4375rem 0.75rem; }\n\n.form-group label {\n font-size: 0.875rem;\n line-height: 1;\n vertical-align: top; }\n\n.form-group.has-danger .form-control, .form-group.has-danger .asColorPicker-input, .form-group.has-danger .dataTables_wrapper select, .dataTables_wrapper .form-group.has-danger select, .form-group.has-danger .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .form-group.has-danger input[type=text], .form-group.has-danger\n.jsgrid .jsgrid-table .jsgrid-filter-row select,\n.jsgrid .jsgrid-table .jsgrid-filter-row .form-group.has-danger select, .form-group.has-danger .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .form-group.has-danger input[type=number], .form-group.has-danger .select2-container--default .select2-selection--single, .select2-container--default .form-group.has-danger .select2-selection--single, .form-group.has-danger .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .form-group.has-danger .select2-search__field, .form-group.has-danger .tt-hint, .form-group.has-danger\n.tt-query, .form-group.has-danger\n.typeahead {\n border-color: #ff6258; }\n\n.form-group .file-upload-default {\n visibility: hidden;\n position: absolute; }\n\n.form-group .file-upload-info {\n background: transparent; }\n\n.map-container {\n position: relative;\n min-width: 100%;\n max-width: 100%;\n display: block;\n padding: 35% 0;\n overflow: hidden;\n border-radius: 5px; }\n .map-container .google-map {\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n bottom: 0;\n width: 100%;\n height: 100%; }\n .map-container .google-map.no-controls .gm-style-cc,\n .map-container .google-map.no-controls .gmnoprint {\n display: none; }\n\n/* Icons */\n.icons-list {\n border-left: 1px solid #f2f2f2;\n border-bottom: 1px solid #f2f2f2; }\n .icons-list > div {\n background: #ffffff;\n border-top: 1px solid #f2f2f2;\n border-right: 1px solid #f2f2f2;\n display: flex;\n align-items: center;\n padding: 15px;\n font-family: \"Poppins\", sans-serif;\n font-size: 0.875rem; }\n .icons-list > div i {\n display: inline-block;\n font-size: 20px;\n width: 40px;\n text-align: left;\n color: #2196f3; }\n\n/* Lists */\ndl,\nol,\nul {\n padding-left: 1rem;\n font-size: 0.875rem; }\n dl li,\n ol li,\n ul li {\n line-height: 1.8; }\n\n.list-arrow,\n.list-star,\n.list-ticked {\n list-style: none;\n padding: 0; }\n .list-arrow li,\n .list-star li,\n .list-ticked li {\n padding-left: 1.5rem; }\n .list-arrow li:before,\n .list-star li:before,\n .list-ticked li:before {\n font-family: \"Material Design Icons\";\n margin-left: -1.5rem;\n width: 1.5rem;\n margin-right: 0.5rem; }\n\n.list-ticked li:before {\n content: '\\F12D';\n color: #ff6258; }\n\n.list-arrow li:before {\n content: '\\F142';\n color: #19d895; }\n\n.list-star li:before {\n content: '\\F4CE';\n color: #ffaf00; }\n\n.bullet-line-list {\n padding-left: 30px;\n margin-bottom: 0;\n position: relative;\n list-style-type: none; }\n .rtl .bullet-line-list {\n padding-right: 0px; }\n .bullet-line-list li {\n position: relative;\n line-height: 1;\n padding-bottom: 10px; }\n .bullet-line-list li:before {\n content: \"\";\n position: absolute;\n border-radius: 100%;\n width: 12px;\n height: 12px;\n left: -28px;\n top: 6px;\n border: 3px solid #2196f3;\n margin-right: 15px;\n z-index: 2;\n background: #ffffff; }\n .bullet-line-list li:after {\n content: \"\";\n border: 1px solid #f2f2f2;\n position: absolute;\n bottom: 0;\n left: -23px;\n height: 100%; }\n .bullet-line-list li:first-child:after {\n content: \"\";\n height: 80%; }\n .bullet-line-list li:last-child {\n padding-bottom: 0; }\n .bullet-line-list li:last-child:after {\n content: \"\";\n top: 0;\n height: 30%; }\n\n/* Loaders */\n#pgloading {\n position: static; }\n #pgloading .bokeh {\n font-size: 100px;\n width: 1em;\n height: 1em;\n position: relative;\n margin: 0 auto;\n border-radius: 50%;\n border: 0.01em solid #f2f2f2;\n list-style: none;\n padding: 0; }\n #pgloading .bokeh li {\n position: absolute;\n width: 0.2em;\n height: 0.2em;\n border-radius: 50%; }\n #pgloading .bokeh li:nth-child(1) {\n left: 50%;\n top: 0;\n margin: 0 0 0 -.1em;\n background: #19d895;\n -webkit-transform-origin: 50% 250%;\n transform-origin: 50% 250%;\n -webkit-animation: rota 1.13s linear infinite, opa 3.67s ease-in-out infinite alternate;\n animation: rota 1.13s linear infinite, opa 3.67s ease-in-out infinite alternate; }\n #pgloading .bokeh li:nth-child(2) {\n top: 50%;\n right: 0;\n margin: -.1em 0 0;\n background: #ff6258;\n -webkit-transform-origin: -150% 50%;\n transform-origin: -150% 50%;\n -webkit-animation: rota 1.86s linear infinite, opa 4.29s ease-in-out infinite alternate;\n animation: rota 1.86s linear infinite, opa 4.29s ease-in-out infinite alternate; }\n #pgloading .bokeh li:nth-child(3) {\n left: 50%;\n bottom: 0;\n margin: 0 0 0 -.1em;\n background: #ffaf00;\n -webkit-transform-origin: 50% -150%;\n transform-origin: 50% -150%;\n -webkit-animation: rota 1.45s linear infinite, opa 5.12s ease-in-out infinite alternate;\n animation: rota 1.45s linear infinite, opa 5.12s ease-in-out infinite alternate; }\n #pgloading .bokeh li:nth-child(4) {\n top: 50%;\n left: 0;\n margin: -.1em 0 0;\n background: #2196f3;\n -webkit-transform-origin: 250% 50%;\n transform-origin: 250% 50%;\n -webkit-animation: rota 1.72s linear infinite, opa 5.25s ease-in-out infinite alternate;\n animation: rota 1.72s linear infinite, opa 5.25s ease-in-out infinite alternate; }\n\n@-webkit-keyframes rota {\n from { }\n to {\n -webkit-transform: rotate(360deg); } }\n\n@keyframes rota {\n from { }\n to {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@-webkit-keyframes opa {\n 0% { }\n 12.0% {\n opacity: 0.80; }\n 19.5% {\n opacity: 0.88; }\n 37.2% {\n opacity: 0.64; }\n 40.5% {\n opacity: 0.52; }\n 52.7% {\n opacity: 0.69; }\n 60.2% {\n opacity: 0.60; }\n 66.6% {\n opacity: 0.52; }\n 70.0% {\n opacity: 0.63; }\n 79.9% {\n opacity: 0.60; }\n 84.2% {\n opacity: 0.75; }\n 91.0% {\n opacity: 0.87; } }\n\n@keyframes opa {\n 0% { }\n 12.0% {\n opacity: 0.80; }\n 19.5% {\n opacity: 0.88; }\n 37.2% {\n opacity: 0.64; }\n 40.5% {\n opacity: 0.52; }\n 52.7% {\n opacity: 0.69; }\n 60.2% {\n opacity: 0.60; }\n 66.6% {\n opacity: 0.52; }\n 70.0% {\n opacity: 0.63; }\n 79.9% {\n opacity: 0.60; }\n 84.2% {\n opacity: 0.75; }\n 91.0% {\n opacity: 0.87; } }\n\n.glowing-loader {\n position: relative; }\n\n.s2 {\n position: absolute;\n height: 70px;\n width: 70px;\n top: 50px;\n background-color: transparent;\n left: 50%;\n transform: translate(-50%, -50%); }\n\n.s1 {\n position: absolute;\n height: 70px;\n width: 70px;\n left: 50%;\n top: 50px;\n transform-origin: center;\n transform: translate(-50%, -50%) rotate(45deg);\n background-color: transparent; }\n\n.bigcon {\n position: absolute;\n height: 75px;\n width: 75px;\n left: 50%;\n top: 50px;\n transform-origin: center;\n transform: translate(-50%, -50%) rotate(-45deg);\n background-color: transparent;\n animation: bigcon 2s infinite linear;\n animation-delay: 0.25s; }\n\n.b {\n border-radius: 50%;\n position: absolute; }\n\n.s {\n width: 15px;\n height: 15px;\n animation: small 2s infinite ease;\n box-shadow: 0 2px rgba(0, 0, 0, 0.3);\n background-color: #2196f3; }\n\n.s:nth-child(1) {\n top: 0;\n left: 0; }\n\n.s:nth-child(2) {\n top: 0;\n right: 0; }\n\n.s:nth-child(3) {\n right: 0;\n bottom: 0; }\n\n.s:nth-child(4) {\n bottom: 0;\n left: 0; }\n\n.big {\n width: 15px;\n height: 15px;\n border-radius: 15px;\n box-shadow: 0 0 10px #2196f3, 0 0 20px #2196f3, 0 0 30px #2196f3, 0 0 50px #2196f3, 0 0 60px #2196f3;\n z-index: 1;\n background-color: #2196f3;\n animation: bigball 1s infinite linear; }\n\n.sb1 {\n animation-delay: -1.75s; }\n\n.sb6 {\n animation-delay: -1.5s; }\n\n.sb2 {\n animation-delay: -1.25s; }\n\n.sb7 {\n animation-delay: -1s; }\n\n.sb3 {\n animation-delay: -0.75s; }\n\n.sb8 {\n animation-delay: -0.5s; }\n\n.sb4 {\n animation-delay: -0.25s; }\n\n.sb5 {\n animation-delay: -0s; }\n\n@keyframes bigcon {\n 0% {\n transform-origin: center;\n transform: translate(-50%, -50%) rotate(45deg); }\n 100% {\n transform-origin: center;\n transform: translate(-50%, -50%) rotate(405deg); } }\n\n@keyframes small {\n 0% {\n transform: scale(1);\n background-color: #82c4f8; }\n 10% {\n transform: scale(1.3);\n background-color: #2196f3; }\n 15% {\n transform: scale(1); }\n 25% {\n transform: scale(1);\n background-color: #2196f3; }\n 100% {\n transform: scale(1);\n background-color: #2196f3; } }\n\n/* Pixel loader */\n.pixel-loader {\n width: 10px;\n height: 10px;\n background: #ffaf00;\n color: #ffaf00;\n margin: 80px auto;\n box-shadow: 15px 15px 0 0, -15px -15px 0 0, 15px -15px 0 0, -15px 15px 0 0, 0 15px 0 0, 15px 0 0 0, -15px 0 0 0, 0 -15px 0 0;\n animation: anim 2s linear infinite; }\n\n@keyframes anim {\n 0% {\n -webkit-filter: hue-rotate(0deg); }\n 50% {\n box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0, 0 10px 0 0, 10px 0 0 0, -10px 0 0 0, 0 -10px 0 0; }\n 75% {\n box-shadow: 20px 20px 0 0, -20px -20px 0 0, 20px -20px 0 0, -20px 20px 0 0, 0 10px 0 0, 10px 0 0 0, -10px 0 0 0, 0 -10px 0 0; }\n 100% {\n transform: rotate(360deg);\n -webkit-filter: hue-rotate(360deg); } }\n\n/* Square box loader */\n@keyframes dyinglight {\n 15% {\n transform: scale(1.6); }\n 50% {\n transform: rotate(-89deg); }\n 100% {\n transform: rotate(-90deg); } }\n\n.square-box-loader {\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n display: inline-block; }\n\n.square-box-loader-square {\n display: block;\n width: 30px;\n height: 30px;\n background: #2196f3; }\n\n.square-box-loader-container {\n position: absolute;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n transform-origin: 50% 50% 0;\n animation: dyinglight 1s ease infinite;\n backface-visibility: hidden; }\n\n.square-box-loader-corner-bottom:after,\n.square-box-loader-corner-bottom:before,\n.square-box-loader-corner-top:after,\n.square-box-loader-corner-top:before {\n position: absolute;\n width: 10px;\n height: 10px;\n color: #2196f3;\n content: ''; }\n\n.square-box-loader-corner-top:before {\n border-left: 1px solid;\n border-top: 1px solid;\n top: -4px;\n left: -4px; }\n\n.square-box-loader-corner-top:after {\n border-right: 1px solid;\n border-top: 1px solid;\n top: -4px;\n right: -4px; }\n\n.square-box-loader-corner-bottom:before {\n border-left: 1px solid;\n border-bottom: 1px solid;\n bottom: -4px;\n left: -4px; }\n\n.square-box-loader-corner-bottom:after {\n border-right: 1px solid;\n border-bottom: 1px solid;\n bottom: -4px;\n right: -4px; }\n\n/* Circle loader */\n.circle-loader {\n width: 70px;\n height: 70px;\n border-radius: 100%;\n position: relative;\n margin: 0 auto; }\n\n.circle-loader:after,\n.circle-loader:before {\n content: \"\";\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border-radius: 100%;\n border: 10px solid transparent;\n border-top-color: #ffaf00; }\n\n.circle-loader:before {\n z-index: 100;\n animation: spin 1s infinite; }\n\n.circle-loader:after {\n border: 10px solid #e6eef2; }\n\n@keyframes spin {\n 0% {\n -webkit-transform: rotate(0deg);\n -ms-transform: rotate(0deg);\n -o-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n -ms-transform: rotate(360deg);\n -o-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n/* Jumping dots loader */\n.jumping-dots-loader {\n width: 100px;\n height: 100px;\n border-radius: 100%;\n position: relative;\n margin: 0 auto; }\n\n.jumping-dots-loader span {\n display: inline-block;\n width: 20px;\n height: 20px;\n border-radius: 100%;\n background-color: rgba(255, 98, 88, 0.8);\n margin: 35px 5px; }\n\n.jumping-dots-loader span:nth-child(1) {\n animation: bounce 1s ease-in-out infinite; }\n\n.jumping-dots-loader span:nth-child(2) {\n animation: bounce 1s ease-in-out 0.33s infinite; }\n\n.jumping-dots-loader span:nth-child(3) {\n animation: bounce 1s ease-in-out 0.66s infinite; }\n\n@keyframes bounce {\n 0%,\n 100%,\n 75% {\n -webkit-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 25% {\n -webkit-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px); } }\n\n/* Bar loader */\n.bar-loader {\n width: 50px;\n height: 50px;\n border-radius: 100%;\n position: relative;\n margin: 0 auto; }\n\n.bar-loader span {\n display: inline-block;\n width: 5px;\n height: 30px;\n background-color: rgba(255, 98, 88, 0.7); }\n\n.bar-loader span:nth-child(1) {\n animation: grow 1s ease-in-out infinite; }\n\n.bar-loader span:nth-child(2) {\n animation: grow 1s ease-in-out 0.15s infinite; }\n\n.bar-loader span:nth-child(3) {\n animation: grow 1s ease-in-out 0.30s infinite; }\n\n.bar-loader span:nth-child(4) {\n animation: grow 1s ease-in-out 0.45s infinite; }\n\n@keyframes grow {\n 0%,\n 100% {\n -webkit-transform: scaleY(1);\n -ms-transform: scaleY(1);\n -o-transform: scaleY(1);\n transform: scaleY(1); }\n 50% {\n -webkit-transform: scaleY(1.8);\n -ms-transform: scaleY(1.8);\n -o-transform: scaleY(1.8);\n transform: scaleY(1.8); } }\n\n/* Square path loader */\n.square-path-loader {\n width: 100px;\n height: 100px;\n border-radius: 100%;\n position: relative;\n margin: 0 auto; }\n\n.square-path-loader:after,\n.square-path-loader:before {\n content: \"\";\n width: 15px;\n height: 15px;\n position: absolute;\n top: 0;\n left: calc(50% - 10px);\n background-color: rgba(25, 216, 149, 0.7);\n animation: squaremove 1s ease-in-out infinite; }\n\n.square-path-loader:after {\n bottom: 0;\n animation-delay: 0.5s; }\n\n@keyframes squaremove {\n 0%,\n 100% {\n -webkit-transform: translate(0, 0) rotate(0);\n -ms-transform: translate(0, 0) rotate(0);\n -o-transform: translate(0, 0) rotate(0);\n transform: translate(0, 0) rotate(0); }\n 25% {\n -webkit-transform: translate(40px, 40px) rotate(45deg);\n -ms-transform: translate(40px, 40px) rotate(45deg);\n -o-transform: translate(40px, 40px) rotate(45deg);\n transform: translate(40px, 40px) rotate(45deg); }\n 50% {\n -webkit-transform: translate(0px, 80px) rotate(0deg);\n -ms-transform: translate(0px, 80px) rotate(0deg);\n -o-transform: translate(0px, 80px) rotate(0deg);\n transform: translate(0px, 80px) rotate(0deg); }\n 75% {\n -webkit-transform: translate(-40px, 40px) rotate(45deg);\n -ms-transform: translate(-40px, 40px) rotate(45deg);\n -o-transform: translate(-40px, 40px) rotate(45deg);\n transform: translate(-40px, 40px) rotate(45deg); } }\n\n/* Dot opacity loader */\n.dot-opacity-loader {\n width: 100px;\n height: 100px;\n border-radius: 100%;\n position: relative;\n margin: 0 auto; }\n\n.dot-opacity-loader span {\n display: inline-block;\n width: 20px;\n height: 20px;\n border-radius: 100%;\n background-color: #2196f3;\n margin: 35px 5px;\n opacity: 0; }\n\n.dot-opacity-loader span:nth-child(1) {\n animation: opacitychange 1s ease-in-out infinite; }\n\n.dot-opacity-loader span:nth-child(2) {\n animation: opacitychange 1s ease-in-out 0.33s infinite; }\n\n.dot-opacity-loader span:nth-child(3) {\n animation: opacitychange 1s ease-in-out 0.66s infinite; }\n\n@keyframes opacitychange {\n 0%,\n 100% {\n opacity: 0; }\n 60% {\n opacity: 1; } }\n\n/* Flip square */\n.flip-square-loader {\n -webkit-perspective: 120px;\n -moz-perspective: 120px;\n -ms-perspective: 120px;\n perspective: 120px;\n width: 100px;\n height: 100px;\n border-radius: 100%;\n position: relative;\n margin: 0 auto; }\n\n.flip-square-loader:before {\n content: \"\";\n position: absolute;\n left: 25px;\n top: 25px;\n width: 50px;\n height: 50px;\n background-color: rgba(25, 216, 149, 0.7);\n animation: flip 1s infinite; }\n\n@keyframes flip {\n 0% {\n transform: rotate(0); }\n 50% {\n transform: rotateY(180deg); }\n 100% {\n transform: rotateY(180deg) rotateX(180deg); } }\n\n/* Moving square loader */\n.moving-square-loader {\n width: 100px;\n height: 100px;\n border-radius: 100%;\n position: relative;\n margin: 0 auto; }\n\n.moving-square-loader:before {\n content: \"\";\n position: absolute;\n width: 10px;\n height: 10px;\n top: calc(50% - 10px);\n left: 0;\n background-color: rgba(255, 98, 88, 0.7);\n animation: rotatemove 1s infinite; }\n\n@keyframes rotatemove {\n 0% {\n -webkit-transform: scale(1) translateX(0px);\n -ms-transform: scale(1) translateX(0px);\n -o-transform: scale(1) translateX(0px);\n transform: scale(1) translateX(0px); }\n 100% {\n -webkit-transform: scale(2) translateX(45px);\n -ms-transform: scale(2) translateX(45px);\n -o-transform: scale(2) translateX(45px);\n transform: scale(2) translateX(45px); } }\n\n/* Modals */\n.modal .modal-dialog {\n margin-top: calc(63px + 30px); }\n .modal .modal-dialog .modal-content .modal-header {\n padding: 25px 26px; }\n .modal .modal-dialog .modal-content .modal-header .close span {\n font-size: 20px;\n font-weight: 400;\n color: #6a6a6a; }\n .modal .modal-dialog .modal-content .modal-body {\n padding: 35px 26px; }\n .modal .modal-dialog .modal-content .modal-footer {\n padding: 15px 31px; }\n\n.nav .nav-item,\n.navbar-nav .nav-item {\n line-height: 1; }\n .nav .nav-item.dropdown .dropdown-toggle:after,\n .navbar-nav .nav-item.dropdown .dropdown-toggle:after {\n border: none;\n content: \"\\F140\";\n font: normal normal normal 28px/1 \"Material Design Icons\";\n font-size: inherit;\n text-rendering: auto;\n line-height: inherit;\n vertical-align: 0; }\n .nav .nav-item.dropdown .count-indicator,\n .navbar-nav .nav-item.dropdown .count-indicator {\n position: relative;\n text-align: center; }\n .nav .nav-item.dropdown .count-indicator i,\n .navbar-nav .nav-item.dropdown .count-indicator i {\n font-size: 21px;\n margin-right: 0;\n vertical-align: middle; }\n .nav .nav-item.dropdown .count-indicator .count,\n .navbar-nav .nav-item.dropdown .count-indicator .count {\n position: absolute;\n left: 50%;\n width: 1rem;\n height: 1rem;\n border-radius: 100%;\n background: #FF0017;\n color: #ffffff;\n font-size: 11px;\n top: -1px;\n font-weight: 600;\n line-height: 1rem;\n border: none;\n text-align: center; }\n .nav .nav-item.dropdown .count-indicator:after,\n .navbar-nav .nav-item.dropdown .count-indicator:after {\n display: none; }\n .nav .nav-item.dropdown i,\n .navbar-nav .nav-item.dropdown i {\n margin-right: 0.5rem;\n vertical-align: middle; }\n .rtl .nav .nav-item.dropdown i, .rtl\n .navbar-nav .nav-item.dropdown i {\n margin-left: 0.5rem;\n margin-right: 0; }\n .nav .nav-item.dropdown .navbar-dropdown,\n .navbar-nav .nav-item.dropdown .navbar-dropdown {\n font-size: 0.9rem;\n margin-top: 0;\n position: absolute;\n top: calc(63px - 6px);\n right: 0;\n left: auto;\n border: 1px solid rgba(182, 182, 182, 0.1);\n padding: 0 0 20px;\n min-width: 100%;\n border-radius: 2px;\n -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.13);\n -moz-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.13);\n box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.13);\n overflow: hidden; }\n .rtl .nav .nav-item.dropdown .navbar-dropdown, .rtl\n .navbar-nav .nav-item.dropdown .navbar-dropdown {\n right: auto;\n left: 0; }\n @media (max-width: 991px) {\n .nav .nav-item.dropdown .navbar-dropdown,\n .navbar-nav .nav-item.dropdown .navbar-dropdown {\n right: -85px; } }\n .nav .nav-item.dropdown .navbar-dropdown.dropdown-left,\n .navbar-nav .nav-item.dropdown .navbar-dropdown.dropdown-left {\n left: 0;\n right: auto; }\n .nav .nav-item.dropdown .navbar-dropdown .badge,\n .navbar-nav .nav-item.dropdown .navbar-dropdown .badge {\n margin-left: 2.5rem; }\n .rtl .nav .nav-item.dropdown .navbar-dropdown .badge, .rtl\n .navbar-nav .nav-item.dropdown .navbar-dropdown .badge {\n margin-left: 0;\n margin-right: 1.25rem; }\n @media (max-width: 991px) {\n .nav .nav-item.dropdown .navbar-dropdown .badge,\n .navbar-nav .nav-item.dropdown .navbar-dropdown .badge {\n margin-right: 0.5rem; }\n .rtl .nav .nav-item.dropdown .navbar-dropdown .badge, .rtl\n .navbar-nav .nav-item.dropdown .navbar-dropdown .badge {\n margin-left: 0.5rem;\n margin-right: 0; } }\n .nav .nav-item.dropdown .navbar-dropdown .dropdown-item,\n .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item {\n margin-bottom: 0;\n padding: 7px 25px; }\n .nav .nav-item.dropdown .navbar-dropdown .dropdown-item i,\n .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item i {\n font-size: 24px; }\n .nav .nav-item.dropdown .navbar-dropdown .dropdown-item .ellipsis,\n .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item .ellipsis {\n max-width: 200px;\n overflow: hidden;\n text-overflow: ellipsis; }\n .nav .nav-item.dropdown .navbar-dropdown .dropdown-item .preview-icon,\n .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item .preview-icon {\n width: 40px;\n height: 40px;\n display: flex;\n align-items: center;\n justify-content: center; }\n .nav .nav-item.dropdown .navbar-dropdown .dropdown-item .small-text,\n .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item .small-text {\n font-size: 0.75rem; }\n .nav .nav-item.dropdown .navbar-dropdown .dropdown-divider,\n .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-divider {\n margin: 0; }\n\n/* New Account */\n.new-accounts {\n overflow: hidden;\n position: relative; }\n .new-accounts ul.chats {\n height: 100%;\n padding: 0;\n margin-bottom: 0;\n overflow-x: hidden; }\n .new-accounts ul.chats li.chat-persons {\n padding: 15px 0;\n display: block;\n border-bottom: 1px solid #f2f2f2; }\n .new-accounts ul.chats li.chat-persons:last-child {\n border-bottom: none; }\n .new-accounts ul.chats li.chat-persons .btn.btn-xs, .new-accounts ul.chats li.chat-persons .ajax-upload-dragdrop .btn-xs.ajax-file-upload, .ajax-upload-dragdrop .new-accounts ul.chats li.chat-persons .btn-xs.ajax-file-upload, .new-accounts ul.chats li.chat-persons .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-submit, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons .ajax-file-upload.editable-submit, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .new-accounts ul.chats li.chat-persons .ajax-file-upload.editable-submit, .new-accounts ul.chats li.chat-persons .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-file-upload.editable-cancel, .ajax-upload-dragdrop .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons .ajax-file-upload.editable-cancel, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .ajax-file-upload.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .ajax-upload-dragdrop .new-accounts ul.chats li.chat-persons .ajax-file-upload.editable-cancel, .new-accounts ul.chats li.chat-persons .swal2-modal .swal2-buttonswrapper .btn-xs.swal2-styled, .swal2-modal .swal2-buttonswrapper .new-accounts ul.chats li.chat-persons .btn-xs.swal2-styled, .new-accounts ul.chats li.chat-persons .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-submit, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons .swal2-styled.editable-submit, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .new-accounts ul.chats li.chat-persons .swal2-styled.editable-submit, .new-accounts ul.chats li.chat-persons .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-styled.editable-cancel, .swal2-modal .swal2-buttonswrapper .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons .swal2-styled.editable-cancel, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .swal2-styled.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .swal2-modal .swal2-buttonswrapper .new-accounts ul.chats li.chat-persons .swal2-styled.editable-cancel, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons .btn.editable-submit, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-submit, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions .new-accounts ul.chats li.chat-persons a.editable-submit, .new-accounts ul.chats li.chat-persons .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-submit, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons a.editable-submit, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .btn.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons .btn.editable-cancel, .new-accounts ul.chats li.chat-persons .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions a.editable-cancel, .editable-container.editable-inline .editableform .control-group .editable-buttons .wizard > .actions .new-accounts ul.chats li.chat-persons a.editable-cancel, .new-accounts ul.chats li.chat-persons .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons a.editable-cancel, .wizard > .actions .editable-container.editable-inline .editableform .control-group .editable-buttons .new-accounts ul.chats li.chat-persons a.editable-cancel, .new-accounts ul.chats li.chat-persons .wizard > .actions a.btn-xs, .wizard > .actions .new-accounts ul.chats li.chat-persons a.btn-xs {\n padding: 0.2rem 0.75rem; }\n .new-accounts ul.chats li.chat-persons a {\n text-decoration: none; }\n .new-accounts ul.chats li.chat-persons a span.pro-pic {\n display: inline-block;\n padding: 0;\n width: 20%;\n max-width: 40px; }\n .new-accounts ul.chats li.chat-persons a span.pro-pic img {\n max-width: 100%;\n width: 100%;\n border-radius: 100%; }\n .new-accounts ul.chats li.chat-persons a div.user {\n width: 60%;\n padding: 5px 10px 0 15px; }\n .new-accounts ul.chats li.chat-persons a div.user p.u-name {\n margin: 0;\n color: #000; }\n .new-accounts ul.chats li.chat-persons a div.user p.u-designation {\n margin: 0;\n color: #000; }\n .new-accounts ul.chats li.chat-persons a p.joined-date {\n text-align: right;\n margin-left: auto;\n margin-bottom: 0; }\n .rtl .new-accounts ul.chats li.chat-persons a p.joined-date {\n margin-left: 0;\n margin-right: auto; }\n\n/* Pagination */\n.pagination .page-item .page-link, .jsgrid .jsgrid-pager .page-item .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-page a {\n border-color: #f2f2f2;\n font-size: 0.875rem;\n transition-duration: 0.3s; }\n .pagination .page-item .page-link:focus, .jsgrid .jsgrid-pager .page-item .page-link:focus, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:focus, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:focus, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:focus, .jsgrid .jsgrid-pager .jsgrid-pager-page a:focus {\n background: inherit; }\n .pagination .page-item .page-link i:before, .jsgrid .jsgrid-pager .page-item .page-link i:before, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link i:before, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-link i:before, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a i:before, .jsgrid .jsgrid-pager .jsgrid-pager-page a i:before {\n font-size: inherit;\n line-height: 1;\n vertical-align: middle; }\n\n.pagination .page-item.active .page-link, .jsgrid .jsgrid-pager .page-item.active .page-link, .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link, .pagination .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .page-item.active .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item.active a, .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .pagination .page-item.active\n.jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .page-item.active .jsgrid-pager-page a, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-item.active a, .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .pagination .page-item:active .page-link, .jsgrid .jsgrid-pager .page-item:active .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:active .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-page:active .page-link, .pagination .page-item:active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .page-item:active .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item:active a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:active a, .pagination .page-item:active\n.jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .page-item:active .jsgrid-pager-page a, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-item:active a, .jsgrid .jsgrid-pager .jsgrid-pager-page:active a, .pagination .page-item:focus .page-link, .jsgrid .jsgrid-pager .page-item:focus .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:focus .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-page:focus .page-link, .pagination .page-item:focus .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .page-item:focus .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item:focus a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:focus a, .pagination .page-item:focus\n.jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .page-item:focus .jsgrid-pager-page a, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-item:focus a, .jsgrid .jsgrid-pager .jsgrid-pager-page:focus a, .pagination .page-item:hover .page-link, .jsgrid .jsgrid-pager .page-item:hover .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:hover .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-page:hover .page-link, .pagination .page-item:hover .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .page-item:hover .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-item:hover a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:hover a, .pagination .page-item:hover\n.jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .page-item:hover .jsgrid-pager-page a, .jsgrid .jsgrid-pager .jsgrid-pager-page .page-item:hover a, .jsgrid .jsgrid-pager .jsgrid-pager-page:hover a {\n background: #2196f3;\n border-color: #2196f3;\n color: #ffffff; }\n\n.pagination.flat .page-item .page-link, .jsgrid .flat.jsgrid-pager .page-item .page-link, .pagination.flat .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination.flat .jsgrid-pager-nav-button .page-link, .jsgrid .flat.jsgrid-pager .jsgrid-pager-nav-button .page-link, .pagination.flat\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link,\n.jsgrid .jsgrid-pager .pagination.flat .jsgrid-pager-page .page-link, .jsgrid .flat.jsgrid-pager .jsgrid-pager-page .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.flat .page-item a, .pagination.flat .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination.flat .jsgrid-pager-nav-button a, .jsgrid .flat.jsgrid-pager .jsgrid-pager-nav-button a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.flat .page-item a, .pagination.flat .jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination.flat .jsgrid-pager-page a, .jsgrid .flat.jsgrid-pager .jsgrid-pager-page a {\n border: none;\n border-radius: 2px; }\n\n.pagination.separated .page-item, .jsgrid .separated.jsgrid-pager .page-item, .pagination.separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button, .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-nav-button, .jsgrid .separated.jsgrid-pager .jsgrid-pager-nav-button, .pagination.separated\n.jsgrid .jsgrid-pager .jsgrid-pager-page,\n.jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-page, .jsgrid .separated.jsgrid-pager .jsgrid-pager-page {\n margin-left: 2px;\n margin-right: 2px; }\n .pagination.separated .page-item:first-child, .jsgrid .separated.jsgrid-pager .page-item:first-child, .pagination.separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child, .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-nav-button:first-child, .jsgrid .separated.jsgrid-pager .jsgrid-pager-nav-button:first-child, .pagination.separated\n .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child,\n .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-page:first-child, .jsgrid .separated.jsgrid-pager .jsgrid-pager-page:first-child {\n margin-left: 0; }\n .pagination.separated .page-item:last-child, .jsgrid .separated.jsgrid-pager .page-item:last-child, .pagination.separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child, .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-nav-button:last-child, .jsgrid .separated.jsgrid-pager .jsgrid-pager-nav-button:last-child, .pagination.separated\n .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child,\n .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-page:last-child, .jsgrid .separated.jsgrid-pager .jsgrid-pager-page:last-child {\n margin-right: 0; }\n .pagination.separated .page-item .page-link, .jsgrid .separated.jsgrid-pager .page-item .page-link, .pagination.separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-nav-button .page-link, .jsgrid .separated.jsgrid-pager .jsgrid-pager-nav-button .page-link, .pagination.separated\n .jsgrid .jsgrid-pager .jsgrid-pager-page .page-link,\n .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-page .page-link, .jsgrid .separated.jsgrid-pager .jsgrid-pager-page .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.separated .page-item a, .pagination.separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-nav-button a, .jsgrid .separated.jsgrid-pager .jsgrid-pager-nav-button a,\n .jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.separated .page-item a, .pagination.separated .jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination.separated .jsgrid-pager-page a, .jsgrid .separated.jsgrid-pager .jsgrid-pager-page a {\n border-radius: 2px; }\n\n.pagination.rounded .page-item:first-child .page-link, .pagination.loader-demo-box .page-item:first-child .page-link, .jsgrid .loader-demo-box.jsgrid-pager .page-item:first-child .page-link, .jsgrid .rounded.jsgrid-pager .page-item:first-child .page-link, .pagination.rounded .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-nav-button:first-child .page-link, .pagination.loader-demo-box .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .pagination.rounded\n.jsgrid .jsgrid-pager .jsgrid-pager-page:first-child .page-link,\n.jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-page:first-child .page-link, .pagination.loader-demo-box\n.jsgrid .jsgrid-pager .jsgrid-pager-page:first-child .page-link,\n.jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-page:first-child .page-link, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-page:first-child .page-link, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-page:first-child .page-link, .pagination.rounded .page-item:first-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.rounded .page-item:first-child a, .pagination.loader-demo-box .page-item:first-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.loader-demo-box .page-item:first-child a, .jsgrid .loader-demo-box.jsgrid-pager .page-item:first-child .jsgrid-pager-nav-button a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-nav-button .page-item:first-child a, .jsgrid .rounded.jsgrid-pager .page-item:first-child .jsgrid-pager-nav-button a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-nav-button .page-item:first-child a, .pagination.rounded .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child a, .jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-nav-button:first-child a, .pagination.loader-demo-box .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child a, .jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-nav-button:first-child a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-nav-button:first-child a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-nav-button:first-child a, .pagination.rounded .page-item:first-child\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.rounded .page-item:first-child a, .pagination.loader-demo-box .page-item:first-child\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.loader-demo-box .page-item:first-child a, .jsgrid .loader-demo-box.jsgrid-pager .page-item:first-child .jsgrid-pager-page a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-page .page-item:first-child a, .jsgrid .rounded.jsgrid-pager .page-item:first-child .jsgrid-pager-page a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-page .page-item:first-child a, .pagination.rounded .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child a, .jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-page:first-child a, .pagination.loader-demo-box .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child a, .jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-page:first-child a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-page:first-child a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-page:first-child a {\n border-radius: 25px 0 0 25px; }\n\n.pagination.rounded .page-item:last-child .page-link, .pagination.loader-demo-box .page-item:last-child .page-link, .jsgrid .loader-demo-box.jsgrid-pager .page-item:last-child .page-link, .jsgrid .rounded.jsgrid-pager .page-item:last-child .page-link, .pagination.rounded .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-nav-button:last-child .page-link, .pagination.loader-demo-box .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .pagination.rounded\n.jsgrid .jsgrid-pager .jsgrid-pager-page:last-child .page-link,\n.jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-page:last-child .page-link, .pagination.loader-demo-box\n.jsgrid .jsgrid-pager .jsgrid-pager-page:last-child .page-link,\n.jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-page:last-child .page-link, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-page:last-child .page-link, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-page:last-child .page-link, .pagination.rounded .page-item:last-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.rounded .page-item:last-child a, .pagination.loader-demo-box .page-item:last-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.loader-demo-box .page-item:last-child a, .jsgrid .loader-demo-box.jsgrid-pager .page-item:last-child .jsgrid-pager-nav-button a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-nav-button .page-item:last-child a, .jsgrid .rounded.jsgrid-pager .page-item:last-child .jsgrid-pager-nav-button a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-nav-button .page-item:last-child a, .pagination.rounded .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child a, .jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-nav-button:last-child a, .pagination.loader-demo-box .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child a, .jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-nav-button:last-child a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-nav-button:last-child a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-nav-button:last-child a, .pagination.rounded .page-item:last-child\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.rounded .page-item:last-child a, .pagination.loader-demo-box .page-item:last-child\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.loader-demo-box .page-item:last-child a, .jsgrid .loader-demo-box.jsgrid-pager .page-item:last-child .jsgrid-pager-page a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-page .page-item:last-child a, .jsgrid .rounded.jsgrid-pager .page-item:last-child .jsgrid-pager-page a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-page .page-item:last-child a, .pagination.rounded .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child a, .jsgrid .jsgrid-pager .pagination.rounded .jsgrid-pager-page:last-child a, .pagination.loader-demo-box .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child a, .jsgrid .jsgrid-pager .pagination.loader-demo-box .jsgrid-pager-page:last-child a, .jsgrid .loader-demo-box.jsgrid-pager .jsgrid-pager-page:last-child a, .jsgrid .rounded.jsgrid-pager .jsgrid-pager-page:last-child a {\n border-radius: 0 25px 25px 0; }\n\n.pagination.rounded-flat .page-item, .jsgrid .rounded-flat.jsgrid-pager .page-item, .pagination.rounded-flat .jsgrid .jsgrid-pager .jsgrid-pager-nav-button, .jsgrid .jsgrid-pager .pagination.rounded-flat .jsgrid-pager-nav-button, .jsgrid .rounded-flat.jsgrid-pager .jsgrid-pager-nav-button, .pagination.rounded-flat\n.jsgrid .jsgrid-pager .jsgrid-pager-page,\n.jsgrid .jsgrid-pager .pagination.rounded-flat .jsgrid-pager-page, .jsgrid .rounded-flat.jsgrid-pager .jsgrid-pager-page {\n margin-right: 3px;\n margin-left: 3px; }\n .pagination.rounded-flat .page-item .page-link, .jsgrid .rounded-flat.jsgrid-pager .page-item .page-link, .pagination.rounded-flat .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination.rounded-flat .jsgrid-pager-nav-button .page-link, .jsgrid .rounded-flat.jsgrid-pager .jsgrid-pager-nav-button .page-link, .pagination.rounded-flat\n .jsgrid .jsgrid-pager .jsgrid-pager-page .page-link,\n .jsgrid .jsgrid-pager .pagination.rounded-flat .jsgrid-pager-page .page-link, .jsgrid .rounded-flat.jsgrid-pager .jsgrid-pager-page .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.rounded-flat .page-item a, .pagination.rounded-flat .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination.rounded-flat .jsgrid-pager-nav-button a, .jsgrid .rounded-flat.jsgrid-pager .jsgrid-pager-nav-button a,\n .jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.rounded-flat .page-item a, .pagination.rounded-flat .jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination.rounded-flat .jsgrid-pager-page a, .jsgrid .rounded-flat.jsgrid-pager .jsgrid-pager-page a {\n border: none;\n border-radius: 50px; }\n\n.pagination.rounded-separated .page-item, .jsgrid .rounded-separated.jsgrid-pager .page-item, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button, .pagination.rounded-separated\n.jsgrid .jsgrid-pager .jsgrid-pager-page,\n.jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page {\n margin-left: 2px;\n margin-right: 2px; }\n .pagination.rounded-separated .page-item:first-child, .jsgrid .rounded-separated.jsgrid-pager .page-item:first-child, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button:first-child, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button:first-child, .pagination.rounded-separated\n .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child,\n .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page:first-child, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page:first-child {\n margin-left: 0; }\n .pagination.rounded-separated .page-item:first-child .page-link, .jsgrid .rounded-separated.jsgrid-pager .page-item:first-child .page-link, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button:first-child .page-link, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button:first-child .page-link, .pagination.rounded-separated\n .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child .page-link,\n .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page:first-child .page-link, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page:first-child .page-link, .pagination.rounded-separated .page-item:first-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.rounded-separated .page-item:first-child a, .jsgrid .rounded-separated.jsgrid-pager .page-item:first-child .jsgrid-pager-nav-button a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button .page-item:first-child a, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:first-child a, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button:first-child a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button:first-child a, .pagination.rounded-separated .page-item:first-child\n .jsgrid .jsgrid-pager .jsgrid-pager-page a,\n .jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.rounded-separated .page-item:first-child a, .jsgrid .rounded-separated.jsgrid-pager .page-item:first-child .jsgrid-pager-page a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page .page-item:first-child a, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-page:first-child a, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page:first-child a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page:first-child a {\n border-radius: 10px 0 0 10px; }\n .pagination.rounded-separated .page-item:last-child, .jsgrid .rounded-separated.jsgrid-pager .page-item:last-child, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button:last-child, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button:last-child, .pagination.rounded-separated\n .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child,\n .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page:last-child, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page:last-child {\n margin-right: 0; }\n .pagination.rounded-separated .page-item:last-child .page-link, .jsgrid .rounded-separated.jsgrid-pager .page-item:last-child .page-link, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button:last-child .page-link, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button:last-child .page-link, .pagination.rounded-separated\n .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child .page-link,\n .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page:last-child .page-link, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page:last-child .page-link, .pagination.rounded-separated .page-item:last-child .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.rounded-separated .page-item:last-child a, .jsgrid .rounded-separated.jsgrid-pager .page-item:last-child .jsgrid-pager-nav-button a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button .page-item:last-child a, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button:last-child a, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button:last-child a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button:last-child a, .pagination.rounded-separated .page-item:last-child\n .jsgrid .jsgrid-pager .jsgrid-pager-page a,\n .jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.rounded-separated .page-item:last-child a, .jsgrid .rounded-separated.jsgrid-pager .page-item:last-child .jsgrid-pager-page a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page .page-item:last-child a, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-page:last-child a, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page:last-child a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page:last-child a {\n border-radius: 0 10px 10px 0; }\n .pagination.rounded-separated .page-item .page-link, .jsgrid .rounded-separated.jsgrid-pager .page-item .page-link, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button .page-link, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button .page-link, .pagination.rounded-separated\n .jsgrid .jsgrid-pager .jsgrid-pager-page .page-link,\n .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page .page-link, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page .page-link, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination.rounded-separated .page-item a, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-nav-button a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-nav-button a,\n .jsgrid .jsgrid-pager .jsgrid-pager-page .pagination.rounded-separated .page-item a, .pagination.rounded-separated .jsgrid .jsgrid-pager .jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination.rounded-separated .jsgrid-pager-page a, .jsgrid .rounded-separated.jsgrid-pager .jsgrid-pager-page a {\n border-radius: 2px; }\n\n/* pagination variations */\n.pagination-primary .page-item.active .page-link, .pagination-primary .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-primary .active.jsgrid-pager-nav-button .page-link, .pagination-primary\n.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link,\n.jsgrid .jsgrid-pager .pagination-primary .active.jsgrid-pager-page .page-link, .pagination-primary .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-primary .page-item.active a, .pagination-primary .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-primary .active.jsgrid-pager-nav-button a, .pagination-primary .page-item.active\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-primary .page-item.active a, .pagination-primary .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-primary .active.jsgrid-pager-page a {\n background: #2196f3;\n border-color: #2196f3; }\n\n.pagination-primary .page-item .page-link:hover, .pagination-primary .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-primary .jsgrid-pager-nav-button .page-link:hover, .pagination-primary\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover,\n.jsgrid .jsgrid-pager .pagination-primary .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-primary .page-item a:hover, .pagination-primary .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-primary .jsgrid-pager-nav-button a:hover,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-primary .page-item a:hover, .pagination-primary .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-primary .jsgrid-pager-page a:hover {\n background: #39a1f4;\n border-color: #2196f3;\n color: #ffffff; }\n\n.pagination-secondary .page-item.active .page-link, .pagination-secondary .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-secondary .active.jsgrid-pager-nav-button .page-link, .pagination-secondary\n.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link,\n.jsgrid .jsgrid-pager .pagination-secondary .active.jsgrid-pager-page .page-link, .pagination-secondary .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-secondary .page-item.active a, .pagination-secondary .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-secondary .active.jsgrid-pager-nav-button a, .pagination-secondary .page-item.active\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-secondary .page-item.active a, .pagination-secondary .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-secondary .active.jsgrid-pager-page a {\n background: #e6eef2;\n border-color: #e6eef2; }\n\n.pagination-secondary .page-item .page-link:hover, .pagination-secondary .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-secondary .jsgrid-pager-nav-button .page-link:hover, .pagination-secondary\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover,\n.jsgrid .jsgrid-pager .pagination-secondary .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-secondary .page-item a:hover, .pagination-secondary .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-secondary .jsgrid-pager-nav-button a:hover,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-secondary .page-item a:hover, .pagination-secondary .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-secondary .jsgrid-pager-page a:hover {\n background: #f7f9fb;\n border-color: #e6eef2;\n color: #ffffff; }\n\n.pagination-success .page-item.active .page-link, .pagination-success .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-success .active.jsgrid-pager-nav-button .page-link, .pagination-success\n.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link,\n.jsgrid .jsgrid-pager .pagination-success .active.jsgrid-pager-page .page-link, .pagination-success .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-success .page-item.active a, .pagination-success .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-success .active.jsgrid-pager-nav-button a, .pagination-success .page-item.active\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-success .page-item.active a, .pagination-success .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-success .active.jsgrid-pager-page a {\n background: #19d895;\n border-color: #19d895; }\n\n.pagination-success .page-item .page-link:hover, .pagination-success .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-success .jsgrid-pager-nav-button .page-link:hover, .pagination-success\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover,\n.jsgrid .jsgrid-pager .pagination-success .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-success .page-item a:hover, .pagination-success .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-success .jsgrid-pager-nav-button a:hover,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-success .page-item a:hover, .pagination-success .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-success .jsgrid-pager-page a:hover {\n background: #25e6a2;\n border-color: #19d895;\n color: #ffffff; }\n\n.pagination-info .page-item.active .page-link, .pagination-info .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-info .active.jsgrid-pager-nav-button .page-link, .pagination-info\n.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link,\n.jsgrid .jsgrid-pager .pagination-info .active.jsgrid-pager-page .page-link, .pagination-info .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-info .page-item.active a, .pagination-info .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-info .active.jsgrid-pager-nav-button a, .pagination-info .page-item.active\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-info .page-item.active a, .pagination-info .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-info .active.jsgrid-pager-page a {\n background: #8862e0;\n border-color: #8862e0; }\n\n.pagination-info .page-item .page-link:hover, .pagination-info .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-info .jsgrid-pager-nav-button .page-link:hover, .pagination-info\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover,\n.jsgrid .jsgrid-pager .pagination-info .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-info .page-item a:hover, .pagination-info .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-info .jsgrid-pager-nav-button a:hover,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-info .page-item a:hover, .pagination-info .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-info .jsgrid-pager-page a:hover {\n background: #9877e4;\n border-color: #8862e0;\n color: #ffffff; }\n\n.pagination-warning .page-item.active .page-link, .pagination-warning .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-warning .active.jsgrid-pager-nav-button .page-link, .pagination-warning\n.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link,\n.jsgrid .jsgrid-pager .pagination-warning .active.jsgrid-pager-page .page-link, .pagination-warning .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-warning .page-item.active a, .pagination-warning .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-warning .active.jsgrid-pager-nav-button a, .pagination-warning .page-item.active\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-warning .page-item.active a, .pagination-warning .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-warning .active.jsgrid-pager-page a {\n background: #ffaf00;\n border-color: #ffaf00; }\n\n.pagination-warning .page-item .page-link:hover, .pagination-warning .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-warning .jsgrid-pager-nav-button .page-link:hover, .pagination-warning\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover,\n.jsgrid .jsgrid-pager .pagination-warning .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-warning .page-item a:hover, .pagination-warning .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-warning .jsgrid-pager-nav-button a:hover,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-warning .page-item a:hover, .pagination-warning .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-warning .jsgrid-pager-page a:hover {\n background: #ffb71a;\n border-color: #ffaf00;\n color: #ffffff; }\n\n.pagination-danger .page-item.active .page-link, .pagination-danger .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-danger .active.jsgrid-pager-nav-button .page-link, .pagination-danger\n.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link,\n.jsgrid .jsgrid-pager .pagination-danger .active.jsgrid-pager-page .page-link, .pagination-danger .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-danger .page-item.active a, .pagination-danger .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-danger .active.jsgrid-pager-nav-button a, .pagination-danger .page-item.active\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-danger .page-item.active a, .pagination-danger .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-danger .active.jsgrid-pager-page a {\n background: #ff6258;\n border-color: #ff6258; }\n\n.pagination-danger .page-item .page-link:hover, .pagination-danger .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-danger .jsgrid-pager-nav-button .page-link:hover, .pagination-danger\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover,\n.jsgrid .jsgrid-pager .pagination-danger .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-danger .page-item a:hover, .pagination-danger .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-danger .jsgrid-pager-nav-button a:hover,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-danger .page-item a:hover, .pagination-danger .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-danger .jsgrid-pager-page a:hover {\n background: #ff7a72;\n border-color: #ff6258;\n color: #ffffff; }\n\n.pagination-light .page-item.active .page-link, .pagination-light .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-light .active.jsgrid-pager-nav-button .page-link, .pagination-light\n.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link,\n.jsgrid .jsgrid-pager .pagination-light .active.jsgrid-pager-page .page-link, .pagination-light .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-light .page-item.active a, .pagination-light .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-light .active.jsgrid-pager-nav-button a, .pagination-light .page-item.active\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-light .page-item.active a, .pagination-light .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-light .active.jsgrid-pager-page a {\n background: #fbfbfb;\n border-color: #fbfbfb; }\n\n.pagination-light .page-item .page-link:hover, .pagination-light .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-light .jsgrid-pager-nav-button .page-link:hover, .pagination-light\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover,\n.jsgrid .jsgrid-pager .pagination-light .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-light .page-item a:hover, .pagination-light .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-light .jsgrid-pager-nav-button a:hover,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-light .page-item a:hover, .pagination-light .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-light .jsgrid-pager-page a:hover {\n background: white;\n border-color: #fbfbfb;\n color: #ffffff; }\n\n.pagination-dark .page-item.active .page-link, .pagination-dark .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button .page-link, .jsgrid .jsgrid-pager .pagination-dark .active.jsgrid-pager-nav-button .page-link, .pagination-dark\n.jsgrid .jsgrid-pager .active.jsgrid-pager-page .page-link,\n.jsgrid .jsgrid-pager .pagination-dark .active.jsgrid-pager-page .page-link, .pagination-dark .page-item.active .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-dark .page-item.active a, .pagination-dark .jsgrid .jsgrid-pager .active.jsgrid-pager-nav-button a, .jsgrid .jsgrid-pager .pagination-dark .active.jsgrid-pager-nav-button a, .pagination-dark .page-item.active\n.jsgrid .jsgrid-pager .jsgrid-pager-page a,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-dark .page-item.active a, .pagination-dark .jsgrid .jsgrid-pager .active.jsgrid-pager-page a, .jsgrid .jsgrid-pager .pagination-dark .active.jsgrid-pager-page a {\n background: #252C46;\n border-color: #252C46; }\n\n.pagination-dark .page-item .page-link:hover, .pagination-dark .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link:hover, .jsgrid .jsgrid-pager .pagination-dark .jsgrid-pager-nav-button .page-link:hover, .pagination-dark\n.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link:hover,\n.jsgrid .jsgrid-pager .pagination-dark .jsgrid-pager-page .page-link:hover, .jsgrid .jsgrid-pager .jsgrid-pager-nav-button .pagination-dark .page-item a:hover, .pagination-dark .jsgrid .jsgrid-pager .jsgrid-pager-nav-button a:hover, .jsgrid .jsgrid-pager .pagination-dark .jsgrid-pager-nav-button a:hover,\n.jsgrid .jsgrid-pager .jsgrid-pager-page .pagination-dark .page-item a:hover, .pagination-dark .jsgrid .jsgrid-pager .jsgrid-pager-page a:hover, .jsgrid .jsgrid-pager .pagination-dark .jsgrid-pager-page a:hover {\n background: #2e3657;\n border-color: #252C46;\n color: #ffffff; }\n\n/* Popovers */\n.popover-static-demo .popover {\n width: 185px;\n position: relative;\n display: block;\n float: left;\n margin: 1rem 0.5rem; }\n .popover-static-demo .popover.bs-popover-bottom-demo .arrow, .popover-static-demo .popover.bs-popover-top-demo .arrow {\n left: 50%;\n transform: translateX(-50%); }\n .popover-static-demo .popover.bs-popover-left-demo .arrow, .popover-static-demo .popover.bs-popover-right-demo .arrow {\n top: 50%;\n transform: translateY(-50%); }\n\n.popover {\n z-index: 1029; }\n .popover.bs-popover-top-demo .arrow:before {\n border-top-color: #e3f2fd; }\n .popover.bs-popover-top-demo .arrow:after {\n border-top-color: #e3f2fd; }\n .popover.bs-popover-right-demo .arrow:before {\n border-right-color: #e3f2fd; }\n .popover.bs-popover-right-demo .arrow:after {\n border-right-color: #e3f2fd; }\n .popover.bs-popover-bottom-demo .arrow:before {\n border-bottom-color: #e3f2fd; }\n .popover.bs-popover-bottom-demo .arrow:after {\n border-bottom-color: #e3f2fd; }\n .popover.bs-popover-bottom-demo .popover-header:before {\n border-bottom: 0; }\n .popover.bs-popover-left-demo .arrow:before {\n border-left-color: #e3f2fd; }\n .popover.bs-popover-left-demo .arrow:after {\n border-left-color: #e3f2fd; }\n .popover .popover-header {\n font-size: 0.9375rem;\n border-bottom: 0;\n color: #2196f3;\n background: #e3f2fd; }\n .popover .popover-body {\n color: #000;\n background: #e3f2fd; }\n .popover.left .arrow:after {\n border-left-color: #e3f2fd; }\n .popover.right .arrow:after {\n border-right-color: #e3f2fd; }\n\n.popover-primary .popover-header {\n background: #2196f3;\n color: #ffffff; }\n\n.popover-primary.bs-popover-top .arrow:after, .popover-primary.bs-popover-auto[x-placement^=\"top\"] .arrow:after, .popover-primary.bs-popover-top .arrow:before, .popover-primary.bs-popover-auto[x-placement^=\"top\"] .arrow:before {\n border-top-color: #2196f3; }\n\n.popover-primary.bs-popover-right .arrow:after, .popover-primary.bs-popover-auto[x-placement^=\"right\"] .arrow:after, .popover-primary.bs-popover-right .arrow:before, .popover-primary.bs-popover-auto[x-placement^=\"right\"] .arrow:before {\n border-right-color: #2196f3; }\n\n.popover-primary.bs-popover-bottom .arrow:after, .popover-primary.bs-popover-auto[x-placement^=\"bottom\"] .arrow:after, .popover-primary.bs-popover-bottom .arrow:before, .popover-primary.bs-popover-auto[x-placement^=\"bottom\"] .arrow:before {\n border-bottom-color: #2196f3; }\n\n.popover-primary.bs-popover-left .arrow:after, .popover-primary.bs-popover-auto[x-placement^=\"left\"] .arrow:after, .popover-primary.bs-popover-left .arrow:before, .popover-primary.bs-popover-auto[x-placement^=\"left\"] .arrow:before {\n border-left-color: #2196f3; }\n\n.popover-secondary .popover-header {\n background: #e6eef2;\n color: #ffffff; }\n\n.popover-secondary.bs-popover-top .arrow:after, .popover-secondary.bs-popover-auto[x-placement^=\"top\"] .arrow:after, .popover-secondary.bs-popover-top .arrow:before, .popover-secondary.bs-popover-auto[x-placement^=\"top\"] .arrow:before {\n border-top-color: #e6eef2; }\n\n.popover-secondary.bs-popover-right .arrow:after, .popover-secondary.bs-popover-auto[x-placement^=\"right\"] .arrow:after, .popover-secondary.bs-popover-right .arrow:before, .popover-secondary.bs-popover-auto[x-placement^=\"right\"] .arrow:before {\n border-right-color: #e6eef2; }\n\n.popover-secondary.bs-popover-bottom .arrow:after, .popover-secondary.bs-popover-auto[x-placement^=\"bottom\"] .arrow:after, .popover-secondary.bs-popover-bottom .arrow:before, .popover-secondary.bs-popover-auto[x-placement^=\"bottom\"] .arrow:before {\n border-bottom-color: #e6eef2; }\n\n.popover-secondary.bs-popover-left .arrow:after, .popover-secondary.bs-popover-auto[x-placement^=\"left\"] .arrow:after, .popover-secondary.bs-popover-left .arrow:before, .popover-secondary.bs-popover-auto[x-placement^=\"left\"] .arrow:before {\n border-left-color: #e6eef2; }\n\n.popover-success .popover-header {\n background: #19d895;\n color: #ffffff; }\n\n.popover-success.bs-popover-top .arrow:after, .popover-success.bs-popover-auto[x-placement^=\"top\"] .arrow:after, .popover-success.bs-popover-top .arrow:before, .popover-success.bs-popover-auto[x-placement^=\"top\"] .arrow:before {\n border-top-color: #19d895; }\n\n.popover-success.bs-popover-right .arrow:after, .popover-success.bs-popover-auto[x-placement^=\"right\"] .arrow:after, .popover-success.bs-popover-right .arrow:before, .popover-success.bs-popover-auto[x-placement^=\"right\"] .arrow:before {\n border-right-color: #19d895; }\n\n.popover-success.bs-popover-bottom .arrow:after, .popover-success.bs-popover-auto[x-placement^=\"bottom\"] .arrow:after, .popover-success.bs-popover-bottom .arrow:before, .popover-success.bs-popover-auto[x-placement^=\"bottom\"] .arrow:before {\n border-bottom-color: #19d895; }\n\n.popover-success.bs-popover-left .arrow:after, .popover-success.bs-popover-auto[x-placement^=\"left\"] .arrow:after, .popover-success.bs-popover-left .arrow:before, .popover-success.bs-popover-auto[x-placement^=\"left\"] .arrow:before {\n border-left-color: #19d895; }\n\n.popover-info .popover-header {\n background: #8862e0;\n color: #ffffff; }\n\n.popover-info.bs-popover-top .arrow:after, .popover-info.bs-popover-auto[x-placement^=\"top\"] .arrow:after, .popover-info.bs-popover-top .arrow:before, .popover-info.bs-popover-auto[x-placement^=\"top\"] .arrow:before {\n border-top-color: #8862e0; }\n\n.popover-info.bs-popover-right .arrow:after, .popover-info.bs-popover-auto[x-placement^=\"right\"] .arrow:after, .popover-info.bs-popover-right .arrow:before, .popover-info.bs-popover-auto[x-placement^=\"right\"] .arrow:before {\n border-right-color: #8862e0; }\n\n.popover-info.bs-popover-bottom .arrow:after, .popover-info.bs-popover-auto[x-placement^=\"bottom\"] .arrow:after, .popover-info.bs-popover-bottom .arrow:before, .popover-info.bs-popover-auto[x-placement^=\"bottom\"] .arrow:before {\n border-bottom-color: #8862e0; }\n\n.popover-info.bs-popover-left .arrow:after, .popover-info.bs-popover-auto[x-placement^=\"left\"] .arrow:after, .popover-info.bs-popover-left .arrow:before, .popover-info.bs-popover-auto[x-placement^=\"left\"] .arrow:before {\n border-left-color: #8862e0; }\n\n.popover-warning .popover-header {\n background: #ffaf00;\n color: #ffffff; }\n\n.popover-warning.bs-popover-top .arrow:after, .popover-warning.bs-popover-auto[x-placement^=\"top\"] .arrow:after, .popover-warning.bs-popover-top .arrow:before, .popover-warning.bs-popover-auto[x-placement^=\"top\"] .arrow:before {\n border-top-color: #ffaf00; }\n\n.popover-warning.bs-popover-right .arrow:after, .popover-warning.bs-popover-auto[x-placement^=\"right\"] .arrow:after, .popover-warning.bs-popover-right .arrow:before, .popover-warning.bs-popover-auto[x-placement^=\"right\"] .arrow:before {\n border-right-color: #ffaf00; }\n\n.popover-warning.bs-popover-bottom .arrow:after, .popover-warning.bs-popover-auto[x-placement^=\"bottom\"] .arrow:after, .popover-warning.bs-popover-bottom .arrow:before, .popover-warning.bs-popover-auto[x-placement^=\"bottom\"] .arrow:before {\n border-bottom-color: #ffaf00; }\n\n.popover-warning.bs-popover-left .arrow:after, .popover-warning.bs-popover-auto[x-placement^=\"left\"] .arrow:after, .popover-warning.bs-popover-left .arrow:before, .popover-warning.bs-popover-auto[x-placement^=\"left\"] .arrow:before {\n border-left-color: #ffaf00; }\n\n.popover-danger .popover-header {\n background: #ff6258;\n color: #ffffff; }\n\n.popover-danger.bs-popover-top .arrow:after, .popover-danger.bs-popover-auto[x-placement^=\"top\"] .arrow:after, .popover-danger.bs-popover-top .arrow:before, .popover-danger.bs-popover-auto[x-placement^=\"top\"] .arrow:before {\n border-top-color: #ff6258; }\n\n.popover-danger.bs-popover-right .arrow:after, .popover-danger.bs-popover-auto[x-placement^=\"right\"] .arrow:after, .popover-danger.bs-popover-right .arrow:before, .popover-danger.bs-popover-auto[x-placement^=\"right\"] .arrow:before {\n border-right-color: #ff6258; }\n\n.popover-danger.bs-popover-bottom .arrow:after, .popover-danger.bs-popover-auto[x-placement^=\"bottom\"] .arrow:after, .popover-danger.bs-popover-bottom .arrow:before, .popover-danger.bs-popover-auto[x-placement^=\"bottom\"] .arrow:before {\n border-bottom-color: #ff6258; }\n\n.popover-danger.bs-popover-left .arrow:after, .popover-danger.bs-popover-auto[x-placement^=\"left\"] .arrow:after, .popover-danger.bs-popover-left .arrow:before, .popover-danger.bs-popover-auto[x-placement^=\"left\"] .arrow:before {\n border-left-color: #ff6258; }\n\n.popover-light .popover-header {\n background: #fbfbfb;\n color: #ffffff; }\n\n.popover-light.bs-popover-top .arrow:after, .popover-light.bs-popover-auto[x-placement^=\"top\"] .arrow:after, .popover-light.bs-popover-top .arrow:before, .popover-light.bs-popover-auto[x-placement^=\"top\"] .arrow:before {\n border-top-color: #fbfbfb; }\n\n.popover-light.bs-popover-right .arrow:after, .popover-light.bs-popover-auto[x-placement^=\"right\"] .arrow:after, .popover-light.bs-popover-right .arrow:before, .popover-light.bs-popover-auto[x-placement^=\"right\"] .arrow:before {\n border-right-color: #fbfbfb; }\n\n.popover-light.bs-popover-bottom .arrow:after, .popover-light.bs-popover-auto[x-placement^=\"bottom\"] .arrow:after, .popover-light.bs-popover-bottom .arrow:before, .popover-light.bs-popover-auto[x-placement^=\"bottom\"] .arrow:before {\n border-bottom-color: #fbfbfb; }\n\n.popover-light.bs-popover-left .arrow:after, .popover-light.bs-popover-auto[x-placement^=\"left\"] .arrow:after, .popover-light.bs-popover-left .arrow:before, .popover-light.bs-popover-auto[x-placement^=\"left\"] .arrow:before {\n border-left-color: #fbfbfb; }\n\n.popover-dark .popover-header {\n background: #252C46;\n color: #ffffff; }\n\n.popover-dark.bs-popover-top .arrow:after, .popover-dark.bs-popover-auto[x-placement^=\"top\"] .arrow:after, .popover-dark.bs-popover-top .arrow:before, .popover-dark.bs-popover-auto[x-placement^=\"top\"] .arrow:before {\n border-top-color: #252C46; }\n\n.popover-dark.bs-popover-right .arrow:after, .popover-dark.bs-popover-auto[x-placement^=\"right\"] .arrow:after, .popover-dark.bs-popover-right .arrow:before, .popover-dark.bs-popover-auto[x-placement^=\"right\"] .arrow:before {\n border-right-color: #252C46; }\n\n.popover-dark.bs-popover-bottom .arrow:after, .popover-dark.bs-popover-auto[x-placement^=\"bottom\"] .arrow:after, .popover-dark.bs-popover-bottom .arrow:before, .popover-dark.bs-popover-auto[x-placement^=\"bottom\"] .arrow:before {\n border-bottom-color: #252C46; }\n\n.popover-dark.bs-popover-left .arrow:after, .popover-dark.bs-popover-auto[x-placement^=\"left\"] .arrow:after, .popover-dark.bs-popover-left .arrow:before, .popover-dark.bs-popover-auto[x-placement^=\"left\"] .arrow:before {\n border-left-color: #252C46; }\n\n/* Portfolio */\n.portfolio-grid figure {\n position: relative;\n float: left;\n overflow: hidden;\n width: 100%;\n background: #ffaf00;\n text-align: center;\n cursor: pointer; }\n @media (max-width: 767px) {\n .portfolio-grid figure {\n width: 270px; } }\n .portfolio-grid figure img {\n position: relative;\n display: block;\n min-height: 100%;\n max-width: 100%;\n width: 100%;\n opacity: 0.8; }\n .portfolio-grid figure figcaption {\n padding: 2em;\n color: #ffffff;\n text-transform: uppercase;\n font-size: 1.25em;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%; }\n .portfolio-grid figure figcaption:after, .portfolio-grid figure figcaption:before {\n pointer-events: none; }\n .portfolio-grid figure.effect-text-in {\n border-radius: 0.25rem; }\n .portfolio-grid figure.effect-text-in h4,\n .portfolio-grid figure.effect-text-in img {\n -webkit-transition: -webkit-transform 0.35s;\n transition: transform 0.35s; }\n .portfolio-grid figure.effect-text-in img {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden; }\n .portfolio-grid figure.effect-text-in h4,\n .portfolio-grid figure.effect-text-in p {\n position: absolute;\n bottom: 10px;\n left: 0;\n padding: 10px;\n margin-bottom: 0;\n width: 100%; }\n .portfolio-grid figure.effect-text-in p {\n text-transform: none;\n opacity: 0;\n -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;\n transition: opacity 0.35s, transform 0.35s;\n -webkit-transform: translate3d(0, 50px, 0);\n transform: translate3d(0, 50px, 0); }\n .portfolio-grid figure.effect-text-in:hover img {\n -webkit-transform: translate3d(0, -80px, 0);\n transform: translate3d(0, -80px, 0); }\n .portfolio-grid figure.effect-text-in:hover h4 {\n -webkit-transform: translate3d(0, -100px, 0);\n transform: translate3d(0, -100px, 0); }\n .portfolio-grid figure.effect-text-in:hover p {\n opacity: 1;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0); }\n\n/* Preview */\n.preview-list .preview-item {\n display: flex;\n flex-direction: row;\n align-items: flex-start;\n padding: 0.75rem 1.5rem;\n font-size: 0.875rem;\n border-bottom: 1px solid #f2f2f2; }\n .preview-list .preview-item:last-child {\n border-bottom: 0; }\n .preview-list .preview-item:hover {\n background: #f8f9fa; }\n .preview-list .preview-item .form-check {\n margin-top: 8px;\n margin-right: 1rem; }\n .preview-list .preview-item .preview-thumbnail {\n color: #ffffff;\n position: relative; }\n .preview-list .preview-item .preview-thumbnail .preview-icon,\n .preview-list .preview-item .preview-thumbnail img {\n border-radius: 100%; }\n .preview-list .preview-item .preview-thumbnail .preview-icon {\n padding: 6px;\n text-align: center; }\n .preview-list .preview-item .preview-thumbnail .preview-icon i {\n font-size: 1.125rem; }\n .preview-list .preview-item .preview-thumbnail .badge {\n border: 2px solid #ffffff;\n border-radius: 100%;\n bottom: 5px;\n display: block;\n height: 14px;\n left: -5px;\n padding: 0;\n position: absolute;\n width: 14px; }\n .preview-list .preview-item .preview-item-content {\n line-height: 1;\n padding-left: 1.5rem; }\n .rtl .preview-list .preview-item .preview-item-content {\n padding-left: 0;\n padding-right: 1.5rem; }\n .preview-list .preview-item .preview-item-content:first-child {\n padding-left: 0; }\n .rtl .preview-list .preview-item .preview-item-content:first-child {\n padding-right: 0; }\n .preview-list .preview-item .preview-item-content p {\n margin-bottom: 10px; }\n .preview-list .preview-item .preview-item-content p .content-category {\n font-family: \"Poppins\", sans-serif;\n padding-right: 15px;\n border-right: 1px solid #f2f2f2; }\n .preview-list .preview-item .preview-actions {\n display: flex;\n flex-direction: row; }\n .preview-list .preview-item .preview-actions i {\n width: 29px;\n color: #f7f7f9;\n height: 29px;\n border: 2px solid #f7f7f9;\n border-radius: 100%;\n padding: 3px 6px;\n display: inline-block; }\n .preview-list .preview-item .preview-actions i:first-child {\n margin-right: 10px; }\n\n.preview-list.comment-preview .preview-item {\n padding: 0.87rem 0; }\n .preview-list.comment-preview .preview-item:first-child {\n padding-top: 0; }\n .preview-list.comment-preview .preview-item p {\n line-height: 27px; }\n\n.preview-list.bordered .preview-item {\n border-bottom: 1px solid #f2f2f2; }\n .preview-list.bordered .preview-item:last-child {\n border-bottom: 0; }\n\n/* Pricing table */\n.pricing-table .pricing-card .pricing-card-body {\n padding: 50px 56px 43px; }\n .pricing-table .pricing-card .pricing-card-body .plan-features {\n width: 100%;\n margin-bottom: 32px; }\n .pricing-table .pricing-card .pricing-card-body .plan-features li {\n text-align: left;\n padding: 4px 0;\n font-family: \"Poppins\", sans-serif;\n font-size: 0.875rem; }\n\n/* Tables */\n.table, .jsgrid .jsgrid-table {\n margin-bottom: 0; }\n .table thead th, .jsgrid .jsgrid-table thead th {\n border-top: 0;\n border-bottom-width: 1px;\n font-family: \"Poppins\", sans-serif;\n font-weight: 500; }\n .table thead th i, .jsgrid .jsgrid-table thead th i {\n margin-left: 0.325rem; }\n .table td, .jsgrid .jsgrid-table td,\n .table th, .jsgrid .jsgrid-table th {\n vertical-align: middle;\n font-size: 0.875rem;\n line-height: 1;\n white-space: nowrap;\n height: 35px;\n padding: 18px 15px; }\n .table td img, .jsgrid .jsgrid-table td img,\n .table th img, .jsgrid .jsgrid-table th img {\n border-radius: 100%; }\n .table td .badge, .jsgrid .jsgrid-table td .badge,\n .table th .badge, .jsgrid .jsgrid-table th .badge {\n margin-bottom: 0; }\n .table td .form-check, .jsgrid .jsgrid-table td .form-check,\n .table td .form-radio, .jsgrid .jsgrid-table td .form-radio,\n .table th .form-check, .jsgrid .jsgrid-table th .form-check,\n .table th .form-radio, .jsgrid .jsgrid-table th .form-radio {\n margin-top: 0;\n margin-bottom: -0px; }\n .table.table-borderless, .jsgrid .table-borderless.jsgrid-table {\n border: none; }\n .table.table-borderless td, .jsgrid .table-borderless.jsgrid-table td,\n .table.table-borderless th, .jsgrid .table-borderless.jsgrid-table th,\n .table.table-borderless tr, .jsgrid .table-borderless.jsgrid-table tr {\n border: none; }\n .table.table-bordered thead, .jsgrid .table-bordered.jsgrid-table thead {\n border: 1px solid #f2f2f2;\n border-bottom: none; }\n .table.table-bordered thead tr th, .jsgrid .table-bordered.jsgrid-table thead tr th {\n border-left: none;\n border-right: none; }\n .table.table-striped thead tr, .jsgrid .table-striped.jsgrid-table thead tr {\n background-color: #fbfbfb; }\n\n/* Tabs */\n.nav-pills .nav-item .nav-link,\n.nav-tabs .nav-item .nav-link {\n font-family: \"Poppins\", sans-serif;\n line-height: 1;\n font-size: 0.875rem;\n color: #000;\n text-align: center;\n display: flex; }\n .nav-pills .nav-item .nav-link i,\n .nav-tabs .nav-item .nav-link i {\n margin-right: 10px; }\n\n.tab-content {\n font-family: \"Poppins\", sans-serif;\n font-size: 0.875rem;\n line-height: 1.71; }\n\n.tab-basic {\n border-bottom: none;\n margin-bottom: 20px; }\n .tab-basic .nav-item {\n margin-right: 7%; }\n .tab-basic .nav-item .nav-link {\n color: #858585;\n padding: 0 0 7px;\n border-top: none;\n border-right: none;\n border-left: none;\n border-bottom: 2px solid #ffffff; }\n .tab-basic .nav-item .nav-link.active {\n border-top: none;\n border-right: none;\n border-left: none;\n border-bottom: 2px solid #19d895;\n color: #19d895; }\n\n.tab-solid {\n border: none;\n margin-bottom: 30px; }\n .tab-solid .nav-item .nav-link {\n border: none;\n padding: 10px 16px;\n border-radius: 4px; }\n .tab-solid .nav-item .nav-link:nth(fist-child) {\n padding-left: 0; }\n .tab-solid .nav-item .nav-link.active {\n border: none;\n color: #ffffff; }\n\n.tab-content-solid {\n border: none;\n padding-left: 0;\n padding-right: 0; }\n\n.tab-solid-primary .nav-link.active {\n background: #2196f3; }\n\n.tab-solid-secondary .nav-link.active {\n background: #e6eef2; }\n\n.tab-solid-success .nav-link.active {\n background: #19d895; }\n\n.tab-solid-info .nav-link.active {\n background: #8862e0; }\n\n.tab-solid-warning .nav-link.active {\n background: #ffaf00; }\n\n.tab-solid-danger .nav-link.active {\n background: #ff6258; }\n\n.tab-solid-light .nav-link.active {\n background: #fbfbfb; }\n\n.tab-solid-dark .nav-link.active {\n background: #252C46; }\n\n.tab-minimal .nav-tabs {\n border: none; }\n .tab-minimal .nav-tabs .nav-item .nav-link {\n border: none;\n font-size: 14px; }\n .tab-minimal .nav-tabs .nav-item .nav-link.active {\n font-weight: 600; }\n .tab-minimal .nav-tabs .nav-item .nav-link:first-child {\n padding-left: 0; }\n\n.tab-simple-styled {\n border-bottom: none;\n margin-top: 30px;\n margin-bottom: 30px; }\n .tab-simple-styled .nav-item {\n margin-right: 30px; }\n .tab-simple-styled .nav-item .nav-link {\n border: none;\n padding: 0;\n color: #858585; }\n .tab-simple-styled .nav-item .nav-link.active {\n color: #8862e0; }\n\n.vertical-tab {\n display: flex; }\n .vertical-tab .nav-tabs {\n flex-direction: column;\n margin-bottom: 0; }\n .vertical-tab .tab-content {\n margin-bottom: 0; }\n\n/* Settings Panel */\n.settings-panel {\n display: block;\n position: fixed;\n top: 0;\n right: -300px;\n bottom: 0;\n width: 300px;\n height: 100vh;\n min-height: 100%;\n background: #ffffff;\n padding-top: 50px;\n transition-duration: 0.25s;\n transition-timing-function: ease;\n transition-property: right, box-shadow;\n z-index: 9999; }\n .settings-panel .nav-tabs {\n display: flex;\n justify-content: center;\n width: auto;\n margin: 0;\n padding: 0;\n background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1); }\n .settings-panel .nav-tabs .nav-item {\n border: none; }\n .settings-panel .nav-tabs .nav-item .nav-link {\n text-align: center;\n border: none;\n display: flex;\n align-items: center;\n color: rgba(255, 255, 255, 0.5);\n transition-duration: 0.4s;\n transition-property: color;\n justify-content: center; }\n .settings-panel .nav-tabs .nav-item .nav-link.active {\n background: transparent;\n color: #ffffff; }\n .settings-panel .tab-content {\n border: none;\n padding: 20px 0 0; }\n .settings-panel .tab-content .tab-pane.scroll-wrapper {\n position: relative;\n max-height: 100vh;\n height: 100%;\n padding-bottom: 150px; }\n .settings-panel .settings-heading {\n padding: 16px 0 13px 20px; }\n .rtl .settings-panel .settings-heading {\n padding: 16px 35px 13px 0;\n text-align: right; }\n .rtl .settings-panel small.settings-heading {\n padding: 16px 0 13px 12px; }\n .settings-panel .sidebar-bg-options {\n padding: 13px 35px;\n display: flex;\n align-items: center;\n font-size: 0.875rem;\n line-height: 1;\n color: #595959;\n background: #ffffff;\n transition-duration: 0.25s;\n transition-property: background; }\n .settings-panel .sidebar-bg-options.selected {\n background: #f7f7f9; }\n .settings-panel .color-tiles {\n display: flex;\n justify-content: space-around;\n flex-wrap: wrap;\n margin: 0 35px 10px;\n padding-top: 15px; }\n .settings-panel .color-tiles .tiles {\n margin: 10px 18px;\n display: flex;\n align-items: center;\n justify-content: center; }\n .settings-panel .color-tiles .tiles:before {\n content: \"\";\n width: 0;\n height: 0;\n opacity: 0;\n background: rgba(255, 255, 255, 0.5);\n border-radius: 100%;\n border: 0 solid rgba(255, 255, 255, 0.4);\n transition-duration: 0.25s;\n transition-timing-function: ease; }\n .settings-panel .color-tiles .tiles.selected:before {\n width: 10px;\n height: 10px;\n opacity: 1;\n border-width: 1px; }\n .settings-panel .color-tiles .tiles.pink {\n background: #E91E63; }\n .settings-panel .color-tiles .tiles.default {\n border: 1px solid white;\n background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1); }\n .settings-panel .chat-list {\n padding-left: 0; }\n .settings-panel .chat-list .list {\n padding: 0.4rem 0.8rem;\n display: flex;\n justify-content: space-between;\n border-bottom: 1px solid #f2f2f2; }\n .settings-panel .chat-list .list:last-child {\n border-bottom: none; }\n .settings-panel .chat-list .list .profile {\n position: relative;\n margin-right: 1rem; }\n .settings-panel .chat-list .list .profile img {\n width: 2.50rem;\n height: 2.50rem;\n border-radius: 100%; }\n .settings-panel .chat-list .list .profile span {\n height: 0.75rem;\n width: 0.75rem;\n position: absolute;\n bottom: 0.34rem;\n right: 0;\n border: 0.13rem solid #ffffff;\n border-radius: 100%; }\n .settings-panel .chat-list .list .profile span.online {\n background: #19d895; }\n .settings-panel .chat-list .list .profile span.offline {\n background: #ffaf00; }\n .settings-panel .chat-list .list .info {\n margin-right: auto; }\n .settings-panel .chat-list .list .info p {\n display: block;\n margin-bottom: 0; }\n .settings-panel .chat-list .list .info p:last-child {\n opacity: 0.5;\n font-size: 0.8rem; }\n .rtl .settings-panel .chat-list .list .info p:last-child {\n text-align: right; }\n .settings-panel .chat-list .list.active {\n background: #fbfbfb; }\n .settings-panel.open {\n right: 0;\n box-shadow: 7px 0 80px -9px rgba(0, 0, 0, 0.2); }\n .dark-theme .settings-panel.open {\n box-shadow: 7px 0 80px -9px rgba(0, 0, 0, 0.8); }\n .settings-panel .settings-close {\n position: absolute;\n top: 47px;\n right: 10px;\n color: #2196f3;\n background: transparent;\n border-radius: 4px;\n padding: 0 3px;\n cursor: pointer;\n transition-duration: 0.2s;\n z-index: 999; }\n .settings-panel .settings-close:hover {\n background: rgba(255, 255, 255, 0.3); }\n .rtl .settings-panel .settings-close {\n right: unset;\n left: 10px; }\n .settings-panel .events p {\n font-family: \"Poppins\", sans-serif; }\n .rtl .settings-panel .events p {\n text-align: right; }\n .rtl .settings-panel {\n right: unset;\n left: -300px;\n transition-property: left; }\n .rtl .settings-panel .chat-list {\n padding-right: 0; }\n .rtl .settings-panel .chat-list .list .profile {\n margin-right: 0;\n margin-left: 1rem; }\n .rtl .settings-panel .chat-list .list .info {\n margin-right: 0;\n margin-left: auto; }\n .rtl .settings-panel .chat-list .list .info .badge {\n margin-right: 10px; }\n .rtl .settings-panel.open {\n left: 0;\n right: unset; }\n\n/* Tabs */\n.add-items {\n margin-bottom: 1.5rem;\n overflow: hidden; }\n .add-items input[type=\"text\"] {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n width: 100%; }\n .add-items .btn, .add-items .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .add-items .ajax-file-upload, .add-items .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .add-items .swal2-styled, .add-items .wizard > .actions a, .wizard > .actions .add-items a {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0; }\n\n.list-wrapper {\n height: 100%;\n max-height: 100%; }\n .list-wrapper ul {\n padding: 0;\n text-align: left;\n list-style: none;\n margin-bottom: 0; }\n .list-wrapper ul li {\n font-size: 0.9375rem;\n padding: 0.4rem 0;\n border-bottom: 1px solid #f2f2f2; }\n .list-wrapper ul li .form-check {\n max-width: 90%; }\n .list-wrapper ul li .col-content {\n width: 100%; }\n .list-wrapper ul li .col-content > div {\n width: 100%; }\n .list-wrapper input[type=\"checkbox\"] {\n margin-right: 15px; }\n .list-wrapper .remove {\n margin-left: auto;\n cursor: pointer;\n font-size: 1.3rem;\n font-weight: 600;\n color: #2196f3;\n width: 1.25rem;\n height: 1.25rem;\n line-height: 20px;\n text-align: center; }\n .rtl .list-wrapper .remove {\n margin-right: auto;\n margin-left: 0; }\n .list-wrapper .completed {\n text-decoration: line-through;\n text-decoration-color: #2196f3; }\n .list-wrapper .completed .remove {\n text-decoration: none; }\n\n/* Tooltips */\n.tooltip-static-demo .tooltip {\n position: relative;\n display: inline-block;\n opacity: 1;\n margin: 0 10px 10px 0; }\n\n.tooltip-static-demo .bs-tooltip-bottom-demo .arrow,\n.tooltip-static-demo .bs-tooltip-top-demo .arrow {\n left: 50%;\n transform: translateX(-50%); }\n\n.tooltip-static-demo .bs-tooltip-left-demo .arrow,\n.tooltip-static-demo .bs-tooltip-right-demo .arrow {\n top: 50%;\n transform: translateY(-50%); }\n\n.tooltip {\n font-size: 0.75rem;\n min-width: 5.625rem;\n z-index: 1029; }\n .tooltip .tooltip-inner {\n font-family: \"Poppins\", sans-serif; }\n\n.tooltip-primary .tooltip-inner {\n background: #2196f3;\n color: #ffffff; }\n\n.tooltip-primary.bs-tooltip-top .arrow::before, .tooltip-primary.bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n border-top-color: #2196f3; }\n\n.tooltip-primary.bs-tooltip-right .arrow::before, .tooltip-primary.bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n border-right-color: #2196f3; }\n\n.tooltip-primary.bs-tooltip-bottom .arrow::before, .tooltip-primary.bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n border-bottom-color: #2196f3; }\n\n.tooltip-primary.bs-tooltip-left .arrow::before, .tooltip-primary.bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n border-left-color: #2196f3; }\n\n.tooltip-secondary .tooltip-inner {\n background: #e6eef2;\n color: #ffffff; }\n\n.tooltip-secondary.bs-tooltip-top .arrow::before, .tooltip-secondary.bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n border-top-color: #e6eef2; }\n\n.tooltip-secondary.bs-tooltip-right .arrow::before, .tooltip-secondary.bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n border-right-color: #e6eef2; }\n\n.tooltip-secondary.bs-tooltip-bottom .arrow::before, .tooltip-secondary.bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n border-bottom-color: #e6eef2; }\n\n.tooltip-secondary.bs-tooltip-left .arrow::before, .tooltip-secondary.bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n border-left-color: #e6eef2; }\n\n.tooltip-success .tooltip-inner {\n background: #19d895;\n color: #ffffff; }\n\n.tooltip-success.bs-tooltip-top .arrow::before, .tooltip-success.bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n border-top-color: #19d895; }\n\n.tooltip-success.bs-tooltip-right .arrow::before, .tooltip-success.bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n border-right-color: #19d895; }\n\n.tooltip-success.bs-tooltip-bottom .arrow::before, .tooltip-success.bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n border-bottom-color: #19d895; }\n\n.tooltip-success.bs-tooltip-left .arrow::before, .tooltip-success.bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n border-left-color: #19d895; }\n\n.tooltip-info .tooltip-inner {\n background: #8862e0;\n color: #ffffff; }\n\n.tooltip-info.bs-tooltip-top .arrow::before, .tooltip-info.bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n border-top-color: #8862e0; }\n\n.tooltip-info.bs-tooltip-right .arrow::before, .tooltip-info.bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n border-right-color: #8862e0; }\n\n.tooltip-info.bs-tooltip-bottom .arrow::before, .tooltip-info.bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n border-bottom-color: #8862e0; }\n\n.tooltip-info.bs-tooltip-left .arrow::before, .tooltip-info.bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n border-left-color: #8862e0; }\n\n.tooltip-warning .tooltip-inner {\n background: #ffaf00;\n color: #ffffff; }\n\n.tooltip-warning.bs-tooltip-top .arrow::before, .tooltip-warning.bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n border-top-color: #ffaf00; }\n\n.tooltip-warning.bs-tooltip-right .arrow::before, .tooltip-warning.bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n border-right-color: #ffaf00; }\n\n.tooltip-warning.bs-tooltip-bottom .arrow::before, .tooltip-warning.bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n border-bottom-color: #ffaf00; }\n\n.tooltip-warning.bs-tooltip-left .arrow::before, .tooltip-warning.bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n border-left-color: #ffaf00; }\n\n.tooltip-danger .tooltip-inner {\n background: #ff6258;\n color: #ffffff; }\n\n.tooltip-danger.bs-tooltip-top .arrow::before, .tooltip-danger.bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n border-top-color: #ff6258; }\n\n.tooltip-danger.bs-tooltip-right .arrow::before, .tooltip-danger.bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n border-right-color: #ff6258; }\n\n.tooltip-danger.bs-tooltip-bottom .arrow::before, .tooltip-danger.bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n border-bottom-color: #ff6258; }\n\n.tooltip-danger.bs-tooltip-left .arrow::before, .tooltip-danger.bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n border-left-color: #ff6258; }\n\n.tooltip-light .tooltip-inner {\n background: #fbfbfb;\n color: #ffffff; }\n\n.tooltip-light.bs-tooltip-top .arrow::before, .tooltip-light.bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n border-top-color: #fbfbfb; }\n\n.tooltip-light.bs-tooltip-right .arrow::before, .tooltip-light.bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n border-right-color: #fbfbfb; }\n\n.tooltip-light.bs-tooltip-bottom .arrow::before, .tooltip-light.bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n border-bottom-color: #fbfbfb; }\n\n.tooltip-light.bs-tooltip-left .arrow::before, .tooltip-light.bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n border-left-color: #fbfbfb; }\n\n.tooltip-dark .tooltip-inner {\n background: #252C46;\n color: #ffffff; }\n\n.tooltip-dark.bs-tooltip-top .arrow::before, .tooltip-dark.bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n border-top-color: #252C46; }\n\n.tooltip-dark.bs-tooltip-right .arrow::before, .tooltip-dark.bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n border-right-color: #252C46; }\n\n.tooltip-dark.bs-tooltip-bottom .arrow::before, .tooltip-dark.bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n border-bottom-color: #252C46; }\n\n.tooltip-dark.bs-tooltip-left .arrow::before, .tooltip-dark.bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n border-left-color: #252C46; }\n\n/* User Profile */\n.user-profile .side-left .card .avatar img {\n display: block;\n width: 90px;\n height: 90px;\n border-radius: 100%;\n margin-left: auto;\n margin-right: auto; }\n\n.user-profile .side-left .card .avatar .name {\n text-align: center;\n color: #252C46;\n font-size: 1.2rem;\n font-weight: 600;\n margin-bottom: 0; }\n\n.user-profile .side-left .card .avatar .designation {\n text-align: center;\n color: #6c757d;\n font-size: 0.8rem;\n font-weight: 600; }\n\n.user-profile .side-left .card .avatar .email {\n text-align: center;\n color: #2196f3;\n display: block; }\n\n.user-profile .side-left .card .avatar .number {\n display: block;\n text-align: center;\n color: #2196f3; }\n\n.user-profile .side-left .card .overview .achivements {\n padding-left: 0;\n display: flex;\n justify-content: center; }\n .user-profile .side-left .card .overview .achivements li {\n width: 33.333%;\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: column; }\n .user-profile .side-left .card .overview .achivements li p {\n text-align: center;\n margin-bottom: 0;\n font-weight: 600;\n font-size: 1.4rem;\n color: #252C46; }\n .user-profile .side-left .card .overview .achivements li p:last-child {\n font-weight: 500;\n font-size: 0.9rem; }\n\n.user-profile .side-left .card .overview .about-user p {\n font-size: 0.8rem; }\n\n.user-profile .side-left .card .overview .info-links a {\n font-size: 0.8rem;\n display: block;\n margin-bottom: 10px; }\n .user-profile .side-left .card .overview .info-links a i {\n font-size: 0.8rem;\n margin-right: 10px; }\n .user-profile .side-left .card .overview .info-links a span {\n text-align: left;\n display: inline-block; }\n\n.calendar-aside {\n display: block; }\n .calendar-aside .list {\n position: relative;\n padding: 10px 8px;\n display: flex;\n align-items: center;\n border-radius: 5px;\n transition-duration: 0.25s;\n transition-property: background; }\n .calendar-aside .list .user-text {\n margin-bottom: 0;\n margin-left: 20px;\n font-size: 0.875rem; }\n .calendar-aside .list .count {\n width: 20px;\n height: 20px;\n position: relative;\n border-radius: 50px;\n transition-duration: 0.25s;\n transition-timing-function: ease;\n transition-property: opacity;\n display: flex;\n align-items: center;\n justify-content: center; }\n .calendar-aside .list .count:before {\n content: \"\";\n position: absolute;\n left: 0;\n right: 0;\n top: 50%;\n display: block;\n height: 10px;\n width: 10px;\n margin: auto;\n border-radius: 50px;\n transform: translateY(-50%);\n transition-duration: 0.25s;\n transition-timing-function: ease; }\n .calendar-aside .list .count.online:before {\n background: #19d895; }\n .calendar-aside .list .count.offline:before {\n background: #ff6258; }\n .calendar-aside .list .count .close {\n font-size: 15px;\n margin: auto;\n opacity: 0;\n color: #ff6258;\n transition-duration: 0.25s;\n transition-timing-function: ease; }\n .calendar-aside .list:hover {\n background: #fbfbfb; }\n .calendar-aside .list:hover .count:before {\n z-index: 0;\n height: 20px;\n width: 20px;\n background: #fbfbfb; }\n .calendar-aside .list:hover .count .close {\n z-index: 2;\n opacity: 1; }\n\n.data-list {\n width: 100%;\n overflow: auto; }\n .data-list .list-item {\n display: flex;\n align-items: center;\n flex-wrap: nowrap;\n width: 100%;\n padding: 10px;\n border-bottom: 1px solid #f2f2f2; }\n .data-list .list-item:last-child {\n border-bottom: none; }\n .data-list .list-item .graph {\n margin-left: auto;\n width: 110px; }\n\n#sourceLineChartLegend {\n padding-left: 0;\n margin-bottom: 0;\n list-style-type: none; }\n #sourceLineChartLegend li {\n display: inline-block;\n margin-right: 20px;\n color: #858585; }\n #sourceLineChartLegend li .chart-color {\n height: 10px;\n width: 10px;\n display: inline-block;\n margin-right: 5px;\n border-radius: 100%; }\n .rtl #sourceLineChartLegend li .chart-color {\n margin-right: 0px;\n margin-left: 5px; }\n #sourceLineChartLegend li:last-child {\n margin-right: 0; }\n .rtl #sourceLineChartLegend li {\n margin-right: 0px;\n margin-left: 20px; }\n .rtl #sourceLineChartLegend li:last-child {\n margin-left: 0px; }\n\n.social-card.card-default .action-bar i {\n color: #e6eef2; }\n\n.social-card.card-default .comment {\n color: #858585; }\n\n.social-card.card-default .posted-date {\n color: #2196f3; }\n\n.social-card.card-colored .card-header {\n background: inherit; }\n\n.social-card.card-colored.facebook-card {\n background: #648ACA; }\n .social-card.card-colored.facebook-card .card-header {\n border-bottom-color: #517cc4; }\n\n.social-card.card-colored.twitter-card {\n background: #4DBFF5; }\n .social-card.card-colored.twitter-card .card-header {\n border-bottom-color: #35b6f4; }\n\n.social-card.card-colored.google-card {\n background: #E55F4B; }\n .social-card.card-colored.google-card .card-header {\n border-bottom-color: #e24b35; }\n\n.social-card.card-colored.linkedin-card {\n background: #0177b4; }\n .social-card.card-colored.linkedin-card .card-header {\n border-bottom-color: #01669b; }\n\n.social-card.card-colored a,\n.social-card.card-colored .media-info,\n.social-card.card-colored .user-name,\n.social-card.card-colored .comment,\n.social-card.card-colored .posted-date,\n.social-card.card-colored .platform-name,\n.social-card.card-colored .headline,\n.social-card.card-colored .action-bar {\n color: #ffffff; }\n\n.top-selling-card .column-wrapper {\n display: flex;\n justify-content: space-around; }\n .top-selling-card .column-wrapper .column {\n width: 45%;\n padding: 25px 26px;\n border-radius: 3px;\n background: #ffffff;\n transform: translateY(-25px);\n box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);\n z-index: 10; }\n .top-selling-card .column-wrapper .column i {\n font-size: 20px; }\n\n.top-selling-card .item-wrapper {\n max-height: 210px;\n overflow-y: auto; }\n\n.review-card .comment-text {\n text-overflow: ellipsis;\n overflow: hidden;\n max-width: 100%;\n white-space: nowrap;\n max-width: 70%; }\n\n.list-item {\n display: flex;\n width: 100%;\n padding: 20px 0;\n border-bottom: 1px solid #f2f2f2; }\n .list-item:first-child {\n padding-top: 30px; }\n .list-item:last-child {\n border-bottom: none; }\n .list-item .preview-image {\n max-width: 80px;\n width: 80px;\n min-width: 80px; }\n .list-item .preview-image img {\n display: block;\n margin: auto; }\n .list-item .content {\n width: calc(100% - 80px);\n padding-right: 30px; }\n .list-item .content .user-name {\n margin-bottom: 0;\n margin-right: 10px;\n color: #858585;\n white-space: nowrap; }\n .list-item .content .time {\n color: #858585;\n margin-bottom: 3px; }\n .list-item .content .product-name {\n font-weight: 500;\n text-overflow: ellipsis;\n overflow: hidden;\n max-width: 100%;\n white-space: nowrap; }\n .list-item .content .review-text {\n margin-bottom: 0;\n font-weight: 300;\n text-overflow: ellipsis;\n overflow: hidden;\n max-width: 100%;\n white-space: nowrap;\n max-width: 95%; }\n\n.todo-list .todo-item {\n border: 1px solid #f2f2f2;\n border-radius: 6px;\n padding: 10px;\n margin-bottom: 10px; }\n .todo-list .todo-item form {\n display: flex; }\n .todo-list .todo-item form .checkbox {\n width: 40px; }\n .todo-list .todo-item form .checkbox .form-check {\n margin-left: 10px; }\n .todo-list .todo-item form .checkbox .form-check .input-helper:after {\n line-height: 0px; }\n .todo-list .todo-item form .field-wrapper {\n width: calc(100% - 40px); }\n .todo-list .todo-item form .field-wrapper .form-group .form-control, .todo-list .todo-item form .field-wrapper .form-group .asColorPicker-input, .todo-list .todo-item form .field-wrapper .form-group .dataTables_wrapper select, .dataTables_wrapper .todo-list .todo-item form .field-wrapper .form-group select, .todo-list .todo-item form .field-wrapper .form-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .todo-list .todo-item form .field-wrapper .form-group input[type=text], .todo-list .todo-item form .field-wrapper .form-group\n .jsgrid .jsgrid-table .jsgrid-filter-row select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .todo-list .todo-item form .field-wrapper .form-group select, .todo-list .todo-item form .field-wrapper .form-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .todo-list .todo-item form .field-wrapper .form-group input[type=number], .todo-list .todo-item form .field-wrapper .form-group .select2-container--default .select2-selection--single, .select2-container--default .todo-list .todo-item form .field-wrapper .form-group .select2-selection--single, .todo-list .todo-item form .field-wrapper .form-group .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .todo-list .todo-item form .field-wrapper .form-group .select2-search__field, .todo-list .todo-item form .field-wrapper .form-group .tt-hint, .todo-list .todo-item form .field-wrapper .form-group\n .tt-query, .todo-list .todo-item form .field-wrapper .form-group\n .typeahead {\n font-weight: 500; }\n .todo-list .todo-item form .field-wrapper .form-group .tagsinput .tag {\n color: #858585; }\n .todo-list .todo-item form .field-wrapper .form-group .tagsinput .tag:before {\n content: \"#\";\n display: inline-block; }\n .todo-list .todo-item form .field-wrapper .form-group .btn, .todo-list .todo-item form .field-wrapper .form-group .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .todo-list .todo-item form .field-wrapper .form-group .ajax-file-upload, .todo-list .todo-item form .field-wrapper .form-group .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .todo-list .todo-item form .field-wrapper .form-group .swal2-styled, .todo-list .todo-item form .field-wrapper .form-group .wizard > .actions a, .wizard > .actions .todo-list .todo-item form .field-wrapper .form-group a {\n margin-right: 10px; }\n .todo-list .todo-item form .field-wrapper .form-group .btn:last-child, .todo-list .todo-item form .field-wrapper .form-group .ajax-upload-dragdrop .ajax-file-upload:last-child, .ajax-upload-dragdrop .todo-list .todo-item form .field-wrapper .form-group .ajax-file-upload:last-child, .todo-list .todo-item form .field-wrapper .form-group .swal2-modal .swal2-buttonswrapper .swal2-styled:last-child, .swal2-modal .swal2-buttonswrapper .todo-list .todo-item form .field-wrapper .form-group .swal2-styled:last-child, .todo-list .todo-item form .field-wrapper .form-group .wizard > .actions a:last-child, .wizard > .actions .todo-list .todo-item form .field-wrapper .form-group a:last-child {\n margin-right: 0; }\n .todo-list .todo-item:not(.edit-mode) {\n position: relative; }\n .todo-list .todo-item:not(.edit-mode) .edit-icon {\n display: none;\n position: absolute;\n top: 0;\n right: 0;\n padding: 10px;\n cursor: pointer; }\n .todo-list .todo-item:not(.edit-mode):hover {\n background: #fbfbfb; }\n .todo-list .todo-item:not(.edit-mode):hover .edit-icon {\n display: block; }\n .todo-list .todo-item:not(.edit-mode):hover * {\n background: #fbfbfb; }\n .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group {\n margin-bottom: 0; }\n .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .tagsinput {\n border: none;\n height: 25px;\n max-height: 25px !important;\n min-height: 25px !important;\n padding: 0px 13px !important; }\n .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .tagsinput .tag {\n background: transparent;\n padding: 0;\n margin-bottom: 0; }\n .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .tagsinput .tag a {\n display: none; }\n .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .tagsinput #todo-tags-1_addTag,\n .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .tagsinput .tags_clear {\n display: none; }\n .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .form-control, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .asColorPicker-input, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .dataTables_wrapper select, .dataTables_wrapper .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group select, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group input[type=text], .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group\n .jsgrid .jsgrid-table .jsgrid-filter-row select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group select, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group input[type=number], .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .select2-container--default .select2-selection--single, .select2-container--default .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .select2-selection--single, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .select2-search__field, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .tt-hint, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group\n .tt-query, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group\n .typeahead {\n border: none; }\n .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .btn, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .ajax-file-upload, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .swal2-styled, .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group .wizard > .actions a, .wizard > .actions .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group a {\n display: none; }\n .todo-list .todo-item:not(.edit-mode) form .field-wrapper .form-group.hidden-field {\n display: none; }\n .todo-list .todo-item.edit-mode form .field-wrapper .form-group .tagsinput .tag {\n color: #ffffff; }\n\n.horizontal-timeline .time-frame {\n border-bottom: 1px solid #f2f2f2;\n padding-top: 20px; }\n .horizontal-timeline .time-frame:last-child {\n border-bottom: none; }\n .horizontal-timeline .time-frame .section-time-frame {\n margin-bottom: 30px; }\n .horizontal-timeline .time-frame .event {\n border-left: 1px solid #f2f2f2;\n padding-left: 2rem;\n padding-bottom: 30px;\n position: relative; }\n .horizontal-timeline .time-frame .event:last-child {\n border-left: none; }\n .horizontal-timeline .time-frame .event .event-text {\n line-height: 1;\n font-weight: 400;\n margin-bottom: 0;\n text-overflow: ellipsis;\n overflow: hidden;\n max-width: 100%;\n white-space: nowrap; }\n .horizontal-timeline .time-frame .event .tumbnail-views {\n display: inline-block; }\n .horizontal-timeline .time-frame .event .tumbnail-views .thumbnail {\n float: left;\n margin-right: 16px;\n margin-top: 1rem; }\n .horizontal-timeline .time-frame .event .tumbnail-views .thumbnail img {\n max-width: 100%;\n border-radius: 4px; }\n .horizontal-timeline .time-frame .event .event-alert {\n margin-top: 1rem;\n padding: 11px 25px;\n background: #fbfbfb;\n width: 80%;\n font-family: \"Poppins\", sans-serif;\n font-size: 13px;\n font-weight: 300;\n border-radius: 4px; }\n .horizontal-timeline .time-frame .event .event-info {\n margin-top: 0.8rem;\n font-family: \"Poppins\", sans-serif;\n font-size: 12px;\n font-weight: 400;\n color: #858585; }\n .horizontal-timeline .time-frame .event:before {\n content: \"\";\n position: absolute;\n top: 0;\n left: -5px;\n height: 10px;\n width: 10px;\n border-radius: 100%; }\n .horizontal-timeline .time-frame .event:nth-child(3n+1):before {\n background: #8862e0; }\n .horizontal-timeline .time-frame .event:nth-child(3n+2):before {\n background: #19d895; }\n .horizontal-timeline .time-frame .event:nth-child(3n+3):before {\n background: #2196f3; }\n\n/* Timeline */\n.vertical-timeline {\n list-style: none;\n padding: 0;\n position: relative; }\n .vertical-timeline:before {\n top: 0;\n bottom: 0;\n position: absolute;\n content: \" \";\n width: 3px;\n background-color: #e6eef2;\n left: 50%;\n margin-left: -1.5px; }\n .vertical-timeline .timeline-wrapper {\n display: block;\n margin-bottom: 20px;\n position: relative;\n width: 100%;\n padding-right: 90px; }\n .vertical-timeline .timeline-wrapper:before {\n content: \" \";\n display: table; }\n .vertical-timeline .timeline-wrapper:after {\n content: \" \";\n display: table;\n clear: both; }\n .vertical-timeline .timeline-wrapper .timeline-panel {\n border-radius: 2px;\n padding: 20px;\n position: relative;\n background: #ffffff;\n border-radius: 6px;\n box-shadow: 1px 2px 35px 0 rgba(1, 1, 1, 0.1);\n width: 35%;\n margin-left: 15%; }\n .vertical-timeline .timeline-wrapper .timeline-panel:before {\n position: absolute;\n top: 0;\n width: 100%;\n height: 2px;\n content: \"\";\n left: 0;\n right: 0; }\n .vertical-timeline .timeline-wrapper .timeline-panel:after {\n position: absolute;\n top: 7px;\n right: -14px;\n display: inline-block;\n border-top: 14px solid transparent;\n border-left: 14px solid #ffffff;\n border-right: 0 solid #ffffff;\n border-bottom: 14px solid transparent;\n content: \" \"; }\n .vertical-timeline .timeline-wrapper .timeline-panel .timeline-title {\n margin-top: 0;\n color: #252C46;\n text-transform: uppercase; }\n .vertical-timeline .timeline-wrapper .timeline-panel .timeline-body p {\n margin-bottom: 0; }\n .vertical-timeline .timeline-wrapper .timeline-panel .timeline-body p + p {\n margin-top: 5px; }\n .vertical-timeline .timeline-wrapper .timeline-panel .timeline-body ul {\n margin-bottom: 0; }\n .vertical-timeline .timeline-wrapper .timeline-panel .timeline-footer span {\n font-size: 0.6875rem; }\n .vertical-timeline .timeline-wrapper .timeline-panel .timeline-footer i {\n font-size: 1.5rem; }\n .vertical-timeline .timeline-wrapper .timeline-badge {\n width: 14px;\n height: 14px;\n position: absolute;\n top: 16px;\n left: calc(50% - 7px);\n z-index: 100;\n border-top-right-radius: 50%;\n border-top-left-radius: 50%;\n border-bottom-right-radius: 50%;\n border-bottom-left-radius: 50%;\n border: 2px solid #ffffff; }\n .vertical-timeline .timeline-wrapper .timeline-badge i {\n color: #ffffff; }\n .vertical-timeline .timeline-wrapper.timeline-inverted {\n padding-right: 0;\n padding-left: 90px; }\n .vertical-timeline .timeline-wrapper.timeline-inverted .timeline-panel {\n margin-left: auto;\n margin-right: 15%; }\n .vertical-timeline .timeline-wrapper.timeline-inverted .timeline-panel:after {\n border-left-width: 0;\n border-right-width: 14px;\n left: -14px;\n right: auto; }\n\n@media (max-width: 767px) {\n .timeline .timeline-wrapper {\n padding-right: 150px; }\n .timeline .timeline-wrapper.timeline-inverted {\n padding-left: 150px; }\n .timeline .timeline-wrapper .timeline-panel {\n width: 100%;\n margin-left: 0;\n margin-right: 0; } }\n\n.timeline-wrapper-primary .timeline-panel:before {\n background: #2196f3; }\n\n.timeline-wrapper-primary .timeline-badge {\n background: #2196f3; }\n\n.timeline-wrapper-secondary .timeline-panel:before {\n background: #e6eef2; }\n\n.timeline-wrapper-secondary .timeline-badge {\n background: #e6eef2; }\n\n.timeline-wrapper-success .timeline-panel:before {\n background: #19d895; }\n\n.timeline-wrapper-success .timeline-badge {\n background: #19d895; }\n\n.timeline-wrapper-info .timeline-panel:before {\n background: #8862e0; }\n\n.timeline-wrapper-info .timeline-badge {\n background: #8862e0; }\n\n.timeline-wrapper-warning .timeline-panel:before {\n background: #ffaf00; }\n\n.timeline-wrapper-warning .timeline-badge {\n background: #ffaf00; }\n\n.timeline-wrapper-danger .timeline-panel:before {\n background: #ff6258; }\n\n.timeline-wrapper-danger .timeline-badge {\n background: #ff6258; }\n\n.timeline-wrapper-light .timeline-panel:before {\n background: #fbfbfb; }\n\n.timeline-wrapper-light .timeline-badge {\n background: #fbfbfb; }\n\n.timeline-wrapper-dark .timeline-panel:before {\n background: #252C46; }\n\n.timeline-wrapper-dark .timeline-badge {\n background: #252C46; }\n\n/*-------------------------------------------------------------------*/\n/* === Email === */\n/* Mail Sidebar */\n@media (max-width: 769px) {\n .email-wrapper .mail-sidebar {\n position: relative; } }\n\n@media (max-width: 576px) {\n .email-wrapper .mail-sidebar {\n position: fixed;\n z-index: 99;\n background: #ffffff;\n width: 45%;\n min-width: 300px;\n left: -100%;\n display: block;\n transition: 0.4s ease;\n -webkit-transition: 0.4s ease;\n -moz-transition: 0.4s ease; } }\n\n.email-wrapper .mail-sidebar .menu-bar {\n width: 100%;\n float: right;\n height: 100%;\n min-height: 100%; }\n @media (max-width: 576px) {\n .email-wrapper .mail-sidebar .menu-bar {\n min-height: 100vh;\n max-height: 100%;\n height: auto;\n overflow-y: auto;\n overflow-x: hidden; } }\n .email-wrapper .mail-sidebar .menu-bar .menu-items {\n padding: 0;\n margin-bottom: 0;\n height: auto;\n list-style-type: none; }\n .email-wrapper .mail-sidebar .menu-bar .menu-items li {\n padding: 10px 15px;\n transition: 0.4s;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: space-between; }\n .email-wrapper .mail-sidebar .menu-bar .menu-items li:hover {\n background: rgba(240, 244, 249, 0.8); }\n .email-wrapper .mail-sidebar .menu-bar .menu-items li a {\n color: #252C46;\n font-size: 0.875rem;\n text-decoration: none; }\n .email-wrapper .mail-sidebar .menu-bar .menu-items li a i {\n margin-right: 8px;\n font-size: 0.875rem;\n line-height: 1.5; }\n .email-wrapper .mail-sidebar .menu-bar .menu-items li.active {\n background: rgba(33, 150, 243, 0.3);\n border-radius: 4px; }\n .email-wrapper .mail-sidebar .menu-bar .menu-items li.active a {\n color: #2196f3; }\n .email-wrapper .mail-sidebar .menu-bar .menu-items li.compose:hover {\n background: transparent; }\n .email-wrapper .mail-sidebar .menu-bar .online-status {\n margin-top: 1rem; }\n .email-wrapper .mail-sidebar .menu-bar .online-status .chat {\n font-size: 0.875rem;\n color: #858585;\n margin-bottom: 0;\n font-family: \"Poppins\", sans-serif; }\n .email-wrapper .mail-sidebar .menu-bar .online-status .status {\n height: 10px;\n width: 10px;\n border-radius: 100%;\n display: inline-flex;\n justify-content: flex-start;\n transform: translateX(-43px) translateY(2px); }\n .email-wrapper .mail-sidebar .menu-bar .online-status .status:after {\n font-size: 12px;\n color: #858585;\n margin: -5px 0 0 18px; }\n .email-wrapper .mail-sidebar .menu-bar .online-status .status.offline {\n background: #ff6258; }\n .email-wrapper .mail-sidebar .menu-bar .online-status .status.offline:after {\n content: \"Offline\"; }\n .email-wrapper .mail-sidebar .menu-bar .online-status .status.online {\n background: #19d895; }\n .email-wrapper .mail-sidebar .menu-bar .online-status .status.online:after {\n content: \"Online\"; }\n .email-wrapper .mail-sidebar .menu-bar .profile-list {\n padding: 10px 0; }\n .email-wrapper .mail-sidebar .menu-bar .profile-list-item {\n border-bottom: 1px solid #f2f2f2;\n padding: 6px 0;\n display: block; }\n .email-wrapper .mail-sidebar .menu-bar .profile-list-item:last-child {\n border-bottom: 0; }\n .email-wrapper .mail-sidebar .menu-bar .profile-list-item a {\n text-decoration: none; }\n .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .pro-pic {\n display: flex;\n align-items: center;\n padding: 0;\n width: 20%;\n max-width: 40px; }\n .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .pro-pic img {\n max-width: 100%;\n width: 100%;\n border-radius: 100%; }\n .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user {\n width: 100%;\n padding: 5px 10px 0 15px; }\n .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user .u-name {\n margin: 0;\n font-family: \"Poppins\", sans-serif;\n font-size: 0.875rem;\n line-height: 1;\n color: #252C46;\n font-weight: 500; }\n .email-wrapper .mail-sidebar .menu-bar .profile-list-item a .user .u-designation {\n font-size: calc(0.875rem - 0.1rem);\n color: #252C46;\n margin-bottom: 0; }\n\n.email-wrapper .sidebar.open {\n left: 0; }\n\n/* Mail List Container */\n.email-wrapper .mail-list-container {\n border-left: 1px solid #f2f2f2;\n height: 100%;\n padding-left: 0;\n padding-right: 0; }\n .email-wrapper .mail-list-container a {\n text-decoration: none; }\n .email-wrapper .mail-list-container .mail-list {\n border-bottom: 1px solid #f2f2f2;\n display: flex;\n flex-direction: row;\n padding: 10px 15px;\n width: 100%; }\n .email-wrapper .mail-list-container .mail-list:last-child {\n border-bottom: none; }\n .email-wrapper .mail-list-container .mail-list .form-check {\n margin-top: 12px;\n width: 11%;\n min-width: 20px; }\n .email-wrapper .mail-list-container .mail-list .content {\n width: 83%;\n padding-left: 0;\n padding-right: 0; }\n .email-wrapper .mail-list-container .mail-list .content .sender-name {\n margin-bottom: 0;\n font-size: 0.875rem;\n font-family: \"Poppins\", sans-serif;\n max-width: 95%; }\n .email-wrapper .mail-list-container .mail-list .content .message_text {\n margin: 0;\n max-width: 93%;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap; }\n .email-wrapper .mail-list-container .mail-list .details {\n width: 5.5%; }\n .email-wrapper .mail-list-container .mail-list .details .date {\n text-align: right;\n margin: auto 15px auto 0;\n white-space: nowrap; }\n .email-wrapper .mail-list-container .mail-list .details i {\n margin: auto 0;\n color: #ddd; }\n .email-wrapper .mail-list-container .mail-list .details i.favorite {\n color: #ffaf00; }\n .email-wrapper .mail-list-container .mail-list.new_mail {\n background: rgba(33, 150, 243, 0.3); }\n\n/* Message Content */\n.email-wrapper .message-body .sender-details {\n padding: 20px 15px 0;\n border-bottom: 1px solid #f2f2f2;\n display: flex; }\n .email-wrapper .message-body .sender-details .details {\n padding-bottom: 0; }\n .email-wrapper .message-body .sender-details .details .msg-subject {\n margin-bottom: 0;\n font-family: \"Poppins\", sans-serif; }\n .email-wrapper .message-body .sender-details .details .sender-email {\n margin-bottom: 20px;\n font-family: \"Poppins\", sans-serif; }\n .email-wrapper .message-body .sender-details .details .sender-email i {\n font-size: 1rem;\n font-family: \"Poppins\", sans-serif;\n margin: 0 1px 0 7px; }\n\n.email-wrapper .message-body .message-content {\n padding: 50px 15px; }\n\n.email-wrapper .message-body .attachments-sections ul {\n list-style: none;\n border-top: 1px solid #f2f2f2;\n padding: 30px 15px 20px; }\n .email-wrapper .message-body .attachments-sections ul li {\n padding: 10px;\n margin-right: 20px;\n border: 1px solid #f2f2f2;\n border-radius: 5px; }\n .email-wrapper .message-body .attachments-sections ul li .thumb {\n display: inline-block;\n margin-right: 10px; }\n .email-wrapper .message-body .attachments-sections ul li .thumb i {\n font-size: 30px;\n margin: 0;\n color: #252C46; }\n .email-wrapper .message-body .attachments-sections ul li .details p.file-name {\n display: block;\n margin-bottom: 0;\n color: #252C46; }\n .email-wrapper .message-body .attachments-sections ul li .details .buttons .file-size {\n margin-right: 10px;\n margin-bottom: 0;\n font-size: 0.875rem; }\n .email-wrapper .message-body .attachments-sections ul li .details .buttons a {\n font-size: 0.875rem;\n margin-right: 10px; }\n .email-wrapper .message-body .attachments-sections ul li .details .buttons a:last-child {\n margin-right: 0; }\n\n/*-------------------------------------------------------------------*/\n/* === Plugin overrides === */\n/* Ace Editor */\n.ace_editor {\n margin: auto;\n height: 300px;\n width: 100%; }\n .ace_editor .ace_content {\n font-size: 0.875rem; }\n\n/* Avgrund Popup */\n.avgrund-popin {\n position: absolute;\n background: #fff;\n padding: 37px 33px;\n overflow: hidden;\n visibility: hidden;\n opacity: 0;\n filter: alpha(opacity=0);\n top: 50%;\n left: 50%;\n z-index: 1000;\n font-size: 0.875rem;\n font-family: \"Poppins\", sans-serif;\n font-weight: initial;\n line-height: 1.85;\n border-radius: 10px;\n -webkit-transform: scale(0.8);\n -moz-transform: scale(0.8);\n -ms-transform: scale(0.8);\n -o-transform: scale(0.8);\n transform: scale(0.8); }\n .avgrund-popin p {\n font-size: 0.875rem;\n font-family: \"Poppins\", sans-serif;\n font-weight: initial; }\n\n.avgrund-overlay {\n background: #000;\n width: 100%;\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: 101;\n visibility: hidden;\n opacity: 0;\n filter: alpha(opacity=0); }\n\n.avgrund-ready .avgrund-overlay,\n.avgrund-ready .avgrund-popin,\nbody.avgrund-ready {\n -webkit-transform-origin: 50% 50%;\n -moz-transform-origin: 50% 50%;\n -ms-transform-origin: 50% 50%;\n -o-transform-origin: 50% 50%;\n transform-origin: 50% 50%;\n -webkit-transition: 0.3s all ease-out;\n -moz-transition: 0.3s all ease-out;\n -ms-transition: 0.3s all ease-out;\n -o-transition: 0.3s all ease-out;\n transition: 0.3s all ease-out; }\n\nbody.avgrund-active {\n overflow: hidden; }\n\n.avgrund-active .avgrund-popin {\n visibility: visible;\n opacity: 1;\n filter: alpha(opacity=100);\n -webkit-transform: scale(1.1);\n -moz-transform: scale(1.1);\n -ms-transform: scale(1.1);\n -o-transform: scale(1.1);\n transform: scale(1.1); }\n\n.avgrund-active .avgrund-overlay {\n visibility: visible;\n opacity: 0.5;\n filter: alpha(opacity=50);\n height: 20000px; }\n\n.avgrund-popin.stack {\n -webkit-transform: scale(1.5);\n -moz-transform: scale(1.5);\n -ms-transform: scale(1.5);\n -o-transform: scale(1.5);\n transform: scale(1.5); }\n\n.avgrund-active .avgrund-popin.stack {\n -webkit-transform: scale(1.1);\n -moz-transform: scale(1.1);\n -ms-transform: scale(1.1);\n -o-transform: scale(1.1);\n transform: scale(1.1); }\n\n/* Optional close button styles */\n.avgrund-close {\n display: block;\n color: #fff;\n background: #212529;\n font-size: 10px;\n text-decoration: none;\n text-transform: uppercase;\n position: absolute;\n top: 10px;\n right: 10px;\n height: 17px;\n width: 17px;\n text-align: center;\n line-height: 16px;\n border-radius: 50px; }\n .avgrund-close:hover {\n color: #fff;\n text-decoration: none; }\n\n/* Bootstrap Tour */\n.tour-tour {\n padding: 0;\n border: 0;\n font-family: \"Poppins\", sans-serif;\n background: #ffffff; }\n .tour-tour .popover-title {\n background: #2196f3;\n color: #ffffff;\n font-size: 0.8125rem;\n font-family: \"Poppins\", sans-serif;\n padding: 0.75rem; }\n .tour-tour.left .arrow:after {\n border-left-color: #ffffff; }\n .tour-tour.right .arrow:after {\n border-right-color: #ffffff; }\n .tour-tour.top .arrow:after {\n border-top-color: #ffffff; }\n .tour-tour.bottom .arrow:after {\n border-bottom-color: #ffffff; }\n\n.tour-step-background {\n display: none; }\n\n.chartjs-legend ul {\n list-style: none;\n padding-left: 0;\n display: flex;\n align-items: center;\n flex-direction: row;\n flex-wrap: wrap; }\n .chartjs-legend ul li {\n margin-right: 8%;\n display: flex;\n align-items: center; }\n .chartjs-legend ul li span {\n height: 20px;\n width: 20px;\n margin-right: 1rem;\n display: inline-block;\n font-size: 0.875rem; }\n\n.rtl .chartjs-legend ul {\n padding-right: 0; }\n .rtl .chartjs-legend ul li {\n margin-right: 0;\n margin-left: 8%; }\n .rtl .chartjs-legend ul li span {\n margin-right: 0;\n margin-left: 1rem; }\n\n/* Chartist */\n.ct-series-a .ct-line {\n stroke: #3dcaff;\n stroke-width: 3px;\n stroke-dasharray: 0px; }\n\n.ct-series-a .ct-point {\n stroke: #00b2f4;\n stroke-width: 10px;\n stroke-linecap: round; }\n\n.ct-series-b .ct-line {\n stroke: #7be585;\n stroke-width: 3px;\n stroke-dasharray: 0px; }\n\n.ct-series-b .ct-point {\n stroke: #3fda4d;\n stroke-width: 10px;\n stroke-linecap: round; }\n\n.ct-series-c .ct-line {\n stroke: #fdd0c2;\n stroke-width: 3px;\n stroke-dasharray: 0px; }\n\n.ct-series-c .ct-point {\n stroke: #fb9a7d;\n stroke-width: 10px;\n stroke-linecap: round; }\n\n.ct-series-a .ct-bar {\n stroke: #3dcaff;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n.ct-series-b .ct-bar {\n stroke: #7be585;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n.ct-series-c .ct-bar {\n stroke: #fdd0c2;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n.ct-series-d .ct-bar {\n stroke: #ff4d5d;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n.ct-series-a .ct-slice-pie {\n fill: #3dcaff;\n stroke-width: 4px; }\n\n.ct-series-b .ct-slice-pie {\n fill: #7be585;\n stroke-width: 4px; }\n\n.ct-series-c .ct-slice-pie {\n fill: #ff4d5d;\n stroke-width: 4px; }\n\n.ct-series-d .ct-slice-pie {\n fill: #fdd0c2;\n stroke-width: 4px; }\n\n.ct-series-a .ct-slice-donut-solid {\n fill: #3dcaff; }\n\n.ct-series-b .ct-slice-donut-solid {\n fill: #7be585; }\n\n.ct-series-c .ct-slice-donut-solid {\n fill: #ff4d5d; }\n\n.ct-series-a .ct-slice-donut-solid {\n fill: #fdd0c2; }\n\n#ct-chart-dash-barChart .ct-series-a .ct-bar {\n stroke: #ff3345;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n#ct-chart-dash-barChart .ct-series-b .ct-bar {\n stroke: #23c3ff;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n#ct-chart-dash-barChart .ct-series-c .ct-bar {\n stroke: #3dcaff;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n#ct-chart-dash-barChart .ct-series-d .ct-bar {\n stroke: #56d1ff;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n/* CodeMirror */\n.CodeMirror {\n font-size: 1rem;\n height: auto;\n min-height: auto;\n text-align: left; }\n .CodeMirror .CodeMirror-scroll {\n min-height: auto; }\n\n/* Colcade */\n* {\n box-sizing: border-box; }\n\n.grid {\n border: 1px solid #8ba2b5 est; }\n\n.grid:after {\n display: block;\n content: '';\n clear: both; }\n\n.grid-col {\n float: left;\n width: 49%;\n margin-right: 2%;\n background: rgba(77, 199, 160, 0.2); }\n\n.grid-col--4 {\n margin-right: 0; }\n\n/* hide two middle */\n.grid-col--2,\n.grid-col--3 {\n display: none; }\n\n@media (min-width: 768px) {\n .grid-col {\n width: 32%; }\n .grid-col--2 {\n display: block; } }\n\n@media (min-width: 1200px) {\n .grid-col {\n width: 23.5%; }\n .grid-col--2,\n .grid-col--3 {\n display: block; } }\n\n.grid-item {\n background: #4dc7a0;\n margin-bottom: 20px; }\n\n.grid-item--a {\n height: 80px; }\n\n.grid-item--b {\n height: 140px; }\n\n.grid-item--c {\n height: 300px; }\n\n/* Colorpicker */\n.asColorPicker-dropdown {\n max-width: initial; }\n\n.asColorPicker-trigger {\n height: auto;\n padding: 10px;\n border: 1px solid #f2f2f2;\n border-left: none; }\n .asColorPicker-trigger span {\n width: 8px;\n height: 8px;\n border-radius: 2px; }\n\n/* Context Menu */\n.context-menu-icon:before {\n color: #000;\n font: normal normal normal 15px/1 \"Material Design Icons\"; }\n\n.context-menu-icon.context-menu-icon-cut:before {\n content: '\\F190'; }\n\n.context-menu-icon.context-menu-icon-edit:before {\n content: '\\F3EF'; }\n\n.context-menu-icon.context-menu-icon-copy:before {\n content: '\\F18F'; }\n\n.context-menu-icon.context-menu-icon-paste:before {\n content: '\\F613'; }\n\n.context-menu-icon.context-menu-icon-delete:before {\n content: '\\F6CB'; }\n\n.context-menu-icon.context-menu-icon-quit:before {\n content: '\\F156'; }\n\n.context-menu-list {\n box-shadow: none;\n border: 1px solid #f2f2f2; }\n .context-menu-list .context-menu-item span {\n color: #000;\n font-size: 0.75rem;\n font-family: \"Poppins\", sans-serif; }\n .context-menu-list .context-menu-item.context-menu-hover {\n background: #000; }\n .context-menu-list .context-menu-item.context-menu-hover span {\n color: #ffffff; }\n\n/* Clockpicker */\n.clockpicker-popover {\n background-color: #f2f2f2; }\n .clockpicker-popover.left .arrow:after {\n border-left-color: #f2f2f2; }\n .clockpicker-popover.right .arrow:after {\n border-right-color: #f2f2f2; }\n .clockpicker-popover.top .arrow:after {\n border-top-color: #f2f2f2; }\n .clockpicker-popover.bottom .arrow:after {\n border-bottom-color: #ffffff; }\n\n/* Data Tables */\n.dataTables_wrapper {\n padding-left: 0;\n padding-right: 0; }\n .dataTables_wrapper label {\n font-size: 0.8125rem; }\n .dataTables_wrapper select {\n padding: 0.4rem; }\n .dataTables_wrapper .dataTables_length select {\n margin-left: 0.25rem;\n margin-right: 0.25rem; }\n .dataTables_wrapper .table-footer {\n padding-top: 1.88rem; }\n .dataTables_wrapper .height-limiter {\n max-height: 400px;\n overflow-y: auto;\n box-shadow: inset 0px -6px 18px rgba(0, 0, 0, 0.06); }\n .dataTables_wrapper .dataTable {\n border-collapse: collapse !important; }\n .dataTables_wrapper .dataTable .btn, .dataTables_wrapper .dataTable .ajax-upload-dragdrop .ajax-file-upload, .ajax-upload-dragdrop .dataTables_wrapper .dataTable .ajax-file-upload, .dataTables_wrapper .dataTable .swal2-modal .swal2-buttonswrapper .swal2-styled, .swal2-modal .swal2-buttonswrapper .dataTables_wrapper .dataTable .swal2-styled, .dataTables_wrapper .dataTable .wizard > .actions a, .wizard > .actions .dataTables_wrapper .dataTable a {\n padding: 0.1rem 1rem;\n vertical-align: top; }\n .dataTables_wrapper .dataTable thead .sorting:after, .dataTables_wrapper .dataTable thead .sorting:before,\n .dataTables_wrapper .dataTable thead .sorting_asc:after,\n .dataTables_wrapper .dataTable thead .sorting_asc:before,\n .dataTables_wrapper .dataTable thead .sorting_asc_disabled:after,\n .dataTables_wrapper .dataTable thead .sorting_asc_disabled:before,\n .dataTables_wrapper .dataTable thead .sorting_desc:after,\n .dataTables_wrapper .dataTable thead .sorting_desc:before,\n .dataTables_wrapper .dataTable thead .sorting_desc_disabled:after,\n .dataTables_wrapper .dataTable thead .sorting_desc_disabled:before {\n display: none; }\n .dataTables_wrapper .dataTable thead th {\n vertical-align: middle;\n padding: 18px 15px; }\n .dataTables_wrapper .dataTable tbody td {\n z-index: 10; }\n .dataTables_wrapper .dataTables_paginate {\n margin-top: 20px; }\n .dataTables_wrapper .dataTables_info {\n font-size: 0.875rem;\n color: #858585; }\n\n/* Datepicker */\n.datepicker.datepicker-dropdown,\n.datepicker.datepicker-inline {\n padding: 0 25px;\n width: 30%;\n max-width: 500px;\n min-width: 250px; }\n .datepicker.datepicker-dropdown .datepicker-days,\n .datepicker.datepicker-inline .datepicker-days {\n padding: 0.8rem 0.7rem; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed {\n width: 100%; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th {\n text-align: center;\n padding: 0.5rem 0; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.prev,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th.prev {\n color: #6c757d;\n padding-bottom: 1rem;\n padding-top: 1rem;\n text-align: left;\n background: #ffffff; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.datepicker-switch,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th.datepicker-switch {\n color: #6c757d;\n background: #ffffff;\n padding-bottom: 1rem;\n padding-top: 1rem;\n font-size: 1rem;\n font-weight: 600; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.next,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th.next {\n color: grey;\n padding-bottom: 1rem;\n padding-top: 1rem;\n text-align: right;\n background: #ffffff; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.dow,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th.dow {\n font-family: \"Poppins\", sans-serif;\n color: #6c757d;\n font-size: 0.875rem;\n font-weight: initial; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.dow:first-child,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th.dow:first-child {\n text-align: left; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed thead tr th.dow:last-child,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed thead tr th.dow:last-child {\n text-align: right; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody {\n position: relative;\n top: 13px; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td {\n text-align: center; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day {\n font-size: 0.9375rem;\n padding: 0.5rem 0;\n color: #6c757d; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day:hover,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day:hover {\n background: #ffffff; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day:first-child,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day:first-child {\n text-align: left; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day:last-child,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day:last-child {\n text-align: right; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day.active,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day.active {\n color: #fff;\n background: transparent;\n position: relative;\n z-index: 1; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day.active:before,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day.active:before {\n content: \"\";\n width: 38px;\n height: 38px;\n background: #19d895;\n border-radius: 100%;\n display: block;\n margin: auto;\n vertical-align: middle;\n position: absolute;\n top: 1px;\n z-index: -1;\n left: 0;\n right: 0; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day.today,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day.today {\n color: #fff;\n background: transparent;\n position: relative;\n z-index: 1; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day.today:before,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day.today:before {\n content: \"\";\n width: 38px;\n height: 38px;\n background: #2196f3;\n border-radius: 100%;\n display: block;\n margin: auto;\n vertical-align: middle;\n position: absolute;\n top: 1px;\n z-index: -1;\n left: 0;\n right: 0; }\n .datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.old.day,\n .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.old.day {\n color: #eaeaef; }\n\n.datepicker.datepicker-inline {\n width: 100%;\n max-width: 100%;\n min-width: 250px; }\n .datepicker.datepicker-inline thead tr th.prev {\n color: grey;\n padding-bottom: 0.5rem;\n padding-top: 0.5rem; }\n .datepicker.datepicker-inline thead tr th.datepicker-switch {\n color: #2196f3;\n padding-bottom: 0.5rem;\n padding-top: 0.5rem; }\n .datepicker.datepicker-inline thead tr th.next {\n color: grey;\n padding-bottom: 0.5rem;\n padding-top: 0.5rem; }\n\n.datepicker > div {\n display: initial;\n padding: 0.375rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n text-align: center;\n white-space: nowrap;\n border-radius: 2px; }\n\n.datepicker.input-group, .datepicker.asColorPicker-wrap {\n border: 1px solid #f2f2f2;\n padding: 0; }\n .datepicker.input-group .form-control, .datepicker.asColorPicker-wrap .form-control, .datepicker.input-group .asColorPicker-input, .datepicker.asColorPicker-wrap .asColorPicker-input, .datepicker.input-group .dataTables_wrapper select, .dataTables_wrapper .datepicker.input-group select, .datepicker.asColorPicker-wrap .dataTables_wrapper select, .dataTables_wrapper .datepicker.asColorPicker-wrap select, .datepicker.input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .datepicker.input-group input[type=text], .datepicker.asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .datepicker.asColorPicker-wrap input[type=text], .datepicker.input-group\n .jsgrid .jsgrid-table .jsgrid-filter-row select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .datepicker.input-group select, .datepicker.asColorPicker-wrap\n .jsgrid .jsgrid-table .jsgrid-filter-row select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .datepicker.asColorPicker-wrap select, .datepicker.input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .datepicker.input-group input[type=number], .datepicker.asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .datepicker.asColorPicker-wrap input[type=number], .datepicker.input-group .select2-container--default .select2-selection--single, .select2-container--default .datepicker.input-group .select2-selection--single, .datepicker.asColorPicker-wrap .select2-container--default .select2-selection--single, .select2-container--default .datepicker.asColorPicker-wrap .select2-selection--single, .datepicker.input-group .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .datepicker.input-group .select2-search__field, .datepicker.asColorPicker-wrap .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .datepicker.asColorPicker-wrap .select2-search__field, .datepicker.input-group .tt-hint, .datepicker.asColorPicker-wrap .tt-hint, .datepicker.input-group\n .tt-query, .datepicker.asColorPicker-wrap\n .tt-query, .datepicker.input-group\n .typeahead, .datepicker.asColorPicker-wrap\n .typeahead {\n border: none; }\n\n/* Dropify */\n.dropify-wrapper {\n border: 2px dashed #f2f2f2;\n border-radius: 7px; }\n .dropify-wrapper:hover {\n background-size: 30px 30px;\n background-image: -webkit-linear-gradient(135deg, #F2F7F8 25%, transparent 25%, transparent 50%, #F2F7F8 50%, #F2F7F8 75%, transparent 75%, transparent);\n background-image: linear-gradient(135deg, #F2F7F8 25%, transparent 25%, transparent 50%, #F2F7F8 50%, #F2F7F8 75%, transparent 75%, transparent);\n -webkit-animation: stripes 2s linear infinite;\n animation: stripes 2s linear infinite; }\n .dropify-wrapper .dropify-message span.file-icon:before {\n display: inline-block;\n font: normal normal normal 24px/1 \"Material Design Icons\";\n font-size: inherit;\n text-rendering: auto;\n line-height: inherit;\n -webkit-font-smoothing: antialiased;\n content: '\\F552';\n color: #212529;\n font-size: 1.25rem; }\n .dropify-wrapper .dropify-message p {\n font-size: 0.8125rem;\n color: #212529; }\n .dropify-wrapper .dropify-preview .dropify-infos {\n background: rgba(255, 255, 255, 0.9); }\n .dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner .dropify-filename {\n color: #2196f3;\n font-size: 20px;\n font-weight: 400; }\n .dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner .dropify-infos-message {\n color: #333;\n font-weight: 500; }\n .dropify-wrapper .dropify-preview .dropify-render img {\n opacity: 0.7; }\n .dropify-wrapper .dropify-clear {\n background: #fff;\n border: none;\n font-weight: 700;\n color: #6c757d; }\n\n/* Dropzone */\n.dropzone {\n border: 1px solid #f2f2f2;\n height: 200px; }\n .dropzone .dz-message {\n text-align: center;\n width: 100%; }\n .dropzone .dz-message span {\n font-size: 0.8125rem;\n color: #212529; }\n\n/* Flot chart */\n.float-chart-container {\n box-sizing: border-box;\n width: 100%;\n height: 100%;\n min-height: 300px;\n max-height: 100%; }\n\n.float-chart {\n width: 100%;\n position: relative;\n max-width: none;\n height: 400px; }\n .float-chart canvas {\n position: absolute !important;\n top: 0;\n bottom: 0; }\n\n/* Full Calendar */\n#calendar .fc-header-toolbar {\n background: #ffffff;\n padding: 28px 0 80px;\n margin-bottom: 0; }\n #calendar .fc-header-toolbar .fc-button-group {\n border-radius: 5px; }\n #calendar .fc-header-toolbar .fc-button-group .fc-button {\n box-shadow: none;\n padding: 1px 12px;\n margin-right: 0;\n font-size: 0.9375rem;\n font-weight: 400;\n line-height: 1.33;\n border: none;\n background: #2196f3;\n color: #ffffff;\n text-shadow: none;\n transition-duration: 0.3s; }\n #calendar .fc-header-toolbar .fc-button-group .fc-button:first-letter {\n text-transform: uppercase; }\n #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-state-active {\n background: #0d8aee;\n color: #ffffff; }\n #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-next-button, #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-prev-button {\n background: #ffffff;\n color: #2196f3;\n margin-right: 7px;\n height: 2.0625rem;\n width: 2.25rem;\n border: none; }\n #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-next-button span, #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-prev-button span {\n top: -3px;\n right: 9px; }\n #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-next-button span:after, #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-prev-button span:after {\n font: normal normal normal 24px/1 \"Material Design Icons\";\n display: block;\n line-height: 21px; }\n #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-prev-button span:after {\n content: \"\\F141\"; }\n #calendar .fc-header-toolbar .fc-button-group .fc-button.fc-next-button span:after {\n content: \"\\F142\"; }\n #calendar .fc-header-toolbar .fc-today-button {\n box-shadow: none;\n padding: 1px 12px;\n border-radius: 2px;\n margin-right: 4px;\n font-size: 0.9375rem;\n font-weight: 400;\n line-height: 1.33;\n border: none;\n background: #2196f3;\n color: #ffffff;\n text-shadow: none;\n transition-duration: 0.3s; }\n #calendar .fc-header-toolbar .fc-today-button:first-letter {\n text-transform: uppercase; }\n #calendar .fc-header-toolbar .fc-center h2 {\n font-size: 1.125rem;\n font-weight: 600;\n text-transform: uppercase; }\n\n#calendar .fc-view-container .fc-view {\n background: #f3f4fa; }\n #calendar .fc-view-container .fc-view table thead.fc-head {\n border: none; }\n #calendar .fc-view-container .fc-view table thead.fc-head tr td .fc-widget-header {\n border: none; }\n #calendar .fc-view-container .fc-view table thead.fc-head tr td .fc-widget-header table thead {\n border: none; }\n #calendar .fc-view-container .fc-view table thead.fc-head tr td .fc-widget-header table thead tr th.fc-day-header {\n text-transform: uppercase;\n padding: 0.4375rem 0;\n border-color: #f2f2f2;\n font-size: 0.875rem; }\n #calendar .fc-view-container .fc-view table thead.fc-head tr td.fc-head-container {\n border-color: #f7f7f7;\n border-bottom: none; }\n #calendar .fc-view-container .fc-view table tbody.fc-body {\n background: #ffffff; }\n #calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content {\n border-color: #f2f2f2; }\n #calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row {\n border-color: #f2f2f2; }\n #calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-bg table tr td {\n border-color: #f2f2f2; }\n #calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table thead tr td.fc-day-top {\n padding: 8px;\n font-size: 0.875rem;\n font-weight: 600; }\n #calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-event-container .fc-h-event {\n background: #19d895;\n border: none;\n padding: 6px 12px 6px 22px;\n font-weight: 500;\n color: #ffffff;\n border-radius: 4px; }\n #calendar .fc-view-container .fc-view table tbody.fc-body tr td.fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table tbody tr td.fc-more-cell {\n font-weight: 600;\n color: #252C46;\n padding: 0 7px; }\n\n/* Google Charts */\n.google-chart-container .google-charts {\n width: 100%;\n height: 280px;\n min-height: 280px;\n min-width: 100%; }\n\n/* Icheck */\n.icheck,\n.icheck-flat,\n.icheck-line,\n.icheck-square {\n margin-bottom: 0.5rem; }\n .icheck label,\n .icheck-flat label,\n .icheck-line label,\n .icheck-square label {\n font-size: 0.8125rem;\n line-height: 1.5;\n margin-left: 5px;\n margin-bottom: 0; }\n\n/* Jquery File Upload */\n.ajax-upload-dragdrop {\n border-color: #f2f2f2;\n border-style: dotted;\n max-width: 100%; }\n .ajax-upload-dragdrop span b {\n font-size: 0.8125rem;\n color: #212529;\n font-weight: initial; }\n .ajax-upload-dragdrop .ajax-file-upload {\n background: #8862e0;\n box-shadow: none;\n height: auto; }\n\n.ajax-file-upload-container {\n min-height: 100px; }\n .ajax-file-upload-container .ajax-file-upload-statusbar {\n max-width: 100%; }\n\n/* Js-grid */\n.jsgrid .jsgrid-button {\n background-image: url(\"../../images/sprites/jsgrid-icons.png\"); }\n\n.jsgrid .jsgrid-grid-header {\n border: 1px solid #f2f2f2;\n border-top: 0; }\n\n.jsgrid .jsgrid-table th {\n font-weight: initial;\n font-family: \"Poppins\", sans-serif; }\n\n.jsgrid .jsgrid-table .jsgrid-filter-row input[type=number] {\n padding: 0.56rem 0; }\n\n.jsgrid .jsgrid-header-sort:before {\n margin-top: 10px;\n float: right; }\n\n.jsgrid .jsgrid-header-sort-asc:before {\n border-color: transparent transparent #212529; }\n\n.jsgrid .jsgrid-header-sort-desc:before {\n border-color: #212529 transparent transparent; }\n\n.jsgrid .jsgrid-pager {\n line-height: 2;\n display: flex;\n align-items: center; }\n\n.jsgrid .jsgrid-pager-current-page {\n padding: 0.5rem 0.75rem;\n font-weight: initial;\n line-height: 1.25; }\n\n/* Jvectormap */\n.jvectormap-container {\n background: #ffffff; }\n\n/* Light Gallery */\n.lightGallery {\n width: 100%;\n margin: 0; }\n .lightGallery .image-tile {\n position: relative;\n margin-bottom: 30px; }\n .lightGallery .image-tile .demo-gallery-poster {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0; }\n .lightGallery .image-tile .demo-gallery-poster img {\n display: block;\n margin: auto;\n width: 40%;\n max-width: 60px;\n min-width: 20px; }\n .lightGallery .image-tile img {\n max-width: 100%;\n width: 100%; }\n\n/* Listify */\n.listify-list input {\n border: 1px solid #f4f4f4;\n color: #8ba2b5;\n background: #fff; }\n\n.listify-list ul.list {\n list-style: none;\n padding-left: 0; }\n .listify-list ul.list li {\n display: block;\n border-bottom: 1px solid #f2f2f2;\n padding: 15px 10px; }\n .listify-list ul.list li h5 {\n color: #2196f3; }\n .listify-list ul.list li p {\n color: #8ba2b5;\n margin: 0; }\n\n/* No-ui-slider */\n.noUi-target {\n border: none;\n box-shadow: none;\n border-radius: 0; }\n .noUi-target.noUi-horizontal {\n height: 0.25rem; }\n .noUi-target.noUi-horizontal .noUi-handle {\n left: -17px; }\n .noUi-target.noUi-vertical {\n width: 0.25rem;\n height: 156px;\n display: inline-block; }\n .noUi-target.noUi-vertical .noUi-handle {\n left: -6px; }\n .noUi-target .noUi-base {\n background: #f7f7f9;\n box-shadow: none;\n border: none; }\n .noUi-target .noUi-base .noUi-connect {\n background: #2196f3;\n box-shadow: none; }\n .noUi-target .noUi-base .noUi-origin {\n background: #19d895; }\n .noUi-target .noUi-base .noUi-origin .noUi-handle {\n position: relative;\n background: #ffffff;\n border-radius: 100%;\n border: 1px solid #f2f2f2;\n width: 18px;\n height: 18px;\n top: -7px;\n outline: none;\n transition-duration: 0.4s; }\n .noUi-target .noUi-base .noUi-origin .noUi-handle:after, .noUi-target .noUi-base .noUi-origin .noUi-handle:before {\n display: none; }\n .noUi-target .noUi-base .noUi-origin .noUi-handle:after {\n display: block;\n position: absolute;\n top: 5px;\n left: 0;\n right: 0;\n margin: auto;\n width: 6px;\n height: 6px;\n background: #2196f3;\n border-radius: 100%; }\n .noUi-target .noUi-base .noUi-origin .noUi-handle .noUi-tooltip {\n font-family: \"Poppins\", sans-serif;\n border-radius: 4px;\n border: none;\n line-height: 1;\n font-size: 0.875rem;\n padding: 13px 12px;\n bottom: 190%; }\n .noUi-target .noUi-pips .noUi-marker-horizontal,\n .noUi-target .noUi-pips .noUi-marker-vertical {\n background: #f2f2f2; }\n .noUi-target .noUi-pips .noUi-marker-horizontal {\n height: 9px;\n width: 1px; }\n .noUi-target .noUi-pips .noUi-marker-vertical {\n height: 1px;\n width: 9px; }\n .noUi-target .noUi-pips .noUi-value {\n color: #000;\n font-size: 0.94rem;\n font-family: \"Poppins\", sans-serif; }\n\n/* Slider Color variations */\n.slider-primary .noUi-base .noUi-connect {\n background: #2196f3; }\n\n.slider-primary .noUi-base .noUi-origin {\n background: #2196f3; }\n .slider-primary .noUi-base .noUi-origin .noUi-handle:after {\n background: #2196f3; }\n .slider-primary .noUi-base .noUi-origin .noUi-handle .noUi-tooltip {\n background: #2196f3;\n color: #ffffff; }\n\n.slider-secondary .noUi-base .noUi-connect {\n background: #e6eef2; }\n\n.slider-secondary .noUi-base .noUi-origin {\n background: #e6eef2; }\n .slider-secondary .noUi-base .noUi-origin .noUi-handle:after {\n background: #e6eef2; }\n .slider-secondary .noUi-base .noUi-origin .noUi-handle .noUi-tooltip {\n background: #e6eef2;\n color: #ffffff; }\n\n.slider-success .noUi-base .noUi-connect {\n background: #19d895; }\n\n.slider-success .noUi-base .noUi-origin {\n background: #19d895; }\n .slider-success .noUi-base .noUi-origin .noUi-handle:after {\n background: #19d895; }\n .slider-success .noUi-base .noUi-origin .noUi-handle .noUi-tooltip {\n background: #19d895;\n color: #ffffff; }\n\n.slider-info .noUi-base .noUi-connect {\n background: #8862e0; }\n\n.slider-info .noUi-base .noUi-origin {\n background: #8862e0; }\n .slider-info .noUi-base .noUi-origin .noUi-handle:after {\n background: #8862e0; }\n .slider-info .noUi-base .noUi-origin .noUi-handle .noUi-tooltip {\n background: #8862e0;\n color: #ffffff; }\n\n.slider-warning .noUi-base .noUi-connect {\n background: #ffaf00; }\n\n.slider-warning .noUi-base .noUi-origin {\n background: #ffaf00; }\n .slider-warning .noUi-base .noUi-origin .noUi-handle:after {\n background: #ffaf00; }\n .slider-warning .noUi-base .noUi-origin .noUi-handle .noUi-tooltip {\n background: #ffaf00;\n color: #ffffff; }\n\n.slider-danger .noUi-base .noUi-connect {\n background: #ff6258; }\n\n.slider-danger .noUi-base .noUi-origin {\n background: #ff6258; }\n .slider-danger .noUi-base .noUi-origin .noUi-handle:after {\n background: #ff6258; }\n .slider-danger .noUi-base .noUi-origin .noUi-handle .noUi-tooltip {\n background: #ff6258;\n color: #ffffff; }\n\n.slider-light .noUi-base .noUi-connect {\n background: #fbfbfb; }\n\n.slider-light .noUi-base .noUi-origin {\n background: #fbfbfb; }\n .slider-light .noUi-base .noUi-origin .noUi-handle:after {\n background: #fbfbfb; }\n .slider-light .noUi-base .noUi-origin .noUi-handle .noUi-tooltip {\n background: #fbfbfb;\n color: #ffffff; }\n\n.slider-dark .noUi-base .noUi-connect {\n background: #252C46; }\n\n.slider-dark .noUi-base .noUi-origin {\n background: #252C46; }\n .slider-dark .noUi-base .noUi-origin .noUi-handle:after {\n background: #252C46; }\n .slider-dark .noUi-base .noUi-origin .noUi-handle .noUi-tooltip {\n background: #252C46;\n color: #ffffff; }\n\n/* Owl-carousel */\n.owl-carousel img {\n border-radius: 4px; }\n\n.owl-carousel.full-width .owl-nav {\n position: absolute;\n top: 30%;\n width: 100%;\n margin-top: 0; }\n .owl-carousel.full-width .owl-nav .owl-next,\n .owl-carousel.full-width .owl-nav .owl-prev {\n background: transparent;\n color: #ffffff; }\n .owl-carousel.full-width .owl-nav .owl-next i:before,\n .owl-carousel.full-width .owl-nav .owl-prev i:before {\n width: 40px;\n height: 40px;\n background: rgba(0, 0, 0, 0.5);\n border-radius: 100%;\n font-size: 1.6rem;\n font-weight: bold;\n line-height: 40px; }\n .owl-carousel.full-width .owl-nav .owl-prev {\n float: left; }\n .owl-carousel.full-width .owl-nav .owl-next {\n float: right; }\n\n.owl-carousel.full-width .owl-dots {\n margin-top: 1rem; }\n\n.owl-carousel .item-video {\n width: 200px;\n height: 200px; }\n\n/* Progressbar-js */\n.ui-progress {\n border-radius: 50px; }\n .ui-progress svg {\n background: #f2f2f2;\n border-radius: 50px; }\n\n.progressbar-js-circle {\n width: 100%; }\n\n/* Pws-tabs */\n.pws_tabs_container ul.pws_tabs_controll {\n border-bottom: 1px solid #2196f3; }\n .pws_tabs_container ul.pws_tabs_controll li:first-child a {\n border-radius: 5px 0 0 0; }\n .pws_tabs_container ul.pws_tabs_controll li:last-child a {\n border-right: 1px solid #2196f3;\n border-radius: 0 5px 0 0; }\n .pws_tabs_container ul.pws_tabs_controll li a {\n border: 1px solid #2196f3;\n border-bottom: none;\n border-right: none;\n background: #fff;\n color: #2196f3;\n padding: 0.3em 1.3em;\n margin-right: 0;\n font-weight: 500;\n font-size: 14px; }\n .pws_tabs_container ul.pws_tabs_controll li a:hover {\n background: #fff;\n color: #2196f3; }\n .pws_tabs_container ul.pws_tabs_controll li a.pws_tab_active {\n background: #2196f3;\n color: #fff; }\n\n.pws_tabs_container .demo-tabs {\n border: 1px solid #2196f3;\n border-radius: 0 5px 5px 5px;\n overflow: hidden;\n background: #fbfbfb;\n margin-bottom: 45px;\n padding-top: 3.5rem; }\n .pws_tabs_container .demo-tabs .CodeMirror {\n margin-bottom: 20px; }\n\n.pws_tabs_container.pws_tabs_vertical .pws_tabs_controll {\n border-right: none;\n border-bottom: none; }\n .pws_tabs_container.pws_tabs_vertical .pws_tabs_controll li:first-child a {\n border-radius: 5px 0 0 0; }\n .pws_tabs_container.pws_tabs_vertical .pws_tabs_controll li:last-child a {\n border-bottom: 1px solid #2196f3;\n border-radius: 0 0 0 5px;\n border-right: 0; }\n .pws_tabs_container.pws_tabs_vertical .pws_tabs_controll li a {\n border-radius: 0;\n border: 1px solid #2196f3;\n border-right: none;\n border-bottom: none;\n margin-bottom: 0; }\n\n.pws_tabs_container.pws_tabs_horizontal_bottom .pws_tabs_list {\n margin-bottom: 0; }\n\n.pws_tabs_container.pws_tabs_horizontal_bottom .pws_tabs_controll {\n border-top: 1px solid #2196f3;\n border-right: none;\n border-bottom: none; }\n .pws_tabs_container.pws_tabs_horizontal_bottom .pws_tabs_controll li:first-child a {\n border-radius: 0 0 0 5px; }\n .pws_tabs_container.pws_tabs_horizontal_bottom .pws_tabs_controll li:last-child a {\n border-radius: 0 0 5px 0;\n border-right: 1px solid #2196f3; }\n .pws_tabs_container.pws_tabs_horizontal_bottom .pws_tabs_controll li a {\n border-radius: 0;\n border: 1px solid #2196f3;\n border-top: none;\n border-right: none;\n margin-right: 0;\n margin-bottom: 0; }\n\n.pws_tabs_container.pws_tabs_horizontal_top .pws_tabs_controll {\n border-bottom: 0px; }\n\n.pws_tabs_container.pws_tabs_rtl .pws_tabs_controll li:first-child a {\n border-radius: 0 5px 0 0;\n border-right: 1px solid #2196f3; }\n\n.pws_tabs_container.pws_tabs_rtl .pws_tabs_controll li:last-child a {\n border-right: none;\n border-radius: 5px 0 0 0; }\n\n.pws_tabs_container.pws_tabs_rtl .pws_tabs_controll li a {\n border: 1px solid #2196f3;\n border-bottom: none;\n border-right: none;\n margin-right: 0;\n margin-left: 0; }\n\n/* Quill Editor */\n.quill-container {\n height: 300px; }\n\n.ql-toolbar.ql-snow,\n.quill-container.ql-snow {\n border-color: #f2f2f2; }\n\n/* Rating */\n.br-theme-css-stars .br-widget a,\n.br-theme-fontawesome-stars .br-widget a {\n font-size: 15px;\n margin-right: 0px; }\n .br-theme-css-stars .br-widget a:last-child,\n .br-theme-fontawesome-stars .br-widget a:last-child {\n margin-right: 0; }\n\n.br-theme-css-stars .br-widget a.br-active:after,\n.br-theme-css-stars .br-widget a.br-selected:after,\n.br-theme-fontawesome-stars .br-widget a.br-active:after,\n.br-theme-fontawesome-stars .br-widget a.br-selected:after {\n color: #F9CF57; }\n\n.br-theme-bars-1to10 .br-widget a,\n.br-theme-bars-horizontal .br-widget a,\n.br-theme-bars-movie .br-widget a,\n.br-theme-bars-pill .br-widget a,\n.br-theme-bars-reversed .br-widget a {\n background-color: rgba(249, 207, 87, 0.6);\n color: #F9CF57; }\n .br-theme-bars-1to10 .br-widget a.br-active, .br-theme-bars-1to10 .br-widget a.br-selected,\n .br-theme-bars-horizontal .br-widget a.br-active,\n .br-theme-bars-horizontal .br-widget a.br-selected,\n .br-theme-bars-movie .br-widget a.br-active,\n .br-theme-bars-movie .br-widget a.br-selected,\n .br-theme-bars-pill .br-widget a.br-active,\n .br-theme-bars-pill .br-widget a.br-selected,\n .br-theme-bars-reversed .br-widget a.br-active,\n .br-theme-bars-reversed .br-widget a.br-selected {\n background-color: #F9CF57; }\n\n.br-theme-bars-square .br-widget a {\n border-color: rgba(249, 207, 87, 0.6);\n color: rgba(249, 207, 87, 0.6); }\n .br-theme-bars-square .br-widget a.br-active, .br-theme-bars-square .br-widget a.br-selected {\n border-color: #F9CF57;\n color: #F9CF57; }\n\n.br-theme-bars-1to10 .br-widget .br-current-rating,\n.br-theme-bars-horizontal .br-widget .br-current-rating,\n.br-theme-bars-movie .br-widget .br-current-rating,\n.br-theme-bars-reversed .br-widget .br-current-rating {\n color: #212529;\n font-size: 0.875rem;\n font-weight: initial; }\n\n.br-theme-bars-1to10 {\n height: 26px; }\n .br-theme-bars-1to10 .br-widget {\n height: 24px; }\n .br-theme-bars-1to10 .br-widget .br-current-rating {\n line-height: 1; }\n\n.br-theme-bars-pill .br-widget a {\n line-height: 2.5; }\n\n/* Select2 */\n.select2-container--default .select2-results__option--highlighted[aria-selected] {\n background: #2196f3; }\n\n.select2-container--default .select2-dropdown,\n.select2-container--default .select2-selection--multiple,\n.select2-container--default .select2-selection--single {\n border-color: #f2f2f2; }\n .select2-container--default .select2-dropdown .select2-search__field,\n .select2-container--default .select2-selection--multiple .select2-search__field,\n .select2-container--default .select2-selection--single .select2-search__field {\n border-color: #f2f2f2; }\n\n.select2-container--default .select2-selection--single {\n height: auto; }\n .select2-container--default .select2-selection--single .select2-selection__rendered {\n line-height: 14px; }\n\n.select2-container--default .select2-dropdown {\n font-size: 0.8125rem; }\n\n.select2-container--default.select2-container--focus .select2-selection--multiple {\n border-color: #f2f2f2; }\n\n.select2-container--default .select2-selection--multiple .select2-selection__choice {\n color: #ffffff;\n border: 0;\n border-radius: 3px;\n padding: 6px;\n font-size: 0.625rem;\n font-family: inherit;\n line-height: 1; }\n .select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {\n color: #ffffff; }\n .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+1) {\n background: #2196f3; }\n .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+2) {\n background: #19d895; }\n .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+3) {\n background: #8862e0; }\n .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+4) {\n background: #ff6258; }\n .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+5) {\n background: #ffaf00; }\n\n/* Summernote Editor */\n.note-editor.note-frame {\n border: 1px solid #f2f2f2; }\n\n.note-popover {\n border: 1px solid #f2f2f2; }\n\n/* SweetAlert */\n.swal2-container {\n z-index: 1500; }\n\n.swal2-modal {\n min-height: 315px;\n align-items: center;\n justify-content: center;\n flex-direction: column;\n border-radius: 10px; }\n .swal2-modal .swal2-title {\n font-size: 25px;\n line-height: 1;\n font-family: \"Poppins\", sans-serif;\n color: #212529;\n font-weight: initial;\n margin-bottom: 0; }\n .swal2-modal .swal2-icon,\n .swal2-modal .swal2-success-ring {\n margin-top: 0;\n margin-bottom: 42px; }\n .swal2-modal .swal2-buttonswrapper {\n margin-top: 0;\n padding: 0; }\n .swal2-modal .swal2-buttonswrapper .swal2-styled {\n margin-top: 0;\n font-weight: initial; }\n .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm {\n background-color: #19d895 !important;\n border: 1px solid #19d895 !important;\n font-weight: initial;\n margin-top: 32px; }\n .swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-cancel {\n margin-top: 32px;\n background-color: #ffffff !important;\n border: 1px solid #f2f2f2;\n color: #212529;\n font-weight: initial; }\n .swal2-modal .swal2-content {\n font-size: 0.875rem;\n font-family: \"Poppins\", sans-serif;\n color: #212529;\n font-weight: initial;\n margin-top: 11px; }\n .swal2-modal .swal2-close {\n font-size: 20px; }\n .swal2-modal .swal2-success-ring {\n left: -30px; }\n\n/* Switchery */\n.switchery {\n width: 35px;\n height: 21px;\n border-radius: 11px; }\n .switchery > small {\n width: 20px;\n height: 20px; }\n\n.switchery-small {\n width: 25px;\n height: 13px; }\n .switchery-small > small {\n width: 13px;\n height: 13px; }\n\n.switchery-large {\n width: 50px;\n height: 28px;\n border-radius: 14px; }\n .switchery-large > small {\n width: 27px;\n height: 27px; }\n\n/* Tags */\ndiv.tagsinput {\n padding: 15px 15px 10px;\n border-color: #f2f2f2; }\n div.tagsinput span.tag {\n background: #2196f3;\n border: 0;\n color: #ffffff;\n padding: 6px 14px;\n font-size: 0.8125rem;\n font-family: inherit;\n line-height: 1; }\n div.tagsinput span.tag a {\n color: #ffffff; }\n\n/* TinyMCE Editor */\n.mce-tinymce.mce-panel,\n.mce-tinymce .mce-panel {\n border-color: #f2f2f2; }\n\n/* Toast */\n.jq-toast-wrap .jq-icon-success {\n background-color: #19d895; }\n\n.jq-toast-wrap .jq-icon-info {\n background-color: #8862e0; }\n\n.jq-toast-wrap .jq-icon-warning {\n background-color: #ffaf00; }\n\n.jq-toast-wrap .jq-icon-error {\n background-color: #ff6258; }\n\n/* Typeahead */\n.gist,\n.tt-menu {\n text-align: left; }\n\n.twitter-typeahead {\n max-width: 100%; }\n\n.typeahead {\n background-color: #ffffff; }\n .typeahead:focus {\n border-color: #f2f2f2; }\n\n.tt-query {\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }\n\n.tt-hint {\n color: #6c757d; }\n\n.tt-menu {\n width: 100%;\n margin: 12px 0;\n padding: 8px 0;\n background-color: #ffffff;\n border: 1px solid #f2f2f2;\n -webkit-border-radius: 8px;\n -moz-border-radius: 8px;\n border-radius: 8px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }\n\n.tt-suggestion {\n padding: 3px 20px;\n font-size: inherit; }\n .tt-suggestion:hover {\n cursor: pointer;\n color: #ffffff;\n background-color: #2196f3; }\n .tt-suggestion .tt-cursor {\n color: #ffffff;\n background-color: #2196f3; }\n .tt-suggestion p {\n margin: 0; }\n\n/* Wysi Editor */\n.wysi-editor #toolbar [data-wysihtml-action] {\n float: right; }\n\n.wysi-editor #toolbar,\n.wysi-editor textarea {\n width: 920px;\n padding: 5px;\n -webkit-box-sizing: border-box;\n -ms-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box; }\n\n.wysi-editor textarea {\n height: 280px;\n border: 1px solid #f2f2f2;\n font-family: inherit;\n font-size: 1rem; }\n\n.wysi-editor textarea:focus {\n color: black;\n border: 1px solid #f2f2f2; }\n\n.wysi-editor .wysihtml-action-active,\n.wysi-editor .wysihtml-command-active {\n font-weight: bold; }\n\n.wysi-editor [data-wysihtml-dialog] {\n margin: 5px 0 0;\n padding: 5px;\n border: 1px solid #666; }\n\n.wysi-editor a[data-wysihtml-command-value=\"red\"] {\n color: #ff6258; }\n\n.wysi-editor a[data-wysihtml-command-value=\"green\"] {\n color: #19d895; }\n\n.wysi-editor a[data-wysihtml-command-value=\"blue\"] {\n color: #8862e0; }\n\n.wysi-editor .wysihtml-editor,\n.wysi-editor .wysihtml-editor table td {\n outline: 1px dotted #f2f2f2; }\n\n.wysi-editor code {\n background: #ddd;\n padding: 10px;\n white-space: pre;\n display: block;\n margin: 1em 0; }\n\n.wysi-editor .toolbar {\n display: block;\n border-radius: 3px;\n border: 1px solid #fff;\n margin-bottom: 9px;\n line-height: 1em; }\n\n.wysi-editor .toolbar a {\n display: inline-block;\n height: 1.5em;\n border-radius: 3px;\n font-size: 1rem;\n line-height: 1.5em;\n text-decoration: none;\n background: #ffffff;\n border: 1px solid #f2f2f2;\n padding: 0 0.2em;\n margin: 1px 0;\n color: #2196f3; }\n\n.wysi-editor .toolbar .wysihtml-action-active,\n.wysi-editor .toolbar a.wysihtml-command-active {\n background: #222;\n color: white; }\n\n.wysi-editor .toolbar .block {\n padding: 1px;\n display: inline-block;\n background: #eee;\n border-radius: 3px;\n margin: 0 1px 1px 0; }\n\n.wysi-editor div[data-wysihtml-dialog=\"createTable\"] {\n position: absolute;\n background: white; }\n\n.wysi-editor div[data-wysihtml-dialog=\"createTable\"] td {\n width: 10px;\n height: 5px;\n border: 1px solid #f2f2f2; }\n\n.wysi-editor .wysihtml-editor table td.wysiwyg-tmp-selected-cell {\n outline: 2px solid #19d895; }\n\n.wysi-editor .editor-container-tag {\n padding: 5px 10px;\n position: absolute;\n color: white;\n background: rgba(0, 0, 0, 0.8);\n width: 100px;\n margin-left: -50px;\n -webkit-transition: 0.1s left, 0.1s top; }\n\n.wysi-editor .wrap {\n max-width: 700px;\n margin: 40px; }\n\n.wysi-editor .editable .wysihtml-uneditable-container {\n outline: 1px dotted #f2f2f2;\n position: relative; }\n\n.wysi-editor .editable .wysihtml-uneditable-container-right {\n float: right;\n width: 50%;\n margin-left: 2em;\n margin-bottom: 1em; }\n\n.wysi-editor .editable .wysihtml-uneditable-container-left {\n float: left;\n width: 50%;\n margin-right: 2em;\n margin-bottom: 1em; }\n\n/* X-editable */\n.editable-form .editable {\n color: #212529;\n font-size: 0.8125rem; }\n\n.editable-form .editable-click {\n border-color: #212529; }\n\n.editable-container.editable-inline {\n max-width: 100%; }\n .editable-container.editable-inline .editableform {\n max-width: 100%; }\n .editable-container.editable-inline .editableform .control-group {\n max-width: 100%;\n white-space: initial; }\n .editable-container.editable-inline .editableform .control-group > div {\n max-width: 100%; }\n .editable-container.editable-inline .editableform .control-group .editable-input input,\n .editable-container.editable-inline .editableform .control-group .editable-input textarea {\n max-width: 100%; }\n .editable-container.editable-inline .editableform .control-group .editable-input .combodate .form-control, .editable-container.editable-inline .editableform .control-group .editable-input .combodate .asColorPicker-input, .editable-container.editable-inline .editableform .control-group .editable-input .combodate .dataTables_wrapper select, .dataTables_wrapper .editable-container.editable-inline .editableform .control-group .editable-input .combodate select, .editable-container.editable-inline .editableform .control-group .editable-input .combodate .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .editable-container.editable-inline .editableform .control-group .editable-input .combodate input[type=text], .editable-container.editable-inline .editableform .control-group .editable-input .combodate\n .jsgrid .jsgrid-table .jsgrid-filter-row select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .editable-container.editable-inline .editableform .control-group .editable-input .combodate select, .editable-container.editable-inline .editableform .control-group .editable-input .combodate .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .editable-container.editable-inline .editableform .control-group .editable-input .combodate input[type=number], .editable-container.editable-inline .editableform .control-group .editable-input .combodate .select2-container--default .select2-selection--single, .select2-container--default .editable-container.editable-inline .editableform .control-group .editable-input .combodate .select2-selection--single, .editable-container.editable-inline .editableform .control-group .editable-input .combodate .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .editable-container.editable-inline .editableform .control-group .editable-input .combodate .select2-search__field, .editable-container.editable-inline .editableform .control-group .editable-input .combodate .tt-hint, .editable-container.editable-inline .editableform .control-group .editable-input .combodate\n .tt-query, .editable-container.editable-inline .editableform .control-group .editable-input .combodate\n .typeahead {\n padding-left: 0;\n padding-right: 0; }\n @media (max-width: 991px) {\n .editable-container.editable-inline .editableform .control-group .editable-buttons {\n display: block;\n margin-top: 10px; } }\n\n/* Wizard */\n.wizard {\n display: block;\n width: 100%;\n overflow: hidden; }\n .wizard a {\n outline: 0; }\n .wizard ul {\n list-style: none !important;\n padding: 0;\n margin: 0; }\n .wizard ul > li {\n display: block;\n padding: 0; }\n .wizard > .steps {\n position: relative;\n display: block;\n width: 100%; }\n .wizard > .steps .current-info {\n position: absolute;\n left: -999em; }\n .wizard > .steps .number {\n font-size: 0.875rem; }\n .wizard > .steps > ul > li {\n width: 25%;\n float: left;\n text-align: center; }\n .wizard > .steps a {\n display: block;\n width: auto;\n margin: 0 0.5em 0.5em;\n padding: 1em;\n text-decoration: none;\n -webkit-border-radius: 5px;\n -moz-border-radius: 5px;\n border-radius: 5px;\n font-size: 0.875rem;\n font-family: \"Poppins\", sans-serif; }\n .wizard > .steps a:hover {\n display: block;\n width: auto;\n margin: 0 0.5em 0.5em;\n padding: 1em;\n text-decoration: none;\n -webkit-border-radius: 5px;\n -moz-border-radius: 5px;\n border-radius: 5px; }\n .wizard > .steps a:active {\n display: block;\n width: auto;\n margin: 0 0.5em 0.5em;\n padding: 1em;\n text-decoration: none;\n -webkit-border-radius: 5px;\n -moz-border-radius: 5px;\n border-radius: 5px; }\n .wizard > .steps .disabled a {\n background: #f7f7f9;\n color: #6c757d;\n cursor: default; }\n .wizard > .steps .disabled a:hover {\n background: #f7f7f9;\n color: #6c757d;\n cursor: default; }\n .wizard > .steps .disabled a:active {\n background: #f7f7f9 e;\n color: #6c757d;\n cursor: default; }\n .wizard > .steps .current a {\n background: #2196f3;\n color: #ffffff;\n cursor: default; }\n .wizard > .steps .current a:hover {\n background: #2196f3;\n color: #ffffff;\n cursor: default; }\n .wizard > .steps .current a:active {\n background: #2196f3;\n color: #ffffff;\n cursor: default; }\n .wizard > .steps .done a {\n background: #82c4f8;\n color: #ffffff; }\n .wizard > .steps .done a:hover {\n background: #82c4f8;\n color: #ffffff; }\n .wizard > .steps .done a:active {\n background: #82c4f8;\n color: #ffffff; }\n .wizard > .steps .error a {\n background: #ff6258;\n color: #fff; }\n .wizard > .steps .error a:hover {\n background: #ff6258;\n color: #fff; }\n .wizard > .steps .error a:active {\n background: #ff6258;\n color: #fff; }\n .wizard > .content {\n background: #f3f4fa;\n display: block;\n margin: 0.5em;\n min-height: 24em;\n overflow: hidden;\n position: relative;\n width: auto;\n -webkit-border-radius: 5px;\n -moz-border-radius: 5px;\n border-radius: 5px; }\n .wizard > .content > .title {\n position: absolute;\n left: -999em; }\n .wizard > .content > .body {\n float: left;\n position: absolute;\n width: 95%;\n height: 95%;\n padding: 2.5%; }\n .wizard > .content > .body ul {\n list-style: disc !important; }\n .wizard > .content > .body ul > li {\n display: list-item; }\n .wizard > .content > .body > iframe {\n border: 0 none;\n width: 100%;\n height: 100%; }\n .wizard > .content > .body input {\n display: block;\n border: 1px solid #f2f2f2; }\n .wizard > .content > .body input[type=\"checkbox\"] {\n display: inline-block; }\n .wizard > .content > .body input.error {\n background: #fbe3e4;\n border: 1px solid #ffc2be;\n color: #ff6258; }\n .wizard > .content > .body label {\n display: inline-block;\n margin-bottom: 0.5em; }\n .wizard > .content > .body label.error {\n color: #ff6258;\n display: inline-block;\n margin-left: 1.5em; }\n .wizard > .actions {\n padding-top: 20px;\n position: relative;\n display: block;\n text-align: right;\n width: 100%; }\n .wizard > .actions > ul {\n display: inline-block;\n text-align: right; }\n .wizard > .actions > ul > li {\n float: left;\n margin: 0 0.5em; }\n .wizard.vertical > .steps {\n display: inline;\n float: left;\n width: 30%; }\n .wizard.vertical > .steps > ul > li {\n float: none;\n width: 100%;\n text-align: left; }\n .wizard.vertical > .content {\n display: inline;\n float: left;\n margin: 0 2.5% 0.5em;\n width: 65%; }\n .wizard.vertical > .actions {\n display: inline;\n float: right;\n margin: 0 2.5%;\n width: 95%; }\n .wizard.vertical > .actions > ul > li {\n margin: 0 0 0 1em; }\n\n.tabcontrol {\n display: block;\n width: 100%;\n overflow: hidden; }\n .tabcontrol a {\n outline: 0; }\n .tabcontrol ul {\n list-style: none !important;\n padding: 0;\n margin: 0; }\n .tabcontrol ul > li {\n display: block;\n padding: 0; }\n .tabcontrol > .steps {\n position: relative;\n display: block;\n width: 100%; }\n .tabcontrol > .steps .current-info {\n position: absolute;\n left: -999em; }\n .tabcontrol > .steps > ul {\n position: relative;\n margin: 6px 0 0;\n top: 1px;\n z-index: 1; }\n .tabcontrol > .steps > ul > li {\n float: left;\n margin: 5px 2px 0 0;\n padding: 1px;\n -webkit-border-top-left-radius: 5px;\n -webkit-border-top-right-radius: 5px;\n -moz-border-radius-topleft: 5px;\n -moz-border-radius-topright: 5px;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px; }\n .tabcontrol > .steps > ul > li:hover {\n background: #edecec;\n border: 1px solid #f2f2f2;\n padding: 0; }\n .tabcontrol > .steps > ul > li > a {\n color: #8ba2b5;\n display: inline-block;\n border: 0 none;\n margin: 0;\n padding: 10px 30px;\n text-decoration: none; }\n .tabcontrol > .steps > ul > li > a:hover {\n text-decoration: none; }\n .tabcontrol > .steps > ul > li.current {\n background: #ffffff;\n border: 1px solid #f2f2f2;\n border-bottom: 0 none;\n padding: 0 0 1px;\n margin-top: 0; }\n .tabcontrol > .steps > ul > li.current > a {\n padding: 15px 30px 10px; }\n .tabcontrol > .content {\n position: relative;\n display: inline-block;\n width: 100%;\n height: 35em;\n overflow: hidden;\n border-top: 1px solid #f2f2f2;\n padding-top: 20px; }\n .tabcontrol > .content > .title {\n position: absolute;\n left: -999em; }\n .tabcontrol > .content > .body {\n float: left;\n position: absolute;\n width: 95%;\n height: 95%;\n padding: 2.5%; }\n .tabcontrol > .content > .body ul {\n list-style: disc !important; }\n .tabcontrol > .content > .body ul > li {\n display: list-item; }\n\n/*-------------------------------------------------------------------*/\n/* === Landing screens === */\n/* Auth */\n.auth.auth-bg-1 {\n background: url(\"../../images/auth/login_1.jpg\");\n background-size: cover; }\n\n.auth.register-bg-1 {\n background: url(\"../../images/auth/register.jpg\") center center no-repeat;\n background-size: cover; }\n\n.auth.theme-one .auto-form-wrapper {\n background: #ffffff;\n padding: 40px 40px 10px;\n border-radius: 4px;\n box-shadow: 0 -25px 37.7px 11.3px rgba(8, 143, 220, 0.07); }\n .auth.theme-one .auto-form-wrapper .form-group .input-group, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap {\n height: 44px; }\n .auth.theme-one .auto-form-wrapper .form-group .input-group .form-control, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .form-control, .auth.theme-one .auto-form-wrapper .form-group .input-group .asColorPicker-input, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .asColorPicker-input, .auth.theme-one .auto-form-wrapper .form-group .input-group .dataTables_wrapper select, .dataTables_wrapper .auth.theme-one .auto-form-wrapper .form-group .input-group select, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .dataTables_wrapper select, .dataTables_wrapper .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap select, .auth.theme-one .auto-form-wrapper .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .input-group input[type=text], .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap input[type=text], .auth.theme-one .auto-form-wrapper .form-group .input-group\n .jsgrid .jsgrid-table .jsgrid-filter-row select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .input-group select, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap\n .jsgrid .jsgrid-table .jsgrid-filter-row select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap select, .auth.theme-one .auto-form-wrapper .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .input-group input[type=number], .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap input[type=number], .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-container--default .select2-selection--single, .select2-container--default .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-selection--single, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single, .select2-container--default .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-selection--single, .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-search__field, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-search__field, .auth.theme-one .auto-form-wrapper .form-group .input-group .tt-hint, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .tt-hint, .auth.theme-one .auto-form-wrapper .form-group .input-group\n .tt-query, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap\n .tt-query, .auth.theme-one .auto-form-wrapper .form-group .input-group\n .typeahead, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap\n .typeahead {\n border: 1px solid #e5e5e5;\n border-right: none;\n border-radius: 6px 0 0 6px; }\n .auth.theme-one .auto-form-wrapper .form-group .input-group .form-control:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .form-control:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .asColorPicker-input:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .asColorPicker-input:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .dataTables_wrapper select:focus, .dataTables_wrapper .auth.theme-one .auto-form-wrapper .form-group .input-group select:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .dataTables_wrapper select:focus, .dataTables_wrapper .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap select:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .input-group input[type=text]:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap input[type=text]:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group\n .jsgrid .jsgrid-table .jsgrid-filter-row select:focus,\n .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .input-group select:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap\n .jsgrid .jsgrid-table .jsgrid-filter-row select:focus,\n .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap select:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .input-group input[type=number]:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap input[type=number]:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-container--default .select2-selection--single:focus, .select2-container--default .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-selection--single:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single:focus, .select2-container--default .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-selection--single:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-container--default .select2-selection--single .select2-search__field:focus, .select2-container--default .select2-selection--single .auth.theme-one .auto-form-wrapper .form-group .input-group .select2-search__field:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single .select2-search__field:focus, .select2-container--default .select2-selection--single .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .select2-search__field:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group .tt-hint:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .tt-hint:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group\n .tt-query:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap\n .tt-query:focus, .auth.theme-one .auto-form-wrapper .form-group .input-group\n .typeahead:focus, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap\n .typeahead:focus {\n border-right: none;\n border-color: #e5e5e5; }\n .auth.theme-one .auto-form-wrapper .form-group .input-group .input-group-append, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .input-group-append {\n border-left: none; }\n .auth.theme-one .auto-form-wrapper .form-group .input-group .input-group-append .input-group-text, .auth.theme-one .auto-form-wrapper .form-group .asColorPicker-wrap .input-group-append .input-group-text {\n border-radius: 0 6px 6px 0;\n border-left: none;\n border-color: #e5e5e5;\n color: #b6b6b6; }\n .auth.theme-one .auto-form-wrapper .form-group .submit-btn {\n font-family: \"Poppins\", sans-serif;\n font-size: 13px;\n padding: 12px 8px;\n font-weight: 600; }\n .auth.theme-one .auto-form-wrapper .g-login {\n border: 1px solid #f2f2f2;\n padding: 13px;\n font-size: 12px;\n font-weight: 600;\n background: transparent; }\n\n.auth.theme-one .auth-footer {\n list-style-type: none;\n padding-left: 0;\n margin-top: 20px;\n margin-bottom: 10px;\n display: flex;\n justify-content: center; }\n .auth.theme-one .auth-footer li {\n margin-right: 10px;\n line-height: 1;\n padding-right: 10px;\n border-right: 1px solid rgba(255, 255, 255, 0.4); }\n .auth.theme-one .auth-footer li:last-child {\n margin-right: 0;\n border-right: none; }\n .auth.theme-one .auth-footer li a {\n font-size: 13px;\n color: rgba(255, 255, 255, 0.4); }\n @media (max-width: 576px) {\n .auth.theme-one .auth-footer {\n justify-content: center; } }\n\n.auth.theme-one .footer-text {\n color: rgba(255, 255, 255, 0.4); }\n\n.auth.theme-two .auto-form-wrapper {\n position: relative;\n height: 100vh;\n min-height: 100vh;\n max-height: 100vh;\n padding: 110px 5% 5%;\n border-radius: 4px; }\n @media (max-width: 576px) {\n .auth.theme-two .auto-form-wrapper {\n padding: 11% 15px;\n text-align: center;\n height: 100%;\n max-height: 100%; } }\n .auth.theme-two .auto-form-wrapper .nav-get-started {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n position: absolute;\n top: 30px;\n right: 30px; }\n @media (max-width: 576px) {\n .auth.theme-two .auto-form-wrapper .nav-get-started {\n margin-bottom: 5%;\n margin-right: auto;\n margin-left: auto;\n position: relative;\n top: unset;\n right: unset;\n justify-content: center; } }\n .auth.theme-two .auto-form-wrapper .nav-get-started p {\n margin-bottom: 0;\n font-weight: 300; }\n .auth.theme-two .auto-form-wrapper .nav-get-started .get-started-btn {\n border: 1px solid #f2f2f2;\n padding: 10px 20px;\n font-size: 12px;\n font-weight: 600;\n color: #000;\n margin-left: 20px;\n border-radius: 50px; }\n .auth.theme-two .auto-form-wrapper form {\n width: 50%;\n min-width: 300px;\n max-width: 480px; }\n .auth.theme-two .auto-form-wrapper form .form-group {\n width: 100%;\n margin-bottom: 25px; }\n @media (max-width: 576px) {\n .auth.theme-two .auto-form-wrapper form .form-group {\n margin-right: auto;\n margin-left: auto; } }\n .auth.theme-two .auto-form-wrapper form .form-group .input-group, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap {\n height: 44px; }\n .auth.theme-two .auto-form-wrapper form .form-group .input-group .form-control, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .form-control, .auth.theme-two .auto-form-wrapper form .form-group .input-group .asColorPicker-input, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .asColorPicker-input, .auth.theme-two .auto-form-wrapper form .form-group .input-group .dataTables_wrapper select, .dataTables_wrapper .auth.theme-two .auto-form-wrapper form .form-group .input-group select, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .dataTables_wrapper select, .dataTables_wrapper .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap select, .auth.theme-two .auto-form-wrapper form .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .input-group input[type=text], .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap input[type=text], .auth.theme-two .auto-form-wrapper form .form-group .input-group\n .jsgrid .jsgrid-table .jsgrid-filter-row select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .input-group select, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap\n .jsgrid .jsgrid-table .jsgrid-filter-row select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap select, .auth.theme-two .auto-form-wrapper form .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .input-group input[type=number], .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap input[type=number], .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-container--default .select2-selection--single, .select2-container--default .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-selection--single, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single, .select2-container--default .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-selection--single, .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-search__field, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-search__field, .auth.theme-two .auto-form-wrapper form .form-group .input-group .tt-hint, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .tt-hint, .auth.theme-two .auto-form-wrapper form .form-group .input-group\n .tt-query, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap\n .tt-query, .auth.theme-two .auto-form-wrapper form .form-group .input-group\n .typeahead, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap\n .typeahead {\n border: 1px solid #e5e5e5;\n border-left: none;\n border-radius: 0 6px 6px 0; }\n .auth.theme-two .auto-form-wrapper form .form-group .input-group .form-control:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .form-control:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .asColorPicker-input:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .asColorPicker-input:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .dataTables_wrapper select:focus, .dataTables_wrapper .auth.theme-two .auto-form-wrapper form .form-group .input-group select:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .dataTables_wrapper select:focus, .dataTables_wrapper .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap select:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .input-group input[type=text]:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap input[type=text]:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group\n .jsgrid .jsgrid-table .jsgrid-filter-row select:focus,\n .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .input-group select:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap\n .jsgrid .jsgrid-table .jsgrid-filter-row select:focus,\n .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap select:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .input-group input[type=number]:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number]:focus, .jsgrid .jsgrid-table .jsgrid-filter-row .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap input[type=number]:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-container--default .select2-selection--single:focus, .select2-container--default .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-selection--single:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single:focus, .select2-container--default .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-selection--single:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-container--default .select2-selection--single .select2-search__field:focus, .select2-container--default .select2-selection--single .auth.theme-two .auto-form-wrapper form .form-group .input-group .select2-search__field:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-container--default .select2-selection--single .select2-search__field:focus, .select2-container--default .select2-selection--single .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .select2-search__field:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group .tt-hint:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .tt-hint:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group\n .tt-query:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap\n .tt-query:focus, .auth.theme-two .auto-form-wrapper form .form-group .input-group\n .typeahead:focus, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap\n .typeahead:focus {\n border-left: none;\n border-color: #e5e5e5; }\n .auth.theme-two .auto-form-wrapper form .form-group .input-group .input-group-prepend .input-group-text, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .input-group-prepend .input-group-text, .auth.theme-two .auto-form-wrapper form .form-group .input-group .asColorPicker-trigger .input-group-text, .auth.theme-two .auto-form-wrapper form .form-group .asColorPicker-wrap .asColorPicker-trigger .input-group-text {\n border-radius: 6px 0 0 6px;\n border-color: #e5e5e5;\n border-right: none;\n color: #dfdfdf; }\n .auth.theme-two .auto-form-wrapper form .form-group .submit-btn {\n font-family: \"Poppins\", sans-serif;\n font-size: 13px;\n padding: 11px 33px;\n font-weight: 600;\n background-image: linear-gradient(120deg, #556cdc, #128bfc, #18bef1); }\n .auth.theme-two .auto-form-wrapper .footer-text {\n font-size: 13px;\n margin-bottom: 0; }\n .auth.theme-two .auto-form-wrapper .auth-footer {\n list-style-type: none;\n display: flex;\n margin-top: 7px;\n padding-left: 0;\n margin-bottom: 0; }\n .auth.theme-two .auto-form-wrapper .auth-footer li {\n margin-right: 10px;\n line-height: 1;\n padding-right: 10px;\n border-right: 1px solid #858585; }\n .auth.theme-two .auto-form-wrapper .auth-footer li:last-child {\n margin-right: 0;\n border-right: none; }\n .auth.theme-two .auto-form-wrapper .auth-footer li a {\n font-size: 13px;\n color: #858585; }\n @media (max-width: 576px) {\n .auth.theme-two .auto-form-wrapper .auth-footer {\n justify-content: center; } }\n\n.auth.theme-two .banner-section {\n padding-right: 0; }\n .auth.theme-two .banner-section .slide-content {\n width: 100%; }\n .auth.theme-two .banner-section .slide-content.bg-1 {\n background: url(\"../../images/auth/login_2.jpg\") no-repeat center center;\n background-size: cover; }\n .auth.theme-two .banner-section .slide-content.bg-2 {\n background: url(\"../../images/auth/register_2.jpg\") no-repeat center center;\n background-size: cover; }\n\n/* Error */\n.error-page h1 {\n font-size: 9.375rem;\n line-height: 1; }\n @media (max-width: 991px) {\n .error-page h1 {\n font-size: 8rem; } }\n\n.error-page h2 {\n font-size: 4.375rem;\n line-height: 1; }\n\n@media (min-width: 992px) {\n .error-page .error-page-divider {\n border-left: 3px solid rgba(255, 255, 255, 0.2); } }\n\n/* Landing */\n.landing-page .navbar {\n padding: 2rem 0;\n box-shadow: none;\n -webkit-box-shadow: none; }\n .landing-page .navbar .navbar-brand img {\n width: 145px; }\n @media (max-width: 991px) {\n .landing-page .navbar .navbar-collapse {\n display: block; } }\n .landing-page .navbar .navbar-collapse.collapse {\n display: none; }\n .landing-page .navbar .navbar-collapse.show {\n display: block; }\n .landing-page .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {\n color: #ffffff;\n padding-left: 1rem;\n padding-right: 1rem;\n font-size: 0.9375rem;\n font-family: \"Poppins\", sans-serif;\n text-align: left; }\n @media (min-width: 992px) {\n .landing-page .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {\n margin-left: 1rem;\n margin-right: 1rem; }\n .landing-page .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:first-child {\n margin-left: 0; }\n .landing-page .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:last-child {\n margin-right: 0; } }\n\n.landing-page .top-banner {\n background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1); }\n .landing-page .top-banner .demo-image img {\n max-width: 500px; }\n @media (min-width: 992px) {\n .landing-page .top-banner .demo-image img {\n position: absolute;\n left: -80px; } }\n @media (max-width: 991px) {\n .landing-page .top-banner .demo-image img {\n margin-top: 1rem;\n max-width: 100%; } }\n .landing-page .top-banner .top-banner-content {\n padding-top: 80px;\n padding-bottom: 120px; }\n\n.landing-page .middle-section {\n padding-top: 120px;\n padding-bottom: 80px;\n text-align: center;\n color: #000; }\n .landing-page .middle-section .card {\n background: #ffffff;\n border-radius: 10px;\n box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);\n transition: box-shadow 0.5s ease; }\n .landing-page .middle-section .card:hover {\n box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.05); }\n .landing-page .middle-section .card.card-icon-top {\n position: relative; }\n .landing-page .middle-section .card.card-icon-top .card-body {\n padding: 3rem; }\n .landing-page .middle-section .card.card-icon-top .card-icon {\n position: absolute;\n width: 65px;\n height: 65px;\n top: -30px;\n left: calc(50% - 30px); }\n .landing-page .middle-section .card.card-item-preview {\n position: relative; }\n .landing-page .middle-section .card.card-item-preview .badge {\n position: absolute;\n top: -25px;\n right: -35px;\n width: 65px;\n height: 65px;\n padding: 1rem;\n border-radius: 50%;\n line-height: 32px;\n font-size: 1rem; }\n .landing-page .middle-section .card.card-item-preview .card-img-top {\n border-top-left-radius: 10px;\n border-top-right-radius: 10px; }\n\n.landing-page .bottom-section {\n color: #000;\n text-align: center;\n padding-top: 80px; }\n\n.landing-page .feature-list {\n margin-top: 100px;\n margin-bottom: 100px; }\n @media (min-width: 992px) {\n .landing-page .feature-list .feature-list-row:first-child {\n border-bottom: 1px solid #f4f4f4; } }\n .landing-page .feature-list .feature-list-row .feature-list-item {\n padding-top: 1rem;\n padding-bottom: 2rem; }\n .landing-page .feature-list .feature-list-row .feature-list-item i {\n display: block;\n font-size: 1.875rem;\n margin-bottom: 2rem; }\n @media (min-width: 992px) {\n .landing-page .feature-list .feature-list-row .feature-list-item {\n border-right: 1px solid #f4f4f4; }\n .landing-page .feature-list .feature-list-row .feature-list-item:last-child {\n border-right: 0; } }\n .landing-page .feature-list .feature-list-row .feature-list-item .feature-description {\n font-family: \"Poppins\", sans-serif; }\n\n.landing-page .footer {\n background: linear-gradient(120deg, #556cdc, #128bfc, #18bef1);\n margin: 0;\n width: 100%;\n padding: 80px 0 0; }\n .landing-page .footer .footer-top {\n border-bottom: 1px solid rgba(255, 255, 255, 0.2); }\n .landing-page .footer .footer-top .brand-logo {\n width: 145px; }\n .landing-page .footer .footer-top .footer-social-icons {\n margin-top: 3rem; }\n .landing-page .footer .footer-top .footer-social-icons i {\n width: 43px;\n height: 43px;\n font-size: 1rem;\n border-radius: 100%;\n text-align: center;\n line-height: 43px;\n margin-right: 0.5rem; }\n .landing-page .footer .footer-top .contact-details i {\n font-size: 1.25rem;\n font-weight: 500; }\n .landing-page .footer .footer-top .nav .nav-item .nav-link {\n color: #ffffff;\n border-right: 1px solid #f2f2f2;\n padding-top: 0;\n padding-bottom: 0;\n font-size: 0.9375rem;\n font-family: \"Poppins\", sans-serif;\n line-height: 1; }\n .landing-page .footer .footer-top .nav .nav-item:last-child .nav-link {\n border-right: 0; }\n .landing-page .footer .footer-top .nav .nav-item:first-child .nav-link {\n padding-left: 0; }\n .landing-page .footer .footer-top .form-control, .landing-page .footer .footer-top .asColorPicker-input, .landing-page .footer .footer-top .dataTables_wrapper select, .dataTables_wrapper .landing-page .footer .footer-top select, .landing-page .footer .footer-top .jsgrid .jsgrid-table .jsgrid-filter-row input[type=text], .jsgrid .jsgrid-table .jsgrid-filter-row .landing-page .footer .footer-top input[type=text], .landing-page .footer .footer-top\n .jsgrid .jsgrid-table .jsgrid-filter-row select,\n .jsgrid .jsgrid-table .jsgrid-filter-row .landing-page .footer .footer-top select, .landing-page .footer .footer-top .jsgrid .jsgrid-table .jsgrid-filter-row input[type=number], .jsgrid .jsgrid-table .jsgrid-filter-row .landing-page .footer .footer-top input[type=number], .landing-page .footer .footer-top .select2-container--default .select2-selection--single, .select2-container--default .landing-page .footer .footer-top .select2-selection--single, .landing-page .footer .footer-top .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .landing-page .footer .footer-top .select2-search__field, .landing-page .footer .footer-top .tt-hint, .landing-page .footer .footer-top\n .tt-query, .landing-page .footer .footer-top\n .typeahead {\n background: rgba(0, 0, 0, 0.3);\n border: none;\n border-radius: 1.25rem;\n padding-top: 0.75rem;\n padding-bottom: 0.75rem; }\n .landing-page .footer .footer-bottom {\n color: #ffffff;\n font-family: \"Poppins\", sans-serif; }\n\n.profile-page .profile-header {\n width: 100%;\n background: url(\"../../images/samples/profile_page/profile_header_banner.jpg\") no-repeat center center;\n background-size: cover;\n padding: 60px 0;\n border-radius: 5px; }\n .profile-page .profile-header .profile-info .profile-user-name {\n margin-bottom: 0;\n font-family: \"Poppins\", sans-serif;\n font-weight: 600; }\n .profile-page .profile-header .profile-info .profile-user-designation {\n margin-bottom: 0;\n font-family: \"Poppins\", sans-serif; }\n .profile-page .profile-header .profile-info .br-wrapper {\n padding-left: 15px; }\n .profile-page .profile-header .profile-info .br-wrapper .br-widget {\n height: auto;\n transform: translateY(-5px); }\n .profile-page .profile-header .profile-info .br-wrapper .br-widget a {\n font-size: 18px;\n margin-right: 0; }\n .profile-page .profile-header .details {\n display: flex;\n align-items: center; }\n .profile-page .profile-header .details .detail-col {\n padding-right: 20%;\n border-right: 1px solid rgba(242, 242, 242, 0.3);\n margin-right: 20%; }\n .profile-page .profile-header .details .detail-col:last-child {\n border-right: none;\n margin-right: 0; }\n .profile-page .profile-header .details .detail-col p {\n margin-bottom: 0;\n font-weight: 400; }\n .profile-page .profile-header .details .detail-col p:first-child {\n font-weight: 700; }\n\n.profile-page .profile-body {\n padding-top: 50px; }\n .profile-page .profile-body .tab-switch {\n border-bottom: 1px solid #f2f2f2; }\n .profile-page .profile-body .tab-switch .nav-item .nav-link {\n color: #858585;\n font-size: 1rem;\n padding-bottom: 1.2rem;\n font-weight: 600;\n border-bottom: 3px solid #ffffff;\n transition-duration: 0.4s;\n transition-timing-function: ease-in;\n transition-property: color, border-color; }\n .profile-page .profile-body .tab-switch .nav-item .nav-link.active {\n color: #000;\n border-bottom: 3px solid #2196f3; }\n .profile-page .profile-body .tab-body {\n border: none;\n padding: 10px 0; }\n .profile-page .profile-body .tab-body .stages {\n position: relative; }\n .profile-page .profile-body .tab-body .stages .stage-badge {\n position: absolute;\n top: 0;\n left: -20px; }\n .profile-page .profile-body .tab-body .stages .file-icon-wrapper {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap; }\n .profile-page .profile-body .tab-body .stages .file-icon-wrapper .file-icon {\n height: 77px;\n width: 69px;\n padding: 5px;\n margin-right: 25px;\n display: flex;\n align-items: center;\n justify-content: center; }\n .profile-page .profile-body .tab-body .stages .file-icon-wrapper .file-icon i {\n font-size: 43px;\n margin-right: 0; }\n\n/*-------------------------------------------------------------------*/\n","// Hover mixin and `$enable-hover-media-query` are deprecated.\n//\n// Originally added during our alphas and maintained during betas, this mixin was\n// designed to prevent `:hover` stickiness on iOS-an issue where hover styles\n// would persist after initial touch.\n//\n// For backward compatibility, we've kept these mixins and updated them to\n// always return their regular pseudo-classes instead of a shimmed media query.\n//\n// Issue: https://github.com/twbs/bootstrap/issues/25195\n\n@mixin hover {\n &:hover { @content; }\n}\n\n@mixin hover-focus {\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin plain-hover-focus {\n &,\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin hover-focus-active {\n &:hover,\n &:focus,\n &:active {\n @content;\n }\n}\n","// stylelint-disable declaration-no-important, selector-list-comma-newline-after\n\n//\n// Headings\n//\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1, .h1 { font-size: $h1-font-size; }\nh2, .h2 { font-size: $h2-font-size; }\nh3, .h3 { font-size: $h3-font-size; }\nh4, .h4 { font-size: $h4-font-size; }\nh5, .h5 { font-size: $h5-font-size; }\nh6, .h6 { font-size: $h6-font-size; }\n\n.lead {\n font-size: $lead-font-size;\n font-weight: $lead-font-weight;\n}\n\n// Type display classes\n.display-1 {\n font-size: $display1-size;\n font-weight: $display1-weight;\n line-height: $display-line-height;\n}\n.display-2 {\n font-size: $display2-size;\n font-weight: $display2-weight;\n line-height: $display-line-height;\n}\n.display-3 {\n font-size: $display3-size;\n font-weight: $display3-weight;\n line-height: $display-line-height;\n}\n.display-4 {\n font-size: $display4-size;\n font-weight: $display4-weight;\n line-height: $display-line-height;\n}\n\n\n//\n// Horizontal rules\n//\n\nhr {\n margin-top: $hr-margin-y;\n margin-bottom: $hr-margin-y;\n border: 0;\n border-top: $hr-border-width solid $hr-border-color;\n}\n\n\n//\n// Emphasis\n//\n\nsmall,\n.small {\n font-size: $small-font-size;\n font-weight: $font-weight-normal;\n}\n\nmark,\n.mark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n//\n// Lists\n//\n\n.list-unstyled {\n @include list-unstyled;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n @include list-unstyled;\n}\n.list-inline-item {\n display: inline-block;\n\n &:not(:last-child) {\n margin-right: $list-inline-padding;\n }\n}\n\n\n//\n// Misc\n//\n\n// Builds on `abbr`\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n// Blockquotes\n.blockquote {\n margin-bottom: $spacer;\n font-size: $blockquote-font-size;\n}\n\n.blockquote-footer {\n display: block;\n font-size: 80%; // back to default font-size\n color: $blockquote-small-color;\n\n &::before {\n content: \"\\2014 \\00A0\"; // em dash, nbsp\n }\n}\n","// Lists\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n@mixin list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n","// Responsive images (ensure images don't scale beyond their parents)\n//\n// This is purposefully opt-in via an explicit class rather than being the default for all ``s.\n// We previously tried the \"images are responsive by default\" approach in Bootstrap v2,\n// and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps)\n// which weren't expecting the images within themselves to be involuntarily resized.\n// See also https://github.com/twbs/bootstrap/issues/18178\n.img-fluid {\n @include img-fluid;\n}\n\n\n// Image thumbnails\n.img-thumbnail {\n padding: $thumbnail-padding;\n background-color: $thumbnail-bg;\n border: $thumbnail-border-width solid $thumbnail-border-color;\n @include border-radius($thumbnail-border-radius);\n @include box-shadow($thumbnail-box-shadow);\n\n // Keep them at most 100% wide\n @include img-fluid;\n}\n\n//\n// Figures\n//\n\n.figure {\n // Ensures the caption's text aligns with the image.\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: ($spacer / 2);\n line-height: 1;\n}\n\n.figure-caption {\n font-size: $figure-caption-font-size;\n color: $figure-caption-color;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n@mixin img-fluid {\n // Part 1: Set a maximum relative to the parent\n max-width: 100%;\n // Part 2: Override the height to auto, otherwise images will be stretched\n // when setting a width and height attribute on the img element.\n height: auto;\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size.\n\n// stylelint-disable indentation, media-query-list-comma-newline-after\n@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {\n background-image: url($file-1x);\n\n // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,\n // but doesn't convert dppx=>dpi.\n // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.\n // Compatibility info: https://caniuse.com/#feat=css-media-resolution\n @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx\n only screen and (min-resolution: 2dppx) { // Standardized\n background-image: url($file-2x);\n background-size: $width-1x $height-1x;\n }\n}\n","// Single side border-radius\n\n@mixin border-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-radius: $radius;\n }\n}\n\n@mixin border-top-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n border-top-right-radius: $radius;\n }\n}\n\n@mixin border-right-radius($radius) {\n @if $enable-rounded {\n border-top-right-radius: $radius;\n border-bottom-right-radius: $radius;\n }\n}\n\n@mixin border-bottom-radius($radius) {\n @if $enable-rounded {\n border-bottom-right-radius: $radius;\n border-bottom-left-radius: $radius;\n }\n}\n\n@mixin border-left-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n border-bottom-left-radius: $radius;\n }\n}\n","// Inline code\ncode {\n font-size: $code-font-size;\n color: $code-color;\n word-break: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n font-size: $kbd-font-size;\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n @include box-shadow($kbd-box-shadow);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: $nested-kbd-font-weight;\n @include box-shadow(none);\n }\n}\n\n// Blocks of code\npre {\n display: block;\n font-size: $code-font-size;\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: $pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n .container {\n @include make-container();\n @include make-container-max-widths();\n }\n}\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but with 100% width for\n// fluid, full width layouts.\n\n@if $enable-grid-classes {\n .container-fluid {\n @include make-container();\n }\n}\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n }\n\n // Remove the negative margin from default .row, then the horizontal padding\n // from all immediate children columns (to prevent runaway style inheritance).\n .no-gutters {\n margin-right: 0;\n margin-left: 0;\n\n > .col,\n > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n }\n }\n}\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","/// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-container() {\n width: 100%;\n padding-right: ($grid-gutter-width / 2);\n padding-left: ($grid-gutter-width / 2);\n margin-right: auto;\n margin-left: auto;\n}\n\n\n// For each breakpoint, define the maximum width of the container in a media query\n@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {\n @each $breakpoint, $container-max-width in $max-widths {\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n max-width: $container-max-width;\n }\n }\n}\n\n@mixin make-row() {\n display: flex;\n flex-wrap: wrap;\n margin-right: ($grid-gutter-width / -2);\n margin-left: ($grid-gutter-width / -2);\n}\n\n@mixin make-col-ready() {\n position: relative;\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we use `flex` values\n // later on to override this initial width.\n width: 100%;\n min-height: 1px; // Prevent collapsing\n padding-right: ($grid-gutter-width / 2);\n padding-left: ($grid-gutter-width / 2);\n}\n\n@mixin make-col($size, $columns: $grid-columns) {\n flex: 0 0 percentage($size / $columns);\n // Add a `max-width` to ensure content within each column does not blow out\n // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari\n // do not appear to require this.\n max-width: percentage($size / $columns);\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: $size / $columns;\n margin-left: if($num == 0, 0, percentage($num));\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width. Null for the largest (last) breakpoint.\n// The maximum value is calculated as the minimum of the next one less 0.02px\n// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $next: breakpoint-next($name, $breakpoints);\n @return if($next, breakpoint-min($next, $breakpoints) - .02px, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $max: breakpoint-max($name, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($name, $breakpoints) {\n @content;\n }\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n // Common properties for all breakpoints\n %grid-column {\n position: relative;\n width: 100%;\n min-height: 1px; // Prevent columns from collapsing when empty\n padding-right: ($gutter / 2);\n padding-left: ($gutter / 2);\n }\n\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n // Allow columns to stretch full width below their breakpoints\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @extend %grid-column;\n }\n }\n .col#{$infix},\n .col#{$infix}-auto {\n @extend %grid-column;\n }\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col#{$infix}-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none; // Reset earlier grid tiers\n }\n\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n .order#{$infix}-first { order: -1; }\n\n .order#{$infix}-last { order: $columns + 1; }\n\n @for $i from 0 through $columns {\n .order#{$infix}-#{$i} { order: $i; }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n }\n}\n","//\n// Basic Bootstrap table\n//\n\n.table {\n width: 100%;\n margin-bottom: $spacer;\n background-color: $table-bg; // Reset for nesting within parents with `background-color`.\n\n th,\n td {\n padding: $table-cell-padding;\n vertical-align: top;\n border-top: $table-border-width solid $table-border-color;\n }\n\n thead th {\n vertical-align: bottom;\n border-bottom: (2 * $table-border-width) solid $table-border-color;\n }\n\n tbody + tbody {\n border-top: (2 * $table-border-width) solid $table-border-color;\n }\n\n .table {\n background-color: $body-bg;\n }\n}\n\n\n//\n// Condensed table w/ half padding\n//\n\n.table-sm {\n th,\n td {\n padding: $table-cell-padding-sm;\n }\n}\n\n\n// Border versions\n//\n// Add or remove borders all around the table and between all the columns.\n\n.table-bordered {\n border: $table-border-width solid $table-border-color;\n\n th,\n td {\n border: $table-border-width solid $table-border-color;\n }\n\n thead {\n th,\n td {\n border-bottom-width: (2 * $table-border-width);\n }\n }\n}\n\n.table-borderless {\n th,\n td,\n thead th,\n tbody + tbody {\n border: 0;\n }\n}\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n tbody tr:nth-of-type(#{$table-striped-order}) {\n background-color: $table-accent-bg;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n tbody tr {\n @include hover {\n background-color: $table-hover-bg;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n@each $color, $value in $theme-colors {\n @include table-row-variant($color, theme-color-level($color, -9));\n}\n\n@include table-row-variant(active, $table-active-bg);\n\n\n// Dark styles\n//\n// Same table markup, but inverted color scheme: dark background and light text.\n\n// stylelint-disable-next-line no-duplicate-selectors\n.table {\n .thead-dark {\n th {\n color: $table-dark-color;\n background-color: $table-dark-bg;\n border-color: $table-dark-border-color;\n }\n }\n\n .thead-light {\n th {\n color: $table-head-color;\n background-color: $table-head-bg;\n border-color: $table-border-color;\n }\n }\n}\n\n.table-dark {\n color: $table-dark-color;\n background-color: $table-dark-bg;\n\n th,\n td,\n thead th {\n border-color: $table-dark-border-color;\n }\n\n &.table-bordered {\n border: 0;\n }\n\n &.table-striped {\n tbody tr:nth-of-type(odd) {\n background-color: $table-dark-accent-bg;\n }\n }\n\n &.table-hover {\n tbody tr {\n @include hover {\n background-color: $table-dark-hover-bg;\n }\n }\n }\n}\n\n\n// Responsive tables\n//\n// Generate series of `.table-responsive-*` classes for configuring the screen\n// size of where your table will overflow.\n\n.table-responsive {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $next: breakpoint-next($breakpoint, $grid-breakpoints);\n $infix: breakpoint-infix($next, $grid-breakpoints);\n\n &#{$infix} {\n @include media-breakpoint-down($breakpoint) {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057\n\n // Prevent double border on horizontal scroll due to use of `display: block;`\n > .table-bordered {\n border: 0;\n }\n }\n }\n }\n}\n","// Tables\n\n@mixin table-row-variant($state, $background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table-#{$state} {\n &,\n > th,\n > td {\n background-color: $background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover {\n $hover-background: darken($background, 5%);\n\n .table-#{$state} {\n @include hover {\n background-color: $hover-background;\n\n > td,\n > th {\n background-color: $hover-background;\n }\n }\n }\n }\n}\n","// Bootstrap functions\n//\n// Utility mixins and functions for evaluating source code across our variables, maps, and mixins.\n\n// Ascending\n// Used to evaluate Sass maps like our grid breakpoints.\n@mixin _assert-ascending($map, $map-name) {\n $prev-key: null;\n $prev-num: null;\n @each $key, $num in $map {\n @if $prev-num == null {\n // Do nothing\n } @else if not comparable($prev-num, $num) {\n @warn \"Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !\";\n } @else if $prev-num >= $num {\n @warn \"Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !\";\n }\n $prev-key: $key;\n $prev-num: $num;\n }\n}\n\n// Starts at zero\n// Another grid mixin that ensures the min-width of the lowest breakpoint starts at 0.\n@mixin _assert-starts-at-zero($map) {\n $values: map-values($map);\n $first-value: nth($values, 1);\n @if $first-value != 0 {\n @warn \"First breakpoint in `$grid-breakpoints` must start at 0, but starts at #{$first-value}.\";\n }\n}\n\n// Replace `$search` with `$replace` in `$string`\n// Used on our SVG icon backgrounds for custom forms.\n//\n// @author Hugo Giraudel\n// @param {String} $string - Initial string\n// @param {String} $search - Substring to replace\n// @param {String} $replace ('') - New value\n// @return {String} - Updated string\n@function str-replace($string, $search, $replace: \"\") {\n $index: str-index($string, $search);\n\n @if $index {\n @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);\n }\n\n @return $string;\n}\n\n// Color contrast\n@function color-yiq($color) {\n $r: red($color);\n $g: green($color);\n $b: blue($color);\n\n $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;\n\n @if ($yiq >= $yiq-contrasted-threshold) {\n @return $yiq-text-dark;\n } @else {\n @return $yiq-text-light;\n }\n}\n\n// Retrieve color Sass maps\n@function color($key: \"blue\") {\n @return map-get($colors, $key);\n}\n\n@function theme-color($key: \"primary\") {\n @return map-get($theme-colors, $key);\n}\n\n@function gray($key: \"100\") {\n @return map-get($grays, $key);\n}\n\n// Request a theme color level\n@function theme-color-level($color-name: \"primary\", $level: 0) {\n $color: theme-color($color-name);\n $color-base: if($level > 0, $black, $white);\n $level: abs($level);\n\n @return mix($color-base, $color, $level * $theme-color-interval);\n}\n","// stylelint-disable selector-no-qualifying-type\n\n//\n// Textual form controls\n//\n\n.form-control {\n display: block;\n width: 100%;\n height: $input-height;\n padding: $input-padding-y $input-padding-x;\n font-size: $font-size-base;\n line-height: $input-line-height;\n color: $input-color;\n background-color: $input-bg;\n background-clip: padding-box;\n border: $input-border-width solid $input-border-color;\n\n // Note: This has no effect on `s in CSS.\n @if $enable-rounded {\n // Manually use the if/else instead of the mixin to account for iOS override\n border-radius: $input-border-radius;\n } @else {\n // Otherwise undo the iOS default\n border-radius: 0;\n }\n\n @include box-shadow($input-box-shadow);\n @include transition($input-transition);\n\n // Unstyle the caret on ` receives focus\n // in IE and (under certain conditions) Edge, as it looks bad and cannot be made to\n // match the appearance of the native widget.\n // See https://github.com/twbs/bootstrap/issues/19398.\n color: $input-color;\n background-color: $input-bg;\n }\n}\n\n// Make file inputs better match text inputs by forcing them to new lines.\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%;\n}\n\n\n//\n// Labels\n//\n\n// For use with horizontal and inline forms, when you need the label (or legend)\n// text to align with the form controls.\n.col-form-label {\n padding-top: calc(#{$input-padding-y} + #{$input-border-width});\n padding-bottom: calc(#{$input-padding-y} + #{$input-border-width});\n margin-bottom: 0; // Override the `
" + + $bookmarkIcon + + "" + + ""; + a++; + } + } + for (var i = 0; i < data.listItems.length; i++) { + if (bookmark === true) { + activeClass = ""; // resetting active bookmark class + var arrList = $("ul.nav.navbar-nav.bookmark-icons li"), + $arrList = ""; + // Loop to check if current seach value match with the bookmarks already there in navbar + for (var j = 0; j < arrList.length; j++) { + if ( + data.listItems[i].name === + arrList[j].firstChild.dataset.originalTitle + ) { + activeClass = " warning"; + } else { + activeClass = ""; + } + } + $bookmarkIcon = + ''; + } + // Search list item not start with letters and create list + if ( + !(data.listItems[i].name.toLowerCase().indexOf(value) == 0) && + data.listItems[i].name.toLowerCase().indexOf(value) > -1 && + a < 5 + ) { + if (a === 0) { + $activeItemClass = "current_item"; + } else { + $activeItemClass = ""; + } + $otherList += + '
  • ' + + '' + + '' + + "" + + data.listItems[i].name + + "" + + "" + + $bookmarkIcon + + "" + + "
  • "; + a++; + } + } + $defaultList = $(".main-search-list-defaultlist").html(); + if ($startList == "" && $otherList == "") { + $otherList = $(".main-search-list-defaultlist-other-list").html(); + } + // concatinating startlist, otherlist, defalutlist with pagelist + $htmlList = $pageList.concat($startList, $otherList, $defaultList); + $("ul.search-list").html($htmlList); + // concatinating otherlist with startlist + $bookmarkhtmlList = $startList.concat($otherList); + $("ul.search-list-bookmark").html($bookmarkhtmlList); + }); + } else { + if (bookmark === true) { + var arrList = $("ul.nav.navbar-nav.bookmark-iconss li"), + $arrList = ""; + for (var i = 0; i < arrList.length; i++) { + if (i === 0) { + $activeItemClass = "current_item"; + } else { + $activeItemClass = ""; + } + $arrList += + '
  • ' + + '' + + '' + + "" + + arrList[i].firstChild.dataset.originalTitle + + "" + + "" + + '' + + "" + + "
  • "; + } + $("ul.search-list").append($arrList); + } else { + // if search input blank, hide overlay + if (appContent.hasClass("show-overlay")) { + appContent.removeClass("show-overlay"); + } + // If filter box is empty + if (searchList.hasClass("show")) { + searchList.removeClass("show"); + } + } + } + } + }); + + // Add class on hover of the list + $(document).on("mouseenter", ".search-list li", function (e) { + $(this) + .siblings() + .removeClass("current_item"); + $(this).addClass("current_item"); + }); + $(document).on("click", ".search-list li", function (e) { + e.stopPropagation(); + }); + + $("html").on("click", function ($this) { + if (!$($this.target).hasClass("bookmark-icon")) { + if (bookmarkSearchList.hasClass("show")) { + bookmarkSearchList.removeClass("show"); + } + if (bookmarkInput.hasClass("show")) { + bookmarkInput.removeClass("show"); + } + } + }); + + // Prevent closing bookmark dropdown on input textbox click + $(document).on("click", ".bookmark-input input", function (e) { + bookmarkInput.addClass("show"); + bookmarkSearchList.addClass("show"); + }); + + // Favorite star click + $(document).on("click", ".bookmark-input .search-list .bookmark-icon", function (e) { + e.stopPropagation(); + if ($(this).hasClass("warning")) { + $(this).removeClass("warning"); + var arrList = $("ul.nav.navbar-nav.bookmark-icons li"); + for (var i = 0; i < arrList.length; i++) { + if ( + arrList[i].firstChild.dataset.originalTitle == + $(this).parent()[0].innerText + ) { + arrList[i].remove(); + } + } + e.preventDefault(); + } else { + var arrList = $("ul.nav.navbar-nav.bookmark-icons li"); + $(this).addClass("warning"); + e.preventDefault(); + var $url = $(this).parent()[0].href, + $name = $(this).parent()[0].innerText, + $icon = $(this).parent()[0].firstChild.firstChild.dataset.icon, + $listItem = "", + $listItemDropdown = ""; + $listItem = + '"; + $("ul.nav.bookmark-icons").append($listItem); + $('[data-toggle="tooltip"]').tooltip(); + } + }); + + // If we use up key(38) Down key (40) or Enter key(13) + $(window).on("keydown", function (e) { + var $current = $(".search-list li.current_item"), + $next, + $prev; + if (e.keyCode === 40) { + $next = $current.next(); + $current.removeClass("current_item"); + $current = $next.addClass("current_item"); + } else if (e.keyCode === 38) { + $prev = $current.prev(); + $current.removeClass("current_item"); + $current = $prev.addClass("current_item"); + } + + if (e.keyCode === 13 && $(".search-list li.current_item").length > 0) { + var selected_item = $(".search-list li.current_item a"); + window.location = selected_item.attr("href"); + $(selected_item).trigger("click"); + } + }); + + // Waves Effect + Waves.init(); + Waves.attach(".btn", ["waves-light"]); +})(window, document, jQuery); diff --git a/assets/js/core/app.min.js b/assets/js/core/app.min.js new file mode 100644 index 0000000..2263d1d --- /dev/null +++ b/assets/js/core/app.min.js @@ -0,0 +1 @@ +!function(i,r,f){"use strict";var c=f("html"),d=f("body"),h="#ea5455";if(f(i).on("load",function(){var e=!1;d.hasClass("menu-collapsed")&&(e=!0),f("html").data("textdirection"),setTimeout(function(){c.removeClass("loading").addClass("loaded")},1200),f.app.menu.init(e);!1===f.app.nav.initialized&&f.app.nav.init({speed:300}),Unison.on("change",function(e){f.app.menu.change()}),f('[data-toggle="tooltip"]').tooltip({container:"body"}),0',timeout:2e3,overlayCSS:{backgroundColor:a,cursor:"wait"},css:{border:0,padding:0,backgroundColor:"none"}})}),f('a[data-action="close"]').on("click",function(){f(this).closest(".card").removeClass().slideUp("fast")}),setTimeout(function(){f(".row.match-height").each(function(){f(this).find(".card").not(".card .card").matchHeight()})},500),f('.card .heading-elements a[data-action="collapse"]').on("click",function(){var e,a=f(this).closest(".card");0t?(s.css("background-color",h),n.css("color",h),n.addClass("max-limit")):(s.css("background-color","#3a50dc"),n.css("color","#4e5154"),n.removeClass("max-limit"))}(this,e),f(this).addClass("active")}),f(".content-overlay").on("click",function(){f(".search-list").removeClass("show"),f(".app-content").removeClass("show-overlay"),f(".bookmark-wrapper .bookmark-input").removeClass("show")});var l=r.getElementsByClassName("main-menu-content");0
    '+a[s].firstChild.dataset.originalTitle+'
    ';f("ul.search-list").append(t)}),s.on("click",function(){f(this);f(this).parent(".nav-search").find(".search-input").addClass("open"),k.focus(),b.find("li").remove(),g.removeClass("show")}),f(".search-input-close i").on("click",function(){f(this);var e=f(this).closest(".search-input");e.hasClass("open")&&(e.removeClass("open"),k.val(""),k.blur(),b.removeClass("show"),w.removeClass("show-overlay"))}),f(".search-list-main").length)var o=new PerfectScrollbar(".search-list-main",{wheelPropagation:!1});if(f(".search-list-bookmark").length)new PerfectScrollbar(".search-list-bookmark",{wheelPropagation:!1});f(".search-list-main").mouseenter(function(){o.update()}),k.on("keyup",function(e){if(f(this).closest(".search-list").addClass("show"),38!==e.keyCode&&40!==e.keyCode&&13!==e.keyCode){27==e.keyCode&&(w.removeClass("show-overlay"),g.find("input").val(""),g.find("input").blur(),k.val(""),k.blur(),C.removeClass("open"),C.hasClass("show")&&(f(this).removeClass("show"),C.removeClass("show")));var n=f(this).val().toLowerCase(),i="",o=!1;if(f("ul.search-list li").remove(),f(this).parent().hasClass("bookmark-input")&&(o=!0),""!=n){w.addClass("show-overlay"),g.focus()?y.addClass("show"):(b.addClass("show"),y.removeClass("show")),!1===o&&(b.addClass("show"),y.removeClass("show"));var l="",r="",c="",d="",h='
  • Pages
  • ',m="",u="",p=0;f.getJSON("..//assets/data/"+v+".json",function(e){for(var a=0;a'}0==e.listItems[a].name.toLowerCase().indexOf(n)&&p<5&&(l+='
  • '+e.listItems[a].name+"
    "+m+"
  • ",p++)}for(a=0;a'}0!=e.listItems[a].name.toLowerCase().indexOf(n)&&-1
    '+e.listItems[a].name+"
    "+m+"
    ",p++)}u=f(".main-search-list-defaultlist").html(),""==l&&""==r&&(r=f(".main-search-list-defaultlist-other-list").html()),c=h.concat(l,r,u),f("ul.search-list").html(c),d=l.concat(r),f("ul.search-list-bookmark").html(d)})}else if(!0===o){for(var a=f("ul.nav.navbar-nav.bookmark-iconss li"),t="",s=0;s
    '+a[s].firstChild.dataset.originalTitle+'
    ';f("ul.search-list").append(t)}else w.hasClass("show-overlay")&&w.removeClass("show-overlay"),b.hasClass("show")&&b.removeClass("show")}}),f(r).on("mouseenter",".search-list li",function(e){f(this).siblings().removeClass("current_item"),f(this).addClass("current_item")}),f(r).on("click",".search-list li",function(e){e.stopPropagation()}),f("html").on("click",function(e){f(e.target).hasClass("bookmark-icon")||(y.hasClass("show")&&y.removeClass("show"),g.hasClass("show")&&g.removeClass("show"))}),f(r).on("click",".bookmark-input input",function(e){g.addClass("show"),y.addClass("show")}),f(r).on("click",".bookmark-input .search-list .bookmark-icon",function(e){if(e.stopPropagation(),f(this).hasClass("warning")){f(this).removeClass("warning");for(var a=f("ul.nav.navbar-nav.bookmark-icons li"),t=0;t',f("ul.nav.bookmark-icons").append(s),f('[data-toggle="tooltip"]').tooltip()}}),f(i).on("keydown",function(e){var a,t,s=f(".search-list li.current_item");if(40===e.keyCode?(a=s.next(),s.removeClass("current_item"),s=a.addClass("current_item")):38===e.keyCode&&(t=s.prev(),s.removeClass("current_item"),s=t.addClass("current_item")),13===e.keyCode&&0this._items.length-1||t<0))if(this._isSliding)P(this._element).one(Q.SLID,function(){return e.to(t)});else{if(n===t)return this.pause(),void this.cycle();var i=ndocument.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right
    ',trigger:"hover focus",title:"",delay:0,html:!(Ie={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"}),selector:!(Se={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)"}),placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent"},we="out",Ne={HIDE:"hide"+Ee,HIDDEN:"hidden"+Ee,SHOW:(De="show")+Ee,SHOWN:"shown"+Ee,INSERTED:"inserted"+Ee,CLICK:"click"+Ee,FOCUSIN:"focusin"+Ee,FOCUSOUT:"focusout"+Ee,MOUSEENTER:"mouseenter"+Ee,MOUSELEAVE:"mouseleave"+Ee},Oe="fade",ke="show",Pe=".tooltip-inner",je=".arrow",He="hover",Le="focus",Re="click",xe="manual",We=function(){function i(t,e){if("undefined"==typeof h)throw new TypeError("Bootstrap tooltips require Popper.js (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var t=i.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=pe(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),pe(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(pe(this.getTipElement()).hasClass(ke))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),pe.removeData(this.element,this.constructor.DATA_KEY),pe(this.element).off(this.constructor.EVENT_KEY),pe(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&pe(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,(this._activeTrigger=null)!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if("none"===pe(this.element).css("display"))throw new Error("Please use show on visible elements");var t=pe.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){pe(this.element).trigger(t);var n=pe.contains(this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!n)return;var i=this.getTipElement(),r=Fn.getUID(this.constructor.NAME);i.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&pe(i).addClass(Oe);var o="function"==typeof this.config.placement?this.config.placement.call(this,i,this.element):this.config.placement,s=this._getAttachment(o);this.addAttachmentClass(s);var a=!1===this.config.container?document.body:pe(document).find(this.config.container);pe(i).data(this.constructor.DATA_KEY,this),pe.contains(this.element.ownerDocument.documentElement,this.tip)||pe(i).appendTo(a),pe(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new h(this.element,i,{placement:s,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:je},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){e._handlePopperPlacementChange(t)}}),pe(i).addClass(ke),"ontouchstart"in document.documentElement&&pe(document.body).children().on("mouseover",null,pe.noop);var l=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,pe(e.element).trigger(e.constructor.Event.SHOWN),t===we&&e._leave(null,e)};if(pe(this.tip).hasClass(Oe)){var c=Fn.getTransitionDurationFromElement(this.tip);pe(this.tip).one(Fn.TRANSITION_END,l).emulateTransitionEnd(c)}else l()}},t.hide=function(t){var e=this,n=this.getTipElement(),i=pe.Event(this.constructor.Event.HIDE),r=function(){e._hoverState!==De&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),pe(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(pe(this.element).trigger(i),!i.isDefaultPrevented()){if(pe(n).removeClass(ke),"ontouchstart"in document.documentElement&&pe(document.body).children().off("mouseover",null,pe.noop),this._activeTrigger[Re]=!1,this._activeTrigger[Le]=!1,this._activeTrigger[He]=!1,pe(this.tip).hasClass(Oe)){var o=Fn.getTransitionDurationFromElement(n);pe(n).one(Fn.TRANSITION_END,r).emulateTransitionEnd(o)}else r();this._hoverState=""}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return Boolean(this.getTitle())},t.addAttachmentClass=function(t){pe(this.getTipElement()).addClass(Te+"-"+t)},t.getTipElement=function(){return this.tip=this.tip||pe(this.config.template)[0],this.tip},t.setContent=function(){var t=this.getTipElement();this.setElementContent(pe(t.querySelectorAll(Pe)),this.getTitle()),pe(t).removeClass(Oe+" "+ke)},t.setElementContent=function(t,e){var n=this.config.html;"object"==typeof e&&(e.nodeType||e.jquery)?n?pe(e).parent().is(t)||t.empty().append(e):t.text(pe(e).text()):t[n?"html":"text"](e)},t.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},t._getAttachment=function(t){return Ie[t.toUpperCase()]},t._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(t){if("click"===t)pe(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(t){return i.toggle(t)});else if(t!==xe){var e=t===He?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=t===He?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;pe(i.element).on(e,i.config.selector,function(t){return i._enter(t)}).on(n,i.config.selector,function(t){return i._leave(t)})}pe(i.element).closest(".modal").on("hide.bs.modal",function(){return i.hide()})}),this.config.selector?this.config=l({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},t._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},t._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||pe(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),pe(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Le:He]=!0),pe(e.getTipElement()).hasClass(ke)||e._hoverState===De?e._hoverState=De:(clearTimeout(e._timeout),e._hoverState=De,e.config.delay&&e.config.delay.show?e._timeout=setTimeout(function(){e._hoverState===De&&e.show()},e.config.delay.show):e.show())},t._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||pe(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),pe(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Le:He]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=we,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(function(){e._hoverState===we&&e.hide()},e.config.delay.hide):e.hide())},t._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},t._getConfig=function(t){return"number"==typeof(t=l({},this.constructor.Default,pe(this.element).data(),"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),Fn.typeCheckConfig(ve,t,this.constructor.DefaultType),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},t._cleanTipClass=function(){var t=pe(this.getTipElement()),e=t.attr("class").match(be);null!==e&&e.length&&t.removeClass(e.join(""))},t._handlePopperPlacementChange=function(t){var e=t.instance;this.tip=e.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},t._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(pe(t).removeClass(Oe),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},i._jQueryInterface=function(n){return this.each(function(){var t=pe(this).data(ye),e="object"==typeof n&&n;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),pe(this).data(ye,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.1.3"}},{key:"Default",get:function(){return Ae}},{key:"NAME",get:function(){return ve}},{key:"DATA_KEY",get:function(){return ye}},{key:"Event",get:function(){return Ne}},{key:"EVENT_KEY",get:function(){return Ee}},{key:"DefaultType",get:function(){return Se}}]),i}(),pe.fn[ve]=We._jQueryInterface,pe.fn[ve].Constructor=We,pe.fn[ve].noConflict=function(){return pe.fn[ve]=Ce,We._jQueryInterface},We),Jn=(qe="popover",Ke="."+(Fe="bs.popover"),Me=(Ue=e).fn[qe],Qe="bs-popover",Be=new RegExp("(^|\\s)"+Qe+"\\S+","g"),Ve=l({},zn.Default,{placement:"right",trigger:"click",content:"",template:''}),Ye=l({},zn.DefaultType,{content:"(string|element|function)"}),ze="fade",Ze=".popover-header",Ge=".popover-body",$e={HIDE:"hide"+Ke,HIDDEN:"hidden"+Ke,SHOW:(Je="show")+Ke,SHOWN:"shown"+Ke,INSERTED:"inserted"+Ke,CLICK:"click"+Ke,FOCUSIN:"focusin"+Ke,FOCUSOUT:"focusout"+Ke,MOUSEENTER:"mouseenter"+Ke,MOUSELEAVE:"mouseleave"+Ke},Xe=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),(e.prototype.constructor=e).__proto__=n;var r=i.prototype;return r.isWithContent=function(){return this.getTitle()||this._getContent()},r.addAttachmentClass=function(t){Ue(this.getTipElement()).addClass(Qe+"-"+t)},r.getTipElement=function(){return this.tip=this.tip||Ue(this.config.template)[0],this.tip},r.setContent=function(){var t=Ue(this.getTipElement());this.setElementContent(t.find(Ze),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(Ge),e),t.removeClass(ze+" "+Je)},r._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},r._cleanTipClass=function(){var t=Ue(this.getTipElement()),e=t.attr("class").match(Be);null!==e&&0=this._offsets[r]&&("undefined"==typeof this._offsets[r+1]||t=0&&n0&&t-1 in e)}var E=function(e){var t,n,r,i,o,a,s,u,l,c,f,p,d,h,g,y,v,m,x,b="sizzle"+1*new Date,w=e.document,T=0,C=0,E=ae(),k=ae(),S=ae(),D=function(e,t){return e===t&&(f=!0),0},N={}.hasOwnProperty,A=[],j=A.pop,q=A.push,L=A.push,H=A.slice,O=function(e,t){for(var n=0,r=e.length;n+~]|"+M+")"+M+"*"),z=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),X=new RegExp(W),U=new RegExp("^"+R+"$"),V={ID:new RegExp("^#("+R+")"),CLASS:new RegExp("^\\.("+R+")"),TAG:new RegExp("^("+R+"|[*])"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+P+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},G=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Q=/^[^{]+\{\s*\[native \w/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,K=/[+~]/,Z=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ee=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},te=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ne=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},re=function(){p()},ie=me(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{L.apply(A=H.call(w.childNodes),w.childNodes),A[w.childNodes.length].nodeType}catch(e){L={apply:A.length?function(e,t){q.apply(e,H.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function oe(e,t,r,i){var o,s,l,c,f,h,v,m=t&&t.ownerDocument,T=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==T&&9!==T&&11!==T)return r;if(!i&&((t?t.ownerDocument||t:w)!==d&&p(t),t=t||d,g)){if(11!==T&&(f=J.exec(e)))if(o=f[1]){if(9===T){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return L.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return L.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!S[e+" "]&&(!y||!y.test(e))){if(1!==T)m=t,v=e;else if("object"!==t.nodeName.toLowerCase()){(c=t.getAttribute("id"))?c=c.replace(te,ne):t.setAttribute("id",c=b),s=(h=a(e)).length;while(s--)h[s]="#"+c+" "+ve(h[s]);v=h.join(","),m=K.test(e)&&ge(t.parentNode)||t}if(v)try{return L.apply(r,m.querySelectorAll(v)),r}catch(e){}finally{c===b&&t.removeAttribute("id")}}}return u(e.replace(B,"$1"),t,r,i)}function ae(){var e=[];function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}return t}function se(e){return e[b]=!0,e}function ue(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function le(e,t){var n=e.split("|"),i=n.length;while(i--)r.attrHandle[n[i]]=t}function ce(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function fe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function pe(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function de(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ie(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function he(e){return se(function(t){return t=+t,se(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function ge(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}n=oe.support={},o=oe.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},p=oe.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!==d&&9===a.nodeType&&a.documentElement?(d=a,h=d.documentElement,g=!o(d),w!==d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",re,!1):i.attachEvent&&i.attachEvent("onunload",re)),n.attributes=ue(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ue(function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=Q.test(d.getElementsByClassName),n.getById=ue(function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length}),n.getById?(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){var n="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&g)return t.getElementsByClassName(e)},v=[],y=[],(n.qsa=Q.test(d.querySelectorAll))&&(ue(function(e){h.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+P+")"),e.querySelectorAll("[id~="+b+"-]").length||y.push("~="),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+b+"+*").length||y.push(".#.+[+~]")}),ue(function(e){e.innerHTML="";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(n.matchesSelector=Q.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ue(function(e){n.disconnectedMatch=m.call(e,"*"),m.call(e,"[s!='']:x"),v.push("!=",W)}),y=y.length&&new RegExp(y.join("|")),v=v.length&&new RegExp(v.join("|")),t=Q.test(h.compareDocumentPosition),x=t||Q.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===d||e.ownerDocument===w&&x(w,e)?-1:t===d||t.ownerDocument===w&&x(w,t)?1:c?O(c,e)-O(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===d?-1:t===d?1:i?-1:o?1:c?O(c,e)-O(c,t):0;if(i===o)return ce(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?ce(a[r],s[r]):a[r]===w?-1:s[r]===w?1:0},d):d},oe.matches=function(e,t){return oe(e,null,null,t)},oe.matchesSelector=function(e,t){if((e.ownerDocument||e)!==d&&p(e),t=t.replace(z,"='$1']"),n.matchesSelector&&g&&!S[t+" "]&&(!v||!v.test(t))&&(!y||!y.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return oe(t,d,null,[e]).length>0},oe.contains=function(e,t){return(e.ownerDocument||e)!==d&&p(e),x(e,t)},oe.attr=function(e,t){(e.ownerDocument||e)!==d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&N.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},oe.escape=function(e){return(e+"").replace(te,ne)},oe.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},oe.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(D),f){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return c=null,e},i=oe.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else while(t=e[r++])n+=i(t);return n},(r=oe.selectors={cacheLength:50,createPseudo:se,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(Z,ee),e[3]=(e[3]||e[4]||e[5]||"").replace(Z,ee),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||oe.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&oe.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(Z,ee).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&E(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=oe.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace($," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",y=t.parentNode,v=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(y){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?y.firstChild:y.lastChild],a&&m){x=(d=(l=(c=(f=(p=y)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&y.childNodes[d];while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===v:1===p.nodeType)&&++x&&(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p===t))break;return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||oe.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?se(function(e,n){var r,o=i(e,t),a=o.length;while(a--)e[r=O(e,o[a])]=!(n[r]=o[a])}):function(e){return i(e,0,n)}):i}},pseudos:{not:se(function(e){var t=[],n=[],r=s(e.replace(B,"$1"));return r[b]?se(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}}),has:se(function(e){return function(t){return oe(e,t).length>0}}),contains:se(function(e){return e=e.replace(Z,ee),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:se(function(e){return U.test(e||"")||oe.error("unsupported lang: "+e),e=e.replace(Z,ee).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:de(!1),disabled:de(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Y.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:he(function(){return[0]}),last:he(function(e,t){return[t-1]}),eq:he(function(e,t,n){return[n<0?n+t:n]}),even:he(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:he(function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function be(e,t,n){for(var r=0,i=t.length;r-1&&(o[l]=!(a[l]=f))}}else v=we(v===a?v.splice(h,v.length):v),i?i(null,a,v,u):L.apply(a,v)})}function Ce(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=me(function(e){return e===t},s,!0),f=me(function(e){return O(t,e)>-1},s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&xe(p),u>1&&ve(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace(B,"$1"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,y,v=0,m="0",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG("*",c),E=T+=null==w?1:Math.random()||.1,k=C.length;for(c&&(l=a===d||a||c);m!==k&&null!=(f=C[m]);m++){if(i&&f){h=0,a||f.ownerDocument===d||(p(f),s=!g);while(y=e[h++])if(y(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!y&&f)&&v--,o&&x.push(f))}if(v+=m,n&&m!==v){h=0;while(y=t[h++])y(x,b,a,s);if(o){if(v>0)while(m--)x[m]||b[m]||(b[m]=j.call(u));b=we(b)}L.apply(u,b),c&&!o&&b.length>0&&v+t.length>1&&oe.uniqueSort(u)}return c&&(T=E,l=w),x};return n?se(o):o}return s=oe.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=a(e)),n=t.length;while(n--)(o=Ce(t[n]))[b]?r.push(o):i.push(o);(o=S(e,Ee(i,r))).selector=e}return o},u=oe.select=function(e,t,n,i){var o,u,l,c,f,p="function"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(Z,ee),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}o=V.needsContext.test(e)?0:u.length;while(o--){if(l=u[o],r.relative[c=l.type])break;if((f=r.find[c])&&(i=f(l.matches[0].replace(Z,ee),K.test(u[0].type)&&ge(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&ve(u)))return L.apply(n,i),n;break}}}return(p||s(e,d))(i,t,!g,n,!t||K.test(e)&&ge(t.parentNode)||t),n},n.sortStable=b.split("").sort(D).join("")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ue(function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))}),ue(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||le("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ue(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||le("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ue(function(e){return null==e.getAttribute("disabled")})||le(P,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),oe}(e);w.find=E,w.expr=E.selectors,w.expr[":"]=w.expr.pseudos,w.uniqueSort=w.unique=E.uniqueSort,w.text=E.getText,w.isXMLDoc=E.isXML,w.contains=E.contains,w.escapeSelector=E.escape;var k=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&w(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},D=w.expr.match.needsContext;function N(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,t,n){return g(t)?w.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?w.grep(e,function(e){return e===t!==n}):"string"!=typeof t?w.grep(e,function(e){return u.call(t,e)>-1!==n}):w.filter(t,e,n)}w.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?w.find.matchesSelector(r,e)?[r]:[]:w.find.matches(e,w.grep(t,function(e){return 1===e.nodeType}))},w.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(w(e).filter(function(){for(t=0;t1?w.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&D.test(e)?w(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(w.fn.init=function(e,t,n){var i,o;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(i="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:L.exec(e))||!i[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(i[1]){if(t=t instanceof w?t[0]:t,w.merge(this,w.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:r,!0)),A.test(i[1])&&w.isPlainObject(t))for(i in t)g(this[i])?this[i](t[i]):this.attr(i,t[i]);return this}return(o=r.getElementById(i[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(w):w.makeArray(e,this)}).prototype=w.fn,q=w(r);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};w.fn.extend({has:function(e){var t=w(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&w.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?u.call(w(e),this[0]):u.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}w.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return k(e,"parentNode")},parentsUntil:function(e,t,n){return k(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return k(e,"nextSibling")},prevAll:function(e){return k(e,"previousSibling")},nextUntil:function(e,t,n){return k(e,"nextSibling",n)},prevUntil:function(e,t,n){return k(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return N(e,"iframe")?e.contentDocument:(N(e,"template")&&(e=e.content||e),w.merge([],e.childNodes))}},function(e,t){w.fn[e]=function(n,r){var i=w.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=w.filter(r,i)),this.length>1&&(O[e]||w.uniqueSort(i),H.test(e)&&i.reverse()),this.pushStack(i)}});var M=/[^\x20\t\r\n\f]+/g;function R(e){var t={};return w.each(e.match(M)||[],function(e,n){t[n]=!0}),t}w.Callbacks=function(e){e="string"==typeof e?R(e):w.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1){n=a.shift();while(++s-1)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?w.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l};function I(e){return e}function W(e){throw e}function $(e,t,n,r){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n):e&&g(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}w.extend({Deferred:function(t){var n=[["notify","progress",w.Callbacks("memory"),w.Callbacks("memory"),2],["resolve","done",w.Callbacks("once memory"),w.Callbacks("once memory"),0,"resolved"],["reject","fail",w.Callbacks("once memory"),w.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},"catch":function(e){return i.then(null,e)},pipe:function(){var e=arguments;return w.Deferred(function(t){w.each(n,function(n,r){var i=g(e[r[4]])&&e[r[4]];o[r[1]](function(){var e=i&&i.apply(this,arguments);e&&g(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==W&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(w.Deferred.getStackHook&&(c.stackTrace=w.Deferred.getStackHook()),e.setTimeout(c))}}return w.Deferred(function(e){n[0][3].add(a(0,e,g(i)?i:I,e.notifyWith)),n[1][3].add(a(0,e,g(t)?t:I)),n[2][3].add(a(0,e,g(r)?r:W))}).promise()},promise:function(e){return null!=e?w.extend(e,i):i}},o={};return w.each(n,function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add(function(){r=s},n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith}),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=o.call(arguments),a=w.Deferred(),s=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?o.call(arguments):n,--t||a.resolveWith(r,i)}};if(t<=1&&($(e,a.done(s(n)).resolve,a.reject,!t),"pending"===a.state()||g(i[n]&&i[n].then)))return a.then();while(n--)$(i[n],s(n),a.reject);return a.promise()}});var B=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&B.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},w.readyException=function(t){e.setTimeout(function(){throw t})};var F=w.Deferred();w.fn.ready=function(e){return F.then(e)["catch"](function(e){w.readyException(e)}),this},w.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==e&&--w.readyWait>0||F.resolveWith(r,[w]))}}),w.ready.then=F.then;function _(){r.removeEventListener("DOMContentLoaded",_),e.removeEventListener("load",_),w.ready()}"complete"===r.readyState||"loading"!==r.readyState&&!r.documentElement.doScroll?e.setTimeout(w.ready):(r.addEventListener("DOMContentLoaded",_),e.addEventListener("load",_));var z=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n)){i=!0;for(s in n)z(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,g(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(w(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each(function(){K.remove(this,e)})}}),w.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=J.get(e,t),n&&(!r||Array.isArray(n)?r=J.access(e,t,w.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=w.queue(e,t),r=n.length,i=n.shift(),o=w._queueHooks(e,t),a=function(){w.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return J.get(e,n)||J.access(e,n,{empty:w.Callbacks("once memory").add(function(){J.remove(e,[t+"queue",n])})})}}),w.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]+)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&N(e,t)?w.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n-1)i&&i.push(o);else if(l=w.contains(o.ownerDocument,o),a=ye(f.appendChild(o),"script"),l&&ve(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}!function(){var e=r.createDocumentFragment().appendChild(r.createElement("div")),t=r.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),h.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",h.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var be=r.documentElement,we=/^key/,Te=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ce=/^([^.]*)(?:\.(.+)|)/;function Ee(){return!0}function ke(){return!1}function Se(){try{return r.activeElement}catch(e){}}function De(e,t,n,r,i,o){var a,s;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(s in t)De(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=ke;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return w().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=w.guid++)),e.each(function(){w.event.add(this,t,i,r,n)})}w.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.get(e);if(y){n.handler&&(n=(o=n).handler,i=o.selector),i&&w.find.matchesSelector(be,i),n.guid||(n.guid=w.guid++),(u=y.events)||(u=y.events={}),(a=y.handle)||(a=y.handle=function(t){return"undefined"!=typeof w&&w.event.triggered!==t.type?w.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(M)||[""]).length;while(l--)d=g=(s=Ce.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=w.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=w.event.special[d]||{},c=w.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&w.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),w.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.hasData(e)&&J.get(e);if(y&&(u=y.events)){l=(t=(t||"").match(M)||[""]).length;while(l--)if(s=Ce.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){f=w.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,y.handle)||w.removeEvent(e,d,y.handle),delete u[d])}else for(d in u)w.event.remove(e,d+t[l],n,r,!0);w.isEmptyObject(u)&&J.remove(e,"handle events")}},dispatch:function(e){var t=w.event.fix(e),n,r,i,o,a,s,u=new Array(arguments.length),l=(J.get(this,"events")||{})[t.type]||[],c=w.event.special[t.type]||{};for(u[0]=t,n=1;n=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:w.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\x20\t\r\n\f]*)[^>]*)\/>/gi,Ae=/\s*$/g;function Le(e,t){return N(e,"table")&&N(11!==t.nodeType?t:t.firstChild,"tr")?w(e).children("tbody")[0]||e:e}function He(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Oe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Pe(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(J.hasData(e)&&(o=J.access(e),a=J.set(t,o),l=o.events)){delete a.handle,a.events={};for(i in l)for(n=0,r=l[i].length;n1&&"string"==typeof y&&!h.checkClone&&je.test(y))return e.each(function(i){var o=e.eq(i);v&&(t[0]=y.call(this,i,o.html())),Re(o,t,n,r)});if(p&&(i=xe(t,e[0].ownerDocument,!1,e,r),o=i.firstChild,1===i.childNodes.length&&(i=o),o||r)){for(u=(s=w.map(ye(i,"script"),He)).length;f")},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=w.contains(e.ownerDocument,e);if(!(h.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||w.isXMLDoc(e)))for(a=ye(s),r=0,i=(o=ye(e)).length;r0&&ve(a,!u&&ye(e,"script")),s},cleanData:function(e){for(var t,n,r,i=w.event.special,o=0;void 0!==(n=e[o]);o++)if(Y(n)){if(t=n[J.expando]){if(t.events)for(r in t.events)i[r]?w.event.remove(n,r):w.removeEvent(n,r,t.handle);n[J.expando]=void 0}n[K.expando]&&(n[K.expando]=void 0)}}}),w.fn.extend({detach:function(e){return Ie(this,e,!0)},remove:function(e){return Ie(this,e)},text:function(e){return z(this,function(e){return void 0===e?w.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Re(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Le(this,e).appendChild(e)})},prepend:function(){return Re(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Le(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(w.cleanData(ye(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return w.clone(this,e,t)})},html:function(e){return z(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ae.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=w.htmlPrefilter(e);try{for(;n=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))),u}function et(e,t,n){var r=$e(e),i=Fe(e,t,r),o="border-box"===w.css(e,"boxSizing",!1,r),a=o;if(We.test(i)){if(!n)return i;i="auto"}return a=a&&(h.boxSizingReliable()||i===e.style[t]),("auto"===i||!parseFloat(i)&&"inline"===w.css(e,"display",!1,r))&&(i=e["offset"+t[0].toUpperCase()+t.slice(1)],a=!0),(i=parseFloat(i)||0)+Ze(e,t,n||(o?"border":"content"),a,r,i)+"px"}w.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Fe(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=G(t),u=Xe.test(t),l=e.style;if(u||(t=Je(s)),a=w.cssHooks[t]||w.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"==(o=typeof n)&&(i=ie.exec(n))&&i[1]&&(n=ue(e,t,i),o="number"),null!=n&&n===n&&("number"===o&&(n+=i&&i[3]||(w.cssNumber[s]?"":"px")),h.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=G(t);return Xe.test(t)||(t=Je(s)),(a=w.cssHooks[t]||w.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Fe(e,t,r)),"normal"===i&&t in Ve&&(i=Ve[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),w.each(["height","width"],function(e,t){w.cssHooks[t]={get:function(e,n,r){if(n)return!ze.test(w.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):se(e,Ue,function(){return et(e,t,r)})},set:function(e,n,r){var i,o=$e(e),a="border-box"===w.css(e,"boxSizing",!1,o),s=r&&Ze(e,t,r,a,o);return a&&h.scrollboxSize()===o.position&&(s-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,"border",!1,o)-.5)),s&&(i=ie.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=w.css(e,t)),Ke(e,n,s)}}}),w.cssHooks.marginLeft=_e(h.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Fe(e,"marginLeft"))||e.getBoundingClientRect().left-se(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),w.each({margin:"",padding:"",border:"Width"},function(e,t){w.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+oe[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(w.cssHooks[e+t].set=Ke)}),w.fn.extend({css:function(e,t){return z(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=$e(e),i=t.length;a1)}});function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}w.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||w.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(w.cssNumber[n]?"":"px")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=w.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=w.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){w.fx.step[e.prop]?w.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[w.cssProps[e.prop]]&&!w.cssHooks[e.prop]?e.elem[e.prop]=e.now:w.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},w.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},w.fx=tt.prototype.init,w.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===r.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,w.fx.interval),w.fx.tick())}function st(){return e.setTimeout(function(){nt=void 0}),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=oe[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(pt.tweeners[t]||[]).concat(pt.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each(function(){w.removeAttr(this,e)})}}),w.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?w.prop(e,t,n):(1===o&&w.isXMLDoc(e)||(i=w.attrHooks[t.toLowerCase()]||(w.expr.match.bool.test(t)?dt:void 0)),void 0!==n?null===n?void w.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=w.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!h.radioValue&&"radio"===t&&N(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(M);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),dt={set:function(e,t,n){return!1===t?w.removeAttr(e,n):e.setAttribute(n,n),n}},w.each(w.expr.match.bool.source.match(/\w+/g),function(e,t){var n=ht[t]||w.find.attr;ht[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=ht[a],ht[a]=i,i=null!=n(e,t,r)?a:null,ht[a]=o),i}});var gt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;w.fn.extend({prop:function(e,t){return z(this,w.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[w.propFix[e]||e]})}}),w.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&w.isXMLDoc(e)||(t=w.propFix[t]||t,i=w.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=w.find.attr(e,"tabindex");return t?parseInt(t,10):gt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),h.optSelected||(w.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),w.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){w.propFix[this.toLowerCase()]=this});function vt(e){return(e.match(M)||[]).join(" ")}function mt(e){return e.getAttribute&&e.getAttribute("class")||""}function xt(e){return Array.isArray(e)?e:"string"==typeof e?e.match(M)||[]:[]}w.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).addClass(e.call(this,t,mt(this)))});if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).removeClass(e.call(this,t,mt(this)))});if(!arguments.length)return this.attr("class","");if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])while(r.indexOf(" "+o+" ")>-1)r=r.replace(" "+o+" "," ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):g(e)?this.each(function(n){w(this).toggleClass(e.call(this,n,mt(this),t),t)}):this.each(function(){var t,i,o,a;if(r){i=0,o=w(this),a=xt(e);while(t=a[i++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else void 0!==e&&"boolean"!==n||((t=mt(this))&&J.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":J.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&(" "+vt(mt(n))+" ").indexOf(t)>-1)return!0;return!1}});var bt=/\r/g;w.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=g(e),this.each(function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,w(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=w.map(i,function(e){return null==e?"":e+""})),(t=w.valHooks[this.type]||w.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return(t=w.valHooks[i.type]||w.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(bt,""):null==n?"":n}}}),w.extend({valHooks:{option:{get:function(e){var t=w.find.attr(e,"value");return null!=t?t:vt(w.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),w.each(["radio","checkbox"],function(){w.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=w.inArray(w(e).val(),t)>-1}},h.checkOn||(w.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),h.focusin="onfocusin"in e;var wt=/^(?:focusinfocus|focusoutblur)$/,Tt=function(e){e.stopPropagation()};w.extend(w.event,{trigger:function(t,n,i,o){var a,s,u,l,c,p,d,h,v=[i||r],m=f.call(t,"type")?t.type:t,x=f.call(t,"namespace")?t.namespace.split("."):[];if(s=h=u=i=i||r,3!==i.nodeType&&8!==i.nodeType&&!wt.test(m+w.event.triggered)&&(m.indexOf(".")>-1&&(m=(x=m.split(".")).shift(),x.sort()),c=m.indexOf(":")<0&&"on"+m,t=t[w.expando]?t:new w.Event(m,"object"==typeof t&&t),t.isTrigger=o?2:3,t.namespace=x.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+x.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=i),n=null==n?[t]:w.makeArray(n,[t]),d=w.event.special[m]||{},o||!d.trigger||!1!==d.trigger.apply(i,n))){if(!o&&!d.noBubble&&!y(i)){for(l=d.delegateType||m,wt.test(l+m)||(s=s.parentNode);s;s=s.parentNode)v.push(s),u=s;u===(i.ownerDocument||r)&&v.push(u.defaultView||u.parentWindow||e)}a=0;while((s=v[a++])&&!t.isPropagationStopped())h=s,t.type=a>1?l:d.bindType||m,(p=(J.get(s,"events")||{})[t.type]&&J.get(s,"handle"))&&p.apply(s,n),(p=c&&s[c])&&p.apply&&Y(s)&&(t.result=p.apply(s,n),!1===t.result&&t.preventDefault());return t.type=m,o||t.isDefaultPrevented()||d._default&&!1!==d._default.apply(v.pop(),n)||!Y(i)||c&&g(i[m])&&!y(i)&&((u=i[c])&&(i[c]=null),w.event.triggered=m,t.isPropagationStopped()&&h.addEventListener(m,Tt),i[m](),t.isPropagationStopped()&&h.removeEventListener(m,Tt),w.event.triggered=void 0,u&&(i[c]=u)),t.result}},simulate:function(e,t,n){var r=w.extend(new w.Event,n,{type:e,isSimulated:!0});w.event.trigger(r,null,t)}}),w.fn.extend({trigger:function(e,t){return this.each(function(){w.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return w.event.trigger(e,t,n,!0)}}),h.focusin||w.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){w.event.simulate(t,e.target,w.event.fix(e))};w.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=J.access(r,t);i||r.addEventListener(e,n,!0),J.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=J.access(r,t)-1;i?J.access(r,t,i):(r.removeEventListener(e,n,!0),J.remove(r,t))}}});var Ct=e.location,Et=Date.now(),kt=/\?/;w.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||w.error("Invalid XML: "+t),n};var St=/\[\]$/,Dt=/\r?\n/g,Nt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function jt(e,t,n,r){var i;if(Array.isArray(t))w.each(t,function(t,i){n||St.test(e)?r(e,i):jt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)});else if(n||"object"!==x(t))r(e,t);else for(i in t)jt(e+"["+i+"]",t[i],n,r)}w.param=function(e,t){var n,r=[],i=function(e,t){var n=g(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!w.isPlainObject(e))w.each(e,function(){i(this.name,this.value)});else for(n in e)jt(n,e[n],t,i);return r.join("&")},w.fn.extend({serialize:function(){return w.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=w.prop(this,"elements");return e?w.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!w(this).is(":disabled")&&At.test(this.nodeName)&&!Nt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=w(this).val();return null==n?null:Array.isArray(n)?w.map(n,function(e){return{name:t.name,value:e.replace(Dt,"\r\n")}}):{name:t.name,value:n.replace(Dt,"\r\n")}}).get()}});var qt=/%20/g,Lt=/#.*$/,Ht=/([?&])_=[^&]*/,Ot=/^(.*?):[ \t]*([^\r\n]*)$/gm,Pt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Mt=/^(?:GET|HEAD)$/,Rt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Bt=r.createElement("a");Bt.href=Ct.href;function Ft(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(M)||[];if(g(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function _t(e,t,n,r){var i={},o=e===Wt;function a(s){var u;return i[s]=!0,w.each(e[s]||[],function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)}),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function zt(e,t){var n,r,i=w.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&w.extend(!0,e,r),e}function Xt(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}function Ut(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}w.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ct.href,type:"GET",isLocal:Pt.test(Ct.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":w.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,w.ajaxSettings),t):zt(w.ajaxSettings,e)},ajaxPrefilter:Ft(It),ajaxTransport:Ft(Wt),ajax:function(t,n){"object"==typeof t&&(n=t,t=void 0),n=n||{};var i,o,a,s,u,l,c,f,p,d,h=w.ajaxSetup({},n),g=h.context||h,y=h.context&&(g.nodeType||g.jquery)?w(g):w.event,v=w.Deferred(),m=w.Callbacks("once memory"),x=h.statusCode||{},b={},T={},C="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(c){if(!s){s={};while(t=Ot.exec(a))s[t[1].toLowerCase()]=t[2]}t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return c?a:null},setRequestHeader:function(e,t){return null==c&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==c&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return i&&i.abort(t),k(0,t),this}};if(v.promise(E),h.url=((t||h.url||Ct.href)+"").replace(Rt,Ct.protocol+"//"),h.type=n.method||n.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(M)||[""],null==h.crossDomain){l=r.createElement("a");try{l.href=h.url,l.href=l.href,h.crossDomain=Bt.protocol+"//"+Bt.host!=l.protocol+"//"+l.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=w.param(h.data,h.traditional)),_t(It,h,n,E),c)return E;(f=w.event&&h.global)&&0==w.active++&&w.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!Mt.test(h.type),o=h.url.replace(Lt,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(qt,"+")):(d=h.url.slice(o.length),h.data&&(h.processData||"string"==typeof h.data)&&(o+=(kt.test(o)?"&":"?")+h.data,delete h.data),!1===h.cache&&(o=o.replace(Ht,"$1"),d=(kt.test(o)?"&":"?")+"_="+Et+++d),h.url=o+d),h.ifModified&&(w.lastModified[o]&&E.setRequestHeader("If-Modified-Since",w.lastModified[o]),w.etag[o]&&E.setRequestHeader("If-None-Match",w.etag[o])),(h.data&&h.hasContent&&!1!==h.contentType||n.contentType)&&E.setRequestHeader("Content-Type",h.contentType),E.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+$t+"; q=0.01":""):h.accepts["*"]);for(p in h.headers)E.setRequestHeader(p,h.headers[p]);if(h.beforeSend&&(!1===h.beforeSend.call(g,E,h)||c))return E.abort();if(C="abort",m.add(h.complete),E.done(h.success),E.fail(h.error),i=_t(Wt,h,n,E)){if(E.readyState=1,f&&y.trigger("ajaxSend",[E,h]),c)return E;h.async&&h.timeout>0&&(u=e.setTimeout(function(){E.abort("timeout")},h.timeout));try{c=!1,i.send(b,k)}catch(e){if(c)throw e;k(-1,e)}}else k(-1,"No Transport");function k(t,n,r,s){var l,p,d,b,T,C=n;c||(c=!0,u&&e.clearTimeout(u),i=void 0,a=s||"",E.readyState=t>0?4:0,l=t>=200&&t<300||304===t,r&&(b=Xt(h,E,r)),b=Ut(h,b,E,l),l?(h.ifModified&&((T=E.getResponseHeader("Last-Modified"))&&(w.lastModified[o]=T),(T=E.getResponseHeader("etag"))&&(w.etag[o]=T)),204===t||"HEAD"===h.type?C="nocontent":304===t?C="notmodified":(C=b.state,p=b.data,l=!(d=b.error))):(d=C,!t&&C||(C="error",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+"",l?v.resolveWith(g,[p,C,E]):v.rejectWith(g,[E,C,d]),E.statusCode(x),x=void 0,f&&y.trigger(l?"ajaxSuccess":"ajaxError",[E,h,l?p:d]),m.fireWith(g,[E,C]),f&&(y.trigger("ajaxComplete",[E,h]),--w.active||w.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return w.get(e,t,n,"json")},getScript:function(e,t){return w.get(e,void 0,t,"script")}}),w.each(["get","post"],function(e,t){w[t]=function(e,n,r,i){return g(n)&&(i=i||r,r=n,n=void 0),w.ajax(w.extend({url:e,type:t,dataType:i,data:n,success:r},w.isPlainObject(e)&&e))}}),w._evalUrl=function(e){return w.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},w.fn.extend({wrapAll:function(e){var t;return this[0]&&(g(e)&&(e=e.call(this[0])),t=w(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return g(e)?this.each(function(t){w(this).wrapInner(e.call(this,t))}):this.each(function(){var t=w(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=g(e);return this.each(function(n){w(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){w(this).replaceWith(this.childNodes)}),this}}),w.expr.pseudos.hidden=function(e){return!w.expr.pseudos.visible(e)},w.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},w.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Vt={0:200,1223:204},Gt=w.ajaxSettings.xhr();h.cors=!!Gt&&"withCredentials"in Gt,h.ajax=Gt=!!Gt,w.ajaxTransport(function(t){var n,r;if(h.cors||Gt&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");for(a in i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Vt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout(function(){n&&r()})},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),w.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),w.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return w.globalEval(e),e}}}),w.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),w.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(i,o){t=w(" +
    +
    + +
    +

    h1 + + + + GR + + GR + + GR + + GR + + GR + + GR +

    +

    h2 + + + + GR + + GR + + GR + + GR + + GR + + GR +

    +

    h3 + + + + GR + + GR + + GR + + GR + + GR + + GR +

    +

    h4 + + + + GR + + GR + + GR + + GR + + GR + + GR +

    +
    h5 + + + + GR + + GR + + GR + + GR + + GR + + GR +
    +
    h6 + + + + GR + + GR + + GR + + GR + + GR + + GR +
    +

    p + + + + GR + + GR + + GR + + GR + + GR + + GR +

    +

    p.lead + + + + GR + + GR + + GR + + GR + + GR + + GR +

    +
    + +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + + Fork me on GitHub + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/iconfonts/flag-icon-css/less/flag-icon-base.less b/assets/vendors/iconfonts/flag-icon-css/less/flag-icon-base.less new file mode 100755 index 0000000..5355fd6 --- /dev/null +++ b/assets/vendors/iconfonts/flag-icon-css/less/flag-icon-base.less @@ -0,0 +1,28 @@ +.flag-icon-background { + background-size: contain; + background-position: 50%; + background-repeat: no-repeat; +} + +.flag-icon { + .flag-icon-background; + position: relative; + display: inline-block; + width: unit((4 / 3), em); + line-height: 1em; + &:before { + content: "\00a0"; + } + &.flag-icon-squared { + width: 1em; + } +} + +.flag-icon(@country) { + .flag-icon-@{country} { + background-image: ~"url(@{flag-icon-css-path}@{flag-icon-rect-path}/@{country}.svg)"; + &.flag-icon-squared { + background-image: ~"url(@{flag-icon-css-path}@{flag-icon-square-path}/@{country}.svg)"; + } + } +} diff --git a/assets/vendors/iconfonts/flag-icon-css/less/flag-icon-list.less b/assets/vendors/iconfonts/flag-icon-css/less/flag-icon-list.less new file mode 100755 index 0000000..6921019 --- /dev/null +++ b/assets/vendors/iconfonts/flag-icon-css/less/flag-icon-list.less @@ -0,0 +1,249 @@ +.flag-icon(ad); +.flag-icon(ae); +.flag-icon(af); +.flag-icon(ag); +.flag-icon(ai); +.flag-icon(al); +.flag-icon(am); +.flag-icon(ao); +.flag-icon(aq); +.flag-icon(ar); +.flag-icon(as); +.flag-icon(at); +.flag-icon(au); +.flag-icon(aw); +.flag-icon(ax); +.flag-icon(az); +.flag-icon(ba); +.flag-icon(bb); +.flag-icon(bd); +.flag-icon(be); +.flag-icon(bf); +.flag-icon(bg); +.flag-icon(bh); +.flag-icon(bi); +.flag-icon(bj); +.flag-icon(bl); +.flag-icon(bm); +.flag-icon(bn); +.flag-icon(bo); +.flag-icon(bq); +.flag-icon(br); +.flag-icon(bs); +.flag-icon(bt); +.flag-icon(bv); +.flag-icon(bw); +.flag-icon(by); +.flag-icon(bz); +.flag-icon(ca); +.flag-icon(cc); +.flag-icon(cd); +.flag-icon(cf); +.flag-icon(cg); +.flag-icon(ch); +.flag-icon(ci); +.flag-icon(ck); +.flag-icon(cl); +.flag-icon(cm); +.flag-icon(cn); +.flag-icon(co); +.flag-icon(cr); +.flag-icon(cu); +.flag-icon(cv); +.flag-icon(cw); +.flag-icon(cx); +.flag-icon(cy); +.flag-icon(cz); +.flag-icon(de); +.flag-icon(dj); +.flag-icon(dk); +.flag-icon(dm); +.flag-icon(do); +.flag-icon(dz); +.flag-icon(ec); +.flag-icon(ee); +.flag-icon(eg); +.flag-icon(eh); +.flag-icon(er); +.flag-icon(es); +.flag-icon(et); +.flag-icon(fi); +.flag-icon(fj); +.flag-icon(fk); +.flag-icon(fm); +.flag-icon(fo); +.flag-icon(fr); +.flag-icon(ga); +.flag-icon(gb); +.flag-icon(gd); +.flag-icon(ge); +.flag-icon(gf); +.flag-icon(gg); +.flag-icon(gh); +.flag-icon(gi); +.flag-icon(gl); +.flag-icon(gm); +.flag-icon(gn); +.flag-icon(gp); +.flag-icon(gq); +.flag-icon(gr); +.flag-icon(gs); +.flag-icon(gt); +.flag-icon(gu); +.flag-icon(gw); +.flag-icon(gy); +.flag-icon(hk); +.flag-icon(hm); +.flag-icon(hn); +.flag-icon(hr); +.flag-icon(ht); +.flag-icon(hu); +.flag-icon(id); +.flag-icon(ie); +.flag-icon(il); +.flag-icon(im); +.flag-icon(in); +.flag-icon(io); +.flag-icon(iq); +.flag-icon(ir); +.flag-icon(is); +.flag-icon(it); +.flag-icon(je); +.flag-icon(jm); +.flag-icon(jo); +.flag-icon(jp); +.flag-icon(ke); +.flag-icon(kg); +.flag-icon(kh); +.flag-icon(ki); +.flag-icon(km); +.flag-icon(kn); +.flag-icon(kp); +.flag-icon(kr); +.flag-icon(kw); +.flag-icon(ky); +.flag-icon(kz); +.flag-icon(la); +.flag-icon(lb); +.flag-icon(lc); +.flag-icon(li); +.flag-icon(lk); +.flag-icon(lr); +.flag-icon(ls); +.flag-icon(lt); +.flag-icon(lu); +.flag-icon(lv); +.flag-icon(ly); +.flag-icon(ma); +.flag-icon(mc); +.flag-icon(md); +.flag-icon(me); +.flag-icon(mf); +.flag-icon(mg); +.flag-icon(mh); +.flag-icon(mk); +.flag-icon(ml); +.flag-icon(mm); +.flag-icon(mn); +.flag-icon(mo); +.flag-icon(mp); +.flag-icon(mq); +.flag-icon(mr); +.flag-icon(ms); +.flag-icon(mt); +.flag-icon(mu); +.flag-icon(mv); +.flag-icon(mw); +.flag-icon(mx); +.flag-icon(my); +.flag-icon(mz); +.flag-icon(na); +.flag-icon(nc); +.flag-icon(ne); +.flag-icon(nf); +.flag-icon(ng); +.flag-icon(ni); +.flag-icon(nl); +.flag-icon(no); +.flag-icon(np); +.flag-icon(nr); +.flag-icon(nu); +.flag-icon(nz); +.flag-icon(om); +.flag-icon(pa); +.flag-icon(pe); +.flag-icon(pf); +.flag-icon(pg); +.flag-icon(ph); +.flag-icon(pk); +.flag-icon(pl); +.flag-icon(pm); +.flag-icon(pn); +.flag-icon(pr); +.flag-icon(ps); +.flag-icon(pt); +.flag-icon(pw); +.flag-icon(py); +.flag-icon(qa); +.flag-icon(re); +.flag-icon(ro); +.flag-icon(rs); +.flag-icon(ru); +.flag-icon(rw); +.flag-icon(sa); +.flag-icon(sb); +.flag-icon(sc); +.flag-icon(sd); +.flag-icon(se); +.flag-icon(sg); +.flag-icon(sh); +.flag-icon(si); +.flag-icon(sj); +.flag-icon(sk); +.flag-icon(sl); +.flag-icon(sm); +.flag-icon(sn); +.flag-icon(so); +.flag-icon(sr); +.flag-icon(ss); +.flag-icon(st); +.flag-icon(sv); +.flag-icon(sx); +.flag-icon(sy); +.flag-icon(sz); +.flag-icon(tc); +.flag-icon(td); +.flag-icon(tf); +.flag-icon(tg); +.flag-icon(th); +.flag-icon(tj); +.flag-icon(tk); +.flag-icon(tl); +.flag-icon(tm); +.flag-icon(tn); +.flag-icon(to); +.flag-icon(tr); +.flag-icon(tt); +.flag-icon(tv); +.flag-icon(tw); +.flag-icon(tz); +.flag-icon(ua); +.flag-icon(ug); +.flag-icon(um); +.flag-icon(us); +.flag-icon(uy); +.flag-icon(uz); +.flag-icon(va); +.flag-icon(vc); +.flag-icon(ve); +.flag-icon(vg); +.flag-icon(vi); +.flag-icon(vn); +.flag-icon(vu); +.flag-icon(wf); +.flag-icon(ws); +.flag-icon(ye); +.flag-icon(yt); +.flag-icon(za); +.flag-icon(zm); +.flag-icon(zw); diff --git a/assets/vendors/iconfonts/flag-icon-css/less/flag-icon-more.less b/assets/vendors/iconfonts/flag-icon-css/less/flag-icon-more.less new file mode 100755 index 0000000..5dcc447 --- /dev/null +++ b/assets/vendors/iconfonts/flag-icon-css/less/flag-icon-more.less @@ -0,0 +1,7 @@ +.flag-icon(es-ct); +.flag-icon(eu); +.flag-icon(gb-eng); +.flag-icon(gb-nir); +.flag-icon(gb-sct); +.flag-icon(gb-wls); +.flag-icon(un); diff --git a/assets/vendors/iconfonts/flag-icon-css/less/flag-icon.less b/assets/vendors/iconfonts/flag-icon-css/less/flag-icon.less new file mode 100755 index 0000000..45a3d78 --- /dev/null +++ b/assets/vendors/iconfonts/flag-icon-css/less/flag-icon.less @@ -0,0 +1,4 @@ +@import 'variables'; +@import 'flag-icon-base'; +@import 'flag-icon-list'; +@import 'flag-icon-more'; diff --git a/assets/vendors/iconfonts/flag-icon-css/less/variables.less b/assets/vendors/iconfonts/flag-icon-css/less/variables.less new file mode 100755 index 0000000..8b76f19 --- /dev/null +++ b/assets/vendors/iconfonts/flag-icon-css/less/variables.less @@ -0,0 +1,3 @@ +@flag-icon-css-path: '../flags'; +@flag-icon-rect-path: '/4x3'; +@flag-icon-square-path: '/1x1'; diff --git a/assets/vendors/iconfonts/flag-icon-css/package.json b/assets/vendors/iconfonts/flag-icon-css/package.json new file mode 100755 index 0000000..67bac51 --- /dev/null +++ b/assets/vendors/iconfonts/flag-icon-css/package.json @@ -0,0 +1,65 @@ +{ + "_args": [ + [ + "flag-icon-css@2.9.0", + "/Applications/XAMPP/xamppfiles/htdocs/star_pro" + ] + ], + "_from": "flag-icon-css@2.9.0", + "_id": "flag-icon-css@2.9.0", + "_inBundle": false, + "_integrity": "sha512-SeHvGEB43XFPZiJz6lFFRGHfp+Db+s1qGiClW70cZauQVbPM42wImlNUEuXSXs94kPchz7xvoxP0QK1y6FxLfg==", + "_location": "/flag-icon-css", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "flag-icon-css@2.9.0", + "name": "flag-icon-css", + "escapedName": "flag-icon-css", + "rawSpec": "2.9.0", + "saveSpec": null, + "fetchSpec": "2.9.0" + }, + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/flag-icon-css/-/flag-icon-css-2.9.0.tgz", + "_spec": "2.9.0", + "_where": "/Applications/XAMPP/xamppfiles/htdocs/star_pro", + "author": { + "name": "Panayiotis Lipiridis", + "email": "lipiridis@gmail.com" + }, + "bugs": { + "url": "https://github.com/lipis/flag-icon-css/issues" + }, + "description": "[![npm version](https://badge.fury.io/js/flag-icon-css.svg)](https://badge.fury.io/js/flag-icon-css) [![Bower version](https://badge.fury.io/bo/flag-icon-css.svg)](https://badge.fury.io/bo/flag-icon-css)", + "devDependencies": { + "grunt": "1.0.1", + "grunt-contrib-connect": "1.0.2", + "grunt-contrib-cssmin": "2.2.1", + "grunt-contrib-less": "1.4.1", + "grunt-contrib-watch": "1.0.0", + "svgo": "1.0.3" + }, + "homepage": "https://github.com/lipis/flag-icon-css#readme", + "licenses": [ + { + "type": "MIT", + "url": "http://opensource.org/licenses/MIT" + } + ], + "name": "flag-icon-css", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/lipis/flag-icon-css.git" + }, + "scripts": { + "_svgo:min": "svgo", + "_svgo:pretty": "svgo --pretty --indent=2 --disable=cleanupIDs", + "svgo:min": "npm run _svgo:min -- -f flags/1x1 && npm run _svgo:min -- -f flags/4x3", + "svgo:pretty": "npm run _svgo:pretty -- -f flags/1x1 && npm run _svgo:pretty -- -f flags/4x3" + }, + "version": "2.9.0" +} diff --git a/assets/vendors/iconfonts/flag-icon-css/sass/_flag-icon-base.scss b/assets/vendors/iconfonts/flag-icon-css/sass/_flag-icon-base.scss new file mode 100755 index 0000000..6cbb98f --- /dev/null +++ b/assets/vendors/iconfonts/flag-icon-css/sass/_flag-icon-base.scss @@ -0,0 +1,28 @@ +.flag-icon-background { + background-size: contain; + background-position: 50%; + background-repeat: no-repeat; +} + +.flag-icon { + @extend .flag-icon-background; + position: relative; + display: inline-block; + width: (4 / 3) * 1em; + line-height: 1em; + &:before { + content: '\00a0'; + } + &.flag-icon-squared { + width: 1em; + } +} + +@mixin flag-icon($country) { + .flag-icon-#{$country} { + background-image: url(#{$flag-icon-css-path}#{$flag-icon-rect-path}/#{$country}.svg); + &.flag-icon-squared { + background-image: url(#{$flag-icon-css-path}#{$flag-icon-square-path}/#{$country}.svg); + } + } +} diff --git a/assets/vendors/iconfonts/flag-icon-css/sass/_flag-icon-list.scss b/assets/vendors/iconfonts/flag-icon-css/sass/_flag-icon-list.scss new file mode 100755 index 0000000..6cafc82 --- /dev/null +++ b/assets/vendors/iconfonts/flag-icon-css/sass/_flag-icon-list.scss @@ -0,0 +1,249 @@ +@include flag-icon(ad); +@include flag-icon(ae); +@include flag-icon(af); +@include flag-icon(ag); +@include flag-icon(ai); +@include flag-icon(al); +@include flag-icon(am); +@include flag-icon(ao); +@include flag-icon(aq); +@include flag-icon(ar); +@include flag-icon(as); +@include flag-icon(at); +@include flag-icon(au); +@include flag-icon(aw); +@include flag-icon(ax); +@include flag-icon(az); +@include flag-icon(ba); +@include flag-icon(bb); +@include flag-icon(bd); +@include flag-icon(be); +@include flag-icon(bf); +@include flag-icon(bg); +@include flag-icon(bh); +@include flag-icon(bi); +@include flag-icon(bj); +@include flag-icon(bl); +@include flag-icon(bm); +@include flag-icon(bn); +@include flag-icon(bo); +@include flag-icon(bq); +@include flag-icon(br); +@include flag-icon(bs); +@include flag-icon(bt); +@include flag-icon(bv); +@include flag-icon(bw); +@include flag-icon(by); +@include flag-icon(bz); +@include flag-icon(ca); +@include flag-icon(cc); +@include flag-icon(cd); +@include flag-icon(cf); +@include flag-icon(cg); +@include flag-icon(ch); +@include flag-icon(ci); +@include flag-icon(ck); +@include flag-icon(cl); +@include flag-icon(cm); +@include flag-icon(cn); +@include flag-icon(co); +@include flag-icon(cr); +@include flag-icon(cu); +@include flag-icon(cv); +@include flag-icon(cw); +@include flag-icon(cx); +@include flag-icon(cy); +@include flag-icon(cz); +@include flag-icon(de); +@include flag-icon(dj); +@include flag-icon(dk); +@include flag-icon(dm); +@include flag-icon(do); +@include flag-icon(dz); +@include flag-icon(ec); +@include flag-icon(ee); +@include flag-icon(eg); +@include flag-icon(eh); +@include flag-icon(er); +@include flag-icon(es); +@include flag-icon(et); +@include flag-icon(fi); +@include flag-icon(fj); +@include flag-icon(fk); +@include flag-icon(fm); +@include flag-icon(fo); +@include flag-icon(fr); +@include flag-icon(ga); +@include flag-icon(gb); +@include flag-icon(gd); +@include flag-icon(ge); +@include flag-icon(gf); +@include flag-icon(gg); +@include flag-icon(gh); +@include flag-icon(gi); +@include flag-icon(gl); +@include flag-icon(gm); +@include flag-icon(gn); +@include flag-icon(gp); +@include flag-icon(gq); +@include flag-icon(gr); +@include flag-icon(gs); +@include flag-icon(gt); +@include flag-icon(gu); +@include flag-icon(gw); +@include flag-icon(gy); +@include flag-icon(hk); +@include flag-icon(hm); +@include flag-icon(hn); +@include flag-icon(hr); +@include flag-icon(ht); +@include flag-icon(hu); +@include flag-icon(id); +@include flag-icon(ie); +@include flag-icon(il); +@include flag-icon(im); +@include flag-icon(in); +@include flag-icon(io); +@include flag-icon(iq); +@include flag-icon(ir); +@include flag-icon(is); +@include flag-icon(it); +@include flag-icon(je); +@include flag-icon(jm); +@include flag-icon(jo); +@include flag-icon(jp); +@include flag-icon(ke); +@include flag-icon(kg); +@include flag-icon(kh); +@include flag-icon(ki); +@include flag-icon(km); +@include flag-icon(kn); +@include flag-icon(kp); +@include flag-icon(kr); +@include flag-icon(kw); +@include flag-icon(ky); +@include flag-icon(kz); +@include flag-icon(la); +@include flag-icon(lb); +@include flag-icon(lc); +@include flag-icon(li); +@include flag-icon(lk); +@include flag-icon(lr); +@include flag-icon(ls); +@include flag-icon(lt); +@include flag-icon(lu); +@include flag-icon(lv); +@include flag-icon(ly); +@include flag-icon(ma); +@include flag-icon(mc); +@include flag-icon(md); +@include flag-icon(me); +@include flag-icon(mf); +@include flag-icon(mg); +@include flag-icon(mh); +@include flag-icon(mk); +@include flag-icon(ml); +@include flag-icon(mm); +@include flag-icon(mn); +@include flag-icon(mo); +@include flag-icon(mp); +@include flag-icon(mq); +@include flag-icon(mr); +@include flag-icon(ms); +@include flag-icon(mt); +@include flag-icon(mu); +@include flag-icon(mv); +@include flag-icon(mw); +@include flag-icon(mx); +@include flag-icon(my); +@include flag-icon(mz); +@include flag-icon(na); +@include flag-icon(nc); +@include flag-icon(ne); +@include flag-icon(nf); +@include flag-icon(ng); +@include flag-icon(ni); +@include flag-icon(nl); +@include flag-icon(no); +@include flag-icon(np); +@include flag-icon(nr); +@include flag-icon(nu); +@include flag-icon(nz); +@include flag-icon(om); +@include flag-icon(pa); +@include flag-icon(pe); +@include flag-icon(pf); +@include flag-icon(pg); +@include flag-icon(ph); +@include flag-icon(pk); +@include flag-icon(pl); +@include flag-icon(pm); +@include flag-icon(pn); +@include flag-icon(pr); +@include flag-icon(ps); +@include flag-icon(pt); +@include flag-icon(pw); +@include flag-icon(py); +@include flag-icon(qa); +@include flag-icon(re); +@include flag-icon(ro); +@include flag-icon(rs); +@include flag-icon(ru); +@include flag-icon(rw); +@include flag-icon(sa); +@include flag-icon(sb); +@include flag-icon(sc); +@include flag-icon(sd); +@include flag-icon(se); +@include flag-icon(sg); +@include flag-icon(sh); +@include flag-icon(si); +@include flag-icon(sj); +@include flag-icon(sk); +@include flag-icon(sl); +@include flag-icon(sm); +@include flag-icon(sn); +@include flag-icon(so); +@include flag-icon(sr); +@include flag-icon(ss); +@include flag-icon(st); +@include flag-icon(sv); +@include flag-icon(sx); +@include flag-icon(sy); +@include flag-icon(sz); +@include flag-icon(tc); +@include flag-icon(td); +@include flag-icon(tf); +@include flag-icon(tg); +@include flag-icon(th); +@include flag-icon(tj); +@include flag-icon(tk); +@include flag-icon(tl); +@include flag-icon(tm); +@include flag-icon(tn); +@include flag-icon(to); +@include flag-icon(tr); +@include flag-icon(tt); +@include flag-icon(tv); +@include flag-icon(tw); +@include flag-icon(tz); +@include flag-icon(ua); +@include flag-icon(ug); +@include flag-icon(um); +@include flag-icon(us); +@include flag-icon(uy); +@include flag-icon(uz); +@include flag-icon(va); +@include flag-icon(vc); +@include flag-icon(ve); +@include flag-icon(vg); +@include flag-icon(vi); +@include flag-icon(vn); +@include flag-icon(vu); +@include flag-icon(wf); +@include flag-icon(ws); +@include flag-icon(ye); +@include flag-icon(yt); +@include flag-icon(za); +@include flag-icon(zm); +@include flag-icon(zw); diff --git a/assets/vendors/iconfonts/flag-icon-css/sass/_flag-icon-more.scss b/assets/vendors/iconfonts/flag-icon-css/sass/_flag-icon-more.scss new file mode 100755 index 0000000..d96761f --- /dev/null +++ b/assets/vendors/iconfonts/flag-icon-css/sass/_flag-icon-more.scss @@ -0,0 +1,7 @@ +@include flag-icon(es-ct); +@include flag-icon(eu); +@include flag-icon(gb-eng); +@include flag-icon(gb-nir); +@include flag-icon(gb-sct); +@include flag-icon(gb-wls); +@include flag-icon(un); diff --git a/assets/vendors/iconfonts/flag-icon-css/sass/_variables.scss b/assets/vendors/iconfonts/flag-icon-css/sass/_variables.scss new file mode 100755 index 0000000..3c67906 --- /dev/null +++ b/assets/vendors/iconfonts/flag-icon-css/sass/_variables.scss @@ -0,0 +1,3 @@ +$flag-icon-css-path: '../flags' !default; +$flag-icon-rect-path: '/4x3' !default; +$flag-icon-square-path: '/1x1' !default; diff --git a/assets/vendors/iconfonts/flag-icon-css/sass/flag-icon.scss b/assets/vendors/iconfonts/flag-icon-css/sass/flag-icon.scss new file mode 100755 index 0000000..cc24e93 --- /dev/null +++ b/assets/vendors/iconfonts/flag-icon-css/sass/flag-icon.scss @@ -0,0 +1,4 @@ +@import "variables"; +@import "flag-icon-base"; +@import "flag-icon-list"; +@import "flag-icon-more"; diff --git a/assets/vendors/iconfonts/font-awesome/HELP-US-OUT.txt b/assets/vendors/iconfonts/font-awesome/HELP-US-OUT.txt new file mode 100755 index 0000000..83d083d --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/HELP-US-OUT.txt @@ -0,0 +1,7 @@ +I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, +Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, +comprehensive icon sets or copy and paste your own. + +Please. Check it out. + +-Dave Gandy diff --git a/assets/vendors/iconfonts/font-awesome/README.md b/assets/vendors/iconfonts/font-awesome/README.md new file mode 100755 index 0000000..3e1c1cf --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/README.md @@ -0,0 +1,106 @@ +# [Font Awesome v4.7.0](http://fontawesome.io) +### The iconic font and CSS framework + +Font Awesome is a full suite of 675 pictographic icons for easy scalable vector graphics on websites, +created and maintained by [Dave Gandy](https://twitter.com/davegandy). +Stay up to date with the latest release and announcements on Twitter: +[@fontawesome](http://twitter.com/fontawesome). + +Get started at http://fontawesome.io! + +## License +- The Font Awesome font is licensed under the SIL OFL 1.1: + - http://scripts.sil.org/OFL +- Font Awesome CSS, LESS, and Sass files are licensed under the MIT License: + - https://opensource.org/licenses/mit-license.html +- The Font Awesome documentation is licensed under the CC BY 3.0 License: + - http://creativecommons.org/licenses/by/3.0/ +- Attribution is no longer required as of Font Awesome 3.0, but much appreciated: + - `Font Awesome by Dave Gandy - http://fontawesome.io` +- Full details: http://fontawesome.io/license/ + +## Changelog +- [v4.7.0 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/10012) +- [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189) +- [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189) +- [v4.6.2 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9117) +- [v4.6.1 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/8962) +- [v4.6.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.6.0+is%3Aclosed) +- [v4.5.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.5.0+is%3Aclosed) +- [v4.4.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.4.0+is%3Aclosed) +- [v4.3.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.3.0+is%3Aclosed) +- [v4.2.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=12&page=1&state=closed) +- [v4.1.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=6&page=1&state=closed) +- [v4.0.3 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=9&page=1&state=closed) +- [v4.0.2 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=8&page=1&state=closed) +- [v4.0.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=7&page=1&state=closed) +- [v4.0.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=2&page=1&state=closed) +- [v3.2.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=5&page=1&state=closed) +- [v3.2.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=3&page=1&state=closed) +- [v3.1.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=4&page=1&state=closed) +- v3.1.0 - Added 54 icons, icon stacking styles, flipping and rotating icons, removed Sass support +- v3.0.2 - much improved rendering and alignment in IE7 +- v3.0.1 - much improved rendering in webkit, various bug fixes +- v3.0.0 - all icons redesigned from scratch, optimized for Bootstrap's 14px default + +## Contributing + +Please read through our [contributing guidelines](https://github.com/FortAwesome/Font-Awesome/blob/master/CONTRIBUTING.md). +Included are directions for opening issues, coding standards, and notes on development. + +## Versioning + +Font Awesome will be maintained under the Semantic Versioning guidelines as much as possible. Releases will be numbered +with the following format: + +`..` + +And constructed with the following guidelines: + +* Breaking backward compatibility bumps the major (and resets the minor and patch) +* New additions, including new icons, without breaking backward compatibility bumps the minor (and resets the patch) +* Bug fixes, changes to brand logos, and misc changes bumps the patch + +For more information on SemVer, please visit http://semver.org. + +## Author +- Email: dave@fontawesome.io +- Twitter: http://twitter.com/davegandy +- GitHub: https://github.com/davegandy + +## Component +To include as a [component](https://github.com/componentjs/component), just run + + $ component install FortAwesome/Font-Awesome + +Or add + + "FortAwesome/Font-Awesome": "*" + +to the `dependencies` in your `component.json`. + +## Hacking on Font Awesome + +**Before you can build the project**, you must first have the following installed: + +- [Ruby](https://www.ruby-lang.org/en/) +- Ruby Development Headers + - **Ubuntu:** `sudo apt-get install ruby-dev` *(Only if you're __NOT__ using `rbenv` or `rvm`)* + - **Windows:** [DevKit](http://rubyinstaller.org/) +- [Bundler](http://bundler.io/) (Run `gem install bundler` to install). +- [Node Package Manager (AKA NPM)](https://docs.npmjs.com/getting-started/installing-node) +- [Less](http://lesscss.org/) (Run `npm install -g less` to install). +- [Less Plugin: Clean CSS](https://github.com/less/less-plugin-clean-css) (Run `npm install -g less-plugin-clean-css` to install). + +From the root of the repository, install the tools used to develop. + + $ bundle install + $ npm install + +Build the project and documentation: + + $ bundle exec jekyll build + +Or serve it on a local server on http://localhost:7998/Font-Awesome/: + + $ bundle exec jekyll -w serve diff --git a/assets/vendors/iconfonts/font-awesome/css/font-awesome.css b/assets/vendors/iconfonts/font-awesome/css/font-awesome.css new file mode 100755 index 0000000..ee906a8 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/css/font-awesome.css @@ -0,0 +1,2337 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url('../fonts/fontawesome-webfont.eot?v=4.7.0'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.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; +} +/* makes the font 33% larger relative to the icon container */ +.fa-lg { + font-size: 1.33333333em; + line-height: 0.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: 0.14285714em; + text-align: center; +} +.fa-li.fa-lg { + left: -1.85714286em; +} +.fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eeeeee; + 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; +} +/* Deprecated as of 4.4.0 */ +.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: #ffffff; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.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; +} diff --git a/assets/vendors/iconfonts/font-awesome/css/font-awesome.css.map b/assets/vendors/iconfonts/font-awesome/css/font-awesome.css.map new file mode 100755 index 0000000..60763a8 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/css/font-awesome.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": ";;;;;;;AAGA,UAUC;EATC,WAAW,EAAE,aAAa;EAC1B,GAAG,EAAE,+CAAgE;EACrE,GAAG,EAAE,ySAAmG;EAKxG,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;ACTpB,GAAmB;EACjB,OAAO,EAAE,YAAY;EACrB,IAAI,EAAE,uCAAwD;EAC9D,SAAS,EAAE,OAAO;EAClB,cAAc,EAAE,IAAI;EACpB,sBAAsB,EAAE,WAAW;EACnC,uBAAuB,EAAE,SAAS;EAClC,SAAS,EAAE,eAAe;;;ACN5B,MAAsB;EACpB,SAAS,EAAE,SAAS;EACpB,WAAW,EAAE,MAAS;EACtB,cAAc,EAAE,IAAI;;AAEtB,MAAsB;EAAE,SAAS,EAAE,GAAG;;AACtC,MAAsB;EAAE,SAAS,EAAE,GAAG;;AACtC,MAAsB;EAAE,SAAS,EAAE,GAAG;;AACtC,MAAsB;EAAE,SAAS,EAAE,GAAG;;ACVtC,MAAsB;EACpB,KAAK,EAAE,SAAW;EAClB,UAAU,EAAE,MAAM;;ACDpB,MAAsB;EACpB,YAAY,EAAE,CAAC;EACf,WAAW,ECKU,SAAS;EDJ9B,eAAe,EAAE,IAAI;EACrB,WAAK;IAAE,QAAQ,EAAE,QAAQ;;AAE3B,MAAsB;EACpB,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,UAAa;EACnB,KAAK,ECFgB,SAAS;EDG9B,GAAG,EAAE,SAAU;EACf,UAAU,EAAE,MAAM;EAClB,YAAuB;IACrB,IAAI,EAAE,UAA0B;;AEbpC,UAA0B;EACxB,OAAO,EAAE,gBAAgB;EACzB,MAAM,EAAE,iBAA4B;EACpC,aAAa,EAAE,IAAI;;AAGrB,WAAY;EAAE,KAAK,EAAE,KAAK;;AAC1B,UAAW;EAAE,KAAK,EAAE,IAAI;;AAGtB,aAAY;EAAE,YAAY,EAAE,IAAI;AAChC,cAAa;EAAE,WAAW,EAAE,IAAI;;ACXlC,QAAwB;EACtB,iBAAiB,EAAE,0BAA0B;EACrC,SAAS,EAAE,0BAA0B;;AAG/C,SAAyB;EACvB,iBAAiB,EAAE,4BAA4B;EACvC,SAAS,EAAE,4BAA4B;;AAGjD,0BASC;EARC,EAAG;IACD,iBAAiB,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;EAEjC,IAAK;IACH,iBAAiB,EAAE,cAAc;IACzB,SAAS,EAAE,cAAc;AAIrC,kBASC;EARC,EAAG;IACD,iBAAiB,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;EAEjC,IAAK;IACH,iBAAiB,EAAE,cAAc;IACzB,SAAS,EAAE,cAAc;AC5BrC,aAA8B;ECY5B,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,aAAgB;EAC/B,aAAa,EAAE,aAAgB;EAC3B,SAAS,EAAE,aAAgB;;ADdrC,cAA8B;ECW5B,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,cAAgB;EAC/B,aAAa,EAAE,cAAgB;EAC3B,SAAS,EAAE,cAAgB;;ADbrC,cAA8B;ECU5B,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,cAAgB;EAC/B,aAAa,EAAE,cAAgB;EAC3B,SAAS,EAAE,cAAgB;;ADXrC,mBAAmC;ECejC,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,YAAoB;EACnC,aAAa,EAAE,YAAoB;EAC/B,SAAS,EAAE,YAAoB;;ADjBzC,iBAAmC;ECcjC,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,YAAoB;EACnC,aAAa,EAAE,YAAoB;EAC/B,SAAS,EAAE,YAAoB;;ADZzC;;;;uBAIuC;EACrC,MAAM,EAAE,IAAI;;AEfd,SAAyB;EACvB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,MAAM;;AAExB,0BAAyD;EACvD,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;;AAEpB,YAA4B;EAAE,WAAW,EAAE,OAAO;;AAClD,YAA4B;EAAE,SAAS,EAAE,GAAG;;AAC5C,WAA2B;EAAE,KAAK,ELVZ,IAAI;;;;AMN1B,gBAAgC;EAAE,OAAO,ENoQ1B,GAAO;;AMnQtB,gBAAgC;EAAE,OAAO,EN0W1B,GAAO;;AMzWtB,iBAAiC;EAAE,OAAO,ENmb1B,GAAO;;AMlbvB,qBAAqC;EAAE,OAAO,ENmL1B,GAAO;;AMlL3B,gBAAgC;EAAE,OAAO,ENkR1B,GAAO;;AMjRtB,eAA+B;EAAE,OAAO,ENke1B,GAAO;;AMjerB,iBAAiC;EAAE,OAAO,ENse1B,GAAO;;AMrevB,eAA+B;EAAE,OAAO,EN+iB1B,GAAO;;AM9iBrB,eAA+B;EAAE,OAAO,ENyN1B,GAAO;;AMxNrB,mBAAmC;EAAE,OAAO,ENggB1B,GAAO;;AM/fzB,aAA6B;EAAE,OAAO,EN8f1B,GAAO;;AM7fnB,kBAAkC;EAAE,OAAO,EN+f1B,GAAO;;AM9fxB,gBAAgC;EAAE,OAAO,ENoG1B,GAAO;;AMnGtB;;gBAEgC;EAAE,OAAO,ENkgB1B,GAAO;;AMjgBtB,sBAAsC;EAAE,OAAO,ENua1B,GAAO;;AMta5B,uBAAuC;EAAE,OAAO,ENqa1B,GAAO;;AMpa7B,oBAAoC;EAAE,OAAO,EN+X1B,GAAO;;AM9X1B,iBAAiC;EAAE,OAAO,ENsb1B,GAAO;;AMrbvB;cAC8B;EAAE,OAAO,ENwH1B,GAAO;;AMvHpB,kBAAkC;EAAE,OAAO,ENygB1B,GAAO;;AMxgBxB,eAA+B;EAAE,OAAO,ENmQ1B,GAAO;;AMlQrB,iBAAiC;EAAE,OAAO,EN6L1B,GAAO;;AM5LvB,kBAAkC;EAAE,OAAO,EN0G1B,GAAO;;AMzGxB,eAA+B;EAAE,OAAO,EN+Y1B,GAAO;;AM9YrB,mBAAmC;EAAE,OAAO,ENiJ1B,GAAO;;AMhJzB,8BAA8C;EAAE,OAAO,ENI1B,GAAO;;AMHpC,4BAA4C;EAAE,OAAO,ENM1B,GAAO;;AMLlC,gBAAgC;EAAE,OAAO,ENkQ1B,GAAO;;AMjQtB,wBAAwC;EAAE,OAAO,EN4W1B,GAAO;;AM3W9B;iBACiC;EAAE,OAAO,ENmY1B,GAAO;;AMlYvB,kBAAkC;EAAE,OAAO,EN8X1B,GAAO;;AM7XxB,mBAAmC;EAAE,OAAO,ENiS1B,GAAO;;AMhSzB,eAA+B;EAAE,OAAO,ENoS1B,GAAO;;AMnSrB,eAA+B;EAAE,OAAO,ENgM1B,GAAO;;AM/LrB,qBAAqC;EAAE,OAAO,EN+O1B,GAAO;;AM9O3B,qBAAqC;EAAE,OAAO,EN8hB1B,GAAO;;AM7hB3B,sBAAsC;EAAE,OAAO,EN4hB1B,GAAO;;AM3hB5B,oBAAoC;EAAE,OAAO,EN6hB1B,GAAO;;AM5hB1B,iBAAiC;EAAE,OAAO,EN2W1B,GAAO;;AM1WvB,kBAAkC;EAAE,OAAO,ENW1B,GAAO;;AMVxB,cAA8B;EAAE,OAAO,ENod1B,GAAO;;AMndpB,eAA+B;EAAE,OAAO,ENod1B,GAAO;;AMndrB,eAA+B;EAAE,OAAO,EN2B1B,GAAO;;AM1BrB,mBAAmC;EAAE,OAAO,EN2B1B,GAAO;;AM1BzB,gBAAgC;EAAE,OAAO,ENkW1B,GAAO;;AMjWtB,iBAAiC;EAAE,OAAO,ENwC1B,GAAO;;AMvCvB,eAA+B;EAAE,OAAO,EN8L1B,GAAO;;AM7LrB,eAA+B;EAAE,OAAO,ENmB1B,GAAO;;AMlBrB,iBAAiC;EAAE,OAAO,ENoP1B,GAAO;;AMnPvB,sBAAsC;EAAE,OAAO,ENid1B,GAAO;;AMhd5B,qBAAqC;EAAE,OAAO,ENid1B,GAAO;;AMhd3B,qBAAqC;EAAE,OAAO,EN1C1B,GAAO;;AM2C3B,uBAAuC;EAAE,OAAO,EN7C1B,GAAO;;AM8C7B,sBAAsC;EAAE,OAAO,EN3C1B,GAAO;;AM4C5B,wBAAwC;EAAE,OAAO,EN9C1B,GAAO;;AM+C9B,eAA+B;EAAE,OAAO,ENwQ1B,GAAO;;AMvQrB;kBACkC;EAAE,OAAO,ENmT1B,GAAO;;AMlTxB,iBAAiC;EAAE,OAAO,ENmO1B,GAAO;;AMlOvB,uBAAuC;EAAE,OAAO,ENigB1B,GAAO;;AMhgB7B;;oBAEoC;EAAE,OAAO,EN+T1B,GAAO;;AM9T1B,iBAAiC;EAAE,OAAO,ENwT1B,GAAO;;AMvTvB,qBAAqC;EAAE,OAAO,EN+Q1B,GAAO;;AM9Q3B,iBAAiC;EAAE,OAAO,EN5D1B,GAAO;;AM6DvB,eAA+B;EAAE,OAAO,EN8c1B,GAAO;;AM7crB;0BAC0C;EAAE,OAAO,ENqT1B,GAAO;;AMpThC,yBAAyC;EAAE,OAAO,ENuX1B,GAAO;;AMtX/B,yBAAyC;EAAE,OAAO,EN0C1B,GAAO;;AMzC/B,iBAAiC;EAAE,OAAO,ENjC1B,GAAO;;AMkCvB,wBAAwC;EAAE,OAAO,ENma1B,GAAO;;AMla9B,wBAAwC;EAAE,OAAO,EN4H1B,GAAO;;AM3H9B,mBAAmC;EAAE,OAAO,EN7B1B,GAAO;;AM8BzB,eAA+B;EAAE,OAAO,EN0T1B,GAAO;;AMzTrB,gBAAgC;EAAE,OAAO,ENwS1B,GAAO;;AMvStB,eAA+B;EAAE,OAAO,ENia1B,GAAO;;AMharB,kBAAkC;EAAE,OAAO,ENgK1B,GAAO;;AM/JxB,uBAAuC;EAAE,OAAO,ENuH1B,GAAO;;AMtH7B,uBAAuC;EAAE,OAAO,EN4Z1B,GAAO;;AM3Z7B,gBAAgC;EAAE,OAAO,EN4F1B,GAAO;;AM3FtB,uBAAuC;EAAE,OAAO,ENoC1B,GAAO;;AMnC7B,wBAAwC;EAAE,OAAO,ENoC1B,GAAO;;AMnC9B,sBAAsC;EAAE,OAAO,ENsT1B,GAAO;;AMrT5B,uBAAuC;EAAE,OAAO,ENyQ1B,GAAO;;AMxQ7B,uBAAuC;EAAE,OAAO,ENwb1B,GAAO;;AMvb7B,uBAAuC;EAAE,OAAO,ENsB1B,GAAO;;AMrB7B,0BAA0C;EAAE,OAAO,EN2T1B,GAAO;;AM1ThC,sBAAsC;EAAE,OAAO,ENsM1B,GAAO;;AMrM5B,qBAAqC;EAAE,OAAO,EN6D1B,GAAO;;AM5D3B,yBAAyC;EAAE,OAAO,ENob1B,GAAO;;AMnb/B,yBAAyC;EAAE,OAAO,ENkB1B,GAAO;;AMjB/B,cAA8B;EAAE,OAAO,EN/C1B,GAAO;;AMgDpB,qBAAqC;EAAE,OAAO,EN3D1B,GAAO;;AM4D3B,sBAAsC;EAAE,OAAO,EN3D1B,GAAO;;AM4D5B,mBAAmC;EAAE,OAAO,EN3D1B,GAAO;;AM4DzB,qBAAqC;EAAE,OAAO,EN/D1B,GAAO;;AMgE3B;gBACgC;EAAE,OAAO,ENqV1B,GAAO;;AMpVtB,iBAAiC;EAAE,OAAO,ENuF1B,GAAO;;AMtFvB,mBAAmC;EAAE,OAAO,EN4C1B,GAAO;;AM3CzB,eAA+B;EAAE,OAAO,ENmS1B,GAAO;;AMlSrB,gBAAgC;EAAE,OAAO,ENsP1B,GAAO;;AMrPtB,mBAAmC;EAAE,OAAO,EN9D1B,GAAO;;AM+DzB,6BAA6C;EAAE,OAAO,ENgF1B,GAAO;;AM/EnC,eAA+B;EAAE,OAAO,EN+I1B,GAAO;;AM9IrB,eAA+B;EAAE,OAAO,ENoM1B,GAAO;;AMnMrB,eAA+B;EAAE,OAAO,ENmH1B,GAAO;;AMlHrB,cAA8B;EAAE,OAAO,ENiF1B,GAAO;;AMhFpB,oBAAoC;EAAE,OAAO,ENiF1B,GAAO;;AMhF1B;+BAC+C;EAAE,OAAO,EN0E1B,GAAO;;AMzErC,gBAAgC;EAAE,OAAO,ENmR1B,GAAO;;AMlRtB,mBAAmC;EAAE,OAAO,EN/B1B,GAAO;;AMgCzB,iBAAiC;EAAE,OAAO,ENoS1B,GAAO;;AMnSvB,kBAAkC;EAAE,OAAO,ENwB1B,GAAO;;AMvBxB,iBAAiC;EAAE,OAAO,ENqN1B,GAAO;;AMpNvB,qBAAqC;EAAE,OAAO,ENE1B,GAAO;;AMD3B,uBAAuC;EAAE,OAAO,ENF1B,GAAO;;AMG7B,kBAAkC;EAAE,OAAO,EN2S1B,GAAO;;AM1SxB,wBAAwC;EAAE,OAAO,ENyU1B,GAAO;;AMxU9B,iBAAiC;EAAE,OAAO,EN8G1B,GAAO;;AM7GvB,sBAAsC;EAAE,OAAO,EN+G1B,GAAO;;AM9G5B,mBAAmC;EAAE,OAAO,ENnF1B,GAAO;;AMoFzB,mBAAmC;EAAE,OAAO,ENrF1B,GAAO;;AMsFzB;oBACoC;EAAE,OAAO,EN/E1B,GAAO;;AMgF1B,yBAAyC;EAAE,OAAO,ENua1B,GAAO;;AMta/B,0BAA0C;EAAE,OAAO,ENmE1B,GAAO;;AMlEhC,uBAAuC;EAAE,OAAO,EN5C1B,GAAO;;AM6C7B,cAA8B;EAAE,OAAO,ENqK1B,GAAO;;AMpKpB;eAC+B;EAAE,OAAO,ENK1B,GAAO;;AMJrB,mBAAmC;EAAE,OAAO,ENQ1B,GAAO;;AMPzB,sBAAsC;EAAE,OAAO,ENmY1B,GAAO;;AMlY5B,wBAAwC;EAAE,OAAO,ENiY1B,GAAO;;AMhY9B,oBAAoC;EAAE,OAAO,EN2V1B,GAAO;;AM1V1B,kBAAkC;EAAE,OAAO,ENyI1B,GAAO;;AMxIxB,mBAAmC;EAAE,OAAO,ENyT1B,GAAO;;AMxTzB,0BAA0C;EAAE,OAAO,ENiL1B,GAAO;;AMhLhC,qBAAqC;EAAE,OAAO,EN0X1B,GAAO;;AMzX3B,wBAAwC;EAAE,OAAO,EN8C1B,GAAO;;AM7C9B,kBAAkC;EAAE,OAAO,ENoT1B,GAAO;;AMnTxB,iBAAiC;EAAE,OAAO,EN8Y1B,GAAO;;AM7YvB,wBAAwC;EAAE,OAAO,EN6G1B,GAAO;;AM5G9B,iBAAiC;EAAE,OAAO,EN8Z1B,GAAO;;AM7ZvB,kBAAkC;EAAE,OAAO,EN+J1B,GAAO;;AM9JxB,gBAAgC;EAAE,OAAO,ENsO1B,GAAO;;AMrOtB,mBAAmC;EAAE,OAAO,EN2U1B,GAAO;;AM1UzB,qBAAqC;EAAE,OAAO,EN/E1B,GAAO;;AMgF3B,uBAAuC;EAAE,OAAO,ENoO1B,GAAO;;AMnO7B,kBAAkC;EAAE,OAAO,EN8Y1B,GAAO;;AM7YxB;mBACmC;EAAE,OAAO,ENuC1B,GAAO;;AMtCzB,iBAAiC;EAAE,OAAO,ENiG1B,GAAO;;AMhGvB,iBAAiC;EAAE,OAAO,ENiZ1B,GAAO;;AMhZvB,sBAAsC;EAAE,OAAO,ENR1B,GAAO;;AMS5B,cAA8B;EAAE,OAAO,EN4Q1B,GAAO;;AM3QpB,gBAAgC;EAAE,OAAO,ENgH1B,GAAO;;AM/GtB,mBAAmC;EAAE,OAAO,ENnF1B,GAAO;;AMoFzB,eAA+B;EAAE,OAAO,ENzG1B,GAAO;;AM0GrB,sBAAsC;EAAE,OAAO,ENzD1B,GAAO;;AM0D5B,uBAAuC;EAAE,OAAO,EN0G1B,GAAO;;AMzG7B,sBAAsC;EAAE,OAAO,ENwG1B,GAAO;;AMvG5B,oBAAoC;EAAE,OAAO,ENyG1B,GAAO;;AMxG1B,sBAAsC;EAAE,OAAO,ENqG1B,GAAO;;AMpG5B,4BAA4C;EAAE,OAAO,EN5I1B,GAAO;;AM6IlC,6BAA6C;EAAE,OAAO,ENxI1B,GAAO;;AMyInC,0BAA0C;EAAE,OAAO,ENxI1B,GAAO;;AMyIhC,4BAA4C;EAAE,OAAO,ENhJ1B,GAAO;;AMiJlC,gBAAgC;EAAE,OAAO,ENsF1B,GAAO;;AMrFtB,iBAAiC;EAAE,OAAO,ENia1B,GAAO;;AMhavB,gBAAgC;EAAE,OAAO,ENiV1B,GAAO;;AMhVtB,iBAAiC;EAAE,OAAO,ENgD1B,GAAO;;AM/CvB,oBAAoC;EAAE,OAAO,ENvG1B,GAAO;;AMwG1B,qBAAqC;EAAE,OAAO,ENzI1B,GAAO;;AM0I3B;gBACgC;EAAE,OAAO,ENqY1B,GAAO;;AMpYtB;eAC+B;EAAE,OAAO,ENuI1B,GAAO;;AMtIrB,gBAAgC;EAAE,OAAO,ENpD1B,GAAO;;AMqDtB,gBAAgC;EAAE,OAAO,EN+C1B,GAAO;;AM9CtB;mBACmC;EAAE,OAAO,ENwP1B,GAAO;;AMvPzB;kBACkC;EAAE,OAAO,ENkC1B,GAAO;;AMjCxB,oBAAoC;EAAE,OAAO,ENsL1B,GAAO;;AMrL1B;mBACmC;EAAE,OAAO,EN0C1B,GAAO;;AMzCzB,iBAAiC;EAAE,OAAO,ENiS1B,GAAO;;AMhSvB;;eAE+B;EAAE,OAAO,EN9I1B,GAAO;;AM+IrB,kBAAkC;EAAE,OAAO,ENgI1B,GAAO;;AM/HxB,kBAAkC;EAAE,OAAO,EN8H1B,GAAO;;AM7HxB,wBAAwC;EAAE,OAAO,EN4S1B,GAAO;;AM3S9B,oBAAoC;EAAE,OAAO,ENoW1B,GAAO;;AMnW1B,gBAAgC;EAAE,OAAO,ENmT1B,GAAO;;AMlTtB,gBAAgC;EAAE,OAAO,ENkI1B,GAAO;;AMjItB,gBAAgC;EAAE,OAAO,ENuV1B,GAAO;;AMtVtB,oBAAoC;EAAE,OAAO,ENwL1B,GAAO;;AMvL1B,2BAA2C;EAAE,OAAO,ENyL1B,GAAO;;AMxLjC,6BAA6C;EAAE,OAAO,ENyD1B,GAAO;;AMxDnC,sBAAsC;EAAE,OAAO,ENuD1B,GAAO;;AMtD5B,gBAAgC;EAAE,OAAO,ENsJ1B,GAAO;;AMrJtB,qBAAqC;EAAE,OAAO,ENtH1B,GAAO;;AMuH3B,mBAAmC;EAAE,OAAO,ENhH1B,GAAO;;AMiHzB,qBAAqC;EAAE,OAAO,ENvH1B,GAAO;;AMwH3B,sBAAsC;EAAE,OAAO,ENvH1B,GAAO;;AMwH5B,kBAAkC;EAAE,OAAO,ENvE1B,GAAO;;AMwExB;eAC+B;EAAE,OAAO,EN2P1B,GAAO;;AM1PrB;oBACoC;EAAE,OAAO,EN+P1B,GAAO;;AM9P1B;mBACmC;EAAE,OAAO,EN4P1B,GAAO;;AM3PzB,mBAAmC;EAAE,OAAO,ENxC1B,GAAO;;AMyCzB,mBAAmC;EAAE,OAAO,ENkG1B,GAAO;;AMjGzB;eAC+B;EAAE,OAAO,EN8U1B,GAAO;;AM7UrB;gBACgC;EAAE,OAAO,ENqB1B,GAAO;;AMpBtB;qBACqC;EAAE,OAAO,EN2R1B,GAAO;;AM1R3B,oBAAoC;EAAE,OAAO,ENpF1B,GAAO;;AMqF1B,qBAAqC;EAAE,OAAO,ENnF1B,GAAO;;AMoF3B;eAC+B;EAAE,OAAO,ENjK1B,GAAO;;AMkKrB,kBAAkC;EAAE,OAAO,ENkO1B,GAAO;;AMjOxB,mBAAmC;EAAE,OAAO,ENkU1B,GAAO;;AMjUzB;oBACoC;EAAE,OAAO,EN1G1B,GAAO;;AM2G1B,sBAAsC;EAAE,OAAO,ENgF1B,GAAO;;AM/E5B,mBAAmC;EAAE,OAAO,ENnD1B,GAAO;;AMoDzB,yBAAyC;EAAE,OAAO,ENzG1B,GAAO;;AM0G/B,uBAAuC;EAAE,OAAO,ENzG1B,GAAO;;AM0G7B,kBAAkC;EAAE,OAAO,ENsU1B,GAAO;;AMrUxB,sBAAsC;EAAE,OAAO,EN+P1B,GAAO;;AM9P5B,mBAAmC;EAAE,OAAO,ENsQ1B,GAAO;;AMrQzB,iBAAiC;EAAE,OAAO,ENvL1B,GAAO;;AMwLvB,iBAAiC;EAAE,OAAO,ENzG1B,GAAO;;AM0GvB,kBAAkC;EAAE,OAAO,ENtF1B,GAAO;;AMuFxB,sBAAsC;EAAE,OAAO,EN3B1B,GAAO;;AM4B5B,qBAAqC;EAAE,OAAO,ENxK1B,GAAO;;AMyK3B,qBAAqC;EAAE,OAAO,ENkC1B,GAAO;;AMjC3B,oBAAoC;EAAE,OAAO,EN3O1B,GAAO;;AM4O1B,iBAAiC;EAAE,OAAO,ENiG1B,GAAO;;AMhGvB,sBAAsC;EAAE,OAAO,EN/C1B,GAAO;;AMgD5B,eAA+B;EAAE,OAAO,ENpM1B,GAAO;;AMqMrB,mBAAmC;EAAE,OAAO,ENe1B,GAAO;;AMdzB,sBAAsC;EAAE,OAAO,ENgJ1B,GAAO;;AM/I5B,4BAA4C;EAAE,OAAO,EN5O1B,GAAO;;AM6OlC,6BAA6C;EAAE,OAAO,EN5O1B,GAAO;;AM6OnC,0BAA0C;EAAE,OAAO,EN5O1B,GAAO;;AM6OhC,4BAA4C;EAAE,OAAO,ENhP1B,GAAO;;AMiPlC,qBAAqC;EAAE,OAAO,EN5O1B,GAAO;;AM6O3B,sBAAsC;EAAE,OAAO,EN5O1B,GAAO;;AM6O5B,mBAAmC;EAAE,OAAO,EN5O1B,GAAO;;AM6OzB,qBAAqC;EAAE,OAAO,ENhP1B,GAAO;;AMiP3B,kBAAkC;EAAE,OAAO,ENlG1B,GAAO;;AMmGxB,iBAAiC;EAAE,OAAO,ENuC1B,GAAO;;AMtCvB,iBAAiC;EAAE,OAAO,ENoP1B,GAAO;;AMnPvB;iBACiC;EAAE,OAAO,ENyF1B,GAAO;;AMxFvB,mBAAmC;EAAE,OAAO,EN9I1B,GAAO;;AM+IzB,qBAAqC;EAAE,OAAO,EN0I1B,GAAO;;AMzI3B,sBAAsC;EAAE,OAAO,EN0I1B,GAAO;;AMzI5B,kBAAkC;EAAE,OAAO,ENgN1B,GAAO;;AM/MxB,iBAAiC;EAAE,OAAO,ENnJ1B,GAAO;;AMoJvB;gBACgC;EAAE,OAAO,ENkJ1B,GAAO;;AMjJtB,qBAAqC;EAAE,OAAO,ENnB1B,GAAO;;AMoB3B,mBAAmC;EAAE,OAAO,ENxC1B,GAAO;;AMyCzB,wBAAwC;EAAE,OAAO,ENvC1B,GAAO;;AMwC9B,kBAAkC;EAAE,OAAO,EN0L1B,GAAO;;AMzLxB,kBAAkC;EAAE,OAAO,ENpC1B,GAAO;;AMqCxB,gBAAgC;EAAE,OAAO,ENoE1B,GAAO;;AMnEtB,kBAAkC;EAAE,OAAO,ENpC1B,GAAO;;AMqCxB,qBAAqC;EAAE,OAAO,ENkB1B,GAAO;;AMjB3B,iBAAiC;EAAE,OAAO,ENrD1B,GAAO;;AMsDvB,yBAAyC;EAAE,OAAO,ENvD1B,GAAO;;AMwD/B,mBAAmC;EAAE,OAAO,ENuO1B,GAAO;;AMtOzB,eAA+B;EAAE,OAAO,ENtJ1B,GAAO;;AMuJrB;oBACoC;EAAE,OAAO,ENqI1B,GAAO;;AMpI1B;;sBAEsC;EAAE,OAAO,ENuM1B,GAAO;;AMtM5B,yBAAyC;EAAE,OAAO,ENkC1B,GAAO;;AMjC/B,eAA+B;EAAE,OAAO,EN5I1B,GAAO;;AM6IrB,oBAAoC;EAAE,OAAO,EN7J1B,GAAO;;AM8J1B;uBACuC;EAAE,OAAO,EN1L1B,GAAO;;AM2L7B,mBAAmC;EAAE,OAAO,EN4G1B,GAAO;;AM3GzB,eAA+B;EAAE,OAAO,ENT1B,GAAO;;AMUrB,sBAAsC;EAAE,OAAO,ENhH1B,GAAO;;AMiH5B,sBAAsC;EAAE,OAAO,EN8M1B,GAAO;;AM7M5B,oBAAoC;EAAE,OAAO,ENyM1B,GAAO;;AMxM1B,iBAAiC;EAAE,OAAO,ENvH1B,GAAO;;AMwHvB,uBAAuC;EAAE,OAAO,ENmG1B,GAAO;;AMlG7B,qBAAqC;EAAE,OAAO,EN8C1B,GAAO;;AM7C3B,2BAA2C;EAAE,OAAO,EN8C1B,GAAO;;AM7CjC,iBAAiC;EAAE,OAAO,ENgJ1B,GAAO;;AM/IvB,qBAAqC;EAAE,OAAO,EN5N1B,GAAO;;AM6N3B,4BAA4C;EAAE,OAAO,ENjF1B,GAAO;;AMkFlC,iBAAiC;EAAE,OAAO,ENoH1B,GAAO;;AMnHvB,iBAAiC;EAAE,OAAO,ENkC1B,GAAO;;AMjCvB,8BAA8C;EAAE,OAAO,ENlM1B,GAAO;;AMmMpC,+BAA+C;EAAE,OAAO,ENlM1B,GAAO;;AMmMrC,4BAA4C;EAAE,OAAO,ENlM1B,GAAO;;AMmMlC,8BAA8C;EAAE,OAAO,ENtM1B,GAAO;;AMuMpC,gBAAgC;EAAE,OAAO,EN/B1B,GAAO;;AMgCtB,eAA+B;EAAE,OAAO,ENjK1B,GAAO;;AMkKrB,iBAAiC;EAAE,OAAO,EN9S1B,GAAO;;AM+SvB,qBAAqC;EAAE,OAAO,ENmP1B,GAAO;;AMlP3B,mBAAmC;EAAE,OAAO,EN9O1B,GAAO;;AM+OzB,qBAAqC;EAAE,OAAO,EN/I1B,GAAO;;AMgJ3B,qBAAqC;EAAE,OAAO,EN/I1B,GAAO;;AMgJ3B,qBAAqC;EAAE,OAAO,EN4G1B,GAAO;;AM3G3B,sBAAsC;EAAE,OAAO,ENsE1B,GAAO;;AMrE5B,iBAAiC;EAAE,OAAO,EN2M1B,GAAO;;AM1MvB,uBAAuC;EAAE,OAAO,EN6B1B,GAAO;;AM5B7B,yBAAyC;EAAE,OAAO,EN6B1B,GAAO;;AM5B/B,mBAAmC;EAAE,OAAO,ENhB1B,GAAO;;AMiBzB,qBAAqC;EAAE,OAAO,ENlB1B,GAAO;;AMmB3B,uBAAuC;EAAE,OAAO,ENvN1B,GAAO;;AMwN7B,wBAAwC;EAAE,OAAO,ENiD1B,GAAO;;AMhD9B,+BAA+C;EAAE,OAAO,EN3I1B,GAAO;;AM4IrC,uBAAuC;EAAE,OAAO,ENkH1B,GAAO;;AMjH7B,kBAAkC;EAAE,OAAO,EN1L1B,GAAO;;AM2LxB;8BAC8C;EAAE,OAAO,ENjP1B,GAAO;;AMkPpC;4BAC4C;EAAE,OAAO,ENhP1B,GAAO;;AMiPlC;+BAC+C;EAAE,OAAO,ENnP1B,GAAO;;AMoPrC;cAC8B;EAAE,OAAO,EN7J1B,GAAO;;AM8JpB,cAA8B;EAAE,OAAO,EN/F1B,GAAO;;AMgGpB;cAC8B;EAAE,OAAO,EN4N1B,GAAO;;AM3NpB;cAC8B;EAAE,OAAO,ENvD1B,GAAO;;AMwDpB;;;cAG8B;EAAE,OAAO,ENrD1B,GAAO;;AMsDpB;;cAE8B;EAAE,OAAO,EN8E1B,GAAO;;AM7EpB;cAC8B;EAAE,OAAO,ENtD1B,GAAO;;AMuDpB;cAC8B;EAAE,OAAO,ENzR1B,GAAO;;AM0RpB,eAA+B;EAAE,OAAO,ENzJ1B,GAAO;;AM0JrB,oBAAoC;EAAE,OAAO,EN7I1B,GAAO;;AM8I1B,yBAAyC;EAAE,OAAO,EN2G1B,GAAO;;AM1G/B,0BAA0C;EAAE,OAAO,EN2G1B,GAAO;;AM1GhC,0BAA0C;EAAE,OAAO,EN2G1B,GAAO;;AM1GhC,2BAA2C;EAAE,OAAO,EN2G1B,GAAO;;AM1GjC,2BAA2C;EAAE,OAAO,EN8G1B,GAAO;;AM7GjC,4BAA4C;EAAE,OAAO,EN8G1B,GAAO;;AM7GlC,oBAAoC;EAAE,OAAO,ENgK1B,GAAO;;AM/J1B,sBAAsC;EAAE,OAAO,EN4J1B,GAAO;;AM3J5B,yBAAyC;EAAE,OAAO,ENwO1B,GAAO;;AMvO/B,kBAAkC;EAAE,OAAO,ENqO1B,GAAO;;AMpOxB,eAA+B;EAAE,OAAO,EN+N1B,GAAO;;AM9NrB,sBAAsC;EAAE,OAAO,EN+N1B,GAAO;;AM9N5B,uBAAuC;EAAE,OAAO,ENmO1B,GAAO;;AMlO7B,kBAAkC;EAAE,OAAO,ENxM1B,GAAO;;AMyMxB,yBAAyC;EAAE,OAAO,EN+G1B,GAAO;;AM9G/B,oBAAoC;EAAE,OAAO,ENnF1B,GAAO;;AMoF1B,iBAAiC;EAAE,OAAO,EN/I1B,GAAO;;AMgJvB,cAA8B;EAAE,OAAO,ENhX1B,GAAO;;AMiXpB,oBAAoC;EAAE,OAAO,ENxT1B,GAAO;;AMyT1B,2BAA2C;EAAE,OAAO,ENxT1B,GAAO;;AMyTjC,iBAAiC;EAAE,OAAO,ENyK1B,GAAO;;AMxKvB,wBAAwC;EAAE,OAAO,ENyK1B,GAAO;;AMxK9B,0BAA0C;EAAE,OAAO,ENtD1B,GAAO;;AMuDhC,wBAAwC;EAAE,OAAO,ENpD1B,GAAO;;AMqD9B,0BAA0C;EAAE,OAAO,ENvD1B,GAAO;;AMwDhC,2BAA2C;EAAE,OAAO,ENvD1B,GAAO;;AMwDjC,gBAAgC;EAAE,OAAO,ENxW1B,GAAO;;AMyWtB,kBAAkC;EAAE,OAAO,EN0M1B,GAAO;;AMzMxB,kBAAkC;EAAE,OAAO,ENpX1B,GAAO;;AMqXxB,gBAAgC;EAAE,OAAO,ENpE1B,GAAO;;AMqEtB,mBAAmC;EAAE,OAAO,EN1N1B,GAAO;;AM2NzB,gBAAgC;EAAE,OAAO,ENqE1B,GAAO;;AMpEtB,qBAAqC;EAAE,OAAO,ENtJ1B,GAAO;;AMuJ3B,iBAAiC;EAAE,OAAO,ENuJ1B,GAAO;;AMtJvB,iBAAiC;EAAE,OAAO,EN/L1B,GAAO;;AMgMvB,eAA+B;EAAE,OAAO,EN1D1B,GAAO;;AM2DrB;mBACmC;EAAE,OAAO,ENnI1B,GAAO;;AMoIzB,gBAAgC;EAAE,OAAO,EN2G1B,GAAO;;AM1GtB,iBAAiC;EAAE,OAAO,ENxC1B,GAAO;;AMyCvB,kBAAkC;EAAE,OAAO,ENrX1B,GAAO;;AMsXxB,cAA8B;EAAE,OAAO,ENpU1B,GAAO;;AMqUpB,aAA6B;EAAE,OAAO,ENgL1B,GAAO;;AM/KnB,gBAAgC;EAAE,OAAO,ENqL1B,GAAO;;AMpLtB,iBAAiC;EAAE,OAAO,ENa1B,GAAO;;AMZvB,oBAAoC;EAAE,OAAO,ENrC1B,GAAO;;AMsC1B,yBAAyC;EAAE,OAAO,EN8E1B,GAAO;;AM7E/B,+BAA+C;EAAE,OAAO,ENtX1B,GAAO;;AMuXrC,8BAA8C;EAAE,OAAO,ENxX1B,GAAO;;AMyXpC;8BAC8C;EAAE,OAAO,EN3T1B,GAAO;;AM4TpC,uBAAuC;EAAE,OAAO,ENjP1B,GAAO;;AMkP7B,qBAAqC;EAAE,OAAO,EN+K1B,GAAO;;AM9K3B,uBAAuC;EAAE,OAAO,ENmK1B,GAAO;;AMlK7B;cAC8B;EAAE,OAAO,ENoI1B,GAAO;;AMnIpB,wBAAwC;EAAE,OAAO,ENjB1B,GAAO;;AMkB9B,wBAAwC;EAAE,OAAO,EN6D1B,GAAO;;AM5D9B,gBAAgC;EAAE,OAAO,EN2C1B,GAAO;;AM1CtB,0BAA0C;EAAE,OAAO,EN7O1B,GAAO;;AM8OhC,oBAAoC;EAAE,OAAO,EN2K1B,GAAO;;AM1K1B,iBAAiC;EAAE,OAAO,ENvD1B,GAAO;;AMwDvB;;qBAEqC;EAAE,OAAO,ENsI1B,GAAO;;AMrI3B;yBACyC;EAAE,OAAO,ENjK1B,GAAO;;AMkK/B,gBAAgC;EAAE,OAAO,ENwK1B,GAAO;;AMvKtB,iBAAiC;EAAE,OAAO,ENvK1B,GAAO;;AMwKvB,iBAAiC;EAAE,OAAO,ENhB1B,GAAO;;AMiBvB,wBAAwC;EAAE,OAAO,ENhB1B,GAAO;;AMiB9B,6BAA6C;EAAE,OAAO,ENsE1B,GAAO;;AMrEnC,sBAAsC;EAAE,OAAO,ENoE1B,GAAO;;AMnE5B,oBAAoC;EAAE,OAAO,EN7Q1B,GAAO;;AM8Q1B,eAA+B;EAAE,OAAO,EN1Q1B,GAAO;;AM2QrB,qBAAqC;EAAE,OAAO,ENjD1B,GAAO;;AMkD3B,yBAAyC;EAAE,OAAO,ENjD1B,GAAO;;AMkD/B,iBAAiC;EAAE,OAAO,ENvQ1B,GAAO;;AMwQvB,iBAAiC;EAAE,OAAO,EN9I1B,GAAO;;AM+IvB,mBAAmC;EAAE,OAAO,ENzI1B,GAAO;;AM0IzB,cAA8B;EAAE,OAAO,EN9O1B,GAAO;;AM+OpB,mBAAmC;EAAE,OAAO,EN3W1B,GAAO;;AM4WzB,gBAAgC;EAAE,OAAO,EN9T1B,GAAO;;AM+TtB,cAA8B;EAAE,OAAO,ENnE1B,GAAO;;AMoEpB,gBAAgC;EAAE,OAAO,ENoC1B,GAAO;;AMnCtB,eAA+B;EAAE,OAAO,ENjS1B,GAAO;;AMkSrB,gBAAgC;EAAE,OAAO,ENjS1B,GAAO;;AMkStB,kBAAkC;EAAE,OAAO,ENtY1B,GAAO;;AMuYxB,yBAAyC;EAAE,OAAO,ENtY1B,GAAO;;AMuY/B,gBAAgC;EAAE,OAAO,EN2C1B,GAAO;;AM1CtB,uBAAuC;EAAE,OAAO,EN2C1B,GAAO;;AM1C7B,kBAAkC;EAAE,OAAO,ENvC1B,GAAO;;AMwCxB;cAC8B;EAAE,OAAO,EN3W1B,GAAO;;AM4WpB;eAC+B;EAAE,OAAO,EN2D1B,GAAO;;AM1DrB,eAA+B;EAAE,OAAO,ENuF1B,GAAO;;AMtFrB,kBAAkC;EAAE,OAAO,ENwB1B,GAAO;;AMvBxB,qBAAqC;EAAE,OAAO,ENpS1B,GAAO;;AMqS3B,qBAAqC;EAAE,OAAO,ENkB1B,GAAO;;AMjB3B,mBAAmC;EAAE,OAAO,EN1S1B,GAAO;;AM2SzB,qBAAqC;EAAE,OAAO,ENxP1B,GAAO;;AMyP3B,sBAAsC;EAAE,OAAO,ENjP1B,GAAO;;AMkP5B,uBAAuC;EAAE,OAAO,EN9P1B,GAAO;;AM+P7B,4BAA4C;EAAE,OAAO,ENxP1B,GAAO;;AMyPlC;;uBAEuC;EAAE,OAAO,ENjQ1B,GAAO;;AMkQ7B;yBACyC;EAAE,OAAO,ENvQ1B,GAAO;;AMwQ/B;uBACuC;EAAE,OAAO,ENxQ1B,GAAO;;AMyQ7B;uBACuC;EAAE,OAAO,EN7P1B,GAAO;;AM8P7B,sBAAsC;EAAE,OAAO,EN1Q1B,GAAO;;AM2Q5B,eAA+B;EAAE,OAAO,ENsG1B,GAAO;;AMrGrB,kBAAkC;EAAE,OAAO,ENlV1B,GAAO;;AMmVxB,mBAAmC;EAAE,OAAO,ENnL1B,GAAO;;AMoLzB;;;;oBAIoC;EAAE,OAAO,ENxK1B,GAAO;;AMyK1B,yBAAyC;EAAE,OAAO,ENpW1B,GAAO;;AMqW/B;gBACgC;EAAE,OAAO,EN1E1B,GAAO;;AM2EtB;iBACiC;EAAE,OAAO,ENpT1B,GAAO;;AMqTvB,qBAAqC;EAAE,OAAO,EN1O1B,GAAO;;AM2O3B,cAA8B;EAAE,OAAO,EN5O1B,GAAO;;AM6OpB,sBAAsC;EAAE,OAAO,EN7N1B,GAAO;;AM8N5B,wBAAwC;EAAE,OAAO,ENwB1B,GAAO;;AMvB9B,aAA6B;EAAE,OAAO,ENzF1B,GAAO;;AM0FnB;iBACiC;EAAE,OAAO,EN2F1B,GAAO;;AM1FvB;sBACsC;EAAE,OAAO,EN9H1B,GAAO;;AM+H5B;wBACwC;EAAE,OAAO,EN/H1B,GAAO;;AMgI9B,kBAAkC;EAAE,OAAO,EN3N1B,GAAO;;AM4NxB;sBACsC;EAAE,OAAO,ENrX1B,GAAO;;AMsX5B,iBAAiC;EAAE,OAAO,ENnO1B,GAAO;;AMoOvB,oBAAoC;EAAE,OAAO,ENlI1B,GAAO;;AMmI1B,kBAAkC;EAAE,OAAO,EN1C1B,GAAO;;AM2CxB,oBAAoC;EAAE,OAAO,EN7D1B,GAAO;;AM8D1B,2BAA2C;EAAE,OAAO,EN7D1B,GAAO;;AM8DjC,eAA+B;EAAE,OAAO,ENpb1B,GAAO;;AMqbrB;mBACmC;EAAE,OAAO,ENzQ1B,GAAO;;AM0QzB,cAA8B;EAAE,OAAO,ENsC1B,GAAO;;AMrCpB,qBAAqC;EAAE,OAAO,EN/b1B,GAAO;;AMgc3B,eAA+B;EAAE,OAAO,ENrH1B,GAAO;;AMsHrB,qBAAqC;EAAE,OAAO,ENlD1B,GAAO;;AMmD3B,iBAAiC;EAAE,OAAO,ENsC1B,GAAO;;AMrCvB,eAA+B;EAAE,OAAO,ENiF1B,GAAO;;AMhFrB,sBAAsC;EAAE,OAAO,ENvJ1B,GAAO;;AMwJ5B,eAA+B;EAAE,OAAO,ENuE1B,GAAO;;AMtErB,qBAAqC;EAAE,OAAO,ENjb1B,GAAO;;AMkb3B,iBAAiC;EAAE,OAAO,EN9I1B,GAAO;;AM+IvB,wBAAwC;EAAE,OAAO,ENhQ1B,GAAO;;AMiQ9B,kBAAkC;EAAE,OAAO,EN9Z1B,GAAO;;AM+ZxB,wBAAwC;EAAE,OAAO,ENla1B,GAAO;;AMma9B,sBAAsC;EAAE,OAAO,ENpa1B,GAAO;;AMqa5B,kBAAkC;EAAE,OAAO,ENta1B,GAAO;;AMuaxB,oBAAoC;EAAE,OAAO,ENpa1B,GAAO;;AMqa1B,oBAAoC;EAAE,OAAO,ENpa1B,GAAO;;AMqa1B,qBAAqC;EAAE,OAAO,ENld1B,GAAO;;AMmd3B,uBAAuC;EAAE,OAAO,ENld1B,GAAO;;AMmd7B,gBAAgC;EAAE,OAAO,ENY1B,GAAO;;AMXtB,oBAAoC;EAAE,OAAO,EN3X1B,GAAO;;AM4X1B,aAA6B;EAAE,OAAO,ENre1B,GAAO;;AMsenB,qBAAqC;EAAE,OAAO,ENjV1B,GAAO;;AMkV3B,sBAAsC;EAAE,OAAO,ENpK1B,GAAO;;AMqK5B,wBAAwC;EAAE,OAAO,ENrd1B,GAAO;;AMsd9B,qBAAqC;EAAE,OAAO,EN3f1B,GAAO;;AM4f3B,oBAAoC;EAAE,OAAO,ENvJ1B,GAAO;;AMwJ1B,qBAAqC;EAAE,OAAO,EN5N1B,GAAO;;AM6N3B,iBAAiC;EAAE,OAAO,EN1O1B,GAAO;;AM2OvB,wBAAwC;EAAE,OAAO,EN1O1B,GAAO;;AM2O9B,qBAAqC;EAAE,OAAO,ENN1B,GAAO;;AMO3B,oBAAoC;EAAE,OAAO,ENN1B,GAAO;;AMO1B,kBAAkC;EAAE,OAAO,EN/d1B,GAAO;;AMgexB,cAA8B;EAAE,OAAO,EN7c1B,GAAO;;AM8cpB,kBAAkC;EAAE,OAAO,EN1P1B,GAAO;;AM2PxB,oBAAoC;EAAE,OAAO,ENhhB1B,GAAO;;AMihB1B,aAA6B;EAAE,OAAO,EN7b1B,GAAO;;AM8bnB;;cAE8B;EAAE,OAAO,ENxQ1B,GAAO;;AMyQpB,mBAAmC;EAAE,OAAO,EN7M1B,GAAO;;AM8MzB,qBAAqC;EAAE,OAAO,ENpd1B,GAAO;;AMqd3B,yBAAyC;EAAE,OAAO,ENnZ1B,GAAO;;AMoZ/B,mBAAmC;EAAE,OAAO,ENxY1B,GAAO;;AMyYzB,mBAAmC;EAAE,OAAO,EN1T1B,GAAO;;AM2TzB,kBAAkC;EAAE,OAAO,ENxP1B,GAAO;;AMyPxB,iBAAiC;EAAE,OAAO,ENrH1B,GAAO;;AMsHvB,uBAAuC;EAAE,OAAO,ENzG1B,GAAO;;AM0G7B,sBAAsC;EAAE,OAAO,ENrG1B,GAAO;;AMsG5B,mBAAmC;EAAE,OAAO,ENpG1B,GAAO;;AMqGzB,oBAAoC;EAAE,OAAO,EN5c1B,GAAO;;AM6c1B,0BAA0C;EAAE,OAAO,EN9c1B,GAAO;;AM+chC,kBAAkC;EAAE,OAAO,EN3Y1B,GAAO;;AM4YxB,eAA+B;EAAE,OAAO,ENhH1B,GAAO;;AMiHrB,sBAAsC;EAAE,OAAO,ENI1B,GAAO;;AMH5B,qBAAqC;EAAE,OAAO,EN5M1B,GAAO;;AM6M3B,sBAAsC;EAAE,OAAO,ENpE1B,GAAO;;AMqE5B,oBAAoC;EAAE,OAAO,ENhS1B,GAAO;;AMiS1B,gBAAgC;EAAE,OAAO,ENG1B,GAAO;;AMFtB,eAA+B;EAAE,OAAO,ENtO1B,GAAO;;AMuOrB,kBAAkC;EAAE,OAAO,EN7N1B,GAAO;;AM8NxB,sBAAsC;EAAE,OAAO,ENhC1B,GAAO;;AMiC5B,0BAA0C;EAAE,OAAO,ENhC1B,GAAO;;AMiChC,uBAAuC;EAAE,OAAO,END1B,GAAO;;AME7B,sBAAsC;EAAE,OAAO,EN1O1B,GAAO;;AM2O5B,qBAAqC;EAAE,OAAO,ENF1B,GAAO;;AMG3B,sBAAsC;EAAE,OAAO,EN3O1B,GAAO;;AM4O5B,wBAAwC;EAAE,OAAO,EN1O1B,GAAO;;AM2O9B,wBAAwC;EAAE,OAAO,EN5O1B,GAAO;;AM6O9B,iBAAiC;EAAE,OAAO,ENvN1B,GAAO;;AMwNvB,4BAA4C;EAAE,OAAO,EN9X1B,GAAO;;AM+XlC,sBAAsC;EAAE,OAAO,ENhM1B,GAAO;;AMiM5B,mBAAmC;EAAE,OAAO,ENI1B,GAAO;;AMHzB,iBAAiC;EAAE,OAAO,EN7I1B,GAAO;;AM8IvB,oBAAoC;EAAE,OAAO,ENjB1B,GAAO;;AMkB1B,qBAAqC;EAAE,OAAO,ENhB1B,GAAO;;AMiB3B;cAC8B;EAAE,OAAO,ENphB1B,GAAO;;AMqhBpB,kBAAkC;EAAE,OAAO,ENd1B,GAAO;;AMexB,gBAAgC;EAAE,OAAO,ENnD1B,GAAO;;AMoDtB,iBAAiC;EAAE,OAAO,ENvF1B,GAAO;;AMwFvB,iBAAiC;EAAE,OAAO,ENrP1B,GAAO", +"sources": ["../scss/_path.scss","../scss/_core.scss","../scss/_larger.scss","../scss/_fixed-width.scss","../scss/_list.scss","../scss/_variables.scss","../scss/_bordered-pulled.scss","../scss/_animated.scss","../scss/_rotated-flipped.scss","../scss/_mixins.scss","../scss/_stacked.scss","../scss/_icons.scss"], +"names": [], +"file": "font-awesome.css" +} diff --git a/assets/vendors/iconfonts/font-awesome/css/font-awesome.min.css b/assets/vendors/iconfonts/font-awesome/css/font-awesome.min.css new file mode 100755 index 0000000..540440c --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/css/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.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} diff --git a/assets/vendors/iconfonts/font-awesome/fonts/FontAwesome.otf b/assets/vendors/iconfonts/font-awesome/fonts/FontAwesome.otf new file mode 100755 index 0000000..401ec0f Binary files /dev/null and b/assets/vendors/iconfonts/font-awesome/fonts/FontAwesome.otf differ diff --git a/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.eot b/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.eot new file mode 100755 index 0000000..e9f60ca Binary files /dev/null and b/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.eot differ diff --git a/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.svg b/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.svg new file mode 100755 index 0000000..855c845 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.ttf b/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.ttf new file mode 100755 index 0000000..35acda2 Binary files /dev/null and b/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.ttf differ diff --git a/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.woff b/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.woff new file mode 100755 index 0000000..400014a Binary files /dev/null and b/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.woff differ diff --git a/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.woff2 b/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.woff2 new file mode 100755 index 0000000..4d13fc6 Binary files /dev/null and b/assets/vendors/iconfonts/font-awesome/fonts/fontawesome-webfont.woff2 differ diff --git a/assets/vendors/iconfonts/font-awesome/less/animated.less b/assets/vendors/iconfonts/font-awesome/less/animated.less new file mode 100755 index 0000000..66ad52a --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/animated.less @@ -0,0 +1,34 @@ +// Animated Icons +// -------------------------- + +.@{fa-css-prefix}-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} + +.@{fa-css-prefix}-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); + } +} diff --git a/assets/vendors/iconfonts/font-awesome/less/bordered-pulled.less b/assets/vendors/iconfonts/font-awesome/less/bordered-pulled.less new file mode 100755 index 0000000..f1c8ad7 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/bordered-pulled.less @@ -0,0 +1,25 @@ +// Bordered & Pulled +// ------------------------- + +.@{fa-css-prefix}-border { + padding: .2em .25em .15em; + border: solid .08em @fa-border-color; + border-radius: .1em; +} + +.@{fa-css-prefix}-pull-left { float: left; } +.@{fa-css-prefix}-pull-right { float: right; } + +.@{fa-css-prefix} { + &.@{fa-css-prefix}-pull-left { margin-right: .3em; } + &.@{fa-css-prefix}-pull-right { margin-left: .3em; } +} + +/* Deprecated as of 4.4.0 */ +.pull-right { float: right; } +.pull-left { float: left; } + +.@{fa-css-prefix} { + &.pull-left { margin-right: .3em; } + &.pull-right { margin-left: .3em; } +} diff --git a/assets/vendors/iconfonts/font-awesome/less/core.less b/assets/vendors/iconfonts/font-awesome/less/core.less new file mode 100755 index 0000000..c577ac8 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/core.less @@ -0,0 +1,12 @@ +// Base Class Definition +// ------------------------- + +.@{fa-css-prefix} { + display: inline-block; + font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} diff --git a/assets/vendors/iconfonts/font-awesome/less/fixed-width.less b/assets/vendors/iconfonts/font-awesome/less/fixed-width.less new file mode 100755 index 0000000..110289f --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/fixed-width.less @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.@{fa-css-prefix}-fw { + width: (18em / 14); + text-align: center; +} diff --git a/assets/vendors/iconfonts/font-awesome/less/font-awesome.less b/assets/vendors/iconfonts/font-awesome/less/font-awesome.less new file mode 100755 index 0000000..c3677de --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/font-awesome.less @@ -0,0 +1,18 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ + +@import "variables.less"; +@import "mixins.less"; +@import "path.less"; +@import "core.less"; +@import "larger.less"; +@import "fixed-width.less"; +@import "list.less"; +@import "bordered-pulled.less"; +@import "animated.less"; +@import "rotated-flipped.less"; +@import "stacked.less"; +@import "icons.less"; +@import "screen-reader.less"; diff --git a/assets/vendors/iconfonts/font-awesome/less/icons.less b/assets/vendors/iconfonts/font-awesome/less/icons.less new file mode 100755 index 0000000..159d600 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/icons.less @@ -0,0 +1,789 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ + +.@{fa-css-prefix}-glass:before { content: @fa-var-glass; } +.@{fa-css-prefix}-music:before { content: @fa-var-music; } +.@{fa-css-prefix}-search:before { content: @fa-var-search; } +.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; } +.@{fa-css-prefix}-heart:before { content: @fa-var-heart; } +.@{fa-css-prefix}-star:before { content: @fa-var-star; } +.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; } +.@{fa-css-prefix}-user:before { content: @fa-var-user; } +.@{fa-css-prefix}-film:before { content: @fa-var-film; } +.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; } +.@{fa-css-prefix}-th:before { content: @fa-var-th; } +.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; } +.@{fa-css-prefix}-check:before { content: @fa-var-check; } +.@{fa-css-prefix}-remove:before, +.@{fa-css-prefix}-close:before, +.@{fa-css-prefix}-times:before { content: @fa-var-times; } +.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; } +.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; } +.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; } +.@{fa-css-prefix}-signal:before { content: @fa-var-signal; } +.@{fa-css-prefix}-gear:before, +.@{fa-css-prefix}-cog:before { content: @fa-var-cog; } +.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; } +.@{fa-css-prefix}-home:before { content: @fa-var-home; } +.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; } +.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; } +.@{fa-css-prefix}-road:before { content: @fa-var-road; } +.@{fa-css-prefix}-download:before { content: @fa-var-download; } +.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; } +.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; } +.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; } +.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; } +.@{fa-css-prefix}-rotate-right:before, +.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; } +.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; } +.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; } +.@{fa-css-prefix}-lock:before { content: @fa-var-lock; } +.@{fa-css-prefix}-flag:before { content: @fa-var-flag; } +.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; } +.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; } +.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; } +.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; } +.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; } +.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; } +.@{fa-css-prefix}-tag:before { content: @fa-var-tag; } +.@{fa-css-prefix}-tags:before { content: @fa-var-tags; } +.@{fa-css-prefix}-book:before { content: @fa-var-book; } +.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; } +.@{fa-css-prefix}-print:before { content: @fa-var-print; } +.@{fa-css-prefix}-camera:before { content: @fa-var-camera; } +.@{fa-css-prefix}-font:before { content: @fa-var-font; } +.@{fa-css-prefix}-bold:before { content: @fa-var-bold; } +.@{fa-css-prefix}-italic:before { content: @fa-var-italic; } +.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; } +.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; } +.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; } +.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; } +.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; } +.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; } +.@{fa-css-prefix}-list:before { content: @fa-var-list; } +.@{fa-css-prefix}-dedent:before, +.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; } +.@{fa-css-prefix}-indent:before { content: @fa-var-indent; } +.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; } +.@{fa-css-prefix}-photo:before, +.@{fa-css-prefix}-image:before, +.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; } +.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; } +.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; } +.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; } +.@{fa-css-prefix}-tint:before { content: @fa-var-tint; } +.@{fa-css-prefix}-edit:before, +.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; } +.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; } +.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; } +.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; } +.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; } +.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; } +.@{fa-css-prefix}-backward:before { content: @fa-var-backward; } +.@{fa-css-prefix}-play:before { content: @fa-var-play; } +.@{fa-css-prefix}-pause:before { content: @fa-var-pause; } +.@{fa-css-prefix}-stop:before { content: @fa-var-stop; } +.@{fa-css-prefix}-forward:before { content: @fa-var-forward; } +.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; } +.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; } +.@{fa-css-prefix}-eject:before { content: @fa-var-eject; } +.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; } +.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; } +.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; } +.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; } +.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; } +.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; } +.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; } +.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; } +.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; } +.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; } +.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; } +.@{fa-css-prefix}-ban:before { content: @fa-var-ban; } +.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; } +.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; } +.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; } +.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; } +.@{fa-css-prefix}-mail-forward:before, +.@{fa-css-prefix}-share:before { content: @fa-var-share; } +.@{fa-css-prefix}-expand:before { content: @fa-var-expand; } +.@{fa-css-prefix}-compress:before { content: @fa-var-compress; } +.@{fa-css-prefix}-plus:before { content: @fa-var-plus; } +.@{fa-css-prefix}-minus:before { content: @fa-var-minus; } +.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; } +.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; } +.@{fa-css-prefix}-gift:before { content: @fa-var-gift; } +.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; } +.@{fa-css-prefix}-fire:before { content: @fa-var-fire; } +.@{fa-css-prefix}-eye:before { content: @fa-var-eye; } +.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; } +.@{fa-css-prefix}-warning:before, +.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; } +.@{fa-css-prefix}-plane:before { content: @fa-var-plane; } +.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; } +.@{fa-css-prefix}-random:before { content: @fa-var-random; } +.@{fa-css-prefix}-comment:before { content: @fa-var-comment; } +.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; } +.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; } +.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; } +.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; } +.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; } +.@{fa-css-prefix}-folder:before { content: @fa-var-folder; } +.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; } +.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; } +.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; } +.@{fa-css-prefix}-bar-chart-o:before, +.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; } +.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; } +.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; } +.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; } +.@{fa-css-prefix}-key:before { content: @fa-var-key; } +.@{fa-css-prefix}-gears:before, +.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; } +.@{fa-css-prefix}-comments:before { content: @fa-var-comments; } +.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; } +.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; } +.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; } +.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; } +.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; } +.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; } +.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; } +.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; } +.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; } +.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; } +.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; } +.@{fa-css-prefix}-upload:before { content: @fa-var-upload; } +.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; } +.@{fa-css-prefix}-phone:before { content: @fa-var-phone; } +.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; } +.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; } +.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; } +.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; } +.@{fa-css-prefix}-facebook-f:before, +.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; } +.@{fa-css-prefix}-github:before { content: @fa-var-github; } +.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; } +.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; } +.@{fa-css-prefix}-feed:before, +.@{fa-css-prefix}-rss:before { content: @fa-var-rss; } +.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; } +.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; } +.@{fa-css-prefix}-bell:before { content: @fa-var-bell; } +.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; } +.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; } +.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; } +.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; } +.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; } +.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; } +.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; } +.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; } +.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; } +.@{fa-css-prefix}-globe:before { content: @fa-var-globe; } +.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; } +.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; } +.@{fa-css-prefix}-filter:before { content: @fa-var-filter; } +.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; } +.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; } +.@{fa-css-prefix}-group:before, +.@{fa-css-prefix}-users:before { content: @fa-var-users; } +.@{fa-css-prefix}-chain:before, +.@{fa-css-prefix}-link:before { content: @fa-var-link; } +.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; } +.@{fa-css-prefix}-flask:before { content: @fa-var-flask; } +.@{fa-css-prefix}-cut:before, +.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; } +.@{fa-css-prefix}-copy:before, +.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; } +.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; } +.@{fa-css-prefix}-save:before, +.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; } +.@{fa-css-prefix}-square:before { content: @fa-var-square; } +.@{fa-css-prefix}-navicon:before, +.@{fa-css-prefix}-reorder:before, +.@{fa-css-prefix}-bars:before { content: @fa-var-bars; } +.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; } +.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; } +.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; } +.@{fa-css-prefix}-underline:before { content: @fa-var-underline; } +.@{fa-css-prefix}-table:before { content: @fa-var-table; } +.@{fa-css-prefix}-magic:before { content: @fa-var-magic; } +.@{fa-css-prefix}-truck:before { content: @fa-var-truck; } +.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; } +.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; } +.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; } +.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; } +.@{fa-css-prefix}-money:before { content: @fa-var-money; } +.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; } +.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; } +.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; } +.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; } +.@{fa-css-prefix}-columns:before { content: @fa-var-columns; } +.@{fa-css-prefix}-unsorted:before, +.@{fa-css-prefix}-sort:before { content: @fa-var-sort; } +.@{fa-css-prefix}-sort-down:before, +.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; } +.@{fa-css-prefix}-sort-up:before, +.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; } +.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; } +.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; } +.@{fa-css-prefix}-rotate-left:before, +.@{fa-css-prefix}-undo:before { content: @fa-var-undo; } +.@{fa-css-prefix}-legal:before, +.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; } +.@{fa-css-prefix}-dashboard:before, +.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; } +.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; } +.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; } +.@{fa-css-prefix}-flash:before, +.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; } +.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; } +.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; } +.@{fa-css-prefix}-paste:before, +.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; } +.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; } +.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; } +.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; } +.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; } +.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; } +.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; } +.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; } +.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; } +.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; } +.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; } +.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; } +.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; } +.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; } +.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; } +.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; } +.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; } +.@{fa-css-prefix}-beer:before { content: @fa-var-beer; } +.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; } +.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; } +.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; } +.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; } +.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; } +.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; } +.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; } +.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; } +.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; } +.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; } +.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; } +.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; } +.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; } +.@{fa-css-prefix}-mobile-phone:before, +.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; } +.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; } +.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; } +.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; } +.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; } +.@{fa-css-prefix}-circle:before { content: @fa-var-circle; } +.@{fa-css-prefix}-mail-reply:before, +.@{fa-css-prefix}-reply:before { content: @fa-var-reply; } +.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; } +.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; } +.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; } +.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; } +.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; } +.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; } +.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; } +.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; } +.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; } +.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; } +.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; } +.@{fa-css-prefix}-code:before { content: @fa-var-code; } +.@{fa-css-prefix}-mail-reply-all:before, +.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; } +.@{fa-css-prefix}-star-half-empty:before, +.@{fa-css-prefix}-star-half-full:before, +.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; } +.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; } +.@{fa-css-prefix}-crop:before { content: @fa-var-crop; } +.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; } +.@{fa-css-prefix}-unlink:before, +.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; } +.@{fa-css-prefix}-question:before { content: @fa-var-question; } +.@{fa-css-prefix}-info:before { content: @fa-var-info; } +.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; } +.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; } +.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; } +.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; } +.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; } +.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; } +.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; } +.@{fa-css-prefix}-shield:before { content: @fa-var-shield; } +.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; } +.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; } +.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; } +.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; } +.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; } +.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; } +.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; } +.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; } +.@{fa-css-prefix}-html5:before { content: @fa-var-html5; } +.@{fa-css-prefix}-css3:before { content: @fa-var-css3; } +.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; } +.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; } +.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; } +.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; } +.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; } +.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; } +.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; } +.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; } +.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; } +.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; } +.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; } +.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; } +.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; } +.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; } +.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; } +.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; } +.@{fa-css-prefix}-compass:before { content: @fa-var-compass; } +.@{fa-css-prefix}-toggle-down:before, +.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; } +.@{fa-css-prefix}-toggle-up:before, +.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; } +.@{fa-css-prefix}-toggle-right:before, +.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; } +.@{fa-css-prefix}-euro:before, +.@{fa-css-prefix}-eur:before { content: @fa-var-eur; } +.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; } +.@{fa-css-prefix}-dollar:before, +.@{fa-css-prefix}-usd:before { content: @fa-var-usd; } +.@{fa-css-prefix}-rupee:before, +.@{fa-css-prefix}-inr:before { content: @fa-var-inr; } +.@{fa-css-prefix}-cny:before, +.@{fa-css-prefix}-rmb:before, +.@{fa-css-prefix}-yen:before, +.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; } +.@{fa-css-prefix}-ruble:before, +.@{fa-css-prefix}-rouble:before, +.@{fa-css-prefix}-rub:before { content: @fa-var-rub; } +.@{fa-css-prefix}-won:before, +.@{fa-css-prefix}-krw:before { content: @fa-var-krw; } +.@{fa-css-prefix}-bitcoin:before, +.@{fa-css-prefix}-btc:before { content: @fa-var-btc; } +.@{fa-css-prefix}-file:before { content: @fa-var-file; } +.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; } +.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; } +.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; } +.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; } +.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; } +.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; } +.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; } +.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; } +.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; } +.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; } +.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; } +.@{fa-css-prefix}-xing:before { content: @fa-var-xing; } +.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; } +.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; } +.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; } +.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; } +.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; } +.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; } +.@{fa-css-prefix}-adn:before { content: @fa-var-adn; } +.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; } +.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; } +.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; } +.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; } +.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; } +.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; } +.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; } +.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; } +.@{fa-css-prefix}-apple:before { content: @fa-var-apple; } +.@{fa-css-prefix}-windows:before { content: @fa-var-windows; } +.@{fa-css-prefix}-android:before { content: @fa-var-android; } +.@{fa-css-prefix}-linux:before { content: @fa-var-linux; } +.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; } +.@{fa-css-prefix}-skype:before { content: @fa-var-skype; } +.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; } +.@{fa-css-prefix}-trello:before { content: @fa-var-trello; } +.@{fa-css-prefix}-female:before { content: @fa-var-female; } +.@{fa-css-prefix}-male:before { content: @fa-var-male; } +.@{fa-css-prefix}-gittip:before, +.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; } +.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; } +.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; } +.@{fa-css-prefix}-archive:before { content: @fa-var-archive; } +.@{fa-css-prefix}-bug:before { content: @fa-var-bug; } +.@{fa-css-prefix}-vk:before { content: @fa-var-vk; } +.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; } +.@{fa-css-prefix}-renren:before { content: @fa-var-renren; } +.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; } +.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; } +.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; } +.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; } +.@{fa-css-prefix}-toggle-left:before, +.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; } +.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; } +.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; } +.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; } +.@{fa-css-prefix}-turkish-lira:before, +.@{fa-css-prefix}-try:before { content: @fa-var-try; } +.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; } +.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; } +.@{fa-css-prefix}-slack:before { content: @fa-var-slack; } +.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; } +.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; } +.@{fa-css-prefix}-openid:before { content: @fa-var-openid; } +.@{fa-css-prefix}-institution:before, +.@{fa-css-prefix}-bank:before, +.@{fa-css-prefix}-university:before { content: @fa-var-university; } +.@{fa-css-prefix}-mortar-board:before, +.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; } +.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; } +.@{fa-css-prefix}-google:before { content: @fa-var-google; } +.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; } +.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; } +.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; } +.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; } +.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; } +.@{fa-css-prefix}-digg:before { content: @fa-var-digg; } +.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; } +.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; } +.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; } +.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; } +.@{fa-css-prefix}-language:before { content: @fa-var-language; } +.@{fa-css-prefix}-fax:before { content: @fa-var-fax; } +.@{fa-css-prefix}-building:before { content: @fa-var-building; } +.@{fa-css-prefix}-child:before { content: @fa-var-child; } +.@{fa-css-prefix}-paw:before { content: @fa-var-paw; } +.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; } +.@{fa-css-prefix}-cube:before { content: @fa-var-cube; } +.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; } +.@{fa-css-prefix}-behance:before { content: @fa-var-behance; } +.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; } +.@{fa-css-prefix}-steam:before { content: @fa-var-steam; } +.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; } +.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; } +.@{fa-css-prefix}-automobile:before, +.@{fa-css-prefix}-car:before { content: @fa-var-car; } +.@{fa-css-prefix}-cab:before, +.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; } +.@{fa-css-prefix}-tree:before { content: @fa-var-tree; } +.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; } +.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; } +.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; } +.@{fa-css-prefix}-database:before { content: @fa-var-database; } +.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; } +.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; } +.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; } +.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; } +.@{fa-css-prefix}-file-photo-o:before, +.@{fa-css-prefix}-file-picture-o:before, +.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; } +.@{fa-css-prefix}-file-zip-o:before, +.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; } +.@{fa-css-prefix}-file-sound-o:before, +.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; } +.@{fa-css-prefix}-file-movie-o:before, +.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; } +.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; } +.@{fa-css-prefix}-vine:before { content: @fa-var-vine; } +.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; } +.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; } +.@{fa-css-prefix}-life-bouy:before, +.@{fa-css-prefix}-life-buoy:before, +.@{fa-css-prefix}-life-saver:before, +.@{fa-css-prefix}-support:before, +.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; } +.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; } +.@{fa-css-prefix}-ra:before, +.@{fa-css-prefix}-resistance:before, +.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; } +.@{fa-css-prefix}-ge:before, +.@{fa-css-prefix}-empire:before { content: @fa-var-empire; } +.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; } +.@{fa-css-prefix}-git:before { content: @fa-var-git; } +.@{fa-css-prefix}-y-combinator-square:before, +.@{fa-css-prefix}-yc-square:before, +.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; } +.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; } +.@{fa-css-prefix}-qq:before { content: @fa-var-qq; } +.@{fa-css-prefix}-wechat:before, +.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; } +.@{fa-css-prefix}-send:before, +.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; } +.@{fa-css-prefix}-send-o:before, +.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; } +.@{fa-css-prefix}-history:before { content: @fa-var-history; } +.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; } +.@{fa-css-prefix}-header:before { content: @fa-var-header; } +.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; } +.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; } +.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; } +.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; } +.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; } +.@{fa-css-prefix}-soccer-ball-o:before, +.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; } +.@{fa-css-prefix}-tty:before { content: @fa-var-tty; } +.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; } +.@{fa-css-prefix}-plug:before { content: @fa-var-plug; } +.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; } +.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; } +.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; } +.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; } +.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; } +.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; } +.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; } +.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; } +.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; } +.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; } +.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; } +.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; } +.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; } +.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; } +.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; } +.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; } +.@{fa-css-prefix}-trash:before { content: @fa-var-trash; } +.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; } +.@{fa-css-prefix}-at:before { content: @fa-var-at; } +.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; } +.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; } +.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; } +.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; } +.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; } +.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; } +.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; } +.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; } +.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; } +.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; } +.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; } +.@{fa-css-prefix}-bus:before { content: @fa-var-bus; } +.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; } +.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; } +.@{fa-css-prefix}-cc:before { content: @fa-var-cc; } +.@{fa-css-prefix}-shekel:before, +.@{fa-css-prefix}-sheqel:before, +.@{fa-css-prefix}-ils:before { content: @fa-var-ils; } +.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; } +.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; } +.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; } +.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; } +.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; } +.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; } +.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; } +.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; } +.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; } +.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; } +.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; } +.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; } +.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; } +.@{fa-css-prefix}-ship:before { content: @fa-var-ship; } +.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; } +.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; } +.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; } +.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; } +.@{fa-css-prefix}-venus:before { content: @fa-var-venus; } +.@{fa-css-prefix}-mars:before { content: @fa-var-mars; } +.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; } +.@{fa-css-prefix}-intersex:before, +.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; } +.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; } +.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; } +.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; } +.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; } +.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; } +.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; } +.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; } +.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; } +.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; } +.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; } +.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; } +.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; } +.@{fa-css-prefix}-server:before { content: @fa-var-server; } +.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; } +.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; } +.@{fa-css-prefix}-hotel:before, +.@{fa-css-prefix}-bed:before { content: @fa-var-bed; } +.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; } +.@{fa-css-prefix}-train:before { content: @fa-var-train; } +.@{fa-css-prefix}-subway:before { content: @fa-var-subway; } +.@{fa-css-prefix}-medium:before { content: @fa-var-medium; } +.@{fa-css-prefix}-yc:before, +.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; } +.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; } +.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; } +.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; } +.@{fa-css-prefix}-battery-4:before, +.@{fa-css-prefix}-battery:before, +.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; } +.@{fa-css-prefix}-battery-3:before, +.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; } +.@{fa-css-prefix}-battery-2:before, +.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; } +.@{fa-css-prefix}-battery-1:before, +.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; } +.@{fa-css-prefix}-battery-0:before, +.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; } +.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; } +.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; } +.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; } +.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; } +.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; } +.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; } +.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; } +.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; } +.@{fa-css-prefix}-clone:before { content: @fa-var-clone; } +.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; } +.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; } +.@{fa-css-prefix}-hourglass-1:before, +.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; } +.@{fa-css-prefix}-hourglass-2:before, +.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; } +.@{fa-css-prefix}-hourglass-3:before, +.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; } +.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; } +.@{fa-css-prefix}-hand-grab-o:before, +.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; } +.@{fa-css-prefix}-hand-stop-o:before, +.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; } +.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; } +.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; } +.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; } +.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; } +.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; } +.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; } +.@{fa-css-prefix}-registered:before { content: @fa-var-registered; } +.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; } +.@{fa-css-prefix}-gg:before { content: @fa-var-gg; } +.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; } +.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; } +.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; } +.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; } +.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; } +.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; } +.@{fa-css-prefix}-safari:before { content: @fa-var-safari; } +.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; } +.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; } +.@{fa-css-prefix}-opera:before { content: @fa-var-opera; } +.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; } +.@{fa-css-prefix}-tv:before, +.@{fa-css-prefix}-television:before { content: @fa-var-television; } +.@{fa-css-prefix}-contao:before { content: @fa-var-contao; } +.@{fa-css-prefix}-500px:before { content: @fa-var-500px; } +.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; } +.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; } +.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; } +.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; } +.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; } +.@{fa-css-prefix}-industry:before { content: @fa-var-industry; } +.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; } +.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; } +.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; } +.@{fa-css-prefix}-map:before { content: @fa-var-map; } +.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; } +.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; } +.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; } +.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; } +.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; } +.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; } +.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; } +.@{fa-css-prefix}-edge:before { content: @fa-var-edge; } +.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; } +.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; } +.@{fa-css-prefix}-modx:before { content: @fa-var-modx; } +.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; } +.@{fa-css-prefix}-usb:before { content: @fa-var-usb; } +.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; } +.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; } +.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; } +.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; } +.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; } +.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; } +.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; } +.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; } +.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; } +.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; } +.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; } +.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; } +.@{fa-css-prefix}-percent:before { content: @fa-var-percent; } +.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; } +.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; } +.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; } +.@{fa-css-prefix}-envira:before { content: @fa-var-envira; } +.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; } +.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; } +.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; } +.@{fa-css-prefix}-blind:before { content: @fa-var-blind; } +.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; } +.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; } +.@{fa-css-prefix}-braille:before { content: @fa-var-braille; } +.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; } +.@{fa-css-prefix}-asl-interpreting:before, +.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; } +.@{fa-css-prefix}-deafness:before, +.@{fa-css-prefix}-hard-of-hearing:before, +.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; } +.@{fa-css-prefix}-glide:before { content: @fa-var-glide; } +.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; } +.@{fa-css-prefix}-signing:before, +.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; } +.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; } +.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; } +.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; } +.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; } +.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; } +.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; } +.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; } +.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; } +.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; } +.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; } +.@{fa-css-prefix}-google-plus-circle:before, +.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; } +.@{fa-css-prefix}-fa:before, +.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; } +.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; } +.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; } +.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; } +.@{fa-css-prefix}-linode:before { content: @fa-var-linode; } +.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; } +.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; } +.@{fa-css-prefix}-vcard:before, +.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; } +.@{fa-css-prefix}-vcard-o:before, +.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; } +.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; } +.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; } +.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; } +.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; } +.@{fa-css-prefix}-drivers-license:before, +.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; } +.@{fa-css-prefix}-drivers-license-o:before, +.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; } +.@{fa-css-prefix}-quora:before { content: @fa-var-quora; } +.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; } +.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; } +.@{fa-css-prefix}-thermometer-4:before, +.@{fa-css-prefix}-thermometer:before, +.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; } +.@{fa-css-prefix}-thermometer-3:before, +.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; } +.@{fa-css-prefix}-thermometer-2:before, +.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; } +.@{fa-css-prefix}-thermometer-1:before, +.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; } +.@{fa-css-prefix}-thermometer-0:before, +.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; } +.@{fa-css-prefix}-shower:before { content: @fa-var-shower; } +.@{fa-css-prefix}-bathtub:before, +.@{fa-css-prefix}-s15:before, +.@{fa-css-prefix}-bath:before { content: @fa-var-bath; } +.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; } +.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; } +.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; } +.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; } +.@{fa-css-prefix}-times-rectangle:before, +.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; } +.@{fa-css-prefix}-times-rectangle-o:before, +.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; } +.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; } +.@{fa-css-prefix}-grav:before { content: @fa-var-grav; } +.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; } +.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; } +.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; } +.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; } +.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; } +.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; } +.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; } +.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; } +.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; } diff --git a/assets/vendors/iconfonts/font-awesome/less/larger.less b/assets/vendors/iconfonts/font-awesome/less/larger.less new file mode 100755 index 0000000..c9d6467 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/larger.less @@ -0,0 +1,13 @@ +// Icon Sizes +// ------------------------- + +/* makes the font 33% larger relative to the icon container */ +.@{fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -15%; +} +.@{fa-css-prefix}-2x { font-size: 2em; } +.@{fa-css-prefix}-3x { font-size: 3em; } +.@{fa-css-prefix}-4x { font-size: 4em; } +.@{fa-css-prefix}-5x { font-size: 5em; } diff --git a/assets/vendors/iconfonts/font-awesome/less/list.less b/assets/vendors/iconfonts/font-awesome/less/list.less new file mode 100755 index 0000000..0b44038 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/list.less @@ -0,0 +1,19 @@ +// List Icons +// ------------------------- + +.@{fa-css-prefix}-ul { + padding-left: 0; + margin-left: @fa-li-width; + list-style-type: none; + > li { position: relative; } +} +.@{fa-css-prefix}-li { + position: absolute; + left: -@fa-li-width; + width: @fa-li-width; + top: (2em / 14); + text-align: center; + &.@{fa-css-prefix}-lg { + left: (-@fa-li-width + (4em / 14)); + } +} diff --git a/assets/vendors/iconfonts/font-awesome/less/mixins.less b/assets/vendors/iconfonts/font-awesome/less/mixins.less new file mode 100755 index 0000000..beef231 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/mixins.less @@ -0,0 +1,60 @@ +// Mixins +// -------------------------- + +.fa-icon() { + display: inline-block; + font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} + +.fa-icon-rotate(@degrees, @rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; + -webkit-transform: rotate(@degrees); + -ms-transform: rotate(@degrees); + transform: rotate(@degrees); +} + +.fa-icon-flip(@horiz, @vert, @rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; + -webkit-transform: scale(@horiz, @vert); + -ms-transform: scale(@horiz, @vert); + transform: scale(@horiz, @vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +.sr-only() { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0,0,0,0); + border: 0; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +.sr-only-focusable() { + &:active, + &:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; + } +} diff --git a/assets/vendors/iconfonts/font-awesome/less/path.less b/assets/vendors/iconfonts/font-awesome/less/path.less new file mode 100755 index 0000000..835be41 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/path.less @@ -0,0 +1,15 @@ +/* FONT PATH + * -------------------------- */ + +@font-face { + font-family: 'FontAwesome'; + src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); + src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), + url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), + url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), + url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), + url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); + // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts + font-weight: normal; + font-style: normal; +} diff --git a/assets/vendors/iconfonts/font-awesome/less/rotated-flipped.less b/assets/vendors/iconfonts/font-awesome/less/rotated-flipped.less new file mode 100755 index 0000000..f6ba814 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/rotated-flipped.less @@ -0,0 +1,20 @@ +// Rotated & Flipped Icons +// ------------------------- + +.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } +.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } +.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } + +.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } +.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root .@{fa-css-prefix}-rotate-90, +:root .@{fa-css-prefix}-rotate-180, +:root .@{fa-css-prefix}-rotate-270, +:root .@{fa-css-prefix}-flip-horizontal, +:root .@{fa-css-prefix}-flip-vertical { + filter: none; +} diff --git a/assets/vendors/iconfonts/font-awesome/less/screen-reader.less b/assets/vendors/iconfonts/font-awesome/less/screen-reader.less new file mode 100755 index 0000000..11c1881 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/screen-reader.less @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { .sr-only(); } +.sr-only-focusable { .sr-only-focusable(); } diff --git a/assets/vendors/iconfonts/font-awesome/less/stacked.less b/assets/vendors/iconfonts/font-awesome/less/stacked.less new file mode 100755 index 0000000..fc53fb0 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/stacked.less @@ -0,0 +1,20 @@ +// Stacked Icons +// ------------------------- + +.@{fa-css-prefix}-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.@{fa-css-prefix}-stack-1x { line-height: inherit; } +.@{fa-css-prefix}-stack-2x { font-size: 2em; } +.@{fa-css-prefix}-inverse { color: @fa-inverse; } diff --git a/assets/vendors/iconfonts/font-awesome/less/variables.less b/assets/vendors/iconfonts/font-awesome/less/variables.less new file mode 100755 index 0000000..7ddbbc0 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/less/variables.less @@ -0,0 +1,800 @@ +// Variables +// -------------------------- + +@fa-font-path: "../fonts"; +@fa-font-size-base: 14px; +@fa-line-height-base: 1; +//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"; // for referencing Bootstrap CDN font files directly +@fa-css-prefix: fa; +@fa-version: "4.7.0"; +@fa-border-color: #eee; +@fa-inverse: #fff; +@fa-li-width: (30em / 14); + +@fa-var-500px: "\f26e"; +@fa-var-address-book: "\f2b9"; +@fa-var-address-book-o: "\f2ba"; +@fa-var-address-card: "\f2bb"; +@fa-var-address-card-o: "\f2bc"; +@fa-var-adjust: "\f042"; +@fa-var-adn: "\f170"; +@fa-var-align-center: "\f037"; +@fa-var-align-justify: "\f039"; +@fa-var-align-left: "\f036"; +@fa-var-align-right: "\f038"; +@fa-var-amazon: "\f270"; +@fa-var-ambulance: "\f0f9"; +@fa-var-american-sign-language-interpreting: "\f2a3"; +@fa-var-anchor: "\f13d"; +@fa-var-android: "\f17b"; +@fa-var-angellist: "\f209"; +@fa-var-angle-double-down: "\f103"; +@fa-var-angle-double-left: "\f100"; +@fa-var-angle-double-right: "\f101"; +@fa-var-angle-double-up: "\f102"; +@fa-var-angle-down: "\f107"; +@fa-var-angle-left: "\f104"; +@fa-var-angle-right: "\f105"; +@fa-var-angle-up: "\f106"; +@fa-var-apple: "\f179"; +@fa-var-archive: "\f187"; +@fa-var-area-chart: "\f1fe"; +@fa-var-arrow-circle-down: "\f0ab"; +@fa-var-arrow-circle-left: "\f0a8"; +@fa-var-arrow-circle-o-down: "\f01a"; +@fa-var-arrow-circle-o-left: "\f190"; +@fa-var-arrow-circle-o-right: "\f18e"; +@fa-var-arrow-circle-o-up: "\f01b"; +@fa-var-arrow-circle-right: "\f0a9"; +@fa-var-arrow-circle-up: "\f0aa"; +@fa-var-arrow-down: "\f063"; +@fa-var-arrow-left: "\f060"; +@fa-var-arrow-right: "\f061"; +@fa-var-arrow-up: "\f062"; +@fa-var-arrows: "\f047"; +@fa-var-arrows-alt: "\f0b2"; +@fa-var-arrows-h: "\f07e"; +@fa-var-arrows-v: "\f07d"; +@fa-var-asl-interpreting: "\f2a3"; +@fa-var-assistive-listening-systems: "\f2a2"; +@fa-var-asterisk: "\f069"; +@fa-var-at: "\f1fa"; +@fa-var-audio-description: "\f29e"; +@fa-var-automobile: "\f1b9"; +@fa-var-backward: "\f04a"; +@fa-var-balance-scale: "\f24e"; +@fa-var-ban: "\f05e"; +@fa-var-bandcamp: "\f2d5"; +@fa-var-bank: "\f19c"; +@fa-var-bar-chart: "\f080"; +@fa-var-bar-chart-o: "\f080"; +@fa-var-barcode: "\f02a"; +@fa-var-bars: "\f0c9"; +@fa-var-bath: "\f2cd"; +@fa-var-bathtub: "\f2cd"; +@fa-var-battery: "\f240"; +@fa-var-battery-0: "\f244"; +@fa-var-battery-1: "\f243"; +@fa-var-battery-2: "\f242"; +@fa-var-battery-3: "\f241"; +@fa-var-battery-4: "\f240"; +@fa-var-battery-empty: "\f244"; +@fa-var-battery-full: "\f240"; +@fa-var-battery-half: "\f242"; +@fa-var-battery-quarter: "\f243"; +@fa-var-battery-three-quarters: "\f241"; +@fa-var-bed: "\f236"; +@fa-var-beer: "\f0fc"; +@fa-var-behance: "\f1b4"; +@fa-var-behance-square: "\f1b5"; +@fa-var-bell: "\f0f3"; +@fa-var-bell-o: "\f0a2"; +@fa-var-bell-slash: "\f1f6"; +@fa-var-bell-slash-o: "\f1f7"; +@fa-var-bicycle: "\f206"; +@fa-var-binoculars: "\f1e5"; +@fa-var-birthday-cake: "\f1fd"; +@fa-var-bitbucket: "\f171"; +@fa-var-bitbucket-square: "\f172"; +@fa-var-bitcoin: "\f15a"; +@fa-var-black-tie: "\f27e"; +@fa-var-blind: "\f29d"; +@fa-var-bluetooth: "\f293"; +@fa-var-bluetooth-b: "\f294"; +@fa-var-bold: "\f032"; +@fa-var-bolt: "\f0e7"; +@fa-var-bomb: "\f1e2"; +@fa-var-book: "\f02d"; +@fa-var-bookmark: "\f02e"; +@fa-var-bookmark-o: "\f097"; +@fa-var-braille: "\f2a1"; +@fa-var-briefcase: "\f0b1"; +@fa-var-btc: "\f15a"; +@fa-var-bug: "\f188"; +@fa-var-building: "\f1ad"; +@fa-var-building-o: "\f0f7"; +@fa-var-bullhorn: "\f0a1"; +@fa-var-bullseye: "\f140"; +@fa-var-bus: "\f207"; +@fa-var-buysellads: "\f20d"; +@fa-var-cab: "\f1ba"; +@fa-var-calculator: "\f1ec"; +@fa-var-calendar: "\f073"; +@fa-var-calendar-check-o: "\f274"; +@fa-var-calendar-minus-o: "\f272"; +@fa-var-calendar-o: "\f133"; +@fa-var-calendar-plus-o: "\f271"; +@fa-var-calendar-times-o: "\f273"; +@fa-var-camera: "\f030"; +@fa-var-camera-retro: "\f083"; +@fa-var-car: "\f1b9"; +@fa-var-caret-down: "\f0d7"; +@fa-var-caret-left: "\f0d9"; +@fa-var-caret-right: "\f0da"; +@fa-var-caret-square-o-down: "\f150"; +@fa-var-caret-square-o-left: "\f191"; +@fa-var-caret-square-o-right: "\f152"; +@fa-var-caret-square-o-up: "\f151"; +@fa-var-caret-up: "\f0d8"; +@fa-var-cart-arrow-down: "\f218"; +@fa-var-cart-plus: "\f217"; +@fa-var-cc: "\f20a"; +@fa-var-cc-amex: "\f1f3"; +@fa-var-cc-diners-club: "\f24c"; +@fa-var-cc-discover: "\f1f2"; +@fa-var-cc-jcb: "\f24b"; +@fa-var-cc-mastercard: "\f1f1"; +@fa-var-cc-paypal: "\f1f4"; +@fa-var-cc-stripe: "\f1f5"; +@fa-var-cc-visa: "\f1f0"; +@fa-var-certificate: "\f0a3"; +@fa-var-chain: "\f0c1"; +@fa-var-chain-broken: "\f127"; +@fa-var-check: "\f00c"; +@fa-var-check-circle: "\f058"; +@fa-var-check-circle-o: "\f05d"; +@fa-var-check-square: "\f14a"; +@fa-var-check-square-o: "\f046"; +@fa-var-chevron-circle-down: "\f13a"; +@fa-var-chevron-circle-left: "\f137"; +@fa-var-chevron-circle-right: "\f138"; +@fa-var-chevron-circle-up: "\f139"; +@fa-var-chevron-down: "\f078"; +@fa-var-chevron-left: "\f053"; +@fa-var-chevron-right: "\f054"; +@fa-var-chevron-up: "\f077"; +@fa-var-child: "\f1ae"; +@fa-var-chrome: "\f268"; +@fa-var-circle: "\f111"; +@fa-var-circle-o: "\f10c"; +@fa-var-circle-o-notch: "\f1ce"; +@fa-var-circle-thin: "\f1db"; +@fa-var-clipboard: "\f0ea"; +@fa-var-clock-o: "\f017"; +@fa-var-clone: "\f24d"; +@fa-var-close: "\f00d"; +@fa-var-cloud: "\f0c2"; +@fa-var-cloud-download: "\f0ed"; +@fa-var-cloud-upload: "\f0ee"; +@fa-var-cny: "\f157"; +@fa-var-code: "\f121"; +@fa-var-code-fork: "\f126"; +@fa-var-codepen: "\f1cb"; +@fa-var-codiepie: "\f284"; +@fa-var-coffee: "\f0f4"; +@fa-var-cog: "\f013"; +@fa-var-cogs: "\f085"; +@fa-var-columns: "\f0db"; +@fa-var-comment: "\f075"; +@fa-var-comment-o: "\f0e5"; +@fa-var-commenting: "\f27a"; +@fa-var-commenting-o: "\f27b"; +@fa-var-comments: "\f086"; +@fa-var-comments-o: "\f0e6"; +@fa-var-compass: "\f14e"; +@fa-var-compress: "\f066"; +@fa-var-connectdevelop: "\f20e"; +@fa-var-contao: "\f26d"; +@fa-var-copy: "\f0c5"; +@fa-var-copyright: "\f1f9"; +@fa-var-creative-commons: "\f25e"; +@fa-var-credit-card: "\f09d"; +@fa-var-credit-card-alt: "\f283"; +@fa-var-crop: "\f125"; +@fa-var-crosshairs: "\f05b"; +@fa-var-css3: "\f13c"; +@fa-var-cube: "\f1b2"; +@fa-var-cubes: "\f1b3"; +@fa-var-cut: "\f0c4"; +@fa-var-cutlery: "\f0f5"; +@fa-var-dashboard: "\f0e4"; +@fa-var-dashcube: "\f210"; +@fa-var-database: "\f1c0"; +@fa-var-deaf: "\f2a4"; +@fa-var-deafness: "\f2a4"; +@fa-var-dedent: "\f03b"; +@fa-var-delicious: "\f1a5"; +@fa-var-desktop: "\f108"; +@fa-var-deviantart: "\f1bd"; +@fa-var-diamond: "\f219"; +@fa-var-digg: "\f1a6"; +@fa-var-dollar: "\f155"; +@fa-var-dot-circle-o: "\f192"; +@fa-var-download: "\f019"; +@fa-var-dribbble: "\f17d"; +@fa-var-drivers-license: "\f2c2"; +@fa-var-drivers-license-o: "\f2c3"; +@fa-var-dropbox: "\f16b"; +@fa-var-drupal: "\f1a9"; +@fa-var-edge: "\f282"; +@fa-var-edit: "\f044"; +@fa-var-eercast: "\f2da"; +@fa-var-eject: "\f052"; +@fa-var-ellipsis-h: "\f141"; +@fa-var-ellipsis-v: "\f142"; +@fa-var-empire: "\f1d1"; +@fa-var-envelope: "\f0e0"; +@fa-var-envelope-o: "\f003"; +@fa-var-envelope-open: "\f2b6"; +@fa-var-envelope-open-o: "\f2b7"; +@fa-var-envelope-square: "\f199"; +@fa-var-envira: "\f299"; +@fa-var-eraser: "\f12d"; +@fa-var-etsy: "\f2d7"; +@fa-var-eur: "\f153"; +@fa-var-euro: "\f153"; +@fa-var-exchange: "\f0ec"; +@fa-var-exclamation: "\f12a"; +@fa-var-exclamation-circle: "\f06a"; +@fa-var-exclamation-triangle: "\f071"; +@fa-var-expand: "\f065"; +@fa-var-expeditedssl: "\f23e"; +@fa-var-external-link: "\f08e"; +@fa-var-external-link-square: "\f14c"; +@fa-var-eye: "\f06e"; +@fa-var-eye-slash: "\f070"; +@fa-var-eyedropper: "\f1fb"; +@fa-var-fa: "\f2b4"; +@fa-var-facebook: "\f09a"; +@fa-var-facebook-f: "\f09a"; +@fa-var-facebook-official: "\f230"; +@fa-var-facebook-square: "\f082"; +@fa-var-fast-backward: "\f049"; +@fa-var-fast-forward: "\f050"; +@fa-var-fax: "\f1ac"; +@fa-var-feed: "\f09e"; +@fa-var-female: "\f182"; +@fa-var-fighter-jet: "\f0fb"; +@fa-var-file: "\f15b"; +@fa-var-file-archive-o: "\f1c6"; +@fa-var-file-audio-o: "\f1c7"; +@fa-var-file-code-o: "\f1c9"; +@fa-var-file-excel-o: "\f1c3"; +@fa-var-file-image-o: "\f1c5"; +@fa-var-file-movie-o: "\f1c8"; +@fa-var-file-o: "\f016"; +@fa-var-file-pdf-o: "\f1c1"; +@fa-var-file-photo-o: "\f1c5"; +@fa-var-file-picture-o: "\f1c5"; +@fa-var-file-powerpoint-o: "\f1c4"; +@fa-var-file-sound-o: "\f1c7"; +@fa-var-file-text: "\f15c"; +@fa-var-file-text-o: "\f0f6"; +@fa-var-file-video-o: "\f1c8"; +@fa-var-file-word-o: "\f1c2"; +@fa-var-file-zip-o: "\f1c6"; +@fa-var-files-o: "\f0c5"; +@fa-var-film: "\f008"; +@fa-var-filter: "\f0b0"; +@fa-var-fire: "\f06d"; +@fa-var-fire-extinguisher: "\f134"; +@fa-var-firefox: "\f269"; +@fa-var-first-order: "\f2b0"; +@fa-var-flag: "\f024"; +@fa-var-flag-checkered: "\f11e"; +@fa-var-flag-o: "\f11d"; +@fa-var-flash: "\f0e7"; +@fa-var-flask: "\f0c3"; +@fa-var-flickr: "\f16e"; +@fa-var-floppy-o: "\f0c7"; +@fa-var-folder: "\f07b"; +@fa-var-folder-o: "\f114"; +@fa-var-folder-open: "\f07c"; +@fa-var-folder-open-o: "\f115"; +@fa-var-font: "\f031"; +@fa-var-font-awesome: "\f2b4"; +@fa-var-fonticons: "\f280"; +@fa-var-fort-awesome: "\f286"; +@fa-var-forumbee: "\f211"; +@fa-var-forward: "\f04e"; +@fa-var-foursquare: "\f180"; +@fa-var-free-code-camp: "\f2c5"; +@fa-var-frown-o: "\f119"; +@fa-var-futbol-o: "\f1e3"; +@fa-var-gamepad: "\f11b"; +@fa-var-gavel: "\f0e3"; +@fa-var-gbp: "\f154"; +@fa-var-ge: "\f1d1"; +@fa-var-gear: "\f013"; +@fa-var-gears: "\f085"; +@fa-var-genderless: "\f22d"; +@fa-var-get-pocket: "\f265"; +@fa-var-gg: "\f260"; +@fa-var-gg-circle: "\f261"; +@fa-var-gift: "\f06b"; +@fa-var-git: "\f1d3"; +@fa-var-git-square: "\f1d2"; +@fa-var-github: "\f09b"; +@fa-var-github-alt: "\f113"; +@fa-var-github-square: "\f092"; +@fa-var-gitlab: "\f296"; +@fa-var-gittip: "\f184"; +@fa-var-glass: "\f000"; +@fa-var-glide: "\f2a5"; +@fa-var-glide-g: "\f2a6"; +@fa-var-globe: "\f0ac"; +@fa-var-google: "\f1a0"; +@fa-var-google-plus: "\f0d5"; +@fa-var-google-plus-circle: "\f2b3"; +@fa-var-google-plus-official: "\f2b3"; +@fa-var-google-plus-square: "\f0d4"; +@fa-var-google-wallet: "\f1ee"; +@fa-var-graduation-cap: "\f19d"; +@fa-var-gratipay: "\f184"; +@fa-var-grav: "\f2d6"; +@fa-var-group: "\f0c0"; +@fa-var-h-square: "\f0fd"; +@fa-var-hacker-news: "\f1d4"; +@fa-var-hand-grab-o: "\f255"; +@fa-var-hand-lizard-o: "\f258"; +@fa-var-hand-o-down: "\f0a7"; +@fa-var-hand-o-left: "\f0a5"; +@fa-var-hand-o-right: "\f0a4"; +@fa-var-hand-o-up: "\f0a6"; +@fa-var-hand-paper-o: "\f256"; +@fa-var-hand-peace-o: "\f25b"; +@fa-var-hand-pointer-o: "\f25a"; +@fa-var-hand-rock-o: "\f255"; +@fa-var-hand-scissors-o: "\f257"; +@fa-var-hand-spock-o: "\f259"; +@fa-var-hand-stop-o: "\f256"; +@fa-var-handshake-o: "\f2b5"; +@fa-var-hard-of-hearing: "\f2a4"; +@fa-var-hashtag: "\f292"; +@fa-var-hdd-o: "\f0a0"; +@fa-var-header: "\f1dc"; +@fa-var-headphones: "\f025"; +@fa-var-heart: "\f004"; +@fa-var-heart-o: "\f08a"; +@fa-var-heartbeat: "\f21e"; +@fa-var-history: "\f1da"; +@fa-var-home: "\f015"; +@fa-var-hospital-o: "\f0f8"; +@fa-var-hotel: "\f236"; +@fa-var-hourglass: "\f254"; +@fa-var-hourglass-1: "\f251"; +@fa-var-hourglass-2: "\f252"; +@fa-var-hourglass-3: "\f253"; +@fa-var-hourglass-end: "\f253"; +@fa-var-hourglass-half: "\f252"; +@fa-var-hourglass-o: "\f250"; +@fa-var-hourglass-start: "\f251"; +@fa-var-houzz: "\f27c"; +@fa-var-html5: "\f13b"; +@fa-var-i-cursor: "\f246"; +@fa-var-id-badge: "\f2c1"; +@fa-var-id-card: "\f2c2"; +@fa-var-id-card-o: "\f2c3"; +@fa-var-ils: "\f20b"; +@fa-var-image: "\f03e"; +@fa-var-imdb: "\f2d8"; +@fa-var-inbox: "\f01c"; +@fa-var-indent: "\f03c"; +@fa-var-industry: "\f275"; +@fa-var-info: "\f129"; +@fa-var-info-circle: "\f05a"; +@fa-var-inr: "\f156"; +@fa-var-instagram: "\f16d"; +@fa-var-institution: "\f19c"; +@fa-var-internet-explorer: "\f26b"; +@fa-var-intersex: "\f224"; +@fa-var-ioxhost: "\f208"; +@fa-var-italic: "\f033"; +@fa-var-joomla: "\f1aa"; +@fa-var-jpy: "\f157"; +@fa-var-jsfiddle: "\f1cc"; +@fa-var-key: "\f084"; +@fa-var-keyboard-o: "\f11c"; +@fa-var-krw: "\f159"; +@fa-var-language: "\f1ab"; +@fa-var-laptop: "\f109"; +@fa-var-lastfm: "\f202"; +@fa-var-lastfm-square: "\f203"; +@fa-var-leaf: "\f06c"; +@fa-var-leanpub: "\f212"; +@fa-var-legal: "\f0e3"; +@fa-var-lemon-o: "\f094"; +@fa-var-level-down: "\f149"; +@fa-var-level-up: "\f148"; +@fa-var-life-bouy: "\f1cd"; +@fa-var-life-buoy: "\f1cd"; +@fa-var-life-ring: "\f1cd"; +@fa-var-life-saver: "\f1cd"; +@fa-var-lightbulb-o: "\f0eb"; +@fa-var-line-chart: "\f201"; +@fa-var-link: "\f0c1"; +@fa-var-linkedin: "\f0e1"; +@fa-var-linkedin-square: "\f08c"; +@fa-var-linode: "\f2b8"; +@fa-var-linux: "\f17c"; +@fa-var-list: "\f03a"; +@fa-var-list-alt: "\f022"; +@fa-var-list-ol: "\f0cb"; +@fa-var-list-ul: "\f0ca"; +@fa-var-location-arrow: "\f124"; +@fa-var-lock: "\f023"; +@fa-var-long-arrow-down: "\f175"; +@fa-var-long-arrow-left: "\f177"; +@fa-var-long-arrow-right: "\f178"; +@fa-var-long-arrow-up: "\f176"; +@fa-var-low-vision: "\f2a8"; +@fa-var-magic: "\f0d0"; +@fa-var-magnet: "\f076"; +@fa-var-mail-forward: "\f064"; +@fa-var-mail-reply: "\f112"; +@fa-var-mail-reply-all: "\f122"; +@fa-var-male: "\f183"; +@fa-var-map: "\f279"; +@fa-var-map-marker: "\f041"; +@fa-var-map-o: "\f278"; +@fa-var-map-pin: "\f276"; +@fa-var-map-signs: "\f277"; +@fa-var-mars: "\f222"; +@fa-var-mars-double: "\f227"; +@fa-var-mars-stroke: "\f229"; +@fa-var-mars-stroke-h: "\f22b"; +@fa-var-mars-stroke-v: "\f22a"; +@fa-var-maxcdn: "\f136"; +@fa-var-meanpath: "\f20c"; +@fa-var-medium: "\f23a"; +@fa-var-medkit: "\f0fa"; +@fa-var-meetup: "\f2e0"; +@fa-var-meh-o: "\f11a"; +@fa-var-mercury: "\f223"; +@fa-var-microchip: "\f2db"; +@fa-var-microphone: "\f130"; +@fa-var-microphone-slash: "\f131"; +@fa-var-minus: "\f068"; +@fa-var-minus-circle: "\f056"; +@fa-var-minus-square: "\f146"; +@fa-var-minus-square-o: "\f147"; +@fa-var-mixcloud: "\f289"; +@fa-var-mobile: "\f10b"; +@fa-var-mobile-phone: "\f10b"; +@fa-var-modx: "\f285"; +@fa-var-money: "\f0d6"; +@fa-var-moon-o: "\f186"; +@fa-var-mortar-board: "\f19d"; +@fa-var-motorcycle: "\f21c"; +@fa-var-mouse-pointer: "\f245"; +@fa-var-music: "\f001"; +@fa-var-navicon: "\f0c9"; +@fa-var-neuter: "\f22c"; +@fa-var-newspaper-o: "\f1ea"; +@fa-var-object-group: "\f247"; +@fa-var-object-ungroup: "\f248"; +@fa-var-odnoklassniki: "\f263"; +@fa-var-odnoklassniki-square: "\f264"; +@fa-var-opencart: "\f23d"; +@fa-var-openid: "\f19b"; +@fa-var-opera: "\f26a"; +@fa-var-optin-monster: "\f23c"; +@fa-var-outdent: "\f03b"; +@fa-var-pagelines: "\f18c"; +@fa-var-paint-brush: "\f1fc"; +@fa-var-paper-plane: "\f1d8"; +@fa-var-paper-plane-o: "\f1d9"; +@fa-var-paperclip: "\f0c6"; +@fa-var-paragraph: "\f1dd"; +@fa-var-paste: "\f0ea"; +@fa-var-pause: "\f04c"; +@fa-var-pause-circle: "\f28b"; +@fa-var-pause-circle-o: "\f28c"; +@fa-var-paw: "\f1b0"; +@fa-var-paypal: "\f1ed"; +@fa-var-pencil: "\f040"; +@fa-var-pencil-square: "\f14b"; +@fa-var-pencil-square-o: "\f044"; +@fa-var-percent: "\f295"; +@fa-var-phone: "\f095"; +@fa-var-phone-square: "\f098"; +@fa-var-photo: "\f03e"; +@fa-var-picture-o: "\f03e"; +@fa-var-pie-chart: "\f200"; +@fa-var-pied-piper: "\f2ae"; +@fa-var-pied-piper-alt: "\f1a8"; +@fa-var-pied-piper-pp: "\f1a7"; +@fa-var-pinterest: "\f0d2"; +@fa-var-pinterest-p: "\f231"; +@fa-var-pinterest-square: "\f0d3"; +@fa-var-plane: "\f072"; +@fa-var-play: "\f04b"; +@fa-var-play-circle: "\f144"; +@fa-var-play-circle-o: "\f01d"; +@fa-var-plug: "\f1e6"; +@fa-var-plus: "\f067"; +@fa-var-plus-circle: "\f055"; +@fa-var-plus-square: "\f0fe"; +@fa-var-plus-square-o: "\f196"; +@fa-var-podcast: "\f2ce"; +@fa-var-power-off: "\f011"; +@fa-var-print: "\f02f"; +@fa-var-product-hunt: "\f288"; +@fa-var-puzzle-piece: "\f12e"; +@fa-var-qq: "\f1d6"; +@fa-var-qrcode: "\f029"; +@fa-var-question: "\f128"; +@fa-var-question-circle: "\f059"; +@fa-var-question-circle-o: "\f29c"; +@fa-var-quora: "\f2c4"; +@fa-var-quote-left: "\f10d"; +@fa-var-quote-right: "\f10e"; +@fa-var-ra: "\f1d0"; +@fa-var-random: "\f074"; +@fa-var-ravelry: "\f2d9"; +@fa-var-rebel: "\f1d0"; +@fa-var-recycle: "\f1b8"; +@fa-var-reddit: "\f1a1"; +@fa-var-reddit-alien: "\f281"; +@fa-var-reddit-square: "\f1a2"; +@fa-var-refresh: "\f021"; +@fa-var-registered: "\f25d"; +@fa-var-remove: "\f00d"; +@fa-var-renren: "\f18b"; +@fa-var-reorder: "\f0c9"; +@fa-var-repeat: "\f01e"; +@fa-var-reply: "\f112"; +@fa-var-reply-all: "\f122"; +@fa-var-resistance: "\f1d0"; +@fa-var-retweet: "\f079"; +@fa-var-rmb: "\f157"; +@fa-var-road: "\f018"; +@fa-var-rocket: "\f135"; +@fa-var-rotate-left: "\f0e2"; +@fa-var-rotate-right: "\f01e"; +@fa-var-rouble: "\f158"; +@fa-var-rss: "\f09e"; +@fa-var-rss-square: "\f143"; +@fa-var-rub: "\f158"; +@fa-var-ruble: "\f158"; +@fa-var-rupee: "\f156"; +@fa-var-s15: "\f2cd"; +@fa-var-safari: "\f267"; +@fa-var-save: "\f0c7"; +@fa-var-scissors: "\f0c4"; +@fa-var-scribd: "\f28a"; +@fa-var-search: "\f002"; +@fa-var-search-minus: "\f010"; +@fa-var-search-plus: "\f00e"; +@fa-var-sellsy: "\f213"; +@fa-var-send: "\f1d8"; +@fa-var-send-o: "\f1d9"; +@fa-var-server: "\f233"; +@fa-var-share: "\f064"; +@fa-var-share-alt: "\f1e0"; +@fa-var-share-alt-square: "\f1e1"; +@fa-var-share-square: "\f14d"; +@fa-var-share-square-o: "\f045"; +@fa-var-shekel: "\f20b"; +@fa-var-sheqel: "\f20b"; +@fa-var-shield: "\f132"; +@fa-var-ship: "\f21a"; +@fa-var-shirtsinbulk: "\f214"; +@fa-var-shopping-bag: "\f290"; +@fa-var-shopping-basket: "\f291"; +@fa-var-shopping-cart: "\f07a"; +@fa-var-shower: "\f2cc"; +@fa-var-sign-in: "\f090"; +@fa-var-sign-language: "\f2a7"; +@fa-var-sign-out: "\f08b"; +@fa-var-signal: "\f012"; +@fa-var-signing: "\f2a7"; +@fa-var-simplybuilt: "\f215"; +@fa-var-sitemap: "\f0e8"; +@fa-var-skyatlas: "\f216"; +@fa-var-skype: "\f17e"; +@fa-var-slack: "\f198"; +@fa-var-sliders: "\f1de"; +@fa-var-slideshare: "\f1e7"; +@fa-var-smile-o: "\f118"; +@fa-var-snapchat: "\f2ab"; +@fa-var-snapchat-ghost: "\f2ac"; +@fa-var-snapchat-square: "\f2ad"; +@fa-var-snowflake-o: "\f2dc"; +@fa-var-soccer-ball-o: "\f1e3"; +@fa-var-sort: "\f0dc"; +@fa-var-sort-alpha-asc: "\f15d"; +@fa-var-sort-alpha-desc: "\f15e"; +@fa-var-sort-amount-asc: "\f160"; +@fa-var-sort-amount-desc: "\f161"; +@fa-var-sort-asc: "\f0de"; +@fa-var-sort-desc: "\f0dd"; +@fa-var-sort-down: "\f0dd"; +@fa-var-sort-numeric-asc: "\f162"; +@fa-var-sort-numeric-desc: "\f163"; +@fa-var-sort-up: "\f0de"; +@fa-var-soundcloud: "\f1be"; +@fa-var-space-shuttle: "\f197"; +@fa-var-spinner: "\f110"; +@fa-var-spoon: "\f1b1"; +@fa-var-spotify: "\f1bc"; +@fa-var-square: "\f0c8"; +@fa-var-square-o: "\f096"; +@fa-var-stack-exchange: "\f18d"; +@fa-var-stack-overflow: "\f16c"; +@fa-var-star: "\f005"; +@fa-var-star-half: "\f089"; +@fa-var-star-half-empty: "\f123"; +@fa-var-star-half-full: "\f123"; +@fa-var-star-half-o: "\f123"; +@fa-var-star-o: "\f006"; +@fa-var-steam: "\f1b6"; +@fa-var-steam-square: "\f1b7"; +@fa-var-step-backward: "\f048"; +@fa-var-step-forward: "\f051"; +@fa-var-stethoscope: "\f0f1"; +@fa-var-sticky-note: "\f249"; +@fa-var-sticky-note-o: "\f24a"; +@fa-var-stop: "\f04d"; +@fa-var-stop-circle: "\f28d"; +@fa-var-stop-circle-o: "\f28e"; +@fa-var-street-view: "\f21d"; +@fa-var-strikethrough: "\f0cc"; +@fa-var-stumbleupon: "\f1a4"; +@fa-var-stumbleupon-circle: "\f1a3"; +@fa-var-subscript: "\f12c"; +@fa-var-subway: "\f239"; +@fa-var-suitcase: "\f0f2"; +@fa-var-sun-o: "\f185"; +@fa-var-superpowers: "\f2dd"; +@fa-var-superscript: "\f12b"; +@fa-var-support: "\f1cd"; +@fa-var-table: "\f0ce"; +@fa-var-tablet: "\f10a"; +@fa-var-tachometer: "\f0e4"; +@fa-var-tag: "\f02b"; +@fa-var-tags: "\f02c"; +@fa-var-tasks: "\f0ae"; +@fa-var-taxi: "\f1ba"; +@fa-var-telegram: "\f2c6"; +@fa-var-television: "\f26c"; +@fa-var-tencent-weibo: "\f1d5"; +@fa-var-terminal: "\f120"; +@fa-var-text-height: "\f034"; +@fa-var-text-width: "\f035"; +@fa-var-th: "\f00a"; +@fa-var-th-large: "\f009"; +@fa-var-th-list: "\f00b"; +@fa-var-themeisle: "\f2b2"; +@fa-var-thermometer: "\f2c7"; +@fa-var-thermometer-0: "\f2cb"; +@fa-var-thermometer-1: "\f2ca"; +@fa-var-thermometer-2: "\f2c9"; +@fa-var-thermometer-3: "\f2c8"; +@fa-var-thermometer-4: "\f2c7"; +@fa-var-thermometer-empty: "\f2cb"; +@fa-var-thermometer-full: "\f2c7"; +@fa-var-thermometer-half: "\f2c9"; +@fa-var-thermometer-quarter: "\f2ca"; +@fa-var-thermometer-three-quarters: "\f2c8"; +@fa-var-thumb-tack: "\f08d"; +@fa-var-thumbs-down: "\f165"; +@fa-var-thumbs-o-down: "\f088"; +@fa-var-thumbs-o-up: "\f087"; +@fa-var-thumbs-up: "\f164"; +@fa-var-ticket: "\f145"; +@fa-var-times: "\f00d"; +@fa-var-times-circle: "\f057"; +@fa-var-times-circle-o: "\f05c"; +@fa-var-times-rectangle: "\f2d3"; +@fa-var-times-rectangle-o: "\f2d4"; +@fa-var-tint: "\f043"; +@fa-var-toggle-down: "\f150"; +@fa-var-toggle-left: "\f191"; +@fa-var-toggle-off: "\f204"; +@fa-var-toggle-on: "\f205"; +@fa-var-toggle-right: "\f152"; +@fa-var-toggle-up: "\f151"; +@fa-var-trademark: "\f25c"; +@fa-var-train: "\f238"; +@fa-var-transgender: "\f224"; +@fa-var-transgender-alt: "\f225"; +@fa-var-trash: "\f1f8"; +@fa-var-trash-o: "\f014"; +@fa-var-tree: "\f1bb"; +@fa-var-trello: "\f181"; +@fa-var-tripadvisor: "\f262"; +@fa-var-trophy: "\f091"; +@fa-var-truck: "\f0d1"; +@fa-var-try: "\f195"; +@fa-var-tty: "\f1e4"; +@fa-var-tumblr: "\f173"; +@fa-var-tumblr-square: "\f174"; +@fa-var-turkish-lira: "\f195"; +@fa-var-tv: "\f26c"; +@fa-var-twitch: "\f1e8"; +@fa-var-twitter: "\f099"; +@fa-var-twitter-square: "\f081"; +@fa-var-umbrella: "\f0e9"; +@fa-var-underline: "\f0cd"; +@fa-var-undo: "\f0e2"; +@fa-var-universal-access: "\f29a"; +@fa-var-university: "\f19c"; +@fa-var-unlink: "\f127"; +@fa-var-unlock: "\f09c"; +@fa-var-unlock-alt: "\f13e"; +@fa-var-unsorted: "\f0dc"; +@fa-var-upload: "\f093"; +@fa-var-usb: "\f287"; +@fa-var-usd: "\f155"; +@fa-var-user: "\f007"; +@fa-var-user-circle: "\f2bd"; +@fa-var-user-circle-o: "\f2be"; +@fa-var-user-md: "\f0f0"; +@fa-var-user-o: "\f2c0"; +@fa-var-user-plus: "\f234"; +@fa-var-user-secret: "\f21b"; +@fa-var-user-times: "\f235"; +@fa-var-users: "\f0c0"; +@fa-var-vcard: "\f2bb"; +@fa-var-vcard-o: "\f2bc"; +@fa-var-venus: "\f221"; +@fa-var-venus-double: "\f226"; +@fa-var-venus-mars: "\f228"; +@fa-var-viacoin: "\f237"; +@fa-var-viadeo: "\f2a9"; +@fa-var-viadeo-square: "\f2aa"; +@fa-var-video-camera: "\f03d"; +@fa-var-vimeo: "\f27d"; +@fa-var-vimeo-square: "\f194"; +@fa-var-vine: "\f1ca"; +@fa-var-vk: "\f189"; +@fa-var-volume-control-phone: "\f2a0"; +@fa-var-volume-down: "\f027"; +@fa-var-volume-off: "\f026"; +@fa-var-volume-up: "\f028"; +@fa-var-warning: "\f071"; +@fa-var-wechat: "\f1d7"; +@fa-var-weibo: "\f18a"; +@fa-var-weixin: "\f1d7"; +@fa-var-whatsapp: "\f232"; +@fa-var-wheelchair: "\f193"; +@fa-var-wheelchair-alt: "\f29b"; +@fa-var-wifi: "\f1eb"; +@fa-var-wikipedia-w: "\f266"; +@fa-var-window-close: "\f2d3"; +@fa-var-window-close-o: "\f2d4"; +@fa-var-window-maximize: "\f2d0"; +@fa-var-window-minimize: "\f2d1"; +@fa-var-window-restore: "\f2d2"; +@fa-var-windows: "\f17a"; +@fa-var-won: "\f159"; +@fa-var-wordpress: "\f19a"; +@fa-var-wpbeginner: "\f297"; +@fa-var-wpexplorer: "\f2de"; +@fa-var-wpforms: "\f298"; +@fa-var-wrench: "\f0ad"; +@fa-var-xing: "\f168"; +@fa-var-xing-square: "\f169"; +@fa-var-y-combinator: "\f23b"; +@fa-var-y-combinator-square: "\f1d4"; +@fa-var-yahoo: "\f19e"; +@fa-var-yc: "\f23b"; +@fa-var-yc-square: "\f1d4"; +@fa-var-yelp: "\f1e9"; +@fa-var-yen: "\f157"; +@fa-var-yoast: "\f2b1"; +@fa-var-youtube: "\f167"; +@fa-var-youtube-play: "\f16a"; +@fa-var-youtube-square: "\f166"; + diff --git a/assets/vendors/iconfonts/font-awesome/package.json b/assets/vendors/iconfonts/font-awesome/package.json new file mode 100755 index 0000000..9d3c85d --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/package.json @@ -0,0 +1,78 @@ +{ + "_args": [ + [ + "font-awesome@4.7.0", + "/Applications/XAMPP/xamppfiles/htdocs/star_pro" + ] + ], + "_from": "font-awesome@4.7.0", + "_id": "font-awesome@4.7.0", + "_inBundle": false, + "_integrity": "sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM=", + "_location": "/font-awesome", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "font-awesome@4.7.0", + "name": "font-awesome", + "escapedName": "font-awesome", + "rawSpec": "4.7.0", + "saveSpec": null, + "fetchSpec": "4.7.0" + }, + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz", + "_spec": "4.7.0", + "_where": "/Applications/XAMPP/xamppfiles/htdocs/star_pro", + "author": { + "name": "Dave Gandy", + "email": "dave@fontawesome.io", + "url": "http://twitter.com/davegandy" + }, + "bugs": { + "url": "http://github.com/FortAwesome/Font-Awesome/issues" + }, + "contributors": [ + { + "name": "Brian Talbot", + "url": "http://twitter.com/talbs" + }, + { + "name": "Travis Chase", + "url": "http://twitter.com/supercodepoet" + }, + { + "name": "Rob Madole", + "url": "http://twitter.com/robmadole" + }, + { + "name": "Geremia Taglialatela", + "url": "http://twitter.com/gtagliala" + } + ], + "dependencies": {}, + "description": "The iconic font and CSS framework", + "engines": { + "node": ">=0.10.3" + }, + "homepage": "http://fontawesome.io/", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "font", + "bootstrap" + ], + "license": "(OFL-1.1 AND MIT)", + "name": "font-awesome", + "repository": { + "type": "git", + "url": "git+https://github.com/FortAwesome/Font-Awesome.git" + }, + "style": "css/font-awesome.css", + "version": "4.7.0" +} diff --git a/assets/vendors/iconfonts/font-awesome/scss/_animated.scss b/assets/vendors/iconfonts/font-awesome/scss/_animated.scss new file mode 100755 index 0000000..8a020db --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_animated.scss @@ -0,0 +1,34 @@ +// Spinning Icons +// -------------------------- + +.#{$fa-css-prefix}-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} + +.#{$fa-css-prefix}-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); + } +} diff --git a/assets/vendors/iconfonts/font-awesome/scss/_bordered-pulled.scss b/assets/vendors/iconfonts/font-awesome/scss/_bordered-pulled.scss new file mode 100755 index 0000000..d4b85a0 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_bordered-pulled.scss @@ -0,0 +1,25 @@ +// Bordered & Pulled +// ------------------------- + +.#{$fa-css-prefix}-border { + padding: .2em .25em .15em; + border: solid .08em $fa-border-color; + border-radius: .1em; +} + +.#{$fa-css-prefix}-pull-left { float: left; } +.#{$fa-css-prefix}-pull-right { float: right; } + +.#{$fa-css-prefix} { + &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } + &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } +} + +/* Deprecated as of 4.4.0 */ +.pull-right { float: right; } +.pull-left { float: left; } + +.#{$fa-css-prefix} { + &.pull-left { margin-right: .3em; } + &.pull-right { margin-left: .3em; } +} diff --git a/assets/vendors/iconfonts/font-awesome/scss/_core.scss b/assets/vendors/iconfonts/font-awesome/scss/_core.scss new file mode 100755 index 0000000..7425ef8 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_core.scss @@ -0,0 +1,12 @@ +// Base Class Definition +// ------------------------- + +.#{$fa-css-prefix} { + display: inline-block; + font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} diff --git a/assets/vendors/iconfonts/font-awesome/scss/_fixed-width.scss b/assets/vendors/iconfonts/font-awesome/scss/_fixed-width.scss new file mode 100755 index 0000000..b221c98 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_fixed-width.scss @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.#{$fa-css-prefix}-fw { + width: (18em / 14); + text-align: center; +} diff --git a/assets/vendors/iconfonts/font-awesome/scss/_icons.scss b/assets/vendors/iconfonts/font-awesome/scss/_icons.scss new file mode 100755 index 0000000..e63e702 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_icons.scss @@ -0,0 +1,789 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ + +.#{$fa-css-prefix}-glass:before { content: $fa-var-glass; } +.#{$fa-css-prefix}-music:before { content: $fa-var-music; } +.#{$fa-css-prefix}-search:before { content: $fa-var-search; } +.#{$fa-css-prefix}-envelope-o:before { content: $fa-var-envelope-o; } +.#{$fa-css-prefix}-heart:before { content: $fa-var-heart; } +.#{$fa-css-prefix}-star:before { content: $fa-var-star; } +.#{$fa-css-prefix}-star-o:before { content: $fa-var-star-o; } +.#{$fa-css-prefix}-user:before { content: $fa-var-user; } +.#{$fa-css-prefix}-film:before { content: $fa-var-film; } +.#{$fa-css-prefix}-th-large:before { content: $fa-var-th-large; } +.#{$fa-css-prefix}-th:before { content: $fa-var-th; } +.#{$fa-css-prefix}-th-list:before { content: $fa-var-th-list; } +.#{$fa-css-prefix}-check:before { content: $fa-var-check; } +.#{$fa-css-prefix}-remove:before, +.#{$fa-css-prefix}-close:before, +.#{$fa-css-prefix}-times:before { content: $fa-var-times; } +.#{$fa-css-prefix}-search-plus:before { content: $fa-var-search-plus; } +.#{$fa-css-prefix}-search-minus:before { content: $fa-var-search-minus; } +.#{$fa-css-prefix}-power-off:before { content: $fa-var-power-off; } +.#{$fa-css-prefix}-signal:before { content: $fa-var-signal; } +.#{$fa-css-prefix}-gear:before, +.#{$fa-css-prefix}-cog:before { content: $fa-var-cog; } +.#{$fa-css-prefix}-trash-o:before { content: $fa-var-trash-o; } +.#{$fa-css-prefix}-home:before { content: $fa-var-home; } +.#{$fa-css-prefix}-file-o:before { content: $fa-var-file-o; } +.#{$fa-css-prefix}-clock-o:before { content: $fa-var-clock-o; } +.#{$fa-css-prefix}-road:before { content: $fa-var-road; } +.#{$fa-css-prefix}-download:before { content: $fa-var-download; } +.#{$fa-css-prefix}-arrow-circle-o-down:before { content: $fa-var-arrow-circle-o-down; } +.#{$fa-css-prefix}-arrow-circle-o-up:before { content: $fa-var-arrow-circle-o-up; } +.#{$fa-css-prefix}-inbox:before { content: $fa-var-inbox; } +.#{$fa-css-prefix}-play-circle-o:before { content: $fa-var-play-circle-o; } +.#{$fa-css-prefix}-rotate-right:before, +.#{$fa-css-prefix}-repeat:before { content: $fa-var-repeat; } +.#{$fa-css-prefix}-refresh:before { content: $fa-var-refresh; } +.#{$fa-css-prefix}-list-alt:before { content: $fa-var-list-alt; } +.#{$fa-css-prefix}-lock:before { content: $fa-var-lock; } +.#{$fa-css-prefix}-flag:before { content: $fa-var-flag; } +.#{$fa-css-prefix}-headphones:before { content: $fa-var-headphones; } +.#{$fa-css-prefix}-volume-off:before { content: $fa-var-volume-off; } +.#{$fa-css-prefix}-volume-down:before { content: $fa-var-volume-down; } +.#{$fa-css-prefix}-volume-up:before { content: $fa-var-volume-up; } +.#{$fa-css-prefix}-qrcode:before { content: $fa-var-qrcode; } +.#{$fa-css-prefix}-barcode:before { content: $fa-var-barcode; } +.#{$fa-css-prefix}-tag:before { content: $fa-var-tag; } +.#{$fa-css-prefix}-tags:before { content: $fa-var-tags; } +.#{$fa-css-prefix}-book:before { content: $fa-var-book; } +.#{$fa-css-prefix}-bookmark:before { content: $fa-var-bookmark; } +.#{$fa-css-prefix}-print:before { content: $fa-var-print; } +.#{$fa-css-prefix}-camera:before { content: $fa-var-camera; } +.#{$fa-css-prefix}-font:before { content: $fa-var-font; } +.#{$fa-css-prefix}-bold:before { content: $fa-var-bold; } +.#{$fa-css-prefix}-italic:before { content: $fa-var-italic; } +.#{$fa-css-prefix}-text-height:before { content: $fa-var-text-height; } +.#{$fa-css-prefix}-text-width:before { content: $fa-var-text-width; } +.#{$fa-css-prefix}-align-left:before { content: $fa-var-align-left; } +.#{$fa-css-prefix}-align-center:before { content: $fa-var-align-center; } +.#{$fa-css-prefix}-align-right:before { content: $fa-var-align-right; } +.#{$fa-css-prefix}-align-justify:before { content: $fa-var-align-justify; } +.#{$fa-css-prefix}-list:before { content: $fa-var-list; } +.#{$fa-css-prefix}-dedent:before, +.#{$fa-css-prefix}-outdent:before { content: $fa-var-outdent; } +.#{$fa-css-prefix}-indent:before { content: $fa-var-indent; } +.#{$fa-css-prefix}-video-camera:before { content: $fa-var-video-camera; } +.#{$fa-css-prefix}-photo:before, +.#{$fa-css-prefix}-image:before, +.#{$fa-css-prefix}-picture-o:before { content: $fa-var-picture-o; } +.#{$fa-css-prefix}-pencil:before { content: $fa-var-pencil; } +.#{$fa-css-prefix}-map-marker:before { content: $fa-var-map-marker; } +.#{$fa-css-prefix}-adjust:before { content: $fa-var-adjust; } +.#{$fa-css-prefix}-tint:before { content: $fa-var-tint; } +.#{$fa-css-prefix}-edit:before, +.#{$fa-css-prefix}-pencil-square-o:before { content: $fa-var-pencil-square-o; } +.#{$fa-css-prefix}-share-square-o:before { content: $fa-var-share-square-o; } +.#{$fa-css-prefix}-check-square-o:before { content: $fa-var-check-square-o; } +.#{$fa-css-prefix}-arrows:before { content: $fa-var-arrows; } +.#{$fa-css-prefix}-step-backward:before { content: $fa-var-step-backward; } +.#{$fa-css-prefix}-fast-backward:before { content: $fa-var-fast-backward; } +.#{$fa-css-prefix}-backward:before { content: $fa-var-backward; } +.#{$fa-css-prefix}-play:before { content: $fa-var-play; } +.#{$fa-css-prefix}-pause:before { content: $fa-var-pause; } +.#{$fa-css-prefix}-stop:before { content: $fa-var-stop; } +.#{$fa-css-prefix}-forward:before { content: $fa-var-forward; } +.#{$fa-css-prefix}-fast-forward:before { content: $fa-var-fast-forward; } +.#{$fa-css-prefix}-step-forward:before { content: $fa-var-step-forward; } +.#{$fa-css-prefix}-eject:before { content: $fa-var-eject; } +.#{$fa-css-prefix}-chevron-left:before { content: $fa-var-chevron-left; } +.#{$fa-css-prefix}-chevron-right:before { content: $fa-var-chevron-right; } +.#{$fa-css-prefix}-plus-circle:before { content: $fa-var-plus-circle; } +.#{$fa-css-prefix}-minus-circle:before { content: $fa-var-minus-circle; } +.#{$fa-css-prefix}-times-circle:before { content: $fa-var-times-circle; } +.#{$fa-css-prefix}-check-circle:before { content: $fa-var-check-circle; } +.#{$fa-css-prefix}-question-circle:before { content: $fa-var-question-circle; } +.#{$fa-css-prefix}-info-circle:before { content: $fa-var-info-circle; } +.#{$fa-css-prefix}-crosshairs:before { content: $fa-var-crosshairs; } +.#{$fa-css-prefix}-times-circle-o:before { content: $fa-var-times-circle-o; } +.#{$fa-css-prefix}-check-circle-o:before { content: $fa-var-check-circle-o; } +.#{$fa-css-prefix}-ban:before { content: $fa-var-ban; } +.#{$fa-css-prefix}-arrow-left:before { content: $fa-var-arrow-left; } +.#{$fa-css-prefix}-arrow-right:before { content: $fa-var-arrow-right; } +.#{$fa-css-prefix}-arrow-up:before { content: $fa-var-arrow-up; } +.#{$fa-css-prefix}-arrow-down:before { content: $fa-var-arrow-down; } +.#{$fa-css-prefix}-mail-forward:before, +.#{$fa-css-prefix}-share:before { content: $fa-var-share; } +.#{$fa-css-prefix}-expand:before { content: $fa-var-expand; } +.#{$fa-css-prefix}-compress:before { content: $fa-var-compress; } +.#{$fa-css-prefix}-plus:before { content: $fa-var-plus; } +.#{$fa-css-prefix}-minus:before { content: $fa-var-minus; } +.#{$fa-css-prefix}-asterisk:before { content: $fa-var-asterisk; } +.#{$fa-css-prefix}-exclamation-circle:before { content: $fa-var-exclamation-circle; } +.#{$fa-css-prefix}-gift:before { content: $fa-var-gift; } +.#{$fa-css-prefix}-leaf:before { content: $fa-var-leaf; } +.#{$fa-css-prefix}-fire:before { content: $fa-var-fire; } +.#{$fa-css-prefix}-eye:before { content: $fa-var-eye; } +.#{$fa-css-prefix}-eye-slash:before { content: $fa-var-eye-slash; } +.#{$fa-css-prefix}-warning:before, +.#{$fa-css-prefix}-exclamation-triangle:before { content: $fa-var-exclamation-triangle; } +.#{$fa-css-prefix}-plane:before { content: $fa-var-plane; } +.#{$fa-css-prefix}-calendar:before { content: $fa-var-calendar; } +.#{$fa-css-prefix}-random:before { content: $fa-var-random; } +.#{$fa-css-prefix}-comment:before { content: $fa-var-comment; } +.#{$fa-css-prefix}-magnet:before { content: $fa-var-magnet; } +.#{$fa-css-prefix}-chevron-up:before { content: $fa-var-chevron-up; } +.#{$fa-css-prefix}-chevron-down:before { content: $fa-var-chevron-down; } +.#{$fa-css-prefix}-retweet:before { content: $fa-var-retweet; } +.#{$fa-css-prefix}-shopping-cart:before { content: $fa-var-shopping-cart; } +.#{$fa-css-prefix}-folder:before { content: $fa-var-folder; } +.#{$fa-css-prefix}-folder-open:before { content: $fa-var-folder-open; } +.#{$fa-css-prefix}-arrows-v:before { content: $fa-var-arrows-v; } +.#{$fa-css-prefix}-arrows-h:before { content: $fa-var-arrows-h; } +.#{$fa-css-prefix}-bar-chart-o:before, +.#{$fa-css-prefix}-bar-chart:before { content: $fa-var-bar-chart; } +.#{$fa-css-prefix}-twitter-square:before { content: $fa-var-twitter-square; } +.#{$fa-css-prefix}-facebook-square:before { content: $fa-var-facebook-square; } +.#{$fa-css-prefix}-camera-retro:before { content: $fa-var-camera-retro; } +.#{$fa-css-prefix}-key:before { content: $fa-var-key; } +.#{$fa-css-prefix}-gears:before, +.#{$fa-css-prefix}-cogs:before { content: $fa-var-cogs; } +.#{$fa-css-prefix}-comments:before { content: $fa-var-comments; } +.#{$fa-css-prefix}-thumbs-o-up:before { content: $fa-var-thumbs-o-up; } +.#{$fa-css-prefix}-thumbs-o-down:before { content: $fa-var-thumbs-o-down; } +.#{$fa-css-prefix}-star-half:before { content: $fa-var-star-half; } +.#{$fa-css-prefix}-heart-o:before { content: $fa-var-heart-o; } +.#{$fa-css-prefix}-sign-out:before { content: $fa-var-sign-out; } +.#{$fa-css-prefix}-linkedin-square:before { content: $fa-var-linkedin-square; } +.#{$fa-css-prefix}-thumb-tack:before { content: $fa-var-thumb-tack; } +.#{$fa-css-prefix}-external-link:before { content: $fa-var-external-link; } +.#{$fa-css-prefix}-sign-in:before { content: $fa-var-sign-in; } +.#{$fa-css-prefix}-trophy:before { content: $fa-var-trophy; } +.#{$fa-css-prefix}-github-square:before { content: $fa-var-github-square; } +.#{$fa-css-prefix}-upload:before { content: $fa-var-upload; } +.#{$fa-css-prefix}-lemon-o:before { content: $fa-var-lemon-o; } +.#{$fa-css-prefix}-phone:before { content: $fa-var-phone; } +.#{$fa-css-prefix}-square-o:before { content: $fa-var-square-o; } +.#{$fa-css-prefix}-bookmark-o:before { content: $fa-var-bookmark-o; } +.#{$fa-css-prefix}-phone-square:before { content: $fa-var-phone-square; } +.#{$fa-css-prefix}-twitter:before { content: $fa-var-twitter; } +.#{$fa-css-prefix}-facebook-f:before, +.#{$fa-css-prefix}-facebook:before { content: $fa-var-facebook; } +.#{$fa-css-prefix}-github:before { content: $fa-var-github; } +.#{$fa-css-prefix}-unlock:before { content: $fa-var-unlock; } +.#{$fa-css-prefix}-credit-card:before { content: $fa-var-credit-card; } +.#{$fa-css-prefix}-feed:before, +.#{$fa-css-prefix}-rss:before { content: $fa-var-rss; } +.#{$fa-css-prefix}-hdd-o:before { content: $fa-var-hdd-o; } +.#{$fa-css-prefix}-bullhorn:before { content: $fa-var-bullhorn; } +.#{$fa-css-prefix}-bell:before { content: $fa-var-bell; } +.#{$fa-css-prefix}-certificate:before { content: $fa-var-certificate; } +.#{$fa-css-prefix}-hand-o-right:before { content: $fa-var-hand-o-right; } +.#{$fa-css-prefix}-hand-o-left:before { content: $fa-var-hand-o-left; } +.#{$fa-css-prefix}-hand-o-up:before { content: $fa-var-hand-o-up; } +.#{$fa-css-prefix}-hand-o-down:before { content: $fa-var-hand-o-down; } +.#{$fa-css-prefix}-arrow-circle-left:before { content: $fa-var-arrow-circle-left; } +.#{$fa-css-prefix}-arrow-circle-right:before { content: $fa-var-arrow-circle-right; } +.#{$fa-css-prefix}-arrow-circle-up:before { content: $fa-var-arrow-circle-up; } +.#{$fa-css-prefix}-arrow-circle-down:before { content: $fa-var-arrow-circle-down; } +.#{$fa-css-prefix}-globe:before { content: $fa-var-globe; } +.#{$fa-css-prefix}-wrench:before { content: $fa-var-wrench; } +.#{$fa-css-prefix}-tasks:before { content: $fa-var-tasks; } +.#{$fa-css-prefix}-filter:before { content: $fa-var-filter; } +.#{$fa-css-prefix}-briefcase:before { content: $fa-var-briefcase; } +.#{$fa-css-prefix}-arrows-alt:before { content: $fa-var-arrows-alt; } +.#{$fa-css-prefix}-group:before, +.#{$fa-css-prefix}-users:before { content: $fa-var-users; } +.#{$fa-css-prefix}-chain:before, +.#{$fa-css-prefix}-link:before { content: $fa-var-link; } +.#{$fa-css-prefix}-cloud:before { content: $fa-var-cloud; } +.#{$fa-css-prefix}-flask:before { content: $fa-var-flask; } +.#{$fa-css-prefix}-cut:before, +.#{$fa-css-prefix}-scissors:before { content: $fa-var-scissors; } +.#{$fa-css-prefix}-copy:before, +.#{$fa-css-prefix}-files-o:before { content: $fa-var-files-o; } +.#{$fa-css-prefix}-paperclip:before { content: $fa-var-paperclip; } +.#{$fa-css-prefix}-save:before, +.#{$fa-css-prefix}-floppy-o:before { content: $fa-var-floppy-o; } +.#{$fa-css-prefix}-square:before { content: $fa-var-square; } +.#{$fa-css-prefix}-navicon:before, +.#{$fa-css-prefix}-reorder:before, +.#{$fa-css-prefix}-bars:before { content: $fa-var-bars; } +.#{$fa-css-prefix}-list-ul:before { content: $fa-var-list-ul; } +.#{$fa-css-prefix}-list-ol:before { content: $fa-var-list-ol; } +.#{$fa-css-prefix}-strikethrough:before { content: $fa-var-strikethrough; } +.#{$fa-css-prefix}-underline:before { content: $fa-var-underline; } +.#{$fa-css-prefix}-table:before { content: $fa-var-table; } +.#{$fa-css-prefix}-magic:before { content: $fa-var-magic; } +.#{$fa-css-prefix}-truck:before { content: $fa-var-truck; } +.#{$fa-css-prefix}-pinterest:before { content: $fa-var-pinterest; } +.#{$fa-css-prefix}-pinterest-square:before { content: $fa-var-pinterest-square; } +.#{$fa-css-prefix}-google-plus-square:before { content: $fa-var-google-plus-square; } +.#{$fa-css-prefix}-google-plus:before { content: $fa-var-google-plus; } +.#{$fa-css-prefix}-money:before { content: $fa-var-money; } +.#{$fa-css-prefix}-caret-down:before { content: $fa-var-caret-down; } +.#{$fa-css-prefix}-caret-up:before { content: $fa-var-caret-up; } +.#{$fa-css-prefix}-caret-left:before { content: $fa-var-caret-left; } +.#{$fa-css-prefix}-caret-right:before { content: $fa-var-caret-right; } +.#{$fa-css-prefix}-columns:before { content: $fa-var-columns; } +.#{$fa-css-prefix}-unsorted:before, +.#{$fa-css-prefix}-sort:before { content: $fa-var-sort; } +.#{$fa-css-prefix}-sort-down:before, +.#{$fa-css-prefix}-sort-desc:before { content: $fa-var-sort-desc; } +.#{$fa-css-prefix}-sort-up:before, +.#{$fa-css-prefix}-sort-asc:before { content: $fa-var-sort-asc; } +.#{$fa-css-prefix}-envelope:before { content: $fa-var-envelope; } +.#{$fa-css-prefix}-linkedin:before { content: $fa-var-linkedin; } +.#{$fa-css-prefix}-rotate-left:before, +.#{$fa-css-prefix}-undo:before { content: $fa-var-undo; } +.#{$fa-css-prefix}-legal:before, +.#{$fa-css-prefix}-gavel:before { content: $fa-var-gavel; } +.#{$fa-css-prefix}-dashboard:before, +.#{$fa-css-prefix}-tachometer:before { content: $fa-var-tachometer; } +.#{$fa-css-prefix}-comment-o:before { content: $fa-var-comment-o; } +.#{$fa-css-prefix}-comments-o:before { content: $fa-var-comments-o; } +.#{$fa-css-prefix}-flash:before, +.#{$fa-css-prefix}-bolt:before { content: $fa-var-bolt; } +.#{$fa-css-prefix}-sitemap:before { content: $fa-var-sitemap; } +.#{$fa-css-prefix}-umbrella:before { content: $fa-var-umbrella; } +.#{$fa-css-prefix}-paste:before, +.#{$fa-css-prefix}-clipboard:before { content: $fa-var-clipboard; } +.#{$fa-css-prefix}-lightbulb-o:before { content: $fa-var-lightbulb-o; } +.#{$fa-css-prefix}-exchange:before { content: $fa-var-exchange; } +.#{$fa-css-prefix}-cloud-download:before { content: $fa-var-cloud-download; } +.#{$fa-css-prefix}-cloud-upload:before { content: $fa-var-cloud-upload; } +.#{$fa-css-prefix}-user-md:before { content: $fa-var-user-md; } +.#{$fa-css-prefix}-stethoscope:before { content: $fa-var-stethoscope; } +.#{$fa-css-prefix}-suitcase:before { content: $fa-var-suitcase; } +.#{$fa-css-prefix}-bell-o:before { content: $fa-var-bell-o; } +.#{$fa-css-prefix}-coffee:before { content: $fa-var-coffee; } +.#{$fa-css-prefix}-cutlery:before { content: $fa-var-cutlery; } +.#{$fa-css-prefix}-file-text-o:before { content: $fa-var-file-text-o; } +.#{$fa-css-prefix}-building-o:before { content: $fa-var-building-o; } +.#{$fa-css-prefix}-hospital-o:before { content: $fa-var-hospital-o; } +.#{$fa-css-prefix}-ambulance:before { content: $fa-var-ambulance; } +.#{$fa-css-prefix}-medkit:before { content: $fa-var-medkit; } +.#{$fa-css-prefix}-fighter-jet:before { content: $fa-var-fighter-jet; } +.#{$fa-css-prefix}-beer:before { content: $fa-var-beer; } +.#{$fa-css-prefix}-h-square:before { content: $fa-var-h-square; } +.#{$fa-css-prefix}-plus-square:before { content: $fa-var-plus-square; } +.#{$fa-css-prefix}-angle-double-left:before { content: $fa-var-angle-double-left; } +.#{$fa-css-prefix}-angle-double-right:before { content: $fa-var-angle-double-right; } +.#{$fa-css-prefix}-angle-double-up:before { content: $fa-var-angle-double-up; } +.#{$fa-css-prefix}-angle-double-down:before { content: $fa-var-angle-double-down; } +.#{$fa-css-prefix}-angle-left:before { content: $fa-var-angle-left; } +.#{$fa-css-prefix}-angle-right:before { content: $fa-var-angle-right; } +.#{$fa-css-prefix}-angle-up:before { content: $fa-var-angle-up; } +.#{$fa-css-prefix}-angle-down:before { content: $fa-var-angle-down; } +.#{$fa-css-prefix}-desktop:before { content: $fa-var-desktop; } +.#{$fa-css-prefix}-laptop:before { content: $fa-var-laptop; } +.#{$fa-css-prefix}-tablet:before { content: $fa-var-tablet; } +.#{$fa-css-prefix}-mobile-phone:before, +.#{$fa-css-prefix}-mobile:before { content: $fa-var-mobile; } +.#{$fa-css-prefix}-circle-o:before { content: $fa-var-circle-o; } +.#{$fa-css-prefix}-quote-left:before { content: $fa-var-quote-left; } +.#{$fa-css-prefix}-quote-right:before { content: $fa-var-quote-right; } +.#{$fa-css-prefix}-spinner:before { content: $fa-var-spinner; } +.#{$fa-css-prefix}-circle:before { content: $fa-var-circle; } +.#{$fa-css-prefix}-mail-reply:before, +.#{$fa-css-prefix}-reply:before { content: $fa-var-reply; } +.#{$fa-css-prefix}-github-alt:before { content: $fa-var-github-alt; } +.#{$fa-css-prefix}-folder-o:before { content: $fa-var-folder-o; } +.#{$fa-css-prefix}-folder-open-o:before { content: $fa-var-folder-open-o; } +.#{$fa-css-prefix}-smile-o:before { content: $fa-var-smile-o; } +.#{$fa-css-prefix}-frown-o:before { content: $fa-var-frown-o; } +.#{$fa-css-prefix}-meh-o:before { content: $fa-var-meh-o; } +.#{$fa-css-prefix}-gamepad:before { content: $fa-var-gamepad; } +.#{$fa-css-prefix}-keyboard-o:before { content: $fa-var-keyboard-o; } +.#{$fa-css-prefix}-flag-o:before { content: $fa-var-flag-o; } +.#{$fa-css-prefix}-flag-checkered:before { content: $fa-var-flag-checkered; } +.#{$fa-css-prefix}-terminal:before { content: $fa-var-terminal; } +.#{$fa-css-prefix}-code:before { content: $fa-var-code; } +.#{$fa-css-prefix}-mail-reply-all:before, +.#{$fa-css-prefix}-reply-all:before { content: $fa-var-reply-all; } +.#{$fa-css-prefix}-star-half-empty:before, +.#{$fa-css-prefix}-star-half-full:before, +.#{$fa-css-prefix}-star-half-o:before { content: $fa-var-star-half-o; } +.#{$fa-css-prefix}-location-arrow:before { content: $fa-var-location-arrow; } +.#{$fa-css-prefix}-crop:before { content: $fa-var-crop; } +.#{$fa-css-prefix}-code-fork:before { content: $fa-var-code-fork; } +.#{$fa-css-prefix}-unlink:before, +.#{$fa-css-prefix}-chain-broken:before { content: $fa-var-chain-broken; } +.#{$fa-css-prefix}-question:before { content: $fa-var-question; } +.#{$fa-css-prefix}-info:before { content: $fa-var-info; } +.#{$fa-css-prefix}-exclamation:before { content: $fa-var-exclamation; } +.#{$fa-css-prefix}-superscript:before { content: $fa-var-superscript; } +.#{$fa-css-prefix}-subscript:before { content: $fa-var-subscript; } +.#{$fa-css-prefix}-eraser:before { content: $fa-var-eraser; } +.#{$fa-css-prefix}-puzzle-piece:before { content: $fa-var-puzzle-piece; } +.#{$fa-css-prefix}-microphone:before { content: $fa-var-microphone; } +.#{$fa-css-prefix}-microphone-slash:before { content: $fa-var-microphone-slash; } +.#{$fa-css-prefix}-shield:before { content: $fa-var-shield; } +.#{$fa-css-prefix}-calendar-o:before { content: $fa-var-calendar-o; } +.#{$fa-css-prefix}-fire-extinguisher:before { content: $fa-var-fire-extinguisher; } +.#{$fa-css-prefix}-rocket:before { content: $fa-var-rocket; } +.#{$fa-css-prefix}-maxcdn:before { content: $fa-var-maxcdn; } +.#{$fa-css-prefix}-chevron-circle-left:before { content: $fa-var-chevron-circle-left; } +.#{$fa-css-prefix}-chevron-circle-right:before { content: $fa-var-chevron-circle-right; } +.#{$fa-css-prefix}-chevron-circle-up:before { content: $fa-var-chevron-circle-up; } +.#{$fa-css-prefix}-chevron-circle-down:before { content: $fa-var-chevron-circle-down; } +.#{$fa-css-prefix}-html5:before { content: $fa-var-html5; } +.#{$fa-css-prefix}-css3:before { content: $fa-var-css3; } +.#{$fa-css-prefix}-anchor:before { content: $fa-var-anchor; } +.#{$fa-css-prefix}-unlock-alt:before { content: $fa-var-unlock-alt; } +.#{$fa-css-prefix}-bullseye:before { content: $fa-var-bullseye; } +.#{$fa-css-prefix}-ellipsis-h:before { content: $fa-var-ellipsis-h; } +.#{$fa-css-prefix}-ellipsis-v:before { content: $fa-var-ellipsis-v; } +.#{$fa-css-prefix}-rss-square:before { content: $fa-var-rss-square; } +.#{$fa-css-prefix}-play-circle:before { content: $fa-var-play-circle; } +.#{$fa-css-prefix}-ticket:before { content: $fa-var-ticket; } +.#{$fa-css-prefix}-minus-square:before { content: $fa-var-minus-square; } +.#{$fa-css-prefix}-minus-square-o:before { content: $fa-var-minus-square-o; } +.#{$fa-css-prefix}-level-up:before { content: $fa-var-level-up; } +.#{$fa-css-prefix}-level-down:before { content: $fa-var-level-down; } +.#{$fa-css-prefix}-check-square:before { content: $fa-var-check-square; } +.#{$fa-css-prefix}-pencil-square:before { content: $fa-var-pencil-square; } +.#{$fa-css-prefix}-external-link-square:before { content: $fa-var-external-link-square; } +.#{$fa-css-prefix}-share-square:before { content: $fa-var-share-square; } +.#{$fa-css-prefix}-compass:before { content: $fa-var-compass; } +.#{$fa-css-prefix}-toggle-down:before, +.#{$fa-css-prefix}-caret-square-o-down:before { content: $fa-var-caret-square-o-down; } +.#{$fa-css-prefix}-toggle-up:before, +.#{$fa-css-prefix}-caret-square-o-up:before { content: $fa-var-caret-square-o-up; } +.#{$fa-css-prefix}-toggle-right:before, +.#{$fa-css-prefix}-caret-square-o-right:before { content: $fa-var-caret-square-o-right; } +.#{$fa-css-prefix}-euro:before, +.#{$fa-css-prefix}-eur:before { content: $fa-var-eur; } +.#{$fa-css-prefix}-gbp:before { content: $fa-var-gbp; } +.#{$fa-css-prefix}-dollar:before, +.#{$fa-css-prefix}-usd:before { content: $fa-var-usd; } +.#{$fa-css-prefix}-rupee:before, +.#{$fa-css-prefix}-inr:before { content: $fa-var-inr; } +.#{$fa-css-prefix}-cny:before, +.#{$fa-css-prefix}-rmb:before, +.#{$fa-css-prefix}-yen:before, +.#{$fa-css-prefix}-jpy:before { content: $fa-var-jpy; } +.#{$fa-css-prefix}-ruble:before, +.#{$fa-css-prefix}-rouble:before, +.#{$fa-css-prefix}-rub:before { content: $fa-var-rub; } +.#{$fa-css-prefix}-won:before, +.#{$fa-css-prefix}-krw:before { content: $fa-var-krw; } +.#{$fa-css-prefix}-bitcoin:before, +.#{$fa-css-prefix}-btc:before { content: $fa-var-btc; } +.#{$fa-css-prefix}-file:before { content: $fa-var-file; } +.#{$fa-css-prefix}-file-text:before { content: $fa-var-file-text; } +.#{$fa-css-prefix}-sort-alpha-asc:before { content: $fa-var-sort-alpha-asc; } +.#{$fa-css-prefix}-sort-alpha-desc:before { content: $fa-var-sort-alpha-desc; } +.#{$fa-css-prefix}-sort-amount-asc:before { content: $fa-var-sort-amount-asc; } +.#{$fa-css-prefix}-sort-amount-desc:before { content: $fa-var-sort-amount-desc; } +.#{$fa-css-prefix}-sort-numeric-asc:before { content: $fa-var-sort-numeric-asc; } +.#{$fa-css-prefix}-sort-numeric-desc:before { content: $fa-var-sort-numeric-desc; } +.#{$fa-css-prefix}-thumbs-up:before { content: $fa-var-thumbs-up; } +.#{$fa-css-prefix}-thumbs-down:before { content: $fa-var-thumbs-down; } +.#{$fa-css-prefix}-youtube-square:before { content: $fa-var-youtube-square; } +.#{$fa-css-prefix}-youtube:before { content: $fa-var-youtube; } +.#{$fa-css-prefix}-xing:before { content: $fa-var-xing; } +.#{$fa-css-prefix}-xing-square:before { content: $fa-var-xing-square; } +.#{$fa-css-prefix}-youtube-play:before { content: $fa-var-youtube-play; } +.#{$fa-css-prefix}-dropbox:before { content: $fa-var-dropbox; } +.#{$fa-css-prefix}-stack-overflow:before { content: $fa-var-stack-overflow; } +.#{$fa-css-prefix}-instagram:before { content: $fa-var-instagram; } +.#{$fa-css-prefix}-flickr:before { content: $fa-var-flickr; } +.#{$fa-css-prefix}-adn:before { content: $fa-var-adn; } +.#{$fa-css-prefix}-bitbucket:before { content: $fa-var-bitbucket; } +.#{$fa-css-prefix}-bitbucket-square:before { content: $fa-var-bitbucket-square; } +.#{$fa-css-prefix}-tumblr:before { content: $fa-var-tumblr; } +.#{$fa-css-prefix}-tumblr-square:before { content: $fa-var-tumblr-square; } +.#{$fa-css-prefix}-long-arrow-down:before { content: $fa-var-long-arrow-down; } +.#{$fa-css-prefix}-long-arrow-up:before { content: $fa-var-long-arrow-up; } +.#{$fa-css-prefix}-long-arrow-left:before { content: $fa-var-long-arrow-left; } +.#{$fa-css-prefix}-long-arrow-right:before { content: $fa-var-long-arrow-right; } +.#{$fa-css-prefix}-apple:before { content: $fa-var-apple; } +.#{$fa-css-prefix}-windows:before { content: $fa-var-windows; } +.#{$fa-css-prefix}-android:before { content: $fa-var-android; } +.#{$fa-css-prefix}-linux:before { content: $fa-var-linux; } +.#{$fa-css-prefix}-dribbble:before { content: $fa-var-dribbble; } +.#{$fa-css-prefix}-skype:before { content: $fa-var-skype; } +.#{$fa-css-prefix}-foursquare:before { content: $fa-var-foursquare; } +.#{$fa-css-prefix}-trello:before { content: $fa-var-trello; } +.#{$fa-css-prefix}-female:before { content: $fa-var-female; } +.#{$fa-css-prefix}-male:before { content: $fa-var-male; } +.#{$fa-css-prefix}-gittip:before, +.#{$fa-css-prefix}-gratipay:before { content: $fa-var-gratipay; } +.#{$fa-css-prefix}-sun-o:before { content: $fa-var-sun-o; } +.#{$fa-css-prefix}-moon-o:before { content: $fa-var-moon-o; } +.#{$fa-css-prefix}-archive:before { content: $fa-var-archive; } +.#{$fa-css-prefix}-bug:before { content: $fa-var-bug; } +.#{$fa-css-prefix}-vk:before { content: $fa-var-vk; } +.#{$fa-css-prefix}-weibo:before { content: $fa-var-weibo; } +.#{$fa-css-prefix}-renren:before { content: $fa-var-renren; } +.#{$fa-css-prefix}-pagelines:before { content: $fa-var-pagelines; } +.#{$fa-css-prefix}-stack-exchange:before { content: $fa-var-stack-exchange; } +.#{$fa-css-prefix}-arrow-circle-o-right:before { content: $fa-var-arrow-circle-o-right; } +.#{$fa-css-prefix}-arrow-circle-o-left:before { content: $fa-var-arrow-circle-o-left; } +.#{$fa-css-prefix}-toggle-left:before, +.#{$fa-css-prefix}-caret-square-o-left:before { content: $fa-var-caret-square-o-left; } +.#{$fa-css-prefix}-dot-circle-o:before { content: $fa-var-dot-circle-o; } +.#{$fa-css-prefix}-wheelchair:before { content: $fa-var-wheelchair; } +.#{$fa-css-prefix}-vimeo-square:before { content: $fa-var-vimeo-square; } +.#{$fa-css-prefix}-turkish-lira:before, +.#{$fa-css-prefix}-try:before { content: $fa-var-try; } +.#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; } +.#{$fa-css-prefix}-space-shuttle:before { content: $fa-var-space-shuttle; } +.#{$fa-css-prefix}-slack:before { content: $fa-var-slack; } +.#{$fa-css-prefix}-envelope-square:before { content: $fa-var-envelope-square; } +.#{$fa-css-prefix}-wordpress:before { content: $fa-var-wordpress; } +.#{$fa-css-prefix}-openid:before { content: $fa-var-openid; } +.#{$fa-css-prefix}-institution:before, +.#{$fa-css-prefix}-bank:before, +.#{$fa-css-prefix}-university:before { content: $fa-var-university; } +.#{$fa-css-prefix}-mortar-board:before, +.#{$fa-css-prefix}-graduation-cap:before { content: $fa-var-graduation-cap; } +.#{$fa-css-prefix}-yahoo:before { content: $fa-var-yahoo; } +.#{$fa-css-prefix}-google:before { content: $fa-var-google; } +.#{$fa-css-prefix}-reddit:before { content: $fa-var-reddit; } +.#{$fa-css-prefix}-reddit-square:before { content: $fa-var-reddit-square; } +.#{$fa-css-prefix}-stumbleupon-circle:before { content: $fa-var-stumbleupon-circle; } +.#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; } +.#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; } +.#{$fa-css-prefix}-digg:before { content: $fa-var-digg; } +.#{$fa-css-prefix}-pied-piper-pp:before { content: $fa-var-pied-piper-pp; } +.#{$fa-css-prefix}-pied-piper-alt:before { content: $fa-var-pied-piper-alt; } +.#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; } +.#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; } +.#{$fa-css-prefix}-language:before { content: $fa-var-language; } +.#{$fa-css-prefix}-fax:before { content: $fa-var-fax; } +.#{$fa-css-prefix}-building:before { content: $fa-var-building; } +.#{$fa-css-prefix}-child:before { content: $fa-var-child; } +.#{$fa-css-prefix}-paw:before { content: $fa-var-paw; } +.#{$fa-css-prefix}-spoon:before { content: $fa-var-spoon; } +.#{$fa-css-prefix}-cube:before { content: $fa-var-cube; } +.#{$fa-css-prefix}-cubes:before { content: $fa-var-cubes; } +.#{$fa-css-prefix}-behance:before { content: $fa-var-behance; } +.#{$fa-css-prefix}-behance-square:before { content: $fa-var-behance-square; } +.#{$fa-css-prefix}-steam:before { content: $fa-var-steam; } +.#{$fa-css-prefix}-steam-square:before { content: $fa-var-steam-square; } +.#{$fa-css-prefix}-recycle:before { content: $fa-var-recycle; } +.#{$fa-css-prefix}-automobile:before, +.#{$fa-css-prefix}-car:before { content: $fa-var-car; } +.#{$fa-css-prefix}-cab:before, +.#{$fa-css-prefix}-taxi:before { content: $fa-var-taxi; } +.#{$fa-css-prefix}-tree:before { content: $fa-var-tree; } +.#{$fa-css-prefix}-spotify:before { content: $fa-var-spotify; } +.#{$fa-css-prefix}-deviantart:before { content: $fa-var-deviantart; } +.#{$fa-css-prefix}-soundcloud:before { content: $fa-var-soundcloud; } +.#{$fa-css-prefix}-database:before { content: $fa-var-database; } +.#{$fa-css-prefix}-file-pdf-o:before { content: $fa-var-file-pdf-o; } +.#{$fa-css-prefix}-file-word-o:before { content: $fa-var-file-word-o; } +.#{$fa-css-prefix}-file-excel-o:before { content: $fa-var-file-excel-o; } +.#{$fa-css-prefix}-file-powerpoint-o:before { content: $fa-var-file-powerpoint-o; } +.#{$fa-css-prefix}-file-photo-o:before, +.#{$fa-css-prefix}-file-picture-o:before, +.#{$fa-css-prefix}-file-image-o:before { content: $fa-var-file-image-o; } +.#{$fa-css-prefix}-file-zip-o:before, +.#{$fa-css-prefix}-file-archive-o:before { content: $fa-var-file-archive-o; } +.#{$fa-css-prefix}-file-sound-o:before, +.#{$fa-css-prefix}-file-audio-o:before { content: $fa-var-file-audio-o; } +.#{$fa-css-prefix}-file-movie-o:before, +.#{$fa-css-prefix}-file-video-o:before { content: $fa-var-file-video-o; } +.#{$fa-css-prefix}-file-code-o:before { content: $fa-var-file-code-o; } +.#{$fa-css-prefix}-vine:before { content: $fa-var-vine; } +.#{$fa-css-prefix}-codepen:before { content: $fa-var-codepen; } +.#{$fa-css-prefix}-jsfiddle:before { content: $fa-var-jsfiddle; } +.#{$fa-css-prefix}-life-bouy:before, +.#{$fa-css-prefix}-life-buoy:before, +.#{$fa-css-prefix}-life-saver:before, +.#{$fa-css-prefix}-support:before, +.#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; } +.#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; } +.#{$fa-css-prefix}-ra:before, +.#{$fa-css-prefix}-resistance:before, +.#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; } +.#{$fa-css-prefix}-ge:before, +.#{$fa-css-prefix}-empire:before { content: $fa-var-empire; } +.#{$fa-css-prefix}-git-square:before { content: $fa-var-git-square; } +.#{$fa-css-prefix}-git:before { content: $fa-var-git; } +.#{$fa-css-prefix}-y-combinator-square:before, +.#{$fa-css-prefix}-yc-square:before, +.#{$fa-css-prefix}-hacker-news:before { content: $fa-var-hacker-news; } +.#{$fa-css-prefix}-tencent-weibo:before { content: $fa-var-tencent-weibo; } +.#{$fa-css-prefix}-qq:before { content: $fa-var-qq; } +.#{$fa-css-prefix}-wechat:before, +.#{$fa-css-prefix}-weixin:before { content: $fa-var-weixin; } +.#{$fa-css-prefix}-send:before, +.#{$fa-css-prefix}-paper-plane:before { content: $fa-var-paper-plane; } +.#{$fa-css-prefix}-send-o:before, +.#{$fa-css-prefix}-paper-plane-o:before { content: $fa-var-paper-plane-o; } +.#{$fa-css-prefix}-history:before { content: $fa-var-history; } +.#{$fa-css-prefix}-circle-thin:before { content: $fa-var-circle-thin; } +.#{$fa-css-prefix}-header:before { content: $fa-var-header; } +.#{$fa-css-prefix}-paragraph:before { content: $fa-var-paragraph; } +.#{$fa-css-prefix}-sliders:before { content: $fa-var-sliders; } +.#{$fa-css-prefix}-share-alt:before { content: $fa-var-share-alt; } +.#{$fa-css-prefix}-share-alt-square:before { content: $fa-var-share-alt-square; } +.#{$fa-css-prefix}-bomb:before { content: $fa-var-bomb; } +.#{$fa-css-prefix}-soccer-ball-o:before, +.#{$fa-css-prefix}-futbol-o:before { content: $fa-var-futbol-o; } +.#{$fa-css-prefix}-tty:before { content: $fa-var-tty; } +.#{$fa-css-prefix}-binoculars:before { content: $fa-var-binoculars; } +.#{$fa-css-prefix}-plug:before { content: $fa-var-plug; } +.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; } +.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; } +.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; } +.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; } +.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; } +.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; } +.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; } +.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; } +.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; } +.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; } +.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; } +.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; } +.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; } +.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; } +.#{$fa-css-prefix}-bell-slash:before { content: $fa-var-bell-slash; } +.#{$fa-css-prefix}-bell-slash-o:before { content: $fa-var-bell-slash-o; } +.#{$fa-css-prefix}-trash:before { content: $fa-var-trash; } +.#{$fa-css-prefix}-copyright:before { content: $fa-var-copyright; } +.#{$fa-css-prefix}-at:before { content: $fa-var-at; } +.#{$fa-css-prefix}-eyedropper:before { content: $fa-var-eyedropper; } +.#{$fa-css-prefix}-paint-brush:before { content: $fa-var-paint-brush; } +.#{$fa-css-prefix}-birthday-cake:before { content: $fa-var-birthday-cake; } +.#{$fa-css-prefix}-area-chart:before { content: $fa-var-area-chart; } +.#{$fa-css-prefix}-pie-chart:before { content: $fa-var-pie-chart; } +.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; } +.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; } +.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; } +.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; } +.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; } +.#{$fa-css-prefix}-bicycle:before { content: $fa-var-bicycle; } +.#{$fa-css-prefix}-bus:before { content: $fa-var-bus; } +.#{$fa-css-prefix}-ioxhost:before { content: $fa-var-ioxhost; } +.#{$fa-css-prefix}-angellist:before { content: $fa-var-angellist; } +.#{$fa-css-prefix}-cc:before { content: $fa-var-cc; } +.#{$fa-css-prefix}-shekel:before, +.#{$fa-css-prefix}-sheqel:before, +.#{$fa-css-prefix}-ils:before { content: $fa-var-ils; } +.#{$fa-css-prefix}-meanpath:before { content: $fa-var-meanpath; } +.#{$fa-css-prefix}-buysellads:before { content: $fa-var-buysellads; } +.#{$fa-css-prefix}-connectdevelop:before { content: $fa-var-connectdevelop; } +.#{$fa-css-prefix}-dashcube:before { content: $fa-var-dashcube; } +.#{$fa-css-prefix}-forumbee:before { content: $fa-var-forumbee; } +.#{$fa-css-prefix}-leanpub:before { content: $fa-var-leanpub; } +.#{$fa-css-prefix}-sellsy:before { content: $fa-var-sellsy; } +.#{$fa-css-prefix}-shirtsinbulk:before { content: $fa-var-shirtsinbulk; } +.#{$fa-css-prefix}-simplybuilt:before { content: $fa-var-simplybuilt; } +.#{$fa-css-prefix}-skyatlas:before { content: $fa-var-skyatlas; } +.#{$fa-css-prefix}-cart-plus:before { content: $fa-var-cart-plus; } +.#{$fa-css-prefix}-cart-arrow-down:before { content: $fa-var-cart-arrow-down; } +.#{$fa-css-prefix}-diamond:before { content: $fa-var-diamond; } +.#{$fa-css-prefix}-ship:before { content: $fa-var-ship; } +.#{$fa-css-prefix}-user-secret:before { content: $fa-var-user-secret; } +.#{$fa-css-prefix}-motorcycle:before { content: $fa-var-motorcycle; } +.#{$fa-css-prefix}-street-view:before { content: $fa-var-street-view; } +.#{$fa-css-prefix}-heartbeat:before { content: $fa-var-heartbeat; } +.#{$fa-css-prefix}-venus:before { content: $fa-var-venus; } +.#{$fa-css-prefix}-mars:before { content: $fa-var-mars; } +.#{$fa-css-prefix}-mercury:before { content: $fa-var-mercury; } +.#{$fa-css-prefix}-intersex:before, +.#{$fa-css-prefix}-transgender:before { content: $fa-var-transgender; } +.#{$fa-css-prefix}-transgender-alt:before { content: $fa-var-transgender-alt; } +.#{$fa-css-prefix}-venus-double:before { content: $fa-var-venus-double; } +.#{$fa-css-prefix}-mars-double:before { content: $fa-var-mars-double; } +.#{$fa-css-prefix}-venus-mars:before { content: $fa-var-venus-mars; } +.#{$fa-css-prefix}-mars-stroke:before { content: $fa-var-mars-stroke; } +.#{$fa-css-prefix}-mars-stroke-v:before { content: $fa-var-mars-stroke-v; } +.#{$fa-css-prefix}-mars-stroke-h:before { content: $fa-var-mars-stroke-h; } +.#{$fa-css-prefix}-neuter:before { content: $fa-var-neuter; } +.#{$fa-css-prefix}-genderless:before { content: $fa-var-genderless; } +.#{$fa-css-prefix}-facebook-official:before { content: $fa-var-facebook-official; } +.#{$fa-css-prefix}-pinterest-p:before { content: $fa-var-pinterest-p; } +.#{$fa-css-prefix}-whatsapp:before { content: $fa-var-whatsapp; } +.#{$fa-css-prefix}-server:before { content: $fa-var-server; } +.#{$fa-css-prefix}-user-plus:before { content: $fa-var-user-plus; } +.#{$fa-css-prefix}-user-times:before { content: $fa-var-user-times; } +.#{$fa-css-prefix}-hotel:before, +.#{$fa-css-prefix}-bed:before { content: $fa-var-bed; } +.#{$fa-css-prefix}-viacoin:before { content: $fa-var-viacoin; } +.#{$fa-css-prefix}-train:before { content: $fa-var-train; } +.#{$fa-css-prefix}-subway:before { content: $fa-var-subway; } +.#{$fa-css-prefix}-medium:before { content: $fa-var-medium; } +.#{$fa-css-prefix}-yc:before, +.#{$fa-css-prefix}-y-combinator:before { content: $fa-var-y-combinator; } +.#{$fa-css-prefix}-optin-monster:before { content: $fa-var-optin-monster; } +.#{$fa-css-prefix}-opencart:before { content: $fa-var-opencart; } +.#{$fa-css-prefix}-expeditedssl:before { content: $fa-var-expeditedssl; } +.#{$fa-css-prefix}-battery-4:before, +.#{$fa-css-prefix}-battery:before, +.#{$fa-css-prefix}-battery-full:before { content: $fa-var-battery-full; } +.#{$fa-css-prefix}-battery-3:before, +.#{$fa-css-prefix}-battery-three-quarters:before { content: $fa-var-battery-three-quarters; } +.#{$fa-css-prefix}-battery-2:before, +.#{$fa-css-prefix}-battery-half:before { content: $fa-var-battery-half; } +.#{$fa-css-prefix}-battery-1:before, +.#{$fa-css-prefix}-battery-quarter:before { content: $fa-var-battery-quarter; } +.#{$fa-css-prefix}-battery-0:before, +.#{$fa-css-prefix}-battery-empty:before { content: $fa-var-battery-empty; } +.#{$fa-css-prefix}-mouse-pointer:before { content: $fa-var-mouse-pointer; } +.#{$fa-css-prefix}-i-cursor:before { content: $fa-var-i-cursor; } +.#{$fa-css-prefix}-object-group:before { content: $fa-var-object-group; } +.#{$fa-css-prefix}-object-ungroup:before { content: $fa-var-object-ungroup; } +.#{$fa-css-prefix}-sticky-note:before { content: $fa-var-sticky-note; } +.#{$fa-css-prefix}-sticky-note-o:before { content: $fa-var-sticky-note-o; } +.#{$fa-css-prefix}-cc-jcb:before { content: $fa-var-cc-jcb; } +.#{$fa-css-prefix}-cc-diners-club:before { content: $fa-var-cc-diners-club; } +.#{$fa-css-prefix}-clone:before { content: $fa-var-clone; } +.#{$fa-css-prefix}-balance-scale:before { content: $fa-var-balance-scale; } +.#{$fa-css-prefix}-hourglass-o:before { content: $fa-var-hourglass-o; } +.#{$fa-css-prefix}-hourglass-1:before, +.#{$fa-css-prefix}-hourglass-start:before { content: $fa-var-hourglass-start; } +.#{$fa-css-prefix}-hourglass-2:before, +.#{$fa-css-prefix}-hourglass-half:before { content: $fa-var-hourglass-half; } +.#{$fa-css-prefix}-hourglass-3:before, +.#{$fa-css-prefix}-hourglass-end:before { content: $fa-var-hourglass-end; } +.#{$fa-css-prefix}-hourglass:before { content: $fa-var-hourglass; } +.#{$fa-css-prefix}-hand-grab-o:before, +.#{$fa-css-prefix}-hand-rock-o:before { content: $fa-var-hand-rock-o; } +.#{$fa-css-prefix}-hand-stop-o:before, +.#{$fa-css-prefix}-hand-paper-o:before { content: $fa-var-hand-paper-o; } +.#{$fa-css-prefix}-hand-scissors-o:before { content: $fa-var-hand-scissors-o; } +.#{$fa-css-prefix}-hand-lizard-o:before { content: $fa-var-hand-lizard-o; } +.#{$fa-css-prefix}-hand-spock-o:before { content: $fa-var-hand-spock-o; } +.#{$fa-css-prefix}-hand-pointer-o:before { content: $fa-var-hand-pointer-o; } +.#{$fa-css-prefix}-hand-peace-o:before { content: $fa-var-hand-peace-o; } +.#{$fa-css-prefix}-trademark:before { content: $fa-var-trademark; } +.#{$fa-css-prefix}-registered:before { content: $fa-var-registered; } +.#{$fa-css-prefix}-creative-commons:before { content: $fa-var-creative-commons; } +.#{$fa-css-prefix}-gg:before { content: $fa-var-gg; } +.#{$fa-css-prefix}-gg-circle:before { content: $fa-var-gg-circle; } +.#{$fa-css-prefix}-tripadvisor:before { content: $fa-var-tripadvisor; } +.#{$fa-css-prefix}-odnoklassniki:before { content: $fa-var-odnoklassniki; } +.#{$fa-css-prefix}-odnoklassniki-square:before { content: $fa-var-odnoklassniki-square; } +.#{$fa-css-prefix}-get-pocket:before { content: $fa-var-get-pocket; } +.#{$fa-css-prefix}-wikipedia-w:before { content: $fa-var-wikipedia-w; } +.#{$fa-css-prefix}-safari:before { content: $fa-var-safari; } +.#{$fa-css-prefix}-chrome:before { content: $fa-var-chrome; } +.#{$fa-css-prefix}-firefox:before { content: $fa-var-firefox; } +.#{$fa-css-prefix}-opera:before { content: $fa-var-opera; } +.#{$fa-css-prefix}-internet-explorer:before { content: $fa-var-internet-explorer; } +.#{$fa-css-prefix}-tv:before, +.#{$fa-css-prefix}-television:before { content: $fa-var-television; } +.#{$fa-css-prefix}-contao:before { content: $fa-var-contao; } +.#{$fa-css-prefix}-500px:before { content: $fa-var-500px; } +.#{$fa-css-prefix}-amazon:before { content: $fa-var-amazon; } +.#{$fa-css-prefix}-calendar-plus-o:before { content: $fa-var-calendar-plus-o; } +.#{$fa-css-prefix}-calendar-minus-o:before { content: $fa-var-calendar-minus-o; } +.#{$fa-css-prefix}-calendar-times-o:before { content: $fa-var-calendar-times-o; } +.#{$fa-css-prefix}-calendar-check-o:before { content: $fa-var-calendar-check-o; } +.#{$fa-css-prefix}-industry:before { content: $fa-var-industry; } +.#{$fa-css-prefix}-map-pin:before { content: $fa-var-map-pin; } +.#{$fa-css-prefix}-map-signs:before { content: $fa-var-map-signs; } +.#{$fa-css-prefix}-map-o:before { content: $fa-var-map-o; } +.#{$fa-css-prefix}-map:before { content: $fa-var-map; } +.#{$fa-css-prefix}-commenting:before { content: $fa-var-commenting; } +.#{$fa-css-prefix}-commenting-o:before { content: $fa-var-commenting-o; } +.#{$fa-css-prefix}-houzz:before { content: $fa-var-houzz; } +.#{$fa-css-prefix}-vimeo:before { content: $fa-var-vimeo; } +.#{$fa-css-prefix}-black-tie:before { content: $fa-var-black-tie; } +.#{$fa-css-prefix}-fonticons:before { content: $fa-var-fonticons; } +.#{$fa-css-prefix}-reddit-alien:before { content: $fa-var-reddit-alien; } +.#{$fa-css-prefix}-edge:before { content: $fa-var-edge; } +.#{$fa-css-prefix}-credit-card-alt:before { content: $fa-var-credit-card-alt; } +.#{$fa-css-prefix}-codiepie:before { content: $fa-var-codiepie; } +.#{$fa-css-prefix}-modx:before { content: $fa-var-modx; } +.#{$fa-css-prefix}-fort-awesome:before { content: $fa-var-fort-awesome; } +.#{$fa-css-prefix}-usb:before { content: $fa-var-usb; } +.#{$fa-css-prefix}-product-hunt:before { content: $fa-var-product-hunt; } +.#{$fa-css-prefix}-mixcloud:before { content: $fa-var-mixcloud; } +.#{$fa-css-prefix}-scribd:before { content: $fa-var-scribd; } +.#{$fa-css-prefix}-pause-circle:before { content: $fa-var-pause-circle; } +.#{$fa-css-prefix}-pause-circle-o:before { content: $fa-var-pause-circle-o; } +.#{$fa-css-prefix}-stop-circle:before { content: $fa-var-stop-circle; } +.#{$fa-css-prefix}-stop-circle-o:before { content: $fa-var-stop-circle-o; } +.#{$fa-css-prefix}-shopping-bag:before { content: $fa-var-shopping-bag; } +.#{$fa-css-prefix}-shopping-basket:before { content: $fa-var-shopping-basket; } +.#{$fa-css-prefix}-hashtag:before { content: $fa-var-hashtag; } +.#{$fa-css-prefix}-bluetooth:before { content: $fa-var-bluetooth; } +.#{$fa-css-prefix}-bluetooth-b:before { content: $fa-var-bluetooth-b; } +.#{$fa-css-prefix}-percent:before { content: $fa-var-percent; } +.#{$fa-css-prefix}-gitlab:before { content: $fa-var-gitlab; } +.#{$fa-css-prefix}-wpbeginner:before { content: $fa-var-wpbeginner; } +.#{$fa-css-prefix}-wpforms:before { content: $fa-var-wpforms; } +.#{$fa-css-prefix}-envira:before { content: $fa-var-envira; } +.#{$fa-css-prefix}-universal-access:before { content: $fa-var-universal-access; } +.#{$fa-css-prefix}-wheelchair-alt:before { content: $fa-var-wheelchair-alt; } +.#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; } +.#{$fa-css-prefix}-blind:before { content: $fa-var-blind; } +.#{$fa-css-prefix}-audio-description:before { content: $fa-var-audio-description; } +.#{$fa-css-prefix}-volume-control-phone:before { content: $fa-var-volume-control-phone; } +.#{$fa-css-prefix}-braille:before { content: $fa-var-braille; } +.#{$fa-css-prefix}-assistive-listening-systems:before { content: $fa-var-assistive-listening-systems; } +.#{$fa-css-prefix}-asl-interpreting:before, +.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: $fa-var-american-sign-language-interpreting; } +.#{$fa-css-prefix}-deafness:before, +.#{$fa-css-prefix}-hard-of-hearing:before, +.#{$fa-css-prefix}-deaf:before { content: $fa-var-deaf; } +.#{$fa-css-prefix}-glide:before { content: $fa-var-glide; } +.#{$fa-css-prefix}-glide-g:before { content: $fa-var-glide-g; } +.#{$fa-css-prefix}-signing:before, +.#{$fa-css-prefix}-sign-language:before { content: $fa-var-sign-language; } +.#{$fa-css-prefix}-low-vision:before { content: $fa-var-low-vision; } +.#{$fa-css-prefix}-viadeo:before { content: $fa-var-viadeo; } +.#{$fa-css-prefix}-viadeo-square:before { content: $fa-var-viadeo-square; } +.#{$fa-css-prefix}-snapchat:before { content: $fa-var-snapchat; } +.#{$fa-css-prefix}-snapchat-ghost:before { content: $fa-var-snapchat-ghost; } +.#{$fa-css-prefix}-snapchat-square:before { content: $fa-var-snapchat-square; } +.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; } +.#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; } +.#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; } +.#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; } +.#{$fa-css-prefix}-google-plus-circle:before, +.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; } +.#{$fa-css-prefix}-fa:before, +.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; } +.#{$fa-css-prefix}-handshake-o:before { content: $fa-var-handshake-o; } +.#{$fa-css-prefix}-envelope-open:before { content: $fa-var-envelope-open; } +.#{$fa-css-prefix}-envelope-open-o:before { content: $fa-var-envelope-open-o; } +.#{$fa-css-prefix}-linode:before { content: $fa-var-linode; } +.#{$fa-css-prefix}-address-book:before { content: $fa-var-address-book; } +.#{$fa-css-prefix}-address-book-o:before { content: $fa-var-address-book-o; } +.#{$fa-css-prefix}-vcard:before, +.#{$fa-css-prefix}-address-card:before { content: $fa-var-address-card; } +.#{$fa-css-prefix}-vcard-o:before, +.#{$fa-css-prefix}-address-card-o:before { content: $fa-var-address-card-o; } +.#{$fa-css-prefix}-user-circle:before { content: $fa-var-user-circle; } +.#{$fa-css-prefix}-user-circle-o:before { content: $fa-var-user-circle-o; } +.#{$fa-css-prefix}-user-o:before { content: $fa-var-user-o; } +.#{$fa-css-prefix}-id-badge:before { content: $fa-var-id-badge; } +.#{$fa-css-prefix}-drivers-license:before, +.#{$fa-css-prefix}-id-card:before { content: $fa-var-id-card; } +.#{$fa-css-prefix}-drivers-license-o:before, +.#{$fa-css-prefix}-id-card-o:before { content: $fa-var-id-card-o; } +.#{$fa-css-prefix}-quora:before { content: $fa-var-quora; } +.#{$fa-css-prefix}-free-code-camp:before { content: $fa-var-free-code-camp; } +.#{$fa-css-prefix}-telegram:before { content: $fa-var-telegram; } +.#{$fa-css-prefix}-thermometer-4:before, +.#{$fa-css-prefix}-thermometer:before, +.#{$fa-css-prefix}-thermometer-full:before { content: $fa-var-thermometer-full; } +.#{$fa-css-prefix}-thermometer-3:before, +.#{$fa-css-prefix}-thermometer-three-quarters:before { content: $fa-var-thermometer-three-quarters; } +.#{$fa-css-prefix}-thermometer-2:before, +.#{$fa-css-prefix}-thermometer-half:before { content: $fa-var-thermometer-half; } +.#{$fa-css-prefix}-thermometer-1:before, +.#{$fa-css-prefix}-thermometer-quarter:before { content: $fa-var-thermometer-quarter; } +.#{$fa-css-prefix}-thermometer-0:before, +.#{$fa-css-prefix}-thermometer-empty:before { content: $fa-var-thermometer-empty; } +.#{$fa-css-prefix}-shower:before { content: $fa-var-shower; } +.#{$fa-css-prefix}-bathtub:before, +.#{$fa-css-prefix}-s15:before, +.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; } +.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; } +.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; } +.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; } +.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; } +.#{$fa-css-prefix}-times-rectangle:before, +.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; } +.#{$fa-css-prefix}-times-rectangle-o:before, +.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; } +.#{$fa-css-prefix}-bandcamp:before { content: $fa-var-bandcamp; } +.#{$fa-css-prefix}-grav:before { content: $fa-var-grav; } +.#{$fa-css-prefix}-etsy:before { content: $fa-var-etsy; } +.#{$fa-css-prefix}-imdb:before { content: $fa-var-imdb; } +.#{$fa-css-prefix}-ravelry:before { content: $fa-var-ravelry; } +.#{$fa-css-prefix}-eercast:before { content: $fa-var-eercast; } +.#{$fa-css-prefix}-microchip:before { content: $fa-var-microchip; } +.#{$fa-css-prefix}-snowflake-o:before { content: $fa-var-snowflake-o; } +.#{$fa-css-prefix}-superpowers:before { content: $fa-var-superpowers; } +.#{$fa-css-prefix}-wpexplorer:before { content: $fa-var-wpexplorer; } +.#{$fa-css-prefix}-meetup:before { content: $fa-var-meetup; } diff --git a/assets/vendors/iconfonts/font-awesome/scss/_larger.scss b/assets/vendors/iconfonts/font-awesome/scss/_larger.scss new file mode 100755 index 0000000..41e9a81 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_larger.scss @@ -0,0 +1,13 @@ +// Icon Sizes +// ------------------------- + +/* makes the font 33% larger relative to the icon container */ +.#{$fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -15%; +} +.#{$fa-css-prefix}-2x { font-size: 2em; } +.#{$fa-css-prefix}-3x { font-size: 3em; } +.#{$fa-css-prefix}-4x { font-size: 4em; } +.#{$fa-css-prefix}-5x { font-size: 5em; } diff --git a/assets/vendors/iconfonts/font-awesome/scss/_list.scss b/assets/vendors/iconfonts/font-awesome/scss/_list.scss new file mode 100755 index 0000000..7d1e4d5 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_list.scss @@ -0,0 +1,19 @@ +// List Icons +// ------------------------- + +.#{$fa-css-prefix}-ul { + padding-left: 0; + margin-left: $fa-li-width; + list-style-type: none; + > li { position: relative; } +} +.#{$fa-css-prefix}-li { + position: absolute; + left: -$fa-li-width; + width: $fa-li-width; + top: (2em / 14); + text-align: center; + &.#{$fa-css-prefix}-lg { + left: -$fa-li-width + (4em / 14); + } +} diff --git a/assets/vendors/iconfonts/font-awesome/scss/_mixins.scss b/assets/vendors/iconfonts/font-awesome/scss/_mixins.scss new file mode 100755 index 0000000..c3bbd57 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_mixins.scss @@ -0,0 +1,60 @@ +// Mixins +// -------------------------- + +@mixin fa-icon() { + display: inline-block; + font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} + +@mixin fa-icon-rotate($degrees, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; + -webkit-transform: rotate($degrees); + -ms-transform: rotate($degrees); + transform: rotate($degrees); +} + +@mixin fa-icon-flip($horiz, $vert, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; + -webkit-transform: scale($horiz, $vert); + -ms-transform: scale($horiz, $vert); + transform: scale($horiz, $vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +@mixin sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0,0,0,0); + border: 0; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +@mixin sr-only-focusable { + &:active, + &:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; + } +} diff --git a/assets/vendors/iconfonts/font-awesome/scss/_path.scss b/assets/vendors/iconfonts/font-awesome/scss/_path.scss new file mode 100755 index 0000000..bb457c2 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_path.scss @@ -0,0 +1,15 @@ +/* FONT PATH + * -------------------------- */ + +@font-face { + font-family: 'FontAwesome'; + src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); + src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), + url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), + url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), + url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), + url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); +// src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts + font-weight: normal; + font-style: normal; +} diff --git a/assets/vendors/iconfonts/font-awesome/scss/_rotated-flipped.scss b/assets/vendors/iconfonts/font-awesome/scss/_rotated-flipped.scss new file mode 100755 index 0000000..a3558fd --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_rotated-flipped.scss @@ -0,0 +1,20 @@ +// Rotated & Flipped Icons +// ------------------------- + +.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } +.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } +.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } + +.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } +.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root .#{$fa-css-prefix}-rotate-90, +:root .#{$fa-css-prefix}-rotate-180, +:root .#{$fa-css-prefix}-rotate-270, +:root .#{$fa-css-prefix}-flip-horizontal, +:root .#{$fa-css-prefix}-flip-vertical { + filter: none; +} diff --git a/assets/vendors/iconfonts/font-awesome/scss/_screen-reader.scss b/assets/vendors/iconfonts/font-awesome/scss/_screen-reader.scss new file mode 100755 index 0000000..637426f --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_screen-reader.scss @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { @include sr-only(); } +.sr-only-focusable { @include sr-only-focusable(); } diff --git a/assets/vendors/iconfonts/font-awesome/scss/_stacked.scss b/assets/vendors/iconfonts/font-awesome/scss/_stacked.scss new file mode 100755 index 0000000..aef7403 --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_stacked.scss @@ -0,0 +1,20 @@ +// Stacked Icons +// ------------------------- + +.#{$fa-css-prefix}-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.#{$fa-css-prefix}-stack-1x { line-height: inherit; } +.#{$fa-css-prefix}-stack-2x { font-size: 2em; } +.#{$fa-css-prefix}-inverse { color: $fa-inverse; } diff --git a/assets/vendors/iconfonts/font-awesome/scss/_variables.scss b/assets/vendors/iconfonts/font-awesome/scss/_variables.scss new file mode 100755 index 0000000..498fc4a --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/_variables.scss @@ -0,0 +1,800 @@ +// Variables +// -------------------------- + +$fa-font-path: "../fonts" !default; +$fa-font-size-base: 14px !default; +$fa-line-height-base: 1 !default; +//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly +$fa-css-prefix: fa !default; +$fa-version: "4.7.0" !default; +$fa-border-color: #eee !default; +$fa-inverse: #fff !default; +$fa-li-width: (30em / 14) !default; + +$fa-var-500px: "\f26e"; +$fa-var-address-book: "\f2b9"; +$fa-var-address-book-o: "\f2ba"; +$fa-var-address-card: "\f2bb"; +$fa-var-address-card-o: "\f2bc"; +$fa-var-adjust: "\f042"; +$fa-var-adn: "\f170"; +$fa-var-align-center: "\f037"; +$fa-var-align-justify: "\f039"; +$fa-var-align-left: "\f036"; +$fa-var-align-right: "\f038"; +$fa-var-amazon: "\f270"; +$fa-var-ambulance: "\f0f9"; +$fa-var-american-sign-language-interpreting: "\f2a3"; +$fa-var-anchor: "\f13d"; +$fa-var-android: "\f17b"; +$fa-var-angellist: "\f209"; +$fa-var-angle-double-down: "\f103"; +$fa-var-angle-double-left: "\f100"; +$fa-var-angle-double-right: "\f101"; +$fa-var-angle-double-up: "\f102"; +$fa-var-angle-down: "\f107"; +$fa-var-angle-left: "\f104"; +$fa-var-angle-right: "\f105"; +$fa-var-angle-up: "\f106"; +$fa-var-apple: "\f179"; +$fa-var-archive: "\f187"; +$fa-var-area-chart: "\f1fe"; +$fa-var-arrow-circle-down: "\f0ab"; +$fa-var-arrow-circle-left: "\f0a8"; +$fa-var-arrow-circle-o-down: "\f01a"; +$fa-var-arrow-circle-o-left: "\f190"; +$fa-var-arrow-circle-o-right: "\f18e"; +$fa-var-arrow-circle-o-up: "\f01b"; +$fa-var-arrow-circle-right: "\f0a9"; +$fa-var-arrow-circle-up: "\f0aa"; +$fa-var-arrow-down: "\f063"; +$fa-var-arrow-left: "\f060"; +$fa-var-arrow-right: "\f061"; +$fa-var-arrow-up: "\f062"; +$fa-var-arrows: "\f047"; +$fa-var-arrows-alt: "\f0b2"; +$fa-var-arrows-h: "\f07e"; +$fa-var-arrows-v: "\f07d"; +$fa-var-asl-interpreting: "\f2a3"; +$fa-var-assistive-listening-systems: "\f2a2"; +$fa-var-asterisk: "\f069"; +$fa-var-at: "\f1fa"; +$fa-var-audio-description: "\f29e"; +$fa-var-automobile: "\f1b9"; +$fa-var-backward: "\f04a"; +$fa-var-balance-scale: "\f24e"; +$fa-var-ban: "\f05e"; +$fa-var-bandcamp: "\f2d5"; +$fa-var-bank: "\f19c"; +$fa-var-bar-chart: "\f080"; +$fa-var-bar-chart-o: "\f080"; +$fa-var-barcode: "\f02a"; +$fa-var-bars: "\f0c9"; +$fa-var-bath: "\f2cd"; +$fa-var-bathtub: "\f2cd"; +$fa-var-battery: "\f240"; +$fa-var-battery-0: "\f244"; +$fa-var-battery-1: "\f243"; +$fa-var-battery-2: "\f242"; +$fa-var-battery-3: "\f241"; +$fa-var-battery-4: "\f240"; +$fa-var-battery-empty: "\f244"; +$fa-var-battery-full: "\f240"; +$fa-var-battery-half: "\f242"; +$fa-var-battery-quarter: "\f243"; +$fa-var-battery-three-quarters: "\f241"; +$fa-var-bed: "\f236"; +$fa-var-beer: "\f0fc"; +$fa-var-behance: "\f1b4"; +$fa-var-behance-square: "\f1b5"; +$fa-var-bell: "\f0f3"; +$fa-var-bell-o: "\f0a2"; +$fa-var-bell-slash: "\f1f6"; +$fa-var-bell-slash-o: "\f1f7"; +$fa-var-bicycle: "\f206"; +$fa-var-binoculars: "\f1e5"; +$fa-var-birthday-cake: "\f1fd"; +$fa-var-bitbucket: "\f171"; +$fa-var-bitbucket-square: "\f172"; +$fa-var-bitcoin: "\f15a"; +$fa-var-black-tie: "\f27e"; +$fa-var-blind: "\f29d"; +$fa-var-bluetooth: "\f293"; +$fa-var-bluetooth-b: "\f294"; +$fa-var-bold: "\f032"; +$fa-var-bolt: "\f0e7"; +$fa-var-bomb: "\f1e2"; +$fa-var-book: "\f02d"; +$fa-var-bookmark: "\f02e"; +$fa-var-bookmark-o: "\f097"; +$fa-var-braille: "\f2a1"; +$fa-var-briefcase: "\f0b1"; +$fa-var-btc: "\f15a"; +$fa-var-bug: "\f188"; +$fa-var-building: "\f1ad"; +$fa-var-building-o: "\f0f7"; +$fa-var-bullhorn: "\f0a1"; +$fa-var-bullseye: "\f140"; +$fa-var-bus: "\f207"; +$fa-var-buysellads: "\f20d"; +$fa-var-cab: "\f1ba"; +$fa-var-calculator: "\f1ec"; +$fa-var-calendar: "\f073"; +$fa-var-calendar-check-o: "\f274"; +$fa-var-calendar-minus-o: "\f272"; +$fa-var-calendar-o: "\f133"; +$fa-var-calendar-plus-o: "\f271"; +$fa-var-calendar-times-o: "\f273"; +$fa-var-camera: "\f030"; +$fa-var-camera-retro: "\f083"; +$fa-var-car: "\f1b9"; +$fa-var-caret-down: "\f0d7"; +$fa-var-caret-left: "\f0d9"; +$fa-var-caret-right: "\f0da"; +$fa-var-caret-square-o-down: "\f150"; +$fa-var-caret-square-o-left: "\f191"; +$fa-var-caret-square-o-right: "\f152"; +$fa-var-caret-square-o-up: "\f151"; +$fa-var-caret-up: "\f0d8"; +$fa-var-cart-arrow-down: "\f218"; +$fa-var-cart-plus: "\f217"; +$fa-var-cc: "\f20a"; +$fa-var-cc-amex: "\f1f3"; +$fa-var-cc-diners-club: "\f24c"; +$fa-var-cc-discover: "\f1f2"; +$fa-var-cc-jcb: "\f24b"; +$fa-var-cc-mastercard: "\f1f1"; +$fa-var-cc-paypal: "\f1f4"; +$fa-var-cc-stripe: "\f1f5"; +$fa-var-cc-visa: "\f1f0"; +$fa-var-certificate: "\f0a3"; +$fa-var-chain: "\f0c1"; +$fa-var-chain-broken: "\f127"; +$fa-var-check: "\f00c"; +$fa-var-check-circle: "\f058"; +$fa-var-check-circle-o: "\f05d"; +$fa-var-check-square: "\f14a"; +$fa-var-check-square-o: "\f046"; +$fa-var-chevron-circle-down: "\f13a"; +$fa-var-chevron-circle-left: "\f137"; +$fa-var-chevron-circle-right: "\f138"; +$fa-var-chevron-circle-up: "\f139"; +$fa-var-chevron-down: "\f078"; +$fa-var-chevron-left: "\f053"; +$fa-var-chevron-right: "\f054"; +$fa-var-chevron-up: "\f077"; +$fa-var-child: "\f1ae"; +$fa-var-chrome: "\f268"; +$fa-var-circle: "\f111"; +$fa-var-circle-o: "\f10c"; +$fa-var-circle-o-notch: "\f1ce"; +$fa-var-circle-thin: "\f1db"; +$fa-var-clipboard: "\f0ea"; +$fa-var-clock-o: "\f017"; +$fa-var-clone: "\f24d"; +$fa-var-close: "\f00d"; +$fa-var-cloud: "\f0c2"; +$fa-var-cloud-download: "\f0ed"; +$fa-var-cloud-upload: "\f0ee"; +$fa-var-cny: "\f157"; +$fa-var-code: "\f121"; +$fa-var-code-fork: "\f126"; +$fa-var-codepen: "\f1cb"; +$fa-var-codiepie: "\f284"; +$fa-var-coffee: "\f0f4"; +$fa-var-cog: "\f013"; +$fa-var-cogs: "\f085"; +$fa-var-columns: "\f0db"; +$fa-var-comment: "\f075"; +$fa-var-comment-o: "\f0e5"; +$fa-var-commenting: "\f27a"; +$fa-var-commenting-o: "\f27b"; +$fa-var-comments: "\f086"; +$fa-var-comments-o: "\f0e6"; +$fa-var-compass: "\f14e"; +$fa-var-compress: "\f066"; +$fa-var-connectdevelop: "\f20e"; +$fa-var-contao: "\f26d"; +$fa-var-copy: "\f0c5"; +$fa-var-copyright: "\f1f9"; +$fa-var-creative-commons: "\f25e"; +$fa-var-credit-card: "\f09d"; +$fa-var-credit-card-alt: "\f283"; +$fa-var-crop: "\f125"; +$fa-var-crosshairs: "\f05b"; +$fa-var-css3: "\f13c"; +$fa-var-cube: "\f1b2"; +$fa-var-cubes: "\f1b3"; +$fa-var-cut: "\f0c4"; +$fa-var-cutlery: "\f0f5"; +$fa-var-dashboard: "\f0e4"; +$fa-var-dashcube: "\f210"; +$fa-var-database: "\f1c0"; +$fa-var-deaf: "\f2a4"; +$fa-var-deafness: "\f2a4"; +$fa-var-dedent: "\f03b"; +$fa-var-delicious: "\f1a5"; +$fa-var-desktop: "\f108"; +$fa-var-deviantart: "\f1bd"; +$fa-var-diamond: "\f219"; +$fa-var-digg: "\f1a6"; +$fa-var-dollar: "\f155"; +$fa-var-dot-circle-o: "\f192"; +$fa-var-download: "\f019"; +$fa-var-dribbble: "\f17d"; +$fa-var-drivers-license: "\f2c2"; +$fa-var-drivers-license-o: "\f2c3"; +$fa-var-dropbox: "\f16b"; +$fa-var-drupal: "\f1a9"; +$fa-var-edge: "\f282"; +$fa-var-edit: "\f044"; +$fa-var-eercast: "\f2da"; +$fa-var-eject: "\f052"; +$fa-var-ellipsis-h: "\f141"; +$fa-var-ellipsis-v: "\f142"; +$fa-var-empire: "\f1d1"; +$fa-var-envelope: "\f0e0"; +$fa-var-envelope-o: "\f003"; +$fa-var-envelope-open: "\f2b6"; +$fa-var-envelope-open-o: "\f2b7"; +$fa-var-envelope-square: "\f199"; +$fa-var-envira: "\f299"; +$fa-var-eraser: "\f12d"; +$fa-var-etsy: "\f2d7"; +$fa-var-eur: "\f153"; +$fa-var-euro: "\f153"; +$fa-var-exchange: "\f0ec"; +$fa-var-exclamation: "\f12a"; +$fa-var-exclamation-circle: "\f06a"; +$fa-var-exclamation-triangle: "\f071"; +$fa-var-expand: "\f065"; +$fa-var-expeditedssl: "\f23e"; +$fa-var-external-link: "\f08e"; +$fa-var-external-link-square: "\f14c"; +$fa-var-eye: "\f06e"; +$fa-var-eye-slash: "\f070"; +$fa-var-eyedropper: "\f1fb"; +$fa-var-fa: "\f2b4"; +$fa-var-facebook: "\f09a"; +$fa-var-facebook-f: "\f09a"; +$fa-var-facebook-official: "\f230"; +$fa-var-facebook-square: "\f082"; +$fa-var-fast-backward: "\f049"; +$fa-var-fast-forward: "\f050"; +$fa-var-fax: "\f1ac"; +$fa-var-feed: "\f09e"; +$fa-var-female: "\f182"; +$fa-var-fighter-jet: "\f0fb"; +$fa-var-file: "\f15b"; +$fa-var-file-archive-o: "\f1c6"; +$fa-var-file-audio-o: "\f1c7"; +$fa-var-file-code-o: "\f1c9"; +$fa-var-file-excel-o: "\f1c3"; +$fa-var-file-image-o: "\f1c5"; +$fa-var-file-movie-o: "\f1c8"; +$fa-var-file-o: "\f016"; +$fa-var-file-pdf-o: "\f1c1"; +$fa-var-file-photo-o: "\f1c5"; +$fa-var-file-picture-o: "\f1c5"; +$fa-var-file-powerpoint-o: "\f1c4"; +$fa-var-file-sound-o: "\f1c7"; +$fa-var-file-text: "\f15c"; +$fa-var-file-text-o: "\f0f6"; +$fa-var-file-video-o: "\f1c8"; +$fa-var-file-word-o: "\f1c2"; +$fa-var-file-zip-o: "\f1c6"; +$fa-var-files-o: "\f0c5"; +$fa-var-film: "\f008"; +$fa-var-filter: "\f0b0"; +$fa-var-fire: "\f06d"; +$fa-var-fire-extinguisher: "\f134"; +$fa-var-firefox: "\f269"; +$fa-var-first-order: "\f2b0"; +$fa-var-flag: "\f024"; +$fa-var-flag-checkered: "\f11e"; +$fa-var-flag-o: "\f11d"; +$fa-var-flash: "\f0e7"; +$fa-var-flask: "\f0c3"; +$fa-var-flickr: "\f16e"; +$fa-var-floppy-o: "\f0c7"; +$fa-var-folder: "\f07b"; +$fa-var-folder-o: "\f114"; +$fa-var-folder-open: "\f07c"; +$fa-var-folder-open-o: "\f115"; +$fa-var-font: "\f031"; +$fa-var-font-awesome: "\f2b4"; +$fa-var-fonticons: "\f280"; +$fa-var-fort-awesome: "\f286"; +$fa-var-forumbee: "\f211"; +$fa-var-forward: "\f04e"; +$fa-var-foursquare: "\f180"; +$fa-var-free-code-camp: "\f2c5"; +$fa-var-frown-o: "\f119"; +$fa-var-futbol-o: "\f1e3"; +$fa-var-gamepad: "\f11b"; +$fa-var-gavel: "\f0e3"; +$fa-var-gbp: "\f154"; +$fa-var-ge: "\f1d1"; +$fa-var-gear: "\f013"; +$fa-var-gears: "\f085"; +$fa-var-genderless: "\f22d"; +$fa-var-get-pocket: "\f265"; +$fa-var-gg: "\f260"; +$fa-var-gg-circle: "\f261"; +$fa-var-gift: "\f06b"; +$fa-var-git: "\f1d3"; +$fa-var-git-square: "\f1d2"; +$fa-var-github: "\f09b"; +$fa-var-github-alt: "\f113"; +$fa-var-github-square: "\f092"; +$fa-var-gitlab: "\f296"; +$fa-var-gittip: "\f184"; +$fa-var-glass: "\f000"; +$fa-var-glide: "\f2a5"; +$fa-var-glide-g: "\f2a6"; +$fa-var-globe: "\f0ac"; +$fa-var-google: "\f1a0"; +$fa-var-google-plus: "\f0d5"; +$fa-var-google-plus-circle: "\f2b3"; +$fa-var-google-plus-official: "\f2b3"; +$fa-var-google-plus-square: "\f0d4"; +$fa-var-google-wallet: "\f1ee"; +$fa-var-graduation-cap: "\f19d"; +$fa-var-gratipay: "\f184"; +$fa-var-grav: "\f2d6"; +$fa-var-group: "\f0c0"; +$fa-var-h-square: "\f0fd"; +$fa-var-hacker-news: "\f1d4"; +$fa-var-hand-grab-o: "\f255"; +$fa-var-hand-lizard-o: "\f258"; +$fa-var-hand-o-down: "\f0a7"; +$fa-var-hand-o-left: "\f0a5"; +$fa-var-hand-o-right: "\f0a4"; +$fa-var-hand-o-up: "\f0a6"; +$fa-var-hand-paper-o: "\f256"; +$fa-var-hand-peace-o: "\f25b"; +$fa-var-hand-pointer-o: "\f25a"; +$fa-var-hand-rock-o: "\f255"; +$fa-var-hand-scissors-o: "\f257"; +$fa-var-hand-spock-o: "\f259"; +$fa-var-hand-stop-o: "\f256"; +$fa-var-handshake-o: "\f2b5"; +$fa-var-hard-of-hearing: "\f2a4"; +$fa-var-hashtag: "\f292"; +$fa-var-hdd-o: "\f0a0"; +$fa-var-header: "\f1dc"; +$fa-var-headphones: "\f025"; +$fa-var-heart: "\f004"; +$fa-var-heart-o: "\f08a"; +$fa-var-heartbeat: "\f21e"; +$fa-var-history: "\f1da"; +$fa-var-home: "\f015"; +$fa-var-hospital-o: "\f0f8"; +$fa-var-hotel: "\f236"; +$fa-var-hourglass: "\f254"; +$fa-var-hourglass-1: "\f251"; +$fa-var-hourglass-2: "\f252"; +$fa-var-hourglass-3: "\f253"; +$fa-var-hourglass-end: "\f253"; +$fa-var-hourglass-half: "\f252"; +$fa-var-hourglass-o: "\f250"; +$fa-var-hourglass-start: "\f251"; +$fa-var-houzz: "\f27c"; +$fa-var-html5: "\f13b"; +$fa-var-i-cursor: "\f246"; +$fa-var-id-badge: "\f2c1"; +$fa-var-id-card: "\f2c2"; +$fa-var-id-card-o: "\f2c3"; +$fa-var-ils: "\f20b"; +$fa-var-image: "\f03e"; +$fa-var-imdb: "\f2d8"; +$fa-var-inbox: "\f01c"; +$fa-var-indent: "\f03c"; +$fa-var-industry: "\f275"; +$fa-var-info: "\f129"; +$fa-var-info-circle: "\f05a"; +$fa-var-inr: "\f156"; +$fa-var-instagram: "\f16d"; +$fa-var-institution: "\f19c"; +$fa-var-internet-explorer: "\f26b"; +$fa-var-intersex: "\f224"; +$fa-var-ioxhost: "\f208"; +$fa-var-italic: "\f033"; +$fa-var-joomla: "\f1aa"; +$fa-var-jpy: "\f157"; +$fa-var-jsfiddle: "\f1cc"; +$fa-var-key: "\f084"; +$fa-var-keyboard-o: "\f11c"; +$fa-var-krw: "\f159"; +$fa-var-language: "\f1ab"; +$fa-var-laptop: "\f109"; +$fa-var-lastfm: "\f202"; +$fa-var-lastfm-square: "\f203"; +$fa-var-leaf: "\f06c"; +$fa-var-leanpub: "\f212"; +$fa-var-legal: "\f0e3"; +$fa-var-lemon-o: "\f094"; +$fa-var-level-down: "\f149"; +$fa-var-level-up: "\f148"; +$fa-var-life-bouy: "\f1cd"; +$fa-var-life-buoy: "\f1cd"; +$fa-var-life-ring: "\f1cd"; +$fa-var-life-saver: "\f1cd"; +$fa-var-lightbulb-o: "\f0eb"; +$fa-var-line-chart: "\f201"; +$fa-var-link: "\f0c1"; +$fa-var-linkedin: "\f0e1"; +$fa-var-linkedin-square: "\f08c"; +$fa-var-linode: "\f2b8"; +$fa-var-linux: "\f17c"; +$fa-var-list: "\f03a"; +$fa-var-list-alt: "\f022"; +$fa-var-list-ol: "\f0cb"; +$fa-var-list-ul: "\f0ca"; +$fa-var-location-arrow: "\f124"; +$fa-var-lock: "\f023"; +$fa-var-long-arrow-down: "\f175"; +$fa-var-long-arrow-left: "\f177"; +$fa-var-long-arrow-right: "\f178"; +$fa-var-long-arrow-up: "\f176"; +$fa-var-low-vision: "\f2a8"; +$fa-var-magic: "\f0d0"; +$fa-var-magnet: "\f076"; +$fa-var-mail-forward: "\f064"; +$fa-var-mail-reply: "\f112"; +$fa-var-mail-reply-all: "\f122"; +$fa-var-male: "\f183"; +$fa-var-map: "\f279"; +$fa-var-map-marker: "\f041"; +$fa-var-map-o: "\f278"; +$fa-var-map-pin: "\f276"; +$fa-var-map-signs: "\f277"; +$fa-var-mars: "\f222"; +$fa-var-mars-double: "\f227"; +$fa-var-mars-stroke: "\f229"; +$fa-var-mars-stroke-h: "\f22b"; +$fa-var-mars-stroke-v: "\f22a"; +$fa-var-maxcdn: "\f136"; +$fa-var-meanpath: "\f20c"; +$fa-var-medium: "\f23a"; +$fa-var-medkit: "\f0fa"; +$fa-var-meetup: "\f2e0"; +$fa-var-meh-o: "\f11a"; +$fa-var-mercury: "\f223"; +$fa-var-microchip: "\f2db"; +$fa-var-microphone: "\f130"; +$fa-var-microphone-slash: "\f131"; +$fa-var-minus: "\f068"; +$fa-var-minus-circle: "\f056"; +$fa-var-minus-square: "\f146"; +$fa-var-minus-square-o: "\f147"; +$fa-var-mixcloud: "\f289"; +$fa-var-mobile: "\f10b"; +$fa-var-mobile-phone: "\f10b"; +$fa-var-modx: "\f285"; +$fa-var-money: "\f0d6"; +$fa-var-moon-o: "\f186"; +$fa-var-mortar-board: "\f19d"; +$fa-var-motorcycle: "\f21c"; +$fa-var-mouse-pointer: "\f245"; +$fa-var-music: "\f001"; +$fa-var-navicon: "\f0c9"; +$fa-var-neuter: "\f22c"; +$fa-var-newspaper-o: "\f1ea"; +$fa-var-object-group: "\f247"; +$fa-var-object-ungroup: "\f248"; +$fa-var-odnoklassniki: "\f263"; +$fa-var-odnoklassniki-square: "\f264"; +$fa-var-opencart: "\f23d"; +$fa-var-openid: "\f19b"; +$fa-var-opera: "\f26a"; +$fa-var-optin-monster: "\f23c"; +$fa-var-outdent: "\f03b"; +$fa-var-pagelines: "\f18c"; +$fa-var-paint-brush: "\f1fc"; +$fa-var-paper-plane: "\f1d8"; +$fa-var-paper-plane-o: "\f1d9"; +$fa-var-paperclip: "\f0c6"; +$fa-var-paragraph: "\f1dd"; +$fa-var-paste: "\f0ea"; +$fa-var-pause: "\f04c"; +$fa-var-pause-circle: "\f28b"; +$fa-var-pause-circle-o: "\f28c"; +$fa-var-paw: "\f1b0"; +$fa-var-paypal: "\f1ed"; +$fa-var-pencil: "\f040"; +$fa-var-pencil-square: "\f14b"; +$fa-var-pencil-square-o: "\f044"; +$fa-var-percent: "\f295"; +$fa-var-phone: "\f095"; +$fa-var-phone-square: "\f098"; +$fa-var-photo: "\f03e"; +$fa-var-picture-o: "\f03e"; +$fa-var-pie-chart: "\f200"; +$fa-var-pied-piper: "\f2ae"; +$fa-var-pied-piper-alt: "\f1a8"; +$fa-var-pied-piper-pp: "\f1a7"; +$fa-var-pinterest: "\f0d2"; +$fa-var-pinterest-p: "\f231"; +$fa-var-pinterest-square: "\f0d3"; +$fa-var-plane: "\f072"; +$fa-var-play: "\f04b"; +$fa-var-play-circle: "\f144"; +$fa-var-play-circle-o: "\f01d"; +$fa-var-plug: "\f1e6"; +$fa-var-plus: "\f067"; +$fa-var-plus-circle: "\f055"; +$fa-var-plus-square: "\f0fe"; +$fa-var-plus-square-o: "\f196"; +$fa-var-podcast: "\f2ce"; +$fa-var-power-off: "\f011"; +$fa-var-print: "\f02f"; +$fa-var-product-hunt: "\f288"; +$fa-var-puzzle-piece: "\f12e"; +$fa-var-qq: "\f1d6"; +$fa-var-qrcode: "\f029"; +$fa-var-question: "\f128"; +$fa-var-question-circle: "\f059"; +$fa-var-question-circle-o: "\f29c"; +$fa-var-quora: "\f2c4"; +$fa-var-quote-left: "\f10d"; +$fa-var-quote-right: "\f10e"; +$fa-var-ra: "\f1d0"; +$fa-var-random: "\f074"; +$fa-var-ravelry: "\f2d9"; +$fa-var-rebel: "\f1d0"; +$fa-var-recycle: "\f1b8"; +$fa-var-reddit: "\f1a1"; +$fa-var-reddit-alien: "\f281"; +$fa-var-reddit-square: "\f1a2"; +$fa-var-refresh: "\f021"; +$fa-var-registered: "\f25d"; +$fa-var-remove: "\f00d"; +$fa-var-renren: "\f18b"; +$fa-var-reorder: "\f0c9"; +$fa-var-repeat: "\f01e"; +$fa-var-reply: "\f112"; +$fa-var-reply-all: "\f122"; +$fa-var-resistance: "\f1d0"; +$fa-var-retweet: "\f079"; +$fa-var-rmb: "\f157"; +$fa-var-road: "\f018"; +$fa-var-rocket: "\f135"; +$fa-var-rotate-left: "\f0e2"; +$fa-var-rotate-right: "\f01e"; +$fa-var-rouble: "\f158"; +$fa-var-rss: "\f09e"; +$fa-var-rss-square: "\f143"; +$fa-var-rub: "\f158"; +$fa-var-ruble: "\f158"; +$fa-var-rupee: "\f156"; +$fa-var-s15: "\f2cd"; +$fa-var-safari: "\f267"; +$fa-var-save: "\f0c7"; +$fa-var-scissors: "\f0c4"; +$fa-var-scribd: "\f28a"; +$fa-var-search: "\f002"; +$fa-var-search-minus: "\f010"; +$fa-var-search-plus: "\f00e"; +$fa-var-sellsy: "\f213"; +$fa-var-send: "\f1d8"; +$fa-var-send-o: "\f1d9"; +$fa-var-server: "\f233"; +$fa-var-share: "\f064"; +$fa-var-share-alt: "\f1e0"; +$fa-var-share-alt-square: "\f1e1"; +$fa-var-share-square: "\f14d"; +$fa-var-share-square-o: "\f045"; +$fa-var-shekel: "\f20b"; +$fa-var-sheqel: "\f20b"; +$fa-var-shield: "\f132"; +$fa-var-ship: "\f21a"; +$fa-var-shirtsinbulk: "\f214"; +$fa-var-shopping-bag: "\f290"; +$fa-var-shopping-basket: "\f291"; +$fa-var-shopping-cart: "\f07a"; +$fa-var-shower: "\f2cc"; +$fa-var-sign-in: "\f090"; +$fa-var-sign-language: "\f2a7"; +$fa-var-sign-out: "\f08b"; +$fa-var-signal: "\f012"; +$fa-var-signing: "\f2a7"; +$fa-var-simplybuilt: "\f215"; +$fa-var-sitemap: "\f0e8"; +$fa-var-skyatlas: "\f216"; +$fa-var-skype: "\f17e"; +$fa-var-slack: "\f198"; +$fa-var-sliders: "\f1de"; +$fa-var-slideshare: "\f1e7"; +$fa-var-smile-o: "\f118"; +$fa-var-snapchat: "\f2ab"; +$fa-var-snapchat-ghost: "\f2ac"; +$fa-var-snapchat-square: "\f2ad"; +$fa-var-snowflake-o: "\f2dc"; +$fa-var-soccer-ball-o: "\f1e3"; +$fa-var-sort: "\f0dc"; +$fa-var-sort-alpha-asc: "\f15d"; +$fa-var-sort-alpha-desc: "\f15e"; +$fa-var-sort-amount-asc: "\f160"; +$fa-var-sort-amount-desc: "\f161"; +$fa-var-sort-asc: "\f0de"; +$fa-var-sort-desc: "\f0dd"; +$fa-var-sort-down: "\f0dd"; +$fa-var-sort-numeric-asc: "\f162"; +$fa-var-sort-numeric-desc: "\f163"; +$fa-var-sort-up: "\f0de"; +$fa-var-soundcloud: "\f1be"; +$fa-var-space-shuttle: "\f197"; +$fa-var-spinner: "\f110"; +$fa-var-spoon: "\f1b1"; +$fa-var-spotify: "\f1bc"; +$fa-var-square: "\f0c8"; +$fa-var-square-o: "\f096"; +$fa-var-stack-exchange: "\f18d"; +$fa-var-stack-overflow: "\f16c"; +$fa-var-star: "\f005"; +$fa-var-star-half: "\f089"; +$fa-var-star-half-empty: "\f123"; +$fa-var-star-half-full: "\f123"; +$fa-var-star-half-o: "\f123"; +$fa-var-star-o: "\f006"; +$fa-var-steam: "\f1b6"; +$fa-var-steam-square: "\f1b7"; +$fa-var-step-backward: "\f048"; +$fa-var-step-forward: "\f051"; +$fa-var-stethoscope: "\f0f1"; +$fa-var-sticky-note: "\f249"; +$fa-var-sticky-note-o: "\f24a"; +$fa-var-stop: "\f04d"; +$fa-var-stop-circle: "\f28d"; +$fa-var-stop-circle-o: "\f28e"; +$fa-var-street-view: "\f21d"; +$fa-var-strikethrough: "\f0cc"; +$fa-var-stumbleupon: "\f1a4"; +$fa-var-stumbleupon-circle: "\f1a3"; +$fa-var-subscript: "\f12c"; +$fa-var-subway: "\f239"; +$fa-var-suitcase: "\f0f2"; +$fa-var-sun-o: "\f185"; +$fa-var-superpowers: "\f2dd"; +$fa-var-superscript: "\f12b"; +$fa-var-support: "\f1cd"; +$fa-var-table: "\f0ce"; +$fa-var-tablet: "\f10a"; +$fa-var-tachometer: "\f0e4"; +$fa-var-tag: "\f02b"; +$fa-var-tags: "\f02c"; +$fa-var-tasks: "\f0ae"; +$fa-var-taxi: "\f1ba"; +$fa-var-telegram: "\f2c6"; +$fa-var-television: "\f26c"; +$fa-var-tencent-weibo: "\f1d5"; +$fa-var-terminal: "\f120"; +$fa-var-text-height: "\f034"; +$fa-var-text-width: "\f035"; +$fa-var-th: "\f00a"; +$fa-var-th-large: "\f009"; +$fa-var-th-list: "\f00b"; +$fa-var-themeisle: "\f2b2"; +$fa-var-thermometer: "\f2c7"; +$fa-var-thermometer-0: "\f2cb"; +$fa-var-thermometer-1: "\f2ca"; +$fa-var-thermometer-2: "\f2c9"; +$fa-var-thermometer-3: "\f2c8"; +$fa-var-thermometer-4: "\f2c7"; +$fa-var-thermometer-empty: "\f2cb"; +$fa-var-thermometer-full: "\f2c7"; +$fa-var-thermometer-half: "\f2c9"; +$fa-var-thermometer-quarter: "\f2ca"; +$fa-var-thermometer-three-quarters: "\f2c8"; +$fa-var-thumb-tack: "\f08d"; +$fa-var-thumbs-down: "\f165"; +$fa-var-thumbs-o-down: "\f088"; +$fa-var-thumbs-o-up: "\f087"; +$fa-var-thumbs-up: "\f164"; +$fa-var-ticket: "\f145"; +$fa-var-times: "\f00d"; +$fa-var-times-circle: "\f057"; +$fa-var-times-circle-o: "\f05c"; +$fa-var-times-rectangle: "\f2d3"; +$fa-var-times-rectangle-o: "\f2d4"; +$fa-var-tint: "\f043"; +$fa-var-toggle-down: "\f150"; +$fa-var-toggle-left: "\f191"; +$fa-var-toggle-off: "\f204"; +$fa-var-toggle-on: "\f205"; +$fa-var-toggle-right: "\f152"; +$fa-var-toggle-up: "\f151"; +$fa-var-trademark: "\f25c"; +$fa-var-train: "\f238"; +$fa-var-transgender: "\f224"; +$fa-var-transgender-alt: "\f225"; +$fa-var-trash: "\f1f8"; +$fa-var-trash-o: "\f014"; +$fa-var-tree: "\f1bb"; +$fa-var-trello: "\f181"; +$fa-var-tripadvisor: "\f262"; +$fa-var-trophy: "\f091"; +$fa-var-truck: "\f0d1"; +$fa-var-try: "\f195"; +$fa-var-tty: "\f1e4"; +$fa-var-tumblr: "\f173"; +$fa-var-tumblr-square: "\f174"; +$fa-var-turkish-lira: "\f195"; +$fa-var-tv: "\f26c"; +$fa-var-twitch: "\f1e8"; +$fa-var-twitter: "\f099"; +$fa-var-twitter-square: "\f081"; +$fa-var-umbrella: "\f0e9"; +$fa-var-underline: "\f0cd"; +$fa-var-undo: "\f0e2"; +$fa-var-universal-access: "\f29a"; +$fa-var-university: "\f19c"; +$fa-var-unlink: "\f127"; +$fa-var-unlock: "\f09c"; +$fa-var-unlock-alt: "\f13e"; +$fa-var-unsorted: "\f0dc"; +$fa-var-upload: "\f093"; +$fa-var-usb: "\f287"; +$fa-var-usd: "\f155"; +$fa-var-user: "\f007"; +$fa-var-user-circle: "\f2bd"; +$fa-var-user-circle-o: "\f2be"; +$fa-var-user-md: "\f0f0"; +$fa-var-user-o: "\f2c0"; +$fa-var-user-plus: "\f234"; +$fa-var-user-secret: "\f21b"; +$fa-var-user-times: "\f235"; +$fa-var-users: "\f0c0"; +$fa-var-vcard: "\f2bb"; +$fa-var-vcard-o: "\f2bc"; +$fa-var-venus: "\f221"; +$fa-var-venus-double: "\f226"; +$fa-var-venus-mars: "\f228"; +$fa-var-viacoin: "\f237"; +$fa-var-viadeo: "\f2a9"; +$fa-var-viadeo-square: "\f2aa"; +$fa-var-video-camera: "\f03d"; +$fa-var-vimeo: "\f27d"; +$fa-var-vimeo-square: "\f194"; +$fa-var-vine: "\f1ca"; +$fa-var-vk: "\f189"; +$fa-var-volume-control-phone: "\f2a0"; +$fa-var-volume-down: "\f027"; +$fa-var-volume-off: "\f026"; +$fa-var-volume-up: "\f028"; +$fa-var-warning: "\f071"; +$fa-var-wechat: "\f1d7"; +$fa-var-weibo: "\f18a"; +$fa-var-weixin: "\f1d7"; +$fa-var-whatsapp: "\f232"; +$fa-var-wheelchair: "\f193"; +$fa-var-wheelchair-alt: "\f29b"; +$fa-var-wifi: "\f1eb"; +$fa-var-wikipedia-w: "\f266"; +$fa-var-window-close: "\f2d3"; +$fa-var-window-close-o: "\f2d4"; +$fa-var-window-maximize: "\f2d0"; +$fa-var-window-minimize: "\f2d1"; +$fa-var-window-restore: "\f2d2"; +$fa-var-windows: "\f17a"; +$fa-var-won: "\f159"; +$fa-var-wordpress: "\f19a"; +$fa-var-wpbeginner: "\f297"; +$fa-var-wpexplorer: "\f2de"; +$fa-var-wpforms: "\f298"; +$fa-var-wrench: "\f0ad"; +$fa-var-xing: "\f168"; +$fa-var-xing-square: "\f169"; +$fa-var-y-combinator: "\f23b"; +$fa-var-y-combinator-square: "\f1d4"; +$fa-var-yahoo: "\f19e"; +$fa-var-yc: "\f23b"; +$fa-var-yc-square: "\f1d4"; +$fa-var-yelp: "\f1e9"; +$fa-var-yen: "\f157"; +$fa-var-yoast: "\f2b1"; +$fa-var-youtube: "\f167"; +$fa-var-youtube-play: "\f16a"; +$fa-var-youtube-square: "\f166"; + diff --git a/assets/vendors/iconfonts/font-awesome/scss/font-awesome.scss b/assets/vendors/iconfonts/font-awesome/scss/font-awesome.scss new file mode 100755 index 0000000..f1c83aa --- /dev/null +++ b/assets/vendors/iconfonts/font-awesome/scss/font-awesome.scss @@ -0,0 +1,18 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ + +@import "variables"; +@import "mixins"; +@import "path"; +@import "core"; +@import "larger"; +@import "fixed-width"; +@import "list"; +@import "bordered-pulled"; +@import "animated"; +@import "rotated-flipped"; +@import "stacked"; +@import "icons"; +@import "screen-reader"; diff --git a/assets/vendors/iconfonts/mdi/README.md b/assets/vendors/iconfonts/mdi/README.md new file mode 100755 index 0000000..affbc1d --- /dev/null +++ b/assets/vendors/iconfonts/mdi/README.md @@ -0,0 +1,6 @@ +# MaterialDesign-Webfont +NPM/Bower Dist for Material Design Webfont. This includes the Stock and Community icons in a single webfont collection. + +## Learn More + +https://github.com/Templarian/MaterialDesign diff --git a/assets/vendors/iconfonts/mdi/bower.json b/assets/vendors/iconfonts/mdi/bower.json new file mode 100755 index 0000000..b1e0605 --- /dev/null +++ b/assets/vendors/iconfonts/mdi/bower.json @@ -0,0 +1,23 @@ +{ + "name": "mdi", + "version": "2.2.43", + "main": [ + "scss/materialdesignicons.scss" + ], + "homepage": "http://materialdesignicons.com", + "authors": [ + { "name": "Austin Andrews", "homepage": "http://templarian.com" }, + { "name": "Google", "homepage": "http://www.google.com/design" } + ], + "license": ["OFL-1.1", "MIT"], + "ignore": [ + "*.md", + "*.json" + ], + "keywords": [ + "material", + "design", + "icons", + "webfont" + ] +} diff --git a/assets/vendors/iconfonts/mdi/css/materialdesignicons.css b/assets/vendors/iconfonts/mdi/css/materialdesignicons.css new file mode 100755 index 0000000..18bd595 --- /dev/null +++ b/assets/vendors/iconfonts/mdi/css/materialdesignicons.css @@ -0,0 +1,9235 @@ +/* MaterialDesignIcons.com */ +@font-face { + font-family: "Material Design Icons"; + src: url("../fonts/materialdesignicons-webfont.eot?v=2.2.43"); + src: url("../fonts/materialdesignicons-webfont.eot?#iefix&v=2.2.43") format("embedded-opentype"), url("../fonts/materialdesignicons-webfont.woff2?v=2.2.43") format("woff2"), url("../fonts/materialdesignicons-webfont.woff?v=2.2.43") format("woff"), url("../fonts/materialdesignicons-webfont.ttf?v=2.2.43") format("truetype"), url("../fonts/materialdesignicons-webfont.svg?v=2.2.43#materialdesigniconsregular") format("svg"); + font-weight: normal; + font-style: normal; +} +.mdi:before, +.mdi-set { + display: inline-block; + font: normal normal normal 24px/1 "Material Design Icons"; + font-size: inherit; + text-rendering: auto; + line-height: inherit; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.mdi-access-point:before { + content: "\F002"; +} + +.mdi-access-point-network:before { + content: "\F003"; +} + +.mdi-account:before { + content: "\F004"; +} + +.mdi-account-alert:before { + content: "\F005"; +} + +.mdi-account-box:before { + content: "\F006"; +} + +.mdi-account-box-outline:before { + content: "\F007"; +} + +.mdi-account-card-details:before { + content: "\F5D2"; +} + +.mdi-account-check:before { + content: "\F008"; +} + +.mdi-account-circle:before { + content: "\F009"; +} + +.mdi-account-convert:before { + content: "\F00A"; +} + +.mdi-account-edit:before { + content: "\F6BB"; +} + +.mdi-account-group:before { + content: "\F848"; +} + +.mdi-account-heart:before { + content: "\F898"; +} + +.mdi-account-key:before { + content: "\F00B"; +} + +.mdi-account-location:before { + content: "\F00C"; +} + +.mdi-account-minus:before { + content: "\F00D"; +} + +.mdi-account-multiple:before { + content: "\F00E"; +} + +.mdi-account-multiple-minus:before { + content: "\F5D3"; +} + +.mdi-account-multiple-outline:before { + content: "\F00F"; +} + +.mdi-account-multiple-plus:before { + content: "\F010"; +} + +.mdi-account-multiple-plus-outline:before { + content: "\F7FF"; +} + +.mdi-account-network:before { + content: "\F011"; +} + +.mdi-account-off:before { + content: "\F012"; +} + +.mdi-account-outline:before { + content: "\F013"; +} + +.mdi-account-plus:before { + content: "\F014"; +} + +.mdi-account-plus-outline:before { + content: "\F800"; +} + +.mdi-account-remove:before { + content: "\F015"; +} + +.mdi-account-search:before { + content: "\F016"; +} + +.mdi-account-settings:before { + content: "\F630"; +} + +.mdi-account-settings-variant:before { + content: "\F631"; +} + +.mdi-account-star:before { + content: "\F017"; +} + +.mdi-account-switch:before { + content: "\F019"; +} + +.mdi-accusoft:before { + content: "\F849"; +} + +.mdi-adjust:before { + content: "\F01A"; +} + +.mdi-air-conditioner:before { + content: "\F01B"; +} + +.mdi-airballoon:before { + content: "\F01C"; +} + +.mdi-airplane:before { + content: "\F01D"; +} + +.mdi-airplane-landing:before { + content: "\F5D4"; +} + +.mdi-airplane-off:before { + content: "\F01E"; +} + +.mdi-airplane-takeoff:before { + content: "\F5D5"; +} + +.mdi-airplay:before { + content: "\F01F"; +} + +.mdi-airport:before { + content: "\F84A"; +} + +.mdi-alarm:before { + content: "\F020"; +} + +.mdi-alarm-bell:before { + content: "\F78D"; +} + +.mdi-alarm-check:before { + content: "\F021"; +} + +.mdi-alarm-light:before { + content: "\F78E"; +} + +.mdi-alarm-multiple:before { + content: "\F022"; +} + +.mdi-alarm-off:before { + content: "\F023"; +} + +.mdi-alarm-plus:before { + content: "\F024"; +} + +.mdi-alarm-snooze:before { + content: "\F68D"; +} + +.mdi-album:before { + content: "\F025"; +} + +.mdi-alert:before { + content: "\F026"; +} + +.mdi-alert-box:before { + content: "\F027"; +} + +.mdi-alert-circle:before { + content: "\F028"; +} + +.mdi-alert-circle-outline:before { + content: "\F5D6"; +} + +.mdi-alert-decagram:before { + content: "\F6BC"; +} + +.mdi-alert-octagon:before { + content: "\F029"; +} + +.mdi-alert-octagram:before { + content: "\F766"; +} + +.mdi-alert-outline:before { + content: "\F02A"; +} + +.mdi-alien:before { + content: "\F899"; +} + +.mdi-all-inclusive:before { + content: "\F6BD"; +} + +.mdi-allo:before { + content: "\F801"; +} + +.mdi-alpha:before { + content: "\F02B"; +} + +.mdi-alphabetical:before { + content: "\F02C"; +} + +.mdi-altimeter:before { + content: "\F5D7"; +} + +.mdi-amazon:before { + content: "\F02D"; +} + +.mdi-amazon-clouddrive:before { + content: "\F02E"; +} + +.mdi-ambulance:before { + content: "\F02F"; +} + +.mdi-amplifier:before { + content: "\F030"; +} + +.mdi-anchor:before { + content: "\F031"; +} + +.mdi-android:before { + content: "\F032"; +} + +.mdi-android-debug-bridge:before { + content: "\F033"; +} + +.mdi-android-head:before { + content: "\F78F"; +} + +.mdi-android-studio:before { + content: "\F034"; +} + +.mdi-angular:before { + content: "\F6B1"; +} + +.mdi-angularjs:before { + content: "\F6BE"; +} + +.mdi-animation:before { + content: "\F5D8"; +} + +.mdi-anvil:before { + content: "\F89A"; +} + +.mdi-apple:before { + content: "\F035"; +} + +.mdi-apple-finder:before { + content: "\F036"; +} + +.mdi-apple-ios:before { + content: "\F037"; +} + +.mdi-apple-keyboard-caps:before { + content: "\F632"; +} + +.mdi-apple-keyboard-command:before { + content: "\F633"; +} + +.mdi-apple-keyboard-control:before { + content: "\F634"; +} + +.mdi-apple-keyboard-option:before { + content: "\F635"; +} + +.mdi-apple-keyboard-shift:before { + content: "\F636"; +} + +.mdi-apple-mobileme:before { + content: "\F038"; +} + +.mdi-apple-safari:before { + content: "\F039"; +} + +.mdi-application:before { + content: "\F614"; +} + +.mdi-approval:before { + content: "\F790"; +} + +.mdi-apps:before { + content: "\F03B"; +} + +.mdi-archive:before { + content: "\F03C"; +} + +.mdi-arrange-bring-forward:before { + content: "\F03D"; +} + +.mdi-arrange-bring-to-front:before { + content: "\F03E"; +} + +.mdi-arrange-send-backward:before { + content: "\F03F"; +} + +.mdi-arrange-send-to-back:before { + content: "\F040"; +} + +.mdi-arrow-all:before { + content: "\F041"; +} + +.mdi-arrow-bottom-left:before { + content: "\F042"; +} + +.mdi-arrow-bottom-right:before { + content: "\F043"; +} + +.mdi-arrow-collapse:before { + content: "\F615"; +} + +.mdi-arrow-collapse-all:before { + content: "\F044"; +} + +.mdi-arrow-collapse-down:before { + content: "\F791"; +} + +.mdi-arrow-collapse-horizontal:before { + content: "\F84B"; +} + +.mdi-arrow-collapse-left:before { + content: "\F792"; +} + +.mdi-arrow-collapse-right:before { + content: "\F793"; +} + +.mdi-arrow-collapse-up:before { + content: "\F794"; +} + +.mdi-arrow-collapse-vertical:before { + content: "\F84C"; +} + +.mdi-arrow-down:before { + content: "\F045"; +} + +.mdi-arrow-down-bold:before { + content: "\F72D"; +} + +.mdi-arrow-down-bold-box:before { + content: "\F72E"; +} + +.mdi-arrow-down-bold-box-outline:before { + content: "\F72F"; +} + +.mdi-arrow-down-bold-circle:before { + content: "\F047"; +} + +.mdi-arrow-down-bold-circle-outline:before { + content: "\F048"; +} + +.mdi-arrow-down-bold-hexagon-outline:before { + content: "\F049"; +} + +.mdi-arrow-down-box:before { + content: "\F6BF"; +} + +.mdi-arrow-down-drop-circle:before { + content: "\F04A"; +} + +.mdi-arrow-down-drop-circle-outline:before { + content: "\F04B"; +} + +.mdi-arrow-down-thick:before { + content: "\F046"; +} + +.mdi-arrow-expand:before { + content: "\F616"; +} + +.mdi-arrow-expand-all:before { + content: "\F04C"; +} + +.mdi-arrow-expand-down:before { + content: "\F795"; +} + +.mdi-arrow-expand-horizontal:before { + content: "\F84D"; +} + +.mdi-arrow-expand-left:before { + content: "\F796"; +} + +.mdi-arrow-expand-right:before { + content: "\F797"; +} + +.mdi-arrow-expand-up:before { + content: "\F798"; +} + +.mdi-arrow-expand-vertical:before { + content: "\F84E"; +} + +.mdi-arrow-left:before { + content: "\F04D"; +} + +.mdi-arrow-left-bold:before { + content: "\F730"; +} + +.mdi-arrow-left-bold-box:before { + content: "\F731"; +} + +.mdi-arrow-left-bold-box-outline:before { + content: "\F732"; +} + +.mdi-arrow-left-bold-circle:before { + content: "\F04F"; +} + +.mdi-arrow-left-bold-circle-outline:before { + content: "\F050"; +} + +.mdi-arrow-left-bold-hexagon-outline:before { + content: "\F051"; +} + +.mdi-arrow-left-box:before { + content: "\F6C0"; +} + +.mdi-arrow-left-drop-circle:before { + content: "\F052"; +} + +.mdi-arrow-left-drop-circle-outline:before { + content: "\F053"; +} + +.mdi-arrow-left-thick:before { + content: "\F04E"; +} + +.mdi-arrow-right:before { + content: "\F054"; +} + +.mdi-arrow-right-bold:before { + content: "\F733"; +} + +.mdi-arrow-right-bold-box:before { + content: "\F734"; +} + +.mdi-arrow-right-bold-box-outline:before { + content: "\F735"; +} + +.mdi-arrow-right-bold-circle:before { + content: "\F056"; +} + +.mdi-arrow-right-bold-circle-outline:before { + content: "\F057"; +} + +.mdi-arrow-right-bold-hexagon-outline:before { + content: "\F058"; +} + +.mdi-arrow-right-box:before { + content: "\F6C1"; +} + +.mdi-arrow-right-drop-circle:before { + content: "\F059"; +} + +.mdi-arrow-right-drop-circle-outline:before { + content: "\F05A"; +} + +.mdi-arrow-right-thick:before { + content: "\F055"; +} + +.mdi-arrow-top-left:before { + content: "\F05B"; +} + +.mdi-arrow-top-right:before { + content: "\F05C"; +} + +.mdi-arrow-up:before { + content: "\F05D"; +} + +.mdi-arrow-up-bold:before { + content: "\F736"; +} + +.mdi-arrow-up-bold-box:before { + content: "\F737"; +} + +.mdi-arrow-up-bold-box-outline:before { + content: "\F738"; +} + +.mdi-arrow-up-bold-circle:before { + content: "\F05F"; +} + +.mdi-arrow-up-bold-circle-outline:before { + content: "\F060"; +} + +.mdi-arrow-up-bold-hexagon-outline:before { + content: "\F061"; +} + +.mdi-arrow-up-box:before { + content: "\F6C2"; +} + +.mdi-arrow-up-drop-circle:before { + content: "\F062"; +} + +.mdi-arrow-up-drop-circle-outline:before { + content: "\F063"; +} + +.mdi-arrow-up-thick:before { + content: "\F05E"; +} + +.mdi-artist:before { + content: "\F802"; +} + +.mdi-assistant:before { + content: "\F064"; +} + +.mdi-asterisk:before { + content: "\F6C3"; +} + +.mdi-at:before { + content: "\F065"; +} + +.mdi-atlassian:before { + content: "\F803"; +} + +.mdi-atom:before { + content: "\F767"; +} + +.mdi-attachment:before { + content: "\F066"; +} + +.mdi-audiobook:before { + content: "\F067"; +} + +.mdi-augmented-reality:before { + content: "\F84F"; +} + +.mdi-auto-fix:before { + content: "\F068"; +} + +.mdi-auto-upload:before { + content: "\F069"; +} + +.mdi-autorenew:before { + content: "\F06A"; +} + +.mdi-av-timer:before { + content: "\F06B"; +} + +.mdi-azure:before { + content: "\F804"; +} + +.mdi-baby:before { + content: "\F06C"; +} + +.mdi-baby-buggy:before { + content: "\F68E"; +} + +.mdi-backburger:before { + content: "\F06D"; +} + +.mdi-backspace:before { + content: "\F06E"; +} + +.mdi-backup-restore:before { + content: "\F06F"; +} + +.mdi-badminton:before { + content: "\F850"; +} + +.mdi-bandcamp:before { + content: "\F674"; +} + +.mdi-bank:before { + content: "\F070"; +} + +.mdi-barcode:before { + content: "\F071"; +} + +.mdi-barcode-scan:before { + content: "\F072"; +} + +.mdi-barley:before { + content: "\F073"; +} + +.mdi-barrel:before { + content: "\F074"; +} + +.mdi-baseball:before { + content: "\F851"; +} + +.mdi-baseball-bat:before { + content: "\F852"; +} + +.mdi-basecamp:before { + content: "\F075"; +} + +.mdi-basket:before { + content: "\F076"; +} + +.mdi-basket-fill:before { + content: "\F077"; +} + +.mdi-basket-unfill:before { + content: "\F078"; +} + +.mdi-basketball:before { + content: "\F805"; +} + +.mdi-battery:before { + content: "\F079"; +} + +.mdi-battery-10:before { + content: "\F07A"; +} + +.mdi-battery-20:before { + content: "\F07B"; +} + +.mdi-battery-30:before { + content: "\F07C"; +} + +.mdi-battery-40:before { + content: "\F07D"; +} + +.mdi-battery-50:before { + content: "\F07E"; +} + +.mdi-battery-60:before { + content: "\F07F"; +} + +.mdi-battery-70:before { + content: "\F080"; +} + +.mdi-battery-80:before { + content: "\F081"; +} + +.mdi-battery-90:before { + content: "\F082"; +} + +.mdi-battery-alert:before { + content: "\F083"; +} + +.mdi-battery-charging:before { + content: "\F084"; +} + +.mdi-battery-charging-10:before { + content: "\F89B"; +} + +.mdi-battery-charging-100:before { + content: "\F085"; +} + +.mdi-battery-charging-20:before { + content: "\F086"; +} + +.mdi-battery-charging-30:before { + content: "\F087"; +} + +.mdi-battery-charging-40:before { + content: "\F088"; +} + +.mdi-battery-charging-50:before { + content: "\F89C"; +} + +.mdi-battery-charging-60:before { + content: "\F089"; +} + +.mdi-battery-charging-70:before { + content: "\F89D"; +} + +.mdi-battery-charging-80:before { + content: "\F08A"; +} + +.mdi-battery-charging-90:before { + content: "\F08B"; +} + +.mdi-battery-charging-outline:before { + content: "\F89E"; +} + +.mdi-battery-charging-wireless:before { + content: "\F806"; +} + +.mdi-battery-charging-wireless-10:before { + content: "\F807"; +} + +.mdi-battery-charging-wireless-20:before { + content: "\F808"; +} + +.mdi-battery-charging-wireless-30:before { + content: "\F809"; +} + +.mdi-battery-charging-wireless-40:before { + content: "\F80A"; +} + +.mdi-battery-charging-wireless-50:before { + content: "\F80B"; +} + +.mdi-battery-charging-wireless-60:before { + content: "\F80C"; +} + +.mdi-battery-charging-wireless-70:before { + content: "\F80D"; +} + +.mdi-battery-charging-wireless-80:before { + content: "\F80E"; +} + +.mdi-battery-charging-wireless-90:before { + content: "\F80F"; +} + +.mdi-battery-charging-wireless-alert:before { + content: "\F810"; +} + +.mdi-battery-charging-wireless-outline:before { + content: "\F811"; +} + +.mdi-battery-minus:before { + content: "\F08C"; +} + +.mdi-battery-negative:before { + content: "\F08D"; +} + +.mdi-battery-outline:before { + content: "\F08E"; +} + +.mdi-battery-plus:before { + content: "\F08F"; +} + +.mdi-battery-positive:before { + content: "\F090"; +} + +.mdi-battery-unknown:before { + content: "\F091"; +} + +.mdi-beach:before { + content: "\F092"; +} + +.mdi-beaker:before { + content: "\F68F"; +} + +.mdi-beats:before { + content: "\F097"; +} + +.mdi-bed-empty:before { + content: "\F89F"; +} + +.mdi-beer:before { + content: "\F098"; +} + +.mdi-behance:before { + content: "\F099"; +} + +.mdi-bell:before { + content: "\F09A"; +} + +.mdi-bell-off:before { + content: "\F09B"; +} + +.mdi-bell-outline:before { + content: "\F09C"; +} + +.mdi-bell-plus:before { + content: "\F09D"; +} + +.mdi-bell-ring:before { + content: "\F09E"; +} + +.mdi-bell-ring-outline:before { + content: "\F09F"; +} + +.mdi-bell-sleep:before { + content: "\F0A0"; +} + +.mdi-beta:before { + content: "\F0A1"; +} + +.mdi-bible:before { + content: "\F0A2"; +} + +.mdi-bike:before { + content: "\F0A3"; +} + +.mdi-bing:before { + content: "\F0A4"; +} + +.mdi-binoculars:before { + content: "\F0A5"; +} + +.mdi-bio:before { + content: "\F0A6"; +} + +.mdi-biohazard:before { + content: "\F0A7"; +} + +.mdi-bitbucket:before { + content: "\F0A8"; +} + +.mdi-bitcoin:before { + content: "\F812"; +} + +.mdi-black-mesa:before { + content: "\F0A9"; +} + +.mdi-blackberry:before { + content: "\F0AA"; +} + +.mdi-blender:before { + content: "\F0AB"; +} + +.mdi-blinds:before { + content: "\F0AC"; +} + +.mdi-block-helper:before { + content: "\F0AD"; +} + +.mdi-blogger:before { + content: "\F0AE"; +} + +.mdi-bluetooth:before { + content: "\F0AF"; +} + +.mdi-bluetooth-audio:before { + content: "\F0B0"; +} + +.mdi-bluetooth-connect:before { + content: "\F0B1"; +} + +.mdi-bluetooth-off:before { + content: "\F0B2"; +} + +.mdi-bluetooth-settings:before { + content: "\F0B3"; +} + +.mdi-bluetooth-transfer:before { + content: "\F0B4"; +} + +.mdi-blur:before { + content: "\F0B5"; +} + +.mdi-blur-linear:before { + content: "\F0B6"; +} + +.mdi-blur-off:before { + content: "\F0B7"; +} + +.mdi-blur-radial:before { + content: "\F0B8"; +} + +.mdi-bomb:before { + content: "\F690"; +} + +.mdi-bomb-off:before { + content: "\F6C4"; +} + +.mdi-bone:before { + content: "\F0B9"; +} + +.mdi-book:before { + content: "\F0BA"; +} + +.mdi-book-minus:before { + content: "\F5D9"; +} + +.mdi-book-multiple:before { + content: "\F0BB"; +} + +.mdi-book-multiple-variant:before { + content: "\F0BC"; +} + +.mdi-book-open:before { + content: "\F0BD"; +} + +.mdi-book-open-page-variant:before { + content: "\F5DA"; +} + +.mdi-book-open-variant:before { + content: "\F0BE"; +} + +.mdi-book-plus:before { + content: "\F5DB"; +} + +.mdi-book-secure:before { + content: "\F799"; +} + +.mdi-book-unsecure:before { + content: "\F79A"; +} + +.mdi-book-variant:before { + content: "\F0BF"; +} + +.mdi-bookmark:before { + content: "\F0C0"; +} + +.mdi-bookmark-check:before { + content: "\F0C1"; +} + +.mdi-bookmark-music:before { + content: "\F0C2"; +} + +.mdi-bookmark-outline:before { + content: "\F0C3"; +} + +.mdi-bookmark-plus:before { + content: "\F0C5"; +} + +.mdi-bookmark-plus-outline:before { + content: "\F0C4"; +} + +.mdi-bookmark-remove:before { + content: "\F0C6"; +} + +.mdi-boombox:before { + content: "\F5DC"; +} + +.mdi-bootstrap:before { + content: "\F6C5"; +} + +.mdi-border-all:before { + content: "\F0C7"; +} + +.mdi-border-all-variant:before { + content: "\F8A0"; +} + +.mdi-border-bottom:before { + content: "\F0C8"; +} + +.mdi-border-bottom-variant:before { + content: "\F8A1"; +} + +.mdi-border-color:before { + content: "\F0C9"; +} + +.mdi-border-horizontal:before { + content: "\F0CA"; +} + +.mdi-border-inside:before { + content: "\F0CB"; +} + +.mdi-border-left:before { + content: "\F0CC"; +} + +.mdi-border-left-variant:before { + content: "\F8A2"; +} + +.mdi-border-none:before { + content: "\F0CD"; +} + +.mdi-border-none-variant:before { + content: "\F8A3"; +} + +.mdi-border-outside:before { + content: "\F0CE"; +} + +.mdi-border-right:before { + content: "\F0CF"; +} + +.mdi-border-right-variant:before { + content: "\F8A4"; +} + +.mdi-border-style:before { + content: "\F0D0"; +} + +.mdi-border-top:before { + content: "\F0D1"; +} + +.mdi-border-top-variant:before { + content: "\F8A5"; +} + +.mdi-border-vertical:before { + content: "\F0D2"; +} + +.mdi-bottle-wine:before { + content: "\F853"; +} + +.mdi-bow-tie:before { + content: "\F677"; +} + +.mdi-bowl:before { + content: "\F617"; +} + +.mdi-bowling:before { + content: "\F0D3"; +} + +.mdi-box:before { + content: "\F0D4"; +} + +.mdi-box-cutter:before { + content: "\F0D5"; +} + +.mdi-box-shadow:before { + content: "\F637"; +} + +.mdi-bridge:before { + content: "\F618"; +} + +.mdi-briefcase:before { + content: "\F0D6"; +} + +.mdi-briefcase-check:before { + content: "\F0D7"; +} + +.mdi-briefcase-download:before { + content: "\F0D8"; +} + +.mdi-briefcase-outline:before { + content: "\F813"; +} + +.mdi-briefcase-upload:before { + content: "\F0D9"; +} + +.mdi-brightness-1:before { + content: "\F0DA"; +} + +.mdi-brightness-2:before { + content: "\F0DB"; +} + +.mdi-brightness-3:before { + content: "\F0DC"; +} + +.mdi-brightness-4:before { + content: "\F0DD"; +} + +.mdi-brightness-5:before { + content: "\F0DE"; +} + +.mdi-brightness-6:before { + content: "\F0DF"; +} + +.mdi-brightness-7:before { + content: "\F0E0"; +} + +.mdi-brightness-auto:before { + content: "\F0E1"; +} + +.mdi-broom:before { + content: "\F0E2"; +} + +.mdi-brush:before { + content: "\F0E3"; +} + +.mdi-buffer:before { + content: "\F619"; +} + +.mdi-bug:before { + content: "\F0E4"; +} + +.mdi-bulletin-board:before { + content: "\F0E5"; +} + +.mdi-bullhorn:before { + content: "\F0E6"; +} + +.mdi-bullseye:before { + content: "\F5DD"; +} + +.mdi-bus:before { + content: "\F0E7"; +} + +.mdi-bus-articulated-end:before { + content: "\F79B"; +} + +.mdi-bus-articulated-front:before { + content: "\F79C"; +} + +.mdi-bus-double-decker:before { + content: "\F79D"; +} + +.mdi-bus-school:before { + content: "\F79E"; +} + +.mdi-bus-side:before { + content: "\F79F"; +} + +.mdi-cached:before { + content: "\F0E8"; +} + +.mdi-cake:before { + content: "\F0E9"; +} + +.mdi-cake-layered:before { + content: "\F0EA"; +} + +.mdi-cake-variant:before { + content: "\F0EB"; +} + +.mdi-calculator:before { + content: "\F0EC"; +} + +.mdi-calendar:before { + content: "\F0ED"; +} + +.mdi-calendar-blank:before { + content: "\F0EE"; +} + +.mdi-calendar-check:before { + content: "\F0EF"; +} + +.mdi-calendar-clock:before { + content: "\F0F0"; +} + +.mdi-calendar-edit:before { + content: "\F8A6"; +} + +.mdi-calendar-multiple:before { + content: "\F0F1"; +} + +.mdi-calendar-multiple-check:before { + content: "\F0F2"; +} + +.mdi-calendar-plus:before { + content: "\F0F3"; +} + +.mdi-calendar-question:before { + content: "\F691"; +} + +.mdi-calendar-range:before { + content: "\F678"; +} + +.mdi-calendar-remove:before { + content: "\F0F4"; +} + +.mdi-calendar-text:before { + content: "\F0F5"; +} + +.mdi-calendar-today:before { + content: "\F0F6"; +} + +.mdi-call-made:before { + content: "\F0F7"; +} + +.mdi-call-merge:before { + content: "\F0F8"; +} + +.mdi-call-missed:before { + content: "\F0F9"; +} + +.mdi-call-received:before { + content: "\F0FA"; +} + +.mdi-call-split:before { + content: "\F0FB"; +} + +.mdi-camcorder:before { + content: "\F0FC"; +} + +.mdi-camcorder-box:before { + content: "\F0FD"; +} + +.mdi-camcorder-box-off:before { + content: "\F0FE"; +} + +.mdi-camcorder-off:before { + content: "\F0FF"; +} + +.mdi-camera:before { + content: "\F100"; +} + +.mdi-camera-burst:before { + content: "\F692"; +} + +.mdi-camera-enhance:before { + content: "\F101"; +} + +.mdi-camera-front:before { + content: "\F102"; +} + +.mdi-camera-front-variant:before { + content: "\F103"; +} + +.mdi-camera-gopro:before { + content: "\F7A0"; +} + +.mdi-camera-iris:before { + content: "\F104"; +} + +.mdi-camera-metering-center:before { + content: "\F7A1"; +} + +.mdi-camera-metering-matrix:before { + content: "\F7A2"; +} + +.mdi-camera-metering-partial:before { + content: "\F7A3"; +} + +.mdi-camera-metering-spot:before { + content: "\F7A4"; +} + +.mdi-camera-off:before { + content: "\F5DF"; +} + +.mdi-camera-party-mode:before { + content: "\F105"; +} + +.mdi-camera-rear:before { + content: "\F106"; +} + +.mdi-camera-rear-variant:before { + content: "\F107"; +} + +.mdi-camera-switch:before { + content: "\F108"; +} + +.mdi-camera-timer:before { + content: "\F109"; +} + +.mdi-cancel:before { + content: "\F739"; +} + +.mdi-candle:before { + content: "\F5E2"; +} + +.mdi-candycane:before { + content: "\F10A"; +} + +.mdi-cannabis:before { + content: "\F7A5"; +} + +.mdi-car:before { + content: "\F10B"; +} + +.mdi-car-battery:before { + content: "\F10C"; +} + +.mdi-car-connected:before { + content: "\F10D"; +} + +.mdi-car-convertible:before { + content: "\F7A6"; +} + +.mdi-car-estate:before { + content: "\F7A7"; +} + +.mdi-car-hatchback:before { + content: "\F7A8"; +} + +.mdi-car-pickup:before { + content: "\F7A9"; +} + +.mdi-car-side:before { + content: "\F7AA"; +} + +.mdi-car-sports:before { + content: "\F7AB"; +} + +.mdi-car-wash:before { + content: "\F10E"; +} + +.mdi-caravan:before { + content: "\F7AC"; +} + +.mdi-cards:before { + content: "\F638"; +} + +.mdi-cards-outline:before { + content: "\F639"; +} + +.mdi-cards-playing-outline:before { + content: "\F63A"; +} + +.mdi-cards-variant:before { + content: "\F6C6"; +} + +.mdi-carrot:before { + content: "\F10F"; +} + +.mdi-cart:before { + content: "\F110"; +} + +.mdi-cart-off:before { + content: "\F66B"; +} + +.mdi-cart-outline:before { + content: "\F111"; +} + +.mdi-cart-plus:before { + content: "\F112"; +} + +.mdi-case-sensitive-alt:before { + content: "\F113"; +} + +.mdi-cash:before { + content: "\F114"; +} + +.mdi-cash-100:before { + content: "\F115"; +} + +.mdi-cash-multiple:before { + content: "\F116"; +} + +.mdi-cash-usd:before { + content: "\F117"; +} + +.mdi-cast:before { + content: "\F118"; +} + +.mdi-cast-connected:before { + content: "\F119"; +} + +.mdi-cast-off:before { + content: "\F789"; +} + +.mdi-castle:before { + content: "\F11A"; +} + +.mdi-cat:before { + content: "\F11B"; +} + +.mdi-cctv:before { + content: "\F7AD"; +} + +.mdi-ceiling-light:before { + content: "\F768"; +} + +.mdi-cellphone:before { + content: "\F11C"; +} + +.mdi-cellphone-android:before { + content: "\F11D"; +} + +.mdi-cellphone-basic:before { + content: "\F11E"; +} + +.mdi-cellphone-dock:before { + content: "\F11F"; +} + +.mdi-cellphone-iphone:before { + content: "\F120"; +} + +.mdi-cellphone-link:before { + content: "\F121"; +} + +.mdi-cellphone-link-off:before { + content: "\F122"; +} + +.mdi-cellphone-settings:before { + content: "\F123"; +} + +.mdi-cellphone-wireless:before { + content: "\F814"; +} + +.mdi-certificate:before { + content: "\F124"; +} + +.mdi-chair-school:before { + content: "\F125"; +} + +.mdi-chart-arc:before { + content: "\F126"; +} + +.mdi-chart-areaspline:before { + content: "\F127"; +} + +.mdi-chart-bar:before { + content: "\F128"; +} + +.mdi-chart-bar-stacked:before { + content: "\F769"; +} + +.mdi-chart-bubble:before { + content: "\F5E3"; +} + +.mdi-chart-donut:before { + content: "\F7AE"; +} + +.mdi-chart-donut-variant:before { + content: "\F7AF"; +} + +.mdi-chart-gantt:before { + content: "\F66C"; +} + +.mdi-chart-histogram:before { + content: "\F129"; +} + +.mdi-chart-line:before { + content: "\F12A"; +} + +.mdi-chart-line-stacked:before { + content: "\F76A"; +} + +.mdi-chart-line-variant:before { + content: "\F7B0"; +} + +.mdi-chart-pie:before { + content: "\F12B"; +} + +.mdi-chart-scatterplot-hexbin:before { + content: "\F66D"; +} + +.mdi-chart-timeline:before { + content: "\F66E"; +} + +.mdi-check:before { + content: "\F12C"; +} + +.mdi-check-all:before { + content: "\F12D"; +} + +.mdi-check-circle:before { + content: "\F5E0"; +} + +.mdi-check-circle-outline:before { + content: "\F5E1"; +} + +.mdi-check-outline:before { + content: "\F854"; +} + +.mdi-checkbox-blank:before { + content: "\F12E"; +} + +.mdi-checkbox-blank-circle:before { + content: "\F12F"; +} + +.mdi-checkbox-blank-circle-outline:before { + content: "\F130"; +} + +.mdi-checkbox-blank-outline:before { + content: "\F131"; +} + +.mdi-checkbox-intermediate:before { + content: "\F855"; +} + +.mdi-checkbox-marked:before { + content: "\F132"; +} + +.mdi-checkbox-marked-circle:before { + content: "\F133"; +} + +.mdi-checkbox-marked-circle-outline:before { + content: "\F134"; +} + +.mdi-checkbox-marked-outline:before { + content: "\F135"; +} + +.mdi-checkbox-multiple-blank:before { + content: "\F136"; +} + +.mdi-checkbox-multiple-blank-circle:before { + content: "\F63B"; +} + +.mdi-checkbox-multiple-blank-circle-outline:before { + content: "\F63C"; +} + +.mdi-checkbox-multiple-blank-outline:before { + content: "\F137"; +} + +.mdi-checkbox-multiple-marked:before { + content: "\F138"; +} + +.mdi-checkbox-multiple-marked-circle:before { + content: "\F63D"; +} + +.mdi-checkbox-multiple-marked-circle-outline:before { + content: "\F63E"; +} + +.mdi-checkbox-multiple-marked-outline:before { + content: "\F139"; +} + +.mdi-checkerboard:before { + content: "\F13A"; +} + +.mdi-chemical-weapon:before { + content: "\F13B"; +} + +.mdi-chess-bishop:before { + content: "\F85B"; +} + +.mdi-chess-king:before { + content: "\F856"; +} + +.mdi-chess-knight:before { + content: "\F857"; +} + +.mdi-chess-pawn:before { + content: "\F858"; +} + +.mdi-chess-queen:before { + content: "\F859"; +} + +.mdi-chess-rook:before { + content: "\F85A"; +} + +.mdi-chevron-double-down:before { + content: "\F13C"; +} + +.mdi-chevron-double-left:before { + content: "\F13D"; +} + +.mdi-chevron-double-right:before { + content: "\F13E"; +} + +.mdi-chevron-double-up:before { + content: "\F13F"; +} + +.mdi-chevron-down:before { + content: "\F140"; +} + +.mdi-chevron-left:before { + content: "\F141"; +} + +.mdi-chevron-right:before { + content: "\F142"; +} + +.mdi-chevron-up:before { + content: "\F143"; +} + +.mdi-chili-hot:before { + content: "\F7B1"; +} + +.mdi-chili-medium:before { + content: "\F7B2"; +} + +.mdi-chili-mild:before { + content: "\F7B3"; +} + +.mdi-chip:before { + content: "\F61A"; +} + +.mdi-church:before { + content: "\F144"; +} + +.mdi-circle:before { + content: "\F764"; +} + +.mdi-circle-outline:before { + content: "\F765"; +} + +.mdi-cisco-webex:before { + content: "\F145"; +} + +.mdi-city:before { + content: "\F146"; +} + +.mdi-clipboard:before { + content: "\F147"; +} + +.mdi-clipboard-account:before { + content: "\F148"; +} + +.mdi-clipboard-alert:before { + content: "\F149"; +} + +.mdi-clipboard-arrow-down:before { + content: "\F14A"; +} + +.mdi-clipboard-arrow-left:before { + content: "\F14B"; +} + +.mdi-clipboard-check:before { + content: "\F14C"; +} + +.mdi-clipboard-check-outline:before { + content: "\F8A7"; +} + +.mdi-clipboard-flow:before { + content: "\F6C7"; +} + +.mdi-clipboard-outline:before { + content: "\F14D"; +} + +.mdi-clipboard-plus:before { + content: "\F750"; +} + +.mdi-clipboard-pulse:before { + content: "\F85C"; +} + +.mdi-clipboard-pulse-outline:before { + content: "\F85D"; +} + +.mdi-clipboard-text:before { + content: "\F14E"; +} + +.mdi-clippy:before { + content: "\F14F"; +} + +.mdi-clock:before { + content: "\F150"; +} + +.mdi-clock-alert:before { + content: "\F5CE"; +} + +.mdi-clock-end:before { + content: "\F151"; +} + +.mdi-clock-fast:before { + content: "\F152"; +} + +.mdi-clock-in:before { + content: "\F153"; +} + +.mdi-clock-out:before { + content: "\F154"; +} + +.mdi-clock-start:before { + content: "\F155"; +} + +.mdi-close:before { + content: "\F156"; +} + +.mdi-close-box:before { + content: "\F157"; +} + +.mdi-close-box-outline:before { + content: "\F158"; +} + +.mdi-close-circle:before { + content: "\F159"; +} + +.mdi-close-circle-outline:before { + content: "\F15A"; +} + +.mdi-close-network:before { + content: "\F15B"; +} + +.mdi-close-octagon:before { + content: "\F15C"; +} + +.mdi-close-octagon-outline:before { + content: "\F15D"; +} + +.mdi-close-outline:before { + content: "\F6C8"; +} + +.mdi-closed-caption:before { + content: "\F15E"; +} + +.mdi-cloud:before { + content: "\F15F"; +} + +.mdi-cloud-braces:before { + content: "\F7B4"; +} + +.mdi-cloud-check:before { + content: "\F160"; +} + +.mdi-cloud-circle:before { + content: "\F161"; +} + +.mdi-cloud-download:before { + content: "\F162"; +} + +.mdi-cloud-off-outline:before { + content: "\F164"; +} + +.mdi-cloud-outline:before { + content: "\F163"; +} + +.mdi-cloud-print:before { + content: "\F165"; +} + +.mdi-cloud-print-outline:before { + content: "\F166"; +} + +.mdi-cloud-sync:before { + content: "\F63F"; +} + +.mdi-cloud-tags:before { + content: "\F7B5"; +} + +.mdi-cloud-upload:before { + content: "\F167"; +} + +.mdi-clover:before { + content: "\F815"; +} + +.mdi-code-array:before { + content: "\F168"; +} + +.mdi-code-braces:before { + content: "\F169"; +} + +.mdi-code-brackets:before { + content: "\F16A"; +} + +.mdi-code-equal:before { + content: "\F16B"; +} + +.mdi-code-greater-than:before { + content: "\F16C"; +} + +.mdi-code-greater-than-or-equal:before { + content: "\F16D"; +} + +.mdi-code-less-than:before { + content: "\F16E"; +} + +.mdi-code-less-than-or-equal:before { + content: "\F16F"; +} + +.mdi-code-not-equal:before { + content: "\F170"; +} + +.mdi-code-not-equal-variant:before { + content: "\F171"; +} + +.mdi-code-parentheses:before { + content: "\F172"; +} + +.mdi-code-string:before { + content: "\F173"; +} + +.mdi-code-tags:before { + content: "\F174"; +} + +.mdi-code-tags-check:before { + content: "\F693"; +} + +.mdi-codepen:before { + content: "\F175"; +} + +.mdi-coffee:before { + content: "\F176"; +} + +.mdi-coffee-outline:before { + content: "\F6C9"; +} + +.mdi-coffee-to-go:before { + content: "\F177"; +} + +.mdi-coin:before { + content: "\F178"; +} + +.mdi-coins:before { + content: "\F694"; +} + +.mdi-collage:before { + content: "\F640"; +} + +.mdi-color-helper:before { + content: "\F179"; +} + +.mdi-comment:before { + content: "\F17A"; +} + +.mdi-comment-account:before { + content: "\F17B"; +} + +.mdi-comment-account-outline:before { + content: "\F17C"; +} + +.mdi-comment-alert:before { + content: "\F17D"; +} + +.mdi-comment-alert-outline:before { + content: "\F17E"; +} + +.mdi-comment-check:before { + content: "\F17F"; +} + +.mdi-comment-check-outline:before { + content: "\F180"; +} + +.mdi-comment-multiple:before { + content: "\F85E"; +} + +.mdi-comment-multiple-outline:before { + content: "\F181"; +} + +.mdi-comment-outline:before { + content: "\F182"; +} + +.mdi-comment-plus-outline:before { + content: "\F183"; +} + +.mdi-comment-processing:before { + content: "\F184"; +} + +.mdi-comment-processing-outline:before { + content: "\F185"; +} + +.mdi-comment-question:before { + content: "\F816"; +} + +.mdi-comment-question-outline:before { + content: "\F186"; +} + +.mdi-comment-remove:before { + content: "\F5DE"; +} + +.mdi-comment-remove-outline:before { + content: "\F187"; +} + +.mdi-comment-text:before { + content: "\F188"; +} + +.mdi-comment-text-multiple:before { + content: "\F85F"; +} + +.mdi-comment-text-multiple-outline:before { + content: "\F860"; +} + +.mdi-comment-text-outline:before { + content: "\F189"; +} + +.mdi-compare:before { + content: "\F18A"; +} + +.mdi-compass:before { + content: "\F18B"; +} + +.mdi-compass-outline:before { + content: "\F18C"; +} + +.mdi-console:before { + content: "\F18D"; +} + +.mdi-console-line:before { + content: "\F7B6"; +} + +.mdi-console-network:before { + content: "\F8A8"; +} + +.mdi-contact-mail:before { + content: "\F18E"; +} + +.mdi-contacts:before { + content: "\F6CA"; +} + +.mdi-content-copy:before { + content: "\F18F"; +} + +.mdi-content-cut:before { + content: "\F190"; +} + +.mdi-content-duplicate:before { + content: "\F191"; +} + +.mdi-content-paste:before { + content: "\F192"; +} + +.mdi-content-save:before { + content: "\F193"; +} + +.mdi-content-save-all:before { + content: "\F194"; +} + +.mdi-content-save-outline:before { + content: "\F817"; +} + +.mdi-content-save-settings:before { + content: "\F61B"; +} + +.mdi-contrast:before { + content: "\F195"; +} + +.mdi-contrast-box:before { + content: "\F196"; +} + +.mdi-contrast-circle:before { + content: "\F197"; +} + +.mdi-cookie:before { + content: "\F198"; +} + +.mdi-copyright:before { + content: "\F5E6"; +} + +.mdi-corn:before { + content: "\F7B7"; +} + +.mdi-counter:before { + content: "\F199"; +} + +.mdi-cow:before { + content: "\F19A"; +} + +.mdi-crane:before { + content: "\F861"; +} + +.mdi-creation:before { + content: "\F1C9"; +} + +.mdi-credit-card:before { + content: "\F19B"; +} + +.mdi-credit-card-multiple:before { + content: "\F19C"; +} + +.mdi-credit-card-off:before { + content: "\F5E4"; +} + +.mdi-credit-card-plus:before { + content: "\F675"; +} + +.mdi-credit-card-scan:before { + content: "\F19D"; +} + +.mdi-crop:before { + content: "\F19E"; +} + +.mdi-crop-free:before { + content: "\F19F"; +} + +.mdi-crop-landscape:before { + content: "\F1A0"; +} + +.mdi-crop-portrait:before { + content: "\F1A1"; +} + +.mdi-crop-rotate:before { + content: "\F695"; +} + +.mdi-crop-square:before { + content: "\F1A2"; +} + +.mdi-crosshairs:before { + content: "\F1A3"; +} + +.mdi-crosshairs-gps:before { + content: "\F1A4"; +} + +.mdi-crown:before { + content: "\F1A5"; +} + +.mdi-cube:before { + content: "\F1A6"; +} + +.mdi-cube-outline:before { + content: "\F1A7"; +} + +.mdi-cube-send:before { + content: "\F1A8"; +} + +.mdi-cube-unfolded:before { + content: "\F1A9"; +} + +.mdi-cup:before { + content: "\F1AA"; +} + +.mdi-cup-off:before { + content: "\F5E5"; +} + +.mdi-cup-water:before { + content: "\F1AB"; +} + +.mdi-curling:before { + content: "\F862"; +} + +.mdi-currency-bdt:before { + content: "\F863"; +} + +.mdi-currency-btc:before { + content: "\F1AC"; +} + +.mdi-currency-chf:before { + content: "\F7B8"; +} + +.mdi-currency-cny:before { + content: "\F7B9"; +} + +.mdi-currency-eth:before { + content: "\F7BA"; +} + +.mdi-currency-eur:before { + content: "\F1AD"; +} + +.mdi-currency-gbp:before { + content: "\F1AE"; +} + +.mdi-currency-inr:before { + content: "\F1AF"; +} + +.mdi-currency-jpy:before { + content: "\F7BB"; +} + +.mdi-currency-krw:before { + content: "\F7BC"; +} + +.mdi-currency-kzt:before { + content: "\F864"; +} + +.mdi-currency-ngn:before { + content: "\F1B0"; +} + +.mdi-currency-rub:before { + content: "\F1B1"; +} + +.mdi-currency-sign:before { + content: "\F7BD"; +} + +.mdi-currency-try:before { + content: "\F1B2"; +} + +.mdi-currency-twd:before { + content: "\F7BE"; +} + +.mdi-currency-usd:before { + content: "\F1B3"; +} + +.mdi-currency-usd-off:before { + content: "\F679"; +} + +.mdi-cursor-default:before { + content: "\F1B4"; +} + +.mdi-cursor-default-outline:before { + content: "\F1B5"; +} + +.mdi-cursor-move:before { + content: "\F1B6"; +} + +.mdi-cursor-pointer:before { + content: "\F1B7"; +} + +.mdi-cursor-text:before { + content: "\F5E7"; +} + +.mdi-database:before { + content: "\F1B8"; +} + +.mdi-database-minus:before { + content: "\F1B9"; +} + +.mdi-database-plus:before { + content: "\F1BA"; +} + +.mdi-database-search:before { + content: "\F865"; +} + +.mdi-debug-step-into:before { + content: "\F1BB"; +} + +.mdi-debug-step-out:before { + content: "\F1BC"; +} + +.mdi-debug-step-over:before { + content: "\F1BD"; +} + +.mdi-decagram:before { + content: "\F76B"; +} + +.mdi-decagram-outline:before { + content: "\F76C"; +} + +.mdi-decimal-decrease:before { + content: "\F1BE"; +} + +.mdi-decimal-increase:before { + content: "\F1BF"; +} + +.mdi-delete:before { + content: "\F1C0"; +} + +.mdi-delete-circle:before { + content: "\F682"; +} + +.mdi-delete-empty:before { + content: "\F6CB"; +} + +.mdi-delete-forever:before { + content: "\F5E8"; +} + +.mdi-delete-restore:before { + content: "\F818"; +} + +.mdi-delete-sweep:before { + content: "\F5E9"; +} + +.mdi-delete-variant:before { + content: "\F1C1"; +} + +.mdi-delta:before { + content: "\F1C2"; +} + +.mdi-deskphone:before { + content: "\F1C3"; +} + +.mdi-desktop-classic:before { + content: "\F7BF"; +} + +.mdi-desktop-mac:before { + content: "\F1C4"; +} + +.mdi-desktop-tower:before { + content: "\F1C5"; +} + +.mdi-details:before { + content: "\F1C6"; +} + +.mdi-developer-board:before { + content: "\F696"; +} + +.mdi-deviantart:before { + content: "\F1C7"; +} + +.mdi-dialpad:before { + content: "\F61C"; +} + +.mdi-diamond:before { + content: "\F1C8"; +} + +.mdi-dice-1:before { + content: "\F1CA"; +} + +.mdi-dice-2:before { + content: "\F1CB"; +} + +.mdi-dice-3:before { + content: "\F1CC"; +} + +.mdi-dice-4:before { + content: "\F1CD"; +} + +.mdi-dice-5:before { + content: "\F1CE"; +} + +.mdi-dice-6:before { + content: "\F1CF"; +} + +.mdi-dice-d10:before { + content: "\F76E"; +} + +.mdi-dice-d12:before { + content: "\F866"; +} + +.mdi-dice-d20:before { + content: "\F5EA"; +} + +.mdi-dice-d4:before { + content: "\F5EB"; +} + +.mdi-dice-d6:before { + content: "\F5EC"; +} + +.mdi-dice-d8:before { + content: "\F5ED"; +} + +.mdi-dice-multiple:before { + content: "\F76D"; +} + +.mdi-dictionary:before { + content: "\F61D"; +} + +.mdi-dip-switch:before { + content: "\F7C0"; +} + +.mdi-directions:before { + content: "\F1D0"; +} + +.mdi-directions-fork:before { + content: "\F641"; +} + +.mdi-discord:before { + content: "\F66F"; +} + +.mdi-disk:before { + content: "\F5EE"; +} + +.mdi-disk-alert:before { + content: "\F1D1"; +} + +.mdi-disqus:before { + content: "\F1D2"; +} + +.mdi-disqus-outline:before { + content: "\F1D3"; +} + +.mdi-division:before { + content: "\F1D4"; +} + +.mdi-division-box:before { + content: "\F1D5"; +} + +.mdi-dna:before { + content: "\F683"; +} + +.mdi-dns:before { + content: "\F1D6"; +} + +.mdi-do-not-disturb:before { + content: "\F697"; +} + +.mdi-do-not-disturb-off:before { + content: "\F698"; +} + +.mdi-docker:before { + content: "\F867"; +} + +.mdi-dolby:before { + content: "\F6B2"; +} + +.mdi-domain:before { + content: "\F1D7"; +} + +.mdi-donkey:before { + content: "\F7C1"; +} + +.mdi-door:before { + content: "\F819"; +} + +.mdi-door-closed:before { + content: "\F81A"; +} + +.mdi-door-open:before { + content: "\F81B"; +} + +.mdi-doorbell-video:before { + content: "\F868"; +} + +.mdi-dots-horizontal:before { + content: "\F1D8"; +} + +.mdi-dots-horizontal-circle:before { + content: "\F7C2"; +} + +.mdi-dots-vertical:before { + content: "\F1D9"; +} + +.mdi-dots-vertical-circle:before { + content: "\F7C3"; +} + +.mdi-douban:before { + content: "\F699"; +} + +.mdi-download:before { + content: "\F1DA"; +} + +.mdi-download-network:before { + content: "\F6F3"; +} + +.mdi-drag:before { + content: "\F1DB"; +} + +.mdi-drag-horizontal:before { + content: "\F1DC"; +} + +.mdi-drag-vertical:before { + content: "\F1DD"; +} + +.mdi-drawing:before { + content: "\F1DE"; +} + +.mdi-drawing-box:before { + content: "\F1DF"; +} + +.mdi-dribbble:before { + content: "\F1E0"; +} + +.mdi-dribbble-box:before { + content: "\F1E1"; +} + +.mdi-drone:before { + content: "\F1E2"; +} + +.mdi-dropbox:before { + content: "\F1E3"; +} + +.mdi-drupal:before { + content: "\F1E4"; +} + +.mdi-duck:before { + content: "\F1E5"; +} + +.mdi-dumbbell:before { + content: "\F1E6"; +} + +.mdi-ear-hearing:before { + content: "\F7C4"; +} + +.mdi-earth:before { + content: "\F1E7"; +} + +.mdi-earth-box:before { + content: "\F6CC"; +} + +.mdi-earth-box-off:before { + content: "\F6CD"; +} + +.mdi-earth-off:before { + content: "\F1E8"; +} + +.mdi-edge:before { + content: "\F1E9"; +} + +.mdi-eject:before { + content: "\F1EA"; +} + +.mdi-elephant:before { + content: "\F7C5"; +} + +.mdi-elevation-decline:before { + content: "\F1EB"; +} + +.mdi-elevation-rise:before { + content: "\F1EC"; +} + +.mdi-elevator:before { + content: "\F1ED"; +} + +.mdi-email:before { + content: "\F1EE"; +} + +.mdi-email-alert:before { + content: "\F6CE"; +} + +.mdi-email-open:before { + content: "\F1EF"; +} + +.mdi-email-open-outline:before { + content: "\F5EF"; +} + +.mdi-email-outline:before { + content: "\F1F0"; +} + +.mdi-email-secure:before { + content: "\F1F1"; +} + +.mdi-email-variant:before { + content: "\F5F0"; +} + +.mdi-emby:before { + content: "\F6B3"; +} + +.mdi-emoticon:before { + content: "\F1F2"; +} + +.mdi-emoticon-cool:before { + content: "\F1F3"; +} + +.mdi-emoticon-dead:before { + content: "\F69A"; +} + +.mdi-emoticon-devil:before { + content: "\F1F4"; +} + +.mdi-emoticon-excited:before { + content: "\F69B"; +} + +.mdi-emoticon-happy:before { + content: "\F1F5"; +} + +.mdi-emoticon-neutral:before { + content: "\F1F6"; +} + +.mdi-emoticon-poop:before { + content: "\F1F7"; +} + +.mdi-emoticon-sad:before { + content: "\F1F8"; +} + +.mdi-emoticon-tongue:before { + content: "\F1F9"; +} + +.mdi-engine:before { + content: "\F1FA"; +} + +.mdi-engine-outline:before { + content: "\F1FB"; +} + +.mdi-equal:before { + content: "\F1FC"; +} + +.mdi-equal-box:before { + content: "\F1FD"; +} + +.mdi-eraser:before { + content: "\F1FE"; +} + +.mdi-eraser-variant:before { + content: "\F642"; +} + +.mdi-escalator:before { + content: "\F1FF"; +} + +.mdi-ethereum:before { + content: "\F869"; +} + +.mdi-ethernet:before { + content: "\F200"; +} + +.mdi-ethernet-cable:before { + content: "\F201"; +} + +.mdi-ethernet-cable-off:before { + content: "\F202"; +} + +.mdi-etsy:before { + content: "\F203"; +} + +.mdi-ev-station:before { + content: "\F5F1"; +} + +.mdi-eventbrite:before { + content: "\F7C6"; +} + +.mdi-evernote:before { + content: "\F204"; +} + +.mdi-exclamation:before { + content: "\F205"; +} + +.mdi-exit-to-app:before { + content: "\F206"; +} + +.mdi-export:before { + content: "\F207"; +} + +.mdi-eye:before { + content: "\F208"; +} + +.mdi-eye-off:before { + content: "\F209"; +} + +.mdi-eye-off-outline:before { + content: "\F6D0"; +} + +.mdi-eye-outline:before { + content: "\F6CF"; +} + +.mdi-eye-plus:before { + content: "\F86A"; +} + +.mdi-eye-plus-outline:before { + content: "\F86B"; +} + +.mdi-eye-settings:before { + content: "\F86C"; +} + +.mdi-eye-settings-outline:before { + content: "\F86D"; +} + +.mdi-eyedropper:before { + content: "\F20A"; +} + +.mdi-eyedropper-variant:before { + content: "\F20B"; +} + +.mdi-face:before { + content: "\F643"; +} + +.mdi-face-profile:before { + content: "\F644"; +} + +.mdi-facebook:before { + content: "\F20C"; +} + +.mdi-facebook-box:before { + content: "\F20D"; +} + +.mdi-facebook-messenger:before { + content: "\F20E"; +} + +.mdi-factory:before { + content: "\F20F"; +} + +.mdi-fan:before { + content: "\F210"; +} + +.mdi-fan-off:before { + content: "\F81C"; +} + +.mdi-fast-forward:before { + content: "\F211"; +} + +.mdi-fast-forward-outline:before { + content: "\F6D1"; +} + +.mdi-fax:before { + content: "\F212"; +} + +.mdi-feather:before { + content: "\F6D2"; +} + +.mdi-ferry:before { + content: "\F213"; +} + +.mdi-file:before { + content: "\F214"; +} + +.mdi-file-account:before { + content: "\F73A"; +} + +.mdi-file-chart:before { + content: "\F215"; +} + +.mdi-file-check:before { + content: "\F216"; +} + +.mdi-file-cloud:before { + content: "\F217"; +} + +.mdi-file-compare:before { + content: "\F8A9"; +} + +.mdi-file-delimited:before { + content: "\F218"; +} + +.mdi-file-document:before { + content: "\F219"; +} + +.mdi-file-document-box:before { + content: "\F21A"; +} + +.mdi-file-excel:before { + content: "\F21B"; +} + +.mdi-file-excel-box:before { + content: "\F21C"; +} + +.mdi-file-export:before { + content: "\F21D"; +} + +.mdi-file-find:before { + content: "\F21E"; +} + +.mdi-file-hidden:before { + content: "\F613"; +} + +.mdi-file-image:before { + content: "\F21F"; +} + +.mdi-file-import:before { + content: "\F220"; +} + +.mdi-file-lock:before { + content: "\F221"; +} + +.mdi-file-multiple:before { + content: "\F222"; +} + +.mdi-file-music:before { + content: "\F223"; +} + +.mdi-file-outline:before { + content: "\F224"; +} + +.mdi-file-pdf:before { + content: "\F225"; +} + +.mdi-file-pdf-box:before { + content: "\F226"; +} + +.mdi-file-percent:before { + content: "\F81D"; +} + +.mdi-file-plus:before { + content: "\F751"; +} + +.mdi-file-powerpoint:before { + content: "\F227"; +} + +.mdi-file-powerpoint-box:before { + content: "\F228"; +} + +.mdi-file-presentation-box:before { + content: "\F229"; +} + +.mdi-file-question:before { + content: "\F86E"; +} + +.mdi-file-restore:before { + content: "\F670"; +} + +.mdi-file-send:before { + content: "\F22A"; +} + +.mdi-file-tree:before { + content: "\F645"; +} + +.mdi-file-video:before { + content: "\F22B"; +} + +.mdi-file-word:before { + content: "\F22C"; +} + +.mdi-file-word-box:before { + content: "\F22D"; +} + +.mdi-file-xml:before { + content: "\F22E"; +} + +.mdi-film:before { + content: "\F22F"; +} + +.mdi-filmstrip:before { + content: "\F230"; +} + +.mdi-filmstrip-off:before { + content: "\F231"; +} + +.mdi-filter:before { + content: "\F232"; +} + +.mdi-filter-outline:before { + content: "\F233"; +} + +.mdi-filter-remove:before { + content: "\F234"; +} + +.mdi-filter-remove-outline:before { + content: "\F235"; +} + +.mdi-filter-variant:before { + content: "\F236"; +} + +.mdi-finance:before { + content: "\F81E"; +} + +.mdi-find-replace:before { + content: "\F6D3"; +} + +.mdi-fingerprint:before { + content: "\F237"; +} + +.mdi-fire:before { + content: "\F238"; +} + +.mdi-fire-truck:before { + content: "\F8AA"; +} + +.mdi-firefox:before { + content: "\F239"; +} + +.mdi-fish:before { + content: "\F23A"; +} + +.mdi-flag:before { + content: "\F23B"; +} + +.mdi-flag-checkered:before { + content: "\F23C"; +} + +.mdi-flag-outline:before { + content: "\F23D"; +} + +.mdi-flag-triangle:before { + content: "\F23F"; +} + +.mdi-flag-variant:before { + content: "\F240"; +} + +.mdi-flag-variant-outline:before { + content: "\F23E"; +} + +.mdi-flash:before { + content: "\F241"; +} + +.mdi-flash-auto:before { + content: "\F242"; +} + +.mdi-flash-circle:before { + content: "\F81F"; +} + +.mdi-flash-off:before { + content: "\F243"; +} + +.mdi-flash-outline:before { + content: "\F6D4"; +} + +.mdi-flash-red-eye:before { + content: "\F67A"; +} + +.mdi-flashlight:before { + content: "\F244"; +} + +.mdi-flashlight-off:before { + content: "\F245"; +} + +.mdi-flask:before { + content: "\F093"; +} + +.mdi-flask-empty:before { + content: "\F094"; +} + +.mdi-flask-empty-outline:before { + content: "\F095"; +} + +.mdi-flask-outline:before { + content: "\F096"; +} + +.mdi-flattr:before { + content: "\F246"; +} + +.mdi-flip-to-back:before { + content: "\F247"; +} + +.mdi-flip-to-front:before { + content: "\F248"; +} + +.mdi-floor-plan:before { + content: "\F820"; +} + +.mdi-floppy:before { + content: "\F249"; +} + +.mdi-flower:before { + content: "\F24A"; +} + +.mdi-folder:before { + content: "\F24B"; +} + +.mdi-folder-account:before { + content: "\F24C"; +} + +.mdi-folder-download:before { + content: "\F24D"; +} + +.mdi-folder-google-drive:before { + content: "\F24E"; +} + +.mdi-folder-image:before { + content: "\F24F"; +} + +.mdi-folder-key:before { + content: "\F8AB"; +} + +.mdi-folder-key-network:before { + content: "\F8AC"; +} + +.mdi-folder-lock:before { + content: "\F250"; +} + +.mdi-folder-lock-open:before { + content: "\F251"; +} + +.mdi-folder-move:before { + content: "\F252"; +} + +.mdi-folder-multiple:before { + content: "\F253"; +} + +.mdi-folder-multiple-image:before { + content: "\F254"; +} + +.mdi-folder-multiple-outline:before { + content: "\F255"; +} + +.mdi-folder-network:before { + content: "\F86F"; +} + +.mdi-folder-open:before { + content: "\F76F"; +} + +.mdi-folder-outline:before { + content: "\F256"; +} + +.mdi-folder-plus:before { + content: "\F257"; +} + +.mdi-folder-remove:before { + content: "\F258"; +} + +.mdi-folder-star:before { + content: "\F69C"; +} + +.mdi-folder-upload:before { + content: "\F259"; +} + +.mdi-font-awesome:before { + content: "\F03A"; +} + +.mdi-food:before { + content: "\F25A"; +} + +.mdi-food-apple:before { + content: "\F25B"; +} + +.mdi-food-croissant:before { + content: "\F7C7"; +} + +.mdi-food-fork-drink:before { + content: "\F5F2"; +} + +.mdi-food-off:before { + content: "\F5F3"; +} + +.mdi-food-variant:before { + content: "\F25C"; +} + +.mdi-football:before { + content: "\F25D"; +} + +.mdi-football-australian:before { + content: "\F25E"; +} + +.mdi-football-helmet:before { + content: "\F25F"; +} + +.mdi-forklift:before { + content: "\F7C8"; +} + +.mdi-format-align-bottom:before { + content: "\F752"; +} + +.mdi-format-align-center:before { + content: "\F260"; +} + +.mdi-format-align-justify:before { + content: "\F261"; +} + +.mdi-format-align-left:before { + content: "\F262"; +} + +.mdi-format-align-middle:before { + content: "\F753"; +} + +.mdi-format-align-right:before { + content: "\F263"; +} + +.mdi-format-align-top:before { + content: "\F754"; +} + +.mdi-format-annotation-plus:before { + content: "\F646"; +} + +.mdi-format-bold:before { + content: "\F264"; +} + +.mdi-format-clear:before { + content: "\F265"; +} + +.mdi-format-color-fill:before { + content: "\F266"; +} + +.mdi-format-color-text:before { + content: "\F69D"; +} + +.mdi-format-float-center:before { + content: "\F267"; +} + +.mdi-format-float-left:before { + content: "\F268"; +} + +.mdi-format-float-none:before { + content: "\F269"; +} + +.mdi-format-float-right:before { + content: "\F26A"; +} + +.mdi-format-font:before { + content: "\F6D5"; +} + +.mdi-format-header-1:before { + content: "\F26B"; +} + +.mdi-format-header-2:before { + content: "\F26C"; +} + +.mdi-format-header-3:before { + content: "\F26D"; +} + +.mdi-format-header-4:before { + content: "\F26E"; +} + +.mdi-format-header-5:before { + content: "\F26F"; +} + +.mdi-format-header-6:before { + content: "\F270"; +} + +.mdi-format-header-decrease:before { + content: "\F271"; +} + +.mdi-format-header-equal:before { + content: "\F272"; +} + +.mdi-format-header-increase:before { + content: "\F273"; +} + +.mdi-format-header-pound:before { + content: "\F274"; +} + +.mdi-format-horizontal-align-center:before { + content: "\F61E"; +} + +.mdi-format-horizontal-align-left:before { + content: "\F61F"; +} + +.mdi-format-horizontal-align-right:before { + content: "\F620"; +} + +.mdi-format-indent-decrease:before { + content: "\F275"; +} + +.mdi-format-indent-increase:before { + content: "\F276"; +} + +.mdi-format-italic:before { + content: "\F277"; +} + +.mdi-format-line-spacing:before { + content: "\F278"; +} + +.mdi-format-line-style:before { + content: "\F5C8"; +} + +.mdi-format-line-weight:before { + content: "\F5C9"; +} + +.mdi-format-list-bulleted:before { + content: "\F279"; +} + +.mdi-format-list-bulleted-type:before { + content: "\F27A"; +} + +.mdi-format-list-checks:before { + content: "\F755"; +} + +.mdi-format-list-numbers:before { + content: "\F27B"; +} + +.mdi-format-page-break:before { + content: "\F6D6"; +} + +.mdi-format-paint:before { + content: "\F27C"; +} + +.mdi-format-paragraph:before { + content: "\F27D"; +} + +.mdi-format-pilcrow:before { + content: "\F6D7"; +} + +.mdi-format-quote-close:before { + content: "\F27E"; +} + +.mdi-format-quote-open:before { + content: "\F756"; +} + +.mdi-format-rotate-90:before { + content: "\F6A9"; +} + +.mdi-format-section:before { + content: "\F69E"; +} + +.mdi-format-size:before { + content: "\F27F"; +} + +.mdi-format-strikethrough:before { + content: "\F280"; +} + +.mdi-format-strikethrough-variant:before { + content: "\F281"; +} + +.mdi-format-subscript:before { + content: "\F282"; +} + +.mdi-format-superscript:before { + content: "\F283"; +} + +.mdi-format-text:before { + content: "\F284"; +} + +.mdi-format-textdirection-l-to-r:before { + content: "\F285"; +} + +.mdi-format-textdirection-r-to-l:before { + content: "\F286"; +} + +.mdi-format-title:before { + content: "\F5F4"; +} + +.mdi-format-underline:before { + content: "\F287"; +} + +.mdi-format-vertical-align-bottom:before { + content: "\F621"; +} + +.mdi-format-vertical-align-center:before { + content: "\F622"; +} + +.mdi-format-vertical-align-top:before { + content: "\F623"; +} + +.mdi-format-wrap-inline:before { + content: "\F288"; +} + +.mdi-format-wrap-square:before { + content: "\F289"; +} + +.mdi-format-wrap-tight:before { + content: "\F28A"; +} + +.mdi-format-wrap-top-bottom:before { + content: "\F28B"; +} + +.mdi-forum:before { + content: "\F28C"; +} + +.mdi-forum-outline:before { + content: "\F821"; +} + +.mdi-forward:before { + content: "\F28D"; +} + +.mdi-foursquare:before { + content: "\F28E"; +} + +.mdi-fridge:before { + content: "\F28F"; +} + +.mdi-fridge-filled:before { + content: "\F290"; +} + +.mdi-fridge-filled-bottom:before { + content: "\F291"; +} + +.mdi-fridge-filled-top:before { + content: "\F292"; +} + +.mdi-fuel:before { + content: "\F7C9"; +} + +.mdi-fullscreen:before { + content: "\F293"; +} + +.mdi-fullscreen-exit:before { + content: "\F294"; +} + +.mdi-function:before { + content: "\F295"; +} + +.mdi-function-variant:before { + content: "\F870"; +} + +.mdi-gamepad:before { + content: "\F296"; +} + +.mdi-gamepad-variant:before { + content: "\F297"; +} + +.mdi-garage:before { + content: "\F6D8"; +} + +.mdi-garage-alert:before { + content: "\F871"; +} + +.mdi-garage-open:before { + content: "\F6D9"; +} + +.mdi-gas-cylinder:before { + content: "\F647"; +} + +.mdi-gas-station:before { + content: "\F298"; +} + +.mdi-gate:before { + content: "\F299"; +} + +.mdi-gauge:before { + content: "\F29A"; +} + +.mdi-gauge-empty:before { + content: "\F872"; +} + +.mdi-gauge-full:before { + content: "\F873"; +} + +.mdi-gauge-low:before { + content: "\F874"; +} + +.mdi-gavel:before { + content: "\F29B"; +} + +.mdi-gender-female:before { + content: "\F29C"; +} + +.mdi-gender-male:before { + content: "\F29D"; +} + +.mdi-gender-male-female:before { + content: "\F29E"; +} + +.mdi-gender-transgender:before { + content: "\F29F"; +} + +.mdi-gesture:before { + content: "\F7CA"; +} + +.mdi-gesture-double-tap:before { + content: "\F73B"; +} + +.mdi-gesture-swipe-down:before { + content: "\F73C"; +} + +.mdi-gesture-swipe-left:before { + content: "\F73D"; +} + +.mdi-gesture-swipe-right:before { + content: "\F73E"; +} + +.mdi-gesture-swipe-up:before { + content: "\F73F"; +} + +.mdi-gesture-tap:before { + content: "\F740"; +} + +.mdi-gesture-two-double-tap:before { + content: "\F741"; +} + +.mdi-gesture-two-tap:before { + content: "\F742"; +} + +.mdi-ghost:before { + content: "\F2A0"; +} + +.mdi-gift:before { + content: "\F2A1"; +} + +.mdi-git:before { + content: "\F2A2"; +} + +.mdi-github-box:before { + content: "\F2A3"; +} + +.mdi-github-circle:before { + content: "\F2A4"; +} + +.mdi-github-face:before { + content: "\F6DA"; +} + +.mdi-glass-cocktail:before { + content: "\F356"; +} + +.mdi-glass-flute:before { + content: "\F2A5"; +} + +.mdi-glass-mug:before { + content: "\F2A6"; +} + +.mdi-glass-stange:before { + content: "\F2A7"; +} + +.mdi-glass-tulip:before { + content: "\F2A8"; +} + +.mdi-glass-wine:before { + content: "\F875"; +} + +.mdi-glassdoor:before { + content: "\F2A9"; +} + +.mdi-glasses:before { + content: "\F2AA"; +} + +.mdi-gmail:before { + content: "\F2AB"; +} + +.mdi-gnome:before { + content: "\F2AC"; +} + +.mdi-golf:before { + content: "\F822"; +} + +.mdi-gondola:before { + content: "\F685"; +} + +.mdi-google:before { + content: "\F2AD"; +} + +.mdi-google-analytics:before { + content: "\F7CB"; +} + +.mdi-google-assistant:before { + content: "\F7CC"; +} + +.mdi-google-cardboard:before { + content: "\F2AE"; +} + +.mdi-google-chrome:before { + content: "\F2AF"; +} + +.mdi-google-circles:before { + content: "\F2B0"; +} + +.mdi-google-circles-communities:before { + content: "\F2B1"; +} + +.mdi-google-circles-extended:before { + content: "\F2B2"; +} + +.mdi-google-circles-group:before { + content: "\F2B3"; +} + +.mdi-google-controller:before { + content: "\F2B4"; +} + +.mdi-google-controller-off:before { + content: "\F2B5"; +} + +.mdi-google-drive:before { + content: "\F2B6"; +} + +.mdi-google-earth:before { + content: "\F2B7"; +} + +.mdi-google-glass:before { + content: "\F2B8"; +} + +.mdi-google-home:before { + content: "\F823"; +} + +.mdi-google-keep:before { + content: "\F6DB"; +} + +.mdi-google-maps:before { + content: "\F5F5"; +} + +.mdi-google-nearby:before { + content: "\F2B9"; +} + +.mdi-google-pages:before { + content: "\F2BA"; +} + +.mdi-google-photos:before { + content: "\F6DC"; +} + +.mdi-google-physical-web:before { + content: "\F2BB"; +} + +.mdi-google-play:before { + content: "\F2BC"; +} + +.mdi-google-plus:before { + content: "\F2BD"; +} + +.mdi-google-plus-box:before { + content: "\F2BE"; +} + +.mdi-google-translate:before { + content: "\F2BF"; +} + +.mdi-google-wallet:before { + content: "\F2C0"; +} + +.mdi-gpu:before { + content: "\F8AD"; +} + +.mdi-gradient:before { + content: "\F69F"; +} + +.mdi-graphql:before { + content: "\F876"; +} + +.mdi-grease-pencil:before { + content: "\F648"; +} + +.mdi-grid:before { + content: "\F2C1"; +} + +.mdi-grid-large:before { + content: "\F757"; +} + +.mdi-grid-off:before { + content: "\F2C2"; +} + +.mdi-group:before { + content: "\F2C3"; +} + +.mdi-guitar-acoustic:before { + content: "\F770"; +} + +.mdi-guitar-electric:before { + content: "\F2C4"; +} + +.mdi-guitar-pick:before { + content: "\F2C5"; +} + +.mdi-guitar-pick-outline:before { + content: "\F2C6"; +} + +.mdi-guy-fawkes-mask:before { + content: "\F824"; +} + +.mdi-hackernews:before { + content: "\F624"; +} + +.mdi-hamburger:before { + content: "\F684"; +} + +.mdi-hand-pointing-right:before { + content: "\F2C7"; +} + +.mdi-hanger:before { + content: "\F2C8"; +} + +.mdi-hangouts:before { + content: "\F2C9"; +} + +.mdi-harddisk:before { + content: "\F2CA"; +} + +.mdi-headphones:before { + content: "\F2CB"; +} + +.mdi-headphones-box:before { + content: "\F2CC"; +} + +.mdi-headphones-off:before { + content: "\F7CD"; +} + +.mdi-headphones-settings:before { + content: "\F2CD"; +} + +.mdi-headset:before { + content: "\F2CE"; +} + +.mdi-headset-dock:before { + content: "\F2CF"; +} + +.mdi-headset-off:before { + content: "\F2D0"; +} + +.mdi-heart:before { + content: "\F2D1"; +} + +.mdi-heart-box:before { + content: "\F2D2"; +} + +.mdi-heart-box-outline:before { + content: "\F2D3"; +} + +.mdi-heart-broken:before { + content: "\F2D4"; +} + +.mdi-heart-half:before { + content: "\F6DE"; +} + +.mdi-heart-half-full:before { + content: "\F6DD"; +} + +.mdi-heart-half-outline:before { + content: "\F6DF"; +} + +.mdi-heart-off:before { + content: "\F758"; +} + +.mdi-heart-outline:before { + content: "\F2D5"; +} + +.mdi-heart-pulse:before { + content: "\F5F6"; +} + +.mdi-help:before { + content: "\F2D6"; +} + +.mdi-help-box:before { + content: "\F78A"; +} + +.mdi-help-circle:before { + content: "\F2D7"; +} + +.mdi-help-circle-outline:before { + content: "\F625"; +} + +.mdi-help-network:before { + content: "\F6F4"; +} + +.mdi-hexagon:before { + content: "\F2D8"; +} + +.mdi-hexagon-multiple:before { + content: "\F6E0"; +} + +.mdi-hexagon-outline:before { + content: "\F2D9"; +} + +.mdi-high-definition:before { + content: "\F7CE"; +} + +.mdi-high-definition-box:before { + content: "\F877"; +} + +.mdi-highway:before { + content: "\F5F7"; +} + +.mdi-history:before { + content: "\F2DA"; +} + +.mdi-hockey-puck:before { + content: "\F878"; +} + +.mdi-hockey-sticks:before { + content: "\F879"; +} + +.mdi-hololens:before { + content: "\F2DB"; +} + +.mdi-home:before { + content: "\F2DC"; +} + +.mdi-home-account:before { + content: "\F825"; +} + +.mdi-home-alert:before { + content: "\F87A"; +} + +.mdi-home-assistant:before { + content: "\F7CF"; +} + +.mdi-home-automation:before { + content: "\F7D0"; +} + +.mdi-home-circle:before { + content: "\F7D1"; +} + +.mdi-home-currency-usd:before { + content: "\F8AE"; +} + +.mdi-home-heart:before { + content: "\F826"; +} + +.mdi-home-map-marker:before { + content: "\F5F8"; +} + +.mdi-home-modern:before { + content: "\F2DD"; +} + +.mdi-home-outline:before { + content: "\F6A0"; +} + +.mdi-home-variant:before { + content: "\F2DE"; +} + +.mdi-hook:before { + content: "\F6E1"; +} + +.mdi-hook-off:before { + content: "\F6E2"; +} + +.mdi-hops:before { + content: "\F2DF"; +} + +.mdi-hospital:before { + content: "\F2E0"; +} + +.mdi-hospital-building:before { + content: "\F2E1"; +} + +.mdi-hospital-marker:before { + content: "\F2E2"; +} + +.mdi-hot-tub:before { + content: "\F827"; +} + +.mdi-hotel:before { + content: "\F2E3"; +} + +.mdi-houzz:before { + content: "\F2E4"; +} + +.mdi-houzz-box:before { + content: "\F2E5"; +} + +.mdi-hulu:before { + content: "\F828"; +} + +.mdi-human:before { + content: "\F2E6"; +} + +.mdi-human-child:before { + content: "\F2E7"; +} + +.mdi-human-female:before { + content: "\F649"; +} + +.mdi-human-greeting:before { + content: "\F64A"; +} + +.mdi-human-handsdown:before { + content: "\F64B"; +} + +.mdi-human-handsup:before { + content: "\F64C"; +} + +.mdi-human-male:before { + content: "\F64D"; +} + +.mdi-human-male-female:before { + content: "\F2E8"; +} + +.mdi-human-pregnant:before { + content: "\F5CF"; +} + +.mdi-humble-bundle:before { + content: "\F743"; +} + +.mdi-ice-cream:before { + content: "\F829"; +} + +.mdi-image:before { + content: "\F2E9"; +} + +.mdi-image-album:before { + content: "\F2EA"; +} + +.mdi-image-area:before { + content: "\F2EB"; +} + +.mdi-image-area-close:before { + content: "\F2EC"; +} + +.mdi-image-broken:before { + content: "\F2ED"; +} + +.mdi-image-broken-variant:before { + content: "\F2EE"; +} + +.mdi-image-filter:before { + content: "\F2EF"; +} + +.mdi-image-filter-black-white:before { + content: "\F2F0"; +} + +.mdi-image-filter-center-focus:before { + content: "\F2F1"; +} + +.mdi-image-filter-center-focus-weak:before { + content: "\F2F2"; +} + +.mdi-image-filter-drama:before { + content: "\F2F3"; +} + +.mdi-image-filter-frames:before { + content: "\F2F4"; +} + +.mdi-image-filter-hdr:before { + content: "\F2F5"; +} + +.mdi-image-filter-none:before { + content: "\F2F6"; +} + +.mdi-image-filter-tilt-shift:before { + content: "\F2F7"; +} + +.mdi-image-filter-vintage:before { + content: "\F2F8"; +} + +.mdi-image-multiple:before { + content: "\F2F9"; +} + +.mdi-image-off:before { + content: "\F82A"; +} + +.mdi-image-plus:before { + content: "\F87B"; +} + +.mdi-import:before { + content: "\F2FA"; +} + +.mdi-inbox:before { + content: "\F686"; +} + +.mdi-inbox-arrow-down:before { + content: "\F2FB"; +} + +.mdi-inbox-arrow-up:before { + content: "\F3D1"; +} + +.mdi-inbox-multiple:before { + content: "\F8AF"; +} + +.mdi-incognito:before { + content: "\F5F9"; +} + +.mdi-infinity:before { + content: "\F6E3"; +} + +.mdi-information:before { + content: "\F2FC"; +} + +.mdi-information-outline:before { + content: "\F2FD"; +} + +.mdi-information-variant:before { + content: "\F64E"; +} + +.mdi-instagram:before { + content: "\F2FE"; +} + +.mdi-instapaper:before { + content: "\F2FF"; +} + +.mdi-internet-explorer:before { + content: "\F300"; +} + +.mdi-invert-colors:before { + content: "\F301"; +} + +.mdi-itunes:before { + content: "\F676"; +} + +.mdi-jeepney:before { + content: "\F302"; +} + +.mdi-jira:before { + content: "\F303"; +} + +.mdi-jquery:before { + content: "\F87C"; +} + +.mdi-jsfiddle:before { + content: "\F304"; +} + +.mdi-json:before { + content: "\F626"; +} + +.mdi-karate:before { + content: "\F82B"; +} + +.mdi-keg:before { + content: "\F305"; +} + +.mdi-kettle:before { + content: "\F5FA"; +} + +.mdi-key:before { + content: "\F306"; +} + +.mdi-key-change:before { + content: "\F307"; +} + +.mdi-key-minus:before { + content: "\F308"; +} + +.mdi-key-plus:before { + content: "\F309"; +} + +.mdi-key-remove:before { + content: "\F30A"; +} + +.mdi-key-variant:before { + content: "\F30B"; +} + +.mdi-keyboard:before { + content: "\F30C"; +} + +.mdi-keyboard-backspace:before { + content: "\F30D"; +} + +.mdi-keyboard-caps:before { + content: "\F30E"; +} + +.mdi-keyboard-close:before { + content: "\F30F"; +} + +.mdi-keyboard-off:before { + content: "\F310"; +} + +.mdi-keyboard-return:before { + content: "\F311"; +} + +.mdi-keyboard-tab:before { + content: "\F312"; +} + +.mdi-keyboard-variant:before { + content: "\F313"; +} + +.mdi-kickstarter:before { + content: "\F744"; +} + +.mdi-kodi:before { + content: "\F314"; +} + +.mdi-label:before { + content: "\F315"; +} + +.mdi-label-outline:before { + content: "\F316"; +} + +.mdi-ladybug:before { + content: "\F82C"; +} + +.mdi-lambda:before { + content: "\F627"; +} + +.mdi-lamp:before { + content: "\F6B4"; +} + +.mdi-lan:before { + content: "\F317"; +} + +.mdi-lan-connect:before { + content: "\F318"; +} + +.mdi-lan-disconnect:before { + content: "\F319"; +} + +.mdi-lan-pending:before { + content: "\F31A"; +} + +.mdi-language-c:before { + content: "\F671"; +} + +.mdi-language-cpp:before { + content: "\F672"; +} + +.mdi-language-csharp:before { + content: "\F31B"; +} + +.mdi-language-css3:before { + content: "\F31C"; +} + +.mdi-language-go:before { + content: "\F7D2"; +} + +.mdi-language-html5:before { + content: "\F31D"; +} + +.mdi-language-javascript:before { + content: "\F31E"; +} + +.mdi-language-lua:before { + content: "\F8B0"; +} + +.mdi-language-php:before { + content: "\F31F"; +} + +.mdi-language-python:before { + content: "\F320"; +} + +.mdi-language-python-text:before { + content: "\F321"; +} + +.mdi-language-r:before { + content: "\F7D3"; +} + +.mdi-language-swift:before { + content: "\F6E4"; +} + +.mdi-language-typescript:before { + content: "\F6E5"; +} + +.mdi-laptop:before { + content: "\F322"; +} + +.mdi-laptop-chromebook:before { + content: "\F323"; +} + +.mdi-laptop-mac:before { + content: "\F324"; +} + +.mdi-laptop-off:before { + content: "\F6E6"; +} + +.mdi-laptop-windows:before { + content: "\F325"; +} + +.mdi-lastfm:before { + content: "\F326"; +} + +.mdi-lastpass:before { + content: "\F446"; +} + +.mdi-launch:before { + content: "\F327"; +} + +.mdi-lava-lamp:before { + content: "\F7D4"; +} + +.mdi-layers:before { + content: "\F328"; +} + +.mdi-layers-off:before { + content: "\F329"; +} + +.mdi-lead-pencil:before { + content: "\F64F"; +} + +.mdi-leaf:before { + content: "\F32A"; +} + +.mdi-led-off:before { + content: "\F32B"; +} + +.mdi-led-on:before { + content: "\F32C"; +} + +.mdi-led-outline:before { + content: "\F32D"; +} + +.mdi-led-strip:before { + content: "\F7D5"; +} + +.mdi-led-variant-off:before { + content: "\F32E"; +} + +.mdi-led-variant-on:before { + content: "\F32F"; +} + +.mdi-led-variant-outline:before { + content: "\F330"; +} + +.mdi-library:before { + content: "\F331"; +} + +.mdi-library-books:before { + content: "\F332"; +} + +.mdi-library-music:before { + content: "\F333"; +} + +.mdi-library-plus:before { + content: "\F334"; +} + +.mdi-lifebuoy:before { + content: "\F87D"; +} + +.mdi-lightbulb:before { + content: "\F335"; +} + +.mdi-lightbulb-on:before { + content: "\F6E7"; +} + +.mdi-lightbulb-on-outline:before { + content: "\F6E8"; +} + +.mdi-lightbulb-outline:before { + content: "\F336"; +} + +.mdi-link:before { + content: "\F337"; +} + +.mdi-link-off:before { + content: "\F338"; +} + +.mdi-link-variant:before { + content: "\F339"; +} + +.mdi-link-variant-off:before { + content: "\F33A"; +} + +.mdi-linkedin:before { + content: "\F33B"; +} + +.mdi-linkedin-box:before { + content: "\F33C"; +} + +.mdi-linux:before { + content: "\F33D"; +} + +.mdi-loading:before { + content: "\F771"; +} + +.mdi-lock:before { + content: "\F33E"; +} + +.mdi-lock-open:before { + content: "\F33F"; +} + +.mdi-lock-open-outline:before { + content: "\F340"; +} + +.mdi-lock-outline:before { + content: "\F341"; +} + +.mdi-lock-pattern:before { + content: "\F6E9"; +} + +.mdi-lock-plus:before { + content: "\F5FB"; +} + +.mdi-lock-reset:before { + content: "\F772"; +} + +.mdi-lock-smart:before { + content: "\F8B1"; +} + +.mdi-locker:before { + content: "\F7D6"; +} + +.mdi-locker-multiple:before { + content: "\F7D7"; +} + +.mdi-login:before { + content: "\F342"; +} + +.mdi-login-variant:before { + content: "\F5FC"; +} + +.mdi-logout:before { + content: "\F343"; +} + +.mdi-logout-variant:before { + content: "\F5FD"; +} + +.mdi-looks:before { + content: "\F344"; +} + +.mdi-loop:before { + content: "\F6EA"; +} + +.mdi-loupe:before { + content: "\F345"; +} + +.mdi-lumx:before { + content: "\F346"; +} + +.mdi-magnet:before { + content: "\F347"; +} + +.mdi-magnet-on:before { + content: "\F348"; +} + +.mdi-magnify:before { + content: "\F349"; +} + +.mdi-magnify-minus:before { + content: "\F34A"; +} + +.mdi-magnify-minus-outline:before { + content: "\F6EB"; +} + +.mdi-magnify-plus:before { + content: "\F34B"; +} + +.mdi-magnify-plus-outline:before { + content: "\F6EC"; +} + +.mdi-mail-ru:before { + content: "\F34C"; +} + +.mdi-mailbox:before { + content: "\F6ED"; +} + +.mdi-map:before { + content: "\F34D"; +} + +.mdi-map-marker:before { + content: "\F34E"; +} + +.mdi-map-marker-circle:before { + content: "\F34F"; +} + +.mdi-map-marker-minus:before { + content: "\F650"; +} + +.mdi-map-marker-multiple:before { + content: "\F350"; +} + +.mdi-map-marker-off:before { + content: "\F351"; +} + +.mdi-map-marker-outline:before { + content: "\F7D8"; +} + +.mdi-map-marker-plus:before { + content: "\F651"; +} + +.mdi-map-marker-radius:before { + content: "\F352"; +} + +.mdi-margin:before { + content: "\F353"; +} + +.mdi-markdown:before { + content: "\F354"; +} + +.mdi-marker:before { + content: "\F652"; +} + +.mdi-marker-check:before { + content: "\F355"; +} + +.mdi-material-ui:before { + content: "\F357"; +} + +.mdi-math-compass:before { + content: "\F358"; +} + +.mdi-matrix:before { + content: "\F628"; +} + +.mdi-maxcdn:before { + content: "\F359"; +} + +.mdi-medical-bag:before { + content: "\F6EE"; +} + +.mdi-medium:before { + content: "\F35A"; +} + +.mdi-memory:before { + content: "\F35B"; +} + +.mdi-menu:before { + content: "\F35C"; +} + +.mdi-menu-down:before { + content: "\F35D"; +} + +.mdi-menu-down-outline:before { + content: "\F6B5"; +} + +.mdi-menu-left:before { + content: "\F35E"; +} + +.mdi-menu-right:before { + content: "\F35F"; +} + +.mdi-menu-up:before { + content: "\F360"; +} + +.mdi-menu-up-outline:before { + content: "\F6B6"; +} + +.mdi-message:before { + content: "\F361"; +} + +.mdi-message-alert:before { + content: "\F362"; +} + +.mdi-message-bulleted:before { + content: "\F6A1"; +} + +.mdi-message-bulleted-off:before { + content: "\F6A2"; +} + +.mdi-message-draw:before { + content: "\F363"; +} + +.mdi-message-image:before { + content: "\F364"; +} + +.mdi-message-outline:before { + content: "\F365"; +} + +.mdi-message-plus:before { + content: "\F653"; +} + +.mdi-message-processing:before { + content: "\F366"; +} + +.mdi-message-reply:before { + content: "\F367"; +} + +.mdi-message-reply-text:before { + content: "\F368"; +} + +.mdi-message-settings:before { + content: "\F6EF"; +} + +.mdi-message-settings-variant:before { + content: "\F6F0"; +} + +.mdi-message-text:before { + content: "\F369"; +} + +.mdi-message-text-outline:before { + content: "\F36A"; +} + +.mdi-message-video:before { + content: "\F36B"; +} + +.mdi-meteor:before { + content: "\F629"; +} + +.mdi-metronome:before { + content: "\F7D9"; +} + +.mdi-metronome-tick:before { + content: "\F7DA"; +} + +.mdi-micro-sd:before { + content: "\F7DB"; +} + +.mdi-microphone:before { + content: "\F36C"; +} + +.mdi-microphone-minus:before { + content: "\F8B2"; +} + +.mdi-microphone-off:before { + content: "\F36D"; +} + +.mdi-microphone-outline:before { + content: "\F36E"; +} + +.mdi-microphone-plus:before { + content: "\F8B3"; +} + +.mdi-microphone-settings:before { + content: "\F36F"; +} + +.mdi-microphone-variant:before { + content: "\F370"; +} + +.mdi-microphone-variant-off:before { + content: "\F371"; +} + +.mdi-microscope:before { + content: "\F654"; +} + +.mdi-microsoft:before { + content: "\F372"; +} + +.mdi-minecraft:before { + content: "\F373"; +} + +.mdi-minus:before { + content: "\F374"; +} + +.mdi-minus-box:before { + content: "\F375"; +} + +.mdi-minus-box-outline:before { + content: "\F6F1"; +} + +.mdi-minus-circle:before { + content: "\F376"; +} + +.mdi-minus-circle-outline:before { + content: "\F377"; +} + +.mdi-minus-network:before { + content: "\F378"; +} + +.mdi-mixcloud:before { + content: "\F62A"; +} + +.mdi-mixed-reality:before { + content: "\F87E"; +} + +.mdi-mixer:before { + content: "\F7DC"; +} + +.mdi-monitor:before { + content: "\F379"; +} + +.mdi-monitor-multiple:before { + content: "\F37A"; +} + +.mdi-more:before { + content: "\F37B"; +} + +.mdi-motorbike:before { + content: "\F37C"; +} + +.mdi-mouse:before { + content: "\F37D"; +} + +.mdi-mouse-off:before { + content: "\F37E"; +} + +.mdi-mouse-variant:before { + content: "\F37F"; +} + +.mdi-mouse-variant-off:before { + content: "\F380"; +} + +.mdi-move-resize:before { + content: "\F655"; +} + +.mdi-move-resize-variant:before { + content: "\F656"; +} + +.mdi-movie:before { + content: "\F381"; +} + +.mdi-movie-roll:before { + content: "\F7DD"; +} + +.mdi-multiplication:before { + content: "\F382"; +} + +.mdi-multiplication-box:before { + content: "\F383"; +} + +.mdi-mushroom:before { + content: "\F7DE"; +} + +.mdi-mushroom-outline:before { + content: "\F7DF"; +} + +.mdi-music:before { + content: "\F759"; +} + +.mdi-music-box:before { + content: "\F384"; +} + +.mdi-music-box-outline:before { + content: "\F385"; +} + +.mdi-music-circle:before { + content: "\F386"; +} + +.mdi-music-note:before { + content: "\F387"; +} + +.mdi-music-note-bluetooth:before { + content: "\F5FE"; +} + +.mdi-music-note-bluetooth-off:before { + content: "\F5FF"; +} + +.mdi-music-note-eighth:before { + content: "\F388"; +} + +.mdi-music-note-half:before { + content: "\F389"; +} + +.mdi-music-note-off:before { + content: "\F38A"; +} + +.mdi-music-note-quarter:before { + content: "\F38B"; +} + +.mdi-music-note-sixteenth:before { + content: "\F38C"; +} + +.mdi-music-note-whole:before { + content: "\F38D"; +} + +.mdi-music-off:before { + content: "\F75A"; +} + +.mdi-nativescript:before { + content: "\F87F"; +} + +.mdi-nature:before { + content: "\F38E"; +} + +.mdi-nature-people:before { + content: "\F38F"; +} + +.mdi-navigation:before { + content: "\F390"; +} + +.mdi-near-me:before { + content: "\F5CD"; +} + +.mdi-needle:before { + content: "\F391"; +} + +.mdi-nest-protect:before { + content: "\F392"; +} + +.mdi-nest-thermostat:before { + content: "\F393"; +} + +.mdi-netflix:before { + content: "\F745"; +} + +.mdi-network:before { + content: "\F6F2"; +} + +.mdi-new-box:before { + content: "\F394"; +} + +.mdi-newspaper:before { + content: "\F395"; +} + +.mdi-nfc:before { + content: "\F396"; +} + +.mdi-nfc-tap:before { + content: "\F397"; +} + +.mdi-nfc-variant:before { + content: "\F398"; +} + +.mdi-ninja:before { + content: "\F773"; +} + +.mdi-nintendo-switch:before { + content: "\F7E0"; +} + +.mdi-nodejs:before { + content: "\F399"; +} + +.mdi-note:before { + content: "\F39A"; +} + +.mdi-note-multiple:before { + content: "\F6B7"; +} + +.mdi-note-multiple-outline:before { + content: "\F6B8"; +} + +.mdi-note-outline:before { + content: "\F39B"; +} + +.mdi-note-plus:before { + content: "\F39C"; +} + +.mdi-note-plus-outline:before { + content: "\F39D"; +} + +.mdi-note-text:before { + content: "\F39E"; +} + +.mdi-notebook:before { + content: "\F82D"; +} + +.mdi-notification-clear-all:before { + content: "\F39F"; +} + +.mdi-npm:before { + content: "\F6F6"; +} + +.mdi-nuke:before { + content: "\F6A3"; +} + +.mdi-null:before { + content: "\F7E1"; +} + +.mdi-numeric:before { + content: "\F3A0"; +} + +.mdi-numeric-0-box:before { + content: "\F3A1"; +} + +.mdi-numeric-0-box-multiple-outline:before { + content: "\F3A2"; +} + +.mdi-numeric-0-box-outline:before { + content: "\F3A3"; +} + +.mdi-numeric-1-box:before { + content: "\F3A4"; +} + +.mdi-numeric-1-box-multiple-outline:before { + content: "\F3A5"; +} + +.mdi-numeric-1-box-outline:before { + content: "\F3A6"; +} + +.mdi-numeric-2-box:before { + content: "\F3A7"; +} + +.mdi-numeric-2-box-multiple-outline:before { + content: "\F3A8"; +} + +.mdi-numeric-2-box-outline:before { + content: "\F3A9"; +} + +.mdi-numeric-3-box:before { + content: "\F3AA"; +} + +.mdi-numeric-3-box-multiple-outline:before { + content: "\F3AB"; +} + +.mdi-numeric-3-box-outline:before { + content: "\F3AC"; +} + +.mdi-numeric-4-box:before { + content: "\F3AD"; +} + +.mdi-numeric-4-box-multiple-outline:before { + content: "\F3AE"; +} + +.mdi-numeric-4-box-outline:before { + content: "\F3AF"; +} + +.mdi-numeric-5-box:before { + content: "\F3B0"; +} + +.mdi-numeric-5-box-multiple-outline:before { + content: "\F3B1"; +} + +.mdi-numeric-5-box-outline:before { + content: "\F3B2"; +} + +.mdi-numeric-6-box:before { + content: "\F3B3"; +} + +.mdi-numeric-6-box-multiple-outline:before { + content: "\F3B4"; +} + +.mdi-numeric-6-box-outline:before { + content: "\F3B5"; +} + +.mdi-numeric-7-box:before { + content: "\F3B6"; +} + +.mdi-numeric-7-box-multiple-outline:before { + content: "\F3B7"; +} + +.mdi-numeric-7-box-outline:before { + content: "\F3B8"; +} + +.mdi-numeric-8-box:before { + content: "\F3B9"; +} + +.mdi-numeric-8-box-multiple-outline:before { + content: "\F3BA"; +} + +.mdi-numeric-8-box-outline:before { + content: "\F3BB"; +} + +.mdi-numeric-9-box:before { + content: "\F3BC"; +} + +.mdi-numeric-9-box-multiple-outline:before { + content: "\F3BD"; +} + +.mdi-numeric-9-box-outline:before { + content: "\F3BE"; +} + +.mdi-numeric-9-plus-box:before { + content: "\F3BF"; +} + +.mdi-numeric-9-plus-box-multiple-outline:before { + content: "\F3C0"; +} + +.mdi-numeric-9-plus-box-outline:before { + content: "\F3C1"; +} + +.mdi-nut:before { + content: "\F6F7"; +} + +.mdi-nutrition:before { + content: "\F3C2"; +} + +.mdi-oar:before { + content: "\F67B"; +} + +.mdi-octagon:before { + content: "\F3C3"; +} + +.mdi-octagon-outline:before { + content: "\F3C4"; +} + +.mdi-octagram:before { + content: "\F6F8"; +} + +.mdi-octagram-outline:before { + content: "\F774"; +} + +.mdi-odnoklassniki:before { + content: "\F3C5"; +} + +.mdi-office:before { + content: "\F3C6"; +} + +.mdi-oil:before { + content: "\F3C7"; +} + +.mdi-oil-temperature:before { + content: "\F3C8"; +} + +.mdi-omega:before { + content: "\F3C9"; +} + +.mdi-onedrive:before { + content: "\F3CA"; +} + +.mdi-onenote:before { + content: "\F746"; +} + +.mdi-onepassword:before { + content: "\F880"; +} + +.mdi-opacity:before { + content: "\F5CC"; +} + +.mdi-open-in-app:before { + content: "\F3CB"; +} + +.mdi-open-in-new:before { + content: "\F3CC"; +} + +.mdi-openid:before { + content: "\F3CD"; +} + +.mdi-opera:before { + content: "\F3CE"; +} + +.mdi-orbit:before { + content: "\F018"; +} + +.mdi-ornament:before { + content: "\F3CF"; +} + +.mdi-ornament-variant:before { + content: "\F3D0"; +} + +.mdi-owl:before { + content: "\F3D2"; +} + +.mdi-package:before { + content: "\F3D3"; +} + +.mdi-package-down:before { + content: "\F3D4"; +} + +.mdi-package-up:before { + content: "\F3D5"; +} + +.mdi-package-variant:before { + content: "\F3D6"; +} + +.mdi-package-variant-closed:before { + content: "\F3D7"; +} + +.mdi-page-first:before { + content: "\F600"; +} + +.mdi-page-last:before { + content: "\F601"; +} + +.mdi-page-layout-body:before { + content: "\F6F9"; +} + +.mdi-page-layout-footer:before { + content: "\F6FA"; +} + +.mdi-page-layout-header:before { + content: "\F6FB"; +} + +.mdi-page-layout-sidebar-left:before { + content: "\F6FC"; +} + +.mdi-page-layout-sidebar-right:before { + content: "\F6FD"; +} + +.mdi-palette:before { + content: "\F3D8"; +} + +.mdi-palette-advanced:before { + content: "\F3D9"; +} + +.mdi-palette-swatch:before { + content: "\F8B4"; +} + +.mdi-panda:before { + content: "\F3DA"; +} + +.mdi-pandora:before { + content: "\F3DB"; +} + +.mdi-panorama:before { + content: "\F3DC"; +} + +.mdi-panorama-fisheye:before { + content: "\F3DD"; +} + +.mdi-panorama-horizontal:before { + content: "\F3DE"; +} + +.mdi-panorama-vertical:before { + content: "\F3DF"; +} + +.mdi-panorama-wide-angle:before { + content: "\F3E0"; +} + +.mdi-paper-cut-vertical:before { + content: "\F3E1"; +} + +.mdi-paperclip:before { + content: "\F3E2"; +} + +.mdi-parking:before { + content: "\F3E3"; +} + +.mdi-passport:before { + content: "\F7E2"; +} + +.mdi-patreon:before { + content: "\F881"; +} + +.mdi-pause:before { + content: "\F3E4"; +} + +.mdi-pause-circle:before { + content: "\F3E5"; +} + +.mdi-pause-circle-outline:before { + content: "\F3E6"; +} + +.mdi-pause-octagon:before { + content: "\F3E7"; +} + +.mdi-pause-octagon-outline:before { + content: "\F3E8"; +} + +.mdi-paw:before { + content: "\F3E9"; +} + +.mdi-paw-off:before { + content: "\F657"; +} + +.mdi-paypal:before { + content: "\F882"; +} + +.mdi-peace:before { + content: "\F883"; +} + +.mdi-pen:before { + content: "\F3EA"; +} + +.mdi-pencil:before { + content: "\F3EB"; +} + +.mdi-pencil-box:before { + content: "\F3EC"; +} + +.mdi-pencil-box-outline:before { + content: "\F3ED"; +} + +.mdi-pencil-circle:before { + content: "\F6FE"; +} + +.mdi-pencil-circle-outline:before { + content: "\F775"; +} + +.mdi-pencil-lock:before { + content: "\F3EE"; +} + +.mdi-pencil-off:before { + content: "\F3EF"; +} + +.mdi-pentagon:before { + content: "\F6FF"; +} + +.mdi-pentagon-outline:before { + content: "\F700"; +} + +.mdi-percent:before { + content: "\F3F0"; +} + +.mdi-periodic-table:before { + content: "\F8B5"; +} + +.mdi-periodic-table-co2:before { + content: "\F7E3"; +} + +.mdi-periscope:before { + content: "\F747"; +} + +.mdi-pharmacy:before { + content: "\F3F1"; +} + +.mdi-phone:before { + content: "\F3F2"; +} + +.mdi-phone-bluetooth:before { + content: "\F3F3"; +} + +.mdi-phone-classic:before { + content: "\F602"; +} + +.mdi-phone-forward:before { + content: "\F3F4"; +} + +.mdi-phone-hangup:before { + content: "\F3F5"; +} + +.mdi-phone-in-talk:before { + content: "\F3F6"; +} + +.mdi-phone-incoming:before { + content: "\F3F7"; +} + +.mdi-phone-locked:before { + content: "\F3F8"; +} + +.mdi-phone-log:before { + content: "\F3F9"; +} + +.mdi-phone-minus:before { + content: "\F658"; +} + +.mdi-phone-missed:before { + content: "\F3FA"; +} + +.mdi-phone-outgoing:before { + content: "\F3FB"; +} + +.mdi-phone-paused:before { + content: "\F3FC"; +} + +.mdi-phone-plus:before { + content: "\F659"; +} + +.mdi-phone-return:before { + content: "\F82E"; +} + +.mdi-phone-rotate-landscape:before { + content: "\F884"; +} + +.mdi-phone-rotate-portrait:before { + content: "\F885"; +} + +.mdi-phone-settings:before { + content: "\F3FD"; +} + +.mdi-phone-voip:before { + content: "\F3FE"; +} + +.mdi-pi:before { + content: "\F3FF"; +} + +.mdi-pi-box:before { + content: "\F400"; +} + +.mdi-piano:before { + content: "\F67C"; +} + +.mdi-pickaxe:before { + content: "\F8B6"; +} + +.mdi-pier:before { + content: "\F886"; +} + +.mdi-pier-crane:before { + content: "\F887"; +} + +.mdi-pig:before { + content: "\F401"; +} + +.mdi-pill:before { + content: "\F402"; +} + +.mdi-pillar:before { + content: "\F701"; +} + +.mdi-pin:before { + content: "\F403"; +} + +.mdi-pin-off:before { + content: "\F404"; +} + +.mdi-pine-tree:before { + content: "\F405"; +} + +.mdi-pine-tree-box:before { + content: "\F406"; +} + +.mdi-pinterest:before { + content: "\F407"; +} + +.mdi-pinterest-box:before { + content: "\F408"; +} + +.mdi-pipe:before { + content: "\F7E4"; +} + +.mdi-pipe-disconnected:before { + content: "\F7E5"; +} + +.mdi-pipe-leak:before { + content: "\F888"; +} + +.mdi-pistol:before { + content: "\F702"; +} + +.mdi-piston:before { + content: "\F889"; +} + +.mdi-pizza:before { + content: "\F409"; +} + +.mdi-plane-shield:before { + content: "\F6BA"; +} + +.mdi-play:before { + content: "\F40A"; +} + +.mdi-play-box-outline:before { + content: "\F40B"; +} + +.mdi-play-circle:before { + content: "\F40C"; +} + +.mdi-play-circle-outline:before { + content: "\F40D"; +} + +.mdi-play-network:before { + content: "\F88A"; +} + +.mdi-play-pause:before { + content: "\F40E"; +} + +.mdi-play-protected-content:before { + content: "\F40F"; +} + +.mdi-playlist-check:before { + content: "\F5C7"; +} + +.mdi-playlist-minus:before { + content: "\F410"; +} + +.mdi-playlist-play:before { + content: "\F411"; +} + +.mdi-playlist-plus:before { + content: "\F412"; +} + +.mdi-playlist-remove:before { + content: "\F413"; +} + +.mdi-playstation:before { + content: "\F414"; +} + +.mdi-plex:before { + content: "\F6B9"; +} + +.mdi-plus:before { + content: "\F415"; +} + +.mdi-plus-box:before { + content: "\F416"; +} + +.mdi-plus-box-outline:before { + content: "\F703"; +} + +.mdi-plus-circle:before { + content: "\F417"; +} + +.mdi-plus-circle-multiple-outline:before { + content: "\F418"; +} + +.mdi-plus-circle-outline:before { + content: "\F419"; +} + +.mdi-plus-network:before { + content: "\F41A"; +} + +.mdi-plus-one:before { + content: "\F41B"; +} + +.mdi-plus-outline:before { + content: "\F704"; +} + +.mdi-pocket:before { + content: "\F41C"; +} + +.mdi-pokeball:before { + content: "\F41D"; +} + +.mdi-poker-chip:before { + content: "\F82F"; +} + +.mdi-polaroid:before { + content: "\F41E"; +} + +.mdi-poll:before { + content: "\F41F"; +} + +.mdi-poll-box:before { + content: "\F420"; +} + +.mdi-polymer:before { + content: "\F421"; +} + +.mdi-pool:before { + content: "\F606"; +} + +.mdi-popcorn:before { + content: "\F422"; +} + +.mdi-pot:before { + content: "\F65A"; +} + +.mdi-pot-mix:before { + content: "\F65B"; +} + +.mdi-pound:before { + content: "\F423"; +} + +.mdi-pound-box:before { + content: "\F424"; +} + +.mdi-power:before { + content: "\F425"; +} + +.mdi-power-plug:before { + content: "\F6A4"; +} + +.mdi-power-plug-off:before { + content: "\F6A5"; +} + +.mdi-power-settings:before { + content: "\F426"; +} + +.mdi-power-socket:before { + content: "\F427"; +} + +.mdi-power-socket-eu:before { + content: "\F7E6"; +} + +.mdi-power-socket-uk:before { + content: "\F7E7"; +} + +.mdi-power-socket-us:before { + content: "\F7E8"; +} + +.mdi-prescription:before { + content: "\F705"; +} + +.mdi-presentation:before { + content: "\F428"; +} + +.mdi-presentation-play:before { + content: "\F429"; +} + +.mdi-printer:before { + content: "\F42A"; +} + +.mdi-printer-3d:before { + content: "\F42B"; +} + +.mdi-printer-alert:before { + content: "\F42C"; +} + +.mdi-printer-settings:before { + content: "\F706"; +} + +.mdi-priority-high:before { + content: "\F603"; +} + +.mdi-priority-low:before { + content: "\F604"; +} + +.mdi-professional-hexagon:before { + content: "\F42D"; +} + +.mdi-projector:before { + content: "\F42E"; +} + +.mdi-projector-screen:before { + content: "\F42F"; +} + +.mdi-publish:before { + content: "\F6A6"; +} + +.mdi-pulse:before { + content: "\F430"; +} + +.mdi-puzzle:before { + content: "\F431"; +} + +.mdi-qqchat:before { + content: "\F605"; +} + +.mdi-qrcode:before { + content: "\F432"; +} + +.mdi-qrcode-edit:before { + content: "\F8B7"; +} + +.mdi-qrcode-scan:before { + content: "\F433"; +} + +.mdi-quadcopter:before { + content: "\F434"; +} + +.mdi-quality-high:before { + content: "\F435"; +} + +.mdi-quicktime:before { + content: "\F436"; +} + +.mdi-radar:before { + content: "\F437"; +} + +.mdi-radiator:before { + content: "\F438"; +} + +.mdi-radio:before { + content: "\F439"; +} + +.mdi-radio-handheld:before { + content: "\F43A"; +} + +.mdi-radio-tower:before { + content: "\F43B"; +} + +.mdi-radioactive:before { + content: "\F43C"; +} + +.mdi-radiobox-blank:before { + content: "\F43D"; +} + +.mdi-radiobox-marked:before { + content: "\F43E"; +} + +.mdi-raspberrypi:before { + content: "\F43F"; +} + +.mdi-ray-end:before { + content: "\F440"; +} + +.mdi-ray-end-arrow:before { + content: "\F441"; +} + +.mdi-ray-start:before { + content: "\F442"; +} + +.mdi-ray-start-arrow:before { + content: "\F443"; +} + +.mdi-ray-start-end:before { + content: "\F444"; +} + +.mdi-ray-vertex:before { + content: "\F445"; +} + +.mdi-react:before { + content: "\F707"; +} + +.mdi-read:before { + content: "\F447"; +} + +.mdi-receipt:before { + content: "\F449"; +} + +.mdi-record:before { + content: "\F44A"; +} + +.mdi-record-rec:before { + content: "\F44B"; +} + +.mdi-recycle:before { + content: "\F44C"; +} + +.mdi-reddit:before { + content: "\F44D"; +} + +.mdi-redo:before { + content: "\F44E"; +} + +.mdi-redo-variant:before { + content: "\F44F"; +} + +.mdi-refresh:before { + content: "\F450"; +} + +.mdi-regex:before { + content: "\F451"; +} + +.mdi-relative-scale:before { + content: "\F452"; +} + +.mdi-reload:before { + content: "\F453"; +} + +.mdi-reminder:before { + content: "\F88B"; +} + +.mdi-remote:before { + content: "\F454"; +} + +.mdi-remote-desktop:before { + content: "\F8B8"; +} + +.mdi-rename-box:before { + content: "\F455"; +} + +.mdi-reorder-horizontal:before { + content: "\F687"; +} + +.mdi-reorder-vertical:before { + content: "\F688"; +} + +.mdi-repeat:before { + content: "\F456"; +} + +.mdi-repeat-off:before { + content: "\F457"; +} + +.mdi-repeat-once:before { + content: "\F458"; +} + +.mdi-replay:before { + content: "\F459"; +} + +.mdi-reply:before { + content: "\F45A"; +} + +.mdi-reply-all:before { + content: "\F45B"; +} + +.mdi-reproduction:before { + content: "\F45C"; +} + +.mdi-resize-bottom-right:before { + content: "\F45D"; +} + +.mdi-responsive:before { + content: "\F45E"; +} + +.mdi-restart:before { + content: "\F708"; +} + +.mdi-restore:before { + content: "\F6A7"; +} + +.mdi-rewind:before { + content: "\F45F"; +} + +.mdi-rewind-outline:before { + content: "\F709"; +} + +.mdi-rhombus:before { + content: "\F70A"; +} + +.mdi-rhombus-outline:before { + content: "\F70B"; +} + +.mdi-ribbon:before { + content: "\F460"; +} + +.mdi-rice:before { + content: "\F7E9"; +} + +.mdi-ring:before { + content: "\F7EA"; +} + +.mdi-road:before { + content: "\F461"; +} + +.mdi-road-variant:before { + content: "\F462"; +} + +.mdi-robot:before { + content: "\F6A8"; +} + +.mdi-rocket:before { + content: "\F463"; +} + +.mdi-room-service:before { + content: "\F88C"; +} + +.mdi-roomba:before { + content: "\F70C"; +} + +.mdi-rotate-3d:before { + content: "\F464"; +} + +.mdi-rotate-left:before { + content: "\F465"; +} + +.mdi-rotate-left-variant:before { + content: "\F466"; +} + +.mdi-rotate-right:before { + content: "\F467"; +} + +.mdi-rotate-right-variant:before { + content: "\F468"; +} + +.mdi-rounded-corner:before { + content: "\F607"; +} + +.mdi-router-wireless:before { + content: "\F469"; +} + +.mdi-routes:before { + content: "\F46A"; +} + +.mdi-rowing:before { + content: "\F608"; +} + +.mdi-rss:before { + content: "\F46B"; +} + +.mdi-rss-box:before { + content: "\F46C"; +} + +.mdi-ruler:before { + content: "\F46D"; +} + +.mdi-run:before { + content: "\F70D"; +} + +.mdi-run-fast:before { + content: "\F46E"; +} + +.mdi-sale:before { + content: "\F46F"; +} + +.mdi-salesforce:before { + content: "\F88D"; +} + +.mdi-sass:before { + content: "\F7EB"; +} + +.mdi-satellite:before { + content: "\F470"; +} + +.mdi-satellite-variant:before { + content: "\F471"; +} + +.mdi-sausage:before { + content: "\F8B9"; +} + +.mdi-saxophone:before { + content: "\F609"; +} + +.mdi-scale:before { + content: "\F472"; +} + +.mdi-scale-balance:before { + content: "\F5D1"; +} + +.mdi-scale-bathroom:before { + content: "\F473"; +} + +.mdi-scanner:before { + content: "\F6AA"; +} + +.mdi-school:before { + content: "\F474"; +} + +.mdi-screen-rotation:before { + content: "\F475"; +} + +.mdi-screen-rotation-lock:before { + content: "\F476"; +} + +.mdi-screwdriver:before { + content: "\F477"; +} + +.mdi-script:before { + content: "\F478"; +} + +.mdi-sd:before { + content: "\F479"; +} + +.mdi-seal:before { + content: "\F47A"; +} + +.mdi-search-web:before { + content: "\F70E"; +} + +.mdi-seat-flat:before { + content: "\F47B"; +} + +.mdi-seat-flat-angled:before { + content: "\F47C"; +} + +.mdi-seat-individual-suite:before { + content: "\F47D"; +} + +.mdi-seat-legroom-extra:before { + content: "\F47E"; +} + +.mdi-seat-legroom-normal:before { + content: "\F47F"; +} + +.mdi-seat-legroom-reduced:before { + content: "\F480"; +} + +.mdi-seat-recline-extra:before { + content: "\F481"; +} + +.mdi-seat-recline-normal:before { + content: "\F482"; +} + +.mdi-security:before { + content: "\F483"; +} + +.mdi-security-account:before { + content: "\F88E"; +} + +.mdi-security-home:before { + content: "\F689"; +} + +.mdi-security-network:before { + content: "\F484"; +} + +.mdi-select:before { + content: "\F485"; +} + +.mdi-select-all:before { + content: "\F486"; +} + +.mdi-select-inverse:before { + content: "\F487"; +} + +.mdi-select-off:before { + content: "\F488"; +} + +.mdi-selection:before { + content: "\F489"; +} + +.mdi-selection-off:before { + content: "\F776"; +} + +.mdi-send:before { + content: "\F48A"; +} + +.mdi-send-secure:before { + content: "\F7EC"; +} + +.mdi-serial-port:before { + content: "\F65C"; +} + +.mdi-server:before { + content: "\F48B"; +} + +.mdi-server-minus:before { + content: "\F48C"; +} + +.mdi-server-network:before { + content: "\F48D"; +} + +.mdi-server-network-off:before { + content: "\F48E"; +} + +.mdi-server-off:before { + content: "\F48F"; +} + +.mdi-server-plus:before { + content: "\F490"; +} + +.mdi-server-remove:before { + content: "\F491"; +} + +.mdi-server-security:before { + content: "\F492"; +} + +.mdi-set-all:before { + content: "\F777"; +} + +.mdi-set-center:before { + content: "\F778"; +} + +.mdi-set-center-right:before { + content: "\F779"; +} + +.mdi-set-left:before { + content: "\F77A"; +} + +.mdi-set-left-center:before { + content: "\F77B"; +} + +.mdi-set-left-right:before { + content: "\F77C"; +} + +.mdi-set-none:before { + content: "\F77D"; +} + +.mdi-set-right:before { + content: "\F77E"; +} + +.mdi-settings:before { + content: "\F493"; +} + +.mdi-settings-box:before { + content: "\F494"; +} + +.mdi-settings-outline:before { + content: "\F8BA"; +} + +.mdi-shape:before { + content: "\F830"; +} + +.mdi-shape-circle-plus:before { + content: "\F65D"; +} + +.mdi-shape-outline:before { + content: "\F831"; +} + +.mdi-shape-plus:before { + content: "\F495"; +} + +.mdi-shape-polygon-plus:before { + content: "\F65E"; +} + +.mdi-shape-rectangle-plus:before { + content: "\F65F"; +} + +.mdi-shape-square-plus:before { + content: "\F660"; +} + +.mdi-share:before { + content: "\F496"; +} + +.mdi-share-variant:before { + content: "\F497"; +} + +.mdi-shield:before { + content: "\F498"; +} + +.mdi-shield-half-full:before { + content: "\F77F"; +} + +.mdi-shield-outline:before { + content: "\F499"; +} + +.mdi-ship-wheel:before { + content: "\F832"; +} + +.mdi-shopping:before { + content: "\F49A"; +} + +.mdi-shopping-music:before { + content: "\F49B"; +} + +.mdi-shovel:before { + content: "\F70F"; +} + +.mdi-shovel-off:before { + content: "\F710"; +} + +.mdi-shredder:before { + content: "\F49C"; +} + +.mdi-shuffle:before { + content: "\F49D"; +} + +.mdi-shuffle-disabled:before { + content: "\F49E"; +} + +.mdi-shuffle-variant:before { + content: "\F49F"; +} + +.mdi-sigma:before { + content: "\F4A0"; +} + +.mdi-sigma-lower:before { + content: "\F62B"; +} + +.mdi-sign-caution:before { + content: "\F4A1"; +} + +.mdi-sign-direction:before { + content: "\F780"; +} + +.mdi-sign-text:before { + content: "\F781"; +} + +.mdi-signal:before { + content: "\F4A2"; +} + +.mdi-signal-2g:before { + content: "\F711"; +} + +.mdi-signal-3g:before { + content: "\F712"; +} + +.mdi-signal-4g:before { + content: "\F713"; +} + +.mdi-signal-cellular-1:before { + content: "\F8BB"; +} + +.mdi-signal-cellular-2:before { + content: "\F8BC"; +} + +.mdi-signal-cellular-3:before { + content: "\F8BD"; +} + +.mdi-signal-cellular-outline:before { + content: "\F8BE"; +} + +.mdi-signal-hspa:before { + content: "\F714"; +} + +.mdi-signal-hspa-plus:before { + content: "\F715"; +} + +.mdi-signal-off:before { + content: "\F782"; +} + +.mdi-signal-variant:before { + content: "\F60A"; +} + +.mdi-silverware:before { + content: "\F4A3"; +} + +.mdi-silverware-fork:before { + content: "\F4A4"; +} + +.mdi-silverware-spoon:before { + content: "\F4A5"; +} + +.mdi-silverware-variant:before { + content: "\F4A6"; +} + +.mdi-sim:before { + content: "\F4A7"; +} + +.mdi-sim-alert:before { + content: "\F4A8"; +} + +.mdi-sim-off:before { + content: "\F4A9"; +} + +.mdi-sitemap:before { + content: "\F4AA"; +} + +.mdi-skip-backward:before { + content: "\F4AB"; +} + +.mdi-skip-forward:before { + content: "\F4AC"; +} + +.mdi-skip-next:before { + content: "\F4AD"; +} + +.mdi-skip-next-circle:before { + content: "\F661"; +} + +.mdi-skip-next-circle-outline:before { + content: "\F662"; +} + +.mdi-skip-previous:before { + content: "\F4AE"; +} + +.mdi-skip-previous-circle:before { + content: "\F663"; +} + +.mdi-skip-previous-circle-outline:before { + content: "\F664"; +} + +.mdi-skull:before { + content: "\F68B"; +} + +.mdi-skype:before { + content: "\F4AF"; +} + +.mdi-skype-business:before { + content: "\F4B0"; +} + +.mdi-slack:before { + content: "\F4B1"; +} + +.mdi-sleep:before { + content: "\F4B2"; +} + +.mdi-sleep-off:before { + content: "\F4B3"; +} + +.mdi-smoking:before { + content: "\F4B4"; +} + +.mdi-smoking-off:before { + content: "\F4B5"; +} + +.mdi-snapchat:before { + content: "\F4B6"; +} + +.mdi-snowflake:before { + content: "\F716"; +} + +.mdi-snowman:before { + content: "\F4B7"; +} + +.mdi-soccer:before { + content: "\F4B8"; +} + +.mdi-soccer-field:before { + content: "\F833"; +} + +.mdi-sofa:before { + content: "\F4B9"; +} + +.mdi-solid:before { + content: "\F68C"; +} + +.mdi-sort:before { + content: "\F4BA"; +} + +.mdi-sort-alphabetical:before { + content: "\F4BB"; +} + +.mdi-sort-ascending:before { + content: "\F4BC"; +} + +.mdi-sort-descending:before { + content: "\F4BD"; +} + +.mdi-sort-numeric:before { + content: "\F4BE"; +} + +.mdi-sort-variant:before { + content: "\F4BF"; +} + +.mdi-soundcloud:before { + content: "\F4C0"; +} + +.mdi-source-branch:before { + content: "\F62C"; +} + +.mdi-source-commit:before { + content: "\F717"; +} + +.mdi-source-commit-end:before { + content: "\F718"; +} + +.mdi-source-commit-end-local:before { + content: "\F719"; +} + +.mdi-source-commit-local:before { + content: "\F71A"; +} + +.mdi-source-commit-next-local:before { + content: "\F71B"; +} + +.mdi-source-commit-start:before { + content: "\F71C"; +} + +.mdi-source-commit-start-next-local:before { + content: "\F71D"; +} + +.mdi-source-fork:before { + content: "\F4C1"; +} + +.mdi-source-merge:before { + content: "\F62D"; +} + +.mdi-source-pull:before { + content: "\F4C2"; +} + +.mdi-soy-sauce:before { + content: "\F7ED"; +} + +.mdi-speaker:before { + content: "\F4C3"; +} + +.mdi-speaker-off:before { + content: "\F4C4"; +} + +.mdi-speaker-wireless:before { + content: "\F71E"; +} + +.mdi-speedometer:before { + content: "\F4C5"; +} + +.mdi-spellcheck:before { + content: "\F4C6"; +} + +.mdi-spotify:before { + content: "\F4C7"; +} + +.mdi-spotlight:before { + content: "\F4C8"; +} + +.mdi-spotlight-beam:before { + content: "\F4C9"; +} + +.mdi-spray:before { + content: "\F665"; +} + +.mdi-square:before { + content: "\F763"; +} + +.mdi-square-inc:before { + content: "\F4CA"; +} + +.mdi-square-inc-cash:before { + content: "\F4CB"; +} + +.mdi-square-outline:before { + content: "\F762"; +} + +.mdi-square-root:before { + content: "\F783"; +} + +.mdi-ssh:before { + content: "\F8BF"; +} + +.mdi-stack-overflow:before { + content: "\F4CC"; +} + +.mdi-stackexchange:before { + content: "\F60B"; +} + +.mdi-stadium:before { + content: "\F71F"; +} + +.mdi-stairs:before { + content: "\F4CD"; +} + +.mdi-standard-definition:before { + content: "\F7EE"; +} + +.mdi-star:before { + content: "\F4CE"; +} + +.mdi-star-circle:before { + content: "\F4CF"; +} + +.mdi-star-half:before { + content: "\F4D0"; +} + +.mdi-star-off:before { + content: "\F4D1"; +} + +.mdi-star-outline:before { + content: "\F4D2"; +} + +.mdi-steam:before { + content: "\F4D3"; +} + +.mdi-steering:before { + content: "\F4D4"; +} + +.mdi-step-backward:before { + content: "\F4D5"; +} + +.mdi-step-backward-2:before { + content: "\F4D6"; +} + +.mdi-step-forward:before { + content: "\F4D7"; +} + +.mdi-step-forward-2:before { + content: "\F4D8"; +} + +.mdi-stethoscope:before { + content: "\F4D9"; +} + +.mdi-sticker:before { + content: "\F5D0"; +} + +.mdi-sticker-emoji:before { + content: "\F784"; +} + +.mdi-stocking:before { + content: "\F4DA"; +} + +.mdi-stop:before { + content: "\F4DB"; +} + +.mdi-stop-circle:before { + content: "\F666"; +} + +.mdi-stop-circle-outline:before { + content: "\F667"; +} + +.mdi-store:before { + content: "\F4DC"; +} + +.mdi-store-24-hour:before { + content: "\F4DD"; +} + +.mdi-stove:before { + content: "\F4DE"; +} + +.mdi-subdirectory-arrow-left:before { + content: "\F60C"; +} + +.mdi-subdirectory-arrow-right:before { + content: "\F60D"; +} + +.mdi-subway:before { + content: "\F6AB"; +} + +.mdi-subway-variant:before { + content: "\F4DF"; +} + +.mdi-summit:before { + content: "\F785"; +} + +.mdi-sunglasses:before { + content: "\F4E0"; +} + +.mdi-surround-sound:before { + content: "\F5C5"; +} + +.mdi-surround-sound-2-0:before { + content: "\F7EF"; +} + +.mdi-surround-sound-3-1:before { + content: "\F7F0"; +} + +.mdi-surround-sound-5-1:before { + content: "\F7F1"; +} + +.mdi-surround-sound-7-1:before { + content: "\F7F2"; +} + +.mdi-svg:before { + content: "\F720"; +} + +.mdi-swap-horizontal:before { + content: "\F4E1"; +} + +.mdi-swap-horizontal-variant:before { + content: "\F8C0"; +} + +.mdi-swap-vertical:before { + content: "\F4E2"; +} + +.mdi-swap-vertical-variant:before { + content: "\F8C1"; +} + +.mdi-swim:before { + content: "\F4E3"; +} + +.mdi-switch:before { + content: "\F4E4"; +} + +.mdi-sword:before { + content: "\F4E5"; +} + +.mdi-sword-cross:before { + content: "\F786"; +} + +.mdi-sync:before { + content: "\F4E6"; +} + +.mdi-sync-alert:before { + content: "\F4E7"; +} + +.mdi-sync-off:before { + content: "\F4E8"; +} + +.mdi-tab:before { + content: "\F4E9"; +} + +.mdi-tab-plus:before { + content: "\F75B"; +} + +.mdi-tab-unselected:before { + content: "\F4EA"; +} + +.mdi-table:before { + content: "\F4EB"; +} + +.mdi-table-column:before { + content: "\F834"; +} + +.mdi-table-column-plus-after:before { + content: "\F4EC"; +} + +.mdi-table-column-plus-before:before { + content: "\F4ED"; +} + +.mdi-table-column-remove:before { + content: "\F4EE"; +} + +.mdi-table-column-width:before { + content: "\F4EF"; +} + +.mdi-table-edit:before { + content: "\F4F0"; +} + +.mdi-table-large:before { + content: "\F4F1"; +} + +.mdi-table-of-contents:before { + content: "\F835"; +} + +.mdi-table-row:before { + content: "\F836"; +} + +.mdi-table-row-height:before { + content: "\F4F2"; +} + +.mdi-table-row-plus-after:before { + content: "\F4F3"; +} + +.mdi-table-row-plus-before:before { + content: "\F4F4"; +} + +.mdi-table-row-remove:before { + content: "\F4F5"; +} + +.mdi-table-settings:before { + content: "\F837"; +} + +.mdi-tablet:before { + content: "\F4F6"; +} + +.mdi-tablet-android:before { + content: "\F4F7"; +} + +.mdi-tablet-ipad:before { + content: "\F4F8"; +} + +.mdi-taco:before { + content: "\F761"; +} + +.mdi-tag:before { + content: "\F4F9"; +} + +.mdi-tag-faces:before { + content: "\F4FA"; +} + +.mdi-tag-heart:before { + content: "\F68A"; +} + +.mdi-tag-multiple:before { + content: "\F4FB"; +} + +.mdi-tag-outline:before { + content: "\F4FC"; +} + +.mdi-tag-plus:before { + content: "\F721"; +} + +.mdi-tag-remove:before { + content: "\F722"; +} + +.mdi-tag-text-outline:before { + content: "\F4FD"; +} + +.mdi-target:before { + content: "\F4FE"; +} + +.mdi-taxi:before { + content: "\F4FF"; +} + +.mdi-teach:before { + content: "\F88F"; +} + +.mdi-teamviewer:before { + content: "\F500"; +} + +.mdi-telegram:before { + content: "\F501"; +} + +.mdi-television:before { + content: "\F502"; +} + +.mdi-television-box:before { + content: "\F838"; +} + +.mdi-television-classic:before { + content: "\F7F3"; +} + +.mdi-television-classic-off:before { + content: "\F839"; +} + +.mdi-television-guide:before { + content: "\F503"; +} + +.mdi-television-off:before { + content: "\F83A"; +} + +.mdi-temperature-celsius:before { + content: "\F504"; +} + +.mdi-temperature-fahrenheit:before { + content: "\F505"; +} + +.mdi-temperature-kelvin:before { + content: "\F506"; +} + +.mdi-tennis:before { + content: "\F507"; +} + +.mdi-tent:before { + content: "\F508"; +} + +.mdi-terrain:before { + content: "\F509"; +} + +.mdi-test-tube:before { + content: "\F668"; +} + +.mdi-text-shadow:before { + content: "\F669"; +} + +.mdi-text-to-speech:before { + content: "\F50A"; +} + +.mdi-text-to-speech-off:before { + content: "\F50B"; +} + +.mdi-textbox:before { + content: "\F60E"; +} + +.mdi-textbox-password:before { + content: "\F7F4"; +} + +.mdi-texture:before { + content: "\F50C"; +} + +.mdi-theater:before { + content: "\F50D"; +} + +.mdi-theme-light-dark:before { + content: "\F50E"; +} + +.mdi-thermometer:before { + content: "\F50F"; +} + +.mdi-thermometer-lines:before { + content: "\F510"; +} + +.mdi-thermostat-box:before { + content: "\F890"; +} + +.mdi-thought-bubble:before { + content: "\F7F5"; +} + +.mdi-thought-bubble-outline:before { + content: "\F7F6"; +} + +.mdi-thumb-down:before { + content: "\F511"; +} + +.mdi-thumb-down-outline:before { + content: "\F512"; +} + +.mdi-thumb-up:before { + content: "\F513"; +} + +.mdi-thumb-up-outline:before { + content: "\F514"; +} + +.mdi-thumbs-up-down:before { + content: "\F515"; +} + +.mdi-ticket:before { + content: "\F516"; +} + +.mdi-ticket-account:before { + content: "\F517"; +} + +.mdi-ticket-confirmation:before { + content: "\F518"; +} + +.mdi-ticket-percent:before { + content: "\F723"; +} + +.mdi-tie:before { + content: "\F519"; +} + +.mdi-tilde:before { + content: "\F724"; +} + +.mdi-timelapse:before { + content: "\F51A"; +} + +.mdi-timer:before { + content: "\F51B"; +} + +.mdi-timer-10:before { + content: "\F51C"; +} + +.mdi-timer-3:before { + content: "\F51D"; +} + +.mdi-timer-off:before { + content: "\F51E"; +} + +.mdi-timer-sand:before { + content: "\F51F"; +} + +.mdi-timer-sand-empty:before { + content: "\F6AC"; +} + +.mdi-timer-sand-full:before { + content: "\F78B"; +} + +.mdi-timetable:before { + content: "\F520"; +} + +.mdi-toggle-switch:before { + content: "\F521"; +} + +.mdi-toggle-switch-off:before { + content: "\F522"; +} + +.mdi-tooltip:before { + content: "\F523"; +} + +.mdi-tooltip-edit:before { + content: "\F524"; +} + +.mdi-tooltip-image:before { + content: "\F525"; +} + +.mdi-tooltip-outline:before { + content: "\F526"; +} + +.mdi-tooltip-outline-plus:before { + content: "\F527"; +} + +.mdi-tooltip-text:before { + content: "\F528"; +} + +.mdi-tooth:before { + content: "\F8C2"; +} + +.mdi-tooth-outline:before { + content: "\F529"; +} + +.mdi-tor:before { + content: "\F52A"; +} + +.mdi-tower-beach:before { + content: "\F680"; +} + +.mdi-tower-fire:before { + content: "\F681"; +} + +.mdi-towing:before { + content: "\F83B"; +} + +.mdi-trackpad:before { + content: "\F7F7"; +} + +.mdi-tractor:before { + content: "\F891"; +} + +.mdi-traffic-light:before { + content: "\F52B"; +} + +.mdi-train:before { + content: "\F52C"; +} + +.mdi-train-variant:before { + content: "\F8C3"; +} + +.mdi-tram:before { + content: "\F52D"; +} + +.mdi-transcribe:before { + content: "\F52E"; +} + +.mdi-transcribe-close:before { + content: "\F52F"; +} + +.mdi-transfer:before { + content: "\F530"; +} + +.mdi-transit-transfer:before { + content: "\F6AD"; +} + +.mdi-translate:before { + content: "\F5CA"; +} + +.mdi-treasure-chest:before { + content: "\F725"; +} + +.mdi-tree:before { + content: "\F531"; +} + +.mdi-trello:before { + content: "\F532"; +} + +.mdi-trending-down:before { + content: "\F533"; +} + +.mdi-trending-neutral:before { + content: "\F534"; +} + +.mdi-trending-up:before { + content: "\F535"; +} + +.mdi-triangle:before { + content: "\F536"; +} + +.mdi-triangle-outline:before { + content: "\F537"; +} + +.mdi-trophy:before { + content: "\F538"; +} + +.mdi-trophy-award:before { + content: "\F539"; +} + +.mdi-trophy-outline:before { + content: "\F53A"; +} + +.mdi-trophy-variant:before { + content: "\F53B"; +} + +.mdi-trophy-variant-outline:before { + content: "\F53C"; +} + +.mdi-truck:before { + content: "\F53D"; +} + +.mdi-truck-delivery:before { + content: "\F53E"; +} + +.mdi-truck-fast:before { + content: "\F787"; +} + +.mdi-truck-trailer:before { + content: "\F726"; +} + +.mdi-tshirt-crew:before { + content: "\F53F"; +} + +.mdi-tshirt-v:before { + content: "\F540"; +} + +.mdi-tumblr:before { + content: "\F541"; +} + +.mdi-tumblr-reblog:before { + content: "\F542"; +} + +.mdi-tune:before { + content: "\F62E"; +} + +.mdi-tune-vertical:before { + content: "\F66A"; +} + +.mdi-twitch:before { + content: "\F543"; +} + +.mdi-twitter:before { + content: "\F544"; +} + +.mdi-twitter-box:before { + content: "\F545"; +} + +.mdi-twitter-circle:before { + content: "\F546"; +} + +.mdi-twitter-retweet:before { + content: "\F547"; +} + +.mdi-uber:before { + content: "\F748"; +} + +.mdi-ubuntu:before { + content: "\F548"; +} + +.mdi-ultra-high-definition:before { + content: "\F7F8"; +} + +.mdi-umbraco:before { + content: "\F549"; +} + +.mdi-umbrella:before { + content: "\F54A"; +} + +.mdi-umbrella-outline:before { + content: "\F54B"; +} + +.mdi-undo:before { + content: "\F54C"; +} + +.mdi-undo-variant:before { + content: "\F54D"; +} + +.mdi-unfold-less-horizontal:before { + content: "\F54E"; +} + +.mdi-unfold-less-vertical:before { + content: "\F75F"; +} + +.mdi-unfold-more-horizontal:before { + content: "\F54F"; +} + +.mdi-unfold-more-vertical:before { + content: "\F760"; +} + +.mdi-ungroup:before { + content: "\F550"; +} + +.mdi-unity:before { + content: "\F6AE"; +} + +.mdi-untappd:before { + content: "\F551"; +} + +.mdi-update:before { + content: "\F6AF"; +} + +.mdi-upload:before { + content: "\F552"; +} + +.mdi-upload-multiple:before { + content: "\F83C"; +} + +.mdi-upload-network:before { + content: "\F6F5"; +} + +.mdi-usb:before { + content: "\F553"; +} + +.mdi-van-passenger:before { + content: "\F7F9"; +} + +.mdi-van-utility:before { + content: "\F7FA"; +} + +.mdi-vanish:before { + content: "\F7FB"; +} + +.mdi-vector-arrange-above:before { + content: "\F554"; +} + +.mdi-vector-arrange-below:before { + content: "\F555"; +} + +.mdi-vector-circle:before { + content: "\F556"; +} + +.mdi-vector-circle-variant:before { + content: "\F557"; +} + +.mdi-vector-combine:before { + content: "\F558"; +} + +.mdi-vector-curve:before { + content: "\F559"; +} + +.mdi-vector-difference:before { + content: "\F55A"; +} + +.mdi-vector-difference-ab:before { + content: "\F55B"; +} + +.mdi-vector-difference-ba:before { + content: "\F55C"; +} + +.mdi-vector-ellipse:before { + content: "\F892"; +} + +.mdi-vector-intersection:before { + content: "\F55D"; +} + +.mdi-vector-line:before { + content: "\F55E"; +} + +.mdi-vector-point:before { + content: "\F55F"; +} + +.mdi-vector-polygon:before { + content: "\F560"; +} + +.mdi-vector-polyline:before { + content: "\F561"; +} + +.mdi-vector-radius:before { + content: "\F749"; +} + +.mdi-vector-rectangle:before { + content: "\F5C6"; +} + +.mdi-vector-selection:before { + content: "\F562"; +} + +.mdi-vector-square:before { + content: "\F001"; +} + +.mdi-vector-triangle:before { + content: "\F563"; +} + +.mdi-vector-union:before { + content: "\F564"; +} + +.mdi-venmo:before { + content: "\F578"; +} + +.mdi-verified:before { + content: "\F565"; +} + +.mdi-vibrate:before { + content: "\F566"; +} + +.mdi-video:before { + content: "\F567"; +} + +.mdi-video-3d:before { + content: "\F7FC"; +} + +.mdi-video-4k-box:before { + content: "\F83D"; +} + +.mdi-video-input-antenna:before { + content: "\F83E"; +} + +.mdi-video-input-component:before { + content: "\F83F"; +} + +.mdi-video-input-hdmi:before { + content: "\F840"; +} + +.mdi-video-input-svideo:before { + content: "\F841"; +} + +.mdi-video-off:before { + content: "\F568"; +} + +.mdi-video-switch:before { + content: "\F569"; +} + +.mdi-view-agenda:before { + content: "\F56A"; +} + +.mdi-view-array:before { + content: "\F56B"; +} + +.mdi-view-carousel:before { + content: "\F56C"; +} + +.mdi-view-column:before { + content: "\F56D"; +} + +.mdi-view-dashboard:before { + content: "\F56E"; +} + +.mdi-view-dashboard-variant:before { + content: "\F842"; +} + +.mdi-view-day:before { + content: "\F56F"; +} + +.mdi-view-grid:before { + content: "\F570"; +} + +.mdi-view-headline:before { + content: "\F571"; +} + +.mdi-view-list:before { + content: "\F572"; +} + +.mdi-view-module:before { + content: "\F573"; +} + +.mdi-view-parallel:before { + content: "\F727"; +} + +.mdi-view-quilt:before { + content: "\F574"; +} + +.mdi-view-sequential:before { + content: "\F728"; +} + +.mdi-view-stream:before { + content: "\F575"; +} + +.mdi-view-week:before { + content: "\F576"; +} + +.mdi-vimeo:before { + content: "\F577"; +} + +.mdi-violin:before { + content: "\F60F"; +} + +.mdi-virtual-reality:before { + content: "\F893"; +} + +.mdi-visualstudio:before { + content: "\F610"; +} + +.mdi-vk:before { + content: "\F579"; +} + +.mdi-vk-box:before { + content: "\F57A"; +} + +.mdi-vk-circle:before { + content: "\F57B"; +} + +.mdi-vlc:before { + content: "\F57C"; +} + +.mdi-voice:before { + content: "\F5CB"; +} + +.mdi-voicemail:before { + content: "\F57D"; +} + +.mdi-volume-high:before { + content: "\F57E"; +} + +.mdi-volume-low:before { + content: "\F57F"; +} + +.mdi-volume-medium:before { + content: "\F580"; +} + +.mdi-volume-minus:before { + content: "\F75D"; +} + +.mdi-volume-mute:before { + content: "\F75E"; +} + +.mdi-volume-off:before { + content: "\F581"; +} + +.mdi-volume-plus:before { + content: "\F75C"; +} + +.mdi-vpn:before { + content: "\F582"; +} + +.mdi-vuejs:before { + content: "\F843"; +} + +.mdi-walk:before { + content: "\F583"; +} + +.mdi-wall:before { + content: "\F7FD"; +} + +.mdi-wallet:before { + content: "\F584"; +} + +.mdi-wallet-giftcard:before { + content: "\F585"; +} + +.mdi-wallet-membership:before { + content: "\F586"; +} + +.mdi-wallet-travel:before { + content: "\F587"; +} + +.mdi-wan:before { + content: "\F588"; +} + +.mdi-washing-machine:before { + content: "\F729"; +} + +.mdi-watch:before { + content: "\F589"; +} + +.mdi-watch-export:before { + content: "\F58A"; +} + +.mdi-watch-export-variant:before { + content: "\F894"; +} + +.mdi-watch-import:before { + content: "\F58B"; +} + +.mdi-watch-import-variant:before { + content: "\F895"; +} + +.mdi-watch-variant:before { + content: "\F896"; +} + +.mdi-watch-vibrate:before { + content: "\F6B0"; +} + +.mdi-water:before { + content: "\F58C"; +} + +.mdi-water-off:before { + content: "\F58D"; +} + +.mdi-water-percent:before { + content: "\F58E"; +} + +.mdi-water-pump:before { + content: "\F58F"; +} + +.mdi-watermark:before { + content: "\F612"; +} + +.mdi-waves:before { + content: "\F78C"; +} + +.mdi-weather-cloudy:before { + content: "\F590"; +} + +.mdi-weather-fog:before { + content: "\F591"; +} + +.mdi-weather-hail:before { + content: "\F592"; +} + +.mdi-weather-hurricane:before { + content: "\F897"; +} + +.mdi-weather-lightning:before { + content: "\F593"; +} + +.mdi-weather-lightning-rainy:before { + content: "\F67D"; +} + +.mdi-weather-night:before { + content: "\F594"; +} + +.mdi-weather-partlycloudy:before { + content: "\F595"; +} + +.mdi-weather-pouring:before { + content: "\F596"; +} + +.mdi-weather-rainy:before { + content: "\F597"; +} + +.mdi-weather-snowy:before { + content: "\F598"; +} + +.mdi-weather-snowy-rainy:before { + content: "\F67E"; +} + +.mdi-weather-sunny:before { + content: "\F599"; +} + +.mdi-weather-sunset:before { + content: "\F59A"; +} + +.mdi-weather-sunset-down:before { + content: "\F59B"; +} + +.mdi-weather-sunset-up:before { + content: "\F59C"; +} + +.mdi-weather-windy:before { + content: "\F59D"; +} + +.mdi-weather-windy-variant:before { + content: "\F59E"; +} + +.mdi-web:before { + content: "\F59F"; +} + +.mdi-webcam:before { + content: "\F5A0"; +} + +.mdi-webhook:before { + content: "\F62F"; +} + +.mdi-webpack:before { + content: "\F72A"; +} + +.mdi-wechat:before { + content: "\F611"; +} + +.mdi-weight:before { + content: "\F5A1"; +} + +.mdi-weight-kilogram:before { + content: "\F5A2"; +} + +.mdi-whatsapp:before { + content: "\F5A3"; +} + +.mdi-wheelchair-accessibility:before { + content: "\F5A4"; +} + +.mdi-white-balance-auto:before { + content: "\F5A5"; +} + +.mdi-white-balance-incandescent:before { + content: "\F5A6"; +} + +.mdi-white-balance-iridescent:before { + content: "\F5A7"; +} + +.mdi-white-balance-sunny:before { + content: "\F5A8"; +} + +.mdi-widgets:before { + content: "\F72B"; +} + +.mdi-wifi:before { + content: "\F5A9"; +} + +.mdi-wifi-off:before { + content: "\F5AA"; +} + +.mdi-wii:before { + content: "\F5AB"; +} + +.mdi-wiiu:before { + content: "\F72C"; +} + +.mdi-wikipedia:before { + content: "\F5AC"; +} + +.mdi-window-close:before { + content: "\F5AD"; +} + +.mdi-window-closed:before { + content: "\F5AE"; +} + +.mdi-window-maximize:before { + content: "\F5AF"; +} + +.mdi-window-minimize:before { + content: "\F5B0"; +} + +.mdi-window-open:before { + content: "\F5B1"; +} + +.mdi-window-restore:before { + content: "\F5B2"; +} + +.mdi-windows:before { + content: "\F5B3"; +} + +.mdi-wordpress:before { + content: "\F5B4"; +} + +.mdi-worker:before { + content: "\F5B5"; +} + +.mdi-wrap:before { + content: "\F5B6"; +} + +.mdi-wrench:before { + content: "\F5B7"; +} + +.mdi-wunderlist:before { + content: "\F5B8"; +} + +.mdi-xamarin:before { + content: "\F844"; +} + +.mdi-xamarin-outline:before { + content: "\F845"; +} + +.mdi-xaml:before { + content: "\F673"; +} + +.mdi-xbox:before { + content: "\F5B9"; +} + +.mdi-xbox-controller:before { + content: "\F5BA"; +} + +.mdi-xbox-controller-battery-alert:before { + content: "\F74A"; +} + +.mdi-xbox-controller-battery-empty:before { + content: "\F74B"; +} + +.mdi-xbox-controller-battery-full:before { + content: "\F74C"; +} + +.mdi-xbox-controller-battery-low:before { + content: "\F74D"; +} + +.mdi-xbox-controller-battery-medium:before { + content: "\F74E"; +} + +.mdi-xbox-controller-battery-unknown:before { + content: "\F74F"; +} + +.mdi-xbox-controller-off:before { + content: "\F5BB"; +} + +.mdi-xda:before { + content: "\F5BC"; +} + +.mdi-xing:before { + content: "\F5BD"; +} + +.mdi-xing-box:before { + content: "\F5BE"; +} + +.mdi-xing-circle:before { + content: "\F5BF"; +} + +.mdi-xml:before { + content: "\F5C0"; +} + +.mdi-xmpp:before { + content: "\F7FE"; +} + +.mdi-yammer:before { + content: "\F788"; +} + +.mdi-yeast:before { + content: "\F5C1"; +} + +.mdi-yelp:before { + content: "\F5C2"; +} + +.mdi-yin-yang:before { + content: "\F67F"; +} + +.mdi-youtube-creator-studio:before { + content: "\F846"; +} + +.mdi-youtube-gaming:before { + content: "\F847"; +} + +.mdi-youtube-play:before { + content: "\F5C3"; +} + +.mdi-youtube-tv:before { + content: "\F448"; +} + +.mdi-zip-box:before { + content: "\F5C4"; +} + +.mdi-blank:before { + content: "\F68C"; + visibility: hidden; +} + +.mdi-18px.mdi-set, .mdi-18px.mdi:before { + font-size: 18px; +} + +.mdi-24px.mdi-set, .mdi-24px.mdi:before { + font-size: 24px; +} + +.mdi-36px.mdi-set, .mdi-36px.mdi:before { + font-size: 36px; +} + +.mdi-48px.mdi-set, .mdi-48px.mdi:before { + font-size: 48px; +} + +.mdi-dark:before { + color: rgba(0, 0, 0, 0.54); +} +.mdi-dark.mdi-inactive:before { + color: rgba(0, 0, 0, 0.26); +} + +.mdi-light:before { + color: white; +} +.mdi-light.mdi-inactive:before { + color: rgba(255, 255, 255, 0.3); +} + +.mdi-rotate-45 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(45deg); + transform: scaleX(-1) rotate(45deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(45deg); + -ms-transform: rotate(45deg); + transform: scaleY(-1) rotate(45deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-45:before { + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); +} + +.mdi-rotate-90 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(90deg); + transform: scaleX(-1) rotate(90deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(90deg); + -ms-transform: rotate(90deg); + transform: scaleY(-1) rotate(90deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-90:before { + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} + +.mdi-rotate-135 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(135deg); + transform: scaleX(-1) rotate(135deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(135deg); + -ms-transform: rotate(135deg); + transform: scaleY(-1) rotate(135deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-135:before { + -webkit-transform: rotate(135deg); + -ms-transform: rotate(135deg); + transform: rotate(135deg); +} + +.mdi-rotate-180 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(180deg); + transform: scaleX(-1) rotate(180deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(180deg); + -ms-transform: rotate(180deg); + transform: scaleY(-1) rotate(180deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-180:before { + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); +} + +.mdi-rotate-225 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(225deg); + transform: scaleX(-1) rotate(225deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(225deg); + -ms-transform: rotate(225deg); + transform: scaleY(-1) rotate(225deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-225:before { + -webkit-transform: rotate(225deg); + -ms-transform: rotate(225deg); + transform: rotate(225deg); +} + +.mdi-rotate-270 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(270deg); + transform: scaleX(-1) rotate(270deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(270deg); + -ms-transform: rotate(270deg); + transform: scaleY(-1) rotate(270deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-270:before { + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); +} + +.mdi-rotate-315 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(315deg); + transform: scaleX(-1) rotate(315deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(315deg); + -ms-transform: rotate(315deg); + transform: scaleY(-1) rotate(315deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-315:before { + -webkit-transform: rotate(315deg); + -ms-transform: rotate(315deg); + transform: rotate(315deg); +} + +.mdi-flip-h:before { + -webkit-transform: scaleX(-1); + transform: scaleX(-1); + filter: FlipH; + -ms-filter: "FlipH"; +} + +.mdi-flip-v:before { + -webkit-transform: scaleY(-1); + transform: scaleY(-1); + filter: FlipV; + -ms-filter: "FlipV"; +} + +.mdi-spin:before { + -webkit-animation: mdi-spin 2s infinite linear; + animation: mdi-spin 2s infinite linear; +} + +@-webkit-keyframes mdi-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes mdi-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +/*# sourceMappingURL=materialdesignicons.css.map */ diff --git a/assets/vendors/iconfonts/mdi/css/materialdesignicons.css.map b/assets/vendors/iconfonts/mdi/css/materialdesignicons.css.map new file mode 100755 index 0000000..7a1c598 --- /dev/null +++ b/assets/vendors/iconfonts/mdi/css/materialdesignicons.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": ";AAAA,UAUC;EATC,WAAW,EAAE,uBAAmB;EAChC,GAAG,EAAE,wDAAuE;EAC5E,GAAG,EAAE,iaAA0G;EAK/G,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;;ACTpB;QACwB;EACtB,OAAO,EAAE,YAAY;EACrB,IAAI,EAAE,mDAAiE;EACvE,SAAS,EAAE,OAAO;EAClB,cAAc,EAAE,IAAI;EACpB,WAAW,EAAE,OAAO;EACpB,sBAAsB,EAAE,WAAW;EACnC,uBAAuB,EAAE,SAAS;;;ACPhC,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,cAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kDAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mDAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,cAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,cAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,4BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,cAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,6BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,8BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,qBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,yCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,2CAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,+BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,uBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,eAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,iBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,gBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,oBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,kCAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,0BAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,wBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,sBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AADzB,mBAAmC;EAC/B,OAAO,EAAE,OAAY;;;AAI7B,iBAAiC;EAC7B,OAAO,EAAE,OAAO;EAChB,UAAU,EAAE,MAAM;;;ACLd,uCAC4B;EACxB,SAAS,EAAE,IAAe;;;AAF9B,uCAC4B;EACxB,SAAS,EAAE,IAAe;;;AAF9B,uCAC4B;EACxB,SAAS,EAAE,IAAe;;;AAF9B,uCAC4B;EACxB,SAAS,EAAE,IAAe;;;AAMlC,gBAAS;EACL,KAAK,EAAE,mBAAmB;;AAE9B,6BAAsB;EAClB,KAAK,EAAE,mBAAmB;;;AAI9B,iBAAS;EACL,KAAK,EAAE,KAAsB;;AAEjC,8BAAsB;EAClB,KAAK,EAAE,wBAAwB;;;AAMnC,cAAyC;;;;;;;;;;;;;;;;;;AACrC,qBAAS;EACL,iBAAiB,EAAE,aAAyB;EAC5C,aAAa,EAAE,aAAyB;EACxC,SAAS,EAAE,aAAyB;;;AAJ5C,cAAyC;;;;;;;;;;;;;;;;;;AACrC,qBAAS;EACL,iBAAiB,EAAE,aAAyB;EAC5C,aAAa,EAAE,aAAyB;EACxC,SAAS,EAAE,aAAyB;;;AAJ5C,eAAyC;;;;;;;;;;;;;;;;;;AACrC,sBAAS;EACL,iBAAiB,EAAE,cAAyB;EAC5C,aAAa,EAAE,cAAyB;EACxC,SAAS,EAAE,cAAyB;;;AAJ5C,eAAyC;;;;;;;;;;;;;;;;;;AACrC,sBAAS;EACL,iBAAiB,EAAE,cAAyB;EAC5C,aAAa,EAAE,cAAyB;EACxC,SAAS,EAAE,cAAyB;;;AAJ5C,eAAyC;;;;;;;;;;;;;;;;;;AACrC,sBAAS;EACL,iBAAiB,EAAE,cAAyB;EAC5C,aAAa,EAAE,cAAyB;EACxC,SAAS,EAAE,cAAyB;;;AAJ5C,eAAyC;;;;;;;;;;;;;;;;;;AACrC,sBAAS;EACL,iBAAiB,EAAE,cAAyB;EAC5C,aAAa,EAAE,cAAyB;EACxC,SAAS,EAAE,cAAyB;;;AAJ5C,eAAyC;;;;;;;;;;;;;;;;;;AACrC,sBAAS;EACL,iBAAiB,EAAE,cAAyB;EAC5C,aAAa,EAAE,cAAyB;EACxC,SAAS,EAAE,cAAyB;;;AAoBhD,kBAAkC;EAC9B,iBAAiB,EAAE,UAAU;EAC7B,SAAS,EAAE,UAAU;EACrB,MAAM,EAAE,KAAK;EACb,UAAU,EAAE,OAAO;;;AAEvB,kBAAkC;EAC9B,iBAAiB,EAAE,UAAU;EAC7B,SAAS,EAAE,UAAU;EACrB,MAAM,EAAE,KAAK;EACb,UAAU,EAAE,OAAO;;;AC9DvB,gBAAgC;EAC5B,iBAAiB,EAAE,2BAA0C;EACrD,SAAS,EAAE,2BAA0C;;;AAGjE,2BASC;EARG,EAAG;IACD,iBAAiB,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;;EAEjC,IAAK;IACH,iBAAiB,EAAE,cAAc;IACzB,SAAS,EAAE,cAAc;;;AAIvC,mBASC;EARG,EAAG;IACD,iBAAiB,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;;EAEjC,IAAK;IACH,iBAAiB,EAAE,cAAc;IACzB,SAAS,EAAE,cAAc", +"sources": ["../scss/_path.scss","../scss/_core.scss","../scss/_icons.scss","../scss/_extras.scss","../scss/_animated.scss"], +"names": [], +"file": "materialdesignicons.css" +} diff --git a/assets/vendors/iconfonts/mdi/css/materialdesignicons.min.css b/assets/vendors/iconfonts/mdi/css/materialdesignicons.min.css new file mode 100755 index 0000000..3795bfc --- /dev/null +++ b/assets/vendors/iconfonts/mdi/css/materialdesignicons.min.css @@ -0,0 +1,2 @@ +/* MaterialDesignIcons.com */@font-face{font-family:"Material Design Icons";src:url("../fonts/materialdesignicons-webfont.eot?v=2.2.43");src:url("../fonts/materialdesignicons-webfont.eot?#iefix&v=2.2.43") format("embedded-opentype"),url("../fonts/materialdesignicons-webfont.woff2?v=2.2.43") format("woff2"),url("../fonts/materialdesignicons-webfont.woff?v=2.2.43") format("woff"),url("../fonts/materialdesignicons-webfont.ttf?v=2.2.43") format("truetype"),url("../fonts/materialdesignicons-webfont.svg?v=2.2.43#materialdesigniconsregular") format("svg");font-weight:normal;font-style:normal}.mdi:before,.mdi-set{display:inline-block;font:normal normal normal 24px/1 "Material Design Icons";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mdi-access-point:before{content:"\F002"}.mdi-access-point-network:before{content:"\F003"}.mdi-account:before{content:"\F004"}.mdi-account-alert:before{content:"\F005"}.mdi-account-box:before{content:"\F006"}.mdi-account-box-outline:before{content:"\F007"}.mdi-account-card-details:before{content:"\F5D2"}.mdi-account-check:before{content:"\F008"}.mdi-account-circle:before{content:"\F009"}.mdi-account-convert:before{content:"\F00A"}.mdi-account-edit:before{content:"\F6BB"}.mdi-account-group:before{content:"\F848"}.mdi-account-heart:before{content:"\F898"}.mdi-account-key:before{content:"\F00B"}.mdi-account-location:before{content:"\F00C"}.mdi-account-minus:before{content:"\F00D"}.mdi-account-multiple:before{content:"\F00E"}.mdi-account-multiple-minus:before{content:"\F5D3"}.mdi-account-multiple-outline:before{content:"\F00F"}.mdi-account-multiple-plus:before{content:"\F010"}.mdi-account-multiple-plus-outline:before{content:"\F7FF"}.mdi-account-network:before{content:"\F011"}.mdi-account-off:before{content:"\F012"}.mdi-account-outline:before{content:"\F013"}.mdi-account-plus:before{content:"\F014"}.mdi-account-plus-outline:before{content:"\F800"}.mdi-account-remove:before{content:"\F015"}.mdi-account-search:before{content:"\F016"}.mdi-account-settings:before{content:"\F630"}.mdi-account-settings-variant:before{content:"\F631"}.mdi-account-star:before{content:"\F017"}.mdi-account-switch:before{content:"\F019"}.mdi-accusoft:before{content:"\F849"}.mdi-adjust:before{content:"\F01A"}.mdi-air-conditioner:before{content:"\F01B"}.mdi-airballoon:before{content:"\F01C"}.mdi-airplane:before{content:"\F01D"}.mdi-airplane-landing:before{content:"\F5D4"}.mdi-airplane-off:before{content:"\F01E"}.mdi-airplane-takeoff:before{content:"\F5D5"}.mdi-airplay:before{content:"\F01F"}.mdi-airport:before{content:"\F84A"}.mdi-alarm:before{content:"\F020"}.mdi-alarm-bell:before{content:"\F78D"}.mdi-alarm-check:before{content:"\F021"}.mdi-alarm-light:before{content:"\F78E"}.mdi-alarm-multiple:before{content:"\F022"}.mdi-alarm-off:before{content:"\F023"}.mdi-alarm-plus:before{content:"\F024"}.mdi-alarm-snooze:before{content:"\F68D"}.mdi-album:before{content:"\F025"}.mdi-alert:before{content:"\F026"}.mdi-alert-box:before{content:"\F027"}.mdi-alert-circle:before{content:"\F028"}.mdi-alert-circle-outline:before{content:"\F5D6"}.mdi-alert-decagram:before{content:"\F6BC"}.mdi-alert-octagon:before{content:"\F029"}.mdi-alert-octagram:before{content:"\F766"}.mdi-alert-outline:before{content:"\F02A"}.mdi-alien:before{content:"\F899"}.mdi-all-inclusive:before{content:"\F6BD"}.mdi-allo:before{content:"\F801"}.mdi-alpha:before{content:"\F02B"}.mdi-alphabetical:before{content:"\F02C"}.mdi-altimeter:before{content:"\F5D7"}.mdi-amazon:before{content:"\F02D"}.mdi-amazon-clouddrive:before{content:"\F02E"}.mdi-ambulance:before{content:"\F02F"}.mdi-amplifier:before{content:"\F030"}.mdi-anchor:before{content:"\F031"}.mdi-android:before{content:"\F032"}.mdi-android-debug-bridge:before{content:"\F033"}.mdi-android-head:before{content:"\F78F"}.mdi-android-studio:before{content:"\F034"}.mdi-angular:before{content:"\F6B1"}.mdi-angularjs:before{content:"\F6BE"}.mdi-animation:before{content:"\F5D8"}.mdi-anvil:before{content:"\F89A"}.mdi-apple:before{content:"\F035"}.mdi-apple-finder:before{content:"\F036"}.mdi-apple-ios:before{content:"\F037"}.mdi-apple-keyboard-caps:before{content:"\F632"}.mdi-apple-keyboard-command:before{content:"\F633"}.mdi-apple-keyboard-control:before{content:"\F634"}.mdi-apple-keyboard-option:before{content:"\F635"}.mdi-apple-keyboard-shift:before{content:"\F636"}.mdi-apple-mobileme:before{content:"\F038"}.mdi-apple-safari:before{content:"\F039"}.mdi-application:before{content:"\F614"}.mdi-approval:before{content:"\F790"}.mdi-apps:before{content:"\F03B"}.mdi-archive:before{content:"\F03C"}.mdi-arrange-bring-forward:before{content:"\F03D"}.mdi-arrange-bring-to-front:before{content:"\F03E"}.mdi-arrange-send-backward:before{content:"\F03F"}.mdi-arrange-send-to-back:before{content:"\F040"}.mdi-arrow-all:before{content:"\F041"}.mdi-arrow-bottom-left:before{content:"\F042"}.mdi-arrow-bottom-right:before{content:"\F043"}.mdi-arrow-collapse:before{content:"\F615"}.mdi-arrow-collapse-all:before{content:"\F044"}.mdi-arrow-collapse-down:before{content:"\F791"}.mdi-arrow-collapse-horizontal:before{content:"\F84B"}.mdi-arrow-collapse-left:before{content:"\F792"}.mdi-arrow-collapse-right:before{content:"\F793"}.mdi-arrow-collapse-up:before{content:"\F794"}.mdi-arrow-collapse-vertical:before{content:"\F84C"}.mdi-arrow-down:before{content:"\F045"}.mdi-arrow-down-bold:before{content:"\F72D"}.mdi-arrow-down-bold-box:before{content:"\F72E"}.mdi-arrow-down-bold-box-outline:before{content:"\F72F"}.mdi-arrow-down-bold-circle:before{content:"\F047"}.mdi-arrow-down-bold-circle-outline:before{content:"\F048"}.mdi-arrow-down-bold-hexagon-outline:before{content:"\F049"}.mdi-arrow-down-box:before{content:"\F6BF"}.mdi-arrow-down-drop-circle:before{content:"\F04A"}.mdi-arrow-down-drop-circle-outline:before{content:"\F04B"}.mdi-arrow-down-thick:before{content:"\F046"}.mdi-arrow-expand:before{content:"\F616"}.mdi-arrow-expand-all:before{content:"\F04C"}.mdi-arrow-expand-down:before{content:"\F795"}.mdi-arrow-expand-horizontal:before{content:"\F84D"}.mdi-arrow-expand-left:before{content:"\F796"}.mdi-arrow-expand-right:before{content:"\F797"}.mdi-arrow-expand-up:before{content:"\F798"}.mdi-arrow-expand-vertical:before{content:"\F84E"}.mdi-arrow-left:before{content:"\F04D"}.mdi-arrow-left-bold:before{content:"\F730"}.mdi-arrow-left-bold-box:before{content:"\F731"}.mdi-arrow-left-bold-box-outline:before{content:"\F732"}.mdi-arrow-left-bold-circle:before{content:"\F04F"}.mdi-arrow-left-bold-circle-outline:before{content:"\F050"}.mdi-arrow-left-bold-hexagon-outline:before{content:"\F051"}.mdi-arrow-left-box:before{content:"\F6C0"}.mdi-arrow-left-drop-circle:before{content:"\F052"}.mdi-arrow-left-drop-circle-outline:before{content:"\F053"}.mdi-arrow-left-thick:before{content:"\F04E"}.mdi-arrow-right:before{content:"\F054"}.mdi-arrow-right-bold:before{content:"\F733"}.mdi-arrow-right-bold-box:before{content:"\F734"}.mdi-arrow-right-bold-box-outline:before{content:"\F735"}.mdi-arrow-right-bold-circle:before{content:"\F056"}.mdi-arrow-right-bold-circle-outline:before{content:"\F057"}.mdi-arrow-right-bold-hexagon-outline:before{content:"\F058"}.mdi-arrow-right-box:before{content:"\F6C1"}.mdi-arrow-right-drop-circle:before{content:"\F059"}.mdi-arrow-right-drop-circle-outline:before{content:"\F05A"}.mdi-arrow-right-thick:before{content:"\F055"}.mdi-arrow-top-left:before{content:"\F05B"}.mdi-arrow-top-right:before{content:"\F05C"}.mdi-arrow-up:before{content:"\F05D"}.mdi-arrow-up-bold:before{content:"\F736"}.mdi-arrow-up-bold-box:before{content:"\F737"}.mdi-arrow-up-bold-box-outline:before{content:"\F738"}.mdi-arrow-up-bold-circle:before{content:"\F05F"}.mdi-arrow-up-bold-circle-outline:before{content:"\F060"}.mdi-arrow-up-bold-hexagon-outline:before{content:"\F061"}.mdi-arrow-up-box:before{content:"\F6C2"}.mdi-arrow-up-drop-circle:before{content:"\F062"}.mdi-arrow-up-drop-circle-outline:before{content:"\F063"}.mdi-arrow-up-thick:before{content:"\F05E"}.mdi-artist:before{content:"\F802"}.mdi-assistant:before{content:"\F064"}.mdi-asterisk:before{content:"\F6C3"}.mdi-at:before{content:"\F065"}.mdi-atlassian:before{content:"\F803"}.mdi-atom:before{content:"\F767"}.mdi-attachment:before{content:"\F066"}.mdi-audiobook:before{content:"\F067"}.mdi-augmented-reality:before{content:"\F84F"}.mdi-auto-fix:before{content:"\F068"}.mdi-auto-upload:before{content:"\F069"}.mdi-autorenew:before{content:"\F06A"}.mdi-av-timer:before{content:"\F06B"}.mdi-azure:before{content:"\F804"}.mdi-baby:before{content:"\F06C"}.mdi-baby-buggy:before{content:"\F68E"}.mdi-backburger:before{content:"\F06D"}.mdi-backspace:before{content:"\F06E"}.mdi-backup-restore:before{content:"\F06F"}.mdi-badminton:before{content:"\F850"}.mdi-bandcamp:before{content:"\F674"}.mdi-bank:before{content:"\F070"}.mdi-barcode:before{content:"\F071"}.mdi-barcode-scan:before{content:"\F072"}.mdi-barley:before{content:"\F073"}.mdi-barrel:before{content:"\F074"}.mdi-baseball:before{content:"\F851"}.mdi-baseball-bat:before{content:"\F852"}.mdi-basecamp:before{content:"\F075"}.mdi-basket:before{content:"\F076"}.mdi-basket-fill:before{content:"\F077"}.mdi-basket-unfill:before{content:"\F078"}.mdi-basketball:before{content:"\F805"}.mdi-battery:before{content:"\F079"}.mdi-battery-10:before{content:"\F07A"}.mdi-battery-20:before{content:"\F07B"}.mdi-battery-30:before{content:"\F07C"}.mdi-battery-40:before{content:"\F07D"}.mdi-battery-50:before{content:"\F07E"}.mdi-battery-60:before{content:"\F07F"}.mdi-battery-70:before{content:"\F080"}.mdi-battery-80:before{content:"\F081"}.mdi-battery-90:before{content:"\F082"}.mdi-battery-alert:before{content:"\F083"}.mdi-battery-charging:before{content:"\F084"}.mdi-battery-charging-10:before{content:"\F89B"}.mdi-battery-charging-100:before{content:"\F085"}.mdi-battery-charging-20:before{content:"\F086"}.mdi-battery-charging-30:before{content:"\F087"}.mdi-battery-charging-40:before{content:"\F088"}.mdi-battery-charging-50:before{content:"\F89C"}.mdi-battery-charging-60:before{content:"\F089"}.mdi-battery-charging-70:before{content:"\F89D"}.mdi-battery-charging-80:before{content:"\F08A"}.mdi-battery-charging-90:before{content:"\F08B"}.mdi-battery-charging-outline:before{content:"\F89E"}.mdi-battery-charging-wireless:before{content:"\F806"}.mdi-battery-charging-wireless-10:before{content:"\F807"}.mdi-battery-charging-wireless-20:before{content:"\F808"}.mdi-battery-charging-wireless-30:before{content:"\F809"}.mdi-battery-charging-wireless-40:before{content:"\F80A"}.mdi-battery-charging-wireless-50:before{content:"\F80B"}.mdi-battery-charging-wireless-60:before{content:"\F80C"}.mdi-battery-charging-wireless-70:before{content:"\F80D"}.mdi-battery-charging-wireless-80:before{content:"\F80E"}.mdi-battery-charging-wireless-90:before{content:"\F80F"}.mdi-battery-charging-wireless-alert:before{content:"\F810"}.mdi-battery-charging-wireless-outline:before{content:"\F811"}.mdi-battery-minus:before{content:"\F08C"}.mdi-battery-negative:before{content:"\F08D"}.mdi-battery-outline:before{content:"\F08E"}.mdi-battery-plus:before{content:"\F08F"}.mdi-battery-positive:before{content:"\F090"}.mdi-battery-unknown:before{content:"\F091"}.mdi-beach:before{content:"\F092"}.mdi-beaker:before{content:"\F68F"}.mdi-beats:before{content:"\F097"}.mdi-bed-empty:before{content:"\F89F"}.mdi-beer:before{content:"\F098"}.mdi-behance:before{content:"\F099"}.mdi-bell:before{content:"\F09A"}.mdi-bell-off:before{content:"\F09B"}.mdi-bell-outline:before{content:"\F09C"}.mdi-bell-plus:before{content:"\F09D"}.mdi-bell-ring:before{content:"\F09E"}.mdi-bell-ring-outline:before{content:"\F09F"}.mdi-bell-sleep:before{content:"\F0A0"}.mdi-beta:before{content:"\F0A1"}.mdi-bible:before{content:"\F0A2"}.mdi-bike:before{content:"\F0A3"}.mdi-bing:before{content:"\F0A4"}.mdi-binoculars:before{content:"\F0A5"}.mdi-bio:before{content:"\F0A6"}.mdi-biohazard:before{content:"\F0A7"}.mdi-bitbucket:before{content:"\F0A8"}.mdi-bitcoin:before{content:"\F812"}.mdi-black-mesa:before{content:"\F0A9"}.mdi-blackberry:before{content:"\F0AA"}.mdi-blender:before{content:"\F0AB"}.mdi-blinds:before{content:"\F0AC"}.mdi-block-helper:before{content:"\F0AD"}.mdi-blogger:before{content:"\F0AE"}.mdi-bluetooth:before{content:"\F0AF"}.mdi-bluetooth-audio:before{content:"\F0B0"}.mdi-bluetooth-connect:before{content:"\F0B1"}.mdi-bluetooth-off:before{content:"\F0B2"}.mdi-bluetooth-settings:before{content:"\F0B3"}.mdi-bluetooth-transfer:before{content:"\F0B4"}.mdi-blur:before{content:"\F0B5"}.mdi-blur-linear:before{content:"\F0B6"}.mdi-blur-off:before{content:"\F0B7"}.mdi-blur-radial:before{content:"\F0B8"}.mdi-bomb:before{content:"\F690"}.mdi-bomb-off:before{content:"\F6C4"}.mdi-bone:before{content:"\F0B9"}.mdi-book:before{content:"\F0BA"}.mdi-book-minus:before{content:"\F5D9"}.mdi-book-multiple:before{content:"\F0BB"}.mdi-book-multiple-variant:before{content:"\F0BC"}.mdi-book-open:before{content:"\F0BD"}.mdi-book-open-page-variant:before{content:"\F5DA"}.mdi-book-open-variant:before{content:"\F0BE"}.mdi-book-plus:before{content:"\F5DB"}.mdi-book-secure:before{content:"\F799"}.mdi-book-unsecure:before{content:"\F79A"}.mdi-book-variant:before{content:"\F0BF"}.mdi-bookmark:before{content:"\F0C0"}.mdi-bookmark-check:before{content:"\F0C1"}.mdi-bookmark-music:before{content:"\F0C2"}.mdi-bookmark-outline:before{content:"\F0C3"}.mdi-bookmark-plus:before{content:"\F0C5"}.mdi-bookmark-plus-outline:before{content:"\F0C4"}.mdi-bookmark-remove:before{content:"\F0C6"}.mdi-boombox:before{content:"\F5DC"}.mdi-bootstrap:before{content:"\F6C5"}.mdi-border-all:before{content:"\F0C7"}.mdi-border-all-variant:before{content:"\F8A0"}.mdi-border-bottom:before{content:"\F0C8"}.mdi-border-bottom-variant:before{content:"\F8A1"}.mdi-border-color:before{content:"\F0C9"}.mdi-border-horizontal:before{content:"\F0CA"}.mdi-border-inside:before{content:"\F0CB"}.mdi-border-left:before{content:"\F0CC"}.mdi-border-left-variant:before{content:"\F8A2"}.mdi-border-none:before{content:"\F0CD"}.mdi-border-none-variant:before{content:"\F8A3"}.mdi-border-outside:before{content:"\F0CE"}.mdi-border-right:before{content:"\F0CF"}.mdi-border-right-variant:before{content:"\F8A4"}.mdi-border-style:before{content:"\F0D0"}.mdi-border-top:before{content:"\F0D1"}.mdi-border-top-variant:before{content:"\F8A5"}.mdi-border-vertical:before{content:"\F0D2"}.mdi-bottle-wine:before{content:"\F853"}.mdi-bow-tie:before{content:"\F677"}.mdi-bowl:before{content:"\F617"}.mdi-bowling:before{content:"\F0D3"}.mdi-box:before{content:"\F0D4"}.mdi-box-cutter:before{content:"\F0D5"}.mdi-box-shadow:before{content:"\F637"}.mdi-bridge:before{content:"\F618"}.mdi-briefcase:before{content:"\F0D6"}.mdi-briefcase-check:before{content:"\F0D7"}.mdi-briefcase-download:before{content:"\F0D8"}.mdi-briefcase-outline:before{content:"\F813"}.mdi-briefcase-upload:before{content:"\F0D9"}.mdi-brightness-1:before{content:"\F0DA"}.mdi-brightness-2:before{content:"\F0DB"}.mdi-brightness-3:before{content:"\F0DC"}.mdi-brightness-4:before{content:"\F0DD"}.mdi-brightness-5:before{content:"\F0DE"}.mdi-brightness-6:before{content:"\F0DF"}.mdi-brightness-7:before{content:"\F0E0"}.mdi-brightness-auto:before{content:"\F0E1"}.mdi-broom:before{content:"\F0E2"}.mdi-brush:before{content:"\F0E3"}.mdi-buffer:before{content:"\F619"}.mdi-bug:before{content:"\F0E4"}.mdi-bulletin-board:before{content:"\F0E5"}.mdi-bullhorn:before{content:"\F0E6"}.mdi-bullseye:before{content:"\F5DD"}.mdi-bus:before{content:"\F0E7"}.mdi-bus-articulated-end:before{content:"\F79B"}.mdi-bus-articulated-front:before{content:"\F79C"}.mdi-bus-double-decker:before{content:"\F79D"}.mdi-bus-school:before{content:"\F79E"}.mdi-bus-side:before{content:"\F79F"}.mdi-cached:before{content:"\F0E8"}.mdi-cake:before{content:"\F0E9"}.mdi-cake-layered:before{content:"\F0EA"}.mdi-cake-variant:before{content:"\F0EB"}.mdi-calculator:before{content:"\F0EC"}.mdi-calendar:before{content:"\F0ED"}.mdi-calendar-blank:before{content:"\F0EE"}.mdi-calendar-check:before{content:"\F0EF"}.mdi-calendar-clock:before{content:"\F0F0"}.mdi-calendar-edit:before{content:"\F8A6"}.mdi-calendar-multiple:before{content:"\F0F1"}.mdi-calendar-multiple-check:before{content:"\F0F2"}.mdi-calendar-plus:before{content:"\F0F3"}.mdi-calendar-question:before{content:"\F691"}.mdi-calendar-range:before{content:"\F678"}.mdi-calendar-remove:before{content:"\F0F4"}.mdi-calendar-text:before{content:"\F0F5"}.mdi-calendar-today:before{content:"\F0F6"}.mdi-call-made:before{content:"\F0F7"}.mdi-call-merge:before{content:"\F0F8"}.mdi-call-missed:before{content:"\F0F9"}.mdi-call-received:before{content:"\F0FA"}.mdi-call-split:before{content:"\F0FB"}.mdi-camcorder:before{content:"\F0FC"}.mdi-camcorder-box:before{content:"\F0FD"}.mdi-camcorder-box-off:before{content:"\F0FE"}.mdi-camcorder-off:before{content:"\F0FF"}.mdi-camera:before{content:"\F100"}.mdi-camera-burst:before{content:"\F692"}.mdi-camera-enhance:before{content:"\F101"}.mdi-camera-front:before{content:"\F102"}.mdi-camera-front-variant:before{content:"\F103"}.mdi-camera-gopro:before{content:"\F7A0"}.mdi-camera-iris:before{content:"\F104"}.mdi-camera-metering-center:before{content:"\F7A1"}.mdi-camera-metering-matrix:before{content:"\F7A2"}.mdi-camera-metering-partial:before{content:"\F7A3"}.mdi-camera-metering-spot:before{content:"\F7A4"}.mdi-camera-off:before{content:"\F5DF"}.mdi-camera-party-mode:before{content:"\F105"}.mdi-camera-rear:before{content:"\F106"}.mdi-camera-rear-variant:before{content:"\F107"}.mdi-camera-switch:before{content:"\F108"}.mdi-camera-timer:before{content:"\F109"}.mdi-cancel:before{content:"\F739"}.mdi-candle:before{content:"\F5E2"}.mdi-candycane:before{content:"\F10A"}.mdi-cannabis:before{content:"\F7A5"}.mdi-car:before{content:"\F10B"}.mdi-car-battery:before{content:"\F10C"}.mdi-car-connected:before{content:"\F10D"}.mdi-car-convertible:before{content:"\F7A6"}.mdi-car-estate:before{content:"\F7A7"}.mdi-car-hatchback:before{content:"\F7A8"}.mdi-car-pickup:before{content:"\F7A9"}.mdi-car-side:before{content:"\F7AA"}.mdi-car-sports:before{content:"\F7AB"}.mdi-car-wash:before{content:"\F10E"}.mdi-caravan:before{content:"\F7AC"}.mdi-cards:before{content:"\F638"}.mdi-cards-outline:before{content:"\F639"}.mdi-cards-playing-outline:before{content:"\F63A"}.mdi-cards-variant:before{content:"\F6C6"}.mdi-carrot:before{content:"\F10F"}.mdi-cart:before{content:"\F110"}.mdi-cart-off:before{content:"\F66B"}.mdi-cart-outline:before{content:"\F111"}.mdi-cart-plus:before{content:"\F112"}.mdi-case-sensitive-alt:before{content:"\F113"}.mdi-cash:before{content:"\F114"}.mdi-cash-100:before{content:"\F115"}.mdi-cash-multiple:before{content:"\F116"}.mdi-cash-usd:before{content:"\F117"}.mdi-cast:before{content:"\F118"}.mdi-cast-connected:before{content:"\F119"}.mdi-cast-off:before{content:"\F789"}.mdi-castle:before{content:"\F11A"}.mdi-cat:before{content:"\F11B"}.mdi-cctv:before{content:"\F7AD"}.mdi-ceiling-light:before{content:"\F768"}.mdi-cellphone:before{content:"\F11C"}.mdi-cellphone-android:before{content:"\F11D"}.mdi-cellphone-basic:before{content:"\F11E"}.mdi-cellphone-dock:before{content:"\F11F"}.mdi-cellphone-iphone:before{content:"\F120"}.mdi-cellphone-link:before{content:"\F121"}.mdi-cellphone-link-off:before{content:"\F122"}.mdi-cellphone-settings:before{content:"\F123"}.mdi-cellphone-wireless:before{content:"\F814"}.mdi-certificate:before{content:"\F124"}.mdi-chair-school:before{content:"\F125"}.mdi-chart-arc:before{content:"\F126"}.mdi-chart-areaspline:before{content:"\F127"}.mdi-chart-bar:before{content:"\F128"}.mdi-chart-bar-stacked:before{content:"\F769"}.mdi-chart-bubble:before{content:"\F5E3"}.mdi-chart-donut:before{content:"\F7AE"}.mdi-chart-donut-variant:before{content:"\F7AF"}.mdi-chart-gantt:before{content:"\F66C"}.mdi-chart-histogram:before{content:"\F129"}.mdi-chart-line:before{content:"\F12A"}.mdi-chart-line-stacked:before{content:"\F76A"}.mdi-chart-line-variant:before{content:"\F7B0"}.mdi-chart-pie:before{content:"\F12B"}.mdi-chart-scatterplot-hexbin:before{content:"\F66D"}.mdi-chart-timeline:before{content:"\F66E"}.mdi-check:before{content:"\F12C"}.mdi-check-all:before{content:"\F12D"}.mdi-check-circle:before{content:"\F5E0"}.mdi-check-circle-outline:before{content:"\F5E1"}.mdi-check-outline:before{content:"\F854"}.mdi-checkbox-blank:before{content:"\F12E"}.mdi-checkbox-blank-circle:before{content:"\F12F"}.mdi-checkbox-blank-circle-outline:before{content:"\F130"}.mdi-checkbox-blank-outline:before{content:"\F131"}.mdi-checkbox-intermediate:before{content:"\F855"}.mdi-checkbox-marked:before{content:"\F132"}.mdi-checkbox-marked-circle:before{content:"\F133"}.mdi-checkbox-marked-circle-outline:before{content:"\F134"}.mdi-checkbox-marked-outline:before{content:"\F135"}.mdi-checkbox-multiple-blank:before{content:"\F136"}.mdi-checkbox-multiple-blank-circle:before{content:"\F63B"}.mdi-checkbox-multiple-blank-circle-outline:before{content:"\F63C"}.mdi-checkbox-multiple-blank-outline:before{content:"\F137"}.mdi-checkbox-multiple-marked:before{content:"\F138"}.mdi-checkbox-multiple-marked-circle:before{content:"\F63D"}.mdi-checkbox-multiple-marked-circle-outline:before{content:"\F63E"}.mdi-checkbox-multiple-marked-outline:before{content:"\F139"}.mdi-checkerboard:before{content:"\F13A"}.mdi-chemical-weapon:before{content:"\F13B"}.mdi-chess-bishop:before{content:"\F85B"}.mdi-chess-king:before{content:"\F856"}.mdi-chess-knight:before{content:"\F857"}.mdi-chess-pawn:before{content:"\F858"}.mdi-chess-queen:before{content:"\F859"}.mdi-chess-rook:before{content:"\F85A"}.mdi-chevron-double-down:before{content:"\F13C"}.mdi-chevron-double-left:before{content:"\F13D"}.mdi-chevron-double-right:before{content:"\F13E"}.mdi-chevron-double-up:before{content:"\F13F"}.mdi-chevron-down:before{content:"\F140"}.mdi-chevron-left:before{content:"\F141"}.mdi-chevron-right:before{content:"\F142"}.mdi-chevron-up:before{content:"\F143"}.mdi-chili-hot:before{content:"\F7B1"}.mdi-chili-medium:before{content:"\F7B2"}.mdi-chili-mild:before{content:"\F7B3"}.mdi-chip:before{content:"\F61A"}.mdi-church:before{content:"\F144"}.mdi-circle:before{content:"\F764"}.mdi-circle-outline:before{content:"\F765"}.mdi-cisco-webex:before{content:"\F145"}.mdi-city:before{content:"\F146"}.mdi-clipboard:before{content:"\F147"}.mdi-clipboard-account:before{content:"\F148"}.mdi-clipboard-alert:before{content:"\F149"}.mdi-clipboard-arrow-down:before{content:"\F14A"}.mdi-clipboard-arrow-left:before{content:"\F14B"}.mdi-clipboard-check:before{content:"\F14C"}.mdi-clipboard-check-outline:before{content:"\F8A7"}.mdi-clipboard-flow:before{content:"\F6C7"}.mdi-clipboard-outline:before{content:"\F14D"}.mdi-clipboard-plus:before{content:"\F750"}.mdi-clipboard-pulse:before{content:"\F85C"}.mdi-clipboard-pulse-outline:before{content:"\F85D"}.mdi-clipboard-text:before{content:"\F14E"}.mdi-clippy:before{content:"\F14F"}.mdi-clock:before{content:"\F150"}.mdi-clock-alert:before{content:"\F5CE"}.mdi-clock-end:before{content:"\F151"}.mdi-clock-fast:before{content:"\F152"}.mdi-clock-in:before{content:"\F153"}.mdi-clock-out:before{content:"\F154"}.mdi-clock-start:before{content:"\F155"}.mdi-close:before{content:"\F156"}.mdi-close-box:before{content:"\F157"}.mdi-close-box-outline:before{content:"\F158"}.mdi-close-circle:before{content:"\F159"}.mdi-close-circle-outline:before{content:"\F15A"}.mdi-close-network:before{content:"\F15B"}.mdi-close-octagon:before{content:"\F15C"}.mdi-close-octagon-outline:before{content:"\F15D"}.mdi-close-outline:before{content:"\F6C8"}.mdi-closed-caption:before{content:"\F15E"}.mdi-cloud:before{content:"\F15F"}.mdi-cloud-braces:before{content:"\F7B4"}.mdi-cloud-check:before{content:"\F160"}.mdi-cloud-circle:before{content:"\F161"}.mdi-cloud-download:before{content:"\F162"}.mdi-cloud-off-outline:before{content:"\F164"}.mdi-cloud-outline:before{content:"\F163"}.mdi-cloud-print:before{content:"\F165"}.mdi-cloud-print-outline:before{content:"\F166"}.mdi-cloud-sync:before{content:"\F63F"}.mdi-cloud-tags:before{content:"\F7B5"}.mdi-cloud-upload:before{content:"\F167"}.mdi-clover:before{content:"\F815"}.mdi-code-array:before{content:"\F168"}.mdi-code-braces:before{content:"\F169"}.mdi-code-brackets:before{content:"\F16A"}.mdi-code-equal:before{content:"\F16B"}.mdi-code-greater-than:before{content:"\F16C"}.mdi-code-greater-than-or-equal:before{content:"\F16D"}.mdi-code-less-than:before{content:"\F16E"}.mdi-code-less-than-or-equal:before{content:"\F16F"}.mdi-code-not-equal:before{content:"\F170"}.mdi-code-not-equal-variant:before{content:"\F171"}.mdi-code-parentheses:before{content:"\F172"}.mdi-code-string:before{content:"\F173"}.mdi-code-tags:before{content:"\F174"}.mdi-code-tags-check:before{content:"\F693"}.mdi-codepen:before{content:"\F175"}.mdi-coffee:before{content:"\F176"}.mdi-coffee-outline:before{content:"\F6C9"}.mdi-coffee-to-go:before{content:"\F177"}.mdi-coin:before{content:"\F178"}.mdi-coins:before{content:"\F694"}.mdi-collage:before{content:"\F640"}.mdi-color-helper:before{content:"\F179"}.mdi-comment:before{content:"\F17A"}.mdi-comment-account:before{content:"\F17B"}.mdi-comment-account-outline:before{content:"\F17C"}.mdi-comment-alert:before{content:"\F17D"}.mdi-comment-alert-outline:before{content:"\F17E"}.mdi-comment-check:before{content:"\F17F"}.mdi-comment-check-outline:before{content:"\F180"}.mdi-comment-multiple:before{content:"\F85E"}.mdi-comment-multiple-outline:before{content:"\F181"}.mdi-comment-outline:before{content:"\F182"}.mdi-comment-plus-outline:before{content:"\F183"}.mdi-comment-processing:before{content:"\F184"}.mdi-comment-processing-outline:before{content:"\F185"}.mdi-comment-question:before{content:"\F816"}.mdi-comment-question-outline:before{content:"\F186"}.mdi-comment-remove:before{content:"\F5DE"}.mdi-comment-remove-outline:before{content:"\F187"}.mdi-comment-text:before{content:"\F188"}.mdi-comment-text-multiple:before{content:"\F85F"}.mdi-comment-text-multiple-outline:before{content:"\F860"}.mdi-comment-text-outline:before{content:"\F189"}.mdi-compare:before{content:"\F18A"}.mdi-compass:before{content:"\F18B"}.mdi-compass-outline:before{content:"\F18C"}.mdi-console:before{content:"\F18D"}.mdi-console-line:before{content:"\F7B6"}.mdi-console-network:before{content:"\F8A8"}.mdi-contact-mail:before{content:"\F18E"}.mdi-contacts:before{content:"\F6CA"}.mdi-content-copy:before{content:"\F18F"}.mdi-content-cut:before{content:"\F190"}.mdi-content-duplicate:before{content:"\F191"}.mdi-content-paste:before{content:"\F192"}.mdi-content-save:before{content:"\F193"}.mdi-content-save-all:before{content:"\F194"}.mdi-content-save-outline:before{content:"\F817"}.mdi-content-save-settings:before{content:"\F61B"}.mdi-contrast:before{content:"\F195"}.mdi-contrast-box:before{content:"\F196"}.mdi-contrast-circle:before{content:"\F197"}.mdi-cookie:before{content:"\F198"}.mdi-copyright:before{content:"\F5E6"}.mdi-corn:before{content:"\F7B7"}.mdi-counter:before{content:"\F199"}.mdi-cow:before{content:"\F19A"}.mdi-crane:before{content:"\F861"}.mdi-creation:before{content:"\F1C9"}.mdi-credit-card:before{content:"\F19B"}.mdi-credit-card-multiple:before{content:"\F19C"}.mdi-credit-card-off:before{content:"\F5E4"}.mdi-credit-card-plus:before{content:"\F675"}.mdi-credit-card-scan:before{content:"\F19D"}.mdi-crop:before{content:"\F19E"}.mdi-crop-free:before{content:"\F19F"}.mdi-crop-landscape:before{content:"\F1A0"}.mdi-crop-portrait:before{content:"\F1A1"}.mdi-crop-rotate:before{content:"\F695"}.mdi-crop-square:before{content:"\F1A2"}.mdi-crosshairs:before{content:"\F1A3"}.mdi-crosshairs-gps:before{content:"\F1A4"}.mdi-crown:before{content:"\F1A5"}.mdi-cube:before{content:"\F1A6"}.mdi-cube-outline:before{content:"\F1A7"}.mdi-cube-send:before{content:"\F1A8"}.mdi-cube-unfolded:before{content:"\F1A9"}.mdi-cup:before{content:"\F1AA"}.mdi-cup-off:before{content:"\F5E5"}.mdi-cup-water:before{content:"\F1AB"}.mdi-curling:before{content:"\F862"}.mdi-currency-bdt:before{content:"\F863"}.mdi-currency-btc:before{content:"\F1AC"}.mdi-currency-chf:before{content:"\F7B8"}.mdi-currency-cny:before{content:"\F7B9"}.mdi-currency-eth:before{content:"\F7BA"}.mdi-currency-eur:before{content:"\F1AD"}.mdi-currency-gbp:before{content:"\F1AE"}.mdi-currency-inr:before{content:"\F1AF"}.mdi-currency-jpy:before{content:"\F7BB"}.mdi-currency-krw:before{content:"\F7BC"}.mdi-currency-kzt:before{content:"\F864"}.mdi-currency-ngn:before{content:"\F1B0"}.mdi-currency-rub:before{content:"\F1B1"}.mdi-currency-sign:before{content:"\F7BD"}.mdi-currency-try:before{content:"\F1B2"}.mdi-currency-twd:before{content:"\F7BE"}.mdi-currency-usd:before{content:"\F1B3"}.mdi-currency-usd-off:before{content:"\F679"}.mdi-cursor-default:before{content:"\F1B4"}.mdi-cursor-default-outline:before{content:"\F1B5"}.mdi-cursor-move:before{content:"\F1B6"}.mdi-cursor-pointer:before{content:"\F1B7"}.mdi-cursor-text:before{content:"\F5E7"}.mdi-database:before{content:"\F1B8"}.mdi-database-minus:before{content:"\F1B9"}.mdi-database-plus:before{content:"\F1BA"}.mdi-database-search:before{content:"\F865"}.mdi-debug-step-into:before{content:"\F1BB"}.mdi-debug-step-out:before{content:"\F1BC"}.mdi-debug-step-over:before{content:"\F1BD"}.mdi-decagram:before{content:"\F76B"}.mdi-decagram-outline:before{content:"\F76C"}.mdi-decimal-decrease:before{content:"\F1BE"}.mdi-decimal-increase:before{content:"\F1BF"}.mdi-delete:before{content:"\F1C0"}.mdi-delete-circle:before{content:"\F682"}.mdi-delete-empty:before{content:"\F6CB"}.mdi-delete-forever:before{content:"\F5E8"}.mdi-delete-restore:before{content:"\F818"}.mdi-delete-sweep:before{content:"\F5E9"}.mdi-delete-variant:before{content:"\F1C1"}.mdi-delta:before{content:"\F1C2"}.mdi-deskphone:before{content:"\F1C3"}.mdi-desktop-classic:before{content:"\F7BF"}.mdi-desktop-mac:before{content:"\F1C4"}.mdi-desktop-tower:before{content:"\F1C5"}.mdi-details:before{content:"\F1C6"}.mdi-developer-board:before{content:"\F696"}.mdi-deviantart:before{content:"\F1C7"}.mdi-dialpad:before{content:"\F61C"}.mdi-diamond:before{content:"\F1C8"}.mdi-dice-1:before{content:"\F1CA"}.mdi-dice-2:before{content:"\F1CB"}.mdi-dice-3:before{content:"\F1CC"}.mdi-dice-4:before{content:"\F1CD"}.mdi-dice-5:before{content:"\F1CE"}.mdi-dice-6:before{content:"\F1CF"}.mdi-dice-d10:before{content:"\F76E"}.mdi-dice-d12:before{content:"\F866"}.mdi-dice-d20:before{content:"\F5EA"}.mdi-dice-d4:before{content:"\F5EB"}.mdi-dice-d6:before{content:"\F5EC"}.mdi-dice-d8:before{content:"\F5ED"}.mdi-dice-multiple:before{content:"\F76D"}.mdi-dictionary:before{content:"\F61D"}.mdi-dip-switch:before{content:"\F7C0"}.mdi-directions:before{content:"\F1D0"}.mdi-directions-fork:before{content:"\F641"}.mdi-discord:before{content:"\F66F"}.mdi-disk:before{content:"\F5EE"}.mdi-disk-alert:before{content:"\F1D1"}.mdi-disqus:before{content:"\F1D2"}.mdi-disqus-outline:before{content:"\F1D3"}.mdi-division:before{content:"\F1D4"}.mdi-division-box:before{content:"\F1D5"}.mdi-dna:before{content:"\F683"}.mdi-dns:before{content:"\F1D6"}.mdi-do-not-disturb:before{content:"\F697"}.mdi-do-not-disturb-off:before{content:"\F698"}.mdi-docker:before{content:"\F867"}.mdi-dolby:before{content:"\F6B2"}.mdi-domain:before{content:"\F1D7"}.mdi-donkey:before{content:"\F7C1"}.mdi-door:before{content:"\F819"}.mdi-door-closed:before{content:"\F81A"}.mdi-door-open:before{content:"\F81B"}.mdi-doorbell-video:before{content:"\F868"}.mdi-dots-horizontal:before{content:"\F1D8"}.mdi-dots-horizontal-circle:before{content:"\F7C2"}.mdi-dots-vertical:before{content:"\F1D9"}.mdi-dots-vertical-circle:before{content:"\F7C3"}.mdi-douban:before{content:"\F699"}.mdi-download:before{content:"\F1DA"}.mdi-download-network:before{content:"\F6F3"}.mdi-drag:before{content:"\F1DB"}.mdi-drag-horizontal:before{content:"\F1DC"}.mdi-drag-vertical:before{content:"\F1DD"}.mdi-drawing:before{content:"\F1DE"}.mdi-drawing-box:before{content:"\F1DF"}.mdi-dribbble:before{content:"\F1E0"}.mdi-dribbble-box:before{content:"\F1E1"}.mdi-drone:before{content:"\F1E2"}.mdi-dropbox:before{content:"\F1E3"}.mdi-drupal:before{content:"\F1E4"}.mdi-duck:before{content:"\F1E5"}.mdi-dumbbell:before{content:"\F1E6"}.mdi-ear-hearing:before{content:"\F7C4"}.mdi-earth:before{content:"\F1E7"}.mdi-earth-box:before{content:"\F6CC"}.mdi-earth-box-off:before{content:"\F6CD"}.mdi-earth-off:before{content:"\F1E8"}.mdi-edge:before{content:"\F1E9"}.mdi-eject:before{content:"\F1EA"}.mdi-elephant:before{content:"\F7C5"}.mdi-elevation-decline:before{content:"\F1EB"}.mdi-elevation-rise:before{content:"\F1EC"}.mdi-elevator:before{content:"\F1ED"}.mdi-email:before{content:"\F1EE"}.mdi-email-alert:before{content:"\F6CE"}.mdi-email-open:before{content:"\F1EF"}.mdi-email-open-outline:before{content:"\F5EF"}.mdi-email-outline:before{content:"\F1F0"}.mdi-email-secure:before{content:"\F1F1"}.mdi-email-variant:before{content:"\F5F0"}.mdi-emby:before{content:"\F6B3"}.mdi-emoticon:before{content:"\F1F2"}.mdi-emoticon-cool:before{content:"\F1F3"}.mdi-emoticon-dead:before{content:"\F69A"}.mdi-emoticon-devil:before{content:"\F1F4"}.mdi-emoticon-excited:before{content:"\F69B"}.mdi-emoticon-happy:before{content:"\F1F5"}.mdi-emoticon-neutral:before{content:"\F1F6"}.mdi-emoticon-poop:before{content:"\F1F7"}.mdi-emoticon-sad:before{content:"\F1F8"}.mdi-emoticon-tongue:before{content:"\F1F9"}.mdi-engine:before{content:"\F1FA"}.mdi-engine-outline:before{content:"\F1FB"}.mdi-equal:before{content:"\F1FC"}.mdi-equal-box:before{content:"\F1FD"}.mdi-eraser:before{content:"\F1FE"}.mdi-eraser-variant:before{content:"\F642"}.mdi-escalator:before{content:"\F1FF"}.mdi-ethereum:before{content:"\F869"}.mdi-ethernet:before{content:"\F200"}.mdi-ethernet-cable:before{content:"\F201"}.mdi-ethernet-cable-off:before{content:"\F202"}.mdi-etsy:before{content:"\F203"}.mdi-ev-station:before{content:"\F5F1"}.mdi-eventbrite:before{content:"\F7C6"}.mdi-evernote:before{content:"\F204"}.mdi-exclamation:before{content:"\F205"}.mdi-exit-to-app:before{content:"\F206"}.mdi-export:before{content:"\F207"}.mdi-eye:before{content:"\F208"}.mdi-eye-off:before{content:"\F209"}.mdi-eye-off-outline:before{content:"\F6D0"}.mdi-eye-outline:before{content:"\F6CF"}.mdi-eye-plus:before{content:"\F86A"}.mdi-eye-plus-outline:before{content:"\F86B"}.mdi-eye-settings:before{content:"\F86C"}.mdi-eye-settings-outline:before{content:"\F86D"}.mdi-eyedropper:before{content:"\F20A"}.mdi-eyedropper-variant:before{content:"\F20B"}.mdi-face:before{content:"\F643"}.mdi-face-profile:before{content:"\F644"}.mdi-facebook:before{content:"\F20C"}.mdi-facebook-box:before{content:"\F20D"}.mdi-facebook-messenger:before{content:"\F20E"}.mdi-factory:before{content:"\F20F"}.mdi-fan:before{content:"\F210"}.mdi-fan-off:before{content:"\F81C"}.mdi-fast-forward:before{content:"\F211"}.mdi-fast-forward-outline:before{content:"\F6D1"}.mdi-fax:before{content:"\F212"}.mdi-feather:before{content:"\F6D2"}.mdi-ferry:before{content:"\F213"}.mdi-file:before{content:"\F214"}.mdi-file-account:before{content:"\F73A"}.mdi-file-chart:before{content:"\F215"}.mdi-file-check:before{content:"\F216"}.mdi-file-cloud:before{content:"\F217"}.mdi-file-compare:before{content:"\F8A9"}.mdi-file-delimited:before{content:"\F218"}.mdi-file-document:before{content:"\F219"}.mdi-file-document-box:before{content:"\F21A"}.mdi-file-excel:before{content:"\F21B"}.mdi-file-excel-box:before{content:"\F21C"}.mdi-file-export:before{content:"\F21D"}.mdi-file-find:before{content:"\F21E"}.mdi-file-hidden:before{content:"\F613"}.mdi-file-image:before{content:"\F21F"}.mdi-file-import:before{content:"\F220"}.mdi-file-lock:before{content:"\F221"}.mdi-file-multiple:before{content:"\F222"}.mdi-file-music:before{content:"\F223"}.mdi-file-outline:before{content:"\F224"}.mdi-file-pdf:before{content:"\F225"}.mdi-file-pdf-box:before{content:"\F226"}.mdi-file-percent:before{content:"\F81D"}.mdi-file-plus:before{content:"\F751"}.mdi-file-powerpoint:before{content:"\F227"}.mdi-file-powerpoint-box:before{content:"\F228"}.mdi-file-presentation-box:before{content:"\F229"}.mdi-file-question:before{content:"\F86E"}.mdi-file-restore:before{content:"\F670"}.mdi-file-send:before{content:"\F22A"}.mdi-file-tree:before{content:"\F645"}.mdi-file-video:before{content:"\F22B"}.mdi-file-word:before{content:"\F22C"}.mdi-file-word-box:before{content:"\F22D"}.mdi-file-xml:before{content:"\F22E"}.mdi-film:before{content:"\F22F"}.mdi-filmstrip:before{content:"\F230"}.mdi-filmstrip-off:before{content:"\F231"}.mdi-filter:before{content:"\F232"}.mdi-filter-outline:before{content:"\F233"}.mdi-filter-remove:before{content:"\F234"}.mdi-filter-remove-outline:before{content:"\F235"}.mdi-filter-variant:before{content:"\F236"}.mdi-finance:before{content:"\F81E"}.mdi-find-replace:before{content:"\F6D3"}.mdi-fingerprint:before{content:"\F237"}.mdi-fire:before{content:"\F238"}.mdi-fire-truck:before{content:"\F8AA"}.mdi-firefox:before{content:"\F239"}.mdi-fish:before{content:"\F23A"}.mdi-flag:before{content:"\F23B"}.mdi-flag-checkered:before{content:"\F23C"}.mdi-flag-outline:before{content:"\F23D"}.mdi-flag-triangle:before{content:"\F23F"}.mdi-flag-variant:before{content:"\F240"}.mdi-flag-variant-outline:before{content:"\F23E"}.mdi-flash:before{content:"\F241"}.mdi-flash-auto:before{content:"\F242"}.mdi-flash-circle:before{content:"\F81F"}.mdi-flash-off:before{content:"\F243"}.mdi-flash-outline:before{content:"\F6D4"}.mdi-flash-red-eye:before{content:"\F67A"}.mdi-flashlight:before{content:"\F244"}.mdi-flashlight-off:before{content:"\F245"}.mdi-flask:before{content:"\F093"}.mdi-flask-empty:before{content:"\F094"}.mdi-flask-empty-outline:before{content:"\F095"}.mdi-flask-outline:before{content:"\F096"}.mdi-flattr:before{content:"\F246"}.mdi-flip-to-back:before{content:"\F247"}.mdi-flip-to-front:before{content:"\F248"}.mdi-floor-plan:before{content:"\F820"}.mdi-floppy:before{content:"\F249"}.mdi-flower:before{content:"\F24A"}.mdi-folder:before{content:"\F24B"}.mdi-folder-account:before{content:"\F24C"}.mdi-folder-download:before{content:"\F24D"}.mdi-folder-google-drive:before{content:"\F24E"}.mdi-folder-image:before{content:"\F24F"}.mdi-folder-key:before{content:"\F8AB"}.mdi-folder-key-network:before{content:"\F8AC"}.mdi-folder-lock:before{content:"\F250"}.mdi-folder-lock-open:before{content:"\F251"}.mdi-folder-move:before{content:"\F252"}.mdi-folder-multiple:before{content:"\F253"}.mdi-folder-multiple-image:before{content:"\F254"}.mdi-folder-multiple-outline:before{content:"\F255"}.mdi-folder-network:before{content:"\F86F"}.mdi-folder-open:before{content:"\F76F"}.mdi-folder-outline:before{content:"\F256"}.mdi-folder-plus:before{content:"\F257"}.mdi-folder-remove:before{content:"\F258"}.mdi-folder-star:before{content:"\F69C"}.mdi-folder-upload:before{content:"\F259"}.mdi-font-awesome:before{content:"\F03A"}.mdi-food:before{content:"\F25A"}.mdi-food-apple:before{content:"\F25B"}.mdi-food-croissant:before{content:"\F7C7"}.mdi-food-fork-drink:before{content:"\F5F2"}.mdi-food-off:before{content:"\F5F3"}.mdi-food-variant:before{content:"\F25C"}.mdi-football:before{content:"\F25D"}.mdi-football-australian:before{content:"\F25E"}.mdi-football-helmet:before{content:"\F25F"}.mdi-forklift:before{content:"\F7C8"}.mdi-format-align-bottom:before{content:"\F752"}.mdi-format-align-center:before{content:"\F260"}.mdi-format-align-justify:before{content:"\F261"}.mdi-format-align-left:before{content:"\F262"}.mdi-format-align-middle:before{content:"\F753"}.mdi-format-align-right:before{content:"\F263"}.mdi-format-align-top:before{content:"\F754"}.mdi-format-annotation-plus:before{content:"\F646"}.mdi-format-bold:before{content:"\F264"}.mdi-format-clear:before{content:"\F265"}.mdi-format-color-fill:before{content:"\F266"}.mdi-format-color-text:before{content:"\F69D"}.mdi-format-float-center:before{content:"\F267"}.mdi-format-float-left:before{content:"\F268"}.mdi-format-float-none:before{content:"\F269"}.mdi-format-float-right:before{content:"\F26A"}.mdi-format-font:before{content:"\F6D5"}.mdi-format-header-1:before{content:"\F26B"}.mdi-format-header-2:before{content:"\F26C"}.mdi-format-header-3:before{content:"\F26D"}.mdi-format-header-4:before{content:"\F26E"}.mdi-format-header-5:before{content:"\F26F"}.mdi-format-header-6:before{content:"\F270"}.mdi-format-header-decrease:before{content:"\F271"}.mdi-format-header-equal:before{content:"\F272"}.mdi-format-header-increase:before{content:"\F273"}.mdi-format-header-pound:before{content:"\F274"}.mdi-format-horizontal-align-center:before{content:"\F61E"}.mdi-format-horizontal-align-left:before{content:"\F61F"}.mdi-format-horizontal-align-right:before{content:"\F620"}.mdi-format-indent-decrease:before{content:"\F275"}.mdi-format-indent-increase:before{content:"\F276"}.mdi-format-italic:before{content:"\F277"}.mdi-format-line-spacing:before{content:"\F278"}.mdi-format-line-style:before{content:"\F5C8"}.mdi-format-line-weight:before{content:"\F5C9"}.mdi-format-list-bulleted:before{content:"\F279"}.mdi-format-list-bulleted-type:before{content:"\F27A"}.mdi-format-list-checks:before{content:"\F755"}.mdi-format-list-numbers:before{content:"\F27B"}.mdi-format-page-break:before{content:"\F6D6"}.mdi-format-paint:before{content:"\F27C"}.mdi-format-paragraph:before{content:"\F27D"}.mdi-format-pilcrow:before{content:"\F6D7"}.mdi-format-quote-close:before{content:"\F27E"}.mdi-format-quote-open:before{content:"\F756"}.mdi-format-rotate-90:before{content:"\F6A9"}.mdi-format-section:before{content:"\F69E"}.mdi-format-size:before{content:"\F27F"}.mdi-format-strikethrough:before{content:"\F280"}.mdi-format-strikethrough-variant:before{content:"\F281"}.mdi-format-subscript:before{content:"\F282"}.mdi-format-superscript:before{content:"\F283"}.mdi-format-text:before{content:"\F284"}.mdi-format-textdirection-l-to-r:before{content:"\F285"}.mdi-format-textdirection-r-to-l:before{content:"\F286"}.mdi-format-title:before{content:"\F5F4"}.mdi-format-underline:before{content:"\F287"}.mdi-format-vertical-align-bottom:before{content:"\F621"}.mdi-format-vertical-align-center:before{content:"\F622"}.mdi-format-vertical-align-top:before{content:"\F623"}.mdi-format-wrap-inline:before{content:"\F288"}.mdi-format-wrap-square:before{content:"\F289"}.mdi-format-wrap-tight:before{content:"\F28A"}.mdi-format-wrap-top-bottom:before{content:"\F28B"}.mdi-forum:before{content:"\F28C"}.mdi-forum-outline:before{content:"\F821"}.mdi-forward:before{content:"\F28D"}.mdi-foursquare:before{content:"\F28E"}.mdi-fridge:before{content:"\F28F"}.mdi-fridge-filled:before{content:"\F290"}.mdi-fridge-filled-bottom:before{content:"\F291"}.mdi-fridge-filled-top:before{content:"\F292"}.mdi-fuel:before{content:"\F7C9"}.mdi-fullscreen:before{content:"\F293"}.mdi-fullscreen-exit:before{content:"\F294"}.mdi-function:before{content:"\F295"}.mdi-function-variant:before{content:"\F870"}.mdi-gamepad:before{content:"\F296"}.mdi-gamepad-variant:before{content:"\F297"}.mdi-garage:before{content:"\F6D8"}.mdi-garage-alert:before{content:"\F871"}.mdi-garage-open:before{content:"\F6D9"}.mdi-gas-cylinder:before{content:"\F647"}.mdi-gas-station:before{content:"\F298"}.mdi-gate:before{content:"\F299"}.mdi-gauge:before{content:"\F29A"}.mdi-gauge-empty:before{content:"\F872"}.mdi-gauge-full:before{content:"\F873"}.mdi-gauge-low:before{content:"\F874"}.mdi-gavel:before{content:"\F29B"}.mdi-gender-female:before{content:"\F29C"}.mdi-gender-male:before{content:"\F29D"}.mdi-gender-male-female:before{content:"\F29E"}.mdi-gender-transgender:before{content:"\F29F"}.mdi-gesture:before{content:"\F7CA"}.mdi-gesture-double-tap:before{content:"\F73B"}.mdi-gesture-swipe-down:before{content:"\F73C"}.mdi-gesture-swipe-left:before{content:"\F73D"}.mdi-gesture-swipe-right:before{content:"\F73E"}.mdi-gesture-swipe-up:before{content:"\F73F"}.mdi-gesture-tap:before{content:"\F740"}.mdi-gesture-two-double-tap:before{content:"\F741"}.mdi-gesture-two-tap:before{content:"\F742"}.mdi-ghost:before{content:"\F2A0"}.mdi-gift:before{content:"\F2A1"}.mdi-git:before{content:"\F2A2"}.mdi-github-box:before{content:"\F2A3"}.mdi-github-circle:before{content:"\F2A4"}.mdi-github-face:before{content:"\F6DA"}.mdi-glass-cocktail:before{content:"\F356"}.mdi-glass-flute:before{content:"\F2A5"}.mdi-glass-mug:before{content:"\F2A6"}.mdi-glass-stange:before{content:"\F2A7"}.mdi-glass-tulip:before{content:"\F2A8"}.mdi-glass-wine:before{content:"\F875"}.mdi-glassdoor:before{content:"\F2A9"}.mdi-glasses:before{content:"\F2AA"}.mdi-gmail:before{content:"\F2AB"}.mdi-gnome:before{content:"\F2AC"}.mdi-golf:before{content:"\F822"}.mdi-gondola:before{content:"\F685"}.mdi-google:before{content:"\F2AD"}.mdi-google-analytics:before{content:"\F7CB"}.mdi-google-assistant:before{content:"\F7CC"}.mdi-google-cardboard:before{content:"\F2AE"}.mdi-google-chrome:before{content:"\F2AF"}.mdi-google-circles:before{content:"\F2B0"}.mdi-google-circles-communities:before{content:"\F2B1"}.mdi-google-circles-extended:before{content:"\F2B2"}.mdi-google-circles-group:before{content:"\F2B3"}.mdi-google-controller:before{content:"\F2B4"}.mdi-google-controller-off:before{content:"\F2B5"}.mdi-google-drive:before{content:"\F2B6"}.mdi-google-earth:before{content:"\F2B7"}.mdi-google-glass:before{content:"\F2B8"}.mdi-google-home:before{content:"\F823"}.mdi-google-keep:before{content:"\F6DB"}.mdi-google-maps:before{content:"\F5F5"}.mdi-google-nearby:before{content:"\F2B9"}.mdi-google-pages:before{content:"\F2BA"}.mdi-google-photos:before{content:"\F6DC"}.mdi-google-physical-web:before{content:"\F2BB"}.mdi-google-play:before{content:"\F2BC"}.mdi-google-plus:before{content:"\F2BD"}.mdi-google-plus-box:before{content:"\F2BE"}.mdi-google-translate:before{content:"\F2BF"}.mdi-google-wallet:before{content:"\F2C0"}.mdi-gpu:before{content:"\F8AD"}.mdi-gradient:before{content:"\F69F"}.mdi-graphql:before{content:"\F876"}.mdi-grease-pencil:before{content:"\F648"}.mdi-grid:before{content:"\F2C1"}.mdi-grid-large:before{content:"\F757"}.mdi-grid-off:before{content:"\F2C2"}.mdi-group:before{content:"\F2C3"}.mdi-guitar-acoustic:before{content:"\F770"}.mdi-guitar-electric:before{content:"\F2C4"}.mdi-guitar-pick:before{content:"\F2C5"}.mdi-guitar-pick-outline:before{content:"\F2C6"}.mdi-guy-fawkes-mask:before{content:"\F824"}.mdi-hackernews:before{content:"\F624"}.mdi-hamburger:before{content:"\F684"}.mdi-hand-pointing-right:before{content:"\F2C7"}.mdi-hanger:before{content:"\F2C8"}.mdi-hangouts:before{content:"\F2C9"}.mdi-harddisk:before{content:"\F2CA"}.mdi-headphones:before{content:"\F2CB"}.mdi-headphones-box:before{content:"\F2CC"}.mdi-headphones-off:before{content:"\F7CD"}.mdi-headphones-settings:before{content:"\F2CD"}.mdi-headset:before{content:"\F2CE"}.mdi-headset-dock:before{content:"\F2CF"}.mdi-headset-off:before{content:"\F2D0"}.mdi-heart:before{content:"\F2D1"}.mdi-heart-box:before{content:"\F2D2"}.mdi-heart-box-outline:before{content:"\F2D3"}.mdi-heart-broken:before{content:"\F2D4"}.mdi-heart-half:before{content:"\F6DE"}.mdi-heart-half-full:before{content:"\F6DD"}.mdi-heart-half-outline:before{content:"\F6DF"}.mdi-heart-off:before{content:"\F758"}.mdi-heart-outline:before{content:"\F2D5"}.mdi-heart-pulse:before{content:"\F5F6"}.mdi-help:before{content:"\F2D6"}.mdi-help-box:before{content:"\F78A"}.mdi-help-circle:before{content:"\F2D7"}.mdi-help-circle-outline:before{content:"\F625"}.mdi-help-network:before{content:"\F6F4"}.mdi-hexagon:before{content:"\F2D8"}.mdi-hexagon-multiple:before{content:"\F6E0"}.mdi-hexagon-outline:before{content:"\F2D9"}.mdi-high-definition:before{content:"\F7CE"}.mdi-high-definition-box:before{content:"\F877"}.mdi-highway:before{content:"\F5F7"}.mdi-history:before{content:"\F2DA"}.mdi-hockey-puck:before{content:"\F878"}.mdi-hockey-sticks:before{content:"\F879"}.mdi-hololens:before{content:"\F2DB"}.mdi-home:before{content:"\F2DC"}.mdi-home-account:before{content:"\F825"}.mdi-home-alert:before{content:"\F87A"}.mdi-home-assistant:before{content:"\F7CF"}.mdi-home-automation:before{content:"\F7D0"}.mdi-home-circle:before{content:"\F7D1"}.mdi-home-currency-usd:before{content:"\F8AE"}.mdi-home-heart:before{content:"\F826"}.mdi-home-map-marker:before{content:"\F5F8"}.mdi-home-modern:before{content:"\F2DD"}.mdi-home-outline:before{content:"\F6A0"}.mdi-home-variant:before{content:"\F2DE"}.mdi-hook:before{content:"\F6E1"}.mdi-hook-off:before{content:"\F6E2"}.mdi-hops:before{content:"\F2DF"}.mdi-hospital:before{content:"\F2E0"}.mdi-hospital-building:before{content:"\F2E1"}.mdi-hospital-marker:before{content:"\F2E2"}.mdi-hot-tub:before{content:"\F827"}.mdi-hotel:before{content:"\F2E3"}.mdi-houzz:before{content:"\F2E4"}.mdi-houzz-box:before{content:"\F2E5"}.mdi-hulu:before{content:"\F828"}.mdi-human:before{content:"\F2E6"}.mdi-human-child:before{content:"\F2E7"}.mdi-human-female:before{content:"\F649"}.mdi-human-greeting:before{content:"\F64A"}.mdi-human-handsdown:before{content:"\F64B"}.mdi-human-handsup:before{content:"\F64C"}.mdi-human-male:before{content:"\F64D"}.mdi-human-male-female:before{content:"\F2E8"}.mdi-human-pregnant:before{content:"\F5CF"}.mdi-humble-bundle:before{content:"\F743"}.mdi-ice-cream:before{content:"\F829"}.mdi-image:before{content:"\F2E9"}.mdi-image-album:before{content:"\F2EA"}.mdi-image-area:before{content:"\F2EB"}.mdi-image-area-close:before{content:"\F2EC"}.mdi-image-broken:before{content:"\F2ED"}.mdi-image-broken-variant:before{content:"\F2EE"}.mdi-image-filter:before{content:"\F2EF"}.mdi-image-filter-black-white:before{content:"\F2F0"}.mdi-image-filter-center-focus:before{content:"\F2F1"}.mdi-image-filter-center-focus-weak:before{content:"\F2F2"}.mdi-image-filter-drama:before{content:"\F2F3"}.mdi-image-filter-frames:before{content:"\F2F4"}.mdi-image-filter-hdr:before{content:"\F2F5"}.mdi-image-filter-none:before{content:"\F2F6"}.mdi-image-filter-tilt-shift:before{content:"\F2F7"}.mdi-image-filter-vintage:before{content:"\F2F8"}.mdi-image-multiple:before{content:"\F2F9"}.mdi-image-off:before{content:"\F82A"}.mdi-image-plus:before{content:"\F87B"}.mdi-import:before{content:"\F2FA"}.mdi-inbox:before{content:"\F686"}.mdi-inbox-arrow-down:before{content:"\F2FB"}.mdi-inbox-arrow-up:before{content:"\F3D1"}.mdi-inbox-multiple:before{content:"\F8AF"}.mdi-incognito:before{content:"\F5F9"}.mdi-infinity:before{content:"\F6E3"}.mdi-information:before{content:"\F2FC"}.mdi-information-outline:before{content:"\F2FD"}.mdi-information-variant:before{content:"\F64E"}.mdi-instagram:before{content:"\F2FE"}.mdi-instapaper:before{content:"\F2FF"}.mdi-internet-explorer:before{content:"\F300"}.mdi-invert-colors:before{content:"\F301"}.mdi-itunes:before{content:"\F676"}.mdi-jeepney:before{content:"\F302"}.mdi-jira:before{content:"\F303"}.mdi-jquery:before{content:"\F87C"}.mdi-jsfiddle:before{content:"\F304"}.mdi-json:before{content:"\F626"}.mdi-karate:before{content:"\F82B"}.mdi-keg:before{content:"\F305"}.mdi-kettle:before{content:"\F5FA"}.mdi-key:before{content:"\F306"}.mdi-key-change:before{content:"\F307"}.mdi-key-minus:before{content:"\F308"}.mdi-key-plus:before{content:"\F309"}.mdi-key-remove:before{content:"\F30A"}.mdi-key-variant:before{content:"\F30B"}.mdi-keyboard:before{content:"\F30C"}.mdi-keyboard-backspace:before{content:"\F30D"}.mdi-keyboard-caps:before{content:"\F30E"}.mdi-keyboard-close:before{content:"\F30F"}.mdi-keyboard-off:before{content:"\F310"}.mdi-keyboard-return:before{content:"\F311"}.mdi-keyboard-tab:before{content:"\F312"}.mdi-keyboard-variant:before{content:"\F313"}.mdi-kickstarter:before{content:"\F744"}.mdi-kodi:before{content:"\F314"}.mdi-label:before{content:"\F315"}.mdi-label-outline:before{content:"\F316"}.mdi-ladybug:before{content:"\F82C"}.mdi-lambda:before{content:"\F627"}.mdi-lamp:before{content:"\F6B4"}.mdi-lan:before{content:"\F317"}.mdi-lan-connect:before{content:"\F318"}.mdi-lan-disconnect:before{content:"\F319"}.mdi-lan-pending:before{content:"\F31A"}.mdi-language-c:before{content:"\F671"}.mdi-language-cpp:before{content:"\F672"}.mdi-language-csharp:before{content:"\F31B"}.mdi-language-css3:before{content:"\F31C"}.mdi-language-go:before{content:"\F7D2"}.mdi-language-html5:before{content:"\F31D"}.mdi-language-javascript:before{content:"\F31E"}.mdi-language-lua:before{content:"\F8B0"}.mdi-language-php:before{content:"\F31F"}.mdi-language-python:before{content:"\F320"}.mdi-language-python-text:before{content:"\F321"}.mdi-language-r:before{content:"\F7D3"}.mdi-language-swift:before{content:"\F6E4"}.mdi-language-typescript:before{content:"\F6E5"}.mdi-laptop:before{content:"\F322"}.mdi-laptop-chromebook:before{content:"\F323"}.mdi-laptop-mac:before{content:"\F324"}.mdi-laptop-off:before{content:"\F6E6"}.mdi-laptop-windows:before{content:"\F325"}.mdi-lastfm:before{content:"\F326"}.mdi-lastpass:before{content:"\F446"}.mdi-launch:before{content:"\F327"}.mdi-lava-lamp:before{content:"\F7D4"}.mdi-layers:before{content:"\F328"}.mdi-layers-off:before{content:"\F329"}.mdi-lead-pencil:before{content:"\F64F"}.mdi-leaf:before{content:"\F32A"}.mdi-led-off:before{content:"\F32B"}.mdi-led-on:before{content:"\F32C"}.mdi-led-outline:before{content:"\F32D"}.mdi-led-strip:before{content:"\F7D5"}.mdi-led-variant-off:before{content:"\F32E"}.mdi-led-variant-on:before{content:"\F32F"}.mdi-led-variant-outline:before{content:"\F330"}.mdi-library:before{content:"\F331"}.mdi-library-books:before{content:"\F332"}.mdi-library-music:before{content:"\F333"}.mdi-library-plus:before{content:"\F334"}.mdi-lifebuoy:before{content:"\F87D"}.mdi-lightbulb:before{content:"\F335"}.mdi-lightbulb-on:before{content:"\F6E7"}.mdi-lightbulb-on-outline:before{content:"\F6E8"}.mdi-lightbulb-outline:before{content:"\F336"}.mdi-link:before{content:"\F337"}.mdi-link-off:before{content:"\F338"}.mdi-link-variant:before{content:"\F339"}.mdi-link-variant-off:before{content:"\F33A"}.mdi-linkedin:before{content:"\F33B"}.mdi-linkedin-box:before{content:"\F33C"}.mdi-linux:before{content:"\F33D"}.mdi-loading:before{content:"\F771"}.mdi-lock:before{content:"\F33E"}.mdi-lock-open:before{content:"\F33F"}.mdi-lock-open-outline:before{content:"\F340"}.mdi-lock-outline:before{content:"\F341"}.mdi-lock-pattern:before{content:"\F6E9"}.mdi-lock-plus:before{content:"\F5FB"}.mdi-lock-reset:before{content:"\F772"}.mdi-lock-smart:before{content:"\F8B1"}.mdi-locker:before{content:"\F7D6"}.mdi-locker-multiple:before{content:"\F7D7"}.mdi-login:before{content:"\F342"}.mdi-login-variant:before{content:"\F5FC"}.mdi-logout:before{content:"\F343"}.mdi-logout-variant:before{content:"\F5FD"}.mdi-looks:before{content:"\F344"}.mdi-loop:before{content:"\F6EA"}.mdi-loupe:before{content:"\F345"}.mdi-lumx:before{content:"\F346"}.mdi-magnet:before{content:"\F347"}.mdi-magnet-on:before{content:"\F348"}.mdi-magnify:before{content:"\F349"}.mdi-magnify-minus:before{content:"\F34A"}.mdi-magnify-minus-outline:before{content:"\F6EB"}.mdi-magnify-plus:before{content:"\F34B"}.mdi-magnify-plus-outline:before{content:"\F6EC"}.mdi-mail-ru:before{content:"\F34C"}.mdi-mailbox:before{content:"\F6ED"}.mdi-map:before{content:"\F34D"}.mdi-map-marker:before{content:"\F34E"}.mdi-map-marker-circle:before{content:"\F34F"}.mdi-map-marker-minus:before{content:"\F650"}.mdi-map-marker-multiple:before{content:"\F350"}.mdi-map-marker-off:before{content:"\F351"}.mdi-map-marker-outline:before{content:"\F7D8"}.mdi-map-marker-plus:before{content:"\F651"}.mdi-map-marker-radius:before{content:"\F352"}.mdi-margin:before{content:"\F353"}.mdi-markdown:before{content:"\F354"}.mdi-marker:before{content:"\F652"}.mdi-marker-check:before{content:"\F355"}.mdi-material-ui:before{content:"\F357"}.mdi-math-compass:before{content:"\F358"}.mdi-matrix:before{content:"\F628"}.mdi-maxcdn:before{content:"\F359"}.mdi-medical-bag:before{content:"\F6EE"}.mdi-medium:before{content:"\F35A"}.mdi-memory:before{content:"\F35B"}.mdi-menu:before{content:"\F35C"}.mdi-menu-down:before{content:"\F35D"}.mdi-menu-down-outline:before{content:"\F6B5"}.mdi-menu-left:before{content:"\F35E"}.mdi-menu-right:before{content:"\F35F"}.mdi-menu-up:before{content:"\F360"}.mdi-menu-up-outline:before{content:"\F6B6"}.mdi-message:before{content:"\F361"}.mdi-message-alert:before{content:"\F362"}.mdi-message-bulleted:before{content:"\F6A1"}.mdi-message-bulleted-off:before{content:"\F6A2"}.mdi-message-draw:before{content:"\F363"}.mdi-message-image:before{content:"\F364"}.mdi-message-outline:before{content:"\F365"}.mdi-message-plus:before{content:"\F653"}.mdi-message-processing:before{content:"\F366"}.mdi-message-reply:before{content:"\F367"}.mdi-message-reply-text:before{content:"\F368"}.mdi-message-settings:before{content:"\F6EF"}.mdi-message-settings-variant:before{content:"\F6F0"}.mdi-message-text:before{content:"\F369"}.mdi-message-text-outline:before{content:"\F36A"}.mdi-message-video:before{content:"\F36B"}.mdi-meteor:before{content:"\F629"}.mdi-metronome:before{content:"\F7D9"}.mdi-metronome-tick:before{content:"\F7DA"}.mdi-micro-sd:before{content:"\F7DB"}.mdi-microphone:before{content:"\F36C"}.mdi-microphone-minus:before{content:"\F8B2"}.mdi-microphone-off:before{content:"\F36D"}.mdi-microphone-outline:before{content:"\F36E"}.mdi-microphone-plus:before{content:"\F8B3"}.mdi-microphone-settings:before{content:"\F36F"}.mdi-microphone-variant:before{content:"\F370"}.mdi-microphone-variant-off:before{content:"\F371"}.mdi-microscope:before{content:"\F654"}.mdi-microsoft:before{content:"\F372"}.mdi-minecraft:before{content:"\F373"}.mdi-minus:before{content:"\F374"}.mdi-minus-box:before{content:"\F375"}.mdi-minus-box-outline:before{content:"\F6F1"}.mdi-minus-circle:before{content:"\F376"}.mdi-minus-circle-outline:before{content:"\F377"}.mdi-minus-network:before{content:"\F378"}.mdi-mixcloud:before{content:"\F62A"}.mdi-mixed-reality:before{content:"\F87E"}.mdi-mixer:before{content:"\F7DC"}.mdi-monitor:before{content:"\F379"}.mdi-monitor-multiple:before{content:"\F37A"}.mdi-more:before{content:"\F37B"}.mdi-motorbike:before{content:"\F37C"}.mdi-mouse:before{content:"\F37D"}.mdi-mouse-off:before{content:"\F37E"}.mdi-mouse-variant:before{content:"\F37F"}.mdi-mouse-variant-off:before{content:"\F380"}.mdi-move-resize:before{content:"\F655"}.mdi-move-resize-variant:before{content:"\F656"}.mdi-movie:before{content:"\F381"}.mdi-movie-roll:before{content:"\F7DD"}.mdi-multiplication:before{content:"\F382"}.mdi-multiplication-box:before{content:"\F383"}.mdi-mushroom:before{content:"\F7DE"}.mdi-mushroom-outline:before{content:"\F7DF"}.mdi-music:before{content:"\F759"}.mdi-music-box:before{content:"\F384"}.mdi-music-box-outline:before{content:"\F385"}.mdi-music-circle:before{content:"\F386"}.mdi-music-note:before{content:"\F387"}.mdi-music-note-bluetooth:before{content:"\F5FE"}.mdi-music-note-bluetooth-off:before{content:"\F5FF"}.mdi-music-note-eighth:before{content:"\F388"}.mdi-music-note-half:before{content:"\F389"}.mdi-music-note-off:before{content:"\F38A"}.mdi-music-note-quarter:before{content:"\F38B"}.mdi-music-note-sixteenth:before{content:"\F38C"}.mdi-music-note-whole:before{content:"\F38D"}.mdi-music-off:before{content:"\F75A"}.mdi-nativescript:before{content:"\F87F"}.mdi-nature:before{content:"\F38E"}.mdi-nature-people:before{content:"\F38F"}.mdi-navigation:before{content:"\F390"}.mdi-near-me:before{content:"\F5CD"}.mdi-needle:before{content:"\F391"}.mdi-nest-protect:before{content:"\F392"}.mdi-nest-thermostat:before{content:"\F393"}.mdi-netflix:before{content:"\F745"}.mdi-network:before{content:"\F6F2"}.mdi-new-box:before{content:"\F394"}.mdi-newspaper:before{content:"\F395"}.mdi-nfc:before{content:"\F396"}.mdi-nfc-tap:before{content:"\F397"}.mdi-nfc-variant:before{content:"\F398"}.mdi-ninja:before{content:"\F773"}.mdi-nintendo-switch:before{content:"\F7E0"}.mdi-nodejs:before{content:"\F399"}.mdi-note:before{content:"\F39A"}.mdi-note-multiple:before{content:"\F6B7"}.mdi-note-multiple-outline:before{content:"\F6B8"}.mdi-note-outline:before{content:"\F39B"}.mdi-note-plus:before{content:"\F39C"}.mdi-note-plus-outline:before{content:"\F39D"}.mdi-note-text:before{content:"\F39E"}.mdi-notebook:before{content:"\F82D"}.mdi-notification-clear-all:before{content:"\F39F"}.mdi-npm:before{content:"\F6F6"}.mdi-nuke:before{content:"\F6A3"}.mdi-null:before{content:"\F7E1"}.mdi-numeric:before{content:"\F3A0"}.mdi-numeric-0-box:before{content:"\F3A1"}.mdi-numeric-0-box-multiple-outline:before{content:"\F3A2"}.mdi-numeric-0-box-outline:before{content:"\F3A3"}.mdi-numeric-1-box:before{content:"\F3A4"}.mdi-numeric-1-box-multiple-outline:before{content:"\F3A5"}.mdi-numeric-1-box-outline:before{content:"\F3A6"}.mdi-numeric-2-box:before{content:"\F3A7"}.mdi-numeric-2-box-multiple-outline:before{content:"\F3A8"}.mdi-numeric-2-box-outline:before{content:"\F3A9"}.mdi-numeric-3-box:before{content:"\F3AA"}.mdi-numeric-3-box-multiple-outline:before{content:"\F3AB"}.mdi-numeric-3-box-outline:before{content:"\F3AC"}.mdi-numeric-4-box:before{content:"\F3AD"}.mdi-numeric-4-box-multiple-outline:before{content:"\F3AE"}.mdi-numeric-4-box-outline:before{content:"\F3AF"}.mdi-numeric-5-box:before{content:"\F3B0"}.mdi-numeric-5-box-multiple-outline:before{content:"\F3B1"}.mdi-numeric-5-box-outline:before{content:"\F3B2"}.mdi-numeric-6-box:before{content:"\F3B3"}.mdi-numeric-6-box-multiple-outline:before{content:"\F3B4"}.mdi-numeric-6-box-outline:before{content:"\F3B5"}.mdi-numeric-7-box:before{content:"\F3B6"}.mdi-numeric-7-box-multiple-outline:before{content:"\F3B7"}.mdi-numeric-7-box-outline:before{content:"\F3B8"}.mdi-numeric-8-box:before{content:"\F3B9"}.mdi-numeric-8-box-multiple-outline:before{content:"\F3BA"}.mdi-numeric-8-box-outline:before{content:"\F3BB"}.mdi-numeric-9-box:before{content:"\F3BC"}.mdi-numeric-9-box-multiple-outline:before{content:"\F3BD"}.mdi-numeric-9-box-outline:before{content:"\F3BE"}.mdi-numeric-9-plus-box:before{content:"\F3BF"}.mdi-numeric-9-plus-box-multiple-outline:before{content:"\F3C0"}.mdi-numeric-9-plus-box-outline:before{content:"\F3C1"}.mdi-nut:before{content:"\F6F7"}.mdi-nutrition:before{content:"\F3C2"}.mdi-oar:before{content:"\F67B"}.mdi-octagon:before{content:"\F3C3"}.mdi-octagon-outline:before{content:"\F3C4"}.mdi-octagram:before{content:"\F6F8"}.mdi-octagram-outline:before{content:"\F774"}.mdi-odnoklassniki:before{content:"\F3C5"}.mdi-office:before{content:"\F3C6"}.mdi-oil:before{content:"\F3C7"}.mdi-oil-temperature:before{content:"\F3C8"}.mdi-omega:before{content:"\F3C9"}.mdi-onedrive:before{content:"\F3CA"}.mdi-onenote:before{content:"\F746"}.mdi-onepassword:before{content:"\F880"}.mdi-opacity:before{content:"\F5CC"}.mdi-open-in-app:before{content:"\F3CB"}.mdi-open-in-new:before{content:"\F3CC"}.mdi-openid:before{content:"\F3CD"}.mdi-opera:before{content:"\F3CE"}.mdi-orbit:before{content:"\F018"}.mdi-ornament:before{content:"\F3CF"}.mdi-ornament-variant:before{content:"\F3D0"}.mdi-owl:before{content:"\F3D2"}.mdi-package:before{content:"\F3D3"}.mdi-package-down:before{content:"\F3D4"}.mdi-package-up:before{content:"\F3D5"}.mdi-package-variant:before{content:"\F3D6"}.mdi-package-variant-closed:before{content:"\F3D7"}.mdi-page-first:before{content:"\F600"}.mdi-page-last:before{content:"\F601"}.mdi-page-layout-body:before{content:"\F6F9"}.mdi-page-layout-footer:before{content:"\F6FA"}.mdi-page-layout-header:before{content:"\F6FB"}.mdi-page-layout-sidebar-left:before{content:"\F6FC"}.mdi-page-layout-sidebar-right:before{content:"\F6FD"}.mdi-palette:before{content:"\F3D8"}.mdi-palette-advanced:before{content:"\F3D9"}.mdi-palette-swatch:before{content:"\F8B4"}.mdi-panda:before{content:"\F3DA"}.mdi-pandora:before{content:"\F3DB"}.mdi-panorama:before{content:"\F3DC"}.mdi-panorama-fisheye:before{content:"\F3DD"}.mdi-panorama-horizontal:before{content:"\F3DE"}.mdi-panorama-vertical:before{content:"\F3DF"}.mdi-panorama-wide-angle:before{content:"\F3E0"}.mdi-paper-cut-vertical:before{content:"\F3E1"}.mdi-paperclip:before{content:"\F3E2"}.mdi-parking:before{content:"\F3E3"}.mdi-passport:before{content:"\F7E2"}.mdi-patreon:before{content:"\F881"}.mdi-pause:before{content:"\F3E4"}.mdi-pause-circle:before{content:"\F3E5"}.mdi-pause-circle-outline:before{content:"\F3E6"}.mdi-pause-octagon:before{content:"\F3E7"}.mdi-pause-octagon-outline:before{content:"\F3E8"}.mdi-paw:before{content:"\F3E9"}.mdi-paw-off:before{content:"\F657"}.mdi-paypal:before{content:"\F882"}.mdi-peace:before{content:"\F883"}.mdi-pen:before{content:"\F3EA"}.mdi-pencil:before{content:"\F3EB"}.mdi-pencil-box:before{content:"\F3EC"}.mdi-pencil-box-outline:before{content:"\F3ED"}.mdi-pencil-circle:before{content:"\F6FE"}.mdi-pencil-circle-outline:before{content:"\F775"}.mdi-pencil-lock:before{content:"\F3EE"}.mdi-pencil-off:before{content:"\F3EF"}.mdi-pentagon:before{content:"\F6FF"}.mdi-pentagon-outline:before{content:"\F700"}.mdi-percent:before{content:"\F3F0"}.mdi-periodic-table:before{content:"\F8B5"}.mdi-periodic-table-co2:before{content:"\F7E3"}.mdi-periscope:before{content:"\F747"}.mdi-pharmacy:before{content:"\F3F1"}.mdi-phone:before{content:"\F3F2"}.mdi-phone-bluetooth:before{content:"\F3F3"}.mdi-phone-classic:before{content:"\F602"}.mdi-phone-forward:before{content:"\F3F4"}.mdi-phone-hangup:before{content:"\F3F5"}.mdi-phone-in-talk:before{content:"\F3F6"}.mdi-phone-incoming:before{content:"\F3F7"}.mdi-phone-locked:before{content:"\F3F8"}.mdi-phone-log:before{content:"\F3F9"}.mdi-phone-minus:before{content:"\F658"}.mdi-phone-missed:before{content:"\F3FA"}.mdi-phone-outgoing:before{content:"\F3FB"}.mdi-phone-paused:before{content:"\F3FC"}.mdi-phone-plus:before{content:"\F659"}.mdi-phone-return:before{content:"\F82E"}.mdi-phone-rotate-landscape:before{content:"\F884"}.mdi-phone-rotate-portrait:before{content:"\F885"}.mdi-phone-settings:before{content:"\F3FD"}.mdi-phone-voip:before{content:"\F3FE"}.mdi-pi:before{content:"\F3FF"}.mdi-pi-box:before{content:"\F400"}.mdi-piano:before{content:"\F67C"}.mdi-pickaxe:before{content:"\F8B6"}.mdi-pier:before{content:"\F886"}.mdi-pier-crane:before{content:"\F887"}.mdi-pig:before{content:"\F401"}.mdi-pill:before{content:"\F402"}.mdi-pillar:before{content:"\F701"}.mdi-pin:before{content:"\F403"}.mdi-pin-off:before{content:"\F404"}.mdi-pine-tree:before{content:"\F405"}.mdi-pine-tree-box:before{content:"\F406"}.mdi-pinterest:before{content:"\F407"}.mdi-pinterest-box:before{content:"\F408"}.mdi-pipe:before{content:"\F7E4"}.mdi-pipe-disconnected:before{content:"\F7E5"}.mdi-pipe-leak:before{content:"\F888"}.mdi-pistol:before{content:"\F702"}.mdi-piston:before{content:"\F889"}.mdi-pizza:before{content:"\F409"}.mdi-plane-shield:before{content:"\F6BA"}.mdi-play:before{content:"\F40A"}.mdi-play-box-outline:before{content:"\F40B"}.mdi-play-circle:before{content:"\F40C"}.mdi-play-circle-outline:before{content:"\F40D"}.mdi-play-network:before{content:"\F88A"}.mdi-play-pause:before{content:"\F40E"}.mdi-play-protected-content:before{content:"\F40F"}.mdi-playlist-check:before{content:"\F5C7"}.mdi-playlist-minus:before{content:"\F410"}.mdi-playlist-play:before{content:"\F411"}.mdi-playlist-plus:before{content:"\F412"}.mdi-playlist-remove:before{content:"\F413"}.mdi-playstation:before{content:"\F414"}.mdi-plex:before{content:"\F6B9"}.mdi-plus:before{content:"\F415"}.mdi-plus-box:before{content:"\F416"}.mdi-plus-box-outline:before{content:"\F703"}.mdi-plus-circle:before{content:"\F417"}.mdi-plus-circle-multiple-outline:before{content:"\F418"}.mdi-plus-circle-outline:before{content:"\F419"}.mdi-plus-network:before{content:"\F41A"}.mdi-plus-one:before{content:"\F41B"}.mdi-plus-outline:before{content:"\F704"}.mdi-pocket:before{content:"\F41C"}.mdi-pokeball:before{content:"\F41D"}.mdi-poker-chip:before{content:"\F82F"}.mdi-polaroid:before{content:"\F41E"}.mdi-poll:before{content:"\F41F"}.mdi-poll-box:before{content:"\F420"}.mdi-polymer:before{content:"\F421"}.mdi-pool:before{content:"\F606"}.mdi-popcorn:before{content:"\F422"}.mdi-pot:before{content:"\F65A"}.mdi-pot-mix:before{content:"\F65B"}.mdi-pound:before{content:"\F423"}.mdi-pound-box:before{content:"\F424"}.mdi-power:before{content:"\F425"}.mdi-power-plug:before{content:"\F6A4"}.mdi-power-plug-off:before{content:"\F6A5"}.mdi-power-settings:before{content:"\F426"}.mdi-power-socket:before{content:"\F427"}.mdi-power-socket-eu:before{content:"\F7E6"}.mdi-power-socket-uk:before{content:"\F7E7"}.mdi-power-socket-us:before{content:"\F7E8"}.mdi-prescription:before{content:"\F705"}.mdi-presentation:before{content:"\F428"}.mdi-presentation-play:before{content:"\F429"}.mdi-printer:before{content:"\F42A"}.mdi-printer-3d:before{content:"\F42B"}.mdi-printer-alert:before{content:"\F42C"}.mdi-printer-settings:before{content:"\F706"}.mdi-priority-high:before{content:"\F603"}.mdi-priority-low:before{content:"\F604"}.mdi-professional-hexagon:before{content:"\F42D"}.mdi-projector:before{content:"\F42E"}.mdi-projector-screen:before{content:"\F42F"}.mdi-publish:before{content:"\F6A6"}.mdi-pulse:before{content:"\F430"}.mdi-puzzle:before{content:"\F431"}.mdi-qqchat:before{content:"\F605"}.mdi-qrcode:before{content:"\F432"}.mdi-qrcode-edit:before{content:"\F8B7"}.mdi-qrcode-scan:before{content:"\F433"}.mdi-quadcopter:before{content:"\F434"}.mdi-quality-high:before{content:"\F435"}.mdi-quicktime:before{content:"\F436"}.mdi-radar:before{content:"\F437"}.mdi-radiator:before{content:"\F438"}.mdi-radio:before{content:"\F439"}.mdi-radio-handheld:before{content:"\F43A"}.mdi-radio-tower:before{content:"\F43B"}.mdi-radioactive:before{content:"\F43C"}.mdi-radiobox-blank:before{content:"\F43D"}.mdi-radiobox-marked:before{content:"\F43E"}.mdi-raspberrypi:before{content:"\F43F"}.mdi-ray-end:before{content:"\F440"}.mdi-ray-end-arrow:before{content:"\F441"}.mdi-ray-start:before{content:"\F442"}.mdi-ray-start-arrow:before{content:"\F443"}.mdi-ray-start-end:before{content:"\F444"}.mdi-ray-vertex:before{content:"\F445"}.mdi-react:before{content:"\F707"}.mdi-read:before{content:"\F447"}.mdi-receipt:before{content:"\F449"}.mdi-record:before{content:"\F44A"}.mdi-record-rec:before{content:"\F44B"}.mdi-recycle:before{content:"\F44C"}.mdi-reddit:before{content:"\F44D"}.mdi-redo:before{content:"\F44E"}.mdi-redo-variant:before{content:"\F44F"}.mdi-refresh:before{content:"\F450"}.mdi-regex:before{content:"\F451"}.mdi-relative-scale:before{content:"\F452"}.mdi-reload:before{content:"\F453"}.mdi-reminder:before{content:"\F88B"}.mdi-remote:before{content:"\F454"}.mdi-remote-desktop:before{content:"\F8B8"}.mdi-rename-box:before{content:"\F455"}.mdi-reorder-horizontal:before{content:"\F687"}.mdi-reorder-vertical:before{content:"\F688"}.mdi-repeat:before{content:"\F456"}.mdi-repeat-off:before{content:"\F457"}.mdi-repeat-once:before{content:"\F458"}.mdi-replay:before{content:"\F459"}.mdi-reply:before{content:"\F45A"}.mdi-reply-all:before{content:"\F45B"}.mdi-reproduction:before{content:"\F45C"}.mdi-resize-bottom-right:before{content:"\F45D"}.mdi-responsive:before{content:"\F45E"}.mdi-restart:before{content:"\F708"}.mdi-restore:before{content:"\F6A7"}.mdi-rewind:before{content:"\F45F"}.mdi-rewind-outline:before{content:"\F709"}.mdi-rhombus:before{content:"\F70A"}.mdi-rhombus-outline:before{content:"\F70B"}.mdi-ribbon:before{content:"\F460"}.mdi-rice:before{content:"\F7E9"}.mdi-ring:before{content:"\F7EA"}.mdi-road:before{content:"\F461"}.mdi-road-variant:before{content:"\F462"}.mdi-robot:before{content:"\F6A8"}.mdi-rocket:before{content:"\F463"}.mdi-room-service:before{content:"\F88C"}.mdi-roomba:before{content:"\F70C"}.mdi-rotate-3d:before{content:"\F464"}.mdi-rotate-left:before{content:"\F465"}.mdi-rotate-left-variant:before{content:"\F466"}.mdi-rotate-right:before{content:"\F467"}.mdi-rotate-right-variant:before{content:"\F468"}.mdi-rounded-corner:before{content:"\F607"}.mdi-router-wireless:before{content:"\F469"}.mdi-routes:before{content:"\F46A"}.mdi-rowing:before{content:"\F608"}.mdi-rss:before{content:"\F46B"}.mdi-rss-box:before{content:"\F46C"}.mdi-ruler:before{content:"\F46D"}.mdi-run:before{content:"\F70D"}.mdi-run-fast:before{content:"\F46E"}.mdi-sale:before{content:"\F46F"}.mdi-salesforce:before{content:"\F88D"}.mdi-sass:before{content:"\F7EB"}.mdi-satellite:before{content:"\F470"}.mdi-satellite-variant:before{content:"\F471"}.mdi-sausage:before{content:"\F8B9"}.mdi-saxophone:before{content:"\F609"}.mdi-scale:before{content:"\F472"}.mdi-scale-balance:before{content:"\F5D1"}.mdi-scale-bathroom:before{content:"\F473"}.mdi-scanner:before{content:"\F6AA"}.mdi-school:before{content:"\F474"}.mdi-screen-rotation:before{content:"\F475"}.mdi-screen-rotation-lock:before{content:"\F476"}.mdi-screwdriver:before{content:"\F477"}.mdi-script:before{content:"\F478"}.mdi-sd:before{content:"\F479"}.mdi-seal:before{content:"\F47A"}.mdi-search-web:before{content:"\F70E"}.mdi-seat-flat:before{content:"\F47B"}.mdi-seat-flat-angled:before{content:"\F47C"}.mdi-seat-individual-suite:before{content:"\F47D"}.mdi-seat-legroom-extra:before{content:"\F47E"}.mdi-seat-legroom-normal:before{content:"\F47F"}.mdi-seat-legroom-reduced:before{content:"\F480"}.mdi-seat-recline-extra:before{content:"\F481"}.mdi-seat-recline-normal:before{content:"\F482"}.mdi-security:before{content:"\F483"}.mdi-security-account:before{content:"\F88E"}.mdi-security-home:before{content:"\F689"}.mdi-security-network:before{content:"\F484"}.mdi-select:before{content:"\F485"}.mdi-select-all:before{content:"\F486"}.mdi-select-inverse:before{content:"\F487"}.mdi-select-off:before{content:"\F488"}.mdi-selection:before{content:"\F489"}.mdi-selection-off:before{content:"\F776"}.mdi-send:before{content:"\F48A"}.mdi-send-secure:before{content:"\F7EC"}.mdi-serial-port:before{content:"\F65C"}.mdi-server:before{content:"\F48B"}.mdi-server-minus:before{content:"\F48C"}.mdi-server-network:before{content:"\F48D"}.mdi-server-network-off:before{content:"\F48E"}.mdi-server-off:before{content:"\F48F"}.mdi-server-plus:before{content:"\F490"}.mdi-server-remove:before{content:"\F491"}.mdi-server-security:before{content:"\F492"}.mdi-set-all:before{content:"\F777"}.mdi-set-center:before{content:"\F778"}.mdi-set-center-right:before{content:"\F779"}.mdi-set-left:before{content:"\F77A"}.mdi-set-left-center:before{content:"\F77B"}.mdi-set-left-right:before{content:"\F77C"}.mdi-set-none:before{content:"\F77D"}.mdi-set-right:before{content:"\F77E"}.mdi-settings:before{content:"\F493"}.mdi-settings-box:before{content:"\F494"}.mdi-settings-outline:before{content:"\F8BA"}.mdi-shape:before{content:"\F830"}.mdi-shape-circle-plus:before{content:"\F65D"}.mdi-shape-outline:before{content:"\F831"}.mdi-shape-plus:before{content:"\F495"}.mdi-shape-polygon-plus:before{content:"\F65E"}.mdi-shape-rectangle-plus:before{content:"\F65F"}.mdi-shape-square-plus:before{content:"\F660"}.mdi-share:before{content:"\F496"}.mdi-share-variant:before{content:"\F497"}.mdi-shield:before{content:"\F498"}.mdi-shield-half-full:before{content:"\F77F"}.mdi-shield-outline:before{content:"\F499"}.mdi-ship-wheel:before{content:"\F832"}.mdi-shopping:before{content:"\F49A"}.mdi-shopping-music:before{content:"\F49B"}.mdi-shovel:before{content:"\F70F"}.mdi-shovel-off:before{content:"\F710"}.mdi-shredder:before{content:"\F49C"}.mdi-shuffle:before{content:"\F49D"}.mdi-shuffle-disabled:before{content:"\F49E"}.mdi-shuffle-variant:before{content:"\F49F"}.mdi-sigma:before{content:"\F4A0"}.mdi-sigma-lower:before{content:"\F62B"}.mdi-sign-caution:before{content:"\F4A1"}.mdi-sign-direction:before{content:"\F780"}.mdi-sign-text:before{content:"\F781"}.mdi-signal:before{content:"\F4A2"}.mdi-signal-2g:before{content:"\F711"}.mdi-signal-3g:before{content:"\F712"}.mdi-signal-4g:before{content:"\F713"}.mdi-signal-cellular-1:before{content:"\F8BB"}.mdi-signal-cellular-2:before{content:"\F8BC"}.mdi-signal-cellular-3:before{content:"\F8BD"}.mdi-signal-cellular-outline:before{content:"\F8BE"}.mdi-signal-hspa:before{content:"\F714"}.mdi-signal-hspa-plus:before{content:"\F715"}.mdi-signal-off:before{content:"\F782"}.mdi-signal-variant:before{content:"\F60A"}.mdi-silverware:before{content:"\F4A3"}.mdi-silverware-fork:before{content:"\F4A4"}.mdi-silverware-spoon:before{content:"\F4A5"}.mdi-silverware-variant:before{content:"\F4A6"}.mdi-sim:before{content:"\F4A7"}.mdi-sim-alert:before{content:"\F4A8"}.mdi-sim-off:before{content:"\F4A9"}.mdi-sitemap:before{content:"\F4AA"}.mdi-skip-backward:before{content:"\F4AB"}.mdi-skip-forward:before{content:"\F4AC"}.mdi-skip-next:before{content:"\F4AD"}.mdi-skip-next-circle:before{content:"\F661"}.mdi-skip-next-circle-outline:before{content:"\F662"}.mdi-skip-previous:before{content:"\F4AE"}.mdi-skip-previous-circle:before{content:"\F663"}.mdi-skip-previous-circle-outline:before{content:"\F664"}.mdi-skull:before{content:"\F68B"}.mdi-skype:before{content:"\F4AF"}.mdi-skype-business:before{content:"\F4B0"}.mdi-slack:before{content:"\F4B1"}.mdi-sleep:before{content:"\F4B2"}.mdi-sleep-off:before{content:"\F4B3"}.mdi-smoking:before{content:"\F4B4"}.mdi-smoking-off:before{content:"\F4B5"}.mdi-snapchat:before{content:"\F4B6"}.mdi-snowflake:before{content:"\F716"}.mdi-snowman:before{content:"\F4B7"}.mdi-soccer:before{content:"\F4B8"}.mdi-soccer-field:before{content:"\F833"}.mdi-sofa:before{content:"\F4B9"}.mdi-solid:before{content:"\F68C"}.mdi-sort:before{content:"\F4BA"}.mdi-sort-alphabetical:before{content:"\F4BB"}.mdi-sort-ascending:before{content:"\F4BC"}.mdi-sort-descending:before{content:"\F4BD"}.mdi-sort-numeric:before{content:"\F4BE"}.mdi-sort-variant:before{content:"\F4BF"}.mdi-soundcloud:before{content:"\F4C0"}.mdi-source-branch:before{content:"\F62C"}.mdi-source-commit:before{content:"\F717"}.mdi-source-commit-end:before{content:"\F718"}.mdi-source-commit-end-local:before{content:"\F719"}.mdi-source-commit-local:before{content:"\F71A"}.mdi-source-commit-next-local:before{content:"\F71B"}.mdi-source-commit-start:before{content:"\F71C"}.mdi-source-commit-start-next-local:before{content:"\F71D"}.mdi-source-fork:before{content:"\F4C1"}.mdi-source-merge:before{content:"\F62D"}.mdi-source-pull:before{content:"\F4C2"}.mdi-soy-sauce:before{content:"\F7ED"}.mdi-speaker:before{content:"\F4C3"}.mdi-speaker-off:before{content:"\F4C4"}.mdi-speaker-wireless:before{content:"\F71E"}.mdi-speedometer:before{content:"\F4C5"}.mdi-spellcheck:before{content:"\F4C6"}.mdi-spotify:before{content:"\F4C7"}.mdi-spotlight:before{content:"\F4C8"}.mdi-spotlight-beam:before{content:"\F4C9"}.mdi-spray:before{content:"\F665"}.mdi-square:before{content:"\F763"}.mdi-square-inc:before{content:"\F4CA"}.mdi-square-inc-cash:before{content:"\F4CB"}.mdi-square-outline:before{content:"\F762"}.mdi-square-root:before{content:"\F783"}.mdi-ssh:before{content:"\F8BF"}.mdi-stack-overflow:before{content:"\F4CC"}.mdi-stackexchange:before{content:"\F60B"}.mdi-stadium:before{content:"\F71F"}.mdi-stairs:before{content:"\F4CD"}.mdi-standard-definition:before{content:"\F7EE"}.mdi-star:before{content:"\F4CE"}.mdi-star-circle:before{content:"\F4CF"}.mdi-star-half:before{content:"\F4D0"}.mdi-star-off:before{content:"\F4D1"}.mdi-star-outline:before{content:"\F4D2"}.mdi-steam:before{content:"\F4D3"}.mdi-steering:before{content:"\F4D4"}.mdi-step-backward:before{content:"\F4D5"}.mdi-step-backward-2:before{content:"\F4D6"}.mdi-step-forward:before{content:"\F4D7"}.mdi-step-forward-2:before{content:"\F4D8"}.mdi-stethoscope:before{content:"\F4D9"}.mdi-sticker:before{content:"\F5D0"}.mdi-sticker-emoji:before{content:"\F784"}.mdi-stocking:before{content:"\F4DA"}.mdi-stop:before{content:"\F4DB"}.mdi-stop-circle:before{content:"\F666"}.mdi-stop-circle-outline:before{content:"\F667"}.mdi-store:before{content:"\F4DC"}.mdi-store-24-hour:before{content:"\F4DD"}.mdi-stove:before{content:"\F4DE"}.mdi-subdirectory-arrow-left:before{content:"\F60C"}.mdi-subdirectory-arrow-right:before{content:"\F60D"}.mdi-subway:before{content:"\F6AB"}.mdi-subway-variant:before{content:"\F4DF"}.mdi-summit:before{content:"\F785"}.mdi-sunglasses:before{content:"\F4E0"}.mdi-surround-sound:before{content:"\F5C5"}.mdi-surround-sound-2-0:before{content:"\F7EF"}.mdi-surround-sound-3-1:before{content:"\F7F0"}.mdi-surround-sound-5-1:before{content:"\F7F1"}.mdi-surround-sound-7-1:before{content:"\F7F2"}.mdi-svg:before{content:"\F720"}.mdi-swap-horizontal:before{content:"\F4E1"}.mdi-swap-horizontal-variant:before{content:"\F8C0"}.mdi-swap-vertical:before{content:"\F4E2"}.mdi-swap-vertical-variant:before{content:"\F8C1"}.mdi-swim:before{content:"\F4E3"}.mdi-switch:before{content:"\F4E4"}.mdi-sword:before{content:"\F4E5"}.mdi-sword-cross:before{content:"\F786"}.mdi-sync:before{content:"\F4E6"}.mdi-sync-alert:before{content:"\F4E7"}.mdi-sync-off:before{content:"\F4E8"}.mdi-tab:before{content:"\F4E9"}.mdi-tab-plus:before{content:"\F75B"}.mdi-tab-unselected:before{content:"\F4EA"}.mdi-table:before{content:"\F4EB"}.mdi-table-column:before{content:"\F834"}.mdi-table-column-plus-after:before{content:"\F4EC"}.mdi-table-column-plus-before:before{content:"\F4ED"}.mdi-table-column-remove:before{content:"\F4EE"}.mdi-table-column-width:before{content:"\F4EF"}.mdi-table-edit:before{content:"\F4F0"}.mdi-table-large:before{content:"\F4F1"}.mdi-table-of-contents:before{content:"\F835"}.mdi-table-row:before{content:"\F836"}.mdi-table-row-height:before{content:"\F4F2"}.mdi-table-row-plus-after:before{content:"\F4F3"}.mdi-table-row-plus-before:before{content:"\F4F4"}.mdi-table-row-remove:before{content:"\F4F5"}.mdi-table-settings:before{content:"\F837"}.mdi-tablet:before{content:"\F4F6"}.mdi-tablet-android:before{content:"\F4F7"}.mdi-tablet-ipad:before{content:"\F4F8"}.mdi-taco:before{content:"\F761"}.mdi-tag:before{content:"\F4F9"}.mdi-tag-faces:before{content:"\F4FA"}.mdi-tag-heart:before{content:"\F68A"}.mdi-tag-multiple:before{content:"\F4FB"}.mdi-tag-outline:before{content:"\F4FC"}.mdi-tag-plus:before{content:"\F721"}.mdi-tag-remove:before{content:"\F722"}.mdi-tag-text-outline:before{content:"\F4FD"}.mdi-target:before{content:"\F4FE"}.mdi-taxi:before{content:"\F4FF"}.mdi-teach:before{content:"\F88F"}.mdi-teamviewer:before{content:"\F500"}.mdi-telegram:before{content:"\F501"}.mdi-television:before{content:"\F502"}.mdi-television-box:before{content:"\F838"}.mdi-television-classic:before{content:"\F7F3"}.mdi-television-classic-off:before{content:"\F839"}.mdi-television-guide:before{content:"\F503"}.mdi-television-off:before{content:"\F83A"}.mdi-temperature-celsius:before{content:"\F504"}.mdi-temperature-fahrenheit:before{content:"\F505"}.mdi-temperature-kelvin:before{content:"\F506"}.mdi-tennis:before{content:"\F507"}.mdi-tent:before{content:"\F508"}.mdi-terrain:before{content:"\F509"}.mdi-test-tube:before{content:"\F668"}.mdi-text-shadow:before{content:"\F669"}.mdi-text-to-speech:before{content:"\F50A"}.mdi-text-to-speech-off:before{content:"\F50B"}.mdi-textbox:before{content:"\F60E"}.mdi-textbox-password:before{content:"\F7F4"}.mdi-texture:before{content:"\F50C"}.mdi-theater:before{content:"\F50D"}.mdi-theme-light-dark:before{content:"\F50E"}.mdi-thermometer:before{content:"\F50F"}.mdi-thermometer-lines:before{content:"\F510"}.mdi-thermostat-box:before{content:"\F890"}.mdi-thought-bubble:before{content:"\F7F5"}.mdi-thought-bubble-outline:before{content:"\F7F6"}.mdi-thumb-down:before{content:"\F511"}.mdi-thumb-down-outline:before{content:"\F512"}.mdi-thumb-up:before{content:"\F513"}.mdi-thumb-up-outline:before{content:"\F514"}.mdi-thumbs-up-down:before{content:"\F515"}.mdi-ticket:before{content:"\F516"}.mdi-ticket-account:before{content:"\F517"}.mdi-ticket-confirmation:before{content:"\F518"}.mdi-ticket-percent:before{content:"\F723"}.mdi-tie:before{content:"\F519"}.mdi-tilde:before{content:"\F724"}.mdi-timelapse:before{content:"\F51A"}.mdi-timer:before{content:"\F51B"}.mdi-timer-10:before{content:"\F51C"}.mdi-timer-3:before{content:"\F51D"}.mdi-timer-off:before{content:"\F51E"}.mdi-timer-sand:before{content:"\F51F"}.mdi-timer-sand-empty:before{content:"\F6AC"}.mdi-timer-sand-full:before{content:"\F78B"}.mdi-timetable:before{content:"\F520"}.mdi-toggle-switch:before{content:"\F521"}.mdi-toggle-switch-off:before{content:"\F522"}.mdi-tooltip:before{content:"\F523"}.mdi-tooltip-edit:before{content:"\F524"}.mdi-tooltip-image:before{content:"\F525"}.mdi-tooltip-outline:before{content:"\F526"}.mdi-tooltip-outline-plus:before{content:"\F527"}.mdi-tooltip-text:before{content:"\F528"}.mdi-tooth:before{content:"\F8C2"}.mdi-tooth-outline:before{content:"\F529"}.mdi-tor:before{content:"\F52A"}.mdi-tower-beach:before{content:"\F680"}.mdi-tower-fire:before{content:"\F681"}.mdi-towing:before{content:"\F83B"}.mdi-trackpad:before{content:"\F7F7"}.mdi-tractor:before{content:"\F891"}.mdi-traffic-light:before{content:"\F52B"}.mdi-train:before{content:"\F52C"}.mdi-train-variant:before{content:"\F8C3"}.mdi-tram:before{content:"\F52D"}.mdi-transcribe:before{content:"\F52E"}.mdi-transcribe-close:before{content:"\F52F"}.mdi-transfer:before{content:"\F530"}.mdi-transit-transfer:before{content:"\F6AD"}.mdi-translate:before{content:"\F5CA"}.mdi-treasure-chest:before{content:"\F725"}.mdi-tree:before{content:"\F531"}.mdi-trello:before{content:"\F532"}.mdi-trending-down:before{content:"\F533"}.mdi-trending-neutral:before{content:"\F534"}.mdi-trending-up:before{content:"\F535"}.mdi-triangle:before{content:"\F536"}.mdi-triangle-outline:before{content:"\F537"}.mdi-trophy:before{content:"\F538"}.mdi-trophy-award:before{content:"\F539"}.mdi-trophy-outline:before{content:"\F53A"}.mdi-trophy-variant:before{content:"\F53B"}.mdi-trophy-variant-outline:before{content:"\F53C"}.mdi-truck:before{content:"\F53D"}.mdi-truck-delivery:before{content:"\F53E"}.mdi-truck-fast:before{content:"\F787"}.mdi-truck-trailer:before{content:"\F726"}.mdi-tshirt-crew:before{content:"\F53F"}.mdi-tshirt-v:before{content:"\F540"}.mdi-tumblr:before{content:"\F541"}.mdi-tumblr-reblog:before{content:"\F542"}.mdi-tune:before{content:"\F62E"}.mdi-tune-vertical:before{content:"\F66A"}.mdi-twitch:before{content:"\F543"}.mdi-twitter:before{content:"\F544"}.mdi-twitter-box:before{content:"\F545"}.mdi-twitter-circle:before{content:"\F546"}.mdi-twitter-retweet:before{content:"\F547"}.mdi-uber:before{content:"\F748"}.mdi-ubuntu:before{content:"\F548"}.mdi-ultra-high-definition:before{content:"\F7F8"}.mdi-umbraco:before{content:"\F549"}.mdi-umbrella:before{content:"\F54A"}.mdi-umbrella-outline:before{content:"\F54B"}.mdi-undo:before{content:"\F54C"}.mdi-undo-variant:before{content:"\F54D"}.mdi-unfold-less-horizontal:before{content:"\F54E"}.mdi-unfold-less-vertical:before{content:"\F75F"}.mdi-unfold-more-horizontal:before{content:"\F54F"}.mdi-unfold-more-vertical:before{content:"\F760"}.mdi-ungroup:before{content:"\F550"}.mdi-unity:before{content:"\F6AE"}.mdi-untappd:before{content:"\F551"}.mdi-update:before{content:"\F6AF"}.mdi-upload:before{content:"\F552"}.mdi-upload-multiple:before{content:"\F83C"}.mdi-upload-network:before{content:"\F6F5"}.mdi-usb:before{content:"\F553"}.mdi-van-passenger:before{content:"\F7F9"}.mdi-van-utility:before{content:"\F7FA"}.mdi-vanish:before{content:"\F7FB"}.mdi-vector-arrange-above:before{content:"\F554"}.mdi-vector-arrange-below:before{content:"\F555"}.mdi-vector-circle:before{content:"\F556"}.mdi-vector-circle-variant:before{content:"\F557"}.mdi-vector-combine:before{content:"\F558"}.mdi-vector-curve:before{content:"\F559"}.mdi-vector-difference:before{content:"\F55A"}.mdi-vector-difference-ab:before{content:"\F55B"}.mdi-vector-difference-ba:before{content:"\F55C"}.mdi-vector-ellipse:before{content:"\F892"}.mdi-vector-intersection:before{content:"\F55D"}.mdi-vector-line:before{content:"\F55E"}.mdi-vector-point:before{content:"\F55F"}.mdi-vector-polygon:before{content:"\F560"}.mdi-vector-polyline:before{content:"\F561"}.mdi-vector-radius:before{content:"\F749"}.mdi-vector-rectangle:before{content:"\F5C6"}.mdi-vector-selection:before{content:"\F562"}.mdi-vector-square:before{content:"\F001"}.mdi-vector-triangle:before{content:"\F563"}.mdi-vector-union:before{content:"\F564"}.mdi-venmo:before{content:"\F578"}.mdi-verified:before{content:"\F565"}.mdi-vibrate:before{content:"\F566"}.mdi-video:before{content:"\F567"}.mdi-video-3d:before{content:"\F7FC"}.mdi-video-4k-box:before{content:"\F83D"}.mdi-video-input-antenna:before{content:"\F83E"}.mdi-video-input-component:before{content:"\F83F"}.mdi-video-input-hdmi:before{content:"\F840"}.mdi-video-input-svideo:before{content:"\F841"}.mdi-video-off:before{content:"\F568"}.mdi-video-switch:before{content:"\F569"}.mdi-view-agenda:before{content:"\F56A"}.mdi-view-array:before{content:"\F56B"}.mdi-view-carousel:before{content:"\F56C"}.mdi-view-column:before{content:"\F56D"}.mdi-view-dashboard:before{content:"\F56E"}.mdi-view-dashboard-variant:before{content:"\F842"}.mdi-view-day:before{content:"\F56F"}.mdi-view-grid:before{content:"\F570"}.mdi-view-headline:before{content:"\F571"}.mdi-view-list:before{content:"\F572"}.mdi-view-module:before{content:"\F573"}.mdi-view-parallel:before{content:"\F727"}.mdi-view-quilt:before{content:"\F574"}.mdi-view-sequential:before{content:"\F728"}.mdi-view-stream:before{content:"\F575"}.mdi-view-week:before{content:"\F576"}.mdi-vimeo:before{content:"\F577"}.mdi-violin:before{content:"\F60F"}.mdi-virtual-reality:before{content:"\F893"}.mdi-visualstudio:before{content:"\F610"}.mdi-vk:before{content:"\F579"}.mdi-vk-box:before{content:"\F57A"}.mdi-vk-circle:before{content:"\F57B"}.mdi-vlc:before{content:"\F57C"}.mdi-voice:before{content:"\F5CB"}.mdi-voicemail:before{content:"\F57D"}.mdi-volume-high:before{content:"\F57E"}.mdi-volume-low:before{content:"\F57F"}.mdi-volume-medium:before{content:"\F580"}.mdi-volume-minus:before{content:"\F75D"}.mdi-volume-mute:before{content:"\F75E"}.mdi-volume-off:before{content:"\F581"}.mdi-volume-plus:before{content:"\F75C"}.mdi-vpn:before{content:"\F582"}.mdi-vuejs:before{content:"\F843"}.mdi-walk:before{content:"\F583"}.mdi-wall:before{content:"\F7FD"}.mdi-wallet:before{content:"\F584"}.mdi-wallet-giftcard:before{content:"\F585"}.mdi-wallet-membership:before{content:"\F586"}.mdi-wallet-travel:before{content:"\F587"}.mdi-wan:before{content:"\F588"}.mdi-washing-machine:before{content:"\F729"}.mdi-watch:before{content:"\F589"}.mdi-watch-export:before{content:"\F58A"}.mdi-watch-export-variant:before{content:"\F894"}.mdi-watch-import:before{content:"\F58B"}.mdi-watch-import-variant:before{content:"\F895"}.mdi-watch-variant:before{content:"\F896"}.mdi-watch-vibrate:before{content:"\F6B0"}.mdi-water:before{content:"\F58C"}.mdi-water-off:before{content:"\F58D"}.mdi-water-percent:before{content:"\F58E"}.mdi-water-pump:before{content:"\F58F"}.mdi-watermark:before{content:"\F612"}.mdi-waves:before{content:"\F78C"}.mdi-weather-cloudy:before{content:"\F590"}.mdi-weather-fog:before{content:"\F591"}.mdi-weather-hail:before{content:"\F592"}.mdi-weather-hurricane:before{content:"\F897"}.mdi-weather-lightning:before{content:"\F593"}.mdi-weather-lightning-rainy:before{content:"\F67D"}.mdi-weather-night:before{content:"\F594"}.mdi-weather-partlycloudy:before{content:"\F595"}.mdi-weather-pouring:before{content:"\F596"}.mdi-weather-rainy:before{content:"\F597"}.mdi-weather-snowy:before{content:"\F598"}.mdi-weather-snowy-rainy:before{content:"\F67E"}.mdi-weather-sunny:before{content:"\F599"}.mdi-weather-sunset:before{content:"\F59A"}.mdi-weather-sunset-down:before{content:"\F59B"}.mdi-weather-sunset-up:before{content:"\F59C"}.mdi-weather-windy:before{content:"\F59D"}.mdi-weather-windy-variant:before{content:"\F59E"}.mdi-web:before{content:"\F59F"}.mdi-webcam:before{content:"\F5A0"}.mdi-webhook:before{content:"\F62F"}.mdi-webpack:before{content:"\F72A"}.mdi-wechat:before{content:"\F611"}.mdi-weight:before{content:"\F5A1"}.mdi-weight-kilogram:before{content:"\F5A2"}.mdi-whatsapp:before{content:"\F5A3"}.mdi-wheelchair-accessibility:before{content:"\F5A4"}.mdi-white-balance-auto:before{content:"\F5A5"}.mdi-white-balance-incandescent:before{content:"\F5A6"}.mdi-white-balance-iridescent:before{content:"\F5A7"}.mdi-white-balance-sunny:before{content:"\F5A8"}.mdi-widgets:before{content:"\F72B"}.mdi-wifi:before{content:"\F5A9"}.mdi-wifi-off:before{content:"\F5AA"}.mdi-wii:before{content:"\F5AB"}.mdi-wiiu:before{content:"\F72C"}.mdi-wikipedia:before{content:"\F5AC"}.mdi-window-close:before{content:"\F5AD"}.mdi-window-closed:before{content:"\F5AE"}.mdi-window-maximize:before{content:"\F5AF"}.mdi-window-minimize:before{content:"\F5B0"}.mdi-window-open:before{content:"\F5B1"}.mdi-window-restore:before{content:"\F5B2"}.mdi-windows:before{content:"\F5B3"}.mdi-wordpress:before{content:"\F5B4"}.mdi-worker:before{content:"\F5B5"}.mdi-wrap:before{content:"\F5B6"}.mdi-wrench:before{content:"\F5B7"}.mdi-wunderlist:before{content:"\F5B8"}.mdi-xamarin:before{content:"\F844"}.mdi-xamarin-outline:before{content:"\F845"}.mdi-xaml:before{content:"\F673"}.mdi-xbox:before{content:"\F5B9"}.mdi-xbox-controller:before{content:"\F5BA"}.mdi-xbox-controller-battery-alert:before{content:"\F74A"}.mdi-xbox-controller-battery-empty:before{content:"\F74B"}.mdi-xbox-controller-battery-full:before{content:"\F74C"}.mdi-xbox-controller-battery-low:before{content:"\F74D"}.mdi-xbox-controller-battery-medium:before{content:"\F74E"}.mdi-xbox-controller-battery-unknown:before{content:"\F74F"}.mdi-xbox-controller-off:before{content:"\F5BB"}.mdi-xda:before{content:"\F5BC"}.mdi-xing:before{content:"\F5BD"}.mdi-xing-box:before{content:"\F5BE"}.mdi-xing-circle:before{content:"\F5BF"}.mdi-xml:before{content:"\F5C0"}.mdi-xmpp:before{content:"\F7FE"}.mdi-yammer:before{content:"\F788"}.mdi-yeast:before{content:"\F5C1"}.mdi-yelp:before{content:"\F5C2"}.mdi-yin-yang:before{content:"\F67F"}.mdi-youtube-creator-studio:before{content:"\F846"}.mdi-youtube-gaming:before{content:"\F847"}.mdi-youtube-play:before{content:"\F5C3"}.mdi-youtube-tv:before{content:"\F448"}.mdi-zip-box:before{content:"\F5C4"}.mdi-blank:before{content:"\F68C";visibility:hidden}.mdi-18px.mdi-set,.mdi-18px.mdi:before{font-size:18px}.mdi-24px.mdi-set,.mdi-24px.mdi:before{font-size:24px}.mdi-36px.mdi-set,.mdi-36px.mdi:before{font-size:36px}.mdi-48px.mdi-set,.mdi-48px.mdi:before{font-size:48px}.mdi-dark:before{color:rgba(0,0,0,0.54)}.mdi-dark.mdi-inactive:before{color:rgba(0,0,0,0.26)}.mdi-light:before{color:#fff}.mdi-light.mdi-inactive:before{color:rgba(255,255,255,0.3)}.mdi-rotate-45:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.mdi-rotate-90:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.mdi-rotate-135:before{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.mdi-rotate-180:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.mdi-rotate-225:before{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg)}.mdi-rotate-270:before{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.mdi-rotate-315:before{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.mdi-flip-h:before{-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:"FlipH"}.mdi-flip-v:before{-webkit-transform:scaleY(-1);transform:scaleY(-1);filter:FlipV;-ms-filter:"FlipV"}.mdi-spin:before{-webkit-animation:mdi-spin 2s infinite linear;animation:mdi-spin 2s infinite linear}@-webkit-keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}} +/*# sourceMappingURL=materialdesignicons.min.css.map */ diff --git a/assets/vendors/iconfonts/mdi/css/materialdesignicons.min.css.map b/assets/vendors/iconfonts/mdi/css/materialdesignicons.min.css.map new file mode 100755 index 0000000..28434fa --- /dev/null +++ b/assets/vendors/iconfonts/mdi/css/materialdesignicons.min.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAAA,UAUC,CATC,WAAW,CAAE,uBAAmB,CAChC,GAAG,CAAE,wDAAuE,CAC5E,GAAG,CAAE,6ZAA0G,CAK/G,WAAW,CAAE,MAAM,CACnB,UAAU,CAAE,MAAM,CCTpB,oBACwB,CACtB,OAAO,CAAE,YAAY,CACrB,IAAI,CAAE,mDAAiE,CACvE,SAAS,CAAE,OAAO,CAClB,cAAc,CAAE,IAAI,CACpB,WAAW,CAAE,OAAO,CACpB,sBAAsB,CAAE,WAAW,CACnC,uBAAuB,CAAE,SAAS,CCPhC,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,cAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kDAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mDAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,cAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,cAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,4BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,cAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,6BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,8BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,qBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,yCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,2CAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,+BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,uBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,eAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,iBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,gBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,oBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,kCAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,0BAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,wBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,sBAAmC,CAC/B,OAAO,CAAE,OAAY,CADzB,mBAAmC,CAC/B,OAAO,CAAE,OAAY,CAI7B,iBAAiC,CAC7B,OAAO,CAAE,OAAO,CAChB,UAAU,CAAE,MAAM,CCLd,sCAC4B,CACxB,SAAS,CAAE,IAAe,CAF9B,sCAC4B,CACxB,SAAS,CAAE,IAAe,CAF9B,sCAC4B,CACxB,SAAS,CAAE,IAAe,CAF9B,sCAC4B,CACxB,SAAS,CAAE,IAAe,CAMlC,gBAAS,CACL,KAAK,CAAE,gBAAmB,CAE9B,6BAAsB,CAClB,KAAK,CAAE,gBAAmB,CAI9B,iBAAS,CACL,KAAK,CAAE,IAAsB,CAEjC,8BAAsB,CAClB,KAAK,CAAE,qBAAwB,CAO/B,qBAAS,CACL,iBAAiB,CAAE,aAAyB,CAC5C,aAAa,CAAE,aAAyB,CACxC,SAAS,CAAE,aAAyB,CAHxC,qBAAS,CACL,iBAAiB,CAAE,aAAyB,CAC5C,aAAa,CAAE,aAAyB,CACxC,SAAS,CAAE,aAAyB,CAHxC,sBAAS,CACL,iBAAiB,CAAE,cAAyB,CAC5C,aAAa,CAAE,cAAyB,CACxC,SAAS,CAAE,cAAyB,CAHxC,sBAAS,CACL,iBAAiB,CAAE,cAAyB,CAC5C,aAAa,CAAE,cAAyB,CACxC,SAAS,CAAE,cAAyB,CAHxC,sBAAS,CACL,iBAAiB,CAAE,cAAyB,CAC5C,aAAa,CAAE,cAAyB,CACxC,SAAS,CAAE,cAAyB,CAHxC,sBAAS,CACL,iBAAiB,CAAE,cAAyB,CAC5C,aAAa,CAAE,cAAyB,CACxC,SAAS,CAAE,cAAyB,CAHxC,sBAAS,CACL,iBAAiB,CAAE,cAAyB,CAC5C,aAAa,CAAE,cAAyB,CACxC,SAAS,CAAE,cAAyB,CAoBhD,kBAAkC,CAC9B,iBAAiB,CAAE,UAAU,CAC7B,SAAS,CAAE,UAAU,CACrB,MAAM,CAAE,KAAK,CACb,UAAU,CAAE,OAAO,CAEvB,kBAAkC,CAC9B,iBAAiB,CAAE,UAAU,CAC7B,SAAS,CAAE,UAAU,CACrB,MAAM,CAAE,KAAK,CACb,UAAU,CAAE,OAAO,CC9DvB,gBAAgC,CAC5B,iBAAiB,CAAE,2BAA0C,CACrD,SAAS,CAAE,2BAA0C,CAGjE,2BASC,CARG,EAAG,CACD,iBAAiB,CAAE,YAAY,CACvB,SAAS,CAAE,YAAY,CAEjC,IAAK,CACH,iBAAiB,CAAE,cAAc,CACzB,SAAS,CAAE,cAAc,EAIvC,mBASC,CARG,EAAG,CACD,iBAAiB,CAAE,YAAY,CACvB,SAAS,CAAE,YAAY,CAEjC,IAAK,CACH,iBAAiB,CAAE,cAAc,CACzB,SAAS,CAAE,cAAc", +"sources": ["../scss/_path.scss","../scss/_core.scss","../scss/_icons.scss","../scss/_extras.scss","../scss/_animated.scss"], +"names": [], +"file": "materialdesignicons.min.css" +} diff --git a/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.eot b/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.eot new file mode 100755 index 0000000..9530896 Binary files /dev/null and b/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.eot differ diff --git a/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.svg b/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.svg new file mode 100755 index 0000000..e00a1aa --- /dev/null +++ b/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.svg @@ -0,0 +1,6741 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.ttf b/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.ttf new file mode 100755 index 0000000..82524a0 Binary files /dev/null and b/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.ttf differ diff --git a/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.woff b/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.woff new file mode 100755 index 0000000..bb9a14f Binary files /dev/null and b/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.woff differ diff --git a/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.woff2 b/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.woff2 new file mode 100755 index 0000000..fddaf13 Binary files /dev/null and b/assets/vendors/iconfonts/mdi/fonts/materialdesignicons-webfont.woff2 differ diff --git a/assets/vendors/iconfonts/mdi/license.md b/assets/vendors/iconfonts/mdi/license.md new file mode 100755 index 0000000..d1f8885 --- /dev/null +++ b/assets/vendors/iconfonts/mdi/license.md @@ -0,0 +1,97 @@ +Copyright (c) 2014, Austin Andrews (http://materialdesignicons.com/), +with Reserved Font Name Material Design Icons. + +Copyright (c) 2014, Google (http://www.google.com/design/) +uses the license at https://github.com/google/material-design-icons/blob/master/LICENSE + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. \ No newline at end of file diff --git a/assets/vendors/iconfonts/mdi/package.json b/assets/vendors/iconfonts/mdi/package.json new file mode 100755 index 0000000..c131146 --- /dev/null +++ b/assets/vendors/iconfonts/mdi/package.json @@ -0,0 +1,63 @@ +{ + "_from": "mdi@latest", + "_id": "mdi@2.2.43", + "_inBundle": false, + "_integrity": "sha512-g3m6z4303qieltUM20JL2gdsJZvoVzIzO74qa2XxZ2kg9JPwrPEAgooVhRDHZi1vvRh0gB8Dg+c9XqNdz4jcIg==", + "_location": "/mdi", + "_phantomChildren": {}, + "_requested": { + "type": "tag", + "registry": true, + "raw": "mdi@latest", + "name": "mdi", + "escapedName": "mdi", + "rawSpec": "latest", + "saveSpec": null, + "fetchSpec": "latest" + }, + "_requiredBy": [ + "#USER", + "/" + ], + "_resolved": "https://registry.npmjs.org/mdi/-/mdi-2.2.43.tgz", + "_shasum": "c5e419a6e5f48c82c7109328f52530fd187a0ec0", + "_spec": "mdi@latest", + "_where": "/Applications/XAMPP/xamppfiles/htdocs/star_pro", + "author": { + "name": "Austin Andrews", + "url": "http://twitter.com/templarian" + }, + "bugs": { + "url": "https://github.com/Templarian/MaterialDesign/issues" + }, + "bundleDependencies": false, + "deprecated": "The mdi package was renamed to @mdi/font after v2.2.43. Please rename in your package.json for future updates.", + "description": "Dist for Material Design Webfont. This includes the Stock and Community icons in a single webfont collection.", + "homepage": "http://materialdesignicons.com", + "keywords": [ + "material", + "design", + "icons", + "webfont" + ], + "licenses": [ + { + "type": "OFL-1.1", + "url": "http://scripts.sil.org/OFL" + }, + { + "type": "MIT", + "url": "http://opensource.org/licenses/mit-license.html" + } + ], + "name": "mdi", + "repository": { + "type": "git", + "url": "git+https://github.com/Templarian/MaterialDesign-Webfont.git" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "style": "css/materialdesignicons.css", + "version": "2.2.43" +} diff --git a/assets/vendors/iconfonts/mdi/preview.html b/assets/vendors/iconfonts/mdi/preview.html new file mode 100755 index 0000000..182d32d --- /dev/null +++ b/assets/vendors/iconfonts/mdi/preview.html @@ -0,0 +1,9300 @@ + + + + + Material Design Icons + + + +

    + + + Material Design Icons + 2.2.43 +

    +

    Usage

    <span class="mdi mdi-name"></span>
    +

    Icons + (click to copy to clipboard) +

    +
    +

    Extras

    +

    The helper CSS classes are listed below.

    +

    Size

    +

    mdi-18px + mdi-24px + mdi-36px + mdi-48px + +

    +

    Rotate

    +

    + mdi-rotate-45 + mdi-rotate-90 + mdi-rotate-135 + mdi-rotate-180 + mdi-rotate-225 + mdi-rotate-270 + mdi-rotate-315 + +

    +

    Flip

    +

    + mdi-flip-h + mdi-flip-v + +

    +

    + Note: We do not include the ability to use mdi-flip-* and mdi-rotate-* at the same time.

    +

    Spin

    +

    mdi-spin + mdi-spin + +

    +

    Color

    +

    mdi-light + mdi-light mdi-inactive + mdi-dark + mdi-dark mdi-inactive + +

    + + + + \ No newline at end of file diff --git a/assets/vendors/iconfonts/mdi/scss/_animated.scss b/assets/vendors/iconfonts/mdi/scss/_animated.scss new file mode 100755 index 0000000..a49efad --- /dev/null +++ b/assets/vendors/iconfonts/mdi/scss/_animated.scss @@ -0,0 +1,27 @@ +// From Font Awesome +.#{$mdi-css-prefix}-spin:before { + -webkit-animation: #{$mdi-css-prefix}-spin 2s infinite linear; + animation: #{$mdi-css-prefix}-spin 2s infinite linear; +} + +@-webkit-keyframes #{$mdi-css-prefix}-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes #{$mdi-css-prefix}-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} \ No newline at end of file diff --git a/assets/vendors/iconfonts/mdi/scss/_core.scss b/assets/vendors/iconfonts/mdi/scss/_core.scss new file mode 100755 index 0000000..e074cff --- /dev/null +++ b/assets/vendors/iconfonts/mdi/scss/_core.scss @@ -0,0 +1,10 @@ +.#{$mdi-css-prefix}:before, +.#{$mdi-css-prefix}-set { + display: inline-block; + font: normal normal normal #{$mdi-font-size-base}/1 '#{$mdi-font-name}'; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + line-height: inherit; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} \ No newline at end of file diff --git a/assets/vendors/iconfonts/mdi/scss/_extras.scss b/assets/vendors/iconfonts/mdi/scss/_extras.scss new file mode 100755 index 0000000..2a0c35e --- /dev/null +++ b/assets/vendors/iconfonts/mdi/scss/_extras.scss @@ -0,0 +1,65 @@ +$mdi-sizes: 18 24 36 48; +@each $mdi-size in $mdi-sizes { + .#{$mdi-css-prefix}-#{$mdi-size}px { + &.#{$mdi-css-prefix}-set, + &.#{$mdi-css-prefix}:before { + font-size: $mdi-size * 1px; + } + } +} + +.#{$mdi-css-prefix}-dark { + &:before { + color: rgba(0, 0, 0, 0.54); + } + &.mdi-inactive:before { + color: rgba(0, 0, 0, 0.26); + } +} +.#{$mdi-css-prefix}-light { + &:before { + color: rgba(255, 255, 255, 1); + } + &.mdi-inactive:before { + color: rgba(255, 255, 255, 0.3); + } +} + +$mdi-degrees: 45 90 135 180 225 270 315; +@each $mdi-degree in $mdi-degrees { + .#{$mdi-css-prefix}-rotate-#{$mdi-degree}{ + &:before { + -webkit-transform: rotate(#{$mdi-degree}deg); + -ms-transform: rotate(#{$mdi-degree}deg); + transform: rotate(#{$mdi-degree}deg); + } + /* + // Not included in production + &.#{$mdi-css-prefix}-flip-h:before { + -webkit-transform: scaleX(-1) rotate(#{$mdi-degree}deg); + transform: scaleX(-1) rotate(#{$mdi-degree}deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.#{$mdi-css-prefix}-flip-v:before { + -webkit-transform: scaleY(-1) rotate(#{$mdi-degree}deg); + -ms-transform: rotate(#{$mdi-degree}deg); + transform: scaleY(-1) rotate(#{$mdi-degree}deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ + } +} +.#{$mdi-css-prefix}-flip-h:before { + -webkit-transform: scaleX(-1); + transform: scaleX(-1); + filter: FlipH; + -ms-filter: "FlipH"; +} +.#{$mdi-css-prefix}-flip-v:before { + -webkit-transform: scaleY(-1); + transform: scaleY(-1); + filter: FlipV; + -ms-filter: "FlipV"; +} \ No newline at end of file diff --git a/assets/vendors/iconfonts/mdi/scss/_functions.scss b/assets/vendors/iconfonts/mdi/scss/_functions.scss new file mode 100755 index 0000000..39328d9 --- /dev/null +++ b/assets/vendors/iconfonts/mdi/scss/_functions.scss @@ -0,0 +1,20 @@ +@function char($character-code) { + @if function-exists("selector-append") { + @return unquote("\"\\#{$character-code}\""); + } + + @if "\\#{'x'}" == "\\x" { + @return str-slice("\x", 1, 1) + $character-code; + } + @else { + @return #{"\"\\"}#{$character-code + "\""}; + } +} + +@function mdi($name) { + @if map-has-key($mdi-icons, $name) == false { + @warn "Icon #{$name} not found."; + @return ""; + } + @return char(map-get($mdi-icons, $name)); +} \ No newline at end of file diff --git a/assets/vendors/iconfonts/mdi/scss/_icons.scss b/assets/vendors/iconfonts/mdi/scss/_icons.scss new file mode 100755 index 0000000..e680b71 --- /dev/null +++ b/assets/vendors/iconfonts/mdi/scss/_icons.scss @@ -0,0 +1,10 @@ +@each $key, $value in $mdi-icons { + .#{$mdi-css-prefix}-#{$key}:before { + content: char($value); + } +} + +.#{$mdi-css-prefix}-blank:before { + content: "\F68C"; + visibility: hidden; +} \ No newline at end of file diff --git a/assets/vendors/iconfonts/mdi/scss/_path.scss b/assets/vendors/iconfonts/mdi/scss/_path.scss new file mode 100755 index 0000000..79de1f4 --- /dev/null +++ b/assets/vendors/iconfonts/mdi/scss/_path.scss @@ -0,0 +1,11 @@ +@font-face { + font-family: '#{$mdi-font-name}'; + src: url('#{$mdi-font-path}/#{$mdi-filename}-webfont.eot?v=#{$mdi-version}'); + src: url('#{$mdi-font-path}/#{$mdi-filename}-webfont.eot?#iefix&v=#{$mdi-version}') format('embedded-opentype'), + url('#{$mdi-font-path}/#{$mdi-filename}-webfont.woff2?v=#{$mdi-version}') format('woff2'), + url('#{$mdi-font-path}/#{$mdi-filename}-webfont.woff?v=#{$mdi-version}') format('woff'), + url('#{$mdi-font-path}/#{$mdi-filename}-webfont.ttf?v=#{$mdi-version}') format('truetype'), + url('#{$mdi-font-path}/#{$mdi-filename}-webfont.svg?v=#{$mdi-version}##{$mdi-filename}#{$mdi-font-weight}') format('svg'); + font-weight: normal; + font-style: normal; +} diff --git a/assets/vendors/iconfonts/mdi/scss/_variables.scss b/assets/vendors/iconfonts/mdi/scss/_variables.scss new file mode 100755 index 0000000..6c50577 --- /dev/null +++ b/assets/vendors/iconfonts/mdi/scss/_variables.scss @@ -0,0 +1,2254 @@ +$mdi-filename: "materialdesignicons"; +$mdi-font-name: "Material Design Icons"; +$mdi-font-family: "materialdesignicons"; +$mdi-font-weight: "regular"; +$mdi-font-path: "../fonts" !default; +$mdi-font-size-base: 24px !default; +$mdi-css-prefix: mdi !default; +$mdi-version: "2.2.43" !default; + +$mdi-icons: ( + "access-point": F002, + "access-point-network": F003, + "account": F004, + "account-alert": F005, + "account-box": F006, + "account-box-outline": F007, + "account-card-details": F5D2, + "account-check": F008, + "account-circle": F009, + "account-convert": F00A, + "account-edit": F6BB, + "account-group": F848, + "account-heart": F898, + "account-key": F00B, + "account-location": F00C, + "account-minus": F00D, + "account-multiple": F00E, + "account-multiple-minus": F5D3, + "account-multiple-outline": F00F, + "account-multiple-plus": F010, + "account-multiple-plus-outline": F7FF, + "account-network": F011, + "account-off": F012, + "account-outline": F013, + "account-plus": F014, + "account-plus-outline": F800, + "account-remove": F015, + "account-search": F016, + "account-settings": F630, + "account-settings-variant": F631, + "account-star": F017, + "account-switch": F019, + "accusoft": F849, + "adjust": F01A, + "air-conditioner": F01B, + "airballoon": F01C, + "airplane": F01D, + "airplane-landing": F5D4, + "airplane-off": F01E, + "airplane-takeoff": F5D5, + "airplay": F01F, + "airport": F84A, + "alarm": F020, + "alarm-bell": F78D, + "alarm-check": F021, + "alarm-light": F78E, + "alarm-multiple": F022, + "alarm-off": F023, + "alarm-plus": F024, + "alarm-snooze": F68D, + "album": F025, + "alert": F026, + "alert-box": F027, + "alert-circle": F028, + "alert-circle-outline": F5D6, + "alert-decagram": F6BC, + "alert-octagon": F029, + "alert-octagram": F766, + "alert-outline": F02A, + "alien": F899, + "all-inclusive": F6BD, + "allo": F801, + "alpha": F02B, + "alphabetical": F02C, + "altimeter": F5D7, + "amazon": F02D, + "amazon-clouddrive": F02E, + "ambulance": F02F, + "amplifier": F030, + "anchor": F031, + "android": F032, + "android-debug-bridge": F033, + "android-head": F78F, + "android-studio": F034, + "angular": F6B1, + "angularjs": F6BE, + "animation": F5D8, + "anvil": F89A, + "apple": F035, + "apple-finder": F036, + "apple-ios": F037, + "apple-keyboard-caps": F632, + "apple-keyboard-command": F633, + "apple-keyboard-control": F634, + "apple-keyboard-option": F635, + "apple-keyboard-shift": F636, + "apple-mobileme": F038, + "apple-safari": F039, + "application": F614, + "approval": F790, + "apps": F03B, + "archive": F03C, + "arrange-bring-forward": F03D, + "arrange-bring-to-front": F03E, + "arrange-send-backward": F03F, + "arrange-send-to-back": F040, + "arrow-all": F041, + "arrow-bottom-left": F042, + "arrow-bottom-right": F043, + "arrow-collapse": F615, + "arrow-collapse-all": F044, + "arrow-collapse-down": F791, + "arrow-collapse-horizontal": F84B, + "arrow-collapse-left": F792, + "arrow-collapse-right": F793, + "arrow-collapse-up": F794, + "arrow-collapse-vertical": F84C, + "arrow-down": F045, + "arrow-down-bold": F72D, + "arrow-down-bold-box": F72E, + "arrow-down-bold-box-outline": F72F, + "arrow-down-bold-circle": F047, + "arrow-down-bold-circle-outline": F048, + "arrow-down-bold-hexagon-outline": F049, + "arrow-down-box": F6BF, + "arrow-down-drop-circle": F04A, + "arrow-down-drop-circle-outline": F04B, + "arrow-down-thick": F046, + "arrow-expand": F616, + "arrow-expand-all": F04C, + "arrow-expand-down": F795, + "arrow-expand-horizontal": F84D, + "arrow-expand-left": F796, + "arrow-expand-right": F797, + "arrow-expand-up": F798, + "arrow-expand-vertical": F84E, + "arrow-left": F04D, + "arrow-left-bold": F730, + "arrow-left-bold-box": F731, + "arrow-left-bold-box-outline": F732, + "arrow-left-bold-circle": F04F, + "arrow-left-bold-circle-outline": F050, + "arrow-left-bold-hexagon-outline": F051, + "arrow-left-box": F6C0, + "arrow-left-drop-circle": F052, + "arrow-left-drop-circle-outline": F053, + "arrow-left-thick": F04E, + "arrow-right": F054, + "arrow-right-bold": F733, + "arrow-right-bold-box": F734, + "arrow-right-bold-box-outline": F735, + "arrow-right-bold-circle": F056, + "arrow-right-bold-circle-outline": F057, + "arrow-right-bold-hexagon-outline": F058, + "arrow-right-box": F6C1, + "arrow-right-drop-circle": F059, + "arrow-right-drop-circle-outline": F05A, + "arrow-right-thick": F055, + "arrow-top-left": F05B, + "arrow-top-right": F05C, + "arrow-up": F05D, + "arrow-up-bold": F736, + "arrow-up-bold-box": F737, + "arrow-up-bold-box-outline": F738, + "arrow-up-bold-circle": F05F, + "arrow-up-bold-circle-outline": F060, + "arrow-up-bold-hexagon-outline": F061, + "arrow-up-box": F6C2, + "arrow-up-drop-circle": F062, + "arrow-up-drop-circle-outline": F063, + "arrow-up-thick": F05E, + "artist": F802, + "assistant": F064, + "asterisk": F6C3, + "at": F065, + "atlassian": F803, + "atom": F767, + "attachment": F066, + "audiobook": F067, + "augmented-reality": F84F, + "auto-fix": F068, + "auto-upload": F069, + "autorenew": F06A, + "av-timer": F06B, + "azure": F804, + "baby": F06C, + "baby-buggy": F68E, + "backburger": F06D, + "backspace": F06E, + "backup-restore": F06F, + "badminton": F850, + "bandcamp": F674, + "bank": F070, + "barcode": F071, + "barcode-scan": F072, + "barley": F073, + "barrel": F074, + "baseball": F851, + "baseball-bat": F852, + "basecamp": F075, + "basket": F076, + "basket-fill": F077, + "basket-unfill": F078, + "basketball": F805, + "battery": F079, + "battery-10": F07A, + "battery-20": F07B, + "battery-30": F07C, + "battery-40": F07D, + "battery-50": F07E, + "battery-60": F07F, + "battery-70": F080, + "battery-80": F081, + "battery-90": F082, + "battery-alert": F083, + "battery-charging": F084, + "battery-charging-10": F89B, + "battery-charging-100": F085, + "battery-charging-20": F086, + "battery-charging-30": F087, + "battery-charging-40": F088, + "battery-charging-50": F89C, + "battery-charging-60": F089, + "battery-charging-70": F89D, + "battery-charging-80": F08A, + "battery-charging-90": F08B, + "battery-charging-outline": F89E, + "battery-charging-wireless": F806, + "battery-charging-wireless-10": F807, + "battery-charging-wireless-20": F808, + "battery-charging-wireless-30": F809, + "battery-charging-wireless-40": F80A, + "battery-charging-wireless-50": F80B, + "battery-charging-wireless-60": F80C, + "battery-charging-wireless-70": F80D, + "battery-charging-wireless-80": F80E, + "battery-charging-wireless-90": F80F, + "battery-charging-wireless-alert": F810, + "battery-charging-wireless-outline": F811, + "battery-minus": F08C, + "battery-negative": F08D, + "battery-outline": F08E, + "battery-plus": F08F, + "battery-positive": F090, + "battery-unknown": F091, + "beach": F092, + "beaker": F68F, + "beats": F097, + "bed-empty": F89F, + "beer": F098, + "behance": F099, + "bell": F09A, + "bell-off": F09B, + "bell-outline": F09C, + "bell-plus": F09D, + "bell-ring": F09E, + "bell-ring-outline": F09F, + "bell-sleep": F0A0, + "beta": F0A1, + "bible": F0A2, + "bike": F0A3, + "bing": F0A4, + "binoculars": F0A5, + "bio": F0A6, + "biohazard": F0A7, + "bitbucket": F0A8, + "bitcoin": F812, + "black-mesa": F0A9, + "blackberry": F0AA, + "blender": F0AB, + "blinds": F0AC, + "block-helper": F0AD, + "blogger": F0AE, + "bluetooth": F0AF, + "bluetooth-audio": F0B0, + "bluetooth-connect": F0B1, + "bluetooth-off": F0B2, + "bluetooth-settings": F0B3, + "bluetooth-transfer": F0B4, + "blur": F0B5, + "blur-linear": F0B6, + "blur-off": F0B7, + "blur-radial": F0B8, + "bomb": F690, + "bomb-off": F6C4, + "bone": F0B9, + "book": F0BA, + "book-minus": F5D9, + "book-multiple": F0BB, + "book-multiple-variant": F0BC, + "book-open": F0BD, + "book-open-page-variant": F5DA, + "book-open-variant": F0BE, + "book-plus": F5DB, + "book-secure": F799, + "book-unsecure": F79A, + "book-variant": F0BF, + "bookmark": F0C0, + "bookmark-check": F0C1, + "bookmark-music": F0C2, + "bookmark-outline": F0C3, + "bookmark-plus": F0C5, + "bookmark-plus-outline": F0C4, + "bookmark-remove": F0C6, + "boombox": F5DC, + "bootstrap": F6C5, + "border-all": F0C7, + "border-all-variant": F8A0, + "border-bottom": F0C8, + "border-bottom-variant": F8A1, + "border-color": F0C9, + "border-horizontal": F0CA, + "border-inside": F0CB, + "border-left": F0CC, + "border-left-variant": F8A2, + "border-none": F0CD, + "border-none-variant": F8A3, + "border-outside": F0CE, + "border-right": F0CF, + "border-right-variant": F8A4, + "border-style": F0D0, + "border-top": F0D1, + "border-top-variant": F8A5, + "border-vertical": F0D2, + "bottle-wine": F853, + "bow-tie": F677, + "bowl": F617, + "bowling": F0D3, + "box": F0D4, + "box-cutter": F0D5, + "box-shadow": F637, + "bridge": F618, + "briefcase": F0D6, + "briefcase-check": F0D7, + "briefcase-download": F0D8, + "briefcase-outline": F813, + "briefcase-upload": F0D9, + "brightness-1": F0DA, + "brightness-2": F0DB, + "brightness-3": F0DC, + "brightness-4": F0DD, + "brightness-5": F0DE, + "brightness-6": F0DF, + "brightness-7": F0E0, + "brightness-auto": F0E1, + "broom": F0E2, + "brush": F0E3, + "buffer": F619, + "bug": F0E4, + "bulletin-board": F0E5, + "bullhorn": F0E6, + "bullseye": F5DD, + "bus": F0E7, + "bus-articulated-end": F79B, + "bus-articulated-front": F79C, + "bus-double-decker": F79D, + "bus-school": F79E, + "bus-side": F79F, + "cached": F0E8, + "cake": F0E9, + "cake-layered": F0EA, + "cake-variant": F0EB, + "calculator": F0EC, + "calendar": F0ED, + "calendar-blank": F0EE, + "calendar-check": F0EF, + "calendar-clock": F0F0, + "calendar-edit": F8A6, + "calendar-multiple": F0F1, + "calendar-multiple-check": F0F2, + "calendar-plus": F0F3, + "calendar-question": F691, + "calendar-range": F678, + "calendar-remove": F0F4, + "calendar-text": F0F5, + "calendar-today": F0F6, + "call-made": F0F7, + "call-merge": F0F8, + "call-missed": F0F9, + "call-received": F0FA, + "call-split": F0FB, + "camcorder": F0FC, + "camcorder-box": F0FD, + "camcorder-box-off": F0FE, + "camcorder-off": F0FF, + "camera": F100, + "camera-burst": F692, + "camera-enhance": F101, + "camera-front": F102, + "camera-front-variant": F103, + "camera-gopro": F7A0, + "camera-iris": F104, + "camera-metering-center": F7A1, + "camera-metering-matrix": F7A2, + "camera-metering-partial": F7A3, + "camera-metering-spot": F7A4, + "camera-off": F5DF, + "camera-party-mode": F105, + "camera-rear": F106, + "camera-rear-variant": F107, + "camera-switch": F108, + "camera-timer": F109, + "cancel": F739, + "candle": F5E2, + "candycane": F10A, + "cannabis": F7A5, + "car": F10B, + "car-battery": F10C, + "car-connected": F10D, + "car-convertible": F7A6, + "car-estate": F7A7, + "car-hatchback": F7A8, + "car-pickup": F7A9, + "car-side": F7AA, + "car-sports": F7AB, + "car-wash": F10E, + "caravan": F7AC, + "cards": F638, + "cards-outline": F639, + "cards-playing-outline": F63A, + "cards-variant": F6C6, + "carrot": F10F, + "cart": F110, + "cart-off": F66B, + "cart-outline": F111, + "cart-plus": F112, + "case-sensitive-alt": F113, + "cash": F114, + "cash-100": F115, + "cash-multiple": F116, + "cash-usd": F117, + "cast": F118, + "cast-connected": F119, + "cast-off": F789, + "castle": F11A, + "cat": F11B, + "cctv": F7AD, + "ceiling-light": F768, + "cellphone": F11C, + "cellphone-android": F11D, + "cellphone-basic": F11E, + "cellphone-dock": F11F, + "cellphone-iphone": F120, + "cellphone-link": F121, + "cellphone-link-off": F122, + "cellphone-settings": F123, + "cellphone-wireless": F814, + "certificate": F124, + "chair-school": F125, + "chart-arc": F126, + "chart-areaspline": F127, + "chart-bar": F128, + "chart-bar-stacked": F769, + "chart-bubble": F5E3, + "chart-donut": F7AE, + "chart-donut-variant": F7AF, + "chart-gantt": F66C, + "chart-histogram": F129, + "chart-line": F12A, + "chart-line-stacked": F76A, + "chart-line-variant": F7B0, + "chart-pie": F12B, + "chart-scatterplot-hexbin": F66D, + "chart-timeline": F66E, + "check": F12C, + "check-all": F12D, + "check-circle": F5E0, + "check-circle-outline": F5E1, + "check-outline": F854, + "checkbox-blank": F12E, + "checkbox-blank-circle": F12F, + "checkbox-blank-circle-outline": F130, + "checkbox-blank-outline": F131, + "checkbox-intermediate": F855, + "checkbox-marked": F132, + "checkbox-marked-circle": F133, + "checkbox-marked-circle-outline": F134, + "checkbox-marked-outline": F135, + "checkbox-multiple-blank": F136, + "checkbox-multiple-blank-circle": F63B, + "checkbox-multiple-blank-circle-outline": F63C, + "checkbox-multiple-blank-outline": F137, + "checkbox-multiple-marked": F138, + "checkbox-multiple-marked-circle": F63D, + "checkbox-multiple-marked-circle-outline": F63E, + "checkbox-multiple-marked-outline": F139, + "checkerboard": F13A, + "chemical-weapon": F13B, + "chess-bishop": F85B, + "chess-king": F856, + "chess-knight": F857, + "chess-pawn": F858, + "chess-queen": F859, + "chess-rook": F85A, + "chevron-double-down": F13C, + "chevron-double-left": F13D, + "chevron-double-right": F13E, + "chevron-double-up": F13F, + "chevron-down": F140, + "chevron-left": F141, + "chevron-right": F142, + "chevron-up": F143, + "chili-hot": F7B1, + "chili-medium": F7B2, + "chili-mild": F7B3, + "chip": F61A, + "church": F144, + "circle": F764, + "circle-outline": F765, + "cisco-webex": F145, + "city": F146, + "clipboard": F147, + "clipboard-account": F148, + "clipboard-alert": F149, + "clipboard-arrow-down": F14A, + "clipboard-arrow-left": F14B, + "clipboard-check": F14C, + "clipboard-check-outline": F8A7, + "clipboard-flow": F6C7, + "clipboard-outline": F14D, + "clipboard-plus": F750, + "clipboard-pulse": F85C, + "clipboard-pulse-outline": F85D, + "clipboard-text": F14E, + "clippy": F14F, + "clock": F150, + "clock-alert": F5CE, + "clock-end": F151, + "clock-fast": F152, + "clock-in": F153, + "clock-out": F154, + "clock-start": F155, + "close": F156, + "close-box": F157, + "close-box-outline": F158, + "close-circle": F159, + "close-circle-outline": F15A, + "close-network": F15B, + "close-octagon": F15C, + "close-octagon-outline": F15D, + "close-outline": F6C8, + "closed-caption": F15E, + "cloud": F15F, + "cloud-braces": F7B4, + "cloud-check": F160, + "cloud-circle": F161, + "cloud-download": F162, + "cloud-off-outline": F164, + "cloud-outline": F163, + "cloud-print": F165, + "cloud-print-outline": F166, + "cloud-sync": F63F, + "cloud-tags": F7B5, + "cloud-upload": F167, + "clover": F815, + "code-array": F168, + "code-braces": F169, + "code-brackets": F16A, + "code-equal": F16B, + "code-greater-than": F16C, + "code-greater-than-or-equal": F16D, + "code-less-than": F16E, + "code-less-than-or-equal": F16F, + "code-not-equal": F170, + "code-not-equal-variant": F171, + "code-parentheses": F172, + "code-string": F173, + "code-tags": F174, + "code-tags-check": F693, + "codepen": F175, + "coffee": F176, + "coffee-outline": F6C9, + "coffee-to-go": F177, + "coin": F178, + "coins": F694, + "collage": F640, + "color-helper": F179, + "comment": F17A, + "comment-account": F17B, + "comment-account-outline": F17C, + "comment-alert": F17D, + "comment-alert-outline": F17E, + "comment-check": F17F, + "comment-check-outline": F180, + "comment-multiple": F85E, + "comment-multiple-outline": F181, + "comment-outline": F182, + "comment-plus-outline": F183, + "comment-processing": F184, + "comment-processing-outline": F185, + "comment-question": F816, + "comment-question-outline": F186, + "comment-remove": F5DE, + "comment-remove-outline": F187, + "comment-text": F188, + "comment-text-multiple": F85F, + "comment-text-multiple-outline": F860, + "comment-text-outline": F189, + "compare": F18A, + "compass": F18B, + "compass-outline": F18C, + "console": F18D, + "console-line": F7B6, + "console-network": F8A8, + "contact-mail": F18E, + "contacts": F6CA, + "content-copy": F18F, + "content-cut": F190, + "content-duplicate": F191, + "content-paste": F192, + "content-save": F193, + "content-save-all": F194, + "content-save-outline": F817, + "content-save-settings": F61B, + "contrast": F195, + "contrast-box": F196, + "contrast-circle": F197, + "cookie": F198, + "copyright": F5E6, + "corn": F7B7, + "counter": F199, + "cow": F19A, + "crane": F861, + "creation": F1C9, + "credit-card": F19B, + "credit-card-multiple": F19C, + "credit-card-off": F5E4, + "credit-card-plus": F675, + "credit-card-scan": F19D, + "crop": F19E, + "crop-free": F19F, + "crop-landscape": F1A0, + "crop-portrait": F1A1, + "crop-rotate": F695, + "crop-square": F1A2, + "crosshairs": F1A3, + "crosshairs-gps": F1A4, + "crown": F1A5, + "cube": F1A6, + "cube-outline": F1A7, + "cube-send": F1A8, + "cube-unfolded": F1A9, + "cup": F1AA, + "cup-off": F5E5, + "cup-water": F1AB, + "curling": F862, + "currency-bdt": F863, + "currency-btc": F1AC, + "currency-chf": F7B8, + "currency-cny": F7B9, + "currency-eth": F7BA, + "currency-eur": F1AD, + "currency-gbp": F1AE, + "currency-inr": F1AF, + "currency-jpy": F7BB, + "currency-krw": F7BC, + "currency-kzt": F864, + "currency-ngn": F1B0, + "currency-rub": F1B1, + "currency-sign": F7BD, + "currency-try": F1B2, + "currency-twd": F7BE, + "currency-usd": F1B3, + "currency-usd-off": F679, + "cursor-default": F1B4, + "cursor-default-outline": F1B5, + "cursor-move": F1B6, + "cursor-pointer": F1B7, + "cursor-text": F5E7, + "database": F1B8, + "database-minus": F1B9, + "database-plus": F1BA, + "database-search": F865, + "debug-step-into": F1BB, + "debug-step-out": F1BC, + "debug-step-over": F1BD, + "decagram": F76B, + "decagram-outline": F76C, + "decimal-decrease": F1BE, + "decimal-increase": F1BF, + "delete": F1C0, + "delete-circle": F682, + "delete-empty": F6CB, + "delete-forever": F5E8, + "delete-restore": F818, + "delete-sweep": F5E9, + "delete-variant": F1C1, + "delta": F1C2, + "deskphone": F1C3, + "desktop-classic": F7BF, + "desktop-mac": F1C4, + "desktop-tower": F1C5, + "details": F1C6, + "developer-board": F696, + "deviantart": F1C7, + "dialpad": F61C, + "diamond": F1C8, + "dice-1": F1CA, + "dice-2": F1CB, + "dice-3": F1CC, + "dice-4": F1CD, + "dice-5": F1CE, + "dice-6": F1CF, + "dice-d10": F76E, + "dice-d12": F866, + "dice-d20": F5EA, + "dice-d4": F5EB, + "dice-d6": F5EC, + "dice-d8": F5ED, + "dice-multiple": F76D, + "dictionary": F61D, + "dip-switch": F7C0, + "directions": F1D0, + "directions-fork": F641, + "discord": F66F, + "disk": F5EE, + "disk-alert": F1D1, + "disqus": F1D2, + "disqus-outline": F1D3, + "division": F1D4, + "division-box": F1D5, + "dna": F683, + "dns": F1D6, + "do-not-disturb": F697, + "do-not-disturb-off": F698, + "docker": F867, + "dolby": F6B2, + "domain": F1D7, + "donkey": F7C1, + "door": F819, + "door-closed": F81A, + "door-open": F81B, + "doorbell-video": F868, + "dots-horizontal": F1D8, + "dots-horizontal-circle": F7C2, + "dots-vertical": F1D9, + "dots-vertical-circle": F7C3, + "douban": F699, + "download": F1DA, + "download-network": F6F3, + "drag": F1DB, + "drag-horizontal": F1DC, + "drag-vertical": F1DD, + "drawing": F1DE, + "drawing-box": F1DF, + "dribbble": F1E0, + "dribbble-box": F1E1, + "drone": F1E2, + "dropbox": F1E3, + "drupal": F1E4, + "duck": F1E5, + "dumbbell": F1E6, + "ear-hearing": F7C4, + "earth": F1E7, + "earth-box": F6CC, + "earth-box-off": F6CD, + "earth-off": F1E8, + "edge": F1E9, + "eject": F1EA, + "elephant": F7C5, + "elevation-decline": F1EB, + "elevation-rise": F1EC, + "elevator": F1ED, + "email": F1EE, + "email-alert": F6CE, + "email-open": F1EF, + "email-open-outline": F5EF, + "email-outline": F1F0, + "email-secure": F1F1, + "email-variant": F5F0, + "emby": F6B3, + "emoticon": F1F2, + "emoticon-cool": F1F3, + "emoticon-dead": F69A, + "emoticon-devil": F1F4, + "emoticon-excited": F69B, + "emoticon-happy": F1F5, + "emoticon-neutral": F1F6, + "emoticon-poop": F1F7, + "emoticon-sad": F1F8, + "emoticon-tongue": F1F9, + "engine": F1FA, + "engine-outline": F1FB, + "equal": F1FC, + "equal-box": F1FD, + "eraser": F1FE, + "eraser-variant": F642, + "escalator": F1FF, + "ethereum": F869, + "ethernet": F200, + "ethernet-cable": F201, + "ethernet-cable-off": F202, + "etsy": F203, + "ev-station": F5F1, + "eventbrite": F7C6, + "evernote": F204, + "exclamation": F205, + "exit-to-app": F206, + "export": F207, + "eye": F208, + "eye-off": F209, + "eye-off-outline": F6D0, + "eye-outline": F6CF, + "eye-plus": F86A, + "eye-plus-outline": F86B, + "eye-settings": F86C, + "eye-settings-outline": F86D, + "eyedropper": F20A, + "eyedropper-variant": F20B, + "face": F643, + "face-profile": F644, + "facebook": F20C, + "facebook-box": F20D, + "facebook-messenger": F20E, + "factory": F20F, + "fan": F210, + "fan-off": F81C, + "fast-forward": F211, + "fast-forward-outline": F6D1, + "fax": F212, + "feather": F6D2, + "ferry": F213, + "file": F214, + "file-account": F73A, + "file-chart": F215, + "file-check": F216, + "file-cloud": F217, + "file-compare": F8A9, + "file-delimited": F218, + "file-document": F219, + "file-document-box": F21A, + "file-excel": F21B, + "file-excel-box": F21C, + "file-export": F21D, + "file-find": F21E, + "file-hidden": F613, + "file-image": F21F, + "file-import": F220, + "file-lock": F221, + "file-multiple": F222, + "file-music": F223, + "file-outline": F224, + "file-pdf": F225, + "file-pdf-box": F226, + "file-percent": F81D, + "file-plus": F751, + "file-powerpoint": F227, + "file-powerpoint-box": F228, + "file-presentation-box": F229, + "file-question": F86E, + "file-restore": F670, + "file-send": F22A, + "file-tree": F645, + "file-video": F22B, + "file-word": F22C, + "file-word-box": F22D, + "file-xml": F22E, + "film": F22F, + "filmstrip": F230, + "filmstrip-off": F231, + "filter": F232, + "filter-outline": F233, + "filter-remove": F234, + "filter-remove-outline": F235, + "filter-variant": F236, + "finance": F81E, + "find-replace": F6D3, + "fingerprint": F237, + "fire": F238, + "fire-truck": F8AA, + "firefox": F239, + "fish": F23A, + "flag": F23B, + "flag-checkered": F23C, + "flag-outline": F23D, + "flag-triangle": F23F, + "flag-variant": F240, + "flag-variant-outline": F23E, + "flash": F241, + "flash-auto": F242, + "flash-circle": F81F, + "flash-off": F243, + "flash-outline": F6D4, + "flash-red-eye": F67A, + "flashlight": F244, + "flashlight-off": F245, + "flask": F093, + "flask-empty": F094, + "flask-empty-outline": F095, + "flask-outline": F096, + "flattr": F246, + "flip-to-back": F247, + "flip-to-front": F248, + "floor-plan": F820, + "floppy": F249, + "flower": F24A, + "folder": F24B, + "folder-account": F24C, + "folder-download": F24D, + "folder-google-drive": F24E, + "folder-image": F24F, + "folder-key": F8AB, + "folder-key-network": F8AC, + "folder-lock": F250, + "folder-lock-open": F251, + "folder-move": F252, + "folder-multiple": F253, + "folder-multiple-image": F254, + "folder-multiple-outline": F255, + "folder-network": F86F, + "folder-open": F76F, + "folder-outline": F256, + "folder-plus": F257, + "folder-remove": F258, + "folder-star": F69C, + "folder-upload": F259, + "font-awesome": F03A, + "food": F25A, + "food-apple": F25B, + "food-croissant": F7C7, + "food-fork-drink": F5F2, + "food-off": F5F3, + "food-variant": F25C, + "football": F25D, + "football-australian": F25E, + "football-helmet": F25F, + "forklift": F7C8, + "format-align-bottom": F752, + "format-align-center": F260, + "format-align-justify": F261, + "format-align-left": F262, + "format-align-middle": F753, + "format-align-right": F263, + "format-align-top": F754, + "format-annotation-plus": F646, + "format-bold": F264, + "format-clear": F265, + "format-color-fill": F266, + "format-color-text": F69D, + "format-float-center": F267, + "format-float-left": F268, + "format-float-none": F269, + "format-float-right": F26A, + "format-font": F6D5, + "format-header-1": F26B, + "format-header-2": F26C, + "format-header-3": F26D, + "format-header-4": F26E, + "format-header-5": F26F, + "format-header-6": F270, + "format-header-decrease": F271, + "format-header-equal": F272, + "format-header-increase": F273, + "format-header-pound": F274, + "format-horizontal-align-center": F61E, + "format-horizontal-align-left": F61F, + "format-horizontal-align-right": F620, + "format-indent-decrease": F275, + "format-indent-increase": F276, + "format-italic": F277, + "format-line-spacing": F278, + "format-line-style": F5C8, + "format-line-weight": F5C9, + "format-list-bulleted": F279, + "format-list-bulleted-type": F27A, + "format-list-checks": F755, + "format-list-numbers": F27B, + "format-page-break": F6D6, + "format-paint": F27C, + "format-paragraph": F27D, + "format-pilcrow": F6D7, + "format-quote-close": F27E, + "format-quote-open": F756, + "format-rotate-90": F6A9, + "format-section": F69E, + "format-size": F27F, + "format-strikethrough": F280, + "format-strikethrough-variant": F281, + "format-subscript": F282, + "format-superscript": F283, + "format-text": F284, + "format-textdirection-l-to-r": F285, + "format-textdirection-r-to-l": F286, + "format-title": F5F4, + "format-underline": F287, + "format-vertical-align-bottom": F621, + "format-vertical-align-center": F622, + "format-vertical-align-top": F623, + "format-wrap-inline": F288, + "format-wrap-square": F289, + "format-wrap-tight": F28A, + "format-wrap-top-bottom": F28B, + "forum": F28C, + "forum-outline": F821, + "forward": F28D, + "foursquare": F28E, + "fridge": F28F, + "fridge-filled": F290, + "fridge-filled-bottom": F291, + "fridge-filled-top": F292, + "fuel": F7C9, + "fullscreen": F293, + "fullscreen-exit": F294, + "function": F295, + "function-variant": F870, + "gamepad": F296, + "gamepad-variant": F297, + "garage": F6D8, + "garage-alert": F871, + "garage-open": F6D9, + "gas-cylinder": F647, + "gas-station": F298, + "gate": F299, + "gauge": F29A, + "gauge-empty": F872, + "gauge-full": F873, + "gauge-low": F874, + "gavel": F29B, + "gender-female": F29C, + "gender-male": F29D, + "gender-male-female": F29E, + "gender-transgender": F29F, + "gesture": F7CA, + "gesture-double-tap": F73B, + "gesture-swipe-down": F73C, + "gesture-swipe-left": F73D, + "gesture-swipe-right": F73E, + "gesture-swipe-up": F73F, + "gesture-tap": F740, + "gesture-two-double-tap": F741, + "gesture-two-tap": F742, + "ghost": F2A0, + "gift": F2A1, + "git": F2A2, + "github-box": F2A3, + "github-circle": F2A4, + "github-face": F6DA, + "glass-cocktail": F356, + "glass-flute": F2A5, + "glass-mug": F2A6, + "glass-stange": F2A7, + "glass-tulip": F2A8, + "glass-wine": F875, + "glassdoor": F2A9, + "glasses": F2AA, + "gmail": F2AB, + "gnome": F2AC, + "golf": F822, + "gondola": F685, + "google": F2AD, + "google-analytics": F7CB, + "google-assistant": F7CC, + "google-cardboard": F2AE, + "google-chrome": F2AF, + "google-circles": F2B0, + "google-circles-communities": F2B1, + "google-circles-extended": F2B2, + "google-circles-group": F2B3, + "google-controller": F2B4, + "google-controller-off": F2B5, + "google-drive": F2B6, + "google-earth": F2B7, + "google-glass": F2B8, + "google-home": F823, + "google-keep": F6DB, + "google-maps": F5F5, + "google-nearby": F2B9, + "google-pages": F2BA, + "google-photos": F6DC, + "google-physical-web": F2BB, + "google-play": F2BC, + "google-plus": F2BD, + "google-plus-box": F2BE, + "google-translate": F2BF, + "google-wallet": F2C0, + "gpu": F8AD, + "gradient": F69F, + "graphql": F876, + "grease-pencil": F648, + "grid": F2C1, + "grid-large": F757, + "grid-off": F2C2, + "group": F2C3, + "guitar-acoustic": F770, + "guitar-electric": F2C4, + "guitar-pick": F2C5, + "guitar-pick-outline": F2C6, + "guy-fawkes-mask": F824, + "hackernews": F624, + "hamburger": F684, + "hand-pointing-right": F2C7, + "hanger": F2C8, + "hangouts": F2C9, + "harddisk": F2CA, + "headphones": F2CB, + "headphones-box": F2CC, + "headphones-off": F7CD, + "headphones-settings": F2CD, + "headset": F2CE, + "headset-dock": F2CF, + "headset-off": F2D0, + "heart": F2D1, + "heart-box": F2D2, + "heart-box-outline": F2D3, + "heart-broken": F2D4, + "heart-half": F6DE, + "heart-half-full": F6DD, + "heart-half-outline": F6DF, + "heart-off": F758, + "heart-outline": F2D5, + "heart-pulse": F5F6, + "help": F2D6, + "help-box": F78A, + "help-circle": F2D7, + "help-circle-outline": F625, + "help-network": F6F4, + "hexagon": F2D8, + "hexagon-multiple": F6E0, + "hexagon-outline": F2D9, + "high-definition": F7CE, + "high-definition-box": F877, + "highway": F5F7, + "history": F2DA, + "hockey-puck": F878, + "hockey-sticks": F879, + "hololens": F2DB, + "home": F2DC, + "home-account": F825, + "home-alert": F87A, + "home-assistant": F7CF, + "home-automation": F7D0, + "home-circle": F7D1, + "home-currency-usd": F8AE, + "home-heart": F826, + "home-map-marker": F5F8, + "home-modern": F2DD, + "home-outline": F6A0, + "home-variant": F2DE, + "hook": F6E1, + "hook-off": F6E2, + "hops": F2DF, + "hospital": F2E0, + "hospital-building": F2E1, + "hospital-marker": F2E2, + "hot-tub": F827, + "hotel": F2E3, + "houzz": F2E4, + "houzz-box": F2E5, + "hulu": F828, + "human": F2E6, + "human-child": F2E7, + "human-female": F649, + "human-greeting": F64A, + "human-handsdown": F64B, + "human-handsup": F64C, + "human-male": F64D, + "human-male-female": F2E8, + "human-pregnant": F5CF, + "humble-bundle": F743, + "ice-cream": F829, + "image": F2E9, + "image-album": F2EA, + "image-area": F2EB, + "image-area-close": F2EC, + "image-broken": F2ED, + "image-broken-variant": F2EE, + "image-filter": F2EF, + "image-filter-black-white": F2F0, + "image-filter-center-focus": F2F1, + "image-filter-center-focus-weak": F2F2, + "image-filter-drama": F2F3, + "image-filter-frames": F2F4, + "image-filter-hdr": F2F5, + "image-filter-none": F2F6, + "image-filter-tilt-shift": F2F7, + "image-filter-vintage": F2F8, + "image-multiple": F2F9, + "image-off": F82A, + "image-plus": F87B, + "import": F2FA, + "inbox": F686, + "inbox-arrow-down": F2FB, + "inbox-arrow-up": F3D1, + "inbox-multiple": F8AF, + "incognito": F5F9, + "infinity": F6E3, + "information": F2FC, + "information-outline": F2FD, + "information-variant": F64E, + "instagram": F2FE, + "instapaper": F2FF, + "internet-explorer": F300, + "invert-colors": F301, + "itunes": F676, + "jeepney": F302, + "jira": F303, + "jquery": F87C, + "jsfiddle": F304, + "json": F626, + "karate": F82B, + "keg": F305, + "kettle": F5FA, + "key": F306, + "key-change": F307, + "key-minus": F308, + "key-plus": F309, + "key-remove": F30A, + "key-variant": F30B, + "keyboard": F30C, + "keyboard-backspace": F30D, + "keyboard-caps": F30E, + "keyboard-close": F30F, + "keyboard-off": F310, + "keyboard-return": F311, + "keyboard-tab": F312, + "keyboard-variant": F313, + "kickstarter": F744, + "kodi": F314, + "label": F315, + "label-outline": F316, + "ladybug": F82C, + "lambda": F627, + "lamp": F6B4, + "lan": F317, + "lan-connect": F318, + "lan-disconnect": F319, + "lan-pending": F31A, + "language-c": F671, + "language-cpp": F672, + "language-csharp": F31B, + "language-css3": F31C, + "language-go": F7D2, + "language-html5": F31D, + "language-javascript": F31E, + "language-lua": F8B0, + "language-php": F31F, + "language-python": F320, + "language-python-text": F321, + "language-r": F7D3, + "language-swift": F6E4, + "language-typescript": F6E5, + "laptop": F322, + "laptop-chromebook": F323, + "laptop-mac": F324, + "laptop-off": F6E6, + "laptop-windows": F325, + "lastfm": F326, + "lastpass": F446, + "launch": F327, + "lava-lamp": F7D4, + "layers": F328, + "layers-off": F329, + "lead-pencil": F64F, + "leaf": F32A, + "led-off": F32B, + "led-on": F32C, + "led-outline": F32D, + "led-strip": F7D5, + "led-variant-off": F32E, + "led-variant-on": F32F, + "led-variant-outline": F330, + "library": F331, + "library-books": F332, + "library-music": F333, + "library-plus": F334, + "lifebuoy": F87D, + "lightbulb": F335, + "lightbulb-on": F6E7, + "lightbulb-on-outline": F6E8, + "lightbulb-outline": F336, + "link": F337, + "link-off": F338, + "link-variant": F339, + "link-variant-off": F33A, + "linkedin": F33B, + "linkedin-box": F33C, + "linux": F33D, + "loading": F771, + "lock": F33E, + "lock-open": F33F, + "lock-open-outline": F340, + "lock-outline": F341, + "lock-pattern": F6E9, + "lock-plus": F5FB, + "lock-reset": F772, + "lock-smart": F8B1, + "locker": F7D6, + "locker-multiple": F7D7, + "login": F342, + "login-variant": F5FC, + "logout": F343, + "logout-variant": F5FD, + "looks": F344, + "loop": F6EA, + "loupe": F345, + "lumx": F346, + "magnet": F347, + "magnet-on": F348, + "magnify": F349, + "magnify-minus": F34A, + "magnify-minus-outline": F6EB, + "magnify-plus": F34B, + "magnify-plus-outline": F6EC, + "mail-ru": F34C, + "mailbox": F6ED, + "map": F34D, + "map-marker": F34E, + "map-marker-circle": F34F, + "map-marker-minus": F650, + "map-marker-multiple": F350, + "map-marker-off": F351, + "map-marker-outline": F7D8, + "map-marker-plus": F651, + "map-marker-radius": F352, + "margin": F353, + "markdown": F354, + "marker": F652, + "marker-check": F355, + "material-ui": F357, + "math-compass": F358, + "matrix": F628, + "maxcdn": F359, + "medical-bag": F6EE, + "medium": F35A, + "memory": F35B, + "menu": F35C, + "menu-down": F35D, + "menu-down-outline": F6B5, + "menu-left": F35E, + "menu-right": F35F, + "menu-up": F360, + "menu-up-outline": F6B6, + "message": F361, + "message-alert": F362, + "message-bulleted": F6A1, + "message-bulleted-off": F6A2, + "message-draw": F363, + "message-image": F364, + "message-outline": F365, + "message-plus": F653, + "message-processing": F366, + "message-reply": F367, + "message-reply-text": F368, + "message-settings": F6EF, + "message-settings-variant": F6F0, + "message-text": F369, + "message-text-outline": F36A, + "message-video": F36B, + "meteor": F629, + "metronome": F7D9, + "metronome-tick": F7DA, + "micro-sd": F7DB, + "microphone": F36C, + "microphone-minus": F8B2, + "microphone-off": F36D, + "microphone-outline": F36E, + "microphone-plus": F8B3, + "microphone-settings": F36F, + "microphone-variant": F370, + "microphone-variant-off": F371, + "microscope": F654, + "microsoft": F372, + "minecraft": F373, + "minus": F374, + "minus-box": F375, + "minus-box-outline": F6F1, + "minus-circle": F376, + "minus-circle-outline": F377, + "minus-network": F378, + "mixcloud": F62A, + "mixed-reality": F87E, + "mixer": F7DC, + "monitor": F379, + "monitor-multiple": F37A, + "more": F37B, + "motorbike": F37C, + "mouse": F37D, + "mouse-off": F37E, + "mouse-variant": F37F, + "mouse-variant-off": F380, + "move-resize": F655, + "move-resize-variant": F656, + "movie": F381, + "movie-roll": F7DD, + "multiplication": F382, + "multiplication-box": F383, + "mushroom": F7DE, + "mushroom-outline": F7DF, + "music": F759, + "music-box": F384, + "music-box-outline": F385, + "music-circle": F386, + "music-note": F387, + "music-note-bluetooth": F5FE, + "music-note-bluetooth-off": F5FF, + "music-note-eighth": F388, + "music-note-half": F389, + "music-note-off": F38A, + "music-note-quarter": F38B, + "music-note-sixteenth": F38C, + "music-note-whole": F38D, + "music-off": F75A, + "nativescript": F87F, + "nature": F38E, + "nature-people": F38F, + "navigation": F390, + "near-me": F5CD, + "needle": F391, + "nest-protect": F392, + "nest-thermostat": F393, + "netflix": F745, + "network": F6F2, + "new-box": F394, + "newspaper": F395, + "nfc": F396, + "nfc-tap": F397, + "nfc-variant": F398, + "ninja": F773, + "nintendo-switch": F7E0, + "nodejs": F399, + "note": F39A, + "note-multiple": F6B7, + "note-multiple-outline": F6B8, + "note-outline": F39B, + "note-plus": F39C, + "note-plus-outline": F39D, + "note-text": F39E, + "notebook": F82D, + "notification-clear-all": F39F, + "npm": F6F6, + "nuke": F6A3, + "null": F7E1, + "numeric": F3A0, + "numeric-0-box": F3A1, + "numeric-0-box-multiple-outline": F3A2, + "numeric-0-box-outline": F3A3, + "numeric-1-box": F3A4, + "numeric-1-box-multiple-outline": F3A5, + "numeric-1-box-outline": F3A6, + "numeric-2-box": F3A7, + "numeric-2-box-multiple-outline": F3A8, + "numeric-2-box-outline": F3A9, + "numeric-3-box": F3AA, + "numeric-3-box-multiple-outline": F3AB, + "numeric-3-box-outline": F3AC, + "numeric-4-box": F3AD, + "numeric-4-box-multiple-outline": F3AE, + "numeric-4-box-outline": F3AF, + "numeric-5-box": F3B0, + "numeric-5-box-multiple-outline": F3B1, + "numeric-5-box-outline": F3B2, + "numeric-6-box": F3B3, + "numeric-6-box-multiple-outline": F3B4, + "numeric-6-box-outline": F3B5, + "numeric-7-box": F3B6, + "numeric-7-box-multiple-outline": F3B7, + "numeric-7-box-outline": F3B8, + "numeric-8-box": F3B9, + "numeric-8-box-multiple-outline": F3BA, + "numeric-8-box-outline": F3BB, + "numeric-9-box": F3BC, + "numeric-9-box-multiple-outline": F3BD, + "numeric-9-box-outline": F3BE, + "numeric-9-plus-box": F3BF, + "numeric-9-plus-box-multiple-outline": F3C0, + "numeric-9-plus-box-outline": F3C1, + "nut": F6F7, + "nutrition": F3C2, + "oar": F67B, + "octagon": F3C3, + "octagon-outline": F3C4, + "octagram": F6F8, + "octagram-outline": F774, + "odnoklassniki": F3C5, + "office": F3C6, + "oil": F3C7, + "oil-temperature": F3C8, + "omega": F3C9, + "onedrive": F3CA, + "onenote": F746, + "onepassword": F880, + "opacity": F5CC, + "open-in-app": F3CB, + "open-in-new": F3CC, + "openid": F3CD, + "opera": F3CE, + "orbit": F018, + "ornament": F3CF, + "ornament-variant": F3D0, + "owl": F3D2, + "package": F3D3, + "package-down": F3D4, + "package-up": F3D5, + "package-variant": F3D6, + "package-variant-closed": F3D7, + "page-first": F600, + "page-last": F601, + "page-layout-body": F6F9, + "page-layout-footer": F6FA, + "page-layout-header": F6FB, + "page-layout-sidebar-left": F6FC, + "page-layout-sidebar-right": F6FD, + "palette": F3D8, + "palette-advanced": F3D9, + "palette-swatch": F8B4, + "panda": F3DA, + "pandora": F3DB, + "panorama": F3DC, + "panorama-fisheye": F3DD, + "panorama-horizontal": F3DE, + "panorama-vertical": F3DF, + "panorama-wide-angle": F3E0, + "paper-cut-vertical": F3E1, + "paperclip": F3E2, + "parking": F3E3, + "passport": F7E2, + "patreon": F881, + "pause": F3E4, + "pause-circle": F3E5, + "pause-circle-outline": F3E6, + "pause-octagon": F3E7, + "pause-octagon-outline": F3E8, + "paw": F3E9, + "paw-off": F657, + "paypal": F882, + "peace": F883, + "pen": F3EA, + "pencil": F3EB, + "pencil-box": F3EC, + "pencil-box-outline": F3ED, + "pencil-circle": F6FE, + "pencil-circle-outline": F775, + "pencil-lock": F3EE, + "pencil-off": F3EF, + "pentagon": F6FF, + "pentagon-outline": F700, + "percent": F3F0, + "periodic-table": F8B5, + "periodic-table-co2": F7E3, + "periscope": F747, + "pharmacy": F3F1, + "phone": F3F2, + "phone-bluetooth": F3F3, + "phone-classic": F602, + "phone-forward": F3F4, + "phone-hangup": F3F5, + "phone-in-talk": F3F6, + "phone-incoming": F3F7, + "phone-locked": F3F8, + "phone-log": F3F9, + "phone-minus": F658, + "phone-missed": F3FA, + "phone-outgoing": F3FB, + "phone-paused": F3FC, + "phone-plus": F659, + "phone-return": F82E, + "phone-rotate-landscape": F884, + "phone-rotate-portrait": F885, + "phone-settings": F3FD, + "phone-voip": F3FE, + "pi": F3FF, + "pi-box": F400, + "piano": F67C, + "pickaxe": F8B6, + "pier": F886, + "pier-crane": F887, + "pig": F401, + "pill": F402, + "pillar": F701, + "pin": F403, + "pin-off": F404, + "pine-tree": F405, + "pine-tree-box": F406, + "pinterest": F407, + "pinterest-box": F408, + "pipe": F7E4, + "pipe-disconnected": F7E5, + "pipe-leak": F888, + "pistol": F702, + "piston": F889, + "pizza": F409, + "plane-shield": F6BA, + "play": F40A, + "play-box-outline": F40B, + "play-circle": F40C, + "play-circle-outline": F40D, + "play-network": F88A, + "play-pause": F40E, + "play-protected-content": F40F, + "playlist-check": F5C7, + "playlist-minus": F410, + "playlist-play": F411, + "playlist-plus": F412, + "playlist-remove": F413, + "playstation": F414, + "plex": F6B9, + "plus": F415, + "plus-box": F416, + "plus-box-outline": F703, + "plus-circle": F417, + "plus-circle-multiple-outline": F418, + "plus-circle-outline": F419, + "plus-network": F41A, + "plus-one": F41B, + "plus-outline": F704, + "pocket": F41C, + "pokeball": F41D, + "poker-chip": F82F, + "polaroid": F41E, + "poll": F41F, + "poll-box": F420, + "polymer": F421, + "pool": F606, + "popcorn": F422, + "pot": F65A, + "pot-mix": F65B, + "pound": F423, + "pound-box": F424, + "power": F425, + "power-plug": F6A4, + "power-plug-off": F6A5, + "power-settings": F426, + "power-socket": F427, + "power-socket-eu": F7E6, + "power-socket-uk": F7E7, + "power-socket-us": F7E8, + "prescription": F705, + "presentation": F428, + "presentation-play": F429, + "printer": F42A, + "printer-3d": F42B, + "printer-alert": F42C, + "printer-settings": F706, + "priority-high": F603, + "priority-low": F604, + "professional-hexagon": F42D, + "projector": F42E, + "projector-screen": F42F, + "publish": F6A6, + "pulse": F430, + "puzzle": F431, + "qqchat": F605, + "qrcode": F432, + "qrcode-edit": F8B7, + "qrcode-scan": F433, + "quadcopter": F434, + "quality-high": F435, + "quicktime": F436, + "radar": F437, + "radiator": F438, + "radio": F439, + "radio-handheld": F43A, + "radio-tower": F43B, + "radioactive": F43C, + "radiobox-blank": F43D, + "radiobox-marked": F43E, + "raspberrypi": F43F, + "ray-end": F440, + "ray-end-arrow": F441, + "ray-start": F442, + "ray-start-arrow": F443, + "ray-start-end": F444, + "ray-vertex": F445, + "react": F707, + "read": F447, + "receipt": F449, + "record": F44A, + "record-rec": F44B, + "recycle": F44C, + "reddit": F44D, + "redo": F44E, + "redo-variant": F44F, + "refresh": F450, + "regex": F451, + "relative-scale": F452, + "reload": F453, + "reminder": F88B, + "remote": F454, + "remote-desktop": F8B8, + "rename-box": F455, + "reorder-horizontal": F687, + "reorder-vertical": F688, + "repeat": F456, + "repeat-off": F457, + "repeat-once": F458, + "replay": F459, + "reply": F45A, + "reply-all": F45B, + "reproduction": F45C, + "resize-bottom-right": F45D, + "responsive": F45E, + "restart": F708, + "restore": F6A7, + "rewind": F45F, + "rewind-outline": F709, + "rhombus": F70A, + "rhombus-outline": F70B, + "ribbon": F460, + "rice": F7E9, + "ring": F7EA, + "road": F461, + "road-variant": F462, + "robot": F6A8, + "rocket": F463, + "room-service": F88C, + "roomba": F70C, + "rotate-3d": F464, + "rotate-left": F465, + "rotate-left-variant": F466, + "rotate-right": F467, + "rotate-right-variant": F468, + "rounded-corner": F607, + "router-wireless": F469, + "routes": F46A, + "rowing": F608, + "rss": F46B, + "rss-box": F46C, + "ruler": F46D, + "run": F70D, + "run-fast": F46E, + "sale": F46F, + "salesforce": F88D, + "sass": F7EB, + "satellite": F470, + "satellite-variant": F471, + "sausage": F8B9, + "saxophone": F609, + "scale": F472, + "scale-balance": F5D1, + "scale-bathroom": F473, + "scanner": F6AA, + "school": F474, + "screen-rotation": F475, + "screen-rotation-lock": F476, + "screwdriver": F477, + "script": F478, + "sd": F479, + "seal": F47A, + "search-web": F70E, + "seat-flat": F47B, + "seat-flat-angled": F47C, + "seat-individual-suite": F47D, + "seat-legroom-extra": F47E, + "seat-legroom-normal": F47F, + "seat-legroom-reduced": F480, + "seat-recline-extra": F481, + "seat-recline-normal": F482, + "security": F483, + "security-account": F88E, + "security-home": F689, + "security-network": F484, + "select": F485, + "select-all": F486, + "select-inverse": F487, + "select-off": F488, + "selection": F489, + "selection-off": F776, + "send": F48A, + "send-secure": F7EC, + "serial-port": F65C, + "server": F48B, + "server-minus": F48C, + "server-network": F48D, + "server-network-off": F48E, + "server-off": F48F, + "server-plus": F490, + "server-remove": F491, + "server-security": F492, + "set-all": F777, + "set-center": F778, + "set-center-right": F779, + "set-left": F77A, + "set-left-center": F77B, + "set-left-right": F77C, + "set-none": F77D, + "set-right": F77E, + "settings": F493, + "settings-box": F494, + "settings-outline": F8BA, + "shape": F830, + "shape-circle-plus": F65D, + "shape-outline": F831, + "shape-plus": F495, + "shape-polygon-plus": F65E, + "shape-rectangle-plus": F65F, + "shape-square-plus": F660, + "share": F496, + "share-variant": F497, + "shield": F498, + "shield-half-full": F77F, + "shield-outline": F499, + "ship-wheel": F832, + "shopping": F49A, + "shopping-music": F49B, + "shovel": F70F, + "shovel-off": F710, + "shredder": F49C, + "shuffle": F49D, + "shuffle-disabled": F49E, + "shuffle-variant": F49F, + "sigma": F4A0, + "sigma-lower": F62B, + "sign-caution": F4A1, + "sign-direction": F780, + "sign-text": F781, + "signal": F4A2, + "signal-2g": F711, + "signal-3g": F712, + "signal-4g": F713, + "signal-cellular-1": F8BB, + "signal-cellular-2": F8BC, + "signal-cellular-3": F8BD, + "signal-cellular-outline": F8BE, + "signal-hspa": F714, + "signal-hspa-plus": F715, + "signal-off": F782, + "signal-variant": F60A, + "silverware": F4A3, + "silverware-fork": F4A4, + "silverware-spoon": F4A5, + "silverware-variant": F4A6, + "sim": F4A7, + "sim-alert": F4A8, + "sim-off": F4A9, + "sitemap": F4AA, + "skip-backward": F4AB, + "skip-forward": F4AC, + "skip-next": F4AD, + "skip-next-circle": F661, + "skip-next-circle-outline": F662, + "skip-previous": F4AE, + "skip-previous-circle": F663, + "skip-previous-circle-outline": F664, + "skull": F68B, + "skype": F4AF, + "skype-business": F4B0, + "slack": F4B1, + "sleep": F4B2, + "sleep-off": F4B3, + "smoking": F4B4, + "smoking-off": F4B5, + "snapchat": F4B6, + "snowflake": F716, + "snowman": F4B7, + "soccer": F4B8, + "soccer-field": F833, + "sofa": F4B9, + "solid": F68C, + "sort": F4BA, + "sort-alphabetical": F4BB, + "sort-ascending": F4BC, + "sort-descending": F4BD, + "sort-numeric": F4BE, + "sort-variant": F4BF, + "soundcloud": F4C0, + "source-branch": F62C, + "source-commit": F717, + "source-commit-end": F718, + "source-commit-end-local": F719, + "source-commit-local": F71A, + "source-commit-next-local": F71B, + "source-commit-start": F71C, + "source-commit-start-next-local": F71D, + "source-fork": F4C1, + "source-merge": F62D, + "source-pull": F4C2, + "soy-sauce": F7ED, + "speaker": F4C3, + "speaker-off": F4C4, + "speaker-wireless": F71E, + "speedometer": F4C5, + "spellcheck": F4C6, + "spotify": F4C7, + "spotlight": F4C8, + "spotlight-beam": F4C9, + "spray": F665, + "square": F763, + "square-inc": F4CA, + "square-inc-cash": F4CB, + "square-outline": F762, + "square-root": F783, + "ssh": F8BF, + "stack-overflow": F4CC, + "stackexchange": F60B, + "stadium": F71F, + "stairs": F4CD, + "standard-definition": F7EE, + "star": F4CE, + "star-circle": F4CF, + "star-half": F4D0, + "star-off": F4D1, + "star-outline": F4D2, + "steam": F4D3, + "steering": F4D4, + "step-backward": F4D5, + "step-backward-2": F4D6, + "step-forward": F4D7, + "step-forward-2": F4D8, + "stethoscope": F4D9, + "sticker": F5D0, + "sticker-emoji": F784, + "stocking": F4DA, + "stop": F4DB, + "stop-circle": F666, + "stop-circle-outline": F667, + "store": F4DC, + "store-24-hour": F4DD, + "stove": F4DE, + "subdirectory-arrow-left": F60C, + "subdirectory-arrow-right": F60D, + "subway": F6AB, + "subway-variant": F4DF, + "summit": F785, + "sunglasses": F4E0, + "surround-sound": F5C5, + "surround-sound-2-0": F7EF, + "surround-sound-3-1": F7F0, + "surround-sound-5-1": F7F1, + "surround-sound-7-1": F7F2, + "svg": F720, + "swap-horizontal": F4E1, + "swap-horizontal-variant": F8C0, + "swap-vertical": F4E2, + "swap-vertical-variant": F8C1, + "swim": F4E3, + "switch": F4E4, + "sword": F4E5, + "sword-cross": F786, + "sync": F4E6, + "sync-alert": F4E7, + "sync-off": F4E8, + "tab": F4E9, + "tab-plus": F75B, + "tab-unselected": F4EA, + "table": F4EB, + "table-column": F834, + "table-column-plus-after": F4EC, + "table-column-plus-before": F4ED, + "table-column-remove": F4EE, + "table-column-width": F4EF, + "table-edit": F4F0, + "table-large": F4F1, + "table-of-contents": F835, + "table-row": F836, + "table-row-height": F4F2, + "table-row-plus-after": F4F3, + "table-row-plus-before": F4F4, + "table-row-remove": F4F5, + "table-settings": F837, + "tablet": F4F6, + "tablet-android": F4F7, + "tablet-ipad": F4F8, + "taco": F761, + "tag": F4F9, + "tag-faces": F4FA, + "tag-heart": F68A, + "tag-multiple": F4FB, + "tag-outline": F4FC, + "tag-plus": F721, + "tag-remove": F722, + "tag-text-outline": F4FD, + "target": F4FE, + "taxi": F4FF, + "teach": F88F, + "teamviewer": F500, + "telegram": F501, + "television": F502, + "television-box": F838, + "television-classic": F7F3, + "television-classic-off": F839, + "television-guide": F503, + "television-off": F83A, + "temperature-celsius": F504, + "temperature-fahrenheit": F505, + "temperature-kelvin": F506, + "tennis": F507, + "tent": F508, + "terrain": F509, + "test-tube": F668, + "text-shadow": F669, + "text-to-speech": F50A, + "text-to-speech-off": F50B, + "textbox": F60E, + "textbox-password": F7F4, + "texture": F50C, + "theater": F50D, + "theme-light-dark": F50E, + "thermometer": F50F, + "thermometer-lines": F510, + "thermostat-box": F890, + "thought-bubble": F7F5, + "thought-bubble-outline": F7F6, + "thumb-down": F511, + "thumb-down-outline": F512, + "thumb-up": F513, + "thumb-up-outline": F514, + "thumbs-up-down": F515, + "ticket": F516, + "ticket-account": F517, + "ticket-confirmation": F518, + "ticket-percent": F723, + "tie": F519, + "tilde": F724, + "timelapse": F51A, + "timer": F51B, + "timer-10": F51C, + "timer-3": F51D, + "timer-off": F51E, + "timer-sand": F51F, + "timer-sand-empty": F6AC, + "timer-sand-full": F78B, + "timetable": F520, + "toggle-switch": F521, + "toggle-switch-off": F522, + "tooltip": F523, + "tooltip-edit": F524, + "tooltip-image": F525, + "tooltip-outline": F526, + "tooltip-outline-plus": F527, + "tooltip-text": F528, + "tooth": F8C2, + "tooth-outline": F529, + "tor": F52A, + "tower-beach": F680, + "tower-fire": F681, + "towing": F83B, + "trackpad": F7F7, + "tractor": F891, + "traffic-light": F52B, + "train": F52C, + "train-variant": F8C3, + "tram": F52D, + "transcribe": F52E, + "transcribe-close": F52F, + "transfer": F530, + "transit-transfer": F6AD, + "translate": F5CA, + "treasure-chest": F725, + "tree": F531, + "trello": F532, + "trending-down": F533, + "trending-neutral": F534, + "trending-up": F535, + "triangle": F536, + "triangle-outline": F537, + "trophy": F538, + "trophy-award": F539, + "trophy-outline": F53A, + "trophy-variant": F53B, + "trophy-variant-outline": F53C, + "truck": F53D, + "truck-delivery": F53E, + "truck-fast": F787, + "truck-trailer": F726, + "tshirt-crew": F53F, + "tshirt-v": F540, + "tumblr": F541, + "tumblr-reblog": F542, + "tune": F62E, + "tune-vertical": F66A, + "twitch": F543, + "twitter": F544, + "twitter-box": F545, + "twitter-circle": F546, + "twitter-retweet": F547, + "uber": F748, + "ubuntu": F548, + "ultra-high-definition": F7F8, + "umbraco": F549, + "umbrella": F54A, + "umbrella-outline": F54B, + "undo": F54C, + "undo-variant": F54D, + "unfold-less-horizontal": F54E, + "unfold-less-vertical": F75F, + "unfold-more-horizontal": F54F, + "unfold-more-vertical": F760, + "ungroup": F550, + "unity": F6AE, + "untappd": F551, + "update": F6AF, + "upload": F552, + "upload-multiple": F83C, + "upload-network": F6F5, + "usb": F553, + "van-passenger": F7F9, + "van-utility": F7FA, + "vanish": F7FB, + "vector-arrange-above": F554, + "vector-arrange-below": F555, + "vector-circle": F556, + "vector-circle-variant": F557, + "vector-combine": F558, + "vector-curve": F559, + "vector-difference": F55A, + "vector-difference-ab": F55B, + "vector-difference-ba": F55C, + "vector-ellipse": F892, + "vector-intersection": F55D, + "vector-line": F55E, + "vector-point": F55F, + "vector-polygon": F560, + "vector-polyline": F561, + "vector-radius": F749, + "vector-rectangle": F5C6, + "vector-selection": F562, + "vector-square": F001, + "vector-triangle": F563, + "vector-union": F564, + "venmo": F578, + "verified": F565, + "vibrate": F566, + "video": F567, + "video-3d": F7FC, + "video-4k-box": F83D, + "video-input-antenna": F83E, + "video-input-component": F83F, + "video-input-hdmi": F840, + "video-input-svideo": F841, + "video-off": F568, + "video-switch": F569, + "view-agenda": F56A, + "view-array": F56B, + "view-carousel": F56C, + "view-column": F56D, + "view-dashboard": F56E, + "view-dashboard-variant": F842, + "view-day": F56F, + "view-grid": F570, + "view-headline": F571, + "view-list": F572, + "view-module": F573, + "view-parallel": F727, + "view-quilt": F574, + "view-sequential": F728, + "view-stream": F575, + "view-week": F576, + "vimeo": F577, + "violin": F60F, + "virtual-reality": F893, + "visualstudio": F610, + "vk": F579, + "vk-box": F57A, + "vk-circle": F57B, + "vlc": F57C, + "voice": F5CB, + "voicemail": F57D, + "volume-high": F57E, + "volume-low": F57F, + "volume-medium": F580, + "volume-minus": F75D, + "volume-mute": F75E, + "volume-off": F581, + "volume-plus": F75C, + "vpn": F582, + "vuejs": F843, + "walk": F583, + "wall": F7FD, + "wallet": F584, + "wallet-giftcard": F585, + "wallet-membership": F586, + "wallet-travel": F587, + "wan": F588, + "washing-machine": F729, + "watch": F589, + "watch-export": F58A, + "watch-export-variant": F894, + "watch-import": F58B, + "watch-import-variant": F895, + "watch-variant": F896, + "watch-vibrate": F6B0, + "water": F58C, + "water-off": F58D, + "water-percent": F58E, + "water-pump": F58F, + "watermark": F612, + "waves": F78C, + "weather-cloudy": F590, + "weather-fog": F591, + "weather-hail": F592, + "weather-hurricane": F897, + "weather-lightning": F593, + "weather-lightning-rainy": F67D, + "weather-night": F594, + "weather-partlycloudy": F595, + "weather-pouring": F596, + "weather-rainy": F597, + "weather-snowy": F598, + "weather-snowy-rainy": F67E, + "weather-sunny": F599, + "weather-sunset": F59A, + "weather-sunset-down": F59B, + "weather-sunset-up": F59C, + "weather-windy": F59D, + "weather-windy-variant": F59E, + "web": F59F, + "webcam": F5A0, + "webhook": F62F, + "webpack": F72A, + "wechat": F611, + "weight": F5A1, + "weight-kilogram": F5A2, + "whatsapp": F5A3, + "wheelchair-accessibility": F5A4, + "white-balance-auto": F5A5, + "white-balance-incandescent": F5A6, + "white-balance-iridescent": F5A7, + "white-balance-sunny": F5A8, + "widgets": F72B, + "wifi": F5A9, + "wifi-off": F5AA, + "wii": F5AB, + "wiiu": F72C, + "wikipedia": F5AC, + "window-close": F5AD, + "window-closed": F5AE, + "window-maximize": F5AF, + "window-minimize": F5B0, + "window-open": F5B1, + "window-restore": F5B2, + "windows": F5B3, + "wordpress": F5B4, + "worker": F5B5, + "wrap": F5B6, + "wrench": F5B7, + "wunderlist": F5B8, + "xamarin": F844, + "xamarin-outline": F845, + "xaml": F673, + "xbox": F5B9, + "xbox-controller": F5BA, + "xbox-controller-battery-alert": F74A, + "xbox-controller-battery-empty": F74B, + "xbox-controller-battery-full": F74C, + "xbox-controller-battery-low": F74D, + "xbox-controller-battery-medium": F74E, + "xbox-controller-battery-unknown": F74F, + "xbox-controller-off": F5BB, + "xda": F5BC, + "xing": F5BD, + "xing-box": F5BE, + "xing-circle": F5BF, + "xml": F5C0, + "xmpp": F7FE, + "yammer": F788, + "yeast": F5C1, + "yelp": F5C2, + "yin-yang": F67F, + "youtube-creator-studio": F846, + "youtube-gaming": F847, + "youtube-play": F5C3, + "youtube-tv": F448, + "zip-box": F5C4 +); \ No newline at end of file diff --git a/assets/vendors/iconfonts/mdi/scss/materialdesignicons.scss b/assets/vendors/iconfonts/mdi/scss/materialdesignicons.scss new file mode 100755 index 0000000..2353145 --- /dev/null +++ b/assets/vendors/iconfonts/mdi/scss/materialdesignicons.scss @@ -0,0 +1,8 @@ +/* MaterialDesignIcons.com */ +@import "variables"; +@import "functions"; +@import "path"; +@import "core"; +@import "icons"; +@import "extras"; +@import "animated"; \ No newline at end of file diff --git a/assets/vendors/iconfonts/puse-icons-feather/README.md b/assets/vendors/iconfonts/puse-icons-feather/README.md new file mode 100755 index 0000000..2abebce --- /dev/null +++ b/assets/vendors/iconfonts/puse-icons-feather/README.md @@ -0,0 +1,55 @@ +# Feather + +[Feather](http://colebemis.com/feather) is a growing collection of beautifully simple icons by [@colebemis](http://twitter.com/colebemis). + +Each icon was carefully designed with usability and consistency in mind. The set is packaged in PSD, CSH, SVG and Webfont format. + +## Installation + +Using [component](https://github.com/component/component) + + $ component install puse/icons-feather + +Using [npm](http://npmjs.org/) for [browserify](http://browserify.org/), [npm-css](https://www.npmjs.org/package/npm-css), [rework](https://github.com/reworkcss/rework), .. + + $ npm install puse-icons-feather + +Manually + +1. Copy the entire `fonts` directory into your project + +2. Include `feather.css` in the `` of your HTML document + +```html + +``` + +## Usage + +Insert the icon's class name into any HTML element or insert a `data-icon` attribute with the icon's HTML entity into any HTML element + +```html + + +``` + + +## Changelog + +**v1.0** - 11/27/2013 + +- initial release + +**v1.1** - 4/27/2014 + +- added CSH, SVG and Webfont formats +- added 30 new icons +- changed all PSD icon layers to vector shapes + +## License + +Feather is released under the [MIT License](http://opensource.org/licenses/MIT). In short, you are free to use Feather in any personal, open-source or commercial work. Attribution is optional but appreciated. + +## Support + +If you have any questions, issues or suggestions for new icons, let me know: [info@colebemis.com](mailto:info@colebemis.com) diff --git a/assets/vendors/iconfonts/puse-icons-feather/feather.css b/assets/vendors/iconfonts/puse-icons-feather/feather.css new file mode 100755 index 0000000..046bcde --- /dev/null +++ b/assets/vendors/iconfonts/puse-icons-feather/feather.css @@ -0,0 +1,572 @@ +@charset "UTF-8"; + +@font-face { + font-family: "feather"; + src:url("fonts/feather-webfont.eot"); + src:url("fonts/feather-webfont.eot?#iefix") format("embedded-opentype"), + url("fonts/feather-webfont.woff") format("woff"), + url("fonts/feather-webfont.ttf") format("truetype"), + url("fonts/feather-webfont.svg#feather") format("svg"); + font-weight: normal; + font-style: normal; +} + +/* Character Mapping Method */ + +[data-icon]:before { + display: inline-block; + font-family: "feather"; + content: attr(data-icon); + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + speak: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +/* CSS Class Mapping Method */ + +[class^="icon-"], +[class*=" icon-"] { + display: inline-block; + font-family: "feather"; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + speak: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.icon-eye:before { + content: "\e000"; +} + +.icon-paper-clip:before { + content: "\e001"; +} + +.icon-mail:before { + content: "\e002"; +} + +.icon-mail:before { + content: "\e002"; +} + +.icon-toggle:before { + content: "\e003"; +} + +.icon-layout:before { + content: "\e004"; +} + +.icon-link:before { + content: "\e005"; +} + +.icon-bell:before { + content: "\e006"; +} + +.icon-lock:before { + content: "\e007"; +} + +.icon-unlock:before { + content: "\e008"; +} + +.icon-ribbon:before { + content: "\e009"; +} + +.icon-image:before { + content: "\e010"; +} + +.icon-signal:before { + content: "\e011"; +} + +.icon-target:before { + content: "\e012"; +} + +.icon-clipboard:before { + content: "\e013"; +} + +.icon-clock:before { + content: "\e014"; +} + +.icon-clock:before { + content: "\e014"; +} + +.icon-watch:before { + content: "\e015"; +} + +.icon-air-play:before { + content: "\e016"; +} + +.icon-camera:before { + content: "\e017"; +} + +.icon-video:before { + content: "\e018"; +} + +.icon-disc:before { + content: "\e019"; +} + +.icon-printer:before { + content: "\e020"; +} + +.icon-monitor:before { + content: "\e021"; +} + +.icon-server:before { + content: "\e022"; +} + +.icon-cog:before { + content: "\e023"; +} + +.icon-heart:before { + content: "\e024"; +} + +.icon-paragraph:before { + content: "\e025"; +} + +.icon-align-justify:before { + content: "\e026"; +} + +.icon-align-left:before { + content: "\e027"; +} + +.icon-align-center:before { + content: "\e028"; +} + +.icon-align-right:before { + content: "\e029"; +} + +.icon-book:before { + content: "\e030"; +} + +.icon-layers:before { + content: "\e031"; +} + +.icon-stack:before { + content: "\e032"; +} + +.icon-stack-2:before { + content: "\e033"; +} + +.icon-paper:before { + content: "\e034"; +} + +.icon-paper-stack:before { + content: "\e035"; +} + +.icon-search:before { + content: "\e036"; +} + +.icon-zoom-in:before { + content: "\e037"; +} + +.icon-zoom-out:before { + content: "\e038"; +} + +.icon-reply:before { + content: "\e039"; +} + +.icon-circle-plus:before { + content: "\e040"; +} + +.icon-circle-minus:before { + content: "\e041"; +} + +.icon-circle-check:before { + content: "\e042"; +} + +.icon-circle-cross:before { + content: "\e043"; +} + +.icon-square-plus:before { + content: "\e044"; +} + +.icon-square-minus:before { + content: "\e045"; +} + +.icon-square-check:before { + content: "\e046"; +} + +.icon-square-cross:before { + content: "\e047"; +} + +.icon-microphone:before { + content: "\e048"; +} + +.icon-record:before { + content: "\e049"; +} + +.icon-skip-back:before { + content: "\e050"; +} + +.icon-rewind:before { + content: "\e051"; +} + +.icon-play:before { + content: "\e052"; +} + +.icon-pause:before { + content: "\e053"; +} + +.icon-stop:before { + content: "\e054"; +} + +.icon-fast-forward:before { + content: "\e055"; +} + +.icon-skip-forward:before { + content: "\e056"; +} + +.icon-shuffle:before { + content: "\e057"; +} + +.icon-repeat:before { + content: "\e058"; +} + +.icon-folder:before { + content: "\e059"; +} + +.icon-umbrella:before { + content: "\e060"; +} + +.icon-moon:before { + content: "\e061"; +} + +.icon-thermometer:before { + content: "\e062"; +} + +.icon-drop:before { + content: "\e063"; +} + +.icon-sun:before { + content: "\e064"; +} + +.icon-cloud:before { + content: "\e065"; +} + +.icon-cloud-upload:before { + content: "\e066"; +} + +.icon-cloud-download:before { + content: "\e067"; +} + +.icon-upload:before { + content: "\e068"; +} + +.icon-download:before { + content: "\e069"; +} + +.icon-location:before { + content: "\e070"; +} + +.icon-location-2:before { + content: "\e071"; +} + +.icon-map:before { + content: "\e072"; +} + +.icon-battery:before { + content: "\e073"; +} + +.icon-head:before { + content: "\e074"; +} + +.icon-briefcase:before { + content: "\e075"; +} + +.icon-speech-bubble:before { + content: "\e076"; +} + +.icon-anchor:before { + content: "\e077"; +} + +.icon-globe:before { + content: "\e078"; +} + +.icon-box:before { + content: "\e079"; +} + +.icon-reload:before { + content: "\e080"; +} + +.icon-share:before { + content: "\e081"; +} + +.icon-marquee:before { + content: "\e082"; +} + +.icon-marquee-plus:before { + content: "\e083"; +} + +.icon-marquee-minus:before { + content: "\e084"; +} + +.icon-tag:before { + content: "\e085"; +} + +.icon-power:before { + content: "\e086"; +} + +.icon-command:before { + content: "\e087"; +} + +.icon-alt:before { + content: "\e088"; +} + +.icon-esc:before { + content: "\e089"; +} + +.icon-bar-graph:before { + content: "\e090"; +} + +.icon-bar-graph-2:before { + content: "\e091"; +} + +.icon-pie-graph:before { + content: "\e092"; +} + +.icon-star:before { + content: "\e093"; +} + +.icon-arrow-left:before { + content: "\e094"; +} + +.icon-arrow-right:before { + content: "\e095"; +} + +.icon-arrow-up:before { + content: "\e096"; +} + +.icon-arrow-down:before { + content: "\e097"; +} + +.icon-volume:before { + content: "\e098"; +} + +.icon-mute:before { + content: "\e099"; +} + +.icon-content-right:before { + content: "\e100"; +} + +.icon-content-left:before { + content: "\e101"; +} + +.icon-grid:before { + content: "\e102"; +} + +.icon-grid-2:before { + content: "\e103"; +} + +.icon-columns:before { + content: "\e104"; +} + +.icon-loader:before { + content: "\e105"; +} + +.icon-bag:before { + content: "\e106"; +} + +.icon-ban:before { + content: "\e107"; +} + +.icon-flag:before { + content: "\e108"; +} + +.icon-trash:before { + content: "\e109"; +} + +.icon-expand:before { + content: "\e110"; +} + +.icon-contract:before { + content: "\e111"; +} + +.icon-maximize:before { + content: "\e112"; +} + +.icon-minimize:before { + content: "\e113"; +} + +.icon-plus:before { + content: "\e114"; +} + +.icon-minus:before { + content: "\e115"; +} + +.icon-check:before { + content: "\e116"; +} + +.icon-cross:before { + content: "\e117"; +} + +.icon-move:before { + content: "\e118"; +} + +.icon-delete:before { + content: "\e119"; +} + +.icon-menu:before { + content: "\e120"; +} + +.icon-archive:before { + content: "\e121"; +} + +.icon-inbox:before { + content: "\e122"; +} + +.icon-outbox:before { + content: "\e123"; +} + +.icon-file:before { + content: "\e124"; +} + +.icon-file-add:before { + content: "\e125"; +} + +.icon-file-subtract:before { + content: "\e126"; +} + +.icon-help:before { + content: "\e127"; +} + +.icon-open:before { + content: "\e128"; +} + +.icon-ellipsis:before { + content: "\e129"; +} \ No newline at end of file diff --git a/assets/vendors/iconfonts/puse-icons-feather/fonts/feather-webfont.eot b/assets/vendors/iconfonts/puse-icons-feather/fonts/feather-webfont.eot new file mode 100755 index 0000000..0f23fbb Binary files /dev/null and b/assets/vendors/iconfonts/puse-icons-feather/fonts/feather-webfont.eot differ diff --git a/assets/vendors/iconfonts/puse-icons-feather/fonts/feather-webfont.svg b/assets/vendors/iconfonts/puse-icons-feather/fonts/feather-webfont.svg new file mode 100755 index 0000000..72f7483 --- /dev/null +++ b/assets/vendors/iconfonts/puse-icons-feather/fonts/feather-webfont.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/iconfonts/puse-icons-feather/fonts/feather-webfont.ttf b/assets/vendors/iconfonts/puse-icons-feather/fonts/feather-webfont.ttf new file mode 100755 index 0000000..39c978b Binary files /dev/null and b/assets/vendors/iconfonts/puse-icons-feather/fonts/feather-webfont.ttf differ diff --git a/assets/vendors/iconfonts/puse-icons-feather/fonts/feather-webfont.woff b/assets/vendors/iconfonts/puse-icons-feather/fonts/feather-webfont.woff new file mode 100755 index 0000000..9fbf6b9 Binary files /dev/null and b/assets/vendors/iconfonts/puse-icons-feather/fonts/feather-webfont.woff differ diff --git a/assets/vendors/iconfonts/puse-icons-feather/package.json b/assets/vendors/iconfonts/puse-icons-feather/package.json new file mode 100755 index 0000000..1034039 --- /dev/null +++ b/assets/vendors/iconfonts/puse-icons-feather/package.json @@ -0,0 +1,72 @@ +{ + "_args": [ + [ + "puse-icons-feather@1.1.0", + "/Applications/XAMPP/xamppfiles/htdocs/star_pro" + ] + ], + "_from": "puse-icons-feather@1.1.0", + "_id": "puse-icons-feather@1.1.0", + "_inBundle": false, + "_integrity": "sha1-PkrDuzU6f7hnje0GrqBvUKU1k4w=", + "_location": "/puse-icons-feather", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "puse-icons-feather@1.1.0", + "name": "puse-icons-feather", + "escapedName": "puse-icons-feather", + "rawSpec": "1.1.0", + "saveSpec": null, + "fetchSpec": "1.1.0" + }, + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/puse-icons-feather/-/puse-icons-feather-1.1.0.tgz", + "_spec": "1.1.0", + "_where": "/Applications/XAMPP/xamppfiles/htdocs/star_pro", + "author": { + "name": "Cole Bemis", + "email": "info@colebemis.com" + }, + "bugs": { + "url": "https://github.com/puse/icons-feather/issues" + }, + "contributors": [ + { + "name": "Mushex Antaranian", + "email": "mushex@antaranian.com" + } + ], + "description": "A growing collection of beautifully simple icons.", + "devDependencies": { + "faiton": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "feather.css", + "fonts/" + ], + "homepage": "http://colebemis.com/feather/", + "keywords": [ + "icon", + "font", + "feather", + "puse" + ], + "name": "puse-icons-feather", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/puse/icons-feather.git" + }, + "scripts": { + "build": "make build", + "prepublish": "make build-dev" + }, + "style": "feather.css", + "version": "1.1.0" +} diff --git a/assets/vendors/iconfonts/simple-line-icon/CODE_OF_CONDUCT.md b/assets/vendors/iconfonts/simple-line-icon/CODE_OF_CONDUCT.md new file mode 100755 index 0000000..4ead0e1 --- /dev/null +++ b/assets/vendors/iconfonts/simple-line-icon/CODE_OF_CONDUCT.md @@ -0,0 +1,13 @@ +# Contributor Code of Conduct + +As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. + +We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion. + +Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct. + +Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team. + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers. + +This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/) diff --git a/assets/vendors/iconfonts/simple-line-icon/CONTRIBUTING.md b/assets/vendors/iconfonts/simple-line-icon/CONTRIBUTING.md new file mode 100755 index 0000000..ecf3034 --- /dev/null +++ b/assets/vendors/iconfonts/simple-line-icon/CONTRIBUTING.md @@ -0,0 +1,64 @@ +# Contributing to Simple Line Icons + +First off, thanks for taking the time to contribute! + +The following is a set of guidelines for contributing to Simple Line Icons. These are just guidelines, not rules, use your best judgment and feel free to propose changes to this document in a pull request. + +## Code of Conduct + +This project adheres to the Contributor Covenant [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to mail@thesabbir.com. + +## How Can I Contribute? + + - [Reporting bugs](#reporting-bugs) + - [Suggestion enhancement](#suggestion-enhancement) + - [Pull request](#pull-request) + - [Improving documentations](#documentations) + + +## Reporting bugs + +Bugs are tracked as GitHub issues. Explain the problem and include additional details to help maintainers reproduce the problem. + + - Use a clear and descriptive title for the issue to identify the problem. + - Describe the exact steps which reproduce the problem. + - Explain which behavior you expected to see instead and why. + - For visual problems include screenshots which clearly demonstrates the problem. + +Do not forget to mention: + + - Which version of the package are you using. + - If the issue is related to installation please mention which method or package manager did you use. + +## Suggestion Enhancement + +Before creating enhancement suggestions, please check out if a proposal already exists. + + - Mention why you this enhancement is useful. + - You can list some other packages where this enhancement exists. + + +## Pull Request + +Pull requests are always welcome. We love those! + + - Include screenshot/image if you have added or modified new icon. + - We follow [github flow](https://guides.github.com/introduction/flow/) for our development model. + - Nice commit messages are always helpful. + - Reference issues and pull requests liberally. + - If you changed any one styleheet please make sure it reflects all styles file(LESS, CSS, SCSS). + +## Documentations + +Documentation is currently generated using `generate.php` file from `gh-pages` brunch. + + - Modify `generate.php`. + - Run `php generate.php > index.html`. + - Do not edit `index.html`. + - Documentation should be up-to-date with master. + + ___ + + Unsure where to begin contributing? You can start by looking through these beginner, help-wanted, enhancement labels issues. + + You can [checkout our very cool contributors graph now](https://github.com/thesabbir/simple-line-icons/graphs/contributors). diff --git a/assets/vendors/iconfonts/simple-line-icon/History.md b/assets/vendors/iconfonts/simple-line-icon/History.md new file mode 100755 index 0000000..6f68b04 --- /dev/null +++ b/assets/vendors/iconfonts/simple-line-icon/History.md @@ -0,0 +1,26 @@ +2.4.0 / 2016-09-18 +================== + + * Add social-steam icon + * Rename vkontakte to social-vkontakte icon + +2.3.3 / 2016-09-17 +================== + + * Add event icon, fix #57 + * Add vkontakte icon, fix #56 + +2.3.2 / 2016-06-13 +================== + + * Add exclamation icon, fix #50 + * Use woff2, ttf, woff, svg order. + +2.3.1 / 2016-05-04 +================== + + * CSS, use woff before ttf + * CSS, google instead of gplus + * Gitignore, ignore .files + * CSS, add organization, update readme + * Add organization icon, fix #45 diff --git a/assets/vendors/iconfonts/simple-line-icon/LICENSE.md b/assets/vendors/iconfonts/simple-line-icon/LICENSE.md new file mode 100755 index 0000000..dfb8b50 --- /dev/null +++ b/assets/vendors/iconfonts/simple-line-icon/LICENSE.md @@ -0,0 +1,8 @@ +The MIT License (MIT) +Copyright (c) 2016 Sabbir Ahmed & All Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/assets/vendors/iconfonts/simple-line-icon/README.md b/assets/vendors/iconfonts/simple-line-icon/README.md new file mode 100755 index 0000000..70e6021 --- /dev/null +++ b/assets/vendors/iconfonts/simple-line-icon/README.md @@ -0,0 +1,76 @@ +Simple line icons +==== + +[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/thesabbir/simple-line-icons?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + +Simple line icons with CSS, SAAS, LESS & Web-fonts files. + +Preview & Docs +=== +[https://thesabbir.github.io/simple-line-icons](https://thesabbir.github.io/simple-line-icons) + + +Installation +==== +via [cdnjs](http://cdnjs.com/libraries/simple-line-icons) +```html + +``` +via [bower](http://bower.io/search/?q=simple-line-icons) + +```shell + +bower install simple-line-icons --save + +``` +via [npm](https://www.npmjs.com/package/simple-line-icons) + +```shell + +npm install simple-line-icons --save + +``` + +Or, you can also clone or [download this repository](https://github.com/thesabbir/simple-line-icons/archive/master.zip) as zip. + + +If you are a designers you can use [this creative cloud library](http://adobe.ly/2bQ48wl). + +Customizing LESS/SASS variables +==== + +### LESS: + +```less +@simple-line-font-path : "/path/to/font/files"; +@simple-line-font-family : "desired-name-font-family"; +@simple-line-icon-prefix : prefix-; +``` + +### SASS: + +```sass +$simple-line-font-path : "/path/to/font/files"; +$simple-line-font-family : "desired-name-font-family"; +$simple-line-icon-prefix : "prefix-"; +``` + + +Credits +=== +[Jamal Jama](https://twitter.com/byjml) for creating this awesome webfont & [Ahmad Firoz](https://twitter.com/firoz_usf) for extending it further. + +Contributors +==== +[Check Here](https://github.com/thesabbir/simple-line-icons/graphs/contributors) + +Contributions +==== +Contributions are more then welcome. Keep them coming! +Please make sure you have read our [guide line](/CONTRIBUTING.md). + +License +==== +You're free to use the web-font in a template/theme intended for sale on marketplaces like Themeforest. + +CSS, SCSS & LESS files are under [MIT License](/LICENSE.md). diff --git a/assets/vendors/iconfonts/simple-line-icon/bower.json b/assets/vendors/iconfonts/simple-line-icon/bower.json new file mode 100755 index 0000000..661924d --- /dev/null +++ b/assets/vendors/iconfonts/simple-line-icon/bower.json @@ -0,0 +1,28 @@ +{ + "name": "simple-line-icons", + "version": "2.4.1", + "authors": [ + "Sabbir Ahmed " + ], + "description": "Simple Line Icons Bower Package", + "keywords": [ + "fonts", + "simple", + "simple-line", + "icon" + ], + "main": [ + "css/simple-line-icons.css", + "scss/simple-line-icons.scss", + "less/simple-line-icons.less" + ], + "license": "MIT", + "homepage": "https://github.com/thesabbir/simple-line-icons", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ] +} diff --git a/assets/vendors/iconfonts/simple-line-icon/css/simple-line-icons.css b/assets/vendors/iconfonts/simple-line-icon/css/simple-line-icons.css new file mode 100755 index 0000000..a5e97e2 --- /dev/null +++ b/assets/vendors/iconfonts/simple-line-icon/css/simple-line-icons.css @@ -0,0 +1,778 @@ +@font-face { + font-family: 'simple-line-icons'; + src: url('../fonts/Simple-Line-Icons.eot?v=2.4.0'); + src: url('../fonts/Simple-Line-Icons.eot?v=2.4.0#iefix') format('embedded-opentype'), url('../fonts/Simple-Line-Icons.woff2?v=2.4.0') format('woff2'), url('../fonts/Simple-Line-Icons.ttf?v=2.4.0') format('truetype'), url('../fonts/Simple-Line-Icons.woff?v=2.4.0') format('woff'), url('../fonts/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons') format('svg'); + font-weight: normal; + font-style: normal; +} +/* + Use the following CSS code if you want to have a class per icon. + Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower: +*/ +.icon-user, +.icon-people, +.icon-user-female, +.icon-user-follow, +.icon-user-following, +.icon-user-unfollow, +.icon-login, +.icon-logout, +.icon-emotsmile, +.icon-phone, +.icon-call-end, +.icon-call-in, +.icon-call-out, +.icon-map, +.icon-location-pin, +.icon-direction, +.icon-directions, +.icon-compass, +.icon-layers, +.icon-menu, +.icon-list, +.icon-options-vertical, +.icon-options, +.icon-arrow-down, +.icon-arrow-left, +.icon-arrow-right, +.icon-arrow-up, +.icon-arrow-up-circle, +.icon-arrow-left-circle, +.icon-arrow-right-circle, +.icon-arrow-down-circle, +.icon-check, +.icon-clock, +.icon-plus, +.icon-minus, +.icon-close, +.icon-event, +.icon-exclamation, +.icon-organization, +.icon-trophy, +.icon-screen-smartphone, +.icon-screen-desktop, +.icon-plane, +.icon-notebook, +.icon-mustache, +.icon-mouse, +.icon-magnet, +.icon-energy, +.icon-disc, +.icon-cursor, +.icon-cursor-move, +.icon-crop, +.icon-chemistry, +.icon-speedometer, +.icon-shield, +.icon-screen-tablet, +.icon-magic-wand, +.icon-hourglass, +.icon-graduation, +.icon-ghost, +.icon-game-controller, +.icon-fire, +.icon-eyeglass, +.icon-envelope-open, +.icon-envelope-letter, +.icon-bell, +.icon-badge, +.icon-anchor, +.icon-wallet, +.icon-vector, +.icon-speech, +.icon-puzzle, +.icon-printer, +.icon-present, +.icon-playlist, +.icon-pin, +.icon-picture, +.icon-handbag, +.icon-globe-alt, +.icon-globe, +.icon-folder-alt, +.icon-folder, +.icon-film, +.icon-feed, +.icon-drop, +.icon-drawer, +.icon-docs, +.icon-doc, +.icon-diamond, +.icon-cup, +.icon-calculator, +.icon-bubbles, +.icon-briefcase, +.icon-book-open, +.icon-basket-loaded, +.icon-basket, +.icon-bag, +.icon-action-undo, +.icon-action-redo, +.icon-wrench, +.icon-umbrella, +.icon-trash, +.icon-tag, +.icon-support, +.icon-frame, +.icon-size-fullscreen, +.icon-size-actual, +.icon-shuffle, +.icon-share-alt, +.icon-share, +.icon-rocket, +.icon-question, +.icon-pie-chart, +.icon-pencil, +.icon-note, +.icon-loop, +.icon-home, +.icon-grid, +.icon-graph, +.icon-microphone, +.icon-music-tone-alt, +.icon-music-tone, +.icon-earphones-alt, +.icon-earphones, +.icon-equalizer, +.icon-like, +.icon-dislike, +.icon-control-start, +.icon-control-rewind, +.icon-control-play, +.icon-control-pause, +.icon-control-forward, +.icon-control-end, +.icon-volume-1, +.icon-volume-2, +.icon-volume-off, +.icon-calendar, +.icon-bulb, +.icon-chart, +.icon-ban, +.icon-bubble, +.icon-camrecorder, +.icon-camera, +.icon-cloud-download, +.icon-cloud-upload, +.icon-envelope, +.icon-eye, +.icon-flag, +.icon-heart, +.icon-info, +.icon-key, +.icon-link, +.icon-lock, +.icon-lock-open, +.icon-magnifier, +.icon-magnifier-add, +.icon-magnifier-remove, +.icon-paper-clip, +.icon-paper-plane, +.icon-power, +.icon-refresh, +.icon-reload, +.icon-settings, +.icon-star, +.icon-symbol-female, +.icon-symbol-male, +.icon-target, +.icon-credit-card, +.icon-paypal, +.icon-social-tumblr, +.icon-social-twitter, +.icon-social-facebook, +.icon-social-instagram, +.icon-social-linkedin, +.icon-social-pinterest, +.icon-social-github, +.icon-social-google, +.icon-social-reddit, +.icon-social-skype, +.icon-social-dribbble, +.icon-social-behance, +.icon-social-foursqare, +.icon-social-soundcloud, +.icon-social-spotify, +.icon-social-stumbleupon, +.icon-social-youtube, +.icon-social-dropbox, +.icon-social-vkontakte, +.icon-social-steam { + font-family: 'simple-line-icons'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.icon-user:before { + content: "\e005"; +} +.icon-people:before { + content: "\e001"; +} +.icon-user-female:before { + content: "\e000"; +} +.icon-user-follow:before { + content: "\e002"; +} +.icon-user-following:before { + content: "\e003"; +} +.icon-user-unfollow:before { + content: "\e004"; +} +.icon-login:before { + content: "\e066"; +} +.icon-logout:before { + content: "\e065"; +} +.icon-emotsmile:before { + content: "\e021"; +} +.icon-phone:before { + content: "\e600"; +} +.icon-call-end:before { + content: "\e048"; +} +.icon-call-in:before { + content: "\e047"; +} +.icon-call-out:before { + content: "\e046"; +} +.icon-map:before { + content: "\e033"; +} +.icon-location-pin:before { + content: "\e096"; +} +.icon-direction:before { + content: "\e042"; +} +.icon-directions:before { + content: "\e041"; +} +.icon-compass:before { + content: "\e045"; +} +.icon-layers:before { + content: "\e034"; +} +.icon-menu:before { + content: "\e601"; +} +.icon-list:before { + content: "\e067"; +} +.icon-options-vertical:before { + content: "\e602"; +} +.icon-options:before { + content: "\e603"; +} +.icon-arrow-down:before { + content: "\e604"; +} +.icon-arrow-left:before { + content: "\e605"; +} +.icon-arrow-right:before { + content: "\e606"; +} +.icon-arrow-up:before { + content: "\e607"; +} +.icon-arrow-up-circle:before { + content: "\e078"; +} +.icon-arrow-left-circle:before { + content: "\e07a"; +} +.icon-arrow-right-circle:before { + content: "\e079"; +} +.icon-arrow-down-circle:before { + content: "\e07b"; +} +.icon-check:before { + content: "\e080"; +} +.icon-clock:before { + content: "\e081"; +} +.icon-plus:before { + content: "\e095"; +} +.icon-minus:before { + content: "\e615"; +} +.icon-close:before { + content: "\e082"; +} +.icon-event:before { + content: "\e619"; +} +.icon-exclamation:before { + content: "\e617"; +} +.icon-organization:before { + content: "\e616"; +} +.icon-trophy:before { + content: "\e006"; +} +.icon-screen-smartphone:before { + content: "\e010"; +} +.icon-screen-desktop:before { + content: "\e011"; +} +.icon-plane:before { + content: "\e012"; +} +.icon-notebook:before { + content: "\e013"; +} +.icon-mustache:before { + content: "\e014"; +} +.icon-mouse:before { + content: "\e015"; +} +.icon-magnet:before { + content: "\e016"; +} +.icon-energy:before { + content: "\e020"; +} +.icon-disc:before { + content: "\e022"; +} +.icon-cursor:before { + content: "\e06e"; +} +.icon-cursor-move:before { + content: "\e023"; +} +.icon-crop:before { + content: "\e024"; +} +.icon-chemistry:before { + content: "\e026"; +} +.icon-speedometer:before { + content: "\e007"; +} +.icon-shield:before { + content: "\e00e"; +} +.icon-screen-tablet:before { + content: "\e00f"; +} +.icon-magic-wand:before { + content: "\e017"; +} +.icon-hourglass:before { + content: "\e018"; +} +.icon-graduation:before { + content: "\e019"; +} +.icon-ghost:before { + content: "\e01a"; +} +.icon-game-controller:before { + content: "\e01b"; +} +.icon-fire:before { + content: "\e01c"; +} +.icon-eyeglass:before { + content: "\e01d"; +} +.icon-envelope-open:before { + content: "\e01e"; +} +.icon-envelope-letter:before { + content: "\e01f"; +} +.icon-bell:before { + content: "\e027"; +} +.icon-badge:before { + content: "\e028"; +} +.icon-anchor:before { + content: "\e029"; +} +.icon-wallet:before { + content: "\e02a"; +} +.icon-vector:before { + content: "\e02b"; +} +.icon-speech:before { + content: "\e02c"; +} +.icon-puzzle:before { + content: "\e02d"; +} +.icon-printer:before { + content: "\e02e"; +} +.icon-present:before { + content: "\e02f"; +} +.icon-playlist:before { + content: "\e030"; +} +.icon-pin:before { + content: "\e031"; +} +.icon-picture:before { + content: "\e032"; +} +.icon-handbag:before { + content: "\e035"; +} +.icon-globe-alt:before { + content: "\e036"; +} +.icon-globe:before { + content: "\e037"; +} +.icon-folder-alt:before { + content: "\e039"; +} +.icon-folder:before { + content: "\e089"; +} +.icon-film:before { + content: "\e03a"; +} +.icon-feed:before { + content: "\e03b"; +} +.icon-drop:before { + content: "\e03e"; +} +.icon-drawer:before { + content: "\e03f"; +} +.icon-docs:before { + content: "\e040"; +} +.icon-doc:before { + content: "\e085"; +} +.icon-diamond:before { + content: "\e043"; +} +.icon-cup:before { + content: "\e044"; +} +.icon-calculator:before { + content: "\e049"; +} +.icon-bubbles:before { + content: "\e04a"; +} +.icon-briefcase:before { + content: "\e04b"; +} +.icon-book-open:before { + content: "\e04c"; +} +.icon-basket-loaded:before { + content: "\e04d"; +} +.icon-basket:before { + content: "\e04e"; +} +.icon-bag:before { + content: "\e04f"; +} +.icon-action-undo:before { + content: "\e050"; +} +.icon-action-redo:before { + content: "\e051"; +} +.icon-wrench:before { + content: "\e052"; +} +.icon-umbrella:before { + content: "\e053"; +} +.icon-trash:before { + content: "\e054"; +} +.icon-tag:before { + content: "\e055"; +} +.icon-support:before { + content: "\e056"; +} +.icon-frame:before { + content: "\e038"; +} +.icon-size-fullscreen:before { + content: "\e057"; +} +.icon-size-actual:before { + content: "\e058"; +} +.icon-shuffle:before { + content: "\e059"; +} +.icon-share-alt:before { + content: "\e05a"; +} +.icon-share:before { + content: "\e05b"; +} +.icon-rocket:before { + content: "\e05c"; +} +.icon-question:before { + content: "\e05d"; +} +.icon-pie-chart:before { + content: "\e05e"; +} +.icon-pencil:before { + content: "\e05f"; +} +.icon-note:before { + content: "\e060"; +} +.icon-loop:before { + content: "\e064"; +} +.icon-home:before { + content: "\e069"; +} +.icon-grid:before { + content: "\e06a"; +} +.icon-graph:before { + content: "\e06b"; +} +.icon-microphone:before { + content: "\e063"; +} +.icon-music-tone-alt:before { + content: "\e061"; +} +.icon-music-tone:before { + content: "\e062"; +} +.icon-earphones-alt:before { + content: "\e03c"; +} +.icon-earphones:before { + content: "\e03d"; +} +.icon-equalizer:before { + content: "\e06c"; +} +.icon-like:before { + content: "\e068"; +} +.icon-dislike:before { + content: "\e06d"; +} +.icon-control-start:before { + content: "\e06f"; +} +.icon-control-rewind:before { + content: "\e070"; +} +.icon-control-play:before { + content: "\e071"; +} +.icon-control-pause:before { + content: "\e072"; +} +.icon-control-forward:before { + content: "\e073"; +} +.icon-control-end:before { + content: "\e074"; +} +.icon-volume-1:before { + content: "\e09f"; +} +.icon-volume-2:before { + content: "\e0a0"; +} +.icon-volume-off:before { + content: "\e0a1"; +} +.icon-calendar:before { + content: "\e075"; +} +.icon-bulb:before { + content: "\e076"; +} +.icon-chart:before { + content: "\e077"; +} +.icon-ban:before { + content: "\e07c"; +} +.icon-bubble:before { + content: "\e07d"; +} +.icon-camrecorder:before { + content: "\e07e"; +} +.icon-camera:before { + content: "\e07f"; +} +.icon-cloud-download:before { + content: "\e083"; +} +.icon-cloud-upload:before { + content: "\e084"; +} +.icon-envelope:before { + content: "\e086"; +} +.icon-eye:before { + content: "\e087"; +} +.icon-flag:before { + content: "\e088"; +} +.icon-heart:before { + content: "\e08a"; +} +.icon-info:before { + content: "\e08b"; +} +.icon-key:before { + content: "\e08c"; +} +.icon-link:before { + content: "\e08d"; +} +.icon-lock:before { + content: "\e08e"; +} +.icon-lock-open:before { + content: "\e08f"; +} +.icon-magnifier:before { + content: "\e090"; +} +.icon-magnifier-add:before { + content: "\e091"; +} +.icon-magnifier-remove:before { + content: "\e092"; +} +.icon-paper-clip:before { + content: "\e093"; +} +.icon-paper-plane:before { + content: "\e094"; +} +.icon-power:before { + content: "\e097"; +} +.icon-refresh:before { + content: "\e098"; +} +.icon-reload:before { + content: "\e099"; +} +.icon-settings:before { + content: "\e09a"; +} +.icon-star:before { + content: "\e09b"; +} +.icon-symbol-female:before { + content: "\e09c"; +} +.icon-symbol-male:before { + content: "\e09d"; +} +.icon-target:before { + content: "\e09e"; +} +.icon-credit-card:before { + content: "\e025"; +} +.icon-paypal:before { + content: "\e608"; +} +.icon-social-tumblr:before { + content: "\e00a"; +} +.icon-social-twitter:before { + content: "\e009"; +} +.icon-social-facebook:before { + content: "\e00b"; +} +.icon-social-instagram:before { + content: "\e609"; +} +.icon-social-linkedin:before { + content: "\e60a"; +} +.icon-social-pinterest:before { + content: "\e60b"; +} +.icon-social-github:before { + content: "\e60c"; +} +.icon-social-google:before { + content: "\e60d"; +} +.icon-social-reddit:before { + content: "\e60e"; +} +.icon-social-skype:before { + content: "\e60f"; +} +.icon-social-dribbble:before { + content: "\e00d"; +} +.icon-social-behance:before { + content: "\e610"; +} +.icon-social-foursqare:before { + content: "\e611"; +} +.icon-social-soundcloud:before { + content: "\e612"; +} +.icon-social-spotify:before { + content: "\e613"; +} +.icon-social-stumbleupon:before { + content: "\e614"; +} +.icon-social-youtube:before { + content: "\e008"; +} +.icon-social-dropbox:before { + content: "\e00c"; +} +.icon-social-vkontakte:before { + content: "\e618"; +} +.icon-social-steam:before { + content: "\e620"; +} diff --git a/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.eot b/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.eot new file mode 100755 index 0000000..f0ca6e8 Binary files /dev/null and b/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.eot differ diff --git a/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.svg b/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.svg new file mode 100755 index 0000000..4988524 --- /dev/null +++ b/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.svg @@ -0,0 +1,200 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.ttf b/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.ttf new file mode 100755 index 0000000..6ecb686 Binary files /dev/null and b/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.ttf differ diff --git a/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.woff b/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.woff new file mode 100755 index 0000000..b17d694 Binary files /dev/null and b/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.woff differ diff --git a/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.woff2 b/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.woff2 new file mode 100755 index 0000000..c49fccf Binary files /dev/null and b/assets/vendors/iconfonts/simple-line-icon/fonts/Simple-Line-Icons.woff2 differ diff --git a/assets/vendors/iconfonts/simple-line-icon/less/simple-line-icons.less b/assets/vendors/iconfonts/simple-line-icon/less/simple-line-icons.less new file mode 100755 index 0000000..16732d0 --- /dev/null +++ b/assets/vendors/iconfonts/simple-line-icon/less/simple-line-icons.less @@ -0,0 +1,982 @@ +// Default Variables +@simple-line-font-path : "../fonts/"; +@simple-line-font-family : "simple-line-icons"; +@simple-line-icon-prefix : icon-; + +//Fonts +@font-face { + font-family: '@{simple-line-font-family}'; + src: url('@{simple-line-font-path}Simple-Line-Icons.eot?v=2.4.0'); + src: url('@{simple-line-font-path}Simple-Line-Icons.eot?v=2.4.0#iefix') format('embedded-opentype'), + url('@{simple-line-font-path}Simple-Line-Icons.woff2?v=2.4.0') format('woff2'), + url('@{simple-line-font-path}Simple-Line-Icons.ttf?v=2.4.0') format('truetype'), + url('@{simple-line-font-path}Simple-Line-Icons.woff?v=2.4.0') format('woff'), + url('@{simple-line-font-path}Simple-Line-Icons.svg?v=2.4.0#simple-line-icons') format('svg'); + font-weight: normal; + font-style: normal; +} + +/* + Use the following CSS code if you want to have a class per icon. + Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower: +*/ + +.@{simple-line-icon-prefix} { + &user, + &people, + &user-female, + &user-follow, + &user-following, + &user-unfollow, + &login, + &logout, + &emotsmile, + &phone, + &call-end, + &call-in, + &call-out, + &map, + &location-pin, + &direction, + &directions, + &compass, + &layers, + &menu, + &list, + &options-vertical, + &options, + &arrow-down, + &arrow-left, + &arrow-right, + &arrow-up, + &arrow-up-circle, + &arrow-left-circle, + &arrow-right-circle, + &arrow-down-circle, + &check, + &clock, + &plus, + &minus, + &close, + &event, + &exclamation, + &organization, + &trophy, + &screen-smartphone, + &screen-desktop, + &plane, + ¬ebook, + &mustache, + &mouse, + &magnet, + &energy, + &disc, + &cursor, + &cursor-move, + &crop, + &chemistry, + &speedometer, + &shield, + &screen-tablet, + &magic-wand, + &hourglass, + &graduation, + &ghost, + &game-controller, + &fire, + &eyeglass, + &envelope-open, + &envelope-letter, + &bell, + &badge, + &anchor, + &wallet, + &vector, + &speech, + &puzzle, + &printer, + &present, + &playlist, + &pin, + &picture, + &handbag, + &globe-alt, + &globe, + &folder-alt, + &folder, + &film, + &feed, + &drop, + &drawer, + &docs, + &doc, + &diamond, + &cup, + &calculator, + &bubbles, + &briefcase, + &book-open, + &basket-loaded, + &basket, + &bag, + &action-undo, + &action-redo, + &wrench, + &umbrella, + &trash, + &tag, + &support, + &frame, + &size-fullscreen, + &size-actual, + &shuffle, + &share-alt, + &share, + &rocket, + &question, + &pie-chart, + &pencil, + ¬e, + &loop, + &home, + &grid, + &graph, + µphone, + &music-tone-alt, + &music-tone, + &earphones-alt, + &earphones, + &equalizer, + &like, + &dislike, + &control-start, + &control-rewind, + &control-play, + &control-pause, + &control-forward, + &control-end, + &volume-1, + &volume-2, + &volume-off, + &calendar, + &bulb, + &chart, + &ban, + &bubble, + &camrecorder, + &camera, + &cloud-download, + &cloud-upload, + &envelope, + &eye, + &flag, + &heart, + &info, + &key, + &link, + &lock, + &lock-open, + &magnifier, + &magnifier-add, + &magnifier-remove, + &paper-clip, + &paper-plane, + &power, + &refresh, + &reload, + &settings, + &star, + &symbol-female, + &symbol-male, + &target, + &credit-card, + &paypal, + &social-tumblr, + &social-twitter, + &social-facebook, + &social-instagram, + &social-linkedin, + &social-pinterest, + &social-github, + &social-google, + &social-reddit, + &social-skype, + &social-dribbble, + &social-behance, + &social-foursqare, + &social-soundcloud, + &social-spotify, + &social-stumbleupon, + &social-youtube, + &social-dropbox, + &social-vkontakte, + &social-steam { + font-family: '@{simple-line-font-family}'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } +} + +.@{simple-line-icon-prefix}user:before { + content: "\e005"; +} + +.@{simple-line-icon-prefix}people:before { + content: "\e001"; +} + +.@{simple-line-icon-prefix}user-female:before { + content: "\e000"; +} + +.@{simple-line-icon-prefix}user-follow:before { + content: "\e002"; +} + +.@{simple-line-icon-prefix}user-following:before { + content: "\e003"; +} + +.@{simple-line-icon-prefix}user-unfollow:before { + content: "\e004"; +} + +.@{simple-line-icon-prefix}login:before { + content: "\e066"; +} + +.@{simple-line-icon-prefix}logout:before { + content: "\e065"; +} + +.@{simple-line-icon-prefix}emotsmile:before { + content: "\e021"; +} + +.@{simple-line-icon-prefix}phone:before { + content: "\e600"; +} + +.@{simple-line-icon-prefix}call-end:before { + content: "\e048"; +} + +.@{simple-line-icon-prefix}call-in:before { + content: "\e047"; +} + +.@{simple-line-icon-prefix}call-out:before { + content: "\e046"; +} + +.@{simple-line-icon-prefix}map:before { + content: "\e033"; +} + +.@{simple-line-icon-prefix}location-pin:before { + content: "\e096"; +} + +.@{simple-line-icon-prefix}direction:before { + content: "\e042"; +} + +.@{simple-line-icon-prefix}directions:before { + content: "\e041"; +} + +.@{simple-line-icon-prefix}compass:before { + content: "\e045"; +} + +.@{simple-line-icon-prefix}layers:before { + content: "\e034"; +} + +.@{simple-line-icon-prefix}menu:before { + content: "\e601"; +} + +.@{simple-line-icon-prefix}list:before { + content: "\e067"; +} + +.@{simple-line-icon-prefix}options-vertical:before { + content: "\e602"; +} + +.@{simple-line-icon-prefix}options:before { + content: "\e603"; +} + +.@{simple-line-icon-prefix}arrow-down:before { + content: "\e604"; +} + +.@{simple-line-icon-prefix}arrow-left:before { + content: "\e605"; +} + +.@{simple-line-icon-prefix}arrow-right:before { + content: "\e606"; +} + +.@{simple-line-icon-prefix}arrow-up:before { + content: "\e607"; +} + +.@{simple-line-icon-prefix}arrow-up-circle:before { + content: "\e078"; +} + +.@{simple-line-icon-prefix}arrow-left-circle:before { + content: "\e07a"; +} + +.@{simple-line-icon-prefix}arrow-right-circle:before { + content: "\e079"; +} + +.@{simple-line-icon-prefix}arrow-down-circle:before { + content: "\e07b"; +} + +.@{simple-line-icon-prefix}check:before { + content: "\e080"; +} + +.@{simple-line-icon-prefix}clock:before { + content: "\e081"; +} + +.@{simple-line-icon-prefix}plus:before { + content: "\e095"; +} + +.@{simple-line-icon-prefix}minus:before { + content: "\e615"; +} + +.@{simple-line-icon-prefix}close:before { + content: "\e082"; +} + +.@{simple-line-icon-prefix}event:before { + content: "\e619"; +} + +.@{simple-line-icon-prefix}exclamation:before { + content: "\e617"; +} + +.@{simple-line-icon-prefix}organization:before { + content: "\e616"; +} + +.@{simple-line-icon-prefix}trophy:before { + content: "\e006"; +} + +.@{simple-line-icon-prefix}screen-smartphone:before { + content: "\e010"; +} + +.@{simple-line-icon-prefix}screen-desktop:before { + content: "\e011"; +} + +.@{simple-line-icon-prefix}plane:before { + content: "\e012"; +} + +.@{simple-line-icon-prefix}notebook:before { + content: "\e013"; +} + +.@{simple-line-icon-prefix}mustache:before { + content: "\e014"; +} + +.@{simple-line-icon-prefix}mouse:before { + content: "\e015"; +} + +.@{simple-line-icon-prefix}magnet:before { + content: "\e016"; +} + +.@{simple-line-icon-prefix}energy:before { + content: "\e020"; +} + +.@{simple-line-icon-prefix}disc:before { + content: "\e022"; +} + +.@{simple-line-icon-prefix}cursor:before { + content: "\e06e"; +} + +.@{simple-line-icon-prefix}cursor-move:before { + content: "\e023"; +} + +.@{simple-line-icon-prefix}crop:before { + content: "\e024"; +} + +.@{simple-line-icon-prefix}chemistry:before { + content: "\e026"; +} + +.@{simple-line-icon-prefix}speedometer:before { + content: "\e007"; +} + +.@{simple-line-icon-prefix}shield:before { + content: "\e00e"; +} + +.@{simple-line-icon-prefix}screen-tablet:before { + content: "\e00f"; +} + +.@{simple-line-icon-prefix}magic-wand:before { + content: "\e017"; +} + +.@{simple-line-icon-prefix}hourglass:before { + content: "\e018"; +} + +.@{simple-line-icon-prefix}graduation:before { + content: "\e019"; +} + +.@{simple-line-icon-prefix}ghost:before { + content: "\e01a"; +} + +.@{simple-line-icon-prefix}game-controller:before { + content: "\e01b"; +} + +.@{simple-line-icon-prefix}fire:before { + content: "\e01c"; +} + +.@{simple-line-icon-prefix}eyeglass:before { + content: "\e01d"; +} + +.@{simple-line-icon-prefix}envelope-open:before { + content: "\e01e"; +} + +.@{simple-line-icon-prefix}envelope-letter:before { + content: "\e01f"; +} + +.@{simple-line-icon-prefix}bell:before { + content: "\e027"; +} + +.@{simple-line-icon-prefix}badge:before { + content: "\e028"; +} + +.@{simple-line-icon-prefix}anchor:before { + content: "\e029"; +} + +.@{simple-line-icon-prefix}wallet:before { + content: "\e02a"; +} + +.@{simple-line-icon-prefix}vector:before { + content: "\e02b"; +} + +.@{simple-line-icon-prefix}speech:before { + content: "\e02c"; +} + +.@{simple-line-icon-prefix}puzzle:before { + content: "\e02d"; +} + +.@{simple-line-icon-prefix}printer:before { + content: "\e02e"; +} + +.@{simple-line-icon-prefix}present:before { + content: "\e02f"; +} + +.@{simple-line-icon-prefix}playlist:before { + content: "\e030"; +} + +.@{simple-line-icon-prefix}pin:before { + content: "\e031"; +} + +.@{simple-line-icon-prefix}picture:before { + content: "\e032"; +} + +.@{simple-line-icon-prefix}handbag:before { + content: "\e035"; +} + +.@{simple-line-icon-prefix}globe-alt:before { + content: "\e036"; +} + +.@{simple-line-icon-prefix}globe:before { + content: "\e037"; +} + +.@{simple-line-icon-prefix}folder-alt:before { + content: "\e039"; +} + +.@{simple-line-icon-prefix}folder:before { + content: "\e089"; +} + +.@{simple-line-icon-prefix}film:before { + content: "\e03a"; +} + +.@{simple-line-icon-prefix}feed:before { + content: "\e03b"; +} + +.@{simple-line-icon-prefix}drop:before { + content: "\e03e"; +} + +.@{simple-line-icon-prefix}drawer:before { + content: "\e03f"; +} + +.@{simple-line-icon-prefix}docs:before { + content: "\e040"; +} + +.@{simple-line-icon-prefix}doc:before { + content: "\e085"; +} + +.@{simple-line-icon-prefix}diamond:before { + content: "\e043"; +} + +.@{simple-line-icon-prefix}cup:before { + content: "\e044"; +} + +.@{simple-line-icon-prefix}calculator:before { + content: "\e049"; +} + +.@{simple-line-icon-prefix}bubbles:before { + content: "\e04a"; +} + +.@{simple-line-icon-prefix}briefcase:before { + content: "\e04b"; +} + +.@{simple-line-icon-prefix}book-open:before { + content: "\e04c"; +} + +.@{simple-line-icon-prefix}basket-loaded:before { + content: "\e04d"; +} + +.@{simple-line-icon-prefix}basket:before { + content: "\e04e"; +} + +.@{simple-line-icon-prefix}bag:before { + content: "\e04f"; +} + +.@{simple-line-icon-prefix}action-undo:before { + content: "\e050"; +} + +.@{simple-line-icon-prefix}action-redo:before { + content: "\e051"; +} + +.@{simple-line-icon-prefix}wrench:before { + content: "\e052"; +} + +.@{simple-line-icon-prefix}umbrella:before { + content: "\e053"; +} + +.@{simple-line-icon-prefix}trash:before { + content: "\e054"; +} + +.@{simple-line-icon-prefix}tag:before { + content: "\e055"; +} + +.@{simple-line-icon-prefix}support:before { + content: "\e056"; +} + +.@{simple-line-icon-prefix}frame:before { + content: "\e038"; +} + +.@{simple-line-icon-prefix}size-fullscreen:before { + content: "\e057"; +} + +.@{simple-line-icon-prefix}size-actual:before { + content: "\e058"; +} + +.@{simple-line-icon-prefix}shuffle:before { + content: "\e059"; +} + +.@{simple-line-icon-prefix}share-alt:before { + content: "\e05a"; +} + +.@{simple-line-icon-prefix}share:before { + content: "\e05b"; +} + +.@{simple-line-icon-prefix}rocket:before { + content: "\e05c"; +} + +.@{simple-line-icon-prefix}question:before { + content: "\e05d"; +} + +.@{simple-line-icon-prefix}pie-chart:before { + content: "\e05e"; +} + +.@{simple-line-icon-prefix}pencil:before { + content: "\e05f"; +} + +.@{simple-line-icon-prefix}note:before { + content: "\e060"; +} + +.@{simple-line-icon-prefix}loop:before { + content: "\e064"; +} + +.@{simple-line-icon-prefix}home:before { + content: "\e069"; +} + +.@{simple-line-icon-prefix}grid:before { + content: "\e06a"; +} + +.@{simple-line-icon-prefix}graph:before { + content: "\e06b"; +} + +.@{simple-line-icon-prefix}microphone:before { + content: "\e063"; +} + +.@{simple-line-icon-prefix}music-tone-alt:before { + content: "\e061"; +} + +.@{simple-line-icon-prefix}music-tone:before { + content: "\e062"; +} + +.@{simple-line-icon-prefix}earphones-alt:before { + content: "\e03c"; +} + +.@{simple-line-icon-prefix}earphones:before { + content: "\e03d"; +} + +.@{simple-line-icon-prefix}equalizer:before { + content: "\e06c"; +} + +.@{simple-line-icon-prefix}like:before { + content: "\e068"; +} + +.@{simple-line-icon-prefix}dislike:before { + content: "\e06d"; +} + +.@{simple-line-icon-prefix}control-start:before { + content: "\e06f"; +} + +.@{simple-line-icon-prefix}control-rewind:before { + content: "\e070"; +} + +.@{simple-line-icon-prefix}control-play:before { + content: "\e071"; +} + +.@{simple-line-icon-prefix}control-pause:before { + content: "\e072"; +} + +.@{simple-line-icon-prefix}control-forward:before { + content: "\e073"; +} + +.@{simple-line-icon-prefix}control-end:before { + content: "\e074"; +} + +.@{simple-line-icon-prefix}volume-1:before { + content: "\e09f"; +} + +.@{simple-line-icon-prefix}volume-2:before { + content: "\e0a0"; +} + +.@{simple-line-icon-prefix}volume-off:before { + content: "\e0a1"; +} + +.@{simple-line-icon-prefix}calendar:before { + content: "\e075"; +} + +.@{simple-line-icon-prefix}bulb:before { + content: "\e076"; +} + +.@{simple-line-icon-prefix}chart:before { + content: "\e077"; +} + +.@{simple-line-icon-prefix}ban:before { + content: "\e07c"; +} + +.@{simple-line-icon-prefix}bubble:before { + content: "\e07d"; +} + +.@{simple-line-icon-prefix}camrecorder:before { + content: "\e07e"; +} + +.@{simple-line-icon-prefix}camera:before { + content: "\e07f"; +} + +.@{simple-line-icon-prefix}cloud-download:before { + content: "\e083"; +} + +.@{simple-line-icon-prefix}cloud-upload:before { + content: "\e084"; +} + +.@{simple-line-icon-prefix}envelope:before { + content: "\e086"; +} + +.@{simple-line-icon-prefix}eye:before { + content: "\e087"; +} + +.@{simple-line-icon-prefix}flag:before { + content: "\e088"; +} + +.@{simple-line-icon-prefix}heart:before { + content: "\e08a"; +} + +.@{simple-line-icon-prefix}info:before { + content: "\e08b"; +} + +.@{simple-line-icon-prefix}key:before { + content: "\e08c"; +} + +.@{simple-line-icon-prefix}link:before { + content: "\e08d"; +} + +.@{simple-line-icon-prefix}lock:before { + content: "\e08e"; +} + +.@{simple-line-icon-prefix}lock-open:before { + content: "\e08f"; +} + +.@{simple-line-icon-prefix}magnifier:before { + content: "\e090"; +} + +.@{simple-line-icon-prefix}magnifier-add:before { + content: "\e091"; +} + +.@{simple-line-icon-prefix}magnifier-remove:before { + content: "\e092"; +} + +.@{simple-line-icon-prefix}paper-clip:before { + content: "\e093"; +} + +.@{simple-line-icon-prefix}paper-plane:before { + content: "\e094"; +} + +.@{simple-line-icon-prefix}power:before { + content: "\e097"; +} + +.@{simple-line-icon-prefix}refresh:before { + content: "\e098"; +} + +.@{simple-line-icon-prefix}reload:before { + content: "\e099"; +} + +.@{simple-line-icon-prefix}settings:before { + content: "\e09a"; +} + +.@{simple-line-icon-prefix}star:before { + content: "\e09b"; +} + +.@{simple-line-icon-prefix}symbol-female:before { + content: "\e09c"; +} + +.@{simple-line-icon-prefix}symbol-male:before { + content: "\e09d"; +} + +.@{simple-line-icon-prefix}target:before { + content: "\e09e"; +} + +.@{simple-line-icon-prefix}credit-card:before { + content: "\e025"; +} + +.@{simple-line-icon-prefix}paypal:before { + content: "\e608"; +} + +.@{simple-line-icon-prefix}social-tumblr:before { + content: "\e00a"; +} + +.@{simple-line-icon-prefix}social-twitter:before { + content: "\e009"; +} + +.@{simple-line-icon-prefix}social-facebook:before { + content: "\e00b"; +} + +.@{simple-line-icon-prefix}social-instagram:before { + content: "\e609"; +} + +.@{simple-line-icon-prefix}social-linkedin:before { + content: "\e60a"; +} + +.@{simple-line-icon-prefix}social-pinterest:before { + content: "\e60b"; +} + +.@{simple-line-icon-prefix}social-github:before { + content: "\e60c"; +} + +.@{simple-line-icon-prefix}social-google:before { + content: "\e60d"; +} + +.@{simple-line-icon-prefix}social-reddit:before { + content: "\e60e"; +} + +.@{simple-line-icon-prefix}social-skype:before { + content: "\e60f"; +} + +.@{simple-line-icon-prefix}social-dribbble:before { + content: "\e00d"; +} + +.@{simple-line-icon-prefix}social-behance:before { + content: "\e610"; +} + +.@{simple-line-icon-prefix}social-foursqare:before { + content: "\e611"; +} + +.@{simple-line-icon-prefix}social-soundcloud:before { + content: "\e612"; +} + +.@{simple-line-icon-prefix}social-spotify:before { + content: "\e613"; +} + +.@{simple-line-icon-prefix}social-stumbleupon:before { + content: "\e614"; +} + +.@{simple-line-icon-prefix}social-youtube:before { + content: "\e008"; +} + +.@{simple-line-icon-prefix}social-dropbox:before { + content: "\e00c"; +} + +.@{simple-line-icon-prefix}social-vkontakte:before { + content: "\e618"; +} + +.@{simple-line-icon-prefix}social-steam:before { + content: "\e620"; +} diff --git a/assets/vendors/iconfonts/simple-line-icon/package.json b/assets/vendors/iconfonts/simple-line-icon/package.json new file mode 100755 index 0000000..47bf90f --- /dev/null +++ b/assets/vendors/iconfonts/simple-line-icon/package.json @@ -0,0 +1,56 @@ +{ + "_args": [ + [ + "simple-line-icons@2.4.1", + "/Applications/XAMPP/xamppfiles/htdocs/star_pro" + ] + ], + "_from": "simple-line-icons@2.4.1", + "_id": "simple-line-icons@2.4.1", + "_inBundle": false, + "_integrity": "sha1-t1vFoNh+UwkowszaVzUnS7JW8jQ=", + "_location": "/simple-line-icons", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "simple-line-icons@2.4.1", + "name": "simple-line-icons", + "escapedName": "simple-line-icons", + "rawSpec": "2.4.1", + "saveSpec": null, + "fetchSpec": "2.4.1" + }, + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/simple-line-icons/-/simple-line-icons-2.4.1.tgz", + "_spec": "2.4.1", + "_where": "/Applications/XAMPP/xamppfiles/htdocs/star_pro", + "author": { + "name": "Sabbir Ahmed" + }, + "bugs": { + "url": "https://github.com/thesabbir/simple-line-icons/issues" + }, + "description": "Simple and elegent line icons.", + "homepage": "https://thesabbir.github.io/simple-line-icons", + "keywords": [ + "icon", + "simple", + "line", + "css", + "webfont" + ], + "license": "MIT", + "main": "index.js", + "name": "simple-line-icons", + "repository": { + "type": "git", + "url": "git+https://github.com/thesabbir/simple-line-icons.git" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "version": "2.4.1" +} diff --git a/assets/vendors/iconfonts/simple-line-icon/scss/simple-line-icons.scss b/assets/vendors/iconfonts/simple-line-icon/scss/simple-line-icons.scss new file mode 100755 index 0000000..ae390fe --- /dev/null +++ b/assets/vendors/iconfonts/simple-line-icon/scss/simple-line-icons.scss @@ -0,0 +1,979 @@ +// Default Variables +$simple-line-font-path: "../fonts/" !default; +$simple-line-font-family: "simple-line-icons" !default; +$simple-line-icon-prefix: "icon-" !default; + +// Fonts +@if $simple-line-font-family == "simple-line-icons" { + @font-face { + font-family: '#{$simple-line-font-family}'; + src: url('#{$simple-line-font-path}Simple-Line-Icons.eot?v=2.4.0'); + src: url('#{$simple-line-font-path}Simple-Line-Icons.eot?v=2.4.0#iefix') format('embedded-opentype'), + url('#{$simple-line-font-path}Simple-Line-Icons.woff2?v=2.4.0') format('woff2'), + url('#{$simple-line-font-path}Simple-Line-Icons.ttf?v=2.4.0') format('truetype'), + url('#{$simple-line-font-path}Simple-Line-Icons.woff?v=2.4.0') format('woff'), + url('#{$simple-line-font-path}Simple-Line-Icons.svg?v=2.4.0#simple-line-icons') format('svg'); + font-weight: normal; + font-style: normal; + } +} + +.#{$simple-line-icon-prefix} { + &user, + &people, + &user-female, + &user-follow, + &user-following, + &user-unfollow, + &login, + &logout, + &emotsmile, + &phone, + &call-end, + &call-in, + &call-out, + &map, + &location-pin, + &direction, + &directions, + &compass, + &layers, + &menu, + &list, + &options-vertical, + &options, + &arrow-down, + &arrow-left, + &arrow-right, + &arrow-up, + &arrow-up-circle, + &arrow-left-circle, + &arrow-right-circle, + &arrow-down-circle, + &check, + &clock, + &plus, + &minus, + &close, + &event, + &exclamation, + &organization, + &trophy, + &screen-smartphone, + &screen-desktop, + &plane, + ¬ebook, + &mustache, + &mouse, + &magnet, + &energy, + &disc, + &cursor, + &cursor-move, + &crop, + &chemistry, + &speedometer, + &shield, + &screen-tablet, + &magic-wand, + &hourglass, + &graduation, + &ghost, + &game-controller, + &fire, + &eyeglass, + &envelope-open, + &envelope-letter, + &bell, + &badge, + &anchor, + &wallet, + &vector, + &speech, + &puzzle, + &printer, + &present, + &playlist, + &pin, + &picture, + &handbag, + &globe-alt, + &globe, + &folder-alt, + &folder, + &film, + &feed, + &drop, + &drawer, + &docs, + &doc, + &diamond, + &cup, + &calculator, + &bubbles, + &briefcase, + &book-open, + &basket-loaded, + &basket, + &bag, + &action-undo, + &action-redo, + &wrench, + &umbrella, + &trash, + &tag, + &support, + &frame, + &size-fullscreen, + &size-actual, + &shuffle, + &share-alt, + &share, + &rocket, + &question, + &pie-chart, + &pencil, + ¬e, + &loop, + &home, + &grid, + &graph, + µphone, + &music-tone-alt, + &music-tone, + &earphones-alt, + &earphones, + &equalizer, + &like, + &dislike, + &control-start, + &control-rewind, + &control-play, + &control-pause, + &control-forward, + &control-end, + &volume-1, + &volume-2, + &volume-off, + &calendar, + &bulb, + &chart, + &ban, + &bubble, + &camrecorder, + &camera, + &cloud-download, + &cloud-upload, + &envelope, + &eye, + &flag, + &heart, + &info, + &key, + &link, + &lock, + &lock-open, + &magnifier, + &magnifier-add, + &magnifier-remove, + &paper-clip, + &paper-plane, + &power, + &refresh, + &reload, + &settings, + &star, + &symbol-female, + &symbol-male, + &target, + &credit-card, + &paypal, + &social-tumblr, + &social-twitter, + &social-facebook, + &social-instagram, + &social-linkedin, + &social-pinterest, + &social-github, + &social-google, + &social-reddit, + &social-skype, + &social-dribbble, + &social-behance, + &social-foursqare, + &social-soundcloud, + &social-spotify, + &social-stumbleupon, + &social-youtube, + &social-dropbox, + &social-vkontakte, + &social-steam { + font-family: '#{$simple-line-font-family}'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } +} + +.#{$simple-line-icon-prefix}user:before { + content: "\e005"; +} + +.#{$simple-line-icon-prefix}people:before { + content: "\e001"; +} + +.#{$simple-line-icon-prefix}user-female:before { + content: "\e000"; +} + +.#{$simple-line-icon-prefix}user-follow:before { + content: "\e002"; +} + +.#{$simple-line-icon-prefix}user-following:before { + content: "\e003"; +} + +.#{$simple-line-icon-prefix}user-unfollow:before { + content: "\e004"; +} + +.#{$simple-line-icon-prefix}login:before { + content: "\e066"; +} + +.#{$simple-line-icon-prefix}logout:before { + content: "\e065"; +} + +.#{$simple-line-icon-prefix}emotsmile:before { + content: "\e021"; +} + +.#{$simple-line-icon-prefix}phone:before { + content: "\e600"; +} + +.#{$simple-line-icon-prefix}call-end:before { + content: "\e048"; +} + +.#{$simple-line-icon-prefix}call-in:before { + content: "\e047"; +} + +.#{$simple-line-icon-prefix}call-out:before { + content: "\e046"; +} + +.#{$simple-line-icon-prefix}map:before { + content: "\e033"; +} + +.#{$simple-line-icon-prefix}location-pin:before { + content: "\e096"; +} + +.#{$simple-line-icon-prefix}direction:before { + content: "\e042"; +} + +.#{$simple-line-icon-prefix}directions:before { + content: "\e041"; +} + +.#{$simple-line-icon-prefix}compass:before { + content: "\e045"; +} + +.#{$simple-line-icon-prefix}layers:before { + content: "\e034"; +} + +.#{$simple-line-icon-prefix}menu:before { + content: "\e601"; +} + +.#{$simple-line-icon-prefix}list:before { + content: "\e067"; +} + +.#{$simple-line-icon-prefix}options-vertical:before { + content: "\e602"; +} + +.#{$simple-line-icon-prefix}options:before { + content: "\e603"; +} + +.#{$simple-line-icon-prefix}arrow-down:before { + content: "\e604"; +} + +.#{$simple-line-icon-prefix}arrow-left:before { + content: "\e605"; +} + +.#{$simple-line-icon-prefix}arrow-right:before { + content: "\e606"; +} + +.#{$simple-line-icon-prefix}arrow-up:before { + content: "\e607"; +} + +.#{$simple-line-icon-prefix}arrow-up-circle:before { + content: "\e078"; +} + +.#{$simple-line-icon-prefix}arrow-left-circle:before { + content: "\e07a"; +} + +.#{$simple-line-icon-prefix}arrow-right-circle:before { + content: "\e079"; +} + +.#{$simple-line-icon-prefix}arrow-down-circle:before { + content: "\e07b"; +} + +.#{$simple-line-icon-prefix}check:before { + content: "\e080"; +} + +.#{$simple-line-icon-prefix}clock:before { + content: "\e081"; +} + +.#{$simple-line-icon-prefix}plus:before { + content: "\e095"; +} + +.#{$simple-line-icon-prefix}minus:before { + content: "\e615"; +} + +.#{$simple-line-icon-prefix}close:before { + content: "\e082"; +} + +.#{$simple-line-icon-prefix}event:before { + content: "\e619"; +} + +.#{$simple-line-icon-prefix}exclamation:before { + content: "\e617"; +} + +.#{$simple-line-icon-prefix}organization:before { + content: "\e616"; +} + +.#{$simple-line-icon-prefix}trophy:before { + content: "\e006"; +} + +.#{$simple-line-icon-prefix}screen-smartphone:before { + content: "\e010"; +} + +.#{$simple-line-icon-prefix}screen-desktop:before { + content: "\e011"; +} + +.#{$simple-line-icon-prefix}plane:before { + content: "\e012"; +} + +.#{$simple-line-icon-prefix}notebook:before { + content: "\e013"; +} + +.#{$simple-line-icon-prefix}mustache:before { + content: "\e014"; +} + +.#{$simple-line-icon-prefix}mouse:before { + content: "\e015"; +} + +.#{$simple-line-icon-prefix}magnet:before { + content: "\e016"; +} + +.#{$simple-line-icon-prefix}energy:before { + content: "\e020"; +} + +.#{$simple-line-icon-prefix}disc:before { + content: "\e022"; +} + +.#{$simple-line-icon-prefix}cursor:before { + content: "\e06e"; +} + +.#{$simple-line-icon-prefix}cursor-move:before { + content: "\e023"; +} + +.#{$simple-line-icon-prefix}crop:before { + content: "\e024"; +} + +.#{$simple-line-icon-prefix}chemistry:before { + content: "\e026"; +} + +.#{$simple-line-icon-prefix}speedometer:before { + content: "\e007"; +} + +.#{$simple-line-icon-prefix}shield:before { + content: "\e00e"; +} + +.#{$simple-line-icon-prefix}screen-tablet:before { + content: "\e00f"; +} + +.#{$simple-line-icon-prefix}magic-wand:before { + content: "\e017"; +} + +.#{$simple-line-icon-prefix}hourglass:before { + content: "\e018"; +} + +.#{$simple-line-icon-prefix}graduation:before { + content: "\e019"; +} + +.#{$simple-line-icon-prefix}ghost:before { + content: "\e01a"; +} + +.#{$simple-line-icon-prefix}game-controller:before { + content: "\e01b"; +} + +.#{$simple-line-icon-prefix}fire:before { + content: "\e01c"; +} + +.#{$simple-line-icon-prefix}eyeglass:before { + content: "\e01d"; +} + +.#{$simple-line-icon-prefix}envelope-open:before { + content: "\e01e"; +} + +.#{$simple-line-icon-prefix}envelope-letter:before { + content: "\e01f"; +} + +.#{$simple-line-icon-prefix}bell:before { + content: "\e027"; +} + +.#{$simple-line-icon-prefix}badge:before { + content: "\e028"; +} + +.#{$simple-line-icon-prefix}anchor:before { + content: "\e029"; +} + +.#{$simple-line-icon-prefix}wallet:before { + content: "\e02a"; +} + +.#{$simple-line-icon-prefix}vector:before { + content: "\e02b"; +} + +.#{$simple-line-icon-prefix}speech:before { + content: "\e02c"; +} + +.#{$simple-line-icon-prefix}puzzle:before { + content: "\e02d"; +} + +.#{$simple-line-icon-prefix}printer:before { + content: "\e02e"; +} + +.#{$simple-line-icon-prefix}present:before { + content: "\e02f"; +} + +.#{$simple-line-icon-prefix}playlist:before { + content: "\e030"; +} + +.#{$simple-line-icon-prefix}pin:before { + content: "\e031"; +} + +.#{$simple-line-icon-prefix}picture:before { + content: "\e032"; +} + +.#{$simple-line-icon-prefix}handbag:before { + content: "\e035"; +} + +.#{$simple-line-icon-prefix}globe-alt:before { + content: "\e036"; +} + +.#{$simple-line-icon-prefix}globe:before { + content: "\e037"; +} + +.#{$simple-line-icon-prefix}folder-alt:before { + content: "\e039"; +} + +.#{$simple-line-icon-prefix}folder:before { + content: "\e089"; +} + +.#{$simple-line-icon-prefix}film:before { + content: "\e03a"; +} + +.#{$simple-line-icon-prefix}feed:before { + content: "\e03b"; +} + +.#{$simple-line-icon-prefix}drop:before { + content: "\e03e"; +} + +.#{$simple-line-icon-prefix}drawer:before { + content: "\e03f"; +} + +.#{$simple-line-icon-prefix}docs:before { + content: "\e040"; +} + +.#{$simple-line-icon-prefix}doc:before { + content: "\e085"; +} + +.#{$simple-line-icon-prefix}diamond:before { + content: "\e043"; +} + +.#{$simple-line-icon-prefix}cup:before { + content: "\e044"; +} + +.#{$simple-line-icon-prefix}calculator:before { + content: "\e049"; +} + +.#{$simple-line-icon-prefix}bubbles:before { + content: "\e04a"; +} + +.#{$simple-line-icon-prefix}briefcase:before { + content: "\e04b"; +} + +.#{$simple-line-icon-prefix}book-open:before { + content: "\e04c"; +} + +.#{$simple-line-icon-prefix}basket-loaded:before { + content: "\e04d"; +} + +.#{$simple-line-icon-prefix}basket:before { + content: "\e04e"; +} + +.#{$simple-line-icon-prefix}bag:before { + content: "\e04f"; +} + +.#{$simple-line-icon-prefix}action-undo:before { + content: "\e050"; +} + +.#{$simple-line-icon-prefix}action-redo:before { + content: "\e051"; +} + +.#{$simple-line-icon-prefix}wrench:before { + content: "\e052"; +} + +.#{$simple-line-icon-prefix}umbrella:before { + content: "\e053"; +} + +.#{$simple-line-icon-prefix}trash:before { + content: "\e054"; +} + +.#{$simple-line-icon-prefix}tag:before { + content: "\e055"; +} + +.#{$simple-line-icon-prefix}support:before { + content: "\e056"; +} + +.#{$simple-line-icon-prefix}frame:before { + content: "\e038"; +} + +.#{$simple-line-icon-prefix}size-fullscreen:before { + content: "\e057"; +} + +.#{$simple-line-icon-prefix}size-actual:before { + content: "\e058"; +} + +.#{$simple-line-icon-prefix}shuffle:before { + content: "\e059"; +} + +.#{$simple-line-icon-prefix}share-alt:before { + content: "\e05a"; +} + +.#{$simple-line-icon-prefix}share:before { + content: "\e05b"; +} + +.#{$simple-line-icon-prefix}rocket:before { + content: "\e05c"; +} + +.#{$simple-line-icon-prefix}question:before { + content: "\e05d"; +} + +.#{$simple-line-icon-prefix}pie-chart:before { + content: "\e05e"; +} + +.#{$simple-line-icon-prefix}pencil:before { + content: "\e05f"; +} + +.#{$simple-line-icon-prefix}note:before { + content: "\e060"; +} + +.#{$simple-line-icon-prefix}loop:before { + content: "\e064"; +} + +.#{$simple-line-icon-prefix}home:before { + content: "\e069"; +} + +.#{$simple-line-icon-prefix}grid:before { + content: "\e06a"; +} + +.#{$simple-line-icon-prefix}graph:before { + content: "\e06b"; +} + +.#{$simple-line-icon-prefix}microphone:before { + content: "\e063"; +} + +.#{$simple-line-icon-prefix}music-tone-alt:before { + content: "\e061"; +} + +.#{$simple-line-icon-prefix}music-tone:before { + content: "\e062"; +} + +.#{$simple-line-icon-prefix}earphones-alt:before { + content: "\e03c"; +} + +.#{$simple-line-icon-prefix}earphones:before { + content: "\e03d"; +} + +.#{$simple-line-icon-prefix}equalizer:before { + content: "\e06c"; +} + +.#{$simple-line-icon-prefix}like:before { + content: "\e068"; +} + +.#{$simple-line-icon-prefix}dislike:before { + content: "\e06d"; +} + +.#{$simple-line-icon-prefix}control-start:before { + content: "\e06f"; +} + +.#{$simple-line-icon-prefix}control-rewind:before { + content: "\e070"; +} + +.#{$simple-line-icon-prefix}control-play:before { + content: "\e071"; +} + +.#{$simple-line-icon-prefix}control-pause:before { + content: "\e072"; +} + +.#{$simple-line-icon-prefix}control-forward:before { + content: "\e073"; +} + +.#{$simple-line-icon-prefix}control-end:before { + content: "\e074"; +} + +.#{$simple-line-icon-prefix}volume-1:before { + content: "\e09f"; +} + +.#{$simple-line-icon-prefix}volume-2:before { + content: "\e0a0"; +} + +.#{$simple-line-icon-prefix}volume-off:before { + content: "\e0a1"; +} + +.#{$simple-line-icon-prefix}calendar:before { + content: "\e075"; +} + +.#{$simple-line-icon-prefix}bulb:before { + content: "\e076"; +} + +.#{$simple-line-icon-prefix}chart:before { + content: "\e077"; +} + +.#{$simple-line-icon-prefix}ban:before { + content: "\e07c"; +} + +.#{$simple-line-icon-prefix}bubble:before { + content: "\e07d"; +} + +.#{$simple-line-icon-prefix}camrecorder:before { + content: "\e07e"; +} + +.#{$simple-line-icon-prefix}camera:before { + content: "\e07f"; +} + +.#{$simple-line-icon-prefix}cloud-download:before { + content: "\e083"; +} + +.#{$simple-line-icon-prefix}cloud-upload:before { + content: "\e084"; +} + +.#{$simple-line-icon-prefix}envelope:before { + content: "\e086"; +} + +.#{$simple-line-icon-prefix}eye:before { + content: "\e087"; +} + +.#{$simple-line-icon-prefix}flag:before { + content: "\e088"; +} + +.#{$simple-line-icon-prefix}heart:before { + content: "\e08a"; +} + +.#{$simple-line-icon-prefix}info:before { + content: "\e08b"; +} + +.#{$simple-line-icon-prefix}key:before { + content: "\e08c"; +} + +.#{$simple-line-icon-prefix}link:before { + content: "\e08d"; +} + +.#{$simple-line-icon-prefix}lock:before { + content: "\e08e"; +} + +.#{$simple-line-icon-prefix}lock-open:before { + content: "\e08f"; +} + +.#{$simple-line-icon-prefix}magnifier:before { + content: "\e090"; +} + +.#{$simple-line-icon-prefix}magnifier-add:before { + content: "\e091"; +} + +.#{$simple-line-icon-prefix}magnifier-remove:before { + content: "\e092"; +} + +.#{$simple-line-icon-prefix}paper-clip:before { + content: "\e093"; +} + +.#{$simple-line-icon-prefix}paper-plane:before { + content: "\e094"; +} + +.#{$simple-line-icon-prefix}power:before { + content: "\e097"; +} + +.#{$simple-line-icon-prefix}refresh:before { + content: "\e098"; +} + +.#{$simple-line-icon-prefix}reload:before { + content: "\e099"; +} + +.#{$simple-line-icon-prefix}settings:before { + content: "\e09a"; +} + +.#{$simple-line-icon-prefix}star:before { + content: "\e09b"; +} + +.#{$simple-line-icon-prefix}symbol-female:before { + content: "\e09c"; +} + +.#{$simple-line-icon-prefix}symbol-male:before { + content: "\e09d"; +} + +.#{$simple-line-icon-prefix}target:before { + content: "\e09e"; +} + +.#{$simple-line-icon-prefix}credit-card:before { + content: "\e025"; +} + +.#{$simple-line-icon-prefix}paypal:before { + content: "\e608"; +} + +.#{$simple-line-icon-prefix}social-tumblr:before { + content: "\e00a"; +} + +.#{$simple-line-icon-prefix}social-twitter:before { + content: "\e009"; +} + +.#{$simple-line-icon-prefix}social-facebook:before { + content: "\e00b"; +} + +.#{$simple-line-icon-prefix}social-instagram:before { + content: "\e609"; +} + +.#{$simple-line-icon-prefix}social-linkedin:before { + content: "\e60a"; +} + +.#{$simple-line-icon-prefix}social-pinterest:before { + content: "\e60b"; +} + +.#{$simple-line-icon-prefix}social-github:before { + content: "\e60c"; +} + +.#{$simple-line-icon-prefix}social-google:before { + content: "\e60d"; +} + +.#{$simple-line-icon-prefix}social-reddit:before { + content: "\e60e"; +} + +.#{$simple-line-icon-prefix}social-skype:before { + content: "\e60f"; +} + +.#{$simple-line-icon-prefix}social-dribbble:before { + content: "\e00d"; +} + +.#{$simple-line-icon-prefix}social-behance:before { + content: "\e610"; +} + +.#{$simple-line-icon-prefix}social-foursqare:before { + content: "\e611"; +} + +.#{$simple-line-icon-prefix}social-soundcloud:before { + content: "\e612"; +} + +.#{$simple-line-icon-prefix}social-spotify:before { + content: "\e613"; +} + +.#{$simple-line-icon-prefix}social-stumbleupon:before { + content: "\e614"; +} + +.#{$simple-line-icon-prefix}social-youtube:before { + content: "\e008"; +} + +.#{$simple-line-icon-prefix}social-dropbox:before { + content: "\e00c"; +} + +.#{$simple-line-icon-prefix}social-vkontakte:before { + content: "\e618"; +} + +.#{$simple-line-icon-prefix}social-steam:before { + content: "\e620"; +} diff --git a/assets/vendors/iconfonts/ti-icons/LICENSE b/assets/vendors/iconfonts/ti-icons/LICENSE new file mode 100755 index 0000000..5db68cf --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/LICENSE @@ -0,0 +1,21 @@ +(The MIT License) + +Copyright (c) 2012-2016 Zhixin Wen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/assets/vendors/iconfonts/ti-icons/README.md b/assets/vendors/iconfonts/ti-icons/README.md new file mode 100755 index 0000000..568c8b9 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/README.md @@ -0,0 +1,57 @@ +Themify Icons +============= +[![Tips](https://img.shields.io/gratipay/lykmapipo.svg)](https://gratipay.com/lykmapipo/) + +[![Support via Gratipay](https://cdn.rawgit.com/gratipay/gratipay-badge/2.3.0/dist/gratipay.svg)](https://gratipay.com/lykmapipo/) + +Themify Icons is a complete set of icons for use in web design and apps, consisting of 320+ pixel-perfect, hand-crafted icons that draw inspiration from Apple iOS 7 - available to the public, 100% FREE! You may use or distribute it for any purpose, whether personal or commercial. This icon set is a must have tool for web designers and developers. + +All icons can be viewed at [http://themify.me/themify-icons](http://themify.me/themify-icons) + +## Install +```sh +$ bower install --save themify-icons +``` + +## Usage +- Include `themify-icions` into your app `index.html` +```html + + + + + + + + + + ... + + + ... + + + +``` + +- Add the icon markup in your page +```html + +``` + +## LICENSE + +- Themify Icons font licensed under: [http://scripts.sil.org/OFL](http://scripts.sil.org/OFL) +- Code licensed under: [http://opensource.org/licenses/mit-license.html](http://opensource.org/licenses/mit-license.html) +- All brand icons are copyright/trademarks of their respective owners. + + +## VERSIONS + +Version 1.0.1 (May 27, 2014) +- Added SVG format +- Fixed some icon naming issues +- Added rss icon + +Version 1.0.0 (May 16, 2014) +- Initial release \ No newline at end of file diff --git a/assets/vendors/iconfonts/ti-icons/SVG/Italic.svg b/assets/vendors/iconfonts/ti-icons/SVG/Italic.svg new file mode 100755 index 0000000..78066c2 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/Italic.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/agenda.svg b/assets/vendors/iconfonts/ti-icons/SVG/agenda.svg new file mode 100755 index 0000000..234427d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/agenda.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/alarm-clock.svg b/assets/vendors/iconfonts/ti-icons/SVG/alarm-clock.svg new file mode 100755 index 0000000..d5038d8 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/alarm-clock.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/alert.svg b/assets/vendors/iconfonts/ti-icons/SVG/alert.svg new file mode 100755 index 0000000..8880061 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/alert.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/align-center.svg b/assets/vendors/iconfonts/ti-icons/SVG/align-center.svg new file mode 100755 index 0000000..ff22e12 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/align-center.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/align-justify.svg b/assets/vendors/iconfonts/ti-icons/SVG/align-justify.svg new file mode 100755 index 0000000..316b0a1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/align-justify.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/align-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/align-left.svg new file mode 100755 index 0000000..368d6a4 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/align-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/align-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/align-right.svg new file mode 100755 index 0000000..cf913ef --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/align-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/anchor.svg b/assets/vendors/iconfonts/ti-icons/SVG/anchor.svg new file mode 100755 index 0000000..aa90d53 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/anchor.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/android.svg b/assets/vendors/iconfonts/ti-icons/SVG/android.svg new file mode 100755 index 0000000..853ba3a --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/android.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/angle-double-down.svg b/assets/vendors/iconfonts/ti-icons/SVG/angle-double-down.svg new file mode 100755 index 0000000..2fb357b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/angle-double-down.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/angle-double-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/angle-double-left.svg new file mode 100755 index 0000000..688d255 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/angle-double-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/angle-double-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/angle-double-right.svg new file mode 100755 index 0000000..623ca97 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/angle-double-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/angle-double-up.svg b/assets/vendors/iconfonts/ti-icons/SVG/angle-double-up.svg new file mode 100755 index 0000000..2f8b45f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/angle-double-up.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/angle-down.svg b/assets/vendors/iconfonts/ti-icons/SVG/angle-down.svg new file mode 100755 index 0000000..e27e7f5 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/angle-down.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/angle-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/angle-left.svg new file mode 100755 index 0000000..315e3fe --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/angle-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/angle-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/angle-right.svg new file mode 100755 index 0000000..49c985f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/angle-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/angle-up.svg b/assets/vendors/iconfonts/ti-icons/SVG/angle-up.svg new file mode 100755 index 0000000..ae98e97 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/angle-up.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/announcement.svg b/assets/vendors/iconfonts/ti-icons/SVG/announcement.svg new file mode 100755 index 0000000..18c8233 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/announcement.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/apple.svg b/assets/vendors/iconfonts/ti-icons/SVG/apple.svg new file mode 100755 index 0000000..8affb22 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/apple.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/archive.svg b/assets/vendors/iconfonts/ti-icons/SVG/archive.svg new file mode 100755 index 0000000..3119ccb --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/archive.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrow-circle-down.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrow-circle-down.svg new file mode 100755 index 0000000..e2e1784 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrow-circle-down.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrow-circle-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrow-circle-left.svg new file mode 100755 index 0000000..5a16a16 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrow-circle-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrow-circle-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrow-circle-right.svg new file mode 100755 index 0000000..98ea9fc --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrow-circle-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrow-circle-up.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrow-circle-up.svg new file mode 100755 index 0000000..3267b42 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrow-circle-up.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrow-down.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrow-down.svg new file mode 100755 index 0000000..4d76962 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrow-down.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrow-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrow-left.svg new file mode 100755 index 0000000..1a65eb3 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrow-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrow-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrow-right.svg new file mode 100755 index 0000000..900a070 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrow-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrow-top-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrow-top-left.svg new file mode 100755 index 0000000..ae897fd --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrow-top-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrow-top-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrow-top-right.svg new file mode 100755 index 0000000..7b52ae8 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrow-top-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrow-up.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrow-up.svg new file mode 100755 index 0000000..c8930e3 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrow-up.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrow.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrow.svg new file mode 100755 index 0000000..cf13d2d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrow.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrows-corner.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrows-corner.svg new file mode 100755 index 0000000..76fd665 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrows-corner.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrows-horizontal.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrows-horizontal.svg new file mode 100755 index 0000000..af4d502 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrows-horizontal.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/arrows-vertical.svg b/assets/vendors/iconfonts/ti-icons/SVG/arrows-vertical.svg new file mode 100755 index 0000000..920bb21 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/arrows-vertical.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/back-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/back-left.svg new file mode 100755 index 0000000..d80a7a0 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/back-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/back-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/back-right.svg new file mode 100755 index 0000000..6e8eda5 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/back-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/bag.svg b/assets/vendors/iconfonts/ti-icons/SVG/bag.svg new file mode 100755 index 0000000..69b2ab2 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/bag.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/bar-chart-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/bar-chart-alt.svg new file mode 100755 index 0000000..c85320b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/bar-chart-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/bar-chart.svg b/assets/vendors/iconfonts/ti-icons/SVG/bar-chart.svg new file mode 100755 index 0000000..bb0f3be --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/bar-chart.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/basketball.svg b/assets/vendors/iconfonts/ti-icons/SVG/basketball.svg new file mode 100755 index 0000000..838be77 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/basketball.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/bell.svg b/assets/vendors/iconfonts/ti-icons/SVG/bell.svg new file mode 100755 index 0000000..4b4017a --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/bell.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/blackboard.svg b/assets/vendors/iconfonts/ti-icons/SVG/blackboard.svg new file mode 100755 index 0000000..1687e66 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/blackboard.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/bolt-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/bolt-alt.svg new file mode 100755 index 0000000..ee66e46 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/bolt-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/bolt.svg b/assets/vendors/iconfonts/ti-icons/SVG/bolt.svg new file mode 100755 index 0000000..34a6457 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/bolt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/book.svg b/assets/vendors/iconfonts/ti-icons/SVG/book.svg new file mode 100755 index 0000000..0765338 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/book.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/bookmark-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/bookmark-alt.svg new file mode 100755 index 0000000..561e861 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/bookmark-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/bookmark.svg b/assets/vendors/iconfonts/ti-icons/SVG/bookmark.svg new file mode 100755 index 0000000..39f3afa --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/bookmark.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/briefcase.svg b/assets/vendors/iconfonts/ti-icons/SVG/briefcase.svg new file mode 100755 index 0000000..e34e9e0 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/briefcase.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/brush-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/brush-alt.svg new file mode 100755 index 0000000..112de6c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/brush-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/brush.svg b/assets/vendors/iconfonts/ti-icons/SVG/brush.svg new file mode 100755 index 0000000..cc5fe9c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/brush.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/calendar.svg b/assets/vendors/iconfonts/ti-icons/SVG/calendar.svg new file mode 100755 index 0000000..e2c114c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/calendar.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/camera.svg b/assets/vendors/iconfonts/ti-icons/SVG/camera.svg new file mode 100755 index 0000000..00fc9fc --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/camera.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/car.svg b/assets/vendors/iconfonts/ti-icons/SVG/car.svg new file mode 100755 index 0000000..d1d69f7 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/car.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/check-box.svg b/assets/vendors/iconfonts/ti-icons/SVG/check-box.svg new file mode 100755 index 0000000..93bcef1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/check-box.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/check.svg b/assets/vendors/iconfonts/ti-icons/SVG/check.svg new file mode 100755 index 0000000..1523fac --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/check.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/clip.svg b/assets/vendors/iconfonts/ti-icons/SVG/clip.svg new file mode 100755 index 0000000..c95f12a --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/clip.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/clipboard.svg b/assets/vendors/iconfonts/ti-icons/SVG/clipboard.svg new file mode 100755 index 0000000..b0d7573 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/clipboard.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/close.svg b/assets/vendors/iconfonts/ti-icons/SVG/close.svg new file mode 100755 index 0000000..ab04c0e --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/close.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/cloud-down.svg b/assets/vendors/iconfonts/ti-icons/SVG/cloud-down.svg new file mode 100755 index 0000000..80881d1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/cloud-down.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/cloud-up.svg b/assets/vendors/iconfonts/ti-icons/SVG/cloud-up.svg new file mode 100755 index 0000000..aef89e2 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/cloud-up.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/cloud.svg b/assets/vendors/iconfonts/ti-icons/SVG/cloud.svg new file mode 100755 index 0000000..77f216c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/cloud.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/comment-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/comment-alt.svg new file mode 100755 index 0000000..d882979 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/comment-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/comment.svg b/assets/vendors/iconfonts/ti-icons/SVG/comment.svg new file mode 100755 index 0000000..41e3f59 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/comment.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/comments-smiley.svg b/assets/vendors/iconfonts/ti-icons/SVG/comments-smiley.svg new file mode 100755 index 0000000..904ffc1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/comments-smiley.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/comments.svg b/assets/vendors/iconfonts/ti-icons/SVG/comments.svg new file mode 100755 index 0000000..5203dad --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/comments.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/control-backward.svg b/assets/vendors/iconfonts/ti-icons/SVG/control-backward.svg new file mode 100755 index 0000000..75ee8a6 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/control-backward.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/control-eject.svg b/assets/vendors/iconfonts/ti-icons/SVG/control-eject.svg new file mode 100755 index 0000000..12fad95 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/control-eject.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/control-forward.svg b/assets/vendors/iconfonts/ti-icons/SVG/control-forward.svg new file mode 100755 index 0000000..479bf58 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/control-forward.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/control-pause.svg b/assets/vendors/iconfonts/ti-icons/SVG/control-pause.svg new file mode 100755 index 0000000..29332ea --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/control-pause.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/control-play.svg b/assets/vendors/iconfonts/ti-icons/SVG/control-play.svg new file mode 100755 index 0000000..9601bfd --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/control-play.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/control-record.svg b/assets/vendors/iconfonts/ti-icons/SVG/control-record.svg new file mode 100755 index 0000000..1543f57 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/control-record.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/control-shuffle.svg b/assets/vendors/iconfonts/ti-icons/SVG/control-shuffle.svg new file mode 100755 index 0000000..1a8626e --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/control-shuffle.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/control-skip-backward.svg b/assets/vendors/iconfonts/ti-icons/SVG/control-skip-backward.svg new file mode 100755 index 0000000..bb15165 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/control-skip-backward.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/control-skip-forward.svg b/assets/vendors/iconfonts/ti-icons/SVG/control-skip-forward.svg new file mode 100755 index 0000000..c62f354 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/control-skip-forward.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/control-stop.svg b/assets/vendors/iconfonts/ti-icons/SVG/control-stop.svg new file mode 100755 index 0000000..57626c5 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/control-stop.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/credit-card.svg b/assets/vendors/iconfonts/ti-icons/SVG/credit-card.svg new file mode 100755 index 0000000..6114edb --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/credit-card.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/crown.svg b/assets/vendors/iconfonts/ti-icons/SVG/crown.svg new file mode 100755 index 0000000..097ac4b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/crown.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/css3.svg b/assets/vendors/iconfonts/ti-icons/SVG/css3.svg new file mode 100755 index 0000000..5976d5f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/css3.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/cup.svg b/assets/vendors/iconfonts/ti-icons/SVG/cup.svg new file mode 100755 index 0000000..ec88ba2 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/cup.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/cut.svg b/assets/vendors/iconfonts/ti-icons/SVG/cut.svg new file mode 100755 index 0000000..520c49c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/cut.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/dashboard.svg b/assets/vendors/iconfonts/ti-icons/SVG/dashboard.svg new file mode 100755 index 0000000..91fabc2 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/dashboard.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/desktop.svg b/assets/vendors/iconfonts/ti-icons/SVG/desktop.svg new file mode 100755 index 0000000..4602433 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/desktop.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/direction-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/direction-alt.svg new file mode 100755 index 0000000..0530998 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/direction-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/direction.svg b/assets/vendors/iconfonts/ti-icons/SVG/direction.svg new file mode 100755 index 0000000..fc5c7cc --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/direction.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/download.svg b/assets/vendors/iconfonts/ti-icons/SVG/download.svg new file mode 100755 index 0000000..562acac --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/download.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/dribbble.svg b/assets/vendors/iconfonts/ti-icons/SVG/dribbble.svg new file mode 100755 index 0000000..11131f6 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/dribbble.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/dropbox-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/dropbox-alt.svg new file mode 100755 index 0000000..5280e62 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/dropbox-alt.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/dropbox.svg b/assets/vendors/iconfonts/ti-icons/SVG/dropbox.svg new file mode 100755 index 0000000..e10bf67 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/dropbox.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/drupal.svg b/assets/vendors/iconfonts/ti-icons/SVG/drupal.svg new file mode 100755 index 0000000..163f2d2 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/drupal.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/email.svg b/assets/vendors/iconfonts/ti-icons/SVG/email.svg new file mode 100755 index 0000000..057dd29 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/email.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/envelope.svg b/assets/vendors/iconfonts/ti-icons/SVG/envelope.svg new file mode 100755 index 0000000..3d243e0 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/envelope.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/eraser.svg b/assets/vendors/iconfonts/ti-icons/SVG/eraser.svg new file mode 100755 index 0000000..2bbc475 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/eraser.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/exchange-vertical.svg b/assets/vendors/iconfonts/ti-icons/SVG/exchange-vertical.svg new file mode 100755 index 0000000..7aabf79 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/exchange-vertical.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/export.svg b/assets/vendors/iconfonts/ti-icons/SVG/export.svg new file mode 100755 index 0000000..baad07e --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/export.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/eye.svg b/assets/vendors/iconfonts/ti-icons/SVG/eye.svg new file mode 100755 index 0000000..4c8978f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/eye.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/face-sad.svg b/assets/vendors/iconfonts/ti-icons/SVG/face-sad.svg new file mode 100755 index 0000000..4313176 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/face-sad.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/face-smile.svg b/assets/vendors/iconfonts/ti-icons/SVG/face-smile.svg new file mode 100755 index 0000000..7f0a8bf --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/face-smile.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/facebook.svg b/assets/vendors/iconfonts/ti-icons/SVG/facebook.svg new file mode 100755 index 0000000..2b7119b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/facebook.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/file.svg b/assets/vendors/iconfonts/ti-icons/SVG/file.svg new file mode 100755 index 0000000..71ce29e --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/file.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/files.svg b/assets/vendors/iconfonts/ti-icons/SVG/files.svg new file mode 100755 index 0000000..5a4f074 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/files.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/filter.svg b/assets/vendors/iconfonts/ti-icons/SVG/filter.svg new file mode 100755 index 0000000..d1d8ac5 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/filter.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/flag-alt-2.svg b/assets/vendors/iconfonts/ti-icons/SVG/flag-alt-2.svg new file mode 100755 index 0000000..762e930 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/flag-alt-2.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/flag-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/flag-alt.svg new file mode 100755 index 0000000..4d8f427 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/flag-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/flag.svg b/assets/vendors/iconfonts/ti-icons/SVG/flag.svg new file mode 100755 index 0000000..80b6f5e --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/flag.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/flickr-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/flickr-alt.svg new file mode 100755 index 0000000..a07a60e --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/flickr-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/flickr.svg b/assets/vendors/iconfonts/ti-icons/SVG/flickr.svg new file mode 100755 index 0000000..cdb99c9 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/flickr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/folder.svg b/assets/vendors/iconfonts/ti-icons/SVG/folder.svg new file mode 100755 index 0000000..78fb423 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/folder.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/fullscreen.svg b/assets/vendors/iconfonts/ti-icons/SVG/fullscreen.svg new file mode 100755 index 0000000..93e9ec8 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/fullscreen.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/gallery.svg b/assets/vendors/iconfonts/ti-icons/SVG/gallery.svg new file mode 100755 index 0000000..cfedcf7 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/gallery.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/game.svg b/assets/vendors/iconfonts/ti-icons/SVG/game.svg new file mode 100755 index 0000000..4acd242 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/game.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/gift.svg b/assets/vendors/iconfonts/ti-icons/SVG/gift.svg new file mode 100755 index 0000000..cfb52a1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/gift.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/github.svg b/assets/vendors/iconfonts/ti-icons/SVG/github.svg new file mode 100755 index 0000000..a5b438f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/github.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/google.svg b/assets/vendors/iconfonts/ti-icons/SVG/google.svg new file mode 100755 index 0000000..d37339b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/google.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/hand-drag.svg b/assets/vendors/iconfonts/ti-icons/SVG/hand-drag.svg new file mode 100755 index 0000000..6c68bbd --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/hand-drag.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/hand-open.svg b/assets/vendors/iconfonts/ti-icons/SVG/hand-open.svg new file mode 100755 index 0000000..0ad2e2d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/hand-open.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/hand-point-down.svg b/assets/vendors/iconfonts/ti-icons/SVG/hand-point-down.svg new file mode 100755 index 0000000..cda47a9 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/hand-point-down.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/hand-point-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/hand-point-left.svg new file mode 100755 index 0000000..3bc74e3 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/hand-point-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/hand-point-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/hand-point-right.svg new file mode 100755 index 0000000..8c3e30b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/hand-point-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/hand-point-up.svg b/assets/vendors/iconfonts/ti-icons/SVG/hand-point-up.svg new file mode 100755 index 0000000..8b53e48 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/hand-point-up.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/hand-stop.svg b/assets/vendors/iconfonts/ti-icons/SVG/hand-stop.svg new file mode 100755 index 0000000..d9e9e5c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/hand-stop.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/harddrive.svg b/assets/vendors/iconfonts/ti-icons/SVG/harddrive.svg new file mode 100755 index 0000000..7ea98e9 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/harddrive.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/harddrives.svg b/assets/vendors/iconfonts/ti-icons/SVG/harddrives.svg new file mode 100755 index 0000000..aa2d70b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/harddrives.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/headphone-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/headphone-alt.svg new file mode 100755 index 0000000..7ded7f0 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/headphone-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/headphone.svg b/assets/vendors/iconfonts/ti-icons/SVG/headphone.svg new file mode 100755 index 0000000..e3dd438 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/headphone.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/heart-broken.svg b/assets/vendors/iconfonts/ti-icons/SVG/heart-broken.svg new file mode 100755 index 0000000..8ec7bcf --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/heart-broken.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/heart.svg b/assets/vendors/iconfonts/ti-icons/SVG/heart.svg new file mode 100755 index 0000000..caf91ca --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/heart.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/help-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/help-alt.svg new file mode 100755 index 0000000..3a5f269 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/help-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/help.svg b/assets/vendors/iconfonts/ti-icons/SVG/help.svg new file mode 100755 index 0000000..77eee67 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/help.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/home.svg b/assets/vendors/iconfonts/ti-icons/SVG/home.svg new file mode 100755 index 0000000..074db91 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/home.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/html5.svg b/assets/vendors/iconfonts/ti-icons/SVG/html5.svg new file mode 100755 index 0000000..553ed2a --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/html5.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/hummer.svg b/assets/vendors/iconfonts/ti-icons/SVG/hummer.svg new file mode 100755 index 0000000..93e5115 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/hummer.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/id-badge.svg b/assets/vendors/iconfonts/ti-icons/SVG/id-badge.svg new file mode 100755 index 0000000..1623bb1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/id-badge.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/image.svg b/assets/vendors/iconfonts/ti-icons/SVG/image.svg new file mode 100755 index 0000000..4271277 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/image.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/import.svg b/assets/vendors/iconfonts/ti-icons/SVG/import.svg new file mode 100755 index 0000000..a9fa6b7 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/import.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/infinite.svg b/assets/vendors/iconfonts/ti-icons/SVG/infinite.svg new file mode 100755 index 0000000..556a3ff --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/infinite.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/info-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/info-alt.svg new file mode 100755 index 0000000..a5e9553 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/info-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/info.svg b/assets/vendors/iconfonts/ti-icons/SVG/info.svg new file mode 100755 index 0000000..34925f1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/info.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/ink-pen.svg b/assets/vendors/iconfonts/ti-icons/SVG/ink-pen.svg new file mode 100755 index 0000000..ea22de9 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/ink-pen.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/instagram.svg b/assets/vendors/iconfonts/ti-icons/SVG/instagram.svg new file mode 100755 index 0000000..8bb509a --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/instagram.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/joomla.svg b/assets/vendors/iconfonts/ti-icons/SVG/joomla.svg new file mode 100755 index 0000000..f487c59 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/joomla.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/jsfiddle.svg b/assets/vendors/iconfonts/ti-icons/SVG/jsfiddle.svg new file mode 100755 index 0000000..ab07474 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/jsfiddle.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/key.svg b/assets/vendors/iconfonts/ti-icons/SVG/key.svg new file mode 100755 index 0000000..0870317 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/key.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layers-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layers-alt.svg new file mode 100755 index 0000000..7ce81a0 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layers-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layers.svg b/assets/vendors/iconfonts/ti-icons/SVG/layers.svg new file mode 100755 index 0000000..1d5780f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layers.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-accordion-list.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-accordion-list.svg new file mode 100755 index 0000000..6cf6094 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-accordion-list.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-accordion-merged.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-accordion-merged.svg new file mode 100755 index 0000000..5e19c86 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-accordion-merged.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-accordion-separated.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-accordion-separated.svg new file mode 100755 index 0000000..4a59827 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-accordion-separated.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-column2-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-column2-alt.svg new file mode 100755 index 0000000..2a5cf00 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-column2-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-column2.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-column2.svg new file mode 100755 index 0000000..eb7bcdf --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-column2.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-column3-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-column3-alt.svg new file mode 100755 index 0000000..4729230 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-column3-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-column3.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-column3.svg new file mode 100755 index 0000000..6aeb135 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-column3.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-column4-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-column4-alt.svg new file mode 100755 index 0000000..fdbc3c9 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-column4-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-column4.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-column4.svg new file mode 100755 index 0000000..7e21434 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-column4.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-btn-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-btn-left.svg new file mode 100755 index 0000000..3542955 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-btn-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-btn-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-btn-right.svg new file mode 100755 index 0000000..68b83a4 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-btn-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-center.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-center.svg new file mode 100755 index 0000000..1f3ba94 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-center.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-left.svg new file mode 100755 index 0000000..5418cb6 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-right.svg new file mode 100755 index 0000000..d5e849f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-cta-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-grid2-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid2-alt.svg new file mode 100755 index 0000000..dd9d5c3 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid2-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-grid2-thumb.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid2-thumb.svg new file mode 100755 index 0000000..136bad3 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid2-thumb.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-grid2.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid2.svg new file mode 100755 index 0000000..9fc80b9 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid2.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-grid3-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid3-alt.svg new file mode 100755 index 0000000..1da0b03 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid3-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-grid3.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid3.svg new file mode 100755 index 0000000..885dfff --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid3.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-grid4-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid4-alt.svg new file mode 100755 index 0000000..d89c45a --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid4-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-grid4.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid4.svg new file mode 100755 index 0000000..346fdd1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-grid4.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-line-solid.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-line-solid.svg new file mode 100755 index 0000000..58bc55d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-line-solid.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-list-large-image.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-list-large-image.svg new file mode 100755 index 0000000..d16ef5d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-list-large-image.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-list-post.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-list-post.svg new file mode 100755 index 0000000..359c2bf --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-list-post.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-list-thumb-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-list-thumb-alt.svg new file mode 100755 index 0000000..9be35ad --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-list-thumb-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-list-thumb.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-list-thumb.svg new file mode 100755 index 0000000..697c826 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-list-thumb.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-media-center-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-center-alt.svg new file mode 100755 index 0000000..0a98c72 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-center-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-media-center.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-center.svg new file mode 100755 index 0000000..12aed58 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-center.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-media-left-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-left-alt.svg new file mode 100755 index 0000000..4289d7c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-left-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-media-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-left.svg new file mode 100755 index 0000000..2b813d6 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-left.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-media-overlay-alt-2.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-overlay-alt-2.svg new file mode 100755 index 0000000..765f431 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-overlay-alt-2.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-media-overlay-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-overlay-alt.svg new file mode 100755 index 0000000..bd8dd3e --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-overlay-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-media-overlay.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-overlay.svg new file mode 100755 index 0000000..3ad9d73 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-overlay.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-media-right-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-right-alt.svg new file mode 100755 index 0000000..9dba988 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-right-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-media-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-right.svg new file mode 100755 index 0000000..146eb7c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-media-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-menu-full.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-menu-full.svg new file mode 100755 index 0000000..3baf75d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-menu-full.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-menu-separated.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-menu-separated.svg new file mode 100755 index 0000000..1e368f4 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-menu-separated.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-menu-v.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-menu-v.svg new file mode 100755 index 0000000..32eaf21 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-menu-v.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-menu.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-menu.svg new file mode 100755 index 0000000..6c253f8 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-menu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-placeholder.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-placeholder.svg new file mode 100755 index 0000000..38e543f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-placeholder.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-sidebar-2.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-sidebar-2.svg new file mode 100755 index 0000000..42b6935 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-sidebar-2.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-sidebar-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-sidebar-left.svg new file mode 100755 index 0000000..07ab514 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-sidebar-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-sidebar-none.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-sidebar-none.svg new file mode 100755 index 0000000..57b5129 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-sidebar-none.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-sidebar-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-sidebar-right.svg new file mode 100755 index 0000000..1f27b12 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-sidebar-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-slider-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-slider-alt.svg new file mode 100755 index 0000000..955a75d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-slider-alt.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-slider.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-slider.svg new file mode 100755 index 0000000..2da11eb --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-slider.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-tab-min.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-tab-min.svg new file mode 100755 index 0000000..554acb1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-tab-min.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-tab-v.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-tab-v.svg new file mode 100755 index 0000000..255ff4d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-tab-v.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-tab-window.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-tab-window.svg new file mode 100755 index 0000000..97c285a --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-tab-window.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-tab.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-tab.svg new file mode 100755 index 0000000..56cc153 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-tab.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-width-default-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-width-default-alt.svg new file mode 100755 index 0000000..6d7069a --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-width-default-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-width-default.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-width-default.svg new file mode 100755 index 0000000..77557b1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-width-default.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout-width-full.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout-width-full.svg new file mode 100755 index 0000000..9fc49a4 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout-width-full.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/layout.svg b/assets/vendors/iconfonts/ti-icons/SVG/layout.svg new file mode 100755 index 0000000..bb77c6d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/layout.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/light-bulb.svg b/assets/vendors/iconfonts/ti-icons/SVG/light-bulb.svg new file mode 100755 index 0000000..aa83f4a --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/light-bulb.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/line-dashed.svg b/assets/vendors/iconfonts/ti-icons/SVG/line-dashed.svg new file mode 100755 index 0000000..967ad68 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/line-dashed.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/line-dotted.svg b/assets/vendors/iconfonts/ti-icons/SVG/line-dotted.svg new file mode 100755 index 0000000..9d7d699 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/line-dotted.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/line-double.svg b/assets/vendors/iconfonts/ti-icons/SVG/line-double.svg new file mode 100755 index 0000000..7b29f44 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/line-double.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/link.svg b/assets/vendors/iconfonts/ti-icons/SVG/link.svg new file mode 100755 index 0000000..4bd1e1c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/link.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/linkedin.svg b/assets/vendors/iconfonts/ti-icons/SVG/linkedin.svg new file mode 100755 index 0000000..f2548e8 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/linkedin.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/linux.svg b/assets/vendors/iconfonts/ti-icons/SVG/linux.svg new file mode 100755 index 0000000..871a9d8 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/linux.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/list-ol.svg b/assets/vendors/iconfonts/ti-icons/SVG/list-ol.svg new file mode 100755 index 0000000..dad98fe --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/list-ol.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/list.svg b/assets/vendors/iconfonts/ti-icons/SVG/list.svg new file mode 100755 index 0000000..e2d8832 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/list.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/location-arrow.svg b/assets/vendors/iconfonts/ti-icons/SVG/location-arrow.svg new file mode 100755 index 0000000..459345d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/location-arrow.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/location-pin.svg b/assets/vendors/iconfonts/ti-icons/SVG/location-pin.svg new file mode 100755 index 0000000..6f41adf --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/location-pin.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/lock.svg b/assets/vendors/iconfonts/ti-icons/SVG/lock.svg new file mode 100755 index 0000000..31a9b33 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/lock.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/loop.svg b/assets/vendors/iconfonts/ti-icons/SVG/loop.svg new file mode 100755 index 0000000..01621e7 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/loop.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/magnet.svg b/assets/vendors/iconfonts/ti-icons/SVG/magnet.svg new file mode 100755 index 0000000..c7ae581 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/magnet.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/map-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/map-alt.svg new file mode 100755 index 0000000..7a1f0a2 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/map-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/map.svg b/assets/vendors/iconfonts/ti-icons/SVG/map.svg new file mode 100755 index 0000000..284a7f1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/map.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/marker-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/marker-alt.svg new file mode 100755 index 0000000..74e9fe1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/marker-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/marker.svg b/assets/vendors/iconfonts/ti-icons/SVG/marker.svg new file mode 100755 index 0000000..14e3aa5 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/marker.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/medall-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/medall-alt.svg new file mode 100755 index 0000000..54d284d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/medall-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/medall.svg b/assets/vendors/iconfonts/ti-icons/SVG/medall.svg new file mode 100755 index 0000000..b289eda --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/medall.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/menu-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/menu-alt.svg new file mode 100755 index 0000000..f86ce75 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/menu-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/menu.svg b/assets/vendors/iconfonts/ti-icons/SVG/menu.svg new file mode 100755 index 0000000..88e489d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/menu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/microphone-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/microphone-alt.svg new file mode 100755 index 0000000..e57175d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/microphone-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/microphone.svg b/assets/vendors/iconfonts/ti-icons/SVG/microphone.svg new file mode 100755 index 0000000..b66dd09 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/microphone.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/microsoft-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/microsoft-alt.svg new file mode 100755 index 0000000..2e7cf18 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/microsoft-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/microsoft.svg b/assets/vendors/iconfonts/ti-icons/SVG/microsoft.svg new file mode 100755 index 0000000..e3a09c5 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/microsoft.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/minus.svg b/assets/vendors/iconfonts/ti-icons/SVG/minus.svg new file mode 100755 index 0000000..fc33ce8 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/minus.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/mobile.svg b/assets/vendors/iconfonts/ti-icons/SVG/mobile.svg new file mode 100755 index 0000000..bbf9961 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/mobile.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/money.svg b/assets/vendors/iconfonts/ti-icons/SVG/money.svg new file mode 100755 index 0000000..87bc534 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/money.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/more-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/more-alt.svg new file mode 100755 index 0000000..c1f3cb8 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/more-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/more.svg b/assets/vendors/iconfonts/ti-icons/SVG/more.svg new file mode 100755 index 0000000..5a34db0 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/more.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/mouse-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/mouse-alt.svg new file mode 100755 index 0000000..df04106 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/mouse-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/mouse.svg b/assets/vendors/iconfonts/ti-icons/SVG/mouse.svg new file mode 100755 index 0000000..e123f87 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/mouse.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/music-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/music-alt.svg new file mode 100755 index 0000000..fd44511 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/music-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/music.svg b/assets/vendors/iconfonts/ti-icons/SVG/music.svg new file mode 100755 index 0000000..9a67e6a --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/music.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/na.svg b/assets/vendors/iconfonts/ti-icons/SVG/na.svg new file mode 100755 index 0000000..ca09635 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/na.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/new-window.svg b/assets/vendors/iconfonts/ti-icons/SVG/new-window.svg new file mode 100755 index 0000000..cdd33f6 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/new-window.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/notepad.svg b/assets/vendors/iconfonts/ti-icons/SVG/notepad.svg new file mode 100755 index 0000000..f319bc1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/notepad.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/package.svg b/assets/vendors/iconfonts/ti-icons/SVG/package.svg new file mode 100755 index 0000000..6ddde1a --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/package.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/paint-bucket.svg b/assets/vendors/iconfonts/ti-icons/SVG/paint-bucket.svg new file mode 100755 index 0000000..ebb39df --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/paint-bucket.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/paint-roller.svg b/assets/vendors/iconfonts/ti-icons/SVG/paint-roller.svg new file mode 100755 index 0000000..386dc66 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/paint-roller.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/palette.svg b/assets/vendors/iconfonts/ti-icons/SVG/palette.svg new file mode 100755 index 0000000..c65ab8f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/palette.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/panel.svg b/assets/vendors/iconfonts/ti-icons/SVG/panel.svg new file mode 100755 index 0000000..a2eafd3 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/panel.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/paragraph.svg b/assets/vendors/iconfonts/ti-icons/SVG/paragraph.svg new file mode 100755 index 0000000..fd659bc --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/paragraph.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/pencil-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/pencil-alt.svg new file mode 100755 index 0000000..60a0191 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/pencil-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/pencil-alt2.svg b/assets/vendors/iconfonts/ti-icons/SVG/pencil-alt2.svg new file mode 100755 index 0000000..538a061 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/pencil-alt2.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/pencil.svg b/assets/vendors/iconfonts/ti-icons/SVG/pencil.svg new file mode 100755 index 0000000..42f23d8 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/pencil.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/pie-chart.svg b/assets/vendors/iconfonts/ti-icons/SVG/pie-chart.svg new file mode 100755 index 0000000..454fa9f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/pie-chart.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/pin-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/pin-alt.svg new file mode 100755 index 0000000..4782b6e --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/pin-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/pin.svg b/assets/vendors/iconfonts/ti-icons/SVG/pin.svg new file mode 100755 index 0000000..da7855e --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/pin.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/pin2.svg b/assets/vendors/iconfonts/ti-icons/SVG/pin2.svg new file mode 100755 index 0000000..b431ac4 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/pin2.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/pinterest-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/pinterest-alt.svg new file mode 100755 index 0000000..15240b0 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/pinterest-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/pinterest.svg b/assets/vendors/iconfonts/ti-icons/SVG/pinterest.svg new file mode 100755 index 0000000..e9197bc --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/pinterest.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/plug.svg b/assets/vendors/iconfonts/ti-icons/SVG/plug.svg new file mode 100755 index 0000000..2eeb78f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/plug.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/plus.svg b/assets/vendors/iconfonts/ti-icons/SVG/plus.svg new file mode 100755 index 0000000..9be162f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/plus.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/power-off.svg b/assets/vendors/iconfonts/ti-icons/SVG/power-off.svg new file mode 100755 index 0000000..c207ad1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/power-off.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/printer.svg b/assets/vendors/iconfonts/ti-icons/SVG/printer.svg new file mode 100755 index 0000000..7ff4eb1 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/printer.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/pulse.svg b/assets/vendors/iconfonts/ti-icons/SVG/pulse.svg new file mode 100755 index 0000000..2e53c4b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/pulse.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/quote-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/quote-left.svg new file mode 100755 index 0000000..b679a7b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/quote-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/quote-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/quote-right.svg new file mode 100755 index 0000000..a9cac3d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/quote-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/receipt.svg b/assets/vendors/iconfonts/ti-icons/SVG/receipt.svg new file mode 100755 index 0000000..70a3700 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/receipt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/reddit.svg b/assets/vendors/iconfonts/ti-icons/SVG/reddit.svg new file mode 100755 index 0000000..d31a08f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/reddit.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/reload.svg b/assets/vendors/iconfonts/ti-icons/SVG/reload.svg new file mode 100755 index 0000000..cc8ee98 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/reload.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/rocket.svg b/assets/vendors/iconfonts/ti-icons/SVG/rocket.svg new file mode 100755 index 0000000..120214c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/rocket.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/rss-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/rss-alt.svg new file mode 100755 index 0000000..609f1ca --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/rss-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/rss.svg b/assets/vendors/iconfonts/ti-icons/SVG/rss.svg new file mode 100755 index 0000000..4a256fd --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/rss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/ruler-alt-2.svg b/assets/vendors/iconfonts/ti-icons/SVG/ruler-alt-2.svg new file mode 100755 index 0000000..f95dae7 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/ruler-alt-2.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/ruler-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/ruler-alt.svg new file mode 100755 index 0000000..a1608fb --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/ruler-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/ruler-pencil.svg b/assets/vendors/iconfonts/ti-icons/SVG/ruler-pencil.svg new file mode 100755 index 0000000..e4b83fb --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/ruler-pencil.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/ruler.svg b/assets/vendors/iconfonts/ti-icons/SVG/ruler.svg new file mode 100755 index 0000000..1c85225 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/ruler.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/save-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/save-alt.svg new file mode 100755 index 0000000..d29ca3e --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/save-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/save.svg b/assets/vendors/iconfonts/ti-icons/SVG/save.svg new file mode 100755 index 0000000..1c0a10b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/save.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/search.svg b/assets/vendors/iconfonts/ti-icons/SVG/search.svg new file mode 100755 index 0000000..6b06695 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/search.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/server.svg b/assets/vendors/iconfonts/ti-icons/SVG/server.svg new file mode 100755 index 0000000..745a619 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/server.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/settings.svg b/assets/vendors/iconfonts/ti-icons/SVG/settings.svg new file mode 100755 index 0000000..c015f7f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/settings.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/share-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/share-alt.svg new file mode 100755 index 0000000..8d9b989 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/share-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/share.svg b/assets/vendors/iconfonts/ti-icons/SVG/share.svg new file mode 100755 index 0000000..8a1f868 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/share.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/sharethis-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/sharethis-alt.svg new file mode 100755 index 0000000..27c6816 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/sharethis-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/sharethis.svg b/assets/vendors/iconfonts/ti-icons/SVG/sharethis.svg new file mode 100755 index 0000000..0288373 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/sharethis.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/shield.svg b/assets/vendors/iconfonts/ti-icons/SVG/shield.svg new file mode 100755 index 0000000..edce5b5 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/shield.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/shift-left-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/shift-left-alt.svg new file mode 100755 index 0000000..f745ca0 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/shift-left-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/shift-left.svg b/assets/vendors/iconfonts/ti-icons/SVG/shift-left.svg new file mode 100755 index 0000000..0dcce3b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/shift-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/shift-right-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/shift-right-alt.svg new file mode 100755 index 0000000..2613097 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/shift-right-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/shift-right.svg b/assets/vendors/iconfonts/ti-icons/SVG/shift-right.svg new file mode 100755 index 0000000..02eec67 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/shift-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/shine.svg b/assets/vendors/iconfonts/ti-icons/SVG/shine.svg new file mode 100755 index 0000000..750f041 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/shine.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/shopping-cart-full.svg b/assets/vendors/iconfonts/ti-icons/SVG/shopping-cart-full.svg new file mode 100755 index 0000000..771590f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/shopping-cart-full.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/shopping-cart.svg b/assets/vendors/iconfonts/ti-icons/SVG/shopping-cart.svg new file mode 100755 index 0000000..8cb8297 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/shopping-cart.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/shortcode.svg b/assets/vendors/iconfonts/ti-icons/SVG/shortcode.svg new file mode 100755 index 0000000..ab6af6b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/shortcode.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/signal.svg b/assets/vendors/iconfonts/ti-icons/SVG/signal.svg new file mode 100755 index 0000000..eef8efb --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/signal.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/skype.svg b/assets/vendors/iconfonts/ti-icons/SVG/skype.svg new file mode 100755 index 0000000..c6d93ae --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/skype.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/slice.svg b/assets/vendors/iconfonts/ti-icons/SVG/slice.svg new file mode 100755 index 0000000..35e3335 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/slice.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/smallcap.svg b/assets/vendors/iconfonts/ti-icons/SVG/smallcap.svg new file mode 100755 index 0000000..6c57c7b --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/smallcap.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/soundcloud.svg b/assets/vendors/iconfonts/ti-icons/SVG/soundcloud.svg new file mode 100755 index 0000000..a08acf6 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/soundcloud.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/split-h.svg b/assets/vendors/iconfonts/ti-icons/SVG/split-h.svg new file mode 100755 index 0000000..80087b4 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/split-h.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/split-v-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/split-v-alt.svg new file mode 100755 index 0000000..810bfcc --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/split-v-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/split-v.svg b/assets/vendors/iconfonts/ti-icons/SVG/split-v.svg new file mode 100755 index 0000000..e4b8e5c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/split-v.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/spray.svg b/assets/vendors/iconfonts/ti-icons/SVG/spray.svg new file mode 100755 index 0000000..a435696 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/spray.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/stack-overflow.svg b/assets/vendors/iconfonts/ti-icons/SVG/stack-overflow.svg new file mode 100755 index 0000000..d2c5542 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/stack-overflow.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/stamp.svg b/assets/vendors/iconfonts/ti-icons/SVG/stamp.svg new file mode 100755 index 0000000..390618c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/stamp.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/star.svg b/assets/vendors/iconfonts/ti-icons/SVG/star.svg new file mode 100755 index 0000000..46559c3 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/star.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/stats-down.svg b/assets/vendors/iconfonts/ti-icons/SVG/stats-down.svg new file mode 100755 index 0000000..8696480 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/stats-down.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/stats-up.svg b/assets/vendors/iconfonts/ti-icons/SVG/stats-up.svg new file mode 100755 index 0000000..fff5e51 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/stats-up.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/support.svg b/assets/vendors/iconfonts/ti-icons/SVG/support.svg new file mode 100755 index 0000000..6410cc9 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/support.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/tablet.svg b/assets/vendors/iconfonts/ti-icons/SVG/tablet.svg new file mode 100755 index 0000000..1832c05 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/tablet.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/tag.svg b/assets/vendors/iconfonts/ti-icons/SVG/tag.svg new file mode 100755 index 0000000..be2a296 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/tag.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/target.svg b/assets/vendors/iconfonts/ti-icons/SVG/target.svg new file mode 100755 index 0000000..af717b3 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/target.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/text.svg b/assets/vendors/iconfonts/ti-icons/SVG/text.svg new file mode 100755 index 0000000..97aef04 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/text.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/themify-favicon-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/themify-favicon-alt.svg new file mode 100755 index 0000000..3ceee94 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/themify-favicon-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/themify-favicon.svg b/assets/vendors/iconfonts/ti-icons/SVG/themify-favicon.svg new file mode 100755 index 0000000..4301241 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/themify-favicon.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/themify-logo.svg b/assets/vendors/iconfonts/ti-icons/SVG/themify-logo.svg new file mode 100755 index 0000000..2e598c4 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/themify-logo.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/thought.svg b/assets/vendors/iconfonts/ti-icons/SVG/thought.svg new file mode 100755 index 0000000..1d0cd74 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/thought.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/thumb-down.svg b/assets/vendors/iconfonts/ti-icons/SVG/thumb-down.svg new file mode 100755 index 0000000..d0ec6b7 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/thumb-down.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/thumb-up.svg b/assets/vendors/iconfonts/ti-icons/SVG/thumb-up.svg new file mode 100755 index 0000000..e3d6f24 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/thumb-up.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/ticket.svg b/assets/vendors/iconfonts/ti-icons/SVG/ticket.svg new file mode 100755 index 0000000..cd24b54 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/ticket.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/time.svg b/assets/vendors/iconfonts/ti-icons/SVG/time.svg new file mode 100755 index 0000000..e7dbe32 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/time.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/timer.svg b/assets/vendors/iconfonts/ti-icons/SVG/timer.svg new file mode 100755 index 0000000..1578e4f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/timer.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/trash.svg b/assets/vendors/iconfonts/ti-icons/SVG/trash.svg new file mode 100755 index 0000000..0fc00d4 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/trash.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/trello.svg b/assets/vendors/iconfonts/ti-icons/SVG/trello.svg new file mode 100755 index 0000000..e2adc81 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/trello.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/truck.svg b/assets/vendors/iconfonts/ti-icons/SVG/truck.svg new file mode 100755 index 0000000..4ff6462 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/truck.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/tumblr-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/tumblr-alt.svg new file mode 100755 index 0000000..6662a49 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/tumblr-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/tumblr.svg b/assets/vendors/iconfonts/ti-icons/SVG/tumblr.svg new file mode 100755 index 0000000..70559fa --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/tumblr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/twitter-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/twitter-alt.svg new file mode 100755 index 0000000..59ccf96 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/twitter-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/twitter.svg b/assets/vendors/iconfonts/ti-icons/SVG/twitter.svg new file mode 100755 index 0000000..055e651 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/twitter.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/underline.svg b/assets/vendors/iconfonts/ti-icons/SVG/underline.svg new file mode 100755 index 0000000..1e01a6f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/underline.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/unlink.svg b/assets/vendors/iconfonts/ti-icons/SVG/unlink.svg new file mode 100755 index 0000000..24d7ef2 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/unlink.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/unlock.svg b/assets/vendors/iconfonts/ti-icons/SVG/unlock.svg new file mode 100755 index 0000000..a137249 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/unlock.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/upload.svg b/assets/vendors/iconfonts/ti-icons/SVG/upload.svg new file mode 100755 index 0000000..d25cdaf --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/upload.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/uppercase.svg b/assets/vendors/iconfonts/ti-icons/SVG/uppercase.svg new file mode 100755 index 0000000..fa09382 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/uppercase.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/user.svg b/assets/vendors/iconfonts/ti-icons/SVG/user.svg new file mode 100755 index 0000000..46fda6c --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/user.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/vector.svg b/assets/vendors/iconfonts/ti-icons/SVG/vector.svg new file mode 100755 index 0000000..05baf57 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/vector.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/video-camera.svg b/assets/vendors/iconfonts/ti-icons/SVG/video-camera.svg new file mode 100755 index 0000000..1d6b11e --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/video-camera.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/video-clapper.svg b/assets/vendors/iconfonts/ti-icons/SVG/video-clapper.svg new file mode 100755 index 0000000..bae42ed --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/video-clapper.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/view-grid.svg b/assets/vendors/iconfonts/ti-icons/SVG/view-grid.svg new file mode 100755 index 0000000..8ee76e6 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/view-grid.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/view-list-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/view-list-alt.svg new file mode 100755 index 0000000..c903e1d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/view-list-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/view-list.svg b/assets/vendors/iconfonts/ti-icons/SVG/view-list.svg new file mode 100755 index 0000000..9d6f3d6 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/view-list.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/vimeo-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/vimeo-alt.svg new file mode 100755 index 0000000..7f280e0 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/vimeo-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/vimeo.svg b/assets/vendors/iconfonts/ti-icons/SVG/vimeo.svg new file mode 100755 index 0000000..56905b2 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/vimeo.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/volume.svg b/assets/vendors/iconfonts/ti-icons/SVG/volume.svg new file mode 100755 index 0000000..3aeaa83 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/volume.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/wallet.svg b/assets/vendors/iconfonts/ti-icons/SVG/wallet.svg new file mode 100755 index 0000000..5deab2e --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/wallet.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/wand.svg b/assets/vendors/iconfonts/ti-icons/SVG/wand.svg new file mode 100755 index 0000000..0896248 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/wand.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/wheelchair.svg b/assets/vendors/iconfonts/ti-icons/SVG/wheelchair.svg new file mode 100755 index 0000000..428c1c6 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/wheelchair.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/widget-alt.svg b/assets/vendors/iconfonts/ti-icons/SVG/widget-alt.svg new file mode 100755 index 0000000..b900905 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/widget-alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/widget.svg b/assets/vendors/iconfonts/ti-icons/SVG/widget.svg new file mode 100755 index 0000000..a1e9349 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/widget.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/widgetized.svg b/assets/vendors/iconfonts/ti-icons/SVG/widgetized.svg new file mode 100755 index 0000000..80620e2 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/widgetized.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/window.svg b/assets/vendors/iconfonts/ti-icons/SVG/window.svg new file mode 100755 index 0000000..e0a2e8f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/window.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/wordpress.svg b/assets/vendors/iconfonts/ti-icons/SVG/wordpress.svg new file mode 100755 index 0000000..0deccee --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/wordpress.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/world.svg b/assets/vendors/iconfonts/ti-icons/SVG/world.svg new file mode 100755 index 0000000..ed73636 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/world.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/write.svg b/assets/vendors/iconfonts/ti-icons/SVG/write.svg new file mode 100755 index 0000000..addb6e2 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/write.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/yahoo.svg b/assets/vendors/iconfonts/ti-icons/SVG/yahoo.svg new file mode 100755 index 0000000..5f4e917 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/yahoo.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/youtube.svg b/assets/vendors/iconfonts/ti-icons/SVG/youtube.svg new file mode 100755 index 0000000..c911255 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/youtube.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/zip.svg b/assets/vendors/iconfonts/ti-icons/SVG/zip.svg new file mode 100755 index 0000000..27b9685 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/zip.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/zoom-in.svg b/assets/vendors/iconfonts/ti-icons/SVG/zoom-in.svg new file mode 100755 index 0000000..094cc4f --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/zoom-in.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/SVG/zoom-out.svg b/assets/vendors/iconfonts/ti-icons/SVG/zoom-out.svg new file mode 100755 index 0000000..1f811fb --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/SVG/zoom-out.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/vendors/iconfonts/ti-icons/Themify IconFonts 5-23-2014.json b/assets/vendors/iconfonts/ti-icons/Themify IconFonts 5-23-2014.json new file mode 100755 index 0000000..3a64202 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/Themify IconFonts 5-23-2014.json @@ -0,0 +1,6837 @@ +{ + "metadata": { + "name": "Themify IconFonts 5-23-2014", + "lastOpened": 1400873479818, + "created": 1398896502918 + }, + "iconSets": [ + { + "selection": [ + { + "order": 250, + "id": 99, + "prevSize": 32, + "code": 58880, + "name": "wand", + "tempChar": "", + "ligatures": "" + }, + { + "order": 251, + "id": 98, + "prevSize": 32, + "code": 58881, + "name": "volume", + "tempChar": "", + "ligatures": "" + }, + { + "order": 252, + "id": 97, + "prevSize": 32, + "code": 58882, + "name": "user", + "tempChar": "", + "ligatures": "" + }, + { + "order": 253, + "id": 96, + "prevSize": 32, + "code": 58883, + "name": "unlock", + "tempChar": "", + "ligatures": "" + }, + { + "order": 254, + "id": 95, + "prevSize": 32, + "code": 58884, + "name": "unlink", + "tempChar": "", + "ligatures": "" + }, + { + "order": 255, + "id": 94, + "prevSize": 32, + "code": 58885, + "name": "trash", + "tempChar": "", + "ligatures": "" + }, + { + "order": 256, + "id": 93, + "prevSize": 32, + "code": 58886, + "name": "thought", + "tempChar": "", + "ligatures": "" + }, + { + "order": 257, + "id": 92, + "prevSize": 32, + "code": 58887, + "name": "target", + "tempChar": "", + "ligatures": "" + }, + { + "order": 258, + "id": 91, + "prevSize": 32, + "code": 58888, + "name": "tag", + "tempChar": "", + "ligatures": "" + }, + { + "order": 259, + "id": 90, + "prevSize": 32, + "code": 58889, + "name": "tablet", + "tempChar": "", + "ligatures": "" + }, + { + "order": 260, + "id": 89, + "prevSize": 32, + "code": 58890, + "name": "star", + "tempChar": "", + "ligatures": "" + }, + { + "order": 261, + "id": 88, + "prevSize": 32, + "code": 58891, + "name": "spray", + "tempChar": "", + "ligatures": "" + }, + { + "order": 262, + "id": 87, + "prevSize": 32, + "code": 58892, + "name": "signal", + "tempChar": "", + "ligatures": "" + }, + { + "order": 263, + "id": 86, + "prevSize": 32, + "code": 58893, + "name": "shopping-cart", + "tempChar": "", + "ligatures": "" + }, + { + "order": 264, + "id": 85, + "prevSize": 32, + "code": 58894, + "name": "shopping-cart-full", + "tempChar": "", + "ligatures": "" + }, + { + "order": 265, + "id": 84, + "prevSize": 32, + "code": 58895, + "name": "settings", + "tempChar": "", + "ligatures": "" + }, + { + "order": 266, + "id": 83, + "prevSize": 32, + "code": 58896, + "name": "search", + "tempChar": "", + "ligatures": "" + }, + { + "order": 267, + "id": 82, + "prevSize": 32, + "code": 58897, + "name": "zoom-in", + "tempChar": "", + "ligatures": "" + }, + { + "order": 268, + "id": 81, + "prevSize": 32, + "code": 58898, + "name": "zoom-out", + "tempChar": "", + "ligatures": "" + }, + { + "order": 269, + "id": 80, + "prevSize": 32, + "code": 58899, + "name": "cut", + "tempChar": "", + "ligatures": "" + }, + { + "order": 270, + "id": 79, + "prevSize": 32, + "code": 58900, + "name": "ruler", + "tempChar": "", + "ligatures": "" + }, + { + "order": 271, + "id": 78, + "prevSize": 32, + "code": 58901, + "name": "ruler-pencil", + "tempChar": "", + "ligatures": "" + }, + { + "order": 272, + "id": 77, + "prevSize": 32, + "code": 58902, + "name": "ruler-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 273, + "id": 76, + "prevSize": 32, + "code": 58903, + "name": "bookmark", + "tempChar": "", + "ligatures": "" + }, + { + "order": 274, + "id": 75, + "prevSize": 32, + "code": 58904, + "name": "bookmark-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 275, + "id": 74, + "prevSize": 32, + "code": 58905, + "name": "reload", + "tempChar": "", + "ligatures": "" + }, + { + "order": 276, + "id": 73, + "prevSize": 32, + "code": 58906, + "name": "plus", + "tempChar": "", + "ligatures": "" + }, + { + "order": 277, + "id": 72, + "prevSize": 32, + "code": 58907, + "name": "pin", + "tempChar": "", + "ligatures": "" + }, + { + "order": 278, + "id": 71, + "prevSize": 32, + "code": 58908, + "name": "pencil", + "tempChar": "", + "ligatures": "" + }, + { + "order": 279, + "id": 70, + "prevSize": 32, + "code": 58909, + "name": "pencil-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 280, + "id": 69, + "prevSize": 32, + "code": 58910, + "name": "paint-roller", + "tempChar": "", + "ligatures": "" + }, + { + "order": 281, + "id": 68, + "prevSize": 32, + "code": 58911, + "name": "paint-bucket", + "tempChar": "", + "ligatures": "" + }, + { + "order": 282, + "id": 67, + "prevSize": 32, + "code": 58912, + "name": "na", + "tempChar": "", + "ligatures": "" + }, + { + "order": 283, + "id": 66, + "prevSize": 32, + "code": 58913, + "name": "mobile", + "tempChar": "", + "ligatures": "" + }, + { + "order": 284, + "id": 65, + "prevSize": 32, + "code": 58914, + "name": "minus", + "tempChar": "", + "ligatures": "" + }, + { + "order": 285, + "id": 64, + "prevSize": 32, + "code": 58915, + "name": "medall", + "tempChar": "", + "ligatures": "" + }, + { + "order": 286, + "id": 63, + "prevSize": 32, + "code": 58916, + "name": "medall-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 287, + "id": 62, + "prevSize": 32, + "code": 58917, + "name": "marker", + "tempChar": "", + "ligatures": "" + }, + { + "order": 288, + "id": 61, + "prevSize": 32, + "code": 58918, + "name": "marker-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 289, + "id": 60, + "prevSize": 32, + "code": 58919, + "name": "arrow-up", + "tempChar": "", + "ligatures": "" + }, + { + "order": 290, + "id": 59, + "prevSize": 32, + "code": 58920, + "name": "arrow-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 291, + "id": 58, + "prevSize": 32, + "code": 58921, + "name": "arrow-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 292, + "id": 57, + "prevSize": 32, + "code": 58922, + "name": "arrow-down", + "tempChar": "", + "ligatures": "" + }, + { + "order": 293, + "id": 56, + "prevSize": 32, + "code": 58923, + "name": "lock", + "tempChar": "", + "ligatures": "" + }, + { + "order": 294, + "id": 55, + "prevSize": 32, + "code": 58924, + "name": "location-arrow", + "tempChar": "", + "ligatures": "" + }, + { + "order": 295, + "id": 54, + "prevSize": 32, + "code": 58925, + "name": "link", + "tempChar": "", + "ligatures": "" + }, + { + "order": 296, + "id": 53, + "prevSize": 32, + "code": 58926, + "name": "layout", + "tempChar": "", + "ligatures": "" + }, + { + "order": 297, + "id": 52, + "prevSize": 32, + "code": 58927, + "name": "layers", + "tempChar": "", + "ligatures": "" + }, + { + "order": 298, + "id": 51, + "prevSize": 32, + "code": 58928, + "name": "layers-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 299, + "id": 50, + "prevSize": 32, + "code": 58929, + "name": "key", + "tempChar": "", + "ligatures": "" + }, + { + "order": 300, + "id": 49, + "prevSize": 32, + "code": 58930, + "name": "import", + "tempChar": "", + "ligatures": "" + }, + { + "order": 301, + "id": 48, + "prevSize": 32, + "code": 58931, + "name": "image", + "tempChar": "", + "ligatures": "" + }, + { + "order": 302, + "id": 47, + "prevSize": 32, + "code": 58932, + "name": "heart", + "tempChar": "", + "ligatures": "" + }, + { + "order": 303, + "id": 46, + "prevSize": 32, + "code": 58933, + "name": "heart-broken", + "tempChar": "", + "ligatures": "" + }, + { + "order": 304, + "id": 45, + "prevSize": 32, + "code": 58934, + "name": "hand-stop", + "tempChar": "", + "ligatures": "" + }, + { + "order": 305, + "id": 44, + "prevSize": 32, + "code": 58935, + "name": "hand-open", + "tempChar": "", + "ligatures": "" + }, + { + "order": 306, + "id": 43, + "prevSize": 32, + "code": 58936, + "name": "hand-drag", + "tempChar": "", + "ligatures": "" + }, + { + "order": 307, + "id": 42, + "prevSize": 32, + "code": 58937, + "name": "folder", + "tempChar": "", + "ligatures": "" + }, + { + "order": 308, + "id": 41, + "prevSize": 32, + "code": 58938, + "name": "flag", + "tempChar": "", + "ligatures": "" + }, + { + "order": 309, + "id": 40, + "prevSize": 32, + "code": 58939, + "name": "flag-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 310, + "id": 39, + "prevSize": 32, + "code": 58940, + "name": "flag-alt-2", + "tempChar": "", + "ligatures": "" + }, + { + "order": 311, + "id": 38, + "prevSize": 32, + "code": 58941, + "name": "eye", + "tempChar": "", + "ligatures": "" + }, + { + "order": 312, + "id": 37, + "prevSize": 32, + "code": 58942, + "name": "export", + "tempChar": "", + "ligatures": "" + }, + { + "order": 313, + "id": 36, + "prevSize": 32, + "code": 58943, + "name": "exchange-vertical", + "tempChar": "", + "ligatures": "" + }, + { + "order": 314, + "id": 35, + "prevSize": 32, + "code": 58944, + "name": "desktop", + "tempChar": "", + "ligatures": "" + }, + { + "order": 315, + "id": 34, + "prevSize": 32, + "code": 58945, + "name": "cup", + "tempChar": "", + "ligatures": "" + }, + { + "order": 316, + "id": 33, + "prevSize": 32, + "code": 58946, + "name": "crown", + "tempChar": "", + "ligatures": "" + }, + { + "order": 317, + "id": 32, + "prevSize": 32, + "code": 58947, + "name": "comments", + "tempChar": "", + "ligatures": "" + }, + { + "order": 318, + "id": 31, + "prevSize": 32, + "code": 58948, + "name": "comment", + "tempChar": "", + "ligatures": "" + }, + { + "order": 319, + "id": 30, + "prevSize": 32, + "code": 58949, + "name": "comment-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 320, + "id": 29, + "prevSize": 32, + "code": 58950, + "name": "close", + "tempChar": "", + "ligatures": "" + }, + { + "order": 321, + "id": 28, + "prevSize": 32, + "code": 58951, + "name": "clip", + "tempChar": "", + "ligatures": "" + }, + { + "order": 322, + "id": 27, + "prevSize": 32, + "code": 58952, + "name": "angle-up", + "tempChar": "", + "ligatures": "" + }, + { + "order": 323, + "id": 26, + "prevSize": 32, + "code": 58953, + "name": "angle-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 324, + "id": 25, + "prevSize": 32, + "code": 58954, + "name": "angle-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 325, + "id": 24, + "prevSize": 32, + "code": 58955, + "name": "angle-down", + "tempChar": "", + "ligatures": "" + }, + { + "order": 326, + "id": 23, + "prevSize": 32, + "code": 58956, + "name": "check", + "tempChar": "", + "ligatures": "" + }, + { + "order": 327, + "id": 22, + "prevSize": 32, + "code": 58957, + "name": "check-box", + "tempChar": "", + "ligatures": "" + }, + { + "order": 328, + "id": 21, + "prevSize": 32, + "code": 58958, + "name": "camera", + "tempChar": "", + "ligatures": "" + }, + { + "order": 329, + "id": 20, + "prevSize": 32, + "code": 58959, + "name": "announcement", + "tempChar": "", + "ligatures": "" + }, + { + "order": 330, + "id": 19, + "prevSize": 32, + "code": 58960, + "name": "brush", + "tempChar": "", + "ligatures": "" + }, + { + "order": 331, + "id": 18, + "prevSize": 32, + "code": 58961, + "name": "briefcase", + "tempChar": "", + "ligatures": "" + }, + { + "order": 332, + "id": 17, + "prevSize": 32, + "code": 58962, + "name": "bolt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 333, + "id": 16, + "prevSize": 32, + "code": 58963, + "name": "bolt-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 334, + "id": 15, + "prevSize": 32, + "code": 58964, + "name": "blackboard", + "tempChar": "", + "ligatures": "" + }, + { + "order": 335, + "id": 14, + "prevSize": 32, + "code": 58965, + "name": "bag", + "tempChar": "", + "ligatures": "" + }, + { + "order": 336, + "id": 13, + "prevSize": 32, + "code": 58966, + "name": "move", + "tempChar": "", + "ligatures": "" + }, + { + "order": 337, + "id": 12, + "prevSize": 32, + "code": 58967, + "name": "arrows-vertical", + "tempChar": "", + "ligatures": "" + }, + { + "order": 338, + "id": 11, + "prevSize": 32, + "code": 58968, + "name": "arrows-horizontal", + "tempChar": "", + "ligatures": "" + }, + { + "order": 339, + "id": 10, + "prevSize": 32, + "code": 58969, + "name": "fullscreen", + "tempChar": "", + "ligatures": "" + }, + { + "order": 340, + "id": 9, + "prevSize": 32, + "code": 58970, + "name": "arrow-top-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 341, + "id": 8, + "prevSize": 32, + "code": 58971, + "name": "arrow-top-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 342, + "id": 7, + "prevSize": 32, + "code": 58972, + "name": "arrow-circle-up", + "tempChar": "", + "ligatures": "" + }, + { + "order": 343, + "id": 6, + "prevSize": 32, + "code": 58973, + "name": "arrow-circle-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 344, + "id": 5, + "prevSize": 32, + "code": 58974, + "name": "arrow-circle-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 345, + "id": 4, + "prevSize": 32, + "code": 58975, + "name": "arrow-circle-down", + "tempChar": "", + "ligatures": "" + }, + { + "order": 346, + "id": 3, + "prevSize": 32, + "code": 58976, + "name": "angle-double-up", + "tempChar": "", + "ligatures": "" + }, + { + "order": 347, + "id": 2, + "prevSize": 32, + "code": 58977, + "name": "angle-double-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 348, + "id": 1, + "prevSize": 32, + "code": 58978, + "name": "angle-double-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 349, + "id": 0, + "prevSize": 32, + "code": 58979, + "name": "angle-double-down", + "tempChar": "", + "ligatures": "" + } + ], + "id": 3, + "metadata": { + "name": "Vol 1" + }, + "height": 1024, + "prevSize": 32, + "icons": [ + { + "id": 99, + "paths": [ + "M1024 301.176h-198.355l140.228 140.228-42.586 42.586-140.228-140.228v198.355h-60.235v-197.933l-641.265 642.409-42.586-42.586 641.687-642.831h-198.776v-60.235h198.355l-140.228-140.228 42.586-42.586 140.228 140.228v-198.355h60.235v198.596l137.758-137.999 42.586 42.586-137.517 137.758h198.114v60.235z" + ], + "grid": 0, + "tags": [ + "wand" + ] + }, + { + "id": 98, + "paths": [ + "M216.064 357.376c-57.585 0-93.365 30.118-93.365 78.667v130.168c0 24.998 9.698 48.429 27.287 66.138 17.589 17.649 41.080 27.407 66.078 27.407h104.99l342.498 342.618v-989.606l-339.125 344.606h-108.363zM603.317 159.864v697.043l-257.325-257.385h-129.988c-18.251 0-33.069-14.938-33.069-33.31v-130.168c0-5.481 0-18.432 33.129-18.432h133.542l253.711-257.747zM723.125 661.805v-60.235c33.491 0 60.717-27.226 60.717-60.717s-27.226-60.717-60.717-60.717v-60.235c66.68 0 120.952 54.272 120.952 120.952s-54.272 120.952-120.952 120.952zM965.512 541.335c0 132.879-108.062 240.941-240.941 240.941v-60.235c99.629 0 180.706-81.077 180.706-180.706s-81.077-180.706-180.706-180.706v-60.235c132.819 0 240.941 108.122 240.941 240.941z" + ], + "grid": 0, + "tags": [ + "volume" + ] + }, + { + "id": 97, + "paths": [ + "M1024 993.16c-3.795-161.852-167.334-301.116-392.794-337.86v-82.763c29.636-28.491 50.718-72.704 64.512-110.411 19.998-9.999 37.587-32.286 47.827-62.223 14.336-41.442 8.794-79.691-12.408-98.123 1.687-14.336 2.771-28.973 0.904-43.55-4.759-39.936 3.915-62.524 11.686-82.402 6.385-16.685 13.794-35.599 6.385-56.922-26.624-76.68-104.026-118.904-217.931-118.904l-15.902 0.301c-79.089 2.831-102.822 36.141-118.724 67.162-1.988 3.735-4.638 8.794-4.638 9.096-103.123 9.216-102.219 94.509-101.436 163.057l0.181 22.227c0 12.348 0.542 25.239 1.566 38.49-25.6 18.071-30.359 60.536-10.782 104.629 11.144 24.998 27.226 43.912 45.116 53.73 14.637 40.599 37.647 88.546 71.017 118.362v77.282c-228.774 35.479-394.782 175.104-398.577 338.824l-0.723 30.84h1025.385l-0.663-30.84zM63.488 963.765c23.612-126.133 172.213-230.159 368.76-253.229l26.564-3.132v-160.587l-13.011-9.035c-23.672-16.384-47.646-57.043-65.656-111.496l-5-16.926-17.709-3.072c-3.192-1.144-12.529-9.216-19.878-25.781-4.518-10.12-6.264-18.793-6.746-24.998l30.72 8.614-5.783-45.116c-2.53-19.878-3.855-39.213-3.855-57.224l-0.181-22.889c-0.904-80.776 3.072-98.424 46.562-102.34 32.828-2.891 45.297-27.046 52.766-41.502 9.035-17.589 16.866-32.708 67.464-34.575l13.673-0.241c49.935 0 137.276 10.18 160.768 77.222 0 2.59-3.132 10.662-5.421 16.565-8.734 22.528-21.926 56.561-15.3 111.616 1.446 11.324-0.422 25.54-2.409 40.659l-5.361 48.489 26.564-2.891c0.482 6.264-0.241 16.203-4.518 28.431-5.843 17.408-14.577 26.383-14.276 27.347h-21.685l-6.867 20.6c-17.047 51.381-39.153 90.172-60.777 106.496l-11.927 9.035v164.201l26.383 3.313c193.416 24.154 339.787 127.88 363.219 252.506h-897.084z" + ], + "grid": 0, + "tags": [ + "user" + ] + }, + { + "id": 96, + "paths": [ + "M572.235 660.902c0 22.046-12.469 40.478-30.118 50.959v129.747h-60.235v-129.687c-17.709-10.481-30.118-28.913-30.118-51.019 0-33.25 26.925-60.235 60.235-60.235 33.19 0 60.235 26.925 60.235 60.235zM903.168 509.591v426.466c0 49.815-40.538 90.353-90.353 90.353h-601.63c-49.815 0-90.353-40.538-90.353-90.353v-426.466c0-49.815 40.538-90.353 90.353-90.353h541.756v-119.748c0-132.879-108.062-240.941-240.941-240.941s-240.941 108.062-240.941 240.941h-60.235c0-166.069 135.108-301.176 301.176-301.176s301.176 135.108 301.176 301.176v119.748c49.634 0.241 89.992 40.659 89.992 90.353zM842.933 509.591c0-16.625-13.553-30.118-30.118-30.118h-601.63c-16.565 0-30.118 13.493-30.118 30.118v426.466c0 16.625 13.553 30.118 30.118 30.118h601.63c16.565 0 30.118-13.493 30.118-30.118v-426.466z" + ], + "grid": 0, + "tags": [ + "unlock" + ] + }, + { + "id": 95, + "paths": [ + "M128.542 309.549l84.45-155.829c65.416-99.268 196.488-126.193 293.406-61.982l-33.19 50.176c-69.21-45.719-162.816-26.504-208.655 42.707l-84.45 155.829c-47.044 71.56-27.949 165.165 41.382 210.884 68.849 45.297 145.167 32.949 199.56-32.407l46.261 38.611c-44.695 53.73-102.039 81.438-161.31 81.438-39.454 0-79.691-12.288-117.7-37.346-96.979-64.090-123.844-195.102-59.753-292.081zM243.411 483.93l-7.831 7.77 42.466 42.707 7.891-7.831c58.729-58.729 154.263-58.729 212.932 0s58.729 154.263 0 212.932l-182.091 182.152c-58.729 58.729-154.263 58.729-212.932 0s-58.729-154.263 0-212.932l63.729-63.789-42.586-42.586-63.729 63.849c-82.161 82.161-82.161 215.944 0 298.104 41.141 41.141 95.051 61.621 149.082 61.621s107.942-20.54 149.082-61.621l182.091-182.152c82.161-82.161 82.161-215.944 0-298.104-82.342-82.342-216.064-82.161-298.104-0.12zM660.36 421.647h245.399v-60.235h-245.399v60.235zM632.169 502.784l117.519 67.885 30.118-52.104-117.519-67.885-30.118 52.104zM647.529 69.632l-95.172 164.864 52.104 30.118 95.172-164.804-52.104-30.178zM955.753 164.141l-30.118-52.104-300.695 173.598 30.118 52.104 300.695-173.598z" + ], + "grid": 0, + "tags": [ + "unlink" + ] + }, + { + "id": 94, + "paths": [ + "M658.673 121.434c-13.131-52.344-60.175-91.317-116.555-91.317-56.139 0-103.002 38.731-116.314 91.317h-214.98v60.235h662.588v-60.235h-214.739zM542.118 90.353c23.010 0 42.466 13.312 52.706 31.081h-104.388c10.36-18.251 29.214-31.081 51.682-31.081zM783.059 240.941h60.235v633.434c0 49.815-40.538 90.353-90.353 90.353h-421.647c-49.815 0-90.353-40.538-90.353-90.353v-633.434h60.235v633.434c0 16.565 13.493 30.118 30.118 30.118h421.647c16.625 0 30.118-13.553 30.118-30.118v-633.434zM481.882 301.176v481.882h-60.235v-481.882h60.235zM662.588 301.176v481.882h-60.235v-481.882h60.235z" + ], + "grid": 0, + "tags": [ + "trash" + ] + }, + { + "id": 93, + "paths": [ + "M692.706 609.34c182.694 0 331.294-136.674 331.294-304.67s-148.6-304.67-331.294-304.67c-115.17 0-222.449 56.501-282.142 146.432-42.466-24.034-90.112-36.623-139.505-36.623-149.444 0-271.059 112.038-271.059 249.796 0 137.698 121.615 249.736 271.059 249.736 11.204 0 22.588-0.783 34.515-2.229 39.273 35.418 91.678 55.477 146.191 55.477 60.356 0 116.194-23.311 156.13-64.452 29.395 7.529 57.284 11.204 84.811 11.204zM586.993 529.167l-12.77 16.143c-28.371 35.72-74.15 57.043-122.458 57.043-43.61 0-85.173-17.468-114.146-48.008l-11.083-11.625-15.902 2.771c-12.89 2.229-25.961 3.614-39.575 3.614-116.254 0-210.824-84.992-210.824-189.44 0-104.508 94.569-189.56 210.824-189.56 47.706 0 93.304 14.818 131.855 42.948l28.431 20.661 16.083-31.322c44.454-86.317 140.71-142.155 245.278-142.155 149.444 0 271.059 109.628 271.059 244.495 0 134.746-121.615 244.435-271.059 244.435-27.287 0-55.477-4.518-86.076-13.914l-19.637-6.084zM692.706 632.471c-66.44 0-120.471 54.031-120.471 120.471s54.031 120.471 120.471 120.471 120.471-54.031 120.471-120.471-54.031-120.471-120.471-120.471zM692.706 813.176c-33.19 0-60.235-26.985-60.235-60.235s27.046-60.235 60.235-60.235 60.235 26.985 60.235 60.235-27.046 60.235-60.235 60.235zM918.588 843.294c-41.502 0-75.294 33.792-75.294 75.294s33.792 75.294 75.294 75.294 75.294-33.792 75.294-75.294-33.792-75.294-75.294-75.294zM903.529 918.588c0-8.312 6.746-15.059 15.059-15.059s15.059 6.746 15.059 15.059c0 16.565-30.118 16.565-30.118 0z" + ], + "grid": 0, + "tags": [ + "thought" + ] + }, + { + "id": 92, + "paths": [ + "M1025.205 481.882h-123.181c-14.758-192.392-169.020-346.052-361.653-360.026v-124.205h-60.235v124.386c-191.066 15.541-343.462 168.599-358.159 359.846h-123.181v60.235h123.181c14.697 191.247 167.093 344.305 358.099 359.846v122.037h60.235v-121.856c192.632-13.914 346.895-167.575 361.653-360.026h123.181v-60.235zM540.371 841.909v-119.085h-60.235v118.904c-157.877-15.179-283.588-141.553-297.924-299.61h117.76v-60.235h-117.76c14.336-158.057 140.047-284.431 297.924-299.61v116.555h60.235v-116.736c159.443 13.673 286.961 140.529 301.417 299.791h-117.76v60.235h117.76c-14.456 159.262-141.975 286.118-301.417 299.791z" + ], + "grid": 0, + "tags": [ + "target" + ] + }, + { + "id": 91, + "paths": [ + "M539.287 60.717l-238.953 173.598v731.256l240.098-168.297 243.411 167.755v-730.955l-244.555-173.357zM723.667 850.342l-183.416-126.494-179.622 125.952v-584.824l179.2-130.168 183.898 130.409v585.126zM436.947 361.472c0 58.127 47.285 105.412 105.412 105.412s105.412-47.285 105.412-105.412-47.285-105.412-105.412-105.412-105.412 47.285-105.412 105.412zM542.359 316.296c24.877 0 45.176 20.299 45.176 45.176s-20.299 45.176-45.176 45.176-45.176-20.299-45.176-45.176 20.299-45.176 45.176-45.176z" + ], + "grid": 0, + "tags": [ + "tag" + ] + }, + { + "id": 90, + "paths": [ + "M557.176 873.412c0 24.998-20.179 45.176-45.176 45.176s-45.176-20.179-45.176-45.176 20.179-45.176 45.176-45.176 45.176 20.179 45.176 45.176zM963.765 90.353v843.294c0 49.815-37.647 90.353-83.848 90.353h-735.834c-46.2 0-83.848-40.538-83.848-90.353v-843.294c0-49.815 37.647-90.353 83.848-90.353h735.895c46.14 0 83.787 40.538 83.787 90.353zM903.529 90.353c0-16.324-10.782-30.118-23.612-30.118h-735.834c-12.83 0-23.612 13.794-23.612 30.118v843.294c0 16.324 10.782 30.118 23.612 30.118h735.895c12.77 0 23.552-13.794 23.552-30.118v-843.294zM180.706 120.471h662.588v662.588h-662.588v-662.588zM240.941 722.824h542.118v-542.118h-542.118v542.118z" + ], + "grid": 0, + "tags": [ + "tablet" + ] + }, + { + "id": 89, + "paths": [ + "M1002.737 422.671h-374.965l-115.772-356.593-115.832 356.593h-374.904l303.285 220.341-115.772 356.593 303.224-220.401 303.285 220.401-115.772-356.593 303.224-220.341zM700.717 841.909l-188.717-137.216-188.717 137.156 72.102-221.967-188.717-136.975h233.291l72.041-221.907 72.041 221.907h233.291l-188.717 137.035 72.102 221.967z" + ], + "grid": 0, + "tags": [ + "star" + ] + }, + { + "id": 88, + "paths": [ + "M391.529 180.706c-85.896 0-165.165 46.863-207.992 120.471h-63.066v632.471c0 49.815 40.538 90.353 90.353 90.353h361.412c49.815 0 90.353-40.538 90.353-90.353v-632.471h-63.066c-42.827-73.547-122.217-120.471-207.992-120.471zM391.529 240.941c51.742 0 100.713 22.648 134.566 60.235h-269.071c33.792-37.587 82.703-60.235 134.505-60.235zM602.353 933.647c0 16.565-13.493 30.118-30.118 30.118h-361.412c-16.625 0-30.118-13.553-30.118-30.118v-572.235h421.647v572.235zM481.882 0h-180.706v180.706h180.706v-180.706zM421.647 120.471h-60.235v-60.235h60.235v60.235zM719.511 91.016l188.898 31.202-9.818 59.392-361.412-59.633 5.12-30.961-5.12-30.961 361.412-59.633 9.818 59.392-188.898 31.202z" + ], + "grid": 0, + "tags": [ + "spray" + ] + }, + { + "id": 87, + "paths": [ + "M692.706 240.941c0-99.629-81.077-180.706-180.706-180.706s-180.706 81.077-180.706 180.706c0 89.329 65.295 163.238 150.588 177.634v484.954h-120.471v60.235h301.176v-60.235h-120.471v-484.954c85.293-14.396 150.588-88.305 150.588-177.634zM391.529 240.941c0-66.44 54.031-120.471 120.471-120.471s120.471 54.031 120.471 120.471-54.031 120.471-120.471 120.471-120.471-54.031-120.471-120.471zM271.3 132.036c-22.769 27.708-34.756 60.476-34.756 94.81s11.987 67.102 34.756 94.81l-46.622 38.31c-31.624-38.611-48.369-84.631-48.369-133.060s16.745-94.509 48.369-133.060l46.622 38.189zM120.471 226.906c0 64.994 23.311 126.253 67.403 176.971l-45.417 39.514c-53.067-60.958-82.221-137.939-82.221-216.486s29.154-155.528 82.221-216.546l45.417 39.514c-44.092 50.778-67.403 112.038-67.403 177.032zM847.691 226.906c0 48.489-16.745 94.449-48.429 133.060l-46.562-38.249c22.769-27.708 34.756-60.476 34.756-94.81s-11.987-67.102-34.756-94.81l46.562-38.249c31.684 38.551 48.429 84.57 48.429 133.060zM963.765 226.906c0 78.607-29.154 155.528-82.221 216.546l-45.417-39.514c44.092-50.839 67.403-112.038 67.403-177.032s-23.311-126.253-67.403-176.971l45.417-39.514c53.067 60.958 82.221 137.879 82.221 216.486z" + ], + "grid": 0, + "tags": [ + "signal" + ] + }, + { + "id": 86, + "paths": [ + "M165.647 752.941c-58.127 0-105.412 47.285-105.412 105.412s47.285 105.412 105.412 105.412 105.412-47.285 105.412-105.412-47.285-105.412-105.412-105.412zM165.647 903.529c-24.937 0-45.176-20.299-45.176-45.176s20.239-45.176 45.176-45.176 45.176 20.299 45.176 45.176-20.239 45.176-45.176 45.176zM677.647 752.941c-58.127 0-105.412 47.285-105.412 105.412s47.285 105.412 105.412 105.412 105.412-47.285 105.412-105.412-47.285-105.412-105.412-105.412zM677.647 903.529c-24.937 0-45.176-20.299-45.176-45.176s20.239-45.176 45.176-45.176 45.176 20.299 45.176 45.176-20.239 45.176-45.176 45.176zM805.406 120.471l-18.191 120.471h-791.672l67.343 484.051h717.583l62.524-449.536 14.216-94.75h166.792v-60.235h-218.594zM778.601 301.176l-8.373 60.235h-697.163l-8.373-60.235h713.909zM115.29 664.757l-33.792-243.11h680.358l-33.792 243.11h-612.774z" + ], + "grid": 0, + "tags": [ + "shopping-cart" + ] + }, + { + "id": 85, + "paths": [ + "M165.647 752.941c-58.127 0-105.412 47.285-105.412 105.412s47.285 105.412 105.412 105.412 105.412-47.285 105.412-105.412-47.285-105.412-105.412-105.412zM165.647 903.529c-24.877 0-45.176-20.299-45.176-45.176s20.299-45.176 45.176-45.176 45.176 20.299 45.176 45.176-20.299 45.176-45.176 45.176zM677.647 752.941c-58.127 0-105.412 47.285-105.412 105.412s47.285 105.412 105.412 105.412 105.412-47.285 105.412-105.412-47.285-105.412-105.412-105.412zM677.647 903.529c-24.877 0-45.176-20.299-45.176-45.176s20.299-45.176 45.176-45.176 45.176 20.299 45.176 45.176-20.299 45.176-45.176 45.176zM805.346 120.471l-18.131 120.471h-791.672l67.283 484.051h717.643l62.825-451.765 13.914-92.521h166.792v-60.235h-218.654zM728.004 664.757h-612.713l-50.598-363.58h713.909l-50.598 363.58zM662.588 602.353h-481.882v-239.074h60.235v178.839h361.412v-178.899h60.235v239.134zM240.941 178.839h-60.235v-118.603h481.882v114.808h-60.235v-54.573h-361.412v58.368z" + ], + "grid": 0, + "tags": [ + "shopping-cart-full" + ] + }, + { + "id": 84, + "paths": [ + "M512 359.725c-83.004 0-150.588 67.584-150.588 150.588s67.584 150.588 150.588 150.588 150.588-67.584 150.588-150.588-67.584-150.588-150.588-150.588zM512 600.666c-49.815 0-90.353-40.538-90.353-90.353s40.538-90.353 90.353-90.353 90.353 40.538 90.353 90.353-40.538 90.353-90.353 90.353zM1020.386 568.983c2.229-19.336 3.614-38.852 3.614-58.669s-1.385-39.334-3.614-58.669l-155.889-46.863c-7.168-24.215-16.745-47.405-28.552-69.21l77.041-143.179c-24.456-30.72-52.344-58.609-83.125-83.125l-143.179 77.101c-21.865-11.806-45.056-21.323-69.271-28.552l-46.743-155.889c-19.275-2.229-38.792-3.614-58.669-3.614s-39.394 1.385-58.669 3.614l-46.743 155.889c-24.275 7.168-47.526 16.745-69.271 28.612l-143.179-77.101c-30.78 24.456-58.669 52.344-83.064 83.125l77.041 143.059c-11.806 21.805-21.323 45.056-28.552 69.271l-155.949 46.863c-2.229 19.275-3.614 38.792-3.614 58.669s1.385 39.394 3.614 58.669l155.889 46.743c7.228 24.275 16.745 47.526 28.552 69.331l-77.041 143.119c24.456 30.78 52.344 58.669 83.125 83.125l143.179-77.041c21.805 11.806 45.056 21.323 69.271 28.552l46.743 155.889c19.336 2.229 38.852 3.614 58.669 3.614s39.394-1.385 58.669-3.614l46.743-155.889c24.215-7.228 47.465-16.745 69.271-28.552l143.119 77.041c30.78-24.516 58.669-52.405 83.125-83.185l-76.981-143.119c11.806-21.805 21.323-45.056 28.552-69.271l155.889-46.743zM816.068 567.356l-9.276 31.202c-6.024 20.299-14.035 39.755-23.853 57.766l-15.42 28.612 15.36 28.612 57.344 106.616c-5.963 6.325-12.107 12.469-18.432 18.432l-135.108-72.824-28.612 15.42c-18.131 9.818-37.587 17.769-57.826 23.853l-31.202 9.276-9.336 31.202-34.876 116.375c-4.337 0.12-8.614 0.181-12.83 0.181s-8.493-0.060-12.83-0.181l-34.876-116.375-9.336-31.202-31.202-9.276c-20.239-6.024-39.695-14.035-57.766-23.853l-28.612-15.42-135.228 72.704c-6.264-5.963-12.469-12.107-18.432-18.432l72.764-135.168-15.42-28.612c-9.758-18.071-17.769-37.527-23.853-57.826l-9.216-31.142-147.516-44.213c-0.181-4.337-0.241-8.614-0.241-12.77 0-4.216 0.060-8.493 0.241-12.83l147.456-44.213 9.276-31.202c6.024-20.299 14.035-39.755 23.853-57.766l15.42-28.612-72.764-135.228c5.963-6.264 12.107-12.469 18.372-18.432l135.349 72.885 28.672-15.601c17.89-9.758 37.286-17.769 57.585-23.793l31.202-9.276 9.336-31.202 34.876-116.375c4.397-0.060 8.674-0.12 12.89-0.12s8.493 0.060 12.83 0.181l34.876 116.375 9.336 31.202 31.202 9.276c20.179 6.024 39.695 14.035 57.826 23.853l28.612 15.36 135.168-72.764c6.264 5.963 12.469 12.107 18.432 18.432l-57.404 106.616-15.36 28.612 15.48 28.612c9.818 18.071 17.769 37.466 23.793 57.645l9.276 31.202 31.202 9.336 116.375 34.997c0.060 4.337 0.12 8.614 0.12 12.83s-0.060 8.493-0.241 12.83l-147.456 44.213z" + ], + "grid": 0, + "tags": [ + "settings" + ] + }, + { + "id": 83, + "paths": [ + "M1000.147 955.814l-311.597-311.597c58.729-68.488 94.509-157.274 94.509-254.374 0-215.883-175.646-391.529-391.529-391.529-104.568 0-202.933 40.719-276.962 114.628-73.909 73.969-114.628 172.333-114.568 276.902 0 215.883 175.646 391.529 391.529 391.529 97.099 0 185.946-35.78 254.434-94.509l311.597 311.597 42.586-42.647zM391.529 721.137c-182.633 0-331.294-148.6-331.294-331.294-0.060-88.546 34.394-171.731 96.979-234.255 62.524-62.584 145.769-97.039 234.315-97.039 182.633 0 331.294 148.6 331.294 331.294 0 182.633-148.661 331.294-331.294 331.294z" + ], + "grid": 0, + "tags": [ + "search" + ] + }, + { + "id": 82, + "paths": [ + "M1000.147 957.5l-311.597-311.597c58.729-68.488 94.509-157.214 94.509-254.374 0-215.883-175.646-391.529-391.529-391.529-104.629 0-202.933 40.719-276.902 114.688-73.969 73.909-114.628 172.273-114.628 276.841 0 215.883 175.646 391.529 391.529 391.529 97.099 0 185.886-35.78 254.434-94.509l311.597 311.597 42.586-42.647zM391.529 722.824c-182.694 0-331.294-148.6-331.294-331.294 0-88.546 34.394-171.731 96.979-234.315 62.584-62.524 145.769-96.979 234.315-96.979 182.694 0 331.294 148.6 331.294 331.294 0 182.694-148.6 331.294-331.294 331.294zM421.647 361.412h120.471v60.235h-120.471v120.471h-60.235v-120.471h-120.471v-60.235h120.471v-120.471h60.235v120.471z" + ], + "grid": 0, + "tags": [ + "zoom-in" + ] + }, + { + "id": 81, + "paths": [ + "M1000.147 955.814l-311.597-311.597c58.729-68.488 94.509-157.274 94.509-254.374 0-215.883-175.646-391.529-391.529-391.529-104.568 0-202.933 40.719-276.962 114.628-73.909 73.969-114.628 172.333-114.568 276.902 0 215.883 175.646 391.529 391.529 391.529 97.099 0 185.946-35.78 254.434-94.509l311.597 311.597 42.586-42.647zM391.529 721.137c-182.633 0-331.294-148.6-331.294-331.294-0.060-88.546 34.394-171.731 96.979-234.255 62.524-62.584 145.769-97.039 234.315-97.039 182.633 0 331.294 148.6 331.294 331.294 0 182.633-148.661 331.294-331.294 331.294zM240.941 359.725h301.176v60.235h-301.176v-60.235z" + ], + "grid": 0, + "tags": [ + "zoom-out" + ] + }, + { + "id": 80, + "paths": [ + "M783.059 662.588c-32.828 0-63.187 9.457-89.751 24.817l-139.866-147.817 377.073-398.396-43.791-41.442-374.724 395.987-374.844-395.987-43.731 41.442 377.073 398.396-139.866 147.757c-26.504-15.3-56.922-24.757-89.69-24.757-99.629 0-180.706 81.077-180.706 180.706s81.077 180.706 180.706 180.706 180.706-81.077 180.706-180.706c0-44.996-17.167-85.775-44.454-117.399l134.807-142.456 134.807 142.456c-27.347 31.684-44.454 72.403-44.454 117.399 0 99.629 81.077 180.706 180.706 180.706s180.706-81.077 180.706-180.706-81.077-180.706-180.706-180.706zM240.941 963.765c-66.44 0-120.471-54.031-120.471-120.471s54.031-120.471 120.471-120.471 120.471 54.031 120.471 120.471-54.031 120.471-120.471 120.471zM783.059 963.765c-66.44 0-120.471-54.031-120.471-120.471s54.031-120.471 120.471-120.471 120.471 54.031 120.471 120.471-54.031 120.471-120.471 120.471z" + ], + "grid": 0, + "tags": [ + "cut" + ] + }, + { + "id": 79, + "paths": [ + "M301.176 0v1024h421.647v-1024h-421.647zM662.588 963.765h-301.176v-59.272h120.471v-60.235h-120.471v-61.199h60.235v-60.235h-60.235v-60.235h120.471v-60.235h-120.471v-59.272h60.235v-60.235h-60.235v-60.235h120.471v-60.235h-120.471v-61.199h60.235v-60.235h-60.235v-60.235h120.471v-60.235h-120.471v-60.235h301.176v903.529z" + ], + "grid": 0, + "tags": [ + "ruler" + ] + }, + { + "id": 78, + "paths": [ + "M270.577 0h-119.507c-49.815 0-90.353 40.538-90.353 90.353v641.928l151.853 298.526 148.42-298.707v-641.747c-0.060-49.815-40.599-90.353-90.413-90.353zM151.070 60.235h119.507c16.565 0 30.118 13.553 30.118 30.118v61.38h-179.742v-61.38c0-16.565 13.493-30.118 30.118-30.118zM120.952 274.071v-62.103h179.742v62.103h-179.742zM237.809 844.559h-52.405l-64.452-126.735v-383.518h60.235v390.385h60.235v-390.385h59.272v383.699l-62.886 126.554zM481.882 0v1024h421.647v-1024h-421.647zM843.294 963.765h-301.176v-59.272h120.471v-60.235h-120.471v-61.199h60.235v-60.235h-60.235v-60.235h120.471v-60.235h-120.471v-59.272h60.235v-60.235h-60.235v-60.235h120.471v-60.235h-120.471v-61.199h60.235v-60.235h-60.235v-60.235h120.471v-60.235h-120.471v-60.235h301.176v903.529z" + ], + "grid": 0, + "tags": [ + "ruler-pencil" + ] + }, + { + "id": 77, + "paths": [ + "M724.992 0.904l-724.088 724.088 298.165 298.104 724.028-724.028-298.104-298.165zM86.076 724.992l41.924-41.924 85.173 85.173 42.586-42.586-85.173-85.173 43.309-43.309 42.586 42.586 42.586-42.586-42.586-42.586 42.586-42.586 85.173 85.173 42.586-42.586-85.173-85.173 41.924-41.924 42.586 42.586 42.586-42.586-42.586-42.586 42.586-42.586 85.173 85.173 42.586-42.586-85.173-85.173 43.249-43.249 42.586 42.586 42.586-42.586-42.586-42.586 42.586-42.586 85.233 85.173 42.586-42.586-85.233-85.173 42.647-42.647 212.932 212.992-638.856 638.856-212.992-212.932z" + ], + "grid": 0, + "tags": [ + "ruler-alt" + ] + }, + { + "id": 76, + "paths": [ + "M214.558 60.235v931.177l282.263-196.969 286.238 196.367v-930.575h-568.501zM722.824 876.484l-226.244-155.287-221.726 154.684v-755.411h447.97v756.013z" + ], + "grid": 0, + "tags": [ + "bookmark" + ] + }, + { + "id": 75, + "paths": [ + "M603.979 606.81v-606.81h-364.664v606.991l181.971-123.663 182.694 123.482zM299.55 493.207v-432.971h244.254v433.152l-122.699-82.884-121.555 82.703zM963.765 60.657v903.108h-903.529v-903.108h118.904v60.235h-58.669v782.637h783.059v-782.637h-241.242v-60.235h301.478z" + ], + "grid": 0, + "tags": [ + "bookmark-alt" + ] + }, + { + "id": 74, + "paths": [ + "M361.412 481.882h-361.412v-361.412h60.235v247.507c61.018-192.331 243.11-330.33 451.765-330.33 211.185 0 398.818 142.155 456.222 345.69l-58.007 16.324c-50.116-177.694-213.896-301.839-398.216-301.839-194.319 0.060-362.376 137.096-404.058 323.825h253.47v60.235zM662.588 542.118v60.235h253.47c-41.743 186.79-209.559 323.765-404.058 323.765-184.44 0-348.16-124.145-398.216-301.839l-58.007 16.324c57.344 203.535 244.977 345.69 456.222 345.69 208.354 0 390.024-137.336 451.765-330.21v247.447h60.235v-361.412h-361.412z" + ], + "grid": 0, + "tags": [ + "reload" + ] + }, + { + "id": 73, + "paths": [ + "M963.765 542.118h-421.647v421.647h-60.235v-421.647h-421.647v-60.235h421.647v-421.647h60.235v421.647h421.647v60.235z" + ], + "grid": 0, + "tags": [ + "plus" + ] + }, + { + "id": 72, + "paths": [ + "M722.824 271.059c0-116.254-94.569-210.824-210.824-210.824s-210.824 94.569-210.824 210.824c0 105.111 77.583 191.849 178.417 207.511v485.195h60.235v-484.713c103.002-13.734 182.995-101.316 182.995-207.992zM512 421.647c-83.064 0-150.588-67.524-150.588-150.588s67.524-150.588 150.588-150.588 150.588 67.524 150.588 150.588-67.524 150.588-150.588 150.588zM602.353 301.176h-60.235c0-33.25-26.985-60.235-60.235-60.235v-60.235c66.44 0 120.471 54.031 120.471 120.471z" + ], + "grid": 0, + "tags": [ + "pin" + ] + }, + { + "id": 71, + "paths": [ + "M935.394 172.092l-84.51-84.57c-34.033-34.093-93.666-34.093-127.819 0l-545.551 545.611-103.725 318.524 316.115-106.315 545.431-545.491c35.298-35.177 35.298-92.521 0.060-127.759zM186.368 800.768l38.852-119.206 116.495 116.555-118.242 39.755-37.105-37.105zM262.325 633.555l330.872-330.872 127.157 127.096-330.933 330.933-127.096-127.157zM635.784 260.036l43.912-43.912 127.157 127.096-43.912 43.912-127.157-127.096zM892.808 257.265l-43.369 43.369-127.157-127.096 43.369-43.43c11.384-11.384 31.202-11.384 42.586 0l84.51 84.57c11.806 11.806 11.806 30.84 0.060 42.586z" + ], + "grid": 0, + "tags": [ + "pencil" + ] + }, + { + "id": 70, + "paths": [ + "M993.822 111.014l-84.51-84.51c-34.093-34.093-93.666-34.093-127.819 0l-453.933 453.933-103.725 318.464 316.175-106.315 453.813-453.813c17.047-17.047 26.443-39.755 26.443-63.91s-9.397-46.803-26.443-63.849zM336.354 648.011l38.43-117.88 115.652 115.592-116.977 39.334-37.105-37.045zM411.528 481.641l240.098-240.098 127.096 127.096-240.098 240.098-127.096-127.096zM694.212 198.957l43.912-43.912 127.096 127.096-43.912 43.912-127.096-127.096zM951.236 196.186l-43.369 43.43-127.096-127.096 43.369-43.43c11.445-11.384 31.262-11.384 42.586 0l84.51 84.51c5.662 5.722 8.794 13.252 8.794 21.323s-3.132 15.541-8.794 21.263zM903.529 451.765h60.235v572.235h-963.765v-903.529h451.765v60.235h-391.529v783.059h843.294v-512z" + ], + "grid": 0, + "tags": [ + "pencil-alt" + ] + }, + { + "id": 69, + "paths": [ + "M903.529 120.471v-120.471h-783.059v120.471h-31.081c-49.272 0-89.389 40.659-89.389 90.654v180.104c0 49.995 40.117 90.654 89.389 90.654h362.857c16.565 0 30.118 13.553 30.118 30.118v90.353h-60.717v421.647h180.706v-421.647h-59.753v-90.353c0-49.815-40.538-90.353-90.353-90.353h-362.857c-16.023 0-29.154-13.673-29.154-30.419v-180.104c0-16.745 13.131-30.419 29.154-30.419h31.081v180.706h783.059v-180.706h60.235v-60.235h-60.235zM542.118 963.765h-60.235v-301.176h60.235v301.176zM843.294 301.176h-662.588v-240.941h662.588v240.941z" + ], + "grid": 0, + "tags": [ + "paint-roller" + ] + }, + { + "id": 68, + "paths": [ + "M1005.99 591.39l-534.167-537.54-8.072 8.011c-40.237-39.816-93.485-61.801-150.167-61.862 0 0 0 0-0.060 0-57.103 0-110.893 22.287-151.311 62.705-40.478 40.418-62.765 94.148-62.765 151.432 0 56.681 22.046 109.929 61.862 150.167l-133 133.060c-18.251 18.312-28.311 42.526-28.311 68.247 0 25.841 9.999 49.995 28.13 68.066l289.792 292.683c18.191 18.191 42.406 28.25 68.126 28.25 25.841 0 50.056-10.12 68.247-28.371l334.788-334.788 216.907-0.060zM159.684 214.076c0-41.080 16.023-79.691 45.116-108.785 29.094-29.033 67.644-45.056 108.725-45.056 0.060 0 0.060 0 0.060 0 40.599 0 78.667 15.782 107.58 44.213l-217.208 217.269c-28.491-28.973-44.273-67.042-44.273-107.64zM411.588 883.712c-6.807 6.807-15.962 10.662-25.6 10.662s-18.733-3.735-25.419-10.481l-219.016-221.304h491.159l-221.124 221.124zM692.947 602.353h-611.087l-11.023-11.204c-6.867-6.807-10.601-15.842-10.601-25.48 0-9.698 3.795-18.793 10.662-25.72l400.806-400.806 389.602 392.072-97.22 0.060-71.138 71.078zM944.971 720.354l-24.516-36.382-25.178 36.021c-19.215 27.528-82.101 121.133-82.101 168.538 0 58.127 47.285 105.412 105.412 105.412s105.412-47.345 105.412-105.472c0-47.104-60.476-140.589-79.029-168.117zM918.588 933.647c-24.877 0-45.176-20.299-45.176-45.176 0-14.456 21.022-55.416 46.14-95.834 24.094 40.358 44.213 81.257 44.213 95.834 0 24.877-20.299 45.176-45.176 45.176z" + ], + "grid": 0, + "tags": [ + "paint-bucket" + ] + }, + { + "id": 67, + "paths": [ + "M512 30.118c-265.698 0-481.882 216.184-481.882 481.882s216.184 481.882 481.882 481.882 481.882-216.184 481.882-481.882-216.184-481.882-481.882-481.882zM512 90.353c105.412 0 201.668 39.153 275.697 103.364l-593.92 593.98c-64.271-73.969-103.424-170.285-103.424-275.697 0-232.448 189.139-421.647 421.647-421.647zM512 933.647c-105.412 0-201.668-39.153-275.697-103.364l593.92-593.98c64.271 73.969 103.424 170.285 103.424 275.697 0 232.448-189.139 421.647-421.647 421.647z" + ], + "grid": 0, + "tags": [ + "na" + ] + }, + { + "id": 66, + "paths": [ + "M752.941 0h-481.882c-49.815 0-90.353 40.538-90.353 90.353v843.294c0 49.815 40.538 90.353 90.353 90.353h481.882c49.815 0 90.353-40.538 90.353-90.353v-843.294c0-49.815-40.538-90.353-90.353-90.353zM271.059 60.235h481.882c16.625 0 30.118 13.493 30.118 30.118v90.353h-542.118v-90.353c0-16.625 13.493-30.118 30.118-30.118zM783.059 240.941v481.882h-542.118v-481.882h542.118zM752.941 963.765h-481.882c-16.625 0-30.118-13.493-30.118-30.118v-150.588h542.118v150.588c0 16.625-13.493 30.118-30.118 30.118zM542.118 873.412c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118 13.493-30.118 30.118-30.118 30.118 13.493 30.118 30.118z" + ], + "grid": 0, + "tags": [ + "mobile" + ] + }, + { + "id": 65, + "paths": [ + "M903.529 481.882v60.235h-783.059v-60.235h783.059z" + ], + "grid": 0, + "tags": [ + "minus" + ] + }, + { + "id": 64, + "paths": [ + "M512 0c-166.069 0-301.176 135.108-301.176 301.176 0 82.824 33.431 160.166 94.088 217.811 5.12 4.939 10.842 9.276 16.625 13.613l6.204 4.698c10.782 8.493 22.227 15.48 33.672 22.347v434.236l149.323-114.507 151.853 114.507v-434.236c11.445-6.867 22.95-13.914 33.732-22.408l6.204-4.638c5.783-4.337 11.445-8.674 16.625-13.613 60.597-57.645 94.027-134.987 94.027-217.811 0-166.069-135.108-301.176-301.176-301.176zM602.353 872.99l-91.919-69.331-88.787 68.126v-254.494c29.033 10.059 59.392 15.179 90.353 15.179s61.32-5.12 90.353-15.179v255.699zM677.587 475.377c-3.433 3.313-7.288 6.084-11.144 8.855l-7.409 5.662c-87.040 68.367-207.089 68.307-294.008 0.060l-7.469-5.722c-3.855-2.831-7.71-5.602-11.144-8.855-48.61-46.2-75.354-108.002-75.354-174.2 0-132.879 108.062-240.941 240.941-240.941s240.941 108.062 240.941 240.941c0 66.199-26.744 128-75.354 174.2zM659.576 211.667l11.083 59.151-109.809 20.54 69.030 116.676-51.863 30.72-65.476-110.592-65.656 110.532-51.742-30.72 69.391-116.856-106.978-20.299 11.204-59.151 113.122 21.384v-112.58h60.235v113.122l117.459-21.926z" + ], + "grid": 0, + "tags": [ + "medall" + ] + }, + { + "id": 63, + "paths": [ + "M512 0c-166.069 0-301.176 135.108-301.176 301.176 0 82.824 33.431 160.166 94.088 217.811 5.12 4.939 10.842 9.276 16.625 13.613l6.204 4.698c10.782 8.493 22.227 15.48 33.672 22.347v434.236l149.323-114.507 151.853 114.507v-434.236c11.445-6.867 22.95-13.914 33.732-22.408l6.204-4.638c5.783-4.337 11.445-8.674 16.625-13.613 60.597-57.645 94.027-134.987 94.027-217.811 0-166.069-135.108-301.176-301.176-301.176zM602.353 872.99l-91.919-69.331-88.787 68.126v-254.494c29.033 10.059 59.392 15.179 90.353 15.179s61.32-5.12 90.353-15.179v255.699zM677.587 475.377c-3.433 3.313-7.288 6.084-11.144 8.855l-7.409 5.662c-87.040 68.367-207.089 68.307-294.008 0.060l-7.469-5.722c-3.855-2.831-7.71-5.602-11.144-8.855-48.61-46.2-75.354-108.002-75.354-174.2 0-132.879 108.062-240.941 240.941-240.941s240.941 108.062 240.941 240.941c0 66.199-26.744 128-75.354 174.2zM617.412 301.176c0 58.187-47.224 105.412-105.412 105.412s-105.412-47.224-105.412-105.412 47.224-105.412 105.412-105.412 105.412 47.224 105.412 105.412z" + ], + "grid": 0, + "tags": [ + "medall-alt" + ] + }, + { + "id": 62, + "paths": [ + "M641.265 60.235h-46.261c-13.975-35.418-46.321-60.235-83.908-60.235h-148.6c-17.589 0-31.925 5.421-42.526 16.143-19.034 19.095-18.914 46.441-18.793 75.475v709.512l111.496 140.047h8.975v82.824l60.235-41.442v-41.442h8.855l111.616-140.047v-680.599h38.912c20.299 0 21.323 32.527 21.323 39.032v256.964h60.235v-256.964c0.060-58.428-33.491-99.268-81.559-99.268zM362.496 60.235h148.6c17.167 0 31.081 17.528 31.081 39.032v201.909h-180.766v-209.86c0-11.686-0.12-29.335 1.084-31.081zM461.824 880.941h-20.058l-80.294-100.894-0.060-418.635h180.706v418.635l-80.294 100.894z" + ], + "grid": 0, + "tags": [ + "marker" + ] + }, + { + "id": 61, + "paths": [ + "M943.526 342.377l-32.768-32.768c4.698-10.782 7.65-22.167 8.373-33.852 1.566-26.202-7.288-50.296-25.058-68.066l-105.111-105.111c-12.408-12.408-26.323-18.673-41.382-18.673-27.046 0-46.321 19.456-66.741 40.117l-544.286 544.286-20.179 177.995 6.325 6.264-58.549 58.549 71.861 13.372 29.335-29.274 6.264 6.264 177.935-20.058 523.866-523.927 27.467 27.467c4.337 4.337 5.662 8.674 4.578 14.758-1.566 8.493-7.77 18.673-17.047 27.949l-181.67 181.73 42.586 42.586 181.67-181.73c18.251-18.191 29.937-38.852 33.732-59.633 4.698-25.66-2.831-49.935-21.203-68.247zM321.837 823.838l-128.181 14.517-14.155-14.155 14.577-128.060 338.643-338.643 127.759 127.759-338.643 338.583zM703.066 442.669l-127.759-127.759 148.42-148.42c8.192-8.373 20.6-20.902 22.648-21.323l105.111 105.111c7.228 7.228 7.77 16.745 7.529 21.745-0.602 10.12-5.301 19.938-13.131 27.829l-142.818 142.818z" + ], + "grid": 0, + "tags": [ + "marker-alt" + ] + }, + { + "id": 60, + "paths": [ + "M912.324 533.323l-370.206-370.266v800.708h-60.235v-800.708l-370.206 370.266-42.647-42.647 442.97-442.91 442.97 442.97-42.647 42.586z" + ], + "grid": 0, + "tags": [ + "arrow-up" + ] + }, + { + "id": 59, + "paths": [ + "M946.116 510.313l-442.97 442.97-42.586-42.586 370.206-370.206h-770.53v-60.235h770.59l-370.266-370.327 42.586-42.586 442.97 442.97z" + ], + "grid": 0, + "tags": [ + "arrow-right" + ] + }, + { + "id": 58, + "paths": [ + "M963.765 540.431h-770.59l370.206 370.206-42.586 42.586-442.91-442.91 442.97-442.97 42.586 42.586-370.266 370.266h770.59v60.235z" + ], + "grid": 0, + "tags": [ + "arrow-left" + ] + }, + { + "id": 57, + "paths": [ + "M954.97 533.323l-442.97 442.91-442.97-442.91 42.586-42.586 370.266 370.206v-800.708h60.235v800.708l370.206-370.206 42.647 42.586z" + ], + "grid": 0, + "tags": [ + "arrow-down" + ] + }, + { + "id": 56, + "paths": [ + "M572.235 660.902c0 22.046-12.469 40.478-30.118 50.959v129.747h-60.235v-129.687c-17.709-10.481-30.118-28.913-30.118-51.019 0-33.25 26.925-60.235 60.235-60.235 33.19 0 60.235 26.925 60.235 60.235zM901.421 509.591v426.466c0 49.815-40.538 90.353-90.353 90.353h-601.69c-49.815 0-90.353-40.538-90.353-90.353v-426.466c0-49.815 40.538-90.353 90.353-90.353h1.446v-119.748c0-166.069 135.108-301.176 301.176-301.176s301.176 135.108 301.176 301.176v119.989c48.851 1.084 88.245 41.020 88.245 90.112zM271.059 419.238h481.882v-119.748c0-132.879-108.062-240.941-240.941-240.941s-240.941 108.062-240.941 240.941v119.748zM841.186 509.591c0-15.902-12.469-28.552-28.009-29.696v0.241h-602.353v-0.663h-1.446c-16.565 0-30.118 13.493-30.118 30.118v426.466c0 16.625 13.553 30.118 30.118 30.118h601.69c16.565 0 30.118-13.493 30.118-30.118v-426.466z" + ], + "grid": 0, + "tags": [ + "lock" + ] + }, + { + "id": 55, + "paths": [ + "M118.724 118.423l318.524 849.378 73.005-457.848 457.848-73.005-849.378-318.524zM457.668 457.306l-44.032 275.998-191.97-511.94 511.94 191.97-275.938 43.972z" + ], + "grid": 0, + "tags": [ + "location-arrow" + ] + }, + { + "id": 54, + "paths": [ + "M782.035 418.033l-56.501 56.501-42.586-42.586 56.501-56.501c58.729-58.729 58.729-154.263 0-212.932s-154.263-58.729-212.932 0l-179.923 179.983c-58.729 58.729-58.729 154.263 0 212.932s154.263 58.729 212.932 0l42.586 42.586c-41.141 41.141-95.051 61.621-149.082 61.621s-107.942-20.54-149.022-61.621c-82.161-82.161-82.161-215.944 0-298.104l179.923-179.923c82.221-82.221 215.883-82.221 298.104 0 82.221 82.101 82.221 215.883 0 298.044zM363.942 483.93l-7.831 7.77 42.466 42.707 7.891-7.831c58.729-58.729 154.263-58.729 212.932 0s58.729 154.263 0 212.932l-182.091 182.212c-58.729 58.729-154.263 58.729-212.932 0s-58.729-154.263 0-212.932l63.729-63.789-42.586-42.586-63.729 63.789c-82.161 82.161-82.161 215.944 0 298.104 41.141 41.141 95.051 61.621 149.082 61.621s107.942-20.54 149.082-61.621l182.091-182.152c82.161-82.161 82.161-215.944 0-298.104-82.281-82.342-216.004-82.161-298.104-0.12z" + ], + "grid": 0, + "tags": [ + "link" + ] + }, + { + "id": 53, + "paths": [ + "M0 0v1024h1024v-1024h-1024zM60.235 361.412h542.118v602.353h-542.118v-602.353zM963.765 963.765h-301.176v-602.353h301.176v602.353zM60.235 301.176v-240.941h903.529v240.941h-903.529z" + ], + "grid": 0, + "tags": [ + "layout" + ] + }, + { + "id": 52, + "paths": [ + "M783.059 60.235h-783.059v662.588h783.059v-662.588zM722.824 662.588h-662.588v-542.118h662.588v542.118zM1024 301.176v662.588h-783.059v-182.573h60.235v122.338h662.588v-542.118h-121.434v-60.235h181.67z" + ], + "grid": 0, + "tags": [ + "layers" + ] + }, + { + "id": 51, + "paths": [ + "M662.588 60.235h-662.588v542.118h662.588v-542.118zM602.353 542.118h-542.118v-421.647h542.118v421.647zM843.294 783.059h-662.588v-119.326h60.235v59.091h542.118v-421.647h-59.874v-60.235h120.109v542.118zM1024 421.647v542.118h-662.588v-119.326h60.235v59.091h542.118v-421.647h-59.874v-60.235h120.109z" + ], + "grid": 0, + "tags": [ + "layers-alt" + ] + }, + { + "id": 50, + "paths": [ + "M892.145 379.422l42.586-42.586-104.388-104.388 45.598-45.357-42.466-42.707-490.677 488.328c-29.154-20.239-64.452-32.226-102.581-32.226-99.629 0-180.706 81.077-180.706 180.706s81.077 180.706 180.706 180.706 180.706-81.077 180.706-180.706c0-39.816-13.372-76.378-35.238-106.255l317.079-315.512 104.689 104.689 42.586-42.586-104.629-104.568 42.225-42.044 104.508 104.508zM240.158 901.662c-66.44 0-120.471-54.031-120.471-120.471s54.031-120.471 120.471-120.471 120.471 54.031 120.471 120.471-54.031 120.471-120.471 120.471z" + ], + "grid": 0, + "tags": [ + "key" + ] + }, + { + "id": 49, + "paths": [ + "M512 823.838l-292.322-290.936 42.466-42.707 219.738 218.714v-650.36h60.235v650.36l219.678-218.654 42.466 42.707-292.262 290.876zM963.765 543.925v389.722c0 16.625-13.493 30.118-30.118 30.118h-843.294c-16.625 0-30.118-13.493-30.118-30.118v-390.024h-60.235v390.024c0 49.815 40.538 90.353 90.353 90.353h843.294c49.815 0 90.353-40.538 90.353-90.353v-389.722h-60.235z" + ], + "grid": 0, + "tags": [ + "import" + ] + }, + { + "id": 48, + "paths": [ + "M60.235 60.235v903.529h903.529v-903.529h-903.529zM903.529 903.529h-783.059v-120.471h783.059v120.471zM120.471 722.824v-602.353h783.059v602.353h-783.059zM855.522 612.292l-41.984 43.189-145.589-141.493-93.606 100.954-149.745-265.939-204.86 299.671-49.754-33.973 259.614-379.663 156.853 278.408 79.33-85.655 189.741 184.501z" + ], + "grid": 0, + "tags": [ + "image" + ] + }, + { + "id": 47, + "paths": [ + "M752.941 39.635c-104.749 0-195.825 59.753-240.941 146.914-45.116-87.16-136.192-146.914-240.941-146.914-149.444 0-271.059 121.615-271.059 271.059 0 20.661 2.891 42.104 9.276 67.343l6.566 21.143c86.257 262.264 461.342 565.79 477.304 578.5l18.854 15.179 18.854-15.179c16.986-13.673 417.19-337.197 477.485-579.102l6.746-22.167c6.084-24.215 8.915-45.116 8.915-65.717 0-149.444-121.615-271.059-271.059-271.059zM957.079 360.207l-6.807 22.287c-48.73 195.524-358.159 465.438-438.272 532.661-77.222-65.235-368.76-321.476-438.814-534.408l-6.024-19.034c-4.638-18.733-6.927-35.418-6.927-51.019 0-116.254 94.569-210.824 210.824-210.824s210.824 94.63 210.824 210.824v15.179h60.235v-15.179c0-116.254 94.569-210.824 210.824-210.824s210.824 94.569 210.824 210.824c0 15.541-2.289 31.744-6.686 49.513z" + ], + "grid": 0, + "tags": [ + "heart" + ] + }, + { + "id": 46, + "paths": [ + "M9.216 378.037c-6.325-25.239-9.216-46.682-9.216-67.343 0-149.444 121.615-271.059 271.059-271.059 104.749 0 195.825 59.753 240.941 146.914 45.116-87.16 136.192-146.914 240.941-146.914 149.444 0 271.059 121.615 271.059 271.059 0 20.6-2.831 41.442-8.855 65.717l-6.807 22.167c-4.879 19.938-13.734 43.43-27.287 72.222l-54.453-25.66c11.806-25.178 19.396-45.116 23.793-62.705l6.746-22.227c4.397-17.769 6.626-33.973 6.626-49.513 0-116.254-94.569-210.824-210.824-210.824s-210.824 94.63-210.824 210.824h-60.235c0-116.254-94.569-210.824-210.824-210.824s-210.824 94.63-210.824 210.824c0 15.601 2.289 32.286 6.987 51.019l6.024 19.034c5.662 17.288 14.155 37.225 26.564 62.223l-53.971 26.865c-13.734-27.708-23.251-50.176-29.997-70.656l-6.626-21.143zM511.94 916.239c-48.55-38.129-186.85-152.576-299.731-301.96l-48.008 36.382c144.203 190.765 322.5 322.379 329.969 327.861l17.95 13.131 17.83-13.252c7.77-5.722 191.97-142.999 333.463-327.56l-47.767-36.683c-111.315 145.107-254.133 262.987-303.706 302.080zM853.655 446.645l-170.586 120.471-170.586-120.471-170.647 120.471-170.888-120.41-188.296 132.638 34.696 49.272 153.6-108.303 170.888 120.531 170.647-120.471 170.586 120.471 170.586-120.471 152.937 108.183 34.816-49.152-187.753-132.759z" + ], + "grid": 0, + "tags": [ + "heart-broken" + ] + }, + { + "id": 45, + "paths": [ + "M843.294 265.216v437.188c0 51.561-20.299 112.459-38.249 166.129-10.782 32.407-21.986 65.837-21.986 80.173v45.176c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v-45.176c0-24.094 11.083-57.224 25.118-99.208 15.601-46.984 35.117-105.352 35.117-147.095v-437.188c0-16.565-12.408-29.094-28.792-29.094-16.745 0-30.84 12.649-31.383 28.19 0 0.181-0.12 0.361-0.12 0.542l0.060 232.508c0 16.625-13.493 30.118-30.118 30.118-16.625 0-30.118-13.493-30.118-30.118l-0.060-246.121c0-0.301 0.181-0.542 0.181-0.904v-84.691c0-13.975-8.433-29.094-26.865-29.094-16.504 0-31.804 12.649-32.768 27.106-0.060 0.783-0.602 1.506-0.723 2.349v269.854c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.432-30.118-30.118v-294.912c0-1.325 0.602-2.53 0.783-3.795v-47.887c0-15.721-14.517-29.033-31.624-29.033-16.806 0-29.937 12.71-29.937 29.033v52.164c0.12 0.904 0.542 1.687 0.542 2.65v0 294.912c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v0-276.6c0-0.241-0.181-0.422-0.241-0.663-1.988-14.336-14.938-25.178-30.118-25.178-16.806 0-30.419 13.071-30.419 29.094v343.642c0 12.529-7.71 23.733-19.396 28.13-11.505 4.397-24.877 1.205-33.19-8.132l-67.283-75.535c-23.672-27.648-39.514-18.733-45.357-15.36-6.987 3.915-11.987 10.3-13.975 17.89-1.928 7.288-0.843 14.938 3.012 21.504l198.295 422.189c2.771 4.397 9.517 9.336 17.709 11.324 13.553 3.253 23.010 15.36 23.010 29.274v53.308c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v-32.888c-13.914-7.71-25.48-18.914-33.732-32.828l-198.234-422.249c-10.842-18.010-14.155-42.044-8.072-65.114 6.204-23.311 21.323-42.767 42.526-54.814 40.719-22.95 85.655-12.408 120.471 28.19l14.276 16.023v-264.553c0-49.272 40.659-89.329 90.654-89.329 10.481 0 20.661 1.807 30.118 5.12 4.036-45.598 42.767-81.438 89.811-81.438 48.248 0 87.883 36.382 91.618 82.342 10.3-3.855 21.444-6.024 33.009-6.024 48.851 0 87.1 39.213 87.1 89.329v15.782c9.818-3.554 20.36-5.481 31.322-5.481 49.875-0.060 88.968 39.153 88.968 89.269z" + ], + "grid": 0, + "tags": [ + "hand-stop" + ] + }, + { + "id": 44, + "paths": [ + "M918.106 326.475l-71.56 485.737c-7.108 36.864-23.432 53.007-35.298 64.813-11.505 11.445-19.155 19.034-19.155 56.2v60.657c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v-60.657c0-57.525 16.745-78.848 36.984-98.906 9.336-9.276 14.938-14.878 18.312-32.166l71.379-484.232c1.084-7.409 3.072-32.527-16.444-35.238-6.746-0.964-12.228 0.12-16.565 3.433-5.783 4.277-9.879 12.589-11.324 22.769l-29.937 199.74c-1.506 10.3-8.312 19.034-17.83 23.191s-20.54 3.012-29.154-2.952c-3.012 0.482-8.072-1.385-13.131-4.698-9.156-5.843-14.396-16.143-13.794-26.985l17.167-318.404c1.385-16.745-10.24-30.66-26.022-32.045-7.65-0.723-14.999 1.687-20.841 6.566-5.903 4.939-9.397 11.806-10.059 19.336l-27.889 288.045c-1.566 16.203-14.396 27.949-31.985 27.166-4.879-0.301-9.818-0.602-14.818-0.663-16.203-0.361-29.214-13.432-29.515-29.576l-6.927-368.58c0-16.143-12.649-28.792-28.19-28.792-15.541 0-28.19 12.649-28.19 28.19l-7.108 396.71c-0.241 11.445-6.867 21.805-17.227 26.684-3.735 1.807-7.349 3.614-10.782 5.542-8.855 5.060-19.637 5.24-28.672 0.482-9.035-4.698-15.119-13.673-16.143-23.793l-31.021-320.994c-0.663-7.891-4.216-14.758-9.999-19.637-5.843-4.879-13.734-7.108-20.781-6.566-7.59 0.663-14.396 4.216-19.275 10.059-4.819 5.783-7.168 13.131-6.505 20.661l30.298 427.49c0.964 13.131-6.807 25.419-19.095 30.178-12.408 4.819-26.383 1.024-34.515-9.336l-93.425-117.64c-12.228-20.48-33.852-26.202-50.598-16.504-8.192 4.759-14.035 12.348-16.444 21.444-2.409 9.035-1.205 18.552 3.614 26.684l212.57 366.652c4.819 8.373 12.71 14.216 22.106 16.504 13.493 3.253 23.010 15.36 23.010 29.274v41.562c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v-21.082c-15.3-8.252-28.009-20.54-36.984-36.021l-212.631-366.652c-12.83-22.046-16.264-47.767-9.638-72.403 6.505-24.696 22.347-45.297 44.514-58.127 45.658-26.323 104.087-10.662 130.349 34.876l30.479 38.189-23.432-330.27c-2.048-23.010 5.18-46.020 20.36-64.211 15.179-18.071 36.623-29.214 60.175-31.322 23.913-2.168 46.682 5.24 64.873 20.48 8.794 7.409 15.842 16.203 21.082 25.961l0.843-45.357c0-48.309 39.695-87.944 88.425-87.944s88.425 39.695 88.425 88.486l0.843 44.936c5.301-9.818 12.408-18.673 21.263-26.142 18.251-15.3 41.442-22.648 64.934-20.48 48.851 4.277 85.052 47.465 80.776 96.256l-3.192 58.91c1.566-1.385 3.253-2.711 4.879-3.976 17.348-13.011 38.37-18.071 61.32-14.938 47.285 6.566 75.174 49.152 67.584 103.424z" + ], + "grid": 0, + "tags": [ + "hand-open" + ] + }, + { + "id": 43, + "paths": [ + "M841.065 337.318v352.015c0 46.803-23.070 74.752-39.936 95.112-14.095 17.107-21.444 26.684-21.444 41.803v107.4c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v-107.4c0-37.527 19.576-61.199 35.298-80.173 14.577-17.649 26.142-31.563 26.142-56.681v-352.075c0-18.793-16.143-36.503-33.19-36.503-19.817 0-24.034 3.072-24.215 3.192-3.976 5.361-3.855 34.274-3.795 57.585 0.060 11.384 0.12 24.094-0.12 38.069-0.241 16.504-12.83 28.792-30.359 29.696-16.504-0.12-29.877-13.553-29.877-30.118v-127.699c0-18.492-13.372-32.407-31.081-32.407-16.264 0-28.19 12.107-29.636 29.395v120.651c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v0-121.133c0-0.181-0.12-0.361-0.12-0.602v-46.562c0-3.976-0.843-38.671-28.552-38.671-27.106 0-31.202 24.215-31.202 38.671v42.345c0 1.687-0.663 3.253-0.964 4.879v156.25c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v0-161.672c-2.891-11.686-11.324-23.492-28.070-23.492-17.227 0-31.744 15.721-31.744 34.334v201.788c0 0.422-0.361 0.783-0.361 1.205v66.319c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v-50.236c-10.601-3.855-25.961-6.987-34.756-5-7.108 1.385-14.276 7.65-18.733 16.324-3.554 6.807-8.312 20.902-0.542 38.37l102.28 223.895c0.964 2.108 1.626 4.277 2.108 6.505 3.373 16.565 18.793 27.467 35.418 25.961 8.373-1.084 16.926 1.807 23.311 7.529 6.325 5.722 9.999 13.854 9.999 22.408v105.050c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v-77.463c-32.286-8.373-58.368-33.792-66.68-67.765l-101.135-221.365c-13.252-29.877-12.469-62.825 1.928-90.775 12.89-24.877 35.418-42.707 60.296-47.767 12.649-2.59 29.756-1.867 46.682 1.566v-43.369c0-0.602 0.301-1.144 0.361-1.747v-111.435c0-52.164 41.321-94.569 91.979-94.569 12.047 0 23.612 2.409 34.093 6.746 11.987-38.792 44.152-63.669 86.317-63.669 40.237 0 71.8 25.419 83.667 63.91 10.722-4.518 22.468-6.987 34.876-6.987 41.502 0 75.776 26.744 87.16 64.572 11.023-2.409 22.227-2.952 32.286-2.952 50.718 0 93.485 44.273 93.485 96.738z" + ], + "grid": 0, + "tags": [ + "hand-drag" + ] + }, + { + "id": 42, + "paths": [ + "M481.882 240.941l-117.941-120.471h-363.942v903.529h1024v-783.059h-542.118zM338.643 180.706l117.941 120.471h507.181v122.097l-903.529-1.566v-241.001h278.408zM60.235 963.765v-481.822l903.529 1.566v480.256h-903.529z" + ], + "grid": 0, + "tags": [ + "folder" + ] + }, + { + "id": 41, + "paths": [ + "M783.059 602.835v-556.454l-715.535 278.227 715.535 278.227zM722.824 514.831l-489.171-190.223 489.171-190.283v380.506zM903.529 0v1024h-60.235v-1024h60.235z" + ], + "grid": 0, + "tags": [ + "flag" + ] + }, + { + "id": 40, + "paths": [ + "M903.529 0v1024h-60.235v-1024h60.235zM91.979 58.79h691.080v481.882h-692.104l175.345-238.050-174.321-243.832zM722.824 119.025h-513.687l131.614 184.079-130.59 177.333h512.663v-361.412z" + ], + "grid": 0, + "tags": [ + "flag-alt" + ] + }, + { + "id": 39, + "paths": [ + "M903.529 0v1024h-60.235v-1024h60.235zM300.213 60.235h481.882v481.882h-300.213v120.471h-421.647v-481.882h239.977v-120.471zM421.647 542.118h-120.471v-301.176h-180.706v361.412h301.176v-60.235zM360.448 120.471v60.235h0.964v301.176h360.448v-361.412h-361.412z" + ], + "grid": 0, + "tags": [ + "flag-alt-2" + ] + }, + { + "id": 38, + "paths": [ + "M1021.892 531.095c-77.342-196.789-282.323-329.065-509.892-329.065s-432.55 132.277-509.892 329.065c-2.771 7.048-2.771 14.938 0 21.986 77.402 196.849 282.323 329.126 509.892 329.126s432.489-132.216 509.892-329.065c2.831-7.108 2.831-14.938 0-22.046zM512 821.971c-198.656 0-377.615-111.977-449.295-279.853 71.62-167.876 250.579-279.853 449.295-279.853s377.675 111.977 449.295 279.853c-71.68 167.816-250.639 279.853-449.295 279.853zM512 322.68c-121.013 0-219.437 98.424-219.437 219.437s98.424 219.437 219.497 219.437c120.952 0 219.437-98.424 219.437-219.437s-98.485-219.437-219.497-219.437zM512 701.32c-87.823 0-159.262-71.439-159.262-159.202s71.499-159.202 159.262-159.202c87.763 0 159.202 71.439 159.202 159.202s-71.379 159.202-159.202 159.202zM512 460.378c-45.056 0-81.739 36.683-81.739 81.739s36.683 81.739 81.739 81.739 81.739-36.683 81.739-81.739-36.683-81.739-81.739-81.739zM512 563.622c-11.866 0-21.504-9.638-21.504-21.504s9.638-21.504 21.504-21.504 21.504 9.638 21.504 21.504-9.638 21.504-21.504 21.504z" + ], + "grid": 0, + "tags": [ + "eye" + ] + }, + { + "id": 37, + "paths": [ + "M262.566 358.761l-43.249-41.984 292.683-301.478 292.683 301.478-43.249 41.924-219.317-225.882v648.553h-60.235v-648.553l-219.317 225.943zM963.765 543.925v389.722c0 16.625-13.493 30.118-30.118 30.118h-843.294c-16.625 0-30.118-13.493-30.118-30.118v-390.024h-60.235v390.024c0 49.815 40.538 90.353 90.353 90.353h843.294c49.815 0 90.353-40.538 90.353-90.353v-389.722h-60.235z" + ], + "grid": 0, + "tags": [ + "export" + ] + }, + { + "id": 36, + "paths": [ + "M361.412 906.12v-424.237h-60.235v424.237l-219.618-219.618-42.586 42.586 292.322 292.322 292.382-292.382-42.586-42.586-219.678 219.678zM330.571 935.514h1.385l-0.663 0.723-0.723-0.723zM942.441 337.559l-219.618-219.678v427.43h-60.235v-427.43l-219.618 219.678-42.647-42.647 292.382-292.322 292.382 292.382-42.647 42.586z" + ], + "grid": 0, + "tags": [ + "exchange-vertical" + ] + }, + { + "id": 35, + "paths": [ + "M120.471 662.588h783.059v-481.882h-783.059v481.882zM180.706 240.941h662.588v361.412h-662.588v-361.412zM933.647 60.235h-843.294c-49.815 0-90.353 38.43-90.353 85.715v611.629c0 47.285 40.538 85.715 90.353 85.715h843.294c49.815 0 90.353-38.43 90.353-85.715v-611.629c0-47.285-40.538-85.715-90.353-85.715zM963.765 757.579c0 14.095-13.553 25.48-30.118 25.48h-843.294c-16.565 0-30.118-11.384-30.118-25.48v-611.629c0-14.095 13.553-25.48 30.118-25.48h843.294c16.565 0 30.118 11.384 30.118 25.48v611.629zM301.176 903.529h421.647v60.235h-421.647v-60.235z" + ], + "grid": 0, + "tags": [ + "desktop" + ] + }, + { + "id": 34, + "paths": [ + "M1023.94 60.235h-135.951c0.060-10.12 0.482-19.757 0.482-30.118v-30.118h-752.941v30.118c0 9.638 0.241 20.058 0.301 30.118h-135.77l-0.060 30.057c-0.181 65.416 3.735 132.457 11.746 199.379 21.203 176.911 76.559 381.952 168.358 426.888 11.686 5.783 23.793 8.674 35.9 8.674 14.336 0 28.853-4.096 42.586-12.408l12.589-8.433c50.176 76.92 118.664 128.843 210.703 138.421v120.952h-177.875v60.235h421.647v-60.235h-183.537v-120.29c85.233-8.975 155.708-56.32 210.402-139.264l14.095 9.336c13.011 7.831 26.925 11.686 41.020 11.686 12.107 0 24.335-2.891 36.262-8.734 91.799-44.936 147.155-249.976 168.358-426.888 8.011-66.861 11.927-133.963 11.746-199.379l-0.060-29.997zM240.218 652.589l-13.794 9.276c-6.746 3.976-12.288 4.216-19.757 0.602-47.285-23.191-108.905-161.129-135.108-380.024-6.505-54.212-10.18-108.544-11.083-161.973h76.68c5.843 176.128 30.901 389.602 107.942 539.467l-4.879-7.349zM512 785.528c-273.468 0-313.163-484.894-316.055-725.293h632.109c-2.952 284.371-50.477 725.293-316.055 725.293zM952.44 282.443c-26.263 218.895-87.823 356.834-135.108 380.024-7.409 3.674-13.011 3.494-18.552 0.181l-15.059-10.059-6.987 10.481c64.994-122.76 102.822-305.152 110.291-542.6h76.559c-0.964 53.429-4.638 107.761-11.144 161.973z" + ], + "grid": 0, + "tags": [ + "cup" + ] + }, + { + "id": 33, + "paths": [ + "M760.531 406.167l-245.941-401.95-253.651 402.071-270.999-230.882 104.749 788.36h834.56l104.689-787.576-273.408 229.978zM147.396 903.529l-8.011-60.235h745.171l-8.011 60.235h-729.148zM892.567 783.059h-761.133l-61.139-460.017 204.559 174.2 238.953-378.88 231.966 379 208.053-175.044-61.259 460.74z" + ], + "grid": 0, + "tags": [ + "crown" + ] + }, + { + "id": 32, + "paths": [ + "M1024 90.353v480.015c0 49.815-40.538 90.353-90.353 90.353h-30.6v-60.235h30.6c16.625 0 30.118-13.553 30.118-30.118v-480.015c0-16.565-13.493-30.118-30.118-30.118h-843.294c-16.625 0-30.118 13.553-30.118 30.118v480.015c0 16.565 13.493 30.118 30.118 30.118h90.353v174.2l107.159-94.509 39.816 45.176-207.209 182.814v-247.447h-30.118c-49.815 0-90.353-40.538-90.353-90.353v-480.015c0-49.815 40.538-90.353 90.353-90.353h843.294c49.815 0 90.353 40.538 90.353 90.353zM844.499 574.645v183.296c0 49.815-40.538 90.353-90.353 90.353h-30.118v184.561l-220.883-184.561h-51.381c-49.815 0-90.353-40.538-90.353-90.353v-183.296c0-49.815 40.538-90.353 90.353-90.353h302.381c49.815 0 90.353 40.538 90.353 90.353zM784.264 574.645c0-16.565-13.493-30.118-30.118-30.118h-302.381c-16.625 0-30.118 13.553-30.118 30.118v183.296c0 16.565 13.493 30.118 30.118 30.118h73.306l138.722 116.013v-116.013h90.353c16.625 0 30.118-13.553 30.118-30.118v-183.296z" + ], + "grid": 0, + "tags": [ + "comments" + ] + }, + { + "id": 31, + "paths": [ + "M933.647 0h-843.294c-49.815 0-90.353 40.538-90.353 90.353v602.353c0 49.815 40.538 90.353 90.353 90.353h30.118v247.085l282.383-247.085h530.793c49.815 0 90.353-40.538 90.353-90.353v-602.353c0-49.815-40.538-90.353-90.353-90.353zM963.765 692.706c0 16.565-13.493 30.118-30.118 30.118h-553.442l-199.499 174.562v-174.562h-90.353c-16.625 0-30.118-13.553-30.118-30.118v-602.353c0-16.565 13.493-30.118 30.118-30.118h843.294c16.625 0 30.118 13.553 30.118 30.118v602.353z" + ], + "grid": 0, + "tags": [ + "comment" + ] + }, + { + "id": 30, + "paths": [ + "M933.647 0h-843.294c-49.815 0-90.353 40.538-90.353 90.353v602.353c0 49.815 40.538 90.353 90.353 90.353h30.118v247.085l282.383-247.085h530.793c49.815 0 90.353-40.538 90.353-90.353v-602.353c0-49.815-40.538-90.353-90.353-90.353zM963.765 692.706c0 16.565-13.493 30.118-30.118 30.118h-553.442l-199.499 174.562v-174.562h-90.353c-16.625 0-30.118-13.553-30.118-30.118v-602.353c0-16.565 13.493-30.118 30.118-30.118h843.294c16.625 0 30.118 13.553 30.118 30.118v602.353zM180.706 180.706h662.588v60.235h-662.588v-60.235zM180.706 301.176h662.588v60.235h-662.588v-60.235zM180.706 421.647h361.412v60.235h-361.412v-60.235z" + ], + "grid": 0, + "tags": [ + "comment-alt" + ] + }, + { + "id": 29, + "paths": [ + "M554.586 512l400.324 400.324-42.586 42.586-400.324-400.324-400.324 400.324-42.586-42.586 400.324-400.324-400.384-400.324 42.586-42.586 400.384 400.324 400.324-400.324 42.586 42.586-400.324 400.324z" + ], + "grid": 0, + "tags": [ + "close" + ] + }, + { + "id": 28, + "paths": [ + "M724.088 255.036v511.88h-60.235v-511.88c0-65.717-48.128-136.493-153.841-136.493-116.917 0-148.119 85.775-148.119 136.493v489.171h0.422v87.763c0 37.346 41.743 72.644 85.896 72.644 50.839 0 94.389-41.141 94.389-74.752v-16.264h-0.181l0.482-458.812c0-52.646-14.878-52.646-28.070-52.646-22.227 0-32.949 2.108-32.949 49.574v309.971h-60.235v-309.971c0-27.166 0-109.809 93.184-109.809 40.297 0 88.305 19.576 88.305 112.941l-0.422 387.313h0.12v87.763c0 70.656-73.728 134.987-154.624 134.987-77.824 0-146.131-62.103-146.131-132.879v-4.457h-0.422v-572.536c0-94.75 65.175-196.728 208.354-196.728 140.529 0.060 214.076 98.967 214.076 196.728z" + ], + "grid": 0, + "tags": [ + "clip" + ] + }, + { + "id": 27, + "paths": [ + "M985.088 716.559l-42.586 42.586-430.502-430.441-430.441 430.441-42.586-42.586 473.028-473.028 473.088 473.028z" + ], + "grid": 0, + "tags": [ + "angle-up" + ] + }, + { + "id": 26, + "paths": [ + "M795.528 510.313l-473.088 473.088-42.586-42.586 430.441-430.441-430.441-430.562 42.586-42.586 473.088 473.088z" + ], + "grid": 0, + "tags": [ + "angle-right" + ] + }, + { + "id": 25, + "paths": [ + "M313.645 510.253l430.441 430.502-42.586 42.586-473.028-473.088 473.088-473.028 42.586 42.586-430.502 430.441z" + ], + "grid": 0, + "tags": [ + "angle-left" + ] + }, + { + "id": 24, + "paths": [ + "M985.088 305.694l-473.148 473.088-473.028-473.088 42.586-42.586 430.381 430.441 430.562-430.502 42.647 42.647z" + ], + "grid": 0, + "tags": [ + "angle-down" + ] + }, + { + "id": 23, + "paths": [ + "M928.708 106.857l-532.058 812.273-296.237-264.192 40.117-44.936 244.013 217.69 493.809-753.845 50.357 33.009z" + ], + "grid": 0, + "tags": [ + "check" + ] + }, + { + "id": 22, + "paths": [ + "M843.294 347.016h60.235v616.749h-843.294v-843.294h505.555v60.235h-445.32v722.824h722.824v-556.514zM292.382 490.677l-42.647 42.647 206.848 206.848 457.005-693.429-50.296-33.19-416.346 631.748-154.564-154.624z" + ], + "grid": 0, + "tags": [ + "check-box" + ] + }, + { + "id": 21, + "paths": [ + "M358.882 180.706v-60.235h-175.646v60.235h-183.236v722.824h1024v-722.824h-665.118zM963.765 843.294h-903.529v-421.647h394.963c-20.781 35.599-33.551 76.439-33.551 120.471 0 132.879 108.062 240.941 240.941 240.941s240.941-108.062 240.941-240.941c0-44.032-12.77-84.872-33.551-120.471h93.786v421.647zM843.294 542.118c0 99.629-81.077 180.706-180.706 180.706s-180.706-81.077-180.706-180.706 81.077-180.706 180.706-180.706 180.706 81.077 180.706 180.706zM820.284 361.412c-42.406-36.984-97.099-60.235-157.696-60.235s-115.29 23.251-157.696 60.235h-444.657v-120.471h903.529v120.471h-143.48z" + ], + "grid": 0, + "tags": [ + "camera" + ] + }, + { + "id": 20, + "paths": [ + "M992.015 133.843h-116.073c-17.589 0-31.985 14.095-31.985 31.383v40.177l-662.287 242.748v-16.264c0-25.901-21.564-47.044-48.008-47.044h-85.655c-26.443 0-48.008 21.143-48.008 47.044v282.383c0 25.841 21.564 47.044 48.008 47.044h85.655c26.383 0 48.008-21.203 48.008-47.044v-19.938l62.283 11.384c-1.385 9.818-2.289 19.637-2.289 29.576 0 114.266 94.027 207.27 209.559 207.27 99.81 0 182.513-67.945 203.595-161.551l189.139 34.696v39.695c0 17.288 14.396 31.383 31.985 31.383h116.073c17.589 0 31.985-14.095 31.985-31.383v-690.176c0-17.288-14.396-31.383-31.985-31.383zM451.223 882.327c-82.342 0-149.323-65.958-149.323-147.034 0-6.264 1.626-12.348 2.409-18.552l291.539 53.489c-15.902 65.175-74.391 112.098-144.625 112.098zM963.765 826.549h-59.573v-61.018l-782.758-143.541v79.029h-61.199v-256h61.199v89.389l782.758-286.901v-53.429h59.573v632.471z" + ], + "grid": 0, + "tags": [ + "announcement" + ] + }, + { + "id": 19, + "paths": [ + "M958.524 107.339l-391.529 572.235-49.694-33.973 391.529-572.235 49.694 33.973zM542.118 842.812c0 66.44-54.031 120.471-120.471 120.471-12.228 0-32.407 0.904-32.587 0.904h-328.523l274.251-206.667c9.035-6.264 51.742-35.177 86.859-35.177 66.44 0 120.471 54.031 120.471 120.471zM481.882 842.812c0-33.19-27.046-60.235-60.235-60.235-10.541 0-35.057 12.228-51.381 23.672l-129.687 97.762h146.552c3.795-0.181 22.648-0.964 34.515-0.964 33.19 0 60.235-27.046 60.235-60.235z" + ], + "grid": 0, + "tags": [ + "brush" + ] + }, + { + "id": 18, + "paths": [ + "M421.647 783.059v-90.353h60.235v30.118h60.235v-30.118h60.235v90.353h-180.706zM1024 662.588h-60.235v361.412h-903.529v-361.412h-60.235v-481.882h217.811c56.501-110.231 168.96-180.706 294.189-180.706s237.749 70.536 294.189 180.706h217.811v481.882zM287.262 180.706h449.596c-49.694-74.27-133.12-120.471-224.798-120.471-91.678 0-175.104 46.261-224.798 120.471zM903.529 662.588h-783.059v301.176h783.059v-301.176zM963.765 240.941h-903.529v361.412h903.529v-361.412z" + ], + "grid": 0, + "tags": [ + "briefcase" + ] + }, + { + "id": 17, + "paths": [ + "M862.148 121.193h-430.803l-140.408 422.49h100.352l-121.073 364.544 571.211-484.954h-174.923l195.644-302.080zM677.466 483.509l-282.323 239.676 79.631-239.676h-100.292l100.292-302.080h276.6l-195.644 302.080h121.736z" + ], + "grid": 0, + "tags": [ + "bolt" + ] + }, + { + "id": 16, + "paths": [ + "M712.584 481.882l-230.46 435.682-53.248-28.13 183.718-347.317h-307.742l295.153-438.453 49.935 33.672-231.966 344.546h294.611z" + ], + "grid": 0, + "tags": [ + "bolt-alt" + ] + }, + { + "id": 15, + "paths": [ + "M542.118 120.471v-120.471h-60.235v120.471h-421.647v602.353h903.529v-602.353h-421.647zM903.529 662.588h-783.059v-481.882h783.059v481.882zM210.824 783.059h602.353v60.235h-155.648l90.594 140.107-50.598 32.708-111.736-172.815h-43.671v180.706h-60.235v-180.706h-42.888l-112.58 172.875-50.477-32.828 91.196-140.047h-156.311v-60.235z" + ], + "grid": 0, + "tags": [ + "blackboard" + ] + }, + { + "id": 14, + "paths": [ + "M783.059 240.941v-144.203c0-53.308-44.393-96.738-98.967-96.738h-343.281c-54.513 0-98.906 43.43-98.906 96.738v144.203h-181.67v783.059h903.529v-783.059h-180.706zM302.14 96.738c0-20.119 17.348-36.503 38.671-36.503h343.281c21.384 0 38.731 16.384 38.731 36.503v144.203h-420.683v-144.203zM903.529 963.765h-783.059v-481.882h783.059v481.882zM903.529 421.647h-783.059v-120.471h121.434v38.731h60.235v-38.731h420.683v38.731h60.235v-38.731h120.471v120.471z" + ], + "grid": 0, + "tags": [ + "bag" + ] + }, + { + "id": 13, + "paths": [ + "M819.381 683.61l-42.526-42.647 99.027-98.846h-333.764v333.764l98.846-99.027 42.647 42.526-171.61 171.972-171.61-171.972 42.647-42.526 98.846 99.027v-333.764h-333.764l99.027 98.846-42.526 42.647-171.972-171.61 171.972-171.61 42.526 42.647-99.027 98.846h333.764v-333.764l-98.846 99.027-42.647-42.526 171.61-171.972 171.61 171.972-42.647 42.526-98.846-99.027v333.764h333.764l-99.027-98.846 42.526-42.647 171.972 171.61-171.972 171.61z" + ], + "grid": 0, + "tags": [ + "arrow" + ] + }, + { + "id": 12, + "paths": [ + "M701.259 726.618l43.128 42.044-232.388 238.231-232.388-238.17 43.128-42.044 159.142 163.057v-755.471l-159.142 163.117-43.128-42.104 232.388-238.17 232.388 238.17-43.128 42.044-159.142-163.057v755.531l159.142-163.177z" + ], + "grid": 0, + "tags": [ + "arrows-vertical" + ] + }, + { + "id": 11, + "paths": [ + "M1006.893 512l-238.17 232.388-42.044-43.128 163.057-159.142h-755.471l163.117 159.142-42.044 43.128-238.231-232.388 238.17-232.388 42.044 43.128-163.057 159.142h755.531l-163.117-159.142 42.044-43.128 238.17 232.388z" + ], + "grid": 0, + "tags": [ + "arrows-horizontal" + ] + }, + { + "id": 10, + "paths": [ + "M963.524 683.791l0.241 279.974-280.034-0.241 0.060-60.235 177.092 0.181-348.883-348.823-348.883 348.883 177.092-0.181 0.060 60.235-280.034 0.181 0.241-280.034 60.235 0.060-0.181 177.032 348.883-348.823-348.883-348.883 0.181 177.032-60.235 0.060-0.241-279.974 280.034 0.241-0.060 60.235-177.092-0.181 348.883 348.883 348.883-348.883-177.092 0.181-0.060-60.235 280.034-0.241-0.241 280.034-60.235-0.060 0.181-177.032-348.883 348.823 348.883 348.883-0.181-177.032 60.235-0.060z" + ], + "grid": 0, + "tags": [ + "fullscreen" + ] + }, + { + "id": 9, + "paths": [ + "M963.765 60.055v542.298h-60.235v-439.537l-621.448 620.243-42.586-42.647 621.327-620.122h-440.681v-60.235h543.624z" + ], + "grid": 0, + "tags": [ + "arrow-top-right" + ] + }, + { + "id": 8, + "paths": [ + "M740.412 783.059l-621.448-620.243v439.537h-60.235v-542.298h543.624v60.235h-440.681l621.327 620.122-42.586 42.647z" + ], + "grid": 0, + "tags": [ + "arrow-top-left" + ] + }, + { + "id": 7, + "paths": [ + "M512 348.943l262.264 262.264-42.586 42.586-219.678-219.678-219.618 219.618-42.586-42.586 262.204-262.204zM1024 512c0 282.323-229.677 512-512 512s-512-229.677-512-512 229.677-512 512-512 512 229.677 512 512zM963.765 512c0-249.133-202.632-451.765-451.765-451.765s-451.765 202.632-451.765 451.765 202.632 451.765 451.765 451.765 451.765-202.632 451.765-451.765z" + ], + "grid": 0, + "tags": [ + "arrow-circle-up" + ] + }, + { + "id": 6, + "paths": [ + "M412.853 249.736l262.204 262.264-262.264 262.264-42.586-42.586 219.678-219.678-219.678-219.618 42.647-42.647zM1024 512c0 282.323-229.677 512-512 512s-512-229.677-512-512 229.677-512 512-512 512 229.677 512 512zM963.765 512c0-249.133-202.632-451.765-451.765-451.765s-451.765 202.632-451.765 451.765 202.632 451.765 451.765 451.765 451.765-202.632 451.765-451.765z" + ], + "grid": 0, + "tags": [ + "arrow-circle-right" + ] + }, + { + "id": 5, + "paths": [ + "M653.794 292.382l-219.678 219.618 219.618 219.618-42.586 42.586-262.204-262.204 262.264-262.264 42.586 42.647zM1024 512c0 282.323-229.677 512-512 512s-512-229.677-512-512 229.677-512 512-512 512 229.677 512 512zM963.765 512c0-249.133-202.632-451.765-451.765-451.765s-451.765 202.632-451.765 451.765 202.632 451.765 451.765 451.765 451.765-202.632 451.765-451.765z" + ], + "grid": 0, + "tags": [ + "arrow-circle-left" + ] + }, + { + "id": 4, + "paths": [ + "M731.618 370.206l42.586 42.586-262.204 262.264-262.264-262.204 42.586-42.586 219.678 219.618 219.618-219.678zM1024 512c0 282.323-229.677 512-512 512s-512-229.677-512-512 229.677-512 512-512 512 229.677 512 512zM963.765 512c0-249.133-202.632-451.765-451.765-451.765s-451.765 202.632-451.765 451.765 202.632 451.765 451.765 451.765 451.765-202.632 451.765-451.765z" + ], + "grid": 0, + "tags": [ + "arrow-circle-down" + ] + }, + { + "id": 3, + "paths": [ + "M512 365.809l412.853 412.853-42.586 42.586-370.266-370.266-370.206 370.206-42.586-42.586 412.792-412.792zM512 159.262l370.206 370.206 42.586-42.586-412.792-412.853-412.853 412.853 42.647 42.586 370.206-370.206z" + ], + "grid": 0, + "tags": [ + "angle-double-up" + ] + }, + { + "id": 2, + "paths": [ + "M580.909 512l-412.853 412.853-42.586-42.586 370.206-370.266-370.206-370.206 42.586-42.647 412.853 412.853zM459.836 99.147l-42.586 42.647 370.206 370.206-370.206 370.206 42.586 42.586 412.792-412.792-412.792-412.853z" + ], + "grid": 0, + "tags": [ + "angle-double-right" + ] + }, + { + "id": 1, + "paths": [ + "M481.099 512l370.206 370.206-42.586 42.586-412.792-412.792 412.853-412.853 42.586 42.586-370.266 370.266zM559.586 141.734l-42.586-42.586-412.853 412.853 412.853 412.853 42.586-42.586-370.206-370.266 370.206-370.266z" + ], + "grid": 0, + "tags": [ + "angle-double-left" + ] + }, + { + "id": 0, + "paths": [ + "M512 641.144l-412.853-412.853 42.586-42.586 370.266 370.206 370.206-370.206 42.586 42.586-412.792 412.853zM512 847.752l-370.206-370.266-42.647 42.586 412.853 412.853 412.853-412.853-42.586-42.586-370.266 370.266z" + ], + "grid": 0, + "tags": [ + "angle-double-down" + ] + } + ], + "invisible": true + }, + { + "selection": [ + { + "order": 150, + "id": 99, + "prevSize": 32, + "code": 58980, + "name": "zip", + "tempChar": "", + "ligatures": "" + }, + { + "order": 151, + "id": 98, + "prevSize": 32, + "code": 58981, + "name": "world", + "tempChar": "", + "ligatures": "" + }, + { + "order": 152, + "id": 97, + "prevSize": 32, + "code": 58982, + "name": "wheelchair", + "tempChar": "", + "ligatures": "" + }, + { + "order": 153, + "id": 96, + "prevSize": 32, + "code": 58983, + "name": "view-list", + "tempChar": "", + "ligatures": "" + }, + { + "order": 154, + "id": 95, + "prevSize": 32, + "code": 58984, + "name": "view-list-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 155, + "id": 94, + "prevSize": 32, + "code": 58985, + "name": "view-grid", + "tempChar": "", + "ligatures": "" + }, + { + "order": 156, + "id": 93, + "prevSize": 32, + "code": 58986, + "name": "uppercase", + "tempChar": "", + "ligatures": "" + }, + { + "order": 157, + "id": 92, + "prevSize": 32, + "code": 58987, + "name": "upload", + "tempChar": "", + "ligatures": "" + }, + { + "order": 158, + "id": 91, + "prevSize": 32, + "code": 58988, + "name": "underline", + "tempChar": "", + "ligatures": "" + }, + { + "order": 159, + "id": 90, + "prevSize": 32, + "code": 58989, + "name": "truck", + "tempChar": "", + "ligatures": "" + }, + { + "order": 160, + "id": 89, + "prevSize": 32, + "code": 58990, + "name": "timer", + "tempChar": "", + "ligatures": "" + }, + { + "order": 161, + "id": 88, + "prevSize": 32, + "code": 58991, + "name": "ticket", + "tempChar": "", + "ligatures": "" + }, + { + "order": 162, + "id": 87, + "prevSize": 32, + "code": 58992, + "name": "thumb-up", + "tempChar": "", + "ligatures": "" + }, + { + "order": 163, + "id": 86, + "prevSize": 32, + "code": 58993, + "name": "thumb-down", + "tempChar": "", + "ligatures": "" + }, + { + "order": 164, + "id": 85, + "prevSize": 32, + "code": 58994, + "name": "text", + "tempChar": "", + "ligatures": "" + }, + { + "order": 165, + "id": 84, + "prevSize": 32, + "code": 58995, + "name": "stats-up", + "tempChar": "", + "ligatures": "" + }, + { + "order": 166, + "id": 83, + "prevSize": 32, + "code": 58996, + "name": "stats-down", + "tempChar": "", + "ligatures": "" + }, + { + "order": 167, + "id": 82, + "prevSize": 32, + "code": 58997, + "name": "split-v", + "tempChar": "", + "ligatures": "" + }, + { + "order": 168, + "id": 81, + "prevSize": 32, + "code": 58998, + "name": "split-h", + "tempChar": "", + "ligatures": "" + }, + { + "order": 169, + "id": 80, + "prevSize": 32, + "code": 58999, + "name": "smallcap", + "tempChar": "", + "ligatures": "" + }, + { + "order": 170, + "id": 79, + "prevSize": 32, + "code": 59000, + "name": "shine", + "tempChar": "", + "ligatures": "" + }, + { + "order": 171, + "id": 78, + "prevSize": 32, + "code": 59001, + "name": "shift-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 172, + "id": 77, + "prevSize": 32, + "code": 59002, + "name": "shift-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 173, + "id": 76, + "prevSize": 32, + "code": 59003, + "name": "shield", + "tempChar": "", + "ligatures": "" + }, + { + "order": 174, + "id": 75, + "prevSize": 32, + "code": 59004, + "name": "notepad", + "tempChar": "", + "ligatures": "" + }, + { + "order": 175, + "id": 74, + "prevSize": 32, + "code": 59005, + "name": "server", + "tempChar": "", + "ligatures": "" + }, + { + "order": 176, + "id": 73, + "prevSize": 32, + "code": 59006, + "name": "quote-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 177, + "id": 72, + "prevSize": 32, + "code": 59007, + "name": "quote-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 178, + "id": 71, + "prevSize": 32, + "code": 59008, + "name": "pulse", + "tempChar": "", + "ligatures": "" + }, + { + "order": 179, + "id": 70, + "prevSize": 32, + "code": 59009, + "name": "printer", + "tempChar": "", + "ligatures": "" + }, + { + "order": 180, + "id": 69, + "prevSize": 32, + "code": 59010, + "name": "power-off", + "tempChar": "", + "ligatures": "" + }, + { + "order": 181, + "id": 68, + "prevSize": 32, + "code": 59011, + "name": "plug", + "tempChar": "", + "ligatures": "" + }, + { + "order": 182, + "id": 67, + "prevSize": 32, + "code": 59012, + "name": "pie-chart", + "tempChar": "", + "ligatures": "" + }, + { + "order": 183, + "id": 66, + "prevSize": 32, + "code": 59013, + "name": "paragraph", + "tempChar": "", + "ligatures": "" + }, + { + "order": 184, + "id": 65, + "prevSize": 32, + "code": 59014, + "name": "panel", + "tempChar": "", + "ligatures": "" + }, + { + "order": 185, + "id": 64, + "prevSize": 32, + "code": 59015, + "name": "package", + "tempChar": "", + "ligatures": "" + }, + { + "order": 186, + "id": 63, + "prevSize": 32, + "code": 59016, + "name": "music", + "tempChar": "", + "ligatures": "" + }, + { + "order": 187, + "id": 62, + "prevSize": 32, + "code": 59017, + "name": "music-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 188, + "id": 61, + "prevSize": 32, + "code": 59018, + "name": "mouse", + "tempChar": "", + "ligatures": "" + }, + { + "order": 189, + "id": 60, + "prevSize": 32, + "code": 59019, + "name": "mouse-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 190, + "id": 59, + "prevSize": 32, + "code": 59020, + "name": "money", + "tempChar": "", + "ligatures": "" + }, + { + "order": 191, + "id": 58, + "prevSize": 32, + "code": 59021, + "name": "microphone", + "tempChar": "", + "ligatures": "" + }, + { + "order": 192, + "id": 57, + "prevSize": 32, + "code": 59022, + "name": "menu", + "tempChar": "", + "ligatures": "" + }, + { + "order": 193, + "id": 56, + "prevSize": 32, + "code": 59023, + "name": "menu-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 194, + "id": 55, + "prevSize": 32, + "code": 59024, + "name": "map", + "tempChar": "", + "ligatures": "" + }, + { + "order": 195, + "id": 54, + "prevSize": 32, + "code": 59025, + "name": "map-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 196, + "id": 53, + "prevSize": 32, + "code": 59026, + "name": "loop", + "tempChar": "", + "ligatures": "" + }, + { + "order": 197, + "id": 52, + "prevSize": 32, + "code": 59027, + "name": "location-pin", + "tempChar": "", + "ligatures": "" + }, + { + "order": 198, + "id": 51, + "prevSize": 32, + "code": 59028, + "name": "list", + "tempChar": "", + "ligatures": "" + }, + { + "order": 199, + "id": 50, + "prevSize": 32, + "code": 59029, + "name": "light-bulb", + "tempChar": "", + "ligatures": "" + }, + { + "order": 200, + "id": 49, + "prevSize": 32, + "code": 59030, + "name": "Italic", + "tempChar": "", + "ligatures": "" + }, + { + "order": 201, + "id": 48, + "prevSize": 32, + "code": 59031, + "name": "info", + "tempChar": "", + "ligatures": "" + }, + { + "order": 202, + "id": 47, + "prevSize": 32, + "code": 59032, + "name": "infinite", + "tempChar": "", + "ligatures": "" + }, + { + "order": 203, + "id": 46, + "prevSize": 32, + "code": 59033, + "name": "id-badge", + "tempChar": "", + "ligatures": "" + }, + { + "order": 204, + "id": 45, + "prevSize": 32, + "code": 59034, + "name": "hummer", + "tempChar": "", + "ligatures": "" + }, + { + "order": 205, + "id": 44, + "prevSize": 32, + "code": 59035, + "name": "home", + "tempChar": "", + "ligatures": "" + }, + { + "order": 206, + "id": 43, + "prevSize": 32, + "code": 59036, + "name": "help", + "tempChar": "", + "ligatures": "" + }, + { + "order": 207, + "id": 42, + "prevSize": 32, + "code": 59037, + "name": "headphone", + "tempChar": "", + "ligatures": "" + }, + { + "order": 208, + "id": 41, + "prevSize": 32, + "code": 59038, + "name": "harddrives", + "tempChar": "", + "ligatures": "" + }, + { + "order": 209, + "id": 40, + "prevSize": 32, + "code": 59039, + "name": "harddrive", + "tempChar": "", + "ligatures": "" + }, + { + "order": 210, + "id": 39, + "prevSize": 32, + "code": 59040, + "name": "gift", + "tempChar": "", + "ligatures": "" + }, + { + "order": 211, + "id": 38, + "prevSize": 32, + "code": 59041, + "name": "game", + "tempChar": "", + "ligatures": "" + }, + { + "order": 212, + "id": 37, + "prevSize": 32, + "code": 59042, + "name": "filter", + "tempChar": "", + "ligatures": "" + }, + { + "order": 213, + "id": 36, + "prevSize": 32, + "code": 59043, + "name": "files", + "tempChar": "", + "ligatures": "" + }, + { + "order": 214, + "id": 35, + "prevSize": 32, + "code": 59044, + "name": "file", + "tempChar": "", + "ligatures": "" + }, + { + "order": 215, + "id": 34, + "prevSize": 32, + "code": 59045, + "name": "eraser", + "tempChar": "", + "ligatures": "" + }, + { + "order": 216, + "id": 33, + "prevSize": 32, + "code": 59046, + "name": "envelope", + "tempChar": "", + "ligatures": "" + }, + { + "order": 217, + "id": 32, + "prevSize": 32, + "code": 59047, + "name": "download", + "tempChar": "", + "ligatures": "" + }, + { + "order": 218, + "id": 31, + "prevSize": 32, + "code": 59048, + "name": "direction", + "tempChar": "", + "ligatures": "" + }, + { + "order": 219, + "id": 30, + "prevSize": 32, + "code": 59049, + "name": "direction-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 220, + "id": 29, + "prevSize": 32, + "code": 59050, + "name": "dashboard", + "tempChar": "", + "ligatures": "" + }, + { + "order": 221, + "id": 28, + "prevSize": 32, + "code": 59051, + "name": "control-stop", + "tempChar": "", + "ligatures": "" + }, + { + "order": 222, + "id": 27, + "prevSize": 32, + "code": 59052, + "name": "control-shuffle", + "tempChar": "", + "ligatures": "" + }, + { + "order": 223, + "id": 26, + "prevSize": 32, + "code": 59053, + "name": "control-play", + "tempChar": "", + "ligatures": "" + }, + { + "order": 224, + "id": 25, + "prevSize": 32, + "code": 59054, + "name": "control-pause", + "tempChar": "", + "ligatures": "" + }, + { + "order": 225, + "id": 24, + "prevSize": 32, + "code": 59055, + "name": "control-forward", + "tempChar": "", + "ligatures": "" + }, + { + "order": 226, + "id": 23, + "prevSize": 32, + "code": 59056, + "name": "control-backward", + "tempChar": "", + "ligatures": "" + }, + { + "order": 227, + "id": 22, + "prevSize": 32, + "code": 59057, + "name": "cloud", + "tempChar": "", + "ligatures": "" + }, + { + "order": 228, + "id": 21, + "prevSize": 32, + "code": 59058, + "name": "cloud-up", + "tempChar": "", + "ligatures": "" + }, + { + "order": 229, + "id": 20, + "prevSize": 32, + "code": 59059, + "name": "cloud-down", + "tempChar": "", + "ligatures": "" + }, + { + "order": 230, + "id": 19, + "prevSize": 32, + "code": 59060, + "name": "clipboard", + "tempChar": "", + "ligatures": "" + }, + { + "order": 231, + "id": 18, + "prevSize": 32, + "code": 59061, + "name": "car", + "tempChar": "", + "ligatures": "" + }, + { + "order": 232, + "id": 17, + "prevSize": 32, + "code": 59062, + "name": "calendar", + "tempChar": "", + "ligatures": "" + }, + { + "order": 233, + "id": 16, + "prevSize": 32, + "code": 59063, + "name": "book", + "tempChar": "", + "ligatures": "" + }, + { + "order": 234, + "id": 15, + "prevSize": 32, + "code": 59064, + "name": "bell", + "tempChar": "", + "ligatures": "" + }, + { + "order": 235, + "id": 14, + "prevSize": 32, + "code": 59065, + "name": "basketball", + "tempChar": "", + "ligatures": "" + }, + { + "order": 236, + "id": 13, + "prevSize": 32, + "code": 59066, + "name": "bar-chart", + "tempChar": "", + "ligatures": "" + }, + { + "order": 237, + "id": 12, + "prevSize": 32, + "code": 59067, + "name": "bar-chart-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 238, + "id": 11, + "prevSize": 32, + "code": 59068, + "name": "back-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 239, + "id": 10, + "prevSize": 32, + "code": 59069, + "name": "back-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 240, + "id": 9, + "prevSize": 32, + "code": 59070, + "name": "arrows-corner", + "tempChar": "", + "ligatures": "" + }, + { + "order": 241, + "id": 8, + "prevSize": 32, + "code": 59071, + "name": "archive", + "tempChar": "", + "ligatures": "" + }, + { + "order": 242, + "id": 7, + "prevSize": 32, + "code": 59072, + "name": "anchor", + "tempChar": "", + "ligatures": "" + }, + { + "order": 243, + "id": 6, + "prevSize": 32, + "code": 59073, + "name": "align-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 244, + "id": 5, + "prevSize": 32, + "code": 59074, + "name": "align-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 245, + "id": 4, + "prevSize": 32, + "code": 59075, + "name": "align-justify", + "tempChar": "", + "ligatures": "" + }, + { + "order": 246, + "id": 3, + "prevSize": 32, + "code": 59076, + "name": "align-center", + "tempChar": "", + "ligatures": "" + }, + { + "order": 247, + "id": 2, + "prevSize": 32, + "code": 59077, + "name": "alert", + "tempChar": "", + "ligatures": "" + }, + { + "order": 248, + "id": 1, + "prevSize": 32, + "code": 59078, + "name": "alarm-clock", + "tempChar": "", + "ligatures": "" + }, + { + "order": 249, + "id": 0, + "prevSize": 32, + "code": 59079, + "name": "agenda", + "tempChar": "", + "ligatures": "" + } + ], + "id": 2, + "metadata": { + "name": "Vol 2" + }, + "height": 1024, + "prevSize": 32, + "icons": [ + { + "id": 99, + "paths": [ + "M582.295 0h-461.824v1024h783.059v-704.271l-321.235-319.729zM602.353 104.93l197.15 196.247h-197.15v-196.247zM180.706 963.765v-903.529h180.706v60.235h60.235v-60.235h120.471v301.176h301.176v602.353h-662.588zM301.176 481.882h60.235v60.235h-60.235v-60.235zM361.412 481.882v-60.235h60.235v60.235h-60.235zM361.412 361.412v-60.235h60.235v60.235h-60.235zM301.176 361.412h60.235v60.235h-60.235v-60.235zM301.176 240.941h60.235v60.235h-60.235v-60.235zM361.412 240.941v-60.235h60.235v60.235h-60.235zM301.176 120.471h60.235v60.235h-60.235v-60.235zM361.412 565.549c-66.44 0-120.471 54.031-120.471 120.471s54.031 120.471 120.471 120.471c3.735 0 7.288-0.422 13.192-1.205 38.912-4.277 73.367-27.407 92.22-61.801 9.999-18.251 15.059-37.587 15.059-57.464 0-66.44-54.031-120.471-120.471-120.471zM413.997 714.632c-9.397 17.167-26.564 28.732-45.899 30.84l-6.746 0.843c-33.19 0-60.175-27.046-60.175-60.235s27.046-60.235 60.235-60.235 60.235 27.046 60.235 60.235c-0 9.577-2.59 19.215-7.65 28.552z" + ], + "grid": 0, + "tags": [ + "zip" + ] + }, + { + "id": 98, + "paths": [ + "M512.964 0c-282.323 0-512 229.677-512 512s229.677 512 512 512 512-229.677 512-512-229.737-512-512-512zM62.705 542.118h176.911c2.65 61.681 12.71 122.338 30.901 180.706h-156.792c-28.973-54.573-46.743-115.832-51.019-180.706zM239.616 481.882h-176.911c4.277-64.873 22.046-126.133 51.019-180.706h156.612c-18.131 58.368-28.13 119.025-30.72 180.706zM334.125 301.176h355.147c19.878 58.127 31.443 118.784 34.274 180.706h-423.695c2.771-61.922 14.396-122.579 34.274-180.706zM299.851 542.118h423.755c-2.952 61.922-14.517 122.579-34.455 180.706h-354.846c-19.938-58.127-31.563-118.784-34.455-180.706zM783.842 542.118h179.381c-4.277 64.873-22.046 126.133-51.019 180.706h-159.262c18.191-58.368 28.25-119.025 30.901-180.706zM783.842 481.882c-2.59-61.681-12.589-122.338-30.72-180.706h159.081c28.913 54.573 46.682 115.832 51.019 180.706h-179.381zM873.532 240.941h-141.794c-23.612-57.525-55.176-111.917-93.365-162.635 95.051 27.528 176.971 85.534 235.159 162.635zM546.575 61.922c49.634 54.031 89.389 114.447 118.784 179.019h-307.32c29.335-64.512 69.030-124.868 118.664-178.899 11.987-0.904 23.974-1.807 36.262-1.807 11.324 0 22.468 0.904 33.611 1.687zM384.482 79.089c-37.888 50.477-69.331 104.629-92.762 161.852h-139.384c57.525-76.318 138.36-133.963 232.147-161.852zM152.335 783.059h139.565c23.552 57.284 55.115 111.496 93.184 161.973-94.027-27.768-175.104-85.474-232.749-161.973zM477.425 961.958c-49.754-54.031-89.63-114.387-119.145-178.899h306.839c-29.515 64.572-69.391 124.988-119.206 179.019-10.903 0.783-21.865 1.687-32.949 1.687-12.047 0-23.793-0.904-35.539-1.807zM637.711 945.875c38.31-50.718 70.114-105.231 93.786-162.816h142.035c-58.308 77.282-140.469 135.349-235.821 162.816z" + ], + "grid": 0, + "tags": [ + "world" + ] + }, + { + "id": 97, + "paths": [ + "M656.625 774.024l58.85 12.83c-30.419 139.625-151.251 237.146-293.828 237.146-166.069 0-301.176-135.108-301.176-301.176 0-136.734 92.22-256.542 224.376-291.298l15.3 58.248c-105.653 27.829-179.441 123.663-179.441 233.050 0 132.879 108.062 240.941 240.941 240.941 114.025 0 210.643-78.005 234.978-189.741zM963.765 910.818v60.235h-112.52l-57.525-248.049h-370.929l-32.768-486.822c-51.019-14.035-88.847-60.296-88.847-115.712 0-66.44 54.031-120.471 120.471-120.471s120.471 54.031 120.471 120.471c0 56.501-39.153 103.605-91.618 116.616l16.264 241.604 218.775-54.272 14.456 58.488-229.195 56.802 8.312 123h362.496l57.525 248.049h64.632zM421.647 180.706c33.25 0 60.235-27.046 60.235-60.235s-26.985-60.235-60.235-60.235-60.235 27.046-60.235 60.235 26.985 60.235 60.235 60.235z" + ], + "grid": 0, + "tags": [ + "wheelchair" + ] + }, + { + "id": 96, + "paths": [ + "M0 0v240.941h1024v-240.941h-1024zM963.765 180.706h-903.529v-120.471h903.529v120.471zM0 602.353h1024v-240.941h-1024v240.941zM60.235 421.647h903.529v120.471h-903.529v-120.471zM0 963.765h1024v-240.941h-1024v240.941zM60.235 783.059h903.529v120.471h-903.529v-120.471z" + ], + "grid": 0, + "tags": [ + "view-list" + ] + }, + { + "id": 95, + "paths": [ + "M301.176 0v240.941h722.824v-240.941h-722.824zM963.765 180.706h-602.353v-120.471h602.353v120.471zM301.176 602.353h722.824v-240.941h-722.824v240.941zM361.412 421.647h602.353v120.471h-602.353v-120.471zM301.176 963.765h722.824v-240.941h-722.824v240.941zM361.412 783.059h602.353v120.471h-602.353v-120.471zM0 240.941h240.941v-240.941h-240.941v240.941zM60.235 60.235h120.471v120.471h-120.471v-120.471zM0 602.353h240.941v-240.941h-240.941v240.941zM60.235 421.647h120.471v120.471h-120.471v-120.471zM0 963.765h240.941v-240.941h-240.941v240.941zM60.235 783.059h120.471v120.471h-120.471v-120.471z" + ], + "grid": 0, + "tags": [ + "view-list-alt" + ] + }, + { + "id": 94, + "paths": [ + "M0 421.647h421.647v-421.647h-421.647v421.647zM60.235 60.235h301.176v301.176h-301.176v-301.176zM602.353 0v421.647h421.647v-421.647h-421.647zM963.765 361.412h-301.176v-301.176h301.176v301.176zM0 1024h421.647v-421.647h-421.647v421.647zM60.235 662.588h301.176v301.176h-301.176v-301.176zM602.353 1024h421.647v-421.647h-421.647v421.647zM662.588 662.588h301.176v301.176h-301.176v-301.176z" + ], + "grid": 0, + "tags": [ + "view-grid" + ] + }, + { + "id": 93, + "paths": [ + "M421.647 240.941h60.235v120.471h-60.235v-60.235h-120.471v481.882h60.235v60.235h-180.706v-60.235h60.235v-481.882h-120.471v60.235h-60.235v-120.471h361.412zM903.529 240.941h-361.412v120.471h60.235v-60.235h120.471v481.882h-60.235v60.235h180.706v-60.235h-60.235v-481.882h120.471v60.235h60.235v-120.471h-60.235z" + ], + "grid": 0, + "tags": [ + "uppercase" + ] + }, + { + "id": 92, + "paths": [ + "M1024 963.765v60.235h-1024v-60.235h1024zM481.822 102.882v680.177h60.235v-680.297l219.678 219.678 42.586-42.586-292.322-292.322-292.382 292.322 42.586 42.586 219.618-219.558z" + ], + "grid": 0, + "tags": [ + "upload" + ] + }, + { + "id": 91, + "paths": [ + "M903.529 60.235v60.235h-60.235v389.060c0 182.633-148.6 331.294-331.294 331.294s-331.294-148.661-331.294-331.294v-389.060h-60.235v-60.235h180.706v60.235h-60.235v389.060c0 149.444 121.615 271.059 271.059 271.059s271.059-121.615 271.059-271.059v-389.060h-60.235v-60.235h180.706zM120.471 963.765h783.059v-60.235h-783.059v60.235z" + ], + "grid": 0, + "tags": [ + "underline" + ] + }, + { + "id": 90, + "paths": [ + "M1024 180.706h-662.588v180.706h-173.056l-71.68 240.941h-116.676v299.791h120.591c0 0.482-0.12 0.904-0.12 1.385 0 66.44 54.031 120.471 120.471 120.471s120.471-54.031 120.471-120.471c0-0.482-0.12-0.904-0.12-1.385h301.478c-0.060 0.482-0.181 0.904-0.181 1.385 0 66.44 54.031 120.471 120.471 120.471s120.471-54.031 120.471-120.471c0-0.482-0.12-0.904-0.12-1.385h120.591v-721.438zM233.291 421.647h128.12v180.706h-181.911l53.79-180.706zM240.941 963.765c-33.19 0-60.235-27.046-60.235-60.235s27.046-60.235 60.235-60.235 60.235 27.046 60.235 60.235-27.046 60.235-60.235 60.235zM783.059 963.765c-33.19 0-60.235-27.046-60.235-60.235s27.046-60.235 60.235-60.235 60.235 27.046 60.235 60.235-27.046 60.235-60.235 60.235zM963.765 841.909h-77.764c-21.082-35.057-59.091-58.85-102.942-58.85s-81.86 23.793-102.942 58.85h-336.233c-21.082-35.057-59.091-58.85-102.942-58.85s-81.86 23.793-102.942 58.85h-77.764v-179.32h361.412v-421.647h542.118v600.968z" + ], + "grid": 0, + "tags": [ + "truck" + ] + }, + { + "id": 89, + "paths": [ + "M542.118 121.976v-61.741h90.353v-60.235h-240.941v60.235h90.353v61.741c-235.038 15.661-421.647 211.305-421.647 450.259 0 249.133 202.632 451.765 451.765 451.765s451.765-202.632 451.765-451.765c0-238.953-186.609-434.598-421.647-450.259zM512 963.765c-215.883 0-391.529-175.646-391.529-391.529s175.646-391.529 391.529-391.529 391.529 175.646 391.529 391.529-175.646 391.529-391.529 391.529zM542.118 542.118h240.941v60.235h-301.176v-240.941h60.235v180.706z" + ], + "grid": 0, + "tags": [ + "timer" + ] + }, + { + "id": 88, + "paths": [ + "M572.235 60.235v30.118c0 33.25-27.046 60.235-60.235 60.235s-60.235-26.985-60.235-60.235v-30.118h-210.824v903.529h210.824v-30.118c0-33.25 27.046-60.235 60.235-60.235s60.235 26.985 60.235 60.235v30.118h210.824v-903.529h-210.824zM395.324 120.471c13.432 51.863 60.657 90.353 116.676 90.353s103.243-38.49 116.676-90.353h94.148v361.412h-421.647v-361.412h94.148zM628.676 903.529c-13.372-51.863-60.597-90.353-116.676-90.353s-103.243 38.49-116.676 90.353h-94.148v-361.412h421.647v361.412h-94.148z" + ], + "grid": 0, + "tags": [ + "ticket" + ] + }, + { + "id": 87, + "paths": [ + "M925.696 585.788c5 12.228 7.951 28.070 7.951 48.61 0 31.684-14.456 58.488-37.406 74.27 8.312 14.095 12.288 30.178 12.288 46.261 0 33.852-18.854 62.705-47.285 77.583 4.819 11.324 7.65 25.299 7.77 42.466 0.12 27.046-7.77 48.791-23.552 64.632-16.625 16.685-40.177 25.178-69.933 25.178h-338.824c-45.417 0-76.68-24.335-99.569-42.165-13.192-10.24-25.66-19.998-34.334-19.998h-126.615c-16.625 0-30.118-13.493-30.118-30.118s13.493-30.118 30.118-30.118h126.615c29.335 0 51.622 17.348 71.319 32.648 19.456 15.119 37.828 29.455 62.584 29.455h338.824c12.77 0 22.468-2.59 27.226-7.409 4.096-4.096 6.144-11.445 6.084-21.805-0.181-26.323-5.542-31.985-61.862-31.985h-6.385c-16.625 0-30.118-13.493-30.118-30.118s13.493-30.118 30.118-30.118h75.776c18.492 0 31.925-11.866 31.925-28.19 0-27.106-27.046-31.142-43.189-31.142h-45.176c-16.625 0-30.118-13.493-30.118-30.118s13.493-30.118 30.118-30.118h86.558c19.938 0 26.985-15.059 26.985-29.154 0-29.636 0-29.636-26.443-30.419-3.072-0.060-6.264-0.301-9.397-0.422h-64.813c-16.625 0-30.118-13.493-30.118-30.118s13.493-30.118 30.118-30.118h59.151c0.422 0 0.783-0.241 1.205-0.241h38.008c17.769 0 32.286-13.673 32.286-30.419s-14.456-30.419-32.286-30.419h-268.228c-8.975 0-17.468-3.976-23.191-10.903-5.722-6.927-8.072-16.023-6.385-24.817l31.322-164.683c3.735-16.444 14.336-63.066 1.988-83.727-3.192-5.361-10.963-11.083-20.48-11.083 0 0 0 0 0 0-11.806 0-23.913 9.457-34.093 26.504l-195.223 315.272c-5.481 8.855-15.179 14.276-25.6 14.276h-154.744c-16.625 0-30.118-13.493-30.118-30.118s13.493-30.118 30.118-30.118h137.999l186.007-300.574c28.672-48.188 65.958-55.477 85.534-55.477 0 0 0 0 0.060 0 29.214 0 57.525 15.902 72.162 40.418 21.926 36.683 14.336 87.040 5.24 126.856l-24.275 127.94h231.846c51.019 0 92.521 40.659 92.521 90.654 0.060 29.997-14.938 56.681-37.948 73.186z" + ], + "grid": 0, + "tags": [ + "thumb-up" + ] + }, + { + "id": 86, + "paths": [ + "M877.508 572.296c0 16.625-13.493 30.118-30.118 30.118h-137.999l-186.007 300.574c-28.732 48.188-65.958 55.477-85.534 55.477 0 0-0.060 0-0.060 0-29.214 0-57.525-15.902-72.222-40.418-21.926-36.744-14.336-87.1-5.24-126.856l24.275-127.94h-231.846c-51.019 0-92.461-40.659-92.461-90.654 0-33.009 18.071-61.982 45.056-77.824-9.216-12.589-15.059-27.407-15.059-43.912 0-31.684 14.456-58.488 37.406-74.27-8.312-14.155-12.288-30.238-12.288-46.321 0-34.635 19.757-63.97 49.212-78.607-8.011-15.42-9.758-31.081-9.758-41.562 0-56.139 34.997-89.63 93.545-89.63h338.824c45.417 0 76.74 24.335 99.569 42.165 13.192 10.24 25.66 19.998 34.274 19.998h126.675c16.625 0 30.118 13.493 30.118 30.118s-13.493 30.118-30.118 30.118h-126.675c-29.335 0-51.622-17.348-71.319-32.648-19.396-15.24-37.768-29.515-62.524-29.515h-338.824c-28.13 0-33.31 9.939-33.31 29.395 0 9.517 0 31.744 61.862 31.744h6.325c16.625 0 30.118 13.493 30.118 30.118s-13.493 30.118-30.118 30.118h-75.776c-18.492 0-31.864 11.866-31.864 28.19 0 27.106 27.046 31.142 43.189 31.142h45.176c16.625 0 30.118 13.493 30.118 30.118s-13.493 30.118-30.118 30.118h-86.498c-19.878 0-26.985 15.059-26.985 29.154 0 10.12 22.046 27.528 42.466 30.901h58.187c16.625 0 30.118 13.493 30.118 30.118s-13.493 30.118-30.118 30.118h-59.211c-0.422 0-0.783 0.241-1.205 0.241h-38.008c-17.769 0-32.226 13.673-32.226 30.419s14.456 30.419 32.226 30.419h268.228c8.975 0 17.468 3.976 23.191 10.903 5.722 6.927 8.072 16.023 6.385 24.817l-31.322 164.683c-3.735 16.444-14.336 63.006-1.988 83.727 3.192 5.301 10.963 11.083 20.48 11.083 11.806 0 23.913-9.457 34.093-26.504l195.102-315.272c5.481-8.855 15.179-14.276 25.6-14.276h154.744c16.806-0 30.238 13.493 30.238 30.118z" + ], + "grid": 0, + "tags": [ + "thumb-down" + ] + }, + { + "id": 85, + "paths": [ + "M843.294 120.471v180.706h-60.235v-120.471h-240.941v722.824h98.967v60.235h-258.168v-60.235h98.967v-722.824h-240.941v120.471h-60.235v-180.706h662.588z" + ], + "grid": 0, + "tags": [ + "text" + ] + }, + { + "id": 84, + "paths": [ + "M1024 963.765v60.235h-1024v-60.235h1024zM313.404 480.437l253.229 182.272 336.896-376.531v137.577h60.235v-243.049h-243.11v60.235h142.517l-305.393 341.233-248.712-179.14-263.349 238.291 40.418 44.634 227.268-205.523z" + ], + "grid": 0, + "tags": [ + "stats-up" + ] + }, + { + "id": 83, + "paths": [ + "M311.176 530.251l-263.288-238.291 40.358-44.634 227.268 205.583 253.229-182.272 336.896 376.471v-137.638h60.235v243.11h-243.11v-60.235h142.517l-305.333-341.233-248.772 179.14zM0 963.765v60.235h1024v-60.235h-1024z" + ], + "grid": 0, + "tags": [ + "stats-down" + ] + }, + { + "id": 82, + "paths": [ + "M641.265 791.853l42.586 42.586-171.851 171.912-171.912-171.912 42.586-42.586 99.208 99.208v-227.208h60.235v227.208l99.147-99.208zM481.882 132.939v227.208h60.235v-227.208l99.147 99.147 42.586-42.586-171.851-171.851-171.912 171.851 42.586 42.586 99.208-99.147zM0 481.882v60.235h1024v-60.235h-1024z" + ], + "grid": 0, + "tags": [ + "split-v" + ] + }, + { + "id": 81, + "paths": [ + "M132.939 481.882h227.208v60.235h-227.208l99.147 99.147-42.586 42.586-171.851-171.851 171.912-171.912 42.586 42.586-99.208 99.208zM834.5 340.088l-42.586 42.586 99.147 99.208h-227.208v60.235h227.208l-99.147 99.147 42.586 42.586 171.851-171.851-171.851-171.912zM481.882 1024h60.235v-1024h-60.235v1024z" + ], + "grid": 0, + "tags": [ + "split-h" + ] + }, + { + "id": 80, + "paths": [ + "M361.412 356.894h60.235v120.471h-60.235v-60.235h-120.471v481.882h60.235v60.235h-180.706v-60.235h60.235v-481.882h-120.471v60.235h-60.235v-120.471h361.412zM963.765 120.471h-602.353v155.226h60.235v-94.991h240.941v722.824h-60.235v60.235h180.706v-60.235h-60.235v-722.824h240.941v94.991h60.235v-155.226h-60.235z" + ], + "grid": 0, + "tags": [ + "smallcap" + ] + }, + { + "id": 79, + "paths": [ + "M512 301.176c-116.254 0-210.824 94.569-210.824 210.824s94.569 210.824 210.824 210.824 210.824-94.569 210.824-210.824-94.569-210.824-210.824-210.824zM512 662.588c-83.004 0-150.588-67.584-150.588-150.588s67.584-150.588 150.588-150.588 150.588 67.584 150.588 150.588-67.584 150.588-150.588 150.588zM542.118 240.941h-60.235v-180.706h60.235v180.706zM481.882 783.059h60.235v180.706h-60.235v-180.706zM963.765 481.882v60.235h-180.706v-60.235h180.706zM240.941 542.118h-180.706v-60.235h180.706v60.235zM724.992 341.594l-42.586-42.586 127.759-127.759 42.586 42.586-127.759 127.759zM299.008 682.406l42.586 42.586-127.759 127.759-42.586-42.586 127.759-127.759zM724.992 682.406l127.759 127.759-42.586 42.586-127.759-127.759 42.586-42.586zM299.008 341.594l-127.759-127.759 42.586-42.586 127.759 127.759-42.586 42.586z" + ], + "grid": 0, + "tags": [ + "shine" + ] + }, + { + "id": 78, + "paths": [ + "M503.206 219.618l292.322 292.382-292.382 292.382-42.586-42.586 219.678-219.678h-680.237v-60.235h680.177l-219.618-219.618 42.647-42.647zM963.765 0v1024h60.235v-1024h-60.235z" + ], + "grid": 0, + "tags": [ + "shift-right" + ] + }, + { + "id": 77, + "paths": [ + "M1024 542.178h-680.177l219.618 219.618-42.586 42.586-292.382-292.382 292.382-292.382 42.586 42.586-219.738 219.738h680.297v60.235zM0 1024h60.235v-1024h-60.235v1024z" + ], + "grid": 0, + "tags": [ + "shift-left" + ] + }, + { + "id": 76, + "paths": [ + "M903.529 61.199c0 99.629-81.077 180.706-180.706 180.706s-180.706-81.077-180.706-180.706h-60.235c0 99.629-81.077 180.706-180.706 180.706s-180.706-81.077-180.706-180.706h-60.235v412.431c0 325.572 421.768 481.882 439.778 488.328l9.999 3.674 10.059-3.494c18.071-6.204 443.693-155.829 443.693-490.195v-410.744h-60.235zM120.471 473.57v-253.229c44.152 50.116 108.845 81.8 180.706 81.8 72.041 0 136.493-32.105 180.706-82.462v669.455c-99.93-44.996-361.412-184.742-361.412-415.563zM903.529 471.944c0 234.616-258.59 371.23-361.412 416.346v-668.672c44.213 50.357 108.664 82.462 180.706 82.462 71.861 0 136.553-31.624 180.706-81.739v251.603z" + ], + "grid": 0, + "tags": [ + "shield" + ] + }, + { + "id": 75, + "paths": [ + "M60.235 0v1024h903.529v-1024h-903.529zM903.529 963.765h-783.059v-903.529h120.471v65.777c-34.997 12.469-60.235 45.598-60.235 84.811 0 49.815 40.538 90.353 90.353 90.353s90.353-40.538 90.353-90.353c0-39.213-25.239-72.343-60.235-84.811v-65.777h180.706v65.777c-34.997 12.469-60.235 45.598-60.235 84.811 0 49.815 40.538 90.353 90.353 90.353s90.353-40.538 90.353-90.353c0-39.213-25.239-72.343-60.235-84.811v-65.777h180.706v65.777c-34.997 12.469-60.235 45.598-60.235 84.811 0 49.815 40.538 90.353 90.353 90.353s90.353-40.538 90.353-90.353c0-39.213-25.239-72.343-60.235-84.811v-65.777h120.471v903.529zM301.176 210.824c0 16.565-13.553 30.118-30.118 30.118s-30.118-13.553-30.118-30.118 13.553-30.118 30.118-30.118 30.118 13.553 30.118 30.118zM542.118 210.824c0 16.565-13.553 30.118-30.118 30.118s-30.118-13.553-30.118-30.118 13.553-30.118 30.118-30.118 30.118 13.553 30.118 30.118zM783.059 210.824c0 16.565-13.553 30.118-30.118 30.118s-30.118-13.553-30.118-30.118 13.553-30.118 30.118-30.118 30.118 13.553 30.118 30.118z" + ], + "grid": 0, + "tags": [ + "notepad" + ] + }, + { + "id": 74, + "paths": [ + "M1024 210.824c0-136.915-263.831-210.824-512-210.824s-512 73.909-512 210.824c0 8.975 1.446 19.155 4.819 30.118h-4.819v572.235c0 136.915 263.831 210.824 512 210.824s512-73.909 512-210.824v-572.235h-4.819c3.373-10.963 4.819-21.143 4.819-30.118zM512 60.235c258.59 0 451.765 79.511 451.765 150.588 0 23.974-23.371 50.296-65.837 74.029-85.474 47.947-229.737 76.559-385.928 76.559s-300.454-28.612-385.928-76.559c-42.466-23.733-65.837-50.056-65.837-74.029 0-71.078 193.175-150.588 451.765-150.588zM512 963.765c-258.59 0-451.765-79.511-451.765-150.588v-98.364c10.541 8.132 22.106 16.324 36.382 24.275 94.088 52.646 249.374 84.088 415.383 84.088 20.781 0 41.382-0.482 61.621-1.446 142.216-6.686 271.36-36.563 353.702-82.643v0c0-0.060 0.060-0.060 0.060-0.060 14.216-8.011 25.901-16.143 36.382-24.275v98.424c0 71.078-193.175 150.588-451.765 150.588zM897.928 686.502c-85.534 47.887-229.737 76.499-385.928 76.499-19.516 0-38.912-0.482-57.946-1.325-133.361-6.144-253.169-33.25-327.981-75.113v0c-42.406-23.853-65.837-50.176-65.837-74.15v-98.424c10.541 8.132 22.167 16.324 36.442 24.275 94.027 52.646 249.314 84.088 415.322 84.088s321.295-31.443 415.322-84.088c14.276-7.951 25.901-16.143 36.442-24.275v98.424c0 23.974-23.432 50.296-65.837 74.089zM897.867 485.677c-85.474 47.887-229.677 76.499-385.867 76.499s-300.393-28.612-385.867-76.499c-42.466-23.733-65.897-50.116-65.897-74.089v-98.424c10.541 8.192 22.106 16.324 36.382 24.335 94.088 52.706 249.314 84.149 415.383 84.149s321.295-31.443 415.383-84.149c14.276-8.011 25.841-16.143 36.382-24.335v98.424c0 23.974-23.432 50.357-65.897 74.089z" + ], + "grid": 0, + "tags": [ + "server" + ] + }, + { + "id": 73, + "paths": [ + "M440.139 413.335c0-117.218-95.352-212.57-212.57-212.57-117.158 0-212.51 95.352-212.51 212.57 0 117.158 95.352 212.51 212.51 212.51 44.213 0 85.293-13.673 119.326-36.804-74.15 209.016-240.339 233.532-248.952 234.677l7.409 59.753c3.072-0.361 308.706-42.345 335.089-465.257l-0.783-0.060c0.060-1.626 0.482-3.132 0.482-4.819zM227.569 565.67c-83.968 0-152.275-68.307-152.275-152.275s68.307-152.335 152.275-152.335c84.028 0 152.335 68.367 152.335 152.335s-68.307 152.275-152.335 152.275zM1007.977 418.153c0.060-1.626 0.482-3.192 0.482-4.819 0-117.218-95.352-212.57-212.51-212.57s-212.51 95.352-212.51 212.57c0 117.158 95.352 212.51 212.51 212.51 44.213 0 85.293-13.673 119.326-36.804-74.089 209.016-240.339 233.532-248.952 234.677l7.409 59.753c3.072-0.361 308.706-42.345 335.089-465.257l-0.843-0.060zM795.949 565.67c-83.968 0-152.275-68.307-152.275-152.275s68.307-152.335 152.275-152.335 152.275 68.367 152.275 152.335-68.307 152.275-152.275 152.275z" + ], + "grid": 0, + "tags": [ + "quote-right" + ] + }, + { + "id": 72, + "paths": [ + "M793.239 458.632c-44.213 0-85.353 13.673-119.386 36.864 74.089-209.137 240.399-233.713 249.013-234.797l-7.409-59.753c-3.072 0.361-308.766 42.406-335.089 465.318l0.904 0.060c0 1.626-0.482 3.253-0.482 4.879 0 117.158 95.352 212.51 212.51 212.51s212.51-95.352 212.51-212.51-95.413-212.57-212.57-212.57zM793.239 823.477c-84.028 0-152.275-68.307-152.275-152.275s68.307-152.275 152.275-152.275 152.275 68.307 152.275 152.275-68.307 152.275-152.275 152.275zM224.858 458.632c-44.213 0-85.293 13.673-119.326 36.864 74.089-209.137 240.339-233.713 248.952-234.797l-7.409-59.753c-3.072 0.361-308.706 42.406-335.149 465.318l0.904 0.060c0 1.626-0.482 3.253-0.482 4.879 0 117.158 95.352 212.51 212.51 212.51s212.51-95.352 212.51-212.51-95.292-212.57-212.51-212.57zM224.858 823.477c-84.028 0-152.275-68.307-152.275-152.275s68.307-152.275 152.275-152.275 152.275 68.307 152.275 152.275-68.247 152.275-152.275 152.275z" + ], + "grid": 0, + "tags": [ + "quote-left" + ] + }, + { + "id": 71, + "paths": [ + "M863.172 481.882l-113.001-263.65-207.089 589.282-241.845-789.685-142.758 464.053h-158.479v60.235h202.933l98.184-319.006 237.929 777.216 216.666-616.207 67.704 157.997h200.584v-60.235z" + ], + "grid": 0, + "tags": [ + "pulse" + ] + }, + { + "id": 70, + "paths": [ + "M1024 361.412h-181.188v-109.508l-271.24-251.904h-391.349v361.412h-180.224v481.882h180.706v186.729h662.588v-186.729h180.706v-481.882zM601.871 110.351l140.649 130.59h-140.649v-130.59zM240.459 60.235h301.176v240.941h240.941v60.235h-542.118v-301.176zM783.059 969.788h-542.118v-301.176h542.118v301.176zM963.765 783.059h-120.471v-174.682h-662.588v174.682h-120.471v-361.412h903.529v361.412zM662.95 783.059h-361.773v-60.235h361.773v60.235zM542.118 903.529h-240.941v-60.235h240.941v60.235zM180.706 542.118h-60.235v-60.235h60.235v60.235zM301.176 542.118h-60.235v-60.235h60.235v60.235z" + ], + "grid": 0, + "tags": [ + "printer" + ] + }, + { + "id": 69, + "paths": [ + "M963.765 572.235c0 249.133-202.632 451.765-451.765 451.765s-451.765-202.632-451.765-451.765c0-210.703 149.143-396.288 354.665-441.284l12.89 58.85c-178.056 38.972-307.32 199.8-307.32 382.434 0 215.883 175.646 391.529 391.529 391.529s391.529-175.646 391.529-391.529c0-182.392-129.084-343.221-306.959-382.374l12.951-58.85c205.282 45.237 354.244 230.761 354.244 441.224zM542.118 0h-60.235v602.353h60.235v-602.353z" + ], + "grid": 0, + "tags": [ + "power-off" + ] + }, + { + "id": 68, + "paths": [ + "M180.706 240.941v302.020c0 165.587 148.661 300.333 331.294 300.333s331.294-134.746 331.294-300.333v-302.020h-662.588zM783.059 542.961c0 132.397-121.615 240.098-271.059 240.098s-271.059-107.701-271.059-240.098v-241.784h542.118v241.784zM422.611 180.706h-60.235v-180.706h60.235v180.706zM661.624 180.706h-60.235v-180.706h60.235v180.706zM481.882 843.294h60.235v180.706h-60.235v-180.706zM662.588 481.882h-301.176v-60.235h301.176v60.235zM662.588 602.353h-301.176v-60.235h301.176v60.235z" + ], + "grid": 0, + "tags": [ + "plug" + ] + }, + { + "id": 67, + "paths": [ + "M902.626 538.684l60.115 4.036c-15.842 236.122-213.835 421.045-450.741 421.045-249.133 0-451.765-202.632-451.765-451.765 0-235.219 183.537-433.092 417.912-450.5l4.457 60.055c-203.053 15.059-362.135 186.549-362.135 390.445 0 215.883 175.646 391.529 391.529 391.529 205.342 0 376.892-160.226 390.626-364.845zM1024 451.704v30.118l-30.178 1.024h-450.68v-482.906l30.178 0.060c248.531 0.542 450.68 203.234 450.68 451.704zM962.921 422.611c-13.432-190.946-167.213-345.931-359.544-361.111v361.111h359.544z" + ], + "grid": 0, + "tags": [ + "pie-chart" + ] + }, + { + "id": 66, + "paths": [ + "M963.765 61.801h-663.070c-131.373 0-238.231 106.857-238.231 238.231s106.857 238.17 238.231 238.17h181.188v425.562h60.235v-841.728h121.374v841.728h60.235v-841.728h240.038v-60.235zM481.882 478.027h-181.188c-98.184 0-177.995-79.812-177.995-177.935 0-98.184 79.812-177.995 177.995-177.995h181.188v355.93z" + ], + "grid": 0, + "tags": [ + "paragraph" + ] + }, + { + "id": 65, + "paths": [ + "M0 0v1024h1024v-1024h-1024zM963.765 963.765h-903.529v-903.529h903.529v903.529zM240.941 616.328v166.731h60.235v-166.731c44.454-13.131 77.161-53.85 77.161-102.46s-32.708-89.329-77.161-102.46v-170.466h-60.235v170.466c-44.454 13.131-77.161 53.85-77.161 102.46s32.708 89.389 77.161 102.46zM271.059 466.824c25.961 0 47.044 21.143 47.044 47.044s-21.082 47.044-47.044 47.044-47.044-21.082-47.044-47.044 21.082-47.044 47.044-47.044zM481.882 488.328v294.731h60.235v-294.731c44.454-13.131 77.161-53.85 77.161-102.46s-32.708-89.329-77.161-102.46v-42.466h-60.235v42.466c-44.454 13.131-77.161 53.85-77.161 102.46s32.708 89.389 77.161 102.46zM512 338.824c25.961 0 47.044 21.143 47.044 47.044s-21.082 47.104-47.044 47.104-47.044-21.143-47.044-47.104 21.082-47.044 47.044-47.044zM752.941 808.177c59.151 0 107.279-48.128 107.279-107.279 0-48.67-32.708-89.329-77.161-102.46v-357.496h-60.235v357.496c-44.454 13.131-77.161 53.85-77.161 102.46 0 59.151 48.128 107.279 107.279 107.279zM752.941 653.794c25.961 0 47.044 21.143 47.044 47.044s-21.143 47.044-47.044 47.044-47.044-21.143-47.044-47.044 21.082-47.044 47.044-47.044z" + ], + "grid": 0, + "tags": [ + "panel" + ] + }, + { + "id": 64, + "paths": [ + "M513.024-2.108l-513.024 194.018v644.096l512 192.030 512-192.030v-644.036l-510.976-194.078zM908.589 212.51l-155.768 58.428-394.963-149.926 155.106-58.669 395.625 150.167zM512 361.231l-396.408-148.661 157.154-59.392 394.601 149.805-155.347 58.248zM60.235 256.181l421.647 158.118v538.022l-421.647-158.118v-538.022zM542.118 952.32v-538.022l421.647-158.118v538.022l-421.647 158.118z" + ], + "grid": 0, + "tags": [ + "package" + ] + }, + { + "id": 63, + "paths": [ + "M889.374 268.589l25.359-54.573-432.851-200.945v595.004c-30.78-26.744-70.475-43.49-114.327-43.49-96.798 0-175.526 78.788-175.526 175.526s78.728 175.526 175.526 175.526 175.526-78.788 175.526-175.526c0-3.192-0.783-6.204-0.964-9.276v-623.435l347.256 161.19zM367.556 855.401c-63.608 0-115.29-51.682-115.29-115.29s51.682-115.29 115.29-115.29 115.29 51.682 115.29 115.29-51.742 115.29-115.29 115.29z" + ], + "grid": 0, + "tags": [ + "music" + ] + }, + { + "id": 62, + "paths": [ + "M361.412 15.962v555.49c-30.84-26.865-70.656-43.731-114.688-43.731-96.798 0-175.526 78.788-175.526 175.526s78.728 175.526 175.526 175.526c94.569 0 171.369-75.354 174.863-169.080v0-0.361c0.060-2.048 0.602-3.976 0.602-6.144s-0.482-4.036-0.542-6.084v-367.074l542.118 106.074v281.058c-30.901-27.166-70.957-44.213-115.29-44.213-96.798 0-175.526 78.788-175.526 175.526s78.728 175.526 175.526 175.526c95.473 0 172.996-76.68 175.104-171.61l0.422 0.12v-706.921l-662.588-129.626zM246.724 818.537c-63.608 0-115.29-51.682-115.29-115.29s51.682-115.29 115.29-115.29c61.5 0 111.435 48.489 114.688 109.146v12.228c-3.253 60.717-53.188 109.207-114.688 109.207zM421.647 268.71v-179.622l542.118 106.135v179.501l-542.118-106.014zM848.474 963.765c-63.608 0-115.29-51.682-115.29-115.29s51.682-115.29 115.29-115.29 115.29 51.682 115.29 115.29-51.682 115.29-115.29 115.29z" + ], + "grid": 0, + "tags": [ + "music-alt" + ] + }, + { + "id": 61, + "paths": [ + "M512 0c-182.694 0-331.294 148.6-331.294 331.294v361.412c0 182.694 148.6 331.294 331.294 331.294s331.294-148.6 331.294-331.294v-361.412c0-182.694-148.6-331.294-331.294-331.294zM783.059 692.706c0 149.444-121.615 271.059-271.059 271.059s-271.059-121.615-271.059-271.059v-361.412c0-149.444 121.615-271.059 271.059-271.059s271.059 121.615 271.059 271.059v361.412zM512 210.824c-49.815 0-90.353 40.538-90.353 90.353v120.471c0 49.815 40.538 90.353 90.353 90.353s90.353-40.538 90.353-90.353v-120.471c0-49.815-40.538-90.353-90.353-90.353zM542.118 421.647c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v-120.471c0-16.625 13.493-30.118 30.118-30.118s30.118 13.493 30.118 30.118v120.471z" + ], + "grid": 0, + "tags": [ + "mouse" + ] + }, + { + "id": 60, + "paths": [ + "M512 0c-182.694 0-331.294 148.6-331.294 331.294v361.412c0 182.694 148.6 331.294 331.294 331.294s331.294-148.6 331.294-331.294v-361.412c0-182.694-148.6-331.294-331.294-331.294zM783.059 331.294v30.118h-240.941v-298.104c135.168 15.179 240.941 128.843 240.941 267.987zM481.882 63.307v298.104h-240.941v-30.118c0-139.144 105.773-252.808 240.941-267.987zM512 963.765c-149.444 0-271.059-121.615-271.059-271.059v-271.059h542.118v271.059c0 149.444-121.615 271.059-271.059 271.059z" + ], + "grid": 0, + "tags": [ + "mouse-alt" + ] + }, + { + "id": 59, + "paths": [ + "M645.662 576.873v0l-0.602-0.602c-0.783-0.663-1.325-1.446-2.168-2.048l-0.181 0.241-100.593-77.222v-343.763c68.668 13.131 120.471 70.114 120.471 138.3l30.057 3.614 30.178-3.614c0-101.195-78.848-184.44-180.706-198.536v-93.244h-60.235v93.244c-101.858 14.095-180.706 97.34-180.706 198.536 0 56.742 25.359 110.712 69.331 148.962l-0.301 0.301 2.409 1.867c0 0 0 0 0 0v0l109.267 83.968v343.642c-68.668-13.131-120.471-70.114-120.471-138.3h-60.235c0 101.195 78.848 184.44 180.706 198.536v93.304h60.235v-93.304c101.858-14.095 180.706-97.34 180.706-198.536 0-60.597-28.25-116.796-77.161-155.347zM410.925 396.408c-31.443-26.865-49.513-64.873-49.513-104.629 0-68.186 51.802-125.169 120.471-138.3v297.442l-70.957-54.513zM542.118 870.52v-297.321l66.5 51.14c34.153 26.925 53.971 66.018 53.971 107.881 0 68.186-51.802 125.169-120.471 138.3z" + ], + "grid": 0, + "tags": [ + "money" + ] + }, + { + "id": 58, + "paths": [ + "M512 722.824c149.444 0 271.059-121.615 271.059-271.059v-180.706c0-139.204-105.773-252.808-240.941-267.987v-3.072h-60.235v3.072c-135.168 15.179-240.941 128.783-240.941 267.987v180.706c0 149.444 121.615 271.059 271.059 271.059zM361.412 124.024v116.917h60.235v-159.503c18.793-8.975 38.912-15.059 60.235-18.131v177.634h60.235v-177.634c21.323 3.072 41.442 9.096 60.235 18.131v159.503h60.235v-116.917c37.165 38.008 60.235 89.811 60.235 147.034v30.118h-421.647v-30.118c0-57.224 23.070-109.086 60.235-147.034zM301.176 361.412h421.647v90.353c0 116.254-94.569 210.824-210.824 210.824s-210.824-94.569-210.824-210.824v-90.353zM903.529 421.647v195.765c0 124.506-121.615 225.882-271.059 225.882h-90.353v180.706h-60.235v-180.706h-90.353c-149.444 0-271.059-101.376-271.059-225.882v-195.765h60.235v195.765c0 91.377 94.569 165.647 210.824 165.647h240.941c116.254 0 210.824-74.27 210.824-165.647v-195.765h60.235z" + ], + "grid": 0, + "tags": [ + "microphone" + ] + }, + { + "id": 57, + "paths": [ + "M963.765 180.706v120.471h-903.529v-120.471h903.529zM60.235 602.353h903.529v-120.471h-903.529v120.471zM60.235 903.529h903.529v-120.471h-903.529v120.471z" + ], + "grid": 0, + "tags": [ + "menu" + ] + }, + { + "id": 56, + "paths": [ + "M963.765 120.471v120.471h-662.588v-120.471h662.588zM301.176 542.118h662.588v-120.471h-662.588v120.471zM301.176 843.294h662.588v-120.471h-662.588v120.471zM120.471 120.471c-33.25 0-60.235 26.925-60.235 60.235s26.985 60.235 60.235 60.235 60.235-26.925 60.235-60.235-26.985-60.235-60.235-60.235zM120.471 421.647c-33.25 0-60.235 26.925-60.235 60.235s26.985 60.235 60.235 60.235 60.235-26.925 60.235-60.235-26.985-60.235-60.235-60.235zM120.471 722.824c-33.25 0-60.235 26.925-60.235 60.235s26.985 60.235 60.235 60.235 60.235-26.925 60.235-60.235-26.985-60.235-60.235-60.235z" + ], + "grid": 0, + "tags": [ + "menu-alt" + ] + }, + { + "id": 55, + "paths": [ + "M632.41 267.324l-295.273-85.414-337.137-1.205v662.588h322.138l312.983 89.088 328.644-96.678v-665.058l-331.354 96.678zM361.412 251.603l240.941 69.692v539.106l-240.941-68.608v-540.19zM60.235 240.941h240.941v543.142l-240.941-1.024v-542.118zM903.529 790.648l-240.941 70.897v-540.25l240.941-70.295v539.648z" + ], + "grid": 0, + "tags": [ + "map" + ] + }, + { + "id": 54, + "paths": [ + "M903.529 240.941v4.156l-0.783-3.494-61.139 13.312c-8.373-108.604-98.424-194.68-209.137-194.68-110.893 0-201.126 86.438-209.257 195.283l-61.801-13.432v-1.144h-361.412v662.588h322.138l312.983 89.088 328.644-96.678v-654.999h-60.235zM632.471 120.471c83.064 0 150.588 67.584 150.588 150.588 0 108.785-103.544 253.53-150.588 313.645-47.044-60.115-150.588-204.86-150.588-313.645 0-83.004 67.524-150.588 150.588-150.588zM361.412 303.706l65.114 14.155c24.817 136.674 144.926 288.407 175.827 325.632v277.203l-240.941-68.608v-548.382zM60.235 301.176h240.941v543.142l-240.941-1.024v-542.118zM662.588 921.781v-278.347c30.961-37.286 151.371-189.44 175.947-326.234l64.994-14.095v547.78l-240.941 70.897zM714.27 276.058c0-45.116-36.683-81.8-81.8-81.8s-81.8 36.683-81.8 81.8 36.683 81.86 81.8 81.86 81.8-36.683 81.8-81.86zM610.906 276.058c0-11.927 9.698-21.564 21.564-21.564s21.564 9.698 21.564 21.564-9.698 21.624-21.564 21.624-21.564-9.698-21.564-21.624z" + ], + "grid": 0, + "tags": [ + "map-alt" + ] + }, + { + "id": 53, + "paths": [ + "M60.235 542.118c0 132.879 103.063 240.941 229.677 240.941v60.235c-159.864 0-289.912-135.108-289.912-301.176s130.048-301.176 289.912-301.176h254.735l-99.147-99.147 42.586-42.586 171.912 171.851-171.851 171.912-42.647-42.647 99.208-99.147h-254.795c-126.615 0-229.677 108.062-229.677 240.941zM734.088 240.941v60.235c126.615 0 229.677 108.062 229.677 240.941s-103.063 240.941-229.677 240.941h-254.795l99.147-99.147-42.586-42.586-171.851 171.851 171.912 171.912 42.586-42.586-99.208-99.208h254.735c159.925 0 289.973-135.108 289.973-301.176s-130.048-301.176-289.912-301.176z" + ], + "grid": 0, + "tags": [ + "loop" + ] + }, + { + "id": 52, + "paths": [ + "M512 30.118c-182.633 0-331.294 148.6-331.294 331.294 0 263.409 295.936 607.533 308.525 622.11l22.769 26.202 22.769-26.263c12.589-14.517 308.525-358.641 308.525-622.050 0-182.694-148.661-331.294-331.294-331.294zM512 916.48c-69.030-85.775-271.059-354.123-271.059-555.068 0-149.444 121.615-271.059 271.059-271.059s271.059 121.615 271.059 271.059c0 200.764-202.029 469.293-271.059 555.068zM512 189.079c-99.629 0-180.706 81.077-180.706 180.706s81.077 180.706 180.706 180.706 180.706-81.077 180.706-180.706-81.077-180.706-180.706-180.706zM512 490.255c-66.44 0-120.471-54.031-120.471-120.471s54.031-120.471 120.471-120.471 120.471 54.031 120.471 120.471-54.031 120.471-120.471 120.471z" + ], + "grid": 0, + "tags": [ + "location-pin" + ] + }, + { + "id": 51, + "paths": [ + "M1024 240.941v60.235h-722.824v-60.235h722.824zM180.706 271.059c0 49.815-40.538 90.353-90.353 90.353s-90.353-40.538-90.353-90.353 40.538-90.353 90.353-90.353 90.353 40.538 90.353 90.353zM120.471 271.059c0-16.565-13.493-30.118-30.118-30.118s-30.118 13.553-30.118 30.118 13.493 30.118 30.118 30.118 30.118-13.553 30.118-30.118zM301.176 542.118h722.824v-60.235h-722.824v60.235zM180.706 512c0 49.815-40.538 90.353-90.353 90.353s-90.353-40.538-90.353-90.353 40.538-90.353 90.353-90.353 90.353 40.538 90.353 90.353zM120.471 512c0-16.565-13.493-30.118-30.118-30.118s-30.118 13.553-30.118 30.118 13.493 30.118 30.118 30.118 30.118-13.553 30.118-30.118zM301.176 783.059h722.824v-60.235h-722.824v60.235zM180.706 752.941c0 49.815-40.538 90.353-90.353 90.353s-90.353-40.538-90.353-90.353 40.538-90.353 90.353-90.353 90.353 40.538 90.353 90.353zM120.471 752.941c0-16.565-13.493-30.118-30.118-30.118s-30.118 13.553-30.118 30.118 13.493 30.118 30.118 30.118 30.118-13.553 30.118-30.118z" + ], + "grid": 0, + "tags": [ + "list" + ] + }, + { + "id": 50, + "paths": [ + "M512 0c-182.633 0-331.294 157.636-331.294 351.352 0 141.794 58.067 221.064 109.267 290.997 38.37 52.284 71.439 97.461 71.439 161.009v126.253c0 52.043 40.538 94.389 90.353 94.389h120.471c49.815 0 90.353-42.345 90.353-94.389v-128.060c0-62.946 31.142-104.508 70.475-157.154 49.092-65.717 110.231-147.396 110.231-293.045 0-193.717-148.661-351.352-331.294-351.352zM572.235 963.765h-120.471c-16.565 0-30.118-15.3-30.118-34.153v-98.364h180.706v98.364c0 18.854-13.553 34.153-30.118 34.153zM684.815 608.316c-35.358 47.285-71.68 95.955-80.474 162.696h-185.043c-9.156-66.379-45.417-116.073-80.715-164.262-48.008-65.536-97.641-133.301-97.641-255.398 0-160.527 121.615-291.117 271.059-291.117s271.059 130.59 271.059 291.117c0 125.591-49.935 192.392-98.244 256.964z" + ], + "grid": 0, + "tags": [ + "light-bulb" + ] + }, + { + "id": 49, + "paths": [ + "M716.499 121.314l-342.799 782.216h47.947v60.235h-180.706v-60.235h66.921l342.799-782.216h-48.309v-60.235h180.706v60.235h-66.56z" + ], + "grid": 0, + "tags": [ + "Italic" + ] + }, + { + "id": 48, + "paths": [ + "M650.541 859.919v60.235h-277.082v-60.235h108.424v-447.608h-105.412v-60.235h165.647v507.844h108.424zM481.16 243.652c51.080 0 92.28-41.321 92.28-92.28 0-51.019-41.261-92.401-92.28-92.401-51.14 0-92.401 41.382-92.401 92.401 0 50.959 41.321 92.28 92.401 92.28z" + ], + "grid": 0, + "tags": [ + "info" + ] + }, + { + "id": 47, + "paths": [ + "M1024 481.882c0 132.879-108.062 240.941-240.941 240.941-72.102 0-139.144-32.045-185.163-87.462l-0.12 0.060-0.843-1.084c-0.663-0.843-1.566-1.385-2.289-2.289l0.241-0.181-218.895-269.975c-34.274-38.551-83.486-60.717-135.048-60.717-99.629 0-180.706 81.077-180.706 180.706 0 99.629 81.077 180.706 180.706 180.706 55.115 0 106.556-24.696 141.071-67.765l0.542 0.422 49.212-60.958 46.863 37.828-49.574 61.38-0.602-0.482c-45.96 57.043-114.266 89.811-187.512 89.811-132.879 0-240.941-108.062-240.941-240.941 0-132.879 108.062-240.941 240.941-240.941 67.464 0 131.674 28.732 177.272 78.366l0.482-0.361 2.53 3.132 222.75 274.673c34.515 41.743 84.872 65.837 139.083 65.837 99.629 0 180.706-81.077 180.706-180.706 0-99.629-81.077-180.706-180.706-180.706-50.959 0-99.388 21.805-133.722 59.573l-57.103 70.776-46.863-37.828 57.103-70.776-0.241-0.181c45.779-51.983 111.736-81.8 180.826-81.8 132.879 0 240.941 108.062 240.941 240.941z" + ], + "grid": 0, + "tags": [ + "infinite" + ] + }, + { + "id": 46, + "paths": [ + "M0 180.706v722.824h1024v-722.824h-1024zM963.765 843.294h-903.529v-602.353h903.529v602.353zM154.323 813.839l-60.235-1.325c1.988-86.136 84.209-159.744 199.319-181.73v-19.637c-14.938-15.601-25.6-36.744-32.828-55.597-9.758-6.987-18.191-17.709-24.034-31.081-11.144-24.696-9.216-49.453 3.795-64.331-0.241-4.457-0.361-8.855-0.361-13.071l-0.12-11.083c-0.361-32.346-0.964-85.534 55.959-95.413 11.686-20.42 29.094-37.768 71.017-39.213 67.644-2.108 115.411 22.769 131.614 69.331 5.481 15.962 0.361 29.214-3.373 38.852-3.554 9.156-6.927 17.769-4.939 33.973 0.783 6.445 0.663 12.77 0.181 18.793 10.541 14.276 12.71 35.96 4.939 58.729-5.722 16.444-14.999 29.154-26.142 36.623-6.686 17.288-16.264 36.382-29.335 50.899v22.709c114.989 22.588 194.44 94.63 196.427 181.188l-60.235 1.385c-1.385-61.5-72.885-114.929-170.044-127.036l-26.383-3.313v-102.942l12.047-9.035c6.385-4.819 16.324-19.336 24.998-45.839l8.132-20.721 4.457-38.008c0.843-6.385 1.626-12.469 1.144-16.143-3.735-31.322 3.976-51.2 8.553-63.006 0.301-0.843 0.542-1.385 0.723-1.867-12.649-23.853-52.947-24.877-70.536-24.456-16.685 0.663-17.89 3.012-21.143 9.216-4.096 7.951-13.794 26.624-38.37 28.792-5.542 0.482-7.288 1.626-7.288 1.626-2.47 3.855-2.289 22.106-2.168 34.214l0.060 11.746c0 8.493 0.602 17.589 1.747 26.865l4.216 34.515 7.228 1.265 0.181 14.938c9.276 28.070 20.42 43.43 27.166 48.068l12.951 8.975v101.617l-26.624 3.132c-97.099 11.384-171.309 66.138-172.695 127.398zM903.529 481.882h-301.176v-60.235h301.176v60.235zM843.294 602.353h-240.941v-60.235h240.941v60.235z" + ], + "grid": 0, + "tags": [ + "id-badge" + ] + }, + { + "id": 45, + "paths": [ + "M542.118 240.941h338.824l-217.389-240.941h-422.611v240.941h240.941v224.256h-67.765v558.803h195.765v-558.803h-67.765v-224.256zM301.176 60.235h335.571l108.725 120.471h-444.296v-120.471zM549.647 963.765h-75.294v-438.332h75.294v438.332z" + ], + "grid": 0, + "tags": [ + "hummer" + ] + }, + { + "id": 44, + "paths": [ + "M843.294 963.765h-180.706v-361.412h-301.176v361.412h-180.706v-542.118h-60.235v602.353h783.059v-602.353h-60.235v542.118zM421.647 963.765v-301.176h180.706v301.176h-180.706zM1011.712 389.903l-35.659 48.61-464.053-340.932-464.053 340.811-35.659-48.55 499.712-366.953 499.712 367.014z" + ], + "grid": 0, + "tags": [ + "home" + ] + }, + { + "id": 43, + "paths": [ + "M621.086 893.35c0 54.091-43.972 98.063-98.123 98.063-54.332 0-98.244-43.972-98.244-98.063 0-54.212 43.912-98.184 98.244-98.184 54.091 0 98.123 43.972 98.123 98.184zM702.825 142.938c-30.84-38.852-86.98-85.173-179.682-85.173-246.844 0-255.699 226.364-255.759 228.653l60.235 1.566c0.181-6.927 6.626-169.984 195.524-169.984 68.668 0 109.929 33.912 132.457 62.344 33.431 42.165 42.165 90.835 37.587 110.411-17.528 74.029-60.898 113.062-106.797 154.383-56.32 50.658-114.447 103.002-114.447 214.317h60.235c0-84.45 41.683-122.037 94.509-169.562 48.429-43.61 103.304-93.003 125.109-185.404 8.975-38.189-5-106.014-48.971-161.551z" + ], + "grid": 0, + "tags": [ + "help" + ] + }, + { + "id": 42, + "paths": [ + "M962.62 487.002c-11.565-270.637-208.956-487.002-450.62-487.002s-439.055 216.365-450.62 487.002c-35.539 12.107-61.38 45.538-61.38 85.233v240.941c0 49.815 40.358 90.353 89.992 90.353h90.714v-60.235h60.235v-301.176h-60.235v-60.235h-58.91c13.553-235.038 183.115-421.647 390.204-421.647s376.651 186.609 390.204 421.647h-58.91v60.235h-60.235v301.176h60.235v60.235h90.714c49.634 0 89.992-40.538 89.992-90.353v-240.941c0-39.695-25.841-73.126-61.38-85.233zM120.471 843.294h-30.479c-16.384 0-29.756-13.553-29.756-30.118v-240.941c0-16.565 13.372-30.118 29.756-30.118h30.479v301.176zM963.765 813.176c0 16.565-13.372 30.118-29.756 30.118h-30.479v-301.176h30.479c16.384 0 29.756 13.553 29.756 30.118v240.941z" + ], + "grid": 0, + "tags": [ + "headphone" + ] + }, + { + "id": 41, + "paths": [ + "M813.176 752.941c-49.815 0-90.353 40.538-90.353 90.353s40.538 90.353 90.353 90.353 90.353-40.538 90.353-90.353-40.538-90.353-90.353-90.353zM813.176 873.412c-16.565 0-30.118-13.553-30.118-30.118s13.553-30.118 30.118-30.118 30.118 13.553 30.118 30.118-13.553 30.118-30.118 30.118zM1024 189.741l-176.068-189.741h-671.684l-176.248 185.946v387.494h56.38l-56.38 70.596v379.964h1024v-377.073l-63.006-73.487h63.006v-383.699zM202.089 60.235h619.58l111.676 120.471h-845.402l114.146-120.471zM60.235 963.765v-240.941h903.529v240.941h-903.529zM958.103 662.588h-895.88l71.138-89.148h748.363l76.378 89.148zM60.235 513.205v-272.264h903.529v272.264h-903.529zM813.176 301.176c-49.815 0-90.353 40.538-90.353 90.353 0 49.754 40.538 90.293 90.353 90.293s90.353-40.538 90.353-90.293c0-49.815-40.538-90.353-90.353-90.353zM813.176 421.587c-16.565 0-30.118-13.493-30.118-30.057s13.553-30.118 30.118-30.118 30.118 13.553 30.118 30.118-13.553 30.057-30.118 30.057z" + ], + "grid": 0, + "tags": [ + "harddrives" + ] + }, + { + "id": 40, + "paths": [ + "M851.366 180.465h-678.611l-172.755 263.469v399.601h1024v-395.686l-172.634-267.384zM205.342 240.7h613.195l116.977 181.188h-848.956l118.784-181.188zM60.235 783.3v-301.176h903.529v301.176h-903.529zM813.176 542.359c-49.815 0-90.353 40.538-90.353 90.353s40.538 90.353 90.353 90.353 90.353-40.538 90.353-90.353-40.538-90.353-90.353-90.353zM813.176 662.829c-16.565 0-30.118-13.553-30.118-30.118s13.553-30.118 30.118-30.118 30.118 13.553 30.118 30.118-13.553 30.118-30.118 30.118z" + ], + "grid": 0, + "tags": [ + "harddrive" + ] + }, + { + "id": 39, + "paths": [ + "M472.184 337.98l-2.048 11.927 40.538-5.18c0.241 0 1.265-0.181 1.867-0.241l38.37 4.879-1.867-10.903c65.656-12.168 199.258-43.671 275.576-109.026 29.756-25.419 46.14-59.633 46.14-96.376s-16.384-70.957-46.14-96.437c-56.742-48.67-154.263-48.61-211.004 0-49.032 41.984-81.86 103.966-103.063 158.298-21.203-54.212-54.031-116.013-103.063-157.877-56.681-48.55-154.082-48.489-210.763 0-29.756 25.419-46.14 59.573-46.14 96.196 0 36.623 16.384 70.716 46.14 96.075 76.318 65.175 209.92 96.557 275.456 108.664zM652.77 82.402c17.528-14.999 41.020-23.251 66.319-23.251 25.239 0 48.851 8.252 66.319 23.251 16.203 13.794 25.058 31.804 25.058 50.658 0 18.793-8.855 36.744-25.058 50.598-62.163 53.188-176.429 81.619-238.893 93.847 14.758-53.489 47.164-144.504 106.255-195.102zM235.821 82.824c17.528-14.938 41.020-23.191 66.319-23.191 25.239 0 48.791 8.252 66.259 23.191 58.79 50.176 91.196 140.77 106.014 194.138-62.404-12.107-176.369-40.358-238.592-93.485-16.143-13.734-24.998-31.563-24.998-50.236 0-18.733 8.855-36.623 24.998-50.417zM1024 361.412h-1024v240.941h60.235v421.647h903.529v-421.647h60.235v-240.941zM420.201 421.647h181.067l64.211 351.955-99.268-41.261-78.366 72.584-67.644-383.277zM60.235 421.647h298.767l21.263 120.471h-320.030v-120.471zM903.529 963.765h-783.059v-361.412h270.456l56.742 321.837 131.072-121.374 165.768 68.969-49.092-269.432h208.113v361.412zM963.765 542.118h-279.371l-21.986-120.471h301.357v120.471z" + ], + "grid": 0, + "tags": [ + "gift" + ] + }, + { + "id": 38, + "paths": [ + "M542.118 240.218v-179.983h-60.235v179.983c-214.679 6.325-481.882 77.222-481.882 149.805v424.117c0 49.815 40.538 90.353 90.353 90.353h107.821l120.23-236.785c34.153 6.264 103.183 16.504 191.127 16.504 89.088 0 162.274-10.481 198.054-16.685l114.929 236.966h111.134c49.815 0 90.353-40.538 90.353-90.353v-424.117c0-72.584-267.264-143.541-481.882-149.805zM963.765 814.14c0 16.565-13.553 30.118-30.118 30.118h-73.367l-119.025-245.158-23.251 5.12c-0.904 0.181-91.256 19.817-208.535 19.817-116.917 0-199.68-19.456-200.523-19.697l-23.13-5.602-124.567 245.459h-70.897c-16.565 0-30.118-13.553-30.118-30.118v-416.527c30.238-26.323 203.595-91.437 421.647-97.039v0.663h60.235v-0.783c217.992 5.662 391.409 70.776 421.647 97.099v416.648zM301.176 422.852h60.115v60.235h-60.115v61.44h-60.235v-61.44h-60.235v-60.235h60.235v-61.44h60.235v61.44zM752.941 543.322c49.815 0 90.353-40.538 90.353-90.353s-40.538-90.353-90.353-90.353-90.353 40.478-90.353 90.353 40.538 90.353 90.353 90.353zM752.941 422.852c16.565 0 30.118 13.553 30.118 30.118s-13.553 30.118-30.118 30.118-30.118-13.553-30.118-30.118 13.553-30.118 30.118-30.118z" + ], + "grid": 0, + "tags": [ + "game" + ] + }, + { + "id": 37, + "paths": [ + "M32.527 0l389.12 555.912v468.088h180.706v-468.088l389.12-555.912h-958.946zM542.118 536.937v426.827h-60.235v-426.827l-333.704-476.702h727.642l-333.704 476.702z" + ], + "grid": 0, + "tags": [ + "filter" + ] + }, + { + "id": 36, + "paths": [ + "M752.76 0h-391.349v121.073h60.235v-60.838h301.176v240.941h240.941v481.882h-241.965v60.235h302.2v-591.39l-271.24-251.904zM783.059 110.351l140.649 130.59h-140.649v-130.59zM0 180.706v843.294h662.588v-591.39l-271.24-251.904h-391.349zM421.647 291.057l140.649 130.59h-140.649v-130.59zM60.235 963.765v-722.824h301.176v240.941h240.941v481.882h-542.118z" + ], + "grid": 0, + "tags": [ + "files" + ] + }, + { + "id": 35, + "paths": [ + "M582.295 0h-461.824v1024h783.059v-704.271l-321.235-319.729zM602.353 104.93l197.15 196.247h-197.15v-196.247zM180.706 963.765v-903.529h361.412v301.176h301.176v602.353h-662.588z" + ], + "grid": 0, + "tags": [ + "file" + ] + }, + { + "id": 34, + "paths": [ + "M809.924 253.048l-312.983-180.766c-41.562-23.913-99.388-8.493-123.362 33.129l-361.412 626.025c-24.937 43.128-10.059 98.485 33.129 123.482l191.488 109.869 262.445-1.084 343.823-587.234c24.877-43.128 10.059-98.485-33.129-123.422zM464.595 903.59l-211.908 0.843-177.393-101.737c-14.396-8.373-19.336-26.744-11.023-41.201l165.647-286.961 363.038 209.619-128.361 219.437zM790.889 346.172l-167.514 286.118-363.339-209.8 165.647-286.961c5.361-9.276 15.42-15.059 26.142-15.059 5.301 0 10.36 1.325 14.999 3.976l312.983 180.706c14.396 8.373 19.336 26.805 11.083 41.020zM1024 903.529v60.235h-421.647v-60.235h421.647z" + ], + "grid": 0, + "tags": [ + "eraser" + ] + }, + { + "id": 33, + "paths": [ + "M120.471 0v1024h783.059v-1024h-783.059zM282.805 240.941l-84.811-180.706h628.013l-84.932 180.706h-458.27zM244.616 301.176h237.267v542.118h-241.062l-60.115 69.572v-747.761l63.91 136.072zM268.348 903.529h487.424l51.923 60.235h-591.27l51.923-60.235zM783.42 843.294h-241.303v-542.118h237.207l63.97-136.192v747.821l-59.874-69.512z" + ], + "grid": 0, + "tags": [ + "envelope" + ] + }, + { + "id": 32, + "paths": [ + "M1024 963.765v60.235h-1024v-60.235h1024zM804.382 533.323l-42.586-42.586-219.618 219.618v-710.355h-60.235v710.415l-219.678-219.738-42.647 42.647 292.382 292.322 292.382-292.322z" + ], + "grid": 0, + "tags": [ + "download" + ] + }, + { + "id": 31, + "paths": [ + "M1002.376 325.813l-169.321-205.342h-290.936v-120.471h-60.235v120.471h-421.647v421.647h421.647v481.882h60.235v-481.882h291.418l168.84-216.305zM542.118 481.882h-421.647v-301.176h684.152l120.531 146.131-121.013 155.046h-262.024z" + ], + "grid": 0, + "tags": [ + "direction" + ] + }, + { + "id": 30, + "paths": [ + "M542.118 361.412h282.805l116.736-154.383-117.218-146.793h-282.323v-60.235h-60.235v60.235h-361.412v301.176h361.412v120.471h-282.323l-117.218 146.793 116.736 154.383h282.805v240.941h60.235v-240.941h361.412v-301.176h-361.412v-120.471zM180.706 120.471h614.761l69.933 87.582-70.415 93.124h-614.28v-180.706zM843.294 722.824h-614.28l-70.415-93.124 69.933-87.582h614.761v180.706z" + ], + "grid": 0, + "tags": [ + "direction-alt" + ] + }, + { + "id": 29, + "paths": [ + "M1024 692.706v30.118h-371.531v-60.235h310.332c-6.746-101.918-47.526-194.62-110.953-267.083l-48.55 48.55-42.586-42.586 48.309-48.309c-72.403-63.428-165.045-103.966-266.903-110.773v179.26h-60.235v-179.26c-101.858 6.807-194.5 47.345-266.842 110.773l47.947 47.947-42.586 42.586-48.188-48.188c-63.428 72.463-104.267 165.165-110.953 267.083h311.477v60.235h-372.736v-30.118c0-282.323 229.677-512 512-512s512 229.677 512 512zM632.471 692.706c0 66.44-54.031 120.471-120.471 120.471s-120.471-54.031-120.471-120.471c0-38.792 18.733-72.885 47.224-94.991l-125.41-218.654 52.224-29.937 128.964 224.858c5.722-0.843 11.445-1.747 17.468-1.747 66.44 0 120.471 54.031 120.471 120.471zM572.235 692.706c0-33.19-27.046-60.235-60.235-60.235s-60.235 27.046-60.235 60.235 27.046 60.235 60.235 60.235 60.235-27.046 60.235-60.235z" + ], + "grid": 0, + "tags": [ + "dashboard" + ] + }, + { + "id": 28, + "paths": [ + "M180.706 180.706v662.588h662.588v-662.588h-662.588zM783.059 783.059h-542.118v-542.118h542.118v542.118z" + ], + "grid": 0, + "tags": [ + "control-stop" + ] + }, + { + "id": 27, + "paths": [ + "M538.504 413.877l65.114-80.715-0.241-0.181c51.501-58.488 125.711-92.040 203.475-92.040h114.327l-99.147-99.147 42.586-42.586 171.851 171.851-171.912 171.912-42.586-42.586 99.208-99.208h-114.327c-59.573 0-116.314 25.6-156.311 69.813l-65.054 80.655-46.984-37.768zM352.437 644.277l-0.663-0.482c-40.177 50.176-100.171 79.029-164.623 79.029h-187.151v60.235h187.151c82.462 0 159.322-36.804 211.004-100.954l0.663 0.542 56.681-70.234-46.803-37.888-56.26 69.752zM821.971 623.676l99.208 99.147h-114.327c-63.368 0-122.338-28.25-162.635-77.161l-257.144-317.139-0.602 0.482c-51.2-55.778-123.362-88.064-199.319-88.064h-187.151v60.235h187.151c60.115 0 117.338 25.781 157.274 70.475l250.639 309.128-0.301 0.241c51.802 64.813 129.084 102.039 212.028 102.039h114.327l-99.147 99.147 42.586 42.586 171.912-171.912-171.912-171.912-42.586 42.707z" + ], + "grid": 0, + "tags": [ + "control-shuffle" + ] + }, + { + "id": 26, + "paths": [ + "M180.706 162.153v699.814l699.814-351.593-699.814-348.22zM240.941 259.494l504.892 251.181-504.892 253.651v-504.832z" + ], + "grid": 0, + "tags": [ + "control-play" + ] + }, + { + "id": 25, + "paths": [ + "M180.706 903.529h240.941v-783.059h-240.941v783.059zM240.941 180.706h120.471v662.588h-120.471v-662.588zM602.353 120.471v783.059h240.941v-783.059h-240.941zM783.059 843.294h-120.471v-662.588h120.471v662.588z" + ], + "grid": 0, + "tags": [ + "control-pause" + ] + }, + { + "id": 24, + "paths": [ + "M180.706 146.733v731.016l438.573-367.315-438.573-363.701zM240.941 274.914l284.25 235.701-284.25 238.050v-473.751zM920.456 510.434l-389.12 325.873-38.731-46.261 333.704-279.432-333.523-276.6 38.49-46.381 389.18 322.801z" + ], + "grid": 0, + "tags": [ + "control-forward" + ] + }, + { + "id": 23, + "paths": [ + "M404.721 510.434l438.573 367.255v-730.955l-438.573 363.701zM783.059 748.664l-284.25-237.99 284.25-235.761v473.751zM197.632 510.675l333.704 279.432-38.731 46.261-389.12-325.873 389.24-322.741 38.49 46.381-333.583 276.54z" + ], + "grid": 0, + "tags": [ + "control-backward" + ] + }, + { + "id": 22, + "paths": [ + "M768 271.059c-34.816 0-69.030 7.409-101.858 22.106-53.549-52.585-124.988-82.342-199.319-82.342-118.423 0-221.907 71.68-264.855 180.826-108.604-4.457-201.969 85.594-201.969 195.644 0 107.942 87.823 195.765 195.765 195.765h572.235c141.131 0 256-114.869 256-256s-114.869-256-256-256zM768 722.824h-572.235c-74.752 0-135.529-60.777-135.529-135.529s60.777-135.529 135.529-135.529c7.529 0 14.697 1.144 21.865 2.289l26.202 4.337 7.59-25.419c28.792-96.858 115.351-161.912 215.401-161.912 64.632 0 126.615 28.732 169.924 78.728l15.962 18.432 21.323-11.746c30.298-16.685 61.862-25.178 93.967-25.178 107.942 0 195.765 87.823 195.765 195.765s-87.823 195.765-195.765 195.765z" + ], + "grid": 0, + "tags": [ + "cloud" + ] + }, + { + "id": 21, + "paths": [ + "M1024 406.588c0 141.131-114.808 256-256 256h-166.069v-60.235h166.069c107.942 0 195.765-87.823 195.765-195.765s-87.823-195.765-195.765-195.765c-32.045 0-63.669 8.493-93.967 25.118l-21.323 11.746-15.962-18.432c-43.309-49.935-105.291-78.667-169.924-78.667-100.051 0-186.669 65.054-215.401 161.912l-7.59 25.419-26.202-4.337c-7.168-1.144-14.336-2.289-21.865-2.289-74.692 0-135.529 60.777-135.529 135.529s60.838 135.529 135.529 135.529h222.81v60.235h-222.81c-107.942 0-195.765-87.823-195.765-195.765 0-109.99 92.1-200.885 201.969-195.644 42.948-109.146 146.432-180.826 264.855-180.826 74.33 0 145.769 29.756 199.319 82.342 32.888-14.697 67.042-22.106 101.858-22.106 141.192 0 256 114.869 256 256zM641.265 533.323l42.586-42.586-171.851-171.912-171.912 171.851 42.586 42.586 99.208-99.147v469.414h60.235v-469.414l99.147 99.208z" + ], + "grid": 0, + "tags": [ + "cloud-up" + ] + }, + { + "id": 20, + "paths": [ + "M1024 406.588c0 141.131-114.808 256-256 256h-166.069v-60.235h166.069c107.942 0 195.765-87.823 195.765-195.765s-87.823-195.765-195.765-195.765c-32.045 0-63.669 8.493-93.967 25.118l-21.323 11.746-15.962-18.432c-43.309-49.935-105.291-78.667-169.924-78.667-100.051 0-186.669 65.054-215.401 161.912l-7.59 25.419-26.202-4.337c-7.168-1.144-14.336-2.289-21.865-2.289-74.692 0-135.529 60.777-135.529 135.529s60.838 135.529 135.529 135.529h222.81v60.235h-222.81c-107.942 0-195.765-87.823-195.765-195.765 0-109.99 91.016-200.885 201.969-195.644 42.948-109.146 146.432-180.826 264.855-180.826 74.33 0 145.769 29.756 199.319 82.342 32.888-14.697 67.042-22.106 101.858-22.106 141.192 0 256 114.869 256 256zM542.118 827.031v-465.619h-60.235v465.619l-99.147-99.147-42.586 42.586 171.851 171.851 171.912-171.912-42.586-42.586-99.208 99.208z" + ], + "grid": 0, + "tags": [ + "cloud-down" + ] + }, + { + "id": 19, + "paths": [ + "M963.765 120.471v903.529h-903.529v-903.529h135.168v60.235h-74.933v783.059h783.059v-783.059h-76.981v-60.235h137.216zM783.059 301.176h-542.118v-240.941h185.826c12.469-35.057 45.96-60.235 85.233-60.235s72.764 25.178 85.233 60.235h185.826v240.941zM722.824 120.471h-180.706v-30.118c0-16.625-13.493-30.118-30.118-30.118s-30.118 13.493-30.118 30.118v30.118h-180.706v120.471h421.647v-120.471z" + ], + "grid": 0, + "tags": [ + "clipboard" + ] + }, + { + "id": 18, + "paths": [ + "M1024 601.389l-117.941 0.12-123.543-240.098h-478.81l-178.778 240.881-124.928 0.060v299.791h120.591c0 0.482-0.12 0.904-0.12 1.385 0 66.44 54.031 120.471 120.471 120.471s120.471-54.031 120.471-120.471c0-0.482-0.12-0.904-0.12-1.385h301.478c-0.060 0.482-0.181 0.904-0.181 1.385 0 66.44 54.031 120.471 120.471 120.471s120.471-54.031 120.471-120.471c0-0.482-0.12-0.904-0.12-1.385h120.591v-300.755zM838.355 601.57l-234.737 0.241v-180.164h142.155l92.582 179.923zM333.944 421.647h209.438v180.224l-343.401 0.301 133.963-180.525zM240.941 963.765c-33.19 0-60.235-27.046-60.235-60.235s27.046-60.235 60.235-60.235 60.235 27.046 60.235 60.235-27.046 60.235-60.235 60.235zM783.059 963.765c-33.19 0-60.235-27.046-60.235-60.235s27.046-60.235 60.235-60.235 60.235 27.046 60.235 60.235-27.046 60.235-60.235 60.235zM963.765 841.909h-77.764c-21.082-35.057-59.091-58.85-102.942-58.85s-81.86 23.793-102.942 58.85h-336.233c-21.082-35.057-59.091-58.85-102.942-58.85s-81.86 23.793-102.942 58.85h-77.764v-179.32l903.529-0.904v180.224z" + ], + "grid": 0, + "tags": [ + "car" + ] + }, + { + "id": 17, + "paths": [ + "M843.294 120.471v-60.235h-180.706v60.235h-301.176v-60.235h-180.706v60.235h-180.706v903.529h1024v-903.529h-180.706zM722.824 120.471h60.235v120.471h-60.235v-120.471zM240.941 120.471h60.235v120.471h-60.235v-120.471zM963.765 963.765h-903.529v-537.359h903.529v537.359zM60.235 366.17v-185.464h120.471v120.471h180.706v-120.471h301.176v120.471h180.706v-120.471h120.471v185.464h-903.529z" + ], + "grid": 0, + "tags": [ + "calendar" + ] + }, + { + "id": 16, + "paths": [ + "M999.424 69.391c-3.192-0.602-79.571-14.697-179.561-14.697-126.795 0-230.581 22.046-308.706 65.536-91.437-46.080-196.608-69.391-312.983-69.391-101.256 0-172.634 18.191-175.586 18.974l-22.588 5.903 0.060 837.632 37.587-9.698c0.663-0.12 67.464-17.047 160.527-17.047 87.16 0 166.912 14.456 238.532 42.345v49.875h150.588v-51.561c77.161-29.395 165.466-36.804 232.508-36.804 94.088 0 167.816 13.553 168.538 13.673l35.659 6.626v-836.728l-24.576-4.638zM60.235 837.692v-714.27c27.166-5.060 76.92-12.348 137.939-12.348 106.074 0 201.126 21.685 283.708 62.886v709.331c-84.51-37.165-179.32-56.922-283.708-56.922-58.368 0-106.797 6.084-137.939 11.324zM963.765 839.56c-32.286-4.216-83.908-9.276-143.962-9.276-111.315 0-203.656 17.95-277.685 51.501v-709.15c85.655-46.984 197.030-57.705 277.685-57.705 61.621 0 114.568 5.843 143.962 9.879v714.752z" + ], + "grid": 0, + "tags": [ + "book" + ] + }, + { + "id": 15, + "paths": [ + "M922.323 850.824c-0.843-0.783-79.029-77.944-79.029-193.355v-198.295c0-186.79-148.661-338.703-331.294-338.703s-331.294 151.913-331.294 338.703v198.295c0 112.098-78.667 192.934-79.39 193.717l-50.778 51.381h925.033l-53.248-51.742zM183.838 842.33c26.744-41.683 57.103-106.255 57.103-184.862v-198.295c0-153.54 121.615-278.468 271.059-278.468s271.059 124.928 271.059 278.468v198.295c0 79.511 29.816 143.541 56.501 184.862h-655.721zM542.118 120.471h-60.235v-60.235h60.235v60.235zM542.118 903.529h60.235c0 49.815-40.538 90.353-90.353 90.353s-90.353-40.538-90.353-90.353h60.235c0 16.625 13.553 30.118 30.118 30.118s30.118-13.493 30.118-30.118z" + ], + "grid": 0, + "tags": [ + "bell" + ] + }, + { + "id": 14, + "paths": [ + "M512.964 0c-282.323 0-512 229.677-512 512s229.677 512 512 512 512-229.677 512-512-229.737-512-512-512zM782.396 481.882c5.903-87.944 37.045-171.972 90.172-242.146 51.802 68.247 84.57 151.492 90.594 242.146h-180.766zM963.162 542.118c-6.024 90.654-38.792 173.96-90.654 242.206-53.067-70.234-84.209-154.263-90.052-242.206h180.706zM832.813 193.295c-65.897 82.583-104.388 183.115-110.652 288.587h-180.043v-420.201c113.182 7.349 215.281 55.959 290.696 131.614zM481.882 61.801v420.081h-178.296c-6.144-105.532-44.634-206.005-110.472-288.587 74.933-75.234 176.309-123.784 288.768-131.494zM62.705 481.882c6.024-90.654 38.792-173.96 90.654-242.206 53.067 70.174 84.149 154.202 90.052 242.206h-180.706zM243.351 542.118c-5.843 88.064-36.864 172.032-89.992 242.206-51.863-68.247-84.631-151.552-90.654-242.206h180.646zM193.054 830.705c65.958-82.583 104.388-183.055 110.532-288.587h178.296v420.081c-112.459-7.71-213.835-56.26-288.828-131.494zM542.118 962.319v-420.201h180.104c6.204 105.472 44.695 206.005 110.532 288.648-75.415 75.595-177.453 124.205-290.635 131.554z" + ], + "grid": 0, + "tags": [ + "basketball" + ] + }, + { + "id": 13, + "paths": [ + "M1024 963.765v60.235h-1024v-60.235h1024zM120.471 602.353h120.471v301.176h60.235v-361.412h-240.941v361.412h60.235v-301.176zM421.647 421.647h120.471v481.882h60.235v-542.118h-240.941v542.118h60.235v-481.882zM722.824 180.706h120.471v722.824h60.235v-783.059h-240.941v783.059h60.235v-722.824z" + ], + "grid": 0, + "tags": [ + "bar-chart" + ] + }, + { + "id": 12, + "paths": [ + "M1024 963.765v60.235h-1024v-60.235h1024zM722.824 602.353h120.471v301.176h60.235v-361.412h-240.941v361.412h60.235v-301.176zM421.647 421.647h120.471v481.882h60.235v-542.118h-240.941v542.118h60.235v-481.882zM120.471 180.706h120.471v722.824h60.235v-783.059h-240.941v783.059h60.235v-722.824z" + ], + "grid": 0, + "tags": [ + "bar-chart-alt" + ] + }, + { + "id": 11, + "paths": [ + "M878.411 903.529v60.235h-426.647c-182.633 0-331.294-148.6-331.294-331.294s148.661-331.294 331.294-331.294h175.405l-159.383-159.383 42.586-42.586 232.087 232.087-232.087 232.147-42.586-42.647 159.383-159.383h-175.405c-149.444 0-271.059 121.615-271.059 271.059s121.615 271.059 271.059 271.059h426.647z" + ], + "grid": 0, + "tags": [ + "back-right" + ] + }, + { + "id": 10, + "paths": [ + "M903.529 451.765c0 182.694-148.6 331.294-331.294 331.294h-175.405l159.383 159.383-42.586 42.586-232.087-232.087 232.147-232.147 42.586 42.586-159.443 159.443h175.405c149.444 0 271.059-121.615 271.059-271.059s-121.615-271.059-271.059-271.059h-426.647v-60.235h426.647c182.694 0 331.294 148.6 331.294 331.294z" + ], + "grid": 0, + "tags": [ + "back-left" + ] + }, + { + "id": 9, + "paths": [ + "M903.529 572.235v331.294h-331.294v-60.235h229.075l-620.604-620.604v229.075h-60.235v-331.294h331.294v60.235h-227.87l619.4 619.4v-227.87h60.235z" + ], + "grid": 0, + "tags": [ + "arrows-corner" + ] + }, + { + "id": 8, + "paths": [ + "M1024 120.471h-1024v240.941h60.235v662.588h903.529v-662.588h60.235v-240.941zM903.529 963.765h-783.059v-602.353h783.059v602.353zM963.765 301.176h-903.529v-120.471h903.529v120.471zM361.412 662.588h302.14c66.44 0 120.471-54.031 120.471-120.471s-54.031-120.471-120.471-120.471h-302.14c-66.44 0-120.471 54.031-120.471 120.471s54.031 120.471 120.471 120.471zM361.412 481.882h302.14c33.25 0 60.235 26.985 60.235 60.235s-26.985 60.235-60.235 60.235h-302.14c-33.25 0-60.235-26.985-60.235-60.235s26.985-60.235 60.235-60.235z" + ], + "grid": 0, + "tags": [ + "archive" + ] + }, + { + "id": 7, + "paths": [ + "M921.058 758.483l-94.569-188.356-188.356 94.449 26.985 53.911 112.7-56.561c-22.468 114.869-117.82 202.692-235.701 215.944v-456.222h90.353v-60.235h-90.353v-63.307c68.668-13.975 120.471-74.752 120.471-147.516 0-83.064-67.584-150.588-150.588-150.588s-150.588 67.524-150.588 150.588c0 72.764 51.802 133.542 120.471 147.516v63.307h-90.353v60.235h90.353v456.222c-117.76-13.252-213.112-100.954-235.64-215.642l112.038 56.26 26.985-53.911-188.356-94.449-94.569 188.356 53.85 27.046 39.213-78.185c41.743 135.228 167.876 233.833 316.597 233.833 148.42 0 274.432-98.184 316.356-232.93l38.852 77.282 53.85-27.046zM421.647 150.588c0-49.815 40.538-90.353 90.353-90.353s90.353 40.538 90.353 90.353-40.538 90.353-90.353 90.353-90.353-40.538-90.353-90.353z" + ], + "grid": 0, + "tags": [ + "anchor" + ] + }, + { + "id": 6, + "paths": [ + "M1024 120.471v60.235h-1024v-60.235h1024zM180.706 421.647h843.294v-60.235h-843.294v60.235zM0 662.588h1024v-60.235h-1024v60.235zM421.647 903.529h602.353v-60.235h-602.353v60.235z" + ], + "grid": 0, + "tags": [ + "align-right" + ] + }, + { + "id": 5, + "paths": [ + "M1024 120.471v60.235h-1024v-60.235h1024zM843.294 361.412h-843.294v60.235h843.294v-60.235zM0 662.588h1024v-60.235h-1024v60.235zM0 903.529h602.353v-60.235h-602.353v60.235z" + ], + "grid": 0, + "tags": [ + "align-left" + ] + }, + { + "id": 4, + "paths": [ + "M1024 120.471v60.235h-1024v-60.235h1024zM0 421.647h1024v-60.235h-1024v60.235zM0 662.588h1024v-60.235h-1024v60.235zM0 903.529h1024v-60.235h-1024v60.235z" + ], + "grid": 0, + "tags": [ + "align-justify" + ] + }, + { + "id": 3, + "paths": [ + "M1024 120.471v60.235h-1024v-60.235h1024zM90.353 361.412v60.235h843.294v-60.235h-843.294zM0 662.588h1024v-60.235h-1024v60.235zM210.824 903.529h602.353v-60.235h-602.353v60.235z" + ], + "grid": 0, + "tags": [ + "align-center" + ] + }, + { + "id": 2, + "paths": [ + "M509.229 89.871l-496.459 873.894h998.761l-502.302-873.894zM509.53 211.305l397.854 692.224h-791.13l393.276-692.224zM542.118 658.854h-60.235v-237.207h60.235v237.207zM572.235 784.926c0 33.25-26.925 60.235-60.235 60.235s-60.235-26.985-60.235-60.235 26.925-60.235 60.235-60.235 60.235 26.985 60.235 60.235z" + ], + "grid": 0, + "tags": [ + "alert" + ] + }, + { + "id": 1, + "paths": [ + "M886.302 409.058c30.359-30.84 47.345-71.138 47.345-114.628 0-90.534-73.668-164.201-164.141-164.201-53.368 0-102.099 26.142-132.939 69.271-30.178-9.336-61.801-14.999-94.449-17.288v-61.741h60.235v-60.235h-180.706v60.235h60.235v61.741c-32.648 2.289-64.271 7.951-94.449 17.288-30.84-43.189-79.511-69.271-132.939-69.271-90.473 0-164.141 73.668-164.141 164.201 0 43.55 16.986 83.848 47.345 114.628-30.057 57.946-47.345 123.603-47.345 193.295 0 102.822 37.105 197.030 98.485 270.276l-77.402 103.183 48.188 36.141 71.8-95.774c74.632 66.801 172.755 107.821 280.576 107.821s205.944-41.020 280.576-107.821l71.8 95.774 48.188-36.141-77.402-103.183c61.38-73.246 98.485-167.454 98.485-270.276 0-69.692-17.288-135.349-47.345-193.295zM769.506 190.464c57.284 0 103.906 46.622 103.906 103.966 0 22.468-7.228 43.61-20.179 61.259-40.84-56.38-95.232-102.039-158.419-132.638 19.396-20.42 45.899-32.587 74.692-32.587zM150.588 294.43c0-57.284 46.622-103.966 103.906-103.966 28.792 0 55.296 12.168 74.692 32.527-63.187 30.6-117.519 76.318-158.419 132.638-12.951-17.649-20.179-38.731-20.179-61.199zM512 963.765c-199.319 0-361.412-162.093-361.412-361.412s162.093-361.412 361.412-361.412 361.412 162.093 361.412 361.412-162.093 361.412-361.412 361.412zM542.118 602.353h240.941v60.235h-301.176v-240.941h60.235v180.706z" + ], + "grid": 0, + "tags": [ + "alarm-clock" + ] + }, + { + "id": 0, + "paths": [ + "M843.294 120.471v-120.471h-783.059v1024h783.059v-120.471h120.471v-783.059h-120.471zM120.471 963.765v-903.529h120.471v903.529h-120.471zM783.059 963.765h-481.882v-903.529h481.882v903.529zM903.529 843.294h-60.235v-180.706h60.235v180.706zM903.529 602.353h-60.235v-180.706h60.235v180.706zM843.294 361.412v-180.706h60.235v180.706h-60.235zM361.412 240.941h301.176v60.235h-301.176v-60.235zM361.412 361.412h240.941v60.235h-240.941v-60.235z" + ], + "grid": 0, + "tags": [ + "agenda" + ] + } + ], + "invisible": true + }, + { + "selection": [ + { + "order": 350, + "id": 95, + "prevSize": 32, + "code": 59080, + "name": "write", + "tempChar": "", + "ligatures": "" + }, + { + "order": 55, + "id": 94, + "prevSize": 32, + "code": 59081, + "name": "window", + "tempChar": "", + "ligatures": "" + }, + { + "order": 56, + "id": 93, + "prevSize": 32, + "code": 59082, + "name": "widgetized", + "tempChar": "", + "ligatures": "" + }, + { + "order": 57, + "id": 92, + "prevSize": 32, + "code": 59083, + "name": "widget", + "tempChar": "", + "ligatures": "" + }, + { + "order": 58, + "id": 91, + "prevSize": 32, + "code": 59084, + "name": "widget-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 59, + "id": 90, + "prevSize": 32, + "code": 59085, + "name": "wallet", + "tempChar": "", + "ligatures": "" + }, + { + "order": 60, + "id": 89, + "prevSize": 32, + "code": 59086, + "name": "video-clapper", + "tempChar": "", + "ligatures": "" + }, + { + "order": 61, + "id": 88, + "prevSize": 32, + "code": 59087, + "name": "video-camera", + "tempChar": "", + "ligatures": "" + }, + { + "order": 62, + "id": 87, + "prevSize": 32, + "code": 59088, + "name": "vector", + "tempChar": "", + "ligatures": "" + }, + { + "order": 63, + "id": 86, + "prevSize": 32, + "code": 59089, + "name": "themify-logo", + "tempChar": "", + "ligatures": "" + }, + { + "order": 64, + "id": 85, + "prevSize": 32, + "code": 59090, + "name": "themify-favicon", + "tempChar": "", + "ligatures": "" + }, + { + "order": 65, + "id": 84, + "prevSize": 32, + "code": 59091, + "name": "themify-favicon-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 66, + "id": 83, + "prevSize": 32, + "code": 59092, + "name": "support", + "tempChar": "", + "ligatures": "" + }, + { + "order": 67, + "id": 82, + "prevSize": 32, + "code": 59093, + "name": "stamp", + "tempChar": "", + "ligatures": "" + }, + { + "order": 68, + "id": 81, + "prevSize": 32, + "code": 59094, + "name": "split-v-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 69, + "id": 80, + "prevSize": 32, + "code": 59095, + "name": "slice", + "tempChar": "", + "ligatures": "" + }, + { + "order": 70, + "id": 79, + "prevSize": 32, + "code": 59096, + "name": "shortcode", + "tempChar": "", + "ligatures": "" + }, + { + "order": 71, + "id": 78, + "prevSize": 32, + "code": 59097, + "name": "shift-right-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 72, + "id": 77, + "prevSize": 32, + "code": 59098, + "name": "shift-left-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 73, + "id": 76, + "prevSize": 32, + "code": 59099, + "name": "ruler-alt-2", + "tempChar": "", + "ligatures": "" + }, + { + "order": 74, + "id": 75, + "prevSize": 32, + "code": 59100, + "name": "receipt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 75, + "id": 74, + "prevSize": 32, + "code": 59101, + "name": "pin2", + "tempChar": "", + "ligatures": "" + }, + { + "order": 76, + "id": 73, + "prevSize": 32, + "code": 59102, + "name": "pin-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 77, + "id": 72, + "prevSize": 32, + "code": 59103, + "name": "pencil-alt2", + "tempChar": "", + "ligatures": "" + }, + { + "order": 78, + "id": 71, + "prevSize": 32, + "code": 59104, + "name": "palette", + "tempChar": "", + "ligatures": "" + }, + { + "order": 79, + "id": 70, + "prevSize": 32, + "code": 59105, + "name": "more", + "tempChar": "", + "ligatures": "" + }, + { + "order": 80, + "id": 69, + "prevSize": 32, + "code": 59106, + "name": "more-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 81, + "id": 68, + "prevSize": 32, + "code": 59107, + "name": "microphone-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 82, + "id": 67, + "prevSize": 32, + "code": 59108, + "name": "magnet", + "tempChar": "", + "ligatures": "" + }, + { + "order": 83, + "id": 66, + "prevSize": 32, + "code": 59109, + "name": "line-double", + "tempChar": "", + "ligatures": "" + }, + { + "order": 84, + "id": 65, + "prevSize": 32, + "code": 59110, + "name": "line-dotted", + "tempChar": "", + "ligatures": "" + }, + { + "order": 85, + "id": 64, + "prevSize": 32, + "code": 59111, + "name": "line-dashed", + "tempChar": "", + "ligatures": "" + }, + { + "order": 86, + "id": 63, + "prevSize": 32, + "code": 59112, + "name": "layout-width-full", + "tempChar": "", + "ligatures": "" + }, + { + "order": 87, + "id": 62, + "prevSize": 32, + "code": 59113, + "name": "layout-width-default", + "tempChar": "", + "ligatures": "" + }, + { + "order": 88, + "id": 61, + "prevSize": 32, + "code": 59114, + "name": "layout-width-default-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 89, + "id": 60, + "prevSize": 32, + "code": 59115, + "name": "layout-tab", + "tempChar": "", + "ligatures": "" + }, + { + "order": 90, + "id": 59, + "prevSize": 32, + "code": 59116, + "name": "layout-tab-window", + "tempChar": "", + "ligatures": "" + }, + { + "order": 91, + "id": 58, + "prevSize": 32, + "code": 59117, + "name": "layout-tab-v", + "tempChar": "", + "ligatures": "" + }, + { + "order": 92, + "id": 57, + "prevSize": 32, + "code": 59118, + "name": "layout-tab-min", + "tempChar": "", + "ligatures": "" + }, + { + "order": 93, + "id": 56, + "prevSize": 32, + "code": 59119, + "name": "layout-slider", + "tempChar": "", + "ligatures": "" + }, + { + "order": 94, + "id": 55, + "prevSize": 32, + "code": 59120, + "name": "layout-slider-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 95, + "id": 54, + "prevSize": 32, + "code": 59121, + "name": "layout-sidebar-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 96, + "id": 53, + "prevSize": 32, + "code": 59122, + "name": "layout-sidebar-none", + "tempChar": "", + "ligatures": "" + }, + { + "order": 97, + "id": 52, + "prevSize": 32, + "code": 59123, + "name": "layout-sidebar-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 98, + "id": 51, + "prevSize": 32, + "code": 59124, + "name": "layout-placeholder", + "tempChar": "", + "ligatures": "" + }, + { + "order": 99, + "id": 50, + "prevSize": 32, + "code": 59125, + "name": "layout-menu", + "tempChar": "", + "ligatures": "" + }, + { + "order": 100, + "id": 49, + "prevSize": 32, + "code": 59126, + "name": "layout-menu-v", + "tempChar": "", + "ligatures": "" + }, + { + "order": 101, + "id": 48, + "prevSize": 32, + "code": 59127, + "name": "layout-menu-separated", + "tempChar": "", + "ligatures": "" + }, + { + "order": 102, + "id": 47, + "prevSize": 32, + "code": 59128, + "name": "layout-menu-full", + "tempChar": "", + "ligatures": "" + }, + { + "order": 103, + "id": 46, + "prevSize": 32, + "code": 59129, + "name": "layout-media-right-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 104, + "id": 45, + "prevSize": 32, + "code": 59130, + "name": "layout-media-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 105, + "id": 44, + "prevSize": 32, + "code": 59131, + "name": "layout-media-overlay", + "tempChar": "", + "ligatures": "" + }, + { + "order": 106, + "id": 43, + "prevSize": 32, + "code": 59132, + "name": "layout-media-overlay-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 107, + "id": 42, + "prevSize": 32, + "code": 59133, + "name": "layout-media-overlay-alt-2", + "tempChar": "", + "ligatures": "" + }, + { + "order": 108, + "id": 41, + "prevSize": 32, + "code": 59134, + "name": "layout-media-left-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 109, + "id": 40, + "prevSize": 32, + "code": 59135, + "name": "layout-media-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 110, + "id": 39, + "prevSize": 32, + "code": 59136, + "name": "layout-media-center-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 111, + "id": 38, + "prevSize": 32, + "code": 59137, + "name": "layout-media-center", + "tempChar": "", + "ligatures": "" + }, + { + "order": 112, + "id": 37, + "prevSize": 32, + "code": 59138, + "name": "layout-list-thumb", + "tempChar": "", + "ligatures": "" + }, + { + "order": 113, + "id": 36, + "prevSize": 32, + "code": 59139, + "name": "layout-list-thumb-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 114, + "id": 35, + "prevSize": 32, + "code": 59140, + "name": "layout-list-post", + "tempChar": "", + "ligatures": "" + }, + { + "order": 115, + "id": 34, + "prevSize": 32, + "code": 59141, + "name": "layout-list-large-image", + "tempChar": "", + "ligatures": "" + }, + { + "order": 116, + "id": 33, + "prevSize": 32, + "code": 59142, + "name": "layout-line-solid", + "tempChar": "", + "ligatures": "" + }, + { + "order": 117, + "id": 32, + "prevSize": 32, + "code": 59143, + "name": "layout-grid4", + "tempChar": "", + "ligatures": "" + }, + { + "order": 118, + "id": 31, + "prevSize": 32, + "code": 59144, + "name": "layout-grid3", + "tempChar": "", + "ligatures": "" + }, + { + "order": 119, + "id": 30, + "prevSize": 32, + "code": 59145, + "name": "layout-grid2", + "tempChar": "", + "ligatures": "" + }, + { + "order": 120, + "id": 29, + "prevSize": 32, + "code": 59146, + "name": "layout-grid2-thumb", + "tempChar": "", + "ligatures": "" + }, + { + "order": 121, + "id": 28, + "prevSize": 32, + "code": 59147, + "name": "layout-cta-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 122, + "id": 27, + "prevSize": 32, + "code": 59148, + "name": "layout-cta-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 123, + "id": 26, + "prevSize": 32, + "code": 59149, + "name": "layout-cta-center", + "tempChar": "", + "ligatures": "" + }, + { + "order": 124, + "id": 25, + "prevSize": 32, + "code": 59150, + "name": "layout-cta-btn-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 125, + "id": 24, + "prevSize": 32, + "code": 59151, + "name": "layout-cta-btn-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 126, + "id": 23, + "prevSize": 32, + "code": 59152, + "name": "layout-column4", + "tempChar": "", + "ligatures": "" + }, + { + "order": 127, + "id": 22, + "prevSize": 32, + "code": 59153, + "name": "layout-column3", + "tempChar": "", + "ligatures": "" + }, + { + "order": 128, + "id": 21, + "prevSize": 32, + "code": 59154, + "name": "layout-column2", + "tempChar": "", + "ligatures": "" + }, + { + "order": 129, + "id": 20, + "prevSize": 32, + "code": 59155, + "name": "layout-accordion-separated", + "tempChar": "", + "ligatures": "" + }, + { + "order": 130, + "id": 19, + "prevSize": 32, + "code": 59156, + "name": "layout-accordion-merged", + "tempChar": "", + "ligatures": "" + }, + { + "order": 131, + "id": 18, + "prevSize": 32, + "code": 59157, + "name": "layout-accordion-list", + "tempChar": "", + "ligatures": "" + }, + { + "order": 132, + "id": 17, + "prevSize": 32, + "code": 59158, + "name": "ink-pen", + "tempChar": "", + "ligatures": "" + }, + { + "order": 133, + "id": 16, + "prevSize": 32, + "code": 59159, + "name": "info-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 134, + "id": 15, + "prevSize": 32, + "code": 59160, + "name": "help-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 135, + "id": 14, + "prevSize": 32, + "code": 59161, + "name": "headphone-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 136, + "id": 13, + "prevSize": 32, + "code": 59162, + "name": "hand-point-up", + "tempChar": "", + "ligatures": "" + }, + { + "order": 137, + "id": 12, + "prevSize": 32, + "code": 59163, + "name": "hand-point-right", + "tempChar": "", + "ligatures": "" + }, + { + "order": 138, + "id": 11, + "prevSize": 32, + "code": 59164, + "name": "hand-point-left", + "tempChar": "", + "ligatures": "" + }, + { + "order": 139, + "id": 10, + "prevSize": 32, + "code": 59165, + "name": "hand-point-down", + "tempChar": "", + "ligatures": "" + }, + { + "order": 140, + "id": 9, + "prevSize": 32, + "code": 59166, + "name": "gallery", + "tempChar": "", + "ligatures": "" + }, + { + "order": 141, + "id": 8, + "prevSize": 32, + "code": 59167, + "name": "face-smile", + "tempChar": "", + "ligatures": "" + }, + { + "order": 142, + "id": 7, + "prevSize": 32, + "code": 59168, + "name": "face-sad", + "tempChar": "", + "ligatures": "" + }, + { + "order": 143, + "id": 6, + "prevSize": 32, + "code": 59169, + "name": "credit-card", + "tempChar": "", + "ligatures": "" + }, + { + "order": 144, + "id": 5, + "prevSize": 32, + "code": 59170, + "name": "control-skip-forward", + "tempChar": "", + "ligatures": "" + }, + { + "order": 145, + "id": 4, + "prevSize": 32, + "code": 59171, + "name": "control-skip-backward", + "tempChar": "", + "ligatures": "" + }, + { + "order": 146, + "id": 3, + "prevSize": 32, + "code": 59172, + "name": "control-record", + "tempChar": "", + "ligatures": "" + }, + { + "order": 147, + "id": 2, + "prevSize": 32, + "code": 59173, + "name": "control-eject", + "tempChar": "", + "ligatures": "" + }, + { + "order": 148, + "id": 1, + "prevSize": 32, + "code": 59174, + "name": "comments-smiley", + "tempChar": "", + "ligatures": "" + }, + { + "order": 149, + "id": 0, + "prevSize": 32, + "code": 59175, + "name": "brush-alt", + "tempChar": "", + "ligatures": "" + } + ], + "id": 1, + "metadata": { + "name": "Vol 3" + }, + "height": 1024, + "prevSize": 32, + "icons": [ + { + "id": 95, + "paths": [ + "M702.765 0h-521.096v119.507h-31.081c-49.815 0-90.353 40.538-90.353 90.353v517.301l151.853 298.526 148.42-298.707v-517.12c0-49.815-40.538-90.353-90.353-90.353h-28.25v-59.272h420.683v301.176h301.176v602.353h-692.706v60.235h752.941v-704.271l-321.235-319.729zM235.4 843.415h-48.429l-66.5-130.711v-352.256h60.235v363.038h60.235v-363.038h59.272v352.437l-64.813 130.53zM300.213 209.86v90.353h-179.742v-90.353c0-16.565 13.553-30.118 30.118-30.118h119.507c16.625 0 30.118 13.553 30.118 30.118zM722.824 104.93l197.15 196.247h-197.15v-196.247z" + ], + "grid": 0, + "tags": [ + "write" + ] + }, + { + "id": 94, + "paths": [ + "M0 60.235v903.529h1024v-903.529h-1024zM963.765 120.471v180.706h-903.529v-180.706h903.529zM60.235 903.529v-542.118h903.529v542.118h-903.529zM421.647 240.941h-60.235v-60.235h60.235v60.235zM301.176 240.941h-60.235v-60.235h60.235v60.235zM180.706 240.941h-60.235v-60.235h60.235v60.235z" + ], + "grid": 0, + "tags": [ + "window" + ] + }, + { + "id": 93, + "paths": [ + "M120.471 0h60.235v60.235h-60.235v-60.235zM240.941 60.235h60.235v-60.235h-60.235v60.235zM361.412 60.235h60.235v-60.235h-60.235v60.235zM481.882 60.235h60.235v-60.235h-60.235v60.235zM602.353 60.235h60.235v-60.235h-60.235v60.235zM722.824 60.235h60.235v-60.235h-60.235v60.235zM843.294 60.235h60.235v-60.235h-60.235v60.235zM120.471 542.118h60.235v-60.235h-60.235v60.235zM240.941 542.118h60.235v-60.235h-60.235v60.235zM361.412 542.118h60.235v-60.235h-60.235v60.235zM602.353 542.118h60.235v-60.235h-60.235v60.235zM722.824 542.118h60.235v-60.235h-60.235v60.235zM843.294 542.118h60.235v-60.235h-60.235v60.235zM120.471 1024h60.235v-60.235h-60.235v60.235zM240.941 1024h60.235v-60.235h-60.235v60.235zM361.412 1024h60.235v-60.235h-60.235v60.235zM481.882 1024h60.235v-60.235h-60.235v60.235zM602.353 1024h60.235v-60.235h-60.235v60.235zM722.824 1024h60.235v-60.235h-60.235v60.235zM843.294 1024h60.235v-60.235h-60.235v60.235zM963.765 0v60.235h60.235v-60.235h-60.235zM963.765 180.706h60.235v-60.235h-60.235v60.235zM963.765 301.176h60.235v-60.235h-60.235v60.235zM963.765 421.647h60.235v-60.235h-60.235v60.235zM963.765 542.118h60.235v-60.235h-60.235v60.235zM963.765 662.588h60.235v-60.235h-60.235v60.235zM963.765 783.059h60.235v-60.235h-60.235v60.235zM963.765 903.529h60.235v-60.235h-60.235v60.235zM481.882 180.706h60.235v-60.235h-60.235v60.235zM481.882 301.176h60.235v-60.235h-60.235v60.235zM481.882 421.647h60.235v-60.235h-60.235v60.235zM481.882 542.118h60.235v-60.235h-60.235v60.235zM481.882 662.588h60.235v-60.235h-60.235v60.235zM481.882 783.059h60.235v-60.235h-60.235v60.235zM481.882 903.529h60.235v-60.235h-60.235v60.235zM963.765 1024h60.235v-60.235h-60.235v60.235zM0 60.235h60.235v-60.235h-60.235v60.235zM0 180.706h60.235v-60.235h-60.235v60.235zM0 301.176h60.235v-60.235h-60.235v60.235zM0 421.647h60.235v-60.235h-60.235v60.235zM0 542.118h60.235v-60.235h-60.235v60.235zM0 662.588h60.235v-60.235h-60.235v60.235zM0 783.059h60.235v-60.235h-60.235v60.235zM0 903.529h60.235v-60.235h-60.235v60.235zM0 1024h60.235v-60.235h-60.235v60.235z" + ], + "grid": 0, + "tags": [ + "widgetized" + ] + }, + { + "id": 92, + "paths": [ + "M120.471 0h60.235v60.235h-60.235v-60.235zM301.176 0h-60.235v60.235h60.235v-60.235zM421.647 0h-60.235v60.235h60.235v-60.235zM542.118 0h-60.235v60.235h60.235v-60.235zM662.588 0h-60.235v60.235h60.235v-60.235zM783.059 0h-60.235v60.235h60.235v-60.235zM843.294 60.235h60.235v-60.235h-60.235v60.235zM120.471 1024h60.235v-60.235h-60.235v60.235zM240.941 1024h60.235v-60.235h-60.235v60.235zM361.412 1024h60.235v-60.235h-60.235v60.235zM481.882 1024h60.235v-60.235h-60.235v60.235zM602.353 1024h60.235v-60.235h-60.235v60.235zM722.824 1024h60.235v-60.235h-60.235v60.235zM843.294 1024h60.235v-60.235h-60.235v60.235zM963.765 0v60.235h60.235v-60.235h-60.235zM963.765 180.706h60.235v-60.235h-60.235v60.235zM963.765 301.176h60.235v-60.235h-60.235v60.235zM963.765 421.647h60.235v-60.235h-60.235v60.235zM963.765 542.118h60.235v-60.235h-60.235v60.235zM963.765 662.588h60.235v-60.235h-60.235v60.235zM963.765 783.059h60.235v-60.235h-60.235v60.235zM963.765 903.529h60.235v-60.235h-60.235v60.235zM963.765 1024h60.235v-60.235h-60.235v60.235zM0 60.235h60.235v-60.235h-60.235v60.235zM0 180.706h60.235v-60.235h-60.235v60.235zM0 301.176h60.235v-60.235h-60.235v60.235zM0 421.647h60.235v-60.235h-60.235v60.235zM0 542.118h60.235v-60.235h-60.235v60.235zM0 662.588h60.235v-60.235h-60.235v60.235zM0 783.059h60.235v-60.235h-60.235v60.235zM0 903.529h60.235v-60.235h-60.235v60.235zM0 1024h60.235v-60.235h-60.235v60.235zM811.068 477.606c1.265 11.264 2.108 22.709 2.108 34.394s-0.843 23.13-2.108 34.394l-2.229 19.757-86.679 26.022c-1.506 3.915-3.072 7.77-4.819 11.625l42.827 79.631-12.348 15.541c-14.336 18.010-30.78 34.455-48.851 48.851l-15.541 12.408-79.631-42.888c-3.795 1.687-7.71 3.313-11.625 4.819l-25.961 86.618-19.697 2.289c-11.324 1.325-22.829 2.108-34.515 2.108s-23.191-0.783-34.515-2.108l-19.697-2.289-26.022-86.618c-3.915-1.506-7.77-3.072-11.625-4.819l-79.691 42.827-15.541-12.348c-18.010-14.336-34.455-30.78-48.791-48.851l-12.288-15.48 42.827-79.631c-1.747-3.915-3.313-7.77-4.819-11.686l-86.679-26.022-2.229-19.757c-1.265-11.264-2.108-22.709-2.108-34.394s0.843-23.13 2.108-34.394l2.229-19.757 86.679-26.022c1.506-3.915 3.072-7.77 4.819-11.625l-42.827-79.631 12.288-15.541c14.276-17.95 30.72-34.394 48.851-48.851l15.541-12.408 79.631 42.888c3.795-1.747 7.71-3.313 11.625-4.819l26.022-86.618 19.697-2.289c22.648-2.65 46.381-2.65 69.030 0l19.697 2.289 26.022 86.618c3.915 1.446 7.77 3.072 11.625 4.819l79.631-42.888 15.541 12.408c18.010 14.336 34.455 30.78 48.791 48.791l12.348 15.541-42.827 79.691c1.687 3.795 3.313 7.71 4.819 11.565l86.679 26.082 2.229 19.757zM752.941 512c0-2.711-0.060-5.421-0.181-8.132l-78.487-23.552-4.578-15.661c-3.132-10.541-7.409-20.962-12.71-30.84l-7.65-14.276 38.671-71.861c-3.735-3.976-7.59-7.891-11.625-11.625l-71.8 38.671-14.396-7.71c-9.879-5.301-20.299-9.638-30.901-12.77l-15.661-4.638-23.492-78.366c-5.361-0.241-10.903-0.241-16.264 0l-23.492 78.426-15.661 4.638c-10.722 3.192-21.082 7.469-30.84 12.71l-14.276 7.77-71.921-38.731c-4.036 3.795-7.891 7.65-11.625 11.625l38.671 71.861-7.71 14.276c-5.301 9.879-9.638 20.239-12.77 30.961l-4.638 15.601-78.366 23.492c-0.12 2.711-0.181 5.421-0.181 8.132s0.060 5.421 0.181 8.072l78.426 23.552 4.638 15.661c3.132 10.662 7.469 21.082 12.77 30.961l7.65 14.276-38.671 71.861c3.735 3.976 7.59 7.891 11.625 11.625l71.861-38.671 14.276 7.65c9.879 5.301 20.299 9.638 30.901 12.77l15.661 4.638 23.552 78.426c5.361 0.241 10.903 0.241 16.264 0l23.552-78.366 15.601-4.638c10.662-3.132 21.082-7.469 30.961-12.77l14.276-7.65 71.8 38.671c4.036-3.735 7.891-7.65 11.625-11.625l-38.671-71.861 7.65-14.276c5.301-9.879 9.638-20.239 12.77-30.961l4.638-15.601 78.366-23.552c0.12-2.771 0.181-5.481 0.181-8.192z" + ], + "grid": 0, + "tags": [ + "widget" + ] + }, + { + "id": 91, + "paths": [ + "M120.471 0h60.235v60.235h-60.235v-60.235zM301.176 0h-60.235v60.235h60.235v-60.235zM421.647 0h-60.235v60.235h60.235v-60.235zM542.118 0h-60.235v60.235h60.235v-60.235zM662.588 0h-60.235v60.235h60.235v-60.235zM783.059 0h-60.235v60.235h60.235v-60.235zM843.294 60.235h60.235v-60.235h-60.235v60.235zM120.471 1024h60.235v-60.235h-60.235v60.235zM240.941 1024h60.235v-60.235h-60.235v60.235zM361.412 1024h60.235v-60.235h-60.235v60.235zM481.882 1024h60.235v-60.235h-60.235v60.235zM602.353 1024h60.235v-60.235h-60.235v60.235zM722.824 1024h60.235v-60.235h-60.235v60.235zM843.294 1024h60.235v-60.235h-60.235v60.235zM963.765 0v60.235h60.235v-60.235h-60.235zM963.765 180.706h60.235v-60.235h-60.235v60.235zM963.765 301.176h60.235v-60.235h-60.235v60.235zM963.765 421.647h60.235v-60.235h-60.235v60.235zM963.765 542.118h60.235v-60.235h-60.235v60.235zM963.765 662.588h60.235v-60.235h-60.235v60.235zM963.765 783.059h60.235v-60.235h-60.235v60.235zM963.765 903.529h60.235v-60.235h-60.235v60.235zM963.765 1024h60.235v-60.235h-60.235v60.235zM0 60.235h60.235v-60.235h-60.235v60.235zM0 180.706h60.235v-60.235h-60.235v60.235zM0 301.176h60.235v-60.235h-60.235v60.235zM0 421.647h60.235v-60.235h-60.235v60.235zM0 542.118h60.235v-60.235h-60.235v60.235zM0 662.588h60.235v-60.235h-60.235v60.235zM0 783.059h60.235v-60.235h-60.235v60.235zM0 903.529h60.235v-60.235h-60.235v60.235zM0 1024h60.235v-60.235h-60.235v60.235zM511.88 604.943l-249.615-249.796-42.647 42.647 292.262 292.382 292.442-292.382-42.586-42.586-249.856 249.736z" + ], + "grid": 0, + "tags": [ + "widget-alt" + ] + }, + { + "id": 90, + "paths": [ + "M94.208 120.471c-51.441 0-93.365 41.562-93.365 92.642h-0.843v658.914c0 51.080 41.864 92.642 93.365 92.642h812.695v-99.689h117.941v-744.508h-929.792zM93.365 904.373c-18.251 0-33.129-14.517-33.129-32.407v-577.235c1.446 0.422 3.253 0.301 4.698 0.723 8.614 2.53 17.649 4.096 27.287 4.277 0.422 0 0.723 0.181 1.144 0.181h752.52v182.814h-172.213c-51.923 0-94.148 40.538-94.148 90.353v60.235c0 49.815 42.225 90.353 94.148 90.353h172.213v180.706h-752.52zM673.611 663.432c-18.733 0-33.912-13.493-33.912-30.118v-60.235c0-16.625 15.24-30.118 33.912-30.118h290.153v120.471h-290.153zM963.765 804.683h-57.705v-81.016h57.705v81.016zM906.059 482.726v-243.049h-811.851c-16.444 0-33.129-8.252-33.129-26.564 0.060-17.89 14.938-32.407 33.129-32.407h869.557v302.020h-57.705z" + ], + "grid": 0, + "tags": [ + "wallet" + ] + }, + { + "id": 89, + "paths": [ + "M0 60.235v903.529h1024v-903.529h-1024zM963.765 240.941h-16.143l-141.914-120.471h158.057v120.471zM526.637 421.647l141.975-120.471h175.827l-141.975 120.471h-175.827zM409.781 240.941l-141.975-120.471h175.767l141.975 120.471h-175.767zM575.488 301.176l-141.975 120.471h-175.827l141.914-120.471h175.887zM678.731 240.941l-141.975-120.471h175.767l141.975 120.471h-175.767zM60.235 120.471h114.447l141.975 120.471h-256.422v-120.471zM60.235 301.176h246.302l-141.975 120.471h-104.328v-120.471zM963.765 903.529h-903.529v-421.647h903.529v421.647zM963.765 421.647h-168.177l141.914-120.471h26.263v120.471z" + ], + "grid": 0, + "tags": [ + "video-clapper" + ] + }, + { + "id": 88, + "paths": [ + "M782.517 406.588v-135.529c0-49.815-40.84-90.353-91.076-90.353h-450.5v-30.118c0-16.625 13.553-30.118 30.118-30.118h333.764v-60.235h-333.764c-49.815 0-90.353 40.538-90.353 90.353v30.118h-89.63c-50.236 0-91.076 40.538-91.076 90.353v120.531c0 49.815 40.84 90.353 91.076 90.353h30.359v331.234c0 49.815 40.538 90.353 90.353 90.353h479.714c50.236 0 91.076-40.538 91.076-90.353v-135.59l241.423 167.635v-606.268l-241.483 167.635zM963.765 730.112l-241.483-167.635v250.699c0 16.625-13.794 30.118-30.84 30.118h-479.654c-16.565 0-30.118-13.493-30.118-30.118v-391.469h-90.594c-17.047 0-30.84-13.493-30.84-30.118v-120.531c0-16.625 13.794-30.118 30.84-30.118h600.425c16.986 0 30.84 13.493 30.84 30.118v250.76l241.423-167.695v375.989z" + ], + "grid": 0, + "tags": [ + "video-camera" + ] + }, + { + "id": 87, + "paths": [ + "M899.915 361.412c-62.163-38.972-133.361-60.235-207.209-60.235-46.863 0-92.1 8.674-134.867 24.335l154.744-154.744c12.228 6.144 25.781 9.939 40.358 9.939 49.815 0 90.353-40.538 90.353-90.353s-40.538-90.353-90.353-90.353-90.353 40.538-90.353 90.353c0 13.252 3.012 25.781 8.192 37.105l-235.52 235.46c-4.879-0.843-9.879-1.506-15.059-1.506-49.815 0-90.353 40.538-90.353 90.353 0 5.12 0.663 10.12 1.506 15.059l-203.957 203.957c-11.324-5.18-23.793-8.192-37.045-8.192-49.815 0-90.353 40.538-90.353 90.353s40.538 90.353 90.353 90.353 90.353-40.538 90.353-90.353c0-14.577-3.795-28.13-9.939-40.297l154.805-154.805c-15.782 43.068-24.395 88.727-24.395 134.867 0 88.486 36.864 164.744 60.235 204.258v127.036h180.706v-180.706h-140.71c-25.178-49.754-39.996-103.183-39.996-150.588 0-53.429 13.252-106.255 37.828-153.299 6.807 1.626 13.734 2.711 20.962 2.711 49.815 0 90.353-40.538 90.353-90.353 0-10.842-2.229-21.082-5.722-30.72 99.027-68.126 231.725-76.378 338.462-22.468v143.541h180.706v-180.706h-124.085zM752.941 60.235c16.625 0 30.118 13.493 30.118 30.118s-13.493 30.118-30.118 30.118-30.118-13.493-30.118-30.118 13.493-30.118 30.118-30.118zM90.353 783.059c-16.625 0-30.118-13.493-30.118-30.118s13.493-30.118 30.118-30.118 30.118 13.493 30.118 30.118-13.493 30.118-30.118 30.118zM421.647 903.529h60.235v60.235h-60.235v-60.235zM420.201 481.882c-16.625 0-30.118-13.493-30.118-30.118s13.493-30.118 30.118-30.118 30.118 13.493 30.118 30.118-13.493 30.118-30.118 30.118zM963.765 481.882h-60.235v-60.235h60.235v60.235z" + ], + "grid": 0, + "tags": [ + "vector" + ] + }, + { + "id": 86, + "paths": [ + "M158.298 410.443c-5.542 0-13.192 0.181-18.010 1.024l-1.446 0.241-0.723 1.265c-24.576 45.056-73.487 176.73-81.257 196.126-16.866-1.205-39.334-1.144-39.334-22.528 0-15.541 54.453-142.758 61.982-163.659l1.446-3.976h-4.216c-5.060 0-9.999 0.301-14.818 0.663-4.518 0.301-8.794 0.602-12.951 0.602-10.963 0-44.634 1.325-48.67-25.72-1.626-11.204 3.012-23.432 8.373-29.395 1.024 14.697 23.913 14.035 30.118 14.035 13.673 0 42.586-5.722 60.898-8.072 21.263-2.711 45.116-8.915 67.042-8.915 21.986 0 37.948 13.372 37.948 31.684 0 6.385-2.048 13.432-5.963 20.299-11.625-2.65-28.732-3.674-40.418-3.674zM392.975 577.536c-12.469 2.952-28.13 1.566-28.13-24.094 0.12-31.322 34.515-67.644 51.682-67.644 3.072 0 12.107 2.229 10.12 12.228-10.541 53.188-59.031 44.936-55.356 51.019 17.468 29.033 103.063-14.095 94.75-75.174-2.771-20.841-15.36-34.876-39.394-34.876-44.574 0-95.593 66.199-104.629 114.929-18.251 18.552-38.972 17.227-40.538 17.047-1.265-1.747-1.325-5.24 0.783-12.228 3.735-12.288 12.348-31.021 22.227-47.586 9.276-15.48 18.974-31.624 18.974-43.55 0-14.396-8.493-21.685-25.118-21.685-21.745 0-61.741 26.624-61.741 26.624 1.566-12.71 41.984-94.449 41.984-105.472 0-12.89-5.843-21.745-21.865-21.745-4.156 0-16.324 4.156-23.311 6.686-6.686 51.441-33.31 93.907-43.851 117.459-19.697 43.912-41.502 89.871-41.502 109.026 0 18.071 17.408 35.358 36.201 36.141 16.866-63.729 58.067-132.879 86.317-132.879 0 0-32.587 67.885-32.587 98.967 0 15.3 3.253 31.021 27.287 31.021 0.12 0 0.241 0 0.361 0 21.745 2.229 45.297-27.166 55.115-41.080 1.325 33.069 30.178 36.744 42.767 36.744 36.683 0 69.15-22.347 93.786-61.982-13.673 11.324-47.285 28.070-64.331 32.105zM645.18 557.237c1.265-4.939 4.819-14.758 13.372-31.322 10.722-20.841 25.359-49.272 25.359-66.5 0-10.059-4.759-14.517-15.541-14.517-13.794 0-33.551 12.589-51.622 32.828l-5.060 5.602v-7.65c0-19.998-5.903-30.118-17.348-30.118-14.697 0-38.731 16.625-61.079 42.406 0 0 4.578-23.010 4.578-30.419 0-15.661-13.734-17.95-21.865-17.95-4.337 0-8.855 0.542-13.553 1.566-1.506 17.528-18.071 55.959-32.708 90.052-9.457 22.106-19.215 44.815-19.215 49.815 0 16.023 10.903 26.383 27.648 26.383 0.843 0 1.687 0 2.59-0.060 12.348-41.502 45.417-102.4 68.849-102.4h4.036l-1.385 3.915c-3.313 10.059-8.553 19.938-13.673 29.515-8.614 16.143-16.625 31.383-16.625 47.646 0 13.252 12.348 20.42 23.974 20.42 2.952 0 5.361-0.301 7.469-0.904 8.493-38.49 52.826-103.183 71.198-103.183h5.421l-3.012 4.638c-5.421 8.553-27.347 49.212-27.347 78.065 0 17.95 8.794 26.624 26.744 26.624 24.937 0 42.767-23.010 49.754-48.008-8.132 5.602-15.24 6.746-22.829 6.746-6.084 0.060-11.144-1.205-8.132-13.192zM754.989 576.512c-13.312 11.023-31.443 1.084-31.744-9.035-0.241-11.083 9.517-30.78 21.624-54.392 9.517-18.733 21.865-31.503 20.721-40.96-1.566-13.372-19.938-23.853-31.383-23.853-1.024 0-1.988 0.060-3.012 0.181-0.542 0-0.964 0.060-1.385 0.060-6.264 16.143-14.336 33.611-22.167 50.598-13.975 30.298-27.226 58.97-27.226 73.969 0 18.793 12.71 39.153 33.25 39.153 21.444-1.084 32.648-10.421 41.321-35.72zM761.193 427.731c5.542 0 12.168-0.602 19.456-1.687 9.457-11.505 14.216-21.203 14.216-28.732 0-7.77-12.168-12.047-47.224-12.348-11.083 11.204-10.481 19.275-10.481 28.25 0.060 9.698 7.951 14.517 24.034 14.517zM987.196 433.634l-1.807 0.060-0.241 1.687c-3.795 28.913-63.187 126.735-74.21 98.967-2.47-6.264 4.578-23.010 10.541-36.924 6.807-15.902 14.456-33.912 13.673-44.032-0.181-2.289-0.964-4.216-2.108-5.903-0.663-1.446-1.928-3.072-4.216-4.518-1.867-1.205-4.337-2.108-7.409-2.891-7.048-2.048-15.661-2.409-22.648-2.168-7.951-0.12-16.685 0.181-25.6 0.723l0.542-1.626c8.493-27.708 31.081-53.549 37.466-57.464 15.721-9.698 36.744-12.047 41.442 9.397 3.976-9.035 5.12-11.625 3.976-18.432-3.373-20.781-18.793-32.045-43.068-33.37-44.092-2.289-75.595 62.223-90.714 99.147l-0.361 0.843-0.723 0.542c-4.277 3.012-12.228 5-16.986 6.264-1.024 0.241-1.807 0.482-2.349 0.663-9.216 3.313-11.144 12.288-11.324 16.324-0.241 6.686 7.77 11.625 11.324 17.709 0 0-15.541 38.611-26.805 62.042-17.649 36.563-45.719 98.485-46.2 112.279-0.663 16.806 23.853 32.346 37.225 34.093 4.096-28.070 83.305-206.968 83.305-206.968 2.831-4.337 7.65-10.36 15.24-14.938 7.108-2.891 12.529-3.855 16.685-3.735 1.024 0.241 1.807 0.542 2.53 0.964 2.168 1.205 3.554 3.072 4.337 4.939-2.711 9.638-6.264 19.817-9.818 29.816-7.71 21.805-17.83 55.416-16.504 71.138 0.843 10.059 1.747 14.818 7.108 20.36 16.083 16.504 56.38-11.806 68.367-27.949l1.988 0.843c-14.336 40.84-36.382 68.488-59.934 69.21-31.383 1.084-44.454-19.215-44.454-19.215s-5.301 19.516 15.842 41.141c9.457 9.638 23.492 13.613 37.828 12.529 0.964-0.060 1.928-0.181 2.891-0.241 57.826-6.264 83.004-71.861 103.304-133.542 2.831-8.674 12.589-31.624 15.48-39.876 1.626-4.457 3.674-9.276 5.602-13.914l0.241-0.542c4.578-11.144 7.59-18.673 7.349-22.468-1.265-14.276-19.456-21.384-36.804-20.962z" + ], + "grid": 0, + "tags": [ + "themify-logo" + ] + }, + { + "id": 85, + "paths": [ + "M566.272 78.547c-59.994 0-126.313 10.18-199.078 32.888-577.476 180.465-320.211 579.343-244.555 618.737 128.361 66.56-69.331 215.281-69.331 215.281s169.683-49.634 385.747-71.8c259.735-26.504 551.454-64.331 577.777-208.836 41.201-226.545-93.907-586.27-450.56-586.27zM957.56 654.035c-19.697 108.122-360.749 142.938-524.649 159.624-81.498 8.373-156.19 20.48-218.293 32.407 8.493-21.143 13.011-43.309 11.144-65.837-2.108-25.178-14.697-72.041-74.933-103.364-22.408-13.372-102.882-117.459-89.088-233.592 17.709-148.721 185.645-231.304 323.403-274.372 64.090-19.998 125.048-30.118 181.128-30.118 118.724 0 215.703 44.092 288.346 131.132 98.003 117.459 122.338 277.564 102.942 384.12zM240.941 391.529c0-33.19 26.985-60.235 60.235-60.235s60.235 27.046 60.235 60.235-26.985 60.235-60.235 60.235-60.235-27.046-60.235-60.235zM542.118 361.412c0-33.31 26.925-60.235 60.235-60.235 33.25 0 60.235 26.925 60.235 60.235 0 33.19-26.985 60.235-60.235 60.235-33.31 0-60.235-27.046-60.235-60.235zM801.129 512c-333.824 369.965-578.259 57.224-578.259 57.224 192.753 172.514 578.259-57.224 578.259-57.224z" + ], + "grid": 0, + "tags": [ + "themify-favicon" + ] + }, + { + "id": 84, + "paths": [ + "M367.194 111.435c-577.416 180.465-320.211 579.343-244.495 618.737 128.361 66.56-69.391 215.281-69.391 215.281s169.683-49.634 385.747-71.8c259.735-26.504 551.514-64.331 577.777-208.836 48.128-264.614-144.384-711.198-649.638-553.382zM602.353 301.176c33.25 0 60.235 26.925 60.235 60.235 0 33.19-26.985 60.235-60.235 60.235-33.31 0-60.235-27.046-60.235-60.235 0-33.31 26.925-60.235 60.235-60.235zM301.176 331.294c33.25 0 60.235 27.046 60.235 60.235s-26.985 60.235-60.235 60.235-60.235-27.046-60.235-60.235 26.985-60.235 60.235-60.235zM222.871 569.224c192.753 172.514 578.259-57.224 578.259-57.224-333.824 369.965-578.259 57.224-578.259 57.224z" + ], + "grid": 0, + "tags": [ + "themify-favicon-alt" + ] + }, + { + "id": 83, + "paths": [ + "M806.189 180.706c-56.44-110.17-168.96-180.706-294.189-180.706s-237.688 70.475-294.189 180.706h-217.811v783.059h1024v-783.059h-217.811zM512 60.235c91.678 0 175.104 46.2 224.798 120.471h-449.596c49.754-74.21 133.12-120.471 224.798-120.471zM963.765 903.529h-903.529v-662.588h903.529v662.588zM481.882 602.353h-120.471v-60.235h120.471v-120.471h60.235v120.471h120.471v60.235h-120.471v120.471h-60.235v-120.471z" + ], + "grid": 0, + "tags": [ + "support" + ] + }, + { + "id": 82, + "paths": [ + "M1024 717.884c0-63.006-51.32-114.327-114.266-114.327h-264.794l75.896-272.083 1.144-212.028c-0.12-64.753-55.115-119.447-120.23-119.447h-180.164c-65.235 0-120.29 54.694-120.29 119.447v202.451l76.981 281.66h-264.011c-62.946 0-114.266 51.32-114.266 114.327v245.88h60.235v60.235h903.529v-60.235h60.235v-245.88zM963.765 903.529h-903.529v-185.645c0-29.816 24.215-54.091 54.031-54.091h343.16l-95.895-345.992v-198.355c0-31.563 28.070-59.211 60.055-59.211h180.164c31.864 0 59.874 27.648 59.874 59.211v199.8l-96.015 344.546h344.124c29.816 0 54.031 24.275 54.031 54.091v185.645z" + ], + "grid": 0, + "tags": [ + "stamp" + ] + }, + { + "id": 81, + "paths": [ + "M322.5 352.617l-159.443 159.383 159.383 159.383-42.586 42.586-201.969-201.969 202.029-202.029 42.586 42.647zM744.147 309.971l-42.586 42.586 159.383 159.443-159.383 159.383 42.586 42.586 201.969-201.969-201.969-202.029zM481.882 1024h60.235v-1024h-60.235v1024z" + ], + "grid": 0, + "tags": [ + "split-v-alt" + ] + }, + { + "id": 80, + "paths": [ + "M997.557 231.544l-84.51-84.57c-33.912-34.033-93.606-34.153-127.759 0l-758.242 758.483 327.319-0.181 131.494-130.59 49.634 46.682 462.065-462.125c17.047-16.986 26.443-39.695 26.443-63.849s-9.397-46.803-26.443-63.849zM408.154 609.34l49.634-49.634 127.036 127.036-49.574 49.694-127.096-127.096zM329.547 845.041l-157.094 0.060 193.114-193.175 78.968 78.968-114.989 114.146zM954.97 316.717l-327.499 327.499-127.096-127.096 327.499-327.56c5.662-5.722 13.192-8.855 21.263-8.855s15.601 3.132 21.323 8.794l84.51 84.57c11.746 11.806 11.746 30.84 0 42.647z" + ], + "grid": 0, + "tags": [ + "slice" + ] + }, + { + "id": 79, + "paths": [ + "M1.566 60.235h180.706v60.235h-120.471v783.059h120.471v60.235h-180.706v-903.529zM844.86 60.235v60.235h120.471v783.059h-120.471v60.235h180.706v-903.529h-180.706zM536.696 479.895c-67.162-26.082-96.798-48.429-96.798-93.967 0-33.25 25.299-72.945 91.738-72.945 44.032 0 76.559 14.396 92.461 23.13l17.348-51.32c-21.624-12.288-57.826-23.853-107.64-23.853-94.63 0-157.455 56.38-157.455 132.216 0 68.668 49.092 109.809 128.602 137.999 65.717 25.239 91.738 51.26 91.738 96.738 0 49.092-37.587 83.125-101.858 83.125-43.369 0-84.51-14.456-112.7-31.804l-15.902 52.766c26.022 17.288 77.282 31.081 124.205 31.081 114.869 0 170.526-64.994 170.526-140.168 0.060-71.56-41.924-111.255-124.265-142.999z" + ], + "grid": 0, + "tags": [ + "shortcode" + ] + }, + { + "id": 78, + "paths": [ + "M915.998 512l-202.029 202.029-42.586-42.586 159.443-159.443-159.383-159.383 42.586-42.586 201.969 201.969zM421.647 1024h60.235v-1024h-60.235v1024z" + ], + "grid": 0, + "tags": [ + "shift-right-alt" + ] + }, + { + "id": 77, + "paths": [ + "M352.617 352.617l-159.443 159.383 159.383 159.383-42.586 42.586-201.969-201.969 202.029-202.029 42.586 42.647zM542.118 0v1024h60.235v-1024h-60.235z" + ], + "grid": 0, + "tags": [ + "shift-left-alt" + ] + }, + { + "id": 76, + "paths": [ + "M0 17.649v1006.351h1006.351l-1006.351-1006.351zM60.235 163.057l178.116 178.116-39.454 39.454 42.586 42.586 39.454-39.454 42.707 42.707-39.454 39.514 42.586 42.586 39.454-39.454 42.767 42.707-39.454 39.454 42.586 42.586 39.454-39.454 42.767 42.767-39.454 39.454 42.586 42.586 39.454-39.454 42.707 42.707-39.454 39.454 42.586 42.586 39.454-39.454 42.767 42.767-39.454 39.454 42.586 42.586 39.454-39.454 153.359 153.359h-800.708v-800.708zM120.471 903.529h464.233l-464.233-464.233v464.233zM180.706 584.704l258.59 258.59h-258.59v-258.59z" + ], + "grid": 0, + "tags": [ + "ruler-alt-2" + ] + }, + { + "id": 75, + "paths": [ + "M120.471 0v1018.097l122.157-149.444 90.534 113.242 90.413-112.941 90.293 112.941 90.353-112.941 90.353 112.941 90.293-112.941 118.664 148.179v-1017.133h-783.059zM843.294 845.463l-58.428-72.945-90.293 112.941-90.353-112.941-90.353 112.941-90.293-112.941-90.413 112.941-90.052-112.64-62.404 76.378v-788.962h662.588v785.227zM662.408 240.941h-361.412v-60.235h361.412v60.235zM541.937 481.882h-240.941v-60.235h240.941v60.235zM721.498 361.412h-421.647v-60.235h421.647v60.235zM301.176 602.353h421.647v60.235h-421.647v-60.235z" + ], + "grid": 0, + "tags": [ + "receipt" + ] + }, + { + "id": 74, + "paths": [ + "M481.882 692.706h60.235v331.294h-60.235v-331.294zM843.294 530.071v132.518h-662.588v-132.518l65.897-29.335 66.62-380.265-25.841-46.923-40.418-73.547h530.071l-40.478 73.547-25.781 46.923 66.62 380.205 65.897 29.395zM783.059 569.163l-59.392-26.504-5.542-31.563-70.355-401.107 10.24-18.613 17.167-31.142h-326.355l27.407 49.815-3.614 20.841-72.282 411.768-59.392 26.504v33.19h542.118v-33.19z" + ], + "grid": 0, + "tags": [ + "pin" + ] + }, + { + "id": 73, + "paths": [ + "M325.512 655.902l42.586 42.586-316.717 316.657-42.586-42.586 316.717-316.657zM1024 374.784l-132.036 38.37-221.786 315.994 25.841 67.343-93.666 93.666-468.51-468.51 93.726-93.726 67.343 25.841 315.934-221.786 14.938-51.441 23.371-80.535 374.844 374.784zM909.432 345.389l-230.822-230.761-9.879 34.153-5.903 20.36-359.605 252.386-60.777-23.311-23.432 23.432 383.337 383.337 23.432-23.492-11.746-30.84-11.505-29.937 18.492-26.263 233.894-333.342 20.36-5.903 34.153-9.818z" + ], + "grid": 0, + "tags": [ + "pin-alt" + ] + }, + { + "id": 72, + "paths": [ + "M571.753 0h-119.507c-49.815 0-90.353 40.538-90.353 90.353v641.928l151.853 298.526 148.42-298.707v-641.747c-0.060-49.815-40.599-90.353-90.413-90.353zM452.247 60.235h119.507c16.565 0 30.118 13.553 30.118 30.118v61.38h-179.742v-61.38c0-16.565 13.493-30.118 30.118-30.118zM486.581 844.559l-56.26-110.532h163.539l-54.874 110.532h-52.405zM422.129 673.852v-339.546h179.742v339.546h-179.742zM422.129 274.071v-62.103h179.742v62.103h-179.742z" + ], + "grid": 0, + "tags": [ + "pencil-alt" + ] + }, + { + "id": 71, + "paths": [ + "M512 30.118c-265.698 0-481.882 216.184-481.882 481.882 0 257.867 201.909 469.052 459.656 480.798l77.583 3.554-164.021-164.021c-17.047-17.047-26.443-39.755-26.443-63.91s9.397-46.803 26.443-63.91c34.093-34.093 93.666-34.093 127.759 0l224.015 224.015 20.48-13.432c136.734-89.51 218.293-240.218 218.293-403.095 0-265.698-216.184-481.882-481.882-481.882zM762.579 850.824l-188.838-188.838c-56.802-56.862-156.13-56.862-212.932 0-28.431 28.431-44.092 66.259-44.092 106.496s15.661 78.065 44.092 106.496l44.634 44.634c-182.272-47.164-315.091-212.028-315.091-407.612 0-232.508 189.139-421.647 421.647-421.647s421.647 189.139 421.647 421.647c0 134.325-63.488 259.313-171.068 338.824zM692.706 391.529c-66.44 0-120.471 54.031-120.471 120.471s54.031 120.471 120.471 120.471 120.471-54.031 120.471-120.471-54.031-120.471-120.471-120.471zM692.706 572.235c-33.19 0-60.235-27.046-60.235-60.235s27.046-60.235 60.235-60.235 60.235 27.046 60.235 60.235-27.046 60.235-60.235 60.235zM512 361.412c-49.875 0-90.353-40.418-90.353-90.353s40.478-90.353 90.353-90.353c49.935 0 90.353 40.418 90.353 90.353s-40.418 90.353-90.353 90.353zM346.353 354.846c0 33.25-26.985 60.235-60.235 60.235s-60.235-26.985-60.235-60.235 26.985-60.235 60.235-60.235 60.235 26.925 60.235 60.235z" + ], + "grid": 0, + "tags": [ + "palette" + ] + }, + { + "id": 70, + "paths": [ + "M120.471 361.412c-66.5 0-120.471 53.971-120.471 120.471s53.971 120.471 120.471 120.471 120.471-53.971 120.471-120.471-53.971-120.471-120.471-120.471zM120.471 542.118c-33.19 0-60.235-26.985-60.235-60.235s27.046-60.235 60.235-60.235 60.235 26.985 60.235 60.235-27.046 60.235-60.235 60.235zM512 361.412c-66.5 0-120.471 53.971-120.471 120.471s53.971 120.471 120.471 120.471 120.471-53.971 120.471-120.471-53.971-120.471-120.471-120.471zM512 542.118c-33.19 0-60.235-26.985-60.235-60.235s27.046-60.235 60.235-60.235 60.235 26.985 60.235 60.235-27.046 60.235-60.235 60.235zM903.529 361.412c-66.5 0-120.471 53.971-120.471 120.471s53.971 120.471 120.471 120.471 120.471-53.971 120.471-120.471-53.971-120.471-120.471-120.471zM903.529 542.118c-33.19 0-60.235-26.985-60.235-60.235s27.046-60.235 60.235-60.235 60.235 26.985 60.235 60.235-27.046 60.235-60.235 60.235z" + ], + "grid": 0, + "tags": [ + "more" + ] + }, + { + "id": 69, + "paths": [ + "M240.941 481.882c0 66.5-53.971 120.471-120.471 120.471s-120.471-53.971-120.471-120.471 53.971-120.471 120.471-120.471 120.471 53.971 120.471 120.471zM512 361.412c-66.5 0-120.471 53.971-120.471 120.471s53.971 120.471 120.471 120.471 120.471-53.971 120.471-120.471-53.971-120.471-120.471-120.471zM903.529 361.412c-66.5 0-120.471 53.971-120.471 120.471s53.971 120.471 120.471 120.471 120.471-53.971 120.471-120.471-53.971-120.471-120.471-120.471z" + ], + "grid": 0, + "tags": [ + "more-alt" + ] + }, + { + "id": 68, + "paths": [ + "M699.573 422.912c41.442-45.417 67.464-105.231 67.464-171.49 0-140.649-114.387-255.036-255.036-255.036s-255.036 114.387-255.036 255.036c0 66.259 26.022 126.072 67.464 171.49l68.488 480.617h88.968v119.507h60.235v-119.507h88.968l68.488-480.617zM361.412 129.325v111.616h60.235v-161.069c18.613-9.879 38.731-16.866 60.235-20.239v241.544h60.235v-241.544c21.504 3.373 41.623 10.36 60.235 20.239v161.069h60.235v-111.616c27.226 33.551 44.213 75.656 44.213 122.037 0 107.46-87.401 194.861-194.801 194.861s-194.801-87.341-194.801-194.801c0-46.441 16.986-88.546 44.213-122.097zM445.199 843.294l-52.405-367.676c35.72 19.034 75.896 30.901 119.206 30.901s83.486-11.866 119.206-30.961l-52.405 367.736h-133.602z" + ], + "grid": 0, + "tags": [ + "microphone-alt" + ] + }, + { + "id": 67, + "paths": [ + "M662.588 0v609.702c0 80.053-67.584 145.107-150.588 145.107s-150.588-65.054-150.588-145.107v-609.702h-301.176v628.375c0 256.964 232.749 395.625 451.765 395.625s451.765-138.662 451.765-395.625v-628.375h-301.176zM903.529 60.235v180.706h-180.706v-180.706h180.706zM301.176 60.235v180.706h-180.706v-180.706h180.706zM512 963.765c-157.395 0-391.529-89.329-391.529-335.39v-327.198h180.706v308.525c0 113.242 94.569 205.342 210.824 205.342s210.824-92.1 210.824-205.342v-308.525h180.706v327.198c0 246.061-234.135 335.39-391.529 335.39z" + ], + "grid": 0, + "tags": [ + "magnet" + ] + }, + { + "id": 66, + "paths": [ + "M1024 361.412v60.235h-1024v-60.235h1024zM0 602.353h1024v-60.235h-1024v60.235z" + ], + "grid": 0, + "tags": [ + "line-double" + ] + }, + { + "id": 65, + "paths": [ + "M0 481.762h30.118v60.235h-30.118v-60.235zM143.541 542.057h56.681v-60.235h-56.681v60.235zM313.585 542.057h56.681v-60.235h-56.681v60.235zM653.794 542.118h56.681v-60.235h-56.681v60.235zM483.689 542.057h56.621v-60.175h-56.621v60.175zM823.838 542.118h56.681v-60.235h-56.681v60.235zM993.882 481.882v60.235h30.118v-60.235h-30.118z" + ], + "grid": 0, + "tags": [ + "line-dotted" + ] + }, + { + "id": 64, + "paths": [ + "M0 481.882h240.941v60.235h-240.941v-60.235zM391.529 542.118h240.941v-60.235h-240.941v60.235zM783.059 481.882v60.235h240.941v-60.235h-240.941z" + ], + "grid": 0, + "tags": [ + "line-dashed" + ] + }, + { + "id": 63, + "paths": [ + "M0 0v1024h1024v-1024h-1024zM963.765 963.765h-903.529v-903.529h903.529v903.529z" + ], + "grid": 0, + "tags": [ + "layout-width-full" + ] + }, + { + "id": 62, + "paths": [ + "M0 0v1024h1024v-1024h-1024zM963.765 963.765h-903.529v-903.529h903.529v903.529zM180.706 481.882h60.235v60.235h-60.235v-60.235zM180.706 240.941h60.235v60.235h-60.235v-60.235zM180.706 602.353h60.235v60.235h-60.235v-60.235zM180.706 361.412h60.235v60.235h-60.235v-60.235zM180.706 120.471h60.235v60.235h-60.235v-60.235zM180.706 843.294h60.235v60.235h-60.235v-60.235zM180.706 722.824h60.235v60.235h-60.235v-60.235zM783.059 120.471h60.235v60.235h-60.235v-60.235zM783.059 361.412h60.235v60.235h-60.235v-60.235zM783.059 240.941h60.235v60.235h-60.235v-60.235zM783.059 481.882h60.235v60.235h-60.235v-60.235zM783.059 602.353h60.235v60.235h-60.235v-60.235zM783.059 722.824h60.235v60.235h-60.235v-60.235zM783.059 843.294h60.235v60.235h-60.235v-60.235z" + ], + "grid": 0, + "tags": [ + "layout-width-default" + ] + }, + { + "id": 61, + "paths": [ + "M120.471 963.765h60.235v60.235h-60.235v-60.235zM602.353 1024h60.235v-60.235h-60.235v60.235zM722.824 1024h60.235v-60.235h-60.235v60.235zM240.941 1024h60.235v-60.235h-60.235v60.235zM361.412 1024h60.235v-60.235h-60.235v60.235zM481.882 1024h60.235v-60.235h-60.235v60.235zM843.294 1024h60.235v-60.235h-60.235v60.235zM843.294 180.706h60.235v-60.235h-60.235v60.235zM843.294 301.176h60.235v-60.235h-60.235v60.235zM843.294 783.059h60.235v-60.235h-60.235v60.235zM843.294 421.647h60.235v-60.235h-60.235v60.235zM843.294 542.118h60.235v-60.235h-60.235v60.235zM843.294 903.529h60.235v-60.235h-60.235v60.235zM843.294 662.588h60.235v-60.235h-60.235v60.235zM843.294 0v60.235h60.235v-60.235h-60.235zM722.824 60.235h60.235v-60.235h-60.235v60.235zM361.412 60.235h60.235v-60.235h-60.235v60.235zM481.882 60.235h60.235v-60.235h-60.235v60.235zM602.353 60.235h60.235v-60.235h-60.235v60.235zM240.941 60.235h60.235v-60.235h-60.235v60.235zM120.471 60.235h60.235v-60.235h-60.235v60.235zM120.471 783.059h60.235v-60.235h-60.235v60.235zM120.471 903.529h60.235v-60.235h-60.235v60.235zM120.471 662.588h60.235v-60.235h-60.235v60.235zM120.471 180.706h60.235v-60.235h-60.235v60.235zM120.471 301.176h60.235v-60.235h-60.235v60.235zM120.471 421.647h60.235v-60.235h-60.235v60.235zM120.471 542.118h60.235v-60.235h-60.235v60.235z" + ], + "grid": 0, + "tags": [ + "layout-width-default-alt" + ] + }, + { + "id": 60, + "paths": [ + "M421.647 180.706v-60.235h-421.647v843.294h1024v-783.059h-602.353zM662.588 240.941v60.235h-240.941v-60.235h240.941zM963.765 903.529h-903.529v-722.824h301.176v180.706h602.353v542.118zM722.824 301.176v-60.235h240.941v60.235h-240.941z" + ], + "grid": 0, + "tags": [ + "layout-tab" + ] + }, + { + "id": 59, + "paths": [ + "M722.824 120.471h-722.824v843.294h1024v-843.294h-301.176zM963.765 180.706v120.471h-240.941v-120.471h240.941zM662.588 180.706v120.471h-301.176v-120.471h301.176zM60.235 180.706h240.941v120.471h-240.941v-120.471zM963.765 903.529h-903.529v-542.118h903.529v542.118z" + ], + "grid": 0, + "tags": [ + "layout-tab-window" + ] + }, + { + "id": 58, + "paths": [ + "M361.412 60.235v60.235h-361.412v240.941h60.235v240.941h301.176v362.496h662.588v-904.614h-662.588zM120.471 361.412h240.941v60.235h-240.941v-60.235zM120.471 542.118v-60.235h240.941v60.235h-240.941zM963.765 904.614h-542.118v-603.437h-361.412v-120.471h361.412v-60.235h542.118v784.143z" + ], + "grid": 0, + "tags": [ + "layout-tab-v" + ] + }, + { + "id": 57, + "paths": [ + "M421.647 120.471v-60.235h-421.647v240.76h60.235v-180.525h301.176v180.706h662.588v-180.706h-602.353zM421.647 180.706h240.941v60.235h-240.941v-60.235zM722.824 240.941v-60.235h240.941v60.235h-240.941z" + ], + "grid": 0, + "tags": [ + "layout-tab-min" + ] + }, + { + "id": 56, + "paths": [ + "M0 60.235v843.294h1024v-843.294h-1024zM963.765 843.294h-903.529v-722.824h903.529v722.824zM279.853 623.676l-141.734-141.794 141.794-141.794 42.586 42.586-99.208 99.208 99.147 99.147-42.586 42.647zM701.5 581.030l99.208-99.147-99.147-99.147 42.586-42.586 141.734 141.734-141.794 141.794-42.586-42.647z" + ], + "grid": 0, + "tags": [ + "layout-slider" + ] + }, + { + "id": 55, + "paths": [ + "M120.471 843.294h783.059v-662.588h-783.059v662.588zM180.706 240.941h662.588v542.118h-662.588v-542.118z", + "M963.765 272.926h60.235v478.148h-60.235v-478.148z", + "M0 272.926h60.235v478.148h-60.235v-478.148z" + ], + "grid": 0, + "tags": [ + "layout-slider-alt" + ] + }, + { + "id": 54, + "paths": [ + "M1024 0v1024h-301.176v-1024h301.176zM542.118 1024h60.235v-60.235h-60.235v60.235zM435.080 1024h53.549v-60.235h-53.549v60.235zM113.784 1024h53.549v-60.235h-53.549v60.235zM220.883 1024h53.549v-60.235h-53.549v60.235zM327.981 1024h53.549v-60.235h-53.549v60.235zM0 1024h60.235v-60.235h-60.235v60.235zM0 542.118h60.235v-60.235h-60.235v60.235zM0 180.706h60.235v-60.235h-60.235v60.235zM0 662.588h60.235v-60.235h-60.235v60.235zM0 421.647h60.235v-60.235h-60.235v60.235zM0 783.059h60.235v-60.235h-60.235v60.235zM0 903.529h60.235v-60.235h-60.235v60.235zM0 301.176h60.235v-60.235h-60.235v60.235zM0 60.235h60.235v-60.235h-60.235v60.235zM488.568 0h-53.549v60.235h53.549v-60.235zM381.47 0h-53.549v60.235h53.549v-60.235zM167.273 0h-53.489v60.235h53.549v-60.235zM274.372 0h-53.489v60.235h53.549v-60.235zM542.118 60.235h60.235v-60.235h-60.235v60.235zM542.118 903.529h60.235v-60.235h-60.235v60.235zM542.118 783.059h60.235v-60.235h-60.235v60.235zM542.118 542.118h60.235v-60.235h-60.235v60.235zM542.118 662.588h60.235v-60.235h-60.235v60.235zM542.118 301.176h60.235v-60.235h-60.235v60.235zM542.118 421.647h60.235v-60.235h-60.235v60.235zM542.118 180.706h60.235v-60.235h-60.235v60.235z" + ], + "grid": 0, + "tags": [ + "layout-sidebar-right" + ] + }, + { + "id": 53, + "paths": [ + "M0 963.765h60.235v60.235h-60.235v-60.235zM843.294 1024h60.235v-60.235h-60.235v60.235zM722.824 1024h60.235v-60.235h-60.235v60.235zM602.353 1024h60.235v-60.235h-60.235v60.235zM481.882 1024h60.235v-60.235h-60.235v60.235zM361.412 1024h60.235v-60.235h-60.235v60.235zM120.471 1024h60.235v-60.235h-60.235v60.235zM240.941 1024h60.235v-60.235h-60.235v60.235zM963.765 1024h60.235v-60.235h-60.235v60.235zM963.765 662.588h60.235v-60.235h-60.235v60.235zM963.765 783.059h60.235v-60.235h-60.235v60.235zM963.765 301.176h60.235v-60.235h-60.235v60.235zM963.765 542.118h60.235v-60.235h-60.235v60.235zM963.765 421.647h60.235v-60.235h-60.235v60.235zM963.765 180.706h60.235v-60.235h-60.235v60.235zM963.765 903.529h60.235v-60.235h-60.235v60.235zM963.765 0v60.235h60.235v-60.235h-60.235zM240.941 60.235h60.235v-60.235h-60.235v60.235zM120.471 60.235h60.235v-60.235h-60.235v60.235zM722.824 60.235h60.235v-60.235h-60.235v60.235zM602.353 60.235h60.235v-60.235h-60.235v60.235zM361.412 60.235h60.235v-60.235h-60.235v60.235zM843.294 60.235h60.235v-60.235h-60.235v60.235zM481.882 60.235h60.235v-60.235h-60.235v60.235zM0 60.235h60.235v-60.235h-60.235v60.235zM0 783.059h60.235v-60.235h-60.235v60.235zM0 903.529h60.235v-60.235h-60.235v60.235zM0 662.588h60.235v-60.235h-60.235v60.235zM0 301.176h60.235v-60.235h-60.235v60.235zM0 542.118h60.235v-60.235h-60.235v60.235zM0 180.706h60.235v-60.235h-60.235v60.235zM0 421.647h60.235v-60.235h-60.235v60.235z" + ], + "grid": 0, + "tags": [ + "layout-sidebar-none" + ] + }, + { + "id": 52, + "paths": [ + "M0 0h301.176v1024h-301.176v-1024zM421.647 1024h60.235v-60.235h-60.235v60.235zM856.666 1024h53.549v-60.235h-53.549v60.235zM749.568 1024h53.549v-60.235h-53.549v60.235zM535.432 1024h53.549v-60.235h-53.549v60.235zM642.53 1024h53.549v-60.235h-53.549v60.235zM963.765 1024h60.235v-60.235h-60.235v60.235zM963.765 180.706h60.235v-60.235h-60.235v60.235zM963.765 903.529h60.235v-60.235h-60.235v60.235zM963.765 421.647h60.235v-60.235h-60.235v60.235zM963.765 301.176h60.235v-60.235h-60.235v60.235zM963.765 542.118h60.235v-60.235h-60.235v60.235zM963.765 662.588h60.235v-60.235h-60.235v60.235zM963.765 783.059h60.235v-60.235h-60.235v60.235zM963.765 0v60.235h60.235v-60.235h-60.235zM856.727 60.235h53.549v-60.235h-53.549v60.235zM749.628 60.235h53.549v-60.235h-53.549v60.235zM642.53 60.235h53.549v-60.235h-53.549v60.235zM535.432 60.235h53.549v-60.235h-53.549v60.235zM421.647 60.235h60.235v-60.235h-60.235v60.235zM421.647 903.529h60.235v-60.235h-60.235v60.235zM421.647 783.059h60.235v-60.235h-60.235v60.235zM421.647 421.647h60.235v-60.235h-60.235v60.235zM421.647 662.588h60.235v-60.235h-60.235v60.235zM421.647 301.176h60.235v-60.235h-60.235v60.235zM421.647 180.706h60.235v-60.235h-60.235v60.235zM421.647 542.118h60.235v-60.235h-60.235v60.235z" + ], + "grid": 0, + "tags": [ + "layout-sidebar-left" + ] + }, + { + "id": 51, + "paths": [ + "M1.265 60.958v903.529h1024v-903.529h-1024zM490.135 512.542l-428.634 373.278v-747.64l428.634 374.362zM87.883 121.193h851.607l-426.406 371.351-425.201-371.351zM513.024 532.54l425.623 371.712h-852.45l426.827-371.712zM535.974 512.542l429.056-373.7v748.424l-429.056-374.724z" + ], + "grid": 0, + "tags": [ + "layout-placeholder" + ] + }, + { + "id": 50, + "paths": [ + "M0 421.647v180.706h783.059v-180.706h-783.059zM481.882 481.882v60.235h-180.706v-60.235h180.706zM60.235 481.882h180.706v60.235h-180.706v-60.235zM722.824 542.118h-180.706v-60.235h180.706v60.235z" + ], + "grid": 0, + "tags": [ + "layout-menu" + ] + }, + { + "id": 49, + "paths": [ + "M180.706 60.235v180.706h662.588v-180.706h-662.588zM783.059 180.706h-542.118v-60.235h542.118v60.235zM180.706 481.882h662.588v-180.706h-662.588v180.706zM240.941 361.412h542.118v60.235h-542.118v-60.235zM180.706 722.643h662.588v-180.706h-662.588v180.706zM240.941 602.172h542.118v60.235h-542.118v-60.235zM180.706 963.584h662.588v-180.706h-662.588v180.706zM240.941 843.113h542.118v60.235h-542.118v-60.235z" + ], + "grid": 0, + "tags": [ + "layout-menu-v" + ] + }, + { + "id": 48, + "paths": [ + "M0 602.353h301.176v-180.706h-301.176v180.706zM60.235 481.882h180.706v60.235h-180.706v-60.235zM361.412 602.353h301.176v-180.706h-301.176v180.706zM421.647 481.882h180.706v60.235h-180.706v-60.235zM722.824 421.647v180.706h301.176v-180.706h-301.176zM963.765 542.118h-180.706v-60.235h180.706v60.235z" + ], + "grid": 0, + "tags": [ + "layout-menu-separated" + ] + }, + { + "id": 47, + "paths": [ + "M0 421.647v180.706h1024v-180.706h-1024zM542.118 481.882h180.706v60.235h-180.706v-60.235zM481.882 542.118h-180.706v-60.235h180.706v60.235zM60.235 481.882h180.706v60.235h-180.706v-60.235zM963.765 542.118h-180.706v-60.235h180.706v60.235z" + ], + "grid": 0, + "tags": [ + "layout-menu-full" + ] + }, + { + "id": 46, + "paths": [ + "M120.471 783.059h903.529v60.235h-903.529v-60.235zM421.647 963.343h602.353v-60.235h-602.353v60.235zM1024 60.235v662.588h-1024v-662.588h1024zM963.765 120.471h-903.529v542.118h903.529v-542.118z" + ], + "grid": 0, + "tags": [ + "layout-media-right-alt" + ] + }, + { + "id": 45, + "paths": [ + "M481.882 240.941v542.118h542.118v-542.118h-542.118zM963.765 722.824h-421.647v-421.647h421.647v421.647zM70.716 240.941h350.931v60.235h-350.931v-60.235zM211.004 481.641h210.643v60.235h-210.643v-60.235zM421.105 421.527h-421.105v-60.235h421.105v60.235zM0.542 601.931h421.105v60.235h-421.105v-60.235zM70.716 722.824h350.931v60.235h-350.931v-60.235z" + ], + "grid": 0, + "tags": [ + "layout-media-right" + ] + }, + { + "id": 44, + "paths": [ + "M903.529 722.824h-783.059v-60.235h783.059v60.235zM722.824 782.637h-602.353v60.235h602.353v-60.235zM1024 60.235v903.529h-1024v-903.529h1024zM963.765 120.471h-903.529v783.059h903.529v-783.059z" + ], + "grid": 0, + "tags": [ + "layout-media-overlay" + ] + }, + { + "id": 43, + "paths": [ + "M0 120.471v722.824h1024v-722.824h-1024zM60.235 602.955v-422.249h903.529v422.249h-903.529z" + ], + "grid": 0, + "tags": [ + "layout-media-overlay-alt" + ] + }, + { + "id": 42, + "paths": [ + "M722.824 542.118h-602.353v-60.235h602.353v60.235zM722.824 602.353h-602.353v60.235h602.353v-60.235zM1024 60.235v903.529h-1024v-903.529h1024zM963.765 120.471h-903.529v783.059h903.529v-783.059z" + ], + "grid": 0, + "tags": [ + "layout-media-overlay-alt-2" + ] + }, + { + "id": 41, + "paths": [ + "M0 783.059h903.529v60.235h-903.529v-60.235zM0 963.343h602.353v-60.235h-602.353v60.235zM1024 60.235v662.588h-1024v-662.588h1024zM963.765 120.471h-903.529v542.118h903.529v-542.118z" + ], + "grid": 0, + "tags": [ + "layout-media-left-alt" + ] + }, + { + "id": 40, + "paths": [ + "M602.353 240.941h350.931v60.235h-350.931v-60.235z", + "M602.353 481.641h210.643v60.235h-210.643v-60.235z", + "M602.895 361.291h421.105v60.235h-421.105v-60.235z", + "M602.353 601.931h421.105v60.235h-421.105v-60.235z", + "M602.353 722.824h350.931v60.235h-350.931v-60.235z", + "M0 783.059h542.118v-542.118h-542.118v542.118zM60.235 301.176h421.647v421.647h-421.647v-421.647z" + ], + "grid": 0, + "tags": [ + "layout-media-left" + ] + }, + { + "id": 39, + "paths": [ + "M60.235 783.059h903.529v60.235h-903.529v-60.235zM240.941 963.343h542.118v-60.235h-542.118v60.235zM1024 60.235v662.588h-1024v-662.588h1024zM963.765 120.471h-903.529v542.118h903.529v-542.118z" + ], + "grid": 0, + "tags": [ + "layout-media-center-alt" + ] + }, + { + "id": 38, + "paths": [ + "M60.235 240.941v361.412h903.529v-361.412h-903.529zM903.529 542.118h-783.059v-240.941h783.059v240.941zM843.294 662.588v60.235h-662.588v-60.235h662.588zM120.471 783.059h783.059v60.235h-783.059v-60.235z" + ], + "grid": 0, + "tags": [ + "layout-media-center" + ] + }, + { + "id": 37, + "paths": [ + "M903.529 240.941h-542.118v-60.235h542.118v60.235zM361.412 301.176v60.235h662.588v-60.235h-662.588zM0 120.471h301.176v301.176h-301.176v-301.176zM60.235 361.412h180.706v-180.706h-180.706v180.706zM903.529 602.353h-542.118v60.235h542.118v-60.235zM361.412 783.059h662.588v-60.235h-662.588v60.235zM0 542.118h301.176v301.176h-301.176v-301.176zM60.235 783.059h180.706v-180.706h-180.706v180.706z" + ], + "grid": 0, + "tags": [ + "layout-list-thumb" + ] + }, + { + "id": 36, + "paths": [ + "M903.529 301.176h-542.118v-60.235h542.118v60.235zM361.412 361.412v60.235h662.588v-60.235h-662.588zM0 481.882h301.176v-301.176h-301.176v301.176zM903.529 662.588h-542.118v60.235h542.118v-60.235zM361.412 843.294h662.588v-60.235h-662.588v60.235zM0 903.529h301.176v-301.176h-301.176v301.176z" + ], + "grid": 0, + "tags": [ + "layout-list-thumb-alt" + ] + }, + { + "id": 35, + "paths": [ + "M843.294 301.176h-843.294v-120.471h843.294v120.471zM0 361.412v60.235h1024v-60.235h-1024zM843.294 602.353h-843.294v120.471h843.294v-120.471zM0 843.294h1024v-60.235h-1024v60.235z" + ], + "grid": 0, + "tags": [ + "layout-list-post" + ] + }, + { + "id": 34, + "paths": [ + "M993.702 301.176h-150.408v-60.235h150.408v60.235zM933.587 481.641h-90.293v60.235h90.293v-60.235zM843.535 361.291v60.235h180.465v-60.235h-180.465zM843.294 662.167h180.465v-60.235h-180.465v60.235zM843.294 783.059h150.408v-60.235h-150.408v60.235zM0 240.941h783.059v542.118h-783.059v-542.118zM60.235 722.824h662.588v-421.647h-662.588v421.647z" + ], + "grid": 0, + "tags": [ + "layout-list-large-image" + ] + }, + { + "id": 33, + "paths": [ + "M1024 481.882v60.235h-1024v-60.235h1024z" + ], + "grid": 0, + "tags": [ + "layout-line-solid" + ] + }, + { + "id": 32, + "paths": [ + "M60.235 240.941h180.706v-180.706h-180.706v180.706zM120.471 120.471h60.235v60.235h-60.235v-60.235zM301.176 240.941h180.706v-180.706h-180.706v180.706zM361.412 120.471h60.235v60.235h-60.235v-60.235zM542.118 240.941h180.706v-180.706h-180.706v180.706zM602.353 120.471h60.235v60.235h-60.235v-60.235zM783.059 60.235v180.706h180.706v-180.706h-180.706zM903.529 180.706h-60.235v-60.235h60.235v60.235zM60.235 481.882h180.706v-180.706h-180.706v180.706zM120.471 361.412h60.235v60.235h-60.235v-60.235zM301.176 481.882h180.706v-180.706h-180.706v180.706zM361.412 361.412h60.235v60.235h-60.235v-60.235zM542.118 481.882h180.706v-180.706h-180.706v180.706zM602.353 361.412h60.235v60.235h-60.235v-60.235zM783.059 481.882h180.706v-180.706h-180.706v180.706zM843.294 361.412h60.235v60.235h-60.235v-60.235zM60.235 722.824h180.706v-180.706h-180.706v180.706zM120.471 602.353h60.235v60.235h-60.235v-60.235zM301.176 722.824h180.706v-180.706h-180.706v180.706zM361.412 602.353h60.235v60.235h-60.235v-60.235zM542.118 722.824h180.706v-180.706h-180.706v180.706zM602.353 602.353h60.235v60.235h-60.235v-60.235zM783.059 722.824h180.706v-180.706h-180.706v180.706zM843.294 602.353h60.235v60.235h-60.235v-60.235zM60.235 963.765h180.706v-180.706h-180.706v180.706zM120.471 843.294h60.235v60.235h-60.235v-60.235zM301.176 963.765h180.706v-180.706h-180.706v180.706zM361.412 843.294h60.235v60.235h-60.235v-60.235zM542.118 963.765h180.706v-180.706h-180.706v180.706zM602.353 843.294h60.235v60.235h-60.235v-60.235zM783.059 963.765h180.706v-180.706h-180.706v180.706zM843.294 843.294h60.235v60.235h-60.235v-60.235z" + ], + "grid": 0, + "tags": [ + "layout-grid4" + ] + }, + { + "id": 31, + "paths": [ + "M0 301.176h301.176v-301.176h-301.176v301.176zM60.235 60.235h180.706v180.706h-180.706v-180.706zM361.412 301.176h301.176v-301.176h-301.176v301.176zM421.647 60.235h180.706v180.706h-180.706v-180.706zM722.824 0v301.176h301.176v-301.176h-301.176zM963.765 240.941h-180.706v-180.706h180.706v180.706zM0 662.588h301.176v-301.176h-301.176v301.176zM60.235 421.647h180.706v180.706h-180.706v-180.706zM361.412 662.588h301.176v-301.176h-301.176v301.176zM421.647 421.647h180.706v180.706h-180.706v-180.706zM722.824 662.588h301.176v-301.176h-301.176v301.176zM783.059 421.647h180.706v180.706h-180.706v-180.706zM0 1024h301.176v-301.176h-301.176v301.176zM60.235 783.059h180.706v180.706h-180.706v-180.706zM361.412 1024h301.176v-301.176h-301.176v301.176zM421.647 783.059h180.706v180.706h-180.706v-180.706zM722.824 1024h301.176v-301.176h-301.176v301.176zM783.059 783.059h180.706v180.706h-180.706v-180.706z" + ], + "grid": 0, + "tags": [ + "layout-grid3" + ] + }, + { + "id": 30, + "paths": [ + "M0 421.647h421.647v-421.647h-421.647v421.647zM60.235 60.235h301.176v301.176h-301.176v-301.176z", + "M542.118 0v421.647h421.647v-421.647h-421.647zM903.529 361.412h-301.176v-301.176h301.176v301.176z", + "M0 963.765h421.647v-421.647h-421.647v421.647zM60.235 602.353h301.176v301.176h-301.176v-301.176z", + "M542.118 963.765h421.647v-421.647h-421.647v421.647zM602.353 602.353h301.176v301.176h-301.176v-301.176z" + ], + "grid": 0, + "tags": [ + "layout-grid2" + ] + }, + { + "id": 29, + "paths": [ + "M0 120.471h180.706v180.706h-180.706v-180.706zM542.118 301.176h180.706v-180.706h-180.706v180.706zM0 783.059h180.706v-180.706h-180.706v180.706zM542.118 783.059h180.706v-180.706h-180.706v180.706zM240.941 180.706h240.941v-60.235h-240.941v60.235zM240.941 301.176h240.941v-60.235h-240.941v60.235zM783.059 120.471v60.235h240.941v-60.235h-240.941zM783.059 301.176h240.941v-60.235h-240.941v60.235zM421.647 361.352h-180.706v60.235h180.706v-60.235zM963.765 361.352h-180.706v60.235h180.706v-60.235zM240.941 662.588h240.941v-60.235h-240.941v60.235zM240.941 783.059h240.941v-60.235h-240.941v60.235zM783.059 662.588h240.941v-60.235h-240.941v60.235zM783.059 783.059h240.941v-60.235h-240.941v60.235zM240.941 903.469h180.706v-60.235h-180.706v60.235zM783.059 903.469h180.706v-60.235h-180.706v60.235z" + ], + "grid": 0, + "tags": [ + "layout-grid2-thumb" + ] + }, + { + "id": 28, + "paths": [ + "M0 180.706v662.588h1024v-662.588h-1024zM963.765 783.059h-903.529v-542.118h903.529v542.118zM843.294 481.882h-602.353v-60.235h602.353v60.235zM542.118 542.118h301.176v120.471h-301.176v-120.471z" + ], + "grid": 0, + "tags": [ + "layout-cta-right" + ] + }, + { + "id": 27, + "paths": [ + "M0 180.706v662.588h1024v-662.588h-1024zM963.765 783.059h-903.529v-542.118h903.529v542.118zM783.059 481.882h-602.353v-60.235h602.353v60.235zM481.882 662.588h-301.176v-120.471h301.176v120.471z" + ], + "grid": 0, + "tags": [ + "layout-cta-left" + ] + }, + { + "id": 26, + "paths": [ + "M843.294 481.882h-662.588v-60.235h662.588v60.235zM1024 180.706v662.588h-1024v-662.588h1024zM963.765 240.941h-903.529v542.118h903.529v-542.118zM382.916 662.588h258.168v-120.471h-258.168v120.471z" + ], + "grid": 0, + "tags": [ + "layout-cta-center" + ] + }, + { + "id": 25, + "paths": [ + "M542.118 421.647h-421.647v-60.235h421.647v60.235zM240.52 542.118h301.176v-60.235h-301.176v60.235zM1024 180.706v602.353h-1024v-602.353h1024zM963.765 240.941h-903.529v481.882h903.529v-481.882zM903.529 361.412h-301.176v120.471h301.176v-120.471z" + ], + "grid": 0, + "tags": [ + "layout-cta-btn-right" + ] + }, + { + "id": 24, + "paths": [ + "M903.529 421.647h-421.647v-60.235h421.647v60.235zM482.304 542.118h301.176v-60.235h-301.176v60.235zM1024 180.706v602.353h-1024v-602.353h1024zM963.765 240.941h-903.529v481.882h903.529v-481.882zM421.647 361.412h-301.176v120.471h301.176v-120.471z" + ], + "grid": 0, + "tags": [ + "layout-cta-btn-left" + ] + }, + { + "id": 23, + "paths": [ + "M60.235 1024h180.706v-1024h-180.706v1024zM120.471 60.235h60.235v903.529h-60.235v-903.529zM301.176 1024h180.706v-1024h-180.706v1024zM361.412 60.235h60.235v903.529h-60.235v-903.529zM542.118 1024h180.706v-1024h-180.706v1024zM602.353 60.235h60.235v903.529h-60.235v-903.529zM783.059 0v1024h180.706v-1024h-180.706zM903.529 963.765h-60.235v-903.529h60.235v903.529z" + ], + "grid": 0, + "tags": [ + "layout-column4" + ] + }, + { + "id": 22, + "paths": [ + "M0 1024h301.176v-1024h-301.176v1024zM60.235 60.235h180.706v903.529h-180.706v-903.529zM361.412 1024h301.176v-1024h-301.176v1024zM421.647 60.235h180.706v903.529h-180.706v-903.529zM722.824 0v1024h301.176v-1024h-301.176zM963.765 963.765h-180.706v-903.529h180.706v903.529z" + ], + "grid": 0, + "tags": [ + "layout-column3" + ] + }, + { + "id": 21, + "paths": [ + "M0 1024h481.882v-1024h-481.882v1024zM60.235 60.235h361.412v903.529h-361.412v-903.529zM542.118 0v1024h481.882v-1024h-481.882zM963.765 963.765h-361.412v-903.529h361.412v903.529z" + ], + "grid": 0, + "tags": [ + "layout-column2" + ] + }, + { + "id": 20, + "paths": [ + "M0 0v180.706h1024v-180.706h-1024zM963.765 120.471h-903.529v-60.235h903.529v60.235zM0 783.059h1024v-542.118h-1024v542.118zM60.235 301.176h903.529v421.647h-903.529v-421.647zM0 1024h1024v-180.706h-1024v180.706zM60.235 903.529h903.529v60.235h-903.529v-60.235z" + ], + "grid": 0, + "tags": [ + "layout-accordion-separated" + ] + }, + { + "id": 19, + "paths": [ + "M0 0v1024h1024v-1024h-1024zM963.765 60.235v542.118h-903.529v-542.118h903.529zM963.765 662.588v120.471h-903.529v-120.471h903.529zM60.235 963.765v-120.471h903.529v120.471h-903.529z" + ], + "grid": 0, + "tags": [ + "layout-accordion-merged" + ] + }, + { + "id": 18, + "paths": [ + "M240.941 0v542.118h783.059v-542.118h-783.059zM963.765 481.882h-662.588v-421.647h662.588v421.647zM0 180.706h180.706v-180.706h-180.706v180.706zM60.235 60.235h60.235v60.235h-60.235v-60.235zM240.941 783.059h783.059v-180.706h-783.059v180.706zM301.176 662.588h662.588v60.235h-662.588v-60.235zM0 783.059h180.706v-180.706h-180.706v180.706zM60.235 662.588h60.235v60.235h-60.235v-60.235zM240.941 1024h783.059v-180.706h-783.059v180.706zM301.176 903.529h662.588v60.235h-662.588v-60.235zM0 1024h180.706v-180.706h-180.706v180.706zM60.235 903.529h60.235v60.235h-60.235v-60.235z" + ], + "grid": 0, + "tags": [ + "layout-accordion-list" + ] + }, + { + "id": 17, + "paths": [ + "M180.706 0v391.469l329.246 572.175 333.342-572.115v-391.529h-662.588zM510.253 843.294h0.12l-0.060 0.12-0.060-0.12zM512 361.412c-33.25 0-60.235-27.046-60.235-60.235s26.985-60.235 60.235-60.235 60.235 27.046 60.235 60.235-26.985 60.235-60.235 60.235zM783.059 375.266l-240.941 413.576v-371.471c51.802-13.432 90.353-60.235 90.353-116.194 0-66.44-54.031-120.471-120.471-120.471s-120.471 54.031-120.471 120.471c0 55.959 38.551 102.761 90.353 116.194v376.712l-240.941-418.756v-315.091h542.118v315.031z" + ], + "grid": 0, + "tags": [ + "ink-pen" + ] + }, + { + "id": 16, + "paths": [ + "M512 0c-282.323 0-512 229.677-512 512s229.677 512 512 512 512-229.677 512-512-229.677-512-512-512zM512 963.765c-249.133 0-451.765-202.632-451.765-451.765s202.632-451.765 451.765-451.765 451.765 202.632 451.765 451.765-202.632 451.765-451.765 451.765zM542.118 745.050h58.97v60.235h-178.176v-60.235h58.97v-266.24h-56.983v-60.235h117.218v326.475zM432.791 300.333c0-32.828 26.564-59.392 59.392-59.392s59.332 26.564 59.332 59.392c0 32.708-26.504 59.272-59.332 59.272s-59.392-26.564-59.392-59.272z" + ], + "grid": 0, + "tags": [ + "info-alt" + ] + }, + { + "id": 15, + "paths": [ + "M512 0c-282.323 0-512 229.677-512 512s229.677 512 512 512 512-229.677 512-512-229.677-512-512-512zM512 963.765c-249.133 0-451.765-202.632-451.765-451.765s202.632-451.765 451.765-451.765 451.765 202.632 451.765 451.765-202.632 451.765-451.765 451.765zM581.752 736.015c0 34.214-27.829 62.103-62.103 62.103-34.394 0-62.223-27.889-62.223-62.103 0-34.334 27.829-62.163 62.223-62.163 34.274 0 62.103 27.768 62.103 62.163zM642.229 253.892c26.985 34.033 40.599 79.992 33.129 111.736-14.637 61.862-50.718 94.389-82.583 123.061-32.708 29.455-56.26 50.598-56.26 99.208h-60.235c0-75.354 40.418-111.797 76.137-143.962 27.768-24.998 53.971-48.61 64.211-92.1 2.048-8.614-2.349-36.141-21.685-60.536-18.492-23.432-43.851-35.298-75.174-35.298-107.159 0-112.58 86.98-112.821 96.919l-60.235-1.626c1.446-53.79 39.454-155.528 173.056-155.528 49.272 0 92.702 20.661 122.458 58.127z" + ], + "grid": 0, + "tags": [ + "help-alt" + ] + }, + { + "id": 14, + "paths": [ + "M943.767 362.436c-57.645-214.257-232.689-362.436-431.767-362.436-198.475 0-374.182 148.42-431.767 362.436-44.996 4.939-80.233 42.888-80.233 89.329v240.941c0 37.647 23.010 69.873 55.657 83.426 11.686 105.231 100.171 187.633 208.474 187.633h163.057c12.469 34.997 45.598 60.235 84.811 60.235h180.706c49.815 0 90.353-40.538 90.353-90.353s-40.538-90.353-90.353-90.353h-180.706c-39.213 0-72.343 25.239-84.811 60.235h-163.057c-72.764 0-133.542-51.802-147.516-120.471h64.090v-60.235h60.235v-301.176h-60.235v-60.235h-36.503c54.995-178.357 201.909-301.176 367.797-301.176 166.37 0 312.802 122.699 367.797 301.176h-36.503v60.235h-60.235v301.176h60.235v60.235h90.714c49.634 0 89.992-40.538 89.992-90.353v-240.941c0-46.441-35.238-84.39-80.233-89.329zM512 903.529h180.706c16.565 0 30.118 13.493 30.118 30.118s-13.553 30.118-30.118 30.118h-180.706c-16.565 0-30.118-13.493-30.118-30.118s13.553-30.118 30.118-30.118zM120.471 722.824h-30.479c-16.384 0-29.756-13.493-29.756-30.118v-240.941c0-16.625 13.372-30.118 29.756-30.118h30.479v301.176zM963.765 692.706c0 16.625-13.372 30.118-29.756 30.118h-30.479v-301.176h30.479c16.384 0 29.756 13.493 29.756 30.118v240.941z" + ], + "grid": 0, + "tags": [ + "headphone-alt" + ] + }, + { + "id": 13, + "paths": [ + "M873.412 496.098v191.91c0 40.358-19.396 93.666-36.503 140.649-11.144 30.539-23.733 65.175-23.733 78.908v51.501c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v-51.501c0-24.335 12.107-57.525 27.347-99.509 15.42-42.285 32.888-90.232 32.888-119.989v-191.97c0-17.468-14.216-32.226-31.081-32.226-17.589 0-27.347 15.782-27.889 31.322-0.542 16.384-12.589 30.539-30.6 29.033-16.384-0.301-29.576-13.734-29.576-30.118v-94.088c0-17.83-13.673-32.346-30.419-32.346-15.902 0-29.154 13.252-30.238 30.118-1.024 16.264-13.734 29.214-31.021 28.19-16.264-0.542-29.154-13.854-29.154-30.118v-76.318c0-17.769-13.493-32.226-30.118-32.226-15.601 0-29.335 12.168-31.383 27.768-2.048 15.661-15.782 27.768-31.804 26.142-15.842-1.024-28.19-14.155-28.19-30.057v-218.714c0-17.769-13.673-32.226-30.419-32.226s-30.419 14.456-30.419 32.226v372.254c0 12.408-7.59 23.552-19.155 28.070-11.505 4.518-24.696 1.446-33.129-7.65l-67.102-72.945c-27.648-27.829-36.563-22.528-45.056-17.288-14.818 8.794-19.938 29.154-11.324 44.574l198.054 427.55c3.192 5.481 9.939 10.722 17.89 12.71 13.432 3.433 22.769 15.42 22.769 29.214v50.116c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118v-30.057c-14.035-8.072-25.72-19.878-34.033-34.575l-197.993-427.55c-23.672-41.803-8.855-98.244 34.033-123.723 57.826-34.635 102.581 10.421 119.386 27.347l15.661 16.986v-295.032c0-51.019 40.719-92.461 90.654-92.461s90.654 41.442 90.654 92.461v140.047c9.758-3.494 20.239-5.421 31.142-5.421 47.646 0 86.739 37.888 90.112 85.775 9.517-3.554 19.757-5.421 30.419-5.421 49.995 0 90.654 41.502 90.654 92.582v8.192c8.734-2.952 18.071-4.518 27.889-4.518 50.296-0.060 91.256 41.442 91.256 92.401z" + ], + "grid": 0, + "tags": [ + "hand-point-up" + ] + }, + { + "id": 12, + "paths": [ + "M1019.302 451.403c0 49.935-41.442 90.594-92.461 90.594h-140.047c3.554 9.758 5.481 20.299 5.481 31.202 0 47.646-37.888 86.739-85.775 90.112 3.494 9.517 5.361 19.697 5.361 30.359 0 49.995-41.502 90.714-92.521 90.714h-8.192c2.952 8.734 4.518 18.071 4.518 27.889-0 50.296-41.562 91.256-92.521 91.256h-191.849c-40.358 0-93.666-19.396-140.71-36.503-30.539-11.144-65.114-23.733-78.848-23.733h-51.501c-16.625 0-30.118-13.493-30.118-30.118s13.493-30.118 30.118-30.118h51.501c24.275 0 57.464 12.047 99.388 27.347 42.406 15.42 90.413 32.888 120.169 32.888h191.849c17.528 0 32.286-14.216 32.286-31.081 0-17.589-15.782-27.347-31.322-27.889-16.384-0.602-29.335-14.216-29.033-30.66s13.734-29.576 30.118-29.576h94.088c17.83 0 32.286-13.673 32.286-30.479 0-15.902-13.192-29.094-29.997-30.178-16.324-1.024-28.792-14.697-28.311-31.021 0.542-16.264 13.794-29.154 30.118-29.154h76.378c17.769 0 32.226-13.553 32.226-30.118 0-15.601-12.228-29.395-27.829-31.383-15.721-2.048-27.166-16.023-26.142-31.804 1.084-15.902 14.155-28.19 30.057-28.19h218.714c17.769 0 32.226-13.613 32.226-30.359 0-16.806-14.456-30.479-32.226-30.479h-372.254c-12.408 0-23.552-7.59-28.070-19.155s-1.385-24.696 7.71-33.129l72.945-67.042c27.708-27.648 22.408-36.442 17.288-45.056-8.915-14.999-28.913-20.179-44.695-11.324l-427.49 197.993c-5.361 3.132-10.601 9.879-12.71 17.89-3.313 13.432-15.3 22.769-29.154 22.769h-50.116c-16.625 0-30.118-13.493-30.118-30.118s13.493-30.118 30.118-30.118h30.057c8.072-14.035 19.817-25.781 34.515-33.973l427.55-198.054c41.743-23.492 98.304-8.794 123.784 34.033 34.575 57.645-10.421 102.52-27.287 119.386l-16.986 15.661h294.972c50.959 0 92.461 40.719 92.461 90.714z" + ], + "grid": 0, + "tags": [ + "hand-point-right" + ] + }, + { + "id": 11, + "paths": [ + "M989.184 813.176c0 16.625-13.493 30.118-30.118 30.118h-51.501c-13.673 0-48.309 12.589-78.848 23.733-47.044 17.107-100.352 36.503-140.71 36.503h-191.849c-51.019 0-92.521-40.96-92.521-91.317 0-9.818 1.566-19.155 4.518-27.889h-8.132c-51.019 0-92.521-40.719-92.521-90.714 0-10.662 1.867-20.841 5.361-30.359-47.887-3.313-85.775-42.406-85.775-90.052 0-10.903 1.928-21.384 5.481-31.202h-140.107c-51.019 0-92.461-40.659-92.461-90.594 0-49.995 41.442-90.714 92.461-90.714h294.972l-16.023-14.758c-17.83-17.769-62.825-62.645-28.19-120.35 25.48-42.767 81.92-57.525 125.771-32.949l423.334 195.885c16.143 8.975 28.371 20.962 36.563 35.117h30.118c16.625 0 30.118 13.493 30.118 30.118s-13.493 30.118-30.118 30.118h-50.056c-13.794 0-25.841-9.336-29.214-22.769-2.048-8.011-7.288-14.758-14.758-18.974l-423.334-195.825c-17.709-9.879-37.768-4.819-46.682 10.18-5.18 8.674-10.481 17.468 18.071 46.020l72.041 66.138c9.156 8.433 12.168 21.504 7.65 33.129s-15.661 19.155-28.070 19.155h-372.254c-17.709 0-32.166 13.673-32.166 30.479 0 16.745 14.456 30.359 32.226 30.359h218.714c15.902 0 29.033 12.288 30.057 28.19 1.024 15.842-10.421 29.756-26.142 31.804-15.601 1.988-27.768 15.842-27.768 31.443 0 16.565 14.456 30.118 32.226 30.118h76.378c16.264 0 29.636 12.951 30.118 29.154 0.482 16.324-12.047 29.997-28.25 31.021-16.866 1.084-30.057 14.276-30.057 30.178 0 16.806 14.517 30.479 32.286 30.479h94.088c16.444 0 29.816 13.192 30.118 29.576s-12.649 30.057-29.033 30.66c-15.541 0.542-31.322 10.3-31.322 27.889-0 16.806 14.818 31.021 32.286 31.021h191.849c29.756 0 77.764-17.468 120.109-32.888 41.924-15.3 75.113-27.347 99.388-27.347h51.501c16.685 0 30.178 13.493 30.178 30.118z" + ], + "grid": 0, + "tags": [ + "hand-point-left" + ] + }, + { + "id": 10, + "paths": [ + "M828.416 680.84c-57.585 34.756-102.52-10.421-119.386-27.347l-15.661-16.986v295.032c0 51.019-40.659 92.461-90.654 92.461s-90.654-41.442-90.654-92.461v-140.047c-9.758 3.554-20.239 5.481-31.142 5.481-47.586 0-86.739-37.888-90.112-85.775-9.517 3.554-19.757 5.421-30.419 5.421-49.995 0-90.654-41.502-90.654-92.582v-8.192c-8.734 2.952-18.071 4.518-27.889 4.518-50.296 0-91.256-41.502-91.256-92.461v-191.91c0-40.358 19.396-93.666 36.503-140.649 11.144-30.539 23.733-65.175 23.733-78.848v-51.561c0-16.625 13.493-30.118 30.118-30.118s30.118 13.493 30.118 30.118v51.501c0 24.335-12.047 57.525-27.347 99.509-15.42 42.345-32.888 90.293-32.888 120.049v191.91c0 17.468 14.216 32.226 31.081 32.226 17.589 0 27.347-15.782 27.889-31.322 0.602-16.264 13.914-29.033 30.118-29.033 0.181 0 0.361 0 0.542 0 16.384 0.301 29.576 13.734 29.576 30.118v94.088c0 17.83 13.673 32.346 30.419 32.346 15.902 0 29.154-13.252 30.238-30.118 0.964-16.203 14.155-28.311 30.961-28.19 16.264 0.542 29.154 13.854 29.154 30.118v76.378c0 17.769 13.553 32.226 30.118 32.226 15.601 0 29.335-12.168 31.383-27.768 2.048-15.721 16.083-27.949 31.804-26.202 15.842 1.024 28.19 14.155 28.19 30.057v218.714c-0 17.769 13.673 32.226 30.419 32.226s30.419-14.456 30.419-32.226v-372.254c0-12.408 7.59-23.552 19.155-28.070 11.384-4.518 24.636-1.446 33.129 7.65l67.102 72.945c27.648 27.829 36.563 22.468 45.056 17.288 14.818-8.794 19.938-29.154 11.324-44.574l-198.054-427.55c-3.192-5.481-9.879-10.722-17.89-12.71-13.372-3.373-22.769-15.36-22.769-29.214v-50.116c0-16.625 13.493-30.118 30.118-30.118s30.118 13.493 30.118 30.118v30.057c14.035 8.072 25.781 19.878 33.973 34.575l198.054 427.55c23.672 41.803 8.915 98.244-34.033 123.723z" + ], + "grid": 0, + "tags": [ + "hand-point-down" + ] + }, + { + "id": 9, + "paths": [ + "M783.059 602.353v-602.353h-783.059v783.059h783.059v-180.706zM60.235 60.235h662.588v481.882h-45.478l-154.443-199.921-69.813 73.126-135.409-233.773-215.401 360.568h-42.044v-481.882zM601.269 542.118h-428.815l144.444-241.784 124.326 214.679 76.8-80.535 83.245 107.64zM60.235 722.824v-120.471h662.588v120.471h-662.588zM1024 180.706v783.059h-783.059v-119.507h60.235v59.272h662.588v-662.588h-120.471v-60.235h180.706z" + ], + "grid": 0, + "tags": [ + "gallery" + ] + }, + { + "id": 8, + "paths": [ + "M512 0c-282.323 0-512 229.677-512 512s229.677 512 512 512 512-229.677 512-512-229.677-512-512-512zM512 963.765c-249.133 0-451.765-202.632-451.765-451.765s202.632-451.765 451.765-451.765 451.765 202.632 451.765 451.765-202.632 451.765-451.765 451.765zM783.059 542.118c0 149.444-121.615 271.059-271.059 271.059s-271.059-121.615-271.059-271.059c0-16.625 13.493-30.118 30.118-30.118s30.118 13.493 30.118 30.118c0 116.254 94.569 210.824 210.824 210.824s210.824-94.569 210.824-210.824c0-16.625 13.493-30.118 30.118-30.118s30.118 13.493 30.118 30.118zM271.059 331.294c0-33.25 26.985-60.235 60.235-60.235s60.235 26.985 60.235 60.235-26.985 60.235-60.235 60.235-60.235-26.985-60.235-60.235zM632.471 331.294c0-33.25 26.985-60.235 60.235-60.235s60.235 26.985 60.235 60.235-26.985 60.235-60.235 60.235-60.235-26.985-60.235-60.235z" + ], + "grid": 0, + "tags": [ + "face-smile" + ] + }, + { + "id": 7, + "paths": [ + "M512 0c-282.323 0-512 229.677-512 512s229.677 512 512 512 512-229.677 512-512-229.677-512-512-512zM512 963.765c-249.133 0-451.765-202.632-451.765-451.765s202.632-451.765 451.765-451.765 451.765 202.632 451.765 451.765-202.632 451.765-451.765 451.765zM783.059 783.059c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118c0-116.254-94.569-210.824-210.824-210.824s-210.824 94.569-210.824 210.824c0 16.625-13.493 30.118-30.118 30.118s-30.118-13.493-30.118-30.118c0-149.444 121.615-271.059 271.059-271.059s271.059 121.615 271.059 271.059zM271.059 331.294c0-33.25 26.985-60.235 60.235-60.235s60.235 26.985 60.235 60.235-26.985 60.235-60.235 60.235-60.235-26.985-60.235-60.235zM632.471 331.294c0-33.25 26.985-60.235 60.235-60.235s60.235 26.985 60.235 60.235-26.985 60.235-60.235 60.235-60.235-26.985-60.235-60.235z" + ], + "grid": 0, + "tags": [ + "face-sad" + ] + }, + { + "id": 6, + "paths": [ + "M933.647 120.471h-843.294c-49.815 0-90.353 40.538-90.353 90.353v602.353c0 49.815 40.538 90.353 90.353 90.353h843.294c49.815 0 90.353-40.538 90.353-90.353v-602.353c0-49.815-40.538-90.353-90.353-90.353zM963.765 813.176c0 16.565-13.493 30.118-30.118 30.118h-843.294c-16.625 0-30.118-13.553-30.118-30.118v-331.294h903.529v331.294zM60.235 301.176v-90.353c0-16.565 13.493-30.118 30.118-30.118h843.294c16.625 0 30.118 13.553 30.118 30.118v90.353h-903.529z" + ], + "grid": 0, + "tags": [ + "credit-card" + ] + }, + { + "id": 5, + "paths": [ + "M180.706 877.688l438.573-367.255-438.573-363.701v730.955zM240.941 274.914l284.25 235.761-284.25 237.99v-473.751zM843.294 120.471v783.059h-60.235v-783.059h60.235z" + ], + "grid": 0, + "tags": [ + "control-skip-forward" + ] + }, + { + "id": 4, + "paths": [ + "M404.721 513.566l438.573 363.701v-730.955l-438.573 367.255zM783.059 749.086l-284.25-235.761 284.25-237.99v473.751zM180.706 120.471h60.235v783.059h-60.235v-783.059z" + ], + "grid": 0, + "tags": [ + "control-skip-backward" + ] + }, + { + "id": 3, + "paths": [ + "M512 150.588c-199.319 0-361.412 162.093-361.412 361.412s162.093 361.412 361.412 361.412 361.412-162.093 361.412-361.412-162.093-361.412-361.412-361.412zM512 813.176c-166.069 0-301.176-135.108-301.176-301.176s135.108-301.176 301.176-301.176 301.176 135.108 301.176 301.176-135.108 301.176-301.176 301.176z" + ], + "grid": 0, + "tags": [ + "control-record" + ] + }, + { + "id": 2, + "paths": [ + "M510.434 163.78l-363.701 438.573h730.955l-367.255-438.573zM510.675 257.867l237.99 284.25h-473.751l235.761-284.25zM903.529 783.059v60.235h-783.059v-60.235h783.059z" + ], + "grid": 0, + "tags": [ + "control-eject" + ] + }, + { + "id": 1, + "paths": [ + "M783.059 481.882h60.235c0 149.444-121.615 271.059-271.059 271.059s-271.059-121.615-271.059-271.059h60.235c0 116.254 94.569 210.824 210.824 210.824s210.824-94.569 210.824-210.824zM451.765 391.529c33.31 0 60.235-26.925 60.235-60.235s-26.925-60.235-60.235-60.235-60.235 26.925-60.235 60.235 26.925 60.235 60.235 60.235zM692.706 391.529c33.31 0 60.235-26.925 60.235-60.235s-26.925-60.235-60.235-60.235-60.235 26.925-60.235 60.235 26.925 60.235 60.235 60.235zM1024 451.765c0 249.133-202.632 451.765-451.765 451.765-80.715 0-159.503-21.624-229.075-62.705l-331.294 171.249 171.249-331.234c-41.020-69.572-62.645-148.36-62.645-229.075 0-249.133 202.632-451.765 451.765-451.765s451.765 202.632 451.765 451.765zM963.765 451.765c0-215.883-175.646-391.529-391.529-391.529s-391.529 175.646-391.529 391.529c0 74.933 21.564 148.119 62.404 211.486l9.457 14.637-100.232 193.837 193.777-100.232 14.637 9.457c63.428 40.779 136.493 62.344 211.486 62.344 215.883 0 391.529-175.646 391.529-391.529z" + ], + "grid": 0, + "tags": [ + "comments-smiley" + ] + }, + { + "id": 0, + "paths": [ + "M1024 453.632c0-49.815-40.538-90.353-90.353-90.353h-289.611l17.167-55.055 1.385-217.871c0-49.815-40.538-90.353-90.353-90.353h-120.471c-49.815 0-90.353 40.538-90.353 90.353v207.932l18.673 65.054h-289.732c-49.815 0-90.353 40.538-90.353 90.353v209.98h56.139l-46.14 360.328h1004.002l-46.14-360.328h56.139v-210.040zM945.574 963.765h-102.28v-120.471h-60.235v120.471h-60.235v-180.706h-60.235v180.706h-60.235v-240.941h-60.235v240.941h-301.176v-120.471h-60.235v120.471h-102.28l38.43-300.092h790.287l38.43 300.092zM63.849 603.437h-3.614v-149.805c0-16.625 13.493-30.118 30.118-30.118h371.351l-40.056-129.807v-203.354c0-16.625 13.493-30.118 30.118-30.118h120.471c16.625 0 30.118 13.493 30.118 30.118v204.378l-40.177 128.783h371.471c16.625 0 30.118 13.493 30.118 30.118v149.745h-899.915zM481.882 120.471h60.235v60.235h-60.235v-60.235z" + ], + "grid": 0, + "tags": [ + "brush-alt" + ] + } + ], + "invisible": true + }, + { + "selection": [ + { + "order": 25, + "id": 31, + "prevSize": 32, + "code": 59176, + "name": "youtube", + "tempChar": "", + "ligatures": "" + }, + { + "order": 26, + "id": 30, + "prevSize": 32, + "code": 59177, + "name": "vimeo", + "tempChar": "", + "ligatures": "" + }, + { + "order": 27, + "id": 29, + "prevSize": 32, + "code": 59178, + "name": "twitter", + "tempChar": "", + "ligatures": "" + }, + { + "order": 28, + "id": 28, + "prevSize": 32, + "code": 59179, + "name": "time", + "tempChar": "", + "ligatures": "" + }, + { + "order": 29, + "id": 27, + "prevSize": 32, + "code": 59180, + "name": "tumblr", + "tempChar": "", + "ligatures": "" + }, + { + "order": 30, + "id": 26, + "prevSize": 32, + "code": 59181, + "name": "skype", + "tempChar": "", + "ligatures": "" + }, + { + "order": 31, + "id": 25, + "prevSize": 32, + "code": 59182, + "name": "share", + "tempChar": "", + "ligatures": "" + }, + { + "order": 32, + "id": 24, + "prevSize": 32, + "code": 59183, + "name": "share-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 33, + "id": 23, + "prevSize": 32, + "code": 59184, + "name": "rocket", + "tempChar": "", + "ligatures": "" + }, + { + "order": 34, + "id": 22, + "prevSize": 32, + "code": 59185, + "name": "pinterest", + "tempChar": "", + "ligatures": "" + }, + { + "order": 35, + "id": 21, + "prevSize": 32, + "code": 59186, + "name": "new-window", + "tempChar": "", + "ligatures": "" + }, + { + "order": 36, + "id": 20, + "prevSize": 32, + "code": 59187, + "name": "microsoft", + "tempChar": "", + "ligatures": "" + }, + { + "order": 37, + "id": 19, + "prevSize": 32, + "code": 59188, + "name": "list-ol", + "tempChar": "", + "ligatures": "" + }, + { + "order": 38, + "id": 18, + "prevSize": 32, + "code": 59189, + "name": "linkedin", + "tempChar": "", + "ligatures": "" + }, + { + "order": 39, + "id": 17, + "prevSize": 32, + "code": 59190, + "name": "layout-sidebar-2", + "tempChar": "", + "ligatures": "" + }, + { + "order": 40, + "id": 16, + "prevSize": 32, + "code": 59191, + "name": "layout-grid4-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 41, + "id": 15, + "prevSize": 32, + "code": 59192, + "name": "layout-grid3-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 42, + "id": 14, + "prevSize": 32, + "code": 59193, + "name": "layout-grid2-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 43, + "id": 13, + "prevSize": 32, + "code": 59194, + "name": "layout-column4-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 44, + "id": 12, + "prevSize": 32, + "code": 59195, + "name": "layout-column3-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 45, + "id": 11, + "prevSize": 32, + "code": 59196, + "name": "layout-column2-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 46, + "id": 10, + "prevSize": 32, + "code": 59197, + "name": "instagram", + "tempChar": "", + "ligatures": "" + }, + { + "order": 47, + "id": 9, + "prevSize": 32, + "code": 59198, + "name": "google", + "tempChar": "", + "ligatures": "" + }, + { + "order": 48, + "id": 8, + "prevSize": 32, + "code": 59199, + "name": "github", + "tempChar": "", + "ligatures": "" + }, + { + "order": 49, + "id": 7, + "prevSize": 32, + "code": 59200, + "name": "flickr", + "tempChar": "", + "ligatures": "" + }, + { + "order": 50, + "id": 6, + "prevSize": 32, + "code": 59201, + "name": "facebook", + "tempChar": "", + "ligatures": "" + }, + { + "order": 51, + "id": 5, + "prevSize": 32, + "code": 59202, + "name": "dropbox", + "tempChar": "", + "ligatures": "" + }, + { + "order": 52, + "id": 4, + "prevSize": 32, + "code": 59203, + "name": "dribbble", + "tempChar": "", + "ligatures": "" + }, + { + "order": 53, + "id": 3, + "prevSize": 32, + "code": 59204, + "name": "apple", + "tempChar": "", + "ligatures": "" + }, + { + "order": 54, + "id": 2, + "prevSize": 32, + "code": 59205, + "name": "android", + "tempChar": "", + "ligatures": "" + } + ], + "id": 0, + "metadata": { + "name": "Vol4" + }, + "height": 1024, + "prevSize": 32, + "icons": [ + { + "id": 31, + "paths": [ + "M500.013 386.831c26.323 0 46.321-9.698 60.597-29.154 10.903-14.276 15.962-37.165 15.962-67.464v-99.991c0-30.298-5.060-52.585-15.962-66.861-14.336-19.336-34.334-29.094-60.597-29.094-25.781 0-45.779 9.698-59.934 29.094-10.903 14.336-16.023 36.623-16.023 66.921v99.991c0 30.298 5.12 52.585 16.023 67.464 14.155 19.396 34.153 29.094 59.934 29.094zM475.437 179.983c0-26.263 8.011-39.394 24.576-39.394 17.167 0 24.576 13.131 24.576 39.394v119.989c0 26.323-7.409 39.996-24.576 39.996-16.565 0-24.576-13.734-24.576-39.996v-119.989zM623.435 365.688c-2.891-8.614-4.518-22.287-4.518-42.827v-225.16h51.983v209.679c0 12.047 0 18.854 0.602 20.058 1.144 8.011 5.12 12.529 11.987 12.529 10.24 0 21.082-8.011 32.527-24.576v-217.69h51.983v285.154h-51.983v-31.443c-20.54 23.974-39.936 35.418-58.91 35.418-16.565 0-28.552-6.807-33.672-21.143zM821.188 711.439v26.263h-51.441v-26.263c0-25.72 8.614-38.912 25.72-38.912 17.107 0.060 25.72 13.192 25.72 38.912zM262.264 106.857c-12.529-35.418-25.058-71.439-37.165-106.857h60.657l40.538 150.287 38.852-150.287h58.308l-69.15 227.991v154.865h-57.103v-154.865c-5.18-28.009-16.625-68.006-34.936-121.133zM920.576 529.167c-10.3-45.176-47.465-78.306-91.437-83.426-105.171-11.445-211.486-11.445-317.199-11.445s-212.028 0-316.597 11.445c-44.454 5.12-81.077 38.249-91.919 83.426-14.276 63.97-14.878 133.722-14.878 199.981 0 65.717 0 135.951 14.878 199.981 10.3 45.176 47.465 78.306 91.437 82.884 105.111 11.987 211.426 11.987 317.139 11.987s212.028 0 317.199-11.987c43.912-4.578 80.535-37.707 91.437-82.884 14.276-63.97 14.878-134.264 14.878-199.981-0.060-66.259-0.060-136.011-14.938-199.981zM330.27 586.872h-61.079v325.15h-57.163v-325.15h-60.055v-53.73h178.296v53.73zM484.593 912.023h-50.899v-30.84c-20.6 23.432-39.996 34.876-58.308 34.876-16.504 0-28.552-6.867-33.129-21.143-2.891-8.553-4.578-21.745-4.578-41.683v-223.413h50.899v207.992c0 12.047 0 18.312 0.542 20.058 1.205 7.951 5.18 11.987 11.987 11.987 10.36 0 21.203-7.951 32.587-23.974v-216.004h50.899v282.142zM678.912 827.452c0 26.323-1.205 45.116-5.18 57.103-6.264 20.6-20.6 31.443-40.599 31.443-18.251 0-36.021-10.3-53.188-31.443v27.467h-50.778v-378.88h50.778v124.024c16.565-20.6 34.334-30.84 53.188-30.84 19.998 0 34.334 10.842 40.599 31.985 3.976 11.445 5.18 30.238 5.18 56.561v112.58zM872.026 780.589h-102.28v49.694c0 26.323 8.614 39.394 26.323 39.394 12.589 0 19.998-6.807 22.889-20.54 0.542-2.831 1.144-14.276 1.144-34.876h51.983v7.469c0 16.565 0 28.009-1.144 33.129-1.205 11.384-5.783 21.685-11.987 30.84-13.794 19.998-34.876 30.298-61.681 30.298-26.865 0-46.923-9.698-61.741-29.154-10.842-13.734-16.565-36.021-16.565-66.319v-98.846c0-30.298 5.18-51.983 16.023-66.319 14.878-19.456 34.876-29.154 61.199-29.154 25.781 0 45.719 9.698 60.536 29.154 10.36 14.276 15.48 35.96 15.48 66.319v58.91zM628.013 710.837v120.591c0 25.72-7.469 38.249-22.287 38.249-8.614 0-17.167-3.976-25.781-12.529v-171.972c8.614-8.614 17.167-12.589 25.781-12.589 14.818 0 22.287 13.131 22.287 38.249z" + ], + "grid": 0, + "tags": [ + "youtube" + ] + }, + { + "id": 30, + "paths": [ + "M943.526 162.033c-25.058-31.804-68.066-48.67-124.265-48.67-15.902 0-31.383 1.385-45.658 3.554-52.344 8.794-181.85 74.21-225.641 211.908-3.072 9.517-1.144 19.998 5.12 27.889 6.264 7.831 16.203 12.107 26.082 11.264 33.852-2.711 59.151-0.723 66.982 8.011 6.264 6.807 8.553 23.251 6.385 46.261-2.771 30.72-20.058 66.199-38.189 100.894-8.734 15.902-35.418 64.753-51.923 64.753-3.915 0-10.18-4.156-16.625-11.083-30.961-33.431-37.346-97.16-42.827-153.48-1.928-18.552-3.674-36.262-6.264-53.007l-4.156-23.552c-5.722-33.129-12.228-70.656-22.528-104.147-12.408-38.792-42.104-88.787-85.594-102.28-9.397-2.65-19.637-3.976-30.298-3.976-41.442 0-78.667 19.817-89.208 25.961-44.152 26.202-79.872 58.308-114.447 89.389-26.082 23.371-53.007 47.646-83.486 69.15-7.951 5.662-12.71 20.179-12.71 29.937 0 11.384 6.385 21.805 16.625 26.925 3.373 1.747 3.855 2.53 6.566 7.831 4.337 8.433 13.312 25.841 38.551 29.877 22.347 3.313 43.309-3.253 60.717-8.734 9.457-3.012 18.432-5.783 24.275-5.783 2.108 0 4.578 0 9.577 8.373 10.421 17.408 16.143 37.286 22.167 58.368 3.132 10.722 6.204 21.444 9.999 32.527 13.372 36.804 23.612 76.981 34.394 119.507l9.457 37.768c21.564 88.847 51.14 210.402 133.662 245.037 12.469 5.301 26.684 8.011 42.345 8.011 40.297 0 82.944-17.709 106.616-32.527 70.234-41.382 134.987-102.52 197.813-186.97 115.11-154.082 186.007-339.727 198.355-404.902 9.818-52.164 2.711-92.762-21.865-124.085zM906.24 274.914c-8.794 46.261-69.451 222.148-187.452 380.024-58.007 78.005-116.856 133.963-180.766 171.61-23.733 14.818-71.499 30.178-94.208 20.54-54.633-22.95-80.053-127.458-98.605-203.836l-9.698-38.49c-11.144-43.912-21.745-85.474-35.9-124.687-3.373-9.638-6.144-19.396-8.975-29.033-6.807-23.793-13.914-48.429-28.371-72.523-14.818-25.058-35.418-37.768-61.259-37.768-15.119 0-28.913 4.337-42.285 8.553-9.577 3.012-18.673 5.843-28.853 6.445-0.783-1.385-1.626-3.012-2.65-4.698 22.769-17.95 43.369-36.442 63.488-54.573 33.852-30.479 65.837-59.211 104.689-82.221 13.975-8.132 37.707-17.649 58.729-17.649 5.18 0 9.879 0.602 13.252 1.506 15.42 4.759 35.72 32.949 45.176 62.524 9.096 29.515 15.24 65.054 20.6 96.437l4.156 23.311c2.349 14.878 3.915 31.503 5.722 48.911 6.445 65.777 13.854 140.228 58.729 188.597 18.793 20.058 39.213 30.238 60.717 30.238 52.284 0 83.908-57.946 107.46-101.195 18.733-35.96 38.912-77.764 42.647-119.266 3.855-42.406-3.072-71.68-21.865-92.341-18.914-20.781-45.839-26.744-68.548-28.371 48.67-92.702 142.336-127.398 160.888-130.53 11.083-1.626 23.492-2.771 36.262-2.771 21.263 0 59.392 3.373 76.92 25.66 13.131 16.806 16.384 41.502 9.999 75.595z" + ], + "grid": 0, + "tags": [ + "vimeo" + ] + }, + { + "id": 29, + "paths": [ + "M1024 194.921c-37.707 16.264-78.607 27.949-120.892 32.467 43.55-25.961 76.68-66.861 92.28-115.592-40.297 24.034-85.775 41.562-133.18 50.658-38.31-40.96-92.883-66.259-153.299-66.259-116.314 0-209.86 94.208-209.86 209.8 0 16.264 1.988 32.527 5.18 48.128-174.14-9.035-329.427-92.22-432.73-219.618-18.191 31.142-28.612 66.921-28.612 105.954 0 72.764 37.045 137.035 93.545 174.743-34.394-1.325-66.921-11.083-94.871-26.624 0 0.602 0 1.928 0 2.59 0 101.918 72.102 186.428 168.297 205.944-17.528 4.518-36.382 7.108-55.236 7.108-13.613 0-26.624-1.265-39.575-3.253 26.624 83.185 103.966 143.601 196.186 145.589-72.162 56.501-162.455 89.63-260.578 89.63-17.528 0-33.792-0.602-50.658-2.53 92.943 59.753 203.354 94.208 322.319 94.208 385.928 0 597.112-319.669 597.112-597.052 0-9.156 0-18.191-0.602-27.347 40.84-29.877 76.559-66.982 105.171-108.544zM859.136 330.752c0 222.931-166.551 536.817-536.877 536.817-29.636 0-58.97-2.409-87.823-7.108 40.358-16.625 78.607-38.912 113.905-66.5 20.058-15.661 28.070-42.285 19.998-66.44-8.072-24.154-30.419-40.659-55.898-41.201-32.828-0.663-63.548-11.866-88.365-30.66 0.241-0.060 0.482-0.12 0.723-0.181 27.226-6.987 45.96-31.804 45.237-59.874-0.663-28.13-20.661-51.923-48.188-57.525-39.273-7.951-72.463-31.081-93.907-63.006 2.108 0.12 4.156 0.241 6.264 0.301 0.783 0 1.506 0 2.289 0 26.022 0 49.212-16.745 57.284-41.683 8.312-25.66-1.446-53.67-23.913-68.668-37.948-25.299-62.042-66.018-66.138-110.893 109.869 95.292 249.736 152.456 397.372 160.105 1.024 0.060 2.108 0.060 3.132 0.060 17.528 0 34.214-7.65 45.719-21.022 12.168-14.155 17.047-33.19 13.252-51.441-2.65-12.589-3.976-24.696-3.976-35.84 0-82.462 67.102-149.564 149.624-149.564 42.044 0 80.836 16.745 109.327 47.224 6.987 7.469 15.721 12.951 25.118 16.023-1.144 8.794-0.361 17.89 2.59 26.744 3.795 11.505 10.842 21.203 19.878 28.311-5.361 9.879-7.951 21.263-7.168 32.768 0.602 7.77 0.542 15.48 0.542 23.251z" + ], + "grid": 0, + "tags": [ + "twitter" + ] + }, + { + "id": 28, + "paths": [ + "M521.999 0c-282.323 0-512 229.677-512 512 0 282.323 229.677 512 512 512s512-229.677 512-512c0-282.323-229.677-512-512-512zM521.999 963.765c-249.133 0-451.765-202.632-451.765-451.765s202.632-451.765 451.765-451.765 451.765 202.632 451.765 451.765-202.632 451.765-451.765 451.765zM843.294 542.118v60.235h-361.412v-301.176h60.235v240.941h301.176z" + ], + "grid": 0, + "tags": [ + "time" + ] + }, + { + "id": 27, + "paths": [ + "M792.094 764.205c-43.369 28.792-85.534 42.767-128.964 42.767-22.347 0-41.201-4.939-57.826-15.119-10.24-6.204-16.685-13.432-20.058-22.709-3.132-8.072-6.807-31.443-6.807-97.099v-217.148h228.472v-211.426h-228.412v-243.471h-194.018l-3.373 26.383c-5.783 45.658-16.264 83.787-30.84 113.122-14.758 28.973-33.551 53.007-57.103 73.306-23.974 19.998-53.429 35.9-87.401 47.164l-20.661 6.867v188.055h106.677v308.104c0 48.911 5.24 85.715 15.782 111.676 10.3 27.287 29.816 53.549 58.368 78.246 27.949 23.612 60.536 41.382 96.437 52.646 36.804 12.168 79.27 18.432 126.193 18.432 42.104 0 81.077-4.277 115.29-12.649 34.575-7.891 73.126-21.926 117.76-42.948l17.288-8.132v-227.147l-46.803 31.081zM778.662 921.841c-33.31 14.758-62.344 24.877-88.666 30.961-62.464 15.24-149.143 15.42-209.197-4.518-28.672-9.035-54.272-22.95-75.836-41.141-20.54-17.83-34.394-35.9-41.382-54.392-7.77-19.034-11.625-49.212-11.625-89.69v-368.399h-106.616v-84.992c32.708-13.011 61.741-29.997 86.739-50.899 29.515-25.419 53.73-56.38 71.921-92.16 14.999-29.997 25.901-64.934 32.949-106.376h81.318v243.471h228.472v90.955h-228.472v277.323c0 64.331 3.132 98.786 10.601 118.121 7.891 21.865 23.13 39.755 45.176 53.128 55.959 34.394 134.024 30.238 204.619-2.53v81.137z" + ], + "grid": 0, + "tags": [ + "tumblr" + ] + }, + { + "id": 26, + "paths": [ + "M975.752 598.92c5.361-29.515 8.072-58.729 8.072-86.92 0-288.407-257.144-518.505-558.803-463.752-45.538-31.624-98.485-48.248-153.961-48.248-149.444 0-271.059 121.615-271.059 271.059 0 55.477 16.625 108.424 48.248 154.022-5.361 29.515-8.072 58.669-8.072 86.92 0 288.407 257.205 518.505 558.803 463.752 45.538 31.624 98.485 48.248 153.961 48.248 149.444 0 271.059-121.615 271.059-271.059 0-55.477-16.625-108.424-48.248-154.022zM752.941 963.765c-46.682 0-91.076-15.179-128.482-43.912l-10.963-8.433-13.553 2.831c-30.057 6.204-59.633 9.336-88.004 9.336-226.967 0-411.588-184.621-411.588-411.588 0-28.371 3.132-57.946 9.397-88.004l2.771-13.553-8.433-10.963c-28.672-37.286-43.851-81.8-43.851-128.422 0-116.254 94.569-210.824 210.824-210.824 46.682 0 91.076 15.179 128.482 43.912l10.963 8.433 13.553-2.831c29.997-6.144 59.573-9.336 87.944-9.336 226.967 0 411.588 184.621 411.588 411.588 0 28.371-3.132 57.946-9.397 88.004l-2.771 13.553 8.433 10.963c28.732 37.286 43.912 81.8 43.912 128.422 0 116.254-94.569 210.824-210.824 210.824zM766.133 616.749c0 127.398-123 186.368-240.941 186.368-141.192 0-259.192-62.765-259.192-139.927 0-34.455 19.456-65.837 63.428-65.837 67.162 0 73.427 96.617 189.5 96.617 55.176 0 90.955-24.395 90.955-56.44 0-40.177-34.515-46.441-90.353-60.235l-91.618-22.588c-91.558-21.986-161.912-59.633-161.912-165.045 0-127.337 126.133-174.441 234.677-174.441 118.603 0 238.411 47.044 238.411 119.206 0 36.382-24.456 68.427-65.235 68.427-60.898 0-62.765-72.102-161.31-72.102-55.176 0-90.353 14.999-90.353 48.248 0 36.442 35.78 44.574 83.546 55.898l65.175 15.059c89.148 20.058 195.223 57.645 195.223 166.792z" + ], + "grid": 0, + "tags": [ + "skype" + ] + }, + { + "id": 25, + "paths": [ + "M409.299 806.912c-66.861-62.464-105.231-150.709-105.231-242.206 0-182.694 148.661-331.294 331.294-331.294h175.405l-159.383-159.383 42.586-42.586 232.147 232.147-232.147 232.147-42.586-42.586 159.383-159.383h-175.405c-149.444 0-271.059 121.615-271.059 271.059 0 75.957 30.6 146.312 86.076 198.174l-41.080 43.912zM966.656 543.925v389.722c0 16.565-13.553 30.118-30.118 30.118h-843.294c-16.565 0-30.118-13.553-30.118-30.118v-390.024h-60.235v390.024c0 49.815 40.538 90.353 90.353 90.353h843.294c49.815 0 90.353-40.538 90.353-90.353v-389.722h-60.235z" + ], + "grid": 0, + "tags": [ + "share" + ] + }, + { + "id": 24, + "paths": [ + "M332.92 495.676l-232.087-232.147 232.147-232.147 42.586 42.586-159.443 159.443h175.405c182.633 0 331.294 148.6 331.294 331.294 0 91.497-38.37 179.682-105.231 242.206l-41.080-43.972c55.477-51.923 86.076-122.278 86.076-198.234 0-149.444-121.615-271.059-271.059-271.059h-175.405l159.383 159.383-42.586 42.647zM963.765 543.624v390.024c0 16.565-13.553 30.118-30.118 30.118h-843.294c-16.565 0-30.118-13.553-30.118-30.118v-389.722h-60.235v389.722c0 49.815 40.538 90.353 90.353 90.353h843.294c49.815 0 90.353-40.538 90.353-90.353v-390.024h-60.235z" + ], + "grid": 0, + "tags": [ + "share-alt" + ] + }, + { + "id": 23, + "paths": [ + "M722.824 662.588c0-60.235 0-301.176 0-361.412 0-301.176-180.706-301.176-180.706-301.176s-180.706 0-180.706 301.176 0 120.471 0 361.412c0 0-120.471 0-120.471 361.412 0 0 143.3-143.059 259.735-174.381 0.241 35.057 18.673 63.307 41.442 63.307s41.201-28.311 41.442-63.307c116.435 31.322 259.735 174.381 259.735 174.381 0-361.412-120.471-361.412-120.471-361.412zM542.118 60.296c15.661 1.265 100.412 16.264 117.278 180.646h-234.556c16.866-164.382 101.617-179.381 117.278-180.646zM542.118 783.059c-76.559 0-165.165 52.284-233.532 103.424 15.842-127.759 51.742-158.359 59.814-163.659h53.248v-421.647h240.941v421.647h53.248c8.072 5.301 43.972 35.9 59.814 163.659-68.367-51.14-156.973-103.424-233.532-103.424z" + ], + "grid": 0, + "tags": [ + "rocket" + ] + }, + { + "id": 22, + "paths": [ + "M905.035 374.965c0 230.039-127.88 401.288-315.994 401.288-63.187 0-122.579-34.214-142.456-73.065-34.214 134.807-41.080 160.648-41.080 160.648-12.228 44.936-37.286 89.931-59.332 124.928-62.825 44.393-68.668-24.335-68.668-24.335-1.446-41.201-0.723-90.654 9.999-134.746 0 0 11.384-47.285 75.294-318.344-18.974-37.346-18.974-92.943-18.974-92.943 0-86.799 50.296-151.552 112.76-151.552 53.308 0 79.149 40.358 79.149 88.365 0 53.308-34.334 133.301-51.742 207.149-14.456 62.464 31.202 112.7 92.1 112.7 111.255 0 185.766-142.336 185.766-310.694 0-128.723-86.739-224.617-243.652-224.617-177.393 0-287.804 132.518-287.804 280.215 0 51.080 15.179 86.859 38.792 115.049 10.722 12.951 12.228 17.468 8.373 32.708-2.952 10.662-9.035 36.563-12.107 46.441-3.795 15.24-16.023 20.54-28.913 15.24-81.498-33.611-119.627-123.422-119.627-223.955 0-166.008 140.047-365.508 417.31-365.508 223.895-0 370.808 162.153 370.808 335.029z" + ], + "grid": 0, + "tags": [ + "pinterest" + ] + }, + { + "id": 21, + "paths": [ + "M903.529 120.471v451.765h-60.235v-341.414l-562.236 562.236-42.586-42.586 569.766-569.766h-356.472v-60.235h451.765zM662.588 963.765h-602.353v-602.353h395.987v-60.235h-456.222v722.824h722.824v-464.655h-60.235v404.42z" + ], + "grid": 0, + "tags": [ + "new-window" + ] + }, + { + "id": 20, + "paths": [ + "M465.86 947.080l558.14 76.92v-483.689h-558.14v406.769zM526.095 600.546h437.67v354.364l-437.67-60.356v-294.008zM0 883.11l419.659 57.766v-400.565h-419.659v342.799zM60.235 600.546h299.189v271.24l-299.189-41.201v-230.039zM0 488.629h419.659v-405.504l-419.659 57.766v347.738zM60.235 193.355l299.189-41.201v276.179h-299.189v-234.978zM465.86 76.92v411.708h558.14v-488.629l-558.14 76.92zM963.765 428.393h-437.67v-298.948l437.67-60.356v359.304z" + ], + "grid": 0, + "tags": [ + "microsoft" + ] + }, + { + "id": 19, + "paths": [ + "M1024 240.941v60.235h-722.824v-60.235h722.824zM301.176 542.118h722.824v-60.235h-722.824v60.235zM301.176 783.059h722.824v-60.235h-722.824v60.235zM125.47 209.619h0.542v143.541h21.444v-164.262h-18.914l-35.9 19.215 4.277 16.926 28.552-15.42zM98.726 576.572l13.192-12.107c34.575-33.37 56.561-57.886 56.561-88.245 0-23.492-14.938-47.767-50.357-47.767-18.914 0-35.057 7.048-46.441 16.685l7.048 15.661c7.65-6.325 19.998-13.914 34.936-13.914 24.456 0 32.587 15.42 32.587 32.105-0.241 24.757-19.275 46.020-61.199 85.956l-17.408 16.926v13.673h104.809v-18.492h-73.728v-0.482zM134.686 746.376v-0.542c20.239-7.288 30.359-21.685 30.359-38.671 0-19.938-14.637-39.153-46.984-39.153-17.709 0-34.394 6.264-43.008 12.649l5.843 16.203c7.048-5.060 19.697-10.903 32.888-10.903 20.48 0 28.792 11.625 28.792 24.757 0 19.456-20.48 27.829-36.623 27.829h-12.408v16.625h12.348c21.504 0 42.225 9.879 42.466 32.888 0.301 13.673-8.614 31.804-37.105 31.804-15.48 0-30.118-6.264-36.382-10.36l-6.084 17.167c8.072 5.361 24.215 11.204 42.707 11.204 39.394 0 59.874-23.010 59.874-49.272 0-23.010-16.444-38.189-36.683-42.225z" + ], + "grid": 0, + "tags": [ + "list-ol" + ] + }, + { + "id": 18, + "paths": [ + "M42.044 350.75h207.089v621.809h-207.089v-621.809zM146.854 51.441c-70.295 0-116.736 46.441-116.736 107.339 0 59.573 44.574 107.279 114.206 107.279h1.265c72.162 0 117.338-47.706 116.736-107.279-0.663-60.898-44.574-107.339-115.471-107.339zM756.073 336.294c-110.17 0-159.202 60.356-186.368 102.942v-88.486h-206.426c0 0 2.53 58.368 0 621.809h206.426v-347.016c0-18.793 1.928-37.045 6.867-50.778 15.119-37.045 48.911-75.294 106.135-75.294 74.571 0 104.689 57.103 104.689 140.529v332.559h206.487v-356.412c0-190.765-101.677-279.853-237.809-279.853z" + ], + "grid": 0, + "tags": [ + "linkedin" + ] + }, + { + "id": 17, + "paths": [ + "M1024 0v1024h-240.941v-1024h240.941zM0 1024h180.706v-1024h-180.706v1024zM662.588 1024h60.235v-60.235h-60.235v60.235zM456.041 1024h51.622v-60.235h-51.622v60.235zM559.345 1024h51.622v-60.235h-51.622v60.235zM352.798 1024h51.622v-60.235h-51.622v60.235zM240.941 1024h60.235v-60.235h-60.235v60.235zM240.941 180.706h60.235v-60.235h-60.235v60.235zM240.941 783.059h60.235v-60.235h-60.235v60.235zM240.941 903.529h60.235v-60.235h-60.235v60.235zM240.941 662.588h60.235v-60.235h-60.235v60.235zM240.941 421.647h60.235v-60.235h-60.235v60.235zM240.941 301.176h60.235v-60.235h-60.235v60.235zM240.941 542.118h60.235v-60.235h-60.235v60.235zM240.941 60.235h60.235v-60.235h-60.235v60.235zM352.798 60.235h51.622v-60.235h-51.622v60.235zM559.345 60.235h51.622v-60.235h-51.622v60.235zM456.041 60.235h51.622v-60.235h-51.622v60.235zM662.588 60.235h60.235v-60.235h-60.235v60.235zM662.588 301.176h60.235v-60.235h-60.235v60.235zM662.588 180.706h60.235v-60.235h-60.235v60.235zM662.588 421.647h60.235v-60.235h-60.235v60.235zM662.588 542.118h60.235v-60.235h-60.235v60.235zM662.588 903.529h60.235v-60.235h-60.235v60.235zM662.588 783.059h60.235v-60.235h-60.235v60.235zM662.588 662.588h60.235v-60.235h-60.235v60.235z" + ], + "grid": 0, + "tags": [ + "layout-sidebar-2" + ] + }, + { + "id": 16, + "paths": [ + "M60.235 60.235h180.706v180.706h-180.706v-180.706zM301.176 240.941h180.706v-180.706h-180.706v180.706zM542.118 240.941h180.706v-180.706h-180.706v180.706zM783.059 60.235v180.706h180.706v-180.706h-180.706zM60.235 481.882h180.706v-180.706h-180.706v180.706zM301.176 481.882h180.706v-180.706h-180.706v180.706zM542.118 481.882h180.706v-180.706h-180.706v180.706zM783.059 481.882h180.706v-180.706h-180.706v180.706zM60.235 722.824h180.706v-180.706h-180.706v180.706zM301.176 722.824h180.706v-180.706h-180.706v180.706zM542.118 722.824h180.706v-180.706h-180.706v180.706zM783.059 722.824h180.706v-180.706h-180.706v180.706zM60.235 963.765h180.706v-180.706h-180.706v180.706zM301.176 963.765h180.706v-180.706h-180.706v180.706zM542.118 963.765h180.706v-180.706h-180.706v180.706zM783.059 963.765h180.706v-180.706h-180.706v180.706z" + ], + "grid": 0, + "tags": [ + "layout-grid4-alt" + ] + }, + { + "id": 15, + "paths": [ + "M0 0h301.176v301.176h-301.176v-301.176zM361.412 301.176h301.176v-301.176h-301.176v301.176zM722.824 0v301.176h301.176v-301.176h-301.176zM0 662.588h301.176v-301.176h-301.176v301.176zM361.412 662.588h301.176v-301.176h-301.176v301.176zM722.824 662.588h301.176v-301.176h-301.176v301.176zM0 1024h301.176v-301.176h-301.176v301.176zM361.412 1024h301.176v-301.176h-301.176v301.176zM722.824 1024h301.176v-301.176h-301.176v301.176z" + ], + "grid": 0, + "tags": [ + "layout-grid3-alt" + ] + }, + { + "id": 14, + "paths": [ + "M0 0h421.647v421.647h-421.647v-421.647zM542.118 0v421.647h421.647v-421.647h-421.647zM0 963.765h421.647v-421.647h-421.647v421.647zM542.118 963.765h421.647v-421.647h-421.647v421.647z" + ], + "grid": 0, + "tags": [ + "layout-grid2-alt" + ] + }, + { + "id": 13, + "paths": [ + "M60.235 0h180.706v1024h-180.706v-1024zM301.176 1024h180.706v-1024h-180.706v1024zM542.118 1024h180.706v-1024h-180.706v1024zM783.059 0v1024h180.706v-1024h-180.706z" + ], + "grid": 0, + "tags": [ + "layout-column4-alt" + ] + }, + { + "id": 12, + "paths": [ + "M0 0h301.176v1024h-301.176v-1024zM361.412 1024h301.176v-1024h-301.176v1024zM722.824 0v1024h301.176v-1024h-301.176z" + ], + "grid": 0, + "tags": [ + "layout-column3-alt" + ] + }, + { + "id": 11, + "paths": [ + "M0 0h481.882v1024h-481.882v-1024zM542.118 0v1024h481.882v-1024h-481.882z" + ], + "grid": 0, + "tags": [ + "layout-column2-alt" + ] + }, + { + "id": 10, + "paths": [ + "M783.059 0h-542.118c-132.518 0-240.941 108.424-240.941 240.941v542.118c0 132.518 108.424 240.941 240.941 240.941h542.118c132.518 0 240.941-108.424 240.941-240.941v-542.118c0-132.518-108.424-240.941-240.941-240.941zM963.765 783.059c0 99.629-81.077 180.706-180.706 180.706h-542.118c-99.629 0-180.706-81.077-180.706-180.706v-361.412h193.175c-17.227 36.744-27.528 77.282-27.528 120.471 0 157.756 128.361 286.118 286.118 286.118s286.118-128.361 286.118-286.118c0-43.189-10.3-83.727-27.528-120.471h193.175v361.412zM737.882 542.118c0 124.567-101.316 225.882-225.882 225.882s-225.882-101.316-225.882-225.882 101.316-225.882 225.882-225.882 225.882 101.316 225.882 225.882zM731.979 361.412c-52.525-63.789-131.072-105.412-219.979-105.412s-167.454 41.623-219.979 105.412h-231.785v-120.471c0-99.629 81.077-180.706 180.706-180.706h542.118c99.629 0 180.706 81.077 180.706 180.706v120.471h-231.785zM870.641 163.96v78.185c0 18.010-14.697 32.708-32.648 32.708h-82.402c-18.071-0.060-32.768-14.758-32.768-32.708v-78.185c0-18.010 14.697-32.708 32.768-32.708h82.402c17.95 0 32.648 14.697 32.648 32.708z" + ], + "grid": 0, + "tags": [ + "instagram" + ] + }, + { + "id": 9, + "paths": [ + "M1024 157.515v78.788h-157.515v157.576h-78.788v-157.576h-157.515v-78.788h157.515v-157.515h78.788v157.515h157.515zM625.845 769.807c0 70.776-33.792 128-86.136 173.538-70.776 60.958-167.394 80.655-258.47 80.655-115.049 0-281.239-49.212-281.239-191.97 0-28.913 9.879-57.284 22.829-83.125 54.694-110.712 225.762-139.083 335.932-142.155-20.239-26.443-39.334-57.163-39.334-91.678 0-20.299 7.288-33.852 13.553-52.887-14.818 1.807-28.913 3.072-43.068 3.072-119.386 0-222.75-88.004-222.75-211.727 0-116.917 90.413-216.606 202.391-241.182 37.587-8.072 76.258-12.348 115.049-12.348h269.011l-83.064 48.61h-83.185c61.018 38.129 91.738 112.64 91.738 181.549 0 163.057-137.879 175.345-137.879 256.602 0 79.39 184.621 110.773 184.621 283.046zM465.318 292.322c0-93.545-50.537-247.989-164.382-247.989-80.535 0-119.928 71.379-119.928 144.023 0 93.485 61.5 239.977 171.068 239.977 84.209-0.060 113.242-60.958 113.242-136.011zM539.106 822.754c0-86.136-80.715-134.144-143.42-177.875-10.481-1.205-20.36-1.205-30.84-1.205-100.834 0-251.061 31.985-251.061 159.985 0 118.121 132.939 163.72 231.424 163.72 91.678-0 193.897-36.924 193.897-144.625z" + ], + "grid": 0, + "tags": [ + "google +" + ] + }, + { + "id": 8, + "paths": [ + "M787.697 669.515c0 44.936-23.432 118.182-78.788 118.182-55.416 0-78.848-73.246-78.848-118.182 0-44.875 23.432-118.182 78.848-118.182 55.356 0 78.788 73.306 78.788 118.182zM315.091 551.334c-55.356 0-78.788 73.306-78.788 118.182 0 44.936 23.432 118.182 78.788 118.182 55.356 0 78.788-73.246 78.788-118.182 0-44.875-23.432-118.182-78.788-118.182zM1024 561.212c0 68.367-6.746 140.951-37.527 203.716-81.257 164.322-304.61 180.284-464.595 180.284-162.455 0-399.36-14.095-483.689-180.284-31.443-62.163-38.189-135.349-38.189-203.716 0-89.871 24.636-174.743 83.727-243.652-11.083-33.852-16.625-69.572-16.625-104.689 0-46.14 10.421-92.22 31.383-134.144 97.22 0 159.383 42.466 233.231 100.292 62.163-14.758 126.133-21.504 190.163-21.504 57.826 0 116.314 6.204 172.333 19.697 73.246-57.224 135.349-98.485 231.364-98.485 20.962 41.864 31.383 88.004 31.383 134.144 0 35.117-5.542 70.174-16.625 103.424 59.091 69.512 83.667 155.046 83.667 244.917zM886.121 669.515c0-94.148-57.163-177.212-157.515-177.212-40.599 0-79.33 7.409-119.989 12.951-31.985 4.939-63.97 6.746-96.617 6.746s-64.632-1.807-96.617-6.746c-39.996-5.542-79.39-12.951-119.989-12.951-100.292 0-157.515 83.064-157.515 177.212 0 188.296 172.273 217.208 322.44 217.208h103.424c150.167 0.060 322.379-28.913 322.379-217.208z" + ], + "grid": 0, + "tags": [ + "github" + ] + }, + { + "id": 7, + "paths": [ + "M439.416 512c0 121.314-98.424 219.678-219.618 219.678-121.374 0-219.799-98.364-219.799-219.678s98.424-219.678 219.799-219.678c121.193 0 219.618 98.364 219.618 219.678zM1024 512c0 121.314-98.424 219.678-219.799 219.678-121.193 0-219.618-98.424-219.618-219.678s98.424-219.678 219.618-219.678c121.374 0 219.799 98.364 219.799 219.678zM963.765 512c0-87.944-71.56-159.443-159.563-159.443-87.883 0-159.383 71.56-159.383 159.443s71.499 159.443 159.383 159.443c88.004 0 159.563-71.499 159.563-159.443z" + ], + "grid": 0, + "tags": [ + "flickr" + ] + }, + { + "id": 6, + "paths": [ + "M750.592 335.511l-18.613 176.489h-141.071v512h-211.908v-512h-105.592v-176.489h105.592v-106.255c0-143.541 59.693-229.256 229.376-229.256h141.011v176.489h-88.245c-65.837 0-70.234 24.877-70.234 70.837v88.184h159.684z" + ], + "grid": 0, + "tags": [ + "facebook" + ] + }, + { + "id": 5, + "paths": [ + "M1015.145 263.288l-319.006-208.053-184.139 152.877-183.477-152.877-319.669 208.053 186.729 149.143-186.669 149.504 207.45 135.108v92.341l296.177 177.032 296.719-176.971v-93.244l205.824-134.325-186.609-149.444 186.669-149.143zM700.356 129.928l212.028 138.3-134.445 107.339-214.438-131.915 136.855-113.724zM722.824 412.431l-210.824 130.048-210.824-130.048 210.824-129.747 210.824 129.747zM111.616 268.228l212.45-138.3 136.433 113.664-214.498 131.976-134.385-107.339zM111.556 556.875l134.445-107.761 214.558 132.397-136.493 113.845-212.51-138.481zM749.026 755.23l-236.424 141.131-235.942-141.071v-18.974l51.923 33.792 183.537-152.998 184.079 152.998 52.887-34.515v19.637zM912.444 556.936l-212.088 138.421-136.915-113.845 214.498-132.397 134.505 107.821z" + ], + "grid": 0, + "tags": [ + "dropbox" + ] + }, + { + "id": 4, + "paths": [ + "M512 0c-282.744 0-512 229.256-512 512s229.256 512 512 512 512-229.256 512-512-229.256-512-512-512zM963.403 519.288c-124.988-27.467-234.677-25.48-329.427-5.542-15.119-37.768-32.286-76.68-51.14-116.254 101.256-39.032 198.295-95.533 273.95-176.73 66.62 78.788 106.978 180.344 106.978 291.238 0 2.47-0.361 4.819-0.361 7.288zM814.562 177.513c-69.873 75.716-161.912 128.602-258.831 165.045-45.779-88.425-101.798-178.296-169.502-264.132 39.996-11.625 82.101-18.191 125.771-18.191 116.495 0 222.389 44.695 302.562 117.278zM327.078 100.292c68.247 84.149 124.205 173.719 170.345 262.204-179.14 55.416-359.364 61.922-428.514 62.042 28.552-144.986 126.735-265.035 258.168-324.247zM60.235 512c0-9.096 0.843-18.071 1.325-27.046 3.915 0.060 8.072 0.060 12.77 0.060 78.667 0 265.156-7.529 450.68-67.102 18.071 37.647 34.816 74.993 49.393 111.074-217.148 66.319-345.51 223.172-392.312 290.696-75.354-80.715-121.856-188.717-121.856-307.682zM226.364 861.606c35.9-54.272 156.672-211.908 370.146-275.275 57.886 156.491 84.631 285.756 94.328 340.39-54.874 23.733-115.29 37.045-178.839 37.045-108.303 0-207.752-38.37-285.636-102.159zM746.918 897.144c-11.927-64.030-38.31-183.236-90.534-325.572 86.98-16.866 187.272-17.348 301.658 8.734-20.54 134.084-99.87 248.712-211.125 316.838z" + ], + "grid": 0, + "tags": [ + "dribbble" + ] + }, + { + "id": 3, + "paths": [ + "M843.354 670.118c-28.25-40.599-42.406-86.739-42.406-137.216 0-46.743 13.553-89.269 39.996-127.398 14.758-21.504 38.129-45.538 70.174-72.584-20.902-25.901-42.526-46.803-64.030-61.56-38.189-26.443-81.8-39.996-131.072-39.996-30.178 0-65.837 7.409-106.436 20.902-40.659 14.155-70.174 20.962-88.004 20.962-14.216 0-42.526-6.144-84.992-18.492-43.068-12.288-78.788-18.432-108.905-18.432-70.837 0-128.663 29.576-174.743 88.606-46.14 59.693-69.512 136.011-69.512 230.159 0 100.894 30.78 203.656 90.413 309.549 60.898 105.833 121.856 159.383 185.224 159.383 20.299 0 47.405-6.746 81.257-20.962 33.31-13.493 62.765-20.299 87.401-20.299 25.239 0 56.561 6.144 92.883 19.697 36.984 12.89 65.235 19.697 86.197 19.697 52.284 0 105.231-40.056 158.178-120.651 35.659-53.549 60.296-105.231 75.656-153.841-36.262-11.023-68.909-36.864-97.28-77.523zM814.562 868.472c-39.575 60.235-77.884 93.485-107.821 93.485-8.855 0-27.648-2.831-65.114-15.902-41.743-15.601-80.113-23.492-113.965-23.492-32.587 0-69.572 8.312-110.712 24.998-34.936 14.637-52.104 16.203-57.886 16.203-37.828 0-85.052-45.899-132.759-128.723-55.597-98.726-82.643-190.283-82.643-279.974 0-80.474 18.673-143.782 56.742-193.114 34.876-44.634 75.354-65.416 127.277-65.416 24.154 0 54.332 5.301 92.1 16.083 63.307 18.372 86.98 20.841 101.737 20.841 25.6 0 60.838-7.951 107.038-24.034 35.479-11.806 64.873-17.83 87.341-17.83 36.683 0 68.367 9.577 96.979 29.455 3.976 2.771 8.132 5.903 12.288 9.336-13.734 14.216-24.937 27.768-33.852 40.779-33.732 48.55-50.778 102.942-50.778 161.792 0 63.127 17.89 120.832 53.248 171.671 21.323 30.419 45.056 54.694 71.198 72.644-13.071 30.057-29.997 60.597-50.417 91.196zM567.657 238.773c-14.155 4.337-35.057 8.011-63.97 10.481 1.265-60.898 17.227-113.845 48.008-158.118 30.78-44.393 82.402-74.511 153.901-91.136 1.205 5.542 2.409 9.879 3.012 13.553 0 4.277 0.663 7.951 0.663 12.288 0 25.239-6.144 53.549-17.83 83.727-12.288 30.78-31.383 59.091-57.284 84.932-22.167 22.106-44.333 36.864-66.5 44.273z" + ], + "grid": 0, + "tags": [ + "apple" + ] + }, + { + "id": 2, + "paths": [ + "M229.436 343.1h565.188v410.022c0 37.527-30.238 67.765-67.042 67.765h-46.321v139.746c0 35.117-28.25 63.368-63.307 63.368-35.117 0-63.548-28.311-63.548-63.368v-139.746h-84.811v139.746c0 35.057-28.431 63.368-63.548 63.368-34.394 0-62.765-28.311-62.765-63.368l-0.542-139.746h-45.598c-37.466 0-67.704-30.178-67.704-67.765v-410.022zM141.975 331.415c-35.057 0-63.428 28.371-63.428 62.765v264.794c0 35.117 28.371 63.368 63.428 63.368s62.765-28.311 62.765-63.368v-264.794c0-34.394-28.19-62.765-62.765-62.765zM796.431 320.934h-569.464c0-97.882 58.549-182.874 145.348-227.147l-43.791-80.595c-2.47-4.337-1.265-9.879 3.072-12.348 4.277-1.867 9.879-0.663 12.348 3.735l44.273 81.257c37.647-16.685 79.511-25.901 123.784-25.901s86.136 9.216 123.784 25.841l44.273-81.257c2.47-4.337 8.072-5.542 12.348-3.735 4.337 2.47 5.542 8.011 3.072 12.348l-43.791 80.595c86.257 44.333 144.745 129.325 144.745 227.208zM406.046 194.138c0-12.951-10.421-24.034-23.913-24.034-13.011 0-23.432 11.083-23.432 24.034 0 12.89 10.421 23.974 23.432 23.974 13.493 0.060 23.913-11.023 23.913-23.974zM665.299 194.138c0-12.951-10.421-24.034-23.432-24.034-13.553 0-23.913 11.083-23.913 24.034 0 12.89 10.421 23.974 23.913 23.974 13.011 0.060 23.432-11.023 23.432-23.974zM882.025 331.415c-34.515 0-62.765 27.708-62.765 62.765v264.794c0 35.117 28.25 63.368 62.765 63.368 35.057 0 63.428-28.311 63.428-63.368v-264.794c-0.060-35.057-28.371-62.765-63.428-62.765z" + ], + "grid": 0, + "tags": [ + "android" + ] + } + ], + "invisible": true + }, + { + "selection": [ + { + "order": 23, + "id": 1, + "prevSize": 32, + "code": 59206, + "name": "save", + "tempChar": "", + "ligatures": "" + }, + { + "order": 24, + "id": 0, + "prevSize": 32, + "code": 59207, + "name": "save-alt", + "tempChar": "", + "ligatures": "" + } + ], + "id": 4, + "metadata": { + "name": "Extra" + }, + "height": 1024, + "prevSize": 32, + "icons": [ + { + "id": 1, + "paths": [ + "M853.173 0h-762.82c-49.815 0-90.353 40.538-90.353 90.353v843.294c0 49.815 40.538 90.353 90.353 90.353h843.294c49.815 0 90.353-40.538 90.353-90.353v-766.434l-170.827-167.213zM481.882 60.235v240.941h180.706v-240.941h60.235v301.176h-481.882v-301.176h240.941zM180.706 963.765v-361.412h662.588v361.412h-662.588zM963.765 933.647c0 16.565-13.553 30.118-30.118 30.118h-30.118v-421.647h-783.059v421.647h-30.118c-16.625 0-30.118-13.553-30.118-30.118v-843.294c0-16.565 13.493-30.118 30.118-30.118h90.353v361.412h602.353v-361.412h45.538l135.168 132.277v741.135z" + ], + "grid": 0, + "tags": [ + "save" + ] + }, + { + "id": 0, + "paths": [ + "M933.647 0h-762.82l-170.827 167.213v766.434c0 49.815 40.538 90.353 90.353 90.353h843.294c49.815 0 90.353-40.538 90.353-90.353v-843.294c0-49.815-40.538-90.353-90.353-90.353zM783.059 60.235v120.471h-481.882v-120.471h481.882zM180.706 963.765v-60.235h662.588v60.235h-662.588zM963.765 933.647c0 16.565-13.493 30.118-30.118 30.118h-30.118v-120.471h-783.059v120.471h-30.118c-16.625 0-30.118-13.553-30.118-30.118v-741.135l135.168-132.277h45.538v180.706h602.353v-180.706h90.353c16.625 0 30.118 13.553 30.118 30.118v843.294zM512 301.176c-116.254 0-210.824 94.569-210.824 210.824s94.569 210.824 210.824 210.824 210.824-94.569 210.824-210.824-94.569-210.824-210.824-210.824zM512 662.588c-83.004 0-150.588-67.524-150.588-150.588s67.584-150.588 150.588-150.588 150.588 67.524 150.588 150.588-67.584 150.588-150.588 150.588z" + ], + "grid": 0, + "tags": [ + "save-alt" + ] + } + ], + "invisible": true + }, + { + "selection": [ + { + "order": 1, + "id": 21, + "prevSize": 32, + "code": 59208, + "name": "yahoo", + "tempChar": "", + "ligatures": "" + }, + { + "order": 2, + "id": 20, + "prevSize": 32, + "code": 59209, + "name": "wordpress", + "tempChar": "", + "ligatures": "" + }, + { + "order": 3, + "id": 19, + "prevSize": 32, + "code": 59210, + "name": "vimeo-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 4, + "id": 18, + "prevSize": 32, + "code": 59211, + "name": "twitter-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 5, + "id": 17, + "prevSize": 32, + "code": 59212, + "name": "tumblr-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 6, + "id": 16, + "prevSize": 32, + "code": 59213, + "name": "trello", + "tempChar": "", + "ligatures": "" + }, + { + "order": 7, + "id": 15, + "prevSize": 32, + "code": 59214, + "name": "stack-overflow", + "tempChar": "", + "ligatures": "" + }, + { + "order": 8, + "id": 14, + "prevSize": 32, + "code": 59215, + "name": "soundcloud", + "tempChar": "", + "ligatures": "" + }, + { + "order": 9, + "id": 13, + "prevSize": 32, + "code": 59216, + "name": "sharethis", + "tempChar": "", + "ligatures": "" + }, + { + "order": 10, + "id": 12, + "prevSize": 32, + "code": 59217, + "name": "sharethis-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 11, + "id": 11, + "prevSize": 32, + "code": 59218, + "name": "reddit", + "tempChar": "", + "ligatures": "" + }, + { + "order": 12, + "id": 10, + "prevSize": 32, + "code": 59219, + "name": "pinterest-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 13, + "id": 9, + "prevSize": 32, + "code": 59220, + "name": "microsoft-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 14, + "id": 8, + "prevSize": 32, + "code": 59221, + "name": "linux", + "tempChar": "", + "ligatures": "" + }, + { + "order": 15, + "id": 7, + "prevSize": 32, + "code": 59222, + "name": "jsfiddle", + "tempChar": "", + "ligatures": "" + }, + { + "order": 16, + "id": 6, + "prevSize": 32, + "code": 59223, + "name": "joomla", + "tempChar": "", + "ligatures": "" + }, + { + "order": 17, + "id": 5, + "prevSize": 32, + "code": 59224, + "name": "html5", + "tempChar": "", + "ligatures": "" + }, + { + "order": 18, + "id": 4, + "prevSize": 32, + "code": 59225, + "name": "flickr-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 19, + "id": 3, + "prevSize": 32, + "code": 59226, + "name": "email", + "tempChar": "", + "ligatures": "" + }, + { + "order": 20, + "id": 2, + "prevSize": 32, + "code": 59227, + "name": "drupal", + "tempChar": "", + "ligatures": "" + }, + { + "order": 21, + "id": 1, + "prevSize": 32, + "code": 59228, + "name": "dropbox-alt", + "tempChar": "", + "ligatures": "" + }, + { + "order": 22, + "id": 0, + "prevSize": 32, + "code": 59229, + "name": "css3", + "tempChar": "", + "ligatures": "" + } + ], + "id": 5, + "metadata": { + "name": "Extra 2" + }, + "height": 1024, + "prevSize": 32, + "icons": [ + { + "id": 21, + "paths": [ + "M572.235 993.882c-19.697-3.494-39.996-6.325-60.838-6.325-20.239 0-40.538 2.891-60.777 6.325l7.529-409.54c-107.761-185.886-209.137-375.206-327.8-554.225 20.239 5.24 41.080 8.674 62.524 8.674s43.43-4.096 64.271-8.674c81.077 143.721 169.141 283.226 254.253 424.538 85.715-140.168 176.67-279.733 254.313-424.538 20.239 5.24 41.141 8.132 61.922 8.132 22.046 0 44.634-2.891 66.018-8.132-46.381 63.729-84.57 133.18-124.506 200.945-68.969 117.579-136.734 235.219-204.499 353.28l7.59 409.54z" + ], + "grid": 0, + "tags": [ + "yahoo" + ] + }, + { + "id": 20, + "paths": [ + "M993.882 512c0 265.638-216.184 481.882-481.882 481.882s-481.882-216.245-481.882-481.882 216.184-481.882 481.882-481.882 481.882 216.245 481.882 481.882zM971.836 512c0-253.289-206.487-459.836-459.836-459.836s-459.836 206.547-459.836 459.836 206.487 459.836 459.836 459.836 459.836-206.547 459.836-459.836zM134.445 343.642l197.391 540.552c-138.24-67.283-233.412-208.715-233.412-372.194 0-59.633 12.951-116.736 36.021-168.358zM759.386 624.941l-40.9 137.698-149.504-444.175c0 0 24.757-1.626 47.345-4.337 22.046-2.711 19.396-35.539-2.65-33.852-67.223 4.819-110.291 5.361-110.291 5.361s-40.297-0.602-108.604-5.421c-22.588-1.626-25.299 32.226-2.711 33.852 20.962 2.168 43.008 4.397 43.008 4.397l64.512 176.369-90.353 271.059-150.588-447.428c0 0 24.757-1.626 47.345-4.337 22.046-2.711 19.396-35.539-2.65-33.852-66.741 4.819-110.291 5.361-110.291 5.361-7.529 0-16.625-0.542-26.323-0.542 73.668-112.459 200.584-186.669 345.269-186.669 107.58 0 205.463 41.442 279.13 108.664-1.626 0-3.735 0-5.361 0-40.358 0-69.391 34.997-69.391 73.186 0 33.852 19.878 62.404 40.84 96.738 16.203 27.467 33.852 62.946 33.852 114.086 0.060 35.358-14.396 76.318-31.684 133.843zM646.385 896.060c0.542 2.108 1.626 4.216 2.711 5.903-43.008 15.059-88.727 23.672-137.156 23.672-40.297 0-79.571-6.024-116.736-17.227l123.723-360.267 127.458 347.919zM925.576 512c0 152.696-82.824 285.576-206.005 357.135l126.374-364.664c20.962-60.296 31.744-106.436 31.744-148.48 0-14.999-1.084-29.033-3.253-42.466 32.346 59.151 51.14 126.434 51.14 198.475z" + ], + "grid": 0, + "tags": [ + "wordpress" + ] + }, + { + "id": 19, + "paths": [ + "M971.716 138.601c-34.936-44.333-108.183-46.020-159.322-38.37-40.96 6.807-180.585 68.126-227.509 215.582 83.546-6.807 127.699 6.084 119.266 98.003-3.494 39.153-23.070 80.956-44.333 121.916-25.66 46.743-72.343 138.842-134.626 72.343-55.356-59.633-51.983-173.779-63.849-249.615-7.77-42.647-15.36-95.473-29.033-139.746-11.987-37.527-40.117-82.583-73.246-92.883-36.623-10.3-81.86 5.963-108.243 21.263-83.667 49.513-138.903 119.386-220.702 177.272v6.024c27.226 13.673 18.793 35.78 40.056 39.213 50.296 6.746 97.882-46.984 131.253 9.276 20.42 34.033 26.383 71.56 39.093 108.303 17.83 49.333 30.78 103.063 45.176 159.322 23.853 96.376 52.887 239.435 136.312 274.492 41.864 17.89 105.773-6.024 137.276-25.66 86.799-51.2 156.009-125.289 212.992-201.909 133.783-179.080 206.246-383.518 217.329-442.308 7.65-40.117 6.807-81.016-17.89-112.52z" + ], + "grid": 0, + "tags": [ + "vimeo-alt" + ] + }, + { + "id": 18, + "paths": [ + "M918.769 303.465c0.663 9.096 0.663 18.191 0.663 27.347 0 277.384-211.185 597.052-597.112 597.052-118.904 0-229.376-34.455-322.319-94.208 16.926 1.928 33.19 2.53 50.718 2.53 98.123 0 188.356-33.129 260.518-89.63-92.28-1.928-169.562-62.404-196.186-145.589 12.951 1.928 25.961 3.253 39.514 3.253 18.914 0 37.768-2.59 55.296-7.108-96.136-19.516-168.297-103.966-168.297-205.944 0-0.663 0-1.988 0-2.59 27.949 15.541 60.416 25.299 94.871 26.624-56.501-37.707-93.545-102.039-93.545-174.743 0-38.972 10.421-74.752 28.612-105.954 103.304 127.398 258.59 210.583 432.73 219.618-3.313-15.601-5.24-31.864-5.24-48.128 0-115.592 93.606-209.8 209.86-209.8 60.416 0 114.989 25.299 153.359 66.259 47.405-9.096 92.823-26.624 133.18-50.658-15.601 48.73-48.73 89.69-92.28 115.592 42.285-4.518 83.185-16.203 120.892-32.467-28.612 41.562-64.331 78.667-105.231 108.544z" + ], + "grid": 0, + "tags": [ + "twitter-alt" + ] + }, + { + "id": 17, + "paths": [ + "M548.382 30.118v243.471h228.472v151.191h-228.472v247.206c0 55.838 2.53 91.618 8.794 107.942 5.662 15.721 16.926 28.19 32.587 37.647 21.323 13.131 45.839 19.456 73.427 19.456 48.971 0 97.28-15.721 145.589-47.767v151.853c-41.442 19.456-78.426 33.25-111.676 40.84-33.31 8.132-69.632 11.866-108.604 11.866-43.912 0-82.763-5.662-116.736-16.926-33.852-10.662-62.765-26.985-86.558-47.044-23.793-20.661-40.719-42.647-49.513-65.837-9.397-23.251-13.794-57.043-13.794-101.015v-338.221h-106.677v-136.192c37.587-12.469 70.234-30.118 97.22-52.646 27.046-23.251 48.369-50.839 64.693-82.824 16.264-32.648 27.588-73.427 33.852-123h137.397z" + ], + "grid": 0, + "tags": [ + "tumblr-alt" + ] + }, + { + "id": 16, + "paths": [ + "M993.882 953.705c0 21.986-18.191 40.177-40.177 40.177h-883.411c-21.926 0-40.177-18.191-40.177-40.177v-883.411c0-21.986 18.191-40.177 40.177-40.177h883.471c21.926 0 40.177 18.191 40.177 40.177v883.411zM471.823 150.588c0-11.324-8.794-20.058-20.058-20.058h-301.176c-11.324 0-20.058 8.794-20.058 20.058v642.53c0 11.264 8.794 20.058 20.058 20.058h301.176c11.324 0 20.058-8.794 20.058-20.058v-642.53zM893.47 150.588c0-11.324-8.794-20.058-20.058-20.058h-301.176c-11.324 0-20.058 8.794-20.058 20.058v401.589c0 11.264 8.734 20.058 20.058 20.058h301.176c11.324 0 20.058-8.794 20.058-20.058v-401.589z" + ], + "grid": 0, + "tags": [ + "trello" + ] + }, + { + "id": 15, + "paths": [ + "M762.579 974.547c0 18.793-0.542 18.793-0.542 18.793v0.542h-608.738c-18.854 0-18.854-0.542-18.854-0.542h-0.542v-395.866h65.114v332.439h499.11v-332.439h64.452v377.073zM633.013 864.738l-380.205 0.542v-81.197l380.205-0.542v81.197zM642.168 679.816l-6.987 80.655-379.181-34.936 7.529-80.655 378.639 34.936zM667.467 573.32l-21.022 78.607-367.315-98.485 20.962-78.547 367.375 98.424zM715.294 480.798l-41.442 69.873-327.499-193.536 41.382-69.933 327.56 193.596zM795.407 423.816l-66.62 45.719-214.679-314.067 67.223-46.321 214.076 314.669zM890.097 405.022l-80.173 13.975-65.054-374.904 80.113-13.975 65.114 374.904z" + ], + "grid": 0, + "tags": [ + "stack-overflow" + ] + }, + { + "id": 14, + "paths": [ + "M53.128 610.304l-8.373 52.706c-0.422 2.108-1.626 3.735-3.735 3.735s-3.373-1.626-3.735-3.735l-7.168-52.706 7.108-53.549c0.422-2.108 1.687-3.735 3.735-3.735s3.313 1.626 3.735 3.735l8.433 53.549zM91.618 610.304l-10.842 84.872c-0.422 2.108-2.108 3.735-4.156 3.735-2.108 0-3.735-1.626-3.735-4.096l-9.638-84.51c9.638-86.618 9.638-86.618 9.638-86.618 0-2.048 1.626-3.735 3.735-3.735 2.048 0 3.735 1.687 4.156 3.735l10.842 86.618zM129.687 610.304l-10.421 99.147c0 2.47-2.108 4.578-4.638 4.578-2.53 0-4.578-2.108-5-4.578l-8.794-99.147 8.794-102.46c0.422-2.952 2.53-5 5-5 2.53 0 4.638 2.048 4.638 5l10.421 102.46zM168.177 610.304l-9.638 102.039c-0.422 3.373-2.891 5.481-5.843 5.481-2.891 0-5.421-2.108-5.421-5.481l-8.794-102.039 8.794-105.412c0-3.373 2.53-5.421 5.421-5.421 2.952 0 5.421 2.048 5.843 5.421l9.638 105.412zM206.667 610.304l-8.794 102.942c-0.422 3.735-3.373 6.686-6.686 6.686s-6.264-2.952-6.264-6.686l-8.373-102.942 8.373-97.822c0-3.433 2.952-6.325 6.264-6.325 3.373 0 6.264 2.952 6.686 6.325l8.794 97.822zM245.941 610.304l-8.794 102.942c0 4.096-3.373 7.529-7.108 7.529-4.156 0-7.108-3.433-7.529-7.529l-7.529-102.942c7.529-159.021 7.529-159.021 7.529-159.021 0.482-4.096 3.373-7.469 7.529-7.469 3.735 0 7.108 3.373 7.108 7.469l8.794 159.021zM284.431 611.147l-7.951 102.099c0 4.578-3.795 7.891-7.951 7.891-4.578 0-7.891-3.313-8.373-7.891l-6.686-102.099c6.686-195.765 6.686-195.765 6.686-195.765 0.422-4.578 3.735-7.951 8.373-7.951 4.156 0 7.951 3.373 7.951 7.951l7.951 195.765zM325.030 610.304l-7.529 101.256c-0.422 5-4.156 8.794-9.216 8.794-4.578 0-8.373-3.735-8.794-8.794l-6.686-101.256 6.686-211.667c0-5 4.216-9.216 8.794-9.216 5 0 8.794 4.216 9.216 9.216l7.529 211.667zM364.785 610.304l-6.746-218.775c-0.361-5.421-4.578-10.059-9.999-10.059-5 0-9.638 4.638-9.638 10.059l-5.903 218.775 5.903 100.834c0.422 5.421 4.638 9.638 9.638 9.638 5.421 0 9.638-4.216 10.059-9.638l6.686-100.834zM404.902 610.304l-6.264 99.991c0 5.843-4.578 10.481-10.481 10.481-5.843 0-10.059-4.638-10.421-10.481l-5.903-99.991 5.903-213.353c0-5.903 4.578-10.481 10.421-10.481 5.903 0 10.481 4.578 10.481 10.481l6.264 213.353zM445.922 610.726l-5.903 98.786c0 6.264-5 11.324-11.264 11.324-6.264 0-11.324-5.060-11.686-11.324l-5-98.786 5-205.764c0.422-6.686 5.421-11.746 11.686-11.746 6.264 0 10.842 5.060 11.264 11.746l5.903 205.764zM486.46 610.726l-5-245.158c0-4.156-2.108-7.951-5.421-9.999-2.108-1.265-4.216-2.108-6.686-2.108-2.53 0-4.578 0.843-6.686 2.108-3.373 2.108-5.481 5.843-5.481 9.999l-0.422 2.47-4.216 242.206c0 0 0 0.422 4.638 98.726 0 0 0 0 0 0.482 0 2.47 0.843 5 2.53 7.048 2.53 2.952 5.843 4.578 9.638 4.578 3.373 0 6.264-1.626 8.373-3.735 2.53-2.048 3.735-5 3.735-8.373l0.422-9.999 4.578-88.245zM522.903 707.343c0 7.108-5.843 12.951-12.951 12.951s-12.951-5.843-13.432-12.951l-2.47-47.646-2.53-48.971 5-265.999v-1.325c0.422-3.735 2.108-7.529 5.060-9.999 2.048-1.626 5-2.952 8.312-2.952 2.108 0 4.638 0.843 6.264 2.108 3.735 2.048 6.264 6.264 6.686 10.842l5.843 267.324-5.783 96.617zM875.52 720.776c-328.403 0-328.764 0-328.764 0-7.108-0.843-12.951-6.264-12.951-13.794v-376.169c0-7.048 2.53-10.421 11.746-13.794 23.010-9.156 48.911-14.155 75.716-14.155 109.146 0 198.716 83.607 208.294 190.283 14.216-5.843 29.696-9.216 46.020-9.216 65.235 0 118.362 53.188 118.362 118.844-0.060 65.295-53.188 118.001-118.423 118.001z" + ], + "grid": 0, + "tags": [ + "soundcloud" + ] + }, + { + "id": 13, + "paths": [ + "M993.882 793.178c0 111.014-89.751 200.704-200.764 200.704-111.074 0-200.764-89.69-200.764-200.704 0-6.987 0.602-14.456 1.205-21.323l-225.882-113.001c-35.72 33.25-84.088 53.971-136.794 53.971-111.074-0-200.764-89.69-200.764-200.824 0-111.014 89.69-200.704 200.764-200.704 52.706 0 101.015 20.661 136.794 53.911l225.882-112.881c-0.602-6.987-1.205-14.456-1.205-21.323 0-111.134 89.69-200.824 200.764-200.824 111.014 0 200.764 89.69 200.764 200.824 0 111.074-89.751 200.764-200.764 200.764-52.706 0-101.015-20.721-136.794-53.971l-225.882 112.941c0.602 6.927 1.265 14.456 1.265 21.323 0 6.927-0.663 14.456-1.265 21.323l225.882 113.062c35.78-33.31 84.149-54.031 136.794-54.031 111.014-0.12 200.764 89.57 200.764 200.764z" + ], + "grid": 0, + "tags": [ + "sharethis" + ] + }, + { + "id": 12, + "paths": [ + "M993.882 813.176c0 99.75-80.956 180.706-180.706 180.706h-602.353c-99.75 0-180.706-80.956-180.706-180.706v-602.353c0-99.75 80.956-180.706 180.706-180.706h602.353c99.75 0 180.706 80.956 180.706 180.706v602.353zM699.573 565.368c-35.117 0-67.102 13.794-90.955 36.382l-151.191-75.294c0.602-5.060 1.205-9.397 1.205-14.456s-0.602-9.397-1.265-14.456l151.191-75.234c23.853 22.588 55.838 36.382 90.955 36.382 73.427 0 133.662-60.175 133.662-134.264 0-73.427-60.235-133.662-133.662-133.662-74.029 0-134.264 60.235-134.264 133.662 0 5 0.602 9.397 1.265 14.396l-151.191 75.294c-23.793-21.986-55.778-35.78-90.895-35.78-73.427 0-133.662 59.573-133.662 133.662s60.235 133.662 133.662 133.662c35.117 0 67.102-13.794 90.955-35.78l151.191 75.294c-0.663 5-1.265 9.397-1.265 14.396 0 73.427 60.235 133.662 134.264 133.662 73.427 0 133.662-60.235 133.662-133.662 0-74.029-60.235-134.204-133.662-134.204z" + ], + "grid": 0, + "tags": [ + "sharethis-alt" + ] + }, + { + "id": 11, + "paths": [ + "M938.526 598.498c1.446 9.698 2.409 19.878 2.409 29.576 0 78.788-46.14 151.612-129.205 206.005-81.137 52.947-187.994 82.101-301.658 82.101s-221.003-29.154-301.658-82.101c-83.607-54.392-129.205-127.217-129.205-206.005 0-10.662 0.964-21.323 2.409-32.045-30.6-19.396-51.501-53.911-51.501-92.823 0-60.657 49.092-109.749 109.749-109.749 27.226 0 52.525 10.24 71.921 26.744 77.764-49.574 179.26-77.764 287.563-79.752l65.114-205.402c2.891-9.216 12.649-14.577 22.347-12.649l168.599 39.816c14.035-32.045 46.14-54.392 83.064-54.392 50.056 0 90.353 40.84 90.353 90.413 0 49.995-40.297 90.835-90.353 90.835-49.574 0-89.871-40.358-90.353-89.871l-153.058-35.96-56.32 177.754c102.46 4.337 198.174 32.587 272.023 80.655 19.396-17.468 45.176-28.19 73.367-28.19 60.657 0 109.749 49.092 109.749 109.749 0 40.84-22.347 76.318-55.356 95.292zM92.28 557.176c15.541-41.743 45.176-80.655 87.401-114.206-11.083-7.71-25.239-12.107-39.816-12.107-39.816 0-72.343 32.527-72.343 72.343 0 21.444 9.698 40.84 24.757 53.971zM903.529 628.073c0-65.054-39.876-127.217-112.218-174.441-74.812-48.55-174.863-75.716-281.239-75.716s-206.487 27.226-281.299 75.716c-72.403 47.164-112.218 109.327-112.218 174.441 0 65.596 39.816 127.759 112.218 174.923 74.812 48.55 174.863 75.776 281.239 75.776s206.487-27.226 281.239-75.776c72.403-47.164 112.279-109.327 112.279-174.923zM367.255 642.168c-36.442 0-67.524-29.636-67.524-66.078 0-36.864 31.081-67.524 67.524-67.524s66.56 30.66 66.56 67.524c-0 36.442-30.118 66.078-66.56 66.078zM667.467 738.906c7.288 7.228 7.288 19.396 0 26.684-32.527 32.527-83.064 48.068-154.985 48.068h-0.964c-71.921 0-122.458-15.541-154.985-48.068-7.288-7.288-7.288-19.456 0-26.684 7.288-7.349 18.914-7.349 26.263 0 25.239 25.239 67.042 37.346 128.723 37.346h0.964c61.259 0 103.484-12.107 128.723-37.346 7.288-7.349 18.914-7.349 26.263 0zM724.269 576.090c0 36.382-30.118 66.078-66.56 66.078s-67.524-29.636-67.524-66.078c0-36.864 31.081-67.524 67.524-67.524s66.56 30.66 66.56 67.524zM785.468 198.234c0 29.033 23.793 52.887 52.947 52.887s52.947-23.853 52.947-52.887c0-29.154-23.853-53.007-52.947-53.007-29.154 0-52.947 23.853-52.947 53.007zM956.476 503.206c0-39.816-32.527-72.343-72.343-72.343-15.541 0-30.118 4.879-41.803 13.613 41.803 33.551 71.379 72.885 86.498 115.652 16.986-13.673 27.648-34.093 27.648-56.922z" + ], + "grid": 0, + "tags": [ + "reddit" + ] + }, + { + "id": 10, + "paths": [ + "M512 30.118c-266.12 0-481.882 215.703-481.882 481.882 0 197.271 118.664 366.833 288.467 441.344-1.325-33.672-0.301-74.029 8.373-110.652 9.216-39.093 61.982-262.566 61.982-262.566s-15.42-30.78-15.42-76.258c0-71.439 41.442-124.687 93.003-124.687 43.851 0 64.994 32.888 64.994 72.282 0 44.032-28.13 109.99-42.586 171.008-12.047 51.14 25.66 92.823 76.077 92.823 91.317 0 152.817-117.218 152.817-256.181 0-105.592-71.198-184.681-200.523-184.681-146.191 0-237.207 109.086-237.207 230.761 0 42.044 12.348 71.62 31.744 94.509 8.855 10.541 10.12 14.818 6.927 26.865-2.289 8.855-7.65 30.238-9.818 38.671-3.253 12.228-13.131 16.565-24.094 12.107-67.403-27.528-98.726-101.256-98.726-184.139 0-136.855 115.411-301.056 344.425-301.056 183.959 0 305.032 133.18 305.032 276.058 0 189.079-105.111 330.27-259.976 330.27-52.043 0-101.015-28.19-117.76-60.115 0 0-27.949 111.074-33.852 132.457-10.24 37.165-30.238 74.27-48.55 103.243 43.309 12.89 89.088 19.817 136.553 19.817 266.12 0 481.882-215.703 481.882-481.882s-215.763-481.882-481.882-481.882z" + ], + "grid": 0, + "tags": [ + "pinterest-alt" + ] + }, + { + "id": 9, + "paths": [ + "M0 140.89l419.659-57.766v405.504h-419.659v-347.738zM0 883.11l419.659 57.766v-400.565h-419.659v342.799zM465.86 76.92v411.708h558.14v-488.629l-558.14 76.92zM465.86 947.080l558.14 76.92v-483.689h-558.14v406.769z" + ], + "grid": 0, + "tags": [ + "microsoft-alt" + ] + }, + { + "id": 8, + "paths": [ + "M834.199 918.588c-30.66 15.661-71.56 50.116-86.618 64.572-11.324 10.782-58.067 16.203-84.45 2.711-30.66-15.661-14.517-40.418-61.862-41.924-23.672-0.602-46.803-0.602-69.933-0.602-20.42 0.602-40.84 1.626-61.862 2.108-70.957 1.626-77.944 47.405-123.723 45.779-31.202-1.084-70.415-25.841-138.24-39.755-47.345-9.758-93.003-12.348-102.761-33.37-9.638-21.022 11.866-44.634 13.432-65.054 1.626-27.467-20.42-64.572-4.277-78.607 13.975-12.348 43.55-3.253 62.886-13.914 20.42-11.806 29.033-21.022 29.033-46.261 7.529 25.72-0.542 46.682-17.227 56.922-10.24 6.445-29.033 9.698-44.695 8.132-12.348-1.144-19.878 0.482-23.13 5.361-4.819 5.903-3.253 16.685 2.711 30.66 5.903 13.975 12.89 23.13 11.806 40.297-0.542 17.227-19.878 37.707-16.625 52.224 1.084 5.421 6.445 10.24 19.878 13.975 21.504 5.903 60.777 11.806 98.967 21.022 42.526 10.722 86.618 30.057 114.086 26.323 81.739-11.324 34.936-98.967 22.046-119.868-69.391-108.725-115.11-179.682-151.672-151.733-9.156 7.529-9.698-18.312-9.156-28.552 1.626-35.539 19.396-48.369 30.118-75.836 20.42-52.224 36.021-111.857 67.223-142.517 23.311-30.178 59.874-79.089 66.921-104.87-5.963-55.959-7.59-115.11-8.614-166.671-1.084-55.416 7.529-103.906 69.933-137.698 14.999-8.132 34.876-11.324 55.898-11.324 37.105-0.602 78.487 10.24 104.87 29.576 41.984 31.202 68.307 97.34 65.114 144.625-2.168 37.105 4.277 75.294 16.143 115.11 13.975 46.803 36.081 79.571 71.56 117.218 42.526 45.176 75.836 133.903 85.534 190.344 8.614 52.826-3.253 85.594-14.517 87.221-17.227 2.59-27.949 56.922-81.739 54.814-34.394-1.626-37.647-22.046-47.345-39.816-15.601-27.407-31.202-18.793-37.105 10.24-3.253 14.517-1.144 36.081 3.735 52.104 9.698 33.912 6.445 65.656 0.542 104.93-11.324 74.21 52.164 88.184 94.69 52.646 41.924-34.876 51.080-40.297 103.785-58.609 80.113-27.467 53.248-51.622 10.18-66.138-38.731-12.951-40.297-78.065-26.383-90.413 3.253 69.933 39.816 80.173 54.874 89.811 66.138 41.020-24.757 74.933-64.030 94.81zM743.846 658.854c14.517-48.489 8.072-67.765-1.566-113.544-7.529-34.394-39.273-81.257-64.030-95.714 6.445 5.361 18.312 20.962 30.66 44.574 21.504 40.418 43.008 100.051 29.033 149.564-5.361 19.275-18.251 21.986-26.865 22.528-37.647 4.337-15.601-45.176-31.202-112.339-17.769-75.354-36.021-80.715-40.297-86.618-22.167-97.822-46.321-88.124-53.368-124.687-5.903-32.828 28.552-59.693-18.251-68.849-14.517-2.711-34.936-17.227-43.008-18.312-8.072-1.024-12.408-54.332 17.709-55.959 29.576-2.168 34.997 33.37 29.576 47.405-8.553 13.914 0.542 19.336 15.119 14.456 11.806-3.735 4.277-34.936 6.987-39.213-7.529-45.176-26.383-51.622-45.719-55.416-74.27 5.903-40.9 87.703-48.429 80.173-10.782-11.324-41.924-1.084-41.924-8.132 0.542-41.924-13.493-66.138-32.828-66.68-21.504-0.542-30.118 29.576-31.202 46.743-1.626 16.143 9.156 50.116 17.227 47.405 5.361-1.626 14.517-12.408 4.819-11.806-4.819 0-12.348-11.866-13.432-25.841-0.542-14.035 4.879-28.009 23.13-27.467 20.962 0.542 20.962 42.466 18.793 44.092-6.927 4.819-15.601 14.035-16.685 15.601-6.927 11.324-20.36 14.456-25.781 19.396-9.156 9.638-11.264 20.42-4.277 24.154 24.696 13.975 16.625 30.057 51.080 31.262 22.588 1.084 39.213-3.253 54.874-8.072 11.806-3.735 50.056-11.806 58.067-25.841 3.735-5.903 8.072-5.903 10.722-4.277 5.361 2.65 6.445 12.89-6.987 16.143-18.793 5.421-37.647 15.661-54.814 22.106-16.685 6.927-22.046 9.638-37.647 12.288-35.479 6.445-61.801-12.89-38.189 10.24 8.072 7.529 15.601 12.348 36.021 11.866 45.176-1.626 95.232-56.019 100.051-31.804 1.024 5.361-14.035 11.806-25.841 17.769-41.924 20.42-71.499 61.32-98.424 47.285-24.215-12.89-48.369-72.644-47.887-45.658 0.542 41.382-54.332 77.944-29.033 125.289-16.685 4.216-53.79 83.366-59.151 124.205-3.253 23.672 2.168 52.706-3.795 68.849-8.072 23.672-44.634-22.588-32.768-79.029 2.108-9.638 0-11.866-2.711-6.927-14.517 26.323-6.445 63.428 5.361 89.208 4.879 11.324 17.227 16.143 26.383 25.841 18.793 21.444 93.003 76.378 105.954 89.811 16.685 15.601 11.866 52.104-22.588 55.898 17.769 33.37 34.936 36.623 34.455 90.895 20.42-10.722 12.408-34.394 3.735-49.393-5.963-10.842-13.432-15.661-11.866-18.312 1.084-1.626 11.866-10.842 17.769-3.735 18.251 20.42 52.706 24.154 89.269 19.336 37.105-4.337 76.92-17.227 95.172-46.803 8.614-13.975 14.517-18.793 18.312-16.143 4.277 2.108 5.963 11.806 5.361 27.949-0.542 17.227-7.529 34.997-12.348 49.513-4.879 16.685-6.445 27.949 9.698 28.552 4.277-30.178 12.89-59.753 15.059-89.871 2.711-34.394-22.046-97.822 4.879-129.626 6.987-8.614 15.541-9.638 27.407-9.638 1.566-43.068 67.765-39.755 89.811-22.046 0-9.758-20.962-18.854-29.576-22.648zM304.971 503.989c-3.795 6.927-13.432 12.288-5.963 13.432 2.711 0.542 10.24-6.024 13.493-13.432 2.65-9.156 5.361-14.035 1.084-15.661-4.879-1.566-3.795 8.072-8.614 15.661zM428.092 212.45c-6.445-1.626-5.361 8.011-2.108 6.987 2.168 0 4.879 3.253 3.735 8.072-1.084 6.445-0.542 10.842 4.337 10.842 0.542 0 1.566 0 1.566-1.626 2.229-13.553-4.277-23.191-7.529-24.275zM442.669 261.903c-5.361 0.542-4.337-11.866 12.89-10.782-10.782 1.084-6.987 10.782-12.89 10.782zM486.761 252.747c15.601-6.927 20.962 3.795 15.601 5.963-5.421 1.566-5.963-8.674-15.601-5.963zM551.816 209.197c-6.987 0.602-4.819 3.735-1.566 4.819 4.277 1.205 8.614 8.674 9.698 16.685 0 1.084 5.361-1.084 5.361-2.711 0.482-12.83-10.782-19.275-13.493-18.793zM583.017 93.064c-4.277-4.337-8.614-8.132-12.89-8.132-10.782 1.084-5.421 12.348-6.987 17.769-2.168 5.903-10.18 10.782-4.819 15.059 4.879 3.735 8.072-5.903 18.312-9.638 2.65-1.144 15.059 0.482 17.709-5.421 0.482-2.711-6.445-5.903-11.324-9.638zM642.711 330.692c-10.18-6.385-12.348-17.167-16.083-13.432-11.324 12.348 13.975 38.189 24.696 40.418 6.445 1.084 11.324-7.59 9.698-15.119-2.168-10.18-9.698-6.445-18.312-11.866z" + ], + "grid": 0, + "tags": [ + "linux" + ] + }, + { + "id": 7, + "paths": [ + "M993.882 654.577c0 103.063-85.173 186.85-189.621 186.85-3.735 0-7.048-0.482-10.36-0.482h-572.717c-105.412-6.144-191.066-86.618-191.066-191.066 0-70.114 38.129-131.313 95.051-164.683-3.735-12.228-5.662-24.937-5.662-38.611 0-71.981 58.85-130.349 132.216-130.349 30.118 0 58.368 10.36 80.956 27.287 46.14-95.051 144.023-160.949 258.349-160.949 158.6 0 286.6 126.615 286.6 282.383 0 5.662-0.482 11.324-0.482 16.926 68.247 28.25 116.736 95.051 116.736 172.695zM387.795 731.317c46.14 0 79.511-14.577 112.941-46.562-13.673-16.926-28.732-33.431-42.827-50.357-19.275 18.793-40.478 30.6-67.765 30.6-33.431 0-62.103-22.106-62.103-56.922 0-34.334 28.732-56.922 61.199-56.922 103.544 0 125.651 180.706 276.239 180.706 73.427 0 135.529-46.14 135.529-123.302 0-78.125-62.584-123.784-136.915-123.784-46.14 0-80.474 13.192-113.423 45.658 15.059 16.444 29.154 33.852 43.791 50.839 18.793-18.372 39.996-30.118 66.801-30.118 31.081 0 62.103 22.106 62.103 55.055 0 36.262-26.383 59.272-61.621 59.272-100.232 0-127.036-180.706-273.89-180.706-72.945 0-137.397 44.695-137.397 122.338-0.12 79.45 62.464 124.205 137.336 124.205z" + ], + "grid": 0, + "tags": [ + "jsfiddle" + ] + }, + { + "id": 6, + "paths": [ + "M601.088 723.486l-94.75 95.352-18.793 18.793c-55.236 54.573-132.397 73.427-202.632 55.838-13.252 57.766-64.693 100.412-126.133 100.412-70.897 0-128.663-57.766-128.663-129.265 0-60.777 42.044-112.279 99.147-125.41-18.191-70.957 0.602-148.781 55.838-203.957l7.529-7.529 94.75 95.413-6.867 6.867c-31.383 30.72-30.72 80.896 0 112.218 30.72 30.78 80.956 30.78 111.676 0l18.854-18.793 94.75-95.413 101.015-100.352 94.75 95.413-100.472 100.412zM495.074 202.692l-95.352 95.292-7.59-7.529c-30.72-30.72-80.956-30.72-111.676 0-30.72 30.78-30.72 81.619 0 112.339l213.956 213.956-94.69 95.352-101.015-100.412-94.75-95.292-18.854-18.793c-57.766-57.103-75.294-139.324-53.368-212.751-57.705-12.529-100.352-63.97-100.352-125.47 0-71.56 57.766-129.265 128.663-129.265 64.632 0 117.338 47.044 127.337 107.942 69.632-16.324 145.589 3.192 200.162 57.043l7.529 7.59zM880.941 287.383c20.721 72.102 2.47 153.058-54.573 210.161l-7.529 7.529-94.75-95.413 7.529-7.469c30.72-30.78 30.72-81.016 0-111.736-30.72-30.72-80.956-30.72-111.676 0l-214.618 214.679-95.352-95.413 101.015-100.412 95.352-95.292 18.191-18.854c57.103-57.043 138.662-75.294 211.486-53.911 8.734-62.825 62.705-111.134 128-111.134 70.897 0 128.663 57.766 128.663 129.265-0.060 65.235-48.971 119.206-111.736 128zM865.22 993.882c-62.705 0-114.808-44.514-126.735-103.544-72.764 22.528-156.25 5.060-213.956-52.706l-6.867-7.529 94.75-95.352 7.529 7.469c30.72 30.78 80.956 30.78 111.676 0 30.72-30.72 30.72-80.896 0-111.676l-18.793-18.854-195.825-195.704 95.352-95.413 195.765 195.825 18.251 18.793c54.573 54.573 74.029 131.795 56.44 202.029 62.765 8.794 111.074 62.163 111.074 127.337 0 71.56-57.705 129.325-128.663 129.325z" + ], + "grid": 0, + "tags": [ + "joomla" + ] + }, + { + "id": 5, + "paths": [ + "M936.056 30.118l-77.101 866.123-348.16 97.641-345.751-97.641-77.101-866.123h848.113zM778.24 207.149h-532.48l28.311 321.656h368.7l-13.372 137.276-118.603 32.045-118.061-31.985-7.831-84.269h-105.352l13.252 167.394 218.052 60.235h2.349v-0.602l216.305-59.633 30.118-327.68h-387.976l-9.035-109.026h405.986l9.638-105.412z" + ], + "grid": 0, + "tags": [ + "html5" + ] + }, + { + "id": 4, + "paths": [ + "M512 30.118c-266.12 0-481.882 215.823-481.882 481.882 0 266.12 215.763 481.882 481.882 481.882s481.882-215.763 481.882-481.882c0-266.059-215.763-481.882-481.882-481.882zM327.258 661.323c-83.787 0-151.733-67.825-151.733-151.672 0-83.787 67.945-151.672 151.733-151.672s151.612 67.885 151.612 151.672c0 83.848-67.885 151.672-151.612 151.672zM707.765 661.323c-83.787 0-151.672-67.825-151.672-151.672 0-83.787 67.885-151.672 151.672-151.672s151.672 67.885 151.672 151.672c0 83.848-67.885 151.672-151.672 151.672z" + ], + "grid": 0, + "tags": [ + "flickr-alt" + ] + }, + { + "id": 3, + "paths": [ + "M0 120.471v783.059h1024v-783.059h-1024zM511.639 591.33l-415.383-410.624h832.452l-417.069 410.624zM346.654 512.964l-286.419 282.022v-565.188l286.419 283.166zM389.481 555.309l122.037 120.651 120.23-118.423 289.129 285.756h-823.838l292.442-287.985zM674.696 515.313l289.069-284.612v570.248l-289.069-285.636z" + ], + "grid": 0, + "tags": [ + "email" + ] + }, + { + "id": 2, + "paths": [ + "M515.795 993.882c-223.955 0-425.382-176.248-425.382-415.985 0-239.375 186.609-350.148 221.184-368.279 41.201-21.926 70.837-33.491 117.459-70.776 23.070-18.131 42.285-44.514 48.369-108.725 33.431 40.056 73.547 86.679 102.039 105.954 46.682 30.72 93.365 42.827 142.155 73.547 29.636 18.131 211.908 129.506 211.908 375.928 0 245.88-194.319 408.335-417.732 408.335zM845.101 596.51c-43.912 0-132.819 91.136-179.441 91.678-54.272 1.084-129.446-107.64-238.17-106.616-85.655 0.602-153.118 68.668-154.263 141.131-0.542 40.659 12.649 70.837 40.659 89.992 18.673 12.589 35.659 20.299 91.076 20.299 92.22 0 209.137-114.206 262.927-112.459 42.767 1.566 109.146 106.496 142.697 108.664 26.323 2.168 40.056-9.879 62.524-42.225 21.926-32.949 31.322-84.57 31.322-113.664 0-28.491-12.649-76.8-59.332-76.8zM717.824 887.928c-18.673 13.734-60.416 30.78-119.688 30.78s-87.221-12.649-105.894-26.925c-2.711-2.168-1.626-2.168-7.168-2.168-6.024 0-9.276 2.771-14.216 6.566-4.397 3.855-6.566 13.192 0 19.757 40.599 37.286 108.664 34.033 158.6 29.576 50.537-4.939 93.365-34.515 97.702-38.912 6.566-6.505 4.939-12.047 3.795-15.902-1.084-3.855-4.397-9.276-13.131-2.771zM688.128 794.142c-10.963-7.108-26.805-8.252-41.623-8.252-14.878 0-23.070-1.084-38.912 5.481-16.023 6.566-32.467 21.384-42.827 30.78-10.481 9.276-12.107 16.444-6.626 24.154 5.542 7.048 11.565 2.65 26.925-10.481 15.902-12.649 26.383-24.154 58.729-24.154s37.888 12.107 44.393 24.154c6.626 12.047 7.168 13.734 13.734 10.481 7.71-3.855 11.565-9.397 7.71-18.793-3.915-9.276-10.481-25.72-21.504-33.37z" + ], + "grid": 0, + "tags": [ + "drupal" + ] + }, + { + "id": 1, + "paths": [ + "M30.118 562.839l283.528 184.922 198.355-165.406-285.816-176.489z", + "M313.645 63.97l-283.528 184.983 196.066 156.913 285.816-176.309z", + "M993.882 248.952l-283.467-184.983-198.415 165.587 285.877 176.309z", + "M512 582.355l198.415 165.406 283.467-184.922-196.006-156.973z", + "M512.602 617.954l-198.957 164.984-85.112-55.657v62.344l284.070 170.406 284.13-170.406v-62.344l-85.173 55.657z" + ], + "grid": 0, + "tags": [ + "dropbox-alt" + ] + }, + { + "id": 0, + "paths": [ + "M993.882 75.896l-144.986 726.679-438.332 145.528-380.446-145.528 38.731-194.138h161.912l-15.842 80.113 229.978 87.763 264.915-87.763 36.984-184.802h-658.312l31.563-161.792h658.974l20.781-104.207h-658.432l32.105-161.852h820.405z" + ], + "grid": 0, + "tags": [ + "css3" + ] + } + ], + "invisible": true + }, + { + "selection": [ + { + "order": 351, + "id": 1, + "prevSize": 32, + "code": 59230, + "name": "rss", + "tempChar": "", + "ligatures": "" + }, + { + "order": 352, + "id": 0, + "prevSize": 32, + "code": 59231, + "name": "rss-alt", + "tempChar": "", + "ligatures": "" + } + ], + "id": 6, + "metadata": { + "name": "rss" + }, + "height": 1024, + "prevSize": 32, + "icons": [ + { + "id": 1, + "paths": [ + "M600.486 843.294h-60.235c0-194.741-161.31-353.16-359.544-353.16v-60.235c231.484-0 419.78 185.464 419.78 413.395zM180.706 210.824v60.235c320.873 0 572.235 251.362 572.235 572.235h60.235c0-354.665-277.805-632.471-632.471-632.471zM361.412 753.001c0-49.815-40.418-90.413-90.172-90.413-49.935 0-90.534 40.599-90.534 90.413s40.599 90.353 90.534 90.353c49.754 0 90.172-40.538 90.172-90.353zM301.176 753.001c0 16.565-13.432 30.118-29.937 30.118-16.685 0-30.298-13.553-30.298-30.118 0-16.625 13.613-30.178 30.298-30.178 16.504 0 29.937 13.553 29.937 30.178zM1024 933.647v-843.294c0-49.815-40.538-90.353-90.353-90.353h-843.294c-49.815 0-90.353 40.538-90.353 90.353v843.294c0 49.815 40.538 90.353 90.353 90.353h843.294c49.815 0 90.353-40.538 90.353-90.353zM933.647 60.235c16.625 0 30.118 13.553 30.118 30.118v843.294c0 16.565-13.493 30.118-30.118 30.118h-843.294c-16.625 0-30.118-13.553-30.118-30.118v-843.294c0-16.565 13.493-30.118 30.118-30.118h843.294z" + ], + "grid": 0, + "tags": [ + "rss" + ] + }, + { + "id": 0, + "paths": [ + "M673.009 1024h-60.235c0-332.137-274.914-602.353-612.774-602.353v-60.235c371.11 0 673.009 297.261 673.009 662.588zM0 0v60.235c540.431 0 963.765 423.334 963.765 963.765h60.235c0-574.163-449.837-1024-1024-1024zM240.941 903.59c0-66.5-53.971-120.531-120.23-120.531-66.56 0-120.712 54.031-120.712 120.531 0 66.44 54.152 120.41 120.712 120.41 66.259 0 120.23-53.971 120.23-120.41zM180.706 903.59c0 33.19-26.925 60.175-59.994 60.175-33.37 0-60.476-26.985-60.476-60.175 0-33.25 27.106-60.296 60.476-60.296 33.069 0 59.994 27.046 59.994 60.296z" + ], + "grid": 0, + "tags": [ + "rss-alt" + ] + } + ], + "invisible": false + } + ], + "preferences": { + "showGlyphs": true, + "showQuickUse": true, + "fontPref": { + "prefix": "ti-", + "metadata": { + "fontFamily": "themify", + "majorVersion": 1, + "minorVersion": 0 + }, + "metrics": { + "emSize": 512, + "baseline": 6.25, + "whitespace": 50 + }, + "postfix": "", + "ie7": true, + "showMetrics": false, + "showMetadata": false, + "showVersion": false, + "resetPoint": 58880 + }, + "imagePref": { + "color": 0, + "height": 17, + "columns": 16, + "margin": 16, + "sprites": false + }, + "historySize": 100, + "showCodes": true, + "search": "", + "gridSize": 16 + }, + "externalSets": [] +} \ No newline at end of file diff --git a/assets/vendors/iconfonts/ti-icons/bower.json b/assets/vendors/iconfonts/ti-icons/bower.json new file mode 100755 index 0000000..8452f18 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/bower.json @@ -0,0 +1,40 @@ +{ + "name": "themify-icons", + "version": "0.1.2", + "homepage": "https://github.com/lykmapipo/themify-icons", + "repository": { + "type": "git", + "url": "https://github.com/lykmapipo/themify-icons" + }, + "description": "Pixel-perfect, hand-crafted icons that draw inspiration from Apple iOS 7", + "main": [ + "css/themify-icons.css", + "fonts", + "ie7/ie7.css", + "ie7/ie7.js" + ], + "keywords": [ + "icons", + "line", + "iOS", + "pixel", + "perfect", + "draw" + ], + "authors": [ + "lykmapipo ", + "themify.me " + ], + "license": ["MIT", "OFL"], + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests", + "SVG", + "demo-files", + "index.html", + "Themify IconFonts 5-23-2014.json" + ] +} \ No newline at end of file diff --git a/assets/vendors/iconfonts/ti-icons/css/themify-icons.css b/assets/vendors/iconfonts/ti-icons/css/themify-icons.css new file mode 100755 index 0000000..72e6b88 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/css/themify-icons.css @@ -0,0 +1,1081 @@ +@font-face { + font-family: 'themify'; + src:url('../fonts/themify.eot'); + src:url('../fonts/themify.eot?#iefix') format('embedded-opentype'), + url('../fonts/themify.woff') format('woff'), + url('../fonts/themify.ttf') format('truetype'), + url('../fonts/themify.svg') format('svg'); + font-weight: normal; + font-style: normal; +} + +[class^="ti-"], [class*=" ti-"] { + font-family: 'themify'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ti-wand:before { + content: "\e600"; +} +.ti-volume:before { + content: "\e601"; +} +.ti-user:before { + content: "\e602"; +} +.ti-unlock:before { + content: "\e603"; +} +.ti-unlink:before { + content: "\e604"; +} +.ti-trash:before { + content: "\e605"; +} +.ti-thought:before { + content: "\e606"; +} +.ti-target:before { + content: "\e607"; +} +.ti-tag:before { + content: "\e608"; +} +.ti-tablet:before { + content: "\e609"; +} +.ti-star:before { + content: "\e60a"; +} +.ti-spray:before { + content: "\e60b"; +} +.ti-signal:before { + content: "\e60c"; +} +.ti-shopping-cart:before { + content: "\e60d"; +} +.ti-shopping-cart-full:before { + content: "\e60e"; +} +.ti-settings:before { + content: "\e60f"; +} +.ti-search:before { + content: "\e610"; +} +.ti-zoom-in:before { + content: "\e611"; +} +.ti-zoom-out:before { + content: "\e612"; +} +.ti-cut:before { + content: "\e613"; +} +.ti-ruler:before { + content: "\e614"; +} +.ti-ruler-pencil:before { + content: "\e615"; +} +.ti-ruler-alt:before { + content: "\e616"; +} +.ti-bookmark:before { + content: "\e617"; +} +.ti-bookmark-alt:before { + content: "\e618"; +} +.ti-reload:before { + content: "\e619"; +} +.ti-plus:before { + content: "\e61a"; +} +.ti-pin:before { + content: "\e61b"; +} +.ti-pencil:before { + content: "\e61c"; +} +.ti-pencil-alt:before { + content: "\e61d"; +} +.ti-paint-roller:before { + content: "\e61e"; +} +.ti-paint-bucket:before { + content: "\e61f"; +} +.ti-na:before { + content: "\e620"; +} +.ti-mobile:before { + content: "\e621"; +} +.ti-minus:before { + content: "\e622"; +} +.ti-medall:before { + content: "\e623"; +} +.ti-medall-alt:before { + content: "\e624"; +} +.ti-marker:before { + content: "\e625"; +} +.ti-marker-alt:before { + content: "\e626"; +} +.ti-arrow-up:before { + content: "\e627"; +} +.ti-arrow-right:before { + content: "\e628"; +} +.ti-arrow-left:before { + content: "\e629"; +} +.ti-arrow-down:before { + content: "\e62a"; +} +.ti-lock:before { + content: "\e62b"; +} +.ti-location-arrow:before { + content: "\e62c"; +} +.ti-link:before { + content: "\e62d"; +} +.ti-layout:before { + content: "\e62e"; +} +.ti-layers:before { + content: "\e62f"; +} +.ti-layers-alt:before { + content: "\e630"; +} +.ti-key:before { + content: "\e631"; +} +.ti-import:before { + content: "\e632"; +} +.ti-image:before { + content: "\e633"; +} +.ti-heart:before { + content: "\e634"; +} +.ti-heart-broken:before { + content: "\e635"; +} +.ti-hand-stop:before { + content: "\e636"; +} +.ti-hand-open:before { + content: "\e637"; +} +.ti-hand-drag:before { + content: "\e638"; +} +.ti-folder:before { + content: "\e639"; +} +.ti-flag:before { + content: "\e63a"; +} +.ti-flag-alt:before { + content: "\e63b"; +} +.ti-flag-alt-2:before { + content: "\e63c"; +} +.ti-eye:before { + content: "\e63d"; +} +.ti-export:before { + content: "\e63e"; +} +.ti-exchange-vertical:before { + content: "\e63f"; +} +.ti-desktop:before { + content: "\e640"; +} +.ti-cup:before { + content: "\e641"; +} +.ti-crown:before { + content: "\e642"; +} +.ti-comments:before { + content: "\e643"; +} +.ti-comment:before { + content: "\e644"; +} +.ti-comment-alt:before { + content: "\e645"; +} +.ti-close:before { + content: "\e646"; +} +.ti-clip:before { + content: "\e647"; +} +.ti-angle-up:before { + content: "\e648"; +} +.ti-angle-right:before { + content: "\e649"; +} +.ti-angle-left:before { + content: "\e64a"; +} +.ti-angle-down:before { + content: "\e64b"; +} +.ti-check:before { + content: "\e64c"; +} +.ti-check-box:before { + content: "\e64d"; +} +.ti-camera:before { + content: "\e64e"; +} +.ti-announcement:before { + content: "\e64f"; +} +.ti-brush:before { + content: "\e650"; +} +.ti-briefcase:before { + content: "\e651"; +} +.ti-bolt:before { + content: "\e652"; +} +.ti-bolt-alt:before { + content: "\e653"; +} +.ti-blackboard:before { + content: "\e654"; +} +.ti-bag:before { + content: "\e655"; +} +.ti-move:before { + content: "\e656"; +} +.ti-arrows-vertical:before { + content: "\e657"; +} +.ti-arrows-horizontal:before { + content: "\e658"; +} +.ti-fullscreen:before { + content: "\e659"; +} +.ti-arrow-top-right:before { + content: "\e65a"; +} +.ti-arrow-top-left:before { + content: "\e65b"; +} +.ti-arrow-circle-up:before { + content: "\e65c"; +} +.ti-arrow-circle-right:before { + content: "\e65d"; +} +.ti-arrow-circle-left:before { + content: "\e65e"; +} +.ti-arrow-circle-down:before { + content: "\e65f"; +} +.ti-angle-double-up:before { + content: "\e660"; +} +.ti-angle-double-right:before { + content: "\e661"; +} +.ti-angle-double-left:before { + content: "\e662"; +} +.ti-angle-double-down:before { + content: "\e663"; +} +.ti-zip:before { + content: "\e664"; +} +.ti-world:before { + content: "\e665"; +} +.ti-wheelchair:before { + content: "\e666"; +} +.ti-view-list:before { + content: "\e667"; +} +.ti-view-list-alt:before { + content: "\e668"; +} +.ti-view-grid:before { + content: "\e669"; +} +.ti-uppercase:before { + content: "\e66a"; +} +.ti-upload:before { + content: "\e66b"; +} +.ti-underline:before { + content: "\e66c"; +} +.ti-truck:before { + content: "\e66d"; +} +.ti-timer:before { + content: "\e66e"; +} +.ti-ticket:before { + content: "\e66f"; +} +.ti-thumb-up:before { + content: "\e670"; +} +.ti-thumb-down:before { + content: "\e671"; +} +.ti-text:before { + content: "\e672"; +} +.ti-stats-up:before { + content: "\e673"; +} +.ti-stats-down:before { + content: "\e674"; +} +.ti-split-v:before { + content: "\e675"; +} +.ti-split-h:before { + content: "\e676"; +} +.ti-smallcap:before { + content: "\e677"; +} +.ti-shine:before { + content: "\e678"; +} +.ti-shift-right:before { + content: "\e679"; +} +.ti-shift-left:before { + content: "\e67a"; +} +.ti-shield:before { + content: "\e67b"; +} +.ti-notepad:before { + content: "\e67c"; +} +.ti-server:before { + content: "\e67d"; +} +.ti-quote-right:before { + content: "\e67e"; +} +.ti-quote-left:before { + content: "\e67f"; +} +.ti-pulse:before { + content: "\e680"; +} +.ti-printer:before { + content: "\e681"; +} +.ti-power-off:before { + content: "\e682"; +} +.ti-plug:before { + content: "\e683"; +} +.ti-pie-chart:before { + content: "\e684"; +} +.ti-paragraph:before { + content: "\e685"; +} +.ti-panel:before { + content: "\e686"; +} +.ti-package:before { + content: "\e687"; +} +.ti-music:before { + content: "\e688"; +} +.ti-music-alt:before { + content: "\e689"; +} +.ti-mouse:before { + content: "\e68a"; +} +.ti-mouse-alt:before { + content: "\e68b"; +} +.ti-money:before { + content: "\e68c"; +} +.ti-microphone:before { + content: "\e68d"; +} +.ti-menu:before { + content: "\e68e"; +} +.ti-menu-alt:before { + content: "\e68f"; +} +.ti-map:before { + content: "\e690"; +} +.ti-map-alt:before { + content: "\e691"; +} +.ti-loop:before { + content: "\e692"; +} +.ti-location-pin:before { + content: "\e693"; +} +.ti-list:before { + content: "\e694"; +} +.ti-light-bulb:before { + content: "\e695"; +} +.ti-Italic:before { + content: "\e696"; +} +.ti-info:before { + content: "\e697"; +} +.ti-infinite:before { + content: "\e698"; +} +.ti-id-badge:before { + content: "\e699"; +} +.ti-hummer:before { + content: "\e69a"; +} +.ti-home:before { + content: "\e69b"; +} +.ti-help:before { + content: "\e69c"; +} +.ti-headphone:before { + content: "\e69d"; +} +.ti-harddrives:before { + content: "\e69e"; +} +.ti-harddrive:before { + content: "\e69f"; +} +.ti-gift:before { + content: "\e6a0"; +} +.ti-game:before { + content: "\e6a1"; +} +.ti-filter:before { + content: "\e6a2"; +} +.ti-files:before { + content: "\e6a3"; +} +.ti-file:before { + content: "\e6a4"; +} +.ti-eraser:before { + content: "\e6a5"; +} +.ti-envelope:before { + content: "\e6a6"; +} +.ti-download:before { + content: "\e6a7"; +} +.ti-direction:before { + content: "\e6a8"; +} +.ti-direction-alt:before { + content: "\e6a9"; +} +.ti-dashboard:before { + content: "\e6aa"; +} +.ti-control-stop:before { + content: "\e6ab"; +} +.ti-control-shuffle:before { + content: "\e6ac"; +} +.ti-control-play:before { + content: "\e6ad"; +} +.ti-control-pause:before { + content: "\e6ae"; +} +.ti-control-forward:before { + content: "\e6af"; +} +.ti-control-backward:before { + content: "\e6b0"; +} +.ti-cloud:before { + content: "\e6b1"; +} +.ti-cloud-up:before { + content: "\e6b2"; +} +.ti-cloud-down:before { + content: "\e6b3"; +} +.ti-clipboard:before { + content: "\e6b4"; +} +.ti-car:before { + content: "\e6b5"; +} +.ti-calendar:before { + content: "\e6b6"; +} +.ti-book:before { + content: "\e6b7"; +} +.ti-bell:before { + content: "\e6b8"; +} +.ti-basketball:before { + content: "\e6b9"; +} +.ti-bar-chart:before { + content: "\e6ba"; +} +.ti-bar-chart-alt:before { + content: "\e6bb"; +} +.ti-back-right:before { + content: "\e6bc"; +} +.ti-back-left:before { + content: "\e6bd"; +} +.ti-arrows-corner:before { + content: "\e6be"; +} +.ti-archive:before { + content: "\e6bf"; +} +.ti-anchor:before { + content: "\e6c0"; +} +.ti-align-right:before { + content: "\e6c1"; +} +.ti-align-left:before { + content: "\e6c2"; +} +.ti-align-justify:before { + content: "\e6c3"; +} +.ti-align-center:before { + content: "\e6c4"; +} +.ti-alert:before { + content: "\e6c5"; +} +.ti-alarm-clock:before { + content: "\e6c6"; +} +.ti-agenda:before { + content: "\e6c7"; +} +.ti-write:before { + content: "\e6c8"; +} +.ti-window:before { + content: "\e6c9"; +} +.ti-widgetized:before { + content: "\e6ca"; +} +.ti-widget:before { + content: "\e6cb"; +} +.ti-widget-alt:before { + content: "\e6cc"; +} +.ti-wallet:before { + content: "\e6cd"; +} +.ti-video-clapper:before { + content: "\e6ce"; +} +.ti-video-camera:before { + content: "\e6cf"; +} +.ti-vector:before { + content: "\e6d0"; +} +.ti-themify-logo:before { + content: "\e6d1"; +} +.ti-themify-favicon:before { + content: "\e6d2"; +} +.ti-themify-favicon-alt:before { + content: "\e6d3"; +} +.ti-support:before { + content: "\e6d4"; +} +.ti-stamp:before { + content: "\e6d5"; +} +.ti-split-v-alt:before { + content: "\e6d6"; +} +.ti-slice:before { + content: "\e6d7"; +} +.ti-shortcode:before { + content: "\e6d8"; +} +.ti-shift-right-alt:before { + content: "\e6d9"; +} +.ti-shift-left-alt:before { + content: "\e6da"; +} +.ti-ruler-alt-2:before { + content: "\e6db"; +} +.ti-receipt:before { + content: "\e6dc"; +} +.ti-pin2:before { + content: "\e6dd"; +} +.ti-pin-alt:before { + content: "\e6de"; +} +.ti-pencil-alt2:before { + content: "\e6df"; +} +.ti-palette:before { + content: "\e6e0"; +} +.ti-more:before { + content: "\e6e1"; +} +.ti-more-alt:before { + content: "\e6e2"; +} +.ti-microphone-alt:before { + content: "\e6e3"; +} +.ti-magnet:before { + content: "\e6e4"; +} +.ti-line-double:before { + content: "\e6e5"; +} +.ti-line-dotted:before { + content: "\e6e6"; +} +.ti-line-dashed:before { + content: "\e6e7"; +} +.ti-layout-width-full:before { + content: "\e6e8"; +} +.ti-layout-width-default:before { + content: "\e6e9"; +} +.ti-layout-width-default-alt:before { + content: "\e6ea"; +} +.ti-layout-tab:before { + content: "\e6eb"; +} +.ti-layout-tab-window:before { + content: "\e6ec"; +} +.ti-layout-tab-v:before { + content: "\e6ed"; +} +.ti-layout-tab-min:before { + content: "\e6ee"; +} +.ti-layout-slider:before { + content: "\e6ef"; +} +.ti-layout-slider-alt:before { + content: "\e6f0"; +} +.ti-layout-sidebar-right:before { + content: "\e6f1"; +} +.ti-layout-sidebar-none:before { + content: "\e6f2"; +} +.ti-layout-sidebar-left:before { + content: "\e6f3"; +} +.ti-layout-placeholder:before { + content: "\e6f4"; +} +.ti-layout-menu:before { + content: "\e6f5"; +} +.ti-layout-menu-v:before { + content: "\e6f6"; +} +.ti-layout-menu-separated:before { + content: "\e6f7"; +} +.ti-layout-menu-full:before { + content: "\e6f8"; +} +.ti-layout-media-right-alt:before { + content: "\e6f9"; +} +.ti-layout-media-right:before { + content: "\e6fa"; +} +.ti-layout-media-overlay:before { + content: "\e6fb"; +} +.ti-layout-media-overlay-alt:before { + content: "\e6fc"; +} +.ti-layout-media-overlay-alt-2:before { + content: "\e6fd"; +} +.ti-layout-media-left-alt:before { + content: "\e6fe"; +} +.ti-layout-media-left:before { + content: "\e6ff"; +} +.ti-layout-media-center-alt:before { + content: "\e700"; +} +.ti-layout-media-center:before { + content: "\e701"; +} +.ti-layout-list-thumb:before { + content: "\e702"; +} +.ti-layout-list-thumb-alt:before { + content: "\e703"; +} +.ti-layout-list-post:before { + content: "\e704"; +} +.ti-layout-list-large-image:before { + content: "\e705"; +} +.ti-layout-line-solid:before { + content: "\e706"; +} +.ti-layout-grid4:before { + content: "\e707"; +} +.ti-layout-grid3:before { + content: "\e708"; +} +.ti-layout-grid2:before { + content: "\e709"; +} +.ti-layout-grid2-thumb:before { + content: "\e70a"; +} +.ti-layout-cta-right:before { + content: "\e70b"; +} +.ti-layout-cta-left:before { + content: "\e70c"; +} +.ti-layout-cta-center:before { + content: "\e70d"; +} +.ti-layout-cta-btn-right:before { + content: "\e70e"; +} +.ti-layout-cta-btn-left:before { + content: "\e70f"; +} +.ti-layout-column4:before { + content: "\e710"; +} +.ti-layout-column3:before { + content: "\e711"; +} +.ti-layout-column2:before { + content: "\e712"; +} +.ti-layout-accordion-separated:before { + content: "\e713"; +} +.ti-layout-accordion-merged:before { + content: "\e714"; +} +.ti-layout-accordion-list:before { + content: "\e715"; +} +.ti-ink-pen:before { + content: "\e716"; +} +.ti-info-alt:before { + content: "\e717"; +} +.ti-help-alt:before { + content: "\e718"; +} +.ti-headphone-alt:before { + content: "\e719"; +} +.ti-hand-point-up:before { + content: "\e71a"; +} +.ti-hand-point-right:before { + content: "\e71b"; +} +.ti-hand-point-left:before { + content: "\e71c"; +} +.ti-hand-point-down:before { + content: "\e71d"; +} +.ti-gallery:before { + content: "\e71e"; +} +.ti-face-smile:before { + content: "\e71f"; +} +.ti-face-sad:before { + content: "\e720"; +} +.ti-credit-card:before { + content: "\e721"; +} +.ti-control-skip-forward:before { + content: "\e722"; +} +.ti-control-skip-backward:before { + content: "\e723"; +} +.ti-control-record:before { + content: "\e724"; +} +.ti-control-eject:before { + content: "\e725"; +} +.ti-comments-smiley:before { + content: "\e726"; +} +.ti-brush-alt:before { + content: "\e727"; +} +.ti-youtube:before { + content: "\e728"; +} +.ti-vimeo:before { + content: "\e729"; +} +.ti-twitter:before { + content: "\e72a"; +} +.ti-time:before { + content: "\e72b"; +} +.ti-tumblr:before { + content: "\e72c"; +} +.ti-skype:before { + content: "\e72d"; +} +.ti-share:before { + content: "\e72e"; +} +.ti-share-alt:before { + content: "\e72f"; +} +.ti-rocket:before { + content: "\e730"; +} +.ti-pinterest:before { + content: "\e731"; +} +.ti-new-window:before { + content: "\e732"; +} +.ti-microsoft:before { + content: "\e733"; +} +.ti-list-ol:before { + content: "\e734"; +} +.ti-linkedin:before { + content: "\e735"; +} +.ti-layout-sidebar-2:before { + content: "\e736"; +} +.ti-layout-grid4-alt:before { + content: "\e737"; +} +.ti-layout-grid3-alt:before { + content: "\e738"; +} +.ti-layout-grid2-alt:before { + content: "\e739"; +} +.ti-layout-column4-alt:before { + content: "\e73a"; +} +.ti-layout-column3-alt:before { + content: "\e73b"; +} +.ti-layout-column2-alt:before { + content: "\e73c"; +} +.ti-instagram:before { + content: "\e73d"; +} +.ti-google:before { + content: "\e73e"; +} +.ti-github:before { + content: "\e73f"; +} +.ti-flickr:before { + content: "\e740"; +} +.ti-facebook:before { + content: "\e741"; +} +.ti-dropbox:before { + content: "\e742"; +} +.ti-dribbble:before { + content: "\e743"; +} +.ti-apple:before { + content: "\e744"; +} +.ti-android:before { + content: "\e745"; +} +.ti-save:before { + content: "\e746"; +} +.ti-save-alt:before { + content: "\e747"; +} +.ti-yahoo:before { + content: "\e748"; +} +.ti-wordpress:before { + content: "\e749"; +} +.ti-vimeo-alt:before { + content: "\e74a"; +} +.ti-twitter-alt:before { + content: "\e74b"; +} +.ti-tumblr-alt:before { + content: "\e74c"; +} +.ti-trello:before { + content: "\e74d"; +} +.ti-stack-overflow:before { + content: "\e74e"; +} +.ti-soundcloud:before { + content: "\e74f"; +} +.ti-sharethis:before { + content: "\e750"; +} +.ti-sharethis-alt:before { + content: "\e751"; +} +.ti-reddit:before { + content: "\e752"; +} +.ti-pinterest-alt:before { + content: "\e753"; +} +.ti-microsoft-alt:before { + content: "\e754"; +} +.ti-linux:before { + content: "\e755"; +} +.ti-jsfiddle:before { + content: "\e756"; +} +.ti-joomla:before { + content: "\e757"; +} +.ti-html5:before { + content: "\e758"; +} +.ti-flickr-alt:before { + content: "\e759"; +} +.ti-email:before { + content: "\e75a"; +} +.ti-drupal:before { + content: "\e75b"; +} +.ti-dropbox-alt:before { + content: "\e75c"; +} +.ti-css3:before { + content: "\e75d"; +} +.ti-rss:before { + content: "\e75e"; +} +.ti-rss-alt:before { + content: "\e75f"; +} diff --git a/assets/vendors/iconfonts/ti-icons/demo-files/demo.css b/assets/vendors/iconfonts/ti-icons/demo-files/demo.css new file mode 100755 index 0000000..41a42ba --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/demo-files/demo.css @@ -0,0 +1,50 @@ +body { + font: normal 1em/1.5em Arial, Helvetica, sans-serif; + max-width: 90%; + margin: 30px auto 0; +} +h1, h3 { + font-weight: normal; +} +h3 { + font-size: 1.4; + text-transform: uppercase; + letter-spacing: 1px; +} + +.icon-section { + margin: 0 0 3em; + clear: both; + overflow: hidden; +} +.icon-container { + width: 240px; + padding: .7em 0; + float: left; + position: relative; + text-align: left; +} +.icon-container [class^="ti-"], +.icon-container [class*=" ti-"] { + color: #000; + position: absolute; + margin-top: 3px; + transition: .3s; +} +.icon-container:hover [class^="ti-"], +.icon-container:hover [class*=" ti-"] { + font-size: 2.2em; + margin-top: -5px; +} +.icon-container:hover .icon-name { + color: #000; +} +.icon-name { + color: #aaa; + margin-left: 35px; + font-size: .8em; + transition: .3s; +} +.icon-container:hover .icon-name { + margin-left: 45px; +} \ No newline at end of file diff --git a/assets/vendors/iconfonts/ti-icons/fonts/themify.eot b/assets/vendors/iconfonts/ti-icons/fonts/themify.eot new file mode 100755 index 0000000..9ec298b Binary files /dev/null and b/assets/vendors/iconfonts/ti-icons/fonts/themify.eot differ diff --git a/assets/vendors/iconfonts/ti-icons/fonts/themify.svg b/assets/vendors/iconfonts/ti-icons/fonts/themify.svg new file mode 100755 index 0000000..4d9e7eb --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/fonts/themify.svg @@ -0,0 +1,362 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/iconfonts/ti-icons/fonts/themify.ttf b/assets/vendors/iconfonts/ti-icons/fonts/themify.ttf new file mode 100755 index 0000000..5d627e7 Binary files /dev/null and b/assets/vendors/iconfonts/ti-icons/fonts/themify.ttf differ diff --git a/assets/vendors/iconfonts/ti-icons/fonts/themify.woff b/assets/vendors/iconfonts/ti-icons/fonts/themify.woff new file mode 100755 index 0000000..847ebd1 Binary files /dev/null and b/assets/vendors/iconfonts/ti-icons/fonts/themify.woff differ diff --git a/assets/vendors/iconfonts/ti-icons/ie7/ie7.css b/assets/vendors/iconfonts/ti-icons/ie7/ie7.css new file mode 100755 index 0000000..a238dd7 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/ie7/ie7.css @@ -0,0 +1,1056 @@ +.ti-wand { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-volume { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-user { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-unlock { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-unlink { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-trash { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-thought { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-target { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-tag { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-tablet { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-star { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-spray { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-signal { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-shopping-cart { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-shopping-cart-full { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-settings { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-search { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-zoom-in { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-zoom-out { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-cut { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-ruler { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-ruler-pencil { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-ruler-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-bookmark { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-bookmark-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-reload { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-plus { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-pin { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-pencil { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-pencil-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-paint-roller { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-paint-bucket { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-na { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-mobile { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-minus { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-medall { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-medall-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-marker { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-marker-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrow-up { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrow-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrow-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrow-down { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-lock { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-location-arrow { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-link { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layers { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layers-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-key { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-import { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-image { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-heart { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-heart-broken { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-hand-stop { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-hand-open { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-hand-drag { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-folder { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-flag { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-flag-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-flag-alt-2 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-eye { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-export { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-exchange-vertical { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-desktop { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-cup { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-crown { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-comments { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-comment { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-comment-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-close { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-clip { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-angle-up { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-angle-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-angle-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-angle-down { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-check { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-check-box { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-camera { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-announcement { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-brush { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-briefcase { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-bolt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-bolt-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-blackboard { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-bag { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-move { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrows-vertical { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrows-horizontal { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-fullscreen { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrow-top-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrow-top-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrow-circle-up { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrow-circle-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrow-circle-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrow-circle-down { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-angle-double-up { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-angle-double-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-angle-double-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-angle-double-down { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-zip { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-world { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-wheelchair { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-view-list { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-view-list-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-view-grid { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-uppercase { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-upload { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-underline { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-truck { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-timer { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-ticket { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-thumb-up { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-thumb-down { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-text { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-stats-up { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-stats-down { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-split-v { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-split-h { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-smallcap { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-shine { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-shift-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-shift-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-shield { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-notepad { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-server { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-quote-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-quote-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-pulse { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-printer { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-power-off { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-plug { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-pie-chart { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-paragraph { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-panel { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-package { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-music { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-music-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-mouse { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-mouse-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-money { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-microphone { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-menu { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-menu-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-map { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-map-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-loop { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-location-pin { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-list { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-light-bulb { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-Italic { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-info { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-infinite { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-id-badge { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-hummer { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-home { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-help { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-headphone { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-harddrives { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-harddrive { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-gift { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-game { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-filter { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-files { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-file { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-eraser { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-envelope { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-download { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-direction { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-direction-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-dashboard { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-control-stop { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-control-shuffle { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-control-play { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-control-pause { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-control-forward { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-control-backward { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-cloud { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-cloud-up { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-cloud-down { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-clipboard { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-car { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-calendar { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-book { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-bell { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-basketball { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-bar-chart { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-bar-chart-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-back-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-back-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-arrows-corner { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-archive { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-anchor { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-align-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-align-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-align-justify { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-align-center { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-alert { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-alarm-clock { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-agenda { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-write { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-window { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-widgetized { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-widget { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-widget-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-wallet { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-video-clapper { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-video-camera { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-vector { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-themify-logo { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-themify-favicon { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-themify-favicon-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-support { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-stamp { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-split-v-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-slice { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-shortcode { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-shift-right-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-shift-left-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-ruler-alt-2 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-receipt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-pin2 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-pin-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-pencil-alt2 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-palette { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-more { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-more-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-microphone-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-magnet { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-line-double { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-line-dotted { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-line-dashed { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-width-full { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-width-default { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-width-default-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-tab { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-tab-window { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-tab-v { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-tab-min { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-slider { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-slider-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-sidebar-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-sidebar-none { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-sidebar-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-placeholder { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-menu { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-menu-v { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-menu-separated { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-menu-full { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-media-right-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-media-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-media-overlay { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-media-overlay-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-media-overlay-alt-2 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-media-left-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-media-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-media-center-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-media-center { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-list-thumb { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-list-thumb-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-list-post { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-list-large-image { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-line-solid { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-grid4 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-grid3 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-grid2 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-grid2-thumb { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-cta-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-cta-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-cta-center { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-cta-btn-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-cta-btn-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-column4 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-column3 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-column2 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-accordion-separated { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-accordion-merged { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-accordion-list { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-ink-pen { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-info-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-help-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-headphone-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-hand-point-up { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-hand-point-right { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-hand-point-left { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-hand-point-down { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-gallery { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-face-smile { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-face-sad { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-credit-card { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-control-skip-forward { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-control-skip-backward { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-control-record { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-control-eject { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-comments-smiley { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-brush-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-youtube { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-vimeo { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-twitter { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-time { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-tumblr { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-skype { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-share { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-share-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-rocket { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-pinterest { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-new-window { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-microsoft { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-list-ol { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-linkedin { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-sidebar-2 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-grid4-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-grid3-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-grid2-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-column4-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-column3-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-layout-column2-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-instagram { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-google { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-github { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-flickr { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-facebook { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-dropbox { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-dribbble { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-apple { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-android { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-save { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-save-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-yahoo { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-wordpress { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-vimeo-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-twitter-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-tumblr-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-trello { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-stack-overflow { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-soundcloud { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-sharethis { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-sharethis-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-reddit { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-pinterest-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-microsoft-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-linux { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-jsfiddle { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-joomla { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-html5 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-flickr-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-email { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-drupal { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-dropbox-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-css3 { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-rss { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.ti-rss-alt { + *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} diff --git a/assets/vendors/iconfonts/ti-icons/ie7/ie7.js b/assets/vendors/iconfonts/ti-icons/ie7/ie7.js new file mode 100755 index 0000000..7251ba6 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/ie7/ie7.js @@ -0,0 +1,383 @@ +/* To avoid CSS expressions while still supporting IE 7 and IE 6, use this script */ +/* The script tag referring to this file must be placed before the ending body tag. */ + +/* Use conditional comments in order to target IE 7 and older: + + + +*/ + +(function() { + function addIcon(el, entity) { + var html = el.innerHTML; + el.innerHTML = '' + entity + '' + html; + } + var icons = { + 'ti-wand': '', + 'ti-volume': '', + 'ti-user': '', + 'ti-unlock': '', + 'ti-unlink': '', + 'ti-trash': '', + 'ti-thought': '', + 'ti-target': '', + 'ti-tag': '', + 'ti-tablet': '', + 'ti-star': '', + 'ti-spray': '', + 'ti-signal': '', + 'ti-shopping-cart': '', + 'ti-shopping-cart-full': '', + 'ti-settings': '', + 'ti-search': '', + 'ti-zoom-in': '', + 'ti-zoom-out': '', + 'ti-cut': '', + 'ti-ruler': '', + 'ti-ruler-pencil': '', + 'ti-ruler-alt': '', + 'ti-bookmark': '', + 'ti-bookmark-alt': '', + 'ti-reload': '', + 'ti-plus': '', + 'ti-pin': '', + 'ti-pencil': '', + 'ti-pencil-alt': '', + 'ti-paint-roller': '', + 'ti-paint-bucket': '', + 'ti-na': '', + 'ti-mobile': '', + 'ti-minus': '', + 'ti-medall': '', + 'ti-medall-alt': '', + 'ti-marker': '', + 'ti-marker-alt': '', + 'ti-arrow-up': '', + 'ti-arrow-right': '', + 'ti-arrow-left': '', + 'ti-arrow-down': '', + 'ti-lock': '', + 'ti-location-arrow': '', + 'ti-link': '', + 'ti-layout': '', + 'ti-layers': '', + 'ti-layers-alt': '', + 'ti-key': '', + 'ti-import': '', + 'ti-image': '', + 'ti-heart': '', + 'ti-heart-broken': '', + 'ti-hand-stop': '', + 'ti-hand-open': '', + 'ti-hand-drag': '', + 'ti-folder': '', + 'ti-flag': '', + 'ti-flag-alt': '', + 'ti-flag-alt-2': '', + 'ti-eye': '', + 'ti-export': '', + 'ti-exchange-vertical': '', + 'ti-desktop': '', + 'ti-cup': '', + 'ti-crown': '', + 'ti-comments': '', + 'ti-comment': '', + 'ti-comment-alt': '', + 'ti-close': '', + 'ti-clip': '', + 'ti-angle-up': '', + 'ti-angle-right': '', + 'ti-angle-left': '', + 'ti-angle-down': '', + 'ti-check': '', + 'ti-check-box': '', + 'ti-camera': '', + 'ti-announcement': '', + 'ti-brush': '', + 'ti-briefcase': '', + 'ti-bolt': '', + 'ti-bolt-alt': '', + 'ti-blackboard': '', + 'ti-bag': '', + 'ti-move': '', + 'ti-arrows-vertical': '', + 'ti-arrows-horizontal': '', + 'ti-fullscreen': '', + 'ti-arrow-top-right': '', + 'ti-arrow-top-left': '', + 'ti-arrow-circle-up': '', + 'ti-arrow-circle-right': '', + 'ti-arrow-circle-left': '', + 'ti-arrow-circle-down': '', + 'ti-angle-double-up': '', + 'ti-angle-double-right': '', + 'ti-angle-double-left': '', + 'ti-angle-double-down': '', + 'ti-zip': '', + 'ti-world': '', + 'ti-wheelchair': '', + 'ti-view-list': '', + 'ti-view-list-alt': '', + 'ti-view-grid': '', + 'ti-uppercase': '', + 'ti-upload': '', + 'ti-underline': '', + 'ti-truck': '', + 'ti-timer': '', + 'ti-ticket': '', + 'ti-thumb-up': '', + 'ti-thumb-down': '', + 'ti-text': '', + 'ti-stats-up': '', + 'ti-stats-down': '', + 'ti-split-v': '', + 'ti-split-h': '', + 'ti-smallcap': '', + 'ti-shine': '', + 'ti-shift-right': '', + 'ti-shift-left': '', + 'ti-shield': '', + 'ti-notepad': '', + 'ti-server': '', + 'ti-quote-right': '', + 'ti-quote-left': '', + 'ti-pulse': '', + 'ti-printer': '', + 'ti-power-off': '', + 'ti-plug': '', + 'ti-pie-chart': '', + 'ti-paragraph': '', + 'ti-panel': '', + 'ti-package': '', + 'ti-music': '', + 'ti-music-alt': '', + 'ti-mouse': '', + 'ti-mouse-alt': '', + 'ti-money': '', + 'ti-microphone': '', + 'ti-menu': '', + 'ti-menu-alt': '', + 'ti-map': '', + 'ti-map-alt': '', + 'ti-loop': '', + 'ti-location-pin': '', + 'ti-list': '', + 'ti-light-bulb': '', + 'ti-Italic': '', + 'ti-info': '', + 'ti-infinite': '', + 'ti-id-badge': '', + 'ti-hummer': '', + 'ti-home': '', + 'ti-help': '', + 'ti-headphone': '', + 'ti-harddrives': '', + 'ti-harddrive': '', + 'ti-gift': '', + 'ti-game': '', + 'ti-filter': '', + 'ti-files': '', + 'ti-file': '', + 'ti-eraser': '', + 'ti-envelope': '', + 'ti-download': '', + 'ti-direction': '', + 'ti-direction-alt': '', + 'ti-dashboard': '', + 'ti-control-stop': '', + 'ti-control-shuffle': '', + 'ti-control-play': '', + 'ti-control-pause': '', + 'ti-control-forward': '', + 'ti-control-backward': '', + 'ti-cloud': '', + 'ti-cloud-up': '', + 'ti-cloud-down': '', + 'ti-clipboard': '', + 'ti-car': '', + 'ti-calendar': '', + 'ti-book': '', + 'ti-bell': '', + 'ti-basketball': '', + 'ti-bar-chart': '', + 'ti-bar-chart-alt': '', + 'ti-back-right': '', + 'ti-back-left': '', + 'ti-arrows-corner': '', + 'ti-archive': '', + 'ti-anchor': '', + 'ti-align-right': '', + 'ti-align-left': '', + 'ti-align-justify': '', + 'ti-align-center': '', + 'ti-alert': '', + 'ti-alarm-clock': '', + 'ti-agenda': '', + 'ti-write': '', + 'ti-window': '', + 'ti-widgetized': '', + 'ti-widget': '', + 'ti-widget-alt': '', + 'ti-wallet': '', + 'ti-video-clapper': '', + 'ti-video-camera': '', + 'ti-vector': '', + 'ti-themify-logo': '', + 'ti-themify-favicon': '', + 'ti-themify-favicon-alt': '', + 'ti-support': '', + 'ti-stamp': '', + 'ti-split-v-alt': '', + 'ti-slice': '', + 'ti-shortcode': '', + 'ti-shift-right-alt': '', + 'ti-shift-left-alt': '', + 'ti-ruler-alt-2': '', + 'ti-receipt': '', + 'ti-pin2': '', + 'ti-pin-alt': '', + 'ti-pencil-alt2': '', + 'ti-palette': '', + 'ti-more': '', + 'ti-more-alt': '', + 'ti-microphone-alt': '', + 'ti-magnet': '', + 'ti-line-double': '', + 'ti-line-dotted': '', + 'ti-line-dashed': '', + 'ti-layout-width-full': '', + 'ti-layout-width-default': '', + 'ti-layout-width-default-alt': '', + 'ti-layout-tab': '', + 'ti-layout-tab-window': '', + 'ti-layout-tab-v': '', + 'ti-layout-tab-min': '', + 'ti-layout-slider': '', + 'ti-layout-slider-alt': '', + 'ti-layout-sidebar-right': '', + 'ti-layout-sidebar-none': '', + 'ti-layout-sidebar-left': '', + 'ti-layout-placeholder': '', + 'ti-layout-menu': '', + 'ti-layout-menu-v': '', + 'ti-layout-menu-separated': '', + 'ti-layout-menu-full': '', + 'ti-layout-media-right-alt': '', + 'ti-layout-media-right': '', + 'ti-layout-media-overlay': '', + 'ti-layout-media-overlay-alt': '', + 'ti-layout-media-overlay-alt-2': '', + 'ti-layout-media-left-alt': '', + 'ti-layout-media-left': '', + 'ti-layout-media-center-alt': '', + 'ti-layout-media-center': '', + 'ti-layout-list-thumb': '', + 'ti-layout-list-thumb-alt': '', + 'ti-layout-list-post': '', + 'ti-layout-list-large-image': '', + 'ti-layout-line-solid': '', + 'ti-layout-grid4': '', + 'ti-layout-grid3': '', + 'ti-layout-grid2': '', + 'ti-layout-grid2-thumb': '', + 'ti-layout-cta-right': '', + 'ti-layout-cta-left': '', + 'ti-layout-cta-center': '', + 'ti-layout-cta-btn-right': '', + 'ti-layout-cta-btn-left': '', + 'ti-layout-column4': '', + 'ti-layout-column3': '', + 'ti-layout-column2': '', + 'ti-layout-accordion-separated': '', + 'ti-layout-accordion-merged': '', + 'ti-layout-accordion-list': '', + 'ti-ink-pen': '', + 'ti-info-alt': '', + 'ti-help-alt': '', + 'ti-headphone-alt': '', + 'ti-hand-point-up': '', + 'ti-hand-point-right': '', + 'ti-hand-point-left': '', + 'ti-hand-point-down': '', + 'ti-gallery': '', + 'ti-face-smile': '', + 'ti-face-sad': '', + 'ti-credit-card': '', + 'ti-control-skip-forward': '', + 'ti-control-skip-backward': '', + 'ti-control-record': '', + 'ti-control-eject': '', + 'ti-comments-smiley': '', + 'ti-brush-alt': '', + 'ti-youtube': '', + 'ti-vimeo': '', + 'ti-twitter': '', + 'ti-time': '', + 'ti-tumblr': '', + 'ti-skype': '', + 'ti-share': '', + 'ti-share-alt': '', + 'ti-rocket': '', + 'ti-pinterest': '', + 'ti-new-window': '', + 'ti-microsoft': '', + 'ti-list-ol': '', + 'ti-linkedin': '', + 'ti-layout-sidebar-2': '', + 'ti-layout-grid4-alt': '', + 'ti-layout-grid3-alt': '', + 'ti-layout-grid2-alt': '', + 'ti-layout-column4-alt': '', + 'ti-layout-column3-alt': '', + 'ti-layout-column2-alt': '', + 'ti-instagram': '', + 'ti-google': '', + 'ti-github': '', + 'ti-flickr': '', + 'ti-facebook': '', + 'ti-dropbox': '', + 'ti-dribbble': '', + 'ti-apple': '', + 'ti-android': '', + 'ti-save': '', + 'ti-save-alt': '', + 'ti-yahoo': '', + 'ti-wordpress': '', + 'ti-vimeo-alt': '', + 'ti-twitter-alt': '', + 'ti-tumblr-alt': '', + 'ti-trello': '', + 'ti-stack-overflow': '', + 'ti-soundcloud': '', + 'ti-sharethis': '', + 'ti-sharethis-alt': '', + 'ti-reddit': '', + 'ti-pinterest-alt': '', + 'ti-microsoft-alt': '', + 'ti-linux': '', + 'ti-jsfiddle': '', + 'ti-joomla': '', + 'ti-html5': '', + 'ti-flickr-alt': '', + 'ti-email': '', + 'ti-drupal': '', + 'ti-dropbox-alt': '', + 'ti-css3': '', + 'ti-rss': '', + 'ti-rss-alt': '', + '0': 0 + }, + els = document.getElementsByTagName('*'), + i, c, el; + for (i = 0; ; i += 1) { + el = els[i]; + if(!el) { + break; + } + c = el.className; + c = c.match(/ti-[^\s'"]+/); + if (c && icons[c[0]]) { + addIcon(el, icons[c[0]]); + } + } +}()); diff --git a/assets/vendors/iconfonts/ti-icons/index.html b/assets/vendors/iconfonts/ti-icons/index.html new file mode 100755 index 0000000..2b769f6 --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/index.html @@ -0,0 +1,1446 @@ + + + + + Themify Icon Font + + + + + + + + +

    Themify Icons

    +
    +
    +

    Arrows & Direction Icons

    +
    + + ti-arrow-up +
    +
    + + ti-arrow-right +
    +
    + + ti-arrow-left +
    +
    + + ti-arrow-down +
    +
    + + ti-arrows-vertical +
    +
    + + ti-arrows-horizontal +
    +
    + + ti-angle-up +
    +
    + + ti-angle-right +
    +
    + + ti-angle-left +
    +
    + + ti-angle-down +
    +
    + + ti-angle-double-up +
    +
    + + ti-angle-double-right +
    +
    + + ti-angle-double-left +
    +
    + + ti-angle-double-down +
    +
    + + ti-move +
    +
    + + ti-fullscreen +
    +
    + + ti-arrow-top-right +
    +
    + + ti-arrow-top-left +
    +
    + + ti-arrow-circle-up +
    +
    + + ti-arrow-circle-right +
    +
    + + ti-arrow-circle-left +
    +
    + + ti-arrow-circle-down +
    +
    + + ti-arrows-corner +
    +
    + + ti-split-v +
    +
    + + ti-split-v-alt +
    +
    + + ti-split-h +
    +
    + + ti-hand-point-up +
    +
    + + ti-hand-point-right +
    +
    + + ti-hand-point-left +
    +
    + + ti-hand-point-down +
    +
    + + ti-back-right +
    +
    + + ti-back-left +
    +
    + + ti-exchange-vertical +
    +
    + +

    Web App Icons

    +
    +
    + + ti-wand +
    +
    + + ti-save +
    +
    + + ti-save-alt +
    +
    + + ti-direction +
    +
    + + ti-direction-alt +
    +
    + + ti-user +
    +
    + + ti-link +
    +
    + + ti-unlink +
    +
    + + ti-trash +
    +
    + + ti-target +
    +
    + + ti-tag +
    +
    + + ti-desktop +
    +
    + + ti-tablet +
    +
    + + ti-mobile +
    +
    + + ti-email +
    +
    + + ti-star +
    +
    + + ti-spray +
    +
    + + ti-signal +
    +
    + + ti-shopping-cart +
    +
    + + ti-shopping-cart-full +
    +
    + + ti-settings +
    +
    + + ti-search +
    +
    + + ti-zoom-in +
    +
    + + ti-zoom-out +
    +
    + + ti-cut +
    +
    + + ti-ruler +
    +
    + + ti-ruler-alt-2 +
    +
    + + ti-ruler-pencil +
    +
    + + ti-ruler-alt +
    +
    + + ti-bookmark +
    +
    + + ti-bookmark-alt +
    +
    + + ti-reload +
    +
    + + ti-plus +
    +
    + + ti-minus +
    +
    + + ti-close +
    +
    + + ti-pin +
    +
    + + ti-pencil +
    +
    + + ti-pencil-alt +
    +
    + + ti-paint-roller +
    +
    + + ti-paint-bucket +
    +
    + + ti-na +
    +
    + + ti-medall +
    +
    + + ti-medall-alt +
    +
    + + ti-marker +
    +
    + + ti-marker-alt +
    +
    + + ti-lock +
    +
    + + ti-unlock +
    +
    + + ti-location-arrow +
    +
    + + ti-layout +
    +
    + + ti-layers +
    +
    + + ti-layers-alt +
    +
    + + ti-key +
    +
    + + ti-image +
    +
    + + ti-heart +
    +
    + + ti-heart-broken +
    +
    + + ti-hand-stop +
    +
    + + ti-hand-open +
    +
    + + ti-hand-drag +
    +
    + + ti-flag +
    +
    + + ti-flag-alt +
    +
    + + ti-flag-alt-2 +
    +
    + + ti-eye +
    +
    + + ti-import +
    +
    + + ti-export +
    +
    + + ti-cup +
    +
    + + ti-crown +
    +
    + + ti-comments +
    +
    + + ti-comment +
    +
    + + ti-comment-alt +
    +
    + + ti-thought +
    +
    + + ti-clip +
    +
    + + ti-check +
    +
    + + ti-check-box +
    +
    + + ti-camera +
    +
    + + ti-announcement +
    +
    + + ti-brush +
    +
    + + ti-brush-alt +
    +
    + + ti-palette +
    +
    + + ti-briefcase +
    +
    + + ti-bolt +
    +
    + + ti-bolt-alt +
    +
    + + ti-blackboard +
    +
    + + ti-bag +
    +
    + + ti-world +
    +
    + + ti-wheelchair +
    +
    + + ti-car +
    +
    + + ti-truck +
    +
    + + ti-timer +
    +
    + + ti-ticket +
    +
    + + ti-thumb-up +
    +
    + + ti-thumb-down +
    +
    + + ti-stats-up +
    +
    + + ti-stats-down +
    +
    + + ti-shine +
    +
    + + ti-shift-right +
    +
    + + ti-shift-left +
    +
    + + ti-shift-right-alt +
    +
    + + ti-shift-left-alt +
    +
    + + ti-shield +
    +
    + + ti-notepad +
    +
    + + ti-server +
    +
    + + ti-pulse +
    +
    + + ti-printer +
    +
    + + ti-power-off +
    +
    + + ti-plug +
    +
    + + ti-pie-chart +
    +
    + + ti-panel +
    +
    + + ti-package +
    +
    + + ti-music +
    +
    + + ti-music-alt +
    +
    + + ti-mouse +
    +
    + + ti-mouse-alt +
    +
    + + ti-money +
    +
    + + ti-microphone +
    +
    + + ti-menu +
    +
    + + ti-menu-alt +
    +
    + + ti-map +
    +
    + + ti-map-alt +
    +
    + + ti-location-pin +
    +
    + + ti-light-bulb +
    +
    + + ti-info +
    +
    + + ti-infinite +
    +
    + + ti-id-badge +
    +
    + + ti-hummer +
    +
    + + ti-home +
    +
    + + ti-help +
    +
    + + ti-headphone +
    +
    + + ti-harddrives +
    +
    + + ti-harddrive +
    +
    + + ti-gift +
    +
    + + ti-game +
    +
    + + ti-filter +
    +
    + + ti-files +
    +
    + + ti-file +
    +
    + + ti-zip +
    +
    + + ti-folder +
    +
    + + ti-envelope +
    +
    + + ti-dashboard +
    +
    + + ti-cloud +
    +
    + + ti-cloud-up +
    +
    + + ti-cloud-down +
    +
    + + ti-clipboard +
    +
    + + ti-calendar +
    +
    + + ti-book +
    +
    + + ti-bell +
    +
    + + ti-basketball +
    +
    + + ti-bar-chart +
    +
    + + ti-bar-chart-alt +
    +
    + + ti-archive +
    +
    + + ti-anchor +
    +
    + + ti-alert +
    +
    + + ti-alarm-clock +
    +
    + + ti-agenda +
    +
    + + ti-write +
    +
    + + ti-wallet +
    +
    + + ti-video-clapper +
    +
    + + ti-video-camera +
    +
    + + ti-vector +
    +
    + + ti-support +
    +
    + + ti-stamp +
    +
    + + ti-slice +
    +
    + + ti-shortcode +
    +
    + + ti-receipt +
    +
    + + ti-pin2 +
    +
    + + ti-pin-alt +
    +
    + + ti-pencil-alt2 +
    +
    + + ti-eraser +
    +
    + + ti-more +
    +
    + + ti-more-alt +
    +
    + + ti-microphone-alt +
    +
    + + ti-magnet +
    +
    + + ti-line-double +
    +
    + + ti-line-dotted +
    +
    + + ti-line-dashed +
    +
    + + ti-ink-pen +
    +
    + + ti-info-alt +
    +
    + + ti-help-alt +
    +
    + + ti-headphone-alt +
    +
    + + ti-gallery +
    +
    + + ti-face-smile +
    +
    + + ti-face-sad +
    +
    + + ti-credit-card +
    +
    + + ti-comments-smiley +
    +
    + + ti-time +
    +
    + + ti-share +
    +
    + + ti-share-alt +
    +
    + + ti-rocket +
    +
    + + ti-new-window +
    +
    + + ti-rss +
    +
    + + ti-rss-alt +
    +
    + +
    +

    Control Icons

    +
    + + ti-control-stop +
    +
    + + ti-control-shuffle +
    +
    + + ti-control-play +
    +
    + + ti-control-pause +
    +
    + + ti-control-forward +
    +
    + + ti-control-backward +
    +
    + + ti-volume +
    +
    + + ti-control-skip-forward +
    +
    + + ti-control-skip-backward +
    +
    + + ti-control-record +
    +
    + + ti-control-eject +
    +
    + +
    +

    Text Editor

    +
    + + ti-paragraph +
    +
    + + ti-uppercase +
    +
    + + ti-underline +
    +
    + + ti-text +
    +
    + + ti-Italic +
    +
    + + ti-smallcap +
    +
    + + ti-list +
    +
    + + ti-list-ol +
    +
    + + ti-align-right +
    +
    + + ti-align-left +
    +
    + + ti-align-justify +
    +
    + + ti-align-center +
    +
    + + ti-quote-right +
    +
    + + ti-quote-left +
    +
    + +
    +

    Layout Icons

    +
    + + ti-layout-width-full +
    +
    + + ti-layout-width-default +
    +
    + + ti-layout-width-default-alt +
    +
    + + ti-layout-tab +
    +
    + + ti-layout-tab-window +
    +
    + + ti-layout-tab-v +
    +
    + + ti-layout-tab-min +
    +
    + + ti-layout-slider +
    +
    + + ti-layout-slider-alt +
    +
    + + ti-layout-sidebar-right +
    +
    + + ti-layout-sidebar-none +
    +
    + + ti-layout-sidebar-left +
    +
    + + ti-layout-placeholder +
    +
    + + ti-layout-menu +
    +
    + + ti-layout-menu-v +
    +
    + + ti-layout-menu-separated +
    +
    + + ti-layout-menu-full +
    +
    + + ti-layout-media-right +
    +
    + + ti-layout-media-right-alt +
    +
    + + ti-layout-media-overlay +
    +
    + + ti-layout-media-overlay-alt +
    +
    + + ti-layout-media-overlay-alt-2 +
    +
    + + ti-layout-media-left +
    +
    + + ti-layout-media-left-alt +
    +
    + + ti-layout-media-center +
    +
    + + ti-layout-media-center-alt +
    +
    + + ti-layout-list-thumb +
    +
    + + ti-layout-list-thumb-alt +
    +
    + + ti-layout-list-post +
    +
    + + ti-layout-list-large-image +
    +
    + + ti-layout-line-solid +
    +
    + + ti-layout-grid4 +
    +
    + + ti-layout-grid3 +
    +
    + + ti-layout-grid2 +
    +
    + + ti-layout-grid2-thumb +
    +
    + + ti-layout-cta-right +
    +
    + + ti-layout-cta-left +
    +
    + + ti-layout-cta-center +
    +
    + + ti-layout-cta-btn-right +
    +
    + + ti-layout-cta-btn-left +
    +
    + + ti-layout-column4 +
    +
    + + ti-layout-column3 +
    +
    + + ti-layout-column2 +
    +
    + + ti-layout-accordion-separated +
    +
    + + ti-layout-accordion-merged +
    +
    + + ti-layout-accordion-list +
    +
    + + ti-widgetized +
    +
    + + ti-widget +
    +
    + + ti-widget-alt +
    +
    + + ti-view-list +
    +
    + + ti-view-list-alt +
    +
    + + ti-view-grid +
    +
    + + ti-upload +
    +
    + + ti-download +
    +
    + + ti-loop +
    +
    + + ti-layout-sidebar-2 +
    +
    + + ti-layout-grid4-alt +
    +
    + + ti-layout-grid3-alt +
    +
    + + ti-layout-grid2-alt +
    +
    + + ti-layout-column4-alt +
    +
    + + ti-layout-column3-alt +
    +
    + + ti-layout-column2-alt +
    +
    + +
    +

    Brand Icons

    +
    + + ti-flickr +
    +
    + + ti-flickr-alt +
    +
    + + ti-instagram +
    +
    + + ti-google +
    +
    + + ti-github +
    +
    + + ti-facebook +
    +
    + + ti-dropbox +
    +
    + + ti-dropbox-alt +
    +
    + + ti-dribbble +
    +
    + + ti-apple +
    +
    + + ti-android +
    +
    + + ti-yahoo +
    +
    + + ti-trello +
    +
    + + ti-stack-overflow +
    +
    + + ti-soundcloud +
    +
    + + ti-sharethis +
    +
    + + ti-sharethis-alt +
    +
    + + ti-reddit +
    +
    + + ti-microsoft +
    +
    + + ti-microsoft-alt +
    +
    + + ti-linux +
    +
    + + ti-jsfiddle +
    +
    + + ti-joomla +
    +
    + + ti-html5 +
    +
    + + ti-css3 +
    +
    + + ti-drupal +
    +
    + + ti-wordpress +
    +
    + + ti-tumblr +
    +
    + + ti-tumblr-alt +
    +
    + + ti-skype +
    +
    + + ti-youtube +
    +
    + + ti-vimeo +
    +
    + + ti-vimeo-alt +
    +
    + + ti-twitter +
    +
    + + ti-twitter-alt +
    +
    + + ti-linkedin +
    +
    + + ti-pinterest +
    +
    + + ti-pinterest-alt +
    +
    + + ti-themify-logo +
    +
    + + ti-themify-favicon +
    +
    + + ti-themify-favicon-alt +
    +
    + +
    + + \ No newline at end of file diff --git a/assets/vendors/iconfonts/ti-icons/package.json b/assets/vendors/iconfonts/ti-icons/package.json new file mode 100755 index 0000000..fc7ec7d --- /dev/null +++ b/assets/vendors/iconfonts/ti-icons/package.json @@ -0,0 +1,53 @@ +{ + "_args": [ + [ + "ti-icons@0.1.2", + "/Applications/XAMPP/xamppfiles/htdocs/star_pro" + ] + ], + "_from": "ti-icons@0.1.2", + "_id": "ti-icons@0.1.2", + "_inBundle": false, + "_integrity": "sha1-i9m5bS+r0f/h78dTTT3TuYllH5M=", + "_location": "/ti-icons", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ti-icons@0.1.2", + "name": "ti-icons", + "escapedName": "ti-icons", + "rawSpec": "0.1.2", + "saveSpec": null, + "fetchSpec": "0.1.2" + }, + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/ti-icons/-/ti-icons-0.1.2.tgz", + "_spec": "0.1.2", + "_where": "/Applications/XAMPP/xamppfiles/htdocs/star_pro", + "author": { + "name": "themify.me" + }, + "bugs": { + "url": "https://github.com/lykmapipo/themify-icons/issues" + }, + "description": "Pixel-perfect, hand-crafted icons that draw inspiration from Apple iOS 7", + "homepage": "https://github.com/lykmapipo/themify-icons#readme", + "keywords": [ + "icons", + "line", + "iOS", + "pixel", + "perfect", + "draw" + ], + "license": "MIT", + "name": "ti-icons", + "repository": { + "type": "git", + "url": "git+https://github.com/lykmapipo/themify-icons.git" + }, + "version": "0.1.2" +} diff --git a/assets/vendors/images/alpha.png b/assets/vendors/images/alpha.png new file mode 100755 index 0000000..769a7f1 Binary files /dev/null and b/assets/vendors/images/alpha.png differ diff --git a/assets/vendors/images/hue.png b/assets/vendors/images/hue.png new file mode 100755 index 0000000..d96f635 Binary files /dev/null and b/assets/vendors/images/hue.png differ diff --git a/assets/vendors/images/saturation.png b/assets/vendors/images/saturation.png new file mode 100755 index 0000000..1c30d92 Binary files /dev/null and b/assets/vendors/images/saturation.png differ diff --git a/assets/vendors/images/transparent.png b/assets/vendors/images/transparent.png new file mode 100755 index 0000000..a762c48 Binary files /dev/null and b/assets/vendors/images/transparent.png differ diff --git a/assets/vendors/img/sprite-skin-flat.png b/assets/vendors/img/sprite-skin-flat.png new file mode 100755 index 0000000..0f11c7c Binary files /dev/null and b/assets/vendors/img/sprite-skin-flat.png differ diff --git a/assets/vendors/img/sprite-skin-modern.png b/assets/vendors/img/sprite-skin-modern.png new file mode 100755 index 0000000..c9060f2 Binary files /dev/null and b/assets/vendors/img/sprite-skin-modern.png differ diff --git a/assets/vendors/img/sprite-skin-nice.png b/assets/vendors/img/sprite-skin-nice.png new file mode 100755 index 0000000..9b0a4bc Binary files /dev/null and b/assets/vendors/img/sprite-skin-nice.png differ diff --git a/assets/vendors/img/sprite-skin-simple.png b/assets/vendors/img/sprite-skin-simple.png new file mode 100755 index 0000000..0dc5e68 Binary files /dev/null and b/assets/vendors/img/sprite-skin-simple.png differ diff --git a/assets/vendors/js/calendar/extensions/daygrid.min.js b/assets/vendors/js/calendar/extensions/daygrid.min.js new file mode 100644 index 0000000..822a6dc --- /dev/null +++ b/assets/vendors/js/calendar/extensions/daygrid.min.js @@ -0,0 +1,6 @@ +/*! +FullCalendar Day Grid Plugin v4.3.0 +Docs & License: https://fullcalendar.io/ +(c) 2019 Adam Shaw +*/ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@fullcalendar/core")):"function"==typeof define&&define.amd?define(["exports","@fullcalendar/core"],t):t((e=e||self).FullCalendarDayGrid={},e.FullCalendar)}(this,function(e,t){"use strict";var r=function(e,t){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(e,t)};function n(e,t){function n(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var i=function(){return(i=Object.assign||function(e){for(var t,r=1,n=arguments.length;r'+t.htmlEscape(n)+""),i=''+(t.htmlEscape(d.title||"")||" ")+"",'
    '+("rtl"===l.dir?i+" "+y:y+" "+i)+"
    "+(u?'
    ':"")+(f?'
    ':"")+"
    "},r.prototype.computeEventTimeFormat=function(){return{hour:"numeric",minute:"2-digit",omitZeroMinute:!0,meridiem:"narrow"}},r.prototype.computeDisplayEventEnd=function(){return!1},r}(t.FgEventRenderer),a=function(e){function r(t){var r=e.call(this,t.context)||this;return r.dayGrid=t,r}return n(r,e),r.prototype.attachSegs=function(e,t){var r=this.rowStructs=this.renderSegRows(e);this.dayGrid.rowEls.forEach(function(e,t){e.querySelector(".fc-content-skeleton > table").appendChild(r[t].tbodyEl)}),t||this.dayGrid.removeSegPopover()},r.prototype.detachSegs=function(){for(var e,r=this.rowStructs||[];e=r.pop();)t.removeElement(e.tbodyEl);this.rowStructs=null},r.prototype.renderSegRows=function(e){var t,r,n=[];for(t=this.groupSegRows(e),r=0;r=e.firstCol)return!0;return!1}function c(e,t){return e.leftCol-t.leftCol}var h=function(e){function r(){return null!==e&&e.apply(this,arguments)||this}return n(r,e),r.prototype.attachSegs=function(e,r){var n=r.sourceSeg,i=this.rowStructs=this.renderSegRows(e);this.dayGrid.rowEls.forEach(function(e,r){var o,s,l=t.htmlToElement('
    ');n&&n.row===r?o=n.el:(o=e.querySelector(".fc-content-skeleton tbody"))||(o=e.querySelector(".fc-content-skeleton table")),s=o.getBoundingClientRect().top-e.getBoundingClientRect().top,l.style.top=s+"px",l.querySelector("table").appendChild(i[r].tbodyEl),e.appendChild(l)})},r}(a),p=function(e){function r(t){var r=e.call(this,t.context)||this;return r.fillSegTag="td",r.dayGrid=t,r}return n(r,e),r.prototype.renderSegs=function(t,r){"bgEvent"===t&&(r=r.filter(function(e){return e.eventRange.def.allDay})),e.prototype.renderSegs.call(this,t,r)},r.prototype.attachSegs=function(e,t){var r,n,i,o=[];for(r=0;r
    ')).getElementsByTagName("tr")[0],d>0&&t.appendToElement(o,new Array(d+1).join('')),r.el.colSpan=c-d,o.appendChild(r.el),c'));var h=s.renderProps.renderIntroHtml();return h&&(s.isRtl?t.appendToElement(o,h):t.prependToElement(o,h)),i},r}(t.FillRenderer),u=function(e){function r(r,n){var i=e.call(this,r,n)||this,o=i.eventRenderer=new f(i),s=i.renderFrame=t.memoizeRendering(i._renderFrame);return i.renderFgEvents=t.memoizeRendering(o.renderSegs.bind(o),o.unrender.bind(o),[s]),i.renderEventSelection=t.memoizeRendering(o.selectByInstanceId.bind(o),o.unselectByInstanceId.bind(o),[i.renderFgEvents]),i.renderEventDrag=t.memoizeRendering(o.hideByHash.bind(o),o.showByHash.bind(o),[s]),i.renderEventResize=t.memoizeRendering(o.hideByHash.bind(o),o.showByHash.bind(o),[s]),r.calendar.registerInteractiveComponent(i,{el:i.el,useEventCenter:!1}),i}return n(r,e),r.prototype.render=function(e){this.renderFrame(e.date),this.renderFgEvents(e.fgSegs),this.renderEventSelection(e.eventSelection),this.renderEventDrag(e.eventDragInstances),this.renderEventResize(e.eventResizeInstances)},r.prototype.destroy=function(){e.prototype.destroy.call(this),this.renderFrame.unrender(),this.calendar.unregisterInteractiveComponent(this)},r.prototype._renderFrame=function(e){var r=this.theme,n=this.dateEnv.format(e,t.createFormatter(this.opt("dayPopoverFormat")));this.el.innerHTML='
    '+t.htmlEscape(n)+'
    ',this.segContainerEl=this.el.querySelector(".fc-event-container")},r.prototype.queryHit=function(e,r,n,i){var o=this.props.date;if(e'),"rtl"===this.context.options.dir&&t.reverse(),""+t.join("")+""},e}();function m(e,r,n,i){var o=n.dateEnv,s=n.theme,l=t.rangeContainsMarker(r.activeRange,e),a=t.getDayClasses(e,r,n);return a.unshift("fc-day",s.getClass("widgetContent")),'"}var y=t.createFormatter({day:"numeric"}),v=t.createFormatter({week:"numeric"}),b=function(e){function r(r,n,i){var o=e.call(this,r,n)||this;o.bottomCoordPadding=0,o.isCellSizesDirty=!1;var s=o.eventRenderer=new a(o),l=o.fillRenderer=new p(o);o.mirrorRenderer=new h(o);var d=o.renderCells=t.memoizeRendering(o._renderCells,o._unrenderCells);return o.renderBusinessHours=t.memoizeRendering(l.renderSegs.bind(l,"businessHours"),l.unrender.bind(l,"businessHours"),[d]),o.renderDateSelection=t.memoizeRendering(l.renderSegs.bind(l,"highlight"),l.unrender.bind(l,"highlight"),[d]),o.renderBgEvents=t.memoizeRendering(l.renderSegs.bind(l,"bgEvent"),l.unrender.bind(l,"bgEvent"),[d]),o.renderFgEvents=t.memoizeRendering(s.renderSegs.bind(s),s.unrender.bind(s),[d]),o.renderEventSelection=t.memoizeRendering(s.selectByInstanceId.bind(s),s.unselectByInstanceId.bind(s),[o.renderFgEvents]),o.renderEventDrag=t.memoizeRendering(o._renderEventDrag,o._unrenderEventDrag,[d]),o.renderEventResize=t.memoizeRendering(o._renderEventResize,o._unrenderEventResize,[d]),o.renderProps=i,o}return n(r,e),r.prototype.render=function(e){var t=e.cells;this.rowCnt=t.length,this.colCnt=t[0].length,this.renderCells(t,e.isRigid),this.renderBusinessHours(e.businessHourSegs),this.renderDateSelection(e.dateSelectionSegs),this.renderBgEvents(e.bgEventSegs),this.renderFgEvents(e.fgEventSegs),this.renderEventSelection(e.eventSelection),this.renderEventDrag(e.eventDrag),this.renderEventResize(e.eventResize),this.segPopoverTile&&this.updateSegPopoverTile()},r.prototype.destroy=function(){e.prototype.destroy.call(this),this.renderCells.unrender()},r.prototype.getCellRange=function(e,r){var n=this.props.cells[e][r].date;return{start:n,end:t.addDays(n,1)}},r.prototype.updateSegPopoverTile=function(e,t){var r=this.props;this.segPopoverTile.receiveProps({date:e||this.segPopoverTile.props.date,fgSegs:t||this.segPopoverTile.props.fgSegs,eventSelection:r.eventSelection,eventDragInstances:r.eventDrag?r.eventDrag.affectedInstances:null,eventResizeInstances:r.eventResize?r.eventResize.affectedInstances:null})},r.prototype._renderCells=function(e,r){var n,i,o=this.view,s=this.dateEnv,l=this.rowCnt,a=this.colCnt,d="";for(n=0;n
    '+i.renderHtml({cells:this.props.cells[e],dateProfile:this.props.dateProfile,renderIntroHtml:this.renderProps.renderBgIntroHtml})+'
    '+(this.getIsNumbersVisible()?""+this.renderNumberTrHtml(e)+"":"")+"
    "},r.prototype.getIsNumbersVisible=function(){return this.getIsDayNumbersVisible()||this.renderProps.cellWeekNumbersVisible||this.renderProps.colWeekNumbersVisible},r.prototype.getIsDayNumbersVisible=function(){return this.rowCnt>1},r.prototype.renderNumberTrHtml=function(e){var t=this.renderProps.renderNumberIntroHtml(e,this);return""+(this.isRtl?"":t)+this.renderNumberCellsHtml(e)+(this.isRtl?t:"")+""},r.prototype.renderNumberCellsHtml=function(e){var t,r,n=[];for(t=0;t",this.renderProps.cellWeekNumbersVisible&&e.getUTCDay()===n&&(s+=t.buildGotoAnchorHtml(i,{date:e,type:"week"},{class:"fc-week-number"},o.format(e,v))),a&&(s+=t.buildGotoAnchorHtml(i,e,{class:"fc-day-number"},o.format(e,y))),s+=""):""},r.prototype.updateSize=function(e){var t=this.fillRenderer,r=this.eventRenderer,n=this.mirrorRenderer;(e||this.isCellSizesDirty||this.view.calendar.isEventsUpdated)&&(this.buildPositionCaches(),this.isCellSizesDirty=!1),t.computeSizes(e),r.computeSizes(e),n.computeSizes(e),t.assignSizes(e),r.assignSizes(e),n.assignSizes(e)},r.prototype.buildPositionCaches=function(){this.buildColPositions(),this.buildRowPositions()},r.prototype.buildColPositions=function(){this.colPositions.build()},r.prototype.buildRowPositions=function(){this.rowPositions.build(),this.rowPositions.bottoms[this.rowCnt-1]+=this.bottomCoordPadding},r.prototype.positionToHit=function(e,t){var r=this.colPositions,n=this.rowPositions,i=r.leftToIndex(e),o=n.topToIndex(t);if(null!=o&&null!=i)return{row:o,col:i,dateSpan:{range:this.getCellRange(o,i),allDay:!0},dayEl:this.getCellEl(o,i),relativeRect:{left:r.lefts[i],right:r.rights[i],top:n.tops[o],bottom:n.bottoms[o]}}},r.prototype.getCellEl=function(e,t){return this.cellEls[e*this.colCnt+t]},r.prototype._renderEventDrag=function(e){e&&(this.eventRenderer.hideByHash(e.affectedInstances),this.fillRenderer.renderSegs("highlight",e.segs))},r.prototype._unrenderEventDrag=function(e){e&&(this.eventRenderer.showByHash(e.affectedInstances),this.fillRenderer.unrender("highlight"))},r.prototype._renderEventResize=function(e){e&&(this.eventRenderer.hideByHash(e.affectedInstances),this.fillRenderer.renderSegs("highlight",e.segs),this.mirrorRenderer.renderSegs(e.segs,{isResizing:!0,sourceSeg:e.sourceSeg}))},r.prototype._unrenderEventResize=function(e){e&&(this.eventRenderer.showByHash(e.affectedInstances),this.fillRenderer.unrender("highlight"),this.mirrorRenderer.unrender(e.segs,{isResizing:!0,sourceSeg:e.sourceSeg}))},r.prototype.removeSegPopover=function(){this.segPopover&&this.segPopover.hide()},r.prototype.limitRows=function(e){var t,r,n=this.eventRenderer.rowStructs||[];for(t=0;ti)return r;return!1},r.prototype.limitRow=function(e,r){var n,i,o,s,l,a,d,c,h,p,u,f,g,m,y,v=this,b=this.colCnt,w=this.isRtl,S=this.eventRenderer.rowStructs[e],C=[],E=0,R=function(n){for(;E"+t.htmlEscape(s.opt("weekLabel"))+"":""},s.renderDayGridNumberIntroHtml=function(e,r){var n=s.dateEnv,i=r.props.cells[e][0].date;return s.colWeekNumbersVisible?'"+t.buildGotoAnchorHtml(s,{date:i,type:"week",forceOff:1===r.colCnt},n.format(i,w))+"":""},s.renderDayGridBgIntroHtml=function(){var e=s.theme;return s.colWeekNumbersVisible?'":""},s.renderDayGridIntroHtml=function(){return s.colWeekNumbersVisible?'":""},s.el.classList.add("fc-dayGrid-view"),s.el.innerHTML=s.renderSkeletonHtml(),s.scroller=new t.ScrollComponent("hidden","auto");var l=s.scroller.el;s.el.querySelector(".fc-body > tr > td").appendChild(l),l.classList.add("fc-day-grid-container");var a,d=t.createElement("div",{className:"fc-day-grid"});return l.appendChild(d),s.opt("weekNumbers")?s.opt("weekNumbersWithinDays")?(a=!0,s.colWeekNumbersVisible=!1):(a=!1,s.colWeekNumbersVisible=!0):(s.colWeekNumbersVisible=!1,a=!1),s.dayGrid=new b(s.context,d,{renderNumberIntroHtml:s.renderDayGridNumberIntroHtml,renderBgIntroHtml:s.renderDayGridBgIntroHtml,renderIntroHtml:s.renderDayGridIntroHtml,colWeekNumbersVisible:s.colWeekNumbersVisible,cellWeekNumbersVisible:a}),s}return n(r,e),r.prototype.destroy=function(){e.prototype.destroy.call(this),this.dayGrid.destroy(),this.scroller.destroy()},r.prototype.renderSkeletonHtml=function(){var e=this.theme;return''+(this.opt("columnHeader")?'':"")+'
     
    '},r.prototype.weekNumberStyleAttr=function(){return null!=this.weekNumberWidth?'style="width:'+this.weekNumberWidth+'px"':""},r.prototype.hasRigidRows=function(){var e=this.opt("eventLimit");return e&&"number"!=typeof e},r.prototype.updateSize=function(t,r,n){e.prototype.updateSize.call(this,t,r,n),this.dayGrid.updateSize(t)},r.prototype.updateBaseSize=function(e,r,n){var i,o,s=this.dayGrid,l=this.opt("eventLimit"),a=this.header?this.header.el:null;s.rowEls?(this.colWeekNumbersVisible&&(this.weekNumberWidth=t.matchCellWidths(t.findElements(this.el,".fc-week-number"))),this.scroller.clear(),a&&t.uncompensateScroll(a),s.removeSegPopover(),l&&"number"==typeof l&&s.limitRows(l),i=this.computeScrollerHeight(r),this.setGridHeight(i,n),l&&"number"!=typeof l&&s.limitRows(l),n||(this.scroller.setHeight(i),((o=this.scroller.getScrollbarWidths()).left||o.right)&&(a&&t.compensateScroll(a,o),i=this.computeScrollerHeight(r),this.scroller.setHeight(i)),this.scroller.lockOverflow(o))):n||(i=this.computeScrollerHeight(r),this.scroller.setHeight(i))},r.prototype.computeScrollerHeight=function(e){return e-t.subtractInnerElHeight(this.el,this.scroller.el)},r.prototype.setGridHeight=function(e,r){this.opt("monthMode")?(r&&(e*=this.dayGrid.rowCnt/6),t.distributeHeight(this.dayGrid.rowEls,e,!r)):r?t.undistributeHeight(this.dayGrid.rowEls):t.distributeHeight(this.dayGrid.rowEls,e,!0)},r.prototype.computeDateScroll=function(e){return{top:0}},r.prototype.queryDateScroll=function(){return{top:this.scroller.getScrollTop()}},r.prototype.applyDateScroll=function(e){void 0!==e.top&&this.scroller.setScrollTop(e.top)},r}(t.View);S.prototype.dateProfileGeneratorClass=o;var C=function(e){function t(t,r){var n=e.call(this,t,r.el)||this;return n.slicer=new E,n.dayGrid=r,t.calendar.registerInteractiveComponent(n,{el:n.dayGrid.el}),n}return n(t,e),t.prototype.destroy=function(){e.prototype.destroy.call(this),this.calendar.unregisterInteractiveComponent(this)},t.prototype.render=function(e){var t=this.dayGrid,r=e.dateProfile,n=e.dayTable;t.receiveProps(i({},this.slicer.sliceProps(e,r,e.nextDayThreshold,t,n),{dateProfile:r,cells:n.cells,isRigid:e.isRigid}))},t.prototype.buildPositionCaches=function(){this.dayGrid.buildPositionCaches()},t.prototype.queryHit=function(e,t){var r=this.dayGrid.positionToHit(e,t);if(r)return{component:this.dayGrid,dateSpan:r.dateSpan,dayEl:r.dayEl,rect:{left:r.relativeRect.left,right:r.relativeRect.right,top:r.relativeRect.top,bottom:r.relativeRect.bottom},layer:0}},t}(t.DateComponent),E=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return n(t,e),t.prototype.sliceRange=function(e,t){return t.sliceRange(e)},t}(t.Slicer),R=function(e){function r(r,n,i,o){var s=e.call(this,r,n,i,o)||this;return s.buildDayTable=t.memoize(H),s.opt("columnHeader")&&(s.header=new t.DayHeader(s.context,s.el.querySelector(".fc-head-container"))),s.simpleDayGrid=new C(s.context,s.dayGrid),s}return n(r,e),r.prototype.destroy=function(){e.prototype.destroy.call(this),this.header&&this.header.destroy(),this.simpleDayGrid.destroy()},r.prototype.render=function(t){e.prototype.render.call(this,t);var r=this.props.dateProfile,n=this.dayTable=this.buildDayTable(r,this.dateProfileGenerator);this.header&&this.header.receiveProps({dateProfile:r,dates:n.headerDates,datesRepDistinctDays:1===n.rowCnt,renderIntroHtml:this.renderHeadIntroHtml}),this.simpleDayGrid.receiveProps({dateProfile:r,dayTable:n,businessHours:t.businessHours,dateSelection:t.dateSelection,eventStore:t.eventStore,eventUiBases:t.eventUiBases,eventSelection:t.eventSelection,eventDrag:t.eventDrag,eventResize:t.eventResize,isRigid:this.hasRigidRows(),nextDayThreshold:this.nextDayThreshold})},r}(S);function H(e,r){var n=new t.DaySeries(e.renderRange,r);return new t.DayTable(n,/year|month|week/.test(e.currentRangeUnit))}var D=t.createPlugin({defaultView:"dayGridMonth",views:{dayGrid:R,dayGridDay:{type:"dayGrid",duration:{days:1}},dayGridWeek:{type:"dayGrid",duration:{weeks:1}},dayGridMonth:{type:"dayGrid",duration:{months:1},monthMode:!0,fixedWeekCount:!0}}});e.AbstractDayGridView=S,e.DayBgRow=g,e.DayGrid=b,e.DayGridSlicer=E,e.DayGridView=R,e.SimpleDayGrid=C,e.buildBasicDayTable=H,e.default=D,Object.defineProperty(e,"__esModule",{value:!0})}); diff --git a/assets/vendors/js/calendar/extensions/interactions.min.js b/assets/vendors/js/calendar/extensions/interactions.min.js new file mode 100644 index 0000000..9950f1e --- /dev/null +++ b/assets/vendors/js/calendar/extensions/interactions.min.js @@ -0,0 +1,6 @@ +/*! +FullCalendar Interaction Plugin v4.3.0 +Docs & License: https://fullcalendar.io/ +(c) 2019 Adam Shaw +*/ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@fullcalendar/core")):"function"==typeof define&&define.amd?define(["exports","@fullcalendar/core"],t):t((e=e||self).FullCalendarInteraction={},e.FullCalendar)}(this,function(e,t){"use strict";var n=function(e,t){return(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)};function r(e,t){function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}var i=function(){return(i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0&&(this.everMovedDown=!0),o<0?this.everMovedLeft=!0:o>0&&(this.everMovedRight=!0),this.pointerScreenX=n,this.pointerScreenY=r,this.isAnimating||(this.isAnimating=!0,this.requestAnimation(p()))}},e.prototype.stop=function(){if(this.isEnabled){this.isAnimating=!1;for(var e=0,t=this.scrollCaches;e=0&&c>=0&&d>=0&&g>=0&&(d<=n&&this.everMovedUp&&a.canScrollUp()&&(!r||r.distance>d)&&(r={scrollCache:a,name:"top",distance:d}),g<=n&&this.everMovedDown&&a.canScrollDown()&&(!r||r.distance>g)&&(r={scrollCache:a,name:"bottom",distance:g}),s<=n&&this.everMovedLeft&&a.canScrollLeft()&&(!r||r.distance>s)&&(r={scrollCache:a,name:"left",distance:s}),c<=n&&this.everMovedRight&&a.canScrollRight()&&(!r||r.distance>c)&&(r={scrollCache:a,name:"right",distance:c}))}return r},e.prototype.buildCaches=function(){return this.queryScrollEls().map(function(e){return e===window?new h(!1):new u(e,!1)})},e.prototype.queryScrollEls=function(){for(var e=[],t=0,n=this.scrollQuery;t=t*t&&r.handleDistanceSurpassed(e)}r.isDragging&&("scroll"!==e.origEvent.type&&(r.mirror.handleMove(e.pageX,e.pageY),r.autoScroller.handleMove(e.pageX,e.pageY)),r.emitter.trigger("dragmove",e))}},r.onPointerUp=function(e){r.isInteracting&&(r.isInteracting=!1,t.allowSelection(document.body),t.allowContextMenu(document.body),r.emitter.trigger("pointerup",e),r.isDragging&&(r.autoScroller.stop(),r.tryStopDrag(e)),r.delayTimeoutId&&(clearTimeout(r.delayTimeoutId),r.delayTimeoutId=null))};var i=r.pointer=new s(n);return i.emitter.on("pointerdown",r.onPointerDown),i.emitter.on("pointermove",r.onPointerMove),i.emitter.on("pointerup",r.onPointerUp),r.mirror=new d,r.autoScroller=new v,r}return r(n,e),n.prototype.destroy=function(){this.pointer.destroy()},n.prototype.startDelay=function(e){var t=this;"number"==typeof this.delay?this.delayTimeoutId=setTimeout(function(){t.delayTimeoutId=null,t.handleDelayEnd(e)},this.delay):this.handleDelayEnd(e)},n.prototype.handleDelayEnd=function(e){this.isDelayEnded=!0,this.tryStartDrag(e)},n.prototype.handleDistanceSurpassed=function(e){this.isDistanceSurpassed=!0,this.tryStartDrag(e)},n.prototype.tryStartDrag=function(e){this.isDelayEnded&&this.isDistanceSurpassed&&(this.pointer.wasTouchScroll&&!this.touchScrollAllowed||(this.isDragging=!0,this.mirrorNeedsRevert=!1,this.autoScroller.start(e.pageX,e.pageY),this.emitter.trigger("dragstart",e),!1===this.touchScrollAllowed&&this.pointer.cancelTouchScroll()))},n.prototype.tryStopDrag=function(e){this.mirror.stop(this.mirrorNeedsRevert,this.stopDrag.bind(this,e))},n.prototype.stopDrag=function(e){this.isDragging=!1,this.emitter.trigger("dragend",e)},n.prototype.setIgnoreMove=function(e){this.pointer.shouldIgnoreMove=e},n.prototype.setMirrorIsVisible=function(e){this.mirror.setIsVisible(e)},n.prototype.setMirrorNeedsRevert=function(e){this.mirrorNeedsRevert=e},n.prototype.setAutoScrollEnabled=function(e){this.autoScroller.isEnabled=e},n}(t.ElementDragging),E=function(){function e(e){this.origRect=t.computeRect(e),this.scrollCaches=t.getClippingParents(e).map(function(e){return new u(e,!0)})}return e.prototype.destroy=function(){for(var e=0,t=this.scrollCaches;e=0&&g=0&&uo.layer)||(f.rect.left+=c,f.rect.right+=c,f.rect.top+=d,f.rect.bottom+=d,o=f)}}}return o},e}();function S(e,n){return!e&&!n||Boolean(e)===Boolean(n)&&t.isDateSpansEqual(e.dateSpan,n.dateSpan)}var y=function(e){function n(n){var r=e.call(this,n)||this;r.handlePointerDown=function(e){var t=r.dragging;t.setIgnoreMove(!r.component.isValidDateDownEl(t.pointer.downEl))},r.handleDragEnd=function(e){var t=r.component;if(!r.dragging.pointer.wasTouchScroll){var n=r.hitDragging,i=n.initialHit,o=n.finalHit;i&&o&&S(i,o)&&t.calendar.triggerDateClick(i.dateSpan,i.dayEl,t.view,e.origEvent)}};var i=n.component;r.dragging=new f(i.el),r.dragging.autoScroller.isEnabled=!1;var o=r.hitDragging=new m(r.dragging,t.interactionSettingsToStore(n));return o.emitter.on("pointerdown",r.handlePointerDown),o.emitter.on("dragend",r.handleDragEnd),r}return r(n,e),n.prototype.destroy=function(){this.dragging.destroy()},n}(t.Interaction),D=function(e){function n(n){var r=e.call(this,n)||this;r.dragSelection=null,r.handlePointerDown=function(e){var t=r,n=t.component,i=t.dragging,o=n.opt("selectable")&&n.isValidDateDownEl(e.origEvent.target);i.setIgnoreMove(!o),i.delay=e.isTouch?function(e){var t=e.opt("selectLongPressDelay");null==t&&(t=e.opt("longPressDelay"));return t}(n):null},r.handleDragStart=function(e){r.component.calendar.unselect(e)},r.handleHitUpdate=function(e,n){var o=r.component.calendar,a=null,l=!1;e&&((a=function(e,n,r){var o=e.dateSpan,a=n.dateSpan,l=[o.range.start,o.range.end,a.range.start,a.range.end];l.sort(t.compareNumbers);for(var s={},c=0,d=r;co.start)return g.endDelta=d,g;return null}(s,e,o.subjectEl.classList.contains("fc-start-resizer"),c.range,a.pluginSystem.hooks.eventResizeJoinTransforms)),d&&(g=t.applyMutationToEventStore(l,a.eventUiBases,d,a),h.mutatedEvents=g,r.component.isInteractionValid(h)||(u=!0,d=null,g=null,h.mutatedEvents=null)),g?a.dispatch({type:"SET_EVENT_RESIZE",state:h}):a.dispatch({type:"UNSET_EVENT_RESIZE"}),u?t.disableCursor():t.enableCursor(),n||(d&&S(s,e)&&(d=null),r.validMutation=d,r.mutatedRelevantEvents=g)},r.handleDragEnd=function(e){var n=r.component.calendar,i=r.component.view,o=r.eventRange.def,a=r.eventRange.instance,l=new t.EventApi(n,o,a),s=r.relevantEvents,c=r.mutatedRelevantEvents;n.publiclyTrigger("eventResizeStop",[{el:r.draggingSeg.el,event:l,jsEvent:e.origEvent,view:i}]),r.validMutation?(n.dispatch({type:"MERGE_EVENTS",eventStore:c}),n.publiclyTrigger("eventResize",[{el:r.draggingSeg.el,startDelta:r.validMutation.startDelta||t.createDuration(0),endDelta:r.validMutation.endDelta||t.createDuration(0),prevEvent:l,event:new t.EventApi(n,c.defs[o.defId],a?c.instances[a.instanceId]:null),revert:function(){n.dispatch({type:"MERGE_EVENTS",eventStore:s})},jsEvent:e.origEvent,view:i}])):n.publiclyTrigger("_noEventResize"),r.draggingSeg=null,r.relevantEvents=null,r.validMutation=null};var o=n.component,a=r.dragging=new f(o.el);a.pointer.selector=".fc-resizer",a.touchScrollAllowed=!1,a.autoScroller.isEnabled=o.opt("dragScroll");var l=r.hitDragging=new m(r.dragging,t.interactionSettingsToStore(n));return l.emitter.on("pointerdown",r.handlePointerDown),l.emitter.on("dragstart",r.handleDragStart),l.emitter.on("hitupdate",r.handleHitUpdate),l.emitter.on("dragend",r.handleDragEnd),r}return r(n,e),n.prototype.destroy=function(){this.dragging.destroy()},n.prototype.querySeg=function(e){return t.getElSeg(t.elementClosest(e.subjectEl,this.component.fgSegSelector))},n}(t.Interaction);var M=function(){function e(e){var n=this;this.isRecentPointerDateSelect=!1,this.onSelect=function(e){e.jsEvent&&(n.isRecentPointerDateSelect=!0)},this.onDocumentPointerUp=function(e){var r=n,i=r.calendar,o=r.documentPointer,a=i.state;if(!o.wasTouchScroll){if(a.dateSelection&&!n.isRecentPointerDateSelect){var l=i.viewOpt("unselectAuto"),s=i.viewOpt("unselectCancel");!l||l&&t.elementClosest(o.downEl,s)||i.unselect(e)}a.eventSelection&&!t.elementClosest(o.downEl,w.SELECTOR)&&i.dispatch({type:"UNSELECT_EVENT"})}n.isRecentPointerDateSelect=!1},this.calendar=e;var r=this.documentPointer=new s(document);r.shouldIgnoreMove=!0,r.shouldWatchScroll=!1,r.emitter.on("pointerup",this.onDocumentPointerUp),e.on("select",this.onSelect)}return e.prototype.destroy=function(){this.calendar.off("select",this.onSelect),this.documentPointer.destroy()},e}(),b=function(){function e(e,n){var r=this;this.receivingCalendar=null,this.droppableEvent=null,this.suppliedDragMeta=null,this.dragMeta=null,this.handleDragStart=function(e){r.dragMeta=r.buildDragMeta(e.subjectEl)},this.handleHitUpdate=function(e,n,o){var a=r.hitDragging.dragging,l=null,s=null,c=!1,d={affectedEvents:t.createEmptyEventStore(),mutatedEvents:t.createEmptyEventStore(),isEvent:r.dragMeta.create,origSeg:null};e&&(l=e.component.calendar,r.canDropElOnCalendar(o.subjectEl,l)&&(s=function(e,n,r){for(var o=i({},n.leftoverProps),a=0,l=r.pluginSystem.hooks.externalDefTransforms;a
    '+(i?'
    '+t.htmlEscape(i)+"
    ":"")+(l.title?'
    '+t.htmlEscape(l.title)+"
    ":"")+"
    "+(p?'
    ':"")+""},r.prototype.computeSegHorizontals=function(e){var t,r,i;if(function(e){var t,r,i,n,o;for(t=0;t0&&n.el.classList.add("fc-time-grid-event-inset"),n.eventRange.def.title&&n.bottom-n.top<30&&n.el.classList.add("fc-short")}},r.prototype.generateSegCss=function(e){var t,r,i=this.context.options.slotEventOverlap,n=e.backwardCoord,o=e.forwardCoord,s=this.timeGrid.generateSegVerticalCss(e),a=this.timeGrid.isRtl;return i&&(o=Math.min(1,n+2*(o-n))),a?(t=1-o,r=n):(t=n,r=1-o),s.zIndex=e.level+1,s.left=100*t+"%",s.right=100*r+"%",i&&e.forwardPressure&&(s[a?"marginLeft":"marginRight"]=20),s},r}(t.FgEventRenderer);function a(e){var t,r,i=e.forwardSegs,n=0;if(void 0===e.forwardPressure){for(t=0;to.top&&n.top
    ',o.rootBgContainerEl=i.querySelector(".fc-bg"),o.slatContainerEl=i.querySelector(".fc-slats"),o.bottomRuleEl=i.querySelector(".fc-divider"),o.renderProps=n,o}return n(i,e),i.prototype.processOptions=function(){var e,r,i=this.opt("slotDuration"),n=this.opt("snapDuration");i=t.createDuration(i),n=n?t.createDuration(n):i,null===(e=t.wholeDivideDurations(i,n))&&(n=i,e=1),this.slotDuration=i,this.snapDuration=n,this.snapsPerSlot=e,r=this.opt("slotLabelFormat"),Array.isArray(r)&&(r=r[r.length-1]),this.labelFormat=t.createFormatter(r||{hour:"numeric",minute:"2-digit",omitZeroMinute:!0,meridiem:"short"}),r=this.opt("slotLabelInterval"),this.labelInterval=r?t.createDuration(r):this.computeLabelInterval(i)},i.prototype.computeLabelInterval=function(e){var r,i,n;for(r=u.length-1;r>=0;r--)if(i=t.createDuration(u[r]),null!==(n=t.wholeDivideDurations(i,e))&&n>1)return i;return e},i.prototype.render=function(e){var t=e.cells;this.colCnt=t.length,this.renderSlats(e.dateProfile),this.renderColumns(e.cells,e.dateProfile),this.renderBusinessHours(e.businessHourSegs),this.renderDateSelection(e.dateSelectionSegs),this.renderFgEvents(e.fgEventSegs),this.renderBgEvents(e.bgEventSegs),this.renderEventSelection(e.eventSelection),this.renderEventDrag(e.eventDrag),this.renderEventResize(e.eventResize)},i.prototype.destroy=function(){e.prototype.destroy.call(this),this.renderSlats.unrender(),this.renderColumns.unrender()},i.prototype.updateSize=function(e){var t=this.fillRenderer,r=this.eventRenderer,i=this.mirrorRenderer;(e||this.isSlatSizesDirty)&&(this.buildSlatPositions(),this.isSlatSizesDirty=!1),(e||this.isColSizesDirty)&&(this.buildColPositions(),this.isColSizesDirty=!1),t.computeSizes(e),r.computeSizes(e),i.computeSizes(e),t.assignSizes(e),r.assignSizes(e),i.assignSizes(e)},i.prototype._renderSlats=function(e){var r=this.theme;this.slatContainerEl.innerHTML=''+this.renderSlatRowHtml(e)+"
    ",this.slatEls=t.findElements(this.slatContainerEl,"tr"),this.slatPositions=new t.PositionCache(this.el,this.slatEls,!1,!0),this.isSlatSizesDirty=!0},i.prototype.renderSlatRowHtml=function(e){for(var r,i,n,o=this.dateEnv,s=this.theme,a=this.isRtl,l="",d=t.startOfDay(e.renderRange.start),c=e.minTime,h=t.createDuration(0);t.asRoughMs(c)'+(i?""+t.htmlEscape(o.format(r,this.labelFormat))+"":"")+"",l+='"+(a?"":n)+''+(a?n:"")+"",c=t.addDurations(c,this.slotDuration),h=t.addDurations(h,this.slotDuration);return l},i.prototype._renderColumns=function(e,i){var n=this.theme,o=this.dateEnv,s=this.view,a=new r.DayBgRow(this.context);this.rootBgContainerEl.innerHTML=''+a.renderHtml({cells:e,dateProfile:i,renderIntroHtml:this.renderProps.renderBgIntroHtml})+"
    ",this.colEls=t.findElements(this.el,".fc-day, .fc-disabled-day");for(var l=0;l
    ');this.isRtl&&r.reverse(),e=this.contentSkeletonEl=t.htmlToElement('
    '+r.join("")+"
    "),this.colContainerEls=t.findElements(e,".fc-content-col"),this.mirrorContainerEls=t.findElements(e,".fc-mirror-container"),this.fgContainerEls=t.findElements(e,".fc-event-container:not(.fc-mirror-container)"),this.bgContainerEls=t.findElements(e,".fc-bgevent-container"),this.highlightContainerEls=t.findElements(e,".fc-highlight-container"),this.businessContainerEls=t.findElements(e,".fc-business-container"),this.isRtl&&(this.colContainerEls.reverse(),this.mirrorContainerEls.reverse(),this.fgContainerEls.reverse(),this.bgContainerEls.reverse(),this.highlightContainerEls.reverse(),this.businessContainerEls.reverse()),this.el.appendChild(e)},i.prototype.unrenderContentSkeleton=function(){t.removeElement(this.contentSkeletonEl)},i.prototype.groupSegsByCol=function(e){var t,r=[];for(t=0;t0){var a=t.createElement("div",{className:"fc-now-indicator fc-now-indicator-arrow"});a.style.top=n+"px",this.contentSkeletonEl.appendChild(a),o.push(a)}this.nowIndicatorEls=o}},i.prototype.unrenderNowIndicator=function(){this.nowIndicatorEls&&(this.nowIndicatorEls.forEach(t.removeElement),this.nowIndicatorEls=null)},i.prototype.getTotalSlatHeight=function(){return this.slatContainerEl.getBoundingClientRect().height},i.prototype.computeDateTop=function(e,r){return r||(r=t.startOfDay(e)),this.computeTimeTop(t.createDuration(e.valueOf()-r.valueOf()))},i.prototype.computeTimeTop=function(e){var r,i,n=this.slatEls.length,o=this.props.dateProfile,s=(e.milliseconds-t.asRoughMs(o.minTime))/t.asRoughMs(this.slotDuration);return s=Math.max(0,s),s=Math.min(n,s),r=Math.floor(s),i=s-(r=Math.min(r,n-1)),this.slatPositions.tops[r]+this.slatPositions.getHeight(r)*i},i.prototype.computeSegVerticals=function(e){var t,r,i,n=this.opt("timeGridEventMinHeight");for(t=0;t"+t.buildGotoAnchorHtml(a,{date:o.start,type:"week",forceOff:s>1},t.htmlEscape(e))+""):'"},a.renderTimeGridBgIntroHtml=function(){return'"},a.renderTimeGridIntroHtml=function(){return'"},a.renderDayGridBgIntroHtml=function(){return'"+t.getAllDayHtml(a)+""},a.renderDayGridIntroHtml=function(){return'"},a.el.classList.add("fc-timeGrid-view"),a.el.innerHTML=a.renderSkeletonHtml(),a.scroller=new t.ScrollComponent("hidden","auto");var l=a.scroller.el;a.el.querySelector(".fc-body > tr > td").appendChild(l),l.classList.add("fc-time-grid-container");var d=t.createElement("div",{className:"fc-time-grid"});if(l.appendChild(d),a.timeGrid=new p(a.context,d,{renderBgIntroHtml:a.renderTimeGridBgIntroHtml,renderIntroHtml:a.renderTimeGridIntroHtml}),a.opt("allDaySlot")){a.dayGrid=new r.DayGrid(a.context,a.el.querySelector(".fc-day-grid"),{renderNumberIntroHtml:a.renderDayGridIntroHtml,renderBgIntroHtml:a.renderDayGridBgIntroHtml,renderIntroHtml:a.renderDayGridIntroHtml,colWeekNumbersVisible:!1,cellWeekNumbersVisible:!1});var c=a.el.querySelector(".fc-divider");a.dayGrid.bottomCoordPadding=c.getBoundingClientRect().height}return a}return n(i,e),i.prototype.destroy=function(){e.prototype.destroy.call(this),this.timeGrid.destroy(),this.dayGrid&&this.dayGrid.destroy(),this.scroller.destroy()},i.prototype.renderSkeletonHtml=function(){var e=this.theme;return''+(this.opt("columnHeader")?'':"")+'
     
    '+(this.opt("allDaySlot")?'

    ':"")+"
    "},i.prototype.getNowIndicatorUnit=function(){return this.timeGrid.getNowIndicatorUnit()},i.prototype.unrenderNowIndicator=function(){this.timeGrid.unrenderNowIndicator()},i.prototype.updateSize=function(t,r,i){e.prototype.updateSize.call(this,t,r,i),this.timeGrid.updateSize(t),this.dayGrid&&this.dayGrid.updateSize(t)},i.prototype.updateBaseSize=function(e,r,i){var n,o,s,a=this;if(this.axisWidth=t.matchCellWidths(t.findElements(this.el,".fc-axis")),this.timeGrid.colEls){var l=t.findElements(this.el,".fc-row").filter(function(e){return!a.scroller.el.contains(e)});this.timeGrid.bottomRuleEl.style.display="none",this.scroller.clear(),l.forEach(t.uncompensateScroll),this.dayGrid&&(this.dayGrid.removeSegPopover(),(n=this.opt("eventLimit"))&&"number"!=typeof n&&(n=5),n&&this.dayGrid.limitRows(n)),i||(o=this.computeScrollerHeight(r),this.scroller.setHeight(o),((s=this.scroller.getScrollbarWidths()).left||s.right)&&(l.forEach(function(e){t.compensateScroll(e,s)}),o=this.computeScrollerHeight(r),this.scroller.setHeight(o)),this.scroller.lockOverflow(s),this.timeGrid.getTotalSlatHeight()");document.body.appendChild(e);var t=e.firstChild.getBoundingClientRect().left>e.getBoundingClientRect().left;return c(e),t}()),S}function D(e){return e=Math.max(0,e),e=Math.round(e)}function T(e,t){void 0===t&&(t=!1);var n=window.getComputedStyle(e),r=parseInt(n.borderLeftWidth,10)||0,i=parseInt(n.borderRightWidth,10)||0,o=parseInt(n.borderTopWidth,10)||0,a=parseInt(n.borderBottomWidth,10)||0,s=D(e.offsetWidth-e.clientWidth-r-i),u={borderLeft:r,borderRight:i,borderTop:o,borderBottom:a,scrollbarBottom:D(e.offsetHeight-e.clientHeight-o-a),scrollbarLeft:0,scrollbarRight:0};return b()&&"rtl"===n.direction?u.scrollbarLeft=s:u.scrollbarRight=s,t&&(u.paddingLeft=parseInt(n.paddingLeft,10)||0,u.paddingRight=parseInt(n.paddingRight,10)||0,u.paddingTop=parseInt(n.paddingTop,10)||0,u.paddingBottom=parseInt(n.paddingBottom,10)||0),u}function w(e,t){void 0===t&&(t=!1);var n=R(e),r=T(e,t),i={left:n.left+r.borderLeft+r.scrollbarLeft,right:n.right-r.borderRight-r.scrollbarRight,top:n.top+r.borderTop,bottom:n.bottom-r.borderBottom-r.scrollbarBottom};return t&&(i.left+=r.paddingLeft,i.right-=r.paddingRight,i.top+=r.paddingTop,i.bottom-=r.paddingBottom),i}function R(e){var t=e.getBoundingClientRect();return{left:t.left+window.pageXOffset,top:t.top+window.pageYOffset,right:t.right+window.pageXOffset,bottom:t.bottom+window.pageYOffset}}function I(e){return e.getBoundingClientRect().height+C(e)}function C(e){var t=window.getComputedStyle(e);return parseInt(t.marginTop,10)+parseInt(t.marginBottom,10)}function M(e){for(var t=[];e instanceof HTMLElement;){var n=window.getComputedStyle(e);if("fixed"===n.position)break;/(auto|scroll)/.test(n.overflow+n.overflowY+n.overflowX)&&t.push(e),e=e.parentNode}return t}function k(e){e.preventDefault()}function O(e,t,n,r){function i(e){var t=p(e.target,n);t&&r.call(t,e,t)}return e.addEventListener(t,i),function(){e.removeEventListener(t,i)}}var _=["webkitTransitionEnd","otransitionend","oTransitionEnd","msTransitionEnd","transitionend"];var P=["sun","mon","tue","wed","thu","fri","sat"];function x(e,t){var n=Z(e);return n[2]+=t,j(n)}function H(e,t){var n=Z(e);return n[6]+=t,j(n)}function N(e,t){return(t.valueOf()-e.valueOf())/864e5}function z(e,t){var n=B(e),r=B(t);return{years:0,months:0,days:Math.round(N(n,r)),milliseconds:t.valueOf()-r.valueOf()-(e.valueOf()-n.valueOf())}}function U(e,t){var n=L(e,t);return null!==n&&n%7==0?n/7:null}function L(e,t){return q(e)===q(t)?Math.round(N(e,t)):null}function B(e){return j([e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()])}function V(e,t,n,r){var i=j([t,0,1+A(t,n,r)]),o=B(e),a=Math.round(N(i,o));return Math.floor(a/7)+1}function A(e,t,n){var r=7+t-n;return-((7+j([e,0,r]).getUTCDay()-t)%7)+r-1}function F(e){return[e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()]}function W(e){return new Date(e[0],e[1]||0,null==e[2]?1:e[2],e[3]||0,e[4]||0,e[5]||0)}function Z(e){return[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate(),e.getUTCHours(),e.getUTCMinutes(),e.getUTCSeconds(),e.getUTCMilliseconds()]}function j(e){return 1===e.length&&(e=e.concat([0])),new Date(Date.UTC.apply(Date,e))}function Y(e){return!isNaN(e.valueOf())}function q(e){return 1e3*e.getUTCHours()*60*60+1e3*e.getUTCMinutes()*60+1e3*e.getUTCSeconds()+e.getUTCMilliseconds()}var G=["years","months","days","milliseconds"],X=/^(-?)(?:(\d+)\.)?(\d+):(\d\d)(?::(\d\d)(?:\.(\d\d\d))?)?/;function J(e,t){var n;return"string"==typeof e?function(e){var t=X.exec(e);if(t){var n=t[1]?-1:1;return{years:0,months:0,days:n*(t[2]?parseInt(t[2],10):0),milliseconds:n*(60*(t[3]?parseInt(t[3],10):0)*60*1e3+60*(t[4]?parseInt(t[4],10):0)*1e3+1e3*(t[5]?parseInt(t[5],10):0)+(t[6]?parseInt(t[6],10):0))}}return null}(e):"object"==typeof e&&e?K(e):"number"==typeof e?K(((n={})[t||"milliseconds"]=e,n)):null}function K(e){return{years:e.years||e.year||0,months:e.months||e.month||0,days:(e.days||e.day||0)+7*Q(e),milliseconds:60*(e.hours||e.hour||0)*60*1e3+60*(e.minutes||e.minute||0)*1e3+1e3*(e.seconds||e.second||0)+(e.milliseconds||e.millisecond||e.ms||0)}}function Q(e){return e.weeks||e.week||0}function $(e,t){return e.years===t.years&&e.months===t.months&&e.days===t.days&&e.milliseconds===t.milliseconds}function ee(e){return te(e)/864e5}function te(e){return 31536e6*e.years+2592e6*e.months+864e5*e.days+e.milliseconds}function ne(e,t){var n=e.milliseconds;if(n){if(n%1e3!=0)return{unit:"millisecond",value:n};if(n%6e4!=0)return{unit:"second",value:n/1e3};if(n%36e5!=0)return{unit:"minute",value:n/6e4};if(n)return{unit:"hour",value:n/36e5}}return e.days?t||e.days%7!=0?{unit:"day",value:e.days}:{unit:"week",value:e.days/7}:e.months?{unit:"month",value:e.months}:e.years?{unit:"year",value:e.years}:{unit:"millisecond",value:0}}function re(e){e.forEach(function(e){e.style.height=""})}function ie(e){var t,n,r=[],i=[];for("string"==typeof e?i=e.split(/\s*,\s*/):"function"==typeof e?i=[e]:Array.isArray(e)&&(i=e),t=0;t=te(t)&&(r=x(r,1))}return e.start&&(n=B(e.start),r&&r<=n&&(r=x(n,1))),{start:n,end:r}}function ye(e,t,n,r){return"year"===r?J(n.diffWholeYears(e,t),"year"):"month"===r?J(n.diffWholeMonths(e,t),"month"):z(e,t)}var me=function(e,t){return(me=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)};function Ee(e,t){function n(){this.constructor=e}me(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var Se=function(){return(Se=Object.assign||function(e){for(var t,n=1,r=arguments.length;n=0;o--)if("object"==typeof(a=e[o][r])&&a)i.unshift(a);else if(void 0!==a){u[r]=a;break}i.length&&(u[r]=Te(i))}for(n=e.length-1;n>=0;n--)for(r in s=e[n])r in u||(u[r]=s[r]);return u}function we(e,t){var n={};for(var r in e)t(e[r],r)&&(n[r]=e[r]);return n}function Re(e,t){var n={};for(var r in e)n[r]=t(e[r],r);return n}function Ie(e){for(var t={},n=0,r=e;no&&i.push({start:o,end:r.start}),r.end>o&&(o=r.end);return ot.start)&&(null===e.start||null===t.end||e.start=e.start)&&(null===e.end||null!==t.end&&t.end<=e.end)}function Ze(e,t){return(null===e.start||t>=e.start)&&(null===e.end||t1)||"numeric"!==r.year&&"2-digit"!==r.year||"numeric"!==r.month&&"2-digit"!==r.month||"numeric"!==r.day&&"2-digit"!==r.day||(a=1);var s=this.format(e,n),u=this.format(t,n);if(s===u)return s;var l=nt(function(e,t){var n={};for(var r in e)r in Xe&&!(Xe[r]<=t)||(n[r]=e[r]);return n}(r,a),i,n),c=l(e),d=l(t),f=function(e,t,n,r){var i=0;for(;i/g,">").replace(/'/g,"'").replace(/"/g,""").replace(/\n/g,"
    ")}function _t(e){var t=[];for(var n in e){var r=e[n];null!=r&&""!==r&&t.push(n+":"+r)}return t.join(";")}function Pt(e){return Array.isArray(e)?e:"string"==typeof e?e.split(/\s+/):[]}var xt={editable:Boolean,startEditable:Boolean,durationEditable:Boolean,constraint:null,overlap:null,allow:null,className:Pt,classNames:Pt,color:String,backgroundColor:String,borderColor:String,textColor:String};function Ht(e,t,n){var r=he(e,xt,{},n),i=function(e,t){return Array.isArray(e)?ke(e,"",t,!0):"object"==typeof e&&e?ke([e],"",t,!0):null!=e?String(e):null}(r.constraint,t);return{startEditable:null!=r.startEditable?r.startEditable:r.editable,durationEditable:null!=r.durationEditable?r.durationEditable:r.editable,constraints:null!=i?[i]:[],overlap:r.overlap,allows:null!=r.allow?[r.allow]:[],backgroundColor:r.backgroundColor||r.color,borderColor:r.borderColor||r.color,textColor:r.textColor,classNames:r.classNames.concat(r.className)}}function Nt(e,t,n,r){var i={},o={};for(var a in xt){var s=e+ue(a);i[a]=t[s],o[s]=!0}if("event"===e&&(i.editable=t.editable),r)for(var a in t)o[a]||(r[a]=t[a]);return Ht(i,n)}var zt={startEditable:null,durationEditable:null,constraints:[],overlap:null,allows:[],backgroundColor:"",borderColor:"",textColor:"",classNames:[]};function Ut(e){return e.reduce(Lt,zt)}function Lt(e,t){return{startEditable:null!=t.startEditable?t.startEditable:e.startEditable,durationEditable:null!=t.durationEditable?t.durationEditable:e.durationEditable,constraints:e.constraints.concat(t.constraints),overlap:"boolean"==typeof t.overlap?t.overlap:e.overlap,allows:e.allows.concat(t.allows),backgroundColor:t.backgroundColor||e.backgroundColor,borderColor:t.borderColor||e.borderColor,textColor:t.textColor||e.textColor,classNames:e.classNames.concat(t.classNames)}}var Bt={id:String,groupId:String,title:String,url:String,rendering:String,extendedProps:null},Vt={start:null,date:null,end:null,allDay:null},At=0;function Ft(e,t,n,r){var i=function(e,t){var n=null;if(e){var r=t.state.eventSources[e];n=r.allDayDefault}null==n&&(n=t.opt("allDayDefault"));return n}(t,n),o={},a=function(e,t,n,r,i){for(var o=0;o'+r+"":""+r+""}function Qt(e,t,n,r){var i,o,a=n.calendar,s=n.view,u=n.theme,l=n.dateEnv,c=[];return Ze(t.activeRange,e)?(c.push("fc-"+P[e.getUTCDay()]),s.opt("monthMode")&&l.getMonth(e)!==l.getMonth(t.currentRange.start)&&c.push("fc-other-month"),o=x(i=B(a.getNow()),1),e=o?c.push("fc-future"):(c.push("fc-today"),!0!==r&&c.push(u.getClass("today")))):c.push("fc-disabled-day"),c}function $t(e,t,n){var r=!1,i=function(){r||(r=!0,t.apply(this,arguments))},o=function(){r||(r=!0,n&&n.apply(this,arguments))},a=e(i,o);a&&"function"==typeof a.then&&a.then(i,o)}var en=function(){function e(){}return e.mixInto=function(e){this.mixIntoObj(e.prototype)},e.mixIntoObj=function(e){var t=this;Object.getOwnPropertyNames(this.prototype).forEach(function(n){e[n]||(e[n]=t.prototype[n])})},e.mixOver=function(e){var t=this;Object.getOwnPropertyNames(this.prototype).forEach(function(n){e.prototype[n]=t.prototype[n]})},e}(),tn=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Ee(t,e),t.prototype.on=function(e,t){return nn(this._handlers||(this._handlers={}),e,t),this},t.prototype.one=function(e,t){return nn(this._oneHandlers||(this._oneHandlers={}),e,t),this},t.prototype.off=function(e,t){return this._handlers&&rn(this._handlers,e,t),this._oneHandlers&&rn(this._oneHandlers,e,t),this},t.prototype.trigger=function(e){for(var t=[],n=1;n=n[t]&&e=n[t]&&e0},e.prototype.canScrollHorizontally=function(){return this.getMaxScrollLeft()>0},e.prototype.canScrollUp=function(){return this.getScrollTop()>0},e.prototype.canScrollDown=function(){return this.getScrollTop()0},e.prototype.canScrollRight=function(){return this.getScrollLeft()=200&&a.status<400)try{var e=JSON.parse(a.responseText);r(e,a)}catch(e){i("Failure parsing JSON",a)}else i("Request failed",a)},a.onerror=function(){i("Request failed",a)},a.send(o)}function Sn(e){var t=[];for(var n in e)t.push(encodeURIComponent(n)+"="+encodeURIComponent(e[n]));return t.join("&")}var bn=vn({eventSourceDefs:[{parseMeta:function(e){if("string"==typeof e)e={url:e};else if(!e||"object"!=typeof e||!e.url)return null;return{url:e.url,method:(e.method||"GET").toUpperCase(),extraParams:e.extraParams,startParam:e.startParam,endParam:e.endParam,timeZoneParam:e.timeZoneParam}},fetch:function(e,t,n){var r=e.eventSource.meta,i=function(e,t,n){var r,i,o,a,s=n.dateEnv,u={};null==(r=e.startParam)&&(r=n.opt("startParam"));null==(i=e.endParam)&&(i=n.opt("endParam"));null==(o=e.timeZoneParam)&&(o=n.opt("timeZoneParam"));a="function"==typeof e.extraParams?e.extraParams():e.extraParams||{};Se(u,a),u[r]=s.formatIso(t.start),u[i]=s.formatIso(t.end),"local"!==s.timeZone&&(u[o]=s.timeZone);return u}(r,e.range,e.calendar);En(r.method,r.url,i,function(e,n){t({rawEvents:e,xhr:n})},function(e,t){n({message:e,xhr:t})})}}]});var Dn=vn({recurringTypes:[{parse:function(e,t,n){var r,i,o=n.createMarker.bind(n),a=he(e,{daysOfWeek:null,startTime:J,endTime:J,startRecur:o,endRecur:o},{},t),s=!1;for(var u in a)if(null!=a[u]){s=!0;break}if(s){var l=null;return"duration"in t&&(l=J(t.duration),delete t.duration),!l&&a.startTime&&a.endTime&&(r=a.endTime,i=a.startTime,l={years:r.years-i.years,months:r.months-i.months,days:r.days-i.days,milliseconds:r.milliseconds-i.milliseconds}),{allDayGuess:Boolean(!a.startTime&&!a.endTime),duration:l,typeData:a}}return null},expand:function(e,t,n){var r=Ve(t,{start:e.startRecur,end:e.endRecur});return r?function(e,t,n,r){var i=e?Ie(e):null,o=B(n.start),a=n.end,s=[];for(;o0?e[0].code:"en",n=window.FullCalendarLocalesAll||[],r=window.FullCalendarLocales||{},i=n.concat(Ce(r),e),o={en:kn},a=0,s=i;a0;i--){var o=r.slice(0,i).join("-");if(t[o])return t[o]}return null}(n,t)||kn;return Pn(e,n,r)}(e,t):Pn(e.code,[e.code],e)}function Pn(e,t,n){var r=Te([kn,n],["buttonText"]);delete r.code;var i=r.week;return delete r.week,{codeArg:e,codes:t,week:i,simpleNumberFormat:new Intl.NumberFormat(e),options:r}}var xn=function(){function e(e){this.overrides=Se({},e),this.dynamicOverrides={},this.compute()}return e.prototype.mutate=function(e,t,n){var r=n?this.dynamicOverrides:this.overrides;Se(r,e);for(var i=0,o=t;i=1?Math.min(i,o):i}(e,this.weekDow,this.weekDoy)},e.prototype.format=function(e,t,n){return void 0===n&&(n={}),t.format({marker:e,timeZoneOffset:null!=n.forcedTzo?n.forcedTzo:this.offsetForMarker(e)},this)},e.prototype.formatRange=function(e,t,n,r){return void 0===r&&(r={}),r.isEndExclusive&&(t=H(t,-1)),n.formatRange({marker:e,timeZoneOffset:null!=r.forcedStartTzo?r.forcedStartTzo:this.offsetForMarker(e)},{marker:t,timeZoneOffset:null!=r.forcedEndTzo?r.forcedEndTzo:this.offsetForMarker(t)},this)},e.prototype.formatIso=function(e,t){void 0===t&&(t={});var n=null;return t.omitTimeZoneOffset||(n=null!=t.forcedTzo?t.forcedTzo:this.offsetForMarker(e)),function(e,t,n){void 0===n&&(n=!1);var r=e.toISOString();return r=r.replace(".000",""),n&&(r=r.replace("T00:00:00Z","")),r.length>10&&(null==t?r=r.replace("Z",""):0!==t&&(r=r.replace("Z",at(t,!0)))),r}(e,n,t.omitTime)},e.prototype.timestampToMarker=function(e){return"local"===this.timeZone?j(F(new Date(e))):"UTC"!==this.timeZone&&this.namedTimeZoneImpl?j(this.namedTimeZoneImpl.timestampToArray(e)):new Date(e)},e.prototype.offsetForMarker=function(e){return"local"===this.timeZone?-W(Z(e)).getTimezoneOffset():"UTC"===this.timeZone?0:this.namedTimeZoneImpl?this.namedTimeZoneImpl.offsetForArray(Z(e)):null},e.prototype.toDate=function(e,t){return"local"===this.timeZone?W(Z(e)):"UTC"===this.timeZone?new Date(e.valueOf()):this.namedTimeZoneImpl?new Date(e.valueOf()-1e3*this.namedTimeZoneImpl.offsetForArray(Z(e))*60):new Date(e.valueOf()-(t||0))},e}(),Vn={id:String,allDayDefault:Boolean,eventDataTransform:Function,success:Function,failure:Function},An=0;function Fn(e,t){return!t.pluginSystem.hooks.eventSourceDefs[e.sourceDefId].ignoreRange}function Wn(e,t){for(var n=t.pluginSystem.hooks.eventSourceDefs,r=n.length-1;r>=0;r--){var i=n[r].parseMeta(e);if(i){var o=Zn("object"==typeof e?e:{},i,r,t);return o._raw=e,o}}return null}function Zn(e,t,n,r){var i={},o=he(e,Vn,{},i),a={},s=Ht(i,r,a);return o.isFetching=!1,o.latestFetchId="",o.fetchRange=null,o.publicId=String(e.id||""),o.sourceId=String(An++),o.sourceDefId=n,o.meta=t,o.ui=s,o.extendedProps=a,o}function jn(e,t,n,r){switch(t.type){case"ADD_EVENT_SOURCES":return function(e,t,n,r){for(var i={},o=0,a=t;oe.fetchRange.end:!e.latestFetchId}(e,t,n)}),t,n)}function Gn(e,t,n,r){var i={};for(var o in e){var a=e[o];t[o]?i[o]=Xn(a,n,r):i[o]=a}return i}function Xn(e,t,n){var r=n.pluginSystem.hooks.eventSourceDefs[e.sourceDefId],i=String(Yn++);return r.fetch({eventSource:e,calendar:n,range:t},function(r){var o,a,s=r.rawEvents,u=n.opt("eventSourceSuccess");e.success&&(a=e.success(s,r.xhr)),u&&(o=u(s,r.xhr)),s=a||o||s,n.dispatch({type:"RECEIVE_EVENTS",sourceId:e.sourceId,fetchId:i,fetchRange:t,rawEvents:s})},function(r){var o=n.opt("eventSourceFailure");console.warn(r.message,r),e.failure&&e.failure(r),o&&o(r),n.dispatch({type:"RECEIVE_EVENT_ERROR",sourceId:e.sourceId,fetchId:i,fetchRange:t,error:r})}),Se({},e,{isFetching:!0,latestFetchId:i})}var Jn=function(){function e(e,t){this.viewSpec=e,this.options=e.options,this.dateEnv=t.dateEnv,this.calendar=t,this.initHiddenDays()}return e.prototype.buildPrev=function(e,t){var n=this.dateEnv,r=n.subtract(n.startOf(t,e.currentRangeUnit),e.dateIncrement);return this.build(r,-1)},e.prototype.buildNext=function(e,t){var n=this.dateEnv,r=n.add(n.startOf(t,e.currentRangeUnit),e.dateIncrement);return this.build(r,1)},e.prototype.build=function(e,t,n){var r;void 0===n&&(n=!1);var i,o,a,s,u,l,c,d,f;return r=this.buildValidRange(),r=this.trimHiddenDays(r),n&&(d=e,e=null!=(f=r).start&&d=f.end?new Date(f.end.valueOf()-1):d),a=this.buildCurrentRangeInfo(e,t),s=/^(year|month|week|day)$/.test(a.unit),u=this.buildRenderRange(this.trimHiddenDays(a.range),a.unit,s),l=u=this.trimHiddenDays(u),this.options.showNonCurrentDates||(l=Ve(l,a.range)),i=J(this.options.minTime),o=J(this.options.maxTime),l=Ve(l=this.adjustActiveRange(l,i,o),r),c=Fe(a.range,r),{validRange:r,currentRange:a.range,currentRangeUnit:a.unit,isRangeAllDay:s,activeRange:l,renderRange:u,minTime:i,maxTime:o,isValid:c,dateIncrement:this.buildDateIncrement(a.duration)}},e.prototype.buildValidRange=function(){return this.getRangeOption("validRange",this.calendar.getNow())||{start:null,end:null}},e.prototype.buildCurrentRangeInfo=function(e,t){var n,r=this.viewSpec,i=this.dateEnv,o=null,a=null,s=null;return r.duration?(o=r.duration,a=r.durationUnit,s=this.buildRangeFromDuration(e,t,o,a)):(n=this.options.dayCount)?(a="day",s=this.buildRangeFromDayCount(e,t,n)):(s=this.buildCustomVisibleRange(e))?a=i.greatestWholeUnit(s.start,s.end).unit:(a=ne(o=this.getFallbackDuration()).unit,s=this.buildRangeFromDuration(e,t,o,a)),{duration:o,unit:a,range:s}},e.prototype.getFallbackDuration=function(){return J({day:1})},e.prototype.adjustActiveRange=function(e,t,n){var r=this.dateEnv,i=e.start,o=e.end;return this.viewSpec.class.prototype.usesMinMaxTime&&(ee(t)<0&&(i=B(i),i=r.add(i,t)),ee(n)>1&&(o=x(o=B(o),-1),o=r.add(o,n))),{start:i,end:o}},e.prototype.buildRangeFromDuration=function(e,t,n,r){var i,o,a,s,u,l=this.dateEnv,c=this.options.dateAlignment;function d(){a=l.startOf(e,c),s=l.add(a,n),u={start:a,end:s}}return c||((i=this.options.dateIncrement)?(o=J(i),c=te(o) 
    ")),h=!1):((r=d[e])?(c=function(e){r.click&&r.click.call(E,e)},(v=o.getCustomButtonIconClass(r))||(v=o.getIconClass(e))||(g=r.text)):(s=l[e])?(n.viewsWithButtons.push(e),c=function(){a.changeView(e)},(g=s.buttonTextOverride)||(v=o.getIconClass(e))||(g=s.buttonTextDefault)):a[e]&&(c=function(){a[e]()},(g=f[e])||(v=o.getIconClass(e))||(g=p[e])),c&&(m=["fc-"+e+"-button",o.getClass("button")],g?(y=Ot(g),S=""):v&&(y="",S=' aria-label="'+e+'"'),(E=i('")).addEventListener("click",c),u.push(E)))}),u.length>1){r=document.createElement("div");var v=o.getClass("buttonGroup");h&&v&&r.classList.add(v),s(r,u),c.appendChild(r)}else s(c,u)}),c},t.prototype.updateToday=function(e){this.toggleButtonEnabled("today",e)},t.prototype.updatePrev=function(e){this.toggleButtonEnabled("prev",e)},t.prototype.updateNext=function(e){this.toggleButtonEnabled("next",e)},t.prototype.updateTitle=function(e){v(this.el,"h2").forEach(function(t){t.innerText=e})},t.prototype.updateActiveButton=function(e){var t=this.theme.getClass("buttonActive");v(this.el,"button").forEach(function(n){e&&n.classList.contains("fc-"+e+"-button")?n.classList.add(t):n.classList.remove(t)})},t.prototype.toggleButtonEnabled=function(e,t){v(this.el,".fc-"+e+"-button").forEach(function(e){e.disabled=!t})},t}(fn),hr=function(e){function t(t,n){var i=e.call(this,t)||this;i._renderToolbars=qt(i.renderToolbars),i.buildViewPropTransformers=Ye(gr),i.el=n,u(n,i.contentEl=r("div",{className:"fc-view-container"}));for(var o=i.calendar,a=0,s=o.pluginSystem.hooks.viewContainerModifiers;a1?{year:"numeric",month:"short",day:"numeric"}:{year:"numeric",month:"long",day:"numeric"}}(e),t.titleRangeSeparator),{isEndExclusive:e.isRangeAllDay})}function gr(e){return e.map(function(e){return new e})}var yr=function(){function e(e){this.component=e.component}return e.prototype.destroy=function(){},e}();var mr={},Er=function(e){function t(t){var n=e.call(this,t)||this;n.handleSegClick=function(e,t){var r=n.component,i=ht(t);if(i&&r.isValidSegDownEl(e.target)){var o=p(e.target,".fc-has-url"),a=o?o.querySelector("a[href]").href:"";r.publiclyTrigger("eventClick",[{el:t,event:new ct(r.calendar,i.eventRange.def,i.eventRange.instance),jsEvent:e,view:r.view}]),a&&!e.defaultPrevented&&(window.location.href=a)}};var r=t.component;return n.destroy=O(r.el,"click",r.fgSegSelector+","+r.bgSegSelector,n.handleSegClick),n}return Ee(t,e),t}(yr),Sr=function(e){function t(t){var n=e.call(this,t)||this;n.handleEventElRemove=function(e){e===n.currentSegEl&&n.handleSegLeave(null,n.currentSegEl)},n.handleSegEnter=function(e,t){ht(t)&&(t.classList.add("fc-allow-mouse-resize"),n.currentSegEl=t,n.triggerEvent("eventMouseEnter",e,t))},n.handleSegLeave=function(e,t){n.currentSegEl&&(t.classList.remove("fc-allow-mouse-resize"),n.currentSegEl=null,n.triggerEvent("eventMouseLeave",e,t))};var r,i,o,a,s,u=t.component;return n.removeHoverListeners=(r=u.el,i=u.fgSegSelector+","+u.bgSegSelector,o=n.handleSegEnter,a=n.handleSegLeave,O(r,"mouseover",i,function(e,t){if(t!==s){s=t,o(e,t);var n=function(e){s=null,a(e,t),t.removeEventListener("mouseleave",n)};t.addEventListener("mouseleave",n)}})),u.calendar.on("eventElRemove",n.handleEventElRemove),n}return Ee(t,e),t.prototype.destroy=function(){this.removeHoverListeners(),this.component.calendar.off("eventElRemove",this.handleEventElRemove)},t.prototype.triggerEvent=function(e,t,n){var r=this.component,i=ht(n);t&&!r.isValidSegDownEl(t.target)||r.publiclyTrigger(e,[{el:n,event:new ct(this.component.calendar,i.eventRange.def,i.eventRange.instance),jsEvent:t,view:r.view}])},t}(yr),br=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Ee(t,e),t}(cn);br.prototype.classes={widget:"fc-unthemed",widgetHeader:"fc-widget-header",widgetContent:"fc-widget-content",buttonGroup:"fc-button-group",button:"fc-button fc-button-primary",buttonActive:"fc-button-active",popoverHeader:"fc-widget-header",popoverContent:"fc-widget-content",headerRow:"fc-widget-header",dayRow:"fc-widget-content",listView:"fc-widget-content"},br.prototype.baseIconClass="fc-icon",br.prototype.iconClasses={close:"fc-icon-x",prev:"fc-icon-chevron-left",next:"fc-icon-chevron-right",prevYear:"fc-icon-chevrons-left",nextYear:"fc-icon-chevrons-right"},br.prototype.iconOverrideOption="buttonIcons",br.prototype.iconOverrideCustomButtonOption="icon",br.prototype.iconOverridePrefix="fc-icon-";var Dr=function(){function e(e,t){var n=this;this.parseRawLocales=Ye(On),this.buildLocale=Ye(_n),this.buildDateEnv=Ye(Tr),this.buildTheme=Ye(wr),this.buildEventUiSingleBase=Ye(this._buildEventUiSingleBase),this.buildSelectionConfig=Ye(this._buildSelectionConfig),this.buildEventUiBySource=qe(Ir,Me),this.buildEventUiBases=Ye(Cr),this.interactionsStore={},this.actionQueue=[],this.isReducing=!1,this.needsRerender=!1,this.needsFullRerender=!1,this.isRendering=!1,this.renderingPauseDepth=0,this.buildDelayedRerender=Ye(Rr),this.afterSizingTriggers={},this.isViewUpdated=!1,this.isDatesUpdated=!1,this.isEventsUpdated=!1,this.el=e,this.optionsManager=new xn(t||{}),this.pluginSystem=new gn,this.addPluginInputs(this.optionsManager.computed.plugins||[]),this.handleOptions(this.optionsManager.computed),this.publiclyTrigger("_init"),this.hydrate(),this.calendarInteractions=this.pluginSystem.hooks.calendarInteractions.map(function(e){return new e(n)})}return e.prototype.addPluginInputs=function(e){for(var t=function(e){for(var t=[],n=0,r=e;n"},e.prototype.detachSegs=function(e,t){var n=this.containerElsByType[e];n&&(n.forEach(c),delete this.containerElsByType[e])},e.prototype.computeSizes=function(e){for(var t in this.segsByType)(e||this.dirtySizeFlags[t])&&this.computeSegSizes(this.segsByType[t])},e.prototype.assignSizes=function(e){for(var t in this.segsByType)(e||this.dirtySizeFlags[t])&&this.assignSegSizes(this.segsByType[t]);this.dirtySizeFlags={}},e.prototype.computeSegSizes=function(e){},e.prototype.assignSegSizes=function(e){},e}(),Pr=function(e){this.timeZoneName=e},xr=function(){function e(e){this.emitter=new tn}return e.prototype.destroy=function(){},e.prototype.setMirrorIsVisible=function(e){},e.prototype.setMirrorNeedsRevert=function(e){},e.prototype.setAutoScrollEnabled=function(e){},e}();function Hr(e){var t=_n(e.locale||"en",On([]).map);return e=Se({timeZone:Rn.timeZone,calendarSystem:"gregory"},e,{locale:t}),new Bn(e)}var Nr={startTime:J,duration:J,create:Boolean,sourceId:String},zr={create:!0};function Ur(e,t){return!e||t>10?{weekday:"short"}:t>1?{weekday:"short",month:"numeric",day:"numeric",omitCommas:!0}:{weekday:"long"}}function Lr(e,t,n,r,i,o,a,s){var u,l=o.view,c=o.dateEnv,d=o.theme,f=o.options,p=Ze(t.activeRange,e),h=["fc-day-header",d.getClass("widgetHeader")];return u="function"==typeof f.columnHeaderHtml?f.columnHeaderHtml(c.toDate(e)):"function"==typeof f.columnHeaderText?Ot(f.columnHeaderText(c.toDate(e))):Ot(c.format(e,i)),n?h=h.concat(Qt(e,t,o,!0)):h.push("fc-"+P[e.getUTCDay()]),'1?' colspan="'+a+'"':"")+(s?" "+s:"")+">"+(p?Kt(l,{date:e,forceOff:!n||1===r},u):u)+""}var Br=function(e){function t(t,n){var r=e.call(this,t)||this;return n.innerHTML="",n.appendChild(r.el=i('
    ')),r.thead=r.el.querySelector("thead"),r}return Ee(t,e),t.prototype.destroy=function(){c(this.el)},t.prototype.render=function(e){var t=e.dates,n=e.datesRepDistinctDays,r=[];e.renderIntroHtml&&r.push(e.renderIntroHtml());for(var i=ot(this.opt("columnHeaderFormat")||Ur(n,t.length)),o=0,a=t;o"+r.join("")+""},t}(fn),Vr=function(){function e(e,t){for(var n=e.start,r=e.end,i=[],o=[],a=-1;n=t.length?t[t.length-1]+1:t[n]},e}(),Ar=function(){function e(e,t){var n,r,i,o=e.dates;if(t){for(r=o[0].getUTCDay(),n=1;n1},e.isPropsEqual=Me,e.isPropsValid=Rt,e.isSingleDay=function(e){return 0===e.years&&0===e.months&&1===e.days&&0===e.milliseconds},e.isValidDate=Y,e.listenBySelector=O,e.mapHash=Re,e.matchCellWidths=function(e){var t=0;return e.forEach(function(e){var n=e.firstChild;if(n instanceof HTMLElement){var r=n.getBoundingClientRect().width;r>t&&(t=r)}}),t++,e.forEach(function(e){e.style.width=t+"px"}),t},e.memoize=Ye,e.memoizeOutput=qe,e.memoizeRendering=qt,e.mergeEventStores=Ne,e.multiplyDuration=function(e,t){return{years:e.years*t,months:e.months*t,days:e.days*t,milliseconds:e.milliseconds*t}},e.padStart=le,e.parseBusinessHours=Yt,e.parseDragMeta=function(e){var t={},n=he(e,Nr,zr,t);return n.leftoverProps=t,n},e.parseEventDef=Wt,e.parseFieldSpecs=ie,e.parseMarker=Ln,e.pointInsideRect=function(e,t){return e.left>=t.left&&e.left=t.top&&e.top> 16, + G = f >> 8 & 0x00ff, + B = f & 0x0000ff; + return '#' + (0x1000000 + (Math.round((t - R) * p) + R) * 0x10000 + (Math.round((t - G) * p) + G) * 0x100 + (Math.round((t - B) * p) + B)).toString(16).slice(1); + } // beautiful color shading blending code + // http://stackoverflow.com/questions/5560248/programmatically-lighten-or-darken-a-hex-color-or-rgb-and-blend-colors + + }, { + key: "shadeColor", + value: function shadeColor(p, color) { + if (color.length > 7) return this.shadeRGBColor(p, color);else return this.shadeHexColor(p, color); + } + }], [{ + key: "bind", + value: function bind(fn, me) { + return function () { + return fn.apply(me, arguments); + }; + } + }, { + key: "isObject", + value: function isObject(item) { + return item && _typeof(item) === 'object' && !Array.isArray(item) && item != null; + } + }, { + key: "listToArray", + value: function listToArray(list) { + var i, + array = []; + + for (i = 0; i < list.length; i++) { + array[i] = list[i]; + } + + return array; + } // to extend defaults with user options + // credit: http://stackoverflow.com/questions/27936772/deep-object-merging-in-es6-es7#answer-34749873 + + }, { + key: "extend", + value: function extend(target, source) { + var _this = this; + + if (typeof Object.assign !== 'function') { + + (function () { + Object.assign = function (target) { + + if (target === undefined || target === null) { + throw new TypeError('Cannot convert undefined or null to object'); + } + + var output = Object(target); + + for (var index = 1; index < arguments.length; index++) { + var _source = arguments[index]; + + if (_source !== undefined && _source !== null) { + for (var nextKey in _source) { + if (_source.hasOwnProperty(nextKey)) { + output[nextKey] = _source[nextKey]; + } + } + } + } + + return output; + }; + })(); + } + + var output = Object.assign({}, target); + + if (this.isObject(target) && this.isObject(source)) { + Object.keys(source).forEach(function (key) { + if (_this.isObject(source[key])) { + if (!(key in target)) { + Object.assign(output, _defineProperty({}, key, source[key])); + } else { + output[key] = _this.extend(target[key], source[key]); + } + } else { + Object.assign(output, _defineProperty({}, key, source[key])); + } + }); + } + + return output; + } + }, { + key: "extendArray", + value: function extendArray(arrToExtend, resultArr) { + var extendedArr = []; + arrToExtend.map(function (item) { + extendedArr.push(Utils.extend(resultArr, item)); + }); + arrToExtend = extendedArr; + return arrToExtend; + } // If month counter exceeds 12, it starts again from 1 + + }, { + key: "monthMod", + value: function monthMod(month) { + return month % 12; + } + }, { + key: "addProps", + value: function addProps(obj, arr, val) { + if (typeof arr === 'string') { + arr = arr.split('.'); + } + + obj[arr[0]] = obj[arr[0]] || {}; + var tmpObj = obj[arr[0]]; + + if (arr.length > 1) { + arr.shift(); + this.addProps(tmpObj, arr, val); + } else { + obj[arr[0]] = val; + } + + return obj; + } + }, { + key: "clone", + value: function clone(source) { + if (Object.prototype.toString.call(source) === '[object Array]') { + var cloneResult = []; + + for (var i = 0; i < source.length; i++) { + cloneResult[i] = this.clone(source[i]); + } + + return cloneResult; + } else if (_typeof(source) === 'object') { + var _cloneResult = {}; + + for (var prop in source) { + if (source.hasOwnProperty(prop)) { + _cloneResult[prop] = this.clone(source[prop]); + } + } + + return _cloneResult; + } else { + return source; + } + } + }, { + key: "log10", + value: function log10(x) { + return Math.log(x) / Math.LN10; + } + }, { + key: "roundToBase10", + value: function roundToBase10(x) { + return Math.pow(10, Math.floor(Math.log10(x))); + } + }, { + key: "roundToBase", + value: function roundToBase(x, base) { + return Math.pow(base, Math.floor(Math.log(x) / Math.log(base))); + } + }, { + key: "parseNumber", + value: function parseNumber(val) { + if (val === null) return val; + return parseFloat(val); + } + }, { + key: "noExponents", + value: function noExponents(val) { + var data = String(val).split(/[eE]/); + if (data.length == 1) return data[0]; + var z = '', + sign = val < 0 ? '-' : '', + str = data[0].replace('.', ''), + mag = Number(data[1]) + 1; + + if (mag < 0) { + z = sign + '0.'; + + while (mag++) { + z += '0'; + } + + return z + str.replace(/^\-/, ''); + } + + mag -= str.length; + + while (mag--) { + z += '0'; + } + + return str + z; + } + }, { + key: "getDimensions", + value: function getDimensions(el) { + var computedStyle = getComputedStyle(el); + var ret = []; + var elementHeight = el.clientHeight; + var elementWidth = el.clientWidth; + elementHeight -= parseFloat(computedStyle.paddingTop) + parseFloat(computedStyle.paddingBottom); + elementWidth -= parseFloat(computedStyle.paddingLeft) + parseFloat(computedStyle.paddingRight); + ret.push(elementWidth); + ret.push(elementHeight); + return ret; + } + }, { + key: "getBoundingClientRect", + value: function getBoundingClientRect(element) { + var rect = element.getBoundingClientRect(); + return { + top: rect.top, + right: rect.right, + bottom: rect.bottom, + left: rect.left, + width: rect.width, + height: rect.height, + x: rect.x, + y: rect.y + }; + } // http://stackoverflow.com/questions/5623838/rgb-to-hex-and-hex-to-rgb#answer-12342275 + + }, { + key: "hexToRgba", + value: function hexToRgba() { + var hex = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '#999999'; + var opacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0.6; + + if (hex.substring(0, 1) !== '#') { + hex = '#999999'; + } + + var h = hex.replace('#', ''); + h = h.match(new RegExp('(.{' + h.length / 3 + '})', 'g')); + + for (var i = 0; i < h.length; i++) { + h[i] = parseInt(h[i].length === 1 ? h[i] + h[i] : h[i], 16); + } + + if (typeof opacity !== 'undefined') h.push(opacity); + return 'rgba(' + h.join(',') + ')'; + } + }, { + key: "getOpacityFromRGBA", + value: function getOpacityFromRGBA(rgba) { + rgba = rgba.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i); + return rgba[3]; + } + }, { + key: "rgb2hex", + value: function rgb2hex(rgb) { + rgb = rgb.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i); + return rgb && rgb.length === 4 ? '#' + ('0' + parseInt(rgb[1], 10).toString(16)).slice(-2) + ('0' + parseInt(rgb[2], 10).toString(16)).slice(-2) + ('0' + parseInt(rgb[3], 10).toString(16)).slice(-2) : ''; + } + }, { + key: "isColorHex", + value: function isColorHex(color) { + return /(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(color); + } + }, { + key: "polarToCartesian", + value: function polarToCartesian(centerX, centerY, radius, angleInDegrees) { + var angleInRadians = (angleInDegrees - 90) * Math.PI / 180.0; + return { + x: centerX + radius * Math.cos(angleInRadians), + y: centerY + radius * Math.sin(angleInRadians) + }; + } + }, { + key: "escapeString", + value: function escapeString(str) { + var escapeWith = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'x'; + var newStr = str.toString().slice(); + newStr = newStr.replace(/[` ~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi, escapeWith); + return newStr; + } + }, { + key: "negToZero", + value: function negToZero(val) { + return val < 0 ? 0 : val; + } + }, { + key: "moveIndexInArray", + value: function moveIndexInArray(arr, old_index, new_index) { + if (new_index >= arr.length) { + var k = new_index - arr.length + 1; + + while (k--) { + arr.push(undefined); + } + } + + arr.splice(new_index, 0, arr.splice(old_index, 1)[0]); + return arr; + } + }, { + key: "extractNumber", + value: function extractNumber(s) { + return parseFloat(s.replace(/[^\d\.]*/g, '')); + } + }, { + key: "randomString", + value: function randomString(len) { + var text = ''; + var possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; + + for (var i = 0; i < len; i++) { + text += possible.charAt(Math.floor(Math.random() * possible.length)); + } + + return text; + } + }, { + key: "findAncestor", + value: function findAncestor(el, cls) { + while ((el = el.parentElement) && !el.classList.contains(cls)) { + } + + return el; + } + }, { + key: "setELstyles", + value: function setELstyles(el, styles) { + for (var key in styles) { + if (styles.hasOwnProperty(key)) { + el.style.key = styles[key]; + } + } + } + }, { + key: "isNumber", + value: function isNumber(value) { + return !isNaN(value) && parseFloat(Number(value)) === value && !isNaN(parseInt(value, 10)); + } + }, { + key: "isFloat", + value: function isFloat(n) { + return Number(n) === n && n % 1 !== 0; + } + }, { + key: "isSafari", + value: function isSafari() { + return /^((?!chrome|android).)*safari/i.test(navigator.userAgent); + } + }, { + key: "isFirefox", + value: function isFirefox() { + return navigator.userAgent.toLowerCase().indexOf('firefox') > -1; + } + }, { + key: "isIE11", + value: function isIE11() { + if (window.navigator.userAgent.indexOf('MSIE') !== -1 || window.navigator.appVersion.indexOf('Trident/') > -1) { + return true; + } + } + }, { + key: "isIE", + value: function isIE() { + var ua = window.navigator.userAgent; + var msie = ua.indexOf('MSIE '); + + if (msie > 0) { + // IE 10 or older => return version number + return parseInt(ua.substring(msie + 5, ua.indexOf('.', msie)), 10); + } + + var trident = ua.indexOf('Trident/'); + + if (trident > 0) { + // IE 11 => return version number + var rv = ua.indexOf('rv:'); + return parseInt(ua.substring(rv + 3, ua.indexOf('.', rv)), 10); + } + + var edge = ua.indexOf('Edge/'); + + if (edge > 0) { + // Edge (IE 12+) => return version number + return parseInt(ua.substring(edge + 5, ua.indexOf('.', edge)), 10); + } // other browser + + + return false; + } + }]); + + return Utils; + }(); + + /** + * ApexCharts Filters Class for setting hover/active states on the paths. + * + * @module Formatters + **/ + + var Filters = + /*#__PURE__*/ + function () { + function Filters(ctx) { + _classCallCheck(this, Filters); + + this.ctx = ctx; + this.w = ctx.w; + } // create a re-usable filter which can be appended other filter effects and applied to multiple elements + + + _createClass(Filters, [{ + key: "getDefaultFilter", + value: function getDefaultFilter(el, i) { + var w = this.w; + el.unfilter(true); + var filter = new window.SVG.Filter(); + filter.size('120%', '180%', '-5%', '-40%'); + + if (w.config.states.normal.filter !== 'none') { + this.applyFilter(el, i, w.config.states.normal.filter.type, w.config.states.normal.filter.value); + } else { + if (w.config.chart.dropShadow.enabled) { + this.dropShadow(el, w.config.chart.dropShadow, i); + } + } + } + }, { + key: "addNormalFilter", + value: function addNormalFilter(el, i) { + var w = this.w; + + if (w.config.chart.dropShadow.enabled) { + this.dropShadow(el, w.config.chart.dropShadow, i); + } + } // appends dropShadow to the filter object which can be chained with other filter effects + + }, { + key: "addLightenFilter", + value: function addLightenFilter(el, i, attrs) { + var _this = this; + + var w = this.w; + var intensity = attrs.intensity; + + if (Utils.isFirefox()) { + return; + } + + el.unfilter(true); + var filter = new window.SVG.Filter(); + filter.size('120%', '180%', '-5%', '-40%'); + el.filter(function (add) { + var shadowAttr = w.config.chart.dropShadow; + + if (shadowAttr.enabled) { + filter = _this.addShadow(add, i, shadowAttr); + } else { + filter = add; + } + + filter.componentTransfer({ + rgb: { + type: 'linear', + slope: 1.5, + intercept: intensity + } + }); + }); + el.filterer.node.setAttribute('filterUnits', 'userSpaceOnUse'); + } // appends dropShadow to the filter object which can be chained with other filter effects + + }, { + key: "addDarkenFilter", + value: function addDarkenFilter(el, i, attrs) { + var _this2 = this; + + var w = this.w; + var intensity = attrs.intensity; + + if (Utils.isFirefox()) { + return; + } + + el.unfilter(true); + var filter = new window.SVG.Filter(); + filter.size('120%', '180%', '-5%', '-40%'); + el.filter(function (add) { + var shadowAttr = w.config.chart.dropShadow; + + if (shadowAttr.enabled) { + filter = _this2.addShadow(add, i, shadowAttr); + } else { + filter = add; + } + + filter.componentTransfer({ + rgb: { + type: 'linear', + slope: intensity + } + }); + }); + el.filterer.node.setAttribute('filterUnits', 'userSpaceOnUse'); + } + }, { + key: "applyFilter", + value: function applyFilter(el, i, filter) { + var intensity = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 0.5; + + switch (filter) { + case 'none': + { + this.addNormalFilter(el, i); + break; + } + + case 'lighten': + { + this.addLightenFilter(el, i, { + intensity: intensity + }); + break; + } + + case 'darken': + { + this.addDarkenFilter(el, i, { + intensity: intensity + }); + break; + } + + default: + // do nothing + break; + } + } // appends dropShadow to the filter object which can be chained with other filter effects + + }, { + key: "addShadow", + value: function addShadow(add, i, attrs) { + var blur = attrs.blur, + top = attrs.top, + left = attrs.left, + color = attrs.color, + opacity = attrs.opacity; + var shadowBlur = add.flood(Array.isArray(color) ? color[i] : color, opacity).composite(add.sourceAlpha, 'in').offset(left, top).gaussianBlur(blur).merge(add.source); + return add.blend(add.source, shadowBlur); + } // directly adds dropShadow to the element and returns the same element. + // the only way it is different from the addShadow() function is that addShadow is chainable to other filters, while this function discards all filters and add dropShadow + + }, { + key: "dropShadow", + value: function dropShadow(el, attrs) { + var i = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0; + var top = attrs.top, + left = attrs.left, + blur = attrs.blur, + color = attrs.color, + opacity = attrs.opacity, + noUserSpaceOnUse = attrs.noUserSpaceOnUse; + var w = this.w; + el.unfilter(true); + + if (Utils.isIE() && w.config.chart.type === 'radialBar') { + // in radialbar charts, dropshadow is clipping actual drawing in IE + return el; + } + + color = Array.isArray(color) ? color[i] : color; + var filter = new window.SVG.Filter(); + filter.size('120%', '180%', '-5%', '-40%'); + el.filter(function (add) { + var shadowBlur = null; + + if (Utils.isSafari() || Utils.isFirefox() || Utils.isIE()) { + // safari/firefox has some alternative way to use this filter + shadowBlur = add.flood(color, opacity).composite(add.sourceAlpha, 'in').offset(left, top).gaussianBlur(blur); + } else { + shadowBlur = add.flood(color, opacity).composite(add.sourceAlpha, 'in').offset(left, top).gaussianBlur(blur).merge(add.source); + } + + add.blend(add.source, shadowBlur); + }); + + if (!noUserSpaceOnUse) { + el.filterer.node.setAttribute('filterUnits', 'userSpaceOnUse'); + } + + return el; + } + }, { + key: "setSelectionFilter", + value: function setSelectionFilter(el, realIndex, dataPointIndex) { + var w = this.w; + + if (typeof w.globals.selectedDataPoints[realIndex] !== 'undefined') { + if (w.globals.selectedDataPoints[realIndex].indexOf(dataPointIndex) > -1) { + el.node.setAttribute('selected', true); + var activeFilter = w.config.states.active.filter; + + if (activeFilter !== 'none') { + this.applyFilter(el, realIndex, activeFilter.type, activeFilter.value); + } + } + } + } + }]); + + return Filters; + }(); + + /** + * ApexCharts Animation Class. + * + * @module Animations + **/ + + var Animations = + /*#__PURE__*/ + function () { + function Animations(ctx) { + _classCallCheck(this, Animations); + + this.ctx = ctx; + this.w = ctx.w; + this.setEasingFunctions(); + } + + _createClass(Animations, [{ + key: "setEasingFunctions", + value: function setEasingFunctions() { + var easing; + if (this.w.globals.easing) return; + var userDefinedEasing = this.w.config.chart.animations.easing; + + switch (userDefinedEasing) { + case 'linear': + { + easing = '-'; + break; + } + + case 'easein': + { + easing = '<'; + break; + } + + case 'easeout': + { + easing = '>'; + break; + } + + case 'easeinout': + { + easing = '<>'; + break; + } + + case 'swing': + { + easing = function easing(pos) { + var s = 1.70158; + return (pos -= 1) * pos * ((s + 1) * pos + s) + 1; + }; + + break; + } + + case 'bounce': + { + easing = function easing(pos) { + if (pos < 1 / 2.75) { + return 7.5625 * pos * pos; + } else if (pos < 2 / 2.75) { + return 7.5625 * (pos -= 1.5 / 2.75) * pos + 0.75; + } else if (pos < 2.5 / 2.75) { + return 7.5625 * (pos -= 2.25 / 2.75) * pos + 0.9375; + } else { + return 7.5625 * (pos -= 2.625 / 2.75) * pos + 0.984375; + } + }; + + break; + } + + case 'elastic': + { + easing = function easing(pos) { + if (pos === !!pos) return pos; + return Math.pow(2, -10 * pos) * Math.sin((pos - 0.075) * (2 * Math.PI) / 0.3) + 1; + }; + + break; + } + + default: + { + easing = '<>'; + } + } + + this.w.globals.easing = easing; + } + }, { + key: "animateLine", + value: function animateLine(el, from, to, speed) { + el.attr(from).animate(speed).attr(to); + } + /* + ** Animate radius of a circle element + */ + + }, { + key: "animateCircleRadius", + value: function animateCircleRadius(el, from, to, speed, easing) { + if (!from) from = 0; + el.attr({ + r: from + }).animate(speed, easing).attr({ + r: to + }); + } + /* + ** Animate radius and position of a circle element + */ + + }, { + key: "animateCircle", + value: function animateCircle(el, from, to, speed, easing) { + el.attr({ + r: from.r, + cx: from.cx, + cy: from.cy + }).animate(speed, easing).attr({ + r: to.r, + cx: to.cx, + cy: to.cy + }); + } + /* + ** Animate rect properties + */ + + }, { + key: "animateRect", + value: function animateRect(el, from, to, speed, fn) { + el.attr(from).animate(speed).attr(to).afterAll(function () { + fn(); + }); + } + }, { + key: "animatePathsGradually", + value: function animatePathsGradually(params) { + var el = params.el, + j = params.j, + pathFrom = params.pathFrom, + pathTo = params.pathTo, + speed = params.speed, + delay = params.delay, + strokeWidth = params.strokeWidth; + var me = this; + var w = this.w; + var delayFactor = 0; + + if (w.config.chart.animations.animateGradually.enabled) { + delayFactor = w.config.chart.animations.animateGradually.delay; + } + + if (w.config.chart.animations.dynamicAnimation.enabled && w.globals.dataChanged) { + delayFactor = 0; + } + + me.morphSVG(el, j, pathFrom, pathTo, speed, strokeWidth, delay * delayFactor); + } + }, { + key: "showDelayedElements", + value: function showDelayedElements() { + this.w.globals.delayedElements.forEach(function (d) { + var ele = d.el; + ele.classList.remove('hidden'); + }); + } + }, { + key: "animationCompleted", + value: function animationCompleted() { + var w = this.w; + w.globals.animationEnded = true; + + if (typeof w.config.chart.events.animationEnd === 'function') { + w.config.chart.events.animationEnd(this.ctx, w); + } + } // SVG.js animation for morphing one path to another + + }, { + key: "morphSVG", + value: function morphSVG(el, j, pathFrom, pathTo, speed, strokeWidth, delay) { + var _this = this; + + var w = this.w; + + if (!pathFrom) { + pathFrom = el.attr('pathFrom'); + } + + if (!pathTo) { + pathTo = el.attr('pathTo'); + } + + if (!pathFrom || pathFrom.indexOf('undefined') > -1 || pathFrom.indexOf('NaN') > -1) { + pathFrom = "M 0 ".concat(w.globals.gridHeight); + speed = 1; + } + + if (pathTo.indexOf('undefined') > -1 || pathTo.indexOf('NaN') > -1) { + pathTo = "M 0 ".concat(w.globals.gridHeight); + speed = 1; + } + + if (!w.globals.shouldAnimate) { + speed = 1; + } + + el.plot(pathFrom).animate(1, w.globals.easing, delay).plot(pathFrom).animate(speed, w.globals.easing, delay).plot(pathTo).afterAll(function () { + // a flag to indicate that the original mount function can return true now as animation finished here + if (Utils.isNumber(j)) { + if (j === w.globals.series[w.globals.maxValsInArrayIndex].length - 2 && w.globals.shouldAnimate) { + _this.animationCompleted(); + } + } else if (w.globals.shouldAnimate) { + _this.animationCompleted(); + } + + _this.showDelayedElements(); + }); + } + }]); + + return Animations; + }(); + + /** + * ApexCharts Graphics Class for all drawing operations. + * + * @module Graphics + **/ + + var Graphics = + /*#__PURE__*/ + function () { + function Graphics(ctx) { + _classCallCheck(this, Graphics); + + this.ctx = ctx; + this.w = ctx.w; + } + + _createClass(Graphics, [{ + key: "drawLine", + value: function drawLine(x1, y1, x2, y2) { + var lineColor = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : '#a8a8a8'; + var dashArray = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 0; + var strokeWidth = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : null; + var w = this.w; + var line = w.globals.dom.Paper.line().attr({ + x1: x1, + y1: y1, + x2: x2, + y2: y2, + stroke: lineColor, + 'stroke-dasharray': dashArray, + 'stroke-width': strokeWidth + }); + return line; + } + }, { + key: "drawRect", + value: function drawRect() { + var x1 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0; + var y1 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; + var x2 = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0; + var y2 = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 0; + var radius = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 0; + var color = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : '#fefefe'; + var opacity = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : 1; + var strokeWidth = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : null; + var strokeColor = arguments.length > 8 && arguments[8] !== undefined ? arguments[8] : null; + var strokeDashArray = arguments.length > 9 && arguments[9] !== undefined ? arguments[9] : 0; + var w = this.w; + var rect = w.globals.dom.Paper.rect(); + rect.attr({ + x: x1, + y: y1, + width: x2 > 0 ? x2 : 0, + height: y2 > 0 ? y2 : 0, + rx: radius, + ry: radius, + fill: color, + opacity: opacity, + 'stroke-width': strokeWidth !== null ? strokeWidth : 0, + stroke: strokeColor !== null ? strokeColor : 'none', + 'stroke-dasharray': strokeDashArray + }); + return rect; + } + }, { + key: "drawPolygon", + value: function drawPolygon(polygonString) { + var stroke = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '#e1e1e1'; + var fill = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'none'; + var w = this.w; + var polygon = w.globals.dom.Paper.polygon(polygonString).attr({ + fill: fill, + stroke: stroke + }); + return polygon; + } + }, { + key: "drawCircle", + value: function drawCircle(radius) { + var attrs = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + var w = this.w; + var c = w.globals.dom.Paper.circle(radius * 2); + + if (attrs !== null) { + c.attr(attrs); + } + + return c; + } + }, { + key: "drawPath", + value: function drawPath(_ref) { + var _ref$d = _ref.d, + d = _ref$d === void 0 ? '' : _ref$d, + _ref$stroke = _ref.stroke, + stroke = _ref$stroke === void 0 ? '#a8a8a8' : _ref$stroke, + _ref$strokeWidth = _ref.strokeWidth, + strokeWidth = _ref$strokeWidth === void 0 ? 1 : _ref$strokeWidth, + fill = _ref.fill, + _ref$fillOpacity = _ref.fillOpacity, + fillOpacity = _ref$fillOpacity === void 0 ? 1 : _ref$fillOpacity, + _ref$strokeOpacity = _ref.strokeOpacity, + strokeOpacity = _ref$strokeOpacity === void 0 ? 1 : _ref$strokeOpacity, + classes = _ref.classes, + _ref$strokeLinecap = _ref.strokeLinecap, + strokeLinecap = _ref$strokeLinecap === void 0 ? null : _ref$strokeLinecap, + _ref$strokeDashArray = _ref.strokeDashArray, + strokeDashArray = _ref$strokeDashArray === void 0 ? 0 : _ref$strokeDashArray; + var w = this.w; + + if (strokeLinecap === null) { + strokeLinecap = w.config.stroke.lineCap; + } + + if (d.indexOf('undefined') > -1 || d.indexOf('NaN') > -1) { + d = "M 0 ".concat(w.globals.gridHeight); + } + + var p = w.globals.dom.Paper.path(d).attr({ + fill: fill, + 'fill-opacity': fillOpacity, + stroke: stroke, + 'stroke-opacity': strokeOpacity, + 'stroke-linecap': strokeLinecap, + 'stroke-width': strokeWidth, + 'stroke-dasharray': strokeDashArray, + class: classes + }); + return p; + } + }, { + key: "group", + value: function group() { + var attrs = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var w = this.w; + var g = w.globals.dom.Paper.group(); + + if (attrs !== null) { + g.attr(attrs); + } + + return g; + } + }, { + key: "move", + value: function move(x, y) { + var move = ['M', x, y].join(' '); + return move; + } + }, { + key: "line", + value: function line(x, y) { + var hORv = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; + var line = null; + + if (hORv === null) { + line = ['L', x, y].join(' '); + } else if (hORv === 'H') { + line = ['H', x].join(' '); + } else if (hORv === 'V') { + line = ['V', y].join(' '); + } + + return line; + } + }, { + key: "curve", + value: function curve(x1, y1, x2, y2, x, y) { + var curve = ['C', x1, y1, x2, y2, x, y].join(' '); + return curve; + } + }, { + key: "quadraticCurve", + value: function quadraticCurve(x1, y1, x, y) { + var curve = ['Q', x1, y1, x, y].join(' '); + return curve; + } + }, { + key: "arc", + value: function arc(rx, ry, axisRotation, largeArcFlag, sweepFlag, x, y) { + var relative = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : false; + var coord = 'A'; + if (relative) coord = 'a'; + var arc = [coord, rx, ry, axisRotation, largeArcFlag, sweepFlag, x, y].join(' '); + return arc; + } + /** + * @memberof Graphics + * @param {object} + * i = series's index + * realIndex = realIndex is series's actual index when it was drawn time. After several redraws, the iterating "i" may change in loops, but realIndex doesn't + * pathFrom = existing pathFrom to animateTo + * pathTo = new Path to which d attr will be animated from pathFrom to pathTo + * stroke = line Color + * strokeWidth = width of path Line + * fill = it can be gradient, single color, pattern or image + * animationDelay = how much to delay when starting animation (in milliseconds) + * dataChangeSpeed = for dynamic animations, when data changes + * className = class attribute to add + * @return {object} svg.js path object + **/ + + }, { + key: "renderPaths", + value: function renderPaths(_ref2) { + var j = _ref2.j, + realIndex = _ref2.realIndex, + pathFrom = _ref2.pathFrom, + pathTo = _ref2.pathTo, + stroke = _ref2.stroke, + strokeWidth = _ref2.strokeWidth, + strokeLinecap = _ref2.strokeLinecap, + fill = _ref2.fill, + animationDelay = _ref2.animationDelay, + initialSpeed = _ref2.initialSpeed, + dataChangeSpeed = _ref2.dataChangeSpeed, + className = _ref2.className, + _ref2$shouldClipToGri = _ref2.shouldClipToGrid, + shouldClipToGrid = _ref2$shouldClipToGri === void 0 ? true : _ref2$shouldClipToGri, + _ref2$bindEventsOnPat = _ref2.bindEventsOnPaths, + bindEventsOnPaths = _ref2$bindEventsOnPat === void 0 ? true : _ref2$bindEventsOnPat, + _ref2$drawShadow = _ref2.drawShadow, + drawShadow = _ref2$drawShadow === void 0 ? true : _ref2$drawShadow; + var w = this.w; + var filters = new Filters(this.ctx); + var anim = new Animations(this.ctx); + var initialAnim = this.w.config.chart.animations.enabled; + var dynamicAnim = initialAnim && this.w.config.chart.animations.dynamicAnimation.enabled; + var d; + var shouldAnimate = !!(initialAnim && !w.globals.resized || dynamicAnim && w.globals.dataChanged && w.globals.shouldAnimate); + + if (shouldAnimate) { + d = pathFrom; + } else { + d = pathTo; + anim.animationCompleted(); + } + + var strokeDashArrayOpt = w.config.stroke.dashArray; + var strokeDashArray = 0; + + if (Array.isArray(strokeDashArrayOpt)) { + strokeDashArray = strokeDashArrayOpt[realIndex]; + } else { + strokeDashArray = w.config.stroke.dashArray; + } + + var el = this.drawPath({ + d: d, + stroke: stroke, + strokeWidth: strokeWidth, + fill: fill, + fillOpacity: 1, + classes: className, + strokeLinecap: strokeLinecap, + strokeDashArray: strokeDashArray + }); + el.attr('index', realIndex); + + if (shouldClipToGrid) { + el.attr({ + 'clip-path': "url(#gridRectMask".concat(w.globals.cuid, ")") + }); + } // const defaultFilter = el.filterer + + + if (w.config.states.normal.filter.type !== 'none') { + filters.getDefaultFilter(el, realIndex); + } else { + if (w.config.chart.dropShadow.enabled && drawShadow) { + if (!w.config.chart.dropShadow.enabledSeries || w.config.chart.dropShadow.enabledSeries && w.config.chart.dropShadow.enabledSeries.indexOf(realIndex) !== -1) { + var shadow = w.config.chart.dropShadow; + filters.dropShadow(el, shadow, realIndex); + } + } + } + + if (bindEventsOnPaths) { + el.node.addEventListener('mouseenter', this.pathMouseEnter.bind(this, el)); + el.node.addEventListener('mouseleave', this.pathMouseLeave.bind(this, el)); + el.node.addEventListener('mousedown', this.pathMouseDown.bind(this, el)); + } + + el.attr({ + pathTo: pathTo, + pathFrom: pathFrom + }); + var defaultAnimateOpts = { + el: el, + j: j, + pathFrom: pathFrom, + pathTo: pathTo, + strokeWidth: strokeWidth + }; + + if (initialAnim && !w.globals.resized && !w.globals.dataChanged) { + anim.animatePathsGradually(_objectSpread({}, defaultAnimateOpts, { + speed: initialSpeed, + delay: animationDelay + })); + } else { + if (w.globals.resized || !w.globals.dataChanged) { + anim.showDelayedElements(); + } + } + + if (w.globals.dataChanged && dynamicAnim && shouldAnimate) { + anim.animatePathsGradually(_objectSpread({}, defaultAnimateOpts, { + speed: dataChangeSpeed + })); + } + + return el; + } + }, { + key: "drawPattern", + value: function drawPattern(style, width, height) { + var stroke = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : '#a8a8a8'; + var strokeWidth = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 0; + var w = this.w; + var p = w.globals.dom.Paper.pattern(width, height, function (add) { + if (style === 'horizontalLines') { + add.line(0, 0, height, 0).stroke({ + color: stroke, + width: strokeWidth + 1 + }); + } else if (style === 'verticalLines') { + add.line(0, 0, 0, width).stroke({ + color: stroke, + width: strokeWidth + 1 + }); + } else if (style === 'slantedLines') { + add.line(0, 0, width, height).stroke({ + color: stroke, + width: strokeWidth + }); + } else if (style === 'squares') { + add.rect(width, height).fill('none').stroke({ + color: stroke, + width: strokeWidth + }); + } else if (style === 'circles') { + add.circle(width).fill('none').stroke({ + color: stroke, + width: strokeWidth + }); + } + }); + return p; + } + }, { + key: "drawGradient", + value: function drawGradient(style, gfrom, gto, opacityFrom, opacityTo) { + var size = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : null; + var stops = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : null; + var colorStops = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : null; + var i = arguments.length > 8 && arguments[8] !== undefined ? arguments[8] : 0; + var w = this.w; + var g; + gfrom = Utils.hexToRgba(gfrom, opacityFrom); + gto = Utils.hexToRgba(gto, opacityTo); + var stop1 = 0; + var stop2 = 1; + var stop3 = 1; + var stop4 = null; + + if (stops !== null) { + stop1 = typeof stops[0] !== 'undefined' ? stops[0] / 100 : 0; + stop2 = typeof stops[1] !== 'undefined' ? stops[1] / 100 : 1; + stop3 = typeof stops[2] !== 'undefined' ? stops[2] / 100 : 1; + stop4 = typeof stops[3] !== 'undefined' ? stops[3] / 100 : null; + } + + var radial = !!(w.config.chart.type === 'donut' || w.config.chart.type === 'pie' || w.config.chart.type === 'bubble'); + + if (colorStops === null || colorStops.length === 0) { + g = w.globals.dom.Paper.gradient(radial ? 'radial' : 'linear', function (stop) { + stop.at(stop1, gfrom, opacityFrom); + stop.at(stop2, gto, opacityTo); + stop.at(stop3, gto, opacityTo); + + if (stop4 !== null) { + stop.at(stop4, gfrom, opacityFrom); + } + }); + } else { + g = w.globals.dom.Paper.gradient(radial ? 'radial' : 'linear', function (stop) { + var stops = Array.isArray(colorStops[i]) ? colorStops[i] : colorStops; + stops.forEach(function (s) { + stop.at(s.offset / 100, s.color, s.opacity); + }); + }); + } + + if (!radial) { + if (style === 'vertical') { + g.from(0, 0).to(0, 1); + } else if (style === 'diagonal') { + g.from(0, 0).to(1, 1); + } else if (style === 'horizontal') { + g.from(0, 1).to(1, 1); + } else if (style === 'diagonal2') { + g.from(0, 1).to(2, 2); + } + } else { + var offx = w.globals.gridWidth / 2; + var offy = w.globals.gridHeight / 2; + + if (w.config.chart.type !== 'bubble') { + g.attr({ + gradientUnits: 'userSpaceOnUse', + cx: offx, + cy: offy, + r: size + }); + } else { + g.attr({ + cx: 0.5, + cy: 0.5, + r: 0.8, + fx: 0.2, + fy: 0.2 + }); + } + } + + return g; + } + }, { + key: "drawText", + value: function drawText(opts) { + var w = this.w; + var x = opts.x, + y = opts.y, + text = opts.text, + textAnchor = opts.textAnchor, + fontSize = opts.fontSize, + fontFamily = opts.fontFamily, + fontWeight = opts.fontWeight, + foreColor = opts.foreColor, + opacity = opts.opacity; + if (typeof text === 'undefined') text = ''; + + if (!textAnchor) { + textAnchor = 'start'; + } + + if (!foreColor) { + foreColor = w.config.chart.foreColor; + } + + fontFamily = fontFamily || w.config.chart.fontFamily; + fontWeight = fontWeight || 'regular'; + var elText; + + if (Array.isArray(text)) { + elText = w.globals.dom.Paper.text(function (add) { + for (var i = 0; i < text.length; i++) { + add.tspan(text[i]); + } + }); + } else { + elText = w.globals.dom.Paper.plain(text); + } + + elText.attr({ + x: x, + y: y, + 'text-anchor': textAnchor, + 'dominant-baseline': 'auto', + 'font-size': fontSize, + 'font-family': fontFamily, + 'font-weight': fontWeight, + fill: foreColor, + class: 'apexcharts-text ' + opts.cssClass ? opts.cssClass : '' + }); + elText.node.style.fontFamily = fontFamily; + elText.node.style.opacity = opacity; + return elText; + } + }, { + key: "addTspan", + value: function addTspan(textEl, text, fontFamily) { + var tspan = textEl.tspan(text); + + if (!fontFamily) { + fontFamily = this.w.config.chart.fontFamily; + } + + tspan.node.style.fontFamily = fontFamily; + } + }, { + key: "drawMarker", + value: function drawMarker(x, y, opts) { + x = x || 0; + var size = opts.pSize || 0; + var elPoint = null; + + if (opts.shape === 'square') { + var radius = opts.pRadius === undefined ? size / 2 : opts.pRadius; + + if (y === null) { + size = 0; + radius = 0; + } + + var nSize = size * 1.2 + radius; + var p = this.drawRect(nSize, nSize, nSize, nSize, radius); + p.attr({ + x: x - nSize / 2, + y: y - nSize / 2, + cx: x, + cy: y, + class: opts.class ? opts.class : '', + fill: opts.pointFillColor, + 'fill-opacity': opts.pointFillOpacity ? opts.pointFillOpacity : 1, + stroke: opts.pointStrokeColor, + 'stroke-width': opts.pWidth ? opts.pWidth : 0, + 'stroke-opacity': opts.pointStrokeOpacity ? opts.pointStrokeOpacity : 1 + }); + elPoint = p; + } else if (opts.shape === 'circle') { + if (!Utils.isNumber(y)) { + size = 0; + y = 0; + } // let nSize = size - opts.pRadius / 2 < 0 ? 0 : size - opts.pRadius / 2 + + + elPoint = this.drawCircle(size, { + cx: x, + cy: y, + class: opts.class ? opts.class : '', + stroke: opts.pointStrokeColor, + fill: opts.pointFillColor, + 'fill-opacity': opts.pointFillOpacity ? opts.pointFillOpacity : 1, + 'stroke-width': opts.pWidth ? opts.pWidth : 0, + 'stroke-opacity': opts.pointStrokeOpacity ? opts.pointStrokeOpacity : 1 + }); + } + + return elPoint; + } + }, { + key: "pathMouseEnter", + value: function pathMouseEnter(path, e) { + var w = this.w; + var filters = new Filters(this.ctx); + var i = parseInt(path.node.getAttribute('index')); + var j = parseInt(path.node.getAttribute('j')); + + if (typeof w.config.chart.events.dataPointMouseEnter === 'function') { + w.config.chart.events.dataPointMouseEnter(e, this.ctx, { + seriesIndex: i, + dataPointIndex: j, + w: w + }); + } + + this.ctx.fireEvent('dataPointMouseEnter', [e, this.ctx, { + seriesIndex: i, + dataPointIndex: j, + w: w + }]); + + if (w.config.states.active.filter.type !== 'none') { + if (path.node.getAttribute('selected') === 'true') { + return; + } + } + + if (w.config.states.hover.filter.type !== 'none') { + if (w.config.states.active.filter.type !== 'none' && !w.globals.isTouchDevice) { + var hoverFilter = w.config.states.hover.filter; + filters.applyFilter(path, i, hoverFilter.type, hoverFilter.value); + } + } + } + }, { + key: "pathMouseLeave", + value: function pathMouseLeave(path, e) { + var w = this.w; + var filters = new Filters(this.ctx); + var i = parseInt(path.node.getAttribute('index')); + var j = parseInt(path.node.getAttribute('j')); + + if (typeof w.config.chart.events.dataPointMouseLeave === 'function') { + w.config.chart.events.dataPointMouseLeave(e, this.ctx, { + seriesIndex: i, + dataPointIndex: j, + w: w + }); + } + + this.ctx.fireEvent('dataPointMouseLeave', [e, this.ctx, { + seriesIndex: i, + dataPointIndex: j, + w: w + }]); + + if (w.config.states.active.filter.type !== 'none') { + if (path.node.getAttribute('selected') === 'true') { + return; + } + } + + if (w.config.states.hover.filter.type !== 'none') { + filters.getDefaultFilter(path, i); + } + } + }, { + key: "pathMouseDown", + value: function pathMouseDown(path, e) { + var w = this.w; + var filters = new Filters(this.ctx); + var i = parseInt(path.node.getAttribute('index')); + var j = parseInt(path.node.getAttribute('j')); + var selected = 'false'; + + if (path.node.getAttribute('selected') === 'true') { + path.node.setAttribute('selected', 'false'); + + if (w.globals.selectedDataPoints[i].indexOf(j) > -1) { + var index = w.globals.selectedDataPoints[i].indexOf(j); + w.globals.selectedDataPoints[i].splice(index, 1); + } + } else { + if (!w.config.states.active.allowMultipleDataPointsSelection && w.globals.selectedDataPoints.length > 0) { + w.globals.selectedDataPoints = []; + var elPaths = w.globals.dom.Paper.select('.apexcharts-series path').members; + var elCircles = w.globals.dom.Paper.select('.apexcharts-series circle, .apexcharts-series rect').members; + elPaths.forEach(function (elPath) { + elPath.node.setAttribute('selected', 'false'); + filters.getDefaultFilter(elPath, i); + }); + elCircles.forEach(function (circle) { + circle.node.setAttribute('selected', 'false'); + filters.getDefaultFilter(circle, i); + }); + } + + path.node.setAttribute('selected', 'true'); + selected = 'true'; + + if (typeof w.globals.selectedDataPoints[i] === 'undefined') { + w.globals.selectedDataPoints[i] = []; + } + + w.globals.selectedDataPoints[i].push(j); + } + + if (selected === 'true') { + var activeFilter = w.config.states.active.filter; + + if (activeFilter !== 'none') { + filters.applyFilter(path, i, activeFilter.type, activeFilter.value); + } + } else { + if (w.config.states.active.filter.type !== 'none') { + filters.getDefaultFilter(path, i); + } + } + + if (typeof w.config.chart.events.dataPointSelection === 'function') { + w.config.chart.events.dataPointSelection(e, this.ctx, { + selectedDataPoints: w.globals.selectedDataPoints, + seriesIndex: i, + dataPointIndex: j, + w: w + }); + } + + if (e) { + this.ctx.fireEvent('dataPointSelection', [e, this.ctx, { + selectedDataPoints: w.globals.selectedDataPoints, + seriesIndex: i, + dataPointIndex: j, + w: w + }]); + } + } + }, { + key: "rotateAroundCenter", + value: function rotateAroundCenter(el) { + var coord = el.getBBox(); + var x = coord.x + coord.width / 2; + var y = coord.y + coord.height / 2; + return { + x: x, + y: y + }; + } + }, { + key: "getTextRects", + value: function getTextRects(text, fontSize, fontFamily, transform) { + var useBBox = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; + var w = this.w; + var virtualText = this.drawText({ + x: -200, + y: -200, + text: text, + textAnchor: 'start', + fontSize: fontSize, + fontFamily: fontFamily, + foreColor: '#fff', + opacity: 0 + }); + + if (transform) { + virtualText.attr('transform', transform); + } + + w.globals.dom.Paper.add(virtualText); + var rect = virtualText.bbox(); + + if (!useBBox) { + rect = virtualText.node.getBoundingClientRect(); + } + + virtualText.remove(); + return { + width: rect.width, + height: rect.height + }; + } + /** + * append ... to long text + * http://stackoverflow.com/questions/9241315/trimming-text-to-a-given-pixel-width-in-svg + * @memberof Graphics + **/ + + }, { + key: "placeTextWithEllipsis", + value: function placeTextWithEllipsis(textObj, textString, width) { + textObj.textContent = textString; + + if (textString.length > 0) { + // ellipsis is needed + if (textObj.getComputedTextLength() >= width) { + for (var x = textString.length - 3; x > 0; x -= 3) { + if (textObj.getSubStringLength(0, x) <= width) { + textObj.textContent = textString.substring(0, x) + '...'; + return; + } + } + + textObj.textContent = '...'; // can't place at all + } + } + } + }], [{ + key: "setAttrs", + value: function setAttrs(el, attrs) { + for (var key in attrs) { + if (attrs.hasOwnProperty(key)) { + el.setAttribute(key, attrs[key]); + } + } + } + }]); + + return Graphics; + }(); + + const name = "en"; + const options = { + months: [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + shortMonths: [ + "Jan", + "Feb", + "Mar", + "Apr", + "May", + "Jun", + "Jul", + "Aug", + "Sep", + "Oct", + "Nov", + "Dec" + ], + days: [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + shortDays: [ + "Sun", + "Mon", + "Tue", + "Wed", + "Thu", + "Fri", + "Sat" + ], + toolbar: { + exportToSVG: "Download SVG", + exportToPNG: "Download PNG", + menu: "Menu", + selection: "Selection", + selectionZoom: "Selection Zoom", + zoomIn: "Zoom In", + zoomOut: "Zoom Out", + pan: "Panning", + reset: "Reset Zoom" + } + }; + var en = { + name: name, + options: options + }; + + var Options = + /*#__PURE__*/ + function () { + function Options() { + _classCallCheck(this, Options); + + this.yAxis = { + show: true, + showAlways: false, + seriesName: undefined, + opposite: false, + reversed: false, + logarithmic: false, + tickAmount: undefined, + forceNiceScale: false, + max: undefined, + min: undefined, + floating: false, + decimalsInFloat: undefined, + labels: { + show: true, + minWidth: 0, + maxWidth: 160, + offsetX: 0, + offsetY: 0, + align: undefined, + rotate: 0, + padding: 20, + style: { + colors: [], + fontSize: '11px', + fontFamily: undefined, + cssClass: '' + }, + formatter: undefined + }, + axisBorder: { + show: false, + color: '#78909C', + offsetX: 0, + offsetY: 0 + }, + axisTicks: { + show: false, + color: '#78909C', + width: 6, + offsetX: 0, + offsetY: 0 + }, + title: { + text: undefined, + rotate: 90, + offsetY: 0, + offsetX: 0, + style: { + color: undefined, + fontSize: '11px', + fontFamily: undefined, + cssClass: '' + } + }, + tooltip: { + enabled: false, + offsetX: 0 + }, + crosshairs: { + show: true, + position: 'front', + stroke: { + color: '#b6b6b6', + width: 1, + dashArray: 0 + } + } + }; + this.xAxisAnnotation = { + x: 0, + x2: null, + strokeDashArray: 1, + fillColor: '#c2c2c2', + borderColor: '#c2c2c2', + opacity: 0.3, + offsetX: 0, + offsetY: 0, + label: { + borderColor: '#c2c2c2', + borderWidth: 1, + text: undefined, + textAnchor: 'middle', + orientation: 'vertical', + position: 'top', + offsetX: 0, + offsetY: 0, + style: { + background: '#fff', + color: undefined, + fontSize: '11px', + fontFamily: undefined, + cssClass: '', + padding: { + left: 5, + right: 5, + top: 2, + bottom: 2 + } + } + } + }; + this.yAxisAnnotation = { + y: 0, + y2: null, + strokeDashArray: 1, + fillColor: '#c2c2c2', + borderColor: '#c2c2c2', + opacity: 0.3, + offsetX: 0, + offsetY: 0, + yAxisIndex: 0, + label: { + borderColor: '#c2c2c2', + borderWidth: 1, + text: undefined, + textAnchor: 'end', + position: 'right', + offsetX: 0, + offsetY: -3, + style: { + background: '#fff', + color: undefined, + fontSize: '11px', + fontFamily: undefined, + cssClass: '', + padding: { + left: 5, + right: 5, + top: 0, + bottom: 2 + } + } + } + }; + this.pointAnnotation = { + x: 0, + y: null, + yAxisIndex: 0, + seriesIndex: 0, + marker: { + size: 4, + fillColor: '#fff', + strokeWidth: 2, + strokeColor: '#333', + shape: 'circle', + offsetX: 0, + offsetY: 0, + radius: 2, + cssClass: '' + }, + label: { + borderColor: '#c2c2c2', + borderWidth: 1, + text: undefined, + textAnchor: 'middle', + offsetX: 0, + offsetY: -15, + style: { + background: '#fff', + color: undefined, + fontSize: '11px', + fontFamily: undefined, + cssClass: '', + padding: { + left: 5, + right: 5, + top: 0, + bottom: 2 + } + } + }, + customSVG: { + SVG: undefined, + cssClass: undefined, + offsetX: 0, + offsetY: 0 + } + }; + } + + _createClass(Options, [{ + key: "init", + value: function init() { + return { + annotations: { + position: 'front', + yaxis: [this.yAxisAnnotation], + xaxis: [this.xAxisAnnotation], + points: [this.pointAnnotation] + }, + chart: { + animations: { + enabled: true, + easing: 'easeinout', + // linear, easeout, easein, easeinout, swing, bounce, elastic + speed: 800, + animateGradually: { + delay: 150, + enabled: true + }, + dynamicAnimation: { + enabled: true, + speed: 350 + } + }, + background: 'transparent', + locales: [en], + defaultLocale: 'en', + dropShadow: { + enabled: false, + enabledSeries: undefined, + top: 2, + left: 2, + blur: 4, + color: '#000', + opacity: 0.35 + }, + events: { + animationEnd: undefined, + beforeMount: undefined, + mounted: undefined, + updated: undefined, + click: undefined, + mouseMove: undefined, + legendClick: undefined, + markerClick: undefined, + selection: undefined, + dataPointSelection: undefined, + dataPointMouseEnter: undefined, + dataPointMouseLeave: undefined, + beforeZoom: undefined, + zoomed: undefined, + scrolled: undefined + }, + foreColor: '#373d3f', + fontFamily: 'Helvetica, Arial, sans-serif', + height: 'auto', + parentHeightOffset: 15, + id: undefined, + group: undefined, + offsetX: 0, + offsetY: 0, + selection: { + enabled: false, + type: 'x', + // selectedPoints: undefined, // default datapoints that should be selected automatically + fill: { + color: '#24292e', + opacity: 0.1 + }, + stroke: { + width: 1, + color: '#24292e', + opacity: 0.4, + dashArray: 3 + }, + xaxis: { + min: undefined, + max: undefined + }, + yaxis: { + min: undefined, + max: undefined + } + }, + sparkline: { + enabled: false + }, + brush: { + enabled: false, + autoScaleYaxis: true, + target: undefined + }, + stacked: false, + stackType: 'normal', + toolbar: { + show: true, + tools: { + download: true, + selection: true, + zoom: true, + zoomin: true, + zoomout: true, + pan: true, + reset: true, + customIcons: [] + }, + autoSelected: 'zoom' // accepts -> zoom, pan, selection + + }, + type: 'line', + width: '100%', + zoom: { + enabled: true, + type: 'x', + autoScaleYaxis: false, + zoomedArea: { + fill: { + color: '#90CAF9', + opacity: 0.4 + }, + stroke: { + color: '#0D47A1', + opacity: 0.4, + width: 1 + } + } + } + }, + plotOptions: { + bar: { + horizontal: false, + columnWidth: '70%', + // should be in percent 0 - 100 + barHeight: '70%', + // should be in percent 0 - 100 + distributed: false, + endingShape: 'flat', + colors: { + ranges: [], + backgroundBarColors: [], + backgroundBarOpacity: 1 + }, + dataLabels: { + maxItems: 100, + hideOverflowingLabels: true, + position: 'top' // top, center, bottom + // TODO: provide stackedLabels for stacked charts which gives additions of values + + } + }, + candlestick: { + colors: { + upward: '#00B746', + downward: '#EF403C' + }, + wick: { + useFillColor: true + } + }, + heatmap: { + radius: 2, + enableShades: true, + shadeIntensity: 0.5, + reverseNegativeShade: true, + distributed: false, + colorScale: { + inverse: false, + ranges: [], + min: undefined, + max: undefined + } + }, + radialBar: { + size: undefined, + inverseOrder: false, + startAngle: 0, + endAngle: 360, + offsetX: 0, + offsetY: 0, + hollow: { + margin: 5, + size: '50%', + background: 'transparent', + image: undefined, + imageWidth: 150, + imageHeight: 150, + imageOffsetX: 0, + imageOffsetY: 0, + imageClipped: true, + position: 'front', + dropShadow: { + enabled: false, + top: 0, + left: 0, + blur: 3, + color: '#000', + opacity: 0.5 + } + }, + track: { + show: true, + startAngle: undefined, + endAngle: undefined, + background: '#f2f2f2', + strokeWidth: '97%', + opacity: 1, + margin: 5, + // margin is in pixels + dropShadow: { + enabled: false, + top: 0, + left: 0, + blur: 3, + color: '#000', + opacity: 0.5 + } + }, + dataLabels: { + show: true, + name: { + show: true, + fontSize: '16px', + fontFamily: undefined, + color: undefined, + offsetY: 0 + }, + value: { + show: true, + fontSize: '14px', + fontFamily: undefined, + color: undefined, + offsetY: 16, + formatter: function formatter(val) { + return val + '%'; + } + }, + total: { + show: false, + label: 'Total', + color: undefined, + formatter: function formatter(w) { + return w.globals.seriesTotals.reduce(function (a, b) { + return a + b; + }, 0) / w.globals.series.length + '%'; + } + } + } + }, + rangeBar: {}, + pie: { + size: undefined, + customScale: 1, + offsetX: 0, + offsetY: 0, + expandOnClick: true, + dataLabels: { + // These are the percentage values which are displayed on slice + offset: 0, + // offset by which labels will move outside + minAngleToShowLabel: 10 + }, + donut: { + size: '65%', + background: 'transparent', + labels: { + // These are the inner labels appearing inside donut + show: false, + name: { + show: true, + fontSize: '16px', + fontFamily: undefined, + color: undefined, + offsetY: -10 + }, + value: { + show: true, + fontSize: '20px', + fontFamily: undefined, + color: undefined, + offsetY: 10, + formatter: function formatter(val) { + return val; + } + }, + total: { + show: false, + label: 'Total', + color: undefined, + formatter: function formatter(w) { + return w.globals.seriesTotals.reduce(function (a, b) { + return a + b; + }, 0); + } + } + } + } + }, + radar: { + size: undefined, + offsetX: 0, + offsetY: 0, + polygons: { + // strokeColor: '#e8e8e8', // should be deprecated in the minor version i.e 3.2 + strokeColors: '#e8e8e8', + connectorColors: '#e8e8e8', + fill: { + colors: undefined + } + } + } + }, + colors: undefined, + dataLabels: { + enabled: true, + enabledOnSeries: undefined, + formatter: function formatter(val) { + return val !== null ? val : ''; + }, + textAnchor: 'middle', + offsetX: 0, + offsetY: 0, + style: { + fontSize: '12px', + fontFamily: undefined, + colors: undefined + }, + dropShadow: { + enabled: false, + top: 1, + left: 1, + blur: 1, + color: '#000', + opacity: 0.45 + } + }, + fill: { + type: 'solid', + colors: undefined, + // array of colors + opacity: 0.85, + gradient: { + shade: 'dark', + type: 'horizontal', + shadeIntensity: 0.5, + gradientToColors: undefined, + inverseColors: true, + opacityFrom: 1, + opacityTo: 1, + stops: [0, 50, 100], + colorStops: [] + }, + image: { + src: [], + width: undefined, + // optional + height: undefined // optional + + }, + pattern: { + style: 'sqaures', + // String | Array of Strings + width: 6, + height: 6, + strokeWidth: 2 + } + }, + grid: { + show: true, + borderColor: '#e0e0e0', + strokeDashArray: 0, + position: 'back', + xaxis: { + lines: { + show: false, + animate: false + } + }, + yaxis: { + lines: { + show: true, + animate: false + } + }, + row: { + colors: undefined, + // takes as array which will be repeated on rows + opacity: 0.5 + }, + column: { + colors: undefined, + // takes an array which will be repeated on columns + opacity: 0.5 + }, + padding: { + top: 0, + right: 10, + bottom: 0, + left: 12 + } + }, + labels: [], + legend: { + show: true, + showForSingleSeries: false, + showForNullSeries: true, + showForZeroSeries: true, + floating: false, + position: 'bottom', + // whether to position legends in 1 of 4 + // direction - top, bottom, left, right + horizontalAlign: 'center', + // when position top/bottom, you can specify whether to align legends left, right or center + inverseOrder: false, + fontSize: '12px', + fontFamily: undefined, + width: undefined, + height: undefined, + formatter: undefined, + tooltipHoverFormatter: undefined, + offsetX: -20, + offsetY: 0, + labels: { + colors: undefined, + useSeriesColors: false + }, + markers: { + width: 12, + height: 12, + strokeWidth: 0, + strokeColor: '#fff', + radius: 12, + customHTML: undefined, + offsetX: 0, + offsetY: 0, + onClick: undefined + }, + itemMargin: { + horizontal: 0, + vertical: 5 + }, + onItemClick: { + toggleDataSeries: true + }, + onItemHover: { + highlightDataSeries: true + } + }, + markers: { + discrete: [], + size: 0, + colors: undefined, + //strokeColor: '#fff', // TODO: deprecate in major version 4.0 + strokeColors: '#fff', + strokeWidth: 2, + strokeOpacity: 0.9, + fillOpacity: 1, + shape: 'circle', + radius: 2, + offsetX: 0, + offsetY: 0, + onClick: undefined, + onDblClick: undefined, + hover: { + size: undefined, + sizeOffset: 3 + } + }, + noData: { + text: undefined, + align: 'center', + verticalAlign: 'middle', + offsetX: 0, + offsetY: 0, + style: { + color: undefined, + fontSize: '14px', + fontFamily: undefined + } + }, + responsive: [], + // breakpoints should follow ascending order 400, then 700, then 1000 + series: undefined, + states: { + normal: { + filter: { + type: 'none', + value: 0 + } + }, + hover: { + filter: { + type: 'lighten', + value: 0.15 + } + }, + active: { + allowMultipleDataPointsSelection: false, + filter: { + type: 'darken', + value: 0.65 + } + } + }, + title: { + text: undefined, + align: 'left', + margin: 10, + offsetX: 0, + offsetY: 0, + floating: false, + style: { + fontSize: '14px', + fontFamily: undefined, + color: undefined + } + }, + subtitle: { + text: undefined, + align: 'left', + margin: 10, + offsetX: 0, + offsetY: 30, + floating: false, + style: { + fontSize: '12px', + fontFamily: undefined, + color: undefined + } + }, + stroke: { + show: true, + curve: 'smooth', + // "smooth" / "straight" / "stepline" + lineCap: 'butt', + // round, butt , square + width: 2, + colors: undefined, + // array of colors + dashArray: 0 // single value or array of values + + }, + tooltip: { + enabled: true, + enabledOnSeries: undefined, + shared: true, + followCursor: false, + // when disabled, the tooltip will show on top of the series instead of mouse position + intersect: false, + // when enabled, tooltip will only show when user directly hovers over point + inverseOrder: false, + custom: undefined, + fillSeriesColor: false, + theme: 'light', + style: { + fontSize: '12px', + fontFamily: undefined + }, + onDatasetHover: { + highlightDataSeries: false + }, + x: { + // x value + show: true, + format: 'dd MMM', + // dd/MM, dd MMM yy, dd MMM yyyy + formatter: undefined // a custom user supplied formatter function + + }, + y: { + formatter: undefined, + title: { + formatter: function formatter(seriesName) { + return seriesName; + } + } + }, + z: { + formatter: undefined, + title: 'Size: ' + }, + marker: { + show: true + }, + items: { + display: 'flex' + }, + fixed: { + enabled: false, + position: 'topRight', + // topRight, topLeft, bottomRight, bottomLeft + offsetX: 0, + offsetY: 0 + } + }, + xaxis: { + type: 'category', + categories: [], + offsetX: 0, + offsetY: 0, + labels: { + show: true, + rotate: -45, + rotateAlways: false, + hideOverlappingLabels: true, + trim: true, + minHeight: undefined, + maxHeight: 120, + showDuplicates: true, + style: { + colors: [], + fontSize: '12px', + fontFamily: undefined, + cssClass: '' + }, + offsetX: 0, + offsetY: 0, + format: undefined, + formatter: undefined, + // custom formatter function which will override format + datetimeFormatter: { + year: 'yyyy', + month: "MMM 'yy", + day: 'dd MMM', + hour: 'HH:mm', + minute: 'HH:mm:ss' + } + }, + axisBorder: { + show: true, + color: '#78909C', + width: '100%', + height: 1, + offsetX: 0, + offsetY: 0 + }, + axisTicks: { + show: true, + color: '#78909C', + height: 6, + offsetX: 0, + offsetY: 0 + }, + tickAmount: undefined, + tickPlacement: 'on', + min: undefined, + max: undefined, + range: undefined, + floating: false, + position: 'bottom', + title: { + text: undefined, + offsetX: 0, + offsetY: 0, + style: { + color: undefined, + fontSize: '12px', + fontFamily: undefined, + cssClass: '' + } + }, + crosshairs: { + show: true, + width: 1, + // tickWidth/barWidth or an integer + position: 'back', + opacity: 0.9, + stroke: { + color: '#b6b6b6', + width: 1, + dashArray: 3 + }, + fill: { + type: 'solid', + // solid, gradient + color: '#B1B9C4', + gradient: { + colorFrom: '#D8E3F0', + colorTo: '#BED1E6', + stops: [0, 100], + opacityFrom: 0.4, + opacityTo: 0.5 + } + }, + dropShadow: { + enabled: false, + left: 0, + top: 0, + blur: 1, + opacity: 0.4 + } + }, + tooltip: { + enabled: true, + offsetY: 0, + formatter: undefined, + style: { + fontSize: '12px', + fontFamily: undefined + } + } + }, + yaxis: this.yAxis, + theme: { + mode: 'light', + palette: 'palette1', + // If defined, it will overwrite globals.colors variable + monochrome: { + // monochrome allows you to select just 1 color and fill out the rest with light/dark shade (intensity can be selected) + enabled: false, + color: '#008FFB', + shadeTo: 'light', + shadeIntensity: 0.65 + } + } + }; + } + }]); + + return Options; + }(); + + /** + * ApexCharts Annotations Class for drawing lines/rects on both xaxis and yaxis. + * + * @module Annotations + **/ + + var Annotations = + /*#__PURE__*/ + function () { + function Annotations(ctx) { + _classCallCheck(this, Annotations); + + this.ctx = ctx; + this.w = ctx.w; + this.graphics = new Graphics(this.ctx); + + if (this.w.globals.isBarHorizontal) { + this.invertAxis = true; + } + + this.xDivision = this.w.globals.gridWidth / this.w.globals.dataPoints; + } + + _createClass(Annotations, [{ + key: "drawAnnotations", + value: function drawAnnotations() { + var w = this.w; + + if (w.globals.axisCharts) { + var yAnnotations = this.drawYAxisAnnotations(); + var xAnnotations = this.drawXAxisAnnotations(); + var pointAnnotations = this.drawPointAnnotations(); + var initialAnim = w.config.chart.animations.enabled; + var annoArray = [yAnnotations, xAnnotations, pointAnnotations]; + var annoElArray = [xAnnotations.node, yAnnotations.node, pointAnnotations.node]; + + for (var i = 0; i < 3; i++) { + w.globals.dom.elGraphical.add(annoArray[i]); + + if (initialAnim && !w.globals.resized && !w.globals.dataChanged) { + // fixes apexcharts/apexcharts.js#685 + if (w.config.chart.type !== 'scatter' && w.config.chart.type !== 'bubble') { + annoElArray[i].classList.add('hidden'); + } + } + + w.globals.delayedElements.push({ + el: annoElArray[i], + index: 0 + }); + } // background sizes needs to be calculated after text is drawn, so calling them last + + + this.annotationsBackground(); + } + } + }, { + key: "getStringX", + value: function getStringX(x) { + var w = this.w; + var rX = x; + var catIndex = w.globals.labels.indexOf(x); + var xLabel = w.globals.dom.baseEl.querySelector('.apexcharts-xaxis-texts-g text:nth-child(' + (catIndex + 1) + ')'); + + if (xLabel) { + rX = parseFloat(xLabel.getAttribute('x')); + } + + return rX; + } + }, { + key: "addXaxisAnnotation", + value: function addXaxisAnnotation(anno, parent, index) { + var w = this.w; + var min = this.invertAxis ? w.globals.minY : w.globals.minX; + var range = this.invertAxis ? w.globals.yRange[0] : w.globals.xRange; + var x1 = (anno.x - min) / (range / w.globals.gridWidth); + var text = anno.label.text; + + if ((w.config.xaxis.type === 'category' || w.config.xaxis.convertedCatToNumeric) && !this.invertAxis && !w.globals.isXNumeric) { + x1 = this.getStringX(anno.x); + } + + var strokeDashArray = anno.strokeDashArray; + if (x1 < 0 || x1 > w.globals.gridWidth) return; + + if (anno.x2 === null) { + var line = this.graphics.drawLine(x1 + anno.offsetX, // x1 + 0 + anno.offsetY, // y1 + x1 + anno.offsetX, // x2 + w.globals.gridHeight + anno.offsetY, // y2 + anno.borderColor, // lineColor + strokeDashArray //dashArray + ); + parent.appendChild(line.node); + } else { + var x2 = (anno.x2 - min) / (range / w.globals.gridWidth); + + if ((w.config.xaxis.type === 'category' || w.config.xaxis.convertedCatToNumeric) && !this.invertAxis && !w.globals.isXNumeric) { + x2 = this.getStringX(anno.x2); + } + + if (x2 < x1) { + var temp = x1; + x1 = x2; + x2 = temp; + } + + if (text) { + var rect = this.graphics.drawRect(x1 + anno.offsetX, // x1 + 0 + anno.offsetY, // y1 + x2 - x1, // x2 + w.globals.gridHeight + anno.offsetY, // y2 + 0, // radius + anno.fillColor, // color + anno.opacity, // opacity, + 1, // strokeWidth + anno.borderColor, // strokeColor + strokeDashArray // stokeDashArray + ); + parent.appendChild(rect.node); + } + } + + var textY = anno.label.position === 'top' ? -3 : w.globals.gridHeight; + var elText = this.graphics.drawText({ + x: x1 + anno.label.offsetX, + y: textY + anno.label.offsetY, + text: text, + textAnchor: anno.label.textAnchor, + fontSize: anno.label.style.fontSize, + fontFamily: anno.label.style.fontFamily, + foreColor: anno.label.style.color, + cssClass: 'apexcharts-xaxis-annotation-label ' + anno.label.style.cssClass + }); + elText.attr({ + rel: index + }); + parent.appendChild(elText.node); // after placing the annotations on svg, set any vertically placed annotations + + this.setOrientations(anno, index); + } + }, { + key: "drawXAxisAnnotations", + value: function drawXAxisAnnotations() { + var _this = this; + + var w = this.w; + var elg = this.graphics.group({ + class: 'apexcharts-xaxis-annotations' + }); + w.config.annotations.xaxis.map(function (anno, index) { + _this.addXaxisAnnotation(anno, elg.node, index); + }); + return elg; + } + }, { + key: "addYaxisAnnotation", + value: function addYaxisAnnotation(anno, parent, index) { + var w = this.w; + var strokeDashArray = anno.strokeDashArray; + var y1; + var y2; + + if (this.invertAxis) { + var catIndex = w.globals.labels.indexOf(anno.y); + var xLabel = w.globals.dom.baseEl.querySelector('.apexcharts-yaxis-texts-g text:nth-child(' + (catIndex + 1) + ')'); + + if (xLabel) { + y1 = parseFloat(xLabel.getAttribute('y')); + } + } else { + y1 = w.globals.gridHeight - (anno.y - w.globals.minYArr[anno.yAxisIndex]) / (w.globals.yRange[anno.yAxisIndex] / w.globals.gridHeight); + + if (w.config.yaxis[anno.yAxisIndex] && w.config.yaxis[anno.yAxisIndex].reversed) { + y1 = (anno.y - w.globals.minYArr[anno.yAxisIndex]) / (w.globals.yRange[anno.yAxisIndex] / w.globals.gridHeight); + } + } + + var text = anno.label.text; + + if (anno.y2 === null) { + var line = this.graphics.drawLine(0 + anno.offsetX, // x1 + y1 + anno.offsetY, // y1 + w.globals.gridWidth + anno.offsetX, // x2 + y1 + anno.offsetY, // y2 + anno.borderColor, // lineColor + strokeDashArray // dashArray + ); + parent.appendChild(line.node); + } else { + if (this.invertAxis) { + var _catIndex = w.globals.labels.indexOf(anno.y2); + + var _xLabel = w.globals.dom.baseEl.querySelector('.apexcharts-yaxis-texts-g text:nth-child(' + (_catIndex + 1) + ')'); + + if (_xLabel) { + y2 = parseFloat(_xLabel.getAttribute('y')); + } + } else { + y2 = w.globals.gridHeight - (anno.y2 - w.globals.minYArr[anno.yAxisIndex]) / (w.globals.yRange[anno.yAxisIndex] / w.globals.gridHeight); + + if (w.config.yaxis[anno.yAxisIndex] && w.config.yaxis[anno.yAxisIndex].reversed) { + y2 = (anno.y2 - w.globals.minYArr[anno.yAxisIndex]) / (w.globals.yRange[anno.yAxisIndex] / w.globals.gridHeight); + } + } + + if (y2 > y1) { + var temp = y1; + y1 = y2; + y2 = temp; + } + + if (text) { + var rect = this.graphics.drawRect(0 + anno.offsetX, // x1 + y2 + anno.offsetY, // y1 + w.globals.gridWidth + anno.offsetX, // x2 + y1 - y2, // y2 + 0, // radius + anno.fillColor, // color + anno.opacity, // opacity, + 1, // strokeWidth + anno.borderColor, // strokeColor + strokeDashArray // stokeDashArray + ); + parent.appendChild(rect.node); + } + } + + var textX = anno.label.position === 'right' ? w.globals.gridWidth : 0; + var elText = this.graphics.drawText({ + x: textX + anno.label.offsetX, + y: (y2 || y1) + anno.label.offsetY - 3, + text: text, + textAnchor: anno.label.textAnchor, + fontSize: anno.label.style.fontSize, + fontFamily: anno.label.style.fontFamily, + foreColor: anno.label.style.color, + cssClass: 'apexcharts-yaxis-annotation-label ' + anno.label.style.cssClass + }); + elText.attr({ + rel: index + }); + parent.appendChild(elText.node); + } + }, { + key: "drawYAxisAnnotations", + value: function drawYAxisAnnotations() { + var _this2 = this; + + var w = this.w; + var elg = this.graphics.group({ + class: 'apexcharts-yaxis-annotations' + }); + w.config.annotations.yaxis.map(function (anno, index) { + _this2.addYaxisAnnotation(anno, elg.node, index); + }); + return elg; + } + }, { + key: "clearAnnotations", + value: function clearAnnotations(ctx) { + var w = ctx.w; + var annos = w.globals.dom.baseEl.querySelectorAll('.apexcharts-yaxis-annotations, .apexcharts-xaxis-annotations, .apexcharts-point-annotations'); + annos = Utils.listToArray(annos); + annos.forEach(function (a) { + while (a.firstChild) { + a.removeChild(a.firstChild); + } + }); + } + }, { + key: "addPointAnnotation", + value: function addPointAnnotation(anno, parent, index) { + var w = this.w; + var x = 0; + var y = 0; + var pointY = 0; + + if (this.invertAxis) { + console.warn('Point annotation is not supported in horizontal bar charts.'); + } + + if (typeof anno.x === 'string') { + var catIndex = w.globals.labels.indexOf(anno.x); + var xLabel = w.globals.dom.baseEl.querySelector('.apexcharts-xaxis-texts-g text:nth-child(' + (catIndex + 1) + ')'); + var xPos = parseFloat(xLabel.getAttribute('x')); + x = xPos; + var annoY = anno.y; + + if (anno.y === null) { + annoY = w.globals.series[anno.seriesIndex][catIndex]; + } + + y = w.globals.gridHeight - (annoY - w.globals.minYArr[anno.yAxisIndex]) / (w.globals.yRange[anno.yAxisIndex] / w.globals.gridHeight) - parseInt(anno.label.style.fontSize) - anno.marker.size; + pointY = w.globals.gridHeight - (annoY - w.globals.minYArr[anno.yAxisIndex]) / (w.globals.yRange[anno.yAxisIndex] / w.globals.gridHeight); + + if (w.config.yaxis[anno.yAxisIndex] && w.config.yaxis[anno.yAxisIndex].reversed) { + y = (annoY - w.globals.minYArr[anno.yAxisIndex]) / (w.globals.yRange[anno.yAxisIndex] / w.globals.gridHeight) + parseInt(anno.label.style.fontSize) + anno.marker.size; + pointY = (annoY - w.globals.minYArr[anno.yAxisIndex]) / (w.globals.yRange[anno.yAxisIndex] / w.globals.gridHeight); + } + } else { + x = (anno.x - w.globals.minX) / (w.globals.xRange / w.globals.gridWidth); + y = w.globals.gridHeight - (parseFloat(anno.y) - w.globals.minYArr[anno.yAxisIndex]) / (w.globals.yRange[anno.yAxisIndex] / w.globals.gridHeight) - parseInt(anno.label.style.fontSize) - anno.marker.size; + pointY = w.globals.gridHeight - (anno.y - w.globals.minYArr[anno.yAxisIndex]) / (w.globals.yRange[anno.yAxisIndex] / w.globals.gridHeight); + + if (w.config.yaxis[anno.yAxisIndex] && w.config.yaxis[anno.yAxisIndex].reversed) { + y = (parseFloat(anno.y) - w.globals.minYArr[anno.yAxisIndex]) / (w.globals.yRange[anno.yAxisIndex] / w.globals.gridHeight) - parseInt(anno.label.style.fontSize) - anno.marker.size; + pointY = (anno.y - w.globals.minYArr[anno.yAxisIndex]) / (w.globals.yRange[anno.yAxisIndex] / w.globals.gridHeight); + } + } + + if (x < 0 || x > w.globals.gridWidth) return; + var optsPoints = { + pSize: anno.marker.size, + pWidth: anno.marker.strokeWidth, + pointFillColor: anno.marker.fillColor, + pointStrokeColor: anno.marker.strokeColor, + shape: anno.marker.shape, + radius: anno.marker.radius, + class: 'apexcharts-point-annotation-marker ' + anno.marker.cssClass + }; + var point = this.graphics.drawMarker(x + anno.marker.offsetX, pointY + anno.marker.offsetY, optsPoints); + parent.appendChild(point.node); + var text = anno.label.text ? anno.label.text : ''; + var elText = this.graphics.drawText({ + x: x + anno.label.offsetX, + y: y + anno.label.offsetY, + text: text, + textAnchor: anno.label.textAnchor, + fontSize: anno.label.style.fontSize, + fontFamily: anno.label.style.fontFamily, + foreColor: anno.label.style.color, + cssClass: 'apexcharts-point-annotation-label ' + anno.label.style.cssClass + }); + elText.attr({ + rel: index + }); + parent.appendChild(elText.node); + + if (anno.customSVG.SVG) { + var g = this.graphics.group({ + class: 'apexcharts-point-annotations-custom-svg ' + anno.customSVG.cssClass + }); + g.attr({ + transform: "translate(".concat(x + anno.customSVG.offsetX, ", ").concat(y + anno.customSVG.offsetY, ")") + }); + g.node.innerHTML = anno.customSVG.SVG; + parent.appendChild(g.node); + } + } + }, { + key: "drawPointAnnotations", + value: function drawPointAnnotations() { + var _this3 = this; + + var w = this.w; + var elg = this.graphics.group({ + class: 'apexcharts-point-annotations' + }); + w.config.annotations.points.map(function (anno, index) { + _this3.addPointAnnotation(anno, elg.node, index); + }); + return elg; + } + }, { + key: "setOrientations", + value: function setOrientations(anno) { + var annoIndex = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + var w = this.w; + + if (anno.label.orientation === 'vertical') { + var i = annoIndex !== null ? annoIndex : 0; + var xAnno = w.globals.dom.baseEl.querySelector(".apexcharts-xaxis-annotations .apexcharts-xaxis-annotation-label[rel='".concat(i, "']")); + + if (xAnno !== null) { + var xAnnoCoord = xAnno.getBoundingClientRect(); + xAnno.setAttribute('x', parseFloat(xAnno.getAttribute('x')) - xAnnoCoord.height + 4); + + if (anno.label.position === 'top') { + xAnno.setAttribute('y', parseFloat(xAnno.getAttribute('y')) + xAnnoCoord.width); + } else { + xAnno.setAttribute('y', parseFloat(xAnno.getAttribute('y')) - xAnnoCoord.width); + } + + var annoRotatingCenter = this.graphics.rotateAroundCenter(xAnno); + var x = annoRotatingCenter.x; + var y = annoRotatingCenter.y; + xAnno.setAttribute('transform', "rotate(-90 ".concat(x, " ").concat(y, ")")); + } + } + } + }, { + key: "addBackgroundToAnno", + value: function addBackgroundToAnno(annoEl, anno) { + var w = this.w; + if (!anno.label.text || anno.label.text && !anno.label.text.trim()) return null; + var elGridRect = w.globals.dom.baseEl.querySelector('.apexcharts-grid').getBoundingClientRect(); + var coords = annoEl.getBoundingClientRect(); + var pleft = anno.label.style.padding.left; + var pright = anno.label.style.padding.right; + var ptop = anno.label.style.padding.top; + var pbottom = anno.label.style.padding.bottom; + + if (anno.label.orientation === 'vertical') { + ptop = anno.label.style.padding.left; + pbottom = anno.label.style.padding.right; + pleft = anno.label.style.padding.top; + pright = anno.label.style.padding.bottom; + } + + var x1 = coords.left - elGridRect.left - pleft; + var y1 = coords.top - elGridRect.top - ptop; + var elRect = this.graphics.drawRect(x1, y1, coords.width + pleft + pright, coords.height + ptop + pbottom, 0, anno.label.style.background, 1, anno.label.borderWidth, anno.label.borderColor, 0); + return elRect; + } + }, { + key: "annotationsBackground", + value: function annotationsBackground() { + var _this4 = this; + + var w = this.w; + + var add = function add(anno, i, type) { + var annoLabel = w.globals.dom.baseEl.querySelector(".apexcharts-".concat(type, "-annotations .apexcharts-").concat(type, "-annotation-label[rel='").concat(i, "']")); + + if (annoLabel) { + var parent = annoLabel.parentNode; + + var elRect = _this4.addBackgroundToAnno(annoLabel, anno); + + if (elRect) { + parent.insertBefore(elRect.node, annoLabel); + } + } + }; + + w.config.annotations.xaxis.map(function (anno, i) { + add(anno, i, 'xaxis'); + }); + w.config.annotations.yaxis.map(function (anno, i) { + add(anno, i, 'yaxis'); + }); + w.config.annotations.points.map(function (anno, i) { + add(anno, i, 'point'); + }); + } + }, { + key: "addText", + value: function addText(params, pushToMemory, context) { + var x = params.x, + y = params.y, + text = params.text, + textAnchor = params.textAnchor, + _params$appendTo = params.appendTo, + appendTo = _params$appendTo === void 0 ? '.apexcharts-inner' : _params$appendTo, + foreColor = params.foreColor, + fontSize = params.fontSize, + fontFamily = params.fontFamily, + cssClass = params.cssClass, + backgroundColor = params.backgroundColor, + borderWidth = params.borderWidth, + strokeDashArray = params.strokeDashArray, + radius = params.radius, + borderColor = params.borderColor, + _params$paddingLeft = params.paddingLeft, + paddingLeft = _params$paddingLeft === void 0 ? 4 : _params$paddingLeft, + _params$paddingRight = params.paddingRight, + paddingRight = _params$paddingRight === void 0 ? 4 : _params$paddingRight, + _params$paddingBottom = params.paddingBottom, + paddingBottom = _params$paddingBottom === void 0 ? 2 : _params$paddingBottom, + _params$paddingTop = params.paddingTop, + paddingTop = _params$paddingTop === void 0 ? 2 : _params$paddingTop; + var me = context; + var w = me.w; + var parentNode = w.globals.dom.baseEl.querySelector(appendTo); + var elText = this.graphics.drawText({ + x: x, + y: y, + text: text, + textAnchor: textAnchor || 'start', + fontSize: fontSize || '12px', + fontFamily: fontFamily || w.config.chart.fontFamily, + foreColor: foreColor || w.config.chart.foreColor, + cssClass: 'apexcharts-text ' + cssClass ? cssClass : '' + }); + parentNode.appendChild(elText.node); + var textRect = elText.bbox(); + + if (text) { + var elRect = this.graphics.drawRect(textRect.x - paddingLeft, textRect.y - paddingTop, textRect.width + paddingLeft + paddingRight, textRect.height + paddingBottom + paddingTop, radius, backgroundColor, 1, borderWidth, borderColor, strokeDashArray); + elText.before(elRect); + } + + if (pushToMemory) { + w.globals.memory.methodsToExec.push({ + context: me, + method: me.addText, + params: { + x: x, + y: y, + text: text, + textAnchor: textAnchor, + appendTo: appendTo, + foreColor: foreColor, + fontSize: fontSize, + cssClass: cssClass, + backgroundColor: backgroundColor, + borderWidth: borderWidth, + strokeDashArray: strokeDashArray, + radius: radius, + borderColor: borderColor, + paddingLeft: paddingLeft, + paddingRight: paddingRight, + paddingBottom: paddingBottom, + paddingTop: paddingTop + } + }); + } + + return context; + } + }, { + key: "addPointAnnotationExternal", + value: function addPointAnnotationExternal(params, pushToMemory, context) { + if (typeof this.invertAxis === 'undefined') { + this.invertAxis = context.w.globals.isBarHorizontal; + } + + this.addAnnotationExternal({ + params: params, + pushToMemory: pushToMemory, + context: context, + type: 'point', + contextMethod: context.addPointAnnotation + }); + return context; + } + }, { + key: "addYaxisAnnotationExternal", + value: function addYaxisAnnotationExternal(params, pushToMemory, context) { + this.addAnnotationExternal({ + params: params, + pushToMemory: pushToMemory, + context: context, + type: 'yaxis', + contextMethod: context.addYaxisAnnotation + }); + return context; + } // The addXaxisAnnotation method requires a parent class, and user calling this method externally on the chart instance may not specify parent, hence a different method + + }, { + key: "addXaxisAnnotationExternal", + value: function addXaxisAnnotationExternal(params, pushToMemory, context) { + this.addAnnotationExternal({ + params: params, + pushToMemory: pushToMemory, + context: context, + type: 'xaxis', + contextMethod: context.addXaxisAnnotation + }); + return context; + } + }, { + key: "addAnnotationExternal", + value: function addAnnotationExternal(_ref) { + var params = _ref.params, + pushToMemory = _ref.pushToMemory, + context = _ref.context, + type = _ref.type, + contextMethod = _ref.contextMethod; + var me = context; + var w = me.w; + var parent = w.globals.dom.baseEl.querySelector(".apexcharts-".concat(type, "-annotations")); + var index = parent.childNodes.length + 1; + var opt = new Options(); + var axesAnno = Object.assign({}, type === 'xaxis' ? opt.xAxisAnnotation : type === 'yaxis' ? opt.yAxisAnnotation : opt.pointAnnotation); + var anno = Utils.extend(axesAnno, params); + + switch (type) { + case 'xaxis': + this.addXaxisAnnotation(anno, parent, index); + break; + + case 'yaxis': + this.addYaxisAnnotation(anno, parent, index); + break; + + case 'point': + this.addPointAnnotation(anno, parent, index); + break; + } // add background + + + var axesAnnoLabel = w.globals.dom.baseEl.querySelector(".apexcharts-".concat(type, "-annotations .apexcharts-").concat(type, "-annotation-label[rel='").concat(index, "']")); + var elRect = this.addBackgroundToAnno(axesAnnoLabel, anno); + + if (elRect) { + parent.insertBefore(elRect.node, axesAnnoLabel); + } + + if (pushToMemory) { + w.globals.memory.methodsToExec.push({ + context: me, + method: contextMethod, + params: params + }); + } + + return context; + } + }]); + + return Annotations; + }(); + + /** + * DateTime Class to manipulate datetime values. + * + * @module DateTime + **/ + + var DateTime = + /*#__PURE__*/ + function () { + function DateTime(ctx) { + _classCallCheck(this, DateTime); + + this.ctx = ctx; + this.w = ctx.w; + this.months31 = [1, 3, 5, 7, 8, 10, 12]; + this.months30 = [2, 4, 6, 9, 11]; + this.daysCntOfYear = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334]; + } + + _createClass(DateTime, [{ + key: "isValidDate", + value: function isValidDate(date) { + return !isNaN(this.parseDate(date)); + } + }, { + key: "getUTCTimeStamp", + value: function getUTCTimeStamp(dateStr) { + if (!Date.parse(dateStr)) { + return dateStr; + } + + return new Date(new Date(dateStr).toISOString().substr(0, 25)).getTime(); + } + }, { + key: "parseDate", + value: function parseDate(dateStr) { + var parsed = Date.parse(dateStr); + + if (!isNaN(parsed)) { + return this.getUTCTimeStamp(dateStr); + } + + var output = Date.parse(dateStr.replace(/-/g, '/').replace(/[a-z]+/gi, ' ')); + output = this.getUTCTimeStamp(output); + return output; + } // https://stackoverflow.com/a/11252167/6495043 + + }, { + key: "treatAsUtc", + value: function treatAsUtc(dateStr) { + var result = new Date(dateStr); + result.setMinutes(result.getMinutes() - result.getTimezoneOffset()); + return result; + } // http://stackoverflow.com/questions/14638018/current-time-formatting-with-javascript#answer-14638191 + + }, { + key: "formatDate", + value: function formatDate(date, format) { + var utc = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; + var convertToUTC = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; + var locale = this.w.globals.locale; + var MMMM = ['\x00'].concat(_toConsumableArray(locale.months)); + var MMM = ['\x01'].concat(_toConsumableArray(locale.shortMonths)); + var dddd = ['\x02'].concat(_toConsumableArray(locale.days)); + var ddd = ['\x03'].concat(_toConsumableArray(locale.shortDays)); + + function ii(i, len) { + var s = i + ''; + len = len || 2; + + while (s.length < len) { + s = '0' + s; + } + + return s; + } + + if (convertToUTC) { + date = this.treatAsUtc(date); + } + + var y = utc ? date.getUTCFullYear() : date.getFullYear(); + format = format.replace(/(^|[^\\])yyyy+/g, '$1' + y); + format = format.replace(/(^|[^\\])yy/g, '$1' + y.toString().substr(2, 2)); + format = format.replace(/(^|[^\\])y/g, '$1' + y); + var M = (utc ? date.getUTCMonth() : date.getMonth()) + 1; + format = format.replace(/(^|[^\\])MMMM+/g, '$1' + MMMM[0]); + format = format.replace(/(^|[^\\])MMM/g, '$1' + MMM[0]); + format = format.replace(/(^|[^\\])MM/g, '$1' + ii(M)); + format = format.replace(/(^|[^\\])M/g, '$1' + M); + var d = utc ? date.getUTCDate() : date.getDate(); + format = format.replace(/(^|[^\\])dddd+/g, '$1' + dddd[0]); + format = format.replace(/(^|[^\\])ddd/g, '$1' + ddd[0]); + format = format.replace(/(^|[^\\])dd/g, '$1' + ii(d)); + format = format.replace(/(^|[^\\])d/g, '$1' + d); + var H = utc ? date.getUTCHours() : date.getHours(); + format = format.replace(/(^|[^\\])HH+/g, '$1' + ii(H)); + format = format.replace(/(^|[^\\])H/g, '$1' + H); + var h = H > 12 ? H - 12 : H === 0 ? 12 : H; + format = format.replace(/(^|[^\\])hh+/g, '$1' + ii(h)); + format = format.replace(/(^|[^\\])h/g, '$1' + h); + var m = utc ? date.getUTCMinutes() : date.getMinutes(); + format = format.replace(/(^|[^\\])mm+/g, '$1' + ii(m)); + format = format.replace(/(^|[^\\])m/g, '$1' + m); + var s = utc ? date.getUTCSeconds() : date.getSeconds(); + format = format.replace(/(^|[^\\])ss+/g, '$1' + ii(s)); + format = format.replace(/(^|[^\\])s/g, '$1' + s); + var f = utc ? date.getUTCMilliseconds() : date.getMilliseconds(); + format = format.replace(/(^|[^\\])fff+/g, '$1' + ii(f, 3)); + f = Math.round(f / 10); + format = format.replace(/(^|[^\\])ff/g, '$1' + ii(f)); + f = Math.round(f / 10); + format = format.replace(/(^|[^\\])f/g, '$1' + f); + var T = H < 12 ? 'AM' : 'PM'; + format = format.replace(/(^|[^\\])TT+/g, '$1' + T); + format = format.replace(/(^|[^\\])T/g, '$1' + T.charAt(0)); + var t = T.toLowerCase(); + format = format.replace(/(^|[^\\])tt+/g, '$1' + t); + format = format.replace(/(^|[^\\])t/g, '$1' + t.charAt(0)); + var tz = -date.getTimezoneOffset(); + var K = utc || !tz ? 'Z' : tz > 0 ? '+' : '-'; + + if (!utc) { + tz = Math.abs(tz); + var tzHrs = Math.floor(tz / 60); + var tzMin = tz % 60; + K += ii(tzHrs) + ':' + ii(tzMin); + } + + format = format.replace(/(^|[^\\])K/g, '$1' + K); + var day = (utc ? date.getUTCDay() : date.getDay()) + 1; + format = format.replace(new RegExp(dddd[0], 'g'), dddd[day]); + format = format.replace(new RegExp(ddd[0], 'g'), ddd[day]); + format = format.replace(new RegExp(MMMM[0], 'g'), MMMM[M]); + format = format.replace(new RegExp(MMM[0], 'g'), MMM[M]); + format = format.replace(/\\(.)/g, '$1'); + return format; + } + }, { + key: "getTimeUnitsfromTimestamp", + value: function getTimeUnitsfromTimestamp(minX, maxX) { + var w = this.w; + + if (w.config.xaxis.min !== undefined) { + minX = w.config.xaxis.min; + } + + if (w.config.xaxis.max !== undefined) { + maxX = w.config.xaxis.max; + } + + var minYear = new Date(minX).getFullYear(); + var maxYear = new Date(maxX).getFullYear(); + var minMonth = new Date(minX).getMonth(); + var maxMonth = new Date(maxX).getMonth(); + var minDate = new Date(minX).getDate(); + var maxDate = new Date(maxX).getDate(); + var minHour = new Date(minX).getHours(); + var maxHour = new Date(maxX).getHours(); + var minMinute = new Date(minX).getMinutes(); + var maxMinute = new Date(maxX).getMinutes(); + return { + minMinute: minMinute, + maxMinute: maxMinute, + minHour: minHour, + maxHour: maxHour, + minDate: minDate, + maxDate: maxDate, + minMonth: minMonth, + maxMonth: maxMonth, + minYear: minYear, + maxYear: maxYear + }; + } + }, { + key: "isLeapYear", + value: function isLeapYear(year) { + return year % 4 === 0 && year % 100 !== 0 || year % 400 === 0; + } + }, { + key: "calculcateLastDaysOfMonth", + value: function calculcateLastDaysOfMonth(month, year, subtract) { + var days = this.determineDaysOfMonths(month, year); // whatever days we get, subtract the number of days asked + + return days - subtract; + } + }, { + key: "determineDaysOfYear", + value: function determineDaysOfYear(year) { + var days = 365; + + if (this.isLeapYear(year)) { + days = 366; + } + + return days; + } + }, { + key: "determineRemainingDaysOfYear", + value: function determineRemainingDaysOfYear(year, month, date) { + var dayOfYear = this.daysCntOfYear[month] + date; + if (month > 1 && this.isLeapYear()) dayOfYear++; + return dayOfYear; + } + }, { + key: "determineDaysOfMonths", + value: function determineDaysOfMonths(month, year) { + var days = 30; + month = Utils.monthMod(month); + + switch (true) { + case this.months30.indexOf(month) > -1: + if (month === 2) { + if (this.isLeapYear(year)) { + days = 29; + } else { + days = 28; + } + } + + break; + + case this.months31.indexOf(month) > -1: + days = 31; + break; + + default: + days = 31; + break; + } + + return days; + } + }]); + + return DateTime; + }(); + + /** + * ApexCharts Default Class for setting default options for all chart types. + * + * @module Defaults + **/ + + var Defaults = + /*#__PURE__*/ + function () { + function Defaults(opts) { + _classCallCheck(this, Defaults); + + this.opts = opts; + } + + _createClass(Defaults, [{ + key: "line", + value: function line() { + return { + chart: { + animations: { + easing: 'swing' + } + }, + dataLabels: { + enabled: false + }, + stroke: { + width: 5, + curve: 'straight' + }, + markers: { + size: 0, + hover: { + sizeOffset: 6 + } + }, + xaxis: { + crosshairs: { + width: 1 + } + } + }; + } + }, { + key: "sparkline", + value: function sparkline(defaults) { + this.opts.yaxis[0].labels.show = false; + this.opts.yaxis[0].floating = true; + var ret = { + grid: { + show: false, + padding: { + left: 0, + right: 0, + top: 0, + bottom: 0 + } + }, + legend: { + show: false + }, + xaxis: { + labels: { + show: false + }, + tooltip: { + enabled: false + }, + axisBorder: { + show: false + } + }, + chart: { + toolbar: { + show: false + }, + zoom: { + enabled: false + } + }, + dataLabels: { + enabled: false + } + }; + return Utils.extend(defaults, ret); + } + }, { + key: "bar", + value: function bar() { + return { + chart: { + stacked: false, + animations: { + easing: 'swing' + } + }, + plotOptions: { + bar: { + dataLabels: { + position: 'center' + } + } + }, + dataLabels: { + style: { + colors: ['#fff'] + } + }, + stroke: { + width: 0 + }, + fill: { + opacity: 0.85 + }, + legend: { + markers: { + shape: 'square', + radius: 2, + size: 8 + } + }, + tooltip: { + shared: false + }, + xaxis: { + tooltip: { + enabled: false + }, + crosshairs: { + width: 'barWidth', + position: 'back', + fill: { + type: 'gradient' + }, + dropShadow: { + enabled: false + }, + stroke: { + width: 0 + } + } + } + }; + } + }, { + key: "candlestick", + value: function candlestick() { + return { + stroke: { + width: 1, + colors: ['#333'] + }, + dataLabels: { + enabled: false + }, + tooltip: { + shared: true, + custom: function custom(_ref) { + var seriesIndex = _ref.seriesIndex, + dataPointIndex = _ref.dataPointIndex, + w = _ref.w; + var o = w.globals.seriesCandleO[seriesIndex][dataPointIndex]; + var h = w.globals.seriesCandleH[seriesIndex][dataPointIndex]; + var l = w.globals.seriesCandleL[seriesIndex][dataPointIndex]; + var c = w.globals.seriesCandleC[seriesIndex][dataPointIndex]; + return '
    ' + '
    Open: ' + o + '
    ' + '
    High: ' + h + '
    ' + '
    Low: ' + l + '
    ' + '
    Close: ' + c + '
    ' + '
    '; + } + }, + states: { + active: { + filter: { + type: 'none' + } + } + }, + xaxis: { + crosshairs: { + width: 1 + } + } + }; + } + }, { + key: "rangeBar", + value: function rangeBar() { + return { + stroke: { + width: 0 + }, + plotOptions: { + bar: { + dataLabels: { + position: 'center' + } + } + }, + dataLabels: { + enabled: false, + formatter: function formatter(val, _ref2) { + var ctx = _ref2.ctx, + seriesIndex = _ref2.seriesIndex, + dataPointIndex = _ref2.dataPointIndex, + w = _ref2.w; + var start = w.globals.seriesRangeStart[seriesIndex][dataPointIndex]; + var end = w.globals.seriesRangeEnd[seriesIndex][dataPointIndex]; + return end - start; + }, + style: { + colors: ['#fff'] + } + }, + tooltip: { + shared: false, + followCursor: true, + custom: function custom(_ref3) { + var ctx = _ref3.ctx, + seriesIndex = _ref3.seriesIndex, + dataPointIndex = _ref3.dataPointIndex, + w = _ref3.w; + var start = w.globals.seriesRangeStart[seriesIndex][dataPointIndex]; + var end = w.globals.seriesRangeEnd[seriesIndex][dataPointIndex]; + var startVal = ''; + var endVal = ''; + var color = w.globals.colors[seriesIndex]; + + if (w.config.tooltip.x.formatter === undefined) { + if (w.config.xaxis.type === 'datetime') { + var datetimeObj = new DateTime(ctx); + startVal = datetimeObj.formatDate(new Date(start), w.config.tooltip.x.format, true, true); + endVal = datetimeObj.formatDate(new Date(end), w.config.tooltip.x.format, true, true); + } else { + startVal = start; + endVal = end; + } + } else { + startVal = w.config.tooltip.x.formatter(start); + endVal = w.config.tooltip.x.formatter(end); + } + + var ylabel = w.globals.labels[dataPointIndex]; + return '
    ' + '
    ' + (w.config.series[seriesIndex].name ? w.config.series[seriesIndex].name : '') + '
    ' + '
    ' + ylabel + ': ' + startVal + ' - ' + endVal + '
    ' + '
    '; + } + }, + xaxis: { + tooltip: { + enabled: false + }, + crosshairs: { + stroke: { + width: 0 + } + } + } + }; + } + }, { + key: "area", + value: function area() { + return { + stroke: { + width: 4 + }, + fill: { + type: 'gradient', + gradient: { + inverseColors: false, + shade: 'light', + type: 'vertical', + opacityFrom: 0.65, + opacityTo: 0.5, + stops: [0, 100, 100] + } + }, + markers: { + size: 0, + hover: { + sizeOffset: 6 + } + }, + tooltip: { + followCursor: false + } + }; + } + }, { + key: "brush", + value: function brush(defaults) { + var ret = { + chart: { + toolbar: { + autoSelected: 'selection', + show: false + }, + zoom: { + enabled: false + } + }, + dataLabels: { + enabled: false + }, + stroke: { + width: 1 + }, + tooltip: { + enabled: false + }, + xaxis: { + tooltip: { + enabled: false + } + } + }; + return Utils.extend(defaults, ret); + } + }, { + key: "stacked100", + value: function stacked100() { + var _this = this; + + this.opts.dataLabels = this.opts.dataLabels || {}; + this.opts.dataLabels.formatter = this.opts.dataLabels.formatter || undefined; + var existingDataLabelFormatter = this.opts.dataLabels.formatter; + this.opts.yaxis.forEach(function (yaxe, index) { + _this.opts.yaxis[index].min = 0; + _this.opts.yaxis[index].max = 100; + }); + var isBar = this.opts.chart.type === 'bar'; + + if (isBar) { + this.opts.dataLabels.formatter = existingDataLabelFormatter || function (val) { + if (typeof val === 'number') { + return val ? val.toFixed(0) + '%' : val; + } + + return val; + }; + } + } // This function removes the left and right spacing in chart for line/area/scatter if xaxis type = category for those charts by converting xaxis = numeric. Numeric/Datetime xaxis prevents the unnecessary spacing in the left/right of the chart area + + }, { + key: "bubble", + value: function bubble() { + return { + dataLabels: { + style: { + colors: ['#fff'] + } + }, + tooltip: { + shared: false, + intersect: true + }, + xaxis: { + crosshairs: { + width: 0 + } + }, + fill: { + type: 'solid', + gradient: { + shade: 'light', + inverse: true, + shadeIntensity: 0.55, + opacityFrom: 0.4, + opacityTo: 0.8 + } + } + }; + } + }, { + key: "scatter", + value: function scatter() { + return { + dataLabels: { + enabled: false + }, + tooltip: { + shared: false, + intersect: true + }, + markers: { + size: 6, + strokeWidth: 2, + hover: { + sizeOffset: 2 + } + } + }; + } + }, { + key: "heatmap", + value: function heatmap() { + return { + chart: { + stacked: false, + zoom: { + enabled: false + } + }, + fill: { + opacity: 1 + }, + dataLabels: { + style: { + colors: ['#fff'] + } + }, + stroke: { + colors: ['#fff'] + }, + tooltip: { + followCursor: true, + marker: { + show: false + }, + x: { + show: false + } + }, + legend: { + position: 'top', + markers: { + shape: 'square', + size: 10, + offsetY: 2 + } + }, + grid: { + padding: { + right: 20 + } + } + }; + } + }, { + key: "pie", + value: function pie() { + return { + chart: { + toolbar: { + show: false + } + }, + plotOptions: { + pie: { + donut: { + labels: { + show: false + } + } + } + }, + dataLabels: { + formatter: function formatter(val) { + return val.toFixed(1) + '%'; + }, + style: { + colors: ['#fff'] + }, + dropShadow: { + enabled: true + } + }, + stroke: { + colors: ['#fff'] + }, + fill: { + opacity: 1, + gradient: { + shade: 'dark', + shadeIntensity: 0.35, + inverseColors: false, + stops: [0, 100, 100] + } + }, + padding: { + right: 0, + left: 0 + }, + tooltip: { + theme: 'dark', + fillSeriesColor: true + }, + legend: { + position: 'right' + } + }; + } + }, { + key: "donut", + value: function donut() { + return { + chart: { + toolbar: { + show: false + } + }, + dataLabels: { + formatter: function formatter(val) { + return val.toFixed(1) + '%'; + }, + style: { + colors: ['#fff'] + }, + dropShadow: { + enabled: true + } + }, + stroke: { + colors: ['#fff'] + }, + fill: { + opacity: 1, + gradient: { + shade: 'dark', + shadeIntensity: 0.4, + inverseColors: false, + type: 'vertical', + opacityFrom: 1, + opacityTo: 1, + stops: [70, 98, 100] + } + }, + padding: { + right: 0, + left: 0 + }, + tooltip: { + theme: 'dark', + fillSeriesColor: true + }, + legend: { + position: 'right' + } + }; + } + }, { + key: "radar", + value: function radar() { + this.opts.yaxis[0].labels.style.fontSize = '13px'; + this.opts.yaxis[0].labels.offsetY = 6; + return { + dataLabels: { + enabled: true, + style: { + colors: ['#a8a8a8'], + fontSize: '11px' + } + }, + stroke: { + width: 2 + }, + markers: { + size: 3, + strokeWidth: 1, + strokeOpacity: 1 + }, + fill: { + opacity: 0.2 + }, + tooltip: { + shared: false, + intersect: true, + followCursor: true + }, + grid: { + show: false + }, + xaxis: { + tooltip: { + enabled: false + }, + crosshairs: { + show: false + } + } + }; + } + }, { + key: "radialBar", + value: function radialBar() { + return { + chart: { + animations: { + dynamicAnimation: { + enabled: true, + speed: 800 + } + }, + toolbar: { + show: false + } + }, + fill: { + gradient: { + shade: 'dark', + shadeIntensity: 0.4, + inverseColors: false, + type: 'diagonal2', + opacityFrom: 1, + opacityTo: 1, + stops: [70, 98, 100] + } + }, + padding: { + right: 0, + left: 0 + }, + legend: { + show: false, + position: 'right' + }, + tooltip: { + enabled: false, + fillSeriesColor: true + } + }; + } + }], [{ + key: "convertCatToNumeric", + value: function convertCatToNumeric(opts) { + opts.xaxis.type = 'numeric'; + opts.xaxis.convertedCatToNumeric = true; + opts.xaxis.labels = opts.xaxis.labels || {}; + + opts.xaxis.labels.formatter = opts.xaxis.labels.formatter || function (val) { + return val; + }; + + opts.chart = opts.chart || {}; + opts.chart.zoom = opts.chart.zoom || window.Apex.chart && window.Apex.chart.zoom || {}; + var defaultFormatter = opts.xaxis.labels.formatter; + var labels = opts.xaxis.categories && opts.xaxis.categories.length ? opts.xaxis.categories : opts.labels; + + if (labels && labels.length) { + opts.xaxis.labels.formatter = function (val) { + return defaultFormatter(labels[val - 1]); + }; + } + + opts.xaxis.categories = []; + opts.labels = []; + opts.chart.zoom.enabled = opts.chart.zoom.enabled || false; + return opts; + } + }]); + + return Defaults; + }(); + + /* + ** Util functions which are dependent on ApexCharts instance + */ + var CoreUtils = + /*#__PURE__*/ + function () { + function CoreUtils(ctx) { + _classCallCheck(this, CoreUtils); + + this.ctx = ctx; + this.w = ctx.w; + } + + _createClass(CoreUtils, [{ + key: "getStackedSeriesTotals", + + /** + * @memberof CoreUtils + * returns the sum of all individual values in a multiple stacked series + * Eg. w.globals.series = [[32,33,43,12], [2,3,5,1]] + * @return [34,36,48,13] + **/ + value: function getStackedSeriesTotals() { + var w = this.w; + var total = []; + if (w.globals.series.length === 0) return total; + + for (var i = 0; i < w.globals.series[w.globals.maxValsInArrayIndex].length; i++) { + var t = 0; + + for (var j = 0; j < w.globals.series.length; j++) { + t += w.globals.series[j][i]; + } + + total.push(t); + } + + w.globals.stackedSeriesTotals = total; + return total; + } // get total of the all values inside all series + + }, { + key: "getSeriesTotalByIndex", + value: function getSeriesTotalByIndex() { + var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + + if (index === null) { + // non-plot chart types - pie / donut / circle + return this.w.config.series.reduce(function (acc, cur) { + return acc + cur; + }, 0); + } else { + // axis charts - supporting multiple series + return this.w.globals.series[index].reduce(function (acc, cur) { + return acc + cur; + }, 0); + } + } + }, { + key: "isSeriesNull", + value: function isSeriesNull() { + var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var r = []; + + if (index === null) { + // non-plot chart types - pie / donut / circle + r = this.w.config.series.filter(function (d) { + return d !== null; + }); + } else { + // axis charts - supporting multiple series + r = this.w.globals.series[index].filter(function (d) { + return d !== null; + }); + } + + return r.length === 0; + } + }, { + key: "seriesHaveSameValues", + value: function seriesHaveSameValues(index) { + return this.w.globals.series[index].every(function (val, i, arr) { + return val === arr[0]; + }); + } // maxValsInArrayIndex is the index of series[] which has the largest number of items + + }, { + key: "getLargestSeries", + value: function getLargestSeries() { + var w = this.w; + w.globals.maxValsInArrayIndex = w.globals.series.map(function (a) { + return a.length; + }).indexOf(Math.max.apply(Math, w.globals.series.map(function (a) { + return a.length; + }))); + } + }, { + key: "getLargestMarkerSize", + value: function getLargestMarkerSize() { + var w = this.w; + var size = 0; + w.globals.markers.size.forEach(function (m) { + size = Math.max(size, m); + }); + w.globals.markers.largestSize = size; + return size; + } + /** + * @memberof Core + * returns the sum of all values in a series + * Eg. w.globals.series = [[32,33,43,12], [2,3,5,1]] + * @return [120, 11] + **/ + + }, { + key: "getSeriesTotals", + value: function getSeriesTotals() { + var w = this.w; + w.globals.seriesTotals = w.globals.series.map(function (ser, index) { + var total = 0; + + if (Array.isArray(ser)) { + for (var j = 0; j < ser.length; j++) { + total += ser[j]; + } + } else { + // for pie/donuts/gauges + total += ser; + } + + return total; + }); + } + }, { + key: "getSeriesTotalsXRange", + value: function getSeriesTotalsXRange(minX, maxX) { + var w = this.w; + var seriesTotalsXRange = w.globals.series.map(function (ser, index) { + var total = 0; + + for (var j = 0; j < ser.length; j++) { + if (w.globals.seriesX[index][j] > minX && w.globals.seriesX[index][j] < maxX) { + total += ser[j]; + } + } + + return total; + }); + return seriesTotalsXRange; + } + /** + * @memberof CoreUtils + * returns the percentage value of all individual values which can be used in a 100% stacked series + * Eg. w.globals.series = [[32, 33, 43, 12], [2, 3, 5, 1]] + * @return [[94.11, 91.66, 89.58, 92.30], [5.88, 8.33, 10.41, 7.7]] + **/ + + }, { + key: "getPercentSeries", + value: function getPercentSeries() { + var w = this.w; + w.globals.seriesPercent = w.globals.series.map(function (ser, index) { + var seriesPercent = []; + + if (Array.isArray(ser)) { + for (var j = 0; j < ser.length; j++) { + var total = w.globals.stackedSeriesTotals[j]; + var percent = 0; + + if (total) { + percent = 100 * ser[j] / total; + } + + seriesPercent.push(percent); + } + } else { + var _total = w.globals.seriesTotals.reduce(function (acc, val) { + return acc + val; + }, 0); + + var _percent = 100 * ser / _total; + + seriesPercent.push(_percent); + } + + return seriesPercent; + }); + } + }, { + key: "getCalculatedRatios", + value: function getCalculatedRatios() { + var gl = this.w.globals; + var yRatio = []; + var invertedYRatio = 0; + var xRatio = 0; + var initialXRatio = 0; + var invertedXRatio = 0; + var zRatio = 0; + var baseLineY = []; + var baseLineInvertedY = 0.1; + var baseLineX = 0; + gl.yRange = []; + + if (gl.isMultipleYAxis) { + for (var i = 0; i < gl.minYArr.length; i++) { + gl.yRange.push(Math.abs(gl.minYArr[i] - gl.maxYArr[i])); + baseLineY.push(0); + } + } else { + gl.yRange.push(Math.abs(gl.minY - gl.maxY)); + } + + gl.xRange = Math.abs(gl.maxX - gl.minX); + gl.zRange = Math.abs(gl.maxZ - gl.minZ); // multiple y axis + + for (var _i = 0; _i < gl.yRange.length; _i++) { + yRatio.push(gl.yRange[_i] / gl.gridHeight); + } + + xRatio = gl.xRange / gl.gridWidth; + initialXRatio = Math.abs(gl.initialmaxX - gl.initialminX) / gl.gridWidth; + invertedYRatio = gl.yRange / gl.gridWidth; + invertedXRatio = gl.xRange / gl.gridHeight; + zRatio = gl.zRange / gl.gridHeight * 16; + + if (gl.minY !== Number.MIN_VALUE && Math.abs(gl.minY) !== 0) { + // Negative numbers present in series + gl.hasNegs = true; + } + + if (gl.isMultipleYAxis) { + baseLineY = []; // baseline variables is the 0 of the yaxis which will be needed when there are negatives + + for (var _i2 = 0; _i2 < yRatio.length; _i2++) { + baseLineY.push(-gl.minYArr[_i2] / yRatio[_i2]); + } + } else { + baseLineY.push(-gl.minY / yRatio[0]); + + if (gl.minY !== Number.MIN_VALUE && Math.abs(gl.minY) !== 0) { + baseLineInvertedY = -gl.minY / invertedYRatio; // this is for bar chart + + baseLineX = gl.minX / xRatio; + } + } + + return { + yRatio: yRatio, + invertedYRatio: invertedYRatio, + zRatio: zRatio, + xRatio: xRatio, + initialXRatio: initialXRatio, + invertedXRatio: invertedXRatio, + baseLineInvertedY: baseLineInvertedY, + baseLineY: baseLineY, + baseLineX: baseLineX + }; + } + }, { + key: "getLogSeries", + value: function getLogSeries(series) { + var w = this.w; + w.globals.seriesLog = series.map(function (s, i) { + if (w.config.yaxis[i] && w.config.yaxis[i].logarithmic) { + return s.map(function (d) { + if (d === null) return null; + var logVal = (Math.log(d) - Math.log(w.globals.minYArr[i])) / (Math.log(w.globals.maxYArr[i]) - Math.log(w.globals.minYArr[i])); + return logVal; + }); + } else { + return s; + } + }); + return w.globals.seriesLog; + } + }, { + key: "getLogYRatios", + value: function getLogYRatios(yRatio) { + var _this = this; + + var w = this.w; + var gl = this.w.globals; + gl.yLogRatio = yRatio.slice(); + gl.logYRange = gl.yRange.map(function (yRange, i) { + if (w.config.yaxis[i] && _this.w.config.yaxis[i].logarithmic) { + var maxY = -Number.MAX_VALUE; + var minY = Number.MIN_VALUE; + var range = 1; + gl.seriesLog.forEach(function (s, si) { + s.forEach(function (v) { + if (w.config.yaxis[si] && w.config.yaxis[si].logarithmic) { + maxY = Math.max(v, maxY); + minY = Math.min(v, minY); + } + }); + }); + range = Math.pow(gl.yRange[i], Math.abs(minY - maxY) / gl.yRange[i]); + gl.yLogRatio[i] = range / gl.gridHeight; + return range; + } + }); + return gl.yLogRatio; + } // Some config objects can be array - and we need to extend them correctly + + }], [{ + key: "checkComboSeries", + value: function checkComboSeries(series) { + var comboCharts = false; + var comboChartsHasBars = false; // if user specified a type in series too, turn on comboCharts flag + + if (series.length && typeof series[0].type !== 'undefined') { + comboCharts = true; + series.forEach(function (s) { + if (s.type === 'bar' || s.type === 'column') { + comboChartsHasBars = true; + } + }); + } + + return { + comboCharts: comboCharts, + comboChartsHasBars: comboChartsHasBars + }; + } + }, { + key: "extendArrayProps", + value: function extendArrayProps(configInstance, options) { + if (options.yaxis) { + options = configInstance.extendYAxis(options); + } + + if (options.annotations) { + if (options.annotations.yaxis) { + options = configInstance.extendYAxisAnnotations(options); + } + + if (options.annotations.xaxis) { + options = configInstance.extendXAxisAnnotations(options); + } + + if (options.annotations.points) { + options = configInstance.extendPointAnnotations(options); + } + } + + return options; + } + }]); + + return CoreUtils; + }(); + + /** + * ApexCharts Config Class for extending user options with pre-defined ApexCharts config. + * + * @module Config + **/ + + var Config = + /*#__PURE__*/ + function () { + function Config(opts) { + _classCallCheck(this, Config); + + this.opts = opts; + } + + _createClass(Config, [{ + key: "init", + value: function init() { + var opts = this.opts; + var options = new Options(); + var defaults = new Defaults(opts); + this.chartType = opts.chart.type; + + if (this.chartType === 'histogram') { + // technically, a histogram can be drawn by a column chart with no spaces in between + opts.chart.type = 'bar'; + opts = Utils.extend({ + plotOptions: { + bar: { + columnWidth: '99.99%' + } + } + }, opts); + } + + opts = this.extendYAxis(opts); + opts = this.extendAnnotations(opts); + var config = options.init(); + var newDefaults = {}; + + if (opts && _typeof(opts) === 'object') { + var chartDefaults = {}; + + switch (this.chartType) { + case 'line': + chartDefaults = defaults.line(); + break; + + case 'area': + chartDefaults = defaults.area(); + break; + + case 'bar': + chartDefaults = defaults.bar(); + break; + + case 'candlestick': + chartDefaults = defaults.candlestick(); + break; + + case 'rangeBar': + chartDefaults = defaults.rangeBar(); + break; + + case 'histogram': + chartDefaults = defaults.bar(); + break; + + case 'bubble': + chartDefaults = defaults.bubble(); + break; + + case 'scatter': + chartDefaults = defaults.scatter(); + break; + + case 'heatmap': + chartDefaults = defaults.heatmap(); + break; + + case 'pie': + chartDefaults = defaults.pie(); + break; + + case 'donut': + chartDefaults = defaults.donut(); + break; + + case 'radar': + chartDefaults = defaults.radar(); + break; + + case 'radialBar': + chartDefaults = defaults.radialBar(); + break; + + default: + chartDefaults = defaults.line(); + } + + if (opts.chart.brush && opts.chart.brush.enabled) { + chartDefaults = defaults.brush(chartDefaults); + } + + if (opts.chart.stacked && opts.chart.stackType === '100%') { + defaults.stacked100(); + } // If user has specified a dark theme, make the tooltip dark too + + + this.checkForDarkTheme(window.Apex); // check global window Apex options + + this.checkForDarkTheme(opts); // check locally passed options + + opts.xaxis = opts.xaxis || window.Apex.xaxis || {}; + var combo = CoreUtils.checkComboSeries(opts.series); + + if ((opts.chart.type === 'line' || opts.chart.type === 'area' || opts.chart.type === 'scatter') && !combo.comboChartsHasBars && opts.xaxis.type !== 'datetime' && opts.xaxis.type !== 'numeric' && opts.xaxis.tickPlacement !== 'between') { + opts = Defaults.convertCatToNumeric(opts); + } + + if (opts.chart.sparkline && opts.chart.sparkline.enabled || window.Apex.chart && window.Apex.chart.sparkline && window.Apex.chart.sparkline.enabled) { + chartDefaults = defaults.sparkline(chartDefaults); + } + + newDefaults = Utils.extend(config, chartDefaults); + } // config should cascade in this fashion + // default-config < global-apex-variable-config < user-defined-config + // get GLOBALLY defined options and merge with the default config + + + var mergedWithDefaultConfig = Utils.extend(newDefaults, window.Apex); // get the merged config and extend with user defined config + + config = Utils.extend(mergedWithDefaultConfig, opts); // some features are not supported. those mismatches should be handled + + config = this.handleUserInputErrors(config); + return config; + } + }, { + key: "extendYAxis", + value: function extendYAxis(opts) { + var options = new Options(); + + if (typeof opts.yaxis === 'undefined') { + opts.yaxis = {}; + } // extend global yaxis config (only if object is provided / not an array) + + + if (opts.yaxis.constructor !== Array && window.Apex.yaxis && window.Apex.yaxis.constructor !== Array) { + opts.yaxis = Utils.extend(opts.yaxis, window.Apex.yaxis); + } // as we can't extend nested object's array with extend, we need to do it first + // user can provide either an array or object in yaxis config + + + if (opts.yaxis.constructor !== Array) { + // convert the yaxis to array if user supplied object + opts.yaxis = [Utils.extend(options.yAxis, opts.yaxis)]; + } else { + opts.yaxis = Utils.extendArray(opts.yaxis, options.yAxis); + } + + return opts; + } // annotations also accepts array, so we need to extend them manually + + }, { + key: "extendAnnotations", + value: function extendAnnotations(opts) { + if (typeof opts.annotations === 'undefined') { + opts.annotations = {}; + opts.annotations.yaxis = []; + opts.annotations.xaxis = []; + opts.annotations.points = []; + } + + opts = this.extendYAxisAnnotations(opts); + opts = this.extendXAxisAnnotations(opts); + opts = this.extendPointAnnotations(opts); + return opts; + } + }, { + key: "extendYAxisAnnotations", + value: function extendYAxisAnnotations(opts) { + var options = new Options(); + opts.annotations.yaxis = Utils.extendArray(typeof opts.annotations.yaxis !== 'undefined' ? opts.annotations.yaxis : [], options.yAxisAnnotation); + return opts; + } + }, { + key: "extendXAxisAnnotations", + value: function extendXAxisAnnotations(opts) { + var options = new Options(); + opts.annotations.xaxis = Utils.extendArray(typeof opts.annotations.xaxis !== 'undefined' ? opts.annotations.xaxis : [], options.xAxisAnnotation); + return opts; + } + }, { + key: "extendPointAnnotations", + value: function extendPointAnnotations(opts) { + var options = new Options(); + opts.annotations.points = Utils.extendArray(typeof opts.annotations.points !== 'undefined' ? opts.annotations.points : [], options.pointAnnotation); + return opts; + } + }, { + key: "checkForDarkTheme", + value: function checkForDarkTheme(opts) { + if (opts.theme && opts.theme.mode === 'dark') { + if (!opts.tooltip) { + opts.tooltip = {}; + } + + if (opts.tooltip.theme !== 'light') { + opts.tooltip.theme = 'dark'; + } + + if (!opts.chart.foreColor) { + opts.chart.foreColor = '#f6f7f8'; + } + + if (!opts.theme.palette) { + opts.theme.palette = 'palette4'; + } + } + } + }, { + key: "handleUserInputErrors", + value: function handleUserInputErrors(opts) { + var config = opts; // conflicting tooltip option. intersect makes sure to focus on 1 point at a time. Shared cannot be used along with it + + if (config.tooltip.shared && config.tooltip.intersect) { + throw new Error('tooltip.shared cannot be enabled when tooltip.intersect is true. Turn off any other option by setting it to false.'); + } + + if (config.chart.scroller) { + console.warn('Scroller has been deprecated since v2.0.0. Please remove the configuration for chart.scroller'); + } + + if ((config.chart.type === 'bar' || config.chart.type === 'rangeBar') && config.plotOptions.bar.horizontal) { + // No multiple yaxis for bars + if (config.yaxis.length > 1) { + throw new Error('Multiple Y Axis for bars are not supported. Switch to column chart by setting plotOptions.bar.horizontal=false'); + } // if yaxis is reversed in horizontal bar chart, you should draw the y-axis on right side + + + if (config.yaxis[0].reversed) { + config.yaxis[0].opposite = true; + } + + config.xaxis.tooltip.enabled = false; // no xaxis tooltip for horizontal bar + + config.yaxis[0].tooltip.enabled = false; // no xaxis tooltip for horizontal bar + + config.chart.zoom.enabled = false; // no zooming for horz bars + } + + if (config.chart.type === 'bar' || config.chart.type === 'rangeBar') { + if (config.tooltip.shared) { + if (config.xaxis.crosshairs.width === 'barWidth' && config.series.length > 1) { + console.warn('crosshairs.width = "barWidth" is only supported in single series, not in a multi-series barChart.'); + config.xaxis.crosshairs.width = 'tickWidth'; + } + + if (config.plotOptions.bar.horizontal) { + config.states.hover.type = 'none'; + config.tooltip.shared = false; + } + + if (!config.tooltip.followCursor) { + console.warn('followCursor option in shared columns cannot be turned off. Please set %ctooltip.followCursor: true', 'color: blue;'); + config.tooltip.followCursor = true; + } + } + } + + if (config.chart.type === 'candlestick') { + if (config.yaxis[0].reversed) { + console.warn('Reversed y-axis in candlestick chart is not supported.'); + config.yaxis[0].reversed = false; + } + } + + if (config.chart.group && config.yaxis[0].labels.minWidth === 0) { + console.warn('It looks like you have multiple charts in synchronization. You must provide yaxis.labels.minWidth which must be EQUAL for all grouped charts to prevent incorrect behaviour.'); + } // if user supplied array for stroke width, it will only be applicable to line/area charts, for any other charts, revert back to Number + + + if (Array.isArray(config.stroke.width)) { + if (config.chart.type !== 'line' && config.chart.type !== 'area') { + console.warn('stroke.width option accepts array only for line and area charts. Reverted back to Number'); + config.stroke.width = config.stroke.width[0]; + } + } + + return config; + } + }]); + + return Config; + }(); + + var Globals = + /*#__PURE__*/ + function () { + function Globals() { + _classCallCheck(this, Globals); + } + + _createClass(Globals, [{ + key: "globalVars", + value: function globalVars(config) { + return { + chartID: null, + // chart ID - apexcharts-cuid + cuid: null, + // chart ID - random numbers excluding "apexcharts" part + events: { + beforeMount: [], + mounted: [], + updated: [], + clicked: [], + selection: [], + dataPointSelection: [], + zoomed: [], + scrolled: [] + }, + colors: [], + clientX: null, + clientY: null, + fill: { + colors: [] + }, + stroke: { + colors: [] + }, + dataLabels: { + style: { + colors: [] + } + }, + radarPolygons: { + fill: { + colors: [] + } + }, + markers: { + colors: [], + size: config.markers.size, + largestSize: 0 + }, + animationEnded: false, + isTouchDevice: 'ontouchstart' in window || navigator.msMaxTouchPoints, + isDirty: false, + // chart has been updated after the initial render. This is different than dataChanged property. isDirty means user manually called some method to update + isExecCalled: false, + // whether user updated the chart through the exec method + initialConfig: null, + // we will store the first config user has set to go back when user finishes interactions like zooming and come out of it + lastXAxis: [], + lastYAxis: [], + series: [], + // the MAIN series array (y values) + seriesRangeStart: [], + // the clone of series becomes the start in range + seriesRangeEnd: [], + // the end values in range chart + seriesPercent: [], + // the percentage values of the given series + seriesTotals: [], + stackedSeriesTotals: [], + seriesX: [], + // store the numeric x values in this array (x values) + seriesZ: [], + // The 3rd "Z" dimension for bubbles chart (z values) + labels: [], + // store the text to draw on x axis + // Don't mutate the labels, many things including tooltips depends on it! + timelineLabels: [], + // store the timeline Labels in another variable + invertedTimelineLabels: [], + // for rangebar timeline + seriesNames: [], + // same as labels, used in non axis charts + noLabelsProvided: false, + // if user didn't provide any categories/labels or x values, fallback to 1,2,3,4... + allSeriesCollapsed: false, + collapsedSeries: [], + // when user collapses a series, it goes into this array + collapsedSeriesIndices: [], + // this stores the index of the collapsedSeries instead of whole object for quick access + ancillaryCollapsedSeries: [], + // when user collapses an "alwaysVisible" series, it goes into this array + ancillaryCollapsedSeriesIndices: [], + // this stores the index of the ancillaryCollapsedSeries whose y-axis is always visible + risingSeries: [], + // when user re-opens a collapsed series, it goes here + dataFormatXNumeric: false, + // boolean value to indicate user has passed numeric x values + capturedSeriesIndex: -1, + capturedDataPointIndex: -1, + selectedDataPoints: [], + ignoreYAxisIndexes: [], + // when series are being collapsed in multiple y axes, ignore certain index + yAxisSameScaleIndices: [], + padHorizontal: 0, + maxValsInArrayIndex: 0, + radialSize: 0, + zoomEnabled: config.chart.toolbar.autoSelected === 'zoom' && config.chart.toolbar.tools.zoom && config.chart.zoom.enabled, + panEnabled: config.chart.toolbar.autoSelected === 'pan' && config.chart.toolbar.tools.pan, + selectionEnabled: config.chart.toolbar.autoSelected === 'selection' && config.chart.toolbar.tools.selection, + yaxis: null, + minY: Number.MIN_VALUE, + // is 5e-324, i.e. the smallest positive number + // NOTE: If there are multiple y axis, the first yaxis array element will be considered for all y values calculations. Rest all will be calculated based on that + maxY: -Number.MAX_VALUE, + // is -1.7976931348623157e+308 + // NOTE: The above note for minY applies here as well + minYArr: [], + maxYArr: [], + maxX: -Number.MAX_VALUE, + // is -1.7976931348623157e+308 + initialmaxX: -Number.MAX_VALUE, + minX: Number.MIN_VALUE, + // is 5e-324, i.e. the smallest positive number + initialminX: Number.MIN_VALUE, + minZ: Number.MIN_VALUE, + // Max Z value in charts with Z axis + maxZ: -Number.MAX_VALUE, + // Max Z value in charts with Z axis + minXDiff: Number.MAX_VALUE, + mousedown: false, + lastClientPosition: {}, + // don't reset this variable this the chart is destroyed. It is used to detect right or left mousemove in panning + visibleXRange: undefined, + yRange: [], + // this property is the absolute sum of positive and negative values [eg (-100 + 200 = 300)] - yAxis + zRange: 0, + // zAxis Range (for bubble charts) + xRange: 0, + // xAxis range + yValueDecimal: 0, + // are there floating numbers in the series. If yes, this represent the len of the decimals + total: 0, + SVGNS: 'http://www.w3.org/2000/svg', + // svg namespace + svgWidth: 0, + // the whole svg width + svgHeight: 0, + // the whole svg height + noData: false, + // whether there is any data to display or not + locale: {}, + // the current locale values will be preserved here for global access + dom: {}, + // for storing all dom nodes in this particular property + // elWrap: null, // the element that wraps everything + // elGraphical: null, // this contains lines/areas/bars/pies + // elGridRect: null, // paths going outside this area will be clipped + // elGridRectMask: null, // clipping will happen with this mask + // elGridRectMarkerMask: null, // clipping will happen with this mask + // elLegendWrap: null, // the whole legend area + // elDefs: null, // [defs] element + memory: { + methodsToExec: [] + }, + shouldAnimate: true, + skipLastTimelinelabel: false, + // when last label is cropped, skip drawing it + delayedElements: [], + // element which appear after animation has finished + axisCharts: true, + // chart type = line or area or bar + // (refer them also as plot charts in the code) + isXNumeric: false, + // bool: data was provided in a {[x,y], [x,y]} pattern + isDataXYZ: false, + // bool: data was provided in a {[x,y,z]} pattern + resized: false, + // bool: user has resized + resizeTimer: null, + // timeout function to make a small delay before + // drawing when user resized + comboCharts: false, + // bool: whether it's a combination of line/column + comboChartsHasBars: false, + // bool: whether it's a combination of line/column + dataChanged: false, + // bool: has data changed dynamically + previousPaths: [], + // array: when data is changed, it will animate from + // previous paths + seriesXvalues: [], + // we will need this in tooltip (it's x position) + // when we will have unequal x values, we will need + // some way to get x value depending on mouse pointer + seriesYvalues: [], + // we will need this when deciding which series + // user hovered on + seriesCandleO: [], + // candle stick open values + seriesCandleH: [], + // candle stick high values + seriesCandleL: [], + // candle stick low values + seriesCandleC: [], + // candle stick close values + allSeriesHasEqualX: true, + dataPoints: 0, + // the longest series length + pointsArray: [], + // store the points positions here to draw later on hover + // format is - [[x,y],[x,y]... [x,y]] + dataLabelsRects: [], + // store the positions of datalabels to prevent collision + lastDrawnDataLabelsIndexes: [], + hasNullValues: false, + // bool: whether series contains null values + easing: null, + // function: animation effect to apply + zoomed: false, + // whether user has zoomed or not + gridWidth: 0, + // drawable width of actual graphs (series paths) + gridHeight: 0, + // drawable height of actual graphs (series paths) + yAxisScale: [], + xAxisScale: null, + xAxisTicksPositions: [], + timescaleTicks: [], + rotateXLabels: false, + defaultLabels: false, + xLabelFormatter: undefined, + // formatter for x axis labels + yLabelFormatters: [], + xaxisTooltipFormatter: undefined, + // formatter for x axis tooltip + ttKeyFormatter: undefined, + ttVal: undefined, + ttZFormatter: undefined, + LINE_HEIGHT_RATIO: 1.618, + xAxisLabelsHeight: 0, + yAxisLabelsWidth: 0, + scaleX: 1, + scaleY: 1, + translateX: 0, + translateY: 0, + translateYAxisX: [], + yLabelsCoords: [], + yTitleCoords: [], + yAxisWidths: [], + translateXAxisY: 0, + translateXAxisX: 0, + tooltip: null, + tooltipOpts: null + }; + } + }, { + key: "init", + value: function init(config) { + var globals = this.globalVars(config); + globals.initialConfig = Utils.extend({}, config); + globals.initialSeries = JSON.parse(JSON.stringify(globals.initialConfig.series)); + globals.lastXAxis = JSON.parse(JSON.stringify(globals.initialConfig.xaxis)); + globals.lastYAxis = JSON.parse(JSON.stringify(globals.initialConfig.yaxis)); + return globals; + } + }]); + + return Globals; + }(); + + /** + * ApexCharts Base Class for extending user options with pre-defined ApexCharts config. + * + * @module Base + **/ + + var Base = + /*#__PURE__*/ + function () { + function Base(opts) { + _classCallCheck(this, Base); + + this.opts = opts; + } + + _createClass(Base, [{ + key: "init", + value: function init() { + var config = new Config(this.opts).init(); + var globals = new Globals().init(config); + var w = { + config: config, + globals: globals + }; + return w; + } + }]); + + return Base; + }(); + + /** + * ApexCharts Fill Class for setting fill options of the paths. + * + * @module Fill + **/ + + var Fill = + /*#__PURE__*/ + function () { + function Fill(ctx) { + _classCallCheck(this, Fill); + + this.ctx = ctx; + this.w = ctx.w; + this.opts = null; + this.seriesIndex = 0; + } + + _createClass(Fill, [{ + key: "clippedImgArea", + value: function clippedImgArea(params) { + var w = this.w; + var cnf = w.config; + var svgW = parseInt(w.globals.gridWidth); + var svgH = parseInt(w.globals.gridHeight); + var size = svgW > svgH ? svgW : svgH; + var fillImg = params.image; + var imgWidth = 0; + var imgHeight = 0; + + if (typeof params.width === 'undefined' && typeof params.height === 'undefined') { + if (cnf.fill.image.width !== undefined && cnf.fill.image.height !== undefined) { + imgWidth = cnf.fill.image.width + 1; + imgHeight = cnf.fill.image.height; + } else { + imgWidth = size + 1; + imgHeight = size; + } + } else { + imgWidth = params.width; + imgHeight = params.height; + } + + var elPattern = document.createElementNS(w.globals.SVGNS, 'pattern'); + Graphics.setAttrs(elPattern, { + id: params.patternID, + patternUnits: params.patternUnits ? params.patternUnits : 'userSpaceOnUse', + width: imgWidth + 'px', + height: imgHeight + 'px' + }); + var elImage = document.createElementNS(w.globals.SVGNS, 'image'); + elPattern.appendChild(elImage); + elImage.setAttributeNS('http://www.w3.org/1999/xlink', 'href', fillImg); + Graphics.setAttrs(elImage, { + x: 0, + y: 0, + preserveAspectRatio: 'none', + width: imgWidth + 'px', + height: imgHeight + 'px' + }); + elImage.style.opacity = params.opacity; + w.globals.dom.elDefs.node.appendChild(elPattern); + } + }, { + key: "getSeriesIndex", + value: function getSeriesIndex(opts) { + var w = this.w; + + if (w.config.chart.type === 'bar' && w.config.plotOptions.bar.distributed || w.config.chart.type === 'heatmap') { + this.seriesIndex = opts.seriesNumber; + } else { + this.seriesIndex = opts.seriesNumber % w.globals.series.length; + } + + return this.seriesIndex; + } + }, { + key: "fillPath", + value: function fillPath(opts) { + var w = this.w; + this.opts = opts; + var cnf = this.w.config; + var pathFill; + var patternFill, gradientFill; + this.seriesIndex = this.getSeriesIndex(opts); + var fillColors = this.getFillColors(); + var fillColor = fillColors[this.seriesIndex]; + + if (typeof fillColor === 'function') { + fillColor = fillColor({ + seriesIndex: this.seriesIndex, + value: opts.value, + w: w + }); + } + + var fillType = this.getFillType(this.seriesIndex); + var fillOpacity = Array.isArray(cnf.fill.opacity) ? cnf.fill.opacity[this.seriesIndex] : cnf.fill.opacity; + var defaultColor = fillColor; + + if (opts.color) { + fillColor = opts.color; + } + + if (fillColor.indexOf('rgb') === -1) { + defaultColor = Utils.hexToRgba(fillColor, fillOpacity); + } else { + if (fillColor.indexOf('rgba') > -1) { + fillOpacity = 0 + '.' + Utils.getOpacityFromRGBA(fillColor); + } + } + + if (fillType === 'pattern') { + patternFill = this.handlePatternFill(patternFill, fillColor, fillOpacity, defaultColor); + } + + if (fillType === 'gradient') { + gradientFill = this.handleGradientFill(gradientFill, fillColor, fillOpacity, this.seriesIndex); + } + + if (cnf.fill.image.src.length > 0 && fillType === 'image') { + if (opts.seriesNumber < cnf.fill.image.src.length) { + this.clippedImgArea({ + opacity: fillOpacity, + image: cnf.fill.image.src[opts.seriesNumber], + patternUnits: opts.patternUnits, + patternID: "pattern".concat(w.globals.cuid).concat(opts.seriesNumber + 1) + }); + pathFill = "url(#pattern".concat(w.globals.cuid).concat(opts.seriesNumber + 1, ")"); + } else { + pathFill = defaultColor; + } + } else if (fillType === 'gradient') { + pathFill = gradientFill; + } else if (fillType === 'pattern') { + pathFill = patternFill; + } else { + pathFill = defaultColor; + } // override pattern/gradient if opts.solid is true + + + if (opts.solid) { + pathFill = defaultColor; + } + + return pathFill; + } + }, { + key: "getFillType", + value: function getFillType(seriesIndex) { + var w = this.w; + + if (Array.isArray(w.config.fill.type)) { + return w.config.fill.type[seriesIndex]; + } else { + return w.config.fill.type; + } + } + }, { + key: "getFillColors", + value: function getFillColors() { + var w = this.w; + var cnf = w.config; + var opts = this.opts; + var fillColors = []; + + if (w.globals.comboCharts) { + if (w.config.series[this.seriesIndex].type === 'line') { + if (w.globals.stroke.colors instanceof Array) { + fillColors = w.globals.stroke.colors; + } else { + fillColors.push(w.globals.stroke.colors); + } + } else { + if (w.globals.fill.colors instanceof Array) { + fillColors = w.globals.fill.colors; + } else { + fillColors.push(w.globals.fill.colors); + } + } + } else { + if (cnf.chart.type === 'line') { + if (w.globals.stroke.colors instanceof Array) { + fillColors = w.globals.stroke.colors; + } else { + fillColors.push(w.globals.stroke.colors); + } + } else { + if (w.globals.fill.colors instanceof Array) { + fillColors = w.globals.fill.colors; + } else { + fillColors.push(w.globals.fill.colors); + } + } + } // colors passed in arguments + + + if (typeof opts.fillColors !== 'undefined') { + fillColors = []; + + if (opts.fillColors instanceof Array) { + fillColors = opts.fillColors.slice(); + } else { + fillColors.push(opts.fillColors); + } + } + + return fillColors; + } + }, { + key: "handlePatternFill", + value: function handlePatternFill(patternFill, fillColor, fillOpacity, defaultColor) { + var cnf = this.w.config; + var opts = this.opts; + var graphics = new Graphics(this.ctx); + var patternStrokeWidth = cnf.fill.pattern.strokeWidth === undefined ? Array.isArray(cnf.stroke.width) ? cnf.stroke.width[this.seriesIndex] : cnf.stroke.width : Array.isArray(cnf.fill.pattern.strokeWidth) ? cnf.fill.pattern.strokeWidth[this.seriesIndex] : cnf.fill.pattern.strokeWidth; + var patternLineColor = fillColor; + + if (cnf.fill.pattern.style instanceof Array) { + if (typeof cnf.fill.pattern.style[opts.seriesNumber] !== 'undefined') { + var pf = graphics.drawPattern(cnf.fill.pattern.style[opts.seriesNumber], cnf.fill.pattern.width, cnf.fill.pattern.height, patternLineColor, patternStrokeWidth, fillOpacity); + patternFill = pf; + } else { + patternFill = defaultColor; + } + } else { + patternFill = graphics.drawPattern(cnf.fill.pattern.style, cnf.fill.pattern.width, cnf.fill.pattern.height, patternLineColor, patternStrokeWidth, fillOpacity); + } + + return patternFill; + } + }, { + key: "handleGradientFill", + value: function handleGradientFill(gradientFill, fillColor, fillOpacity, i) { + var cnf = this.w.config; + var opts = this.opts; + var graphics = new Graphics(this.ctx); + var utils = new Utils(); + var type = cnf.fill.gradient.type; + var gradientFrom, gradientTo; + var opacityFrom = cnf.fill.gradient.opacityFrom === undefined ? fillOpacity : Array.isArray(cnf.fill.gradient.opacityFrom) ? cnf.fill.gradient.opacityFrom[i] : cnf.fill.gradient.opacityFrom; + var opacityTo = cnf.fill.gradient.opacityTo === undefined ? fillOpacity : Array.isArray(cnf.fill.gradient.opacityTo) ? cnf.fill.gradient.opacityTo[i] : cnf.fill.gradient.opacityTo; + gradientFrom = fillColor; + + if (cnf.fill.gradient.gradientToColors === undefined || cnf.fill.gradient.gradientToColors.length === 0) { + if (cnf.fill.gradient.shade === 'dark') { + gradientTo = utils.shadeColor(parseFloat(cnf.fill.gradient.shadeIntensity) * -1, fillColor); + } else { + gradientTo = utils.shadeColor(parseFloat(cnf.fill.gradient.shadeIntensity), fillColor); + } + } else { + gradientTo = cnf.fill.gradient.gradientToColors[opts.seriesNumber]; + } + + if (cnf.fill.gradient.inverseColors) { + var t = gradientFrom; + gradientFrom = gradientTo; + gradientTo = t; + } + + gradientFill = graphics.drawGradient(type, gradientFrom, gradientTo, opacityFrom, opacityTo, opts.size, cnf.fill.gradient.stops, cnf.fill.gradient.colorStops, i); + return gradientFill; + } + }]); + + return Fill; + }(); + + /** + * ApexCharts Markers Class for drawing points on y values in axes charts. + * + * @module Markers + **/ + + var Markers = + /*#__PURE__*/ + function () { + function Markers(ctx, opts) { + _classCallCheck(this, Markers); + + this.ctx = ctx; + this.w = ctx.w; + } + + _createClass(Markers, [{ + key: "setGlobalMarkerSize", + value: function setGlobalMarkerSize() { + var w = this.w; + w.globals.markers.size = Array.isArray(w.config.markers.size) ? w.config.markers.size : [w.config.markers.size]; + + if (w.globals.markers.size.length > 0) { + if (w.globals.markers.size.length < w.globals.series.length + 1) { + for (var i = 0; i <= w.globals.series.length; i++) { + if (typeof w.globals.markers.size[i] === 'undefined') { + w.globals.markers.size.push(w.globals.markers.size[0]); + } + } + } + } else { + w.globals.markers.size = w.config.series.map(function (s) { + return w.config.markers.size; + }); + } + } + }, { + key: "plotChartMarkers", + value: function plotChartMarkers(pointsPos, seriesIndex, j) { + var w = this.w; + var i = seriesIndex; + var p = pointsPos; + var elPointsWrap = null; + var graphics = new Graphics(this.ctx); + var point; + + if (w.globals.markers.size[seriesIndex] > 0) { + elPointsWrap = graphics.group({ + class: 'apexcharts-series-markers' + }); + elPointsWrap.attr('clip-path', "url(#gridRectMarkerMask".concat(w.globals.cuid, ")")); + } + + if (p.x instanceof Array) { + for (var q = 0; q < p.x.length; q++) { + var dataPointIndex = j; // a small hack as we have 2 points for the first val to connect it + + if (j === 1 && q === 0) dataPointIndex = 0; + if (j === 1 && q === 1) dataPointIndex = 1; + var PointClasses = 'apexcharts-marker'; + + if ((w.config.chart.type === 'line' || w.config.chart.type === 'area') && !w.globals.comboCharts && !w.config.tooltip.intersect) { + PointClasses += ' no-pointer-events'; + } + + var shouldMarkerDraw = Array.isArray(w.config.markers.size) ? w.globals.markers.size[seriesIndex] > 0 : w.config.markers.size > 0; + + if (shouldMarkerDraw) { + if (Utils.isNumber(p.y[q])) { + PointClasses += " w".concat((Math.random() + 1).toString(36).substring(4)); + } else { + PointClasses = 'apexcharts-nullpoint'; + } + + var opts = this.getMarkerConfig(PointClasses, seriesIndex, dataPointIndex); + + if (w.config.series[i].data[j]) { + if (w.config.series[i].data[j].fillColor) { + opts.pointFillColor = w.config.series[i].data[j].fillColor; + } + + if (w.config.series[i].data[j].strokeColor) { + opts.pointStrokeColor = w.config.series[i].data[j].strokeColor; + } + } + + point = graphics.drawMarker(p.x[q], p.y[q], opts); + point.attr('rel', dataPointIndex); + point.attr('j', dataPointIndex); + point.attr('index', seriesIndex); + point.node.setAttribute('default-marker-size', opts.pSize); + var filters = new Filters(this.ctx); + filters.setSelectionFilter(point, seriesIndex, dataPointIndex); + this.addEvents(point); + + if (elPointsWrap) { + elPointsWrap.add(point); + } + } else { + // dynamic array creation - multidimensional + if (typeof w.globals.pointsArray[seriesIndex] === 'undefined') w.globals.pointsArray[seriesIndex] = []; + w.globals.pointsArray[seriesIndex].push([p.x[q], p.y[q]]); + } + } + } + + return elPointsWrap; + } + }, { + key: "getMarkerConfig", + value: function getMarkerConfig(cssClass, seriesIndex) { + var dataPointIndex = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; + var w = this.w; + var pStyle = this.getMarkerStyle(seriesIndex); + var pSize = w.globals.markers.size[seriesIndex]; // discrete markers is an option where user can specify a particular marker with different size and color + + if (dataPointIndex !== null && w.config.markers.discrete.length) { + w.config.markers.discrete.map(function (marker) { + if (marker.seriesIndex === seriesIndex && marker.dataPointIndex === dataPointIndex) { + pStyle.pointStrokeColor = marker.strokeColor; + pStyle.pointFillColor = marker.fillColor; + pSize = marker.size; + } + }); + } + + return { + pSize: pSize, + pRadius: w.config.markers.radius, + pWidth: w.config.markers.strokeWidth, + pointStrokeColor: pStyle.pointStrokeColor, + pointFillColor: pStyle.pointFillColor, + shape: w.config.markers.shape instanceof Array ? w.config.markers.shape[seriesIndex] : w.config.markers.shape, + class: cssClass, + pointStrokeOpacity: w.config.markers.strokeOpacity, + pointFillOpacity: w.config.markers.fillOpacity, + seriesIndex: seriesIndex + }; + } + }, { + key: "addEvents", + value: function addEvents(circle) { + var w = this.w; + var graphics = new Graphics(this.ctx); + circle.node.addEventListener('mouseenter', graphics.pathMouseEnter.bind(this.ctx, circle)); + circle.node.addEventListener('mouseleave', graphics.pathMouseLeave.bind(this.ctx, circle)); + circle.node.addEventListener('mousedown', graphics.pathMouseDown.bind(this.ctx, circle)); + circle.node.addEventListener('click', w.config.markers.onClick); + circle.node.addEventListener('dblclick', w.config.markers.onDblClick); + circle.node.addEventListener('touchstart', graphics.pathMouseDown.bind(this.ctx, circle), { + passive: true + }); + } + }, { + key: "getMarkerStyle", + value: function getMarkerStyle(seriesIndex) { + var w = this.w; + var colors = w.globals.markers.colors; + var strokeColors = w.config.markers.strokeColor || w.config.markers.strokeColors; + var pointStrokeColor = strokeColors instanceof Array ? strokeColors[seriesIndex] : strokeColors; + var pointFillColor = colors instanceof Array ? colors[seriesIndex] : colors; + return { + pointStrokeColor: pointStrokeColor, + pointFillColor: pointFillColor + }; + } + }]); + + return Markers; + }(); + + /** + * ApexCharts Scatter Class. + * This Class also handles bubbles chart as currently there is no major difference in drawing them, + * @module Scatter + **/ + + var Scatter = + /*#__PURE__*/ + function () { + function Scatter(ctx) { + _classCallCheck(this, Scatter); + + this.ctx = ctx; + this.w = ctx.w; + this.initialAnim = this.w.config.chart.animations.enabled; + this.dynamicAnim = this.initialAnim && this.w.config.chart.animations.dynamicAnimation.enabled; // this array will help in centering the label in bubbles + + this.radiusSizes = []; + } + + _createClass(Scatter, [{ + key: "draw", + value: function draw(elSeries, j, opts) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var realIndex = opts.realIndex; + var pointsPos = opts.pointsPos; + var zRatio = opts.zRatio; + var elPointsMain = opts.elParent; + var elPointsWrap = graphics.group({ + class: "apexcharts-series-markers apexcharts-series-".concat(w.config.chart.type) + }); + elPointsWrap.attr('clip-path', "url(#gridRectMarkerMask".concat(w.globals.cuid, ")")); + + if (pointsPos.x instanceof Array) { + for (var q = 0; q < pointsPos.x.length; q++) { + var dataPointIndex = j + 1; + var shouldDraw = true; // a small hack as we have 2 points for the first val to connect it + + if (j === 0 && q === 0) dataPointIndex = 0; + if (j === 0 && q === 1) dataPointIndex = 1; + var radius = 0; + var finishRadius = w.globals.markers.size[realIndex]; + + if (zRatio !== Infinity) { + // means we have a bubble + finishRadius = w.globals.seriesZ[realIndex][dataPointIndex] / zRatio; + + if (typeof this.radiusSizes[realIndex] === 'undefined') { + this.radiusSizes.push([]); + } + + this.radiusSizes[realIndex].push(finishRadius); + } + + if (!w.config.chart.animations.enabled) { + radius = finishRadius; + } + + var x = pointsPos.x[q]; + var y = pointsPos.y[q]; + radius = radius || 0; + + if (x === 0 && y === 0 || y === null || typeof w.globals.series[realIndex][dataPointIndex] === 'undefined') { + shouldDraw = false; + } + + if (shouldDraw) { + var circle = this.drawPoint(x, y, radius, finishRadius, realIndex, dataPointIndex, j); + elPointsWrap.add(circle); + } + + elPointsMain.add(elPointsWrap); + } + } + } + }, { + key: "drawPoint", + value: function drawPoint(x, y, radius, finishRadius, realIndex, dataPointIndex, j) { + var w = this.w; + var i = realIndex; + var anim = new Animations(this.ctx); + var filters = new Filters(this.ctx); + var fill = new Fill(this.ctx); + var markers = new Markers(this.ctx); + var graphics = new Graphics(this.ctx); + var markerConfig = markers.getMarkerConfig('apexcharts-marker', i); + var pathFillCircle = fill.fillPath({ + seriesNumber: realIndex, + patternUnits: 'objectBoundingBox', + value: w.globals.series[realIndex][j] + }); + var circle = graphics.drawCircle(radius); + + if (w.config.series[i].data[dataPointIndex]) { + if (w.config.series[i].data[dataPointIndex].fillColor) { + pathFillCircle = w.config.series[i].data[dataPointIndex].fillColor; + } + } + + circle.attr({ + cx: x, + cy: y, + fill: pathFillCircle, + stroke: markerConfig.pointStrokeColor, + strokeWidth: markerConfig.pWidth + }); + + if (w.config.chart.dropShadow.enabled) { + var dropShadow = w.config.chart.dropShadow; + filters.dropShadow(circle, dropShadow, realIndex); + } + + if (this.initialAnim && !w.globals.dataChanged) { + var speed = 1; + + if (!w.globals.resized) { + speed = w.config.chart.animations.speed; + } + + anim.animateCircleRadius(circle, 0, finishRadius, speed, w.globals.easing); + } + + if (w.globals.dataChanged) { + if (this.dynamicAnim) { + var _speed = w.config.chart.animations.dynamicAnimation.speed; + var prevX, prevY, prevR; + var prevPathJ = null; + prevPathJ = w.globals.previousPaths[realIndex] && w.globals.previousPaths[realIndex][j]; + + if (typeof prevPathJ !== 'undefined' && prevPathJ !== null) { + // series containing less elements will ignore these values and revert to 0 + prevX = prevPathJ.x; + prevY = prevPathJ.y; + prevR = typeof prevPathJ.r !== 'undefined' ? prevPathJ.r : finishRadius; + } + + for (var cs = 0; cs < w.globals.collapsedSeries.length; cs++) { + if (w.globals.collapsedSeries[cs].index === realIndex) { + _speed = 1; + finishRadius = 0; + } + } + + if (x === 0 && y === 0) finishRadius = 0; + anim.animateCircle(circle, { + cx: prevX, + cy: prevY, + r: prevR + }, { + cx: x, + cy: y, + r: finishRadius + }, _speed, w.globals.easing); + } else { + circle.attr({ + r: finishRadius + }); + } + } + + circle.attr({ + rel: dataPointIndex, + j: dataPointIndex, + index: realIndex, + 'default-marker-size': finishRadius + }); + filters.setSelectionFilter(circle, realIndex, dataPointIndex); + markers.addEvents(circle); + circle.node.classList.add('apexcharts-marker'); + return circle; + } + }, { + key: "centerTextInBubble", + value: function centerTextInBubble(y) { + var w = this.w; + y = y + parseInt(w.config.dataLabels.style.fontSize) / 4; + return { + y: y + }; + } + }]); + + return Scatter; + }(); + + /** + * ApexCharts DataLabels Class for drawing dataLabels on Axes based Charts. + * + * @module DataLabels + **/ + + var DataLabels = + /*#__PURE__*/ + function () { + function DataLabels(ctx) { + _classCallCheck(this, DataLabels); + + this.ctx = ctx; + this.w = ctx.w; + } // When there are many datalabels to be printed, and some of them overlaps each other in the same series, this method will take care of that + // Also, when datalabels exceeds the drawable area and get clipped off, we need to adjust and move some pixels to make them visible again + + + _createClass(DataLabels, [{ + key: "dataLabelsCorrection", + value: function dataLabelsCorrection(x, y, val, i, dataPointIndex, alwaysDrawDataLabel, fontSize) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var drawnextLabel = false; // + + var textRects = graphics.getTextRects(val, fontSize); + var width = textRects.width; + var height = textRects.height; // first value in series, so push an empty array + + if (typeof w.globals.dataLabelsRects[i] === 'undefined') w.globals.dataLabelsRects[i] = []; // then start pushing actual rects in that sub-array + + w.globals.dataLabelsRects[i].push({ + x: x, + y: y, + width: width, + height: height + }); + var len = w.globals.dataLabelsRects[i].length - 2; + var lastDrawnIndex = typeof w.globals.lastDrawnDataLabelsIndexes[i] !== 'undefined' ? w.globals.lastDrawnDataLabelsIndexes[i][w.globals.lastDrawnDataLabelsIndexes[i].length - 1] : 0; + + if (typeof w.globals.dataLabelsRects[i][len] !== 'undefined') { + var lastDataLabelRect = w.globals.dataLabelsRects[i][lastDrawnIndex]; + + if ( // next label forward and x not intersecting + x > lastDataLabelRect.x + lastDataLabelRect.width + 2 || y > lastDataLabelRect.y + lastDataLabelRect.height + 2 || x + width < lastDataLabelRect.x // next label is going to be drawn backwards + ) { + // the 2 indexes don't override, so OK to draw next label + drawnextLabel = true; + } + } + + if (dataPointIndex === 0 || alwaysDrawDataLabel) { + drawnextLabel = true; + } + + return { + x: x, + y: y, + textRects: textRects, + drawnextLabel: drawnextLabel + }; + } + }, { + key: "drawDataLabel", + value: function drawDataLabel(pos, i, j) { + var align = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 'top'; + // this method handles line, area, bubble, scatter charts as those charts contains markers/points which have pre-defined x/y positions + // all other charts like bars / heatmaps will define their own drawDataLabel routine + var w = this.w; + var graphics = new Graphics(this.ctx); + var dataLabelsConfig = w.config.dataLabels; + var x = 0; + var y = 0; + var dataPointIndex = j; + var elDataLabelsWrap = null; + + if (!dataLabelsConfig.enabled || pos.x instanceof Array !== true) { + return elDataLabelsWrap; + } + + elDataLabelsWrap = graphics.group({ + class: 'apexcharts-data-labels' + }); + + for (var q = 0; q < pos.x.length; q++) { + x = pos.x[q] + dataLabelsConfig.offsetX; + y = pos.y[q] + dataLabelsConfig.offsetY - w.globals.markers.size[i] - 5; + + if (align === 'bottom') { + y = y + w.globals.markers.size[i] * 2 + parseInt(dataLabelsConfig.style.fontSize) * 1.4; + } + + if (!isNaN(x)) { + // a small hack as we have 2 points for the first val to connect it + if (j === 1 && q === 0) dataPointIndex = 0; + if (j === 1 && q === 1) dataPointIndex = 1; + var val = w.globals.series[i][dataPointIndex]; + var text = ''; + + if (w.config.chart.type === 'bubble') { + text = w.globals.seriesZ[i][dataPointIndex]; + y = pos.y[q] + w.config.dataLabels.offsetY; + var scatter = new Scatter(this.ctx); + var centerTextInBubbleCoords = scatter.centerTextInBubble(y, i, dataPointIndex); + y = centerTextInBubbleCoords.y; + } else { + if (typeof val !== 'undefined') { + text = w.config.dataLabels.formatter(val, { + ctx: this.ctx, + seriesIndex: i, + dataPointIndex: dataPointIndex, + w: w + }); + } + } + + this.plotDataLabelsText({ + x: x, + y: y, + text: text, + i: i, + j: dataPointIndex, + parent: elDataLabelsWrap, + offsetCorrection: true, + dataLabelsConfig: w.config.dataLabels + }); + } + } + + return elDataLabelsWrap; + } + }, { + key: "plotDataLabelsText", + value: function plotDataLabelsText(opts) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var x = opts.x, + y = opts.y, + i = opts.i, + j = opts.j, + text = opts.text, + textAnchor = opts.textAnchor, + parent = opts.parent, + dataLabelsConfig = opts.dataLabelsConfig, + alwaysDrawDataLabel = opts.alwaysDrawDataLabel, + offsetCorrection = opts.offsetCorrection; + + if (Array.isArray(w.config.dataLabels.enabledOnSeries)) { + if (w.config.dataLabels.enabledOnSeries.indexOf(i) < 0) { + return; + } + } + + var correctedLabels = { + x: x, + y: y, + drawnextLabel: true + }; + + if (offsetCorrection) { + correctedLabels = this.dataLabelsCorrection(x, y, text, i, j, alwaysDrawDataLabel, parseInt(dataLabelsConfig.style.fontSize)); + } // when zoomed, we don't need to correct labels offsets, + // but if normally, labels get cropped, correct them + + + if (!w.globals.zoomed) { + x = correctedLabels.x; + y = correctedLabels.y; + } + + if (correctedLabels.textRects) { + if (x + correctedLabels.textRects.width < 10 || x > w.globals.gridWidth + 10) { + // datalabels fall outside drawing area, so draw a blank label + text = ''; + } + } + + if (correctedLabels.drawnextLabel) { + var dataLabelText = graphics.drawText({ + width: 100, + height: parseInt(dataLabelsConfig.style.fontSize), + x: x, + y: y, + foreColor: w.globals.dataLabels.style.colors[i], + textAnchor: textAnchor || dataLabelsConfig.textAnchor, + text: text, + fontSize: dataLabelsConfig.style.fontSize, + fontFamily: dataLabelsConfig.style.fontFamily + }); + dataLabelText.attr({ + class: 'apexcharts-datalabel', + cx: x, + cy: y + }); + + if (dataLabelsConfig.dropShadow.enabled) { + var textShadow = dataLabelsConfig.dropShadow; + var filters = new Filters(this.ctx); + filters.dropShadow(dataLabelText, textShadow); + } + + parent.add(dataLabelText); + + if (typeof w.globals.lastDrawnDataLabelsIndexes[i] === 'undefined') { + w.globals.lastDrawnDataLabelsIndexes[i] = []; + } + + w.globals.lastDrawnDataLabelsIndexes[i].push(j); + } + } + }]); + + return DataLabels; + }(); + + /** + * ApexCharts Bar Class responsible for drawing both Columns and Bars. + * + * @module Bar + **/ + + var Bar = + /*#__PURE__*/ + function () { + function Bar(ctx, xyRatios) { + _classCallCheck(this, Bar); + + this.ctx = ctx; + this.w = ctx.w; + var w = this.w; + this.barOptions = w.config.plotOptions.bar; + this.isHorizontal = this.barOptions.horizontal; + this.strokeWidth = w.config.stroke.width; + this.isNullValue = false; + this.xyRatios = xyRatios; + + if (this.xyRatios !== null) { + this.xRatio = xyRatios.xRatio; + this.yRatio = xyRatios.yRatio; + this.invertedXRatio = xyRatios.invertedXRatio; + this.invertedYRatio = xyRatios.invertedYRatio; + this.baseLineY = xyRatios.baseLineY; + this.baseLineInvertedY = xyRatios.baseLineInvertedY; + } + + this.yaxisIndex = 0; + this.seriesLen = 0; + } + /** primary draw method which is called on bar object + * @memberof Bar + * @param {array} series - user supplied series values + * @param {int} seriesIndex - the index by which series will be drawn on the svg + * @return {node} element which is supplied to parent chart draw method for appending + **/ + + + _createClass(Bar, [{ + key: "draw", + value: function draw(series, seriesIndex) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var coreUtils = new CoreUtils(this.ctx, w); + series = coreUtils.getLogSeries(series); + this.series = series; + this.yRatio = coreUtils.getLogYRatios(this.yRatio); + this.initVariables(series); + var ret = graphics.group({ + class: 'apexcharts-bar-series apexcharts-plot-series' + }); + + if (w.config.dataLabels.enabled) { + if (this.totalItems > w.config.plotOptions.bar.dataLabels.maxItems) { + console.warn('WARNING: DataLabels are enabled but there are too many to display. This may cause performance issue when rendering.'); + } + } + + for (var i = 0, bc = 0; i < series.length; i++, bc++) { + var pathTo = void 0, + pathFrom = void 0; + var x = void 0, + y = void 0, + xDivision = void 0, + // xDivision is the GRIDWIDTH divided by number of datapoints (columns) + yDivision = void 0, + // yDivision is the GRIDHEIGHT divided by number of datapoints (bars) + zeroH = void 0, + // zeroH is the baseline where 0 meets y axis + zeroW = void 0; // zeroW is the baseline where 0 meets x axis + + var yArrj = []; // hold y values of current iterating series + + var xArrj = []; // hold x values of current iterating series + + var realIndex = w.globals.comboCharts ? seriesIndex[i] : i; // el to which series will be drawn + + var elSeries = graphics.group({ + class: "apexcharts-series", + rel: i + 1, + seriesName: Utils.escapeString(w.globals.seriesNames[realIndex]), + 'data:realIndex': realIndex + }); + this.ctx.series.addCollapsedClassToSeries(elSeries, realIndex); + + if (series[i].length > 0) { + this.visibleI = this.visibleI + 1; + } + + var strokeWidth = 0; + var barHeight = 0; + var barWidth = 0; + + if (this.yRatio.length > 1) { + this.yaxisIndex = realIndex; + } + + this.isReversed = w.config.yaxis[this.yaxisIndex] && w.config.yaxis[this.yaxisIndex].reversed; + var initPositions = this.initialPositions(); + y = initPositions.y; + barHeight = initPositions.barHeight; + yDivision = initPositions.yDivision; + zeroW = initPositions.zeroW; + x = initPositions.x; + barWidth = initPositions.barWidth; + xDivision = initPositions.xDivision; + zeroH = initPositions.zeroH; + + if (!this.horizontal) { + xArrj.push(x + barWidth / 2); + } // eldatalabels + + + var elDataLabelsWrap = graphics.group({ + class: 'apexcharts-datalabels' + }); + + for (var j = 0, tj = w.globals.dataPoints; j < w.globals.dataPoints; j++, tj--) { + if (typeof this.series[i][j] === 'undefined' || series[i][j] === null) { + this.isNullValue = true; + } else { + this.isNullValue = false; + } + + if (w.config.stroke.show) { + if (this.isNullValue) { + strokeWidth = 0; + } else { + strokeWidth = Array.isArray(this.strokeWidth) ? this.strokeWidth[realIndex] : this.strokeWidth; + } + } + + var paths = null; + + if (this.isHorizontal) { + paths = this.drawBarPaths({ + indexes: { + i: i, + j: j, + realIndex: realIndex, + bc: bc + }, + barHeight: barHeight, + strokeWidth: strokeWidth, + pathTo: pathTo, + pathFrom: pathFrom, + zeroW: zeroW, + x: x, + y: y, + yDivision: yDivision, + elSeries: elSeries + }); + barWidth = this.series[i][j] / this.invertedYRatio; + } else { + paths = this.drawColumnPaths({ + indexes: { + i: i, + j: j, + realIndex: realIndex, + bc: bc + }, + x: x, + y: y, + xDivision: xDivision, + pathTo: pathTo, + pathFrom: pathFrom, + barWidth: barWidth, + zeroH: zeroH, + strokeWidth: strokeWidth, + elSeries: elSeries + }); + barHeight = this.series[i][j] / this.yRatio[this.yaxisIndex]; + } + + pathTo = paths.pathTo; + pathFrom = paths.pathFrom; + y = paths.y; + x = paths.x; // push current X + + if (j > 0) { + xArrj.push(x + barWidth / 2); + } + + yArrj.push(y); + var pathFill = this.getPathFillColor(series, i, j, realIndex); + elSeries = this.renderSeries({ + realIndex: realIndex, + pathFill: pathFill, + j: j, + i: i, + pathFrom: pathFrom, + pathTo: pathTo, + strokeWidth: strokeWidth, + elSeries: elSeries, + x: x, + y: y, + series: series, + barHeight: barHeight, + barWidth: barWidth, + elDataLabelsWrap: elDataLabelsWrap, + visibleSeries: this.visibleI, + type: 'bar' + }); + } // push all x val arrays into main xArr + + + w.globals.seriesXvalues[realIndex] = xArrj; + w.globals.seriesYvalues[realIndex] = yArrj; + ret.add(elSeries); + } + + return ret; + } + }, { + key: "getPathFillColor", + value: function getPathFillColor(series, i, j, realIndex) { + var w = this.w; + var fill = new Fill(this.ctx); + var fillColor = null; + var seriesNumber = this.barOptions.distributed ? j : i; + + if (this.barOptions.colors.ranges.length > 0) { + var colorRange = this.barOptions.colors.ranges; + colorRange.map(function (range) { + if (series[i][j] >= range.from && series[i][j] <= range.to) { + fillColor = range.color; + } + }); + } + + if (w.config.series[i].data[j] && w.config.series[i].data[j].fillColor) { + fillColor = w.config.series[i].data[j].fillColor; + } + + var pathFill = fill.fillPath({ + seriesNumber: this.barOptions.distributed ? seriesNumber : realIndex, + color: fillColor, + value: series[i][j] + }); + return pathFill; + } + }, { + key: "renderSeries", + value: function renderSeries(_ref) { + var realIndex = _ref.realIndex, + pathFill = _ref.pathFill, + lineFill = _ref.lineFill, + j = _ref.j, + i = _ref.i, + pathFrom = _ref.pathFrom, + pathTo = _ref.pathTo, + strokeWidth = _ref.strokeWidth, + elSeries = _ref.elSeries, + x = _ref.x, + y = _ref.y, + series = _ref.series, + barHeight = _ref.barHeight, + barWidth = _ref.barWidth, + elDataLabelsWrap = _ref.elDataLabelsWrap, + visibleSeries = _ref.visibleSeries, + type = _ref.type; + var w = this.w; + var graphics = new Graphics(this.ctx); + + if (!lineFill) { + /* fix apexcharts#341 */ + lineFill = this.barOptions.distributed ? w.globals.stroke.colors[j] : w.globals.stroke.colors[realIndex]; + } + + if (w.config.series[i].data[j] && w.config.series[i].data[j].strokeColor) { + lineFill = w.config.series[i].data[j].strokeColor; + } + + if (this.isNullValue) { + pathFill = 'none'; + } + + var delay = j / w.config.chart.animations.animateGradually.delay * (w.config.chart.animations.speed / w.globals.dataPoints) / 2.4; + var renderedPath = graphics.renderPaths({ + i: i, + j: j, + realIndex: realIndex, + pathFrom: pathFrom, + pathTo: pathTo, + stroke: lineFill, + strokeWidth: strokeWidth, + strokeLineCap: w.config.stroke.lineCap, + fill: pathFill, + animationDelay: delay, + initialSpeed: w.config.chart.animations.speed, + dataChangeSpeed: w.config.chart.animations.dynamicAnimation.speed, + className: "apexcharts-".concat(type, "-area") + }); + renderedPath.attr('clip-path', "url(#gridRectMask".concat(w.globals.cuid, ")")); + var filters = new Filters(this.ctx); + filters.setSelectionFilter(renderedPath, realIndex, j); + elSeries.add(renderedPath); + var dataLabels = this.calculateDataLabelsPos({ + x: x, + y: y, + i: i, + j: j, + series: series, + realIndex: realIndex, + barHeight: barHeight, + barWidth: barWidth, + renderedPath: renderedPath, + visibleSeries: visibleSeries + }); + + if (dataLabels !== null) { + elDataLabelsWrap.add(dataLabels); + } + + elSeries.add(elDataLabelsWrap); + return elSeries; + } + }, { + key: "initVariables", + value: function initVariables(series) { + var w = this.w; + this.series = series; + this.totalItems = 0; + this.seriesLen = 0; + this.visibleI = -1; + this.visibleItems = 1; // number of visible bars after user zoomed in/out + + for (var sl = 0; sl < series.length; sl++) { + if (series[sl].length > 0) { + this.seriesLen = this.seriesLen + 1; + this.totalItems += series[sl].length; + } + + if (w.globals.isXNumeric) { + // get max visible items + for (var j = 0; j < series[sl].length; j++) { + if (w.globals.seriesX[sl][j] > w.globals.minX && w.globals.seriesX[sl][j] < w.globals.maxX) { + this.visibleItems++; + } + } + } else { + this.visibleItems = w.globals.dataPoints; + } + } + + if (this.seriesLen === 0) { + // A small adjustment when combo charts are used + this.seriesLen = 1; + } + } + }, { + key: "initialPositions", + value: function initialPositions() { + var w = this.w; + var x, y, yDivision, xDivision, barHeight, barWidth, zeroH, zeroW; + + if (this.isHorizontal) { + // height divided into equal parts + yDivision = w.globals.gridHeight / w.globals.dataPoints; + barHeight = yDivision / this.seriesLen; + + if (w.globals.isXNumeric) { + yDivision = w.globals.gridHeight / this.totalItems; + barHeight = yDivision / this.seriesLen; + } + + barHeight = barHeight * parseInt(this.barOptions.barHeight) / 100; + zeroW = this.baseLineInvertedY + w.globals.padHorizontal + (this.isReversed ? w.globals.gridWidth : 0) - (this.isReversed ? this.baseLineInvertedY * 2 : 0); + y = (yDivision - barHeight * this.seriesLen) / 2; + } else { + // width divided into equal parts + xDivision = w.globals.gridWidth / this.visibleItems; + barWidth = xDivision / this.seriesLen * parseInt(this.barOptions.columnWidth) / 100; + + if (w.globals.isXNumeric) { + // max barwidth should be equal to minXDiff to avoid overlap + if (w.globals.minXDiff) { + xDivision = w.globals.minXDiff / this.xRatio; + } + + barWidth = xDivision / this.seriesLen * parseInt(this.barOptions.columnWidth) / 100; + } + + zeroH = w.globals.gridHeight - this.baseLineY[this.yaxisIndex] - (this.isReversed ? w.globals.gridHeight : 0) + (this.isReversed ? this.baseLineY[this.yaxisIndex] * 2 : 0); + x = w.globals.padHorizontal + (xDivision - barWidth * this.seriesLen) / 2; + } + + return { + x: x, + y: y, + yDivision: yDivision, + xDivision: xDivision, + barHeight: barHeight, + barWidth: barWidth, + zeroH: zeroH, + zeroW: zeroW + }; + } + }, { + key: "drawBarPaths", + value: function drawBarPaths(_ref2) { + var indexes = _ref2.indexes, + barHeight = _ref2.barHeight, + strokeWidth = _ref2.strokeWidth, + pathTo = _ref2.pathTo, + pathFrom = _ref2.pathFrom, + zeroW = _ref2.zeroW, + x = _ref2.x, + y = _ref2.y, + yDivision = _ref2.yDivision, + elSeries = _ref2.elSeries; + var w = this.w; + var graphics = new Graphics(this.ctx); + var i = indexes.i; + var j = indexes.j; + var realIndex = indexes.realIndex; + var bc = indexes.bc; + + if (w.globals.isXNumeric) { + y = (w.globals.seriesX[i][j] - w.globals.minX) / this.invertedXRatio - barHeight; + } + + var barYPosition = y + barHeight * this.visibleI; + pathTo = graphics.move(zeroW, barYPosition); + pathFrom = graphics.move(zeroW, barYPosition); + + if (w.globals.previousPaths.length > 0) { + pathFrom = this.getPathFrom(realIndex, j); + } + + if (typeof this.series[i][j] === 'undefined' || this.series[i][j] === null) { + x = zeroW; + } else { + x = zeroW + this.series[i][j] / this.invertedYRatio - (this.isReversed ? this.series[i][j] / this.invertedYRatio : 0) * 2; + } + + var endingShapeOpts = { + barHeight: barHeight, + strokeWidth: strokeWidth, + barYPosition: barYPosition, + x: x, + zeroW: zeroW + }; + var endingShape = this.barEndingShape(w, endingShapeOpts, this.series, i, j); + pathTo = pathTo + graphics.line(endingShape.newX, barYPosition) + endingShape.path + graphics.line(zeroW, barYPosition + barHeight - strokeWidth) + graphics.line(zeroW, barYPosition); + pathFrom = pathFrom + graphics.line(zeroW, barYPosition) + endingShape.ending_p_from + graphics.line(zeroW, barYPosition + barHeight - strokeWidth) + graphics.line(zeroW, barYPosition + barHeight - strokeWidth) + graphics.line(zeroW, barYPosition); + + if (!w.globals.isXNumeric) { + y = y + yDivision; + } + + if (this.barOptions.colors.backgroundBarColors.length > 0 && i === 0) { + if (bc >= this.barOptions.colors.backgroundBarColors.length) { + bc = 0; + } + + var bcolor = this.barOptions.colors.backgroundBarColors[bc]; + var rect = graphics.drawRect(0, barYPosition - barHeight * this.visibleI, w.globals.gridWidth, barHeight * this.seriesLen, 0, bcolor, this.barOptions.colors.backgroundBarOpacity); + elSeries.add(rect); + rect.node.classList.add('apexcharts-backgroundBar'); + } + + return { + pathTo: pathTo, + pathFrom: pathFrom, + x: x, + y: y, + barYPosition: barYPosition + }; + } + }, { + key: "drawColumnPaths", + value: function drawColumnPaths(_ref3) { + var indexes = _ref3.indexes, + x = _ref3.x, + y = _ref3.y, + xDivision = _ref3.xDivision, + pathTo = _ref3.pathTo, + pathFrom = _ref3.pathFrom, + barWidth = _ref3.barWidth, + zeroH = _ref3.zeroH, + strokeWidth = _ref3.strokeWidth, + elSeries = _ref3.elSeries; + var w = this.w; + var graphics = new Graphics(this.ctx); + var i = indexes.i; + var j = indexes.j; + var realIndex = indexes.realIndex; + var bc = indexes.bc; + var barXPosition = x + barWidth * this.visibleI; + + if (w.globals.isXNumeric) { + var sxI = i; + + if (!w.globals.seriesX[i].length) { + sxI = w.globals.maxValsInArrayIndex; + } + + x = (w.globals.seriesX[sxI][j] - w.globals.minX) / this.xRatio; + barXPosition = x + barWidth * this.visibleI - barWidth * this.seriesLen / 2; + } + + pathTo = graphics.move(barXPosition, zeroH); + pathFrom = graphics.move(barXPosition, zeroH); + + if (w.globals.previousPaths.length > 0) { + pathFrom = this.getPathFrom(realIndex, j); + } + + if (typeof this.series[i][j] === 'undefined' || this.series[i][j] === null) { + y = zeroH; + } else { + y = zeroH - this.series[i][j] / this.yRatio[this.yaxisIndex] + (this.isReversed ? this.series[i][j] / this.yRatio[this.yaxisIndex] : 0) * 2; + } + + var endingShapeOpts = { + barWidth: barWidth, + strokeWidth: strokeWidth, + barXPosition: barXPosition, + y: y, + zeroH: zeroH + }; + var endingShape = this.barEndingShape(w, endingShapeOpts, this.series, i, j); + pathTo = pathTo + graphics.line(barXPosition, endingShape.newY) + endingShape.path + graphics.line(barXPosition + barWidth - strokeWidth, zeroH) + graphics.line(barXPosition - strokeWidth / 2, zeroH); + pathFrom = pathFrom + graphics.line(barXPosition, zeroH) + endingShape.ending_p_from + graphics.line(barXPosition + barWidth - strokeWidth, zeroH) + graphics.line(barXPosition + barWidth - strokeWidth, zeroH) + graphics.line(barXPosition - strokeWidth / 2, zeroH); + + if (!w.globals.isXNumeric) { + x = x + xDivision; + } + + if (this.barOptions.colors.backgroundBarColors.length > 0 && i === 0) { + if (bc >= this.barOptions.colors.backgroundBarColors.length) { + bc = 0; + } + + var bcolor = this.barOptions.colors.backgroundBarColors[bc]; + var rect = graphics.drawRect(barXPosition - barWidth * this.visibleI, 0, barWidth * this.seriesLen, w.globals.gridHeight, 0, bcolor, this.barOptions.colors.backgroundBarOpacity); + elSeries.add(rect); + rect.node.classList.add('apexcharts-backgroundBar'); + } + + return { + pathTo: pathTo, + pathFrom: pathFrom, + x: x, + y: y, + barXPosition: barXPosition + }; + } + /** getPathFrom is a common function for bars/columns which is used to get previous paths when data changes. + * @memberof Bar + * @param {int} realIndex - current iterating i + * @param {int} j - current iterating series's j index + * @return {string} pathFrom is the string which will be appended in animations + **/ + + }, { + key: "getPathFrom", + value: function getPathFrom(realIndex, j) { + var w = this.w; + var pathFrom; + + for (var pp = 0; pp < w.globals.previousPaths.length; pp++) { + var gpp = w.globals.previousPaths[pp]; + + if (gpp.paths.length > 0 && parseInt(gpp.realIndex) === parseInt(realIndex)) { + if (typeof w.globals.previousPaths[pp].paths[j] !== 'undefined') { + pathFrom = w.globals.previousPaths[pp].paths[j].d; + } + } + } + + return pathFrom; + } + /** calculateBarDataLabels is used to calculate the positions for the data-labels + * It also sets the element's data attr for bars and calls drawCalculatedBarDataLabels() + * @memberof Bar + * @param {object} {barProps} most of the bar properties used throughout the bar + * drawing function + * @return {object} dataLabels node-element which you can append later + **/ + + }, { + key: "calculateDataLabelsPos", + value: function calculateDataLabelsPos(_ref4) { + var x = _ref4.x, + y = _ref4.y, + i = _ref4.i, + j = _ref4.j, + realIndex = _ref4.realIndex, + series = _ref4.series, + barHeight = _ref4.barHeight, + barWidth = _ref4.barWidth, + visibleSeries = _ref4.visibleSeries, + renderedPath = _ref4.renderedPath; + var w = this.w; + var graphics = new Graphics(this.ctx); + var strokeWidth = Array.isArray(this.strokeWidth) ? this.strokeWidth[realIndex] : this.strokeWidth; + var bcx = x + parseFloat(barWidth * visibleSeries); + var bcy = y + parseFloat(barHeight * visibleSeries); + + if (w.globals.isXNumeric && !w.globals.isBarHorizontal) { + bcx = x + parseFloat(barWidth * (visibleSeries + 1)) / 2; + bcy = y + parseFloat(barHeight * (visibleSeries + 1)) - strokeWidth; + } + + var dataLabels = null; + var dataLabelsX = x; + var dataLabelsY = y; + var dataLabelsPos = {}; + var dataLabelsConfig = w.config.dataLabels; + var barDataLabelsConfig = this.barOptions.dataLabels; + var offX = dataLabelsConfig.offsetX; + var offY = dataLabelsConfig.offsetY; + var textRects = { + width: 0, + height: 0 + }; + + if (w.config.dataLabels.enabled) { + textRects = graphics.getTextRects(w.globals.yLabelFormatters[0](w.globals.maxY), parseInt(dataLabelsConfig.style.fontSize)); + } + + if (this.isHorizontal) { + dataLabelsPos = this.calculateBarsDataLabelsPosition({ + x: x, + y: y, + i: i, + j: j, + renderedPath: renderedPath, + bcy: bcy, + barHeight: barHeight, + barWidth: barWidth, + textRects: textRects, + strokeWidth: strokeWidth, + dataLabelsX: dataLabelsX, + dataLabelsY: dataLabelsY, + barDataLabelsConfig: barDataLabelsConfig, + offX: offX, + offY: offY + }); + } else { + dataLabelsPos = this.calculateColumnsDataLabelsPosition({ + x: x, + y: y, + i: i, + j: j, + renderedPath: renderedPath, + realIndex: realIndex, + bcx: bcx, + bcy: bcy, + barHeight: barHeight, + barWidth: barWidth, + textRects: textRects, + strokeWidth: strokeWidth, + dataLabelsY: dataLabelsY, + barDataLabelsConfig: barDataLabelsConfig, + offX: offX, + offY: offY + }); + } + + renderedPath.attr({ + cy: dataLabelsPos.bcy, + cx: dataLabelsPos.bcx, + j: j, + val: series[i][j], + barHeight: barHeight, + barWidth: barWidth + }); + dataLabels = this.drawCalculatedDataLabels({ + x: dataLabelsPos.dataLabelsX, + y: dataLabelsPos.dataLabelsY, + val: series[i][j], + i: realIndex, + j: j, + barWidth: barWidth, + barHeight: barHeight, + textRects: textRects, + dataLabelsConfig: dataLabelsConfig + }); + return dataLabels; + } + }, { + key: "calculateColumnsDataLabelsPosition", + value: function calculateColumnsDataLabelsPosition(opts) { + var w = this.w; + var i = opts.i, + j = opts.j, + y = opts.y, + bcx = opts.bcx, + barWidth = opts.barWidth, + barHeight = opts.barHeight, + textRects = opts.textRects, + dataLabelsY = opts.dataLabelsY, + barDataLabelsConfig = opts.barDataLabelsConfig, + strokeWidth = opts.strokeWidth, + offX = opts.offX, + offY = opts.offY; + var dataLabelsX; + var dataPointsDividedWidth = w.globals.gridWidth / w.globals.dataPoints; + bcx = bcx - strokeWidth / 2; + + if (w.globals.isXNumeric) { + dataLabelsX = bcx - barWidth / 2 + offX; + } else { + dataLabelsX = bcx - dataPointsDividedWidth + barWidth / 2 + offX; + } + + var valIsNegative = this.series[i][j] <= 0; + + if (this.isReversed) { + y = y - barHeight; + } + + switch (barDataLabelsConfig.position) { + case 'center': + if (valIsNegative) { + dataLabelsY = y + barHeight / 2 + textRects.height / 2 + offY; + } else { + dataLabelsY = y + barHeight / 2 + textRects.height / 2 - offY; + } + + break; + + case 'bottom': + if (valIsNegative) { + dataLabelsY = y + barHeight + textRects.height + strokeWidth + offY; + } else { + dataLabelsY = y + barHeight - textRects.height / 2 + strokeWidth - offY; + } + + break; + + case 'top': + if (valIsNegative) { + dataLabelsY = y - textRects.height / 2 - offY; + } else { + dataLabelsY = y + textRects.height + offY; + } + + break; + } + + if (!w.config.chart.stacked) { + if (dataLabelsY < 0) { + dataLabelsY = 0 + strokeWidth; + } else if (dataLabelsY + textRects.height / 3 > w.globals.gridHeight) { + dataLabelsY = w.globals.gridHeight - strokeWidth; + } + } + + return { + bcx: bcx, + bcy: y, + dataLabelsX: dataLabelsX, + dataLabelsY: dataLabelsY + }; + } + }, { + key: "calculateBarsDataLabelsPosition", + value: function calculateBarsDataLabelsPosition(opts) { + var w = this.w; + var x = opts.x, + i = opts.i, + j = opts.j, + bcy = opts.bcy, + barHeight = opts.barHeight, + barWidth = opts.barWidth, + textRects = opts.textRects, + dataLabelsX = opts.dataLabelsX, + strokeWidth = opts.strokeWidth, + barDataLabelsConfig = opts.barDataLabelsConfig, + offX = opts.offX, + offY = opts.offY; + var dataPointsDividedHeight = w.globals.gridHeight / w.globals.dataPoints; + var dataLabelsY = bcy - dataPointsDividedHeight + barHeight / 2 + textRects.height / 2 + offY - 3; + var valIsNegative = this.series[i][j] <= 0; + + if (this.isReversed) { + x = x + barWidth; + } + + switch (barDataLabelsConfig.position) { + case 'center': + if (valIsNegative) { + dataLabelsX = x - barWidth / 2 - offX; + } else { + dataLabelsX = x - barWidth / 2 + offX; + } + + break; + + case 'bottom': + if (valIsNegative) { + dataLabelsX = x - barWidth - strokeWidth - Math.round(textRects.width / 2) - offX; + } else { + dataLabelsX = x - barWidth + strokeWidth + Math.round(textRects.width / 2) + offX; + } + + break; + + case 'top': + if (valIsNegative) { + dataLabelsX = x - strokeWidth + Math.round(textRects.width / 2) - offX; + } else { + dataLabelsX = x - strokeWidth - Math.round(textRects.width / 2) + offX; + } + + break; + } + + if (!w.config.chart.stacked) { + if (dataLabelsX < 0) { + dataLabelsX = dataLabelsX + textRects.width + strokeWidth; + } else if (dataLabelsX + textRects.width / 2 > w.globals.gridWidth) { + dataLabelsX = w.globals.gridWidth - textRects.width - strokeWidth; + } + } + + return { + bcx: x, + bcy: bcy, + dataLabelsX: dataLabelsX, + dataLabelsY: dataLabelsY + }; + } + }, { + key: "drawCalculatedDataLabels", + value: function drawCalculatedDataLabels(_ref5) { + var x = _ref5.x, + y = _ref5.y, + val = _ref5.val, + i = _ref5.i, + j = _ref5.j, + textRects = _ref5.textRects, + barHeight = _ref5.barHeight, + barWidth = _ref5.barWidth, + dataLabelsConfig = _ref5.dataLabelsConfig; + var w = this.w; + var dataLabels = new DataLabels(this.ctx); + var graphics = new Graphics(this.ctx); + var formatter = dataLabelsConfig.formatter; + var elDataLabelsWrap = null; + var isSeriesNotCollapsed = w.globals.collapsedSeriesIndices.indexOf(i) > -1; + + if (dataLabelsConfig.enabled && !isSeriesNotCollapsed) { + elDataLabelsWrap = graphics.group({ + class: 'apexcharts-data-labels' + }); + var text = ''; + + if (typeof val !== 'undefined') { + text = formatter(val, { + seriesIndex: i, + dataPointIndex: j, + w: w + }); + } + + if (val === 0 && w.config.chart.stacked) { + // in a stacked bar/column chart, 0 value should be neglected as it will overlap on the next element + text = ''; + } + + if (w.config.chart.stacked && this.barOptions.dataLabels.hideOverflowingLabels) { + // if there is not enough space to draw the label in the bar/column rect, check hideOverflowingLabels property to prevent overflowing on wrong rect + // Note: This issue is only seen in stacked charts + if (this.isHorizontal) { + barWidth = this.series[i][j] / this.yRatio[this.yaxisIndex]; // FIXED: Don't always hide the stacked negative side label + // A negative value will result in a negative bar width + // Only hide the text when the width is smaller (a higher negative number) than the negative bar width. + + if (barWidth > 0 && textRects.width / 1.6 > barWidth || barWidth < 0 && textRects.width / 1.6 < barWidth) { + text = ''; + } + } else { + barHeight = this.series[i][j] / this.yRatio[this.yaxisIndex]; + + if (textRects.height / 1.6 > barHeight) { + text = ''; + } + } + } + + var modifiedDataLabelsConfig = _objectSpread({}, dataLabelsConfig); + + if (this.isHorizontal) { + if (val < 0) { + if (dataLabelsConfig.textAnchor === 'start') { + modifiedDataLabelsConfig.textAnchor = 'end'; + } else if (dataLabelsConfig.textAnchor === 'end') { + modifiedDataLabelsConfig.textAnchor = 'start'; + } + } + } + + dataLabels.plotDataLabelsText({ + x: x, + y: y, + text: text, + i: i, + j: j, + parent: elDataLabelsWrap, + dataLabelsConfig: modifiedDataLabelsConfig, + alwaysDrawDataLabel: true, + offsetCorrection: true + }); + } + + return elDataLabelsWrap; + } + /** barEndingShape draws the various shapes on top of bars/columns + * @memberof Bar + * @param {object} w - chart context + * @param {object} opts - consists several properties like barHeight/barWidth + * @param {array} series - global primary series + * @param {int} i - current iterating series's index + * @param {int} j - series's j of i + * @return {object} path - ending shape whether round/arrow + * ending_p_from - similar to pathFrom + * newY - which is calculated from existing y and new shape's top + **/ + + }, { + key: "barEndingShape", + value: function barEndingShape(w, opts, series, i, j) { + var graphics = new Graphics(this.ctx); + + if (this.isHorizontal) { + var endingShape = null; + var endingShapeFrom = ''; + var x = opts.x; + + if (typeof series[i][j] !== 'undefined' || series[i][j] !== null) { + var inverse = series[i][j] < 0; + var eX = opts.barHeight / 2 - opts.strokeWidth; + if (inverse) eX = -opts.barHeight / 2 - opts.strokeWidth; + + if (!w.config.chart.stacked) { + if (this.barOptions.endingShape === 'rounded') { + x = opts.x - eX / 2; + } + } + + switch (this.barOptions.endingShape) { + case 'flat': + endingShape = graphics.line(x, opts.barYPosition + opts.barHeight - opts.strokeWidth); + break; + + case 'rounded': + endingShape = graphics.quadraticCurve(x + eX, opts.barYPosition + (opts.barHeight - opts.strokeWidth) / 2, x, opts.barYPosition + opts.barHeight - opts.strokeWidth); + break; + } + } + + return { + path: endingShape, + ending_p_from: endingShapeFrom, + newX: x + }; + } else { + var _endingShape = null; + var _endingShapeFrom = ''; + var y = opts.y; + + if (typeof series[i][j] !== 'undefined' || series[i][j] !== null) { + var _inverse = series[i][j] < 0; + + var eY = opts.barWidth / 2 - opts.strokeWidth; + if (_inverse) eY = -opts.barWidth / 2 - opts.strokeWidth; + + if (!w.config.chart.stacked) { + // the shape exceeds the chart height, hence reduce y + if (this.barOptions.endingShape === 'rounded') { + y = y + eY / 2; + } + } + + switch (this.barOptions.endingShape) { + case 'flat': + _endingShape = graphics.line(opts.barXPosition + opts.barWidth - opts.strokeWidth, y); + break; + + case 'rounded': + _endingShape = graphics.quadraticCurve(opts.barXPosition + (opts.barWidth - opts.strokeWidth) / 2, y - eY, opts.barXPosition + opts.barWidth - opts.strokeWidth, y); + break; + } + } + + return { + path: _endingShape, + ending_p_from: _endingShapeFrom, + newY: y + }; + } + } + }]); + + return Bar; + }(); + + /** + * ApexCharts BarStacked Class responsible for drawing both Stacked Columns and Bars. + * + * @module BarStacked + * The whole calculation for stacked bar/column is different from normal bar/column, + * hence it makes sense to derive a new class for it extending most of the props of Parent Bar + **/ + + var BarStacked = + /*#__PURE__*/ + function (_Bar) { + _inherits(BarStacked, _Bar); + + function BarStacked() { + _classCallCheck(this, BarStacked); + + return _possibleConstructorReturn(this, _getPrototypeOf(BarStacked).apply(this, arguments)); + } + + _createClass(BarStacked, [{ + key: "draw", + value: function draw(series, seriesIndex) { + var w = this.w; + this.graphics = new Graphics(this.ctx); + this.fill = new Fill(this.ctx); + this.bar = new Bar(this.ctx, this.xyRatios); + var coreUtils = new CoreUtils(this.ctx, w); + series = coreUtils.getLogSeries(series); + this.yRatio = coreUtils.getLogYRatios(this.yRatio); + this.initVariables(series); + + if (w.config.chart.stackType === '100%') { + series = w.globals.seriesPercent.slice(); + } + + this.series = series; + this.totalItems = 0; + this.prevY = []; // y position on chart + + this.prevX = []; // x position on chart + + this.prevYF = []; // y position including shapes on chart + + this.prevXF = []; // x position including shapes on chart + + this.prevYVal = []; // y values (series[i][j]) in columns + + this.prevXVal = []; // x values (series[i][j]) in bars + + this.xArrj = []; // xj indicates x position on graph in bars + + this.xArrjF = []; // xjF indicates bar's x position + endingshape's positions in bars + + this.xArrjVal = []; // x val means the actual series's y values in horizontal/bars + + this.yArrj = []; // yj indicates y position on graph in columns + + this.yArrjF = []; // yjF indicates bar's y position + endingshape's positions in columns + + this.yArrjVal = []; // y val means the actual series's y values in columns + + for (var sl = 0; sl < series.length; sl++) { + if (series[sl].length > 0) { + this.totalItems += series[sl].length; + } + } + + var ret = this.graphics.group({ + class: 'apexcharts-bar-series apexcharts-plot-series' + }); + var x = 0; + var y = 0; + + for (var i = 0, bc = 0; i < series.length; i++, bc++) { + var pathTo = void 0, + pathFrom = void 0; + var xDivision = void 0; // xDivision is the GRIDWIDTH divided by number of datapoints (columns) + + var yDivision = void 0; // yDivision is the GRIDHEIGHT divided by number of datapoints (bars) + + var zeroH = void 0; // zeroH is the baseline where 0 meets y axis + + var zeroW = void 0; // zeroW is the baseline where 0 meets x axis + + var xArrValues = []; + var yArrValues = []; + var realIndex = w.globals.comboCharts ? seriesIndex[i] : i; + + if (this.yRatio.length > 1) { + this.yaxisIndex = realIndex; + } + + this.isReversed = w.config.yaxis[this.yaxisIndex] && w.config.yaxis[this.yaxisIndex].reversed; // el to which series will be drawn + + var elSeries = this.graphics.group({ + class: "apexcharts-series", + seriesName: Utils.escapeString(w.globals.seriesNames[realIndex]), + rel: i + 1, + 'data:realIndex': realIndex + }); // eldatalabels + + var elDataLabelsWrap = this.graphics.group({ + class: 'apexcharts-datalabels' + }); + var strokeWidth = 0; + var barHeight = 0; + var barWidth = 0; + var initPositions = this.initialPositions(x, y, xDivision, yDivision, zeroH, zeroW); + y = initPositions.y; + barHeight = initPositions.barHeight; + yDivision = initPositions.yDivision; + zeroW = initPositions.zeroW; + x = initPositions.x; + barWidth = initPositions.barWidth; + xDivision = initPositions.xDivision; + zeroH = initPositions.zeroH; + this.yArrj = []; + this.yArrjF = []; + this.yArrjVal = []; + this.xArrj = []; + this.xArrjF = []; + this.xArrjVal = []; // if (!this.horizontal) { + // this.xArrj.push(x + barWidth / 2) + // } + + for (var j = 0; j < w.globals.dataPoints; j++) { + if (w.config.stroke.show) { + if (this.isNullValue) { + strokeWidth = 0; + } else { + strokeWidth = Array.isArray(this.strokeWidth) ? this.strokeWidth[realIndex] : this.strokeWidth; + } + } + + var paths = null; + + if (this.isHorizontal) { + paths = this.drawBarPaths({ + indexes: { + i: i, + j: j, + realIndex: realIndex, + bc: bc + }, + barHeight: barHeight, + strokeWidth: strokeWidth, + pathTo: pathTo, + pathFrom: pathFrom, + zeroW: zeroW, + x: x, + y: y, + yDivision: yDivision, + elSeries: elSeries + }); + barWidth = this.series[i][j] / this.invertedYRatio; + } else { + paths = this.drawColumnPaths({ + indexes: { + i: i, + j: j, + realIndex: realIndex, + bc: bc + }, + x: x, + y: y, + xDivision: xDivision, + pathTo: pathTo, + pathFrom: pathFrom, + barWidth: barWidth, + zeroH: zeroH, + strokeWidth: strokeWidth, + elSeries: elSeries + }); + barHeight = this.series[i][j] / this.yRatio[this.yaxisIndex]; + } + + pathTo = paths.pathTo; + pathFrom = paths.pathFrom; + y = paths.y; + x = paths.x; + xArrValues.push(x); + yArrValues.push(y); + var pathFill = this.bar.getPathFillColor(series, i, j, realIndex); + elSeries = this.renderSeries({ + realIndex: realIndex, + pathFill: pathFill, + j: j, + i: i, + pathFrom: pathFrom, + pathTo: pathTo, + strokeWidth: strokeWidth, + elSeries: elSeries, + x: x, + y: y, + series: series, + barHeight: barHeight, + barWidth: barWidth, + elDataLabelsWrap: elDataLabelsWrap, + type: 'bar', + visibleSeries: 0 + }); + } // push all x val arrays into main xArr + + + w.globals.seriesXvalues[realIndex] = xArrValues; + w.globals.seriesYvalues[realIndex] = yArrValues; // push all current y values array to main PrevY Array + + this.prevY.push(this.yArrj); + this.prevYF.push(this.yArrjF); + this.prevYVal.push(this.yArrjVal); + this.prevX.push(this.xArrj); + this.prevXF.push(this.xArrjF); + this.prevXVal.push(this.xArrjVal); + ret.add(elSeries); + } + + return ret; + } + }, { + key: "initialPositions", + value: function initialPositions(x, y, xDivision, yDivision, zeroH, zeroW) { + var w = this.w; + var barHeight, barWidth; + + if (this.isHorizontal) { + // height divided into equal parts + yDivision = w.globals.gridHeight / w.globals.dataPoints; + barHeight = yDivision; + barHeight = barHeight * parseInt(w.config.plotOptions.bar.barHeight) / 100; + zeroW = this.baseLineInvertedY + w.globals.padHorizontal + (this.isReversed ? w.globals.gridWidth : 0) - (this.isReversed ? this.baseLineInvertedY * 2 : 0); // initial y position is half of barHeight * half of number of Bars + + y = (yDivision - barHeight) / 2; + } else { + // width divided into equal parts + xDivision = w.globals.gridWidth / w.globals.dataPoints; + barWidth = xDivision; + + if (w.globals.isXNumeric) { + xDivision = w.globals.minXDiff / this.xRatio; + barWidth = xDivision * parseInt(this.barOptions.columnWidth) / 100; + } else { + barWidth = barWidth * parseInt(w.config.plotOptions.bar.columnWidth) / 100; + } + + zeroH = this.baseLineY[this.yaxisIndex] + (this.isReversed ? w.globals.gridHeight : 0) - (this.isReversed ? this.baseLineY[this.yaxisIndex] * 2 : 0); // initial x position is one third of barWidth + + x = w.globals.padHorizontal + (xDivision - barWidth) / 2; + } + + return { + x: x, + y: y, + yDivision: yDivision, + xDivision: xDivision, + barHeight: barHeight, + barWidth: barWidth, + zeroH: zeroH, + zeroW: zeroW + }; + } + }, { + key: "drawBarPaths", + value: function drawBarPaths(_ref) { + var indexes = _ref.indexes, + barHeight = _ref.barHeight, + strokeWidth = _ref.strokeWidth, + pathTo = _ref.pathTo, + pathFrom = _ref.pathFrom, + zeroW = _ref.zeroW, + x = _ref.x, + y = _ref.y, + yDivision = _ref.yDivision, + elSeries = _ref.elSeries; + var w = this.w; + var barYPosition = y; + var barXPosition; + var i = indexes.i; + var j = indexes.j; + var realIndex = indexes.realIndex; + var bc = indexes.bc; + var prevBarW = 0; + + for (var k = 0; k < this.prevXF.length; k++) { + prevBarW = prevBarW + this.prevXF[k][j]; + } + + if (i > 0) { + var bXP = zeroW; + + if (this.prevXVal[i - 1][j] < 0) { + if (this.series[i][j] >= 0) { + bXP = this.prevX[i - 1][j] + prevBarW - (this.isReversed ? prevBarW : 0) * 2; + } else { + bXP = this.prevX[i - 1][j]; + } + } else if (this.prevXVal[i - 1][j] >= 0) { + if (this.series[i][j] >= 0) { + bXP = this.prevX[i - 1][j]; + } else { + bXP = this.prevX[i - 1][j] - prevBarW + (this.isReversed ? prevBarW : 0) * 2; + } + } + + barXPosition = bXP; + } else { + // the first series will not have prevX values + barXPosition = zeroW; + } + + if (this.series[i][j] === null) { + x = barXPosition; + } else { + x = barXPosition + this.series[i][j] / this.invertedYRatio - (this.isReversed ? this.series[i][j] / this.invertedYRatio : 0) * 2; + } + + var endingShapeOpts = { + barHeight: barHeight, + strokeWidth: strokeWidth, + invertedYRatio: this.invertedYRatio, + barYPosition: barYPosition, + x: x + }; + var endingShape = this.bar.barEndingShape(w, endingShapeOpts, this.series, i, j); + + if (this.series.length > 1 && i !== this.endingShapeOnSeriesNumber) { + // revert back to flat shape if not last series + endingShape.path = this.graphics.line(endingShape.newX, barYPosition + barHeight - strokeWidth); + } + + this.xArrj.push(endingShape.newX); + this.xArrjF.push(Math.abs(barXPosition - endingShape.newX)); + this.xArrjVal.push(this.series[i][j]); + pathTo = this.graphics.move(barXPosition, barYPosition); + pathFrom = this.graphics.move(barXPosition, barYPosition); + + if (w.globals.previousPaths.length > 0) { + pathFrom = this.bar.getPathFrom(realIndex, j, false); + } + + pathTo = pathTo + this.graphics.line(endingShape.newX, barYPosition) + endingShape.path + this.graphics.line(barXPosition, barYPosition + barHeight - strokeWidth) + this.graphics.line(barXPosition, barYPosition); + pathFrom = pathFrom + this.graphics.line(barXPosition, barYPosition) + this.graphics.line(barXPosition, barYPosition + barHeight - strokeWidth) + this.graphics.line(barXPosition, barYPosition + barHeight - strokeWidth) + this.graphics.line(barXPosition, barYPosition + barHeight - strokeWidth) + this.graphics.line(barXPosition, barYPosition); + + if (w.config.plotOptions.bar.colors.backgroundBarColors.length > 0 && i === 0) { + if (bc >= w.config.plotOptions.bar.colors.backgroundBarColors.length) { + bc = 0; + } + + var bcolor = w.config.plotOptions.bar.colors.backgroundBarColors[bc]; + var rect = this.graphics.drawRect(0, barYPosition, w.globals.gridWidth, barHeight, 0, bcolor, w.config.plotOptions.bar.colors.backgroundBarOpacity); + elSeries.add(rect); + rect.node.classList.add('apexcharts-backgroundBar'); + } + + y = y + yDivision; + return { + pathTo: pathTo, + pathFrom: pathFrom, + x: x, + y: y + }; + } + }, { + key: "drawColumnPaths", + value: function drawColumnPaths(_ref2) { + var indexes = _ref2.indexes, + x = _ref2.x, + y = _ref2.y, + xDivision = _ref2.xDivision, + pathTo = _ref2.pathTo, + pathFrom = _ref2.pathFrom, + barWidth = _ref2.barWidth, + zeroH = _ref2.zeroH, + strokeWidth = _ref2.strokeWidth, + elSeries = _ref2.elSeries; + var w = this.w; + var i = indexes.i; + var j = indexes.j; + var realIndex = indexes.realIndex; + var bc = indexes.bc; + + if (w.globals.isXNumeric) { + var seriesVal = w.globals.seriesX[i][j]; + if (!seriesVal) seriesVal = 0; + x = (seriesVal - w.globals.minX) / this.xRatio - barWidth / 2; + } + + var barXPosition = x; + var barYPosition; + var prevBarH = 0; + + for (var k = 0; k < this.prevYF.length; k++) { + prevBarH = prevBarH + this.prevYF[k][j]; + } + + if (i > 0 && !w.globals.isXNumeric || i > 0 && w.globals.isXNumeric && w.globals.seriesX[i - 1][j] === w.globals.seriesX[i][j]) { + var bYP; + var prevYValue = this.prevY[i - 1][j]; + + if (this.prevYVal[i - 1][j] < 0) { + if (this.series[i][j] >= 0) { + bYP = prevYValue - prevBarH + (this.isReversed ? prevBarH : 0) * 2; + } else { + bYP = prevYValue; + } + } else { + if (this.series[i][j] >= 0) { + bYP = prevYValue; + } else { + bYP = prevYValue + prevBarH - (this.isReversed ? prevBarH : 0) * 2; + } + } + + barYPosition = bYP; + } else { + // the first series will not have prevY values, also if the prev index's series X doesn't matches the current index's series X, then start from zero + barYPosition = w.globals.gridHeight - zeroH; + } + + y = barYPosition - this.series[i][j] / this.yRatio[this.yaxisIndex] + (this.isReversed ? this.series[i][j] / this.yRatio[this.yaxisIndex] : 0) * 2; + var endingShapeOpts = { + barWidth: barWidth, + strokeWidth: strokeWidth, + yRatio: this.yRatio[this.yaxisIndex], + barXPosition: barXPosition, + y: y + }; + var endingShape = this.bar.barEndingShape(w, endingShapeOpts, this.series, i, j); + this.yArrj.push(endingShape.newY); + this.yArrjF.push(Math.abs(barYPosition - endingShape.newY)); + this.yArrjVal.push(this.series[i][j]); + pathTo = this.graphics.move(barXPosition, barYPosition); + pathFrom = this.graphics.move(barXPosition, barYPosition); + + if (w.globals.previousPaths.length > 0) { + pathFrom = this.bar.getPathFrom(realIndex, j, false); + } + + pathTo = pathTo + this.graphics.line(barXPosition, endingShape.newY) + endingShape.path + this.graphics.line(barXPosition + barWidth - strokeWidth, barYPosition) + this.graphics.line(barXPosition - strokeWidth / 2, barYPosition); + pathFrom = pathFrom + this.graphics.line(barXPosition, barYPosition) + this.graphics.line(barXPosition + barWidth - strokeWidth, barYPosition) + this.graphics.line(barXPosition + barWidth - strokeWidth, barYPosition) + this.graphics.line(barXPosition + barWidth - strokeWidth, barYPosition) + this.graphics.line(barXPosition - strokeWidth / 2, barYPosition); + + if (w.config.plotOptions.bar.colors.backgroundBarColors.length > 0 && i === 0) { + if (bc >= w.config.plotOptions.bar.colors.backgroundBarColors.length) { + bc = 0; + } + + var bcolor = w.config.plotOptions.bar.colors.backgroundBarColors[bc]; + var rect = this.graphics.drawRect(barXPosition, 0, barWidth, w.globals.gridHeight, 0, bcolor, w.config.plotOptions.bar.colors.backgroundBarOpacity); + elSeries.add(rect); + rect.node.classList.add('apexcharts-backgroundBar'); + } + + x = x + xDivision; + return { + pathTo: pathTo, + pathFrom: pathFrom, + x: w.globals.isXNumeric ? x - xDivision : x, + y: y + }; + } + /* + * When user clicks on legends, the collapsed series will be filled with [0,0,0,...,0] + * We need to make sure, that the last series is not [0,0,0,...,0] + * as we need to draw shapes on the last series (for stacked bars/columns only) + * Hence, we are collecting all inner arrays in series which has [0,0,0...,0] + **/ + + }, { + key: "checkZeroSeries", + value: function checkZeroSeries(_ref3) { + var series = _ref3.series; + var w = this.w; + + for (var zs = 0; zs < series.length; zs++) { + var total = 0; + + for (var zsj = 0; zsj < series[w.globals.maxValsInArrayIndex].length; zsj++) { + total += series[zs][zsj]; + } + + if (total === 0) { + this.zeroSerieses.push(zs); + } + } // After getting all zeroserieses, we need to ensure whether endingshapeonSeries is not in that zeroseries array + + + for (var s = series.length - 1; s >= 0; s--) { + if (this.zeroSerieses.indexOf(s) > -1 && s === this.endingShapeOnSeriesNumber) { + this.endingShapeOnSeriesNumber -= 1; + } + } + } + }]); + + return BarStacked; + }(Bar); + + /** + * ApexCharts CandleStick Class responsible for drawing both Stacked Columns and Bars. + * + * @module CandleStick + **/ + + var CandleStick = + /*#__PURE__*/ + function (_Bar) { + _inherits(CandleStick, _Bar); + + function CandleStick() { + _classCallCheck(this, CandleStick); + + return _possibleConstructorReturn(this, _getPrototypeOf(CandleStick).apply(this, arguments)); + } + + _createClass(CandleStick, [{ + key: "draw", + value: function draw(series, seriesIndex) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var fill = new Fill(this.ctx); + this.candlestickOptions = this.w.config.plotOptions.candlestick; + var coreUtils = new CoreUtils(this.ctx, w); + series = coreUtils.getLogSeries(series); + this.series = series; + this.yRatio = coreUtils.getLogYRatios(this.yRatio); + this.initVariables(series); + var ret = graphics.group({ + class: 'apexcharts-candlestick-series apexcharts-plot-series' + }); + + for (var i = 0, bc = 0; i < series.length; i++, bc++) { + var pathTo = void 0, + pathFrom = void 0; + var x = void 0, + y = void 0, + xDivision = void 0, + // xDivision is the GRIDWIDTH divided by number of datapoints (columns) + zeroH = void 0; // zeroH is the baseline where 0 meets y axis + + var yArrj = []; // hold y values of current iterating series + + var xArrj = []; // hold x values of current iterating series + + var realIndex = w.globals.comboCharts ? seriesIndex[i] : i; // el to which series will be drawn + + var elSeries = graphics.group({ + class: "apexcharts-series", + seriesName: Utils.escapeString(w.globals.seriesNames[realIndex]), + rel: i + 1, + 'data:realIndex': realIndex + }); + + if (series[i].length > 0) { + this.visibleI = this.visibleI + 1; + } + + var strokeWidth = 0; + var barHeight = 0; + var barWidth = 0; + + if (this.yRatio.length > 1) { + this.yaxisIndex = realIndex; + } + + var initPositions = this.initialPositions(); + y = initPositions.y; + barHeight = initPositions.barHeight; + x = initPositions.x; + barWidth = initPositions.barWidth; + xDivision = initPositions.xDivision; + zeroH = initPositions.zeroH; + xArrj.push(x + barWidth / 2); // eldatalabels + + var elDataLabelsWrap = graphics.group({ + class: 'apexcharts-datalabels' + }); + + for (var j = 0, tj = w.globals.dataPoints; j < w.globals.dataPoints; j++, tj--) { + if (typeof this.series[i][j] === 'undefined' || series[i][j] === null) { + this.isNullValue = true; + } else { + this.isNullValue = false; + } + + if (w.config.stroke.show) { + if (this.isNullValue) { + strokeWidth = 0; + } else { + strokeWidth = Array.isArray(this.strokeWidth) ? this.strokeWidth[realIndex] : this.strokeWidth; + } + } + + var color = void 0; + var paths = this.drawCandleStickPaths({ + indexes: { + i: i, + j: j, + realIndex: realIndex, + bc: bc + }, + x: x, + y: y, + xDivision: xDivision, + pathTo: pathTo, + pathFrom: pathFrom, + barWidth: barWidth, + zeroH: zeroH, + strokeWidth: strokeWidth, + elSeries: elSeries + }); + pathTo = paths.pathTo; + pathFrom = paths.pathFrom; + y = paths.y; + x = paths.x; + color = paths.color; // push current X + + if (j > 0) { + xArrj.push(x + barWidth / 2); + } + + yArrj.push(y); + var pathFill = fill.fillPath({ + seriesNumber: realIndex, + color: color, + value: series[i][j] + }); + var lineFill = this.candlestickOptions.wick.useFillColor ? color : undefined; + elSeries = this.renderSeries({ + realIndex: realIndex, + pathFill: pathFill, + lineFill: lineFill, + j: j, + i: i, + pathFrom: pathFrom, + pathTo: pathTo, + strokeWidth: strokeWidth, + elSeries: elSeries, + x: x, + y: y, + series: series, + barHeight: barHeight, + barWidth: barWidth, + elDataLabelsWrap: elDataLabelsWrap, + visibleSeries: this.visibleI, + type: 'candlestick' + }); + } // push all x val arrays into main xArr + + + w.globals.seriesXvalues[realIndex] = xArrj; + w.globals.seriesYvalues[realIndex] = yArrj; + ret.add(elSeries); + } + + return ret; + } + }, { + key: "drawCandleStickPaths", + value: function drawCandleStickPaths(_ref) { + var indexes = _ref.indexes, + x = _ref.x, + y = _ref.y, + xDivision = _ref.xDivision, + pathTo = _ref.pathTo, + pathFrom = _ref.pathFrom, + barWidth = _ref.barWidth, + zeroH = _ref.zeroH, + strokeWidth = _ref.strokeWidth; + var w = this.w; + var graphics = new Graphics(this.ctx); + var i = indexes.i; + var j = indexes.j; + var isPositive = true; + var colorPos = w.config.plotOptions.candlestick.colors.upward; + var colorNeg = w.config.plotOptions.candlestick.colors.downward; + var yRatio = this.yRatio[this.yaxisIndex]; + var realIndex = indexes.realIndex; + var ohlc = this.getOHLCValue(realIndex, j); + var l1 = zeroH; + var l2 = zeroH; + + if (ohlc.o > ohlc.c) { + isPositive = false; + } + + var y1 = Math.min(ohlc.o, ohlc.c); + var y2 = Math.max(ohlc.o, ohlc.c); + + if (w.globals.isXNumeric) { + x = (w.globals.seriesX[i][j] - w.globals.minX) / this.xRatio - barWidth / 2; + } + + var barXPosition = x + barWidth * this.visibleI; + + if (typeof this.series[i][j] === 'undefined' || this.series[i][j] === null) { + y1 = zeroH; + } else { + y1 = zeroH - y1 / yRatio; + y2 = zeroH - y2 / yRatio; + l1 = zeroH - ohlc.h / yRatio; + l2 = zeroH - ohlc.l / yRatio; + } + + pathTo = graphics.move(barXPosition, zeroH); + pathFrom = graphics.move(barXPosition, y1); + + if (w.globals.previousPaths.length > 0) { + pathFrom = this.getPathFrom(realIndex, j, true); + } + + pathTo = graphics.move(barXPosition, y2) + graphics.line(barXPosition + barWidth / 2, y2) + graphics.line(barXPosition + barWidth / 2, l1) + graphics.line(barXPosition + barWidth / 2, y2) + graphics.line(barXPosition + barWidth, y2) + graphics.line(barXPosition + barWidth, y1) + graphics.line(barXPosition + barWidth / 2, y1) + graphics.line(barXPosition + barWidth / 2, l2) + graphics.line(barXPosition + barWidth / 2, y1) + graphics.line(barXPosition, y1) + graphics.line(barXPosition, y2 - strokeWidth / 2); + pathFrom = pathFrom + graphics.move(barXPosition, y1); + + if (!w.globals.isXNumeric) { + x = x + xDivision; + } + + return { + pathTo: pathTo, + pathFrom: pathFrom, + x: x, + y: y2, + barXPosition: barXPosition, + color: isPositive ? colorPos : colorNeg + }; + } + }, { + key: "getOHLCValue", + value: function getOHLCValue(i, j) { + var w = this.w; + return { + o: w.globals.seriesCandleO[i][j], + h: w.globals.seriesCandleH[i][j], + l: w.globals.seriesCandleL[i][j], + c: w.globals.seriesCandleC[i][j] + }; + } + }]); + + return CandleStick; + }(Bar); + + var Crosshairs = + /*#__PURE__*/ + function () { + function Crosshairs(ctx) { + _classCallCheck(this, Crosshairs); + + this.ctx = ctx; + this.w = ctx.w; + } + + _createClass(Crosshairs, [{ + key: "drawXCrosshairs", + value: function drawXCrosshairs() { + var w = this.w; + var graphics = new Graphics(this.ctx); + var filters = new Filters(this.ctx); + var crosshairGradient = w.config.xaxis.crosshairs.fill.gradient; + var crosshairShadow = w.config.xaxis.crosshairs.dropShadow; + var fillType = w.config.xaxis.crosshairs.fill.type; + var gradientFrom = crosshairGradient.colorFrom; + var gradientTo = crosshairGradient.colorTo; + var opacityFrom = crosshairGradient.opacityFrom; + var opacityTo = crosshairGradient.opacityTo; + var stops = crosshairGradient.stops; + var shadow = 'none'; + var dropShadow = crosshairShadow.enabled; + var shadowLeft = crosshairShadow.left; + var shadowTop = crosshairShadow.top; + var shadowBlur = crosshairShadow.blur; + var shadowColor = crosshairShadow.color; + var shadowOpacity = crosshairShadow.opacity; + var xcrosshairsFill = w.config.xaxis.crosshairs.fill.color; + + if (w.config.xaxis.crosshairs.show) { + if (fillType === 'gradient') { + xcrosshairsFill = graphics.drawGradient('vertical', gradientFrom, gradientTo, opacityFrom, opacityTo, null, stops, null); + } + + var xcrosshairs = graphics.drawRect(); + + if (w.config.xaxis.crosshairs.width === 1) { + // to prevent drawing 2 lines, convert rect to line + xcrosshairs = graphics.drawLine(); + } + + xcrosshairs.attr({ + class: 'apexcharts-xcrosshairs', + x: 0, + y: 0, + y2: w.globals.gridHeight, + width: Utils.isNumber(w.config.xaxis.crosshairs.width) ? w.config.xaxis.crosshairs.width : 0, + height: w.globals.gridHeight, + fill: xcrosshairsFill, + filter: shadow, + 'fill-opacity': w.config.xaxis.crosshairs.opacity, + stroke: w.config.xaxis.crosshairs.stroke.color, + 'stroke-width': w.config.xaxis.crosshairs.stroke.width, + 'stroke-dasharray': w.config.xaxis.crosshairs.stroke.dashArray + }); + + if (dropShadow) { + xcrosshairs = filters.dropShadow(xcrosshairs, { + left: shadowLeft, + top: shadowTop, + blur: shadowBlur, + color: shadowColor, + opacity: shadowOpacity + }); + } + + w.globals.dom.elGraphical.add(xcrosshairs); + } + } + }, { + key: "drawYCrosshairs", + value: function drawYCrosshairs() { + var w = this.w; + var graphics = new Graphics(this.ctx); + var crosshair = w.config.yaxis[0].crosshairs; + + if (w.config.yaxis[0].crosshairs.show) { + var ycrosshairs = graphics.drawLine(0, 0, w.globals.gridWidth, 0, crosshair.stroke.color, crosshair.stroke.dashArray, crosshair.stroke.width); + ycrosshairs.attr({ + class: 'apexcharts-ycrosshairs' + }); + w.globals.dom.elGraphical.add(ycrosshairs); + } // draw an invisible crosshair to help in positioning the yaxis tooltip + + + var ycrosshairsHidden = graphics.drawLine(0, 0, w.globals.gridWidth, 0, crosshair.stroke.color, 0, 0); + ycrosshairsHidden.attr({ + class: 'apexcharts-ycrosshairs-hidden' + }); + w.globals.dom.elGraphical.add(ycrosshairsHidden); + } + }]); + + return Crosshairs; + }(); + + /** + * ApexCharts HeatMap Class. + * @module HeatMap + **/ + + var HeatMap = + /*#__PURE__*/ + function () { + function HeatMap(ctx, xyRatios) { + _classCallCheck(this, HeatMap); + + this.ctx = ctx; + this.w = ctx.w; + this.xRatio = xyRatios.xRatio; + this.yRatio = xyRatios.yRatio; + this.negRange = false; + this.dynamicAnim = this.w.config.chart.animations.dynamicAnimation; + this.rectRadius = this.w.config.plotOptions.heatmap.radius; + this.strokeWidth = this.w.config.stroke.width; + } + + _createClass(HeatMap, [{ + key: "draw", + value: function draw(series) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var ret = graphics.group({ + class: 'apexcharts-heatmap' + }); + ret.attr('clip-path', "url(#gridRectMask".concat(w.globals.cuid, ")")); // width divided into equal parts + + var xDivision = w.globals.gridWidth / w.globals.dataPoints; + var yDivision = w.globals.gridHeight / w.globals.series.length; + var y1 = 0; + var rev = false; + this.checkColorRange(); + var heatSeries = series.slice(); + + if (w.config.yaxis[0].reversed) { + rev = true; + heatSeries.reverse(); + } + + for (var i = rev ? 0 : heatSeries.length - 1; rev ? i < heatSeries.length : i >= 0; rev ? i++ : i--) { + // el to which series will be drawn + var elSeries = graphics.group({ + class: "apexcharts-series apexcharts-heatmap-series", + seriesName: Utils.escapeString(w.globals.seriesNames[i]), + rel: i + 1, + 'data:realIndex': i + }); + + if (w.config.chart.dropShadow.enabled) { + var shadow = w.config.chart.dropShadow; + var filters = new Filters(this.ctx); + filters.dropShadow(elSeries, shadow, i); + } + + var x1 = 0; + + for (var j = 0; j < heatSeries[i].length; j++) { + var colorShadePercent = 1; + var heatColorProps = this.determineHeatColor(i, j); + + if (w.globals.hasNegs || this.negRange) { + var shadeIntensity = w.config.plotOptions.heatmap.shadeIntensity; + + if (w.config.plotOptions.heatmap.reverseNegativeShade) { + if (heatColorProps.percent < 0) { + colorShadePercent = heatColorProps.percent / 100 * (shadeIntensity * 1.25); + } else { + colorShadePercent = (1 - heatColorProps.percent / 100) * (shadeIntensity * 1.25); + } + } else { + if (heatColorProps.percent < 0) { + colorShadePercent = 1 - (1 + heatColorProps.percent / 100) * shadeIntensity; + } else { + colorShadePercent = (1 - heatColorProps.percent / 100) * shadeIntensity; + } + } + } else { + colorShadePercent = 1 - heatColorProps.percent / 100; + } + + var color = heatColorProps.color; + + if (w.config.plotOptions.heatmap.enableShades) { + var utils = new Utils(); + color = Utils.hexToRgba(utils.shadeColor(colorShadePercent, heatColorProps.color), w.config.fill.opacity); + } + + var radius = this.rectRadius; + var rect = graphics.drawRect(x1, y1, xDivision, yDivision, radius); + rect.attr({ + cx: x1, + cy: y1 + }); + rect.node.classList.add('apexcharts-heatmap-rect'); + elSeries.add(rect); + rect.attr({ + fill: color, + i: i, + index: i, + j: j, + val: heatSeries[i][j], + 'stroke-width': this.strokeWidth, + stroke: w.globals.stroke.colors[0], + color: color + }); + rect.node.addEventListener('mouseenter', graphics.pathMouseEnter.bind(this, rect)); + rect.node.addEventListener('mouseleave', graphics.pathMouseLeave.bind(this, rect)); + rect.node.addEventListener('mousedown', graphics.pathMouseDown.bind(this, rect)); + + if (w.config.chart.animations.enabled && !w.globals.dataChanged) { + var speed = 1; + + if (!w.globals.resized) { + speed = w.config.chart.animations.speed; + } + + this.animateHeatMap(rect, x1, y1, xDivision, yDivision, speed); + } + + if (w.globals.dataChanged) { + var _speed = 1; + + if (this.dynamicAnim.enabled && w.globals.shouldAnimate) { + _speed = this.dynamicAnim.speed; + var colorFrom = w.globals.previousPaths[i] && w.globals.previousPaths[i][j] && w.globals.previousPaths[i][j].color; + if (!colorFrom) colorFrom = 'rgba(255, 255, 255, 0)'; + this.animateHeatColor(rect, Utils.isColorHex(colorFrom) ? colorFrom : Utils.rgb2hex(colorFrom), Utils.isColorHex(color) ? color : Utils.rgb2hex(color), _speed); + } + } + + var dataLabels = this.calculateHeatmapDataLabels({ + x: x1, + y: y1, + i: i, + j: j, + series: heatSeries, + rectHeight: yDivision, + rectWidth: xDivision + }); + + if (dataLabels !== null) { + elSeries.add(dataLabels); + } + + x1 = x1 + xDivision; + } + + y1 = y1 + yDivision; + ret.add(elSeries); + } // adjust yaxis labels for heatmap + + + var yAxisScale = w.globals.yAxisScale[0].result.slice(); + + if (w.config.yaxis[0].reversed) { + yAxisScale.unshift(''); + } else { + yAxisScale.push(''); + } + + w.globals.yAxisScale[0].result = yAxisScale; + var divisor = w.globals.gridHeight / w.globals.series.length; + w.config.yaxis[0].labels.offsetY = -(divisor / 2); + return ret; + } + }, { + key: "checkColorRange", + value: function checkColorRange() { + var _this = this; + + var w = this.w; + var heatmap = w.config.plotOptions.heatmap; + + if (heatmap.colorScale.ranges.length > 0) { + heatmap.colorScale.ranges.map(function (range, index) { + if (range.from < 0) { + _this.negRange = true; + } + }); + } + } + }, { + key: "determineHeatColor", + value: function determineHeatColor(i, j) { + var w = this.w; + var val = w.globals.series[i][j]; + var heatmap = w.config.plotOptions.heatmap; + var seriesNumber = heatmap.colorScale.inverse ? j : i; + var color = w.globals.colors[seriesNumber]; + var min = Math.min.apply(Math, _toConsumableArray(w.globals.series[i])); + var max = Math.max.apply(Math, _toConsumableArray(w.globals.series[i])); + + if (!heatmap.distributed) { + min = w.globals.minY; + max = w.globals.maxY; + } + + if (typeof heatmap.colorScale.min !== 'undefined') { + min = heatmap.colorScale.min < w.globals.minY ? heatmap.colorScale.min : w.globals.minY; + max = heatmap.colorScale.max > w.globals.maxY ? heatmap.colorScale.max : w.globals.maxY; + } + + var total = Math.abs(max) + Math.abs(min); + var percent = 100 * val / (total === 0 ? total - 0.000001 : total); + + if (heatmap.colorScale.ranges.length > 0) { + var colorRange = heatmap.colorScale.ranges; + colorRange.map(function (range, index) { + if (val >= range.from && val <= range.to) { + color = range.color; + min = range.from; + max = range.to; + + var _total = Math.abs(max) + Math.abs(min); + + percent = 100 * val / (_total === 0 ? _total - 0.000001 : _total); + } + }); + } + + return { + color: color, + percent: percent + }; + } + }, { + key: "calculateHeatmapDataLabels", + value: function calculateHeatmapDataLabels(_ref) { + var x = _ref.x, + y = _ref.y, + i = _ref.i, + j = _ref.j, + series = _ref.series, + rectHeight = _ref.rectHeight, + rectWidth = _ref.rectWidth; + var w = this.w; // let graphics = new Graphics(this.ctx) + + var dataLabelsConfig = w.config.dataLabels; + var graphics = new Graphics(this.ctx); + var dataLabels = new DataLabels(this.ctx); + var formatter = dataLabelsConfig.formatter; + var elDataLabelsWrap = null; + + if (dataLabelsConfig.enabled) { + elDataLabelsWrap = graphics.group({ + class: 'apexcharts-data-labels' + }); + var offX = dataLabelsConfig.offsetX; + var offY = dataLabelsConfig.offsetY; + var dataLabelsX = x + rectWidth / 2 + offX; + var dataLabelsY = y + rectHeight / 2 + parseInt(dataLabelsConfig.style.fontSize) / 3 + offY; + var text = formatter(w.globals.series[i][j], { + seriesIndex: i, + dataPointIndex: j, + w: w + }); + dataLabels.plotDataLabelsText({ + x: dataLabelsX, + y: dataLabelsY, + text: text, + i: i, + j: j, + parent: elDataLabelsWrap, + dataLabelsConfig: dataLabelsConfig + }); + } + + return elDataLabelsWrap; + } + }, { + key: "animateHeatMap", + value: function animateHeatMap(el, x, y, width, height, speed) { + var animations = new Animations(this.ctx); + animations.animateRect(el, { + x: x + width / 2, + y: y + height / 2, + width: 0, + height: 0 + }, { + x: x, + y: y, + width: width, + height: height + }, speed, function () { + animations.animationCompleted(); + }); + } + }, { + key: "animateHeatColor", + value: function animateHeatColor(el, colorFrom, colorTo, speed) { + el.attr({ + fill: colorFrom + }).animate(speed).attr({ + fill: colorTo + }); + } + }]); + + return HeatMap; + }(); + + /** + * ApexCharts Pie Class for drawing Pie / Donut Charts. + * @module Pie + **/ + + var Pie = + /*#__PURE__*/ + function () { + function Pie(ctx) { + _classCallCheck(this, Pie); + + this.ctx = ctx; + this.w = ctx.w; + this.chartType = this.w.config.chart.type; + this.initialAnim = this.w.config.chart.animations.enabled; + this.dynamicAnim = this.initialAnim && this.w.config.chart.animations.dynamicAnimation.enabled; + this.animBeginArr = [0]; + this.animDur = 0; + this.donutDataLabels = this.w.config.plotOptions.pie.donut.labels; + var w = this.w; + this.lineColorArr = w.globals.stroke.colors !== undefined ? w.globals.stroke.colors : w.globals.colors; + this.defaultSize = w.globals.svgHeight < w.globals.svgWidth ? w.globals.svgHeight - 35 : w.globals.gridWidth; + this.centerY = this.defaultSize / 2; + this.centerX = w.globals.gridWidth / 2; + this.fullAngle = 360; + w.globals.radialSize = this.defaultSize / 2.05 - w.config.stroke.width - w.config.chart.dropShadow.blur; + + if (w.config.plotOptions.pie.size !== undefined) { + w.globals.radialSize = w.config.plotOptions.pie.size; + } + + this.donutSize = w.globals.radialSize * parseInt(w.config.plotOptions.pie.donut.size) / 100; + this.sliceLabels = []; + this.prevSectorAngleArr = []; // for dynamic animations + } + + _createClass(Pie, [{ + key: "draw", + value: function draw(series) { + var self = this; + var w = this.w; + var graphics = new Graphics(this.ctx); + var ret = graphics.group({ + class: 'apexcharts-pie' + }); + if (w.globals.noData) return ret; + var total = 0; + + for (var k = 0; k < series.length; k++) { + // CALCULATE THE TOTAL + total += Utils.negToZero(series[k]); + } + + var sectorAngleArr = []; // el to which series will be drawn + + var elSeries = graphics.group(); // prevent division by zero error if there is no data + + if (total === 0) { + total = 0.00001; + } + + for (var i = 0; i < series.length; i++) { + // CALCULATE THE ANGLES + var angle = this.fullAngle * Utils.negToZero(series[i]) / total; + sectorAngleArr.push(angle); + } + + if (w.globals.dataChanged) { + var prevTotal = 0; + + for (var _k = 0; _k < w.globals.previousPaths.length; _k++) { + // CALCULATE THE PREV TOTAL + prevTotal += Utils.negToZero(w.globals.previousPaths[_k]); + } + + var previousAngle; + + for (var _i = 0; _i < w.globals.previousPaths.length; _i++) { + // CALCULATE THE PREVIOUS ANGLES + previousAngle = this.fullAngle * Utils.negToZero(w.globals.previousPaths[_i]) / prevTotal; + this.prevSectorAngleArr.push(previousAngle); + } + } // on small chart size after few count of resizes browser window donutSize can be negative + + + if (this.donutSize < 0) { + this.donutSize = 0; + } + + var scaleSize = w.config.plotOptions.pie.customScale; + var halfW = w.globals.gridWidth / 2; + var halfH = w.globals.gridHeight / 2; + var translateX = halfW - w.globals.gridWidth / 2 * scaleSize; + var translateY = halfH - w.globals.gridHeight / 2 * scaleSize; + + if (w.config.chart.type === 'donut') { + // draw the inner circle and add some text to it + var circle = graphics.drawCircle(this.donutSize); + circle.attr({ + cx: this.centerX, + cy: this.centerY, + fill: w.config.plotOptions.pie.donut.background + }); + elSeries.add(circle); + } + + var elG = self.drawArcs(sectorAngleArr, series); // add slice dataLabels at the end + + this.sliceLabels.forEach(function (s) { + elG.add(s); + }); + elSeries.attr({ + transform: "translate(".concat(translateX, ", ").concat(translateY - 5, ") scale(").concat(scaleSize, ")") + }); + ret.attr({ + 'data:innerTranslateX': translateX, + 'data:innerTranslateY': translateY - 25 + }); + elSeries.add(elG); + ret.add(elSeries); + + if (this.donutDataLabels.show) { + var dataLabels = this.renderInnerDataLabels(this.donutDataLabels, { + hollowSize: this.donutSize, + centerX: this.centerX, + centerY: this.centerY, + opacity: this.donutDataLabels.show, + translateX: translateX, + translateY: translateY + }); + ret.add(dataLabels); + } + + return ret; + } // core function for drawing pie arcs + + }, { + key: "drawArcs", + value: function drawArcs(sectorAngleArr, series) { + var w = this.w; + var filters = new Filters(this.ctx); + var graphics = new Graphics(this.ctx); + var fill = new Fill(this.ctx); + var g = graphics.group({ + class: 'apexcharts-slices' + }); + var startAngle = 0; + var prevStartAngle = 0; + var endAngle = 0; + var prevEndAngle = 0; + this.strokeWidth = w.config.stroke.show ? w.config.stroke.width : 0; + + for (var i = 0; i < sectorAngleArr.length; i++) { + // if(sectorAngleArr[i]>0) { + var elPieArc = graphics.group({ + class: "apexcharts-series apexcharts-pie-series", + seriesName: Utils.escapeString(w.globals.seriesNames[i]), + rel: i + 1, + 'data:realIndex': i + }); + g.add(elPieArc); + startAngle = endAngle; + prevStartAngle = prevEndAngle; + endAngle = startAngle + sectorAngleArr[i]; + prevEndAngle = prevStartAngle + this.prevSectorAngleArr[i]; + var angle = endAngle - startAngle; + var pathFill = fill.fillPath({ + seriesNumber: i, + size: w.globals.radialSize, + value: series[i] + }); // additionaly, pass size for gradient drawing in the fillPath function + + var path = this.getChangedPath(prevStartAngle, prevEndAngle); + var elPath = graphics.drawPath({ + d: path, + stroke: this.lineColorArr instanceof Array ? this.lineColorArr[i] : this.lineColorArr, + strokeWidth: this.strokeWidth, + fill: pathFill, + fillOpacity: w.config.fill.opacity, + classes: "apexcharts-pie-area apexcharts-".concat(w.config.chart.type, "-slice-").concat(i) + }); + elPath.attr({ + index: 0, + j: i + }); + + if (w.config.chart.dropShadow.enabled) { + var shadow = w.config.chart.dropShadow; + filters.dropShadow(elPath, shadow, i); + } + + this.addListeners(elPath, this.donutDataLabels); + Graphics.setAttrs(elPath.node, { + 'data:angle': angle, + 'data:startAngle': startAngle, + 'data:strokeWidth': this.strokeWidth, + 'data:value': series[i] + }); + var labelPosition = { + x: 0, + y: 0 + }; + + if (w.config.chart.type === 'pie') { + labelPosition = Utils.polarToCartesian(this.centerX, this.centerY, w.globals.radialSize / 1.25 + w.config.plotOptions.pie.dataLabels.offset, startAngle + (endAngle - startAngle) / 2); + } else if (w.config.chart.type === 'donut') { + labelPosition = Utils.polarToCartesian(this.centerX, this.centerY, (w.globals.radialSize + this.donutSize) / 2 + w.config.plotOptions.pie.dataLabels.offset, startAngle + (endAngle - startAngle) / 2); + } + + elPieArc.add(elPath); // Animation code starts + + var dur = 0; + + if (this.initialAnim && !w.globals.resized && !w.globals.dataChanged) { + dur = (endAngle - startAngle) / this.fullAngle * w.config.chart.animations.speed; + this.animDur = dur + this.animDur; + this.animBeginArr.push(this.animDur); + } else { + this.animBeginArr.push(0); + } + + if (this.dynamicAnim && w.globals.dataChanged) { + this.animatePaths(elPath, { + size: w.globals.radialSize, + endAngle: endAngle, + startAngle: startAngle, + prevStartAngle: prevStartAngle, + prevEndAngle: prevEndAngle, + animateStartingPos: true, + i: i, + animBeginArr: this.animBeginArr, + dur: w.config.chart.animations.dynamicAnimation.speed + }); + } else { + this.animatePaths(elPath, { + size: w.globals.radialSize, + endAngle: endAngle, + startAngle: startAngle, + i: i, + totalItems: sectorAngleArr.length - 1, + animBeginArr: this.animBeginArr, + dur: dur + }); + } // animation code ends + + + if (w.config.plotOptions.pie.expandOnClick) { + elPath.click(this.pieClicked.bind(this, i)); + } + + if (w.config.dataLabels.enabled) { + var xPos = labelPosition.x; + var yPos = labelPosition.y; + var text = 100 * (endAngle - startAngle) / 360 + '%'; + + if (angle !== 0 && w.config.plotOptions.pie.dataLabels.minAngleToShowLabel < sectorAngleArr[i]) { + var formatter = w.config.dataLabels.formatter; + + if (formatter !== undefined) { + text = formatter(w.globals.seriesPercent[i][0], { + seriesIndex: i, + w: w + }); + } + + var foreColor = w.globals.dataLabels.style.colors[i]; + var elPieLabel = graphics.drawText({ + x: xPos, + y: yPos, + text: text, + textAnchor: 'middle', + fontSize: w.config.dataLabels.style.fontSize, + fontFamily: w.config.dataLabels.style.fontFamily, + foreColor: foreColor + }); + + if (w.config.dataLabels.dropShadow.enabled) { + var textShadow = w.config.dataLabels.dropShadow; + + var _filters = new Filters(this.ctx); + + _filters.dropShadow(elPieLabel, textShadow); + } + + elPieLabel.node.classList.add('apexcharts-pie-label'); + + if (w.config.chart.animations.animate && w.globals.resized === false) { + elPieLabel.node.classList.add('apexcharts-pie-label-delay'); + elPieLabel.node.style.animationDelay = w.config.chart.animations.speed / 940 + 's'; + } + + this.sliceLabels.push(elPieLabel); + } + } // } + + } + + return g; + } + }, { + key: "addListeners", + value: function addListeners(elPath, dataLabels) { + var graphics = new Graphics(this.ctx); // append filters on mouseenter and mouseleave + + elPath.node.addEventListener('mouseenter', graphics.pathMouseEnter.bind(this, elPath)); + elPath.node.addEventListener('mouseenter', this.printDataLabelsInner.bind(this, elPath.node, dataLabels)); + elPath.node.addEventListener('mouseleave', graphics.pathMouseLeave.bind(this, elPath)); + elPath.node.addEventListener('mouseleave', this.revertDataLabelsInner.bind(this, elPath.node, dataLabels)); + elPath.node.addEventListener('mousedown', graphics.pathMouseDown.bind(this, elPath)); + elPath.node.addEventListener('mousedown', this.printDataLabelsInner.bind(this, elPath.node, dataLabels)); + } // This function can be used for other circle charts too + + }, { + key: "animatePaths", + value: function animatePaths(el, opts) { + var w = this.w; + var me = this; + var angle = opts.endAngle - opts.startAngle; + var prevAngle = angle; + var fromStartAngle = opts.startAngle; + var toStartAngle = opts.startAngle; + + if (opts.prevStartAngle !== undefined && opts.prevEndAngle !== undefined) { + fromStartAngle = opts.prevEndAngle; + prevAngle = opts.prevEndAngle - opts.prevStartAngle; + } + + if (opts.i === w.config.series.length - 1) { + // some adjustments for the last overlapping paths + if (angle + toStartAngle > this.fullAngle) { + opts.endAngle = opts.endAngle - (angle + toStartAngle); + } else if (angle + toStartAngle < this.fullAngle) { + opts.endAngle = opts.endAngle + (this.fullAngle - (angle + toStartAngle)); + } + } + + if (angle === this.fullAngle) angle = this.fullAngle - 0.01; + me.animateArc(el, fromStartAngle, toStartAngle, angle, prevAngle, opts); + } + }, { + key: "animateArc", + value: function animateArc(el, fromStartAngle, toStartAngle, angle, prevAngle, opts) { + var me = this; + var w = this.w; + var animations = new Animations(this.ctx); + var size = opts.size; + var path; + + if (isNaN(fromStartAngle) || isNaN(prevAngle)) { + fromStartAngle = toStartAngle; + prevAngle = angle; + opts.dur = 0; + } + + var currAngle = angle; + var startAngle = toStartAngle; + var fromAngle = fromStartAngle - toStartAngle; + + if (w.globals.dataChanged && opts.shouldSetPrevPaths) { + // to avoid flickering, set prev path first and then we will animate from there + path = me.getPiePath({ + me: me, + startAngle: startAngle, + angle: prevAngle, + size: size + }); + el.attr({ + d: path + }); + } + + if (opts.dur !== 0) { + el.animate(opts.dur, w.globals.easing, opts.animBeginArr[opts.i]).afterAll(function () { + if (w.config.chart.type === 'pie' || w.config.chart.type === 'donut') { + this.animate(300).attr({ + 'stroke-width': w.config.stroke.width + }); + } + + if (opts.i === w.config.series.length - 1) { + animations.animationCompleted(); + } + }).during(function (pos) { + currAngle = fromAngle + (angle - fromAngle) * pos; + + if (opts.animateStartingPos) { + currAngle = prevAngle + (angle - prevAngle) * pos; + startAngle = fromStartAngle - prevAngle + (toStartAngle - (fromStartAngle - prevAngle)) * pos; + } + + path = me.getPiePath({ + me: me, + startAngle: startAngle, + angle: currAngle, + size: size + }); + el.node.setAttribute('data:pathOrig', path); + el.attr({ + d: path + }); + }); + } else { + path = me.getPiePath({ + me: me, + startAngle: startAngle, + angle: angle, + size: size + }); + + if (!opts.isTrack) { + w.globals.animationEnded = true; + } + + el.node.setAttribute('data:pathOrig', path); + el.attr({ + d: path + }); + } + } + }, { + key: "pieClicked", + value: function pieClicked(i) { + var w = this.w; + var me = this; + var path; + var size = me.w.globals.radialSize + 4; + var elPath = w.globals.dom.Paper.select(".apexcharts-".concat(w.config.chart.type.toLowerCase(), "-slice-").concat(i)).members[0]; + var pathFrom = elPath.attr('d'); + + if (elPath.attr('data:pieClicked') === 'true') { + elPath.attr({ + 'data:pieClicked': 'false' + }); + this.revertDataLabelsInner(elPath.node, this.donutDataLabels); + var origPath = elPath.attr('data:pathOrig'); + elPath.attr({ + d: origPath + }); + return; + } else { + // reset all elems + var allEls = w.globals.dom.baseEl.querySelectorAll('.apexcharts-pie-area'); + Array.prototype.forEach.call(allEls, function (pieSlice) { + pieSlice.setAttribute('data:pieClicked', 'false'); + var origPath = pieSlice.getAttribute('data:pathOrig'); + pieSlice.setAttribute('d', origPath); + }); + elPath.attr('data:pieClicked', 'true'); + } + + var startAngle = parseInt(elPath.attr('data:startAngle')); + var angle = parseInt(elPath.attr('data:angle')); + path = me.getPiePath({ + me: me, + startAngle: startAngle, + angle: angle, + size: size + }); + if (angle === 360) return; + elPath.plot(path).animate(1).plot(pathFrom).animate(100).plot(path); + } + }, { + key: "getChangedPath", + value: function getChangedPath(prevStartAngle, prevEndAngle) { + var path = ''; + + if (this.dynamicAnim && this.w.globals.dataChanged) { + path = this.getPiePath({ + me: this, + startAngle: prevStartAngle, + angle: prevEndAngle - prevStartAngle, + size: this.size + }); + } + + return path; + } + }, { + key: "getPiePath", + value: function getPiePath(_ref) { + var me = _ref.me, + startAngle = _ref.startAngle, + angle = _ref.angle, + size = _ref.size; + var w = this.w; + var path; + var startDeg = startAngle; + var startRadians = Math.PI * (startDeg - 90) / 180; + var endDeg = angle + startAngle; + if (Math.ceil(endDeg) >= 360) endDeg = 359.99; + var endRadians = Math.PI * (endDeg - 90) / 180; + var x1 = me.centerX + size * Math.cos(startRadians); + var y1 = me.centerY + size * Math.sin(startRadians); + var x2 = me.centerX + size * Math.cos(endRadians); + var y2 = me.centerY + size * Math.sin(endRadians); + var startInner = Utils.polarToCartesian(me.centerX, me.centerY, me.donutSize, endDeg); + var endInner = Utils.polarToCartesian(me.centerX, me.centerY, me.donutSize, startDeg); + var largeArc = angle > 180 ? 1 : 0; + + if (w.config.chart.type === 'donut') { + path = ['M', x1, y1, 'A', size, size, 0, largeArc, 1, x2, y2, 'L', startInner.x, startInner.y, 'A', me.donutSize, me.donutSize, 0, largeArc, 0, endInner.x, endInner.y, 'L', x1, y1, 'z'].join(' '); + } else if (w.config.chart.type === 'pie') { + path = ['M', x1, y1, 'A', size, size, 0, largeArc, 1, x2, y2, 'L', me.centerX, me.centerY, 'L', x1, y1].join(' '); + } else { + path = ['M', x1, y1, 'A', size, size, 0, largeArc, 1, x2, y2].join(' '); + } + + return path; + } + }, { + key: "renderInnerDataLabels", + value: function renderInnerDataLabels(dataLabelsConfig, opts) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var g = graphics.group({ + class: 'apexcharts-datalabels-group', + transform: "translate(".concat(opts.translateX ? opts.translateX : 0, ", ").concat(opts.translateY ? opts.translateY : 0, ")") + }); + var showTotal = dataLabelsConfig.total.show; + g.node.style.opacity = opts.opacity; + var x = opts.centerX; + var y = opts.centerY; + var labelColor, valueColor; + + if (dataLabelsConfig.name.color === undefined) { + labelColor = w.globals.colors[0]; + } else { + labelColor = dataLabelsConfig.name.color; + } + + if (dataLabelsConfig.value.color === undefined) { + valueColor = w.config.chart.foreColor; + } else { + valueColor = dataLabelsConfig.value.color; + } + + var lbFormatter = dataLabelsConfig.value.formatter; + var val = ''; + var name = ''; + + if (showTotal) { + labelColor = dataLabelsConfig.total.color; + name = dataLabelsConfig.total.label; + val = dataLabelsConfig.total.formatter(w); + } else { + if (w.globals.series.length === 1) { + val = lbFormatter(w.globals.series[0], w); + name = w.globals.seriesNames[0]; + } + } + + if (dataLabelsConfig.name.show) { + var elLabel = graphics.drawText({ + x: x, + y: y + parseInt(dataLabelsConfig.name.offsetY), + text: name, + textAnchor: 'middle', + foreColor: labelColor, + fontSize: dataLabelsConfig.name.fontSize, + fontFamily: dataLabelsConfig.name.fontFamily + }); + elLabel.node.classList.add('apexcharts-datalabel-label'); + g.add(elLabel); + } + + if (dataLabelsConfig.value.show) { + var valOffset = dataLabelsConfig.name.show ? parseInt(dataLabelsConfig.value.offsetY) + 16 : dataLabelsConfig.value.offsetY; + var elValue = graphics.drawText({ + x: x, + y: y + valOffset, + text: val, + textAnchor: 'middle', + foreColor: valueColor, + fontSize: dataLabelsConfig.value.fontSize, + fontFamily: dataLabelsConfig.value.fontFamily + }); + elValue.node.classList.add('apexcharts-datalabel-value'); + g.add(elValue); + } // for a multi-series circle chart, we need to show total value instead of first series labels + + + return g; + } + /** + * + * @param {string} name - The name of the series + * @param {string} val - The value of that series + * @param {object} el - Optional el (indicates which series was hovered/clicked). If this param is not present, means we need to show total + */ + + }, { + key: "printInnerLabels", + value: function printInnerLabels(labelsConfig, name, val, el) { + var w = this.w; + var labelColor; + + if (el) { + if (labelsConfig.name.color === undefined) { + labelColor = w.globals.colors[parseInt(el.parentNode.getAttribute('rel')) - 1]; + } else { + labelColor = labelsConfig.name.color; + } + } else { + if (w.globals.series.length > 1 && labelsConfig.total.show) { + labelColor = labelsConfig.total.color; + } + } + + var elLabel = w.globals.dom.baseEl.querySelector('.apexcharts-datalabel-label'); + var elValue = w.globals.dom.baseEl.querySelector('.apexcharts-datalabel-value'); + var lbFormatter = labelsConfig.value.formatter; + val = lbFormatter(val, w); // we need to show Total Val - so get the formatter of it + + if (!el && typeof labelsConfig.total.formatter === 'function') { + val = labelsConfig.total.formatter(w); + } + + if (elLabel !== null) { + elLabel.textContent = name; + } + + if (elValue !== null) { + elValue.textContent = val; + } + + if (elLabel !== null) { + elLabel.style.fill = labelColor; + } + } + }, { + key: "printDataLabelsInner", + value: function printDataLabelsInner(el, dataLabelsConfig) { + var w = this.w; + var val = el.getAttribute('data:value'); + var name = w.globals.seriesNames[parseInt(el.parentNode.getAttribute('rel')) - 1]; + + if (w.globals.series.length > 1) { + this.printInnerLabels(dataLabelsConfig, name, val, el); + } + + var dataLabelsGroup = w.globals.dom.baseEl.querySelector('.apexcharts-datalabels-group'); + + if (dataLabelsGroup !== null) { + dataLabelsGroup.style.opacity = 1; + } + } + }, { + key: "revertDataLabelsInner", + value: function revertDataLabelsInner(el, dataLabelsConfig, event) { + var _this = this; + + var w = this.w; + var dataLabelsGroup = w.globals.dom.baseEl.querySelector('.apexcharts-datalabels-group'); + + if (dataLabelsConfig.total.show && w.globals.series.length > 1) { + var pie = new Pie(this.ctx); + pie.printInnerLabels(dataLabelsConfig, dataLabelsConfig.total.label, dataLabelsConfig.total.formatter(w)); + } else { + var slices = document.querySelectorAll(".apexcharts-pie-area"); + var sliceOut = false; + Array.prototype.forEach.call(slices, function (s) { + if (s.getAttribute('data:pieClicked') === 'true') { + sliceOut = true; + + _this.printDataLabelsInner(s, dataLabelsConfig); + } + }); + + if (!sliceOut) { + if (w.globals.selectedDataPoints.length && w.globals.series.length > 1) { + if (w.globals.selectedDataPoints[0].length > 0) { + var index = w.globals.selectedDataPoints[0]; + + var _el = w.globals.dom.baseEl.querySelector(".apexcharts-".concat(w.config.chart.type.toLowerCase(), "-slice-").concat(index)); + + this.printDataLabelsInner(_el, dataLabelsConfig); + } else if (dataLabelsGroup && w.globals.selectedDataPoints.length && w.globals.selectedDataPoints[0].length === 0) { + dataLabelsGroup.style.opacity = 0; + } + } else { + if (dataLabelsGroup && w.globals.series.length > 1) { + dataLabelsGroup.style.opacity = 0; + } + } + } + } + } + }]); + + return Pie; + }(); + + /** + * ApexCharts Radar Class for Spider/Radar Charts. + * @module Radar + **/ + + var Radar = + /*#__PURE__*/ + function () { + function Radar(ctx) { + _classCallCheck(this, Radar); + + this.ctx = ctx; + this.w = ctx.w; + this.chartType = this.w.config.chart.type; + this.initialAnim = this.w.config.chart.animations.enabled; + this.dynamicAnim = this.initialAnim && this.w.config.chart.animations.dynamicAnimation.enabled; + this.animDur = 0; + var w = this.w; + this.graphics = new Graphics(this.ctx); + this.lineColorArr = w.globals.stroke.colors !== undefined ? w.globals.stroke.colors : w.globals.colors; + this.defaultSize = w.globals.svgHeight < w.globals.svgWidth ? w.globals.svgHeight - 35 : w.globals.gridWidth; + this.maxValue = this.w.globals.maxY; + this.polygons = w.config.plotOptions.radar.polygons; + this.maxLabelWidth = 20; + var longestLabel = w.globals.labels.slice().sort(function (a, b) { + return b.length - a.length; + })[0]; + var labelWidth = this.graphics.getTextRects(longestLabel, w.config.dataLabels.style.fontSize); + this.size = this.defaultSize / 2.1 - w.config.stroke.width - w.config.chart.dropShadow.blur - labelWidth.width / 1.75; + + if (w.config.plotOptions.radar.size !== undefined) { + this.size = w.config.plotOptions.radar.size; + } + + this.dataRadiusOfPercent = []; + this.dataRadius = []; + this.angleArr = []; + this.yaxisLabelsTextsPos = []; + } + + _createClass(Radar, [{ + key: "draw", + value: function draw(series) { + var _this = this; + + var w = this.w; + var fill = new Fill(this.ctx); + var allSeries = []; + + if (series.length) { + this.dataPointsLen = series[w.globals.maxValsInArrayIndex].length; + } + + this.disAngle = Math.PI * 2 / this.dataPointsLen; + var halfW = w.globals.gridWidth / 2; + var halfH = w.globals.gridHeight / 2; + var translateX = halfW; + var translateY = halfH; + var ret = this.graphics.group({ + class: 'apexcharts-radar-series', + 'data:innerTranslateX': translateX, + 'data:innerTranslateY': translateY - 25, + transform: "translate(".concat(translateX || 0, ", ").concat(translateY || 0, ")") + }); + var dataPointsPos = []; + var elPointsMain = null; + this.yaxisLabels = this.graphics.group({ + class: 'apexcharts-yaxis' + }); + series.forEach(function (s, i) { + // el to which series will be drawn + var elSeries = _this.graphics.group().attr({ + class: "apexcharts-series", + seriesName: Utils.escapeString(w.globals.seriesNames[i]), + rel: i + 1, + 'data:realIndex': i + }); + + _this.dataRadiusOfPercent[i] = []; + _this.dataRadius[i] = []; + _this.angleArr[i] = []; + s.forEach(function (dv, j) { + _this.dataRadiusOfPercent[i][j] = dv / _this.maxValue; + _this.dataRadius[i][j] = _this.dataRadiusOfPercent[i][j] * _this.size; + _this.angleArr[i][j] = j * _this.disAngle; + }); + dataPointsPos = _this.getDataPointsPos(_this.dataRadius[i], _this.angleArr[i]); + + var paths = _this.createPaths(dataPointsPos, { + x: 0, + y: 0 + }); // points + + + elPointsMain = _this.graphics.group({ + class: 'apexcharts-series-markers-wrap hidden' + }); + w.globals.delayedElements.push({ + el: elPointsMain.node, + index: i + }); + var defaultRenderedPathOptions = { + i: i, + realIndex: i, + animationDelay: i, + initialSpeed: w.config.chart.animations.speed, + dataChangeSpeed: w.config.chart.animations.dynamicAnimation.speed, + className: "apexcharts-radar", + shouldClipToGrid: false, + bindEventsOnPaths: false, + stroke: w.globals.stroke.colors[i], + strokeLineCap: w.config.stroke.lineCap + }; + var pathFrom = null; + + if (w.globals.previousPaths.length > 0) { + pathFrom = _this.getPathFrom(i); + } + + for (var p = 0; p < paths.linePathsTo.length; p++) { + var renderedLinePath = _this.graphics.renderPaths(_objectSpread({}, defaultRenderedPathOptions, { + pathFrom: pathFrom === null ? paths.linePathsFrom[p] : pathFrom, + pathTo: paths.linePathsTo[p], + strokeWidth: Array.isArray(w.config.stroke.width) ? w.config.stroke.width[i] : w.config.stroke.width, + fill: 'none', + drawShadow: false + })); + + elSeries.add(renderedLinePath); + var pathFill = fill.fillPath({ + seriesNumber: i + }); + + var renderedAreaPath = _this.graphics.renderPaths(_objectSpread({}, defaultRenderedPathOptions, { + pathFrom: pathFrom === null ? paths.areaPathsFrom[p] : pathFrom, + pathTo: paths.areaPathsTo[p], + strokeWidth: 0, + fill: pathFill, + drawShadow: false + })); + + if (w.config.chart.dropShadow.enabled) { + var filters = new Filters(_this.ctx); + var shadow = w.config.chart.dropShadow; + filters.dropShadow(renderedAreaPath, Object.assign({}, shadow, { + noUserSpaceOnUse: true + }), i); + } + + elSeries.add(renderedAreaPath); + } + + s.forEach(function (sj, j) { + var markers = new Markers(_this.ctx); + var opts = markers.getMarkerConfig('apexcharts-marker', i, j); + + var point = _this.graphics.drawMarker(dataPointsPos[j].x, dataPointsPos[j].y, opts); + + point.attr('rel', j); + point.attr('j', j); + point.attr('index', i); + point.node.setAttribute('default-marker-size', opts.pSize); + + var elPointsWrap = _this.graphics.group({ + class: 'apexcharts-series-markers' + }); + + if (elPointsWrap) { + elPointsWrap.add(point); + } + + elPointsMain.add(elPointsWrap); + elSeries.add(elPointsMain); + }); + allSeries.push(elSeries); + }); + this.drawPolygons({ + parent: ret + }); + + if (w.config.dataLabels.enabled) { + var dataLabels = this.drawLabels(); + ret.add(dataLabels); + } + + ret.add(this.yaxisLabels); + allSeries.forEach(function (elS) { + ret.add(elS); + }); + return ret; + } + }, { + key: "drawPolygons", + value: function drawPolygons(opts) { + var _this2 = this; + + var w = this.w; + var parent = opts.parent; + var yaxisTexts = w.globals.yAxisScale[0].result.reverse(); + var layers = yaxisTexts.length; + var radiusSizes = []; + var layerDis = this.size / (layers - 1); + + for (var i = 0; i < layers; i++) { + radiusSizes[i] = layerDis * i; + } + + radiusSizes.reverse(); + var polygonStrings = []; + var lines = []; + radiusSizes.forEach(function (radiusSize, r) { + var polygon = _this2.getPolygonPos(radiusSize); + + var string = ''; + polygon.forEach(function (p, i) { + if (r === 0) { + var line = _this2.graphics.drawLine(p.x, p.y, 0, 0, Array.isArray(_this2.polygons.connectorColors) ? _this2.polygons.connectorColors[i] : _this2.polygons.connectorColors); + + lines.push(line); + } + + if (i === 0) { + _this2.yaxisLabelsTextsPos.push({ + x: p.x, + y: p.y + }); + } + + string += p.x + ',' + p.y + ' '; + }); + polygonStrings.push(string); + }); + polygonStrings.forEach(function (p, i) { + var strokeColors = _this2.polygons.strokeColors; + + var polygon = _this2.graphics.drawPolygon(p, Array.isArray(strokeColors) ? strokeColors[i] : strokeColors, w.globals.radarPolygons.fill.colors[i]); + + parent.add(polygon); + }); + lines.forEach(function (l) { + parent.add(l); + }); + + if (w.config.yaxis[0].show) { + this.yaxisLabelsTextsPos.forEach(function (p, i) { + var yText = _this2.drawYAxisText(p.x, p.y, i, yaxisTexts[i]); + + _this2.yaxisLabels.add(yText); + }); + } + } + }, { + key: "drawYAxisText", + value: function drawYAxisText(x, y, i, text) { + var w = this.w; + var yaxisConfig = w.config.yaxis[0]; + var formatter = w.globals.yLabelFormatters[0]; + var yaxisLabel = this.graphics.drawText({ + x: x + yaxisConfig.labels.offsetX, + y: y + yaxisConfig.labels.offsetY, + text: formatter(text, i), + textAnchor: 'middle', + fontSize: yaxisConfig.labels.style.fontSize, + fontFamily: yaxisConfig.labels.style.fontFamily, + foreColor: yaxisConfig.labels.style.color + }); + return yaxisLabel; + } + }, { + key: "drawLabels", + value: function drawLabels() { + var _this3 = this; + + var w = this.w; + var limit = 10; + var textAnchor = 'middle'; + var dataLabelsConfig = w.config.dataLabels; + var elDataLabelsWrap = this.graphics.group({ + class: 'apexcharts-datalabels' + }); + var polygonPos = this.getPolygonPos(this.size); + var currPosX = 0; + var currPosY = 0; + w.globals.labels.forEach(function (label, i) { + var formatter = dataLabelsConfig.formatter; + var dataLabels = new DataLabels(_this3.ctx); + + if (polygonPos[i]) { + currPosX = polygonPos[i].x; + currPosY = polygonPos[i].y; + + if (Math.abs(polygonPos[i].x) >= limit) { + if (polygonPos[i].x > 0) { + textAnchor = 'start'; + currPosX += 10; + } else if (polygonPos[i].x < 0) { + textAnchor = 'end'; + currPosX -= 10; + } + } else { + textAnchor = 'middle'; + } + + if (Math.abs(polygonPos[i].y) >= _this3.size - limit) { + if (polygonPos[i].y < 0) { + currPosY -= 10; + } else if (polygonPos[i].y > 0) { + currPosY += 10; + } + } + + var text = formatter(label, { + seriesIndex: -1, + dataPointIndex: i, + w: w + }); + dataLabels.plotDataLabelsText({ + x: currPosX, + y: currPosY, + text: text, + textAnchor: textAnchor, + i: i, + j: i, + parent: elDataLabelsWrap, + dataLabelsConfig: dataLabelsConfig, + offsetCorrection: false + }); + } + }); + return elDataLabelsWrap; + } + }, { + key: "createPaths", + value: function createPaths(pos, origin) { + var _this4 = this; + + var linePathsTo = []; + var linePathsFrom = []; + var areaPathsTo = []; + var areaPathsFrom = []; + + if (pos.length) { + linePathsFrom = [this.graphics.move(origin.x, origin.y)]; + areaPathsFrom = [this.graphics.move(origin.x, origin.y)]; + var linePathTo = this.graphics.move(pos[0].x, pos[0].y); + var areaPathTo = this.graphics.move(pos[0].x, pos[0].y); + pos.forEach(function (p, i) { + linePathTo += _this4.graphics.line(p.x, p.y); + areaPathTo += _this4.graphics.line(p.x, p.y); + + if (i === pos.length - 1) { + linePathTo += 'Z'; + areaPathTo += 'Z'; + } + }); + linePathsTo.push(linePathTo); + areaPathsTo.push(areaPathTo); + } + + return { + linePathsFrom: linePathsFrom, + linePathsTo: linePathsTo, + areaPathsFrom: areaPathsFrom, + areaPathsTo: areaPathsTo + }; + } + }, { + key: "getPathFrom", + value: function getPathFrom(realIndex) { + var w = this.w; + var pathFrom = null; + + for (var pp = 0; pp < w.globals.previousPaths.length; pp++) { + var gpp = w.globals.previousPaths[pp]; + + if (gpp.paths.length > 0 && parseInt(gpp.realIndex) === parseInt(realIndex)) { + if (typeof w.globals.previousPaths[pp].paths[0] !== 'undefined') { + pathFrom = w.globals.previousPaths[pp].paths[0].d; + } + } + } + + return pathFrom; + } + }, { + key: "getDataPointsPos", + value: function getDataPointsPos(dataRadiusArr, angleArr) { + var dataPointsLen = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.dataPointsLen; + dataRadiusArr = dataRadiusArr || []; + angleArr = angleArr || []; + var dataPointsPosArray = []; + + for (var j = 0; j < dataPointsLen; j++) { + var curPointPos = {}; + curPointPos.x = dataRadiusArr[j] * Math.sin(angleArr[j]); + curPointPos.y = -dataRadiusArr[j] * Math.cos(angleArr[j]); + dataPointsPosArray.push(curPointPos); + } + + return dataPointsPosArray; + } + }, { + key: "getPolygonPos", + value: function getPolygonPos(size) { + var dotsArray = []; + var angle = Math.PI * 2 / this.dataPointsLen; + + for (var i = 0; i < this.dataPointsLen; i++) { + var curPos = {}; + curPos.x = size * Math.sin(i * angle); + curPos.y = -size * Math.cos(i * angle); + dotsArray.push(curPos); + } + + return dotsArray; + } + }]); + + return Radar; + }(); + + /** + * ApexCharts Radial Class for drawing Circle / Semi Circle Charts. + * @module Radial + **/ + + var Radial = + /*#__PURE__*/ + function (_Pie) { + _inherits(Radial, _Pie); + + function Radial(ctx) { + var _this; + + _classCallCheck(this, Radial); + + _this = _possibleConstructorReturn(this, _getPrototypeOf(Radial).call(this, ctx)); + _this.ctx = ctx; + _this.w = ctx.w; + _this.animBeginArr = [0]; + _this.animDur = 0; + var w = _this.w; + _this.startAngle = w.config.plotOptions.radialBar.startAngle; + _this.endAngle = w.config.plotOptions.radialBar.endAngle; + _this.trackStartAngle = w.config.plotOptions.radialBar.track.startAngle; + _this.trackEndAngle = w.config.plotOptions.radialBar.track.endAngle; + _this.radialDataLabels = w.config.plotOptions.radialBar.dataLabels; + if (!_this.trackStartAngle) _this.trackStartAngle = _this.startAngle; + if (!_this.trackEndAngle) _this.trackEndAngle = _this.endAngle; + if (_this.endAngle === 360) _this.endAngle = 359.99; + _this.fullAngle = 360 - w.config.plotOptions.radialBar.endAngle - w.config.plotOptions.radialBar.startAngle; + _this.margin = parseInt(w.config.plotOptions.radialBar.track.margin); + return _this; + } + + _createClass(Radial, [{ + key: "draw", + value: function draw(series) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var ret = graphics.group({ + class: 'apexcharts-radialbar' + }); + if (w.globals.noData) return ret; + var elSeries = graphics.group(); + var centerY = this.defaultSize / 2; + var centerX = w.globals.gridWidth / 2; + var size = this.defaultSize / 2.05 - w.config.stroke.width - w.config.chart.dropShadow.blur; + + if (w.config.plotOptions.radialBar.size !== undefined) { + size = w.config.plotOptions.radialBar.size; + } + + var colorArr = w.globals.fill.colors; + + if (w.config.plotOptions.radialBar.track.show) { + var elTracks = this.drawTracks({ + size: size, + centerX: centerX, + centerY: centerY, + colorArr: colorArr, + series: series + }); + elSeries.add(elTracks); + } + + var elG = this.drawArcs({ + size: size, + centerX: centerX, + centerY: centerY, + colorArr: colorArr, + series: series + }); + var totalAngle = 360; + + if (w.config.plotOptions.radialBar.startAngle < 0) { + totalAngle = Math.abs(w.config.plotOptions.radialBar.endAngle - w.config.plotOptions.radialBar.startAngle); + } + + w.globals.radialSize = size - size / (360 / (360 - totalAngle)); + elSeries.add(elG.g); + + if (w.config.plotOptions.radialBar.hollow.position === 'front') { + elG.g.add(elG.elHollow); + + if (elG.dataLabels) { + elG.g.add(elG.dataLabels); + } + } + + ret.add(elSeries); + return ret; + } + }, { + key: "drawTracks", + value: function drawTracks(opts) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var g = graphics.group({ + class: 'apexcharts-tracks' + }); + var filters = new Filters(this.ctx); + var fill = new Fill(this.ctx); + var strokeWidth = this.getStrokeWidth(opts); + opts.size = opts.size - strokeWidth / 2; + + for (var i = 0; i < opts.series.length; i++) { + var elRadialBarTrack = graphics.group({ + class: 'apexcharts-radialbar-track apexcharts-track' + }); + g.add(elRadialBarTrack); + elRadialBarTrack.attr({ + rel: i + 1 + }); + opts.size = opts.size - strokeWidth - this.margin; + var trackConfig = w.config.plotOptions.radialBar.track; + var pathFill = fill.fillPath({ + seriesNumber: 0, + size: opts.size, + fillColors: Array.isArray(trackConfig.background) ? trackConfig.background[i] : trackConfig.background, + solid: true + }); + var startAngle = this.trackStartAngle; + var endAngle = this.trackEndAngle; + if (Math.abs(endAngle) + Math.abs(startAngle) >= 360) endAngle = 360 - Math.abs(this.startAngle) - 0.1; + var elPath = graphics.drawPath({ + d: '', + stroke: pathFill, + strokeWidth: strokeWidth * parseInt(trackConfig.strokeWidth) / 100, + fill: 'none', + strokeOpacity: trackConfig.opacity, + classes: 'apexcharts-radialbar-area' + }); + + if (trackConfig.dropShadow.enabled) { + var shadow = trackConfig.dropShadow; + filters.dropShadow(elPath, shadow); + } + + elRadialBarTrack.add(elPath); + elPath.attr('id', 'apexcharts-radialbarTrack-' + i); + this.animatePaths(elPath, { + centerX: opts.centerX, + centerY: opts.centerY, + endAngle: endAngle, + startAngle: startAngle, + size: opts.size, + i: i, + totalItems: 2, + animBeginArr: 0, + dur: 0, + isTrack: true, + easing: w.globals.easing + }); + } + + return g; + } + }, { + key: "drawArcs", + value: function drawArcs(opts) { + var w = this.w; // size, donutSize, centerX, centerY, colorArr, lineColorArr, sectorAngleArr, series + + var graphics = new Graphics(this.ctx); + var fill = new Fill(this.ctx); + var filters = new Filters(this.ctx); + var g = graphics.group(); + var strokeWidth = this.getStrokeWidth(opts); + opts.size = opts.size - strokeWidth / 2; + var hollowFillID = w.config.plotOptions.radialBar.hollow.background; + var hollowSize = opts.size - strokeWidth * opts.series.length - this.margin * opts.series.length - strokeWidth * parseInt(w.config.plotOptions.radialBar.track.strokeWidth) / 100 / 2; + var hollowRadius = hollowSize - w.config.plotOptions.radialBar.hollow.margin; + + if (w.config.plotOptions.radialBar.hollow.image !== undefined) { + hollowFillID = this.drawHollowImage(opts, g, hollowSize, hollowFillID); + } + + var elHollow = this.drawHollow({ + size: hollowRadius, + centerX: opts.centerX, + centerY: opts.centerY, + fill: hollowFillID + }); + + if (w.config.plotOptions.radialBar.hollow.dropShadow.enabled) { + var shadow = w.config.plotOptions.radialBar.hollow.dropShadow; + filters.dropShadow(elHollow, shadow); + } + + var shown = 1; + + if (!this.radialDataLabels.total.show && w.globals.series.length > 1) { + shown = 0; + } + + var dataLabels = null; + + if (this.radialDataLabels.show) { + dataLabels = this.renderInnerDataLabels(this.radialDataLabels, { + hollowSize: hollowSize, + centerX: opts.centerX, + centerY: opts.centerY, + opacity: shown + }); + } + + if (w.config.plotOptions.radialBar.hollow.position === 'back') { + g.add(elHollow); + + if (dataLabels) { + g.add(dataLabels); + } + } + + var reverseLoop = false; + + if (w.config.plotOptions.radialBar.inverseOrder) { + reverseLoop = true; + } + + for (var i = reverseLoop ? opts.series.length - 1 : 0; reverseLoop ? i >= 0 : i < opts.series.length; reverseLoop ? i-- : i++) { + var elRadialBarArc = graphics.group({ + class: "apexcharts-series apexcharts-radial-series", + seriesName: Utils.escapeString(w.globals.seriesNames[i]) + }); + g.add(elRadialBarArc); + elRadialBarArc.attr({ + rel: i + 1, + 'data:realIndex': i + }); + this.ctx.series.addCollapsedClassToSeries(elRadialBarArc, i); + opts.size = opts.size - strokeWidth - this.margin; + var pathFill = fill.fillPath({ + seriesNumber: i, + size: opts.size, + value: opts.series[i] + }); + var startAngle = this.startAngle; + var prevStartAngle = void 0; + var totalAngle = Math.abs(w.config.plotOptions.radialBar.endAngle - w.config.plotOptions.radialBar.startAngle); // if data exceeds 100, make it 100 + + var dataValue = Utils.negToZero(opts.series[i] > 100 ? 100 : opts.series[i]) / 100; + var endAngle = Math.round(totalAngle * dataValue) + this.startAngle; + var prevEndAngle = void 0; + + if (w.globals.dataChanged) { + prevStartAngle = this.startAngle; + prevEndAngle = Math.round(totalAngle * Utils.negToZero(w.globals.previousPaths[i]) / 100) + prevStartAngle; + } + + var currFullAngle = Math.abs(endAngle) + Math.abs(startAngle); + + if (currFullAngle >= 360) { + endAngle = endAngle - 0.01; + } + + var prevFullAngle = Math.abs(prevEndAngle) + Math.abs(prevStartAngle); + + if (prevFullAngle >= 360) { + prevEndAngle = prevEndAngle - 0.01; + } + + var angle = endAngle - startAngle; + var dashArray = Array.isArray(w.config.stroke.dashArray) ? w.config.stroke.dashArray[i] : w.config.stroke.dashArray; + var elPath = graphics.drawPath({ + d: '', + stroke: pathFill, + strokeWidth: strokeWidth, + fill: 'none', + fillOpacity: w.config.fill.opacity, + classes: 'apexcharts-radialbar-area apexcharts-radialbar-slice-' + i, + strokeDashArray: dashArray + }); + Graphics.setAttrs(elPath.node, { + 'data:angle': angle, + 'data:value': opts.series[i] + }); + + if (w.config.chart.dropShadow.enabled) { + var _shadow = w.config.chart.dropShadow; + filters.dropShadow(elPath, _shadow, i); + } + + this.addListeners(elPath, this.radialDataLabels); + elRadialBarArc.add(elPath); + elPath.attr({ + index: 0, + j: i + }); + var dur = 0; + + if (this.initialAnim && !w.globals.resized && !w.globals.dataChanged) { + dur = (endAngle - startAngle) / 360 * w.config.chart.animations.speed; + this.animDur = dur / (opts.series.length * 1.2) + this.animDur; + this.animBeginArr.push(this.animDur); + } + + if (w.globals.dataChanged) { + dur = (endAngle - startAngle) / 360 * w.config.chart.animations.dynamicAnimation.speed; + this.animDur = dur / (opts.series.length * 1.2) + this.animDur; + this.animBeginArr.push(this.animDur); + } + + this.animatePaths(elPath, { + centerX: opts.centerX, + centerY: opts.centerY, + endAngle: endAngle, + startAngle: startAngle, + prevEndAngle: prevEndAngle, + prevStartAngle: prevStartAngle, + size: opts.size, + i: i, + totalItems: 2, + animBeginArr: this.animBeginArr, + dur: dur, + shouldSetPrevPaths: true, + easing: w.globals.easing + }); + } + + return { + g: g, + elHollow: elHollow, + dataLabels: dataLabels + }; + } + }, { + key: "drawHollow", + value: function drawHollow(opts) { + var graphics = new Graphics(this.ctx); + var circle = graphics.drawCircle(opts.size * 2); + circle.attr({ + class: 'apexcharts-radialbar-hollow', + cx: opts.centerX, + cy: opts.centerY, + r: opts.size, + fill: opts.fill + }); + return circle; + } + }, { + key: "drawHollowImage", + value: function drawHollowImage(opts, g, hollowSize, hollowFillID) { + var w = this.w; + var fill = new Fill(this.ctx); + var randID = (Math.random() + 1).toString(36).substring(4); + var hollowFillImg = w.config.plotOptions.radialBar.hollow.image; + + if (w.config.plotOptions.radialBar.hollow.imageClipped) { + fill.clippedImgArea({ + width: hollowSize, + height: hollowSize, + image: hollowFillImg, + patternID: "pattern".concat(w.globals.cuid).concat(randID) + }); + hollowFillID = "url(#pattern".concat(w.globals.cuid).concat(randID, ")"); + } else { + var imgWidth = w.config.plotOptions.radialBar.hollow.imageWidth; + var imgHeight = w.config.plotOptions.radialBar.hollow.imageHeight; + + if (imgWidth === undefined && imgHeight === undefined) { + var image = w.globals.dom.Paper.image(hollowFillImg).loaded(function (loader) { + this.move(opts.centerX - loader.width / 2 + w.config.plotOptions.radialBar.hollow.imageOffsetX, opts.centerY - loader.height / 2 + w.config.plotOptions.radialBar.hollow.imageOffsetY); + }); + g.add(image); + } else { + var _image = w.globals.dom.Paper.image(hollowFillImg).loaded(function (loader) { + this.move(opts.centerX - imgWidth / 2 + w.config.plotOptions.radialBar.hollow.imageOffsetX, opts.centerY - imgHeight / 2 + w.config.plotOptions.radialBar.hollow.imageOffsetY); + this.size(imgWidth, imgHeight); + }); + + g.add(_image); + } + } + + return hollowFillID; + } + }, { + key: "getStrokeWidth", + value: function getStrokeWidth(opts) { + var w = this.w; + return opts.size * (100 - parseInt(w.config.plotOptions.radialBar.hollow.size)) / 100 / (opts.series.length + 1) - this.margin; + } + }]); + + return Radial; + }(Pie); + + /** + * ApexCharts RangeBar Class responsible for drawing Range/Timeline Bars. + * + * @module RangeBar + **/ + + var RangeBar = + /*#__PURE__*/ + function (_Bar) { + _inherits(RangeBar, _Bar); + + function RangeBar() { + _classCallCheck(this, RangeBar); + + return _possibleConstructorReturn(this, _getPrototypeOf(RangeBar).apply(this, arguments)); + } + + _createClass(RangeBar, [{ + key: "draw", + value: function draw(series, seriesIndex) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var fill = new Fill(this.ctx); + this.rangeBarOptions = this.w.config.plotOptions.rangeBar; + this.series = series; + this.seriesRangeStart = w.globals.seriesRangeStart; + this.seriesRangeEnd = w.globals.seriesRangeEnd; + this.initVariables(series); + var ret = graphics.group({ + class: 'apexcharts-rangebar-series apexcharts-plot-series' + }); + + for (var i = 0, bc = 0; i < series.length; i++, bc++) { + var pathTo = void 0, + pathFrom = void 0; + var x = void 0, + y = void 0, + xDivision = void 0, + // xDivision is the GRIDWIDTH divided by number of datapoints (columns) + yDivision = void 0, + // yDivision is the GRIDHEIGHT divided by number of datapoints (bars) + zeroH = void 0, + // zeroH is the baseline where 0 meets y axis + zeroW = void 0; // zeroW is the baseline where 0 meets x axis + + var yArrj = []; // hold y values of current iterating series + + var xArrj = []; // hold x values of current iterating series + + var realIndex = w.globals.comboCharts ? seriesIndex[i] : i; // el to which series will be drawn + + var elSeries = graphics.group({ + class: "apexcharts-series", + seriesName: Utils.escapeString(w.globals.seriesNames[realIndex]), + rel: i + 1, + 'data:realIndex': realIndex + }); + + if (series[i].length > 0) { + this.visibleI = this.visibleI + 1; + } + + var strokeWidth = 0; + var barHeight = 0; + var barWidth = 0; + + if (this.yRatio.length > 1) { + this.yaxisIndex = realIndex; + } + + var initPositions = this.initialPositions(); + y = initPositions.y; + yDivision = initPositions.yDivision; + barHeight = initPositions.barHeight; + zeroW = initPositions.zeroW; + x = initPositions.x; + barWidth = initPositions.barWidth; + xDivision = initPositions.xDivision; + zeroH = initPositions.zeroH; + xArrj.push(x + barWidth / 2); // eldatalabels + + var elDataLabelsWrap = graphics.group({ + class: 'apexcharts-datalabels' + }); + + for (var j = 0, tj = w.globals.dataPoints; j < w.globals.dataPoints; j++, tj--) { + if (typeof this.series[i][j] === 'undefined' || series[i][j] === null) { + this.isNullValue = true; + } else { + this.isNullValue = false; + } + + if (w.config.stroke.show) { + if (this.isNullValue) { + strokeWidth = 0; + } else { + strokeWidth = Array.isArray(this.strokeWidth) ? this.strokeWidth[realIndex] : this.strokeWidth; + } + } + + var paths = null; + + if (this.isHorizontal) { + paths = this.drawRangeBarPaths({ + indexes: { + i: i, + j: j, + realIndex: realIndex, + bc: bc + }, + barHeight: barHeight, + strokeWidth: strokeWidth, + pathTo: pathTo, + pathFrom: pathFrom, + zeroW: zeroW, + x: x, + y: y, + yDivision: yDivision, + elSeries: elSeries + }); + barWidth = paths.barWidth; + } else { + paths = this.drawRangeColumnPaths({ + indexes: { + i: i, + j: j, + realIndex: realIndex, + bc: bc + }, + x: x, + y: y, + xDivision: xDivision, + pathTo: pathTo, + pathFrom: pathFrom, + barWidth: barWidth, + zeroH: zeroH, + strokeWidth: strokeWidth, + elSeries: elSeries + }); + barHeight = paths.barHeight; + } + + pathTo = paths.pathTo; + pathFrom = paths.pathFrom; + y = paths.y; + x = paths.x; // push current X + + if (j > 0) { + xArrj.push(x + barWidth / 2); + } + + yArrj.push(y); + var pathFill = fill.fillPath({ + seriesNumber: realIndex + }); + var lineFill = w.globals.stroke.colors[realIndex]; + elSeries = this.renderSeries({ + realIndex: realIndex, + pathFill: pathFill, + lineFill: lineFill, + j: j, + i: i, + pathFrom: pathFrom, + pathTo: pathTo, + strokeWidth: strokeWidth, + elSeries: elSeries, + x: x, + y: y, + series: series, + barHeight: barHeight, + barWidth: barWidth, + elDataLabelsWrap: elDataLabelsWrap, + visibleSeries: this.visibleI, + type: 'rangebar' + }); + } // push all x val arrays into main xArr + + + w.globals.seriesXvalues[realIndex] = xArrj; + w.globals.seriesYvalues[realIndex] = yArrj; + ret.add(elSeries); + } + + return ret; + } + }, { + key: "drawRangeColumnPaths", + value: function drawRangeColumnPaths(_ref) { + var indexes = _ref.indexes, + x = _ref.x, + y = _ref.y, + strokeWidth = _ref.strokeWidth, + xDivision = _ref.xDivision, + pathTo = _ref.pathTo, + pathFrom = _ref.pathFrom, + barWidth = _ref.barWidth, + zeroH = _ref.zeroH; + var w = this.w; + var graphics = new Graphics(this.ctx); + var i = indexes.i; + var j = indexes.j; + var yRatio = this.yRatio[this.yaxisIndex]; + var realIndex = indexes.realIndex; + var range = this.getRangeValue(realIndex, j); + var y1 = Math.min(range.start, range.end); + var y2 = Math.max(range.start, range.end); + + if (w.globals.isXNumeric) { + x = (w.globals.seriesX[i][j] - w.globals.minX) / this.xRatio - barWidth / 2; + } + + var barXPosition = x + barWidth * this.visibleI; + + if (typeof this.series[i][j] === 'undefined' || this.series[i][j] === null) { + y1 = zeroH; + } else { + y1 = zeroH - y1 / yRatio; + y2 = zeroH - y2 / yRatio; + } + + var barHeight = Math.abs(y2 - y1); + pathTo = graphics.move(barXPosition, zeroH); + pathFrom = graphics.move(barXPosition, y1); + + if (w.globals.previousPaths.length > 0) { + pathFrom = this.getPathFrom(realIndex, j, true); + } + + pathTo = graphics.move(barXPosition, y2) + graphics.line(barXPosition + barWidth, y2) + graphics.line(barXPosition + barWidth, y1) + graphics.line(barXPosition, y1) + graphics.line(barXPosition, y2 - strokeWidth / 2); + pathFrom = pathFrom + graphics.move(barXPosition, y1) + graphics.line(barXPosition + barWidth, y1) + graphics.line(barXPosition + barWidth, y1) + graphics.line(barXPosition, y1); + + if (!w.globals.isXNumeric) { + x = x + xDivision; + } + + return { + pathTo: pathTo, + pathFrom: pathFrom, + barHeight: barHeight, + x: x, + y: y2, + barXPosition: barXPosition + }; + } + }, { + key: "drawRangeBarPaths", + value: function drawRangeBarPaths(_ref2) { + var indexes = _ref2.indexes, + x = _ref2.x, + y = _ref2.y, + yDivision = _ref2.yDivision, + pathTo = _ref2.pathTo, + pathFrom = _ref2.pathFrom, + barHeight = _ref2.barHeight, + zeroW = _ref2.zeroW; + var w = this.w; + var graphics = new Graphics(this.ctx); + var i = indexes.i; + var j = indexes.j; + var realIndex = indexes.realIndex; + var x1 = zeroW; + var x2 = zeroW; + + if (w.globals.isXNumeric) { + y = (w.globals.seriesX[i][j] - w.globals.minX) / this.invertedXRatio - barHeight; + } + + var barYPosition = y + barHeight * this.visibleI; + + if (typeof this.series[i][j] !== 'undefined' && this.series[i][j] !== null) { + x1 = zeroW + this.seriesRangeStart[i][j] / this.invertedYRatio; + x2 = zeroW + this.seriesRangeEnd[i][j] / this.invertedYRatio; + } + + pathTo = graphics.move(zeroW, barYPosition); + pathFrom = graphics.move(zeroW, barYPosition); + + if (w.globals.previousPaths.length > 0) { + pathFrom = this.getPathFrom(realIndex, j); + } + + var barWidth = Math.abs(x2 - x1); + pathTo = graphics.move(x1, barYPosition) + graphics.line(x2, barYPosition) + graphics.line(x2, barYPosition + barHeight) + graphics.line(x1, barYPosition + barHeight) + graphics.line(x1, barYPosition); + pathFrom = pathFrom + graphics.line(x1, barYPosition) + graphics.line(x1, barYPosition + barHeight) + graphics.line(x1, barYPosition + barHeight) + graphics.line(x1, barYPosition); + + if (!w.globals.isXNumeric) { + y = y + yDivision; + } + + return { + pathTo: pathTo, + pathFrom: pathFrom, + barWidth: barWidth, + x: x2, + y: y, + barYPosition: barYPosition + }; + } + }, { + key: "getRangeValue", + value: function getRangeValue(i, j) { + var w = this.w; + return { + start: w.globals.seriesRangeStart[i][j], + end: w.globals.seriesRangeEnd[i][j] + }; + } + }]); + + return RangeBar; + }(Bar); + + /** + * ApexCharts Formatter Class for setting value formatters for axes as well as tooltips. + * + * @module Formatters + **/ + + var Formatters = + /*#__PURE__*/ + function () { + function Formatters(ctx) { + _classCallCheck(this, Formatters); + + this.ctx = ctx; + this.w = ctx.w; + this.tooltipKeyFormat = 'dd MMM'; + } + + _createClass(Formatters, [{ + key: "xLabelFormat", + value: function xLabelFormat(fn, val, timestamp) { + var w = this.w; + + if (w.config.xaxis.type === 'datetime') { + if (w.config.xaxis.labels.formatter === undefined) { + // if user has not specified a custom formatter, use the default tooltip.x.format + if (w.config.tooltip.x.formatter === undefined) { + var datetimeObj = new DateTime(this.ctx); + return datetimeObj.formatDate(new Date(val), w.config.tooltip.x.format, true, true); + } + } + } + + return fn(val, timestamp); + } + }, { + key: "setLabelFormatters", + value: function setLabelFormatters() { + var w = this.w; + + w.globals.xLabelFormatter = function (val) { + return val; + }; + + w.globals.xaxisTooltipFormatter = function (val) { + return val; + }; + + w.globals.ttKeyFormatter = function (val) { + return val; + }; + + w.globals.ttZFormatter = function (val) { + return val; + }; + + w.globals.legendFormatter = function (val) { + return val; + }; // formatter function will always overwrite format property + + + if (w.config.xaxis.labels.formatter !== undefined) { + w.globals.xLabelFormatter = w.config.xaxis.labels.formatter; + } else { + w.globals.xLabelFormatter = function (val) { + if (Utils.isNumber(val)) { + // numeric xaxis may have smaller range, so defaulting to 1 decimal + if (w.config.xaxis.type === 'numeric' && w.globals.dataPoints < 50) { + return val.toFixed(1); + } + + if (w.globals.isBarHorizontal) { + var range = w.globals.maxY - w.globals.minYArr; + + if (range < 4) { + return val.toFixed(1); + } + } + + return val.toFixed(0); + } + + return val; + }; + } + + if (typeof w.config.tooltip.x.formatter === 'function') { + w.globals.ttKeyFormatter = w.config.tooltip.x.formatter; + } else { + w.globals.ttKeyFormatter = w.globals.xLabelFormatter; + } + + if (typeof w.config.xaxis.tooltip.formatter === 'function') { + w.globals.xaxisTooltipFormatter = w.config.xaxis.tooltip.formatter; + } + + if (Array.isArray(w.config.tooltip.y)) { + w.globals.ttVal = w.config.tooltip.y; + } else { + if (w.config.tooltip.y.formatter !== undefined) { + w.globals.ttVal = w.config.tooltip.y; + } + } + + if (w.config.tooltip.z.formatter !== undefined) { + w.globals.ttZFormatter = w.config.tooltip.z.formatter; + } // legend formatter - if user wants to append any global values of series to legend text + + + if (w.config.legend.formatter !== undefined) { + w.globals.legendFormatter = w.config.legend.formatter; + } // formatter function will always overwrite format property + + + w.config.yaxis.forEach(function (yaxe, i) { + if (yaxe.labels.formatter !== undefined) { + w.globals.yLabelFormatters[i] = yaxe.labels.formatter; + } else { + w.globals.yLabelFormatters[i] = function (val) { + if (!w.globals.xyCharts) return val; + + if (Utils.isNumber(val)) { + if (w.globals.yValueDecimal !== 0) { + return val.toFixed(yaxe.decimalsInFloat !== undefined ? yaxe.decimalsInFloat : w.globals.yValueDecimal); + } else if (w.globals.maxYArr[i] - w.globals.minYArr[i] < 10) { + return val.toFixed(1); + } else { + return val.toFixed(0); + } + } + + return val; + }; + } + }); + return w.globals; + } + }, { + key: "heatmapLabelFormatters", + value: function heatmapLabelFormatters() { + var w = this.w; + + if (w.config.chart.type === 'heatmap') { + w.globals.yAxisScale[0].result = w.globals.seriesNames.slice(); // get the longest string from the labels array and also apply label formatter to it + + var longest = w.globals.seriesNames.reduce(function (a, b) { + return a.length > b.length ? a : b; + }, 0); + w.globals.yAxisScale[0].niceMax = longest; + w.globals.yAxisScale[0].niceMin = longest; + } + } + }]); + + return Formatters; + }(); + + var AxesUtils = + /*#__PURE__*/ + function () { + function AxesUtils(ctx) { + _classCallCheck(this, AxesUtils); + + this.ctx = ctx; + this.w = ctx.w; + } // Based on the formatter function, get the label text and position + + + _createClass(AxesUtils, [{ + key: "getLabel", + value: function getLabel(labels, timelineLabels, x, i) { + var drawnLabels = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : []; + var w = this.w; + var rawLabel = typeof labels[i] === 'undefined' ? '' : labels[i]; + var label; + var xlbFormatter = w.globals.xLabelFormatter; + var customFormatter = w.config.xaxis.labels.formatter; + var isBold = false; + var xFormat = new Formatters(this.ctx); + var timestamp = rawLabel; + label = xFormat.xLabelFormat(xlbFormatter, rawLabel, timestamp); + + if (customFormatter !== undefined) { + label = customFormatter(rawLabel, labels[i], i); + } + + var determineHighestUnit = function determineHighestUnit(unit) { + var highestUnit = null; + timelineLabels.forEach(function (t) { + if (t.unit === 'month') { + highestUnit = 'year'; + } else if (t.unit === 'day') { + highestUnit = 'month'; + } else if (t.unit === 'hour') { + highestUnit = 'day'; + } else if (t.unit === 'minute') { + highestUnit = 'hour'; + } + }); + return highestUnit === unit; + }; + + if (timelineLabels.length > 0) { + isBold = determineHighestUnit(timelineLabels[i].unit); + x = timelineLabels[i].position; + label = timelineLabels[i].value; + } else { + if (w.config.xaxis.type === 'datetime' && customFormatter === undefined) { + label = ''; + } + } + + if (typeof label === 'undefined') label = ''; + label = label.toString(); + + if (label.indexOf('NaN') === 0 || label.toLowerCase().indexOf('invalid') === 0 || label.toLowerCase().indexOf('infinity') >= 0 || drawnLabels.indexOf(label) >= 0 && !w.config.xaxis.labels.showDuplicates) { + label = ''; + } + + return { + x: x, + text: label, + isBold: isBold + }; + } + }, { + key: "drawYAxisTicks", + value: function drawYAxisTicks(x, tickAmount, axisBorder, axisTicks, realIndex, labelsDivider, elYaxis) { + var w = this.w; + var graphics = new Graphics(this.ctx); // initial label position = 0; + + var t = w.globals.translateY; + + if (axisTicks.show) { + if (w.config.yaxis[realIndex].opposite === true) x = x + axisTicks.width; + + for (var i = tickAmount; i >= 0; i--) { + var tY = t + tickAmount / 10 + w.config.yaxis[realIndex].labels.offsetY - 1; + + if (w.globals.isBarHorizontal) { + tY = labelsDivider * i; + } + + var elTick = graphics.drawLine(x + axisBorder.offsetX - axisTicks.width + axisTicks.offsetX, tY + axisTicks.offsetY, x + axisBorder.offsetX + axisTicks.offsetX, tY + axisTicks.offsetY, axisBorder.color); + elYaxis.add(elTick); + t = t + labelsDivider; + } + } + } + }]); + + return AxesUtils; + }(); + + /** + * ApexCharts YAxis Class for drawing Y-Axis. + * + * @module YAxis + **/ + + var YAxis = + /*#__PURE__*/ + function () { + function YAxis(ctx) { + _classCallCheck(this, YAxis); + + this.ctx = ctx; + this.w = ctx.w; + var w = this.w; + this.xaxisFontSize = w.config.xaxis.labels.style.fontSize; + this.axisFontFamily = w.config.xaxis.labels.style.fontFamily; + this.xaxisForeColors = w.config.xaxis.labels.style.colors; + this.xAxisoffX = 0; + + if (w.config.xaxis.position === 'bottom') { + this.xAxisoffX = w.globals.gridHeight; + } + + this.drawnLabels = []; + this.axesUtils = new AxesUtils(ctx); + } + + _createClass(YAxis, [{ + key: "drawYaxis", + value: function drawYaxis(realIndex) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var yaxisFontSize = w.config.yaxis[realIndex].labels.style.fontSize; + var yaxisFontFamily = w.config.yaxis[realIndex].labels.style.fontFamily; + var elYaxis = graphics.group({ + class: 'apexcharts-yaxis', + rel: realIndex, + transform: 'translate(' + w.globals.translateYAxisX[realIndex] + ', 0)' + }); + + if (!w.config.yaxis[realIndex].show) { + return elYaxis; + } + + var elYaxisTexts = graphics.group({ + class: 'apexcharts-yaxis-texts-g' + }); + elYaxis.add(elYaxisTexts); + var tickAmount = w.globals.yAxisScale[realIndex].result.length - 1; // labelsDivider is simply svg height/number of ticks + + var labelsDivider = w.globals.gridHeight / tickAmount + 0.1; // initial label position = 0; + + var l = w.globals.translateY; + var lbFormatter = w.globals.yLabelFormatters[realIndex]; + var labels = w.globals.yAxisScale[realIndex].result.slice(); + + if (w.config.yaxis[realIndex] && w.config.yaxis[realIndex].reversed) { + labels.reverse(); + } + + if (w.config.yaxis[realIndex].labels.show) { + for (var i = tickAmount; i >= 0; i--) { + var val = labels[i]; + val = lbFormatter(val, i); + var xPad = w.config.yaxis[realIndex].labels.padding; + + if (w.config.yaxis[realIndex].opposite && w.config.yaxis.length !== 0) { + xPad = xPad * -1; + } + + var label = graphics.drawText({ + x: xPad, + y: l + tickAmount / 10 + w.config.yaxis[realIndex].labels.offsetY + 1, + text: val, + textAnchor: w.config.yaxis[realIndex].opposite ? 'start' : 'end', + fontSize: yaxisFontSize, + fontFamily: yaxisFontFamily, + foreColor: w.config.yaxis[realIndex].labels.style.color, + cssClass: 'apexcharts-yaxis-label ' + w.config.yaxis[realIndex].labels.style.cssClass + }); + elYaxisTexts.add(label); + var labelRotatingCenter = graphics.rotateAroundCenter(label.node); + + if (w.config.yaxis[realIndex].labels.rotate !== 0) { + label.node.setAttribute('transform', "rotate(".concat(w.config.yaxis[realIndex].labels.rotate, " ").concat(labelRotatingCenter.x, " ").concat(labelRotatingCenter.y, ")")); + } + + l = l + labelsDivider; + } + } + + if (w.config.yaxis[realIndex].title.text !== undefined) { + var elYaxisTitle = graphics.group({ + class: 'apexcharts-yaxis-title' + }); + var x = 0; + + if (w.config.yaxis[realIndex].opposite) { + x = w.globals.translateYAxisX[realIndex]; + } + + var elYAxisTitleText = graphics.drawText({ + x: x, + y: w.globals.gridHeight / 2 + w.globals.translateY, + text: w.config.yaxis[realIndex].title.text, + textAnchor: 'end', + foreColor: w.config.yaxis[realIndex].title.style.color, + fontSize: w.config.yaxis[realIndex].title.style.fontSize, + fontFamily: w.config.yaxis[realIndex].title.style.fontFamily, + cssClass: 'apexcharts-yaxis-title-text ' + w.config.yaxis[realIndex].title.style.cssClass + }); + elYaxisTitle.add(elYAxisTitleText); + elYaxis.add(elYaxisTitle); + } + + var axisBorder = w.config.yaxis[realIndex].axisBorder; + + if (axisBorder.show) { + var _x = 31 + axisBorder.offsetX; + + if (w.config.yaxis[realIndex].opposite) { + _x = -31 - axisBorder.offsetX; + } + + var elVerticalLine = graphics.drawLine(_x, w.globals.translateY + axisBorder.offsetY - 2, _x, w.globals.gridHeight + w.globals.translateY + axisBorder.offsetY + 2, axisBorder.color); + elYaxis.add(elVerticalLine); + this.axesUtils.drawYAxisTicks(_x, tickAmount, axisBorder, w.config.yaxis[realIndex].axisTicks, realIndex, labelsDivider, elYaxis); + } + + return elYaxis; + } // This actually becomes horizonal axis (for bar charts) + + }, { + key: "drawYaxisInversed", + value: function drawYaxisInversed(realIndex) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var elXaxis = graphics.group({ + class: 'apexcharts-xaxis apexcharts-yaxis-inversed' + }); + var elXaxisTexts = graphics.group({ + class: 'apexcharts-xaxis-texts-g', + transform: "translate(".concat(w.globals.translateXAxisX, ", ").concat(w.globals.translateXAxisY, ")") + }); + elXaxis.add(elXaxisTexts); + var tickAmount = w.globals.yAxisScale[realIndex].result.length - 1; // labelsDivider is simply svg width/number of ticks + + var labelsDivider = w.globals.gridWidth / tickAmount + 0.1; // initial label position; + + var l = labelsDivider + w.config.xaxis.labels.offsetX; + var lbFormatter = w.globals.xLabelFormatter; + var labels = w.globals.yAxisScale[realIndex].result.slice(); + var timelineLabels = w.globals.invertedTimelineLabels; + + if (timelineLabels.length > 0) { + this.xaxisLabels = timelineLabels.slice(); + labels = timelineLabels.slice(); + tickAmount = labels.length; + } + + if (w.config.yaxis[realIndex] && w.config.yaxis[realIndex].reversed) { + labels.reverse(); + } + + var tl = timelineLabels.length; + + if (w.config.xaxis.labels.show) { + for (var i = tl ? 0 : tickAmount; tl ? i < tl - 1 : i >= 0; tl ? i++ : i--) { + var val = labels[i]; + val = lbFormatter(val, i); + var x = w.globals.gridWidth + w.globals.padHorizontal - (l - labelsDivider + w.config.xaxis.labels.offsetX); + + if (timelineLabels.length) { + var label = this.axesUtils.getLabel(labels, timelineLabels, x, i, this.drawnLabels); + x = label.x; + val = label.text; + this.drawnLabels.push(label.text); + } + + var elTick = graphics.drawText({ + x: x, + y: this.xAxisoffX + w.config.xaxis.labels.offsetY + 30, + text: '', + textAnchor: 'middle', + foreColor: Array.isArray(this.xaxisForeColors) ? this.xaxisForeColors[realIndex] : this.xaxisForeColors, + fontSize: this.xaxisFontSize, + fontFamily: this.xaxisFontFamily, + cssClass: 'apexcharts-xaxis-label ' + w.config.xaxis.labels.style.cssClass + }); + elXaxisTexts.add(elTick); + elTick.tspan(val); + var elTooltipTitle = document.createElementNS(w.globals.SVGNS, 'title'); + elTooltipTitle.textContent = val; + elTick.node.appendChild(elTooltipTitle); + l = l + labelsDivider; + } + } + + if (w.config.xaxis.title.text !== undefined) { + var elYaxisTitle = graphics.group({ + class: 'apexcharts-xaxis-title apexcharts-yaxis-title-inversed' + }); + var elYAxisTitleText = graphics.drawText({ + x: w.globals.gridWidth / 2, + y: this.xAxisoffX + parseInt(this.xaxisFontSize) + parseInt(w.config.xaxis.title.style.fontSize) + 20, + text: w.config.xaxis.title.text, + textAnchor: 'middle', + fontSize: w.config.xaxis.title.style.fontSize, + fontFamily: w.config.xaxis.title.style.fontFamily, + cssClass: 'apexcharts-xaxis-title-text ' + w.config.xaxis.title.style.cssClass + }); + elYaxisTitle.add(elYAxisTitleText); + elXaxis.add(elYaxisTitle); + } + + var axisBorder = w.config.yaxis[realIndex].axisBorder; + + if (axisBorder.show) { + var elVerticalLine = graphics.drawLine(w.globals.padHorizontal + axisBorder.offsetX, 1 + axisBorder.offsetY, w.globals.padHorizontal + axisBorder.offsetX, w.globals.gridHeight + axisBorder.offsetY, axisBorder.color); + elXaxis.add(elVerticalLine); + } + + return elXaxis; + } + }, { + key: "yAxisTitleRotate", + value: function yAxisTitleRotate(realIndex, yAxisOpposite) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var yAxisLabelsCoord = { + width: 0, + height: 0 + }; + var yAxisTitleCoord = { + width: 0, + height: 0 + }; + var elYAxisLabelsWrap = w.globals.dom.baseEl.querySelector(" .apexcharts-yaxis[rel='".concat(realIndex, "'] .apexcharts-yaxis-texts-g")); + + if (elYAxisLabelsWrap !== null) { + yAxisLabelsCoord = elYAxisLabelsWrap.getBoundingClientRect(); + } + + var yAxisTitle = w.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(realIndex, "'] .apexcharts-yaxis-title text")); + + if (yAxisTitle !== null) { + yAxisTitleCoord = yAxisTitle.getBoundingClientRect(); + } + + if (yAxisTitle !== null) { + var x = this.xPaddingForYAxisTitle(realIndex, yAxisLabelsCoord, yAxisTitleCoord, yAxisOpposite); + yAxisTitle.setAttribute('x', x.xPos - (yAxisOpposite ? 10 : 0)); + } + + if (yAxisTitle !== null) { + var titleRotatingCenter = graphics.rotateAroundCenter(yAxisTitle); + + if (!yAxisOpposite) { + yAxisTitle.setAttribute('transform', "rotate(-".concat(w.config.yaxis[realIndex].title.rotate, " ").concat(titleRotatingCenter.x, " ").concat(titleRotatingCenter.y, ")")); + } else { + yAxisTitle.setAttribute('transform', "rotate(".concat(w.config.yaxis[realIndex].title.rotate, " ").concat(titleRotatingCenter.x, " ").concat(titleRotatingCenter.y, ")")); + } + } + } + }, { + key: "xPaddingForYAxisTitle", + value: function xPaddingForYAxisTitle(realIndex, yAxisLabelsCoord, yAxisTitleCoord, yAxisOpposite) { + var w = this.w; + var oppositeAxisCount = 0; + var x = 0; + var padd = 10; + + if (w.config.yaxis[realIndex].title.text === undefined || realIndex < 0) { + return { + xPos: x, + padd: 0 + }; + } + + if (yAxisOpposite) { + x = yAxisLabelsCoord.width + w.config.yaxis[realIndex].title.offsetX + yAxisTitleCoord.width / 2 + padd / 2; + oppositeAxisCount += 1; + + if (oppositeAxisCount === 0) { + x = x - padd / 2; + } + } else { + x = yAxisLabelsCoord.width * -1 + w.config.yaxis[realIndex].title.offsetX + padd / 2 + yAxisTitleCoord.width / 2; + + if (w.globals.isBarHorizontal) { + padd = 25; + x = yAxisLabelsCoord.width * -1 - w.config.yaxis[realIndex].title.offsetX - padd; + } + } + + return { + xPos: x, + padd: padd + }; + } // sets the x position of the y-axis by counting the labels width, title width and any offset + + }, { + key: "setYAxisXPosition", + value: function setYAxisXPosition(yaxisLabelCoords, yTitleCoords) { + var w = this.w; + var xLeft = 0; + var xRight = 0; + var leftOffsetX = 21; + var rightOffsetX = 1; + + if (w.config.yaxis.length > 1) { + this.multipleYs = true; + } + + w.config.yaxis.map(function (yaxe, index) { + var shouldNotDrawAxis = w.globals.ignoreYAxisIndexes.indexOf(index) > -1 || !yaxe.show || yaxe.floating || yaxisLabelCoords[index].width === 0; + var axisWidth = yaxisLabelCoords[index].width + yTitleCoords[index].width; + + if (!yaxe.opposite) { + xLeft = w.globals.translateX - leftOffsetX; + + if (!shouldNotDrawAxis) { + leftOffsetX = leftOffsetX + axisWidth + 20; + } + + w.globals.translateYAxisX[index] = xLeft + yaxe.labels.offsetX; + } else { + if (w.globals.isBarHorizontal) { + xRight = w.globals.gridWidth + w.globals.translateX - 1; + w.globals.translateYAxisX[index] = xRight - yaxe.labels.offsetX; + } else { + xRight = w.globals.gridWidth + w.globals.translateX + rightOffsetX; + + if (!shouldNotDrawAxis) { + rightOffsetX = rightOffsetX + axisWidth + 20; + } + + w.globals.translateYAxisX[index] = xRight - yaxe.labels.offsetX + 20; + } + } + }); + } + }, { + key: "setYAxisTextAlignments", + value: function setYAxisTextAlignments() { + var w = this.w; + var yaxis = w.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis"); + yaxis = Utils.listToArray(yaxis); + yaxis.forEach(function (y, index) { + var yaxe = w.config.yaxis[index]; // proceed only if user has specified alignment + + if (yaxe.labels.align !== undefined) { + var yAxisInner = w.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(index, "'] .apexcharts-yaxis-texts-g")); + var yAxisTexts = w.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis[rel='".concat(index, "'] .apexcharts-yaxis-label")); + yAxisTexts = Utils.listToArray(yAxisTexts); + var rect = yAxisInner.getBoundingClientRect(); + + if (yaxe.labels.align === 'left') { + yAxisTexts.forEach(function (label, lI) { + label.setAttribute('text-anchor', 'start'); + }); + + if (!yaxe.opposite) { + yAxisInner.setAttribute('transform', "translate(-".concat(rect.width, ", 0)")); + } + } else if (yaxe.labels.align === 'center') { + yAxisTexts.forEach(function (label, lI) { + label.setAttribute('text-anchor', 'middle'); + }); + yAxisInner.setAttribute('transform', "translate(".concat(rect.width / 2 * (!yaxe.opposite ? -1 : 1), ", 0)")); + } else if (yaxe.labels.align === 'right') { + yAxisTexts.forEach(function (label, lI) { + label.setAttribute('text-anchor', 'end'); + }); + + if (yaxe.opposite) { + yAxisInner.setAttribute('transform', "translate(".concat(rect.width, ", 0)")); + } + } + } + }); + } + }]); + + return YAxis; + }(); + + /** + * ApexCharts Dimensions Class for calculating rects of all elements that are drawn and will be drawn. + * + * @module Dimensions + **/ + + var Dimensions = + /*#__PURE__*/ + function () { + function Dimensions(ctx) { + _classCallCheck(this, Dimensions); + + this.ctx = ctx; + this.w = ctx.w; + this.lgRect = {}; + this.yAxisWidth = 0; + this.xAxisHeight = 0; + this.isSparkline = this.w.config.chart.sparkline.enabled; + this.xPadRight = 0; + this.xPadLeft = 0; + } + /** + * @memberof Dimensions + * @param {object} w - chart context + **/ + + + _createClass(Dimensions, [{ + key: "plotCoords", + value: function plotCoords() { + var w = this.w; + var gl = w.globals; + var lgRect = this.getLegendsRect(); + + if (gl.axisCharts) { + // for line / area / scatter / column + this.setGridCoordsForAxisCharts(lgRect); + } else { + // for pie / donuts / circle + this.setGridCoordsForNonAxisCharts(lgRect); + } + + this.titleSubtitleOffset(); // after calculating everything, apply padding set by user + + gl.gridHeight = gl.gridHeight - w.config.grid.padding.top - w.config.grid.padding.bottom; + gl.gridWidth = gl.gridWidth - w.config.grid.padding.left - w.config.grid.padding.right - this.xPadRight - this.xPadLeft; + gl.translateX = gl.translateX + w.config.grid.padding.left + this.xPadLeft; + gl.translateY = gl.translateY + w.config.grid.padding.top; + } + }, { + key: "conditionalChecksForAxisCoords", + value: function conditionalChecksForAxisCoords(xaxisLabelCoords, xtitleCoords) { + var w = this.w; + this.xAxisHeight = (xaxisLabelCoords.height + xtitleCoords.height) * w.globals.LINE_HEIGHT_RATIO + 15; + this.xAxisWidth = xaxisLabelCoords.width; + + if (this.xAxisHeight - xtitleCoords.height > w.config.xaxis.labels.maxHeight) { + this.xAxisHeight = w.config.xaxis.labels.maxHeight; + } + + if (w.config.xaxis.labels.minHeight && this.xAxisHeight < w.config.xaxis.labels.minHeight) { + this.xAxisHeight = w.config.xaxis.labels.minHeight; + } + + if (w.config.xaxis.floating) { + this.xAxisHeight = 0; + } + + if (!w.globals.isBarHorizontal) { + this.yAxisWidth = this.getTotalYAxisWidth(); + } else { + this.yAxisWidth = w.globals.yLabelsCoords[0].width + w.globals.yTitleCoords[0].width + 15; + } + + var minYAxisWidth = 0; + var maxYAxisWidth = 0; + w.config.yaxis.forEach(function (y) { + minYAxisWidth += y.labels.minWidth; + maxYAxisWidth += y.labels.maxWidth; + }); + + if (this.yAxisWidth < minYAxisWidth) { + this.yAxisWidth = minYAxisWidth; + } + + if (this.yAxisWidth > maxYAxisWidth) { + this.yAxisWidth = maxYAxisWidth; + } + } + }, { + key: "setGridCoordsForAxisCharts", + value: function setGridCoordsForAxisCharts(lgRect) { + var w = this.w; + var gl = w.globals; + var yaxisLabelCoords = this.getyAxisLabelsCoords(); + var xaxisLabelCoords = this.getxAxisLabelsCoords(); + var yTitleCoords = this.getyAxisTitleCoords(); + var xtitleCoords = this.getxAxisTitleCoords(); + w.globals.yLabelsCoords = []; + w.globals.yTitleCoords = []; + w.config.yaxis.map(function (yaxe, index) { + // store the labels and titles coords in global vars + w.globals.yLabelsCoords.push({ + width: yaxisLabelCoords[index].width, + index: index + }); + w.globals.yTitleCoords.push({ + width: yTitleCoords[index].width, + index: index + }); + }); + this.conditionalChecksForAxisCoords(xaxisLabelCoords, xtitleCoords); + gl.translateXAxisY = w.globals.rotateXLabels ? this.xAxisHeight / 8 : -4; + gl.translateXAxisX = w.globals.rotateXLabels && w.globals.isXNumeric && w.config.xaxis.labels.rotate <= -45 ? -this.xAxisWidth / 4 : 0; + + if (w.globals.isBarHorizontal) { + gl.rotateXLabels = false; + gl.translateXAxisY = -1 * (parseInt(w.config.xaxis.labels.style.fontSize) / 1.5); + } + + gl.translateXAxisY = gl.translateXAxisY + w.config.xaxis.labels.offsetY; + gl.translateXAxisX = gl.translateXAxisX + w.config.xaxis.labels.offsetX; + var yAxisWidth = this.yAxisWidth; + var xAxisHeight = this.xAxisHeight; + gl.xAxisLabelsHeight = this.xAxisHeight; + gl.xAxisHeight = this.xAxisHeight; + var translateY = 10; + + if (!w.config.grid.show || w.config.chart.type === 'radar') { + yAxisWidth = 0; + xAxisHeight = 35; + } + + if (this.isSparkline) { + lgRect = { + height: 0, + width: 0 + }; + xAxisHeight = 0; + yAxisWidth = 0; + translateY = 0; + } + + this.additionalPaddingXLabels(xaxisLabelCoords); + + switch (w.config.legend.position) { + case 'bottom': + gl.translateY = translateY; + gl.translateX = yAxisWidth; + gl.gridHeight = gl.svgHeight - lgRect.height - xAxisHeight - (!this.isSparkline ? w.globals.rotateXLabels ? 10 : 15 : 0); + gl.gridWidth = gl.svgWidth - yAxisWidth; + break; + + case 'top': + gl.translateY = lgRect.height + translateY; + gl.translateX = yAxisWidth; + gl.gridHeight = gl.svgHeight - lgRect.height - xAxisHeight - (!this.isSparkline ? w.globals.rotateXLabels ? 10 : 15 : 0); + gl.gridWidth = gl.svgWidth - yAxisWidth; + break; + + case 'left': + gl.translateY = translateY; + gl.translateX = lgRect.width + yAxisWidth; + gl.gridHeight = gl.svgHeight - xAxisHeight - 12; + gl.gridWidth = gl.svgWidth - lgRect.width - yAxisWidth; + break; + + case 'right': + gl.translateY = translateY; + gl.translateX = yAxisWidth; + gl.gridHeight = gl.svgHeight - xAxisHeight - 12; + gl.gridWidth = gl.svgWidth - lgRect.width - yAxisWidth - 5; + break; + + default: + throw new Error('Legend position not supported'); + } + + this.setGridXPosForDualYAxis(yTitleCoords, yaxisLabelCoords); // after drawing everything, set the Y axis positions + + var objyAxis = new YAxis(this.ctx); + objyAxis.setYAxisXPosition(yaxisLabelCoords, yTitleCoords); + } + }, { + key: "setGridCoordsForNonAxisCharts", + value: function setGridCoordsForNonAxisCharts(lgRect) { + var w = this.w; + var gl = w.globals; + var xPad = 0; + + if (w.config.legend.show && !w.config.legend.floating) { + xPad = 20; + } + + var offY = 10; + var offX = 0; + + if (w.config.chart.type === 'pie' || w.config.chart.type === 'donut') { + offY = offY + w.config.plotOptions.pie.offsetY; + offX = offX + w.config.plotOptions.pie.offsetX; + } else if (w.config.chart.type === 'radialBar') { + offY = offY + w.config.plotOptions.radialBar.offsetY; + offX = offX + w.config.plotOptions.radialBar.offsetX; + } + + if (!w.config.legend.show) { + gl.gridHeight = gl.svgHeight - 35; + gl.gridWidth = gl.gridHeight; + gl.translateY = offY - 10; + gl.translateX = offX + (gl.svgWidth - gl.gridWidth) / 2; + return; + } + + switch (w.config.legend.position) { + case 'bottom': + gl.gridHeight = gl.svgHeight - lgRect.height - 35; + gl.gridWidth = gl.gridHeight; + gl.translateY = offY - 20; + gl.translateX = offX + (gl.svgWidth - gl.gridWidth) / 2; + break; + + case 'top': + gl.gridHeight = gl.svgHeight - lgRect.height - 35; + gl.gridWidth = gl.gridHeight; + gl.translateY = lgRect.height + offY + 10; + gl.translateX = offX + (gl.svgWidth - gl.gridWidth) / 2; + break; + + case 'left': + gl.gridWidth = gl.svgWidth - lgRect.width - xPad; + gl.gridHeight = gl.gridWidth; + gl.translateY = offY; + gl.translateX = offX + lgRect.width + xPad; + break; + + case 'right': + gl.gridWidth = gl.svgWidth - lgRect.width - xPad - 5; + gl.gridHeight = gl.gridWidth; + gl.translateY = offY; + gl.translateX = offX + 10; + break; + + default: + throw new Error('Legend position not supported'); + } + } + }, { + key: "setGridXPosForDualYAxis", + value: function setGridXPosForDualYAxis(yTitleCoords, yaxisLabelCoords) { + var w = this.w; + w.config.yaxis.map(function (yaxe, index) { + if (w.globals.ignoreYAxisIndexes.indexOf(index) === -1 && !w.config.yaxis[index].floating && w.config.yaxis[index].show) { + if (yaxe.opposite) { + w.globals.translateX = w.globals.translateX - (yaxisLabelCoords[index].width + yTitleCoords[index].width) - parseInt(w.config.yaxis[index].labels.style.fontSize) / 1.2 - 12; + } + } + }); + } // Sometimes, the last labels gets cropped in category/numeric xaxis. + // Hence, we add some additional padding based on the label length to avoid the last label being cropped. + // NOTE: datetime x-axis won't have any effect with this as we don't know the label length there due to many constraints. + + }, { + key: "additionalPaddingXLabels", + value: function additionalPaddingXLabels(xaxisLabelCoords) { + var _this = this; + + var w = this.w; + + if (w.config.xaxis.type === 'category' && w.globals.isBarHorizontal || w.config.xaxis.type === 'numeric' || w.config.xaxis.type === 'datetime') { + var rightPad = function rightPad(labels) { + if (_this.timescaleLabels) { + // for timeline labels, we take the last label and check if it exceeds gridWidth + var lastTimescaleLabel = _this.timescaleLabels[_this.timescaleLabels.length - 1]; + var labelPosition = lastTimescaleLabel.position + labels.width; + + if (labelPosition > w.globals.gridWidth) { + w.globals.skipLastTimelinelabel = true; + } else { + // we have to make it false again in case of zooming/panning + w.globals.skipLastTimelinelabel = false; + } + } else if (w.config.xaxis.type === 'datetime') { + if (w.config.grid.padding.right < labels.width) { + w.globals.skipLastTimelinelabel = true; + } + } else if (w.config.xaxis.type !== 'datetime') { + if (w.config.grid.padding.right < labels.width) { + _this.xPadRight = labels.width / 2 + 1; + } + } + }; + + var leftPad = function leftPad(labels) { + if (w.config.grid.padding.left < labels.width) { + _this.xPadLeft = labels.width / 2 + 1; + } + }; + + var isXNumeric = w.globals.isXNumeric; + w.config.yaxis.forEach(function (yaxe, i) { + var shouldPad = !yaxe.show || yaxe.floating || w.globals.collapsedSeriesIndices.indexOf(i) !== -1 || isXNumeric || yaxe.opposite && w.globals.isBarHorizontal; + + if (shouldPad) { + if (isXNumeric && w.globals.isMultipleYAxis && w.globals.collapsedSeriesIndices.indexOf(i) !== -1 || w.globals.isBarHorizontal && yaxe.opposite) { + leftPad(xaxisLabelCoords); + } + + if (!w.globals.isBarHorizontal && yaxe.opposite && w.globals.collapsedSeriesIndices.indexOf(i) !== -1 || isXNumeric && !w.globals.isMultipleYAxis) { + rightPad(xaxisLabelCoords); + } + } + }); + } + } + }, { + key: "titleSubtitleOffset", + value: function titleSubtitleOffset() { + var w = this.w; + var gl = w.globals; + var gridShrinkOffset = this.isSparkline || !w.globals.axisCharts ? 0 : 10; + + if (w.config.title.text !== undefined) { + gridShrinkOffset += w.config.title.margin; + } else { + gridShrinkOffset += this.isSparkline || !w.globals.axisCharts ? 0 : 5; + } + + if (w.config.subtitle.text !== undefined) { + gridShrinkOffset += w.config.subtitle.margin; + } else { + gridShrinkOffset += this.isSparkline || !w.globals.axisCharts ? 0 : 5; + } + + if (w.config.legend.show && w.config.legend.position === 'bottom' && !w.config.legend.floating && (w.config.series.length > 1 || !w.globals.axisCharts || w.config.legend.showForSingleSeries)) { + gridShrinkOffset += 10; + } + + var titleCoords = this.getTitleSubtitleCoords('title'); + var subtitleCoords = this.getTitleSubtitleCoords('subtitle'); + gl.gridHeight = gl.gridHeight - titleCoords.height - subtitleCoords.height - gridShrinkOffset; + gl.translateY = gl.translateY + titleCoords.height + subtitleCoords.height + gridShrinkOffset; + } + }, { + key: "getTotalYAxisWidth", + value: function getTotalYAxisWidth() { + var w = this.w; + var yAxisWidth = 0; + var padding = 10; + + var isHiddenYAxis = function isHiddenYAxis(index) { + return w.globals.ignoreYAxisIndexes.indexOf(index) > -1; + }; + + w.globals.yLabelsCoords.map(function (yLabelCoord, index) { + var floating = w.config.yaxis[index].floating; + + if (yLabelCoord.width > 0 && !floating) { + yAxisWidth = yAxisWidth + yLabelCoord.width + padding; + + if (isHiddenYAxis(index)) { + yAxisWidth = yAxisWidth - yLabelCoord.width - padding; + } + } else { + yAxisWidth = yAxisWidth + (floating || !w.config.yaxis[index].show ? 0 : 5); + } + }); + w.globals.yTitleCoords.map(function (yTitleCoord, index) { + var floating = w.config.yaxis[index].floating; + padding = parseInt(w.config.yaxis[index].title.style.fontSize); + + if (yTitleCoord.width > 0 && !floating) { + yAxisWidth = yAxisWidth + yTitleCoord.width + padding; + + if (isHiddenYAxis(index)) { + yAxisWidth = yAxisWidth - yTitleCoord.width - padding; + } + } else { + yAxisWidth = yAxisWidth + (floating || !w.config.yaxis[index].show ? 0 : 5); + } + }); + return yAxisWidth; + } + }, { + key: "getxAxisTimeScaleLabelsCoords", + value: function getxAxisTimeScaleLabelsCoords() { + var w = this.w; + var rect; + this.timescaleLabels = w.globals.timelineLabels.slice(); + + if (w.globals.isBarHorizontal && w.config.xaxis.type === 'datetime') { + this.timescaleLabels = w.globals.invertedTimelineLabels.slice(); + } + + var labels = this.timescaleLabels.map(function (label) { + return label.value; + }); // get the longest string from the labels array and also apply label formatter to it + + var val = labels.reduce(function (a, b) { + // if undefined, maybe user didn't pass the datetime(x) values + if (typeof a === 'undefined') { + console.error('You have possibly supplied invalid Date format. Please supply a valid JavaScript Date'); + return 0; + } else { + return a.length > b.length ? a : b; + } + }, 0); + var graphics = new Graphics(this.ctx); + rect = graphics.getTextRects(val, w.config.xaxis.labels.style.fontSize); + var totalWidthRotated = rect.width * 1.05 * labels.length; + + if (totalWidthRotated > w.globals.gridWidth && w.config.xaxis.labels.rotate !== 0) { + w.globals.overlappingXLabels = true; + } + + return rect; + } + /** + * Get X Axis Dimensions + * @memberof Dimensions + * @return {{width, height}} + **/ + + }, { + key: "getxAxisLabelsCoords", + value: function getxAxisLabelsCoords() { + var w = this.w; + var xaxisLabels = w.globals.labels.slice(); + var rect; + + if (w.globals.timelineLabels.length > 0) { + var coords = this.getxAxisTimeScaleLabelsCoords(); + rect = { + width: coords.width, + height: coords.height + }; + } else { + var lgWidthForSideLegends = w.config.legend.position === 'left' && w.config.legend.position === 'right' && !w.config.legend.floating ? this.lgRect.width : 0; // get the longest string from the labels array and also apply label formatter + + var xlbFormatter = w.globals.xLabelFormatter; // prevent changing xaxisLabels to avoid issues in multi-yaxies - fix #522 + + var val = xaxisLabels.reduce(function (a, b) { + return a.length > b.length ? a : b; + }, 0); // the labels gets changed for bar charts + + if (w.globals.isBarHorizontal) { + val = w.globals.yAxisScale[0].result.reduce(function (a, b) { + return a.length > b.length ? a : b; + }, 0); + } + + var xFormat = new Formatters(this.ctx); + var timestamp = val; + val = xFormat.xLabelFormat(xlbFormatter, val, timestamp); + var graphics = new Graphics(this.ctx); + var xLabelrect = graphics.getTextRects(val, w.config.xaxis.labels.style.fontSize); + rect = { + width: xLabelrect.width, + height: xLabelrect.height + }; + + if (rect.width * xaxisLabels.length > w.globals.svgWidth - lgWidthForSideLegends - this.yAxisWidth && w.config.xaxis.labels.rotate !== 0) { + if (!w.globals.isBarHorizontal) { + w.globals.rotateXLabels = true; + xLabelrect = graphics.getTextRects(val, w.config.xaxis.labels.style.fontSize, w.config.xaxis.labels.style.fontFamily, "rotate(".concat(w.config.xaxis.labels.rotate, " 0 0)"), false); + rect.height = xLabelrect.height / 1.66; + } + } else { + w.globals.rotateXLabels = false; + } + } + + if (!w.config.xaxis.labels.show) { + rect = { + width: 0, + height: 0 + }; + } + + return { + width: rect.width, + height: rect.height + }; + } + /** + * Get Y Axis Dimensions + * @memberof Dimensions + * @return {{width, height}} + **/ + + }, { + key: "getyAxisLabelsCoords", + value: function getyAxisLabelsCoords() { + var _this2 = this; + + var w = this.w; + var width = 0; + var height = 0; + var ret = []; + var labelPad = 10; + w.config.yaxis.map(function (yaxe, index) { + if (yaxe.show && yaxe.labels.show && w.globals.yAxisScale[index].result.length) { + var lbFormatter = w.globals.yLabelFormatters[index]; // the second parameter -1 is the index of tick which user can use in the formatter + + var val = lbFormatter(w.globals.yAxisScale[index].niceMax, -1); // if user has specified a custom formatter, and the result is null or empty, we need to discard the formatter and take the value as it is. + + if (typeof val === 'undefined' || val.length === 0) { + val = w.globals.yAxisScale[index].niceMax; + } + + if (w.globals.isBarHorizontal) { + labelPad = 0; + var barYaxisLabels = w.globals.labels.slice(); // get the longest string from the labels array and also apply label formatter to it + + val = barYaxisLabels.reduce(function (a, b) { + return a.length > b.length ? a : b; + }, 0); + val = lbFormatter(val, -1); + } + + var graphics = new Graphics(_this2.ctx); + var rect = graphics.getTextRects(val, yaxe.labels.style.fontSize); + ret.push({ + width: rect.width + labelPad, + height: rect.height + }); + } else { + ret.push({ + width: width, + height: height + }); + } + }); + return ret; + } + /** + * Get X Axis Title Dimensions + * @memberof Dimensions + * @return {{width, height}} + **/ + + }, { + key: "getxAxisTitleCoords", + value: function getxAxisTitleCoords() { + var w = this.w; + var width = 0; + var height = 0; + + if (w.config.xaxis.title.text !== undefined) { + var graphics = new Graphics(this.ctx); + var rect = graphics.getTextRects(w.config.xaxis.title.text, w.config.xaxis.title.style.fontSize); + width = rect.width; + height = rect.height; + } + + return { + width: width, + height: height + }; + } + /** + * Get Y Axis Dimensions + * @memberof Dimensions + * @return {{width, height}} + **/ + + }, { + key: "getyAxisTitleCoords", + value: function getyAxisTitleCoords() { + var _this3 = this; + + var w = this.w; + var ret = []; + w.config.yaxis.map(function (yaxe, index) { + if (yaxe.show && yaxe.title.text !== undefined) { + var graphics = new Graphics(_this3.ctx); + var rect = graphics.getTextRects(yaxe.title.text, yaxe.title.style.fontSize, yaxe.title.style.fontFamily, 'rotate(-90 0 0)', false); + ret.push({ + width: rect.width, + height: rect.height + }); + } else { + ret.push({ + width: 0, + height: 0 + }); + } + }); + return ret; + } + /** + * Get Chart Title/Subtitle Dimensions + * @memberof Dimensions + * @return {{width, height}} + **/ + + }, { + key: "getTitleSubtitleCoords", + value: function getTitleSubtitleCoords(type) { + var w = this.w; + var width = 0; + var height = 0; + var floating = type === 'title' ? w.config.title.floating : w.config.subtitle.floating; + var el = w.globals.dom.baseEl.querySelector(".apexcharts-".concat(type, "-text")); + + if (el !== null && !floating) { + var coord = el.getBoundingClientRect(); + width = coord.width; + height = w.globals.axisCharts ? coord.height + 5 : coord.height; + } + + return { + width: width, + height: height + }; + } + }, { + key: "getLegendsRect", + value: function getLegendsRect() { + var w = this.w; + var elLegendWrap = w.globals.dom.baseEl.querySelector('.apexcharts-legend'); + var lgRect = Object.assign({}, Utils.getBoundingClientRect(elLegendWrap)); + + if (elLegendWrap !== null && !w.config.legend.floating && w.config.legend.show) { + this.lgRect = { + x: lgRect.x, + y: lgRect.y, + height: lgRect.height, + width: lgRect.height === 0 ? 0 : lgRect.width + }; + } else { + this.lgRect = { + x: 0, + y: 0, + height: 0, + width: 0 + }; + } + + return this.lgRect; + } + }]); + + return Dimensions; + }(); + + /** + * ApexCharts Series Class for interation with the Series of the chart. + * + * @module Series + **/ + + var Series = + /*#__PURE__*/ + function () { + function Series(ctx) { + _classCallCheck(this, Series); + + this.ctx = ctx; + this.w = ctx.w; + } + + _createClass(Series, [{ + key: "getAllSeriesEls", + value: function getAllSeriesEls() { + return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series"); + } + }, { + key: "getSeriesByName", + value: function getSeriesByName(seriesName) { + return this.w.globals.dom.baseEl.querySelector("[seriesName='".concat(Utils.escapeString(seriesName), "']")); + } + }, { + key: "addCollapsedClassToSeries", + value: function addCollapsedClassToSeries(elSeries, index) { + var w = this.w; + + function iterateOnAllCollapsedSeries(series) { + for (var cs = 0; cs < series.length; cs++) { + if (series[cs].index === index) { + elSeries.node.classList.add('apexcharts-series-collapsed'); + } + } + } + + iterateOnAllCollapsedSeries(w.globals.collapsedSeries); + iterateOnAllCollapsedSeries(w.globals.ancillaryCollapsedSeries); + } + }, { + key: "resetSeries", + value: function resetSeries() { + var shouldUpdateChart = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; + var w = this.w; + var series = w.globals.initialSeries.slice(); + w.config.series = series; + w.globals.collapsedSeries = []; + w.globals.ancillaryCollapsedSeries = []; + w.globals.collapsedSeriesIndices = []; + w.globals.ancillaryCollapsedSeriesIndices = []; + w.globals.previousPaths = []; + + if (shouldUpdateChart) { + this.ctx._updateSeries(series, w.config.chart.animations.dynamicAnimation.enabled); + } + } + }, { + key: "toggleSeriesOnHover", + value: function toggleSeriesOnHover(e, targetElement) { + var w = this.w; + var allSeriesEls = w.globals.dom.baseEl.querySelectorAll(".apexcharts-series"); + + if (e.type === 'mousemove') { + var seriesCnt = parseInt(targetElement.getAttribute('rel')) - 1; + var seriesEl = null; + + if (w.globals.axisCharts || w.config.chart.type === 'radialBar') { + if (w.globals.axisCharts) { + seriesEl = w.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(seriesCnt, "']")); + } else { + seriesEl = w.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(seriesCnt + 1, "']")); + } + } else { + seriesEl = w.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(seriesCnt + 1, "'] path")); + } + + for (var se = 0; se < allSeriesEls.length; se++) { + allSeriesEls[se].classList.add('legend-mouseover-inactive'); + } + + if (seriesEl !== null) { + if (!w.globals.axisCharts) { + seriesEl.parentNode.classList.remove('legend-mouseover-inactive'); + } + + seriesEl.classList.remove('legend-mouseover-inactive'); + } + } else if (e.type === 'mouseout') { + for (var _se = 0; _se < allSeriesEls.length; _se++) { + allSeriesEls[_se].classList.remove('legend-mouseover-inactive'); + } + } + } + }, { + key: "highlightRangeInSeries", + value: function highlightRangeInSeries(e, targetElement) { + var w = this.w; + var allHeatMapElements = w.globals.dom.baseEl.querySelectorAll('.apexcharts-heatmap-rect'); + + var allActive = function allActive() { + for (var i = 0; i < allHeatMapElements.length; i++) { + allHeatMapElements[i].classList.remove('legend-mouseover-inactive'); + } + }; + + var allInactive = function allInactive() { + for (var i = 0; i < allHeatMapElements.length; i++) { + allHeatMapElements[i].classList.add('legend-mouseover-inactive'); + } + }; + + var selectedActive = function selectedActive(range) { + for (var i = 0; i < allHeatMapElements.length; i++) { + var val = parseInt(allHeatMapElements[i].getAttribute('val')); + + if (val >= range.from && val <= range.to) { + allHeatMapElements[i].classList.remove('legend-mouseover-inactive'); + } + } + }; + + if (e.type === 'mousemove') { + var seriesCnt = parseInt(targetElement.getAttribute('rel')) - 1; + allActive(); + allInactive(); + var range = w.config.plotOptions.heatmap.colorScale.ranges[seriesCnt]; + selectedActive(range); + } else if (e.type === 'mouseout') { + allActive(); + } + } + }, { + key: "getActiveSeriesIndex", + value: function getActiveSeriesIndex() { + var w = this.w; + var activeIndex = 0; + + if (w.globals.series.length > 1) { + // active series flag is required to know if user has not deactivated via legend click + var firstActiveSeriesIndex = w.globals.series.map(function (series, index) { + if (series.length > 0 && w.config.series[index].type !== 'bar' && w.config.series[index].type !== 'column') { + return index; + } else { + return -1; + } + }); + + for (var a = 0; a < firstActiveSeriesIndex.length; a++) { + if (firstActiveSeriesIndex[a] !== -1) { + activeIndex = firstActiveSeriesIndex[a]; + break; + } + } + } + + return activeIndex; + } + }, { + key: "getActiveConfigSeriesIndex", + value: function getActiveConfigSeriesIndex() { + var w = this.w; + var activeIndex = 0; + + if (w.config.series.length > 1) { + // active series flag is required to know if user has not deactivated via legend click + var firstActiveSeriesIndex = w.config.series.map(function (series, index) { + if (series.data && series.data.length > 0) { + return index; + } else { + return -1; + } + }); + + for (var a = 0; a < firstActiveSeriesIndex.length; a++) { + if (firstActiveSeriesIndex[a] !== -1) { + activeIndex = firstActiveSeriesIndex[a]; + break; + } + } + } + + return activeIndex; + } + }, { + key: "getPreviousPaths", + value: function getPreviousPaths() { + var w = this.w; + w.globals.previousPaths = []; + + function pushPaths(seriesEls, i, type) { + var paths = seriesEls[i].childNodes; + var dArr = { + type: type, + paths: [], + realIndex: seriesEls[i].getAttribute('data:realIndex') + }; + + for (var j = 0; j < paths.length; j++) { + if (paths[j].hasAttribute('pathTo')) { + var d = paths[j].getAttribute('pathTo'); + dArr.paths.push({ + d: d + }); + } + } + + w.globals.previousPaths.push(dArr); + } + + var linePaths = w.globals.dom.baseEl.querySelectorAll('.apexcharts-line-series .apexcharts-series'); + + if (linePaths.length > 0) { + for (var p = linePaths.length - 1; p >= 0; p--) { + pushPaths(linePaths, p, 'line'); + } + } + + var areapaths = w.globals.dom.baseEl.querySelectorAll('.apexcharts-area-series .apexcharts-series'); + + if (areapaths.length > 0) { + for (var i = areapaths.length - 1; i >= 0; i--) { + pushPaths(areapaths, i, 'area'); + } + } + + var barPaths = w.globals.dom.baseEl.querySelectorAll('.apexcharts-bar-series .apexcharts-series'); + + if (barPaths.length > 0) { + for (var _p = 0; _p < barPaths.length; _p++) { + pushPaths(barPaths, _p, 'bar'); + } + } + + var candlestickPaths = w.globals.dom.baseEl.querySelectorAll('.apexcharts-candlestick-series .apexcharts-series'); + + if (candlestickPaths.length > 0) { + for (var _p2 = 0; _p2 < candlestickPaths.length; _p2++) { + pushPaths(candlestickPaths, _p2, 'candlestick'); + } + } + + var radarPaths = w.globals.dom.baseEl.querySelectorAll('.apexcharts-radar-series .apexcharts-series'); + + if (radarPaths.length > 0) { + for (var _p3 = 0; _p3 < radarPaths.length; _p3++) { + pushPaths(radarPaths, _p3, 'radar'); + } + } + + var bubblepaths = w.globals.dom.baseEl.querySelectorAll('.apexcharts-bubble-series .apexcharts-series'); + + if (bubblepaths.length > 0) { + for (var s = 0; s < bubblepaths.length; s++) { + var seriesEls = w.globals.dom.baseEl.querySelectorAll(".apexcharts-bubble-series .apexcharts-series[data\\:realIndex='".concat(s, "'] circle")); + var dArr = []; + + for (var _i = 0; _i < seriesEls.length; _i++) { + dArr.push({ + x: seriesEls[_i].getAttribute('cx'), + y: seriesEls[_i].getAttribute('cy'), + r: seriesEls[_i].getAttribute('r') + }); + } + + w.globals.previousPaths.push(dArr); + } + } + + var scatterpaths = w.globals.dom.baseEl.querySelectorAll('.apexcharts-scatter-series .apexcharts-series'); + + if (scatterpaths.length > 0) { + for (var _s = 0; _s < scatterpaths.length; _s++) { + var _seriesEls = w.globals.dom.baseEl.querySelectorAll(".apexcharts-scatter-series .apexcharts-series[data\\:realIndex='".concat(_s, "'] circle")); + + var _dArr = []; + + for (var _i2 = 0; _i2 < _seriesEls.length; _i2++) { + _dArr.push({ + x: _seriesEls[_i2].getAttribute('cx'), + y: _seriesEls[_i2].getAttribute('cy'), + r: _seriesEls[_i2].getAttribute('r') + }); + } + + w.globals.previousPaths.push(_dArr); + } + } + + var heatmapColors = w.globals.dom.baseEl.querySelectorAll('.apexcharts-heatmap .apexcharts-series'); + + if (heatmapColors.length > 0) { + for (var h = 0; h < heatmapColors.length; h++) { + var _seriesEls2 = w.globals.dom.baseEl.querySelectorAll(".apexcharts-heatmap .apexcharts-series[data\\:realIndex='".concat(h, "'] rect")); + + var _dArr2 = []; + + for (var _i3 = 0; _i3 < _seriesEls2.length; _i3++) { + _dArr2.push({ + color: _seriesEls2[_i3].getAttribute('color') + }); + } + + w.globals.previousPaths.push(_dArr2); + } + } + + if (!w.globals.axisCharts) { + // for non-axis charts (i.e., circular charts, pathFrom is not usable. We need whole series) + w.globals.previousPaths = w.globals.series; + } + } + }, { + key: "handleNoData", + value: function handleNoData() { + var w = this.w; + var me = this; + var noDataOpts = w.config.noData; + var graphics = new Graphics(me.ctx); + var x = w.globals.svgWidth / 2; + var y = w.globals.svgHeight / 2; + var textAnchor = 'middle'; + w.globals.noData = true; + w.globals.animationEnded = true; + + if (noDataOpts.align === 'left') { + x = 10; + textAnchor = 'start'; + } else if (noDataOpts.align === 'right') { + x = w.globals.svgWidth - 10; + textAnchor = 'end'; + } + + if (noDataOpts.verticalAlign === 'top') { + y = 50; + } else if (noDataOpts.verticalAlign === 'bottom') { + y = w.globals.svgHeight - 50; + } + + x = x + noDataOpts.offsetX; + y = y + parseInt(noDataOpts.style.fontSize) + 2; + + if (noDataOpts.text !== undefined && noDataOpts.text !== '') { + var titleText = graphics.drawText({ + x: x, + y: y, + text: noDataOpts.text, + textAnchor: textAnchor, + fontSize: noDataOpts.style.fontSize, + fontFamily: noDataOpts.style.fontFamily, + foreColor: noDataOpts.style.color, + opacity: 1, + class: 'apexcharts-text-nodata' + }); + titleText.node.setAttribute('class', 'apexcharts-title-text'); + w.globals.dom.Paper.add(titleText); + } + } // When user clicks on legends, the collapsed series is filled with [0,0,0,...,0] + // This is because we don't want to alter the series' length as it is used at many places + + }, { + key: "setNullSeriesToZeroValues", + value: function setNullSeriesToZeroValues(series) { + var w = this.w; + + for (var sl = 0; sl < series.length; sl++) { + if (series[sl].length === 0) { + for (var j = 0; j < series[w.globals.maxValsInArrayIndex].length; j++) { + series[sl].push(0); + } + } + } + + return series; + } + }, { + key: "hasAllSeriesEqualX", + value: function hasAllSeriesEqualX() { + var equalLen = true; + var w = this.w; + var filteredSerX = this.filteredSeriesX(); + + for (var i = 0; i < filteredSerX.length - 1; i++) { + if (filteredSerX[i][0] !== filteredSerX[i + 1][0]) { + equalLen = false; + break; + } + } + + w.globals.allSeriesHasEqualX = equalLen; + return equalLen; + } + }, { + key: "filteredSeriesX", + value: function filteredSeriesX() { + var w = this.w; + var filteredSeriesX = w.globals.seriesX.map(function (ser, index) { + if (ser.length > 0) { + return ser; + } else { + return []; + } + }); + return filteredSeriesX; + } + }]); + + return Series; + }(); + + /** + * ApexCharts Legend Class to draw legend. + * + * @module Legend + **/ + + var Legend = + /*#__PURE__*/ + function () { + function Legend(ctx, opts) { + _classCallCheck(this, Legend); + + this.ctx = ctx; + this.w = ctx.w; + this.onLegendClick = this.onLegendClick.bind(this); + this.onLegendHovered = this.onLegendHovered.bind(this); + } + + _createClass(Legend, [{ + key: "init", + value: function init() { + var w = this.w; + var gl = w.globals; + var cnf = w.config; + var showLegendAlways = cnf.legend.showForSingleSeries && gl.series.length === 1 || gl.series.length > 1; + + if ((showLegendAlways || !gl.axisCharts) && cnf.legend.show) { + while (gl.dom.elLegendWrap.firstChild) { + gl.dom.elLegendWrap.removeChild(gl.dom.elLegendWrap.firstChild); + } + + this.drawLegends(); + + if (!Utils.isIE11()) { + this.appendToForeignObject(); + } else { + // IE11 doesn't supports foreignObject, hence append it to + document.getElementsByTagName('head')[0].appendChild(this.getLegendStyles()); + } + + if (cnf.legend.position === 'bottom' || cnf.legend.position === 'top') { + this.legendAlignHorizontal(); + } else if (cnf.legend.position === 'right' || cnf.legend.position === 'left') { + this.legendAlignVertical(); + } + } + } + }, { + key: "appendToForeignObject", + value: function appendToForeignObject() { + var gl = this.w.globals; + gl.dom.elLegendForeign = document.createElementNS(gl.SVGNS, 'foreignObject'); + var elForeign = gl.dom.elLegendForeign; + elForeign.setAttribute('x', 0); + elForeign.setAttribute('y', 0); + elForeign.setAttribute('width', gl.svgWidth); + elForeign.setAttribute('height', gl.svgHeight); + gl.dom.elLegendWrap.setAttribute('xmlns', 'http://www.w3.org/1999/xhtml'); + elForeign.appendChild(gl.dom.elLegendWrap); + elForeign.appendChild(this.getLegendStyles()); + gl.dom.Paper.node.insertBefore(elForeign, gl.dom.elGraphical.node); + } + }, { + key: "drawLegends", + value: function drawLegends() { + var self = this; + var w = this.w; + var fontFamily = w.config.legend.fontFamily; + var legendNames = w.globals.seriesNames; + var fillcolor = w.globals.colors.slice(); + + if (w.config.chart.type === 'heatmap') { + var ranges = w.config.plotOptions.heatmap.colorScale.ranges; + legendNames = ranges.map(function (colorScale) { + return colorScale.name ? colorScale.name : colorScale.from + ' - ' + colorScale.to; + }); + fillcolor = ranges.map(function (color) { + return color.color; + }); + } + + var legendFormatter = w.globals.legendFormatter; + var isLegendInversed = w.config.legend.inverseOrder; + + for (var i = isLegendInversed ? legendNames.length - 1 : 0; isLegendInversed ? i >= 0 : i <= legendNames.length - 1; isLegendInversed ? i-- : i++) { + var text = legendFormatter(legendNames[i], { + seriesIndex: i, + w: w + }); + var collapsedSeries = false; + var ancillaryCollapsedSeries = false; + + if (w.globals.collapsedSeries.length > 0) { + for (var c = 0; c < w.globals.collapsedSeries.length; c++) { + if (w.globals.collapsedSeries[c].index === i) { + collapsedSeries = true; + } + } + } + + if (w.globals.ancillaryCollapsedSeriesIndices.length > 0) { + for (var _c = 0; _c < w.globals.ancillaryCollapsedSeriesIndices.length; _c++) { + if (w.globals.ancillaryCollapsedSeriesIndices[_c] === i) { + ancillaryCollapsedSeries = true; + } + } + } + + var elMarker = document.createElement('span'); + elMarker.classList.add('apexcharts-legend-marker'); + var mOffsetX = w.config.legend.markers.offsetX; + var mOffsetY = w.config.legend.markers.offsetY; + var mHeight = w.config.legend.markers.height; + var mWidth = w.config.legend.markers.width; + var mBorderWidth = w.config.legend.markers.strokeWidth; + var mBorderColor = w.config.legend.markers.strokeColor; + var mBorderRadius = w.config.legend.markers.radius; + var mStyle = elMarker.style; + mStyle.background = fillcolor[i]; + mStyle.color = fillcolor[i]; + mStyle.height = Array.isArray(mHeight) ? parseFloat(mHeight[i]) + 'px' : parseFloat(mHeight) + 'px'; + mStyle.width = Array.isArray(mWidth) ? parseFloat(mWidth[i]) + 'px' : parseFloat(mWidth) + 'px'; + mStyle.left = Array.isArray(mOffsetX) ? mOffsetX[i] : mOffsetX; + mStyle.top = Array.isArray(mOffsetY) ? mOffsetY[i] : mOffsetY; + mStyle.borderWidth = Array.isArray(mBorderWidth) ? mBorderWidth[i] : mBorderWidth; + mStyle.borderColor = Array.isArray(mBorderColor) ? mBorderColor[i] : mBorderColor; + mStyle.borderRadius = Array.isArray(mBorderRadius) ? parseFloat(mBorderRadius[i]) + 'px' : parseFloat(mBorderRadius) + 'px'; + + if (w.config.legend.markers.customHTML) { + if (Array.isArray(w.config.legend.markers.customHTML)) { + elMarker.innerHTML = w.config.legend.markers.customHTML[i](); + } else { + elMarker.innerHTML = w.config.legend.markers.customHTML(); + } + } + + Graphics.setAttrs(elMarker, { + rel: i + 1, + 'data:collapsed': collapsedSeries || ancillaryCollapsedSeries + }); + + if (collapsedSeries || ancillaryCollapsedSeries) { + elMarker.classList.add('inactive-legend'); + } + + var elLegend = document.createElement('div'); + var elLegendText = document.createElement('span'); + elLegendText.classList.add('apexcharts-legend-text'); + elLegendText.innerHTML = text; + var textColor = w.config.legend.labels.useSeriesColors ? w.globals.colors[i] : w.config.legend.labels.colors; + + if (!textColor) { + textColor = w.config.chart.foreColor; + } + + elLegendText.style.color = textColor; + elLegendText.style.fontSize = parseFloat(w.config.legend.fontSize) + 'px'; + elLegendText.style.fontFamily = fontFamily || w.config.chart.fontFamily; + Graphics.setAttrs(elLegendText, { + rel: i + 1, + i: i, + 'data:default-text': text, + 'data:collapsed': collapsedSeries || ancillaryCollapsedSeries + }); + elLegend.appendChild(elMarker); + elLegend.appendChild(elLegendText); + var coreUtils = new CoreUtils(this.ctx); + + if (!w.config.legend.showForZeroSeries) { + var total = coreUtils.getSeriesTotalByIndex(i); + + if (total === 0 && coreUtils.seriesHaveSameValues(i) && !coreUtils.isSeriesNull(i) && w.globals.collapsedSeriesIndices.indexOf(i) === -1 && w.globals.ancillaryCollapsedSeriesIndices.indexOf(i) === -1) { + elLegend.classList.add('apexcharts-hidden-zero-series'); + } + } + + if (!w.config.legend.showForNullSeries) { + if (coreUtils.isSeriesNull(i) && w.globals.collapsedSeriesIndices.indexOf(i) === -1 && w.globals.ancillaryCollapsedSeriesIndices.indexOf(i) === -1) { + elLegend.classList.add('apexcharts-hidden-null-series'); + } + } + + w.globals.dom.elLegendWrap.appendChild(elLegend); + w.globals.dom.elLegendWrap.classList.add(w.config.legend.horizontalAlign); // w.globals.dom.elLegendWrap.classList.add(w.config.legend.verticalAlign) + + w.globals.dom.elLegendWrap.classList.add('position-' + w.config.legend.position); + elLegend.classList.add('apexcharts-legend-series'); + elLegend.style.margin = "".concat(w.config.legend.itemMargin.horizontal, "px ").concat(w.config.legend.itemMargin.vertical, "px"); + w.globals.dom.elLegendWrap.style.width = w.config.legend.width ? w.config.legend.width + 'px' : ''; + w.globals.dom.elLegendWrap.style.height = w.config.legend.height ? w.config.legend.height + 'px' : ''; + Graphics.setAttrs(elLegend, { + rel: i + 1, + 'data:collapsed': collapsedSeries || ancillaryCollapsedSeries + }); + + if (collapsedSeries || ancillaryCollapsedSeries) { + elLegend.classList.add('inactive-legend'); + } + + if (!w.config.legend.onItemClick.toggleDataSeries) { + elLegend.classList.add('no-click'); + } + } // for now - just prevent click on heatmap legend - and allow hover only + + + var clickAllowed = w.config.chart.type !== 'heatmap'; + + if (clickAllowed && w.config.legend.onItemClick.toggleDataSeries) { + w.globals.dom.elWrap.addEventListener('click', self.onLegendClick, true); + } + + if (w.config.legend.onItemHover.highlightDataSeries) { + w.globals.dom.elWrap.addEventListener('mousemove', self.onLegendHovered, true); + w.globals.dom.elWrap.addEventListener('mouseout', self.onLegendHovered, true); + } + } + }, { + key: "getLegendBBox", + value: function getLegendBBox() { + var w = this.w; + var currLegendsWrap = w.globals.dom.baseEl.querySelector('.apexcharts-legend'); + var currLegendsWrapRect = currLegendsWrap.getBoundingClientRect(); + var currLegendsWrapWidth = currLegendsWrapRect.width; + var currLegendsWrapHeight = currLegendsWrapRect.height; + return { + clwh: currLegendsWrapHeight, + clww: currLegendsWrapWidth + }; + } + }, { + key: "setLegendWrapXY", + value: function setLegendWrapXY(offsetX, offsetY) { + var w = this.w; + var elLegendWrap = w.globals.dom.baseEl.querySelector('.apexcharts-legend'); + var legendRect = elLegendWrap.getBoundingClientRect(); + var x = 0; + var y = 0; + + if (w.config.legend.position === 'bottom') { + y = y + (w.globals.svgHeight - legendRect.height / 2); + } else if (w.config.legend.position === 'top') { + var dim = new Dimensions(this.ctx); + var titleH = dim.getTitleSubtitleCoords('title').height; + var subtitleH = dim.getTitleSubtitleCoords('subtitle').height; + y = y + (titleH > 0 ? titleH - 10 : 0) + (subtitleH > 0 ? subtitleH - 10 : 0); + } + + elLegendWrap.style.position = 'absolute'; + x = x + offsetX + w.config.legend.offsetX; + y = y + offsetY + w.config.legend.offsetY; + elLegendWrap.style.left = x + 'px'; + elLegendWrap.style.top = y + 'px'; + + if (w.config.legend.position === 'bottom') { + elLegendWrap.style.top = 'auto'; + elLegendWrap.style.bottom = 10 + w.config.legend.offsetY + 'px'; + } else if (w.config.legend.position === 'right') { + elLegendWrap.style.left = 'auto'; + elLegendWrap.style.right = 25 + w.config.legend.offsetX + 'px'; + } + + if (elLegendWrap.style.width) { + elLegendWrap.style.width = parseInt(w.config.legend.width) + 'px'; + } + + if (elLegendWrap.style.height) { + elLegendWrap.style.height = parseInt(w.config.legend.height) + 'px'; + } + } + }, { + key: "legendAlignHorizontal", + value: function legendAlignHorizontal() { + var w = this.w; + var elLegendWrap = w.globals.dom.baseEl.querySelector('.apexcharts-legend'); + elLegendWrap.style.right = 0; + var lRect = this.getLegendBBox(); + var dimensions = new Dimensions(this.ctx); + var titleRect = dimensions.getTitleSubtitleCoords('title'); + var subtitleRect = dimensions.getTitleSubtitleCoords('subtitle'); + var offsetX = 20; + var offsetY = 0; // the whole legend box is set to bottom + + if (w.config.legend.position === 'bottom') { + offsetY = -lRect.clwh / 1.8; + } else if (w.config.legend.position === 'top') { + offsetY = titleRect.height + subtitleRect.height + w.config.title.margin + w.config.subtitle.margin - 15; + } + + this.setLegendWrapXY(offsetX, offsetY); + } + }, { + key: "legendAlignVertical", + value: function legendAlignVertical() { + var w = this.w; + var lRect = this.getLegendBBox(); + var offsetY = 20; + var offsetX = 0; + + if (w.config.legend.position === 'left') { + offsetX = 20; + } + + if (w.config.legend.position === 'right') { + offsetX = w.globals.svgWidth - lRect.clww - 10; + } + + this.setLegendWrapXY(offsetX, offsetY); + } + }, { + key: "onLegendHovered", + value: function onLegendHovered(e) { + var w = this.w; + var hoverOverLegend = e.target.classList.contains('apexcharts-legend-text') || e.target.classList.contains('apexcharts-legend-marker'); + + if (w.config.chart.type !== 'heatmap') { + if (!e.target.classList.contains('inactive-legend') && hoverOverLegend) { + var series = new Series(this.ctx); + series.toggleSeriesOnHover(e, e.target); + } + } else { + // for heatmap handling + if (hoverOverLegend) { + var seriesCnt = parseInt(e.target.getAttribute('rel')) - 1; + this.ctx.fireEvent('legendHover', [this.ctx, seriesCnt, this.w]); + + var _series = new Series(this.ctx); + + _series.highlightRangeInSeries(e, e.target); + } + } + } + }, { + key: "onLegendClick", + value: function onLegendClick(e) { + if (e.target.classList.contains('apexcharts-legend-text') || e.target.classList.contains('apexcharts-legend-marker')) { + var seriesCnt = parseInt(e.target.getAttribute('rel')) - 1; + var isHidden = e.target.getAttribute('data:collapsed') === 'true'; + var legendClick = this.w.config.chart.events.legendClick; + + if (typeof legendClick === 'function') { + legendClick(this.ctx, seriesCnt, this.w); + } + + this.ctx.fireEvent('legendClick', [this.ctx, seriesCnt, this.w]); + var markerClick = this.w.config.legend.markers.onClick; + + if (typeof markerClick === 'function' && e.target.classList.contains('apexcharts-legend-marker')) { + markerClick(this.ctx, seriesCnt, this.w); + this.ctx.fireEvent('legendMarkerClick', [this.ctx, seriesCnt, this.w]); + } + + this.toggleDataSeries(seriesCnt, isHidden); + } + } + }, { + key: "getLegendStyles", + value: function getLegendStyles() { + var stylesheet = document.createElement('style'); + stylesheet.setAttribute('type', 'text/css'); + var text = "\n \n .apexcharts-legend {\n display: flex;\n overflow: auto;\n padding: 0 10px;\n }\n\n .apexcharts-legend.position-bottom, .apexcharts-legend.position-top {\n flex-wrap: wrap\n }\n .apexcharts-legend.position-right, .apexcharts-legend.position-left {\n flex-direction: column;\n bottom: 0;\n }\n\n .apexcharts-legend.position-bottom.left, .apexcharts-legend.position-top.left, .apexcharts-legend.position-right, .apexcharts-legend.position-left {\n justify-content: flex-start;\n }\n\n .apexcharts-legend.position-bottom.center, .apexcharts-legend.position-top.center {\n justify-content: center; \n }\n\n .apexcharts-legend.position-bottom.right, .apexcharts-legend.position-top.right {\n justify-content: flex-end;\n }\n\n .apexcharts-legend-series {\n cursor: pointer;\n line-height: normal;\n }\n\n .apexcharts-legend.position-bottom .apexcharts-legend-series, .apexcharts-legend.position-top .apexcharts-legend-series{\n display: flex;\n align-items: center;\n }\n\n .apexcharts-legend-text {\n position: relative;\n font-size: 14px;\n }\n\n .apexcharts-legend-text *, .apexcharts-legend-marker * {\n pointer-events: none;\n }\n\n .apexcharts-legend-marker {\n position: relative;\n display: inline-block;\n cursor: pointer;\n margin-right: 3px;\n }\n \n .apexcharts-legend.right .apexcharts-legend-series, .apexcharts-legend.left .apexcharts-legend-series{\n display: inline-block;\n }\n\n .apexcharts-legend-series.no-click {\n cursor: auto;\n }\n\n .apexcharts-legend .apexcharts-hidden-zero-series, .apexcharts-legend .apexcharts-hidden-null-series {\n display: none !important;\n }\n\n .inactive-legend {\n opacity: 0.45;\n }"; + var rules = document.createTextNode(text); + stylesheet.appendChild(rules); + return stylesheet; + } + }, { + key: "toggleDataSeries", + value: function toggleDataSeries(seriesCnt, isHidden) { + var w = this.w; + + if (w.globals.axisCharts || w.config.chart.type === 'radialBar') { + w.globals.resized = true; // we don't want initial animations again + + var seriesEl = null; + var realIndex = null; // yes, make it null. 1 series will rise at a time + + w.globals.risingSeries = []; + + if (w.globals.axisCharts) { + seriesEl = w.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(seriesCnt, "']")); + realIndex = parseInt(seriesEl.getAttribute('data:realIndex')); + } else { + seriesEl = w.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(seriesCnt + 1, "']")); + realIndex = parseInt(seriesEl.getAttribute('rel')) - 1; + } + + if (isHidden) { + this.riseCollapsedSeries(w.globals.collapsedSeries, w.globals.collapsedSeriesIndices, realIndex); + this.riseCollapsedSeries(w.globals.ancillaryCollapsedSeries, w.globals.ancillaryCollapsedSeriesIndices, realIndex); + } else { + if (w.globals.axisCharts) { + var shouldNotHideYAxis = false; + + if (w.config.yaxis[realIndex] && w.config.yaxis[realIndex].show && w.config.yaxis[realIndex].showAlways) { + shouldNotHideYAxis = true; + + if (w.globals.ancillaryCollapsedSeriesIndices.indexOf(realIndex) < 0) { + w.globals.ancillaryCollapsedSeries.push({ + index: realIndex, + data: w.config.series[realIndex].data.slice(), + type: seriesEl.parentNode.className.baseVal.split('-')[1] + }); + w.globals.ancillaryCollapsedSeriesIndices.push(realIndex); + } + } + + if (!shouldNotHideYAxis) { + w.globals.collapsedSeries.push({ + index: realIndex, + data: w.config.series[realIndex].data.slice(), + type: seriesEl.parentNode.className.baseVal.split('-')[1] + }); + w.globals.collapsedSeriesIndices.push(realIndex); + var removeIndexOfRising = w.globals.risingSeries.indexOf(realIndex); + w.globals.risingSeries.splice(removeIndexOfRising, 1); + } // TODO: AVOID mutating the user's config object below + + + w.config.series[realIndex].data = []; + } else { + w.globals.collapsedSeries.push({ + index: realIndex, + data: w.config.series[realIndex] + }); + w.globals.collapsedSeriesIndices.push(realIndex); + w.config.series[realIndex] = 0; + } + + var seriesChildren = seriesEl.childNodes; + + for (var sc = 0; sc < seriesChildren.length; sc++) { + if (seriesChildren[sc].classList.contains('apexcharts-series-markers-wrap')) { + if (seriesChildren[sc].classList.contains('apexcharts-hide')) { + seriesChildren[sc].classList.remove('apexcharts-hide'); + } else { + seriesChildren[sc].classList.add('apexcharts-hide'); + } + } + } + + w.globals.allSeriesCollapsed = w.globals.collapsedSeries.length === w.globals.series.length; + + this.ctx._updateSeries(w.config.series, w.config.chart.animations.dynamicAnimation.enabled); + } + } else { + // for non-axis charts i.e pie / donuts + var _seriesEl = w.globals.dom.Paper.select(" .apexcharts-series[rel='".concat(seriesCnt + 1, "'] path")); + + var type = w.config.chart.type; + + if (type === 'pie' || type === 'donut') { + var dataLabels = w.config.plotOptions.pie.donut.labels; + var graphics = new Graphics(this.ctx); + var pie = new Pie(this.ctx); + graphics.pathMouseDown(_seriesEl.members[0], null); + pie.printDataLabelsInner(_seriesEl.members[0].node, dataLabels); + } + + _seriesEl.fire('click'); + } + } + }, { + key: "riseCollapsedSeries", + value: function riseCollapsedSeries(series, seriesIndices, realIndex) { + var w = this.w; + + if (series.length > 0) { + for (var c = 0; c < series.length; c++) { + if (series[c].index === realIndex) { + if (w.globals.axisCharts) { + w.config.series[realIndex].data = series[c].data.slice(); + series.splice(c, 1); + seriesIndices.splice(c, 1); + w.globals.risingSeries.push(realIndex); + } else { + w.config.series[realIndex] = series[c].data; + series.splice(c, 1); + seriesIndices.splice(c, 1); + w.globals.risingSeries.push(realIndex); + } + + this.ctx._updateSeries(w.config.series, w.config.chart.animations.dynamicAnimation.enabled); + } + } + } + } + }]); + + return Legend; + }(); + + /** + * ApexCharts Line Class responsible for drawing Line / Area Charts. + * This class is also responsible for generating values for Bubble/Scatter charts, so need to rename it to Axis Charts to avoid confusions + * @module Line + **/ + + var Line = + /*#__PURE__*/ + function () { + function Line(ctx, xyRatios, isPointsChart) { + _classCallCheck(this, Line); + + this.ctx = ctx; + this.w = ctx.w; + this.xyRatios = xyRatios; + this.pointsChart = !(this.w.config.chart.type !== 'bubble' && this.w.config.chart.type !== 'scatter') || isPointsChart; + this.scatter = new Scatter(this.ctx); + this.noNegatives = this.w.globals.minX === Number.MAX_VALUE; + this.yaxisIndex = 0; + } + + _createClass(Line, [{ + key: "draw", + value: function draw(series, ptype, seriesIndex) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var fill = new Fill(this.ctx); + var type = w.globals.comboCharts ? ptype : w.config.chart.type; + var ret = graphics.group({ + class: "apexcharts-".concat(type, "-series apexcharts-plot-series") + }); + var coreUtils = new CoreUtils(this.ctx, w); + series = coreUtils.getLogSeries(series); + var yRatio = this.xyRatios.yRatio; + yRatio = coreUtils.getLogYRatios(yRatio); + var zRatio = this.xyRatios.zRatio; + var xRatio = this.xyRatios.xRatio; + var baseLineY = this.xyRatios.baseLineY; // push all series in an array, so we can draw in reverse order (for stacked charts) + + var allSeries = []; + var prevSeriesY = []; + var categoryAxisCorrection = 0; + + for (var i = 0; i < series.length; i++) { + // width divided into equal parts + if (type === 'line' && (w.config.fill.type === 'gradient' || w.config.fill.type[i] === 'gradient')) { + // a small adjustment to allow gradient line to draw correctly for all same values + + /* #fix https://github.com/apexcharts/apexcharts.js/issues/358 */ + if (coreUtils.seriesHaveSameValues(i)) { + var gSeries = series[i].slice(); + gSeries[gSeries.length - 1] = gSeries[gSeries.length - 1] + 0.000001; + series[i] = gSeries; + } + } + + var xDivision = w.globals.gridWidth / w.globals.dataPoints; + var realIndex = w.globals.comboCharts ? seriesIndex[i] : i; + + if (yRatio.length > 1) { + this.yaxisIndex = realIndex; + } + + this.isReversed = w.config.yaxis[this.yaxisIndex] && w.config.yaxis[this.yaxisIndex].reversed; + var yArrj = []; // hold y values of current iterating series + + var xArrj = []; // hold x values of current iterating series + // zeroY is the 0 value in y series which can be used in negative charts + + var zeroY = w.globals.gridHeight - baseLineY[this.yaxisIndex] - (this.isReversed ? w.globals.gridHeight : 0) + (this.isReversed ? baseLineY[this.yaxisIndex] * 2 : 0); + var areaBottomY = zeroY; + + if (zeroY > w.globals.gridHeight) { + areaBottomY = w.globals.gridHeight; + } + + categoryAxisCorrection = xDivision / 2; + var x = w.globals.padHorizontal + categoryAxisCorrection; + var y = 1; + + if (w.globals.isXNumeric && w.globals.seriesX.length > 0) { + x = (w.globals.seriesX[realIndex][0] - w.globals.minX) / xRatio; + } + + xArrj.push(x); + var linePath = void 0, + areaPath = void 0, + pathFromLine = void 0, + pathFromArea = void 0; + var linePaths = []; + var areaPaths = []; // el to which series will be drawn + + var elSeries = graphics.group({ + class: "apexcharts-series", + seriesName: Utils.escapeString(w.globals.seriesNames[realIndex]) + }); // points + + var elPointsMain = graphics.group({ + class: 'apexcharts-series-markers-wrap' + }); // eldatalabels + + var elDataLabelsWrap = graphics.group({ + class: 'apexcharts-datalabels' + }); + this.ctx.series.addCollapsedClassToSeries(elSeries, realIndex); + var longestSeries = series[i].length === w.globals.dataPoints; + elSeries.attr({ + 'data:longestSeries': longestSeries, + rel: i + 1, + 'data:realIndex': realIndex + }); + this.appendPathFrom = true; + var pX = x; + var pY = void 0; + var prevX = pX; + var prevY = zeroY; // w.globals.svgHeight; + + var lineYPosition = 0; // the first value in the current series is not null or undefined + + var firstPrevY = this.determineFirstPrevY({ + i: i, + series: series, + yRatio: yRatio[this.yaxisIndex], + zeroY: zeroY, + prevY: prevY, + prevSeriesY: prevSeriesY, + lineYPosition: lineYPosition + }); + prevY = firstPrevY.prevY; + yArrj.push(prevY); + pY = prevY; + + if (series[i][0] === null) { + // when the first value itself is null, we need to move the pointer to a location where a null value is not found + for (var s = 0; s < series[i].length; s++) { + if (series[i][s] !== null) { + prevX = xDivision * s; + prevY = zeroY - series[i][s] / yRatio[this.yaxisIndex]; + linePath = graphics.move(prevX, prevY); + areaPath = graphics.move(prevX, areaBottomY); + break; + } + } + } else { + linePath = graphics.move(prevX, prevY); + areaPath = graphics.move(prevX, areaBottomY) + graphics.line(prevX, prevY); + } + + pathFromLine = graphics.move(-1, zeroY) + graphics.line(-1, zeroY); + pathFromArea = graphics.move(-1, zeroY) + graphics.line(-1, zeroY); + + if (w.globals.previousPaths.length > 0) { + var pathFrom = this.checkPreviousPaths({ + pathFromLine: pathFromLine, + pathFromArea: pathFromArea, + realIndex: realIndex + }); + pathFromLine = pathFrom.pathFromLine; + pathFromArea = pathFrom.pathFromArea; + } + + var iterations = w.globals.dataPoints > 1 ? w.globals.dataPoints - 1 : w.globals.dataPoints; + + for (var j = 0; j < iterations; j++) { + if (w.globals.isXNumeric) { + var sX = w.globals.seriesX[realIndex][j + 1]; + + if (typeof w.globals.seriesX[realIndex][j + 1] === 'undefined') { + /* fix #374 */ + sX = w.globals.seriesX[realIndex][iterations - 1]; + } + + x = (sX - w.globals.minX) / xRatio; + } else { + x = x + xDivision; + } + + var minY = Utils.isNumber(w.globals.minYArr[realIndex]) ? w.globals.minYArr[realIndex] : w.globals.minY; + + if (w.config.chart.stacked) { + if (i > 0 && w.globals.collapsedSeries.length < w.config.series.length - 1) { + lineYPosition = prevSeriesY[i - 1][j + 1]; + } else { + // the first series will not have prevY values + lineYPosition = zeroY; + } + + if (typeof series[i][j + 1] === 'undefined' || series[i][j + 1] === null) { + y = lineYPosition - minY / yRatio[this.yaxisIndex] + (this.isReversed ? minY / yRatio[this.yaxisIndex] : 0) * 2; + } else { + y = lineYPosition - series[i][j + 1] / yRatio[this.yaxisIndex] + (this.isReversed ? series[i][j + 1] / yRatio[this.yaxisIndex] : 0) * 2; + } + } else { + if (typeof series[i][j + 1] === 'undefined' || series[i][j + 1] === null) { + y = zeroY - minY / yRatio[this.yaxisIndex] + (this.isReversed ? minY / yRatio[this.yaxisIndex] : 0) * 2; + } else { + y = zeroY - series[i][j + 1] / yRatio[this.yaxisIndex] + (this.isReversed ? series[i][j + 1] / yRatio[this.yaxisIndex] : 0) * 2; + } + } // push current X + + + xArrj.push(x); // push current Y that will be used as next series's bottom position + + yArrj.push(y); + var calculatedPaths = this.createPaths({ + series: series, + i: i, + j: j, + x: x, + y: y, + xDivision: xDivision, + pX: pX, + pY: pY, + areaBottomY: areaBottomY, + linePath: linePath, + areaPath: areaPath, + linePaths: linePaths, + areaPaths: areaPaths, + seriesIndex: seriesIndex + }); + areaPaths = calculatedPaths.areaPaths; + linePaths = calculatedPaths.linePaths; + pX = calculatedPaths.pX; + pY = calculatedPaths.pY; + areaPath = calculatedPaths.areaPath; + linePath = calculatedPaths.linePath; + + if (this.appendPathFrom) { + pathFromLine = pathFromLine + graphics.line(x, zeroY); + pathFromArea = pathFromArea + graphics.line(x, zeroY); + } + + var pointsPos = this.calculatePoints({ + series: series, + x: x, + y: y, + realIndex: realIndex, + i: i, + j: j, + prevY: prevY, + categoryAxisCorrection: categoryAxisCorrection, + xRatio: xRatio + }); + + if (!this.pointsChart) { + var markers = new Markers(this.ctx); + + if (w.globals.dataPoints > 1) { + elPointsMain.node.classList.add('hidden'); + } + + var elPointsWrap = markers.plotChartMarkers(pointsPos, realIndex, j + 1); + + if (elPointsWrap !== null) { + elPointsMain.add(elPointsWrap); + } + } else { + // scatter / bubble chart points creation + this.scatter.draw(elSeries, j, { + realIndex: realIndex, + pointsPos: pointsPos, + zRatio: zRatio, + elParent: elPointsMain + }); + } + + var dataLabelAlign = !series[i][j + 1] || series[i][j + 1] > series[i][j] ? 'top' : 'bottom'; + var dataLabels = new DataLabels(this.ctx); + var drawnLabels = dataLabels.drawDataLabel(pointsPos, realIndex, j + 1, null, dataLabelAlign); + + if (drawnLabels !== null) { + elDataLabelsWrap.add(drawnLabels); + } + } // push all current y values array to main PrevY Array + + + prevSeriesY.push(yArrj); // push all x val arrays into main xArr + + w.globals.seriesXvalues[realIndex] = xArrj; + w.globals.seriesYvalues[realIndex] = yArrj; // these elements will be shown after area path animation completes + + if (!this.pointsChart) { + w.globals.delayedElements.push({ + el: elPointsMain.node, + index: realIndex + }); + } + + var defaultRenderedPathOptions = { + i: i, + realIndex: realIndex, + animationDelay: i, + initialSpeed: w.config.chart.animations.speed, + dataChangeSpeed: w.config.chart.animations.dynamicAnimation.speed, + className: "apexcharts-".concat(type) + }; + + if (type === 'area') { + var pathFill = fill.fillPath({ + seriesNumber: realIndex + }); + + for (var p = 0; p < areaPaths.length; p++) { + var renderedPath = graphics.renderPaths(_objectSpread({}, defaultRenderedPathOptions, { + pathFrom: pathFromArea, + pathTo: areaPaths[p], + stroke: 'none', + strokeWidth: 0, + strokeLineCap: null, + fill: pathFill + })); + elSeries.add(renderedPath); + } + } + + if (w.config.stroke.show && !this.pointsChart) { + var lineFill = null; + + if (type === 'line') { + // fillable lines only for lineChart + lineFill = fill.fillPath({ + seriesNumber: realIndex, + i: i + }); + } else { + lineFill = w.globals.stroke.colors[realIndex]; + } + + for (var _p = 0; _p < linePaths.length; _p++) { + var _renderedPath = graphics.renderPaths(_objectSpread({}, defaultRenderedPathOptions, { + pathFrom: pathFromLine, + pathTo: linePaths[_p], + stroke: lineFill, + strokeWidth: Array.isArray(w.config.stroke.width) ? w.config.stroke.width[realIndex] : w.config.stroke.width, + strokeLineCap: w.config.stroke.lineCap, + fill: 'none' + })); + + elSeries.add(_renderedPath); + } + } + + elSeries.add(elPointsMain); + elSeries.add(elDataLabelsWrap); + allSeries.push(elSeries); + } + + for (var _s = allSeries.length; _s > 0; _s--) { + ret.add(allSeries[_s - 1]); + } + + return ret; + } + }, { + key: "createPaths", + value: function createPaths(_ref) { + var series = _ref.series, + i = _ref.i, + j = _ref.j, + x = _ref.x, + y = _ref.y, + pX = _ref.pX, + pY = _ref.pY, + xDivision = _ref.xDivision, + areaBottomY = _ref.areaBottomY, + linePath = _ref.linePath, + areaPath = _ref.areaPath, + linePaths = _ref.linePaths, + areaPaths = _ref.areaPaths, + seriesIndex = _ref.seriesIndex; + var w = this.w; + var graphics = new Graphics(this.ctx); + var curve = w.config.stroke.curve; + + if (Array.isArray(w.config.stroke.curve)) { + if (Array.isArray(seriesIndex)) { + curve = w.config.stroke.curve[seriesIndex[i]]; + } else { + curve = w.config.stroke.curve[i]; + } + } // logic of smooth curve derived from chartist + // CREDITS: https://gionkunz.github.io/chartist-js/ + + + if (curve === 'smooth') { + var length = (x - pX) * 0.35; + + if (w.globals.hasNullValues) { + if (series[i][j] !== null) { + if (series[i][j + 1] !== null) { + linePath = graphics.move(pX, pY) + graphics.curve(pX + length, pY, x - length, y, x + 1, y); + areaPath = graphics.move(pX + 1, pY) + graphics.curve(pX + length, pY, x - length, y, x + 1, y) + graphics.line(x, areaBottomY) + graphics.line(pX, areaBottomY) + 'z'; + } else { + linePath = graphics.move(pX, pY); + areaPath = graphics.move(pX, pY) + 'z'; + } + } + + linePaths.push(linePath); + areaPaths.push(areaPath); + } else { + linePath = linePath + graphics.curve(pX + length, pY, x - length, y, x, y); + areaPath = areaPath + graphics.curve(pX + length, pY, x - length, y, x, y); + } + + pX = x; + pY = y; + + if (j === series[i].length - 2) { + // last loop, close path + areaPath = areaPath + graphics.curve(pX, pY, x, y, x, areaBottomY) + graphics.move(x, y) + 'z'; + + if (!w.globals.hasNullValues) { + linePaths.push(linePath); + areaPaths.push(areaPath); + } + } + } else { + if (series[i][j + 1] === null) { + linePath = linePath + graphics.move(x, y); + areaPath = areaPath + graphics.line(x - xDivision, areaBottomY) + graphics.move(x, y); + } + + if (series[i][j] === null) { + linePath = linePath + graphics.move(x, y); + areaPath = areaPath + graphics.move(x, areaBottomY); + } + + if (curve === 'stepline') { + linePath = linePath + graphics.line(x, null, 'H') + graphics.line(null, y, 'V'); + areaPath = areaPath + graphics.line(x, null, 'H') + graphics.line(null, y, 'V'); + } else if (curve === 'straight') { + linePath = linePath + graphics.line(x, y); + areaPath = areaPath + graphics.line(x, y); + } + + if (j === series[i].length - 2) { + // last loop, close path + areaPath = areaPath + graphics.line(x, areaBottomY) + graphics.move(x, y) + 'z'; + linePaths.push(linePath); + areaPaths.push(areaPath); + } + } + + return { + linePaths: linePaths, + areaPaths: areaPaths, + pX: pX, + pY: pY, + linePath: linePath, + areaPath: areaPath + }; + } + }, { + key: "calculatePoints", + value: function calculatePoints(_ref2) { + var series = _ref2.series, + realIndex = _ref2.realIndex, + x = _ref2.x, + y = _ref2.y, + i = _ref2.i, + j = _ref2.j, + prevY = _ref2.prevY, + categoryAxisCorrection = _ref2.categoryAxisCorrection, + xRatio = _ref2.xRatio; + var w = this.w; + var ptX = []; + var ptY = []; + + if (j === 0) { + var xPT1st = categoryAxisCorrection + w.config.markers.offsetX; // the first point for line series + // we need to check whether it's not a time series, because a time series may + // start from the middle of the x axis + + if (w.globals.isXNumeric) { + xPT1st = (w.globals.seriesX[realIndex][0] - w.globals.minX) / xRatio + w.config.markers.offsetX; + } // push 2 points for the first data values + + + ptX.push(xPT1st); + ptY.push(Utils.isNumber(series[i][0]) ? prevY + w.config.markers.offsetY : null); + ptX.push(x + w.config.markers.offsetX); + ptY.push(Utils.isNumber(series[i][j + 1]) ? y + w.config.markers.offsetY : null); + } else { + ptX.push(x + w.config.markers.offsetX); + ptY.push(Utils.isNumber(series[i][j + 1]) ? y + w.config.markers.offsetY : null); + } + + var pointsPos = { + x: ptX, + y: ptY + }; + return pointsPos; + } + }, { + key: "checkPreviousPaths", + value: function checkPreviousPaths(_ref3) { + var pathFromLine = _ref3.pathFromLine, + pathFromArea = _ref3.pathFromArea, + realIndex = _ref3.realIndex; + var w = this.w; + + for (var pp = 0; pp < w.globals.previousPaths.length; pp++) { + var gpp = w.globals.previousPaths[pp]; + + if ((gpp.type === 'line' || gpp.type === 'area') && gpp.paths.length > 0 && parseInt(gpp.realIndex) === parseInt(realIndex)) { + if (gpp.type === 'line') { + this.appendPathFrom = false; + pathFromLine = w.globals.previousPaths[pp].paths[0].d; + } else if (gpp.type === 'area') { + this.appendPathFrom = false; + pathFromArea = w.globals.previousPaths[pp].paths[0].d; + + if (w.config.stroke.show) { + pathFromLine = w.globals.previousPaths[pp].paths[1].d; + } + } + } + } + + return { + pathFromLine: pathFromLine, + pathFromArea: pathFromArea + }; + } + }, { + key: "determineFirstPrevY", + value: function determineFirstPrevY(_ref4) { + var i = _ref4.i, + series = _ref4.series, + yRatio = _ref4.yRatio, + zeroY = _ref4.zeroY, + prevY = _ref4.prevY, + prevSeriesY = _ref4.prevSeriesY, + lineYPosition = _ref4.lineYPosition; + var w = this.w; + + if (typeof series[i][0] !== 'undefined') { + if (w.config.chart.stacked) { + if (i > 0) { + // 1st y value of previous series + lineYPosition = prevSeriesY[i - 1][0]; + } else { + // the first series will not have prevY values + lineYPosition = zeroY; + } + + prevY = lineYPosition - series[i][0] / yRatio + (this.isReversed ? series[i][0] / yRatio : 0) * 2; + } else { + prevY = zeroY - series[i][0] / yRatio + (this.isReversed ? series[i][0] / yRatio : 0) * 2; + } + } else { + // the first value in the current series is null + if (w.config.chart.stacked && i > 0 && typeof series[i][0] === 'undefined') { + // check for undefined value (undefined value will occur when we clear the series while user clicks on legend to hide serieses) + for (var s = i - 1; s >= 0; s--) { + // for loop to get to 1st previous value until we get it + if (series[s][0] !== null && typeof series[s][0] !== 'undefined') { + lineYPosition = prevSeriesY[s][0]; + prevY = lineYPosition; + break; + } + } + } + } + + return { + prevY: prevY, + lineYPosition: lineYPosition + }; + } + }]); + + return Line; + }(); + + /** + * ApexCharts XAxis Class for drawing X-Axis. + * + * @module XAxis + **/ + + var XAxis = + /*#__PURE__*/ + function () { + function XAxis(ctx) { + _classCallCheck(this, XAxis); + + this.ctx = ctx; + this.w = ctx.w; + var w = this.w; + this.xaxisLabels = w.globals.labels.slice(); + + if (w.globals.timelineLabels.length > 0) { + // timeline labels are there + this.xaxisLabels = w.globals.timelineLabels.slice(); + } + + this.drawnLabels = []; + + if (w.config.xaxis.position === 'top') { + this.offY = 0; + } else { + this.offY = w.globals.gridHeight + 1; + } + + this.offY = this.offY + w.config.xaxis.axisBorder.offsetY; + this.xaxisFontSize = w.config.xaxis.labels.style.fontSize; + this.xaxisFontFamily = w.config.xaxis.labels.style.fontFamily; + this.xaxisForeColors = w.config.xaxis.labels.style.colors; + this.xaxisBorderWidth = w.config.xaxis.axisBorder.width; + + if (this.xaxisBorderWidth.indexOf('%') > -1) { + this.xaxisBorderWidth = w.globals.gridWidth * parseInt(this.xaxisBorderWidth) / 100; + } else { + this.xaxisBorderWidth = parseInt(this.xaxisBorderWidth); + } + + this.xaxisBorderHeight = w.config.xaxis.axisBorder.height; // For bars, we will only consider single y xais, + // as we are not providing multiple yaxis for bar charts + + this.yaxis = w.config.yaxis[0]; + this.axesUtils = new AxesUtils(ctx); + } + + _createClass(XAxis, [{ + key: "drawXaxis", + value: function drawXaxis() { + var w = this.w; + var graphics = new Graphics(this.ctx); + var elXaxis = graphics.group({ + class: 'apexcharts-xaxis', + transform: "translate(".concat(w.config.xaxis.offsetX, ", ").concat(w.config.xaxis.offsetY, ")") + }); + var elXaxisTexts = graphics.group({ + class: 'apexcharts-xaxis-texts-g', + transform: "translate(".concat(w.globals.translateXAxisX, ", ").concat(w.globals.translateXAxisY, ")") + }); + elXaxis.add(elXaxisTexts); + var colWidth; // initial x Position (keep adding column width in the loop) + + var xPos = w.globals.padHorizontal; + var labels = []; + + for (var i = 0; i < this.xaxisLabels.length; i++) { + labels.push(this.xaxisLabels[i]); + } + + if (w.globals.isXNumeric) { + colWidth = w.globals.gridWidth / (labels.length - 1); + xPos = xPos + colWidth / 2 + w.config.xaxis.labels.offsetX; + } else { + colWidth = w.globals.gridWidth / labels.length; + xPos = xPos + colWidth + w.config.xaxis.labels.offsetX; + } + + var labelsLen = labels.length; + + if (w.config.xaxis.labels.show) { + for (var _i = 0; _i <= labelsLen - 1; _i++) { + var x = xPos - colWidth / 2 + w.config.xaxis.labels.offsetX; + var label = this.axesUtils.getLabel(labels, w.globals.timelineLabels, x, _i, this.drawnLabels); + this.drawnLabels.push(label.text); + var offsetYCorrection = 28; + + if (w.globals.rotateXLabels) { + offsetYCorrection = 22; + } + + var elTick = graphics.drawText({ + x: label.x, + y: this.offY + w.config.xaxis.labels.offsetY + offsetYCorrection, + text: '', + textAnchor: 'middle', + fontWeight: label.isBold ? 600 : 400, + fontSize: this.xaxisFontSize, + fontFamily: this.xaxisFontFamily, + foreColor: Array.isArray(this.xaxisForeColors) ? this.xaxisForeColors[_i] : this.xaxisForeColors, + cssClass: 'apexcharts-xaxis-label ' + w.config.xaxis.labels.style.cssClass + }); + + if (_i === labelsLen - 1) { + if (w.globals.skipLastTimelinelabel) { + label.text = ''; + } + } + + elXaxisTexts.add(elTick); + graphics.addTspan(elTick, label.text, this.xaxisFontFamily); + var elTooltipTitle = document.createElementNS(w.globals.SVGNS, 'title'); + elTooltipTitle.textContent = label.text; + elTick.node.appendChild(elTooltipTitle); + xPos = xPos + colWidth; + } + } + + if (w.config.xaxis.title.text !== undefined) { + var elXaxisTitle = graphics.group({ + class: 'apexcharts-xaxis-title' + }); + var elXAxisTitleText = graphics.drawText({ + x: w.globals.gridWidth / 2 + w.config.xaxis.title.offsetX, + y: this.offY - parseInt(this.xaxisFontSize) + w.globals.xAxisLabelsHeight + w.config.xaxis.title.offsetY, + text: w.config.xaxis.title.text, + textAnchor: 'middle', + fontSize: w.config.xaxis.title.style.fontSize, + fontFamily: w.config.xaxis.title.style.fontFamily, + foreColor: w.config.xaxis.title.style.color, + cssClass: 'apexcharts-xaxis-title-text ' + w.config.xaxis.title.style.cssClass + }); + elXaxisTitle.add(elXAxisTitleText); + elXaxis.add(elXaxisTitle); + } + + if (w.config.xaxis.axisBorder.show) { + var lineCorrection = 0; + + if (w.config.chart.type === 'bar' && w.globals.isXNumeric) { + lineCorrection = lineCorrection - 15; + } + + var elHorzLine = graphics.drawLine(w.globals.padHorizontal + lineCorrection + w.config.xaxis.axisBorder.offsetX, this.offY, this.xaxisBorderWidth, this.offY, w.config.xaxis.axisBorder.color, 0, this.xaxisBorderHeight); + elXaxis.add(elHorzLine); + } + + return elXaxis; + } // this actually becomes the vertical axis (for bar charts) + + }, { + key: "drawXaxisInversed", + value: function drawXaxisInversed(realIndex) { + var w = this.w; + var graphics = new Graphics(this.ctx); + var translateYAxisX = w.config.yaxis[0].opposite ? w.globals.translateYAxisX[realIndex] : 0; + var elYaxis = graphics.group({ + class: 'apexcharts-yaxis apexcharts-xaxis-inversed', + rel: realIndex + }); + var elYaxisTexts = graphics.group({ + class: 'apexcharts-yaxis-texts-g apexcharts-xaxis-inversed-texts-g', + transform: 'translate(' + translateYAxisX + ', 0)' + }); + elYaxis.add(elYaxisTexts); + var colHeight; // initial x Position (keep adding column width in the loop) + + var yPos; + var labels = []; + + for (var i = 0; i < this.xaxisLabels.length; i++) { + labels.push(this.xaxisLabels[i]); + } + + colHeight = w.globals.gridHeight / labels.length; + yPos = -(colHeight / 2.2); + var lbFormatter = w.globals.yLabelFormatters[0]; + var ylabels = w.config.yaxis[0].labels; + + if (ylabels.show) { + for (var _i2 = 0; _i2 <= labels.length - 1; _i2++) { + var label = typeof labels[_i2] === 'undefined' ? '' : labels[_i2]; + label = lbFormatter(label); + var elLabel = graphics.drawText({ + x: ylabels.offsetX - 15, + y: yPos + colHeight + ylabels.offsetY, + text: label, + textAnchor: this.yaxis.opposite ? 'start' : 'end', + foreColor: ylabels.style.color ? ylabels.style.color : ylabels.style.colors[_i2], + fontSize: ylabels.style.fontSize, + fontFamily: ylabels.style.fontFamily, + cssClass: 'apexcharts-yaxis-label ' + ylabels.style.cssClass + }); + elYaxisTexts.add(elLabel); + + if (w.config.yaxis[realIndex].labels.rotate !== 0) { + var labelRotatingCenter = graphics.rotateAroundCenter(elLabel.node); + elLabel.node.setAttribute('transform', "rotate(".concat(w.config.yaxis[realIndex].labels.rotate, " ").concat(labelRotatingCenter.x, " ").concat(labelRotatingCenter.y, ")")); + } + + yPos = yPos + colHeight; + } + } + + if (w.config.yaxis[0].title.text !== undefined) { + var elXaxisTitle = graphics.group({ + class: 'apexcharts-yaxis-title apexcharts-xaxis-title-inversed', + transform: 'translate(' + translateYAxisX + ', 0)' + }); + var elXAxisTitleText = graphics.drawText({ + x: 0, + y: w.globals.gridHeight / 2, + text: w.config.yaxis[0].title.text, + textAnchor: 'middle', + foreColor: w.config.yaxis[0].title.style.color, + fontSize: w.config.yaxis[0].title.style.fontSize, + fontFamily: w.config.yaxis[0].title.style.fontFamily, + cssClass: 'apexcharts-yaxis-title-text ' + w.config.yaxis[0].title.style.cssClass + }); + elXaxisTitle.add(elXAxisTitleText); + elYaxis.add(elXaxisTitle); + } + + if (w.config.xaxis.axisBorder.show) { + var elHorzLine = graphics.drawLine(w.globals.padHorizontal + w.config.xaxis.axisBorder.offsetX, this.offY, this.xaxisBorderWidth, this.offY, this.yaxis.axisBorder.color, 0, this.xaxisBorderHeight); + elYaxis.add(elHorzLine); + this.axesUtils.drawYAxisTicks(0, labels.length, w.config.yaxis[0].axisBorder, w.config.yaxis[0].axisTicks, 0, colHeight, elYaxis); + } + + return elYaxis; + } + }, { + key: "drawXaxisTicks", + value: function drawXaxisTicks(x1, appendToElement) { + var w = this.w; + var x2 = x1; + if (x1 < 0 || x1 > w.globals.gridWidth) return; + var y1 = this.offY + w.config.xaxis.axisTicks.offsetY; + var y2 = y1 + w.config.xaxis.axisTicks.height; + + if (w.config.xaxis.axisTicks.show) { + var graphics = new Graphics(this.ctx); + var line = graphics.drawLine(x1 + w.config.xaxis.axisTicks.offsetX, y1 + w.config.xaxis.offsetY, x2 + w.config.xaxis.axisTicks.offsetX, y2 + w.config.xaxis.offsetY, w.config.xaxis.axisTicks.color); // we are not returning anything, but appending directly to the element pased in param + + appendToElement.add(line); + line.node.classList.add('apexcharts-xaxis-tick'); + } + } + }, { + key: "getXAxisTicksPositions", + value: function getXAxisTicksPositions() { + var w = this.w; + var xAxisTicksPositions = []; + var xCount = this.xaxisLabels.length; + var x1 = w.globals.padHorizontal; + + if (w.globals.timelineLabels.length > 0) { + for (var i = 0; i < xCount; i++) { + x1 = this.xaxisLabels[i].position; + xAxisTicksPositions.push(x1); + } + } else { + var xCountForCategoryCharts = xCount; + + for (var _i3 = 0; _i3 < xCountForCategoryCharts; _i3++) { + var x1Count = xCountForCategoryCharts; + + if (w.globals.isXNumeric && w.config.chart.type !== 'bar') { + x1Count -= 1; + } + + x1 = x1 + w.globals.gridWidth / x1Count; + xAxisTicksPositions.push(x1); + } + } + + return xAxisTicksPositions; + } // to rotate x-axis labels or to put ... for longer text in xaxis + + }, { + key: "xAxisLabelCorrections", + value: function xAxisLabelCorrections() { + var w = this.w; + var graphics = new Graphics(this.ctx); + var xAxis = w.globals.dom.baseEl.querySelector('.apexcharts-xaxis-texts-g'); + var xAxisTexts = w.globals.dom.baseEl.querySelectorAll('.apexcharts-xaxis-texts-g text'); + var yAxisTextsInversed = w.globals.dom.baseEl.querySelectorAll('.apexcharts-yaxis-inversed text'); + var xAxisTextsInversed = w.globals.dom.baseEl.querySelectorAll('.apexcharts-xaxis-inversed-texts-g text'); + + if (w.globals.rotateXLabels || w.config.xaxis.labels.rotateAlways) { + for (var xat = 0; xat < xAxisTexts.length; xat++) { + var textRotatingCenter = graphics.rotateAroundCenter(xAxisTexts[xat]); + textRotatingCenter.y = textRotatingCenter.y - 1; // + tickWidth/4; + + textRotatingCenter.x = textRotatingCenter.x + 1; + xAxisTexts[xat].setAttribute('transform', "rotate(".concat(w.config.xaxis.labels.rotate, " ").concat(textRotatingCenter.x, " ").concat(textRotatingCenter.y, ")")); + xAxisTexts[xat].setAttribute('text-anchor', "end"); + var offsetHeight = 10; + xAxis.setAttribute('transform', "translate(0, ".concat(-offsetHeight, ")")); + var tSpan = xAxisTexts[xat].childNodes; + + if (w.config.xaxis.labels.trim) { + graphics.placeTextWithEllipsis(tSpan[0], tSpan[0].textContent, w.config.xaxis.labels.maxHeight - 40); + } + } + } else { + var width = w.globals.gridWidth / w.globals.labels.length; + + for (var _xat = 0; _xat < xAxisTexts.length; _xat++) { + var _tSpan = xAxisTexts[_xat].childNodes; + + if (w.config.xaxis.labels.trim && w.config.xaxis.type !== 'datetime') { + graphics.placeTextWithEllipsis(_tSpan[0], _tSpan[0].textContent, width); + } + } + } + + if (yAxisTextsInversed.length > 0) { + // truncate rotated y axis in bar chart (x axis) + var firstLabelPosX = yAxisTextsInversed[yAxisTextsInversed.length - 1].getBBox(); + var lastLabelPosX = yAxisTextsInversed[0].getBBox(); + + if (firstLabelPosX.x < -20) { + yAxisTextsInversed[yAxisTextsInversed.length - 1].parentNode.removeChild(yAxisTextsInversed[yAxisTextsInversed.length - 1]); + } + + if (lastLabelPosX.x + lastLabelPosX.width > w.globals.gridWidth) { + yAxisTextsInversed[0].parentNode.removeChild(yAxisTextsInversed[0]); + } // truncate rotated x axis in bar chart (y axis) + + + for (var _xat2 = 0; _xat2 < xAxisTextsInversed.length; _xat2++) { + graphics.placeTextWithEllipsis(xAxisTextsInversed[_xat2], xAxisTextsInversed[_xat2].textContent, w.config.yaxis[0].labels.maxWidth - parseInt(w.config.yaxis[0].title.style.fontSize) * 2 - 20); + } + } + } // renderXAxisBands() { + // let w = this.w; + // let plotBand = document.createElementNS(w.globals.SVGNS, 'rect') + // w.globals.dom.elGraphical.add(plotBand) + // } + + }]); + + return XAxis; + }(); + + var Range = + /*#__PURE__*/ + function () { + function Range(ctx) { + _classCallCheck(this, Range); + + this.ctx = ctx; + this.w = ctx.w; + } // http://stackoverflow.com/questions/326679/choosing-an-attractive-linear-scale-for-a-graphs-y-axiss + // This routine creates the Y axis values for a graph. + + + _createClass(Range, [{ + key: "niceScale", + value: function niceScale(yMin, yMax, diff) { + var index = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 0; + var ticks = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 10; + var w = this.w; + var NO_MIN_MAX_PROVIDED = this.w.config.yaxis[index].max === undefined && this.w.config.yaxis[index].min === undefined || this.w.config.yaxis[index].forceNiceScale; + + if (yMin === Number.MIN_VALUE && yMax === 0 || !Utils.isNumber(yMin) && !Utils.isNumber(yMax) || yMin === Number.MIN_VALUE && yMax === -Number.MAX_VALUE) { + // when all values are 0 + yMin = 0; + yMax = ticks; + var linearScale = this.linearScale(yMin, yMax, ticks); + return linearScale; + } + + if (yMin > yMax) { + // if somehow due to some wrong config, user sent max less than min, + // adjust the min/max again + console.warn('yaxis.min cannot be greater than yaxis.max'); + yMax = yMin + 0.1; + } else if (yMin === yMax) { + // If yMin and yMax are identical, then + // adjust the yMin and yMax values to actually + // make a graph. Also avoids division by zero errors. + yMin = yMin === 0 ? 0 : yMin - 0.5; // some small value + + yMax = yMax === 0 ? 2 : yMax + 0.5; // some small value + } // Calculate Min amd Max graphical labels and graph + // increments. The number of ticks defaults to + // 10 which is the SUGGESTED value. Any tick value + // entered is used as a suggested value which is + // adjusted to be a 'pretty' value. + // + // Output will be an array of the Y axis values that + // encompass the Y values. + + + var result = []; // Determine Range + + var range = Math.abs(yMax - yMin); + + if (range < 1 && NO_MIN_MAX_PROVIDED && (w.config.chart.type === 'candlestick' || w.config.series[index].type === 'candlestick' || w.globals.isRangeData)) { + /* fix https://github.com/apexcharts/apexcharts.js/issues/430 */ + yMax = yMax * 1.01; + } + + var tiks = ticks + 1; // Adjust ticks if needed + + if (tiks < 2) { + tiks = 2; + } else if (tiks > 2) { + tiks -= 2; + } // Get raw step value + + + var tempStep = range / tiks; // Calculate pretty step value + + var mag = Math.floor(Utils.log10(tempStep)); + var magPow = Math.pow(10, mag); + var magMsd = Math.round(tempStep / magPow); + + if (magMsd < 1) { + magMsd = 1; + } + + var stepSize = magMsd * magPow; // build Y label array. + // Lower and upper bounds calculations + + var lb = stepSize * Math.floor(yMin / stepSize); + var ub = stepSize * Math.ceil(yMax / stepSize); // Build array + + var val = lb; + + if (NO_MIN_MAX_PROVIDED && range > 2) { + while (1) { + result.push(val); + val += stepSize; + + if (val > ub) { + break; + } + } + + return { + result: result, + niceMin: result[0], + niceMax: result[result.length - 1] + }; + } else { + result = []; + var v = yMin; + result.push(v); + var valuesDivider = Math.abs(yMax - yMin) / ticks; + + for (var i = 0; i <= ticks; i++) { + v = v + valuesDivider; + result.push(v); + } + + if (result[result.length - 2] >= yMax) { + result.pop(); + } + + return { + result: result, + niceMin: result[0], + niceMax: result[result.length - 1] + }; + } + } + }, { + key: "linearScale", + value: function linearScale(yMin, yMax) { + var ticks = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 10; + var range = Math.abs(yMax - yMin); + var step = range / ticks; + + if (ticks === Number.MAX_VALUE) { + ticks = 10; + step = 1; + } + + var result = []; + var v = yMin; + + while (ticks >= 0) { + result.push(v); + v = v + step; + ticks -= 1; + } + + return { + result: result, + niceMin: result[0], + niceMax: result[result.length - 1] + }; + } + }, { + key: "logarithmicScale", + value: function logarithmicScale(index, yMin, yMax, ticks) { + if (yMin < 0 || yMin === Number.MIN_VALUE) yMin = 0.01; + var base = 10; + var min = Math.log(yMin) / Math.log(base); + var max = Math.log(yMax) / Math.log(base); + var range = Math.abs(yMax - yMin); + var step = range / ticks; + var result = []; + var v = yMin; + + while (ticks >= 0) { + result.push(v); + v = v + step; + ticks -= 1; + } + + var logs = result.map(function (niceNumber, i) { + if (niceNumber <= 0) { + niceNumber = 0.01; + } // calculate adjustment factor + + + var scale = (max - min) / (yMax - yMin); + var logVal = Math.pow(base, min + scale * (niceNumber - min)); + return Math.round(logVal / Utils.roundToBase(logVal, base)) * Utils.roundToBase(logVal, base); + }); // Math.floor may have rounded the value to 0, revert back to 1 + + if (logs[0] === 0) logs[0] = 1; + return { + result: logs, + niceMin: logs[0], + niceMax: logs[logs.length - 1] + }; + } + }, { + key: "setYScaleForIndex", + value: function setYScaleForIndex(index, minY, maxY) { + var gl = this.w.globals; + var cnf = this.w.config; + var y = gl.isBarHorizontal ? cnf.xaxis : cnf.yaxis[index]; + + if (typeof gl.yAxisScale[index] === 'undefined') { + gl.yAxisScale[index] = []; + } + + if (y.logarithmic) { + gl.allSeriesCollapsed = false; + gl.yAxisScale[index] = this.logarithmicScale(index, minY, maxY, y.tickAmount ? y.tickAmount : Math.floor(Math.log10(maxY))); + } else { + if (maxY === -Number.MAX_VALUE || !Utils.isNumber(maxY)) { + // no data in the chart. Either all series collapsed or user passed a blank array + gl.yAxisScale[index] = this.linearScale(0, 5, 5); + } else { + // there is some data. Turn off the allSeriesCollapsed flag + gl.allSeriesCollapsed = false; + + if ((y.min !== undefined || y.max !== undefined) && !y.forceNiceScale) { + // fix https://github.com/apexcharts/apexcharts.js/issues/492 + gl.yAxisScale[index] = this.linearScale(minY, maxY, y.tickAmount); + } else { + var diff = Math.abs(maxY - minY); + gl.yAxisScale[index] = this.niceScale(minY, maxY, diff, index, // fix https://github.com/apexcharts/apexcharts.js/issues/397 + y.tickAmount ? y.tickAmount : diff < 5 && diff > 1 ? diff + 1 : 5); + } + } + } + } + }, { + key: "setMultipleYScales", + value: function setMultipleYScales() { + var _this = this; + + var gl = this.w.globals; + var cnf = this.w.config; + var minYArr = gl.minYArr.concat([]); + var maxYArr = gl.maxYArr.concat([]); + var scalesIndices = []; // here, we loop through the yaxis array and find the item which has "seriesName" property + + cnf.yaxis.forEach(function (yaxe, i) { + var index = i; + cnf.series.forEach(function (s, si) { + // if seriesName matches and that series is not collapsed, we use that scale + if (s.name === yaxe.seriesName && gl.collapsedSeriesIndices.indexOf(si) === -1) { + index = si; + + if (i !== si) { + scalesIndices.push({ + index: si, + similarIndex: i, + alreadyExists: true + }); + } else { + scalesIndices.push({ + index: si + }); + } + } + }); + var minY = minYArr[index]; + var maxY = maxYArr[index]; + + _this.setYScaleForIndex(i, minY, maxY); + }); + this.sameScaleInMultipleAxes(minYArr, maxYArr, scalesIndices); + } + }, { + key: "sameScaleInMultipleAxes", + value: function sameScaleInMultipleAxes(minYArr, maxYArr, scalesIndices) { + var _this2 = this; + + var cnf = this.w.config; + var gl = this.w.globals; // we got the scalesIndices array in the above code, but we need to filter out the items which doesn't have same scales + + var similarIndices = []; + scalesIndices.forEach(function (scale) { + if (scale.alreadyExists) { + if (typeof similarIndices[scale.index] === 'undefined') { + similarIndices[scale.index] = []; + } + + similarIndices[scale.index].push(scale.index); + similarIndices[scale.index].push(scale.similarIndex); + } + }); + + function intersect(a, b) { + return a.filter(function (value) { + return b.indexOf(value) !== -1; + }); + } + + gl.yAxisSameScaleIndices = similarIndices; + similarIndices.forEach(function (si, i) { + similarIndices.forEach(function (sj, j) { + if (i !== j) { + if (intersect(si, sj).length > 0) { + similarIndices[i] = similarIndices[i].concat(similarIndices[j]); + } + } + }); + }); // then, we remove duplicates from the similarScale array + + var uniqueSimilarIndices = similarIndices.map(function (item) { + return item.filter(function (i, pos) { + return item.indexOf(i) === pos; + }); + }); // sort further to remove whole duplicate arrays later + + var sortedIndices = uniqueSimilarIndices.map(function (s) { + return s.sort(); + }); // remove undefined items + + similarIndices = similarIndices.filter(function (s) { + return !!s; + }); + var indices = sortedIndices.slice(); + var stringIndices = indices.map(function (ind) { + return JSON.stringify(ind); + }); + indices = indices.filter(function (ind, p) { + return stringIndices.indexOf(JSON.stringify(ind)) === p; + }); + var sameScaleMinYArr = []; + var sameScaleMaxYArr = []; + minYArr.forEach(function (minYValue, yi) { + indices.forEach(function (scale, i) { + // we compare only the yIndex which exists in the indices array + if (scale.indexOf(yi) > -1) { + if (typeof sameScaleMinYArr[i] === 'undefined') { + sameScaleMinYArr[i] = []; + sameScaleMaxYArr[i] = []; + } + + sameScaleMinYArr[i].push({ + key: yi, + value: minYValue + }); + sameScaleMaxYArr[i].push({ + key: yi, + value: maxYArr[yi] + }); + } + }); + }); + var sameScaleMin = Array.apply(null, Array(indices.length)).map(Number.prototype.valueOf, Number.MIN_VALUE); + var sameScaleMax = Array.apply(null, Array(indices.length)).map(Number.prototype.valueOf, -Number.MAX_VALUE); + sameScaleMinYArr.forEach(function (s, i) { + s.forEach(function (sc, j) { + sameScaleMin[i] = Math.min(sc.value, sameScaleMin[i]); + }); + }); + sameScaleMaxYArr.forEach(function (s, i) { + s.forEach(function (sc, j) { + sameScaleMax[i] = Math.max(sc.value, sameScaleMax[i]); + }); + }); + minYArr.forEach(function (min, i) { + sameScaleMaxYArr.forEach(function (s, si) { + var minY = sameScaleMin[si]; + var maxY = sameScaleMax[si]; + + if (cnf.chart.stacked) { + // for stacked charts, we need to add the values + maxY = 0; + s.forEach(function (ind, k) { + maxY += ind.value; + + if (minY !== Number.MIN_VALUE) { + minY += sameScaleMinYArr[si][k].value; + } + }); + } + + s.forEach(function (ind, k) { + if (s[k].key === i) { + if (cnf.yaxis[i].min !== undefined) { + if (typeof cnf.yaxis[i].min === 'function') { + minY = cnf.yaxis[i].min(gl.minY); + } else { + minY = cnf.yaxis[i].min; + } + } + + if (cnf.yaxis[i].max !== undefined) { + if (typeof cnf.yaxis[i].max === 'function') { + maxY = cnf.yaxis[i].max(gl.maxY); + } else { + maxY = cnf.yaxis[i].max; + } + } + + _this2.setYScaleForIndex(i, minY, maxY); + } + }); + }); + }); + } + }, { + key: "autoScaleY", + value: function autoScaleY(ctx, yaxis, e) { + if (!ctx) { + ctx = this; + } + + var w = ctx.w; + + if (w.globals.isMultipleYAxis || w.globals.collapsedSeries.length) { + // The autoScale option for multiple y-axis is turned off as it leads to buggy behavior. + // Also, when a series is collapsed, it results in incorrect behavior. Hence turned it off for that too - fixes apexcharts.js#795 + return yaxis; + } + + var seriesX = w.globals.seriesX[0]; + var isStacked = w.config.chart.stacked; + yaxis.forEach(function (yaxe, yI) { + var firstXIndex = 0; + + for (var xi = 0; xi < seriesX.length; xi++) { + if (seriesX[xi] >= e.xaxis.min) { + firstXIndex = xi; + break; + } + } + + var initialMin = w.globals.minYArr[yI]; + var initialMax = w.globals.maxYArr[yI]; + var min, max; + var stackedSer = w.globals.stackedSeriesTotals; + w.globals.series.forEach(function (serie, sI) { + var firstValue = serie[firstXIndex]; + + if (isStacked) { + firstValue = stackedSer[firstXIndex]; + min = max = firstValue; + stackedSer.forEach(function (y, yI) { + if (seriesX[yI] <= e.xaxis.max && seriesX[yI] >= e.xaxis.min) { + if (y > max && y !== null) max = y; + if (serie[yI] < min && serie[yI] !== null) min = serie[yI]; + } + }); + } else { + min = max = firstValue; + serie.forEach(function (y, yI) { + if (seriesX[yI] <= e.xaxis.max && seriesX[yI] >= e.xaxis.min) { + var valMin = y; + var valMax = y; + w.globals.series.forEach(function (wS, wSI) { + if (y !== null) { + valMin = Math.min(wS[yI], valMin); + valMax = Math.max(wS[yI], valMax); + } + }); + if (valMax > max && valMax !== null) max = valMax; + if (valMin < min && valMin !== null) min = valMin; + } + }); + } + + if (min === undefined && max === undefined) { + min = initialMin; + max = initialMax; + } + + min *= min < 0 ? 1.1 : 0.9; + max *= max < 0 ? 0.9 : 1.1; + + if (max < 0 && max < initialMax) { + max = initialMax; + } + + if (min < 0 && min > initialMin) { + min = initialMin; + } + + if (yaxis.length > 1) { + yaxis[sI].min = yaxe.min === undefined ? min : yaxe.min; + yaxis[sI].max = yaxe.max === undefined ? max : yaxe.max; + } else { + yaxis[0].min = yaxe.min === undefined ? min : yaxe.min; + yaxis[0].max = yaxe.max === undefined ? max : yaxe.max; + } + }); + }); + return yaxis; + } + }]); + + return Range; + }(); + + /** + * Range is used to generates values between min and max. + * + * @module Range + **/ + + var Range$1 = + /*#__PURE__*/ + function () { + function Range$$1(ctx) { + _classCallCheck(this, Range$$1); + + this.ctx = ctx; + this.w = ctx.w; + this.scales = new Range(ctx); + } + + _createClass(Range$$1, [{ + key: "init", + value: function init() { + this.setYRange(); + this.setXRange(); + this.setZRange(); + } + }, { + key: "getMinYMaxY", + value: function getMinYMaxY(startingIndex) { + var lowestY = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : Number.MAX_VALUE; + var highestY = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : -Number.MAX_VALUE; + var len = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; + var gl = this.w.globals; + var maxY = -Number.MAX_VALUE; + var minY = Number.MIN_VALUE; + + if (len === null) { + len = startingIndex + 1; + } + + var series = gl.series; + var seriesMin = series; + var seriesMax = series; + + if (this.w.config.chart.type === 'candlestick') { + seriesMin = gl.seriesCandleL; + seriesMax = gl.seriesCandleH; + } else if (gl.isRangeData) { + seriesMin = gl.seriesRangeStart; + seriesMax = gl.seriesRangeEnd; + } + + for (var i = startingIndex; i < len; i++) { + gl.dataPoints = Math.max(gl.dataPoints, series[i].length); + + for (var j = 0; j < gl.series[i].length; j++) { + var val = series[i][j]; + + if (val !== null && Utils.isNumber(val)) { + maxY = Math.max(maxY, seriesMax[i][j]); + lowestY = Math.min(lowestY, seriesMin[i][j]); + highestY = Math.max(highestY, seriesMin[i][j]); + + if (this.w.config.chart.type === 'candlestick') { + maxY = Math.max(maxY, gl.seriesCandleO[i][j]); + maxY = Math.max(maxY, gl.seriesCandleH[i][j]); + maxY = Math.max(maxY, gl.seriesCandleL[i][j]); + maxY = Math.max(maxY, gl.seriesCandleC[i][j]); + highestY = maxY; + } + + if (Utils.isFloat(val)) { + val = Utils.noExponents(val); + gl.yValueDecimal = Math.max(gl.yValueDecimal, val.toString().split('.')[1].length); + } + + if (minY > seriesMin[i][j] && seriesMin[i][j] < 0) { + minY = seriesMin[i][j]; + } + } else { + gl.hasNullValues = true; + } + } + } + + return { + minY: minY, + maxY: maxY, + lowestY: lowestY, + highestY: highestY + }; + } + }, { + key: "setYRange", + value: function setYRange() { + var gl = this.w.globals; + var cnf = this.w.config; + gl.maxY = -Number.MAX_VALUE; + gl.minY = Number.MIN_VALUE; + var lowestYInAllSeries = Number.MAX_VALUE; + + if (gl.isMultipleYAxis) { + // we need to get minY and maxY for multiple y axis + for (var i = 0; i < gl.series.length; i++) { + var minYMaxYArr = this.getMinYMaxY(i, lowestYInAllSeries, null, i + 1); + gl.minYArr.push(minYMaxYArr.minY); + gl.maxYArr.push(minYMaxYArr.maxY); + lowestYInAllSeries = minYMaxYArr.lowestY; + } + } // and then, get the minY and maxY from all series + + + var minYMaxY = this.getMinYMaxY(0, lowestYInAllSeries, null, gl.series.length); + gl.minY = minYMaxY.minY; + gl.maxY = minYMaxY.maxY; + lowestYInAllSeries = minYMaxY.lowestY; + + if (cnf.chart.stacked) { + // for stacked charts, we calculate each series's parallel values. i.e, series[0][j] + series[1][j] .... [series[i.length][j]] and get the max out of it + var stackedPoss = []; + var stackedNegs = []; + + if (gl.series.length) { + for (var j = 0; j < gl.series[gl.maxValsInArrayIndex].length; j++) { + var poss = 0; + var negs = 0; + + for (var _i = 0; _i < gl.series.length; _i++) { + if (gl.series[_i][j] !== null && Utils.isNumber(gl.series[_i][j])) { + if (gl.series[_i][j] > 0) { + // 0.0001 fixes #185 when values are very small + poss = poss + parseFloat(gl.series[_i][j]) + 0.0001; + } else { + negs = negs + parseFloat(gl.series[_i][j]); + } + } + + if (_i === gl.series.length - 1) { + // push all the totals to the array for future use + stackedPoss.push(poss); + stackedNegs.push(negs); + } + } + } + } // get the max/min out of the added parallel values + + + for (var z = 0; z < stackedPoss.length; z++) { + gl.maxY = Math.max(gl.maxY, stackedPoss[z]); + gl.minY = Math.min(gl.minY, stackedNegs[z]); + } + } // if the numbers are too big, reduce the range + // for eg, if number is between 100000-110000, putting 0 as the lowest value is not so good idea. So change the gl.minY for line/area/candlesticks + + + if (cnf.chart.type === 'line' || cnf.chart.type === 'area' || cnf.chart.type === 'candlestick') { + if (gl.minY === Number.MIN_VALUE && lowestYInAllSeries !== -Number.MAX_VALUE && lowestYInAllSeries !== gl.maxY // single value possibility + ) { + var diff = gl.maxY - lowestYInAllSeries; + + if (lowestYInAllSeries >= 0 && lowestYInAllSeries <= 10) { + // if minY is already 0/low value, we don't want to go negatives here - so this check is essential. + diff = 0; + } + + gl.minY = lowestYInAllSeries - diff * 5 / 100; // if (lowestYInAllSeries > 0 && gl.minY < 0) { + + /* fix https://github.com/apexcharts/apexcharts.js/issues/614 */ + // gl.minY = 0 + // } + + /* fix https://github.com/apexcharts/apexcharts.js/issues/426 */ + + gl.maxY = gl.maxY + diff * 5 / 100; + } + } + + cnf.yaxis.map(function (yaxe, index) { + // override all min/max values by user defined values (y axis) + if (yaxe.max !== undefined) { + if (typeof yaxe.max === 'number') { + gl.maxYArr[index] = yaxe.max; + } else if (typeof yaxe.max === 'function') { + gl.maxYArr[index] = yaxe.max(gl.maxY); + } // gl.maxY is for single y-axis chart, it will be ignored in multi-yaxis + + + gl.maxY = gl.maxYArr[index]; + } + + if (yaxe.min !== undefined) { + if (typeof yaxe.min === 'number') { + gl.minYArr[index] = yaxe.min; + } else if (typeof yaxe.min === 'function') { + gl.minYArr[index] = yaxe.min(gl.minY); + } // gl.minY is for single y-axis chart, it will be ignored in multi-yaxis + + + gl.minY = gl.minYArr[index]; + } + }); // for horizontal bar charts, we need to check xaxis min/max as user may have specified there + + if (gl.isBarHorizontal) { + if (cnf.xaxis.min !== undefined && typeof cnf.xaxis.min === 'number') { + gl.minY = cnf.xaxis.min; + } + + if (cnf.xaxis.max !== undefined && typeof cnf.xaxis.max === 'number') { + gl.maxY = cnf.xaxis.max; + } + } // for multi y-axis we need different scales for each + + + if (gl.isMultipleYAxis) { + this.scales.setMultipleYScales(); + gl.minY = lowestYInAllSeries; + gl.yAxisScale.forEach(function (scale, i) { + gl.minYArr[i] = scale.niceMin; + gl.maxYArr[i] = scale.niceMax; + }); + } else { + this.scales.setYScaleForIndex(0, gl.minY, gl.maxY); + gl.minY = gl.yAxisScale[0].niceMin; + gl.maxY = gl.yAxisScale[0].niceMax; + gl.minYArr[0] = gl.yAxisScale[0].niceMin; + gl.maxYArr[0] = gl.yAxisScale[0].niceMax; + } + + return { + minY: gl.minY, + maxY: gl.maxY, + minYArr: gl.minYArr, + maxYArr: gl.maxYArr + }; + } + }, { + key: "setXRange", + value: function setXRange() { + var gl = this.w.globals; + var cnf = this.w.config; + var isXNumeric = cnf.xaxis.type === 'numeric' || cnf.xaxis.type === 'datetime' || cnf.xaxis.type === 'category' && !gl.noLabelsProvided || gl.noLabelsProvided || gl.isXNumeric; // minX maxX starts here + + if (gl.isXNumeric) { + for (var i = 0; i < gl.series.length; i++) { + if (gl.labels[i]) { + for (var j = 0; j < gl.labels[i].length; j++) { + if (gl.labels[i][j] !== null && Utils.isNumber(gl.labels[i][j])) { + gl.maxX = Math.max(gl.maxX, gl.labels[i][j]); + gl.initialmaxX = Math.max(gl.maxX, gl.labels[i][j]); + gl.minX = Math.min(gl.minX, gl.labels[i][j]); + gl.initialminX = Math.min(gl.minX, gl.labels[i][j]); + } + } + } + } + } + + if (gl.noLabelsProvided) { + if (cnf.xaxis.categories.length === 0) { + gl.maxX = gl.labels[gl.labels.length - 1]; + gl.initialmaxX = gl.labels[gl.labels.length - 1]; + gl.minX = 1; + gl.initialminX = 1; + } + } // bar chart specific + // for numeric xaxis, we need to adjust some padding left and right for bar charts + + + if (gl.comboChartsHasBars || cnf.chart.type === 'candlestick' || cnf.chart.type === 'bar' && gl.isXNumeric) { + if (cnf.xaxis.type !== 'category' || gl.isXNumeric) { + var t = gl.svgWidth / gl.dataPoints * (Math.abs(gl.maxX - gl.minX) / gl.svgWidth); // some padding to the left to prevent cropping of the bars + + var minX = gl.minX - t / 2; + gl.minX = minX; + gl.initialminX = minX; // some padding to the right to prevent cropping of the bars + + var maxX = gl.maxX + t / ((gl.series.length + 1) / gl.series.length); + gl.maxX = maxX; + gl.initialmaxX = maxX; + } + } + + if ((gl.isXNumeric || gl.noLabelsProvided) && (!cnf.xaxis.convertedCatToNumeric || gl.dataFormatXNumeric)) { + var ticks; + + if (cnf.xaxis.tickAmount === undefined) { + ticks = Math.round(gl.svgWidth / 150); // no labels provided and total number of dataPoints is less than 20 + + if (cnf.xaxis.type === 'numeric' && gl.dataPoints < 20) { + ticks = gl.dataPoints - 1; + } // this check is for when ticks exceeds total datapoints and that would result in duplicate labels + + + if (ticks > gl.dataPoints && gl.dataPoints !== 0) { + ticks = gl.dataPoints - 1; + } + } else if (cnf.xaxis.tickAmount === 'dataPoints') { + ticks = gl.series[gl.maxValsInArrayIndex].length - 1; + } else { + ticks = cnf.xaxis.tickAmount; + } // override all min/max values by user defined values (x axis) + + + if (cnf.xaxis.max !== undefined && typeof cnf.xaxis.max === 'number') { + gl.maxX = cnf.xaxis.max; + } + + if (cnf.xaxis.min !== undefined && typeof cnf.xaxis.min === 'number') { + gl.minX = cnf.xaxis.min; + } // if range is provided, adjust the new minX + + + if (cnf.xaxis.range !== undefined) { + gl.minX = gl.maxX - cnf.xaxis.range; + } + + if (gl.minX !== Number.MAX_VALUE && gl.maxX !== -Number.MAX_VALUE) { + gl.xAxisScale = this.scales.linearScale(gl.minX, gl.maxX, ticks); + } else { + gl.xAxisScale = this.scales.linearScale(1, ticks, ticks); + + if (gl.noLabelsProvided && gl.labels.length > 0) { + gl.xAxisScale = this.scales.linearScale(1, gl.labels.length, ticks - 1); // this is the only place seriesX is again mutated + + gl.seriesX = gl.labels.slice(); + } + } // we will still store these labels as the count for this will be different (to draw grid and labels placement) + + + if (isXNumeric) { + gl.labels = gl.xAxisScale.result.slice(); + } + } + + if (gl.minX === gl.maxX) { + // single dataPoint + if (cnf.xaxis.type === 'datetime') { + var newMinX = new Date(gl.minX); + newMinX.setDate(newMinX.getDate() - 2); + gl.minX = new Date(newMinX).getTime(); + var newMaxX = new Date(gl.maxX); + newMaxX.setDate(newMaxX.getDate() + 2); + gl.maxX = new Date(newMaxX).getTime(); + } else if (cnf.xaxis.type === 'numeric' || cnf.xaxis.type === 'category' && !gl.noLabelsProvided) { + gl.minX = gl.minX - 2; + gl.maxX = gl.maxX + 2; + } + } + + if (gl.isXNumeric) { + // get the least x diff if numeric x axis is present + gl.seriesX.forEach(function (sX, i) { + if (sX.length === 1) { + // a small hack to prevent overlapping multiple bars when there is just 1 datapoint in bar series. + // fix #811 + sX.push(gl.seriesX[gl.maxValsInArrayIndex][gl.seriesX[gl.maxValsInArrayIndex].length - 1]); + } + + sX.forEach(function (s, j) { + if (j > 0) { + var xDiff = s - gl.seriesX[i][j - 1]; + gl.minXDiff = Math.min(xDiff, gl.minXDiff); + } + }); + }); + this.calcMinXDiffForTinySeries(); + } + + return { + minX: gl.minX, + maxX: gl.maxX + }; + } + }, { + key: "calcMinXDiffForTinySeries", + value: function calcMinXDiffForTinySeries() { + var w = this.w; + var len = w.globals.labels.length; + + if (w.globals.labels.length === 1) { + w.globals.minXDiff = (w.globals.maxX - w.globals.minX) / len / 3; + } else { + if (w.globals.minXDiff === Number.MAX_VALUE) { + // possibly a single dataPoint (fixes react-apexcharts/issue#34) + if (w.globals.timelineLabels.length > 0) { + len = w.globals.timelineLabels.length; + } + + if (len < 3) { + len = 3; + } + + w.globals.minXDiff = (w.globals.maxX - w.globals.minX) / len; + } + } + + return w.globals.minXDiff; + } + }, { + key: "setZRange", + value: function setZRange() { + var gl = this.w.globals; // minZ, maxZ starts here + + if (gl.isDataXYZ) { + for (var i = 0; i < gl.series.length; i++) { + if (typeof gl.seriesZ[i] !== 'undefined') { + for (var j = 0; j < gl.seriesZ[i].length; j++) { + if (gl.seriesZ[i][j] !== null && Utils.isNumber(gl.seriesZ[i][j])) { + gl.maxZ = Math.max(gl.maxZ, gl.seriesZ[i][j]); + gl.minZ = Math.min(gl.minZ, gl.seriesZ[i][j]); + } + } + } + } + } + } + }]); + + return Range$$1; + }(); + + /** + * ApexCharts TimeScale Class for generating time ticks for x-axis. + * + * @module TimeScale + **/ + + var TimeScale = + /*#__PURE__*/ + function () { + function TimeScale(ctx) { + _classCallCheck(this, TimeScale); + + this.ctx = ctx; + this.w = ctx.w; + this.timeScaleArray = []; + } + + _createClass(TimeScale, [{ + key: "calculateTimeScaleTicks", + value: function calculateTimeScaleTicks(minX, maxX) { + var _this = this; + + var w = this.w; // null check when no series to show + + if (w.globals.allSeriesCollapsed) { + w.globals.labels = []; + w.globals.timelineLabels = []; + return []; + } + + var dt = new DateTime(this.ctx); + var daysDiff = (maxX - minX) / (1000 * 60 * 60 * 24); + this.determineInterval(daysDiff); + w.globals.disableZoomIn = false; + w.globals.disableZoomOut = false; + + if (daysDiff < 0.005) { + w.globals.disableZoomIn = true; + } else if (daysDiff > 50000) { + w.globals.disableZoomOut = true; + } + + var timeIntervals = dt.getTimeUnitsfromTimestamp(minX, maxX); + var daysWidthOnXAxis = w.globals.gridWidth / daysDiff; + var hoursWidthOnXAxis = daysWidthOnXAxis / 24; + var minutesWidthOnXAxis = hoursWidthOnXAxis / 60; + var numberOfHours = Math.floor(daysDiff * 24); + var numberOfMinutes = Math.floor(daysDiff * 24 * 60); + var numberOfDays = Math.floor(daysDiff); + var numberOfMonths = Math.floor(daysDiff / 30); + var numberOfYears = Math.floor(daysDiff / 365); + var firstVal = { + minMinute: timeIntervals.minMinute, + minHour: timeIntervals.minHour, + minDate: timeIntervals.minDate, + minMonth: timeIntervals.minMonth, + minYear: timeIntervals.minYear + }; + var currentMinute = firstVal.minMinute; + var currentHour = firstVal.minHour; + var currentMonthDate = firstVal.minDate; + var currentDate = firstVal.minDate; + var currentMonth = firstVal.minMonth; + var currentYear = firstVal.minYear; + var params = { + firstVal: firstVal, + currentMinute: currentMinute, + currentHour: currentHour, + currentMonthDate: currentMonthDate, + currentDate: currentDate, + currentMonth: currentMonth, + currentYear: currentYear, + daysWidthOnXAxis: daysWidthOnXAxis, + hoursWidthOnXAxis: hoursWidthOnXAxis, + minutesWidthOnXAxis: minutesWidthOnXAxis, + numberOfMinutes: numberOfMinutes, + numberOfHours: numberOfHours, + numberOfDays: numberOfDays, + numberOfMonths: numberOfMonths, + numberOfYears: numberOfYears + }; + + switch (this.tickInterval) { + case 'years': + { + this.generateYearScale(params); + break; + } + + case 'months': + case 'half_year': + { + this.generateMonthScale(params); + break; + } + + case 'months_days': + case 'months_fortnight': + case 'days': + case 'week_days': + { + this.generateDayScale(params); + break; + } + + case 'hours': + { + this.generateHourScale(params); + break; + } + + case 'minutes': + this.generateMinuteScale(params); + break; + } // first, we will adjust the month values index + // as in the upper function, it is starting from 0 + // we will start them from 1 + + + var adjustedMonthInTimeScaleArray = this.timeScaleArray.map(function (ts) { + var defaultReturn = { + position: ts.position, + unit: ts.unit, + year: ts.year, + day: ts.day ? ts.day : 1, + hour: ts.hour ? ts.hour : 0, + month: ts.month + 1 + }; + + if (ts.unit === 'month') { + return _objectSpread({}, defaultReturn, { + day: 1, + value: ts.value + 1 + }); + } else if (ts.unit === 'day' || ts.unit === 'hour') { + return _objectSpread({}, defaultReturn, { + value: ts.value + }); + } else if (ts.unit === 'minute') { + return _objectSpread({}, defaultReturn, { + value: ts.value, + minute: ts.value + }); + } + + return ts; + }); + var filteredTimeScale = adjustedMonthInTimeScaleArray.filter(function (ts) { + var modulo = 1; + var ticks = Math.ceil(w.globals.gridWidth / 120); + var value = ts.value; + + if (w.config.xaxis.tickAmount !== undefined) { + ticks = w.config.xaxis.tickAmount; + } + + if (adjustedMonthInTimeScaleArray.length > ticks) { + modulo = Math.floor(adjustedMonthInTimeScaleArray.length / ticks); + } + + var shouldNotSkipUnit = false; // there is a big change in unit i.e days to months + + var shouldNotPrint = false; // should skip these values + + switch (_this.tickInterval) { + case 'half_year': + modulo = 7; + + if (ts.unit === 'year') { + shouldNotSkipUnit = true; + } + + break; + + case 'months': + modulo = 1; + + if (ts.unit === 'year') { + shouldNotSkipUnit = true; + } + + break; + + case 'months_fortnight': + modulo = 15; + + if (ts.unit === 'year' || ts.unit === 'month') { + shouldNotSkipUnit = true; + } + + if (value === 30) { + shouldNotPrint = true; + } + + break; + + case 'months_days': + modulo = 10; + + if (ts.unit === 'month') { + shouldNotSkipUnit = true; + } + + if (value === 30) { + shouldNotPrint = true; + } + + break; + + case 'week_days': + modulo = 8; + + if (ts.unit === 'month') { + shouldNotSkipUnit = true; + } + + break; + + case 'days': + modulo = 1; + + if (ts.unit === 'month') { + shouldNotSkipUnit = true; + } + + break; + + case 'hours': + if (ts.unit === 'day') { + shouldNotSkipUnit = true; + } + + break; + + case 'minutes': + if (value % 5 !== 0) { + shouldNotPrint = true; + } + + break; + } + + if (_this.tickInterval === 'minutes' || _this.tickInterval === 'hours') { + if (!shouldNotPrint) { + return true; + } + } else { + if ((value % modulo === 0 || shouldNotSkipUnit) && !shouldNotPrint) { + return true; + } + } + }); + return filteredTimeScale; + } + }, { + key: "recalcDimensionsBasedOnFormat", + value: function recalcDimensionsBasedOnFormat(filteredTimeScale, inverted) { + var w = this.w; + var reformattedTimescaleArray = this.formatDates(filteredTimeScale); + var removedOverlappingTS = this.removeOverlappingTS(reformattedTimescaleArray); + + if (!inverted) { + w.globals.timelineLabels = removedOverlappingTS.slice(); + } else { + w.globals.invertedTimelineLabels = removedOverlappingTS.slice(); + } // at this stage, we need to re-calculate coords of the grid as timeline labels may have altered the xaxis labels coords + // The reason we can't do this prior to this stage is because timeline labels depends on gridWidth, and as the ticks are calculated based on available gridWidth, there can be unknown number of ticks generated for different minX and maxX + // Dependency on Dimensions(), need to refactor correctly + // TODO - find an alternate way to avoid calling this Heavy method twice + + + var dimensions = new Dimensions(this.ctx); + dimensions.plotCoords(); + } + }, { + key: "determineInterval", + value: function determineInterval(daysDiff) { + switch (true) { + case daysDiff > 1825: + // difference is more than 5 years + this.tickInterval = 'years'; + break; + + case daysDiff > 800 && daysDiff <= 1825: + this.tickInterval = 'half_year'; + break; + + case daysDiff > 180 && daysDiff <= 800: + this.tickInterval = 'months'; + break; + + case daysDiff > 90 && daysDiff <= 180: + this.tickInterval = 'months_fortnight'; + break; + + case daysDiff > 60 && daysDiff <= 90: + this.tickInterval = 'months_days'; + break; + + case daysDiff > 30 && daysDiff <= 60: + this.tickInterval = 'week_days'; + break; + + case daysDiff > 2 && daysDiff <= 30: + this.tickInterval = 'days'; + break; + + case daysDiff > 0.1 && daysDiff <= 2: + // less than 2 days + this.tickInterval = 'hours'; + break; + + case daysDiff < 0.1: + this.tickInterval = 'minutes'; + break; + + default: + this.tickInterval = 'days'; + break; + } + } + }, { + key: "generateYearScale", + value: function generateYearScale(params) { + var firstVal = params.firstVal, + currentMonth = params.currentMonth, + currentYear = params.currentYear, + daysWidthOnXAxis = params.daysWidthOnXAxis, + numberOfYears = params.numberOfYears; + var firstTickValue = firstVal.minYear; + var firstTickPosition = 0; + var dt = new DateTime(this.ctx); + var unit = 'year'; + + if (firstVal.minDate > 1 && firstVal.minMonth > 0) { + var remainingDays = dt.determineRemainingDaysOfYear(firstVal.minYear, firstVal.minMonth, firstVal.minDate); // remainingDaysofFirstMonth is used to reacht the 2nd tick position + + var remainingDaysOfFirstYear = dt.determineDaysOfYear(firstVal.minYear) - remainingDays + 1; // calculate the first tick position + + firstTickPosition = remainingDaysOfFirstYear * daysWidthOnXAxis; + firstTickValue = firstVal.minYear + 1; // push the first tick in the array + + this.timeScaleArray.push({ + position: firstTickPosition, + value: firstTickValue, + unit: unit, + year: firstTickValue, + month: Utils.monthMod(currentMonth + 1) + }); + } else if (firstVal.minDate === 1 && firstVal.minMonth === 0) { + // push the first tick in the array + this.timeScaleArray.push({ + position: firstTickPosition, + value: firstTickValue, + unit: unit, + year: currentYear, + month: Utils.monthMod(currentMonth + 1) + }); + } + + var year = firstTickValue; + var pos = firstTickPosition; // keep drawing rest of the ticks + + for (var i = 0; i < numberOfYears; i++) { + year++; + pos = dt.determineDaysOfYear(year - 1) * daysWidthOnXAxis + pos; + this.timeScaleArray.push({ + position: pos, + value: year, + unit: unit, + year: year, + month: 1 + }); + } + } + }, { + key: "generateMonthScale", + value: function generateMonthScale(params) { + var firstVal = params.firstVal, + currentMonthDate = params.currentMonthDate, + currentMonth = params.currentMonth, + currentYear = params.currentYear, + daysWidthOnXAxis = params.daysWidthOnXAxis, + numberOfMonths = params.numberOfMonths; + var firstTickValue = currentMonth; + var firstTickPosition = 0; + var dt = new DateTime(this.ctx); + var unit = 'month'; + var yrCounter = 0; + + if (firstVal.minDate > 1) { + // remainingDaysofFirstMonth is used to reacht the 2nd tick position + var remainingDaysOfFirstMonth = dt.determineDaysOfMonths(currentMonth + 1, firstVal.minYear) - currentMonthDate + 1; // calculate the first tick position + + firstTickPosition = remainingDaysOfFirstMonth * daysWidthOnXAxis; + firstTickValue = Utils.monthMod(currentMonth + 1); + var year = currentYear + yrCounter; + + var _month = Utils.monthMod(firstTickValue); + + var value = firstTickValue; // it's Jan, so update the year + + if (firstTickValue === 0) { + unit = 'year'; + value = year; + _month = 1; + yrCounter += 1; + year = year + yrCounter; + } // push the first tick in the array + + + this.timeScaleArray.push({ + position: firstTickPosition, + value: value, + unit: unit, + year: year, + month: _month + }); + } else { + // push the first tick in the array + this.timeScaleArray.push({ + position: firstTickPosition, + value: firstTickValue, + unit: unit, + year: currentYear, + month: Utils.monthMod(currentMonth) + }); + } + + var month = firstTickValue + 1; + var pos = firstTickPosition; // keep drawing rest of the ticks + + for (var i = 0, j = 1; i < numberOfMonths; i++, j++) { + month = Utils.monthMod(month); + + if (month === 0) { + unit = 'year'; + yrCounter += 1; + } else { + unit = 'month'; + } + + var _year = currentYear + Math.floor(month / 12) + yrCounter; + + pos = dt.determineDaysOfMonths(month, _year) * daysWidthOnXAxis + pos; + var monthVal = month === 0 ? _year : month; + this.timeScaleArray.push({ + position: pos, + value: monthVal, + unit: unit, + year: _year, + month: month === 0 ? 1 : month + }); + month++; + } + } + }, { + key: "generateDayScale", + value: function generateDayScale(params) { + var firstVal = params.firstVal, + currentMonth = params.currentMonth, + currentYear = params.currentYear, + hoursWidthOnXAxis = params.hoursWidthOnXAxis, + numberOfDays = params.numberOfDays; + var dt = new DateTime(this.ctx); + var unit = 'day'; + var remainingHours = 24 - firstVal.minHour; + var yrCounter = 0; // calculate the first tick position + + var firstTickPosition = remainingHours * hoursWidthOnXAxis; + var firstTickValue = firstVal.minDate + 1; + var val = firstTickValue; + + var changeMonth = function changeMonth(dateVal, month, year) { + var monthdays = dt.determineDaysOfMonths(month + 1, year); + + if (dateVal > monthdays) { + month = month + 1; + date = 1; + unit = 'month'; + val = month; + return month; + } + + return month; + }; + + var date = firstTickValue; + var month = changeMonth(date, currentMonth, currentYear); // push the first tick in the array + + this.timeScaleArray.push({ + position: firstTickPosition, + value: val, + unit: unit, + year: currentYear, + month: Utils.monthMod(month), + day: date + }); + var pos = firstTickPosition; // keep drawing rest of the ticks + + for (var i = 0; i < numberOfDays; i++) { + date += 1; + unit = 'day'; + month = changeMonth(date, month, currentYear + Math.floor(month / 12) + yrCounter); + var year = currentYear + Math.floor(month / 12) + yrCounter; + pos = 24 * hoursWidthOnXAxis + pos; + + var _val = date === 1 ? Utils.monthMod(month) : date; + + this.timeScaleArray.push({ + position: pos, + value: _val, + unit: unit, + year: year, + month: Utils.monthMod(month), + day: _val + }); + } + } + }, { + key: "generateHourScale", + value: function generateHourScale(params) { + var firstVal = params.firstVal, + currentDate = params.currentDate, + currentMonth = params.currentMonth, + currentYear = params.currentYear, + minutesWidthOnXAxis = params.minutesWidthOnXAxis, + numberOfHours = params.numberOfHours; + var dt = new DateTime(this.ctx); + var yrCounter = 0; + var unit = 'hour'; + + var changeDate = function changeDate(dateVal, month) { + var monthdays = dt.determineDaysOfMonths(month + 1, currentYear); + + if (dateVal > monthdays) { + date = 1; + month = month + 1; + } + + return { + month: month, + date: date + }; + }; + + var changeMonth = function changeMonth(dateVal, month) { + var monthdays = dt.determineDaysOfMonths(month + 1, currentYear); + + if (dateVal > monthdays) { + month = month + 1; + return month; + } + + return month; + }; + + var remainingMins = 60 - firstVal.minMinute; + var firstTickPosition = remainingMins * minutesWidthOnXAxis; + var firstTickValue = firstVal.minHour + 1; + var hour = firstTickValue + 1; + + if (remainingMins === 60) { + firstTickPosition = 0; + firstTickValue = firstVal.minHour; + hour = firstTickValue + 1; + } + + var date = currentDate; + var month = changeMonth(date, currentMonth); // push the first tick in the array + + this.timeScaleArray.push({ + position: firstTickPosition, + value: firstTickValue, + unit: unit, + day: date, + hour: hour, + year: currentYear, + month: Utils.monthMod(month) + }); + var pos = firstTickPosition; // keep drawing rest of the ticks + + for (var i = 0; i < numberOfHours; i++) { + unit = 'hour'; + + if (hour >= 24) { + hour = 0; + date += 1; + unit = 'day'; + var checkNextMonth = changeDate(date, month); + month = checkNextMonth.month; + month = changeMonth(date, month); + } + + var year = currentYear + Math.floor(month / 12) + yrCounter; + pos = hour === 0 && i === 0 ? remainingMins * minutesWidthOnXAxis : 60 * minutesWidthOnXAxis + pos; + var val = hour === 0 ? date : hour; + this.timeScaleArray.push({ + position: pos, + value: val, + unit: unit, + hour: hour, + day: date, + year: year, + month: Utils.monthMod(month) + }); + hour++; + } + } + }, { + key: "generateMinuteScale", + value: function generateMinuteScale(params) { + var firstVal = params.firstVal, + currentMinute = params.currentMinute, + currentHour = params.currentHour, + currentDate = params.currentDate, + currentMonth = params.currentMonth, + currentYear = params.currentYear, + minutesWidthOnXAxis = params.minutesWidthOnXAxis, + numberOfMinutes = params.numberOfMinutes; + var yrCounter = 0; + var unit = 'minute'; + var remainingMins = currentMinute - firstVal.minMinute; + var firstTickPosition = minutesWidthOnXAxis - remainingMins; + var firstTickValue = firstVal.minMinute + 1; + var minute = firstTickValue + 1; + var date = currentDate; + var month = currentMonth; + var year = currentYear; + var hour = currentHour; // push the first tick in the array + + this.timeScaleArray.push({ + position: firstTickPosition, + value: firstTickValue, + unit: unit, + day: date, + hour: hour, + minute: minute, + year: year, + month: Utils.monthMod(month) + }); + var pos = firstTickPosition; // keep drawing rest of the ticks + + for (var i = 0; i < numberOfMinutes; i++) { + if (minute >= 60) { + minute = 0; + hour += 1; + + if (hour === 24) { + hour = 0; + } + } + + var _year2 = currentYear + Math.floor(month / 12) + yrCounter; + + pos = minutesWidthOnXAxis + pos; + var val = minute; + this.timeScaleArray.push({ + position: pos, + value: val, + unit: unit, + hour: hour, + minute: minute, + day: date, + year: _year2, + month: Utils.monthMod(month) + }); + minute++; + } + } + }, { + key: "createRawDateString", + value: function createRawDateString(ts, value) { + var raw = ts.year; + raw += '-' + ('0' + ts.month.toString()).slice(-2); // unit is day + + if (ts.unit === 'day') { + raw += ts.unit === 'day' ? '-' + ('0' + value).slice(-2) : '-01'; + } else { + raw += '-' + ('0' + (ts.day ? ts.day : '1')).slice(-2); + } // unit is hour + + + if (ts.unit === 'hour') { + raw += ts.unit === 'hour' ? 'T' + ('0' + value).slice(-2) : 'T00'; + } else { + raw += 'T' + ('0' + (ts.hour ? ts.hour : '0')).slice(-2); + } // unit is minute + + + raw += ts.unit === 'minute' ? ':' + ('0' + value).slice(-2) + ':00.000Z' : ':00:00.000Z'; + return raw; + } + }, { + key: "formatDates", + value: function formatDates(filteredTimeScale) { + var _this2 = this; + + var w = this.w; + var reformattedTimescaleArray = filteredTimeScale.map(function (ts) { + var value = ts.value.toString(); + var dt = new DateTime(_this2.ctx); + + var raw = _this2.createRawDateString(ts, value); // parse the whole ISO datestring + + + var dateString = new Date(Date.parse(raw)); + + if (w.config.xaxis.labels.format === undefined) { + var customFormat = 'dd MMM'; + var dtFormatter = w.config.xaxis.labels.datetimeFormatter; + if (ts.unit === 'year') customFormat = dtFormatter.year; + if (ts.unit === 'month') customFormat = dtFormatter.month; + if (ts.unit === 'day') customFormat = dtFormatter.day; + if (ts.unit === 'hour') customFormat = dtFormatter.hour; + if (ts.unit === 'minute') customFormat = dtFormatter.minute; + value = dt.formatDate(dateString, customFormat, true, false); + } else { + value = dt.formatDate(dateString, w.config.xaxis.labels.format); + } + + return { + dateString: raw, + position: ts.position, + value: value, + unit: ts.unit, + year: ts.year, + month: ts.month + }; + }); + return reformattedTimescaleArray; + } + }, { + key: "removeOverlappingTS", + value: function removeOverlappingTS(arr) { + var _this3 = this; + + var graphics = new Graphics(this.ctx); + var lastDrawnIndex = 0; + var filteredArray = arr.map(function (item, index) { + if (index > 0 && _this3.w.config.xaxis.labels.hideOverlappingLabels) { + var prevLabelWidth = graphics.getTextRects(arr[lastDrawnIndex].value).width; + var prevPos = arr[lastDrawnIndex].position; + var pos = item.position; + + if (pos > prevPos + prevLabelWidth + 10) { + lastDrawnIndex = index; + return item; + } else { + return null; + } + } else { + return item; + } + }); + filteredArray = filteredArray.filter(function (f) { + return f !== null; + }); + return filteredArray; + } + }]); + + return TimeScale; + }(); + + /** + * ApexCharts Core Class responsible for major calculations and creating elements. + * + * @module Core + **/ + + var Core = + /*#__PURE__*/ + function () { + function Core(el, ctx) { + _classCallCheck(this, Core); + + this.ctx = ctx; + this.w = ctx.w; + this.el = el; + this.coreUtils = new CoreUtils(this.ctx); + this.twoDSeries = []; + this.threeDSeries = []; + this.twoDSeriesX = []; + } // get data and store into appropriate vars + + + _createClass(Core, [{ + key: "setupElements", + value: function setupElements() { + var gl = this.w.globals; + var cnf = this.w.config; // const graphics = new Graphics(this.ctx) + + var ct = cnf.chart.type; + var axisChartsArrTypes = ['line', 'area', 'bar', 'rangeBar', // 'rangeArea', + 'candlestick', 'radar', 'scatter', 'bubble', 'heatmap']; + var xyChartsArrTypes = ['line', 'area', 'bar', 'rangeBar', // 'rangeArea', + 'candlestick', 'scatter', 'bubble']; + gl.axisCharts = axisChartsArrTypes.indexOf(ct) > -1; + gl.xyCharts = xyChartsArrTypes.indexOf(ct) > -1; + gl.isBarHorizontal = (cnf.chart.type === 'bar' || cnf.chart.type === 'rangeBar') && cnf.plotOptions.bar.horizontal; + gl.chartClass = '.apexcharts' + gl.cuid; + gl.dom.baseEl = this.el; + gl.dom.elWrap = document.createElement('div'); + Graphics.setAttrs(gl.dom.elWrap, { + id: gl.chartClass.substring(1), + class: 'apexcharts-canvas ' + gl.chartClass.substring(1) + }); + this.el.appendChild(gl.dom.elWrap); + gl.dom.Paper = new window.SVG.Doc(gl.dom.elWrap); + gl.dom.Paper.attr({ + class: 'apexcharts-svg', + 'xmlns:data': 'ApexChartsNS', + transform: "translate(".concat(cnf.chart.offsetX, ", ").concat(cnf.chart.offsetY, ")") + }); + gl.dom.Paper.node.style.background = cnf.chart.background; + this.setSVGDimensions(); + gl.dom.elGraphical = gl.dom.Paper.group().attr({ + class: 'apexcharts-inner apexcharts-graphical' + }); + gl.dom.elDefs = gl.dom.Paper.defs(); + gl.dom.elLegendWrap = document.createElement('div'); + gl.dom.elLegendWrap.classList.add('apexcharts-legend'); + gl.dom.elWrap.appendChild(gl.dom.elLegendWrap); // gl.dom.Paper.add(gl.dom.elLegendWrap) + + gl.dom.Paper.add(gl.dom.elGraphical); + gl.dom.elGraphical.add(gl.dom.elDefs); + } + }, { + key: "plotChartType", + value: function plotChartType(ser, xyRatios) { + var w = this.w; + var cnf = w.config; + var gl = w.globals; + var lineSeries = { + series: [], + i: [] + }; + var areaSeries = { + series: [], + i: [] + }; + var scatterSeries = { + series: [], + i: [] + }; + var columnSeries = { + series: [], + i: [] + }; + var candlestickSeries = { + series: [], + i: [] + }; + gl.series.map(function (series, st) { + // if user has specified a particular type for particular series + if (typeof ser[st].type !== 'undefined') { + if (ser[st].type === 'column' || ser[st].type === 'bar') { + w.config.plotOptions.bar.horizontal = false; // horizontal bars not supported in mixed charts, hence forcefully set to false + + columnSeries.series.push(series); + columnSeries.i.push(st); + } else if (ser[st].type === 'area') { + areaSeries.series.push(series); + areaSeries.i.push(st); + } else if (ser[st].type === 'line') { + lineSeries.series.push(series); + lineSeries.i.push(st); + } else if (ser[st].type === 'scatter') { + scatterSeries.series.push(series); + scatterSeries.i.push(st); + } else if (ser[st].type === 'bubble') ; else if (ser[st].type === 'candlestick') { + candlestickSeries.series.push(series); + candlestickSeries.i.push(st); + } else { + // user has specified type, but it is not valid (other than line/area/column) + console.warn('You have specified an unrecognized chart type. Available types for this propery are line/area/column/bar/scatter/bubble'); + } + + gl.comboCharts = true; + } else { + lineSeries.series.push(series); + lineSeries.i.push(st); + } + }); + var line = new Line(this.ctx, xyRatios); + var candlestick = new CandleStick(this.ctx, xyRatios); + var pie = new Pie(this.ctx); + var radialBar = new Radial(this.ctx); + var rangeBar = new RangeBar(this.ctx, xyRatios); + var radar = new Radar(this.ctx); + var elGraph = []; + + if (gl.comboCharts) { + if (areaSeries.series.length > 0) { + elGraph.push(line.draw(areaSeries.series, 'area', areaSeries.i)); + } + + if (columnSeries.series.length > 0) { + if (w.config.chart.stacked) { + var barStacked = new BarStacked(this.ctx, xyRatios); + elGraph.push(barStacked.draw(columnSeries.series, columnSeries.i)); + } else { + var bar = new Bar(this.ctx, xyRatios); + elGraph.push(bar.draw(columnSeries.series, columnSeries.i)); + } + } + + if (lineSeries.series.length > 0) { + elGraph.push(line.draw(lineSeries.series, 'line', lineSeries.i)); + } + + if (candlestickSeries.series.length > 0) { + elGraph.push(candlestick.draw(candlestickSeries.series, candlestickSeries.i)); + } + + if (scatterSeries.series.length > 0) { + var scatterLine = new Line(this.ctx, xyRatios, true); + elGraph.push(scatterLine.draw(scatterSeries.series, 'scatter', scatterSeries.i)); + } // TODO: allow bubble series in a combo chart + // if (bubbleSeries.series.length > 0) { + // const bubbleLine = new Line(this.ctx, xyRatios, true) + // elGraph.push( + // bubbleLine.draw(bubbleSeries.series, 'bubble', bubbleSeries.i) + // ) + // } + + } else { + switch (cnf.chart.type) { + case 'line': + elGraph = line.draw(gl.series, 'line'); + break; + + case 'area': + elGraph = line.draw(gl.series, 'area'); + break; + + case 'bar': + if (cnf.chart.stacked) { + var _barStacked = new BarStacked(this.ctx, xyRatios); + + elGraph = _barStacked.draw(gl.series); + } else { + var _bar = new Bar(this.ctx, xyRatios); + + elGraph = _bar.draw(gl.series); + } + + break; + + case 'candlestick': + var candleStick = new CandleStick(this.ctx, xyRatios); + elGraph = candleStick.draw(gl.series); + break; + + case 'rangeBar': + elGraph = rangeBar.draw(gl.series); + break; + + case 'heatmap': + var heatmap = new HeatMap(this.ctx, xyRatios); + elGraph = heatmap.draw(gl.series); + break; + + case 'pie': + case 'donut': + elGraph = pie.draw(gl.series); + break; + + case 'radialBar': + elGraph = radialBar.draw(gl.series); + break; + + case 'radar': + elGraph = radar.draw(gl.series); + break; + + default: + elGraph = line.draw(gl.series); + } + } + + return elGraph; + } + }, { + key: "setSVGDimensions", + value: function setSVGDimensions() { + var gl = this.w.globals; + var cnf = this.w.config; + gl.svgWidth = cnf.chart.width; + gl.svgHeight = cnf.chart.height; + var elDim = Utils.getDimensions(this.el); + var widthUnit = cnf.chart.width.toString().split(/[0-9]+/g).pop(); + + if (widthUnit === '%') { + if (Utils.isNumber(elDim[0])) { + if (elDim[0].width === 0) { + elDim = Utils.getDimensions(this.el.parentNode); + } + + gl.svgWidth = elDim[0] * parseInt(cnf.chart.width) / 100; + } + } else if (widthUnit === 'px' || widthUnit === '') { + gl.svgWidth = parseInt(cnf.chart.width); + } + + if (gl.svgHeight !== 'auto' && gl.svgHeight !== '') { + var heightUnit = cnf.chart.height.toString().split(/[0-9]+/g).pop(); + + if (heightUnit === '%') { + var elParentDim = Utils.getDimensions(this.el.parentNode); + gl.svgHeight = elParentDim[1] * parseInt(cnf.chart.height) / 100; + } else { + gl.svgHeight = parseInt(cnf.chart.height); + } + } else { + if (gl.axisCharts) { + gl.svgHeight = gl.svgWidth / 1.61; + } else { + gl.svgHeight = gl.svgWidth; + } + } + + if (gl.svgWidth < 0) gl.svgWidth = 0; + if (gl.svgHeight < 0) gl.svgHeight = 0; + Graphics.setAttrs(gl.dom.Paper.node, { + width: gl.svgWidth, + height: gl.svgHeight + }); // gl.dom.Paper.node.parentNode.parentNode.style.minWidth = gl.svgWidth + "px"; + + var offsetY = cnf.chart.sparkline.enabled ? 0 : gl.axisCharts ? cnf.chart.parentHeightOffset : 0; + gl.dom.Paper.node.parentNode.parentNode.style.minHeight = gl.svgHeight + offsetY + 'px'; + gl.dom.elWrap.style.width = gl.svgWidth + 'px'; + gl.dom.elWrap.style.height = gl.svgHeight + 'px'; + } + }, { + key: "shiftGraphPosition", + value: function shiftGraphPosition() { + var gl = this.w.globals; + var tY = gl.translateY; + var tX = gl.translateX; + var scalingAttrs = { + transform: 'translate(' + tX + ', ' + tY + ')' + }; + Graphics.setAttrs(gl.dom.elGraphical.node, scalingAttrs); + } // To prevent extra spacings in the bottom of the chart, we need to recalculate the height for pie/donut/radialbar charts + + }, { + key: "resizeNonAxisCharts", + value: function resizeNonAxisCharts() { + var w = this.w; + var gl = w.globals; + var legendHeight = 0; + var offY = 20; + + if (w.config.legend.position === 'top' || w.config.legend.position === 'bottom') { + legendHeight = new Legend(this.ctx).getLegendBBox().clwh + 10; + } + + var radialEl = w.globals.dom.baseEl.querySelector('.apexcharts-radialbar'); + var elRadialSize = w.globals.radialSize * 2; + + if (radialEl && w.config.plotOptions.radialBar.startAngle !== -90) { + elRadialSize = Utils.getBoundingClientRect(radialEl).height; + } + + var chartInnerDimensions = Math.max(elRadialSize, w.globals.radialSize * 2); + var newHeight = chartInnerDimensions + gl.translateY + legendHeight + offY; + + if (gl.dom.elLegendForeign) { + gl.dom.elLegendForeign.setAttribute('height', newHeight); + } + + gl.dom.elWrap.style.height = newHeight + 'px'; + Graphics.setAttrs(gl.dom.Paper.node, { + height: newHeight + }); + gl.dom.Paper.node.parentNode.parentNode.style.minHeight = newHeight + 'px'; + } + /* + ** All the calculations for setting range in charts will be done here + */ + + }, { + key: "coreCalculations", + value: function coreCalculations() { + var range = new Range$1(this.ctx); + range.init(); + } + }, { + key: "resetGlobals", + value: function resetGlobals() { + var _this = this; + + var gl = this.w.globals; + gl.series = []; + gl.seriesCandleO = []; + gl.seriesCandleH = []; + gl.seriesCandleL = []; + gl.seriesCandleC = []; + gl.seriesRangeStart = []; + gl.seriesRangeEnd = []; + gl.seriesPercent = []; + gl.seriesX = []; + gl.seriesZ = []; + gl.seriesNames = []; + gl.seriesTotals = []; + gl.stackedSeriesTotals = []; + gl.labels = []; + gl.timelineLabels = []; + gl.noLabelsProvided = false; + gl.timescaleTicks = []; + gl.resizeTimer = null; + gl.selectionResizeTimer = null; + + gl.seriesXvalues = function () { + return _this.w.config.series.map(function (s) { + return []; + }); + }(); + + gl.seriesYvalues = function () { + return _this.w.config.series.map(function (s) { + return []; + }); + }(); + + gl.delayedElements = []; + gl.pointsArray = []; + gl.dataLabelsRects = []; + gl.isXNumeric = false; + gl.isDataXYZ = false; + gl.maxY = -Number.MAX_VALUE; + gl.minY = Number.MIN_VALUE; + gl.minYArr = []; + gl.maxYArr = []; + gl.maxX = -Number.MAX_VALUE; + gl.minX = Number.MAX_VALUE; + gl.initialmaxX = -Number.MAX_VALUE; + gl.initialminX = Number.MAX_VALUE; + gl.maxDate = 0; + gl.minDate = Number.MAX_VALUE; + gl.minZ = Number.MAX_VALUE; + gl.maxZ = -Number.MAX_VALUE; + gl.minXDiff = Number.MAX_VALUE; + gl.yAxisScale = []; + gl.xAxisScale = null; + gl.xAxisTicksPositions = []; + gl.yLabelsCoords = []; + gl.yTitleCoords = []; + gl.xRange = 0; + gl.yRange = []; + gl.zRange = 0; + gl.dataPoints = 0; + } + }, { + key: "isMultipleY", + value: function isMultipleY() { + // user has supplied an array in yaxis property. So, turn on multipleYAxis flag + if (this.w.config.yaxis.constructor === Array && this.w.config.yaxis.length > 1) { + this.w.globals.isMultipleYAxis = true; + return true; + } + } + }, { + key: "excludeCollapsedSeriesInYAxis", + value: function excludeCollapsedSeriesInYAxis() { + var _this2 = this; + + var w = this.w; + w.globals.ignoreYAxisIndexes = w.globals.collapsedSeries.map(function (collapsed, i) { + if (_this2.w.globals.isMultipleYAxis) { + return collapsed.index; + } + }); + } + }, { + key: "isMultiFormat", + value: function isMultiFormat() { + return this.isFormatXY() || this.isFormat2DArray(); + } // given format is [{x, y}, {x, y}] + + }, { + key: "isFormatXY", + value: function isFormatXY() { + var series = this.w.config.series.slice(); + var sr = new Series(this.ctx); + this.activeSeriesIndex = sr.getActiveConfigSeriesIndex(); + + if (typeof series[this.activeSeriesIndex].data !== 'undefined' && series[this.activeSeriesIndex].data.length > 0 && series[this.activeSeriesIndex].data[0] !== null && typeof series[this.activeSeriesIndex].data[0].x !== 'undefined' && series[this.activeSeriesIndex].data[0] !== null) { + return true; + } + } // given format is [[x, y], [x, y]] + + }, { + key: "isFormat2DArray", + value: function isFormat2DArray() { + var series = this.w.config.series.slice(); + var sr = new Series(this.ctx); + this.activeSeriesIndex = sr.getActiveConfigSeriesIndex(); + + if (typeof series[this.activeSeriesIndex].data !== 'undefined' && series[this.activeSeriesIndex].data.length > 0 && typeof series[this.activeSeriesIndex].data[0] !== 'undefined' && series[this.activeSeriesIndex].data[0] !== null && series[this.activeSeriesIndex].data[0].constructor === Array) { + return true; + } + } + }, { + key: "handleFormat2DArray", + value: function handleFormat2DArray(ser, i) { + var cnf = this.w.config; + var gl = this.w.globals; + + for (var j = 0; j < ser[i].data.length; j++) { + if (typeof ser[i].data[j][1] !== 'undefined') { + if (Array.isArray(ser[i].data[j][1]) && ser[i].data[j][1].length === 4) { + this.twoDSeries.push(Utils.parseNumber(ser[i].data[j][1][3])); + } else { + this.twoDSeries.push(Utils.parseNumber(ser[i].data[j][1])); + } + + gl.dataFormatXNumeric = true; + } + + if (cnf.xaxis.type === 'datetime') { + // if timestamps are provided and xaxis type is datettime, + var ts = new Date(ser[i].data[j][0]); + ts = new Date(ts).getTime(); + this.twoDSeriesX.push(ts); + } else { + this.twoDSeriesX.push(ser[i].data[j][0]); + } + } + + for (var _j = 0; _j < ser[i].data.length; _j++) { + if (typeof ser[i].data[_j][2] !== 'undefined') { + this.threeDSeries.push(ser[i].data[_j][2]); + gl.isDataXYZ = true; + } + } + } + }, { + key: "handleFormatXY", + value: function handleFormatXY(ser, i) { + var cnf = this.w.config; + var gl = this.w.globals; + var dt = new DateTime(this.ctx); + var activeI = i; + + if (gl.collapsedSeriesIndices.indexOf(i) > -1) { + // fix #368 + activeI = this.activeSeriesIndex; + } // get series + + + for (var j = 0; j < ser[i].data.length; j++) { + if (typeof ser[i].data[j].y !== 'undefined') { + if (Array.isArray(ser[i].data[j].y)) { + this.twoDSeries.push(Utils.parseNumber(ser[i].data[j].y[ser[i].data[j].y.length - 1])); + } else { + this.twoDSeries.push(Utils.parseNumber(ser[i].data[j].y)); + } + } + } // get seriesX + + + for (var _j2 = 0; _j2 < ser[activeI].data.length; _j2++) { + var isXString = typeof ser[activeI].data[_j2].x === 'string'; + var isXDate = !!dt.isValidDate(ser[activeI].data[_j2].x.toString()); + + if (isXString || isXDate) { + // user supplied '01/01/2017' or a date string (a JS date object is not supported) + if (isXString) { + if (cnf.xaxis.type === 'datetime' && !gl.isRangeData) { + this.twoDSeriesX.push(dt.parseDate(ser[activeI].data[_j2].x)); + } else { + // a category and not a numeric x value + this.fallbackToCategory = true; + this.twoDSeriesX.push(ser[activeI].data[_j2].x); + } + } else { + if (cnf.xaxis.type === 'datetime') { + this.twoDSeriesX.push(dt.parseDate(ser[activeI].data[_j2].x.toString())); + } else { + gl.dataFormatXNumeric = true; + gl.isXNumeric = true; + this.twoDSeriesX.push(parseFloat(ser[activeI].data[_j2].x)); + } + } + } else { + // a numeric value in x property + gl.isXNumeric = true; + gl.dataFormatXNumeric = true; + this.twoDSeriesX.push(ser[activeI].data[_j2].x); + } + } + + if (ser[i].data[0] && typeof ser[i].data[0].z !== 'undefined') { + for (var t = 0; t < ser[i].data.length; t++) { + this.threeDSeries.push(ser[i].data[t].z); + } + + gl.isDataXYZ = true; + } + } + }, { + key: "handleRangeData", + value: function handleRangeData(ser, i) { + var gl = this.w.globals; + var range = {}; + + if (this.isFormat2DArray()) { + range = this.handleRangeDataFormat('array', ser, i); + } else if (this.isFormatXY()) { + range = this.handleRangeDataFormat('xy', ser, i); + } + + gl.seriesRangeStart.push(range.start); + gl.seriesRangeEnd.push(range.end); + return range; + } + }, { + key: "handleCandleStickData", + value: function handleCandleStickData(ser, i) { + var gl = this.w.globals; + var ohlc = {}; + + if (this.isFormat2DArray()) { + ohlc = this.handleCandleStickDataFormat('array', ser, i); + } else if (this.isFormatXY()) { + ohlc = this.handleCandleStickDataFormat('xy', ser, i); + } + + gl.seriesCandleO.push(ohlc.o); + gl.seriesCandleH.push(ohlc.h); + gl.seriesCandleL.push(ohlc.l); + gl.seriesCandleC.push(ohlc.c); + return ohlc; + } + }, { + key: "handleRangeDataFormat", + value: function handleRangeDataFormat(format, ser, i) { + var rangeStart = []; + var rangeEnd = []; + var err = 'Please provide [Start, End] values in valid format. Read more https://apexcharts.com/docs/series/#rangecharts'; + var serObj = new Series(this.ctx); + var activeIndex = serObj.getActiveConfigSeriesIndex(); + + if (format === 'array') { + if (ser[activeIndex].data[0][1].length !== 2) { + throw new Error(err); + } + + for (var j = 0; j < ser[i].data.length; j++) { + rangeStart.push(ser[i].data[j][1][0]); + rangeEnd.push(ser[i].data[j][1][1]); + } + } else if (format === 'xy') { + if (ser[activeIndex].data[0].y.length !== 2) { + throw new Error(err); + } + + for (var _j3 = 0; _j3 < ser[i].data.length; _j3++) { + rangeStart.push(ser[i].data[_j3].y[0]); + rangeEnd.push(ser[i].data[_j3].y[1]); + } + } + + return { + start: rangeStart, + end: rangeEnd + }; + } + }, { + key: "handleCandleStickDataFormat", + value: function handleCandleStickDataFormat(format, ser, i) { + var serO = []; + var serH = []; + var serL = []; + var serC = []; + var err = 'Please provide [Open, High, Low and Close] values in valid format. Read more https://apexcharts.com/docs/series/#candlestick'; + + if (format === 'array') { + if (ser[i].data[0][1].length !== 4) { + throw new Error(err); + } + + for (var j = 0; j < ser[i].data.length; j++) { + serO.push(ser[i].data[j][1][0]); + serH.push(ser[i].data[j][1][1]); + serL.push(ser[i].data[j][1][2]); + serC.push(ser[i].data[j][1][3]); + } + } else if (format === 'xy') { + if (ser[i].data[0].y.length !== 4) { + throw new Error(err); + } + + for (var _j4 = 0; _j4 < ser[i].data.length; _j4++) { + serO.push(ser[i].data[_j4].y[0]); + serH.push(ser[i].data[_j4].y[1]); + serL.push(ser[i].data[_j4].y[2]); + serC.push(ser[i].data[_j4].y[3]); + } + } + + return { + o: serO, + h: serH, + l: serL, + c: serC + }; + } + }, { + key: "parseDataAxisCharts", + value: function parseDataAxisCharts(ser) { + var ctx = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.ctx; + var cnf = this.w.config; + var gl = this.w.globals; + var dt = new DateTime(ctx); + + for (var i = 0; i < ser.length; i++) { + this.twoDSeries = []; + this.twoDSeriesX = []; + this.threeDSeries = []; + + if (typeof ser[i].data === 'undefined') { + console.error("It is a possibility that you may have not included 'data' property in series."); + return; + } + + if (cnf.chart.type === 'rangeBar' || cnf.chart.type === 'rangeArea' || ser[i].type === 'rangeBar' || ser[i].type === 'rangeArea') { + gl.isRangeData = true; + this.handleRangeData(ser, i); + } + + if (this.isMultiFormat()) { + if (this.isFormat2DArray()) { + this.handleFormat2DArray(ser, i); + } else if (this.isFormatXY()) { + this.handleFormatXY(ser, i); + } + + if (cnf.chart.type === 'candlestick' || ser[i].type === 'candlestick') { + this.handleCandleStickData(ser, i); + } + + gl.series.push(this.twoDSeries); + gl.labels.push(this.twoDSeriesX); + gl.seriesX.push(this.twoDSeriesX); + + if (!this.fallbackToCategory) { + gl.isXNumeric = true; + } + } else { + if (cnf.xaxis.type === 'datetime') { + // user didn't supplied [{x,y}] or [[x,y]], but single array in data. + // Also labels/categories were supplied differently + gl.isXNumeric = true; + var dates = cnf.labels.length > 0 ? cnf.labels.slice() : cnf.xaxis.categories.slice(); + + for (var j = 0; j < dates.length; j++) { + if (typeof dates[j] === 'string') { + // user provided date strings + var isDate = dt.isValidDate(dates[j]); + + if (isDate) { + this.twoDSeriesX.push(dt.parseDate(dates[j])); + } else { + throw new Error('You have provided invalid Date format. Please provide a valid JavaScript Date'); + } + } else { + // user provided timestamps + if (String(dates[j]).length !== 13) { + throw new Error('Please provide a valid JavaScript timestamp'); + } else { + this.twoDSeriesX.push(dates[j]); + } + } + } + + gl.seriesX.push(this.twoDSeriesX); + } else if (cnf.xaxis.type === 'numeric') { + gl.isXNumeric = true; + var x = cnf.labels.length > 0 ? cnf.labels.slice() : cnf.xaxis.categories.slice(); + + if (x.length > 0) { + this.twoDSeriesX = x; + gl.seriesX.push(this.twoDSeriesX); + } + } + + gl.labels.push(this.twoDSeriesX); + var singleArray = ser[i].data.map(function (d) { + return Utils.parseNumber(d); + }); + gl.series.push(singleArray); + } + + gl.seriesZ.push(this.threeDSeries); + + if (ser[i].name !== undefined) { + gl.seriesNames.push(ser[i].name); + } else { + gl.seriesNames.push('series-' + parseInt(i + 1)); + } + } + + return this.w; + } + }, { + key: "parseDataNonAxisCharts", + value: function parseDataNonAxisCharts(ser) { + var gl = this.w.globals; + var cnf = this.w.config; + gl.series = ser.slice(); + gl.seriesNames = cnf.labels.slice(); + + for (var i = 0; i < gl.series.length; i++) { + if (gl.seriesNames[i] === undefined) { + gl.seriesNames.push('series-' + (i + 1)); + } + } + + return this.w; + } + /** User possibly set string categories in xaxis.categories or labels prop + * Or didn't set xaxis labels at all - in which case we manually do it. + * If user passed series data as [[3, 2], [4, 5]] or [{ x: 3, y: 55 }], + * this shouldn't be called + * @param {array} ser - the series which user passed to the config + */ + + }, { + key: "handleExternalLabelsData", + value: function handleExternalLabelsData(ser) { + var cnf = this.w.config; + var gl = this.w.globals; + + if (cnf.xaxis.categories.length > 0) { + // user provided labels in xaxis.category prop + gl.labels = cnf.xaxis.categories; + } else if (cnf.labels.length > 0) { + // user provided labels in labels props + gl.labels = cnf.labels.slice(); + } else if (this.fallbackToCategory) { + // user provided labels in x prop in [{ x: 3, y: 55 }] data, and those labels are already stored in gl.labels[0], so just re-arrange the gl.labels array + gl.labels = gl.labels[0]; + } else { + // user didn't provided any labels, fallback to 1-2-3-4-5 + var labelArr = []; + + if (gl.axisCharts) { + // for axis charts, we get the longest series and create labels from it + if (gl.series.length > 0) { + for (var i = 0; i < gl.series[gl.maxValsInArrayIndex].length; i++) { + labelArr.push(i + 1); + } + } // create gl.seriesX as it will be used in calculations of x positions + + + for (var _i = 0; _i < ser.length; _i++) { + gl.seriesX.push(labelArr); + } // turn on the isXNumeric flag to allow minX and maxX to function properly + + + gl.isXNumeric = true; + } // no series to pull labels from, put a 0-10 series + // possibly, user collapsed all series. Hence we can't work with above calc + + + if (labelArr.length === 0) { + labelArr = [0, 10]; + + for (var _i2 = 0; _i2 < ser.length; _i2++) { + gl.seriesX.push(labelArr); + } + } // Finally, pass the labelArr in gl.labels which will be printed on x-axis + + + gl.labels = labelArr; // Turn on this global flag to indicate no labels were provided by user + + gl.noLabelsProvided = true; + } + } // Segregate user provided data into appropriate vars + + }, { + key: "parseData", + value: function parseData(ser) { + var w = this.w; + var cnf = w.config; + var gl = w.globals; + this.excludeCollapsedSeriesInYAxis(); // If we detected string in X prop of series, we fallback to category x-axis + + this.fallbackToCategory = false; + this.resetGlobals(); + this.isMultipleY(); + + if (gl.axisCharts) { + // axisCharts includes line / area / column / scatter + this.parseDataAxisCharts(ser); + } else { + // non-axis charts are pie / donut + this.parseDataNonAxisCharts(ser); + } + + this.coreUtils.getLargestSeries(); // set Null values to 0 in all series when user hides/shows some series + + if (cnf.chart.type === 'bar' && cnf.chart.stacked) { + var series = new Series(this.ctx); + gl.series = series.setNullSeriesToZeroValues(gl.series); + } + + this.coreUtils.getSeriesTotals(); + + if (gl.axisCharts) { + this.coreUtils.getStackedSeriesTotals(); + } + + this.coreUtils.getPercentSeries(); + + if (!gl.dataFormatXNumeric && (!gl.isXNumeric || cnf.xaxis.type === 'numeric' && cnf.labels.length === 0 && cnf.xaxis.categories.length === 0)) { + // x-axis labels couldn't be detected; hence try searching every option in config + this.handleExternalLabelsData(ser); + } + } + }, { + key: "xySettings", + value: function xySettings() { + var xyRatios = null; + var w = this.w; + + if (w.globals.axisCharts) { + if (w.config.xaxis.crosshairs.position === 'back') { + var crosshairs = new Crosshairs(this.ctx); + crosshairs.drawXCrosshairs(); + } + + if (w.config.yaxis[0].crosshairs.position === 'back') { + var _crosshairs = new Crosshairs(this.ctx); + + _crosshairs.drawYCrosshairs(); + } + + xyRatios = this.coreUtils.getCalculatedRatios(); + + if (w.config.xaxis.type === 'datetime' && w.config.xaxis.labels.formatter === undefined) { + var ts = new TimeScale(this.ctx); + var formattedTimeScale; + + if (isFinite(w.globals.minX) && isFinite(w.globals.maxX) && !w.globals.isBarHorizontal) { + formattedTimeScale = ts.calculateTimeScaleTicks(w.globals.minX, w.globals.maxX); + ts.recalcDimensionsBasedOnFormat(formattedTimeScale, false); + } else if (w.globals.isBarHorizontal) { + formattedTimeScale = ts.calculateTimeScaleTicks(w.globals.minY, w.globals.maxY); + ts.recalcDimensionsBasedOnFormat(formattedTimeScale, true); + } + } + } + + return xyRatios; + } + }, { + key: "drawAxis", + value: function drawAxis(type, xyRatios) { + var gl = this.w.globals; + var cnf = this.w.config; + var xAxis = new XAxis(this.ctx); + var yAxis = new YAxis(this.ctx); + + if (gl.axisCharts && type !== 'radar') { + var elXaxis, elYaxis; + + if (gl.isBarHorizontal) { + elYaxis = yAxis.drawYaxisInversed(0); + elXaxis = xAxis.drawXaxisInversed(0); + gl.dom.elGraphical.add(elXaxis); + gl.dom.elGraphical.add(elYaxis); + } else { + elXaxis = xAxis.drawXaxis(); + gl.dom.elGraphical.add(elXaxis); + cnf.yaxis.map(function (yaxe, index) { + if (gl.ignoreYAxisIndexes.indexOf(index) === -1) { + elYaxis = yAxis.drawYaxis(index); + gl.dom.Paper.add(elYaxis); + } + }); + } + } + + cnf.yaxis.map(function (yaxe, index) { + if (gl.ignoreYAxisIndexes.indexOf(index) === -1) { + yAxis.yAxisTitleRotate(index, yaxe.opposite); + } + }); + } + }, { + key: "setupBrushHandler", + value: function setupBrushHandler() { + var _this3 = this; + + var w = this.w; // only for brush charts + + if (!w.config.chart.brush.enabled) { + return; + } // if user has not defined a custom function for selection - we handle the brush chart + // otherwise we leave it to the user to define the functionality for selection + + + if (typeof w.config.chart.events.selection !== 'function') { + var targets = w.config.chart.brush.targets || [w.config.chart.brush.target]; // retro compatibility with single target option + + targets.forEach(function (target) { + var targetChart = ApexCharts.getChartByID(target); + targetChart.w.globals.brushSource = _this3.ctx; + + var updateSourceChart = function updateSourceChart() { + _this3.ctx._updateOptions({ + chart: { + selection: { + xaxis: { + min: targetChart.w.globals.minX, + max: targetChart.w.globals.maxX + } + } + } + }, false, false); + }; + + if (typeof targetChart.w.config.chart.events.zoomed !== 'function') { + targetChart.w.config.chart.events.zoomed = function () { + updateSourceChart(); + }; + } + + if (typeof targetChart.w.config.chart.events.scrolled !== 'function') { + targetChart.w.config.chart.events.scrolled = function () { + updateSourceChart(); + }; + } + }); + + w.config.chart.events.selection = function (chart, e) { + targets.forEach(function (target) { + var targetChart = ApexCharts.getChartByID(target); + var yaxis = Utils.clone(w.config.yaxis); + + if (w.config.chart.brush.autoScaleYaxis) { + var scale = new Range(targetChart); + yaxis = scale.autoScaleY(targetChart, yaxis, e); + } + + targetChart._updateOptions({ + xaxis: { + min: e.xaxis.min, + max: e.xaxis.max + }, + yaxis: yaxis + }, false, false, false, false); + }); + }; + } + } + }]); + + return Core; + }(); + + /** + * @this {Promise} + */ + function finallyConstructor(callback) { + var constructor = this.constructor; + return this.then( + function(value) { + return constructor.resolve(callback()).then(function() { + return value; + }); + }, + function(reason) { + return constructor.resolve(callback()).then(function() { + return constructor.reject(reason); + }); + } + ); + } + + // Store setTimeout reference so promise-polyfill will be unaffected by + // other code modifying setTimeout (like sinon.useFakeTimers()) + var setTimeoutFunc = setTimeout; + + function noop() {} + + // Polyfill for Function.prototype.bind + function bind(fn, thisArg) { + return function() { + fn.apply(thisArg, arguments); + }; + } + + /** + * @constructor + * @param {Function} fn + */ + function Promise$1(fn) { + if (!(this instanceof Promise$1)) + throw new TypeError('Promises must be constructed via new'); + if (typeof fn !== 'function') throw new TypeError('not a function'); + /** @type {!number} */ + this._state = 0; + /** @type {!boolean} */ + this._handled = false; + /** @type {Promise|undefined} */ + this._value = undefined; + /** @type {!Array} */ + this._deferreds = []; + + doResolve(fn, this); + } + + function handle(self, deferred) { + while (self._state === 3) { + self = self._value; + } + if (self._state === 0) { + self._deferreds.push(deferred); + return; + } + self._handled = true; + Promise$1._immediateFn(function() { + var cb = self._state === 1 ? deferred.onFulfilled : deferred.onRejected; + if (cb === null) { + (self._state === 1 ? resolve : reject)(deferred.promise, self._value); + return; + } + var ret; + try { + ret = cb(self._value); + } catch (e) { + reject(deferred.promise, e); + return; + } + resolve(deferred.promise, ret); + }); + } + + function resolve(self, newValue) { + try { + // Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure + if (newValue === self) + throw new TypeError('A promise cannot be resolved with itself.'); + if ( + newValue && + (typeof newValue === 'object' || typeof newValue === 'function') + ) { + var then = newValue.then; + if (newValue instanceof Promise$1) { + self._state = 3; + self._value = newValue; + finale(self); + return; + } else if (typeof then === 'function') { + doResolve(bind(then, newValue), self); + return; + } + } + self._state = 1; + self._value = newValue; + finale(self); + } catch (e) { + reject(self, e); + } + } + + function reject(self, newValue) { + self._state = 2; + self._value = newValue; + finale(self); + } + + function finale(self) { + if (self._state === 2 && self._deferreds.length === 0) { + Promise$1._immediateFn(function() { + if (!self._handled) { + Promise$1._unhandledRejectionFn(self._value); + } + }); + } + + for (var i = 0, len = self._deferreds.length; i < len; i++) { + handle(self, self._deferreds[i]); + } + self._deferreds = null; + } + + /** + * @constructor + */ + function Handler(onFulfilled, onRejected, promise) { + this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null; + this.onRejected = typeof onRejected === 'function' ? onRejected : null; + this.promise = promise; + } + + /** + * Take a potentially misbehaving resolver function and make sure + * onFulfilled and onRejected are only called once. + * + * Makes no guarantees about asynchrony. + */ + function doResolve(fn, self) { + var done = false; + try { + fn( + function(value) { + if (done) return; + done = true; + resolve(self, value); + }, + function(reason) { + if (done) return; + done = true; + reject(self, reason); + } + ); + } catch (ex) { + if (done) return; + done = true; + reject(self, ex); + } + } + + Promise$1.prototype['catch'] = function(onRejected) { + return this.then(null, onRejected); + }; + + Promise$1.prototype.then = function(onFulfilled, onRejected) { + // @ts-ignore + var prom = new this.constructor(noop); + + handle(this, new Handler(onFulfilled, onRejected, prom)); + return prom; + }; + + Promise$1.prototype['finally'] = finallyConstructor; + + Promise$1.all = function(arr) { + return new Promise$1(function(resolve, reject) { + if (!arr || typeof arr.length === 'undefined') + throw new TypeError('Promise.all accepts an array'); + var args = Array.prototype.slice.call(arr); + if (args.length === 0) return resolve([]); + var remaining = args.length; + + function res(i, val) { + try { + if (val && (typeof val === 'object' || typeof val === 'function')) { + var then = val.then; + if (typeof then === 'function') { + then.call( + val, + function(val) { + res(i, val); + }, + reject + ); + return; + } + } + args[i] = val; + if (--remaining === 0) { + resolve(args); + } + } catch (ex) { + reject(ex); + } + } + + for (var i = 0; i < args.length; i++) { + res(i, args[i]); + } + }); + }; + + Promise$1.resolve = function(value) { + if (value && typeof value === 'object' && value.constructor === Promise$1) { + return value; + } + + return new Promise$1(function(resolve) { + resolve(value); + }); + }; + + Promise$1.reject = function(value) { + return new Promise$1(function(resolve, reject) { + reject(value); + }); + }; + + Promise$1.race = function(values) { + return new Promise$1(function(resolve, reject) { + for (var i = 0, len = values.length; i < len; i++) { + values[i].then(resolve, reject); + } + }); + }; + + // Use polyfill for setImmediate for performance gains + Promise$1._immediateFn = + (typeof setImmediate === 'function' && + function(fn) { + setImmediate(fn); + }) || + function(fn) { + setTimeoutFunc(fn, 0); + }; + + Promise$1._unhandledRejectionFn = function _unhandledRejectionFn(err) { + if (typeof console !== 'undefined' && console) { + console.warn('Possible Unhandled Promise Rejection:', err); // eslint-disable-line no-console + } + }; + + var Exports = + /*#__PURE__*/ + function () { + function Exports(ctx) { + _classCallCheck(this, Exports); + + this.ctx = ctx; + this.w = ctx.w; + } + + _createClass(Exports, [{ + key: "getSvgString", + value: function getSvgString() { + return this.w.globals.dom.Paper.svg(); + } + }, { + key: "cleanup", + value: function cleanup() { + var w = this.w; // hide some elements to avoid printing them on exported svg + + var xcrosshairs = w.globals.dom.baseEl.querySelector('.apexcharts-xcrosshairs'); + var ycrosshairs = w.globals.dom.baseEl.querySelector('.apexcharts-ycrosshairs'); + + if (xcrosshairs) { + xcrosshairs.setAttribute('x', -500); + } + + if (ycrosshairs) { + ycrosshairs.setAttribute('y1', -100); + ycrosshairs.setAttribute('y2', -100); + } + } + }, { + key: "svgUrl", + value: function svgUrl() { + this.cleanup(); + var svgData = this.getSvgString(); + var svgBlob = new Blob([svgData], { + type: 'image/svg+xml;charset=utf-8' + }); + return URL.createObjectURL(svgBlob); + } + }, { + key: "dataURI", + value: function dataURI() { + var _this = this; + + return new Promise$1(function (resolve) { + var w = _this.w; + + _this.cleanup(); + + var canvas = document.createElement('canvas'); + canvas.width = w.globals.svgWidth; + canvas.height = parseInt(w.globals.dom.elWrap.style.height); // because of resizeNonAxisCharts + + var canvasBg = w.config.chart.background === 'transparent' ? '#fff' : w.config.chart.background; + var ctx = canvas.getContext('2d'); + ctx.fillStyle = canvasBg; + ctx.fillRect(0, 0, canvas.width, canvas.height); + var DOMURL = window.URL || window.webkitURL || window; + var img = new Image(); + img.crossOrigin = 'anonymous'; + + var svgData = _this.getSvgString(); + + var svgUrl = 'data:image/svg+xml,' + encodeURIComponent(svgData); + + img.onload = function () { + ctx.drawImage(img, 0, 0); + DOMURL.revokeObjectURL(svgUrl); + var imgURI = canvas.toDataURL('image/png'); + resolve(imgURI); + }; + + img.src = svgUrl; + }); + } + }, { + key: "exportToSVG", + value: function exportToSVG() { + this.triggerDownload(this.svgUrl(), '.svg'); + } + }, { + key: "exportToPng", + value: function exportToPng() { + var _this2 = this; + + this.dataURI().then(function (imgURI) { + _this2.triggerDownload(imgURI, '.png'); + }); + } + }, { + key: "triggerDownload", + value: function triggerDownload(href, ext) { + var downloadLink = document.createElement('a'); + downloadLink.href = href; + downloadLink.download = this.w.globals.chartID + ext; + document.body.appendChild(downloadLink); + downloadLink.click(); + document.body.removeChild(downloadLink); + } + }]); + + return Exports; + }(); + + /** + * ApexCharts Grid Class for drawing Cartesian Grid. + * + * @module Grid + **/ + + var Grid = + /*#__PURE__*/ + function () { + function Grid(ctx) { + _classCallCheck(this, Grid); + + this.ctx = ctx; + this.w = ctx.w; + var w = this.w; + this.anim = new Animations(this.ctx); + this.xaxisLabels = w.globals.labels.slice(); + this.animX = w.config.grid.xaxis.lines.animate && w.config.chart.animations.enabled; + this.animY = w.config.grid.yaxis.lines.animate && w.config.chart.animations.enabled; + + if (w.globals.timelineLabels.length > 0) { + // timeline labels are there + this.xaxisLabels = w.globals.timelineLabels.slice(); + } + } // .when using sparklines or when showing no grid, we need to have a grid area which is reused at many places for other calculations as well + + + _createClass(Grid, [{ + key: "drawGridArea", + value: function drawGridArea() { + var elGrid = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var w = this.w; + var graphics = new Graphics(this.ctx); + + if (elGrid === null) { + elGrid = graphics.group({ + class: 'apexcharts-grid' + }); + } + + var elVerticalLine = graphics.drawLine(w.globals.padHorizontal, 1, w.globals.padHorizontal, w.globals.gridHeight, 'transparent'); + var elHorzLine = graphics.drawLine(w.globals.padHorizontal, w.globals.gridHeight, w.globals.gridWidth, w.globals.gridHeight, 'transparent'); + elGrid.add(elHorzLine); + elGrid.add(elVerticalLine); + return elGrid; + } + }, { + key: "drawGrid", + value: function drawGrid() { + var w = this.w; + var xAxis = new XAxis(this.ctx); + var yaxis = new YAxis(this.ctx); + var gl = this.w.globals; + var elgrid = null; + + if (gl.axisCharts) { + if (w.config.grid.show) { + // grid is drawn after xaxis and yaxis are drawn + elgrid = this.renderGrid(); + gl.dom.elGraphical.add(elgrid.el); + this.drawGridArea(elgrid.el); + } else { + var elgridArea = this.drawGridArea(); + gl.dom.elGraphical.add(elgridArea); + } + + if (elgrid !== null) { + xAxis.xAxisLabelCorrections(elgrid.xAxisTickWidth); + } + + yaxis.setYAxisTextAlignments(); + } + } // This mask will clip off overflowing graphics from the drawable area + + }, { + key: "createGridMask", + value: function createGridMask() { + var w = this.w; + var gl = w.globals; + var graphics = new Graphics(this.ctx); + var strokeSize = Array.isArray(w.config.stroke.width) ? 0 : w.config.stroke.width; + + if (Array.isArray(w.config.stroke.width)) { + var strokeMaxSize = 0; + w.config.stroke.width.forEach(function (m) { + strokeMaxSize = Math.max(strokeMaxSize, m); + }); + strokeSize = strokeMaxSize; + } + + gl.dom.elGridRectMask = document.createElementNS(gl.SVGNS, 'clipPath'); + gl.dom.elGridRectMask.setAttribute('id', "gridRectMask".concat(gl.cuid)); + gl.dom.elGridRectMarkerMask = document.createElementNS(gl.SVGNS, 'clipPath'); + gl.dom.elGridRectMarkerMask.setAttribute('id', "gridRectMarkerMask".concat(gl.cuid)); + gl.dom.elGridRect = graphics.drawRect(-strokeSize / 2, -strokeSize / 2, gl.gridWidth + strokeSize, gl.gridHeight + strokeSize, 0, '#fff'); + var coreUtils = new CoreUtils(this); + coreUtils.getLargestMarkerSize(); + var markerSize = w.globals.markers.largestSize + 1; + gl.dom.elGridRectMarker = graphics.drawRect(-markerSize, -markerSize, gl.gridWidth + markerSize * 2, gl.gridHeight + markerSize * 2, 0, '#fff'); + gl.dom.elGridRectMask.appendChild(gl.dom.elGridRect.node); + gl.dom.elGridRectMarkerMask.appendChild(gl.dom.elGridRectMarker.node); + var defs = gl.dom.baseEl.querySelector('defs'); + defs.appendChild(gl.dom.elGridRectMask); + defs.appendChild(gl.dom.elGridRectMarkerMask); + } // actual grid rendering + + }, { + key: "renderGrid", + value: function renderGrid() { + var w = this.w; + var graphics = new Graphics(this.ctx); + var strokeDashArray = w.config.grid.strokeDashArray; + var elg = graphics.group({ + class: 'apexcharts-grid' + }); + var elgridLinesH = graphics.group({ + class: 'apexcharts-gridlines-horizontal' + }); + var elgridLinesV = graphics.group({ + class: 'apexcharts-gridlines-vertical' + }); + elg.add(elgridLinesH); + elg.add(elgridLinesV); + var tickAmount = 8; + + for (var i = 0; i < w.globals.series.length; i++) { + if (typeof w.globals.yAxisScale[i] !== 'undefined') { + tickAmount = w.globals.yAxisScale[i].result.length - 1; + } + + if (tickAmount > 2) break; + } + + var xCount; + + if (!w.globals.isBarHorizontal) { + xCount = this.xaxisLabels.length; // draw vertical lines + + if (w.config.grid.xaxis.lines.show || w.config.xaxis.axisTicks.show) { + var x1 = w.globals.padHorizontal; + var y1 = 0; + var x2; + var y2 = w.globals.gridHeight; + + if (w.globals.timelineLabels.length > 0) { + for (var _i = 0; _i < xCount; _i++) { + x1 = this.xaxisLabels[_i].position; + x2 = this.xaxisLabels[_i].position; + + if (w.config.grid.xaxis.lines.show && x1 > 0 && x1 < w.globals.gridWidth) { + var line = graphics.drawLine(x1, y1, x2, y2, w.config.grid.borderColor, strokeDashArray); + line.node.classList.add('apexcharts-gridline'); + elgridLinesV.add(line); + + if (this.animX) { + this.animateLine(line, { + x1: 0, + x2: 0 + }, { + x1: x1, + x2: x2 + }); + } + } + + var xAxis = new XAxis(this.ctx); + + if (_i === xCount - 1) { + if (!w.globals.skipLastTimelinelabel) { + // skip drawing last label here + xAxis.drawXaxisTicks(x1, elg); + } + } else { + xAxis.drawXaxisTicks(x1, elg); + } + } + } else { + var xCountForCategoryCharts = xCount; + + for (var _i2 = 0; _i2 < xCountForCategoryCharts; _i2++) { + var x1Count = xCountForCategoryCharts; + + if (w.globals.isXNumeric && w.config.chart.type !== 'bar') { + x1Count -= 1; + } + + x1 = x1 + w.globals.gridWidth / x1Count; + x2 = x1; // skip the last line + + if (_i2 === x1Count - 1) break; + + if (w.config.grid.xaxis.lines.show) { + var _line = graphics.drawLine(x1, y1, x2, y2, w.config.grid.borderColor, strokeDashArray); + + _line.node.classList.add('apexcharts-gridline'); + + elgridLinesV.add(_line); + + if (this.animX) { + this.animateLine(_line, { + x1: 0, + x2: 0 + }, { + x1: x1, + x2: x2 + }); + } + } + + var _xAxis = new XAxis(this.ctx); + + _xAxis.drawXaxisTicks(x1, elg); + } + } + } // draw horizontal lines + + + if (w.config.grid.yaxis.lines.show) { + var _x = 0; + var _y = 0; + var _y2 = 0; + var _x2 = w.globals.gridWidth; + + for (var _i3 = 0; _i3 < tickAmount + 1; _i3++) { + var _line2 = graphics.drawLine(_x, _y, _x2, _y2, w.config.grid.borderColor, strokeDashArray); + + elgridLinesH.add(_line2); + + _line2.node.classList.add('apexcharts-gridline'); + + if (this.animY) { + this.animateLine(_line2, { + y1: _y + 20, + y2: _y2 + 20 + }, { + y1: _y, + y2: _y2 + }); + } + + _y = _y + w.globals.gridHeight / tickAmount; + _y2 = _y; + } + } + } else { + xCount = tickAmount; // draw vertical lines + + if (w.config.grid.xaxis.lines.show || w.config.xaxis.axisTicks.show) { + var _x3 = w.globals.padHorizontal; + var _y3 = 0; + + var _x4; + + var _y4 = w.globals.gridHeight; + + for (var _i4 = 0; _i4 < xCount + 1; _i4++) { + _x3 = _x3 + w.globals.gridWidth / xCount + 0.3; + _x4 = _x3; // skip the last vertical line + + if (_i4 === xCount - 1) break; + + if (w.config.grid.xaxis.lines.show) { + var _line3 = graphics.drawLine(_x3, _y3, _x4, _y4, w.config.grid.borderColor, strokeDashArray); + + _line3.node.classList.add('apexcharts-gridline'); + + elgridLinesV.add(_line3); + + if (this.animX) { + this.animateLine(_line3, { + x1: 0, + x2: 0 + }, { + x1: _x3, + x2: _x4 + }); + } + } // skip the first vertical line + + + var _xAxis2 = new XAxis(this.ctx); + + _xAxis2.drawXaxisTicks(_x3, elg); + } + } // draw horizontal lines + + + if (w.config.grid.yaxis.lines.show) { + var _x5 = 0; + var _y5 = 0; + var _y6 = 0; + var _x6 = w.globals.gridWidth; + + for (var _i5 = 0; _i5 < w.globals.dataPoints + 1; _i5++) { + var _line4 = graphics.drawLine(_x5, _y5, _x6, _y6, w.config.grid.borderColor, strokeDashArray); + + elgridLinesH.add(_line4); + + _line4.node.classList.add('apexcharts-gridline'); + + if (this.animY) { + this.animateLine(_line4, { + y1: _y5 + 20, + y2: _y6 + 20 + }, { + y1: _y5, + y2: _y6 + }); + } + + _y5 = _y5 + w.globals.gridHeight / w.globals.dataPoints; + _y6 = _y5; + } + } + } + + this.drawGridBands(elg, xCount, tickAmount); + return { + el: elg, + xAxisTickWidth: w.globals.gridWidth / xCount + }; + } + }, { + key: "drawGridBands", + value: function drawGridBands(elg, xCount, tickAmount) { + var w = this.w; + var graphics = new Graphics(this.ctx); // rows background bands + + if (w.config.grid.row.colors !== undefined && w.config.grid.row.colors.length > 0) { + var x1 = 0; + var y1 = 0; + var y2 = w.globals.gridHeight / tickAmount; + var x2 = w.globals.gridWidth; + + for (var i = 0, c = 0; i < tickAmount; i++, c++) { + if (c >= w.config.grid.row.colors.length) { + c = 0; + } + + var color = w.config.grid.row.colors[c]; + var rect = graphics.drawRect(x1, y1, x2, y2, 0, color, w.config.grid.row.opacity); + elg.add(rect); + rect.node.classList.add('apexcharts-gridRow'); + y1 = y1 + w.globals.gridHeight / tickAmount; + } + } // columns background bands + + + if (w.config.grid.column.colors !== undefined && w.config.grid.column.colors.length > 0) { + var _x7 = w.globals.padHorizontal; + var _y7 = 0; + + var _x8 = w.globals.padHorizontal + w.globals.gridWidth / xCount; + + var _y8 = w.globals.gridHeight; + + for (var _i6 = 0, _c = 0; _i6 < xCount; _i6++, _c++) { + if (_c >= w.config.grid.column.colors.length) { + _c = 0; + } + + var _color = w.config.grid.column.colors[_c]; + + var _rect = graphics.drawRect(_x7, _y7, _x8, _y8, 0, _color, w.config.grid.column.opacity); + + _rect.node.classList.add('apexcharts-gridColumn'); + + elg.add(_rect); + _x7 = _x7 + w.globals.gridWidth / xCount; + } + } + } + }, { + key: "animateLine", + value: function animateLine(line, from, to) { + var w = this.w; + var initialAnim = w.config.chart.animations; + + if (initialAnim && !w.globals.resized && !w.globals.dataChanged) { + var speed = initialAnim.speed; + this.anim.animateLine(line, from, to, speed); + } + } + }]); + + return Grid; + }(); + + /** + * ApexCharts Responsive Class to override options for different screen sizes. + * + * @module Responsive + **/ + + var Responsive = + /*#__PURE__*/ + function () { + function Responsive(ctx) { + _classCallCheck(this, Responsive); + + this.ctx = ctx; + this.w = ctx.w; + } // the opts parameter if not null has to be set overriding everything + // as the opts is set by user externally + + + _createClass(Responsive, [{ + key: "checkResponsiveConfig", + value: function checkResponsiveConfig(opts) { + var _this = this; + + var w = this.w; + var cnf = w.config; // check if responsive config exists + + if (cnf.responsive.length === 0) return; + var res = cnf.responsive.slice(); + res.sort(function (a, b) { + return a.breakpoint > b.breakpoint ? 1 : b.breakpoint > a.breakpoint ? -1 : 0; + }).reverse(); + var config = new Config({}); + + var iterateResponsiveOptions = function iterateResponsiveOptions() { + var newOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var largestBreakpoint = res[0].breakpoint; + var width = window.innerWidth > 0 ? window.innerWidth : screen.width; + + if (width > largestBreakpoint) { + var options = CoreUtils.extendArrayProps(config, w.globals.initialConfig); + newOptions = Utils.extend(options, newOptions); + newOptions = Utils.extend(w.config, newOptions); + + _this.overrideResponsiveOptions(newOptions); + } else { + for (var i = 0; i < res.length; i++) { + if (width < res[i].breakpoint) { + newOptions = CoreUtils.extendArrayProps(config, res[i].options); + newOptions = Utils.extend(w.config, newOptions); + + _this.overrideResponsiveOptions(newOptions); + } + } + } + }; + + if (opts) { + var options = CoreUtils.extendArrayProps(config, opts); + options = Utils.extend(w.config, options); + options = Utils.extend(options, opts); + iterateResponsiveOptions(options); + } else { + iterateResponsiveOptions({}); + } + } + }, { + key: "overrideResponsiveOptions", + value: function overrideResponsiveOptions(newOptions) { + var newConfig = new Config(newOptions).init(); + this.w.config = newConfig; + } + }]); + + return Responsive; + }(); + + /** + * ApexCharts Theme Class for setting the colors and palettes. + * + * @module Theme + **/ + + var Theme = + /*#__PURE__*/ + function () { + function Theme(ctx) { + _classCallCheck(this, Theme); + + this.ctx = ctx; + this.w = ctx.w; + this.colors = []; + } + + _createClass(Theme, [{ + key: "init", + value: function init() { + this.setDefaultColors(); + } + }, { + key: "setDefaultColors", + value: function setDefaultColors() { + var w = this.w; + var utils = new Utils(); + w.globals.dom.elWrap.classList.add(w.config.theme.mode); + + if (w.config.colors === undefined) { + w.globals.colors = this.predefined(); + } else { + w.globals.colors = w.config.colors; + } + + if (w.config.theme.monochrome.enabled) { + var monoArr = []; + var glsCnt = w.globals.series.length; + + if (w.config.plotOptions.bar.distributed && w.config.chart.type === 'bar') { + glsCnt = w.globals.series[0].length * w.globals.series.length; + } + + var mainColor = w.config.theme.monochrome.color; + var part = 1 / (glsCnt / w.config.theme.monochrome.shadeIntensity); + var shade = w.config.theme.monochrome.shadeTo; + var percent = 0; + + for (var gsl = 0; gsl < glsCnt; gsl++) { + var newColor = void 0; + + if (shade === 'dark') { + newColor = utils.shadeColor(percent * -1, mainColor); + percent = percent + part; + } else { + newColor = utils.shadeColor(percent, mainColor); + percent = percent + part; + } + + monoArr.push(newColor); + } + + w.globals.colors = monoArr.slice(); + } + + var defaultColors = w.globals.colors.slice(); // if user specfied less colors than no. of series, push the same colors again + + this.pushExtraColors(w.globals.colors); // The Border colors + + if (w.config.stroke.colors === undefined) { + w.globals.stroke.colors = defaultColors; + } else { + w.globals.stroke.colors = w.config.stroke.colors; + } + + this.pushExtraColors(w.globals.stroke.colors); // The FILL colors + + if (w.config.fill.colors === undefined) { + w.globals.fill.colors = defaultColors; + } else { + w.globals.fill.colors = w.config.fill.colors; + } + + this.pushExtraColors(w.globals.fill.colors); + + if (w.config.dataLabels.style.colors === undefined) { + w.globals.dataLabels.style.colors = defaultColors; + } else { + w.globals.dataLabels.style.colors = w.config.dataLabels.style.colors; + } + + this.pushExtraColors(w.globals.dataLabels.style.colors, 50); + + if (w.config.plotOptions.radar.polygons.fill.colors === undefined) { + w.globals.radarPolygons.fill.colors = [w.config.theme.mode === 'dark' ? '#202D48' : '#fff']; + } else { + w.globals.radarPolygons.fill.colors = w.config.plotOptions.radar.polygons.fill.colors; + } + + this.pushExtraColors(w.globals.radarPolygons.fill.colors, 20); // The point colors + + if (w.config.markers.colors === undefined) { + w.globals.markers.colors = defaultColors; + } else { + w.globals.markers.colors = w.config.markers.colors; + } + + this.pushExtraColors(w.globals.markers.colors); + } // When the number of colors provided is less than the number of series, this method + // will push same colors to the list + // params: + // distributed is only valid for distributed column/bar charts + + }, { + key: "pushExtraColors", + value: function pushExtraColors(colorSeries, length) { + var distributed = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; + var w = this.w; + var len = length || w.globals.series.length; + + if (distributed === null) { + distributed = w.config.chart.type === 'bar' && w.config.plotOptions.bar.distributed || w.config.chart.type === 'heatmap' && w.config.plotOptions.heatmap.colorScale.inverse; + } + + if (distributed) { + len = w.globals.series[0].length * w.globals.series.length; + } + + if (colorSeries.length < len) { + var diff = len - colorSeries.length; + + for (var i = 0; i < diff; i++) { + colorSeries.push(colorSeries[i]); + } + } + } + }, { + key: "updateThemeOptions", + value: function updateThemeOptions(options) { + options.chart = options.chart || {}; + options.tooltip = options.tooltip || {}; + var mode = options.theme.mode || 'light'; + var palette = options.theme.palette ? options.theme.palette : mode === 'dark' ? 'palette4' : 'palette1'; + var foreColor = options.chart.foreColor ? options.chart.foreColor : mode === 'dark' ? '#f6f7f8' : '#373d3f'; + options.tooltip.theme = mode; + options.chart.foreColor = foreColor; + options.theme.palette = palette; + return options; + } + }, { + key: "predefined", + value: function predefined() { + var palette = this.w.config.theme.palette; // D6E3F8, FCEFEF, DCE0D9, A5978B, EDDDD4, D6E3F8, FEF5EF + + switch (palette) { + case 'palette1': + this.colors = ['#008FFB', '#00E396', '#FEB019', '#FF4560', '#775DD0']; + break; + + case 'palette2': + this.colors = ['#3f51b5', '#03a9f4', '#4caf50', '#f9ce1d', '#FF9800']; + break; + + case 'palette3': + this.colors = ['#33b2df', '#546E7A', '#d4526e', '#13d8aa', '#A5978B']; + break; + + case 'palette4': + this.colors = ['#4ecdc4', '#c7f464', '#81D4FA', '#fd6a6a', '#546E7A']; + break; + + case 'palette5': + this.colors = ['#2b908f', '#f9a3a4', '#90ee7e', '#fa4443', '#69d2e7']; + break; + + case 'palette6': + this.colors = ['#449DD1', '#F86624', '#EA3546', '#662E9B', '#C5D86D']; + break; + + case 'palette7': + this.colors = ['#D7263D', '#1B998B', '#2E294E', '#F46036', '#E2C044']; + break; + + case 'palette8': + this.colors = ['#662E9B', '#F86624', '#F9C80E', '#EA3546', '#43BCCD']; + break; + + case 'palette9': + this.colors = ['#5C4742', '#A5978B', '#8D5B4C', '#5A2A27', '#C4BBAF']; + break; + + case 'palette10': + this.colors = ['#A300D6', '#7D02EB', '#5653FE', '#2983FF', '#00B1F2']; + break; + + default: + this.colors = ['#008FFB', '#00E396', '#FEB019', '#FF4560', '#775DD0']; + break; + } + + return this.colors; + } + }]); + + return Theme; + }(); + + var Utils$1 = + /*#__PURE__*/ + function () { + function Utils(tooltipContext) { + _classCallCheck(this, Utils); + + this.w = tooltipContext.w; + this.ttCtx = tooltipContext; + this.ctx = tooltipContext.ctx; + } + /** + ** When hovering over series, you need to capture which series is being hovered on. + ** This function will return both capturedseries index as well as inner index of that series + * @memberof Utils + * @param {object} + * - hoverArea = the rect on which user hovers + * - elGrid = dimensions of the hover rect (it can be different than hoverarea) + */ + + + _createClass(Utils, [{ + key: "getNearestValues", + value: function getNearestValues(_ref) { + var hoverArea = _ref.hoverArea, + elGrid = _ref.elGrid, + clientX = _ref.clientX, + clientY = _ref.clientY, + hasBars = _ref.hasBars; + var w = this.w; + var hoverWidth = w.globals.gridWidth; + var xDivisor = hoverWidth / (w.globals.dataPoints - 1); + var seriesBound = elGrid.getBoundingClientRect(); + + if (hasBars && w.globals.comboCharts || hasBars) { + xDivisor = hoverWidth / w.globals.dataPoints; + } + + var hoverX = clientX - seriesBound.left; + var hoverY = clientY - seriesBound.top; + var notInRect = hoverX < 0 || hoverY < 0 || hoverX > w.globals.gridWidth || hoverY > w.globals.gridHeight; + + if (notInRect) { + hoverArea.classList.remove('hovering-zoom'); + hoverArea.classList.remove('hovering-pan'); + } else { + if (w.globals.zoomEnabled) { + hoverArea.classList.remove('hovering-pan'); + hoverArea.classList.add('hovering-zoom'); + } else if (w.globals.panEnabled) { + hoverArea.classList.remove('hovering-zoom'); + hoverArea.classList.add('hovering-pan'); + } + } + + var j = Math.round(hoverX / xDivisor); + + if (hasBars) { + j = Math.ceil(hoverX / xDivisor); + j = j - 1; + } + + var capturedSeries = null; + var closest = null; + var seriesXValArr = []; + var seriesYValArr = []; + + for (var s = 0; s < w.globals.seriesXvalues.length; s++) { + seriesXValArr.push([w.globals.seriesXvalues[s][0] - 0.000001].concat(w.globals.seriesXvalues[s])); + } + + seriesXValArr = seriesXValArr.map(function (seriesXVal) { + return seriesXVal.filter(function (s) { + return s; + }); + }); + seriesYValArr = w.globals.seriesYvalues.map(function (seriesYVal) { + return seriesYVal.filter(function (s) { + return s; + }); + }); // if X axis type is not category and tooltip is not shared, then we need to find the cursor position and get the nearest value + + if (w.globals.isXNumeric) { + closest = this.closestInMultiArray(hoverX, hoverY, seriesXValArr, seriesYValArr); + capturedSeries = closest.index; + j = closest.j; + + if (capturedSeries !== null) { + // initial push, it should be a little smaller than the 1st val + seriesXValArr = w.globals.seriesXvalues[capturedSeries]; + closest = this.closestInArray(hoverX, seriesXValArr); + j = closest.index; + } + } + + w.globals.capturedSeriesIndex = capturedSeries === null ? -1 : capturedSeries; + w.globals.capturedDataPointIndex = j === null ? -1 : j; + if (!j || j < 1) j = 0; + return { + capturedSeries: capturedSeries, + j: j, + hoverX: hoverX, + hoverY: hoverY + }; + } + }, { + key: "closestInMultiArray", + value: function closestInMultiArray(hoverX, hoverY, Xarrays, Yarrays) { + var w = this.w; + var activeIndex = 0; + var currIndex = null; + var j = -1; + + if (w.globals.series.length > 1) { + activeIndex = this.getFirstActiveXArray(Xarrays); + } else { + currIndex = 0; + } + + var currY = Yarrays[activeIndex][0]; + var currX = Xarrays[activeIndex][0]; + var diffX = Math.abs(hoverX - currX); + var diffY = Math.abs(hoverY - currY); + var diff = diffY + diffX; + Yarrays.map(function (arrY, arrIndex) { + arrY.map(function (y, innerKey) { + var newdiffY = Math.abs(hoverY - Yarrays[arrIndex][innerKey]); + var newdiffX = Math.abs(hoverX - Xarrays[arrIndex][innerKey]); + var newdiff = newdiffX + newdiffY; + + if (newdiff < diff) { + diff = newdiff; + diffX = newdiffX; + diffY = newdiffY; + currIndex = arrIndex; + j = innerKey; + } + }); + }); + return { + index: currIndex, + j: j + }; + } + }, { + key: "getFirstActiveXArray", + value: function getFirstActiveXArray(Xarrays) { + var activeIndex = 0; + var coreUtils = new CoreUtils(this.ctx); + var firstActiveSeriesIndex = Xarrays.map(function (xarr, index) { + if (xarr.length > 0) { + return index; + } else { + return -1; + } + }); + + for (var a = 0; a < firstActiveSeriesIndex.length; a++) { + var total = coreUtils.getSeriesTotalByIndex(a); + + if (firstActiveSeriesIndex[a] !== -1 && total !== 0 && !coreUtils.seriesHaveSameValues(a)) { + activeIndex = firstActiveSeriesIndex[a]; + break; + } + } + + return activeIndex; + } + }, { + key: "closestInArray", + value: function closestInArray(val, arr) { + var curr = arr[0]; + var currIndex = null; + var diff = Math.abs(val - curr); + + for (var i = 0; i < arr.length; i++) { + var newdiff = Math.abs(val - arr[i]); + + if (newdiff < diff) { + diff = newdiff; + currIndex = i; + } + } + + return { + index: currIndex + }; + } + /** + * When there are multiple series, it is possible to have different x values for each series. + * But it may be possible in those multiple series, that there is same x value for 2 or more + * series. + * @memberof Utils + * @param {int} + * - j = is the inner index of series -> (series[i][j]) + * @return {bool} + */ + + }, { + key: "isXoverlap", + value: function isXoverlap(j) { + var w = this.w; + var xSameForAllSeriesJArr = []; + var seriesX = w.globals.seriesX.filter(function (s) { + return typeof s[0] !== 'undefined'; + }); + + if (seriesX.length > 0) { + for (var i = 0; i < seriesX.length - 1; i++) { + if (typeof seriesX[i][j] !== 'undefined' && typeof seriesX[i + 1][j] !== 'undefined') { + if (seriesX[i][j] !== seriesX[i + 1][j]) { + xSameForAllSeriesJArr.push('unEqual'); + } + } + } + } + + if (xSameForAllSeriesJArr.length === 0) { + return true; + } + + return false; + } + }, { + key: "isInitialSeriesSameLen", + value: function isInitialSeriesSameLen() { + var sameLen = true; + var initialSeries = this.w.globals.initialSeries; + + for (var i = 0; i < initialSeries.length - 1; i++) { + if (initialSeries[i].data.length !== initialSeries[i + 1].data.length) { + sameLen = false; + break; + } + } + + return sameLen; + } + }, { + key: "getBarsHeight", + value: function getBarsHeight(allbars) { + var bars = _toConsumableArray(allbars); + + var totalHeight = bars.reduce(function (acc, bar) { + return acc + bar.getBBox().height; + }, 0); + return totalHeight; + } + }, { + key: "toggleAllTooltipSeriesGroups", + value: function toggleAllTooltipSeriesGroups(state) { + var w = this.w; + var ttCtx = this.ttCtx; + + if (ttCtx.allTooltipSeriesGroups.length === 0) { + ttCtx.allTooltipSeriesGroups = w.globals.dom.baseEl.querySelectorAll('.apexcharts-tooltip-series-group'); + } + + var allTooltipSeriesGroups = ttCtx.allTooltipSeriesGroups; + + for (var i = 0; i < allTooltipSeriesGroups.length; i++) { + if (state === 'enable') { + allTooltipSeriesGroups[i].classList.add('active'); + allTooltipSeriesGroups[i].style.display = w.config.tooltip.items.display; + } else { + allTooltipSeriesGroups[i].classList.remove('active'); + allTooltipSeriesGroups[i].style.display = 'none'; + } + } + } + }]); + + return Utils; + }(); + + /** + * ApexCharts Tooltip.Labels Class to draw texts on the tooltip. + * + * @module Tooltip.Labels + **/ + + var Labels = + /*#__PURE__*/ + function () { + function Labels(tooltipContext) { + _classCallCheck(this, Labels); + + this.w = tooltipContext.w; + this.ctx = tooltipContext.ctx; + this.ttCtx = tooltipContext; + this.tooltipUtil = new Utils$1(tooltipContext); + } + + _createClass(Labels, [{ + key: "drawSeriesTexts", + value: function drawSeriesTexts(_ref) { + var _ref$shared = _ref.shared, + shared = _ref$shared === void 0 ? true : _ref$shared, + ttItems = _ref.ttItems, + _ref$i = _ref.i, + i = _ref$i === void 0 ? 0 : _ref$i, + _ref$j = _ref.j, + j = _ref$j === void 0 ? null : _ref$j; + var w = this.w; + + if (w.config.tooltip.custom !== undefined) { + this.handleCustomTooltip({ + i: i, + j: j + }); + } else { + this.toggleActiveInactiveSeries(shared); + } + + var values = this.getValuesToPrint({ + i: i, + j: j + }); + this.printLabels({ + i: i, + j: j, + values: values, + ttItems: ttItems, + shared: shared + }); // Re-calculate tooltip dimensions now that we have drawn the text + + var tooltipEl = this.ttCtx.getElTooltip(); + this.ttCtx.tooltipRect.ttWidth = tooltipEl.getBoundingClientRect().width; + this.ttCtx.tooltipRect.ttHeight = tooltipEl.getBoundingClientRect().height; + } + }, { + key: "printLabels", + value: function printLabels(_ref2) { + var i = _ref2.i, + j = _ref2.j, + values = _ref2.values, + ttItems = _ref2.ttItems, + shared = _ref2.shared; + var w = this.w; + var val; + var xVal = values.xVal, + zVal = values.zVal, + xAxisTTVal = values.xAxisTTVal; + var seriesName = ''; + var pColor = w.globals.colors[i]; + + if (j !== null && w.config.plotOptions.bar.distributed) { + pColor = w.globals.colors[j]; + } + + for (var t = 0, inverset = w.globals.series.length - 1; t < w.globals.series.length; t++, inverset--) { + var f = this.getFormatters(i); + seriesName = this.getSeriesName({ + fn: f.yLbTitleFormatter, + index: i, + seriesIndex: i, + j: j + }); + + if (shared) { + var tIndex = w.config.tooltip.inverseOrder ? inverset : t; + f = this.getFormatters(tIndex); + seriesName = this.getSeriesName({ + fn: f.yLbTitleFormatter, + index: tIndex, + seriesIndex: i, + j: j + }); + pColor = w.globals.colors[tIndex]; // for plot charts, not for pie/donuts + + val = f.yLbFormatter(w.globals.series[tIndex][j], { + series: w.globals.series, + seriesIndex: tIndex, + dataPointIndex: j, + w: w + }); // discard 0 values in BARS + + if (this.ttCtx.hasBars() && w.config.chart.stacked && w.globals.series[tIndex][j] === 0 || typeof w.globals.series[tIndex][j] === 'undefined') { + val = undefined; + } + } else { + val = f.yLbFormatter(w.globals.series[i][j], { + series: w.globals.series, + seriesIndex: i, + dataPointIndex: j, + w: w + }); + } // for pie / donuts + + + if (j === null) { + val = f.yLbFormatter(w.globals.series[i], w); + } + + this.DOMHandling({ + t: t, + ttItems: ttItems, + values: { + val: val, + xVal: xVal, + xAxisTTVal: xAxisTTVal, + zVal: zVal + }, + seriesName: seriesName, + shared: shared, + pColor: pColor + }); + } + } + }, { + key: "getFormatters", + value: function getFormatters(i) { + var w = this.w; + var yLbFormatter = w.globals.yLabelFormatters[i]; + var yLbTitleFormatter; + + if (w.globals.ttVal !== undefined) { + if (Array.isArray(w.globals.ttVal)) { + yLbFormatter = w.globals.ttVal[i] && w.globals.ttVal[i].formatter; + yLbTitleFormatter = w.globals.ttVal[i] && w.globals.ttVal[i].title && w.globals.ttVal[i].title.formatter; + } else { + yLbFormatter = w.globals.ttVal.formatter; + + if (typeof w.globals.ttVal.title.formatter === 'function') { + yLbTitleFormatter = w.globals.ttVal.title.formatter; + } + } + } else { + yLbTitleFormatter = w.config.tooltip.y.title.formatter; + } + + if (typeof yLbFormatter !== 'function') { + if (w.globals.yLabelFormatters[0]) { + yLbFormatter = w.globals.yLabelFormatters[0]; + } else { + yLbFormatter = function yLbFormatter(label) { + return label; + }; + } + } + + if (typeof yLbTitleFormatter !== 'function') { + yLbTitleFormatter = function yLbTitleFormatter(label) { + return label; + }; + } + + return { + yLbFormatter: yLbFormatter, + yLbTitleFormatter: yLbTitleFormatter + }; + } + }, { + key: "getSeriesName", + value: function getSeriesName(_ref3) { + var fn = _ref3.fn, + index = _ref3.index, + seriesIndex = _ref3.seriesIndex, + j = _ref3.j; + var w = this.w; + return fn(String(w.globals.seriesNames[index]), { + series: w.globals.series, + seriesIndex: seriesIndex, + dataPointIndex: j, + w: w + }); + } + }, { + key: "DOMHandling", + value: function DOMHandling(_ref4) { + var t = _ref4.t, + ttItems = _ref4.ttItems, + values = _ref4.values, + seriesName = _ref4.seriesName, + shared = _ref4.shared, + pColor = _ref4.pColor; + var w = this.w; + var ttCtx = this.ttCtx; + var val = values.val, + xVal = values.xVal, + xAxisTTVal = values.xAxisTTVal, + zVal = values.zVal; + var ttItemsChildren = null; + ttItemsChildren = ttItems[t].children; + + if (w.config.tooltip.fillSeriesColor) { + // elTooltip.style.backgroundColor = pColor + ttItems[t].style.backgroundColor = pColor; + ttItemsChildren[0].style.display = 'none'; + } + + if (ttCtx.showTooltipTitle) { + if (ttCtx.tooltipTitle === null) { + // get it once if null, and store it in class property + ttCtx.tooltipTitle = w.globals.dom.baseEl.querySelector('.apexcharts-tooltip-title'); + } + + ttCtx.tooltipTitle.innerHTML = xVal; + } // if xaxis tooltip is constructed, we need to replace the innerHTML + + + if (ttCtx.blxaxisTooltip) { + ttCtx.xaxisTooltipText.innerHTML = xAxisTTVal !== '' ? xAxisTTVal : xVal; + } + + var ttYLabel = ttItems[t].querySelector('.apexcharts-tooltip-text-label'); + + if (ttYLabel) { + ttYLabel.innerHTML = seriesName ? seriesName + ': ' : ''; + } + + var ttYVal = ttItems[t].querySelector('.apexcharts-tooltip-text-value'); + + if (ttYVal) { + ttYVal.innerHTML = val; + } + + if (ttItemsChildren[0] && ttItemsChildren[0].classList.contains('apexcharts-tooltip-marker')) { + ttItemsChildren[0].style.backgroundColor = pColor; + } + + if (!w.config.tooltip.marker.show) { + ttItemsChildren[0].style.display = 'none'; + } + + if (zVal !== null) { + var ttZLabel = ttItems[t].querySelector('.apexcharts-tooltip-text-z-label'); + ttZLabel.innerHTML = w.config.tooltip.z.title; + var ttZVal = ttItems[t].querySelector('.apexcharts-tooltip-text-z-value'); + ttZVal.innerHTML = zVal; + } + + if (shared && ttItemsChildren[0]) { + // hide when no Val or series collapsed + if (typeof val === 'undefined' || val === null || w.globals.collapsedSeriesIndices.indexOf(t) > -1) { + ttItemsChildren[0].parentNode.style.display = 'none'; + } else { + ttItemsChildren[0].parentNode.style.display = w.config.tooltip.items.display; + } + } + } + }, { + key: "toggleActiveInactiveSeries", + value: function toggleActiveInactiveSeries(shared) { + var w = this.w; + + if (shared) { + // make all tooltips active + this.tooltipUtil.toggleAllTooltipSeriesGroups('enable'); + } else { + // disable all tooltip text groups + this.tooltipUtil.toggleAllTooltipSeriesGroups('disable'); // enable the first tooltip text group + + var firstTooltipSeriesGroup = w.globals.dom.baseEl.querySelector('.apexcharts-tooltip-series-group'); + + if (firstTooltipSeriesGroup) { + firstTooltipSeriesGroup.classList.add('active'); + firstTooltipSeriesGroup.style.display = w.config.tooltip.items.display; + } + } + } + }, { + key: "getValuesToPrint", + value: function getValuesToPrint(_ref5) { + var i = _ref5.i, + j = _ref5.j; + var w = this.w; + var filteredSeriesX = this.ctx.series.filteredSeriesX(); + var xVal = ''; + var xAxisTTVal = ''; + var zVal = null; + var val = null; + var customFormatterOpts = { + series: w.globals.series, + seriesIndex: i, + dataPointIndex: j, + w: w + }; + var zFormatter = w.globals.ttZFormatter; + + if (j === null) { + val = w.globals.series[i]; + } else { + if (w.globals.isXNumeric) { + xVal = filteredSeriesX[i][j]; + + if (filteredSeriesX[i].length === 0) { + // a series (possibly the first one) might be collapsed, so get the next active index + var firstActiveSeriesIndex = this.tooltipUtil.getFirstActiveXArray(filteredSeriesX); + xVal = filteredSeriesX[firstActiveSeriesIndex][j]; + } + } else { + xVal = typeof w.globals.labels[j] !== 'undefined' ? w.globals.labels[j] : ''; + } + } + + var bufferXVal = xVal; + + if (w.globals.isXNumeric && w.config.xaxis.type === 'datetime') { + var xFormat = new Formatters(this.ctx); + xVal = xFormat.xLabelFormat(w.globals.ttKeyFormatter, bufferXVal, bufferXVal); + } else { + if (!w.globals.isBarHorizontal) { + xVal = w.globals.xLabelFormatter(bufferXVal, customFormatterOpts); + } + } // override default x-axis formatter with tooltip formatter + + + if (w.config.tooltip.x.formatter !== undefined) { + xVal = w.globals.ttKeyFormatter(bufferXVal, customFormatterOpts); + } + + if (w.globals.seriesZ.length > 0 && w.globals.seriesZ[0].length > 0) { + zVal = zFormatter(w.globals.seriesZ[i][j], w); + } + + if (typeof w.config.xaxis.tooltip.formatter === 'function') { + xAxisTTVal = w.globals.xaxisTooltipFormatter(bufferXVal, customFormatterOpts); + } else { + xAxisTTVal = xVal; + } + + return { + val: val, + xVal: xVal, + xAxisTTVal: xAxisTTVal, + zVal: zVal + }; + } + }, { + key: "handleCustomTooltip", + value: function handleCustomTooltip(_ref6) { + var i = _ref6.i, + j = _ref6.j; + var w = this.w; + var tooltipEl = this.ttCtx.getElTooltip(); // override everything with a custom html tooltip and replace it + + tooltipEl.innerHTML = w.config.tooltip.custom({ + ctx: this.ctx, + series: w.globals.series, + seriesIndex: i, + dataPointIndex: j, + w: w + }); + } + }]); + + return Labels; + }(); + + /** + * ApexCharts Tooltip.Position Class to move the tooltip based on x and y position. + * + * @module Tooltip.Position + **/ + + var Position = + /*#__PURE__*/ + function () { + function Position(tooltipContext) { + _classCallCheck(this, Position); + + this.ttCtx = tooltipContext; + this.ctx = tooltipContext.ctx; + this.w = tooltipContext.w; + } + /** + * This will move the crosshair (the vertical/horz line that moves along with mouse) + * Along with this, this function also calls the xaxisMove function + * @memberof Position + * @param {int} - cx = point's x position, wherever point's x is, you need to move crosshair + */ + + + _createClass(Position, [{ + key: "moveXCrosshairs", + value: function moveXCrosshairs(cx) { + var j = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + var ttCtx = this.ttCtx; + var w = this.w; + var xcrosshairs = ttCtx.getElXCrosshairs(); + var x = cx - ttCtx.xcrosshairsWidth / 2; + var tickAmount = w.globals.labels.slice().length; + + if (j !== null) { + x = w.globals.gridWidth / tickAmount * j; + } + + if (w.config.xaxis.crosshairs.width === 'tickWidth' || w.config.xaxis.crosshairs.width === 'barWidth') { + if (x + ttCtx.xcrosshairsWidth > w.globals.gridWidth) { + x = w.globals.gridWidth - ttCtx.xcrosshairsWidth; + } + } else { + if (j !== null) { + x = x + w.globals.gridWidth / tickAmount / 2; + } + } + + if (x < 0) { + x = 0; + } + + if (x > w.globals.gridWidth) { + x = w.globals.gridWidth; + } + + if (xcrosshairs !== null) { + xcrosshairs.setAttribute('x', x); + xcrosshairs.setAttribute('x1', x); + xcrosshairs.setAttribute('x2', x); + xcrosshairs.setAttribute('y2', w.globals.gridHeight); + xcrosshairs.classList.add('active'); + } + + if (ttCtx.blxaxisTooltip) { + var tx = x; + + if (w.config.xaxis.crosshairs.width === 'tickWidth' || w.config.xaxis.crosshairs.width === 'barWidth') { + tx = x + ttCtx.xcrosshairsWidth / 2; + } + + this.moveXAxisTooltip(tx); + } + } + /** + * This will move the crosshair (the vertical/horz line that moves along with mouse) + * Along with this, this function also calls the xaxisMove function + * @memberof Position + * @param {int} - cx = point's x position, wherever point's x is, you need to move crosshair + */ + + }, { + key: "moveYCrosshairs", + value: function moveYCrosshairs(cy) { + var ttCtx = this.ttCtx; + + if (ttCtx.ycrosshairs !== null) { + Graphics.setAttrs(ttCtx.ycrosshairs, { + y1: cy, + y2: cy + }); + Graphics.setAttrs(ttCtx.ycrosshairsHidden, { + y1: cy, + y2: cy + }); + } + } + /** + ** AxisTooltip is the small rectangle which appears on x axis with x value, when user moves + * @memberof Position + * @param {int} - cx = point's x position, wherever point's x is, you need to move + */ + + }, { + key: "moveXAxisTooltip", + value: function moveXAxisTooltip(cx) { + var w = this.w; + var ttCtx = this.ttCtx; + + if (ttCtx.xaxisTooltip !== null) { + ttCtx.xaxisTooltip.classList.add('active'); + var cy = ttCtx.xaxisOffY + w.config.xaxis.tooltip.offsetY + w.globals.translateY + 1 + w.config.xaxis.offsetY; + var xaxisTTText = ttCtx.xaxisTooltip.getBoundingClientRect(); + var xaxisTTTextWidth = xaxisTTText.width; + cx = cx - xaxisTTTextWidth / 2; + + if (!isNaN(cx)) { + cx = cx + w.globals.translateX; + var textRect = 0; + var graphics = new Graphics(this.ctx); + textRect = graphics.getTextRects(ttCtx.xaxisTooltipText.innerHTML); + ttCtx.xaxisTooltipText.style.minWidth = textRect.width + 'px'; + ttCtx.xaxisTooltip.style.left = cx + 'px'; + ttCtx.xaxisTooltip.style.top = cy + 'px'; + } + } + } + }, { + key: "moveYAxisTooltip", + value: function moveYAxisTooltip(index) { + var w = this.w; + var ttCtx = this.ttCtx; + + if (ttCtx.yaxisTTEls === null) { + ttCtx.yaxisTTEls = w.globals.dom.baseEl.querySelectorAll('.apexcharts-yaxistooltip'); + } + + var ycrosshairsHiddenRectY1 = parseInt(ttCtx.ycrosshairsHidden.getAttribute('y1')); + var cy = w.globals.translateY + ycrosshairsHiddenRectY1; + var yAxisTTRect = ttCtx.yaxisTTEls[index].getBoundingClientRect(); + var yAxisTTHeight = yAxisTTRect.height; + var cx = w.globals.translateYAxisX[index] - 2; + + if (w.config.yaxis[index].opposite) { + cx = cx - 26; + } + + cy = cy - yAxisTTHeight / 2; + + if (w.globals.ignoreYAxisIndexes.indexOf(index) === -1) { + ttCtx.yaxisTTEls[index].classList.add('active'); + ttCtx.yaxisTTEls[index].style.top = cy + 'px'; + ttCtx.yaxisTTEls[index].style.left = cx + w.config.yaxis[index].tooltip.offsetX + 'px'; + } else { + ttCtx.yaxisTTEls[index].classList.remove('active'); + } + } + /** + ** moves the whole tooltip by changing x, y attrs + * @memberof Position + * @param {int} - cx = point's x position, wherever point's x is, you need to move tooltip + * @param {int} - cy = point's y position, wherever point's y is, you need to move tooltip + * @param {int} - r = point's radius + */ + + }, { + key: "moveTooltip", + value: function moveTooltip(cx, cy) { + var r = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; + var w = this.w; + var ttCtx = this.ttCtx; + var tooltipEl = ttCtx.getElTooltip(); + var tooltipRect = ttCtx.tooltipRect; + var pointR = r !== null ? parseInt(r) : 1; + var x = parseInt(cx) + pointR + 5; + var y = parseInt(cy) + pointR / 2; // - tooltipRect.ttHeight / 2 + + if (x > w.globals.gridWidth / 2) { + x = x - tooltipRect.ttWidth - pointR - 15; + } + + if (x > w.globals.gridWidth - tooltipRect.ttWidth - 10) { + x = w.globals.gridWidth - tooltipRect.ttWidth; + } + + if (x < -20) { + x = -20; + } + + if (w.config.tooltip.followCursor) { + var elGrid = ttCtx.getElGrid(); + var seriesBound = elGrid.getBoundingClientRect(); + y = ttCtx.e.clientY + w.globals.translateY - seriesBound.top - tooltipRect.ttHeight / 2; + } + + var newPositions = this.positionChecks(tooltipRect, x, y); + x = newPositions.x; + y = newPositions.y; + + if (!isNaN(x)) { + x = x + w.globals.translateX; + tooltipEl.style.left = x + 'px'; + tooltipEl.style.top = y + 'px'; + } + } + }, { + key: "positionChecks", + value: function positionChecks(tooltipRect, x, y) { + var w = this.w; + + if (tooltipRect.ttHeight + y > w.globals.gridHeight) { + y = w.globals.gridHeight - tooltipRect.ttHeight + w.globals.translateY; + } + + if (y < 0) { + y = 0; + } + + return { + x: x, + y: y + }; + } + }, { + key: "moveMarkers", + value: function moveMarkers(i, j) { + var w = this.w; + var ttCtx = this.ttCtx; + + if (w.globals.markers.size[i] > 0) { + var allPoints = w.globals.dom.baseEl.querySelectorAll(" .apexcharts-series[data\\:realIndex='".concat(i, "'] .apexcharts-marker")); + + for (var p = 0; p < allPoints.length; p++) { + if (parseInt(allPoints[p].getAttribute('rel')) === j) { + ttCtx.marker.resetPointsSize(); + ttCtx.marker.enlargeCurrentPoint(j, allPoints[p]); + } + } + } else { + ttCtx.marker.resetPointsSize(); + this.moveDynamicPointOnHover(j, i); + } + } // This function is used when you need to show markers/points only on hover - + // DIFFERENT X VALUES in multiple series + + }, { + key: "moveDynamicPointOnHover", + value: function moveDynamicPointOnHover(j, capturedSeries) { + var w = this.w; + var ttCtx = this.ttCtx; + var cx = 0; + var cy = 0; + var pointsArr = w.globals.pointsArray; + var hoverSize = w.config.markers.hover.size; + + if (hoverSize === undefined) { + hoverSize = w.globals.markers.size[capturedSeries] + w.config.markers.hover.sizeOffset; + } + + if (w.config.series[capturedSeries].type && w.config.series[capturedSeries].type === 'column') { + // fix error mentioned in #811 + return; + } + + cx = pointsArr[capturedSeries][j][0]; + cy = pointsArr[capturedSeries][j][1] ? pointsArr[capturedSeries][j][1] : 0; + var point = w.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(capturedSeries, "'] .apexcharts-series-markers circle")); + + if (point) { + point.setAttribute('r', hoverSize); + point.setAttribute('cx', cx); + point.setAttribute('cy', cy); + } // point.style.opacity = w.config.markers.hover.opacity + + + this.moveXCrosshairs(cx); + + if (!ttCtx.fixedTooltip) { + this.moveTooltip(cx, cy, hoverSize); + } + } // This function is used when you need to show markers/points only on hover - + // SAME X VALUES in multiple series + + }, { + key: "moveDynamicPointsOnHover", + value: function moveDynamicPointsOnHover(j) { + var ttCtx = this.ttCtx; + var w = ttCtx.w; + var cx = 0; + var cy = 0; + var activeSeries = 0; + var pointsArr = w.globals.pointsArray; + var series = new Series(this.ctx); + activeSeries = series.getActiveSeriesIndex(); + var hoverSize = w.config.markers.hover.size; + + if (hoverSize === undefined) { + hoverSize = w.globals.markers.size[activeSeries] + w.config.markers.hover.sizeOffset; + } + + if (pointsArr[activeSeries]) { + cx = pointsArr[activeSeries][j][0]; + cy = pointsArr[activeSeries][j][1]; + } + + var points = null; + var allPoints = ttCtx.getAllMarkers(); + + if (allPoints !== null) { + points = allPoints; + } else { + points = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series-markers circle'); + } + + if (points !== null) { + for (var p = 0; p < points.length; p++) { + var pointArr = pointsArr[p]; + + if (pointArr && pointArr.length) { + var pcy = pointsArr[p][j][1]; + points[p].setAttribute('cx', cx); + var realIndex = parseInt(points[p].parentNode.parentNode.parentNode.getAttribute('data:realIndex')); + + if (pcy !== null) { + points[realIndex] && points[realIndex].setAttribute('r', hoverSize); + points[realIndex] && points[realIndex].setAttribute('cy', pcy); + } else { + points[realIndex] && points[realIndex].setAttribute('r', 0); + } + } + } + } + + this.moveXCrosshairs(cx); + + if (!ttCtx.fixedTooltip) { + var tcy = cy || w.globals.gridHeight; + this.moveTooltip(cx, tcy, hoverSize); + } + } + }, { + key: "moveStickyTooltipOverBars", + value: function moveStickyTooltipOverBars(j) { + var w = this.w; + var ttCtx = this.ttCtx; + var i = w.globals.maxValsInArrayIndex + 1; + var jBar = w.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[rel='".concat(i, "'] path[j='").concat(j, "'], .apexcharts-candlestick-series .apexcharts-series[rel='").concat(i, "'] path[j='").concat(j, "'], .apexcharts-rangebar-series .apexcharts-series[rel='").concat(i, "'] path[j='").concat(j, "']")); + var bcx = jBar ? parseFloat(jBar.getAttribute('cx')) : 0; + var bcy = 0; + var bw = jBar ? parseFloat(jBar.getAttribute('barWidth')) : 0; + + if (w.globals.isXNumeric) { + bcx = bcx - bw / 2; + } else { + bcx = ttCtx.xAxisTicksPositions[j - 1] + ttCtx.dataPointsDividedWidth / 2; + + if (isNaN(bcx)) { + bcx = ttCtx.xAxisTicksPositions[j] - ttCtx.dataPointsDividedWidth / 2; + } + } // tooltip will move vertically along with mouse as it is a shared tooltip + + + var elGrid = ttCtx.getElGrid(); + var seriesBound = elGrid.getBoundingClientRect(); + bcy = ttCtx.e.clientY - seriesBound.top - ttCtx.tooltipRect.ttHeight / 2; + this.moveXCrosshairs(bcx); + + if (!ttCtx.fixedTooltip) { + var tcy = bcy || w.globals.gridHeight; + this.moveTooltip(bcx, tcy); + } + } + }]); + + return Position; + }(); + + /** + * ApexCharts Tooltip.Marker Class to draw texts on the tooltip. + * + * @module Tooltip.Marker + **/ + + var Marker = + /*#__PURE__*/ + function () { + function Marker(tooltipContext) { + _classCallCheck(this, Marker); + + this.w = tooltipContext.w; + this.ttCtx = tooltipContext; + this.ctx = tooltipContext.ctx; + this.tooltipPosition = new Position(tooltipContext); + } + + _createClass(Marker, [{ + key: "drawDynamicPoints", + value: function drawDynamicPoints() { + var w = this.w; + var graphics = new Graphics(this.ctx); + var marker = new Markers(this.ctx); + var elsSeries = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series'); + + for (var i = 0; i < elsSeries.length; i++) { + var seriesIndex = parseInt(elsSeries[i].getAttribute('data:realIndex')); + var pointsMain = w.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(seriesIndex, "'] .apexcharts-series-markers-wrap")); + + if (pointsMain !== null) { + // it can be null as we have tooltips in donut/bar charts + var point = void 0; + var PointClasses = "apexcharts-marker w".concat((Math.random() + 1).toString(36).substring(4)); + + if ((w.config.chart.type === 'line' || w.config.chart.type === 'area') && !w.globals.comboCharts && !w.config.tooltip.intersect) { + PointClasses += ' no-pointer-events'; + } + + var elPointOptions = marker.getMarkerConfig(PointClasses, seriesIndex); + point = graphics.drawMarker(0, 0, elPointOptions); + point.node.setAttribute('default-marker-size', 0); + var elPointsG = document.createElementNS(w.globals.SVGNS, 'g'); + elPointsG.classList.add('apexcharts-series-markers'); + elPointsG.appendChild(point.node); + pointsMain.appendChild(elPointsG); + } + } + } + }, { + key: "enlargeCurrentPoint", + value: function enlargeCurrentPoint(rel, point) { + var x = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; + var y = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; + var w = this.w; + + if (w.config.chart.type !== 'bubble') { + this.newPointSize(rel, point); + } + + var cx = point.getAttribute('cx'); + var cy = point.getAttribute('cy'); + + if (x !== null && y !== null) { + cx = x; + cy = y; + } + + this.tooltipPosition.moveXCrosshairs(cx); + + if (!this.fixedTooltip) { + if (w.config.chart.type === 'radar') { + var elGrid = this.ttCtx.getElGrid(); + var seriesBound = elGrid.getBoundingClientRect(); + cx = this.ttCtx.e.clientX - seriesBound.left; + } + + this.tooltipPosition.moveTooltip(cx, cy, w.config.markers.hover.size); + } + } + }, { + key: "enlargePoints", + value: function enlargePoints(j) { + var w = this.w; + var me = this; + var ttCtx = this.ttCtx; + var col = j; + var points = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker'); + var newSize = w.config.markers.hover.size; + + for (var p = 0; p < points.length; p++) { + var rel = points[p].getAttribute('rel'); + var index = points[p].getAttribute('index'); + + if (newSize === undefined) { + newSize = w.globals.markers.size[index] + w.config.markers.hover.sizeOffset; + } + + if (col === parseInt(rel)) { + me.newPointSize(col, points[p]); + var cx = points[p].getAttribute('cx'); + var cy = points[p].getAttribute('cy'); + me.tooltipPosition.moveXCrosshairs(cx); + + if (!ttCtx.fixedTooltip) { + me.tooltipPosition.moveTooltip(cx, cy, newSize); + } + } else { + me.oldPointSize(points[p]); + } + } + } + }, { + key: "newPointSize", + value: function newPointSize(rel, point) { + var w = this.w; + var newSize = w.config.markers.hover.size; + var elPoint = null; + + if (rel === 0) { + elPoint = point.parentNode.firstChild; + } else { + elPoint = point.parentNode.lastChild; + } + + var index = parseInt(elPoint.getAttribute('index')); + + if (newSize === undefined) { + newSize = w.globals.markers.size[index] + w.config.markers.hover.sizeOffset; + } + + elPoint.setAttribute('r', newSize); + } + }, { + key: "oldPointSize", + value: function oldPointSize(point) { + var size = parseInt(point.getAttribute('default-marker-size')); + point.setAttribute('r', size); + } + }, { + key: "resetPointsSize", + value: function resetPointsSize() { + var w = this.w; + var points = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker'); + + for (var p = 0; p < points.length; p++) { + var size = parseInt(points[p].getAttribute('default-marker-size')); + + if (Utils.isNumber(size)) { + points[p].setAttribute('r', size); + } else { + points[p].setAttribute('r', 0); + } + } + } + }]); + + return Marker; + }(); + + /** + * ApexCharts Tooltip.Intersect Class. + * + * @module Tooltip.Intersect + **/ + + var Intersect = + /*#__PURE__*/ + function () { + function Intersect(tooltipContext) { + _classCallCheck(this, Intersect); + + this.w = tooltipContext.w; + this.ttCtx = tooltipContext; + } + + _createClass(Intersect, [{ + key: "getAttr", + value: function getAttr(e, attr) { + return parseFloat(e.target.getAttribute(attr)); + } + }, { + key: "handleHeatTooltip", + value: function handleHeatTooltip(_ref) { + var e = _ref.e, + opt = _ref.opt, + x = _ref.x, + y = _ref.y; + var ttCtx = this.ttCtx; + var w = this.w; + + if (e.target.classList.contains('apexcharts-heatmap-rect')) { + var i = this.getAttr(e, 'i'); + var j = this.getAttr(e, 'j'); + var cx = this.getAttr(e, 'cx'); + var cy = this.getAttr(e, 'cy'); + var width = this.getAttr(e, 'width'); + var height = this.getAttr(e, 'height'); + ttCtx.tooltipLabels.drawSeriesTexts({ + ttItems: opt.ttItems, + i: i, + j: j, + shared: false + }); + w.globals.capturedSeriesIndex = i; + w.globals.capturedDataPointIndex = j; + x = cx + ttCtx.tooltipRect.ttWidth / 2 + width; + y = cy + ttCtx.tooltipRect.ttHeight / 2 - height / 2; + ttCtx.tooltipPosition.moveXCrosshairs(cx + width / 2); + + if (x > w.globals.gridWidth / 2) { + x = cx - ttCtx.tooltipRect.ttWidth / 2 + width; + } + + if (ttCtx.w.config.tooltip.followCursor) { + var elGrid = ttCtx.getElGrid(); + var seriesBound = elGrid.getBoundingClientRect(); // x = ttCtx.e.clientX - seriesBound.left + + y = ttCtx.e.clientY - seriesBound.top + w.globals.translateY / 2 - 10; + } + } + + return { + x: x, + y: y + }; + } + }, { + key: "handleMarkerTooltip", + value: function handleMarkerTooltip(_ref2) { + var e = _ref2.e, + opt = _ref2.opt, + x = _ref2.x, + y = _ref2.y; + var w = this.w; + var ttCtx = this.ttCtx; + var i; + var j; + + if (e.target.classList.contains('apexcharts-marker')) { + var cx = parseInt(opt.paths.getAttribute('cx')); + var cy = parseInt(opt.paths.getAttribute('cy')); + var val = parseFloat(opt.paths.getAttribute('val')); + j = parseInt(opt.paths.getAttribute('rel')); + i = parseInt(opt.paths.parentNode.parentNode.parentNode.getAttribute('rel')) - 1; + + if (ttCtx.intersect) { + var el = Utils.findAncestor(opt.paths, 'apexcharts-series'); + + if (el) { + i = parseInt(el.getAttribute('data:realIndex')); + } + } + + ttCtx.tooltipLabels.drawSeriesTexts({ + ttItems: opt.ttItems, + i: i, + j: j, + shared: ttCtx.showOnIntersect ? false : w.config.tooltip.shared + }); + + if (e.type === 'mouseup') { + ttCtx.markerClick(e, i, j); + } + + w.globals.capturedSeriesIndex = i; + w.globals.capturedDataPointIndex = j; + x = cx; + y = cy + w.globals.translateY - ttCtx.tooltipRect.ttHeight * 1.4; + + if (ttCtx.w.config.tooltip.followCursor) { + var elGrid = ttCtx.getElGrid(); + var seriesBound = elGrid.getBoundingClientRect(); + y = ttCtx.e.clientY + w.globals.translateY - seriesBound.top; + } + + if (val < 0) { + y = cy; + } + + ttCtx.marker.enlargeCurrentPoint(j, opt.paths, x, y); + } + + return { + x: x, + y: y + }; + } + }, { + key: "handleBarTooltip", + value: function handleBarTooltip(_ref3) { + var e = _ref3.e, + opt = _ref3.opt; + var w = this.w; + var ttCtx = this.ttCtx; + var tooltipEl = ttCtx.getElTooltip(); + var bx = 0; + var x = 0; + var y = 0; // let bW = 0 + + var i = 0; + var strokeWidth; + var barXY = this.getBarTooltipXY({ + e: e, + opt: opt + }); + i = barXY.i; + var barHeight = barXY.barHeight; + var j = barXY.j; + w.globals.capturedSeriesIndex = i; + w.globals.capturedDataPointIndex = j; + + if (w.globals.isBarHorizontal && ttCtx.hasBars() || !w.config.tooltip.shared) { + x = barXY.x; + y = barXY.y; + strokeWidth = Array.isArray(w.config.stroke.width) ? w.config.stroke.width[i] : w.config.stroke.width; // bW = barXY.barWidth + + bx = x; + } else { + if (!w.globals.comboCharts && !w.config.tooltip.shared) { + bx = bx / 2; + } + } // y is NaN, make it touch the bottom of grid area + + + if (isNaN(y)) { + y = w.globals.svgHeight - ttCtx.tooltipRect.ttHeight; + } // x exceeds gridWidth + + + if (x + ttCtx.tooltipRect.ttWidth > w.globals.gridWidth) { + x = x - ttCtx.tooltipRect.ttWidth; + } else if (x < 0) { + x = x + ttCtx.tooltipRect.ttWidth; + } + + if (ttCtx.w.config.tooltip.followCursor) { + var elGrid = ttCtx.getElGrid(); + var seriesBound = elGrid.getBoundingClientRect(); + y = ttCtx.e.clientY - seriesBound.top; + } // if tooltip is still null, querySelector + + + if (ttCtx.tooltip === null) { + ttCtx.tooltip = w.globals.dom.baseEl.querySelector('.apexcharts-tooltip'); + } + + if (!w.config.tooltip.shared) { + if (w.globals.comboChartsHasBars) { + ttCtx.tooltipPosition.moveXCrosshairs(bx + strokeWidth / 2); + } else { + ttCtx.tooltipPosition.moveXCrosshairs(bx); + } + } // move tooltip here + + + if (!ttCtx.fixedTooltip && (!w.config.tooltip.shared || w.globals.isBarHorizontal && ttCtx.hasBars())) { + if (isReversed) { + x = w.globals.gridWidth - x; + } + + tooltipEl.style.left = x + w.globals.translateX + 'px'; + var seriesIndex = parseInt(opt.paths.parentNode.getAttribute('data:realIndex')); + var isReversed = w.globals.isMultipleYAxis ? w.config.yaxis[seriesIndex] && w.config.yaxis[seriesIndex].reversed : w.config.yaxis[0].reversed; + + if (isReversed && !(w.globals.isBarHorizontal && ttCtx.hasBars())) { + y = y + barHeight - (w.globals.series[i][j] < 0 ? barHeight : 0) * 2; + } + + if (ttCtx.tooltipRect.ttHeight + y > w.globals.gridHeight) { + y = w.globals.gridHeight - ttCtx.tooltipRect.ttHeight + w.globals.translateY; + tooltipEl.style.top = y + 'px'; + } else { + tooltipEl.style.top = y + w.globals.translateY - ttCtx.tooltipRect.ttHeight / 2 + 'px'; + } + } + } + }, { + key: "getBarTooltipXY", + value: function getBarTooltipXY(_ref4) { + var e = _ref4.e, + opt = _ref4.opt; + var w = this.w; + var j = null; + var ttCtx = this.ttCtx; + var i = 0; + var x = 0; + var y = 0; + var barWidth = 0; + var barHeight = 0; + var cl = e.target.classList; + + if (cl.contains('apexcharts-bar-area') || cl.contains('apexcharts-candlestick-area') || cl.contains('apexcharts-rangebar-area')) { + var bar = e.target; + var barRect = bar.getBoundingClientRect(); + var seriesBound = opt.elGrid.getBoundingClientRect(); + var bh = barRect.height; + barHeight = barRect.height; + var bw = barRect.width; + var cx = parseInt(bar.getAttribute('cx')); + var cy = parseInt(bar.getAttribute('cy')); + barWidth = parseFloat(bar.getAttribute('barWidth')); + var clientX = e.type === 'touchmove' ? e.touches[0].clientX : e.clientX; + j = parseInt(bar.getAttribute('j')); + i = parseInt(bar.parentNode.getAttribute('rel')) - 1; + + if (w.globals.comboCharts) { + i = parseInt(bar.parentNode.getAttribute('data:realIndex')); + } // if (w.config.tooltip.shared) { + // this check not needed at the moment + // const yDivisor = w.globals.gridHeight / (w.globals.series.length) + // const hoverY = ttCtx.clientY - ttCtx.seriesBound.top + // j = Math.ceil(hoverY / yDivisor) + // } + + + ttCtx.tooltipLabels.drawSeriesTexts({ + ttItems: opt.ttItems, + i: i, + j: j, + shared: ttCtx.showOnIntersect ? false : w.config.tooltip.shared + }); + + if (w.config.tooltip.followCursor) { + if (w.globals.isBarHorizontal) { + x = clientX - seriesBound.left + 15; + y = cy - ttCtx.dataPointsDividedHeight + bh / 2 - ttCtx.tooltipRect.ttHeight / 2; + } else { + if (w.globals.isXNumeric) { + x = cx - bw / 2; + } else { + x = cx - ttCtx.dataPointsDividedWidth + bw / 2; + } + + y = e.clientY - seriesBound.top - ttCtx.tooltipRect.ttHeight / 2 - 15; + } + } else { + if (w.globals.isBarHorizontal) { + x = cx; + + if (x < ttCtx.xyRatios.baseLineInvertedY) { + x = cx - ttCtx.tooltipRect.ttWidth; + } + + y = cy - ttCtx.dataPointsDividedHeight + bh / 2 - ttCtx.tooltipRect.ttHeight / 2; + } else { + // if columns + if (w.globals.isXNumeric) { + x = cx - bw / 2; + } else { + x = cx - ttCtx.dataPointsDividedWidth + bw / 2; + } + + y = cy; // - ttCtx.tooltipRect.ttHeight / 2 + 10 + } + } + } + + return { + x: x, + y: y, + barHeight: barHeight, + barWidth: barWidth, + i: i, + j: j + }; + } + }]); + + return Intersect; + }(); + + /** + * ApexCharts Tooltip.AxesTooltip Class. + * + * @module Tooltip.AxesTooltip + **/ + var AxesTooltip = + /*#__PURE__*/ + function () { + function AxesTooltip(tooltipContext) { + _classCallCheck(this, AxesTooltip); + + this.w = tooltipContext.w; + this.ttCtx = tooltipContext; + } + /** + * This method adds the secondary tooltip which appears below x axis + * @memberof Tooltip + **/ + + + _createClass(AxesTooltip, [{ + key: "drawXaxisTooltip", + value: function drawXaxisTooltip() { + var w = this.w; + var ttCtx = this.ttCtx; + var isBottom = w.config.xaxis.position === 'bottom'; + ttCtx.xaxisOffY = isBottom ? w.globals.gridHeight + 1 : 1; + var tooltipCssClass = isBottom ? 'apexcharts-xaxistooltip apexcharts-xaxistooltip-bottom' : 'apexcharts-xaxistooltip apexcharts-xaxistooltip-top'; + var renderTo = w.globals.dom.elWrap; + + if (ttCtx.blxaxisTooltip) { + var xaxisTooltip = w.globals.dom.baseEl.querySelector('.apexcharts-xaxistooltip'); + + if (xaxisTooltip === null) { + ttCtx.xaxisTooltip = document.createElement('div'); + ttCtx.xaxisTooltip.setAttribute('class', tooltipCssClass + ' ' + w.config.tooltip.theme); + renderTo.appendChild(ttCtx.xaxisTooltip); + ttCtx.xaxisTooltipText = document.createElement('div'); + ttCtx.xaxisTooltipText.classList.add('apexcharts-xaxistooltip-text'); + ttCtx.xaxisTooltipText.style.fontFamily = w.config.xaxis.tooltip.style.fontFamily || w.config.chart.fontFamily; + ttCtx.xaxisTooltipText.style.fontSize = w.config.xaxis.tooltip.style.fontSize; + ttCtx.xaxisTooltip.appendChild(ttCtx.xaxisTooltipText); + } + } + } + /** + * This method adds the secondary tooltip which appears below x axis + * @memberof Tooltip + **/ + + }, { + key: "drawYaxisTooltip", + value: function drawYaxisTooltip() { + var w = this.w; + var ttCtx = this.ttCtx; + + var _loop = function _loop(i) { + var isRight = w.config.yaxis[i].opposite || w.config.yaxis[i].crosshairs.opposite; + ttCtx.yaxisOffX = isRight ? w.globals.gridWidth + 1 : 1; + var tooltipCssClass = isRight ? "apexcharts-yaxistooltip apexcharts-yaxistooltip-".concat(i, " apexcharts-yaxistooltip-right") : "apexcharts-yaxistooltip apexcharts-yaxistooltip-".concat(i, " apexcharts-yaxistooltip-left"); + w.globals.yAxisSameScaleIndices.map(function (samescales, ssi) { + samescales.map(function (s, si) { + if (si === i) { + tooltipCssClass += w.config.yaxis[si].show ? " " : " apexcharts-yaxistooltip-hidden"; + } + }); + }); + var renderTo = w.globals.dom.elWrap; + + if (ttCtx.blyaxisTooltip) { + var yaxisTooltip = w.globals.dom.baseEl.querySelector(".apexcharts-yaxistooltip apexcharts-yaxistooltip-".concat(i)); + + if (yaxisTooltip === null) { + ttCtx.yaxisTooltip = document.createElement('div'); + ttCtx.yaxisTooltip.setAttribute('class', tooltipCssClass + ' ' + w.config.tooltip.theme); + renderTo.appendChild(ttCtx.yaxisTooltip); + if (i === 0) ttCtx.yaxisTooltipText = []; + ttCtx.yaxisTooltipText.push(document.createElement('div')); + ttCtx.yaxisTooltipText[i].classList.add('apexcharts-yaxistooltip-text'); + ttCtx.yaxisTooltip.appendChild(ttCtx.yaxisTooltipText[i]); + } + } + }; + + for (var i = 0; i < w.config.yaxis.length; i++) { + _loop(i); + } + } + /** + * @memberof Tooltip + **/ + + }, { + key: "setXCrosshairWidth", + value: function setXCrosshairWidth() { + var w = this.w; + var ttCtx = this.ttCtx; // set xcrosshairs width + + var xcrosshairs = ttCtx.getElXCrosshairs(); + ttCtx.xcrosshairsWidth = parseInt(w.config.xaxis.crosshairs.width); + + if (!w.globals.comboCharts) { + if (w.config.xaxis.crosshairs.width === 'tickWidth') { + var count = w.globals.labels.length; + ttCtx.xcrosshairsWidth = w.globals.gridWidth / count; + } else if (w.config.xaxis.crosshairs.width === 'barWidth') { + var bar = w.globals.dom.baseEl.querySelector('.apexcharts-bar-area'); + + if (bar !== null) { + var barWidth = parseFloat(bar.getAttribute('barWidth')); + ttCtx.xcrosshairsWidth = barWidth; + } else { + ttCtx.xcrosshairsWidth = 1; + } + } + } else { + var _bar = w.globals.dom.baseEl.querySelector('.apexcharts-bar-area'); + + if (_bar !== null && w.config.xaxis.crosshairs.width === 'barWidth') { + var _barWidth = parseFloat(_bar.getAttribute('barWidth')); + + ttCtx.xcrosshairsWidth = _barWidth; + } else { + if (w.config.xaxis.crosshairs.width === 'tickWidth') { + var _count = w.globals.labels.length; + ttCtx.xcrosshairsWidth = w.globals.gridWidth / _count; + } + } + } + + if (w.globals.isBarHorizontal) { + ttCtx.xcrosshairsWidth = 0; + } + + if (xcrosshairs !== null && ttCtx.xcrosshairsWidth > 0) { + xcrosshairs.setAttribute('width', ttCtx.xcrosshairsWidth); + } + } + }, { + key: "handleYCrosshair", + value: function handleYCrosshair() { + var w = this.w; + var ttCtx = this.ttCtx; // set ycrosshairs height + + ttCtx.ycrosshairs = w.globals.dom.baseEl.querySelector('.apexcharts-ycrosshairs'); + ttCtx.ycrosshairsHidden = w.globals.dom.baseEl.querySelector('.apexcharts-ycrosshairs-hidden'); + } + }, { + key: "drawYaxisTooltipText", + value: function drawYaxisTooltipText(index, clientY, xyRatios) { + var ttCtx = this.ttCtx; + var w = this.w; + var lbFormatter = w.globals.yLabelFormatters[index]; + + if (ttCtx.blyaxisTooltip) { + var elGrid = ttCtx.getElGrid(); + var seriesBound = elGrid.getBoundingClientRect(); + var hoverY = (clientY - seriesBound.top) * xyRatios.yRatio[index]; + var height = w.globals.maxYArr[index] - w.globals.minYArr[index]; + var val = w.globals.minYArr[index] + (height - hoverY); + ttCtx.tooltipPosition.moveYCrosshairs(clientY - seriesBound.top); + ttCtx.yaxisTooltipText[index].innerHTML = lbFormatter(val); + ttCtx.tooltipPosition.moveYAxisTooltip(index); + } + } + }]); + + return AxesTooltip; + }(); + + /** + * ApexCharts Core Tooltip Class to handle the tooltip generation. + * + * @module Tooltip + **/ + + var Tooltip = + /*#__PURE__*/ + function () { + function Tooltip(ctx) { + _classCallCheck(this, Tooltip); + + this.ctx = ctx; + this.w = ctx.w; + var w = this.w; + this.tConfig = w.config.tooltip; + this.tooltipUtil = new Utils$1(this); + this.tooltipLabels = new Labels(this); + this.tooltipPosition = new Position(this); + this.marker = new Marker(this); + this.intersect = new Intersect(this); + this.axesTooltip = new AxesTooltip(this); + this.showOnIntersect = this.tConfig.intersect; + this.showTooltipTitle = this.tConfig.x.show; + this.fixedTooltip = this.tConfig.fixed.enabled; + this.xaxisTooltip = null; + this.yaxisTTEls = null; + this.isBarShared = !w.globals.isBarHorizontal && this.tConfig.shared; + } + + _createClass(Tooltip, [{ + key: "getElTooltip", + value: function getElTooltip(ctx) { + if (!ctx) ctx = this; + return ctx.w.globals.dom.baseEl.querySelector('.apexcharts-tooltip'); + } + }, { + key: "getElXCrosshairs", + value: function getElXCrosshairs() { + return this.w.globals.dom.baseEl.querySelector('.apexcharts-xcrosshairs'); + } + }, { + key: "getElGrid", + value: function getElGrid() { + return this.w.globals.dom.baseEl.querySelector('.apexcharts-grid'); + } + }, { + key: "drawTooltip", + value: function drawTooltip(xyRatios) { + var w = this.w; + this.xyRatios = xyRatios; + this.blxaxisTooltip = w.config.xaxis.tooltip.enabled && w.globals.axisCharts; + this.blyaxisTooltip = w.config.yaxis[0].tooltip.enabled && w.globals.axisCharts; + this.allTooltipSeriesGroups = []; + + if (!w.globals.axisCharts) { + this.showTooltipTitle = false; + } + + var tooltipEl = document.createElement('div'); + tooltipEl.classList.add('apexcharts-tooltip'); + tooltipEl.classList.add(this.tConfig.theme); + w.globals.dom.elWrap.appendChild(tooltipEl); + + if (w.globals.axisCharts) { + this.axesTooltip.drawXaxisTooltip(); + this.axesTooltip.drawYaxisTooltip(); + this.axesTooltip.setXCrosshairWidth(); + this.axesTooltip.handleYCrosshair(); + var xAxis = new XAxis(this.ctx); + this.xAxisTicksPositions = xAxis.getXAxisTicksPositions(); + } // we forcefully set intersect true for these conditions + + + if (w.globals.comboCharts && !this.tConfig.shared || this.tConfig.intersect && !this.tConfig.shared || (w.config.chart.type === 'bar' || w.config.chart.type === 'rangeBar') && !this.tConfig.shared) { + this.showOnIntersect = true; + } + + if (w.config.markers.size === 0 || w.globals.markers.largestSize === 0) { + // when user don't want to show points all the time, but only on when hovering on series + this.marker.drawDynamicPoints(this); + } // no visible series, exit + + + if (w.globals.collapsedSeries.length === w.globals.series.length) return; + this.dataPointsDividedHeight = w.globals.gridHeight / w.globals.dataPoints; + this.dataPointsDividedWidth = w.globals.gridWidth / w.globals.dataPoints; + + if (this.showTooltipTitle) { + this.tooltipTitle = document.createElement('div'); + this.tooltipTitle.classList.add('apexcharts-tooltip-title'); + this.tooltipTitle.style.fontFamily = this.tConfig.style.fontFamily || w.config.chart.fontFamily; + this.tooltipTitle.style.fontSize = this.tConfig.style.fontSize; + tooltipEl.appendChild(this.tooltipTitle); + } + + var ttItemsCnt = w.globals.series.length; // whether shared or not, default is shared + + if ((w.globals.xyCharts || w.globals.comboCharts) && this.tConfig.shared) { + if (!this.showOnIntersect) { + ttItemsCnt = w.globals.series.length; + } else { + ttItemsCnt = 1; + } + } + + this.legendLabels = w.globals.dom.baseEl.querySelectorAll('.apexcharts-legend-text'); + this.ttItems = this.createTTElements(ttItemsCnt); + this.addSVGEvents(); + } + }, { + key: "createTTElements", + value: function createTTElements(ttItemsCnt) { + var w = this.w; + var ttItems = []; + var tooltipEl = this.getElTooltip(); + + for (var i = 0; i < ttItemsCnt; i++) { + var gTxt = document.createElement('div'); + gTxt.classList.add('apexcharts-tooltip-series-group'); + + if (this.tConfig.shared && this.tConfig.enabledOnSeries && Array.isArray(this.tConfig.enabledOnSeries)) { + if (this.tConfig.enabledOnSeries.indexOf(i) < 0) { + gTxt.classList.add('apexcharts-tooltip-series-group-hidden'); + } + } + + var point = document.createElement('span'); + point.classList.add('apexcharts-tooltip-marker'); + point.style.backgroundColor = w.globals.colors[i]; + gTxt.appendChild(point); + var gYZ = document.createElement('div'); + gYZ.classList.add('apexcharts-tooltip-text'); + gYZ.style.fontFamily = this.tConfig.style.fontFamily || w.config.chart.fontFamily; + gYZ.style.fontSize = this.tConfig.style.fontSize; // y values group + + var gYValText = document.createElement('div'); + gYValText.classList.add('apexcharts-tooltip-y-group'); + var txtLabel = document.createElement('span'); + txtLabel.classList.add('apexcharts-tooltip-text-label'); + gYValText.appendChild(txtLabel); + var txtValue = document.createElement('span'); + txtValue.classList.add('apexcharts-tooltip-text-value'); + gYValText.appendChild(txtValue); // z values group + + var gZValText = document.createElement('div'); + gZValText.classList.add('apexcharts-tooltip-z-group'); + var txtZLabel = document.createElement('span'); + txtZLabel.classList.add('apexcharts-tooltip-text-z-label'); + gZValText.appendChild(txtZLabel); + var txtZValue = document.createElement('span'); + txtZValue.classList.add('apexcharts-tooltip-text-z-value'); + gZValText.appendChild(txtZValue); + gYZ.appendChild(gYValText); + gYZ.appendChild(gZValText); + gTxt.appendChild(gYZ); + tooltipEl.appendChild(gTxt); + ttItems.push(gTxt); + } + + return ttItems; + } + }, { + key: "addSVGEvents", + value: function addSVGEvents() { + var w = this.w; + var type = w.config.chart.type; + var tooltipEl = this.getElTooltip(); + var commonBar = !!(type === 'bar' || type === 'candlestick' || type === 'rangeBar'); + var hoverArea = w.globals.dom.Paper.node; + var elGrid = this.getElGrid(); + + if (elGrid) { + this.seriesBound = elGrid.getBoundingClientRect(); + } + + var tooltipY = []; + var tooltipX = []; + var seriesHoverParams = { + hoverArea: hoverArea, + elGrid: elGrid, + tooltipEl: tooltipEl, + tooltipY: tooltipY, + tooltipX: tooltipX, + ttItems: this.ttItems + }; + var points; + + if (w.globals.axisCharts) { + if (type === 'area' || type === 'line' || type === 'scatter' || type === 'bubble') { + points = w.globals.dom.baseEl.querySelectorAll(".apexcharts-series[data\\:longestSeries='true'] .apexcharts-marker"); + } else if (commonBar) { + points = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series .apexcharts-bar-area, .apexcharts-series .apexcharts-candlestick-area, .apexcharts-series .apexcharts-rangebar-area'); + } else if (type === 'heatmap') { + points = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series .apexcharts-heatmap'); + } else if (type === 'radar') { + points = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series .apexcharts-marker'); + } + + if (points && points.length) { + for (var p = 0; p < points.length; p++) { + tooltipY.push(points[p].getAttribute('cy')); + tooltipX.push(points[p].getAttribute('cx')); + } + } + } + + var validSharedChartTypes = w.globals.xyCharts && !this.showOnIntersect || w.globals.comboCharts && !this.showOnIntersect || commonBar && this.hasBars() && this.tConfig.shared; + + if (validSharedChartTypes) { + this.addPathsEventListeners([hoverArea], seriesHoverParams); + } else if (commonBar && !w.globals.comboCharts) { + this.addBarsEventListeners(seriesHoverParams); + } else if (type === 'bubble' || type === 'scatter' || type === 'radar' || this.showOnIntersect && (type === 'area' || type === 'line')) { + this.addPointsEventsListeners(seriesHoverParams); + } else if (!w.globals.axisCharts || type === 'heatmap') { + var seriesAll = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series'); + this.addPathsEventListeners(seriesAll, seriesHoverParams); + } + + if (this.showOnIntersect) { + var linePoints = w.globals.dom.baseEl.querySelectorAll('.apexcharts-line-series .apexcharts-marker'); + + if (linePoints.length > 0) { + // if we find any lineSeries, addEventListeners for them + this.addPathsEventListeners(linePoints, seriesHoverParams); + } + + var areaPoints = w.globals.dom.baseEl.querySelectorAll('.apexcharts-area-series .apexcharts-marker'); + + if (areaPoints.length > 0) { + // if we find any areaSeries, addEventListeners for them + this.addPathsEventListeners(areaPoints, seriesHoverParams); + } // combo charts may have bars, so add event listeners here too + + + if (this.hasBars() && !this.tConfig.shared) { + this.addBarsEventListeners(seriesHoverParams); + } + } + } + }, { + key: "drawFixedTooltipRect", + value: function drawFixedTooltipRect() { + var w = this.w; + var tooltipEl = this.getElTooltip(); + var tooltipRect = tooltipEl.getBoundingClientRect(); + var ttWidth = tooltipRect.width + 10; + var ttHeight = tooltipRect.height + 10; + var x = this.tConfig.fixed.offsetX; + var y = this.tConfig.fixed.offsetY; + + if (this.tConfig.fixed.position.toLowerCase().indexOf('right') > -1) { + x = x + w.globals.svgWidth - ttWidth + 10; + } + + if (this.tConfig.fixed.position.toLowerCase().indexOf('bottom') > -1) { + y = y + w.globals.svgHeight - ttHeight - 10; + } + + tooltipEl.style.left = x + 'px'; + tooltipEl.style.top = y + 'px'; + return { + x: x, + y: y, + ttWidth: ttWidth, + ttHeight: ttHeight + }; + } + }, { + key: "addPointsEventsListeners", + value: function addPointsEventsListeners(seriesHoverParams) { + var w = this.w; + var points = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series-markers .apexcharts-marker'); + this.addPathsEventListeners(points, seriesHoverParams); + } + }, { + key: "addBarsEventListeners", + value: function addBarsEventListeners(seriesHoverParams) { + var w = this.w; + var bars = w.globals.dom.baseEl.querySelectorAll('.apexcharts-bar-area, .apexcharts-candlestick-area, .apexcharts-rangebar-area'); + this.addPathsEventListeners(bars, seriesHoverParams); + } + }, { + key: "addPathsEventListeners", + value: function addPathsEventListeners(paths, opts) { + var _this = this; + + var self = this; + + var _loop = function _loop(p) { + var extendedOpts = { + paths: paths[p], + tooltipEl: opts.tooltipEl, + tooltipY: opts.tooltipY, + tooltipX: opts.tooltipX, + elGrid: opts.elGrid, + hoverArea: opts.hoverArea, + ttItems: opts.ttItems + }; + _this.w.globals.tooltipOpts = extendedOpts; + var events = ['mousemove', 'mouseup', 'touchmove', 'mouseout', 'touchend']; + events.map(function (ev) { + return paths[p].addEventListener(ev, self.seriesHover.bind(self, extendedOpts), { + capture: false, + passive: true + }); + }); + }; + + for (var p = 0; p < paths.length; p++) { + _loop(p); + } + } + /* + ** The actual series hover function + */ + + }, { + key: "seriesHover", + value: function seriesHover(opt, e) { + var _this2 = this; + + var chartGroups = []; + var w = this.w; // if user has more than one charts in group, we need to sync + + if (w.config.chart.group) { + chartGroups = this.ctx.getGroupedCharts(); + } + + if (w.globals.axisCharts && (w.globals.minX === -Infinity && w.globals.maxX === Infinity || w.globals.dataPoints === 0)) { + return; + } + + if (chartGroups.length) { + chartGroups.forEach(function (ch) { + var tooltipEl = _this2.getElTooltip(ch); + + var newOpts = { + paths: opt.paths, + tooltipEl: tooltipEl, + tooltipY: opt.tooltipY, + tooltipX: opt.tooltipX, + elGrid: opt.elGrid, + hoverArea: opt.hoverArea, + ttItems: ch.w.globals.tooltip.ttItems // all the charts should have the same minX and maxX (same xaxis) for multiple tooltips to work correctly + + }; + + if (ch.w.globals.minX === _this2.w.globals.minX && ch.w.globals.maxX === _this2.w.globals.maxX) { + ch.w.globals.tooltip.seriesHoverByContext({ + chartCtx: ch, + ttCtx: ch.w.globals.tooltip, + opt: newOpts, + e: e + }); + } + }); + } else { + this.seriesHoverByContext({ + chartCtx: this.ctx, + ttCtx: this.w.globals.tooltip, + opt: opt, + e: e + }); + } + } + }, { + key: "seriesHoverByContext", + value: function seriesHoverByContext(_ref) { + var chartCtx = _ref.chartCtx, + ttCtx = _ref.ttCtx, + opt = _ref.opt, + e = _ref.e; + var w = chartCtx.w; + var tooltipEl = this.getElTooltip(); // tooltipRect is calculated on every mousemove, because the text is dynamic + + ttCtx.tooltipRect = { + x: 0, + y: 0, + ttWidth: tooltipEl.getBoundingClientRect().width, + ttHeight: tooltipEl.getBoundingClientRect().height + }; + ttCtx.e = e; // highlight the current hovered bars + + if (ttCtx.hasBars() && !w.globals.comboCharts && !ttCtx.isBarShared) { + if (this.tConfig.onDatasetHover.highlightDataSeries) { + var series = new Series(chartCtx); + series.toggleSeriesOnHover(e, e.target.parentNode); + } + } + + if (ttCtx.fixedTooltip) { + ttCtx.drawFixedTooltipRect(); + } + + if (w.globals.axisCharts) { + ttCtx.axisChartsTooltips({ + e: e, + opt: opt, + tooltipRect: ttCtx.tooltipRect + }); + } else { + // non-plot charts i.e pie/donut/circle + ttCtx.nonAxisChartsTooltips({ + e: e, + opt: opt, + tooltipRect: ttCtx.tooltipRect + }); + } + } // tooltip handling for line/area/bar/columns/scatter + + }, { + key: "axisChartsTooltips", + value: function axisChartsTooltips(_ref2) { + var e = _ref2.e, + opt = _ref2.opt; + var w = this.w; + var j, x, y; + var capj = null; + var seriesBound = opt.elGrid.getBoundingClientRect(); + var clientX = e.type === 'touchmove' ? e.touches[0].clientX : e.clientX; + var clientY = e.type === 'touchmove' ? e.touches[0].clientY : e.clientY; + this.clientY = clientY; + this.clientX = clientX; + w.globals.capturedSeriesIndex = -1; + w.globals.capturedDataPointIndex = -1; + + if (clientY < seriesBound.top || clientY > seriesBound.top + seriesBound.height) { + this.handleMouseOut(opt); + return; + } + + if (Array.isArray(this.tConfig.enabledOnSeries) && !w.config.tooltip.shared) { + var index = parseInt(opt.paths.getAttribute('index')); + + if (this.tConfig.enabledOnSeries.indexOf(index) < 0) { + this.handleMouseOut(opt); + return; + } + } + + var tooltipEl = this.getElTooltip(); + var xcrosshairs = this.getElXCrosshairs(); + var isStickyTooltip = w.globals.xyCharts || w.config.chart.type === 'bar' && !w.globals.isBarHorizontal && this.hasBars() && this.tConfig.shared || w.globals.comboCharts && this.hasBars; + + if (w.globals.isBarHorizontal && this.hasBars()) { + isStickyTooltip = false; + } + + if (e.type === 'mousemove' || e.type === 'touchmove' || e.type === 'mouseup') { + if (xcrosshairs !== null) { + xcrosshairs.classList.add('active'); + } + + if (this.ycrosshairs !== null && this.blyaxisTooltip) { + this.ycrosshairs.classList.add('active'); + } + + if (isStickyTooltip && !this.showOnIntersect) { + capj = this.tooltipUtil.getNearestValues({ + context: this, + hoverArea: opt.hoverArea, + elGrid: opt.elGrid, + clientX: clientX, + clientY: clientY, + hasBars: this.hasBars + }); + j = capj.j; + var capturedSeries = capj.capturedSeries; + + if (capj.hoverX < 0 || capj.hoverX > w.globals.gridWidth) { + this.handleMouseOut(opt); + return; + } + + if (capturedSeries !== null) { + var ignoreNull = w.globals.series[capturedSeries][j] === null; + + if (ignoreNull) { + this.handleMouseOut(opt); + return; + } + + if (typeof w.globals.series[capturedSeries][j] !== 'undefined') { + if (this.tConfig.shared && this.tooltipUtil.isXoverlap(j) && this.tooltipUtil.isInitialSeriesSameLen()) { + this.create(e, this, capturedSeries, j, opt.ttItems); + } else { + this.create(e, this, capturedSeries, j, opt.ttItems, false); + } + } else { + if (this.tooltipUtil.isXoverlap(j)) { + this.create(e, this, 0, j, opt.ttItems); + } + } + } else { + // couldn't capture any series. check if shared X is same, + // if yes, draw a grouped tooltip + if (this.tooltipUtil.isXoverlap(j)) { + this.create(e, this, 0, j, opt.ttItems); + } + } + } else { + if (w.config.chart.type === 'heatmap') { + var markerXY = this.intersect.handleHeatTooltip({ + e: e, + opt: opt, + x: x, + y: y + }); + x = markerXY.x; + y = markerXY.y; + tooltipEl.style.left = x + 'px'; + tooltipEl.style.top = y + 'px'; + } else { + if (this.hasBars) { + this.intersect.handleBarTooltip({ + e: e, + opt: opt + }); + } + + if (this.hasMarkers) { + // intersect - line/area/scatter/bubble + this.intersect.handleMarkerTooltip({ + e: e, + opt: opt, + x: x, + y: y + }); + } + } + } + + if (this.blyaxisTooltip) { + for (var yt = 0; yt < w.config.yaxis.length; yt++) { + this.axesTooltip.drawYaxisTooltipText(yt, clientY, this.xyRatios); + } + } + + opt.tooltipEl.classList.add('active'); + } else if (e.type === 'mouseout' || e.type === 'touchend') { + this.handleMouseOut(opt); + } + } // tooltip handling for pie/donuts + + }, { + key: "nonAxisChartsTooltips", + value: function nonAxisChartsTooltips(_ref3) { + var e = _ref3.e, + opt = _ref3.opt, + tooltipRect = _ref3.tooltipRect; + var w = this.w; + var rel = opt.paths.getAttribute('rel'); + var tooltipEl = this.getElTooltip(); + var seriesBound = w.globals.dom.elWrap.getBoundingClientRect(); + + if (e.type === 'mousemove' || e.type === 'touchmove') { + tooltipEl.classList.add('active'); + this.tooltipLabels.drawSeriesTexts({ + ttItems: opt.ttItems, + i: parseInt(rel) - 1, + shared: false + }); + var x = w.globals.clientX - seriesBound.left - tooltipRect.ttWidth / 2; + var y = w.globals.clientY - seriesBound.top - tooltipRect.ttHeight - 10; + tooltipEl.style.left = x + 'px'; + tooltipEl.style.top = y + 'px'; + } else if (e.type === 'mouseout' || e.type === 'touchend') { + tooltipEl.classList.remove('active'); + } + } + }, { + key: "deactivateHoverFilter", + value: function deactivateHoverFilter() { + var w = this.w; + var graphics = new Graphics(this.ctx); + var allPaths = w.globals.dom.Paper.select(".apexcharts-bar-area"); + + for (var b = 0; b < allPaths.length; b++) { + graphics.pathMouseLeave(allPaths[b]); + } + } + }, { + key: "handleMouseOut", + value: function handleMouseOut(opt) { + var w = this.w; + var xcrosshairs = this.getElXCrosshairs(); + opt.tooltipEl.classList.remove('active'); + this.deactivateHoverFilter(); + + if (w.config.chart.type !== 'bubble') { + this.marker.resetPointsSize(); + } + + if (xcrosshairs !== null) { + xcrosshairs.classList.remove('active'); + } + + if (this.ycrosshairs !== null) { + this.ycrosshairs.classList.remove('active'); + } + + if (this.blxaxisTooltip) { + this.xaxisTooltip.classList.remove('active'); + } + + if (this.blyaxisTooltip) { + if (this.yaxisTTEls === null) { + this.yaxisTTEls = w.globals.dom.baseEl.querySelectorAll('.apexcharts-yaxistooltip'); + } + + for (var i = 0; i < this.yaxisTTEls.length; i++) { + this.yaxisTTEls[i].classList.remove('active'); + } + } + + if (w.config.legend.tooltipHoverFormatter) { + this.legendLabels.forEach(function (l) { + var defaultText = l.getAttribute('data:default-text'); + l.innerHTML = defaultText; + }); + } + } + }, { + key: "getElMarkers", + value: function getElMarkers() { + return this.w.globals.dom.baseEl.querySelectorAll(' .apexcharts-series-markers'); + } + }, { + key: "getAllMarkers", + value: function getAllMarkers() { + return this.w.globals.dom.baseEl.querySelectorAll('.apexcharts-series-markers .apexcharts-marker'); + } + }, { + key: "hasMarkers", + value: function hasMarkers() { + var markers = this.getElMarkers(); + return markers.length > 0; + } + }, { + key: "getElBars", + value: function getElBars() { + return this.w.globals.dom.baseEl.querySelectorAll('.apexcharts-bar-series, .apexcharts-candlestick-series, .apexcharts-rangebar-series'); + } + }, { + key: "hasBars", + value: function hasBars() { + var bars = this.getElBars(); + return bars.length > 0; + } + }, { + key: "markerClick", + value: function markerClick(e, seriesIndex, dataPointIndex) { + var w = this.w; + + if (typeof w.config.chart.events.markerClick === 'function') { + w.config.chart.events.markerClick(e, this.ctx, { + seriesIndex: seriesIndex, + dataPointIndex: dataPointIndex, + w: w + }); + } + + this.ctx.fireEvent('markerClick', [e, this.ctx, { + seriesIndex: seriesIndex, + dataPointIndex: dataPointIndex, + w: w + }]); + } + }, { + key: "create", + value: function create(e, context, capturedSeries, j, ttItems) { + var shared = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : null; + var w = this.w; + var ttCtx = context; + + if (e.type === 'mouseup') { + this.markerClick(e, capturedSeries, j); + } + + if (shared === null) shared = this.tConfig.shared; + var hasMarkers = this.hasMarkers(); + var bars = this.getElBars(); + + if (w.config.legend.tooltipHoverFormatter) { + var legendFormatter = w.config.legend.tooltipHoverFormatter; + var els = Array.from(this.legendLabels); // reset all legend values first + + els.forEach(function (l) { + var legendName = l.getAttribute('data:default-text'); + l.innerHTML = legendName; + }); // for irregular time series + + for (var i = 0; i < els.length; i++) { + var l = els[i]; + var lsIndex = parseInt(l.getAttribute('i')); + var legendName = l.getAttribute('data:default-text'); + var text = legendFormatter(legendName, { + seriesIndex: shared ? lsIndex : capturedSeries, + dataPointIndex: j, + w: w + }); + + if (!shared) { + l.innerHTML = lsIndex === capturedSeries ? text : legendName; + + if (capturedSeries === lsIndex) { + break; + } + } else { + l.innerHTML = w.globals.collapsedSeriesIndices.indexOf(lsIndex) < 0 ? text : legendName; + } + } + } + + if (shared) { + ttCtx.tooltipLabels.drawSeriesTexts({ + ttItems: ttItems, + i: capturedSeries, + j: j, + shared: this.showOnIntersect ? false : this.tConfig.shared + }); + + if (hasMarkers) { + if (w.globals.markers.largestSize > 0) { + ttCtx.marker.enlargePoints(j); + } else { + ttCtx.tooltipPosition.moveDynamicPointsOnHover(j); + } + } + + if (this.hasBars()) { + this.barSeriesHeight = this.tooltipUtil.getBarsHeight(bars); + + if (this.barSeriesHeight > 0) { + // hover state, activate snap filter + var graphics = new Graphics(this.ctx); + var paths = w.globals.dom.Paper.select(".apexcharts-bar-area[j='".concat(j, "']")); // de-activate first + + this.deactivateHoverFilter(); + this.tooltipPosition.moveStickyTooltipOverBars(j); + + for (var b = 0; b < paths.length; b++) { + graphics.pathMouseEnter(paths[b]); + } + } + } + } else { + ttCtx.tooltipLabels.drawSeriesTexts({ + shared: false, + ttItems: ttItems, + i: capturedSeries, + j: j + }); + + if (this.hasBars()) { + ttCtx.tooltipPosition.moveStickyTooltipOverBars(j); + } + + if (hasMarkers) { + ttCtx.tooltipPosition.moveMarkers(capturedSeries, j); + } + } + } + }]); + + return Tooltip; + }(); + + var icoPan = "\n \n \n \n \n \n \n \n"; + + var icoZoom = "\n \n \n \n"; + + var icoReset = "\n \n \n"; + + var icoZoomIn = "\n \n \n\n"; + + var icoZoomOut = "\n \n \n\n"; + + var icoSelect = "\n \n \n"; + + var icoMenu = ""; + + /** + * ApexCharts Toolbar Class for creating toolbar in axis based charts. + * + * @module Toolbar + **/ + + var Toolbar = + /*#__PURE__*/ + function () { + function Toolbar(ctx) { + _classCallCheck(this, Toolbar); + + this.ctx = ctx; + this.w = ctx.w; + this.ev = this.w.config.chart.events; + this.localeValues = this.w.globals.locale.toolbar; + } + + _createClass(Toolbar, [{ + key: "createToolbar", + value: function createToolbar() { + var w = this.w; + var elToolbarWrap = document.createElement('div'); + elToolbarWrap.setAttribute('class', 'apexcharts-toolbar'); + w.globals.dom.elWrap.appendChild(elToolbarWrap); + this.elZoom = document.createElement('div'); + this.elZoomIn = document.createElement('div'); + this.elZoomOut = document.createElement('div'); + this.elPan = document.createElement('div'); + this.elSelection = document.createElement('div'); + this.elZoomReset = document.createElement('div'); + this.elMenuIcon = document.createElement('div'); + this.elMenu = document.createElement('div'); + this.elCustomIcons = []; + this.t = w.config.chart.toolbar.tools; + + if (Array.isArray(this.t.customIcons)) { + for (var i = 0; i < this.t.customIcons.length; i++) { + this.elCustomIcons.push(document.createElement('div')); + } + } + + this.elMenuItems = []; + var toolbarControls = []; + + if (this.t.zoomin && w.config.chart.zoom.enabled) { + toolbarControls.push({ + el: this.elZoomIn, + icon: typeof this.t.zoomin === 'string' ? this.t.zoomin : icoZoomIn, + title: this.localeValues.zoomIn, + class: 'apexcharts-zoom-in-icon' + }); + } + + if (this.t.zoomout && w.config.chart.zoom.enabled) { + toolbarControls.push({ + el: this.elZoomOut, + icon: typeof this.t.zoomout === 'string' ? this.t.zoomout : icoZoomOut, + title: this.localeValues.zoomOut, + class: 'apexcharts-zoom-out-icon' + }); + } + + if (this.t.zoom && w.config.chart.zoom.enabled) { + toolbarControls.push({ + el: this.elZoom, + icon: typeof this.t.zoom === 'string' ? this.t.zoom : icoZoom, + title: this.localeValues.selectionZoom, + class: w.globals.isTouchDevice ? 'hidden' : 'apexcharts-zoom-icon' + }); + } + + if (this.t.selection && w.config.chart.selection.enabled) { + toolbarControls.push({ + el: this.elSelection, + icon: typeof this.t.selection === 'string' ? this.t.selection : icoSelect, + title: this.localeValues.selection, + class: w.globals.isTouchDevice ? 'hidden' : 'apexcharts-selection-icon' + }); + } + + if (this.t.pan && w.config.chart.zoom.enabled) { + toolbarControls.push({ + el: this.elPan, + icon: typeof this.t.pan === 'string' ? this.t.pan : icoPan, + title: this.localeValues.pan, + class: w.globals.isTouchDevice ? 'hidden' : 'apexcharts-pan-icon' + }); + } + + if (this.t.reset && w.config.chart.zoom.enabled) { + toolbarControls.push({ + el: this.elZoomReset, + icon: typeof this.t.reset === 'string' ? this.t.reset : icoReset, + title: this.localeValues.reset, + class: 'apexcharts-reset-zoom-icon' + }); + } + + if (this.t.download) { + toolbarControls.push({ + el: this.elMenuIcon, + icon: typeof this.t.download === 'string' ? this.t.download : icoMenu, + title: this.localeValues.menu, + class: 'apexcharts-menu-icon' + }); + } + + for (var _i = 0; _i < this.elCustomIcons.length; _i++) { + toolbarControls.push({ + el: this.elCustomIcons[_i], + icon: this.t.customIcons[_i].icon, + title: this.t.customIcons[_i].title, + index: this.t.customIcons[_i].index, + class: 'apexcharts-toolbar-custom-icon ' + this.t.customIcons[_i].class + }); + } + + toolbarControls.forEach(function (t, index) { + if (t.index) { + Utils.moveIndexInArray(toolbarControls, index, t.index); + } + }); + + for (var _i2 = 0; _i2 < toolbarControls.length; _i2++) { + Graphics.setAttrs(toolbarControls[_i2].el, { + class: toolbarControls[_i2].class, + title: toolbarControls[_i2].title + }); + toolbarControls[_i2].el.innerHTML = toolbarControls[_i2].icon; + elToolbarWrap.appendChild(toolbarControls[_i2].el); + } + + elToolbarWrap.appendChild(this.elMenu); + Graphics.setAttrs(this.elMenu, { + class: 'apexcharts-menu' + }); + var menuItems = [{ + name: 'exportSVG', + title: this.localeValues.exportToSVG + }, { + name: 'exportPNG', + title: this.localeValues.exportToPNG + }]; + + for (var _i3 = 0; _i3 < menuItems.length; _i3++) { + this.elMenuItems.push(document.createElement('div')); + this.elMenuItems[_i3].innerHTML = menuItems[_i3].title; + Graphics.setAttrs(this.elMenuItems[_i3], { + class: "apexcharts-menu-item ".concat(menuItems[_i3].name), + title: menuItems[_i3].title + }); + this.elMenu.appendChild(this.elMenuItems[_i3]); + } + + if (w.globals.zoomEnabled) { + this.elZoom.classList.add('selected'); + } else if (w.globals.panEnabled) { + this.elPan.classList.add('selected'); + } else if (w.globals.selectionEnabled) { + this.elSelection.classList.add('selected'); + } + + this.addToolbarEventListeners(); + } + }, { + key: "addToolbarEventListeners", + value: function addToolbarEventListeners() { + var _this = this; + + this.elZoomReset.addEventListener('click', this.handleZoomReset.bind(this)); + this.elSelection.addEventListener('click', this.toggleSelection.bind(this)); + this.elZoom.addEventListener('click', this.toggleZooming.bind(this)); + this.elZoomIn.addEventListener('click', this.handleZoomIn.bind(this)); + this.elZoomOut.addEventListener('click', this.handleZoomOut.bind(this)); + this.elPan.addEventListener('click', this.togglePanning.bind(this)); + this.elMenuIcon.addEventListener('click', this.toggleMenu.bind(this)); + this.elMenuItems.forEach(function (m) { + if (m.classList.contains('exportSVG')) { + m.addEventListener('click', _this.downloadSVG.bind(_this)); + } else if (m.classList.contains('exportPNG')) { + m.addEventListener('click', _this.downloadPNG.bind(_this)); + } + }); + + for (var i = 0; i < this.t.customIcons.length; i++) { + this.elCustomIcons[i].addEventListener('click', this.t.customIcons[i].click.bind(this, this.ctx, this.ctx.w)); + } + } + }, { + key: "toggleSelection", + value: function toggleSelection() { + this.toggleOtherControls(); + this.w.globals.selectionEnabled = !this.w.globals.selectionEnabled; + + if (!this.elSelection.classList.contains('selected')) { + this.elSelection.classList.add('selected'); + } else { + this.elSelection.classList.remove('selected'); + } + } + }, { + key: "toggleZooming", + value: function toggleZooming() { + this.toggleOtherControls(); + this.w.globals.zoomEnabled = !this.w.globals.zoomEnabled; + + if (!this.elZoom.classList.contains('selected')) { + this.elZoom.classList.add('selected'); + } else { + this.elZoom.classList.remove('selected'); + } + } + }, { + key: "getToolbarIconsReference", + value: function getToolbarIconsReference() { + var w = this.w; + + if (!this.elZoom) { + this.elZoom = w.globals.dom.baseEl.querySelector('.apexcharts-zoom-icon'); + } + + if (!this.elPan) { + this.elPan = w.globals.dom.baseEl.querySelector('.apexcharts-pan-icon'); + } + + if (!this.elSelection) { + this.elSelection = w.globals.dom.baseEl.querySelector('.apexcharts-selection-icon'); + } + } + }, { + key: "enableZooming", + value: function enableZooming() { + this.toggleOtherControls(); + this.w.globals.zoomEnabled = true; + + if (this.elZoom) { + this.elZoom.classList.add('selected'); + } + + if (this.elPan) { + this.elPan.classList.remove('selected'); + } + } + }, { + key: "enablePanning", + value: function enablePanning() { + this.toggleOtherControls(); + this.w.globals.panEnabled = true; + + if (this.elPan) { + this.elPan.classList.add('selected'); + } + + if (this.elZoom) { + this.elZoom.classList.remove('selected'); + } + } + }, { + key: "togglePanning", + value: function togglePanning() { + this.toggleOtherControls(); + this.w.globals.panEnabled = !this.w.globals.panEnabled; + + if (!this.elPan.classList.contains('selected')) { + this.elPan.classList.add('selected'); + } else { + this.elPan.classList.remove('selected'); + } + } + }, { + key: "toggleOtherControls", + value: function toggleOtherControls() { + var w = this.w; + w.globals.panEnabled = false; + w.globals.zoomEnabled = false; + w.globals.selectionEnabled = false; + this.getToolbarIconsReference(); + + if (this.elPan) { + this.elPan.classList.remove('selected'); + } + + if (this.elSelection) { + this.elSelection.classList.remove('selected'); + } + + if (this.elZoom) { + this.elZoom.classList.remove('selected'); + } + } + }, { + key: "handleZoomIn", + value: function handleZoomIn() { + var w = this.w; + var centerX = (w.globals.minX + w.globals.maxX) / 2; + var newMinX = (w.globals.minX + centerX) / 2; + var newMaxX = (w.globals.maxX + centerX) / 2; + + if (!w.globals.disableZoomIn) { + this.zoomUpdateOptions(newMinX, newMaxX); + } + } + }, { + key: "handleZoomOut", + value: function handleZoomOut() { + var w = this.w; // avoid zooming out beyond 1000 which may result in NaN values being printed on x-axis + + if (w.config.xaxis.type === 'datetime' && new Date(w.globals.minX).getUTCFullYear() < 1000) { + return; + } + + var centerX = (w.globals.minX + w.globals.maxX) / 2; + var newMinX = w.globals.minX - (centerX - w.globals.minX); + var newMaxX = w.globals.maxX - (centerX - w.globals.maxX); + + if (!w.globals.disableZoomOut) { + this.zoomUpdateOptions(newMinX, newMaxX); + } + } + }, { + key: "zoomUpdateOptions", + value: function zoomUpdateOptions(newMinX, newMaxX) { + var xaxis = { + min: newMinX, + max: newMaxX + }; + var beforeZoomRange = this.getBeforeZoomRange(xaxis); + + if (beforeZoomRange) { + xaxis = beforeZoomRange.xaxis; + } + + this.w.globals.zoomed = true; + + this.ctx._updateOptions({ + xaxis: xaxis + }, false, this.w.config.chart.animations.dynamicAnimation.enabled); + + this.zoomCallback(xaxis); + } + }, { + key: "zoomCallback", + value: function zoomCallback(xaxis, yaxis) { + if (typeof this.ev.zoomed === 'function') { + this.ev.zoomed(this.ctx, { + xaxis: xaxis, + yaxis: yaxis + }); + } + } + }, { + key: "getBeforeZoomRange", + value: function getBeforeZoomRange(xaxis, yaxis) { + var newRange = null; + + if (typeof this.ev.beforeZoom === 'function') { + newRange = this.ev.beforeZoom(this, { + xaxis: xaxis, + yaxis: yaxis + }); + } + + return newRange; + } + }, { + key: "toggleMenu", + value: function toggleMenu() { + if (this.elMenu.classList.contains('open')) { + this.elMenu.classList.remove('open'); + } else { + this.elMenu.classList.add('open'); + } + } + }, { + key: "downloadPNG", + value: function downloadPNG() { + var downloadPNG = new Exports(this.ctx); + downloadPNG.exportToPng(this.ctx); + this.toggleMenu(); + } + }, { + key: "downloadSVG", + value: function downloadSVG() { + var downloadSVG = new Exports(this.ctx); + downloadSVG.exportToSVG(); + this.toggleMenu(); + } + }, { + key: "handleZoomReset", + value: function handleZoomReset(e) { + var _this2 = this; + + var charts = this.ctx.getSyncedCharts(); + charts.forEach(function (ch) { + var w = ch.w; + + if (w.globals.minX !== w.globals.initialminX && w.globals.maxX !== w.globals.initialmaxX) { + ch.revertDefaultAxisMinMax(); + + if (typeof w.config.chart.events.zoomed === 'function') { + _this2.zoomCallback({ + min: w.config.xaxis.min, + max: w.config.xaxis.max + }); + } + + w.globals.zoomed = false; + + ch._updateSeries(w.globals.initialSeries, w.config.chart.animations.dynamicAnimation.enabled); + } + }); + } + }, { + key: "destroy", + value: function destroy() { + this.elZoom = null; + this.elZoomIn = null; + this.elZoomOut = null; + this.elPan = null; + this.elSelection = null; + this.elZoomReset = null; + this.elMenuIcon = null; + } + }]); + + return Toolbar; + }(); + + /** + * ApexCharts Zoom Class for handling zooming and panning on axes based charts. + * + * @module ZoomPanSelection + **/ + + var ZoomPanSelection = + /*#__PURE__*/ + function (_Toolbar) { + _inherits(ZoomPanSelection, _Toolbar); + + function ZoomPanSelection(ctx) { + var _this; + + _classCallCheck(this, ZoomPanSelection); + + _this = _possibleConstructorReturn(this, _getPrototypeOf(ZoomPanSelection).call(this, ctx)); + _this.ctx = ctx; + _this.w = ctx.w; + _this.dragged = false; + _this.graphics = new Graphics(_this.ctx); + _this.eventList = ['mousedown', 'mouseleave', 'mousemove', 'touchstart', 'touchmove', 'mouseup', 'touchend']; + _this.clientX = 0; + _this.clientY = 0; + _this.startX = 0; + _this.endX = 0; + _this.dragX = 0; + _this.startY = 0; + _this.endY = 0; + _this.dragY = 0; + return _this; + } + + _createClass(ZoomPanSelection, [{ + key: "init", + value: function init(_ref) { + var _this2 = this; + + var xyRatios = _ref.xyRatios; + var w = this.w; + var me = this; + this.xyRatios = xyRatios; + this.zoomRect = this.graphics.drawRect(0, 0, 0, 0); + this.selectionRect = this.graphics.drawRect(0, 0, 0, 0); + this.gridRect = w.globals.dom.baseEl.querySelector('.apexcharts-grid'); + this.zoomRect.node.classList.add('apexcharts-zoom-rect'); + this.selectionRect.node.classList.add('apexcharts-selection-rect'); + w.globals.dom.elGraphical.add(this.zoomRect); + w.globals.dom.elGraphical.add(this.selectionRect); + + if (w.config.chart.selection.type === 'x') { + this.slDraggableRect = this.selectionRect.draggable({ + minX: 0, + minY: 0, + maxX: w.globals.gridWidth, + maxY: w.globals.gridHeight + }).on('dragmove', this.selectionDragging.bind(this, 'dragging')); + } else if (w.config.chart.selection.type === 'y') { + this.slDraggableRect = this.selectionRect.draggable({ + minX: 0, + maxX: w.globals.gridWidth + }).on('dragmove', this.selectionDragging.bind(this, 'dragging')); + } else { + this.slDraggableRect = this.selectionRect.draggable().on('dragmove', this.selectionDragging.bind(this, 'dragging')); + } + + this.preselectedSelection(); + this.hoverArea = w.globals.dom.baseEl.querySelector(w.globals.chartClass); + this.hoverArea.classList.add('zoomable'); + this.eventList.forEach(function (event) { + _this2.hoverArea.addEventListener(event, me.svgMouseEvents.bind(me, xyRatios), { + capture: false, + passive: true + }); + }); + } // remove the event listeners which were previously added on hover area + + }, { + key: "destroy", + value: function destroy() { + if (this.slDraggableRect) { + this.slDraggableRect.draggable(false); + this.slDraggableRect.off(); + this.selectionRect.off(); + } + + this.selectionRect = null; + this.zoomRect = null; + this.gridRect = null; + } + }, { + key: "svgMouseEvents", + value: function svgMouseEvents(xyRatios, e) { + var w = this.w; + var me = this; + var toolbar = this.ctx.toolbar; + var zoomtype = w.globals.zoomEnabled ? w.config.chart.zoom.type : w.config.chart.selection.type; + + if (e.shiftKey) { + this.shiftWasPressed = true; + toolbar.enablePanning(); + } else { + if (this.shiftWasPressed) { + toolbar.enableZooming(); + this.shiftWasPressed = false; + } + } + + var falsePositives = e.target.classList.contains('apexcharts-selection-rect') || e.target.parentNode.classList.contains('apexcharts-toolbar'); + if (falsePositives) return; + me.clientX = e.type === 'touchmove' || e.type === 'touchstart' ? e.touches[0].clientX : e.type === 'touchend' ? e.changedTouches[0].clientX : e.clientX; + me.clientY = e.type === 'touchmove' || e.type === 'touchstart' ? e.touches[0].clientY : e.type === 'touchend' ? e.changedTouches[0].clientY : e.clientY; + + if (e.type === 'mousedown' && e.which === 1) { + var gridRectDim = me.gridRect.getBoundingClientRect(); + me.startX = me.clientX - gridRectDim.left; + me.startY = me.clientY - gridRectDim.top; + me.dragged = false; + me.w.globals.mousedown = true; + } + + if (e.type === 'mousemove' && e.which === 1 || e.type === 'touchmove') { + me.dragged = true; + + if (w.globals.panEnabled) { + w.globals.selection = null; + + if (me.w.globals.mousedown) { + me.panDragging({ + context: me, + zoomtype: zoomtype, + xyRatios: xyRatios + }); + } + } else { + if (me.w.globals.mousedown && w.globals.zoomEnabled || me.w.globals.mousedown && w.globals.selectionEnabled) { + me.selection = me.selectionDrawing({ + context: me, + zoomtype: zoomtype + }); + } + } + } + + if (e.type === 'mouseup' || e.type === 'touchend' || e.type === 'mouseleave') { + // we will be calling getBoundingClientRect on each mousedown/mousemove/mouseup + var _gridRectDim = me.gridRect.getBoundingClientRect(); + + if (me.w.globals.mousedown) { + // user released the drag, now do all the calculations + me.endX = me.clientX - _gridRectDim.left; + me.endY = me.clientY - _gridRectDim.top; + me.dragX = Math.abs(me.endX - me.startX); + me.dragY = Math.abs(me.endY - me.startY); + + if (w.globals.zoomEnabled || w.globals.selectionEnabled) { + me.selectionDrawn({ + context: me, + zoomtype: zoomtype + }); + } + } + + if (w.globals.zoomEnabled) { + me.hideSelectionRect(this.selectionRect); + } + + me.dragged = false; + me.w.globals.mousedown = false; + } + + this.makeSelectionRectDraggable(); + } + }, { + key: "makeSelectionRectDraggable", + value: function makeSelectionRectDraggable() { + var w = this.w; + if (!this.selectionRect) return; + var rectDim = this.selectionRect.node.getBoundingClientRect(); + + if (rectDim.width > 0 && rectDim.height > 0) { + this.slDraggableRect.selectize().resize({ + constraint: { + minX: 0, + minY: 0, + maxX: w.globals.gridWidth, + maxY: w.globals.gridHeight + } + }).on('resizing', this.selectionDragging.bind(this, 'resizing')); + } + } + }, { + key: "preselectedSelection", + value: function preselectedSelection() { + var w = this.w; + var xyRatios = this.xyRatios; + + if (!w.globals.zoomEnabled) { + if (typeof w.globals.selection !== 'undefined' && w.globals.selection !== null) { + this.drawSelectionRect(w.globals.selection); + } else { + if (w.config.chart.selection.xaxis.min !== undefined && w.config.chart.selection.xaxis.max !== undefined) { + var x = (w.config.chart.selection.xaxis.min - w.globals.minX) / xyRatios.xRatio; + var width = w.globals.gridWidth - (w.globals.maxX - w.config.chart.selection.xaxis.max) / xyRatios.xRatio - x; + var selectionRect = { + x: x, + y: 0, + width: width, + height: w.globals.gridHeight, + translateX: 0, + translateY: 0, + selectionEnabled: true + }; + this.drawSelectionRect(selectionRect); + this.makeSelectionRectDraggable(); + + if (typeof w.config.chart.events.selection === 'function') { + w.config.chart.events.selection(this.ctx, { + xaxis: { + min: w.config.chart.selection.xaxis.min, + max: w.config.chart.selection.xaxis.max + }, + yaxis: {} + }); + } + } + } + } + } + }, { + key: "drawSelectionRect", + value: function drawSelectionRect(_ref2) { + var x = _ref2.x, + y = _ref2.y, + width = _ref2.width, + height = _ref2.height, + translateX = _ref2.translateX, + translateY = _ref2.translateY; + var w = this.w; + var zoomRect = this.zoomRect; + var selectionRect = this.selectionRect; + + if (this.dragged || w.globals.selection !== null) { + var scalingAttrs = { + transform: 'translate(' + translateX + ', ' + translateY + ')' // change styles based on zoom or selection + // zoom is Enabled and user has dragged, so draw blue rect + + }; + + if (w.globals.zoomEnabled && this.dragged) { + zoomRect.attr({ + x: x, + y: y, + width: width, + height: height, + fill: w.config.chart.zoom.zoomedArea.fill.color, + 'fill-opacity': w.config.chart.zoom.zoomedArea.fill.opacity, + stroke: w.config.chart.zoom.zoomedArea.stroke.color, + 'stroke-width': w.config.chart.zoom.zoomedArea.stroke.width, + 'stroke-opacity': w.config.chart.zoom.zoomedArea.stroke.opacity + }); + Graphics.setAttrs(zoomRect.node, scalingAttrs); + } // selection is enabled + + + if (w.globals.selectionEnabled) { + selectionRect.attr({ + x: x, + y: y, + width: width > 0 ? width : 0, + height: height > 0 ? height : 0, + fill: w.config.chart.selection.fill.color, + 'fill-opacity': w.config.chart.selection.fill.opacity, + stroke: w.config.chart.selection.stroke.color, + 'stroke-width': w.config.chart.selection.stroke.width, + 'stroke-dasharray': w.config.chart.selection.stroke.dashArray, + 'stroke-opacity': w.config.chart.selection.stroke.opacity + }); + Graphics.setAttrs(selectionRect.node, scalingAttrs); + } + } + } + }, { + key: "hideSelectionRect", + value: function hideSelectionRect(rect) { + if (rect) { + rect.attr({ + x: 0, + y: 0, + width: 0, + height: 0 + }); + } + } + }, { + key: "selectionDrawing", + value: function selectionDrawing(_ref3) { + var context = _ref3.context, + zoomtype = _ref3.zoomtype; + var w = this.w; + var me = context; + var gridRectDim = this.gridRect.getBoundingClientRect(); + var startX = me.startX - 1; + var startY = me.startY; + var selectionWidth = me.clientX - gridRectDim.left - startX; + var selectionHeight = me.clientY - gridRectDim.top - startY; + var translateX = 0; + var translateY = 0; + var selectionRect = {}; + + if (Math.abs(selectionWidth + startX) > w.globals.gridWidth) { + // user dragged the mouse outside drawing area to the right + selectionWidth = w.globals.gridWidth - startX; + } else if (me.clientX - gridRectDim.left < 0) { + // user dragged the mouse outside drawing area to the left + selectionWidth = startX; + } // inverse selection X + + + if (startX > me.clientX - gridRectDim.left) { + selectionWidth = Math.abs(selectionWidth); + translateX = -selectionWidth; + } // inverse selection Y + + + if (startY > me.clientY - gridRectDim.top) { + selectionHeight = Math.abs(selectionHeight); + translateY = -selectionHeight; + } + + if (zoomtype === 'x') { + selectionRect = { + x: startX, + y: 0, + width: selectionWidth, + height: w.globals.gridHeight, + translateX: translateX, + translateY: 0 + }; + } else if (zoomtype === 'y') { + selectionRect = { + x: 0, + y: startY, + width: w.globals.gridWidth, + height: selectionHeight, + translateX: 0, + translateY: translateY + }; + } else { + selectionRect = { + x: startX, + y: startY, + width: selectionWidth, + height: selectionHeight, + translateX: translateX, + translateY: translateY + }; + } + + me.drawSelectionRect(selectionRect); + me.selectionDragging('resizing'); + return selectionRect; + } + }, { + key: "selectionDragging", + value: function selectionDragging(type, e) { + var _this3 = this; + + var w = this.w; + var xyRatios = this.xyRatios; + var selRect = this.selectionRect; + var timerInterval = 0; + + if (type === 'resizing') { + timerInterval = 30; + } + + if (typeof w.config.chart.events.selection === 'function' && w.globals.selectionEnabled) { + // a small debouncer is required when resizing to avoid freezing the chart + clearTimeout(this.w.globals.selectionResizeTimer); + this.w.globals.selectionResizeTimer = window.setTimeout(function () { + var gridRectDim = _this3.gridRect.getBoundingClientRect(); + + var selectionRect = selRect.node.getBoundingClientRect(); + var minX = w.globals.xAxisScale.niceMin + (selectionRect.left - gridRectDim.left) * xyRatios.xRatio; + var maxX = w.globals.xAxisScale.niceMin + (selectionRect.right - gridRectDim.left) * xyRatios.xRatio; + var minY = w.globals.yAxisScale[0].niceMin + (gridRectDim.bottom - selectionRect.bottom) * xyRatios.yRatio[0]; + var maxY = w.globals.yAxisScale[0].niceMax - (selectionRect.top - gridRectDim.top) * xyRatios.yRatio[0]; + w.config.chart.events.selection(_this3.ctx, { + xaxis: { + min: minX, + max: maxX + }, + yaxis: { + min: minY, + max: maxY + } + }); + }, timerInterval); + } + } + }, { + key: "selectionDrawn", + value: function selectionDrawn(_ref4) { + var context = _ref4.context, + zoomtype = _ref4.zoomtype; + var w = this.w; + var me = context; + var xyRatios = this.xyRatios; + var toolbar = this.ctx.toolbar; + + if (me.startX > me.endX) { + var tempX = me.startX; + me.startX = me.endX; + me.endX = tempX; + } + + if (me.startY > me.endY) { + var tempY = me.startY; + me.startY = me.endY; + me.endY = tempY; + } + + var xLowestValue = w.globals.xAxisScale.niceMin + me.startX * xyRatios.xRatio; + var xHighestValue = w.globals.xAxisScale.niceMin + me.endX * xyRatios.xRatio; // TODO: we will consider the 1st y axis values here for getting highest and lowest y + + var yHighestValue = []; + var yLowestValue = []; + w.config.yaxis.forEach(function (yaxe, index) { + yHighestValue.push(Math.floor(w.globals.yAxisScale[index].niceMax - xyRatios.yRatio[index] * me.startY)); + yLowestValue.push(Math.floor(w.globals.yAxisScale[index].niceMax - xyRatios.yRatio[index] * me.endY)); + }); + + if (me.dragged && (me.dragX > 10 || me.dragY > 10) && xLowestValue !== xHighestValue) { + if (w.globals.zoomEnabled) { + var yaxis = Utils.clone(w.globals.initialConfig.yaxis); // before zooming in/out, store the last yaxis and xaxis range, so that when user hits the RESET button, we get the original range + // also - make sure user is not already zoomed in/out - otherwise we will store zoomed values in lastAxis + + if (!w.globals.zoomed) { + w.globals.lastXAxis = Utils.clone(w.config.xaxis); + w.globals.lastYAxis = Utils.clone(w.config.yaxis); + } + + var xaxis = { + min: xLowestValue, + max: xHighestValue + }; + + if (zoomtype === 'xy' || zoomtype === 'y') { + yaxis.forEach(function (yaxe, index) { + yaxis[index].min = yLowestValue[index]; + yaxis[index].max = yHighestValue[index]; + }); + } + + if (w.config.chart.zoom.autoScaleYaxis) { + var scale = new Range(me.ctx); + yaxis = scale.autoScaleY(me.ctx, yaxis, { + xaxis: xaxis + }); + } + + if (toolbar) { + var beforeZoomRange = toolbar.getBeforeZoomRange(xaxis, yaxis); + + if (beforeZoomRange) { + xaxis = beforeZoomRange.xaxis ? beforeZoomRange.xaxis : xaxis; + yaxis = beforeZoomRange.yaxis ? beforeZoomRange.yaxe : yaxis; + } + } + + var options = { + xaxis: xaxis + }; + + if (!w.config.chart.group) { + // if chart in a group, prevent yaxis update here + // fix issue #650 + options.yaxis = yaxis; + } + + me.ctx._updateOptions(options, false, me.w.config.chart.animations.dynamicAnimation.enabled); + + if (typeof w.config.chart.events.zoomed === 'function') { + toolbar.zoomCallback(xaxis, yaxis); + } + + w.globals.zoomed = true; + } else if (w.globals.selectionEnabled) { + var _yaxis = null; + var _xaxis = null; + _xaxis = { + min: xLowestValue, + max: xHighestValue + }; + + if (zoomtype === 'xy' || zoomtype === 'y') { + _yaxis = Utils.clone(w.config.yaxis); + + _yaxis.forEach(function (yaxe, index) { + _yaxis[index].min = yLowestValue[index]; + _yaxis[index].max = yHighestValue[index]; + }); + } + + w.globals.selection = me.selection; + + if (typeof w.config.chart.events.selection === 'function') { + w.config.chart.events.selection(me.ctx, { + xaxis: _xaxis, + yaxis: _yaxis + }); + } + } + } + } + }, { + key: "panDragging", + value: function panDragging(_ref5) { + var context = _ref5.context; + var w = this.w; + var me = context; + var moveDirection; // check to make sure there is data to compare against + + if (typeof w.globals.lastClientPosition.x !== 'undefined') { + // get the change from last position to this position + var deltaX = w.globals.lastClientPosition.x - me.clientX; + var deltaY = w.globals.lastClientPosition.y - me.clientY; // check which direction had the highest amplitude and then figure out direction by checking if the value is greater or less than zero + + if (Math.abs(deltaX) > Math.abs(deltaY) && deltaX > 0) { + moveDirection = 'left'; + } else if (Math.abs(deltaX) > Math.abs(deltaY) && deltaX < 0) { + moveDirection = 'right'; + } else if (Math.abs(deltaY) > Math.abs(deltaX) && deltaY > 0) { + moveDirection = 'up'; + } else if (Math.abs(deltaY) > Math.abs(deltaX) && deltaY < 0) { + moveDirection = 'down'; + } + } // set the new last position to the current for next time (to get the position of drag) + + + w.globals.lastClientPosition = { + x: me.clientX, + y: me.clientY + }; + var xLowestValue = w.globals.minX; + var xHighestValue = w.globals.maxX; + me.panScrolled(moveDirection, xLowestValue, xHighestValue); + } + }, { + key: "panScrolled", + value: function panScrolled(moveDirection, xLowestValue, xHighestValue) { + var w = this.w; + var xyRatios = this.xyRatios; + var yaxis = Utils.clone(w.globals.initialConfig.yaxis); + + if (moveDirection === 'left') { + xLowestValue = w.globals.minX + w.globals.gridWidth / 15 * xyRatios.xRatio; + xHighestValue = w.globals.maxX + w.globals.gridWidth / 15 * xyRatios.xRatio; + } else if (moveDirection === 'right') { + xLowestValue = w.globals.minX - w.globals.gridWidth / 15 * xyRatios.xRatio; + xHighestValue = w.globals.maxX - w.globals.gridWidth / 15 * xyRatios.xRatio; + } + + if (xLowestValue < w.globals.initialminX || xHighestValue > w.globals.initialmaxX) { + xLowestValue = w.globals.minX; + xHighestValue = w.globals.maxX; + } + + var xaxis = { + min: xLowestValue, + max: xHighestValue + }; + + if (w.config.chart.zoom.autoScaleYaxis) { + var scale = new Range(this.ctx); + yaxis = scale.autoScaleY(this.ctx, yaxis, { + xaxis: xaxis + }); + } + + var options = { + xaxis: { + min: xLowestValue, + max: xHighestValue + } + }; + + if (!w.config.chart.group) { + // if chart in a group, prevent yaxis update here + // fix issue #650 + options.yaxis = yaxis; + } + + this.ctx._updateOptions(options, false, false); + + if (typeof w.config.chart.events.scrolled === 'function') { + w.config.chart.events.scrolled(this.ctx, { + xaxis: { + min: xLowestValue, + max: xHighestValue + } + }); + } + } + }]); + + return ZoomPanSelection; + }(Toolbar); + + var TitleSubtitle = + /*#__PURE__*/ + function () { + function TitleSubtitle(ctx) { + _classCallCheck(this, TitleSubtitle); + + this.ctx = ctx; + this.w = ctx.w; + } + + _createClass(TitleSubtitle, [{ + key: "draw", + value: function draw() { + this.drawTitleSubtitle('title'); + this.drawTitleSubtitle('subtitle'); + } + }, { + key: "drawTitleSubtitle", + value: function drawTitleSubtitle(type) { + var w = this.w; + var tsConfig = type === 'title' ? w.config.title : w.config.subtitle; + var x = w.globals.svgWidth / 2; + var y = tsConfig.offsetY; + var textAnchor = 'middle'; + + if (tsConfig.align === 'left') { + x = 10; + textAnchor = 'start'; + } else if (tsConfig.align === 'right') { + x = w.globals.svgWidth - 10; + textAnchor = 'end'; + } + + x = x + tsConfig.offsetX; + y = y + parseInt(tsConfig.style.fontSize) + 2; + + if (tsConfig.text !== undefined) { + var graphics = new Graphics(this.ctx); + var titleText = graphics.drawText({ + x: x, + y: y, + text: tsConfig.text, + textAnchor: textAnchor, + fontSize: tsConfig.style.fontSize, + fontFamily: tsConfig.style.fontFamily, + foreColor: tsConfig.style.color, + opacity: 1 + }); + titleText.node.setAttribute('class', "apexcharts-".concat(type, "-text")); + w.globals.dom.Paper.add(titleText); + } + } + }]); + + return TitleSubtitle; + }(); + + (function (root, factory) { + /* istanbul ignore next */ + if (typeof define === 'function' && define.amd) { + define(function () { + return factory(root, root.document); + }); + /* below check fixes #412 */ + } else if ((typeof exports === "undefined" ? "undefined" : _typeof(exports)) === 'object' && typeof module !== 'undefined') { + module.exports = root.document ? factory(root, root.document) : function (w) { + return factory(w, w.document); + }; + } else { + root.SVG = factory(root, root.document); + } + })(typeof window !== 'undefined' ? window : undefined, function (window, document) { + // Find global reference - uses 'this' by default when available, + // falls back to 'window' otherwise (for bundlers like Webpack) + var globalRef = typeof this !== 'undefined' ? this : window; // The main wrapping element + + var SVG = globalRef.SVG = function (element) { + if (SVG.supported) { + element = new SVG.Doc(element); + + if (!SVG.parser.draw) { + SVG.prepare(); + } + + return element; + } + }; // Default namespaces + + + SVG.ns = 'http://www.w3.org/2000/svg'; + SVG.xmlns = 'http://www.w3.org/2000/xmlns/'; + SVG.xlink = 'http://www.w3.org/1999/xlink'; + SVG.svgjs = 'http://svgjs.com/svgjs'; // Svg support test + + SVG.supported = function () { + return true; // !!document.createElementNS && + // !! document.createElementNS(SVG.ns,'svg').createSVGRect + }(); // Don't bother to continue if SVG is not supported + + + if (!SVG.supported) return false; // Element id sequence + + SVG.did = 1000; // Get next named element id + + SVG.eid = function (name) { + return 'Svgjs' + capitalize(name) + SVG.did++; + }; // Method for element creation + + + SVG.create = function (name) { + // create element + var element = document.createElementNS(this.ns, name); // apply unique id + + element.setAttribute('id', this.eid(name)); + return element; + }; // Method for extending objects + + + SVG.extend = function () { + var modules, methods, key, i; // Get list of modules + + modules = [].slice.call(arguments); // Get object with extensions + + methods = modules.pop(); + + for (i = modules.length - 1; i >= 0; i--) { + if (modules[i]) { + for (key in methods) { + modules[i].prototype[key] = methods[key]; + } + } + } // Make sure SVG.Set inherits any newly added methods + + + if (SVG.Set && SVG.Set.inherit) { + SVG.Set.inherit(); + } + }; // Invent new element + + + SVG.invent = function (config) { + // Create element initializer + var initializer = typeof config.create === 'function' ? config.create : function () { + this.constructor.call(this, SVG.create(config.create)); + }; // Inherit prototype + + if (config.inherit) { + initializer.prototype = new config.inherit(); + } // Extend with methods + + + if (config.extend) { + SVG.extend(initializer, config.extend); + } // Attach construct method to parent + + + if (config.construct) { + SVG.extend(config.parent || SVG.Container, config.construct); + } + + return initializer; + }; // Adopt existing svg elements + + + SVG.adopt = function (node) { + // check for presence of node + if (!node) return null; // make sure a node isn't already adopted + + if (node.instance) return node.instance; // initialize variables + + var element; // adopt with element-specific settings + + if (node.nodeName == 'svg') { + element = node.parentNode instanceof window.SVGElement ? new SVG.Nested() : new SVG.Doc(); + } else if (node.nodeName == 'linearGradient') { + element = new SVG.Gradient('linear'); + } else if (node.nodeName == 'radialGradient') { + element = new SVG.Gradient('radial'); + } else if (SVG[capitalize(node.nodeName)]) { + element = new SVG[capitalize(node.nodeName)](); + } else { + element = new SVG.Element(node); + } // ensure references + + + element.type = node.nodeName; + element.node = node; + node.instance = element; // SVG.Class specific preparations + + if (element instanceof SVG.Doc) { + element.namespace().defs(); + } // pull svgjs data from the dom (getAttributeNS doesn't work in html5) + + + element.setData(JSON.parse(node.getAttribute('svgjs:data')) || {}); + return element; + }; // Initialize parsing element + + + SVG.prepare = function () { + // Select document body and create invisible svg element + var body = document.getElementsByTagName('body')[0], + draw = (body ? new SVG.Doc(body) : SVG.adopt(document.documentElement).nested()).size(2, 0); // Create parser object + + SVG.parser = { + body: body || document.documentElement, + draw: draw.style('opacity:0;position:absolute;left:-100%;top:-100%;overflow:hidden').node, + poly: draw.polyline().node, + path: draw.path().node, + native: SVG.create('svg') + }; + }; + + SVG.parser = { + native: SVG.create('svg') + }; + document.addEventListener('DOMContentLoaded', function () { + if (!SVG.parser.draw) { + SVG.prepare(); + } + }, false); // Storage for regular expressions + + SVG.regex = { + // Parse unit value + numberAndUnit: /^([+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?)([a-z%]*)$/i, + // Parse hex value + hex: /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i, + // Parse rgb value + rgb: /rgb\((\d+),(\d+),(\d+)\)/, + // Parse reference id + reference: /#([a-z0-9\-_]+)/i, + // splits a transformation chain + transforms: /\)\s*,?\s*/, + // Whitespace + whitespace: /\s/g, + // Test hex value + isHex: /^#[a-f0-9]{3,6}$/i, + // Test rgb value + isRgb: /^rgb\(/, + // Test css declaration + isCss: /[^:]+:[^;]+;?/, + // Test for blank string + isBlank: /^(\s+)?$/, + // Test for numeric string + isNumber: /^[+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i, + // Test for percent value + isPercent: /^-?[\d\.]+%$/, + // Test for image url + isImage: /\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i, + // split at whitespace and comma + delimiter: /[\s,]+/, + // The following regex are used to parse the d attribute of a path + // Matches all hyphens which are not after an exponent + hyphen: /([^e])\-/gi, + // Replaces and tests for all path letters + pathLetters: /[MLHVCSQTAZ]/gi, + // yes we need this one, too + isPathLetter: /[MLHVCSQTAZ]/i, + // matches 0.154.23.45 + numbersWithDots: /((\d?\.\d+(?:e[+-]?\d+)?)((?:\.\d+(?:e[+-]?\d+)?)+))+/gi, + // matches . + dots: /\./g + }; + SVG.utils = { + // Map function + map: function map(array, block) { + var i, + il = array.length, + result = []; + + for (i = 0; i < il; i++) { + result.push(block(array[i])); + } + + return result; + }, + // Filter function + filter: function filter(array, block) { + var i, + il = array.length, + result = []; + + for (i = 0; i < il; i++) { + if (block(array[i])) { + result.push(array[i]); + } + } + + return result; + }, + // Degrees to radians + radians: function radians(d) { + return d % 360 * Math.PI / 180; + }, + // Radians to degrees + degrees: function degrees(r) { + return r * 180 / Math.PI % 360; + }, + filterSVGElements: function filterSVGElements(nodes) { + return this.filter(nodes, function (el) { + return el instanceof window.SVGElement; + }); + } + }; + SVG.defaults = { + // Default attribute values + attrs: { + // fill and stroke + 'fill-opacity': 1, + 'stroke-opacity': 1, + 'stroke-width': 0, + 'stroke-linejoin': 'miter', + 'stroke-linecap': 'butt', + fill: '#000000', + stroke: '#000000', + opacity: 1, + // position + x: 0, + y: 0, + cx: 0, + cy: 0, + // size + width: 0, + height: 0, + // radius + r: 0, + rx: 0, + ry: 0, + // gradient + offset: 0, + 'stop-opacity': 1, + 'stop-color': '#000000', + // text + 'font-size': 16, + 'font-family': 'Helvetica, Arial, sans-serif', + 'text-anchor': 'start' + } // Module for color convertions + + }; + + SVG.Color = function (color) { + var match; // initialize defaults + + this.r = 0; + this.g = 0; + this.b = 0; + if (!color) return; // parse color + + if (typeof color === 'string') { + if (SVG.regex.isRgb.test(color)) { + // get rgb values + match = SVG.regex.rgb.exec(color.replace(SVG.regex.whitespace, '')); // parse numeric values + + this.r = parseInt(match[1]); + this.g = parseInt(match[2]); + this.b = parseInt(match[3]); + } else if (SVG.regex.isHex.test(color)) { + // get hex values + match = SVG.regex.hex.exec(fullHex(color)); // parse numeric values + + this.r = parseInt(match[1], 16); + this.g = parseInt(match[2], 16); + this.b = parseInt(match[3], 16); + } + } else if (_typeof(color) === 'object') { + this.r = color.r; + this.g = color.g; + this.b = color.b; + } + }; + + SVG.extend(SVG.Color, { + // Default to hex conversion + toString: function toString() { + return this.toHex(); + }, + // Build hex value + toHex: function toHex() { + return '#' + compToHex(this.r) + compToHex(this.g) + compToHex(this.b); + }, + // Build rgb value + toRgb: function toRgb() { + return 'rgb(' + [this.r, this.g, this.b].join() + ')'; + }, + // Calculate true brightness + brightness: function brightness() { + return this.r / 255 * 0.30 + this.g / 255 * 0.59 + this.b / 255 * 0.11; + }, + // Make color morphable + morph: function morph(color) { + this.destination = new SVG.Color(color); + return this; + }, + // Get morphed color at given position + at: function at(pos) { + // make sure a destination is defined + if (!this.destination) return this; // normalise pos + + pos = pos < 0 ? 0 : pos > 1 ? 1 : pos; // generate morphed color + + return new SVG.Color({ + r: ~~(this.r + (this.destination.r - this.r) * pos), + g: ~~(this.g + (this.destination.g - this.g) * pos), + b: ~~(this.b + (this.destination.b - this.b) * pos) + }); + } + }); // Testers + // Test if given value is a color string + + SVG.Color.test = function (color) { + color += ''; + return SVG.regex.isHex.test(color) || SVG.regex.isRgb.test(color); + }; // Test if given value is a rgb object + + + SVG.Color.isRgb = function (color) { + return color && typeof color.r === 'number' && typeof color.g === 'number' && typeof color.b === 'number'; + }; // Test if given value is a color + + + SVG.Color.isColor = function (color) { + return SVG.Color.isRgb(color) || SVG.Color.test(color); + }; // Module for array conversion + + + SVG.Array = function (array, fallback) { + array = (array || []).valueOf(); // if array is empty and fallback is provided, use fallback + + if (array.length == 0 && fallback) { + array = fallback.valueOf(); + } // parse array + + + this.value = this.parse(array); + }; + + SVG.extend(SVG.Array, { + // Make array morphable + morph: function morph(array) { + this.destination = this.parse(array); // normalize length of arrays + + if (this.value.length != this.destination.length) { + var lastValue = this.value[this.value.length - 1], + lastDestination = this.destination[this.destination.length - 1]; + + while (this.value.length > this.destination.length) { + this.destination.push(lastDestination); + } + + while (this.value.length < this.destination.length) { + this.value.push(lastValue); + } + } + + return this; + }, + // Clean up any duplicate points + settle: function settle() { + // find all unique values + for (var i = 0, il = this.value.length, seen = []; i < il; i++) { + if (seen.indexOf(this.value[i]) == -1) { + seen.push(this.value[i]); + } + } // set new value + + + return this.value = seen; + }, + // Get morphed array at given position + at: function at(pos) { + // make sure a destination is defined + if (!this.destination) return this; // generate morphed array + + for (var i = 0, il = this.value.length, array = []; i < il; i++) { + array.push(this.value[i] + (this.destination[i] - this.value[i]) * pos); + } + + return new SVG.Array(array); + }, + // Convert array to string + toString: function toString() { + return this.value.join(' '); + }, + // Real value + valueOf: function valueOf() { + return this.value; + }, + // Parse whitespace separated string + parse: function parse(array) { + array = array.valueOf(); // if already is an array, no need to parse it + + if (Array.isArray(array)) return array; + return this.split(array); + }, + // Strip unnecessary whitespace + split: function split(string) { + return string.trim().split(SVG.regex.delimiter).map(parseFloat); + }, + // Reverse array + reverse: function reverse() { + this.value.reverse(); + return this; + }, + clone: function clone() { + var clone = new this.constructor(); + clone.value = array_clone(this.value); + return clone; + } + }); // Poly points array + + SVG.PointArray = function (array, fallback) { + SVG.Array.call(this, array, fallback || [[0, 0]]); + }; // Inherit from SVG.Array + + + SVG.PointArray.prototype = new SVG.Array(); + SVG.PointArray.prototype.constructor = SVG.PointArray; + SVG.extend(SVG.PointArray, { + // Convert array to string + toString: function toString() { + // convert to a poly point string + for (var i = 0, il = this.value.length, array = []; i < il; i++) { + array.push(this.value[i].join(',')); + } + + return array.join(' '); + }, + // Convert array to line object + toLine: function toLine() { + return { + x1: this.value[0][0], + y1: this.value[0][1], + x2: this.value[1][0], + y2: this.value[1][1] + }; + }, + // Get morphed array at given position + at: function at(pos) { + // make sure a destination is defined + if (!this.destination) return this; // generate morphed point string + + for (var i = 0, il = this.value.length, array = []; i < il; i++) { + array.push([this.value[i][0] + (this.destination[i][0] - this.value[i][0]) * pos, this.value[i][1] + (this.destination[i][1] - this.value[i][1]) * pos]); + } + + return new SVG.PointArray(array); + }, + // Parse point string and flat array + parse: function parse(array) { + var points = []; + array = array.valueOf(); // if it is an array + + if (Array.isArray(array)) { + // and it is not flat, there is no need to parse it + if (Array.isArray(array[0])) { + // make sure to use a clone + return array.map(function (el) { + return el.slice(); + }); + } else if (array[0].x != null) { + // allow point objects to be passed + return array.map(function (el) { + return [el.x, el.y]; + }); + } + } else { + // Else, it is considered as a string + // parse points + array = array.trim().split(SVG.regex.delimiter).map(parseFloat); + } // validate points - https://svgwg.org/svg2-draft/shapes.html#DataTypePoints + // Odd number of coordinates is an error. In such cases, drop the last odd coordinate. + + + if (array.length % 2 !== 0) array.pop(); // wrap points in two-tuples and parse points as floats + + for (var i = 0, len = array.length; i < len; i = i + 2) { + points.push([array[i], array[i + 1]]); + } + + return points; + }, + // Move point string + move: function move(x, y) { + var box = this.bbox(); // get relative offset + + x -= box.x; + y -= box.y; // move every point + + if (!isNaN(x) && !isNaN(y)) { + for (var i = this.value.length - 1; i >= 0; i--) { + this.value[i] = [this.value[i][0] + x, this.value[i][1] + y]; + } + } + + return this; + }, + // Resize poly string + size: function size(width, height) { + var i, + box = this.bbox(); // recalculate position of all points according to new size + + for (i = this.value.length - 1; i >= 0; i--) { + if (box.width) this.value[i][0] = (this.value[i][0] - box.x) * width / box.width + box.x; + if (box.height) this.value[i][1] = (this.value[i][1] - box.y) * height / box.height + box.y; + } + + return this; + }, + // Get bounding box of points + bbox: function bbox() { + if (!SVG.parser.draw) { + SVG.prepare(); + } + + SVG.parser.poly.setAttribute('points', this.toString()); + return SVG.parser.poly.getBBox(); + } + }); + var pathHandlers = { + M: function M(c, p, p0) { + p.x = p0.x = c[0]; + p.y = p0.y = c[1]; + return ['M', p.x, p.y]; + }, + L: function L(c, p) { + p.x = c[0]; + p.y = c[1]; + return ['L', c[0], c[1]]; + }, + H: function H(c, p) { + p.x = c[0]; + return ['H', c[0]]; + }, + V: function V(c, p) { + p.y = c[0]; + return ['V', c[0]]; + }, + C: function C(c, p) { + p.x = c[4]; + p.y = c[5]; + return ['C', c[0], c[1], c[2], c[3], c[4], c[5]]; + }, + S: function S(c, p) { + p.x = c[2]; + p.y = c[3]; + return ['S', c[0], c[1], c[2], c[3]]; + }, + Q: function Q(c, p) { + p.x = c[2]; + p.y = c[3]; + return ['Q', c[0], c[1], c[2], c[3]]; + }, + T: function T(c, p) { + p.x = c[0]; + p.y = c[1]; + return ['T', c[0], c[1]]; + }, + Z: function Z(c, p, p0) { + p.x = p0.x; + p.y = p0.y; + return ['Z']; + }, + A: function A(c, p) { + p.x = c[5]; + p.y = c[6]; + return ['A', c[0], c[1], c[2], c[3], c[4], c[5], c[6]]; + } + }; + var mlhvqtcsa = 'mlhvqtcsaz'.split(''); + + for (var i = 0, il = mlhvqtcsa.length; i < il; ++i) { + pathHandlers[mlhvqtcsa[i]] = function (i) { + return function (c, p, p0) { + if (i == 'H') c[0] = c[0] + p.x;else if (i == 'V') c[0] = c[0] + p.y;else if (i == 'A') { + c[5] = c[5] + p.x, c[6] = c[6] + p.y; + } else { + for (var j = 0, jl = c.length; j < jl; ++j) { + c[j] = c[j] + (j % 2 ? p.y : p.x); + } + } + return pathHandlers[i](c, p, p0); + }; + }(mlhvqtcsa[i].toUpperCase()); + } // Path points array + + + SVG.PathArray = function (array, fallback) { + SVG.Array.call(this, array, fallback || [['M', 0, 0]]); + }; // Inherit from SVG.Array + + + SVG.PathArray.prototype = new SVG.Array(); + SVG.PathArray.prototype.constructor = SVG.PathArray; + SVG.extend(SVG.PathArray, { + // Convert array to string + toString: function toString() { + return arrayToString(this.value); + }, + // Move path string + move: function move(x, y) { + // get bounding box of current situation + var box = this.bbox(); // get relative offset + + x -= box.x; + y -= box.y; + + if (!isNaN(x) && !isNaN(y)) { + // move every point + for (var l, i = this.value.length - 1; i >= 0; i--) { + l = this.value[i][0]; + + if (l == 'M' || l == 'L' || l == 'T') { + this.value[i][1] += x; + this.value[i][2] += y; + } else if (l == 'H') { + this.value[i][1] += x; + } else if (l == 'V') { + this.value[i][1] += y; + } else if (l == 'C' || l == 'S' || l == 'Q') { + this.value[i][1] += x; + this.value[i][2] += y; + this.value[i][3] += x; + this.value[i][4] += y; + + if (l == 'C') { + this.value[i][5] += x; + this.value[i][6] += y; + } + } else if (l == 'A') { + this.value[i][6] += x; + this.value[i][7] += y; + } + } + } + + return this; + }, + // Resize path string + size: function size(width, height) { + // get bounding box of current situation + var i, + l, + box = this.bbox(); // recalculate position of all points according to new size + + for (i = this.value.length - 1; i >= 0; i--) { + l = this.value[i][0]; + + if (l == 'M' || l == 'L' || l == 'T') { + this.value[i][1] = (this.value[i][1] - box.x) * width / box.width + box.x; + this.value[i][2] = (this.value[i][2] - box.y) * height / box.height + box.y; + } else if (l == 'H') { + this.value[i][1] = (this.value[i][1] - box.x) * width / box.width + box.x; + } else if (l == 'V') { + this.value[i][1] = (this.value[i][1] - box.y) * height / box.height + box.y; + } else if (l == 'C' || l == 'S' || l == 'Q') { + this.value[i][1] = (this.value[i][1] - box.x) * width / box.width + box.x; + this.value[i][2] = (this.value[i][2] - box.y) * height / box.height + box.y; + this.value[i][3] = (this.value[i][3] - box.x) * width / box.width + box.x; + this.value[i][4] = (this.value[i][4] - box.y) * height / box.height + box.y; + + if (l == 'C') { + this.value[i][5] = (this.value[i][5] - box.x) * width / box.width + box.x; + this.value[i][6] = (this.value[i][6] - box.y) * height / box.height + box.y; + } + } else if (l == 'A') { + // resize radii + this.value[i][1] = this.value[i][1] * width / box.width; + this.value[i][2] = this.value[i][2] * height / box.height; // move position values + + this.value[i][6] = (this.value[i][6] - box.x) * width / box.width + box.x; + this.value[i][7] = (this.value[i][7] - box.y) * height / box.height + box.y; + } + } + + return this; + }, + // Test if the passed path array use the same path data commands as this path array + equalCommands: function equalCommands(pathArray) { + var i, il, equalCommands; + pathArray = new SVG.PathArray(pathArray); + equalCommands = this.value.length === pathArray.value.length; + + for (i = 0, il = this.value.length; equalCommands && i < il; i++) { + equalCommands = this.value[i][0] === pathArray.value[i][0]; + } + + return equalCommands; + }, + // Make path array morphable + morph: function morph(pathArray) { + pathArray = new SVG.PathArray(pathArray); + + if (this.equalCommands(pathArray)) { + this.destination = pathArray; + } else { + this.destination = null; + } + + return this; + }, + // Get morphed path array at given position + at: function at(pos) { + // make sure a destination is defined + if (!this.destination) return this; + var sourceArray = this.value, + destinationArray = this.destination.value, + array = [], + pathArray = new SVG.PathArray(), + i, + il, + j, + jl; // Animate has specified in the SVG spec + // See: https://www.w3.org/TR/SVG11/paths.html#PathElement + + for (i = 0, il = sourceArray.length; i < il; i++) { + array[i] = [sourceArray[i][0]]; + + for (j = 1, jl = sourceArray[i].length; j < jl; j++) { + array[i][j] = sourceArray[i][j] + (destinationArray[i][j] - sourceArray[i][j]) * pos; + } // For the two flags of the elliptical arc command, the SVG spec say: + // Flags and booleans are interpolated as fractions between zero and one, with any non-zero value considered to be a value of one/true + // Elliptical arc command as an array followed by corresponding indexes: + // ['A', rx, ry, x-axis-rotation, large-arc-flag, sweep-flag, x, y] + // 0 1 2 3 4 5 6 7 + + + if (array[i][0] === 'A') { + array[i][4] = +(array[i][4] != 0); + array[i][5] = +(array[i][5] != 0); + } + } // Directly modify the value of a path array, this is done this way for performance + + + pathArray.value = array; + return pathArray; + }, + // Absolutize and parse path to array + parse: function parse(array) { + // if it's already a patharray, no need to parse it + if (array instanceof SVG.PathArray) return array.valueOf(); // prepare for parsing + + var s, + arr, + paramCnt = { + 'M': 2, + 'L': 2, + 'H': 1, + 'V': 1, + 'C': 6, + 'S': 4, + 'Q': 4, + 'T': 2, + 'A': 7, + 'Z': 0 + }; + + if (typeof array === 'string') { + array = array.replace(SVG.regex.numbersWithDots, pathRegReplace) // convert 45.123.123 to 45.123 .123 + .replace(SVG.regex.pathLetters, ' $& ') // put some room between letters and numbers + .replace(SVG.regex.hyphen, '$1 -') // add space before hyphen + .trim() // trim + .split(SVG.regex.delimiter); // split into array + } else { + array = array.reduce(function (prev, curr) { + return [].concat.call(prev, curr); + }, []); + } // array now is an array containing all parts of a path e.g. ['M', '0', '0', 'L', '30', '30' ...] + + + var arr = [], + p = new SVG.Point(), + p0 = new SVG.Point(), + index = 0, + len = array.length; + + do { + // Test if we have a path letter + if (SVG.regex.isPathLetter.test(array[index])) { + s = array[index]; + ++index; // If last letter was a move command and we got no new, it defaults to [L]ine + } else if (s == 'M') { + s = 'L'; + } else if (s == 'm') { + s = 'l'; + } + + arr.push(pathHandlers[s].call(null, array.slice(index, index = index + paramCnt[s.toUpperCase()]).map(parseFloat), p, p0)); + } while (len > index); + + return arr; + }, + // Get bounding box of path + bbox: function bbox() { + if (!SVG.parser.draw) { + SVG.prepare(); + } + + SVG.parser.path.setAttribute('d', this.toString()); + return SVG.parser.path.getBBox(); + } + }); // Module for unit convertions + + SVG.Number = SVG.invent({ + // Initialize + create: function create(value, unit) { + // initialize defaults + this.value = 0; + this.unit = unit || ''; // parse value + + if (typeof value === 'number') { + // ensure a valid numeric value + this.value = isNaN(value) ? 0 : !isFinite(value) ? value < 0 ? -3.4e+38 : +3.4e+38 : value; + } else if (typeof value === 'string') { + unit = value.match(SVG.regex.numberAndUnit); + + if (unit) { + // make value numeric + this.value = parseFloat(unit[1]); // normalize + + if (unit[5] == '%') { + this.value /= 100; + } else if (unit[5] == 's') { + this.value *= 1000; + } // store unit + + + this.unit = unit[5]; + } + } else { + if (value instanceof SVG.Number) { + this.value = value.valueOf(); + this.unit = value.unit; + } + } + }, + // Add methods + extend: { + // Stringalize + toString: function toString() { + return (this.unit == '%' ? ~~(this.value * 1e8) / 1e6 : this.unit == 's' ? this.value / 1e3 : this.value) + this.unit; + }, + toJSON: function toJSON() { + return this.toString(); + }, + // Convert to primitive + valueOf: function valueOf() { + return this.value; + }, + // Add number + plus: function plus(number) { + number = new SVG.Number(number); + return new SVG.Number(this + number, this.unit || number.unit); + }, + // Subtract number + minus: function minus(number) { + number = new SVG.Number(number); + return new SVG.Number(this - number, this.unit || number.unit); + }, + // Multiply number + times: function times(number) { + number = new SVG.Number(number); + return new SVG.Number(this * number, this.unit || number.unit); + }, + // Divide number + divide: function divide(number) { + number = new SVG.Number(number); + return new SVG.Number(this / number, this.unit || number.unit); + }, + // Convert to different unit + to: function to(unit) { + var number = new SVG.Number(this); + + if (typeof unit === 'string') { + number.unit = unit; + } + + return number; + }, + // Make number morphable + morph: function morph(number) { + this.destination = new SVG.Number(number); + + if (number.relative) { + this.destination.value += this.value; + } + + return this; + }, + // Get morphed number at given position + at: function at(pos) { + // Make sure a destination is defined + if (!this.destination) return this; // Generate new morphed number + + return new SVG.Number(this.destination).minus(this).times(pos).plus(this); + } + } + }); + SVG.Element = SVG.invent({ + // Initialize node + create: function create(node) { + // make stroke value accessible dynamically + this._stroke = SVG.defaults.attrs.stroke; + this._event = null; // initialize data object + + this.dom = {}; // create circular reference + + if (this.node = node) { + this.type = node.nodeName; + this.node.instance = this; // store current attribute value + + this._stroke = node.getAttribute('stroke') || this._stroke; + } + }, + // Add class methods + extend: { + // Move over x-axis + x: function x(_x) { + return this.attr('x', _x); + }, + // Move over y-axis + y: function y(_y) { + return this.attr('y', _y); + }, + // Move by center over x-axis + cx: function cx(x) { + return x == null ? this.x() + this.width() / 2 : this.x(x - this.width() / 2); + }, + // Move by center over y-axis + cy: function cy(y) { + return y == null ? this.y() + this.height() / 2 : this.y(y - this.height() / 2); + }, + // Move element to given x and y values + move: function move(x, y) { + return this.x(x).y(y); + }, + // Move element by its center + center: function center(x, y) { + return this.cx(x).cy(y); + }, + // Set width of element + width: function width(_width) { + return this.attr('width', _width); + }, + // Set height of element + height: function height(_height) { + return this.attr('height', _height); + }, + // Set element size to given width and height + size: function size(width, height) { + var p = proportionalSize(this, width, height); + return this.width(new SVG.Number(p.width)).height(new SVG.Number(p.height)); + }, + // Clone element + clone: function clone(parent) { + // write dom data to the dom so the clone can pickup the data + this.writeDataToDom(); // clone element and assign new id + + var clone = assignNewId(this.node.cloneNode(true)); // insert the clone in the given parent or after myself + + if (parent) parent.add(clone);else this.after(clone); + return clone; + }, + // Remove element + remove: function remove() { + if (this.parent()) { + this.parent().removeElement(this); + } + + return this; + }, + // Replace element + replace: function replace(element) { + this.after(element).remove(); + return element; + }, + // Add element to given container and return self + addTo: function addTo(parent) { + return parent.put(this); + }, + // Add element to given container and return container + putIn: function putIn(parent) { + return parent.add(this); + }, + // Get / set id + id: function id(_id) { + return this.attr('id', _id); + }, + // Checks whether the given point inside the bounding box of the element + inside: function inside(x, y) { + var box = this.bbox(); + return x > box.x && y > box.y && x < box.x + box.width && y < box.y + box.height; + }, + // Show element + show: function show() { + return this.style('display', ''); + }, + // Hide element + hide: function hide() { + return this.style('display', 'none'); + }, + // Is element visible? + visible: function visible() { + return this.style('display') != 'none'; + }, + // Return id on string conversion + toString: function toString() { + return this.attr('id'); + }, + // Return array of classes on the node + classes: function classes() { + var attr = this.attr('class'); + return attr == null ? [] : attr.trim().split(SVG.regex.delimiter); + }, + // Return true if class exists on the node, false otherwise + hasClass: function hasClass(name) { + return this.classes().indexOf(name) != -1; + }, + // Add class to the node + addClass: function addClass(name) { + if (!this.hasClass(name)) { + var array = this.classes(); + array.push(name); + this.attr('class', array.join(' ')); + } + + return this; + }, + // Remove class from the node + removeClass: function removeClass(name) { + if (this.hasClass(name)) { + this.attr('class', this.classes().filter(function (c) { + return c != name; + }).join(' ')); + } + + return this; + }, + // Toggle the presence of a class on the node + toggleClass: function toggleClass(name) { + return this.hasClass(name) ? this.removeClass(name) : this.addClass(name); + }, + // Get referenced element form attribute value + reference: function reference(attr) { + return SVG.get(this.attr(attr)); + }, + // Returns the parent element instance + parent: function parent(type) { + var parent = this; // check for parent + + if (!parent.node.parentNode) return null; // get parent element + + parent = SVG.adopt(parent.node.parentNode); + if (!type) return parent; // loop trough ancestors if type is given + + while (parent && parent.node instanceof window.SVGElement) { + if (typeof type === 'string' ? parent.matches(type) : parent instanceof type) return parent; + if (!parent.node.parentNode || parent.node.parentNode.nodeName == '#document') return null; // #759, #720 + + parent = SVG.adopt(parent.node.parentNode); + } + }, + // Get parent document + doc: function doc() { + return this instanceof SVG.Doc ? this : this.parent(SVG.Doc); + }, + // return array of all ancestors of given type up to the root svg + parents: function parents(type) { + var parents = [], + parent = this; + + do { + parent = parent.parent(type); + if (!parent || !parent.node) break; + parents.push(parent); + } while (parent.parent); + + return parents; + }, + // matches the element vs a css selector + matches: function matches(selector) { + return _matches(this.node, selector); + }, + // Returns the svg node to call native svg methods on it + native: function native() { + return this.node; + }, + // Import raw svg + svg: function svg(_svg) { + // create temporary holder + var well = document.createElement('svg'); // act as a setter if svg is given + + if (_svg && this instanceof SVG.Parent) { + // dump raw svg + well.innerHTML = '' + _svg.replace(/\n/, '').replace(/<([\w:-]+)([^<]+?)\/>/g, '<$1$2>') + ''; // transplant nodes + + for (var i = 0, il = well.firstChild.childNodes.length; i < il; i++) { + this.node.appendChild(well.firstChild.firstChild); + } // otherwise act as a getter + + } else { + // create a wrapping svg element in case of partial content + well.appendChild(_svg = document.createElement('svg')); // write svgjs data to the dom + + this.writeDataToDom(); // insert a copy of this node + + _svg.appendChild(this.node.cloneNode(true)); // return target element + + + return well.innerHTML.replace(/^/, '').replace(/<\/svg>$/, ''); + } + + return this; + }, + // write svgjs data to the dom + writeDataToDom: function writeDataToDom() { + // dump variables recursively + if (this.each || this.lines) { + var fn = this.each ? this : this.lines(); + fn.each(function () { + this.writeDataToDom(); + }); + } // remove previously set data + + + this.node.removeAttribute('svgjs:data'); + + if (Object.keys(this.dom).length) { + this.node.setAttribute('svgjs:data', JSON.stringify(this.dom)); + } // see #428 + + + return this; + }, + // set given data to the elements data property + setData: function setData(o) { + this.dom = o; + return this; + }, + is: function is(obj) { + return _is(this, obj); + } + } + }); + SVG.easing = { + '-': function _(pos) { + return pos; + }, + '<>': function _(pos) { + return -Math.cos(pos * Math.PI) / 2 + 0.5; + }, + '>': function _(pos) { + return Math.sin(pos * Math.PI / 2); + }, + '<': function _(pos) { + return -Math.cos(pos * Math.PI / 2) + 1; + } + }; + + SVG.morph = function (pos) { + return function (from, to) { + return new SVG.MorphObj(from, to).at(pos); + }; + }; + + SVG.Situation = SVG.invent({ + create: function create(o) { + this.init = false; + this.reversed = false; + this.reversing = false; + this.duration = new SVG.Number(o.duration).valueOf(); + this.delay = new SVG.Number(o.delay).valueOf(); + this.start = +new Date() + this.delay; + this.finish = this.start + this.duration; + this.ease = o.ease; // this.loop is incremented from 0 to this.loops + // it is also incremented when in an infinite loop (when this.loops is true) + + this.loop = 0; + this.loops = false; + this.animations = {// functionToCall: [list of morphable objects] + // e.g. move: [SVG.Number, SVG.Number] + }; + this.attrs = {// holds all attributes which are not represented from a function svg.js provides + // e.g. someAttr: SVG.Number + }; + this.styles = {// holds all styles which should be animated + // e.g. fill-color: SVG.Color + }; + this.transforms = [// holds all transformations as transformation objects + // e.g. [SVG.Rotate, SVG.Translate, SVG.Matrix] + ]; + this.once = {// functions to fire at a specific position + // e.g. "0.5": function foo(){} + }; + } + }); + SVG.FX = SVG.invent({ + create: function create(element) { + this._target = element; + this.situations = []; + this.active = false; + this.situation = null; + this.paused = false; + this.lastPos = 0; + this.pos = 0; // The absolute position of an animation is its position in the context of its complete duration (including delay and loops) + // When performing a delay, absPos is below 0 and when performing a loop, its value is above 1 + + this.absPos = 0; + this._speed = 1; + }, + extend: { + /** + * sets or returns the target of this animation + * @param o object || number In case of Object it holds all parameters. In case of number its the duration of the animation + * @param ease function || string Function which should be used for easing or easing keyword + * @param delay Number indicating the delay before the animation starts + * @return target || this + */ + animate: function animate(o, ease, delay) { + if (_typeof(o) === 'object') { + ease = o.ease; + delay = o.delay; + o = o.duration; + } + + var situation = new SVG.Situation({ + duration: o || 1000, + delay: delay || 0, + ease: SVG.easing[ease || '-'] || ease + }); + this.queue(situation); + return this; + }, + + /** + * sets a delay before the next element of the queue is called + * @param delay Duration of delay in milliseconds + * @return this.target() + */ + delay: function delay(_delay) { + // The delay is performed by an empty situation with its duration + // attribute set to the duration of the delay + var situation = new SVG.Situation({ + duration: _delay, + delay: 0, + ease: SVG.easing['-'] + }); + return this.queue(situation); + }, + + /** + * sets or returns the target of this animation + * @param null || target SVG.Element which should be set as new target + * @return target || this + */ + target: function target(_target) { + if (_target && _target instanceof SVG.Element) { + this._target = _target; + return this; + } + + return this._target; + }, + // returns the absolute position at a given time + timeToAbsPos: function timeToAbsPos(timestamp) { + return (timestamp - this.situation.start) / (this.situation.duration / this._speed); + }, + // returns the timestamp from a given absolute positon + absPosToTime: function absPosToTime(absPos) { + return this.situation.duration / this._speed * absPos + this.situation.start; + }, + // starts the animationloop + startAnimFrame: function startAnimFrame() { + this.stopAnimFrame(); + this.animationFrame = window.requestAnimationFrame(function () { + this.step(); + }.bind(this)); + }, + // cancels the animationframe + stopAnimFrame: function stopAnimFrame() { + window.cancelAnimationFrame(this.animationFrame); + }, + // kicks off the animation - only does something when the queue is currently not active and at least one situation is set + start: function start() { + // dont start if already started + if (!this.active && this.situation) { + this.active = true; + this.startCurrent(); + } + + return this; + }, + // start the current situation + startCurrent: function startCurrent() { + this.situation.start = +new Date() + this.situation.delay / this._speed; + this.situation.finish = this.situation.start + this.situation.duration / this._speed; + return this.initAnimations().step(); + }, + + /** + * adds a function / Situation to the animation queue + * @param fn function / situation to add + * @return this + */ + queue: function queue(fn) { + if (typeof fn === 'function' || fn instanceof SVG.Situation) { + this.situations.push(fn); + } + + if (!this.situation) this.situation = this.situations.shift(); + return this; + }, + + /** + * pulls next element from the queue and execute it + * @return this + */ + dequeue: function dequeue() { + // stop current animation + this.stop(); // get next animation from queue + + this.situation = this.situations.shift(); + + if (this.situation) { + if (this.situation instanceof SVG.Situation) { + this.start(); + } else { + // If it is not a SVG.Situation, then it is a function, we execute it + this.situation.call(this); + } + } + + return this; + }, + // updates all animations to the current state of the element + // this is important when one property could be changed from another property + initAnimations: function initAnimations() { + var i, j, source; + var s = this.situation; + if (s.init) return this; + + for (i in s.animations) { + source = this.target()[i](); + + if (!Array.isArray(source)) { + source = [source]; + } + + if (!Array.isArray(s.animations[i])) { + s.animations[i] = [s.animations[i]]; + } // if(s.animations[i].length > source.length) { + // source.concat = source.concat(s.animations[i].slice(source.length, s.animations[i].length)) + // } + + + for (j = source.length; j--;) { + // The condition is because some methods return a normal number instead + // of a SVG.Number + if (s.animations[i][j] instanceof SVG.Number) { + source[j] = new SVG.Number(source[j]); + } + + s.animations[i][j] = source[j].morph(s.animations[i][j]); + } + } + + for (i in s.attrs) { + s.attrs[i] = new SVG.MorphObj(this.target().attr(i), s.attrs[i]); + } + + for (i in s.styles) { + s.styles[i] = new SVG.MorphObj(this.target().style(i), s.styles[i]); + } + + s.initialTransformation = this.target().matrixify(); + s.init = true; + return this; + }, + clearQueue: function clearQueue() { + this.situations = []; + return this; + }, + clearCurrent: function clearCurrent() { + this.situation = null; + return this; + }, + + /** stops the animation immediately + * @param jumpToEnd A Boolean indicating whether to complete the current animation immediately. + * @param clearQueue A Boolean indicating whether to remove queued animation as well. + * @return this + */ + stop: function stop(jumpToEnd, clearQueue) { + var active = this.active; + this.active = false; + + if (clearQueue) { + this.clearQueue(); + } + + if (jumpToEnd && this.situation) { + // initialize the situation if it was not + !active && this.startCurrent(); + this.atEnd(); + } + + this.stopAnimFrame(); + return this.clearCurrent(); + }, + + /** resets the element to the state where the current element has started + * @return this + */ + reset: function reset() { + if (this.situation) { + var temp = this.situation; + this.stop(); + this.situation = temp; + this.atStart(); + } + + return this; + }, + // Stop the currently-running animation, remove all queued animations, and complete all animations for the element. + finish: function finish() { + this.stop(true, false); + + while (this.dequeue().situation && this.stop(true, false)) { + } + + this.clearQueue().clearCurrent(); + return this; + }, + // set the internal animation pointer at the start position, before any loops, and updates the visualisation + atStart: function atStart() { + return this.at(0, true); + }, + // set the internal animation pointer at the end position, after all the loops, and updates the visualisation + atEnd: function atEnd() { + if (this.situation.loops === true) { + // If in a infinite loop, we end the current iteration + this.situation.loops = this.situation.loop + 1; + } + + if (typeof this.situation.loops === 'number') { + // If performing a finite number of loops, we go after all the loops + return this.at(this.situation.loops, true); + } else { + // If no loops, we just go at the end + return this.at(1, true); + } + }, + // set the internal animation pointer to the specified position and updates the visualisation + // if isAbsPos is true, pos is treated as an absolute position + at: function at(pos, isAbsPos) { + var durDivSpd = this.situation.duration / this._speed; + this.absPos = pos; // If pos is not an absolute position, we convert it into one + + if (!isAbsPos) { + if (this.situation.reversed) this.absPos = 1 - this.absPos; + this.absPos += this.situation.loop; + } + + this.situation.start = +new Date() - this.absPos * durDivSpd; + this.situation.finish = this.situation.start + durDivSpd; + return this.step(true); + }, + + /** + * sets or returns the speed of the animations + * @param speed null || Number The new speed of the animations + * @return Number || this + */ + speed: function speed(_speed) { + if (_speed === 0) return this.pause(); + + if (_speed) { + this._speed = _speed; // We use an absolute position here so that speed can affect the delay before the animation + + return this.at(this.absPos, true); + } else return this._speed; + }, + // Make loopable + loop: function loop(times, reverse) { + var c = this.last(); // store total loops + + c.loops = times != null ? times : true; + c.loop = 0; + if (reverse) c.reversing = true; + return this; + }, + // pauses the animation + pause: function pause() { + this.paused = true; + this.stopAnimFrame(); + return this; + }, + // unpause the animation + play: function play() { + if (!this.paused) return this; + this.paused = false; // We use an absolute position here so that the delay before the animation can be paused + + return this.at(this.absPos, true); + }, + + /** + * toggle or set the direction of the animation + * true sets direction to backwards while false sets it to forwards + * @param reversed Boolean indicating whether to reverse the animation or not (default: toggle the reverse status) + * @return this + */ + reverse: function reverse(reversed) { + var c = this.last(); + if (typeof reversed === 'undefined') c.reversed = !c.reversed;else c.reversed = reversed; + return this; + }, + + /** + * returns a float from 0-1 indicating the progress of the current animation + * @param eased Boolean indicating whether the returned position should be eased or not + * @return number + */ + progress: function progress(easeIt) { + return easeIt ? this.situation.ease(this.pos) : this.pos; + }, + + /** + * adds a callback function which is called when the current animation is finished + * @param fn Function which should be executed as callback + * @return number + */ + after: function after(fn) { + var c = this.last(), + wrapper = function wrapper(e) { + if (e.detail.situation == c) { + fn.call(this, c); + this.off('finished.fx', wrapper); // prevent memory leak + } + }; + + this.target().on('finished.fx', wrapper); + return this._callStart(); + }, + // adds a callback which is called whenever one animation step is performed + during: function during(fn) { + var c = this.last(), + wrapper = function wrapper(e) { + if (e.detail.situation == c) { + fn.call(this, e.detail.pos, SVG.morph(e.detail.pos), e.detail.eased, c); + } + }; // see above + + + this.target().off('during.fx', wrapper).on('during.fx', wrapper); + this.after(function () { + this.off('during.fx', wrapper); + }); + return this._callStart(); + }, + // calls after ALL animations in the queue are finished + afterAll: function afterAll(fn) { + var wrapper = function wrapper(e) { + fn.call(this); + this.off('allfinished.fx', wrapper); + }; // see above + + + this.target().off('allfinished.fx', wrapper).on('allfinished.fx', wrapper); + return this._callStart(); + }, + // calls on every animation step for all animations + duringAll: function duringAll(fn) { + var wrapper = function wrapper(e) { + fn.call(this, e.detail.pos, SVG.morph(e.detail.pos), e.detail.eased, e.detail.situation); + }; + + this.target().off('during.fx', wrapper).on('during.fx', wrapper); + this.afterAll(function () { + this.off('during.fx', wrapper); + }); + return this._callStart(); + }, + last: function last() { + return this.situations.length ? this.situations[this.situations.length - 1] : this.situation; + }, + // adds one property to the animations + add: function add(method, args, type) { + this.last()[type || 'animations'][method] = args; + return this._callStart(); + }, + + /** perform one step of the animation + * @param ignoreTime Boolean indicating whether to ignore time and use position directly or recalculate position based on time + * @return this + */ + step: function step(ignoreTime) { + // convert current time to an absolute position + if (!ignoreTime) this.absPos = this.timeToAbsPos(+new Date()); // This part convert an absolute position to a position + + if (this.situation.loops !== false) { + var absPos, absPosInt, lastLoop; // If the absolute position is below 0, we just treat it as if it was 0 + + absPos = Math.max(this.absPos, 0); + absPosInt = Math.floor(absPos); + + if (this.situation.loops === true || absPosInt < this.situation.loops) { + this.pos = absPos - absPosInt; + lastLoop = this.situation.loop; + this.situation.loop = absPosInt; + } else { + this.absPos = this.situation.loops; + this.pos = 1; // The -1 here is because we don't want to toggle reversed when all the loops have been completed + + lastLoop = this.situation.loop - 1; + this.situation.loop = this.situation.loops; + } + + if (this.situation.reversing) { + // Toggle reversed if an odd number of loops as occured since the last call of step + this.situation.reversed = this.situation.reversed != Boolean((this.situation.loop - lastLoop) % 2); + } + } else { + // If there are no loop, the absolute position must not be above 1 + this.absPos = Math.min(this.absPos, 1); + this.pos = this.absPos; + } // while the absolute position can be below 0, the position must not be below 0 + + + if (this.pos < 0) this.pos = 0; + if (this.situation.reversed) this.pos = 1 - this.pos; // apply easing + + var eased = this.situation.ease(this.pos); // call once-callbacks + + for (var i in this.situation.once) { + if (i > this.lastPos && i <= eased) { + this.situation.once[i].call(this.target(), this.pos, eased); + delete this.situation.once[i]; + } + } // fire during callback with position, eased position and current situation as parameter + + + if (this.active) this.target().fire('during', { + pos: this.pos, + eased: eased, + fx: this, + situation: this.situation + }); // the user may call stop or finish in the during callback + // so make sure that we still have a valid situation + + if (!this.situation) { + return this; + } // apply the actual animation to every property + + + this.eachAt(); // do final code when situation is finished + + if (this.pos == 1 && !this.situation.reversed || this.situation.reversed && this.pos == 0) { + // stop animation callback + this.stopAnimFrame(); // fire finished callback with current situation as parameter + + this.target().fire('finished', { + fx: this, + situation: this.situation + }); + + if (!this.situations.length) { + this.target().fire('allfinished'); // Recheck the length since the user may call animate in the afterAll callback + + if (!this.situations.length) { + this.target().off('.fx'); // there shouldnt be any binding left, but to make sure... + + this.active = false; + } + } // start next animation + + + if (this.active) this.dequeue();else this.clearCurrent(); + } else if (!this.paused && this.active) { + // we continue animating when we are not at the end + this.startAnimFrame(); + } // save last eased position for once callback triggering + + + this.lastPos = eased; + return this; + }, + // calculates the step for every property and calls block with it + eachAt: function eachAt() { + var i, + len, + at, + self = this, + target = this.target(), + s = this.situation; // apply animations which can be called trough a method + + for (i in s.animations) { + at = [].concat(s.animations[i]).map(function (el) { + return typeof el !== 'string' && el.at ? el.at(s.ease(self.pos), self.pos) : el; + }); + target[i].apply(target, at); + } // apply animation which has to be applied with attr() + + + for (i in s.attrs) { + at = [i].concat(s.attrs[i]).map(function (el) { + return typeof el !== 'string' && el.at ? el.at(s.ease(self.pos), self.pos) : el; + }); + target.attr.apply(target, at); + } // apply animation which has to be applied with style() + + + for (i in s.styles) { + at = [i].concat(s.styles[i]).map(function (el) { + return typeof el !== 'string' && el.at ? el.at(s.ease(self.pos), self.pos) : el; + }); + target.style.apply(target, at); + } // animate initialTransformation which has to be chained + + + if (s.transforms.length) { + // get initial initialTransformation + at = s.initialTransformation; + + for (i = 0, len = s.transforms.length; i < len; i++) { + // get next transformation in chain + var a = s.transforms[i]; // multiply matrix directly + + if (a instanceof SVG.Matrix) { + if (a.relative) { + at = at.multiply(new SVG.Matrix().morph(a).at(s.ease(this.pos))); + } else { + at = at.morph(a).at(s.ease(this.pos)); + } + + continue; + } // when transformation is absolute we have to reset the needed transformation first + + + if (!a.relative) { + a.undo(at.extract()); + } // and reapply it after + + + at = at.multiply(a.at(s.ease(this.pos))); + } // set new matrix on element + + + target.matrix(at); + } + + return this; + }, + // adds an once-callback which is called at a specific position and never again + once: function once(pos, fn, isEased) { + var c = this.last(); + if (!isEased) pos = c.ease(pos); + c.once[pos] = fn; + return this; + }, + _callStart: function _callStart() { + setTimeout(function () { + this.start(); + }.bind(this), 0); + return this; + } + }, + parent: SVG.Element, + // Add method to parent elements + construct: { + // Get fx module or create a new one, then animate with given duration and ease + animate: function animate(o, ease, delay) { + return (this.fx || (this.fx = new SVG.FX(this))).animate(o, ease, delay); + }, + delay: function delay(_delay2) { + return (this.fx || (this.fx = new SVG.FX(this))).delay(_delay2); + }, + stop: function stop(jumpToEnd, clearQueue) { + if (this.fx) { + this.fx.stop(jumpToEnd, clearQueue); + } + + return this; + }, + finish: function finish() { + if (this.fx) { + this.fx.finish(); + } + + return this; + }, + // Pause current animation + pause: function pause() { + if (this.fx) { + this.fx.pause(); + } + + return this; + }, + // Play paused current animation + play: function play() { + if (this.fx) { + this.fx.play(); + } + + return this; + }, + // Set/Get the speed of the animations + speed: function speed(_speed2) { + if (this.fx) { + if (_speed2 == null) { + return this.fx.speed(); + } else { + this.fx.speed(_speed2); + } + } + + return this; + } + } + }); // MorphObj is used whenever no morphable object is given + + SVG.MorphObj = SVG.invent({ + create: function create(from, to) { + // prepare color for morphing + if (SVG.Color.isColor(to)) return new SVG.Color(from).morph(to); // check if we have a list of values + + if (SVG.regex.delimiter.test(from)) { + // prepare path for morphing + if (SVG.regex.pathLetters.test(from)) return new SVG.PathArray(from).morph(to); // prepare value list for morphing + else return new SVG.Array(from).morph(to); + } // prepare number for morphing + + + if (SVG.regex.numberAndUnit.test(to)) return new SVG.Number(from).morph(to); // prepare for plain morphing + + this.value = from; + this.destination = to; + }, + extend: { + at: function at(pos, real) { + return real < 1 ? this.value : this.destination; + }, + valueOf: function valueOf() { + return this.value; + } + } + }); + SVG.extend(SVG.FX, { + // Add animatable attributes + attr: function attr(a, v, relative) { + // apply attributes individually + if (_typeof(a) === 'object') { + for (var key in a) { + this.attr(key, a[key]); + } + } else { + this.add(a, v, 'attrs'); + } + + return this; + }, + // Add animatable styles + style: function style(s, v) { + if (_typeof(s) === 'object') { + for (var key in s) { + this.style(key, s[key]); + } + } else { + this.add(s, v, 'styles'); + } + + return this; + }, + // Animatable x-axis + x: function x(_x2, relative) { + if (this.target() instanceof SVG.G) { + this.transform({ + x: _x2 + }, relative); + return this; + } + + var num = new SVG.Number(_x2); + num.relative = relative; + return this.add('x', num); + }, + // Animatable y-axis + y: function y(_y2, relative) { + if (this.target() instanceof SVG.G) { + this.transform({ + y: _y2 + }, relative); + return this; + } + + var num = new SVG.Number(_y2); + num.relative = relative; + return this.add('y', num); + }, + // Animatable center x-axis + cx: function cx(x) { + return this.add('cx', new SVG.Number(x)); + }, + // Animatable center y-axis + cy: function cy(y) { + return this.add('cy', new SVG.Number(y)); + }, + // Add animatable move + move: function move(x, y) { + return this.x(x).y(y); + }, + // Add animatable center + center: function center(x, y) { + return this.cx(x).cy(y); + }, + // Add animatable size + size: function size(width, height) { + if (this.target() instanceof SVG.Text) { + // animate font size for Text elements + this.attr('font-size', width); + } else { + // animate bbox based size for all other elements + var box; + + if (!width || !height) { + box = this.target().bbox(); + } + + if (!width) { + width = box.width / box.height * height; + } + + if (!height) { + height = box.height / box.width * width; + } + + this.add('width', new SVG.Number(width)).add('height', new SVG.Number(height)); + } + + return this; + }, + // Add animatable width + width: function width(_width2) { + return this.add('width', new SVG.Number(_width2)); + }, + // Add animatable height + height: function height(_height2) { + return this.add('height', new SVG.Number(_height2)); + }, + // Add animatable plot + plot: function plot(a, b, c, d) { + // Lines can be plotted with 4 arguments + if (arguments.length == 4) { + return this.plot([a, b, c, d]); + } + + return this.add('plot', new (this.target().morphArray)(a)); + }, + // Add leading method + leading: function leading(value) { + return this.target().leading ? this.add('leading', new SVG.Number(value)) : this; + }, + // Add animatable viewbox + viewbox: function viewbox(x, y, width, height) { + if (this.target() instanceof SVG.Container) { + this.add('viewbox', new SVG.ViewBox(x, y, width, height)); + } + + return this; + }, + update: function update(o) { + if (this.target() instanceof SVG.Stop) { + if (typeof o === 'number' || o instanceof SVG.Number) { + return this.update({ + offset: arguments[0], + color: arguments[1], + opacity: arguments[2] + }); + } + + if (o.opacity != null) this.attr('stop-opacity', o.opacity); + if (o.color != null) this.attr('stop-color', o.color); + if (o.offset != null) this.attr('offset', o.offset); + } + + return this; + } + }); + SVG.Box = SVG.invent({ + create: function create(x, y, width, height) { + if (_typeof(x) === 'object' && !(x instanceof SVG.Element)) { + // chromes getBoundingClientRect has no x and y property + return SVG.Box.call(this, x.left != null ? x.left : x.x, x.top != null ? x.top : x.y, x.width, x.height); + } else if (arguments.length == 4) { + this.x = x; + this.y = y; + this.width = width; + this.height = height; + } // add center, right, bottom... + + + fullBox(this); + }, + extend: { + // Merge rect box with another, return a new instance + merge: function merge(box) { + var b = new this.constructor(); // merge boxes + + b.x = Math.min(this.x, box.x); + b.y = Math.min(this.y, box.y); + b.width = Math.max(this.x + this.width, box.x + box.width) - b.x; + b.height = Math.max(this.y + this.height, box.y + box.height) - b.y; + return fullBox(b); + }, + transform: function transform(m) { + var xMin = Infinity, + xMax = -Infinity, + yMin = Infinity, + yMax = -Infinity, + bbox; + var pts = [new SVG.Point(this.x, this.y), new SVG.Point(this.x2, this.y), new SVG.Point(this.x, this.y2), new SVG.Point(this.x2, this.y2)]; + pts.forEach(function (p) { + p = p.transform(m); + xMin = Math.min(xMin, p.x); + xMax = Math.max(xMax, p.x); + yMin = Math.min(yMin, p.y); + yMax = Math.max(yMax, p.y); + }); + bbox = new this.constructor(); + bbox.x = xMin; + bbox.width = xMax - xMin; + bbox.y = yMin; + bbox.height = yMax - yMin; + fullBox(bbox); + return bbox; + } + } + }); + SVG.BBox = SVG.invent({ + // Initialize + create: function create(element) { + SVG.Box.apply(this, [].slice.call(arguments)); // get values if element is given + + if (element instanceof SVG.Element) { + var box; // yes this is ugly, but Firefox can be a pain when it comes to elements that are not yet rendered + + try { + if (!document.documentElement.contains) { + // This is IE - it does not support contains() for top-level SVGs + var topParent = element.node; + + while (topParent.parentNode) { + topParent = topParent.parentNode; + } + + if (topParent != document) throw new Error('Element not in the dom'); + } // the element is NOT in the dom, throw error + // disabling the check below which fixes issue #76 + // if (!document.documentElement.contains(element.node)) throw new Exception('Element not in the dom') + // find native bbox + + + box = element.node.getBBox(); + } catch (e) { + if (element instanceof SVG.Shape) { + if (!SVG.parser.draw) { + // fixes apexcharts/vue-apexcharts #14 + SVG.prepare(); + } + + var clone = element.clone(SVG.parser.draw.instance).show(); + box = clone.node.getBBox(); + clone.remove(); + } else { + box = { + x: element.node.clientLeft, + y: element.node.clientTop, + width: element.node.clientWidth, + height: element.node.clientHeight + }; + } + } + + SVG.Box.call(this, box); + } + }, + // Define ancestor + inherit: SVG.Box, + // Define Parent + parent: SVG.Element, + // Constructor + construct: { + // Get bounding box + bbox: function bbox() { + return new SVG.BBox(this); + } + } + }); + SVG.BBox.prototype.constructor = SVG.BBox; + SVG.extend(SVG.Element, { + tbox: function tbox() { + console.warn('Use of TBox is deprecated and mapped to RBox. Use .rbox() instead.'); + return this.rbox(this.doc()); + } + }); + SVG.RBox = SVG.invent({ + // Initialize + create: function create(element) { + SVG.Box.apply(this, [].slice.call(arguments)); + + if (element instanceof SVG.Element) { + SVG.Box.call(this, element.node.getBoundingClientRect()); + } + }, + inherit: SVG.Box, + // define Parent + parent: SVG.Element, + extend: { + addOffset: function addOffset() { + // offset by window scroll position, because getBoundingClientRect changes when window is scrolled + this.x += window.pageXOffset; + this.y += window.pageYOffset; + return this; + } + }, + // Constructor + construct: { + // Get rect box + rbox: function rbox(el) { + if (el) return new SVG.RBox(this).transform(el.screenCTM().inverse()); + return new SVG.RBox(this).addOffset(); + } + } + }); + SVG.RBox.prototype.constructor = SVG.RBox; + SVG.Matrix = SVG.invent({ + // Initialize + create: function create(source) { + var i, + base = arrayToMatrix([1, 0, 0, 1, 0, 0]); // ensure source as object + + source = source instanceof SVG.Element ? source.matrixify() : typeof source === 'string' ? arrayToMatrix(source.split(SVG.regex.delimiter).map(parseFloat)) : arguments.length == 6 ? arrayToMatrix([].slice.call(arguments)) : Array.isArray(source) ? arrayToMatrix(source) : _typeof(source) === 'object' ? source : base; // merge source + + for (i = abcdef.length - 1; i >= 0; --i) { + this[abcdef[i]] = source[abcdef[i]] != null ? source[abcdef[i]] : base[abcdef[i]]; + } + }, + // Add methods + extend: { + // Extract individual transformations + extract: function extract() { + // find delta transform points + var px = deltaTransformPoint(this, 0, 1), + py = deltaTransformPoint(this, 1, 0), + skewX = 180 / Math.PI * Math.atan2(px.y, px.x) - 90; + return { + // translation + x: this.e, + y: this.f, + transformedX: (this.e * Math.cos(skewX * Math.PI / 180) + this.f * Math.sin(skewX * Math.PI / 180)) / Math.sqrt(this.a * this.a + this.b * this.b), + transformedY: (this.f * Math.cos(skewX * Math.PI / 180) + this.e * Math.sin(-skewX * Math.PI / 180)) / Math.sqrt(this.c * this.c + this.d * this.d), + // skew + skewX: -skewX, + skewY: 180 / Math.PI * Math.atan2(py.y, py.x), + // scale + scaleX: Math.sqrt(this.a * this.a + this.b * this.b), + scaleY: Math.sqrt(this.c * this.c + this.d * this.d), + // rotation + rotation: skewX, + a: this.a, + b: this.b, + c: this.c, + d: this.d, + e: this.e, + f: this.f, + matrix: new SVG.Matrix(this) + }; + }, + // Clone matrix + clone: function clone() { + return new SVG.Matrix(this); + }, + // Morph one matrix into another + morph: function morph(matrix) { + // store new destination + this.destination = new SVG.Matrix(matrix); + return this; + }, + // Get morphed matrix at a given position + at: function at(pos) { + // make sure a destination is defined + if (!this.destination) return this; // calculate morphed matrix at a given position + + var matrix = new SVG.Matrix({ + a: this.a + (this.destination.a - this.a) * pos, + b: this.b + (this.destination.b - this.b) * pos, + c: this.c + (this.destination.c - this.c) * pos, + d: this.d + (this.destination.d - this.d) * pos, + e: this.e + (this.destination.e - this.e) * pos, + f: this.f + (this.destination.f - this.f) * pos + }); + return matrix; + }, + // Multiplies by given matrix + multiply: function multiply(matrix) { + return new SVG.Matrix(this.native().multiply(parseMatrix(matrix).native())); + }, + // Inverses matrix + inverse: function inverse() { + return new SVG.Matrix(this.native().inverse()); + }, + // Translate matrix + translate: function translate(x, y) { + return new SVG.Matrix(this.native().translate(x || 0, y || 0)); + }, + // Scale matrix + scale: function scale(x, y, cx, cy) { + // support uniformal scale + if (arguments.length == 1) { + y = x; + } else if (arguments.length == 3) { + cy = cx; + cx = y; + y = x; + } + + return this.around(cx, cy, new SVG.Matrix(x, 0, 0, y, 0, 0)); + }, + // Rotate matrix + rotate: function rotate(r, cx, cy) { + // convert degrees to radians + r = SVG.utils.radians(r); + return this.around(cx, cy, new SVG.Matrix(Math.cos(r), Math.sin(r), -Math.sin(r), Math.cos(r), 0, 0)); + }, + // Flip matrix on x or y, at a given offset + flip: function flip(a, o) { + return a == 'x' ? this.scale(-1, 1, o, 0) : a == 'y' ? this.scale(1, -1, 0, o) : this.scale(-1, -1, a, o != null ? o : a); + }, + // Skew + skew: function skew(x, y, cx, cy) { + // support uniformal skew + if (arguments.length == 1) { + y = x; + } else if (arguments.length == 3) { + cy = cx; + cx = y; + y = x; + } // convert degrees to radians + + + x = SVG.utils.radians(x); + y = SVG.utils.radians(y); + return this.around(cx, cy, new SVG.Matrix(1, Math.tan(y), Math.tan(x), 1, 0, 0)); + }, + // SkewX + skewX: function skewX(x, cx, cy) { + return this.skew(x, 0, cx, cy); + }, + // SkewY + skewY: function skewY(y, cx, cy) { + return this.skew(0, y, cx, cy); + }, + // Transform around a center point + around: function around(cx, cy, matrix) { + return this.multiply(new SVG.Matrix(1, 0, 0, 1, cx || 0, cy || 0)).multiply(matrix).multiply(new SVG.Matrix(1, 0, 0, 1, -cx || 0, -cy || 0)); + }, + // Convert to native SVGMatrix + native: function native() { + // create new matrix + var matrix = SVG.parser.native.createSVGMatrix(); // update with current values + + for (var i = abcdef.length - 1; i >= 0; i--) { + matrix[abcdef[i]] = this[abcdef[i]]; + } + + return matrix; + }, + // Convert matrix to string + toString: function toString() { + // Construct the matrix directly, avoid values that are too small + return 'matrix(' + float32String(this.a) + ',' + float32String(this.b) + ',' + float32String(this.c) + ',' + float32String(this.d) + ',' + float32String(this.e) + ',' + float32String(this.f) + ')'; + } + }, + // Define parent + parent: SVG.Element, + // Add parent method + construct: { + // Get current matrix + ctm: function ctm() { + return new SVG.Matrix(this.node.getCTM()); + }, + // Get current screen matrix + screenCTM: function screenCTM() { + /* https://bugzilla.mozilla.org/show_bug.cgi?id=1344537 + This is needed because FF does not return the transformation matrix + for the inner coordinate system when getScreenCTM() is called on nested svgs. + However all other Browsers do that */ + if (this instanceof SVG.Nested) { + var rect = this.rect(1, 1); + var m = rect.node.getScreenCTM(); + rect.remove(); + return new SVG.Matrix(m); + } + + return new SVG.Matrix(this.node.getScreenCTM()); + } + } + }); + SVG.Point = SVG.invent({ + // Initialize + create: function create(x, y) { + var source, + base = { + x: 0, + y: 0 // ensure source as object + + }; + source = Array.isArray(x) ? { + x: x[0], + y: x[1] + } : _typeof(x) === 'object' ? { + x: x.x, + y: x.y + } : x != null ? { + x: x, + y: y != null ? y : x + } : base; // If y has no value, then x is used has its value + // merge source + + this.x = source.x; + this.y = source.y; + }, + // Add methods + extend: { + // Clone point + clone: function clone() { + return new SVG.Point(this); + }, + // Morph one point into another + morph: function morph(x, y) { + // store new destination + this.destination = new SVG.Point(x, y); + return this; + }, + // Get morphed point at a given position + at: function at(pos) { + // make sure a destination is defined + if (!this.destination) return this; // calculate morphed matrix at a given position + + var point = new SVG.Point({ + x: this.x + (this.destination.x - this.x) * pos, + y: this.y + (this.destination.y - this.y) * pos + }); + return point; + }, + // Convert to native SVGPoint + native: function native() { + // create new point + var point = SVG.parser.native.createSVGPoint(); // update with current values + + point.x = this.x; + point.y = this.y; + return point; + }, + // transform point with matrix + transform: function transform(matrix) { + return new SVG.Point(this.native().matrixTransform(matrix.native())); + } + } + }); + SVG.extend(SVG.Element, { + // Get point + point: function point(x, y) { + return new SVG.Point(x, y).transform(this.screenCTM().inverse()); + } + }); + SVG.extend(SVG.Element, { + // Set svg element attribute + attr: function attr(a, v, n) { + // act as full getter + if (a == null) { + // get an object of attributes + a = {}; + v = this.node.attributes; + + for (n = v.length - 1; n >= 0; n--) { + a[v[n].nodeName] = SVG.regex.isNumber.test(v[n].nodeValue) ? parseFloat(v[n].nodeValue) : v[n].nodeValue; + } + + return a; + } else if (_typeof(a) === 'object') { + // apply every attribute individually if an object is passed + for (v in a) { + this.attr(v, a[v]); + } + } else if (v === null) { + // remove value + this.node.removeAttribute(a); + } else if (v == null) { + // act as a getter if the first and only argument is not an object + v = this.node.getAttribute(a); + return v == null ? SVG.defaults.attrs[a] : SVG.regex.isNumber.test(v) ? parseFloat(v) : v; + } else { + // BUG FIX: some browsers will render a stroke if a color is given even though stroke width is 0 + if (a == 'stroke-width') { + this.attr('stroke', parseFloat(v) > 0 ? this._stroke : null); + } else if (a == 'stroke') { + this._stroke = v; + } // convert image fill and stroke to patterns + + + if (a == 'fill' || a == 'stroke') { + if (SVG.regex.isImage.test(v)) { + v = this.doc().defs().image(v, 0, 0); + } + + if (v instanceof SVG.Image) { + v = this.doc().defs().pattern(0, 0, function () { + this.add(v); + }); + } + } // ensure correct numeric values (also accepts NaN and Infinity) + + + if (typeof v === 'number') { + v = new SVG.Number(v); + } // ensure full hex color + else if (SVG.Color.isColor(v)) { + v = new SVG.Color(v); + } // parse array values + else if (Array.isArray(v)) { + v = new SVG.Array(v); + } // if the passed attribute is leading... + + + if (a == 'leading') { + // ... call the leading method instead + if (this.leading) { + this.leading(v); + } + } else { + // set given attribute on node + typeof n === 'string' ? this.node.setAttributeNS(n, a, v.toString()) : this.node.setAttribute(a, v.toString()); + } // rebuild if required + + + if (this.rebuild && (a == 'font-size' || a == 'x')) { + this.rebuild(a, v); + } + } + + return this; + } + }); + SVG.extend(SVG.Element, { + // Add transformations + transform: function transform(o, relative) { + // get target in case of the fx module, otherwise reference this + var target = this, + matrix, + bbox; // act as a getter + + if (_typeof(o) !== 'object') { + // get current matrix + matrix = new SVG.Matrix(target).extract(); + return typeof o === 'string' ? matrix[o] : matrix; + } // get current matrix + + + matrix = new SVG.Matrix(target); // ensure relative flag + + relative = !!relative || !!o.relative; // act on matrix + + if (o.a != null) { + matrix = relative // relative + ? matrix.multiply(new SVG.Matrix(o)) // absolute + : new SVG.Matrix(o); // act on rotation + } else if (o.rotation != null) { + // ensure centre point + ensureCentre(o, target); // apply transformation + + matrix = relative // relative + ? matrix.rotate(o.rotation, o.cx, o.cy) // absolute + : matrix.rotate(o.rotation - matrix.extract().rotation, o.cx, o.cy); // act on scale + } else if (o.scale != null || o.scaleX != null || o.scaleY != null) { + // ensure centre point + ensureCentre(o, target); // ensure scale values on both axes + + o.scaleX = o.scale != null ? o.scale : o.scaleX != null ? o.scaleX : 1; + o.scaleY = o.scale != null ? o.scale : o.scaleY != null ? o.scaleY : 1; + + if (!relative) { + // absolute; multiply inversed values + var e = matrix.extract(); + o.scaleX = o.scaleX * 1 / e.scaleX; + o.scaleY = o.scaleY * 1 / e.scaleY; + } + + matrix = matrix.scale(o.scaleX, o.scaleY, o.cx, o.cy); // act on skew + } else if (o.skew != null || o.skewX != null || o.skewY != null) { + // ensure centre point + ensureCentre(o, target); // ensure skew values on both axes + + o.skewX = o.skew != null ? o.skew : o.skewX != null ? o.skewX : 0; + o.skewY = o.skew != null ? o.skew : o.skewY != null ? o.skewY : 0; + + if (!relative) { + // absolute; reset skew values + var e = matrix.extract(); + matrix = matrix.multiply(new SVG.Matrix().skew(e.skewX, e.skewY, o.cx, o.cy).inverse()); + } + + matrix = matrix.skew(o.skewX, o.skewY, o.cx, o.cy); // act on flip + } else if (o.flip) { + if (o.flip == 'x' || o.flip == 'y') { + o.offset = o.offset == null ? target.bbox()['c' + o.flip] : o.offset; + } else { + if (o.offset == null) { + bbox = target.bbox(); + o.flip = bbox.cx; + o.offset = bbox.cy; + } else { + o.flip = o.offset; + } + } + + matrix = new SVG.Matrix().flip(o.flip, o.offset); // act on translate + } else if (o.x != null || o.y != null) { + if (relative) { + // relative + matrix = matrix.translate(o.x, o.y); + } else { + // absolute + if (o.x != null) matrix.e = o.x; + if (o.y != null) matrix.f = o.y; + } + } + + return this.attr('transform', matrix); + } + }); + SVG.extend(SVG.FX, { + transform: function transform(o, relative) { + // get target in case of the fx module, otherwise reference this + var target = this.target(), + matrix, + bbox; // act as a getter + + if (_typeof(o) !== 'object') { + // get current matrix + matrix = new SVG.Matrix(target).extract(); + return typeof o === 'string' ? matrix[o] : matrix; + } // ensure relative flag + + + relative = !!relative || !!o.relative; // act on matrix + + if (o.a != null) { + matrix = new SVG.Matrix(o); // act on rotation + } else if (o.rotation != null) { + // ensure centre point + ensureCentre(o, target); // apply transformation + + matrix = new SVG.Rotate(o.rotation, o.cx, o.cy); // act on scale + } else if (o.scale != null || o.scaleX != null || o.scaleY != null) { + // ensure centre point + ensureCentre(o, target); // ensure scale values on both axes + + o.scaleX = o.scale != null ? o.scale : o.scaleX != null ? o.scaleX : 1; + o.scaleY = o.scale != null ? o.scale : o.scaleY != null ? o.scaleY : 1; + matrix = new SVG.Scale(o.scaleX, o.scaleY, o.cx, o.cy); // act on skew + } else if (o.skewX != null || o.skewY != null) { + // ensure centre point + ensureCentre(o, target); // ensure skew values on both axes + + o.skewX = o.skewX != null ? o.skewX : 0; + o.skewY = o.skewY != null ? o.skewY : 0; + matrix = new SVG.Skew(o.skewX, o.skewY, o.cx, o.cy); // act on flip + } else if (o.flip) { + if (o.flip == 'x' || o.flip == 'y') { + o.offset = o.offset == null ? target.bbox()['c' + o.flip] : o.offset; + } else { + if (o.offset == null) { + bbox = target.bbox(); + o.flip = bbox.cx; + o.offset = bbox.cy; + } else { + o.flip = o.offset; + } + } + + matrix = new SVG.Matrix().flip(o.flip, o.offset); // act on translate + } else if (o.x != null || o.y != null) { + matrix = new SVG.Translate(o.x, o.y); + } + + if (!matrix) return this; + matrix.relative = relative; + this.last().transforms.push(matrix); + return this._callStart(); + } + }); + SVG.extend(SVG.Element, { + // Reset all transformations + untransform: function untransform() { + return this.attr('transform', null); + }, + // merge the whole transformation chain into one matrix and returns it + matrixify: function matrixify() { + var matrix = (this.attr('transform') || ''). // split transformations + split(SVG.regex.transforms).slice(0, -1).map(function (str) { + // generate key => value pairs + var kv = str.trim().split('('); + return [kv[0], kv[1].split(SVG.regex.delimiter).map(function (str) { + return parseFloat(str); + })]; + }) // merge every transformation into one matrix + .reduce(function (matrix, transform) { + if (transform[0] == 'matrix') return matrix.multiply(arrayToMatrix(transform[1])); + return matrix[transform[0]].apply(matrix, transform[1]); + }, new SVG.Matrix()); + return matrix; + }, + // add an element to another parent without changing the visual representation on the screen + toParent: function toParent(parent) { + if (this == parent) return this; + var ctm = this.screenCTM(); + var pCtm = parent.screenCTM().inverse(); + this.addTo(parent).untransform().transform(pCtm.multiply(ctm)); + return this; + }, + // same as above with parent equals root-svg + toDoc: function toDoc() { + return this.toParent(this.doc()); + } + }); + SVG.Transformation = SVG.invent({ + create: function create(source, inversed) { + if (arguments.length > 1 && typeof inversed !== 'boolean') { + return this.constructor.call(this, [].slice.call(arguments)); + } + + if (Array.isArray(source)) { + for (var i = 0, len = this.arguments.length; i < len; ++i) { + this[this.arguments[i]] = source[i]; + } + } else if (_typeof(source) === 'object') { + for (var i = 0, len = this.arguments.length; i < len; ++i) { + this[this.arguments[i]] = source[this.arguments[i]]; + } + } + + this.inversed = false; + + if (inversed === true) { + this.inversed = true; + } + }, + extend: { + arguments: [], + method: '', + at: function at(pos) { + var params = []; + + for (var i = 0, len = this.arguments.length; i < len; ++i) { + params.push(this[this.arguments[i]]); + } + + var m = this._undo || new SVG.Matrix(); + m = new SVG.Matrix().morph(SVG.Matrix.prototype[this.method].apply(m, params)).at(pos); + return this.inversed ? m.inverse() : m; + }, + undo: function undo(o) { + for (var i = 0, len = this.arguments.length; i < len; ++i) { + o[this.arguments[i]] = typeof this[this.arguments[i]] === 'undefined' ? 0 : o[this.arguments[i]]; + } // The method SVG.Matrix.extract which was used before calling this + // method to obtain a value for the parameter o doesn't return a cx and + // a cy so we use the ones that were provided to this object at its creation + + + o.cx = this.cx; + o.cy = this.cy; + this._undo = new SVG[capitalize(this.method)](o, true).at(1); + return this; + } + } + }); + SVG.Translate = SVG.invent({ + parent: SVG.Matrix, + inherit: SVG.Transformation, + create: function create(source, inversed) { + this.constructor.apply(this, [].slice.call(arguments)); + }, + extend: { + arguments: ['transformedX', 'transformedY'], + method: 'translate' + } + }); + SVG.Rotate = SVG.invent({ + parent: SVG.Matrix, + inherit: SVG.Transformation, + create: function create(source, inversed) { + this.constructor.apply(this, [].slice.call(arguments)); + }, + extend: { + arguments: ['rotation', 'cx', 'cy'], + method: 'rotate', + at: function at(pos) { + var m = new SVG.Matrix().rotate(new SVG.Number().morph(this.rotation - (this._undo ? this._undo.rotation : 0)).at(pos), this.cx, this.cy); + return this.inversed ? m.inverse() : m; + }, + undo: function undo(o) { + this._undo = o; + return this; + } + } + }); + SVG.Scale = SVG.invent({ + parent: SVG.Matrix, + inherit: SVG.Transformation, + create: function create(source, inversed) { + this.constructor.apply(this, [].slice.call(arguments)); + }, + extend: { + arguments: ['scaleX', 'scaleY', 'cx', 'cy'], + method: 'scale' + } + }); + SVG.Skew = SVG.invent({ + parent: SVG.Matrix, + inherit: SVG.Transformation, + create: function create(source, inversed) { + this.constructor.apply(this, [].slice.call(arguments)); + }, + extend: { + arguments: ['skewX', 'skewY', 'cx', 'cy'], + method: 'skew' + } + }); + SVG.extend(SVG.Element, { + // Dynamic style generator + style: function style(s, v) { + if (arguments.length == 0) { + // get full style + return this.node.style.cssText || ''; + } else if (arguments.length < 2) { + // apply every style individually if an object is passed + if (_typeof(s) === 'object') { + for (v in s) { + this.style(v, s[v]); + } + } else if (SVG.regex.isCss.test(s)) { + // parse css string + s = s.split(/\s*;\s*/) // filter out suffix ; and stuff like ;; + .filter(function (e) { + return !!e; + }).map(function (e) { + return e.split(/\s*:\s*/); + }); // apply every definition individually + + while (v = s.pop()) { + this.style(v[0], v[1]); + } + } else { + // act as a getter if the first and only argument is not an object + return this.node.style[camelCase(s)]; + } + } else { + this.node.style[camelCase(s)] = v === null || SVG.regex.isBlank.test(v) ? '' : v; + } + + return this; + } + }); + SVG.Parent = SVG.invent({ + // Initialize node + create: function create(element) { + this.constructor.call(this, element); + }, + // Inherit from + inherit: SVG.Element, + // Add class methods + extend: { + // Returns all child elements + children: function children() { + return SVG.utils.map(SVG.utils.filterSVGElements(this.node.childNodes), function (node) { + return SVG.adopt(node); + }); + }, + // Add given element at a position + add: function add(element, i) { + if (i == null) { + this.node.appendChild(element.node); + } else if (element.node != this.node.childNodes[i]) { + this.node.insertBefore(element.node, this.node.childNodes[i]); + } + + return this; + }, + // Basically does the same as `add()` but returns the added element instead + put: function put(element, i) { + this.add(element, i); + return element; + }, + // Checks if the given element is a child + has: function has(element) { + return this.index(element) >= 0; + }, + // Gets index of given element + index: function index(element) { + return [].slice.call(this.node.childNodes).indexOf(element.node); + }, + // Get a element at the given index + get: function get(i) { + return SVG.adopt(this.node.childNodes[i]); + }, + // Get first child + first: function first() { + return this.get(0); + }, + // Get the last child + last: function last() { + return this.get(this.node.childNodes.length - 1); + }, + // Iterates over all children and invokes a given block + each: function each(block, deep) { + var i, + il, + children = this.children(); + + for (i = 0, il = children.length; i < il; i++) { + if (children[i] instanceof SVG.Element) { + block.apply(children[i], [i, children]); + } + + if (deep && children[i] instanceof SVG.Container) { + children[i].each(block, deep); + } + } + + return this; + }, + // Remove a given child + removeElement: function removeElement(element) { + this.node.removeChild(element.node); + return this; + }, + // Remove all elements in this container + clear: function clear() { + // remove children + while (this.node.hasChildNodes()) { + this.node.removeChild(this.node.lastChild); + } // remove defs reference + + + delete this._defs; + return this; + }, + // Get defs + defs: function defs() { + return this.doc().defs(); + } + } + }); + SVG.extend(SVG.Parent, { + ungroup: function ungroup(parent, depth) { + if (depth === 0 || this instanceof SVG.Defs || this.node == SVG.parser.draw) return this; + parent = parent || (this instanceof SVG.Doc ? this : this.parent(SVG.Parent)); + depth = depth || Infinity; + this.each(function () { + if (this instanceof SVG.Defs) return this; + if (this instanceof SVG.Parent) return this.ungroup(parent, depth - 1); + return this.toParent(parent); + }); + this.node.firstChild || this.remove(); + return this; + }, + flatten: function flatten(parent, depth) { + return this.ungroup(parent, depth); + } + }); + SVG.Container = SVG.invent({ + // Initialize node + create: function create(element) { + this.constructor.call(this, element); + }, + // Inherit from + inherit: SVG.Parent + }); + SVG.ViewBox = SVG.invent({ + create: function create(source) { + var base = [0, 0, 0, 0]; + var x, + y, + width, + height, + box, + view, + we, + he, + wm = 1, + // width multiplier + hm = 1, + // height multiplier + reg = /[+-]?(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?/gi; + + if (source instanceof SVG.Element) { + we = source; + he = source; + view = (source.attr('viewBox') || '').match(reg); + box = source.bbox; // get dimensions of current node + + width = new SVG.Number(source.width()); + height = new SVG.Number(source.height()); // find nearest non-percentual dimensions + + while (width.unit == '%') { + wm *= width.value; + width = new SVG.Number(we instanceof SVG.Doc ? we.parent().offsetWidth : we.parent().width()); + we = we.parent(); + } + + while (height.unit == '%') { + hm *= height.value; + height = new SVG.Number(he instanceof SVG.Doc ? he.parent().offsetHeight : he.parent().height()); + he = he.parent(); + } // ensure defaults + + + this.x = 0; + this.y = 0; + this.width = width * wm; + this.height = height * hm; + this.zoom = 1; + + if (view) { + // get width and height from viewbox + x = parseFloat(view[0]); + y = parseFloat(view[1]); + width = parseFloat(view[2]); + height = parseFloat(view[3]); // calculate zoom accoring to viewbox + + this.zoom = this.width / this.height > width / height ? this.height / height : this.width / width; // calculate real pixel dimensions on parent SVG.Doc element + + this.x = x; + this.y = y; + this.width = width; + this.height = height; + } + } else { + // ensure source as object + source = typeof source === 'string' ? source.match(reg).map(function (el) { + return parseFloat(el); + }) : Array.isArray(source) ? source : _typeof(source) === 'object' ? [source.x, source.y, source.width, source.height] : arguments.length == 4 ? [].slice.call(arguments) : base; + this.x = source[0]; + this.y = source[1]; + this.width = source[2]; + this.height = source[3]; + } + }, + extend: { + toString: function toString() { + return this.x + ' ' + this.y + ' ' + this.width + ' ' + this.height; + }, + morph: function morph(x, y, width, height) { + this.destination = new SVG.ViewBox(x, y, width, height); + return this; + }, + at: function at(pos) { + if (!this.destination) return this; + return new SVG.ViewBox([this.x + (this.destination.x - this.x) * pos, this.y + (this.destination.y - this.y) * pos, this.width + (this.destination.width - this.width) * pos, this.height + (this.destination.height - this.height) * pos]); + } + }, + // Define parent + parent: SVG.Container, + // Add parent method + construct: { + // get/set viewbox + viewbox: function viewbox(x, y, width, height) { + if (arguments.length == 0) // act as a getter if there are no arguments + { + return new SVG.ViewBox(this); + } // otherwise act as a setter + + + return this.attr('viewBox', new SVG.ViewBox(x, y, width, height)); + } + } + }) // Add events to elements + ; + ['click', 'dblclick', 'mousedown', 'mouseup', 'mouseover', 'mouseout', 'mousemove', // , 'mouseenter' -> not supported by IE + // , 'mouseleave' -> not supported by IE + 'touchstart', 'touchmove', 'touchleave', 'touchend', 'touchcancel'].forEach(function (event) { + // add event to SVG.Element + SVG.Element.prototype[event] = function (f) { + // bind event to element rather than element node + SVG.on(this.node, event, f); + return this; + }; + }); // Initialize listeners stack + + SVG.listeners = []; + SVG.handlerMap = []; + SVG.listenerId = 0; // Add event binder in the SVG namespace + + SVG.on = function (node, event, listener, binding, options) { + // create listener, get object-index + var l = listener.bind(binding || node.instance || node), + index = (SVG.handlerMap.indexOf(node) + 1 || SVG.handlerMap.push(node)) - 1, + ev = event.split('.')[0], + ns = event.split('.')[1] || '*'; // ensure valid object + + SVG.listeners[index] = SVG.listeners[index] || {}; + SVG.listeners[index][ev] = SVG.listeners[index][ev] || {}; + SVG.listeners[index][ev][ns] = SVG.listeners[index][ev][ns] || {}; + + if (!listener._svgjsListenerId) { + listener._svgjsListenerId = ++SVG.listenerId; + } // reference listener + + + SVG.listeners[index][ev][ns][listener._svgjsListenerId] = l; // add listener + + node.addEventListener(ev, l, options || false); + }; // Add event unbinder in the SVG namespace + + + SVG.off = function (node, event, listener) { + var index = SVG.handlerMap.indexOf(node), + ev = event && event.split('.')[0], + ns = event && event.split('.')[1], + namespace = ''; + if (index == -1) return; + + if (listener) { + if (typeof listener === 'function') listener = listener._svgjsListenerId; + if (!listener) return; // remove listener reference + + if (SVG.listeners[index][ev] && SVG.listeners[index][ev][ns || '*']) { + // remove listener + node.removeEventListener(ev, SVG.listeners[index][ev][ns || '*'][listener], false); + delete SVG.listeners[index][ev][ns || '*'][listener]; + } + } else if (ns && ev) { + // remove all listeners for a namespaced event + if (SVG.listeners[index][ev] && SVG.listeners[index][ev][ns]) { + for (listener in SVG.listeners[index][ev][ns]) { + SVG.off(node, [ev, ns].join('.'), listener); + } + + delete SVG.listeners[index][ev][ns]; + } + } else if (ns) { + // remove all listeners for a specific namespace + for (event in SVG.listeners[index]) { + for (namespace in SVG.listeners[index][event]) { + if (ns === namespace) { + SVG.off(node, [event, ns].join('.')); + } + } + } + } else if (ev) { + // remove all listeners for the event + if (SVG.listeners[index][ev]) { + for (namespace in SVG.listeners[index][ev]) { + SVG.off(node, [ev, namespace].join('.')); + } + + delete SVG.listeners[index][ev]; + } + } else { + // remove all listeners on a given node + for (event in SVG.listeners[index]) { + SVG.off(node, event); + } + + delete SVG.listeners[index]; + delete SVG.handlerMap[index]; + } + }; // + + + SVG.extend(SVG.Element, { + // Bind given event to listener + on: function on(event, listener, binding, options) { + SVG.on(this.node, event, listener, binding, options); + return this; + }, + // Unbind event from listener + off: function off(event, listener) { + SVG.off(this.node, event, listener); + return this; + }, + // Fire given event + fire: function fire(event, data) { + // Dispatch event + if (event instanceof window.Event) { + this.node.dispatchEvent(event); + } else { + this.node.dispatchEvent(event = new SVG.CustomEvent(event, { + detail: data, + cancelable: true + })); + } + + this._event = event; + return this; + }, + event: function event() { + return this._event; + } + }); + SVG.Defs = SVG.invent({ + // Initialize node + create: 'defs', + // Inherit from + inherit: SVG.Container + }); + SVG.G = SVG.invent({ + // Initialize node + create: 'g', + // Inherit from + inherit: SVG.Container, + // Add class methods + extend: { + // Move over x-axis + x: function x(_x3) { + return _x3 == null ? this.transform('x') : this.transform({ + x: _x3 - this.x() + }, true); + }, + // Move over y-axis + y: function y(_y3) { + return _y3 == null ? this.transform('y') : this.transform({ + y: _y3 - this.y() + }, true); + }, + // Move by center over x-axis + cx: function cx(x) { + return x == null ? this.gbox().cx : this.x(x - this.gbox().width / 2); + }, + // Move by center over y-axis + cy: function cy(y) { + return y == null ? this.gbox().cy : this.y(y - this.gbox().height / 2); + }, + gbox: function gbox() { + var bbox = this.bbox(), + trans = this.transform(); + bbox.x += trans.x; + bbox.x2 += trans.x; + bbox.cx += trans.x; + bbox.y += trans.y; + bbox.y2 += trans.y; + bbox.cy += trans.y; + return bbox; + } + }, + // Add parent method + construct: { + // Create a group element + group: function group() { + return this.put(new SVG.G()); + } + } + }); + SVG.Doc = SVG.invent({ + // Initialize node + create: function create(element) { + if (element) { + // ensure the presence of a dom element + element = typeof element === 'string' ? document.getElementById(element) : element; // If the target is an svg element, use that element as the main wrapper. + // This allows svg.js to work with svg documents as well. + + if (element.nodeName == 'svg') { + this.constructor.call(this, element); + } else { + this.constructor.call(this, SVG.create('svg')); + element.appendChild(this.node); + this.size('100%', '100%'); + } // set svg element attributes and ensure defs node + + + this.namespace().defs(); + } + }, + // Inherit from + inherit: SVG.Container, + // Add class methods + extend: { + // Add namespaces + namespace: function namespace() { + return this.attr({ + xmlns: SVG.ns, + version: '1.1' + }).attr('xmlns:xlink', SVG.xlink, SVG.xmlns).attr('xmlns:svgjs', SVG.svgjs, SVG.xmlns); + }, + // Creates and returns defs element + defs: function defs() { + if (!this._defs) { + var defs; // Find or create a defs element in this instance + + if (defs = this.node.getElementsByTagName('defs')[0]) { + this._defs = SVG.adopt(defs); + } else { + this._defs = new SVG.Defs(); + } // Make sure the defs node is at the end of the stack + + + this.node.appendChild(this._defs.node); + } + + return this._defs; + }, + // custom parent method + parent: function parent() { + if (!this.node.parentNode || this.node.parentNode.nodeName == '#document') return null; + return this.node.parentNode; + }, + // Fix for possible sub-pixel offset. See: + // https://bugzilla.mozilla.org/show_bug.cgi?id=608812 + spof: function spof() { + var pos = this.node.getScreenCTM(); + + if (pos) { + this.style('left', -pos.e % 1 + 'px').style('top', -pos.f % 1 + 'px'); + } + + return this; + }, + // Removes the doc from the DOM + remove: function remove() { + if (this.parent()) { + this.parent().removeChild(this.node); + } + + return this; + }, + clear: function clear() { + // remove children + while (this.node.hasChildNodes()) { + this.node.removeChild(this.node.lastChild); + } // remove defs reference + + + delete this._defs; // add back parser + + if (SVG.parser.draw && !SVG.parser.draw.parentNode) { + this.node.appendChild(SVG.parser.draw); + } + + return this; + }, + clone: function clone(parent) { + // write dom data to the dom so the clone can pickup the data + this.writeDataToDom(); // get reference to node + + var node = this.node; // clone element and assign new id + + var clone = assignNewId(node.cloneNode(true)); // insert the clone in the given parent or after myself + + if (parent) { + (parent.node || parent).appendChild(clone.node); + } else { + node.parentNode.insertBefore(clone.node, node.nextSibling); + } + + return clone; + } + } + }); // ### This module adds backward / forward functionality to elements. + // + + SVG.extend(SVG.Element, { + // Get all siblings, including myself + siblings: function siblings() { + return this.parent().children(); + }, + // Get the curent position siblings + position: function position() { + return this.parent().index(this); + }, + // Get the next element (will return null if there is none) + next: function next() { + return this.siblings()[this.position() + 1]; + }, + // Get the next element (will return null if there is none) + previous: function previous() { + return this.siblings()[this.position() - 1]; + }, + // Send given element one step forward + forward: function forward() { + var i = this.position() + 1, + p = this.parent(); // move node one step forward + + p.removeElement(this).add(this, i); // make sure defs node is always at the top + + if (p instanceof SVG.Doc) { + p.node.appendChild(p.defs().node); + } + + return this; + }, + // Send given element one step backward + backward: function backward() { + var i = this.position(); + + if (i > 0) { + this.parent().removeElement(this).add(this, i - 1); + } + + return this; + }, + // Send given element all the way to the front + front: function front() { + var p = this.parent(); // Move node forward + + p.node.appendChild(this.node); // Make sure defs node is always at the top + + if (p instanceof SVG.Doc) { + p.node.appendChild(p.defs().node); + } + + return this; + }, + // Send given element all the way to the back + back: function back() { + if (this.position() > 0) { + this.parent().removeElement(this).add(this, 0); + } + + return this; + }, + // Inserts a given element before the targeted element + before: function before(element) { + element.remove(); + var i = this.position(); + this.parent().add(element, i); + return this; + }, + // Insters a given element after the targeted element + after: function after(element) { + element.remove(); + var i = this.position(); + this.parent().add(element, i + 1); + return this; + } + }); + SVG.Mask = SVG.invent({ + // Initialize node + create: function create() { + this.constructor.call(this, SVG.create('mask')); // keep references to masked elements + + this.targets = []; + }, + // Inherit from + inherit: SVG.Container, + // Add class methods + extend: { + // Unmask all masked elements and remove itself + remove: function remove() { + // unmask all targets + for (var i = this.targets.length - 1; i >= 0; i--) { + if (this.targets[i]) { + this.targets[i].unmask(); + } + } + + this.targets = []; // remove mask from parent + + SVG.Element.prototype.remove.call(this); + return this; + } + }, + // Add parent method + construct: { + // Create masking element + mask: function mask() { + return this.defs().put(new SVG.Mask()); + } + } + }); + SVG.extend(SVG.Element, { + // Distribute mask to svg element + maskWith: function maskWith(element) { + // use given mask or create a new one + this.masker = element instanceof SVG.Mask ? element : this.parent().mask().add(element); // store reverence on self in mask + + this.masker.targets.push(this); // apply mask + + return this.attr('mask', 'url("#' + this.masker.attr('id') + '")'); + }, + // Unmask element + unmask: function unmask() { + delete this.masker; + return this.attr('mask', null); + } + }); + SVG.ClipPath = SVG.invent({ + // Initialize node + create: function create() { + this.constructor.call(this, SVG.create('clipPath')); // keep references to clipped elements + + this.targets = []; + }, + // Inherit from + inherit: SVG.Container, + // Add class methods + extend: { + // Unclip all clipped elements and remove itself + remove: function remove() { + // unclip all targets + for (var i = this.targets.length - 1; i >= 0; i--) { + if (this.targets[i]) { + this.targets[i].unclip(); + } + } + + this.targets = []; // remove clipPath from parent + + this.parent().removeElement(this); + return this; + } + }, + // Add parent method + construct: { + // Create clipping element + clip: function clip() { + return this.defs().put(new SVG.ClipPath()); + } + } + }); // + + SVG.extend(SVG.Element, { + // Distribute clipPath to svg element + clipWith: function clipWith(element) { + // use given clip or create a new one + this.clipper = element instanceof SVG.ClipPath ? element : this.parent().clip().add(element); // store reverence on self in mask + + this.clipper.targets.push(this); // apply mask + + return this.attr('clip-path', 'url("#' + this.clipper.attr('id') + '")'); + }, + // Unclip element + unclip: function unclip() { + delete this.clipper; + return this.attr('clip-path', null); + } + }); + SVG.Gradient = SVG.invent({ + // Initialize node + create: function create(type) { + this.constructor.call(this, SVG.create(type + 'Gradient')); // store type + + this.type = type; + }, + // Inherit from + inherit: SVG.Container, + // Add class methods + extend: { + // Add a color stop + at: function at(offset, color, opacity) { + return this.put(new SVG.Stop()).update(offset, color, opacity); + }, + // Update gradient + update: function update(block) { + // remove all stops + this.clear(); // invoke passed block + + if (typeof block === 'function') { + block.call(this, this); + } + + return this; + }, + // Return the fill id + fill: function fill() { + return 'url(#' + this.id() + ')'; + }, + // Alias string convertion to fill + toString: function toString() { + return this.fill(); + }, + // custom attr to handle transform + attr: function attr(a, b, c) { + if (a == 'transform') a = 'gradientTransform'; + return SVG.Container.prototype.attr.call(this, a, b, c); + } + }, + // Add parent method + construct: { + // Create gradient element in defs + gradient: function gradient(type, block) { + return this.defs().gradient(type, block); + } + } + }); // Add animatable methods to both gradient and fx module + + SVG.extend(SVG.Gradient, SVG.FX, { + // From position + from: function from(x, y) { + return (this._target || this).type == 'radial' ? this.attr({ + fx: new SVG.Number(x), + fy: new SVG.Number(y) + }) : this.attr({ + x1: new SVG.Number(x), + y1: new SVG.Number(y) + }); + }, + // To position + to: function to(x, y) { + return (this._target || this).type == 'radial' ? this.attr({ + cx: new SVG.Number(x), + cy: new SVG.Number(y) + }) : this.attr({ + x2: new SVG.Number(x), + y2: new SVG.Number(y) + }); + } + }); // Base gradient generation + + SVG.extend(SVG.Defs, { + // define gradient + gradient: function gradient(type, block) { + return this.put(new SVG.Gradient(type)).update(block); + } + }); + SVG.Stop = SVG.invent({ + // Initialize node + create: 'stop', + // Inherit from + inherit: SVG.Element, + // Add class methods + extend: { + // add color stops + update: function update(o) { + if (typeof o === 'number' || o instanceof SVG.Number) { + o = { + offset: arguments[0], + color: arguments[1], + opacity: arguments[2] + }; + } // set attributes + + + if (o.opacity != null) this.attr('stop-opacity', o.opacity); + if (o.color != null) this.attr('stop-color', o.color); + if (o.offset != null) this.attr('offset', new SVG.Number(o.offset)); + return this; + } + } + }); + SVG.Pattern = SVG.invent({ + // Initialize node + create: 'pattern', + // Inherit from + inherit: SVG.Container, + // Add class methods + extend: { + // Return the fill id + fill: function fill() { + return 'url(#' + this.id() + ')'; + }, + // Update pattern by rebuilding + update: function update(block) { + // remove content + this.clear(); // invoke passed block + + if (typeof block === 'function') { + block.call(this, this); + } + + return this; + }, + // Alias string convertion to fill + toString: function toString() { + return this.fill(); + }, + // custom attr to handle transform + attr: function attr(a, b, c) { + if (a == 'transform') a = 'patternTransform'; + return SVG.Container.prototype.attr.call(this, a, b, c); + } + }, + // Add parent method + construct: { + // Create pattern element in defs + pattern: function pattern(width, height, block) { + return this.defs().pattern(width, height, block); + } + } + }); + SVG.extend(SVG.Defs, { + // Define gradient + pattern: function pattern(width, height, block) { + return this.put(new SVG.Pattern()).update(block).attr({ + x: 0, + y: 0, + width: width, + height: height, + patternUnits: 'userSpaceOnUse' + }); + } + }); + SVG.Shape = SVG.invent({ + // Initialize node + create: function create(element) { + this.constructor.call(this, element); + }, + // Inherit from + inherit: SVG.Element + }); + SVG.Bare = SVG.invent({ + // Initialize + create: function create(element, inherit) { + // construct element + this.constructor.call(this, SVG.create(element)); // inherit custom methods + + if (inherit) { + for (var method in inherit.prototype) { + if (typeof inherit.prototype[method] === 'function') { + this[method] = inherit.prototype[method]; + } + } + } + }, + // Inherit from + inherit: SVG.Element, + // Add methods + extend: { + // Insert some plain text + words: function words(text) { + // remove contents + while (this.node.hasChildNodes()) { + this.node.removeChild(this.node.lastChild); + } // create text node + + + this.node.appendChild(document.createTextNode(text)); + return this; + } + } + }); + SVG.extend(SVG.Parent, { + // Create an element that is not described by SVG.js + element: function element(_element, inherit) { + return this.put(new SVG.Bare(_element, inherit)); + } + }); + SVG.Symbol = SVG.invent({ + // Initialize node + create: 'symbol', + // Inherit from + inherit: SVG.Container, + construct: { + // create symbol + symbol: function symbol() { + return this.put(new SVG.Symbol()); + } + } + }); + SVG.Use = SVG.invent({ + // Initialize node + create: 'use', + // Inherit from + inherit: SVG.Shape, + // Add class methods + extend: { + // Use element as a reference + element: function element(_element2, file) { + // Set lined element + return this.attr('href', (file || '') + '#' + _element2, SVG.xlink); + } + }, + // Add parent method + construct: { + // Create a use element + use: function use(element, file) { + return this.put(new SVG.Use()).element(element, file); + } + } + }); + SVG.Rect = SVG.invent({ + // Initialize node + create: 'rect', + // Inherit from + inherit: SVG.Shape, + // Add parent method + construct: { + // Create a rect element + rect: function rect(width, height) { + return this.put(new SVG.Rect()).size(width, height); + } + } + }); + SVG.Circle = SVG.invent({ + // Initialize node + create: 'circle', + // Inherit from + inherit: SVG.Shape, + // Add parent method + construct: { + // Create circle element, based on ellipse + circle: function circle(size) { + return this.put(new SVG.Circle()).rx(new SVG.Number(size).divide(2)).move(0, 0); + } + } + }); + SVG.extend(SVG.Circle, SVG.FX, { + // Radius x value + rx: function rx(_rx) { + return this.attr('r', _rx); + }, + // Alias radius x value + ry: function ry(_ry) { + return this.rx(_ry); + } + }); + SVG.Ellipse = SVG.invent({ + // Initialize node + create: 'ellipse', + // Inherit from + inherit: SVG.Shape, + // Add parent method + construct: { + // Create an ellipse + ellipse: function ellipse(width, height) { + return this.put(new SVG.Ellipse()).size(width, height).move(0, 0); + } + } + }); + SVG.extend(SVG.Ellipse, SVG.Rect, SVG.FX, { + // Radius x value + rx: function rx(_rx2) { + return this.attr('rx', _rx2); + }, + // Radius y value + ry: function ry(_ry2) { + return this.attr('ry', _ry2); + } + }); // Add common method + + SVG.extend(SVG.Circle, SVG.Ellipse, { + // Move over x-axis + x: function x(_x4) { + return _x4 == null ? this.cx() - this.rx() : this.cx(_x4 + this.rx()); + }, + // Move over y-axis + y: function y(_y4) { + return _y4 == null ? this.cy() - this.ry() : this.cy(_y4 + this.ry()); + }, + // Move by center over x-axis + cx: function cx(x) { + return x == null ? this.attr('cx') : this.attr('cx', x); + }, + // Move by center over y-axis + cy: function cy(y) { + return y == null ? this.attr('cy') : this.attr('cy', y); + }, + // Set width of element + width: function width(_width3) { + return _width3 == null ? this.rx() * 2 : this.rx(new SVG.Number(_width3).divide(2)); + }, + // Set height of element + height: function height(_height3) { + return _height3 == null ? this.ry() * 2 : this.ry(new SVG.Number(_height3).divide(2)); + }, + // Custom size function + size: function size(width, height) { + var p = proportionalSize(this, width, height); + return this.rx(new SVG.Number(p.width).divide(2)).ry(new SVG.Number(p.height).divide(2)); + } + }); + SVG.Line = SVG.invent({ + // Initialize node + create: 'line', + // Inherit from + inherit: SVG.Shape, + // Add class methods + extend: { + // Get array + array: function array() { + return new SVG.PointArray([[this.attr('x1'), this.attr('y1')], [this.attr('x2'), this.attr('y2')]]); + }, + // Overwrite native plot() method + plot: function plot(x1, y1, x2, y2) { + if (x1 == null) { + return this.array(); + } else if (typeof y1 !== 'undefined') { + x1 = { + x1: x1, + y1: y1, + x2: x2, + y2: y2 + }; + } else { + x1 = new SVG.PointArray(x1).toLine(); + } + + return this.attr(x1); + }, + // Move by left top corner + move: function move(x, y) { + return this.attr(this.array().move(x, y).toLine()); + }, + // Set element size to given width and height + size: function size(width, height) { + var p = proportionalSize(this, width, height); + return this.attr(this.array().size(p.width, p.height).toLine()); + } + }, + // Add parent method + construct: { + // Create a line element + line: function line(x1, y1, x2, y2) { + // make sure plot is called as a setter + // x1 is not necessarily a number, it can also be an array, a string and a SVG.PointArray + return SVG.Line.prototype.plot.apply(this.put(new SVG.Line()), x1 != null ? [x1, y1, x2, y2] : [0, 0, 0, 0]); + } + } + }); + SVG.Polyline = SVG.invent({ + // Initialize node + create: 'polyline', + // Inherit from + inherit: SVG.Shape, + // Add parent method + construct: { + // Create a wrapped polyline element + polyline: function polyline(p) { + // make sure plot is called as a setter + return this.put(new SVG.Polyline()).plot(p || new SVG.PointArray()); + } + } + }); + SVG.Polygon = SVG.invent({ + // Initialize node + create: 'polygon', + // Inherit from + inherit: SVG.Shape, + // Add parent method + construct: { + // Create a wrapped polygon element + polygon: function polygon(p) { + // make sure plot is called as a setter + return this.put(new SVG.Polygon()).plot(p || new SVG.PointArray()); + } + } + }); // Add polygon-specific functions + + SVG.extend(SVG.Polyline, SVG.Polygon, { + // Get array + array: function array() { + return this._array || (this._array = new SVG.PointArray(this.attr('points'))); + }, + // Plot new path + plot: function plot(p) { + return p == null ? this.array() : this.clear().attr('points', typeof p === 'string' ? p : this._array = new SVG.PointArray(p)); + }, + // Clear array cache + clear: function clear() { + delete this._array; + return this; + }, + // Move by left top corner + move: function move(x, y) { + return this.attr('points', this.array().move(x, y)); + }, + // Set element size to given width and height + size: function size(width, height) { + var p = proportionalSize(this, width, height); + return this.attr('points', this.array().size(p.width, p.height)); + } + }); // unify all point to point elements + + SVG.extend(SVG.Line, SVG.Polyline, SVG.Polygon, { + // Define morphable array + morphArray: SVG.PointArray, + // Move by left top corner over x-axis + x: function x(_x5) { + return _x5 == null ? this.bbox().x : this.move(_x5, this.bbox().y); + }, + // Move by left top corner over y-axis + y: function y(_y5) { + return _y5 == null ? this.bbox().y : this.move(this.bbox().x, _y5); + }, + // Set width of element + width: function width(_width4) { + var b = this.bbox(); + return _width4 == null ? b.width : this.size(_width4, b.height); + }, + // Set height of element + height: function height(_height4) { + var b = this.bbox(); + return _height4 == null ? b.height : this.size(b.width, _height4); + } + }); + SVG.Path = SVG.invent({ + // Initialize node + create: 'path', + // Inherit from + inherit: SVG.Shape, + // Add class methods + extend: { + // Define morphable array + morphArray: SVG.PathArray, + // Get array + array: function array() { + return this._array || (this._array = new SVG.PathArray(this.attr('d'))); + }, + // Plot new path + plot: function plot(d) { + return d == null ? this.array() : this.clear().attr('d', typeof d === 'string' ? d : this._array = new SVG.PathArray(d)); + }, + // Clear array cache + clear: function clear() { + delete this._array; + return this; + }, + // Move by left top corner + move: function move(x, y) { + return this.attr('d', this.array().move(x, y)); + }, + // Move by left top corner over x-axis + x: function x(_x6) { + return _x6 == null ? this.bbox().x : this.move(_x6, this.bbox().y); + }, + // Move by left top corner over y-axis + y: function y(_y6) { + return _y6 == null ? this.bbox().y : this.move(this.bbox().x, _y6); + }, + // Set element size to given width and height + size: function size(width, height) { + var p = proportionalSize(this, width, height); + return this.attr('d', this.array().size(p.width, p.height)); + }, + // Set width of element + width: function width(_width5) { + return _width5 == null ? this.bbox().width : this.size(_width5, this.bbox().height); + }, + // Set height of element + height: function height(_height5) { + return _height5 == null ? this.bbox().height : this.size(this.bbox().width, _height5); + } + }, + // Add parent method + construct: { + // Create a wrapped path element + path: function path(d) { + // make sure plot is called as a setter + return this.put(new SVG.Path()).plot(d || new SVG.PathArray()); + } + } + }); + SVG.Image = SVG.invent({ + // Initialize node + create: 'image', + // Inherit from + inherit: SVG.Shape, + // Add class methods + extend: { + // (re)load image + load: function load(url) { + if (!url) return this; + var self = this, + img = new window.Image(); // preload image + + SVG.on(img, 'load', function () { + SVG.off(img); + var p = self.parent(SVG.Pattern); + if (p === null) return; // ensure image size + + if (self.width() == 0 && self.height() == 0) { + self.size(img.width, img.height); + } // ensure pattern size if not set + + + if (p && p.width() == 0 && p.height() == 0) { + p.size(self.width(), self.height()); + } // callback + + + if (typeof self._loaded === 'function') { + self._loaded.call(self, { + width: img.width, + height: img.height, + ratio: img.width / img.height, + url: url + }); + } + }); + SVG.on(img, 'error', function (e) { + SVG.off(img); + + if (typeof self._error === 'function') { + self._error.call(self, e); + } + }); + return this.attr('href', img.src = this.src = url, SVG.xlink); + }, + // Add loaded callback + loaded: function loaded(_loaded) { + this._loaded = _loaded; + return this; + }, + error: function error(_error) { + this._error = _error; + return this; + } + }, + // Add parent method + construct: { + // create image element, load image and set its size + image: function image(source, width, height) { + return this.put(new SVG.Image()).load(source).size(width || 0, height || width || 0); + } + } + }); + SVG.Text = SVG.invent({ + // Initialize node + create: function create() { + this.constructor.call(this, SVG.create('text')); + this.dom.leading = new SVG.Number(1.3); // store leading value for rebuilding + + this._rebuild = true; // enable automatic updating of dy values + + this._build = false; // disable build mode for adding multiple lines + // set default font + + this.attr('font-family', SVG.defaults.attrs['font-family']); + }, + // Inherit from + inherit: SVG.Shape, + // Add class methods + extend: { + // Move over x-axis + x: function x(_x7) { + // act as getter + if (_x7 == null) { + return this.attr('x'); + } + + return this.attr('x', _x7); + }, + // Move over y-axis + y: function y(_y7) { + var oy = this.attr('y'), + o = typeof oy === 'number' ? oy - this.bbox().y : 0; // act as getter + + if (_y7 == null) { + return typeof oy === 'number' ? oy - o : oy; + } + + return this.attr('y', typeof _y7.valueOf() === 'number' ? _y7 + o : _y7); + }, + // Move center over x-axis + cx: function cx(x) { + return x == null ? this.bbox().cx : this.x(x - this.bbox().width / 2); + }, + // Move center over y-axis + cy: function cy(y) { + return y == null ? this.bbox().cy : this.y(y - this.bbox().height / 2); + }, + // Set the text content + text: function text(_text) { + // act as getter + if (typeof _text === 'undefined') { + var _text = ''; + var children = this.node.childNodes; + + for (var i = 0, len = children.length; i < len; ++i) { + // add newline if its not the first child and newLined is set to true + if (i != 0 && children[i].nodeType != 3 && SVG.adopt(children[i]).dom.newLined == true) { + _text += '\n'; + } // add content of this node + + + _text += children[i].textContent; + } + + return _text; + } // remove existing content + + + this.clear().build(true); + + if (typeof _text === 'function') { + // call block + _text.call(this, this); + } else { + // store text and make sure text is not blank + _text = _text.split('\n'); // build new lines + + for (var i = 0, il = _text.length; i < il; i++) { + this.tspan(_text[i]).newLine(); + } + } // disable build mode and rebuild lines + + + return this.build(false).rebuild(); + }, + // Set font size + size: function size(_size) { + return this.attr('font-size', _size).rebuild(); + }, + // Set / get leading + leading: function leading(value) { + // act as getter + if (value == null) { + return this.dom.leading; + } // act as setter + + + this.dom.leading = new SVG.Number(value); + return this.rebuild(); + }, + // Get all the first level lines + lines: function lines() { + var node = (this.textPath && this.textPath() || this).node; // filter tspans and map them to SVG.js instances + + var lines = SVG.utils.map(SVG.utils.filterSVGElements(node.childNodes), function (el) { + return SVG.adopt(el); + }); // return an instance of SVG.set + + return new SVG.Set(lines); + }, + // Rebuild appearance type + rebuild: function rebuild(_rebuild) { + // store new rebuild flag if given + if (typeof _rebuild === 'boolean') { + this._rebuild = _rebuild; + } // define position of all lines + + + if (this._rebuild) { + var self = this, + blankLineOffset = 0, + dy = this.dom.leading * new SVG.Number(this.attr('font-size')); + this.lines().each(function () { + if (this.dom.newLined) { + if (!self.textPath()) { + this.attr('x', self.attr('x')); + } + + if (this.text() == '\n') { + blankLineOffset += dy; + } else { + this.attr('dy', dy + blankLineOffset); + blankLineOffset = 0; + } + } + }); + this.fire('rebuild'); + } + + return this; + }, + // Enable / disable build mode + build: function build(_build) { + this._build = !!_build; + return this; + }, + // overwrite method from parent to set data properly + setData: function setData(o) { + this.dom = o; + this.dom.leading = new SVG.Number(o.leading || 1.3); + return this; + } + }, + // Add parent method + construct: { + // Create text element + text: function text(_text2) { + return this.put(new SVG.Text()).text(_text2); + }, + // Create plain text element + plain: function plain(text) { + return this.put(new SVG.Text()).plain(text); + } + } + }); + SVG.Tspan = SVG.invent({ + // Initialize node + create: 'tspan', + // Inherit from + inherit: SVG.Shape, + // Add class methods + extend: { + // Set text content + text: function text(_text3) { + if (_text3 == null) return this.node.textContent + (this.dom.newLined ? '\n' : ''); + typeof _text3 === 'function' ? _text3.call(this, this) : this.plain(_text3); + return this; + }, + // Shortcut dx + dx: function dx(_dx) { + return this.attr('dx', _dx); + }, + // Shortcut dy + dy: function dy(_dy) { + return this.attr('dy', _dy); + }, + // Create new line + newLine: function newLine() { + // fetch text parent + var t = this.parent(SVG.Text); // mark new line + + this.dom.newLined = true; // apply new hy¡n + + return this.dy(t.dom.leading * t.attr('font-size')).attr('x', t.x()); + } + } + }); + SVG.extend(SVG.Text, SVG.Tspan, { + // Create plain text node + plain: function plain(text) { + // clear if build mode is disabled + if (this._build === false) { + this.clear(); + } // create text node + + + this.node.appendChild(document.createTextNode(text)); + return this; + }, + // Create a tspan + tspan: function tspan(text) { + var node = (this.textPath && this.textPath() || this).node, + tspan = new SVG.Tspan(); // clear if build mode is disabled + + if (this._build === false) { + this.clear(); + } // add new tspan + + + node.appendChild(tspan.node); + return tspan.text(text); + }, + // Clear all lines + clear: function clear() { + var node = (this.textPath && this.textPath() || this).node; // remove existing child nodes + + while (node.hasChildNodes()) { + node.removeChild(node.lastChild); + } + + return this; + }, + // Get length of text element + length: function length() { + return this.node.getComputedTextLength(); + } + }); + SVG.TextPath = SVG.invent({ + // Initialize node + create: 'textPath', + // Inherit from + inherit: SVG.Parent, + // Define parent class + parent: SVG.Text, + // Add parent method + construct: { + morphArray: SVG.PathArray, + // Create path for text to run on + path: function path(d) { + // create textPath element + var path = new SVG.TextPath(), + track = this.doc().defs().path(d); // move lines to textpath + + while (this.node.hasChildNodes()) { + path.node.appendChild(this.node.firstChild); + } // add textPath element as child node + + + this.node.appendChild(path.node); // link textPath to path and add content + + path.attr('href', '#' + track, SVG.xlink); + return this; + }, + // return the array of the path track element + array: function array() { + var track = this.track(); + return track ? track.array() : null; + }, + // Plot path if any + plot: function plot(d) { + var track = this.track(), + pathArray = null; + + if (track) { + pathArray = track.plot(d); + } + + return d == null ? pathArray : this; + }, + // Get the path track element + track: function track() { + var path = this.textPath(); + + if (path) { + return path.reference('href'); + } + }, + // Get the textPath child + textPath: function textPath() { + if (this.node.firstChild && this.node.firstChild.nodeName == 'textPath') { + return SVG.adopt(this.node.firstChild); + } + } + } + }); + SVG.Nested = SVG.invent({ + // Initialize node + create: function create() { + this.constructor.call(this, SVG.create('svg')); + this.style('overflow', 'visible'); + }, + // Inherit from + inherit: SVG.Container, + // Add parent method + construct: { + // Create nested svg document + nested: function nested() { + return this.put(new SVG.Nested()); + } + } + }); + SVG.A = SVG.invent({ + // Initialize node + create: 'a', + // Inherit from + inherit: SVG.Container, + // Add class methods + extend: { + // Link url + to: function to(url) { + return this.attr('href', url, SVG.xlink); + }, + // Link show attribute + show: function show(target) { + return this.attr('show', target, SVG.xlink); + }, + // Link target attribute + target: function target(_target2) { + return this.attr('target', _target2); + } + }, + // Add parent method + construct: { + // Create a hyperlink element + link: function link(url) { + return this.put(new SVG.A()).to(url); + } + } + }); + SVG.extend(SVG.Element, { + // Create a hyperlink element + linkTo: function linkTo(url) { + var link = new SVG.A(); + + if (typeof url === 'function') { + url.call(link, link); + } else { + link.to(url); + } + + return this.parent().put(link).put(this); + } + }); + SVG.Marker = SVG.invent({ + // Initialize node + create: 'marker', + // Inherit from + inherit: SVG.Container, + // Add class methods + extend: { + // Set width of element + width: function width(_width6) { + return this.attr('markerWidth', _width6); + }, + // Set height of element + height: function height(_height6) { + return this.attr('markerHeight', _height6); + }, + // Set marker refX and refY + ref: function ref(x, y) { + return this.attr('refX', x).attr('refY', y); + }, + // Update marker + update: function update(block) { + // remove all content + this.clear(); // invoke passed block + + if (typeof block === 'function') { + block.call(this, this); + } + + return this; + }, + // Return the fill id + toString: function toString() { + return 'url(#' + this.id() + ')'; + } + }, + // Add parent method + construct: { + marker: function marker(width, height, block) { + // Create marker element in defs + return this.defs().marker(width, height, block); + } + } + }); + SVG.extend(SVG.Defs, { + // Create marker + marker: function marker(width, height, block) { + // Set default viewbox to match the width and height, set ref to cx and cy and set orient to auto + return this.put(new SVG.Marker()).size(width, height).ref(width / 2, height / 2).viewbox(0, 0, width, height).attr('orient', 'auto').update(block); + } + }); + SVG.extend(SVG.Line, SVG.Polyline, SVG.Polygon, SVG.Path, { + // Create and attach markers + marker: function marker(_marker, width, height, block) { + var attr = ['marker']; // Build attribute name + + if (_marker != 'all') attr.push(_marker); + attr = attr.join('-'); // Set marker attribute + + _marker = arguments[1] instanceof SVG.Marker ? arguments[1] : this.doc().marker(width, height, block); + return this.attr(attr, _marker); + } + }); // Define list of available attributes for stroke and fill + + var sugar = { + stroke: ['color', 'width', 'opacity', 'linecap', 'linejoin', 'miterlimit', 'dasharray', 'dashoffset'], + fill: ['color', 'opacity', 'rule'], + prefix: function prefix(t, a) { + return a == 'color' ? t : t + '-' + a; + } // Add sugar for fill and stroke + + }; + ['fill', 'stroke'].forEach(function (m) { + var i, + extension = {}; + + extension[m] = function (o) { + if (typeof o === 'undefined') { + return this; + } + + if (typeof o === 'string' || SVG.Color.isRgb(o) || o && typeof o.fill === 'function') { + this.attr(m, o); + } else // set all attributes from sugar.fill and sugar.stroke list + { + for (i = sugar[m].length - 1; i >= 0; i--) { + if (o[sugar[m][i]] != null) { + this.attr(sugar.prefix(m, sugar[m][i]), o[sugar[m][i]]); + } + } + } + + return this; + }; + + SVG.extend(SVG.Element, SVG.FX, extension); + }); + SVG.extend(SVG.Element, SVG.FX, { + // Map rotation to transform + rotate: function rotate(d, cx, cy) { + return this.transform({ + rotation: d, + cx: cx, + cy: cy + }); + }, + // Map skew to transform + skew: function skew(x, y, cx, cy) { + return arguments.length == 1 || arguments.length == 3 ? this.transform({ + skew: x, + cx: y, + cy: cx + }) : this.transform({ + skewX: x, + skewY: y, + cx: cx, + cy: cy + }); + }, + // Map scale to transform + scale: function scale(x, y, cx, cy) { + return arguments.length == 1 || arguments.length == 3 ? this.transform({ + scale: x, + cx: y, + cy: cx + }) : this.transform({ + scaleX: x, + scaleY: y, + cx: cx, + cy: cy + }); + }, + // Map translate to transform + translate: function translate(x, y) { + return this.transform({ + x: x, + y: y + }); + }, + // Map flip to transform + flip: function flip(a, o) { + o = typeof a === 'number' ? a : o; + return this.transform({ + flip: a || 'both', + offset: o + }); + }, + // Map matrix to transform + matrix: function matrix(m) { + return this.attr('transform', new SVG.Matrix(arguments.length == 6 ? [].slice.call(arguments) : m)); + }, + // Opacity + opacity: function opacity(value) { + return this.attr('opacity', value); + }, + // Relative move over x axis + dx: function dx(x) { + return this.x(new SVG.Number(x).plus(this instanceof SVG.FX ? 0 : this.x()), true); + }, + // Relative move over y axis + dy: function dy(y) { + return this.y(new SVG.Number(y).plus(this instanceof SVG.FX ? 0 : this.y()), true); + }, + // Relative move over x and y axes + dmove: function dmove(x, y) { + return this.dx(x).dy(y); + } + }); + SVG.extend(SVG.Rect, SVG.Ellipse, SVG.Circle, SVG.Gradient, SVG.FX, { + // Add x and y radius + radius: function radius(x, y) { + var type = (this._target || this).type; + return type == 'radial' || type == 'circle' ? this.attr('r', new SVG.Number(x)) : this.rx(x).ry(y == null ? x : y); + } + }); + SVG.extend(SVG.Path, { + // Get path length + length: function length() { + return this.node.getTotalLength(); + }, + // Get point at length + pointAt: function pointAt(length) { + return this.node.getPointAtLength(length); + } + }); + SVG.extend(SVG.Parent, SVG.Text, SVG.Tspan, SVG.FX, { + // Set font + font: function font(a, v) { + if (_typeof(a) === 'object') { + for (v in a) { + this.font(v, a[v]); + } + } + + return a == 'leading' ? this.leading(v) : a == 'anchor' ? this.attr('text-anchor', v) : a == 'size' || a == 'family' || a == 'weight' || a == 'stretch' || a == 'variant' || a == 'style' ? this.attr('font-' + a, v) : this.attr(a, v); + } + }); + SVG.Set = SVG.invent({ + // Initialize + create: function create(members) { + // Set initial state + Array.isArray(members) ? this.members = members : this.clear(); + }, + // Add class methods + extend: { + // Add element to set + add: function add() { + var i, + il, + elements = [].slice.call(arguments); + + for (i = 0, il = elements.length; i < il; i++) { + this.members.push(elements[i]); + } + + return this; + }, + // Remove element from set + remove: function remove(element) { + var i = this.index(element); // remove given child + + if (i > -1) { + this.members.splice(i, 1); + } + + return this; + }, + // Iterate over all members + each: function each(block) { + for (var i = 0, il = this.members.length; i < il; i++) { + block.apply(this.members[i], [i, this.members]); + } + + return this; + }, + // Restore to defaults + clear: function clear() { + // initialize store + this.members = []; + return this; + }, + // Get the length of a set + length: function length() { + return this.members.length; + }, + // Checks if a given element is present in set + has: function has(element) { + return this.index(element) >= 0; + }, + // retuns index of given element in set + index: function index(element) { + return this.members.indexOf(element); + }, + // Get member at given index + get: function get(i) { + return this.members[i]; + }, + // Get first member + first: function first() { + return this.get(0); + }, + // Get last member + last: function last() { + return this.get(this.members.length - 1); + }, + // Default value + valueOf: function valueOf() { + return this.members; + }, + // Get the bounding box of all members included or empty box if set has no items + bbox: function bbox() { + // return an empty box of there are no members + if (this.members.length == 0) { + return new SVG.RBox(); + } // get the first rbox and update the target bbox + + + var rbox = this.members[0].rbox(this.members[0].doc()); + this.each(function () { + // user rbox for correct position and visual representation + rbox = rbox.merge(this.rbox(this.doc())); + }); + return rbox; + } + }, + // Add parent method + construct: { + // Create a new set + set: function set(members) { + return new SVG.Set(members); + } + } + }); + SVG.FX.Set = SVG.invent({ + // Initialize node + create: function create(set) { + // store reference to set + this.set = set; + } + }); // Alias methods + + SVG.Set.inherit = function () { + var m, + methods = []; // gather shape methods + + for (var m in SVG.Shape.prototype) { + if (typeof SVG.Shape.prototype[m] === 'function' && typeof SVG.Set.prototype[m] !== 'function') { + methods.push(m); + } + } // apply shape aliasses + + + methods.forEach(function (method) { + SVG.Set.prototype[method] = function () { + for (var i = 0, il = this.members.length; i < il; i++) { + if (this.members[i] && typeof this.members[i][method] === 'function') { + this.members[i][method].apply(this.members[i], arguments); + } + } + + return method == 'animate' ? this.fx || (this.fx = new SVG.FX.Set(this)) : this; + }; + }); // clear methods for the next round + + methods = []; // gather fx methods + + for (var m in SVG.FX.prototype) { + if (typeof SVG.FX.prototype[m] === 'function' && typeof SVG.FX.Set.prototype[m] !== 'function') { + methods.push(m); + } + } // apply fx aliasses + + + methods.forEach(function (method) { + SVG.FX.Set.prototype[method] = function () { + for (var i = 0, il = this.set.members.length; i < il; i++) { + this.set.members[i].fx[method].apply(this.set.members[i].fx, arguments); + } + + return this; + }; + }); + }; + + SVG.extend(SVG.Element, { + // Store data values on svg nodes + data: function data(a, v, r) { + if (_typeof(a) === 'object') { + for (v in a) { + this.data(v, a[v]); + } + } else if (arguments.length < 2) { + try { + return JSON.parse(this.attr('data-' + a)); + } catch (e) { + return this.attr('data-' + a); + } + } else { + this.attr('data-' + a, v === null ? null : r === true || typeof v === 'string' || typeof v === 'number' ? v : JSON.stringify(v)); + } + + return this; + } + }); + SVG.extend(SVG.Element, { + // Remember arbitrary data + remember: function remember(k, v) { + // remember every item in an object individually + if (_typeof(arguments[0]) === 'object') { + for (var v in k) { + this.remember(v, k[v]); + } + } // retrieve memory + else if (arguments.length == 1) { + return this.memory()[k]; + } // store memory + else { + this.memory()[k] = v; + } + + return this; + }, + // Erase a given memory + forget: function forget() { + if (arguments.length == 0) { + this._memory = {}; + } else { + for (var i = arguments.length - 1; i >= 0; i--) { + delete this.memory()[arguments[i]]; + } + } + + return this; + }, + // Initialize or return local memory object + memory: function memory() { + return this._memory || (this._memory = {}); + } + }); // Method for getting an element by id + + SVG.get = function (id) { + var node = document.getElementById(idFromReference(id) || id); + return SVG.adopt(node); + }; // Select elements by query string + + + SVG.select = function (query, parent) { + return new SVG.Set(SVG.utils.map((parent || document).querySelectorAll(query), function (node) { + return SVG.adopt(node); + })); + }; + + SVG.extend(SVG.Parent, { + // Scoped select method + select: function select(query) { + return SVG.select(query, this.node); + } + }); + + function pathRegReplace(a, b, c, d) { + return c + d.replace(SVG.regex.dots, ' .'); + } // creates deep clone of array + + + function array_clone(arr) { + var clone = arr.slice(0); + + for (var i = clone.length; i--;) { + if (Array.isArray(clone[i])) { + clone[i] = array_clone(clone[i]); + } + } + + return clone; + } // tests if a given element is instance of an object + + + function _is(el, obj) { + return el instanceof obj; + } // tests if a given selector matches an element + + + function _matches(el, selector) { + return (el.matches || el.matchesSelector || el.msMatchesSelector || el.mozMatchesSelector || el.webkitMatchesSelector || el.oMatchesSelector).call(el, selector); + } // Convert dash-separated-string to camelCase + + + function camelCase(s) { + return s.toLowerCase().replace(/-(.)/g, function (m, g) { + return g.toUpperCase(); + }); + } // Capitalize first letter of a string + + + function capitalize(s) { + return s.charAt(0).toUpperCase() + s.slice(1); + } // Ensure to six-based hex + + + function fullHex(hex) { + return hex.length == 4 ? ['#', hex.substring(1, 2), hex.substring(1, 2), hex.substring(2, 3), hex.substring(2, 3), hex.substring(3, 4), hex.substring(3, 4)].join('') : hex; + } // Component to hex value + + + function compToHex(comp) { + var hex = comp.toString(16); + return hex.length == 1 ? '0' + hex : hex; + } // Calculate proportional width and height values when necessary + + + function proportionalSize(element, width, height) { + if (width == null || height == null) { + var box = element.bbox(); + + if (width == null) { + width = box.width / box.height * height; + } else if (height == null) { + height = box.height / box.width * width; + } + } + + return { + width: width, + height: height + }; + } // Delta transform point + + + function deltaTransformPoint(matrix, x, y) { + return { + x: x * matrix.a + y * matrix.c + 0, + y: x * matrix.b + y * matrix.d + 0 + }; + } // Map matrix array to object + + + function arrayToMatrix(a) { + return { + a: a[0], + b: a[1], + c: a[2], + d: a[3], + e: a[4], + f: a[5] + }; + } // Parse matrix if required + + + function parseMatrix(matrix) { + if (!(matrix instanceof SVG.Matrix)) { + matrix = new SVG.Matrix(matrix); + } + + return matrix; + } // Add centre point to transform object + + + function ensureCentre(o, target) { + o.cx = o.cx == null ? target.bbox().cx : o.cx; + o.cy = o.cy == null ? target.bbox().cy : o.cy; + } // PathArray Helpers + + + function arrayToString(a) { + for (var i = 0, il = a.length, s = ''; i < il; i++) { + s += a[i][0]; + + if (a[i][1] != null) { + s += a[i][1]; + + if (a[i][2] != null) { + s += ' '; + s += a[i][2]; + + if (a[i][3] != null) { + s += ' '; + s += a[i][3]; + s += ' '; + s += a[i][4]; + + if (a[i][5] != null) { + s += ' '; + s += a[i][5]; + s += ' '; + s += a[i][6]; + + if (a[i][7] != null) { + s += ' '; + s += a[i][7]; + } + } + } + } + } + } + + return s + ' '; + } // Deep new id assignment + + + function assignNewId(node) { + // do the same for SVG child nodes as well + for (var i = node.childNodes.length - 1; i >= 0; i--) { + if (node.childNodes[i] instanceof window.SVGElement) { + assignNewId(node.childNodes[i]); + } + } + + return SVG.adopt(node).id(SVG.eid(node.nodeName)); + } // Add more bounding box properties + + + function fullBox(b) { + if (b.x == null) { + b.x = 0; + b.y = 0; + b.width = 0; + b.height = 0; + } + + b.w = b.width; + b.h = b.height; + b.x2 = b.x + b.width; + b.y2 = b.y + b.height; + b.cx = b.x + b.width / 2; + b.cy = b.y + b.height / 2; + return b; + } // Get id from reference string + + + function idFromReference(url) { + var m = (url || '').toString().match(SVG.regex.reference); + if (m) return m[1]; + } // If values like 1e-88 are passed, this is not a valid 32 bit float, + // but in those cases, we are so close to 0 that 0 works well! + + + function float32String(v) { + return Math.abs(v) > 1e-37 ? v : 0; + } // Create matrix array for looping + + + var abcdef = 'abcdef'.split(''); // Add CustomEvent to IE9 and IE10 + + if (typeof window.CustomEvent !== 'function') { + // Code from: https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent + var CustomEventPoly = function CustomEventPoly(event, options) { + options = options || { + bubbles: false, + cancelable: false, + detail: undefined + }; + var e = document.createEvent('CustomEvent'); + e.initCustomEvent(event, options.bubbles, options.cancelable, options.detail); + return e; + }; + + CustomEventPoly.prototype = window.Event.prototype; + SVG.CustomEvent = CustomEventPoly; + } else { + SVG.CustomEvent = window.CustomEvent; + } // requestAnimationFrame / cancelAnimationFrame Polyfill with fallback based on Paul Irish + + + (function (w) { + var lastTime = 0; + var vendors = ['moz', 'webkit']; + + for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) { + w.requestAnimationFrame = w[vendors[x] + 'RequestAnimationFrame']; + w.cancelAnimationFrame = w[vendors[x] + 'CancelAnimationFrame'] || w[vendors[x] + 'CancelRequestAnimationFrame']; + } + + w.requestAnimationFrame = w.requestAnimationFrame || function (callback) { + var currTime = new Date().getTime(); + var timeToCall = Math.max(0, 16 - (currTime - lastTime)); + var id = w.setTimeout(function () { + callback(currTime + timeToCall); + }, timeToCall); + lastTime = currTime + timeToCall; + return id; + }; + + w.cancelAnimationFrame = w.cancelAnimationFrame || w.clearTimeout; + })(window); + + return SVG; + }); + + /*! svg.filter.js - v2.0.2 - 2016-02-24 + * https://github.com/wout/svg.filter.js + * Copyright (c) 2016 Wout Fierens; Licensed MIT */ + (function() { + + // Main filter class + SVG.Filter = SVG.invent({ + create: 'filter', + inherit: SVG.Parent, + extend: { + // Static strings + source: 'SourceGraphic', + sourceAlpha: 'SourceAlpha', + background: 'BackgroundImage', + backgroundAlpha: 'BackgroundAlpha', + fill: 'FillPaint', + stroke: 'StrokePaint', + + autoSetIn: true, + // Custom put method for leaner code + put: function(element, i) { + this.add(element, i); + + if(!element.attr('in') && this.autoSetIn){ + element.attr('in',this.source); + } + if(!element.attr('result')){ + element.attr('result',element); + } + + return element + }, + // Blend effect + blend: function(in1, in2, mode) { + return this.put(new SVG.BlendEffect(in1, in2, mode)) + }, + // ColorMatrix effect + colorMatrix: function(type, values) { + return this.put(new SVG.ColorMatrixEffect(type, values)) + }, + // ConvolveMatrix effect + convolveMatrix: function(matrix) { + return this.put(new SVG.ConvolveMatrixEffect(matrix)) + }, + // ComponentTransfer effect + componentTransfer: function(components) { + return this.put(new SVG.ComponentTransferEffect(components)) + }, + // Composite effect + composite: function(in1, in2, operator) { + return this.put(new SVG.CompositeEffect(in1, in2, operator)) + }, + // Flood effect + flood: function(color, opacity) { + return this.put(new SVG.FloodEffect(color, opacity)) + }, + // Offset effect + offset: function(x, y) { + return this.put(new SVG.OffsetEffect(x,y)) + }, + // Image effect + image: function(src) { + return this.put(new SVG.ImageEffect(src)) + }, + // Merge effect + merge: function() { + //pass the array of arguments to the constructor because we dont know if the user gave us an array as the first arguemnt or wether they listed the effects in the arguments + var args = [undefined]; + for(var i in arguments) args.push(arguments[i]); + return this.put(new (SVG.MergeEffect.bind.apply(SVG.MergeEffect,args))) + }, + // Gaussian Blur effect + gaussianBlur: function(x,y) { + return this.put(new SVG.GaussianBlurEffect(x,y)) + }, + // Morphology effect + morphology: function(operator,radius){ + return this.put(new SVG.MorphologyEffect(operator,radius)) + }, + // DiffuseLighting effect + diffuseLighting: function(surfaceScale,diffuseConstant,kernelUnitLength){ + return this.put(new SVG.DiffuseLightingEffect(surfaceScale,diffuseConstant,kernelUnitLength)) + }, + // DisplacementMap effect + displacementMap: function(in1,in2,scale,xChannelSelector,yChannelSelector){ + return this.put(new SVG.DisplacementMapEffect(in1,in2,scale,xChannelSelector,yChannelSelector)) + }, + // SpecularLighting effect + specularLighting: function(surfaceScale,diffuseConstant,specularExponent,kernelUnitLength){ + return this.put(new SVG.SpecularLightingEffect(surfaceScale,diffuseConstant,specularExponent,kernelUnitLength)) + }, + // Tile effect + tile: function(){ + return this.put(new SVG.TileEffect()); + }, + // Turbulence effect + turbulence: function(baseFrequency,numOctaves,seed,stitchTiles,type){ + return this.put(new SVG.TurbulenceEffect(baseFrequency,numOctaves,seed,stitchTiles,type)) + }, + // Default string value + toString: function() { + return 'url(#' + this.attr('id') + ')' + } + } + }); + + //add .filter function + SVG.extend(SVG.Defs, { + // Define filter + filter: function(block) { + var filter = this.put(new SVG.Filter); + + /* invoke passed block */ + if (typeof block === 'function') + block.call(filter, filter); + + return filter + } + }); + SVG.extend(SVG.Container, { + // Define filter on defs + filter: function(block) { + return this.defs().filter(block) + } + }); + SVG.extend(SVG.Element, SVG.G, SVG.Nested, { + // Create filter element in defs and store reference + filter: function(block) { + this.filterer = block instanceof SVG.Element ? + block : this.doc().filter(block); + + if(this.doc() && this.filterer.doc() !== this.doc()){ + this.doc().defs().add(this.filterer); + } + + this.attr('filter', this.filterer); + + return this.filterer + }, + // Remove filter + unfilter: function(remove) { + /* also remove the filter node */ + if (this.filterer && remove === true) + this.filterer.remove(); + + /* delete reference to filterer */ + delete this.filterer; + + /* remove filter attribute */ + return this.attr('filter', null) + } + }); + + // Create SVG.Effect class + SVG.Effect = SVG.invent({ + create: function(){ + this.constructor.call(this); + }, + inherit: SVG.Element, + extend: { + // Set in attribute + in: function(effect) { + return effect == null? this.parent() && this.parent().select('[result="'+this.attr('in')+'"]').get(0) || this.attr('in') : this.attr('in', effect) + }, + // Named result + result: function(result) { + return result == null? this.attr('result') : this.attr('result',result) + }, + // Stringification + toString: function() { + return this.result() + } + } + }); + + // create class for parent effects like merge + // Inherit from SVG.Parent + SVG.ParentEffect = SVG.invent({ + create: function(){ + this.constructor.call(this); + }, + inherit: SVG.Parent, + extend: { + // Set in attribute + in: function(effect) { + return effect == null? this.parent() && this.parent().select('[result="'+this.attr('in')+'"]').get(0) || this.attr('in') : this.attr('in', effect) + }, + // Named result + result: function(result) { + return result == null? this.attr('result') : this.attr('result',result) + }, + // Stringification + toString: function() { + return this.result() + } + } + }); + + //chaining + var chainingEffects = { + // Blend effect + blend: function(in2, mode) { + return this.parent() && this.parent().blend(this, in2, mode) //pass this as the first input + }, + // ColorMatrix effect + colorMatrix: function(type, values) { + return this.parent() && this.parent().colorMatrix(type, values).in(this) + }, + // ConvolveMatrix effect + convolveMatrix: function(matrix) { + return this.parent() && this.parent().convolveMatrix(matrix).in(this) + }, + // ComponentTransfer effect + componentTransfer: function(components) { + return this.parent() && this.parent().componentTransfer(components).in(this) + }, + // Composite effect + composite: function(in2, operator) { + return this.parent() && this.parent().composite(this, in2, operator) //pass this as the first input + }, + // Flood effect + flood: function(color, opacity) { + return this.parent() && this.parent().flood(color, opacity) //this effect dont have inputs + }, + // Offset effect + offset: function(x, y) { + return this.parent() && this.parent().offset(x,y).in(this) + }, + // Image effect + image: function(src) { + return this.parent() && this.parent().image(src) //this effect dont have inputs + }, + // Merge effect + merge: function() { + return this.parent() && this.parent().merge.apply(this.parent(),[this].concat(arguments)) //pass this as the first argument + }, + // Gaussian Blur effect + gaussianBlur: function(x,y) { + return this.parent() && this.parent().gaussianBlur(x,y).in(this) + }, + // Morphology effect + morphology: function(operator,radius){ + return this.parent() && this.parent().morphology(operator,radius).in(this) + }, + // DiffuseLighting effect + diffuseLighting: function(surfaceScale,diffuseConstant,kernelUnitLength){ + return this.parent() && this.parent().diffuseLighting(surfaceScale,diffuseConstant,kernelUnitLength).in(this) + }, + // DisplacementMap effect + displacementMap: function(in2,scale,xChannelSelector,yChannelSelector){ + return this.parent() && this.parent().displacementMap(this,in2,scale,xChannelSelector,yChannelSelector) //pass this as the first input + }, + // SpecularLighting effect + specularLighting: function(surfaceScale,diffuseConstant,specularExponent,kernelUnitLength){ + return this.parent() && this.parent().specularLighting(surfaceScale,diffuseConstant,specularExponent,kernelUnitLength).in(this) + }, + // Tile effect + tile: function(){ + return this.parent() && this.parent().tile().in(this) + }, + // Turbulence effect + turbulence: function(baseFrequency,numOctaves,seed,stitchTiles,type){ + return this.parent() && this.parent().turbulence(baseFrequency,numOctaves,seed,stitchTiles,type).in(this) + } + }; + SVG.extend(SVG.Effect,chainingEffects); + SVG.extend(SVG.ParentEffect,chainingEffects); + + //crea class for child effects, like MergeNode, FuncR and lights + SVG.ChildEffect = SVG.invent({ + create: function(){ + this.constructor.call(this); + }, + inherit: SVG.Element, + extend: { + in: function(effect){ + this.attr('in',effect); + } + //dont include any "result" functions because these types of nodes dont have them + } + }); + + // Create all different effects + var effects = { + blend: function(in1,in2,mode){ + this.attr({ + in: in1, + in2: in2, + mode: mode || 'normal' + }); + }, + colorMatrix: function(type,values){ + if (type == 'matrix') + values = normaliseMatrix(values); + + this.attr({ + type: type + , values: typeof values == 'undefined' ? null : values + }); + }, + convolveMatrix: function(matrix){ + matrix = normaliseMatrix(matrix); + + this.attr({ + order: Math.sqrt(matrix.split(' ').length) + , kernelMatrix: matrix + }); + }, + composite: function(in1, in2, operator){ + this.attr({ + in: in1, + in2: in2, + operator: operator + }); + }, + flood: function(color,opacity){ + this.attr('flood-color',color); + if(opacity != null) this.attr('flood-opacity',opacity); + }, + offset: function(x,y){ + this.attr({ + dx: x, + dy: y + }); + }, + image: function(src){ + this.attr('href', src, SVG.xlink); + }, + displacementMap: function(in1,in2,scale,xChannelSelector,yChannelSelector){ + this.attr({ + in: in1, + in2: in2, + scale: scale, + xChannelSelector: xChannelSelector, + yChannelSelector: yChannelSelector + }); + }, + gaussianBlur: function(x,y){ + if(x != null || y != null) + this.attr('stdDeviation', listString(Array.prototype.slice.call(arguments))); + else + this.attr('stdDeviation', '0 0'); + }, + morphology: function(operator,radius){ + this.attr({ + operator: operator, + radius: radius + }); + }, + tile: function(){ + + }, + turbulence: function(baseFrequency,numOctaves,seed,stitchTiles,type){ + this.attr({ + numOctaves: numOctaves, + seed: seed, + stitchTiles: stitchTiles, + baseFrequency: baseFrequency, + type: type + }); + } + }; + + // Create all parent effects + var parentEffects = { + merge: function(){ + var children; + + //test to see if we have a set + if(arguments[0] instanceof SVG.Set){ + var that = this; + arguments[0].each(function(i){ + if(this instanceof SVG.MergeNode) + that.put(this); + else if(this instanceof SVG.Effect || this instanceof SVG.ParentEffect) + that.put(new SVG.MergeNode(this)); + }); + } + else{ + //if the first argument is an array use it + if(Array.isArray(arguments[0])) + children = arguments[0]; + else + children = arguments; + + for(var i = 0; i < children.length; i++){ + if(children[i] instanceof SVG.MergeNode){ + this.put(children[i]); + } + else this.put(new SVG.MergeNode(children[i])); + } + } + }, + componentTransfer: function(compontents){ + /* create rgb set */ + this.rgb = new SVG.Set + + /* create components */ + ;(['r', 'g', 'b', 'a']).forEach(function(c) { + /* create component */ + this[c] = new SVG['Func' + c.toUpperCase()]('identity'); + + /* store component in set */ + this.rgb.add(this[c]); + + /* add component node */ + this.node.appendChild(this[c].node); + }.bind(this)); //lost context in foreach + + /* set components */ + if (compontents) { + if (compontents.rgb) { + (['r', 'g', 'b']).forEach(function(c) { + this[c].attr(compontents.rgb); + }.bind(this)); + + delete compontents.rgb; + } + + /* set individual components */ + for (var c in compontents) + this[c].attr(compontents[c]); + } + }, + diffuseLighting: function(surfaceScale,diffuseConstant,kernelUnitLength){ + this.attr({ + surfaceScale: surfaceScale, + diffuseConstant: diffuseConstant, + kernelUnitLength: kernelUnitLength + }); + }, + specularLighting: function(surfaceScale,diffuseConstant,specularExponent,kernelUnitLength){ + this.attr({ + surfaceScale: surfaceScale, + diffuseConstant: diffuseConstant, + specularExponent: specularExponent, + kernelUnitLength: kernelUnitLength + }); + }, + }; + + // Create child effects like PointLight and MergeNode + var childEffects = { + distantLight: function(azimuth, elevation){ + this.attr({ + azimuth: azimuth, + elevation: elevation + }); + }, + pointLight: function(x,y,z){ + this.attr({ + x: x, + y: y, + z: z + }); + }, + spotLight: function(x,y,z,pointsAtX,pointsAtY,pointsAtZ){ + this.attr({ + x: x, + y: y, + z: z, + pointsAtX: pointsAtX, + pointsAtY: pointsAtY, + pointsAtZ: pointsAtZ + }); + }, + mergeNode: function(in1){ + this.attr('in',in1); + } + } + + // Create compontent functions + ;(['r', 'g', 'b', 'a']).forEach(function(c) { + /* create class */ + childEffects['Func' + c.toUpperCase()] = function(type) { + this.attr('type',type); + + // take diffent arguments based on the type + switch(type){ + case 'table': + this.attr('tableValues',arguments[1]); + break + case 'linear': + this.attr('slope',arguments[1]); + this.attr('intercept',arguments[2]); + break + case 'gamma': + this.attr('amplitude',arguments[1]); + this.attr('exponent',arguments[2]); + this.attr('offset',arguments[2]); + break + } + }; + }); + + //create effects + foreach(effects,function(effect,i){ + + /* capitalize name */ + var name = i.charAt(0).toUpperCase() + i.slice(1); + var proto = {}; + + /* create class */ + SVG[name + 'Effect'] = SVG.invent({ + create: function() { + //call super + this.constructor.call(this, SVG.create('fe' + name)); + + //call constructor for this effect + effect.apply(this,arguments); + + //set the result + this.result(this.attr('id') + 'Out'); + }, + inherit: SVG.Effect, + extend: proto + }); + }); + + //create parent effects + foreach(parentEffects,function(effect,i){ + + /* capitalize name */ + var name = i.charAt(0).toUpperCase() + i.slice(1); + var proto = {}; + + /* create class */ + SVG[name + 'Effect'] = SVG.invent({ + create: function() { + //call super + this.constructor.call(this, SVG.create('fe' + name)); + + //call constructor for this effect + effect.apply(this,arguments); + + //set the result + this.result(this.attr('id') + 'Out'); + }, + inherit: SVG.ParentEffect, + extend: proto + }); + }); + + //create child effects + foreach(childEffects,function(effect,i){ + + /* capitalize name */ + var name = i.charAt(0).toUpperCase() + i.slice(1); + var proto = {}; + + /* create class */ + SVG[name] = SVG.invent({ + create: function() { + //call super + this.constructor.call(this, SVG.create('fe' + name)); + + //call constructor for this effect + effect.apply(this,arguments); + }, + inherit: SVG.ChildEffect, + extend: proto + }); + }); + + // Effect-specific extensions + SVG.extend(SVG.MergeEffect,{ + in: function(effect){ + if(effect instanceof SVG.MergeNode) + this.add(effect,0); + else + this.add(new SVG.MergeNode(effect),0); + + return this + } + }); + SVG.extend(SVG.CompositeEffect,SVG.BlendEffect,SVG.DisplacementMapEffect,{ + in2: function(effect){ + return effect == null? this.parent() && this.parent().select('[result="'+this.attr('in2')+'"]').get(0) || this.attr('in2') : this.attr('in2', effect) + } + }); + + // Presets + SVG.filter = { + sepiatone: [ .343, .669, .119, 0, 0 + , .249, .626, .130, 0, 0 + , .172, .334, .111, 0, 0 + , .000, .000, .000, 1, 0 ] + }; + + // Helpers + function normaliseMatrix(matrix) { + /* convert possible array value to string */ + if (Array.isArray(matrix)) + matrix = new SVG.Array(matrix); + + /* ensure there are no leading, tailing or double spaces */ + return matrix.toString().replace(/^\s+/, '').replace(/\s+$/, '').replace(/\s+/g, ' ') + } + + function listString(list) { + if (!Array.isArray(list)) + return list + + for (var i = 0, l = list.length, s = []; i < l; i++) + s.push(list[i]); + + return s.join(' ') + } + + function foreach(){ //loops through mutiple objects + var fn = function(){}; + if(typeof arguments[arguments.length-1] == 'function'){ + fn = arguments[arguments.length-1]; + Array.prototype.splice.call(arguments,arguments.length-1,1); + } + for(var k in arguments){ + for(var i in arguments[k]){ + fn(arguments[k][i],i,arguments[k]); + } + } + } + + }).call(undefined); + + (function() { + + SVG.extend(SVG.PathArray, { + morph: function(array) { + + var startArr = this.value + , destArr = this.parse(array); + + var startOffsetM = 0 + , destOffsetM = 0; + + var startOffsetNextM = false + , destOffsetNextM = false; + + while(true){ + // stop if there is no M anymore + if(startOffsetM === false && destOffsetM === false) break + + // find the next M in path array + startOffsetNextM = findNextM(startArr, startOffsetM === false ? false : startOffsetM+1); + destOffsetNextM = findNextM( destArr, destOffsetM === false ? false : destOffsetM+1); + + // We have to add one M to the startArray + if(startOffsetM === false){ + var bbox = new SVG.PathArray(result.start).bbox(); + + // when the last block had no bounding box we simply take the first M we got + if(bbox.height == 0 || bbox.width == 0){ + startOffsetM = startArr.push(startArr[0]) - 1; + }else{ + // we take the middle of the bbox instead when we got one + startOffsetM = startArr.push( ['M', bbox.x + bbox.width/2, bbox.y + bbox.height/2 ] ) - 1; + } + } + + // We have to add one M to the destArray + if( destOffsetM === false){ + var bbox = new SVG.PathArray(result.dest).bbox(); + + if(bbox.height == 0 || bbox.width == 0){ + destOffsetM = destArr.push(destArr[0]) - 1; + }else{ + destOffsetM = destArr.push( ['M', bbox.x + bbox.width/2, bbox.y + bbox.height/2 ] ) - 1; + } + } + + // handle block from M to next M + var result = handleBlock(startArr, startOffsetM, startOffsetNextM, destArr, destOffsetM, destOffsetNextM); + + // update the arrays to their new values + startArr = startArr.slice(0, startOffsetM).concat(result.start, startOffsetNextM === false ? [] : startArr.slice(startOffsetNextM)); + destArr = destArr.slice(0, destOffsetM).concat(result.dest , destOffsetNextM === false ? [] : destArr.slice( destOffsetNextM)); + + // update offsets + startOffsetM = startOffsetNextM === false ? false : startOffsetM + result.start.length; + destOffsetM = destOffsetNextM === false ? false : destOffsetM + result.dest.length; + + } + + // copy back arrays + this.value = startArr; + this.destination = new SVG.PathArray(); + this.destination.value = destArr; + + return this + } + }); + + + + // sorry for the long declaration + // slices out one block (from M to M) and syncronize it so the types and length match + function handleBlock(startArr, startOffsetM, startOffsetNextM, destArr, destOffsetM, destOffsetNextM, undefined){ + + // slice out the block we need + var startArrTemp = startArr.slice(startOffsetM, startOffsetNextM || undefined) + , destArrTemp = destArr.slice( destOffsetM, destOffsetNextM || undefined); + + var i = 0 + , posStart = {pos:[0,0], start:[0,0]} + , posDest = {pos:[0,0], start:[0,0]}; + + do{ + + // convert shorthand types to long form + startArrTemp[i] = simplyfy.call(posStart, startArrTemp[i]); + destArrTemp[i] = simplyfy.call(posDest , destArrTemp[i]); + + // check if both shape types match + // 2 elliptical arc curve commands ('A'), are considered different if the + // flags (large-arc-flag, sweep-flag) don't match + if(startArrTemp[i][0] != destArrTemp[i][0] || startArrTemp[i][0] == 'M' || + (startArrTemp[i][0] == 'A' && + (startArrTemp[i][4] != destArrTemp[i][4] || startArrTemp[i][5] != destArrTemp[i][5]) + ) + ) { + + // if not, convert shapes to beziere + Array.prototype.splice.apply(startArrTemp, [i, 1].concat(toBeziere.call(posStart, startArrTemp[i]))); + Array.prototype.splice.apply(destArrTemp, [i, 1].concat(toBeziere.call(posDest, destArrTemp[i]))); + + } else { + + // only update positions otherwise + startArrTemp[i] = setPosAndReflection.call(posStart, startArrTemp[i]); + destArrTemp[i] = setPosAndReflection.call(posDest , destArrTemp[i]); + + } + + // we are at the end at both arrays. stop here + if(++i == startArrTemp.length && i == destArrTemp.length) break + + // destArray is longer. Add one element + if(i == startArrTemp.length){ + startArrTemp.push([ + 'C', + posStart.pos[0], + posStart.pos[1], + posStart.pos[0], + posStart.pos[1], + posStart.pos[0], + posStart.pos[1], + ]); + } + + // startArr is longer. Add one element + if(i == destArrTemp.length){ + destArrTemp.push([ + 'C', + posDest.pos[0], + posDest.pos[1], + posDest.pos[0], + posDest.pos[1], + posDest.pos[0], + posDest.pos[1] + ]); + } + + + }while(true) + + // return the updated block + return {start:startArrTemp, dest:destArrTemp} + } + + // converts shorthand types to long form + function simplyfy(val){ + + switch(val[0]){ + case 'z': // shorthand line to start + case 'Z': + val[0] = 'L'; + val[1] = this.start[0]; + val[2] = this.start[1]; + break + case 'H': // shorthand horizontal line + val[0] = 'L'; + val[2] = this.pos[1]; + break + case 'V': // shorthand vertical line + val[0] = 'L'; + val[2] = val[1]; + val[1] = this.pos[0]; + break + case 'T': // shorthand quadratic beziere + val[0] = 'Q'; + val[3] = val[1]; + val[4] = val[2]; + val[1] = this.reflection[1]; + val[2] = this.reflection[0]; + break + case 'S': // shorthand cubic beziere + val[0] = 'C'; + val[6] = val[4]; + val[5] = val[3]; + val[4] = val[2]; + val[3] = val[1]; + val[2] = this.reflection[1]; + val[1] = this.reflection[0]; + break + } + + return val + + } + + // updates reflection point and current position + function setPosAndReflection(val){ + + var len = val.length; + + this.pos = [ val[len-2], val[len-1] ]; + + if('SCQT'.indexOf(val[0]) != -1) + this.reflection = [ 2 * this.pos[0] - val[len-4], 2 * this.pos[1] - val[len-3] ]; + + return val + } + + // converts all types to cubic beziere + function toBeziere(val){ + var retVal = [val]; + + switch(val[0]){ + case 'M': // special handling for M + this.pos = this.start = [val[1], val[2]]; + return retVal + case 'L': + val[5] = val[3] = val[1]; + val[6] = val[4] = val[2]; + val[1] = this.pos[0]; + val[2] = this.pos[1]; + break + case 'Q': + val[6] = val[4]; + val[5] = val[3]; + val[4] = val[4] * 1/3 + val[2] * 2/3; + val[3] = val[3] * 1/3 + val[1] * 2/3; + val[2] = this.pos[1] * 1/3 + val[2] * 2/3; + val[1] = this.pos[0] * 1/3 + val[1] * 2/3; + break + case 'A': + retVal = arcToBeziere(this.pos, val); + val = retVal[0]; + break + } + + val[0] = 'C'; + this.pos = [val[5], val[6]]; + this.reflection = [2 * val[5] - val[3], 2 * val[6] - val[4]]; + + return retVal + + } + + // finds the next position of type M + function findNextM(arr, offset){ + + if(offset === false) return false + + for(var i = offset, len = arr.length;i < len;++i){ + + if(arr[i][0] == 'M') return i + + } + + return false + } + + + + // Convert an arc segment into equivalent cubic Bezier curves + // Depending on the arc, up to 4 curves might be used to represent it since a + // curve gives a good approximation for only a quarter of an ellipse + // The curves are returned as an array of SVG curve commands: + // [ ['C', x1, y1, x2, y2, x, y] ... ] + function arcToBeziere(pos, val) { + // Parameters extraction, handle out-of-range parameters as specified in the SVG spec + // See: https://www.w3.org/TR/SVG11/implnote.html#ArcOutOfRangeParameters + var rx = Math.abs(val[1]), ry = Math.abs(val[2]), xAxisRotation = val[3] % 360 + , largeArcFlag = val[4], sweepFlag = val[5], x = val[6], y = val[7] + , A = new SVG.Point(pos), B = new SVG.Point(x, y) + , primedCoord, lambda, mat, k, c, cSquare, t, O, OA, OB, tetaStart, tetaEnd + , deltaTeta, nbSectors, f, arcSegPoints, angle, sinAngle, cosAngle, pt, i, il + , retVal = [], x1, y1, x2, y2; + + // Ensure radii are non-zero + if(rx === 0 || ry === 0 || (A.x === B.x && A.y === B.y)) { + // treat this arc as a straight line segment + return [['C', A.x, A.y, B.x, B.y, B.x, B.y]] + } + + // Ensure radii are large enough using the algorithm provided in the SVG spec + // See: https://www.w3.org/TR/SVG11/implnote.html#ArcCorrectionOutOfRangeRadii + primedCoord = new SVG.Point((A.x-B.x)/2, (A.y-B.y)/2).transform(new SVG.Matrix().rotate(xAxisRotation)); + lambda = (primedCoord.x * primedCoord.x) / (rx * rx) + (primedCoord.y * primedCoord.y) / (ry * ry); + if(lambda > 1) { + lambda = Math.sqrt(lambda); + rx = lambda*rx; + ry = lambda*ry; + } + + // To simplify calculations, we make the arc part of a unit circle (rayon is 1) instead of an ellipse + mat = new SVG.Matrix().rotate(xAxisRotation).scale(1/rx, 1/ry).rotate(-xAxisRotation); + A = A.transform(mat); + B = B.transform(mat); + + // Calculate the horizontal and vertical distance between the initial and final point of the arc + k = [B.x-A.x, B.y-A.y]; + + // Find the length of the chord formed by A and B + cSquare = k[0]*k[0] + k[1]*k[1]; + c = Math.sqrt(cSquare); + + // Calculate the ratios of the horizontal and vertical distance on the length of the chord + k[0] /= c; + k[1] /= c; + + // Calculate the distance between the circle center and the chord midpoint + // using this formula: t = sqrt(r^2 - c^2 / 4) + // where t is the distance between the cirle center and the chord midpoint, + // r is the rayon of the circle and c is the chord length + // From: http://www.ajdesigner.com/phpcircle/circle_segment_chord_t.php + // Because of the imprecision of floating point numbers, cSquare might end + // up being slightly above 4 which would result in a negative radicand + // To prevent that, a test is made before computing the square root + t = (cSquare < 4) ? Math.sqrt(1 - cSquare/4) : 0; + + // For most situations, there are actually two different ellipses that + // satisfy the constraints imposed by the points A and B, the radii rx and ry, + // and the xAxisRotation + // When the flags largeArcFlag and sweepFlag are equal, it means that the + // second ellipse is used as a solution + // See: https://www.w3.org/TR/SVG/paths.html#PathDataEllipticalArcCommands + if(largeArcFlag === sweepFlag) { + t *= -1; + } + + // Calculate the coordinates of the center of the circle from the midpoint of the chord + // This is done by multiplying the ratios calculated previously by the distance between + // the circle center and the chord midpoint and using these values to go from the midpoint + // to the center of the circle + // The negative of the vertical distance ratio is used to modify the x coordinate while + // the horizontal distance ratio is used to modify the y coordinate + // That is because the center of the circle is perpendicular to the chord and perpendicular + // lines are negative reciprocals + O = new SVG.Point((B.x+A.x)/2 + t*-k[1], (B.y+A.y)/2 + t*k[0]); + // Move the center of the circle at the origin + OA = new SVG.Point(A.x-O.x, A.y-O.y); + OB = new SVG.Point(B.x-O.x, B.y-O.y); + + // Calculate the start and end angle + tetaStart = Math.acos(OA.x/Math.sqrt(OA.x*OA.x + OA.y*OA.y)); + if (OA.y < 0) { + tetaStart *= -1; + } + tetaEnd = Math.acos(OB.x/Math.sqrt(OB.x*OB.x + OB.y*OB.y)); + if (OB.y < 0) { + tetaEnd *= -1; + } + + // If sweep-flag is '1', then the arc will be drawn in a "positive-angle" direction, + // make sure that the end angle is above the start angle + if (sweepFlag && tetaStart > tetaEnd) { + tetaEnd += 2*Math.PI; + } + // If sweep-flag is '0', then the arc will be drawn in a "negative-angle" direction, + // make sure that the end angle is below the start angle + if (!sweepFlag && tetaStart < tetaEnd) { + tetaEnd -= 2*Math.PI; + } + + // Find the number of Bezier curves that are required to represent the arc + // A cubic Bezier curve gives a good enough approximation when representing at most a quarter of a circle + nbSectors = Math.ceil(Math.abs(tetaStart-tetaEnd) * 2/Math.PI); + + // Calculate the coordinates of the points of all the Bezier curves required to represent the arc + // For an in-depth explanation of this part see: http://pomax.github.io/bezierinfo/#circles_cubic + arcSegPoints = []; + angle = tetaStart; + deltaTeta = (tetaEnd-tetaStart)/nbSectors; + f = 4*Math.tan(deltaTeta/4)/3; + for (i = 0; i <= nbSectors; i++) { // The <= is because a Bezier curve have a start and a endpoint + cosAngle = Math.cos(angle); + sinAngle = Math.sin(angle); + + pt = new SVG.Point(O.x+cosAngle, O.y+sinAngle); + arcSegPoints[i] = [new SVG.Point(pt.x+f*sinAngle, pt.y-f*cosAngle), pt, new SVG.Point(pt.x-f*sinAngle, pt.y+f*cosAngle)]; + + angle += deltaTeta; + } + + // Remove the first control point of the first segment point and remove the second control point of the last segment point + // These two control points are not used in the approximation of the arc, that is why they are removed + arcSegPoints[0][0] = arcSegPoints[0][1].clone(); + arcSegPoints[arcSegPoints.length-1][2] = arcSegPoints[arcSegPoints.length-1][1].clone(); + + // Revert the transformation that was applied to make the arc part of a unit circle instead of an ellipse + mat = new SVG.Matrix().rotate(xAxisRotation).scale(rx, ry).rotate(-xAxisRotation); + for (i = 0, il = arcSegPoints.length; i < il; i++) { + arcSegPoints[i][0] = arcSegPoints[i][0].transform(mat); + arcSegPoints[i][1] = arcSegPoints[i][1].transform(mat); + arcSegPoints[i][2] = arcSegPoints[i][2].transform(mat); + } + + + // Convert the segments points to SVG curve commands + for (i = 1, il = arcSegPoints.length; i < il; i++) { + pt = arcSegPoints[i-1][2]; + x1 = pt.x; + y1 = pt.y; + + pt = arcSegPoints[i][0]; + x2 = pt.x; + y2 = pt.y; + + pt = arcSegPoints[i][1]; + x = pt.x; + y = pt.y; + + retVal.push(['C', x1, y1, x2, y2, x, y]); + } + + return retVal + } + }()); + + /*! svg.draggable.js - v2.2.2 - 2019-01-08 + * https://github.com/svgdotjs/svg.draggable.js + * Copyright (c) 2019 Wout Fierens; Licensed MIT */ + (function() { + + // creates handler, saves it + function DragHandler(el){ + el.remember('_draggable', this); + this.el = el; + } + + + // Sets new parameter, starts dragging + DragHandler.prototype.init = function(constraint, val){ + var _this = this; + this.constraint = constraint; + this.value = val; + this.el.on('mousedown.drag', function(e){ _this.start(e); }); + this.el.on('touchstart.drag', function(e){ _this.start(e); }); + }; + + // transforms one point from screen to user coords + DragHandler.prototype.transformPoint = function(event, offset){ + event = event || window.event; + var touches = event.changedTouches && event.changedTouches[0] || event; + this.p.x = touches.clientX - (offset || 0); + this.p.y = touches.clientY; + return this.p.matrixTransform(this.m) + }; + + // gets elements bounding box with special handling of groups, nested and use + DragHandler.prototype.getBBox = function(){ + + var box = this.el.bbox(); + + if(this.el instanceof SVG.Nested) box = this.el.rbox(); + + if (this.el instanceof SVG.G || this.el instanceof SVG.Use || this.el instanceof SVG.Nested) { + box.x = this.el.x(); + box.y = this.el.y(); + } + + return box + }; + + // start dragging + DragHandler.prototype.start = function(e){ + + // check for left button + if(e.type == 'click'|| e.type == 'mousedown' || e.type == 'mousemove'){ + if((e.which || e.buttons) != 1){ + return + } + } + + var _this = this; + + // fire beforedrag event + this.el.fire('beforedrag', { event: e, handler: this }); + if(this.el.event().defaultPrevented) return; + + // prevent browser drag behavior as soon as possible + e.preventDefault(); + + // prevent propagation to a parent that might also have dragging enabled + e.stopPropagation(); + + // search for parent on the fly to make sure we can call + // draggable() even when element is not in the dom currently + this.parent = this.parent || this.el.parent(SVG.Nested) || this.el.parent(SVG.Doc); + this.p = this.parent.node.createSVGPoint(); + + // save current transformation matrix + this.m = this.el.node.getScreenCTM().inverse(); + + var box = this.getBBox(); + + var anchorOffset; + + // fix text-anchor in text-element (#37) + if(this.el instanceof SVG.Text){ + anchorOffset = this.el.node.getComputedTextLength(); + + switch(this.el.attr('text-anchor')){ + case 'middle': + anchorOffset /= 2; + break + case 'start': + anchorOffset = 0; + break; + } + } + + this.startPoints = { + // We take absolute coordinates since we are just using a delta here + point: this.transformPoint(e, anchorOffset), + box: box, + transform: this.el.transform() + }; + + // add drag and end events to window + SVG.on(window, 'mousemove.drag', function(e){ _this.drag(e); }); + SVG.on(window, 'touchmove.drag', function(e){ _this.drag(e); }); + SVG.on(window, 'mouseup.drag', function(e){ _this.end(e); }); + SVG.on(window, 'touchend.drag', function(e){ _this.end(e); }); + + // fire dragstart event + this.el.fire('dragstart', {event: e, p: this.startPoints.point, m: this.m, handler: this}); + }; + + // while dragging + DragHandler.prototype.drag = function(e){ + + var box = this.getBBox() + , p = this.transformPoint(e) + , x = this.startPoints.box.x + p.x - this.startPoints.point.x + , y = this.startPoints.box.y + p.y - this.startPoints.point.y + , c = this.constraint + , gx = p.x - this.startPoints.point.x + , gy = p.y - this.startPoints.point.y; + + this.el.fire('dragmove', { + event: e + , p: p + , m: this.m + , handler: this + }); + + if(this.el.event().defaultPrevented) return p + + // move the element to its new position, if possible by constraint + if (typeof c == 'function') { + + var coord = c.call(this.el, x, y, this.m); + + // bool, just show us if movement is allowed or not + if (typeof coord == 'boolean') { + coord = { + x: coord, + y: coord + }; + } + + // if true, we just move. If !false its a number and we move it there + if (coord.x === true) { + this.el.x(x); + } else if (coord.x !== false) { + this.el.x(coord.x); + } + + if (coord.y === true) { + this.el.y(y); + } else if (coord.y !== false) { + this.el.y(coord.y); + } + + } else if (typeof c == 'object') { + + // keep element within constrained box + if (c.minX != null && x < c.minX) { + x = c.minX; + gx = x - this.startPoints.box.x; + } else if (c.maxX != null && x > c.maxX - box.width) { + x = c.maxX - box.width; + gx = x - this.startPoints.box.x; + } if (c.minY != null && y < c.minY) { + y = c.minY; + gy = y - this.startPoints.box.y; + } else if (c.maxY != null && y > c.maxY - box.height) { + y = c.maxY - box.height; + gy = y - this.startPoints.box.y; + } + + if (c.snapToGrid != null) { + x = x - (x % c.snapToGrid); + y = y - (y % c.snapToGrid); + gx = gx - (gx % c.snapToGrid); + gy = gy - (gy % c.snapToGrid); + } + + if(this.el instanceof SVG.G) + this.el.matrix(this.startPoints.transform).transform({x:gx, y: gy}, true); + else + this.el.move(x, y); + } + + // so we can use it in the end-method, too + return p + }; + + DragHandler.prototype.end = function(e){ + + // final drag + var p = this.drag(e); + + // fire dragend event + this.el.fire('dragend', { event: e, p: p, m: this.m, handler: this }); + + // unbind events + SVG.off(window, 'mousemove.drag'); + SVG.off(window, 'touchmove.drag'); + SVG.off(window, 'mouseup.drag'); + SVG.off(window, 'touchend.drag'); + + }; + + SVG.extend(SVG.Element, { + // Make element draggable + // Constraint might be an object (as described in readme.md) or a function in the form "function (x, y)" that gets called before every move. + // The function can return a boolean or an object of the form {x, y}, to which the element will be moved. "False" skips moving, true moves to raw x, y. + draggable: function(value, constraint) { + + // Check the parameters and reassign if needed + if (typeof value == 'function' || typeof value == 'object') { + constraint = value; + value = true; + } + + var dragHandler = this.remember('_draggable') || new DragHandler(this); + + // When no parameter is given, value is true + value = typeof value === 'undefined' ? true : value; + + if(value) dragHandler.init(constraint || {}, value); + else { + this.off('mousedown.drag'); + this.off('touchstart.drag'); + } + + return this + } + + }); + + }).call(undefined); + + (function() { + + function SelectHandler(el) { + + this.el = el; + el.remember('_selectHandler', this); + this.pointSelection = {isSelected: false}; + this.rectSelection = {isSelected: false}; + + } + + SelectHandler.prototype.init = function (value, options) { + + var bbox = this.el.bbox(); + this.options = {}; + + // Merging the defaults and the options-object together + for (var i in this.el.selectize.defaults) { + this.options[i] = this.el.selectize.defaults[i]; + if (options[i] !== undefined) { + this.options[i] = options[i]; + } + } + + this.parent = this.el.parent(); + this.nested = (this.nested || this.parent.group()); + this.nested.matrix(new SVG.Matrix(this.el).translate(bbox.x, bbox.y)); + + // When deepSelect is enabled and the element is a line/polyline/polygon, draw only points for moving + if (this.options.deepSelect && ['line', 'polyline', 'polygon'].indexOf(this.el.type) !== -1) { + this.selectPoints(value); + } else { + this.selectRect(value); + } + + this.observe(); + this.cleanup(); + + }; + + SelectHandler.prototype.selectPoints = function (value) { + + this.pointSelection.isSelected = value; + + // When set is already there we dont have to create one + if (this.pointSelection.set) { + return this; + } + + // Create our set of elements + this.pointSelection.set = this.parent.set(); + // draw the circles and mark the element as selected + this.drawCircles(); + + return this; + + }; + + // create the point-array which contains the 2 points of a line or simply the points-array of polyline/polygon + SelectHandler.prototype.getPointArray = function () { + var bbox = this.el.bbox(); + + return this.el.array().valueOf().map(function (el) { + return [el[0] - bbox.x, el[1] - bbox.y]; + }); + }; + + // The function to draw the circles + SelectHandler.prototype.drawCircles = function () { + + var _this = this, array = this.getPointArray(); + + // go through the array of points + for (var i = 0, len = array.length; i < len; ++i) { + + var curriedEvent = (function (k) { + return function (ev) { + ev = ev || window.event; + ev.preventDefault ? ev.preventDefault() : ev.returnValue = false; + ev.stopPropagation(); + + var x = ev.pageX || ev.touches[0].pageX; + var y = ev.pageY || ev.touches[0].pageY; + _this.el.fire('point', {x: x, y: y, i: k, event: ev}); + }; + })(i); + + // add every point to the set + this.pointSelection.set.add( + // a circle with our css-classes and a touchstart-event which fires our event for moving points + this.nested.circle(this.options.radius) + .center(array[i][0], array[i][1]) + .addClass(this.options.classPoints) + .addClass(this.options.classPoints + '_point') + .on('touchstart', curriedEvent) + .on('mousedown', curriedEvent) + ); + } + + }; + + // every time a circle is moved, we have to update the positions of our circle + SelectHandler.prototype.updatePointSelection = function () { + var array = this.getPointArray(); + + this.pointSelection.set.each(function (i) { + if (this.cx() === array[i][0] && this.cy() === array[i][1]) { + return; + } + this.center(array[i][0], array[i][1]); + }); + }; + + SelectHandler.prototype.updateRectSelection = function () { + var bbox = this.el.bbox(); + + this.rectSelection.set.get(0).attr({ + width: bbox.width, + height: bbox.height + }); + + // set.get(1) is always in the upper left corner. no need to move it + if (this.options.points) { + this.rectSelection.set.get(2).center(bbox.width, 0); + this.rectSelection.set.get(3).center(bbox.width, bbox.height); + this.rectSelection.set.get(4).center(0, bbox.height); + + this.rectSelection.set.get(5).center(bbox.width / 2, 0); + this.rectSelection.set.get(6).center(bbox.width, bbox.height / 2); + this.rectSelection.set.get(7).center(bbox.width / 2, bbox.height); + this.rectSelection.set.get(8).center(0, bbox.height / 2); + } + + if (this.options.rotationPoint) { + if (this.options.points) { + this.rectSelection.set.get(9).center(bbox.width / 2, 20); + } else { + this.rectSelection.set.get(1).center(bbox.width / 2, 20); + } + } + }; + + SelectHandler.prototype.selectRect = function (value) { + + var _this = this, bbox = this.el.bbox(); + + this.rectSelection.isSelected = value; + + // when set is already p + this.rectSelection.set = this.rectSelection.set || this.parent.set(); + + // helperFunction to create a mouse-down function which triggers the event specified in `eventName` + function getMoseDownFunc(eventName) { + return function (ev) { + ev = ev || window.event; + ev.preventDefault ? ev.preventDefault() : ev.returnValue = false; + ev.stopPropagation(); + + var x = ev.pageX || ev.touches[0].pageX; + var y = ev.pageY || ev.touches[0].pageY; + _this.el.fire(eventName, {x: x, y: y, event: ev}); + }; + } + + // create the selection-rectangle and add the css-class + if (!this.rectSelection.set.get(0)) { + this.rectSelection.set.add(this.nested.rect(bbox.width, bbox.height).addClass(this.options.classRect)); + } + + // Draw Points at the edges, if enabled + if (this.options.points && !this.rectSelection.set.get(1)) { + var ename ="touchstart", mname = "mousedown"; + this.rectSelection.set.add(this.nested.circle(this.options.radius).center(0, 0).attr('class', this.options.classPoints + '_lt').on(mname, getMoseDownFunc('lt')).on(ename, getMoseDownFunc('lt'))); + this.rectSelection.set.add(this.nested.circle(this.options.radius).center(bbox.width, 0).attr('class', this.options.classPoints + '_rt').on(mname, getMoseDownFunc('rt')).on(ename, getMoseDownFunc('rt'))); + this.rectSelection.set.add(this.nested.circle(this.options.radius).center(bbox.width, bbox.height).attr('class', this.options.classPoints + '_rb').on(mname, getMoseDownFunc('rb')).on(ename, getMoseDownFunc('rb'))); + this.rectSelection.set.add(this.nested.circle(this.options.radius).center(0, bbox.height).attr('class', this.options.classPoints + '_lb').on(mname, getMoseDownFunc('lb')).on(ename, getMoseDownFunc('lb'))); + + this.rectSelection.set.add(this.nested.circle(this.options.radius).center(bbox.width / 2, 0).attr('class', this.options.classPoints + '_t').on(mname, getMoseDownFunc('t')).on(ename, getMoseDownFunc('t'))); + this.rectSelection.set.add(this.nested.circle(this.options.radius).center(bbox.width, bbox.height / 2).attr('class', this.options.classPoints + '_r').on(mname, getMoseDownFunc('r')).on(ename, getMoseDownFunc('r'))); + this.rectSelection.set.add(this.nested.circle(this.options.radius).center(bbox.width / 2, bbox.height).attr('class', this.options.classPoints + '_b').on(mname, getMoseDownFunc('b')).on(ename, getMoseDownFunc('b'))); + this.rectSelection.set.add(this.nested.circle(this.options.radius).center(0, bbox.height / 2).attr('class', this.options.classPoints + '_l').on(mname, getMoseDownFunc('l')).on(ename, getMoseDownFunc('l'))); + + this.rectSelection.set.each(function () { + this.addClass(_this.options.classPoints); + }); + } + + // draw rotationPint, if enabled + if (this.options.rotationPoint && ((this.options.points && !this.rectSelection.set.get(9)) || (!this.options.points && !this.rectSelection.set.get(1)))) { + + var curriedEvent = function (ev) { + ev = ev || window.event; + ev.preventDefault ? ev.preventDefault() : ev.returnValue = false; + ev.stopPropagation(); + + var x = ev.pageX || ev.touches[0].pageX; + var y = ev.pageY || ev.touches[0].pageY; + _this.el.fire('rot', {x: x, y: y, event: ev}); + }; + this.rectSelection.set.add(this.nested.circle(this.options.radius).center(bbox.width / 2, 20).attr('class', this.options.classPoints + '_rot') + .on("touchstart", curriedEvent).on("mousedown", curriedEvent)); + + } + + }; + + SelectHandler.prototype.handler = function () { + + var bbox = this.el.bbox(); + this.nested.matrix(new SVG.Matrix(this.el).translate(bbox.x, bbox.y)); + + if (this.rectSelection.isSelected) { + this.updateRectSelection(); + } + + if (this.pointSelection.isSelected) { + this.updatePointSelection(); + } + + }; + + SelectHandler.prototype.observe = function () { + var _this = this; + + if (MutationObserver) { + if (this.rectSelection.isSelected || this.pointSelection.isSelected) { + this.observerInst = this.observerInst || new MutationObserver(function () { + _this.handler(); + }); + this.observerInst.observe(this.el.node, {attributes: true}); + } else { + try { + this.observerInst.disconnect(); + delete this.observerInst; + } catch (e) { + } + } + } else { + this.el.off('DOMAttrModified.select'); + + if (this.rectSelection.isSelected || this.pointSelection.isSelected) { + this.el.on('DOMAttrModified.select', function () { + _this.handler(); + }); + } + } + }; + + SelectHandler.prototype.cleanup = function () { + + //var _this = this; + + if (!this.rectSelection.isSelected && this.rectSelection.set) { + // stop watching the element, remove the selection + this.rectSelection.set.each(function () { + this.remove(); + }); + + this.rectSelection.set.clear(); + delete this.rectSelection.set; + } + + if (!this.pointSelection.isSelected && this.pointSelection.set) { + // Remove all points, clear the set, stop watching the element + this.pointSelection.set.each(function () { + this.remove(); + }); + + this.pointSelection.set.clear(); + delete this.pointSelection.set; + } + + if (!this.pointSelection.isSelected && !this.rectSelection.isSelected) { + this.nested.remove(); + delete this.nested; + + } + }; + + + SVG.extend(SVG.Element, { + // Select element with mouse + selectize: function (value, options) { + + // Check the parameters and reassign if needed + if (typeof value === 'object') { + options = value; + value = true; + } + + var selectHandler = this.remember('_selectHandler') || new SelectHandler(this); + + selectHandler.init(value === undefined ? true : value, options || {}); + + return this; + + } + }); + + SVG.Element.prototype.selectize.defaults = { + points: true, // If true, points at the edges are drawn. Needed for resize! + classRect: 'svg_select_boundingRect', // Css-class added to the rect + classPoints: 'svg_select_points', // Css-class added to the points + radius: 7, // radius of the points + rotationPoint: true, // If true, rotation point is drawn. Needed for rotation! + deepSelect: false // If true, moving of single points is possible (only line, polyline, polyon) + }; + }()); + + (function() { + (function () { + + function ResizeHandler(el) { + + el.remember('_resizeHandler', this); + + this.el = el; + this.parameters = {}; + this.lastUpdateCall = null; + this.p = el.doc().node.createSVGPoint(); + } + + ResizeHandler.prototype.transformPoint = function(x, y, m){ + + this.p.x = x - (this.offset.x - window.pageXOffset); + this.p.y = y - (this.offset.y - window.pageYOffset); + + return this.p.matrixTransform(m || this.m); + + }; + + ResizeHandler.prototype._extractPosition = function(event) { + // Extract a position from a mouse/touch event. + // Returns { x: .., y: .. } + return { + x: event.clientX != null ? event.clientX : event.touches[0].clientX, + y: event.clientY != null ? event.clientY : event.touches[0].clientY + } + }; + + ResizeHandler.prototype.init = function (options) { + + var _this = this; + + this.stop(); + + if (options === 'stop') { + return; + } + + this.options = {}; + + // Merge options and defaults + for (var i in this.el.resize.defaults) { + this.options[i] = this.el.resize.defaults[i]; + if (typeof options[i] !== 'undefined') { + this.options[i] = options[i]; + } + } + + // We listen to all these events which are specifying different edges + this.el.on('lt.resize', function(e){ _this.resize(e || window.event); }); // Left-Top + this.el.on('rt.resize', function(e){ _this.resize(e || window.event); }); // Right-Top + this.el.on('rb.resize', function(e){ _this.resize(e || window.event); }); // Right-Bottom + this.el.on('lb.resize', function(e){ _this.resize(e || window.event); }); // Left-Bottom + + this.el.on('t.resize', function(e){ _this.resize(e || window.event); }); // Top + this.el.on('r.resize', function(e){ _this.resize(e || window.event); }); // Right + this.el.on('b.resize', function(e){ _this.resize(e || window.event); }); // Bottom + this.el.on('l.resize', function(e){ _this.resize(e || window.event); }); // Left + + this.el.on('rot.resize', function(e){ _this.resize(e || window.event); }); // Rotation + + this.el.on('point.resize', function(e){ _this.resize(e || window.event); }); // Point-Moving + + // This call ensures, that the plugin reacts to a change of snapToGrid immediately + this.update(); + + }; + + ResizeHandler.prototype.stop = function(){ + this.el.off('lt.resize'); + this.el.off('rt.resize'); + this.el.off('rb.resize'); + this.el.off('lb.resize'); + + this.el.off('t.resize'); + this.el.off('r.resize'); + this.el.off('b.resize'); + this.el.off('l.resize'); + + this.el.off('rot.resize'); + + this.el.off('point.resize'); + + return this; + }; + + ResizeHandler.prototype.resize = function (event) { + + var _this = this; + + this.m = this.el.node.getScreenCTM().inverse(); + this.offset = { x: window.pageXOffset, y: window.pageYOffset }; + + var txPt = this._extractPosition(event.detail.event); + this.parameters = { + type: this.el.type, // the type of element + p: this.transformPoint(txPt.x, txPt.y), + x: event.detail.x, // x-position of the mouse when resizing started + y: event.detail.y, // y-position of the mouse when resizing started + box: this.el.bbox(), // The bounding-box of the element + rotation: this.el.transform().rotation // The current rotation of the element + }; + + // Add font-size parameter if the element type is text + if (this.el.type === "text") { + this.parameters.fontSize = this.el.attr()["font-size"]; + } + + // the i-param in the event holds the index of the point which is moved, when using `deepSelect` + if (event.detail.i !== undefined) { + + // get the point array + var array = this.el.array().valueOf(); + + // Save the index and the point which is moved + this.parameters.i = event.detail.i; + this.parameters.pointCoords = [array[event.detail.i][0], array[event.detail.i][1]]; + } + + // Lets check which edge of the bounding-box was clicked and resize the this.el according to this + switch (event.type) { + + // Left-Top-Edge + case 'lt': + // We build a calculating function for every case which gives us the new position of the this.el + this.calc = function (diffX, diffY) { + // The procedure is always the same + // First we snap the edge to the given grid (snapping to 1px grid is normal resizing) + var snap = this.snapToGrid(diffX, diffY); + + // Now we check if the new height and width still valid (> 0) + if (this.parameters.box.width - snap[0] > 0 && this.parameters.box.height - snap[1] > 0) { + // ...if valid, we resize the this.el (which can include moving because the coord-system starts at the left-top and this edge is moving sometimes when resized) + + /* + * but first check if the element is text box, so we can change the font size instead of + * the width and height + */ + + if (this.parameters.type === "text") { + this.el.move(this.parameters.box.x + snap[0], this.parameters.box.y); + this.el.attr("font-size", this.parameters.fontSize - snap[0]); + return; + } + + snap = this.checkAspectRatio(snap); + + this.el.move(this.parameters.box.x + snap[0], this.parameters.box.y + snap[1]).size(this.parameters.box.width - snap[0], this.parameters.box.height - snap[1]); + } + }; + break; + + // Right-Top + case 'rt': + // s.a. + this.calc = function (diffX, diffY) { + var snap = this.snapToGrid(diffX, diffY, 1 << 1); + if (this.parameters.box.width + snap[0] > 0 && this.parameters.box.height - snap[1] > 0) { + if (this.parameters.type === "text") { + this.el.move(this.parameters.box.x - snap[0], this.parameters.box.y); + this.el.attr("font-size", this.parameters.fontSize + snap[0]); + return; + } + + snap = this.checkAspectRatio(snap, true); + + this.el.move(this.parameters.box.x, this.parameters.box.y + snap[1]).size(this.parameters.box.width + snap[0], this.parameters.box.height - snap[1]); + } + }; + break; + + // Right-Bottom + case 'rb': + // s.a. + this.calc = function (diffX, diffY) { + var snap = this.snapToGrid(diffX, diffY, 0); + if (this.parameters.box.width + snap[0] > 0 && this.parameters.box.height + snap[1] > 0) { + if (this.parameters.type === "text") { + this.el.move(this.parameters.box.x - snap[0], this.parameters.box.y); + this.el.attr("font-size", this.parameters.fontSize + snap[0]); + return; + } + + snap = this.checkAspectRatio(snap); + + this.el.move(this.parameters.box.x, this.parameters.box.y).size(this.parameters.box.width + snap[0], this.parameters.box.height + snap[1]); + } + }; + break; + + // Left-Bottom + case 'lb': + // s.a. + this.calc = function (diffX, diffY) { + var snap = this.snapToGrid(diffX, diffY, 1); + if (this.parameters.box.width - snap[0] > 0 && this.parameters.box.height + snap[1] > 0) { + if (this.parameters.type === "text") { + this.el.move(this.parameters.box.x + snap[0], this.parameters.box.y); + this.el.attr("font-size", this.parameters.fontSize - snap[0]); + return; + } + + snap = this.checkAspectRatio(snap, true); + + this.el.move(this.parameters.box.x + snap[0], this.parameters.box.y).size(this.parameters.box.width - snap[0], this.parameters.box.height + snap[1]); + } + }; + break; + + // Top + case 't': + // s.a. + this.calc = function (diffX, diffY) { + var snap = this.snapToGrid(diffX, diffY, 1 << 1); + if (this.parameters.box.height - snap[1] > 0) { + // Disable the font-resizing if it is not from the corner of bounding-box + if (this.parameters.type === "text") { + return; + } + + this.el.move(this.parameters.box.x, this.parameters.box.y + snap[1]).height(this.parameters.box.height - snap[1]); + } + }; + break; + + // Right + case 'r': + // s.a. + this.calc = function (diffX, diffY) { + var snap = this.snapToGrid(diffX, diffY, 0); + if (this.parameters.box.width + snap[0] > 0) { + if (this.parameters.type === "text") { + return; + } + + this.el.move(this.parameters.box.x, this.parameters.box.y).width(this.parameters.box.width + snap[0]); + } + }; + break; + + // Bottom + case 'b': + // s.a. + this.calc = function (diffX, diffY) { + var snap = this.snapToGrid(diffX, diffY, 0); + if (this.parameters.box.height + snap[1] > 0) { + if (this.parameters.type === "text") { + return; + } + + this.el.move(this.parameters.box.x, this.parameters.box.y).height(this.parameters.box.height + snap[1]); + } + }; + break; + + // Left + case 'l': + // s.a. + this.calc = function (diffX, diffY) { + var snap = this.snapToGrid(diffX, diffY, 1); + if (this.parameters.box.width - snap[0] > 0) { + if (this.parameters.type === "text") { + return; + } + + this.el.move(this.parameters.box.x + snap[0], this.parameters.box.y).width(this.parameters.box.width - snap[0]); + } + }; + break; + + // Rotation + case 'rot': + // s.a. + this.calc = function (diffX, diffY) { + + // yes this is kinda stupid but we need the mouse coords back... + var current = {x: diffX + this.parameters.p.x, y: diffY + this.parameters.p.y}; + + // start minus middle + var sAngle = Math.atan2((this.parameters.p.y - this.parameters.box.y - this.parameters.box.height / 2), (this.parameters.p.x - this.parameters.box.x - this.parameters.box.width / 2)); + + // end minus middle + var pAngle = Math.atan2((current.y - this.parameters.box.y - this.parameters.box.height / 2), (current.x - this.parameters.box.x - this.parameters.box.width / 2)); + + var angle = this.parameters.rotation + (pAngle - sAngle) * 180 / Math.PI + this.options.snapToAngle / 2; + + // We have to move the element to the center of the box first and change the rotation afterwards + // because rotation always works around a rotation-center, which is changed when moving the element + // We also set the new rotation center to the center of the box. + this.el.center(this.parameters.box.cx, this.parameters.box.cy).rotate(angle - (angle % this.options.snapToAngle), this.parameters.box.cx, this.parameters.box.cy); + }; + break; + + // Moving one single Point (needed when an element is deepSelected which means you can move every single point of the object) + case 'point': + this.calc = function (diffX, diffY) { + + // Snapping the point to the grid + var snap = this.snapToGrid(diffX, diffY, this.parameters.pointCoords[0], this.parameters.pointCoords[1]); + + // Get the point array + var array = this.el.array().valueOf(); + + // Changing the moved point in the array + array[this.parameters.i][0] = this.parameters.pointCoords[0] + snap[0]; + array[this.parameters.i][1] = this.parameters.pointCoords[1] + snap[1]; + + // And plot the new this.el + this.el.plot(array); + }; + } + + this.el.fire('resizestart', {dx: this.parameters.x, dy: this.parameters.y, event: event}); + // When resizing started, we have to register events for... + // Touches. + SVG.on(window, 'touchmove.resize', function(e) { + _this.update(e || window.event); + }); + SVG.on(window, 'touchend.resize', function() { + _this.done(); + }); + // Mouse. + SVG.on(window, 'mousemove.resize', function (e) { + _this.update(e || window.event); + }); + SVG.on(window, 'mouseup.resize', function () { + _this.done(); + }); + + }; + + // The update-function redraws the element every time the mouse is moving + ResizeHandler.prototype.update = function (event) { + + if (!event) { + if (this.lastUpdateCall) { + this.calc(this.lastUpdateCall[0], this.lastUpdateCall[1]); + } + return; + } + + // Calculate the difference between the mouseposition at start and now + var txPt = this._extractPosition(event); + var p = this.transformPoint(txPt.x, txPt.y); + + var diffX = p.x - this.parameters.p.x, + diffY = p.y - this.parameters.p.y; + + this.lastUpdateCall = [diffX, diffY]; + + // Calculate the new position and height / width of the element + this.calc(diffX, diffY); + + // Emit an event to say we have changed. + this.el.fire('resizing', {dx: diffX, dy: diffY, event: event}); + }; + + // Is called on mouseup. + // Removes the update-function from the mousemove event + ResizeHandler.prototype.done = function () { + this.lastUpdateCall = null; + SVG.off(window, 'mousemove.resize'); + SVG.off(window, 'mouseup.resize'); + SVG.off(window, 'touchmove.resize'); + SVG.off(window, 'touchend.resize'); + this.el.fire('resizedone'); + }; + + // The flag is used to determine whether the resizing is used with a left-Point (first bit) and top-point (second bit) + // In this cases the temp-values are calculated differently + ResizeHandler.prototype.snapToGrid = function (diffX, diffY, flag, pointCoordsY) { + + var temp; + + // If `pointCoordsY` is given, a single Point has to be snapped (deepSelect). That's why we need a different temp-value + if (typeof pointCoordsY !== 'undefined') { + // Note that flag = pointCoordsX in this case + temp = [(flag + diffX) % this.options.snapToGrid, (pointCoordsY + diffY) % this.options.snapToGrid]; + } else { + // We check if the flag is set and if not we set a default-value (both bits set - which means upper-left-edge) + flag = flag == null ? 1 | 1 << 1 : flag; + temp = [(this.parameters.box.x + diffX + (flag & 1 ? 0 : this.parameters.box.width)) % this.options.snapToGrid, (this.parameters.box.y + diffY + (flag & (1 << 1) ? 0 : this.parameters.box.height)) % this.options.snapToGrid]; + } + + if(diffX < 0) { + temp[0] -= this.options.snapToGrid; + } + if(diffY < 0) { + temp[1] -= this.options.snapToGrid; + } + + diffX -= (Math.abs(temp[0]) < this.options.snapToGrid / 2 ? + temp[0] : + temp[0] - (diffX < 0 ? -this.options.snapToGrid : this.options.snapToGrid)); + diffY -= (Math.abs(temp[1]) < this.options.snapToGrid / 2 ? + temp[1] : + temp[1] - (diffY < 0 ? -this.options.snapToGrid : this.options.snapToGrid)); + + return this.constraintToBox(diffX, diffY, flag, pointCoordsY); + + }; + + // keep element within constrained box + ResizeHandler.prototype.constraintToBox = function (diffX, diffY, flag, pointCoordsY) { + //return [diffX, diffY] + var c = this.options.constraint || {}; + var orgX, orgY; + + if (typeof pointCoordsY !== 'undefined') { + orgX = flag; + orgY = pointCoordsY; + } else { + orgX = this.parameters.box.x + (flag & 1 ? 0 : this.parameters.box.width); + orgY = this.parameters.box.y + (flag & (1<<1) ? 0 : this.parameters.box.height); + } + + if (typeof c.minX !== 'undefined' && orgX + diffX < c.minX) { + diffX = c.minX - orgX; + } + + if (typeof c.maxX !== 'undefined' && orgX + diffX > c.maxX) { + diffX = c.maxX - orgX; + } + + if (typeof c.minY !== 'undefined' && orgY + diffY < c.minY) { + diffY = c.minY - orgY; + } + + if (typeof c.maxY !== 'undefined' && orgY + diffY > c.maxY) { + diffY = c.maxY - orgY; + } + + return [diffX, diffY]; + }; + + ResizeHandler.prototype.checkAspectRatio = function (snap, isReverse) { + if (!this.options.saveAspectRatio) { + return snap; + } + + var updatedSnap = snap.slice(); + var aspectRatio = this.parameters.box.width / this.parameters.box.height; + var newW = this.parameters.box.width + snap[0]; + var newH = this.parameters.box.height - snap[1]; + var newAspectRatio = newW / newH; + + if (newAspectRatio < aspectRatio) { + // Height is too big. Adapt it + updatedSnap[1] = newW / aspectRatio - this.parameters.box.height; + isReverse && (updatedSnap[1] = -updatedSnap[1]); + } else if (newAspectRatio > aspectRatio) { + // Width is too big. Adapt it + updatedSnap[0] = this.parameters.box.width - newH * aspectRatio; + isReverse && (updatedSnap[0] = -updatedSnap[0]); + } + + return updatedSnap; + }; + + SVG.extend(SVG.Element, { + // Resize element with mouse + resize: function (options) { + + (this.remember('_resizeHandler') || new ResizeHandler(this)).init(options || {}); + + return this; + + } + + }); + + SVG.Element.prototype.resize.defaults = { + snapToAngle: 0.1, // Specifies the speed the rotation is happening when moving the mouse + snapToGrid: 1, // Snaps to a grid of `snapToGrid` Pixels + constraint: {}, // keep element within constrained box + saveAspectRatio: false // Save aspect ratio when resizing using lt, rt, rb or lb points + }; + + }).call(this); + }()); + + function styleInject(css, ref) { + if ( ref === void 0 ) ref = {}; + var insertAt = ref.insertAt; + + if (!css || typeof document === 'undefined') { return; } + + var head = document.head || document.getElementsByTagName('head')[0]; + var style = document.createElement('style'); + style.type = 'text/css'; + + if (insertAt === 'top') { + if (head.firstChild) { + head.insertBefore(style, head.firstChild); + } else { + head.appendChild(style); + } + } else { + head.appendChild(style); + } + + if (style.styleSheet) { + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } + } + + var css = ".apexcharts-canvas {\n position: relative;\n user-select: none;\n /* cannot give overflow: hidden as it will crop tooltips which overflow outside chart area */\n}\n\n/* scrollbar is not visible by default for legend, hence forcing the visibility */\n.apexcharts-canvas ::-webkit-scrollbar {\n -webkit-appearance: none;\n width: 6px;\n}\n.apexcharts-canvas ::-webkit-scrollbar-thumb {\n border-radius: 4px;\n background-color: rgba(0,0,0,.5);\n box-shadow: 0 0 1px rgba(255,255,255,.5);\n -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);\n}\n.apexcharts-canvas.dark {\n background: #343F57;\n}\n\n.apexcharts-inner {\n position: relative;\n}\n\n.legend-mouseover-inactive {\n transition: 0.15s ease all;\n opacity: 0.20;\n}\n\n.apexcharts-series-collapsed {\n opacity: 0;\n}\n\n.apexcharts-gridline, .apexcharts-text {\n pointer-events: none;\n}\n\n.apexcharts-tooltip {\n border-radius: 5px;\n box-shadow: 2px 2px 6px -4px #999;\n cursor: default;\n font-size: 14px;\n left: 62px;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n top: 20px;\n overflow: hidden;\n white-space: nowrap;\n z-index: 12;\n transition: 0.15s ease all;\n}\n.apexcharts-tooltip.light {\n border: 1px solid #e3e3e3;\n background: rgba(255, 255, 255, 0.96);\n}\n.apexcharts-tooltip.dark {\n color: #fff;\n background: rgba(30,30,30, 0.8);\n}\n.apexcharts-tooltip * {\n font-family: inherit;\n}\n\n.apexcharts-tooltip .apexcharts-marker,\n.apexcharts-area-series .apexcharts-area,\n.apexcharts-line {\n pointer-events: none;\n}\n\n.apexcharts-tooltip.active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-tooltip-title {\n padding: 6px;\n font-size: 15px;\n margin-bottom: 4px;\n}\n.apexcharts-tooltip.light .apexcharts-tooltip-title {\n background: #ECEFF1;\n border-bottom: 1px solid #ddd;\n}\n.apexcharts-tooltip.dark .apexcharts-tooltip-title {\n background: rgba(0, 0, 0, 0.7);\n border-bottom: 1px solid #333;\n}\n\n.apexcharts-tooltip-text-value,\n.apexcharts-tooltip-text-z-value {\n display: inline-block;\n font-weight: 600;\n margin-left: 5px;\n}\n\n.apexcharts-tooltip-text-z-label:empty,\n.apexcharts-tooltip-text-z-value:empty {\n display: none;\n}\n\n.apexcharts-tooltip-text-value, \n.apexcharts-tooltip-text-z-value {\n font-weight: 600;\n}\n\n.apexcharts-tooltip-marker {\n width: 12px;\n height: 12px;\n position: relative;\n top: 0px;\n margin-right: 10px;\n border-radius: 50%;\n}\n\n.apexcharts-tooltip-series-group {\n padding: 0 10px;\n display: none;\n text-align: left;\n justify-content: left;\n align-items: center;\n}\n\n.apexcharts-tooltip-series-group.active .apexcharts-tooltip-marker {\n opacity: 1;\n}\n.apexcharts-tooltip-series-group.active, .apexcharts-tooltip-series-group:last-child {\n padding-bottom: 4px;\n}\n.apexcharts-tooltip-series-group-hidden {\n opacity: 0;\n height: 0;\n line-height: 0;\n padding: 0 !important;\n}\n.apexcharts-tooltip-y-group {\n padding: 6px 0 5px;\n}\n.apexcharts-tooltip-candlestick {\n padding: 4px 8px;\n}\n.apexcharts-tooltip-candlestick > div {\n margin: 4px 0;\n}\n.apexcharts-tooltip-candlestick span.value {\n font-weight: bold;\n}\n\n.apexcharts-tooltip-rangebar {\n padding: 5px 8px;\n}\n\n.apexcharts-tooltip-rangebar .category {\n font-weight: 600;\n color: #777;\n}\n\n.apexcharts-tooltip-rangebar .series-name {\n font-weight: bold;\n display: block;\n margin-bottom: 5px;\n}\n\n.apexcharts-xaxistooltip {\n opacity: 0;\n padding: 9px 10px;\n pointer-events: none;\n color: #373d3f;\n font-size: 13px;\n text-align: center;\n border-radius: 2px;\n position: absolute;\n z-index: 10;\n\tbackground: #ECEFF1;\n border: 1px solid #90A4AE;\n transition: 0.15s ease all;\n}\n\n.apexcharts-xaxistooltip.dark {\n background: rgba(0, 0, 0, 0.7);\n border: 1px solid rgba(0, 0, 0, 0.5);\n color: #fff;\n}\n\n.apexcharts-xaxistooltip:after, .apexcharts-xaxistooltip:before {\n\tleft: 50%;\n\tborder: solid transparent;\n\tcontent: \" \";\n\theight: 0;\n\twidth: 0;\n\tposition: absolute;\n\tpointer-events: none;\n}\n\n.apexcharts-xaxistooltip:after {\n\tborder-color: rgba(236, 239, 241, 0);\n\tborder-width: 6px;\n\tmargin-left: -6px;\n}\n.apexcharts-xaxistooltip:before {\n\tborder-color: rgba(144, 164, 174, 0);\n\tborder-width: 7px;\n\tmargin-left: -7px;\n}\n\n.apexcharts-xaxistooltip-bottom:after, .apexcharts-xaxistooltip-bottom:before {\n bottom: 100%;\n}\n\n.apexcharts-xaxistooltip-top:after, .apexcharts-xaxistooltip-top:before {\n top: 100%;\n}\n\n.apexcharts-xaxistooltip-bottom:after {\n border-bottom-color: #ECEFF1;\n}\n.apexcharts-xaxistooltip-bottom:before {\n border-bottom-color: #90A4AE;\n}\n\n.apexcharts-xaxistooltip-bottom.dark:after {\n border-bottom-color: rgba(0, 0, 0, 0.5);\n}\n.apexcharts-xaxistooltip-bottom.dark:before {\n border-bottom-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip-top:after {\n border-top-color:#ECEFF1\n}\n.apexcharts-xaxistooltip-top:before {\n border-top-color: #90A4AE;\n}\n.apexcharts-xaxistooltip-top.dark:after {\n border-top-color:rgba(0, 0, 0, 0.5);\n}\n.apexcharts-xaxistooltip-top.dark:before {\n border-top-color: rgba(0, 0, 0, 0.5);\n}\n\n\n.apexcharts-xaxistooltip.active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-yaxistooltip {\n opacity: 0;\n padding: 4px 10px;\n pointer-events: none;\n color: #373d3f;\n font-size: 13px;\n text-align: center;\n border-radius: 2px;\n position: absolute;\n z-index: 10;\n\tbackground: #ECEFF1;\n border: 1px solid #90A4AE;\n}\n\n.apexcharts-yaxistooltip.dark {\n background: rgba(0, 0, 0, 0.7);\n border: 1px solid rgba(0, 0, 0, 0.5);\n color: #fff;\n}\n\n.apexcharts-yaxistooltip:after, .apexcharts-yaxistooltip:before {\n\ttop: 50%;\n\tborder: solid transparent;\n\tcontent: \" \";\n\theight: 0;\n\twidth: 0;\n\tposition: absolute;\n\tpointer-events: none;\n}\n.apexcharts-yaxistooltip:after {\n\tborder-color: rgba(236, 239, 241, 0);\n\tborder-width: 6px;\n\tmargin-top: -6px;\n}\n.apexcharts-yaxistooltip:before {\n\tborder-color: rgba(144, 164, 174, 0);\n\tborder-width: 7px;\n\tmargin-top: -7px;\n}\n\n.apexcharts-yaxistooltip-left:after, .apexcharts-yaxistooltip-left:before {\n left: 100%;\n}\n\n.apexcharts-yaxistooltip-right:after, .apexcharts-yaxistooltip-right:before {\n right: 100%;\n}\n\n.apexcharts-yaxistooltip-left:after {\n border-left-color: #ECEFF1;\n}\n.apexcharts-yaxistooltip-left:before {\n border-left-color: #90A4AE;\n}\n.apexcharts-yaxistooltip-left.dark:after {\n border-left-color: rgba(0, 0, 0, 0.5);\n}\n.apexcharts-yaxistooltip-left.dark:before {\n border-left-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip-right:after {\n border-right-color: #ECEFF1;\n}\n.apexcharts-yaxistooltip-right:before {\n border-right-color: #90A4AE;\n}\n.apexcharts-yaxistooltip-right.dark:after {\n border-right-color: rgba(0, 0, 0, 0.5);\n}\n.apexcharts-yaxistooltip-right.dark:before {\n border-right-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip.active {\n opacity: 1;\n}\n.apexcharts-yaxistooltip-hidden {\n display: none;\n}\n\n.apexcharts-xcrosshairs, .apexcharts-ycrosshairs {\n pointer-events: none;\n opacity: 0;\n transition: 0.15s ease all;\n}\n\n.apexcharts-xcrosshairs.active, .apexcharts-ycrosshairs.active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-ycrosshairs-hidden {\n opacity: 0;\n}\n\n.apexcharts-zoom-rect {\n pointer-events: none;\n}\n.apexcharts-selection-rect {\n cursor: move;\n}\n\n.svg_select_points, .svg_select_points_rot {\n opacity: 0;\n visibility: hidden;\n}\n.svg_select_points_l, .svg_select_points_r {\n cursor: ew-resize;\n opacity: 1;\n visibility: visible;\n fill: #888;\n}\n.apexcharts-canvas.zoomable .hovering-zoom {\n cursor: crosshair\n}\n.apexcharts-canvas.zoomable .hovering-pan {\n cursor: move\n}\n\n.apexcharts-xaxis,\n.apexcharts-yaxis {\n pointer-events: none;\n}\n\n.apexcharts-zoom-icon, \n.apexcharts-zoom-in-icon,\n.apexcharts-zoom-out-icon,\n.apexcharts-reset-zoom-icon, \n.apexcharts-pan-icon, \n.apexcharts-selection-icon,\n.apexcharts-menu-icon, \n.apexcharts-toolbar-custom-icon {\n cursor: pointer;\n width: 20px;\n height: 20px;\n line-height: 24px;\n color: #6E8192;\n text-align: center;\n}\n\n\n.apexcharts-zoom-icon svg, \n.apexcharts-zoom-in-icon svg,\n.apexcharts-zoom-out-icon svg,\n.apexcharts-reset-zoom-icon svg,\n.apexcharts-menu-icon svg {\n fill: #6E8192;\n}\n.apexcharts-selection-icon svg {\n fill: #444;\n transform: scale(0.76)\n}\n\n.dark .apexcharts-zoom-icon svg, \n.dark .apexcharts-zoom-in-icon svg,\n.dark .apexcharts-zoom-out-icon svg,\n.dark .apexcharts-reset-zoom-icon svg, \n.dark .apexcharts-pan-icon svg, \n.dark .apexcharts-selection-icon svg,\n.dark .apexcharts-menu-icon svg, \n.dark .apexcharts-toolbar-custom-icon svg{\n fill: #f3f4f5;\n}\n\n.apexcharts-canvas .apexcharts-zoom-icon.selected svg, \n.apexcharts-canvas .apexcharts-selection-icon.selected svg, \n.apexcharts-canvas .apexcharts-reset-zoom-icon.selected svg {\n fill: #008FFB;\n}\n.light .apexcharts-selection-icon:not(.selected):hover svg,\n.light .apexcharts-zoom-icon:not(.selected):hover svg, \n.light .apexcharts-zoom-in-icon:hover svg, \n.light .apexcharts-zoom-out-icon:hover svg, \n.light .apexcharts-reset-zoom-icon:hover svg, \n.light .apexcharts-menu-icon:hover svg {\n fill: #333;\n}\n\n.apexcharts-selection-icon, .apexcharts-menu-icon {\n position: relative;\n}\n.apexcharts-reset-zoom-icon {\n margin-left: 5px;\n}\n.apexcharts-zoom-icon, .apexcharts-reset-zoom-icon, .apexcharts-menu-icon {\n transform: scale(0.85);\n}\n\n.apexcharts-zoom-in-icon, .apexcharts-zoom-out-icon {\n transform: scale(0.7)\n}\n\n.apexcharts-zoom-out-icon {\n margin-right: 3px;\n}\n\n.apexcharts-pan-icon {\n transform: scale(0.62);\n position: relative;\n left: 1px;\n top: 0px;\n}\n.apexcharts-pan-icon svg {\n fill: #fff;\n stroke: #6E8192;\n stroke-width: 2;\n}\n.apexcharts-pan-icon.selected svg {\n stroke: #008FFB;\n}\n.apexcharts-pan-icon:not(.selected):hover svg {\n stroke: #333;\n}\n\n.apexcharts-toolbar {\n position: absolute;\n z-index: 11;\n top: 0px;\n right: 3px;\n max-width: 176px;\n text-align: right;\n border-radius: 3px;\n padding: 0px 6px 2px 6px;\n display: flex;\n justify-content: space-between;\n align-items: center; \n}\n\n.apexcharts-toolbar svg {\n pointer-events: none;\n}\n\n.apexcharts-menu {\n background: #fff;\n position: absolute;\n top: 100%;\n border: 1px solid #ddd;\n border-radius: 3px;\n padding: 3px;\n right: 10px;\n opacity: 0;\n min-width: 110px;\n transition: 0.15s ease all;\n pointer-events: none;\n}\n\n.apexcharts-menu.open {\n opacity: 1;\n pointer-events: all;\n transition: 0.15s ease all;\n}\n\n.apexcharts-menu-item {\n padding: 6px 7px;\n font-size: 12px;\n cursor: pointer;\n}\n.light .apexcharts-menu-item:hover {\n background: #eee;\n}\n.dark .apexcharts-menu {\n background: rgba(0, 0, 0, 0.7);\n color: #fff;\n}\n\n@media screen and (min-width: 768px) {\n .apexcharts-toolbar {\n /*opacity: 0;*/\n }\n\n .apexcharts-canvas:hover .apexcharts-toolbar {\n opacity: 1;\n } \n}\n\n.apexcharts-datalabel.hidden {\n opacity: 0;\n}\n\n.apexcharts-pie-label,\n.apexcharts-datalabel, .apexcharts-datalabel-label, .apexcharts-datalabel-value {\n cursor: default;\n pointer-events: none;\n}\n\n.apexcharts-pie-label-delay {\n opacity: 0;\n animation-name: opaque;\n animation-duration: 0.3s;\n animation-fill-mode: forwards;\n animation-timing-function: ease;\n}\n\n.apexcharts-canvas .hidden {\n opacity: 0;\n}\n\n.apexcharts-hide .apexcharts-series-points {\n opacity: 0;\n}\n\n.apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,\n.apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events, .apexcharts-radar-series path, .apexcharts-radar-series polygon {\n pointer-events: none;\n}\n\n/* markers */\n\n.apexcharts-marker {\n transition: 0.15s ease all;\n}\n\n@keyframes opaque {\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}"; + styleInject(css); + + /* + * classList.js: Cross-browser full element.classList implementation. + * 1.2.20171210 + * + * By Eli Grey, http://eligrey.com + * License: Dedicated to the public domain. + * See https://github.com/eligrey/classList.js/blob/master/LICENSE.md + */ + + /*global self, document, DOMException */ + + /*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js */ + if ("document" in self) { + // Full polyfill for browsers with no classList support + // Including IE < Edge missing SVGElement.classList + if (!("classList" in document.createElement("_")) || document.createElementNS && !("classList" in document.createElementNS("http://www.w3.org/2000/svg", "g"))) { + (function (view) { + + if (!('Element' in view)) return; + + var classListProp = "classList", + protoProp = "prototype", + elemCtrProto = view.Element[protoProp], + objCtr = Object, + strTrim = String[protoProp].trim || function () { + return this.replace(/^\s+|\s+$/g, ""); + }, + arrIndexOf = Array[protoProp].indexOf || function (item) { + var i = 0, + len = this.length; + + for (; i < len; i++) { + if (i in this && this[i] === item) { + return i; + } + } + + return -1; + } // Vendors: please allow content code to instantiate DOMExceptions + , + DOMEx = function DOMEx(type, message) { + this.name = type; + this.code = DOMException[type]; + this.message = message; + }, + checkTokenAndGetIndex = function checkTokenAndGetIndex(classList, token) { + if (token === "") { + throw new DOMEx("SYNTAX_ERR", "The token must not be empty."); + } + + if (/\s/.test(token)) { + throw new DOMEx("INVALID_CHARACTER_ERR", "The token must not contain space characters."); + } + + return arrIndexOf.call(classList, token); + }, + ClassList = function ClassList(elem) { + var trimmedClasses = strTrim.call(elem.getAttribute("class") || ""), + classes = trimmedClasses ? trimmedClasses.split(/\s+/) : [], + i = 0, + len = classes.length; + + for (; i < len; i++) { + this.push(classes[i]); + } + + this._updateClassName = function () { + elem.setAttribute("class", this.toString()); + }; + }, + classListProto = ClassList[protoProp] = [], + classListGetter = function classListGetter() { + return new ClassList(this); + }; // Most DOMException implementations don't allow calling DOMException's toString() + // on non-DOMExceptions. Error's toString() is sufficient here. + + + DOMEx[protoProp] = Error[protoProp]; + + classListProto.item = function (i) { + return this[i] || null; + }; + + classListProto.contains = function (token) { + return ~checkTokenAndGetIndex(this, token + ""); + }; + + classListProto.add = function () { + var tokens = arguments, + i = 0, + l = tokens.length, + token, + updated = false; + + do { + token = tokens[i] + ""; + + if (!~checkTokenAndGetIndex(this, token)) { + this.push(token); + updated = true; + } + } while (++i < l); + + if (updated) { + this._updateClassName(); + } + }; + + classListProto.remove = function () { + var tokens = arguments, + i = 0, + l = tokens.length, + token, + updated = false, + index; + + do { + token = tokens[i] + ""; + index = checkTokenAndGetIndex(this, token); + + while (~index) { + this.splice(index, 1); + updated = true; + index = checkTokenAndGetIndex(this, token); + } + } while (++i < l); + + if (updated) { + this._updateClassName(); + } + }; + + classListProto.toggle = function (token, force) { + var result = this.contains(token), + method = result ? force !== true && "remove" : force !== false && "add"; + + if (method) { + this[method](token); + } + + if (force === true || force === false) { + return force; + } else { + return !result; + } + }; + + classListProto.replace = function (token, replacement_token) { + var index = checkTokenAndGetIndex(token + ""); + + if (~index) { + this.splice(index, 1, replacement_token); + + this._updateClassName(); + } + }; + + classListProto.toString = function () { + return this.join(" "); + }; + + if (objCtr.defineProperty) { + var classListPropDesc = { + get: classListGetter, + enumerable: true, + configurable: true + }; + + try { + objCtr.defineProperty(elemCtrProto, classListProp, classListPropDesc); + } catch (ex) { + // IE 8 doesn't support enumerable:true + // adding undefined to fight this issue https://github.com/eligrey/classList.js/issues/36 + // modernie IE8-MSW7 machine has IE8 8.0.6001.18702 and is affected + if (ex.number === undefined || ex.number === -0x7FF5EC54) { + classListPropDesc.enumerable = false; + objCtr.defineProperty(elemCtrProto, classListProp, classListPropDesc); + } + } + } else if (objCtr[protoProp].__defineGetter__) { + elemCtrProto.__defineGetter__(classListProp, classListGetter); + } + })(self); + } // There is full or partial native classList support, so just check if we need + // to normalize the add/remove and toggle APIs. + + + (function () { + + var testElement = document.createElement("_"); + testElement.classList.add("c1", "c2"); // Polyfill for IE 10/11 and Firefox <26, where classList.add and + // classList.remove exist but support only one argument at a time. + + if (!testElement.classList.contains("c2")) { + var createMethod = function createMethod(method) { + var original = DOMTokenList.prototype[method]; + + DOMTokenList.prototype[method] = function (token) { + var i, + len = arguments.length; + + for (i = 0; i < len; i++) { + token = arguments[i]; + original.call(this, token); + } + }; + }; + + createMethod('add'); + createMethod('remove'); + } + + testElement.classList.toggle("c3", false); // Polyfill for IE 10 and Firefox <24, where classList.toggle does not + // support the second argument. + + if (testElement.classList.contains("c3")) { + var _toggle = DOMTokenList.prototype.toggle; + + DOMTokenList.prototype.toggle = function (token, force) { + if (1 in arguments && !this.contains(token) === !force) { + return force; + } else { + return _toggle.call(this, token); + } + }; + } // replace() polyfill + + + if (!("replace" in document.createElement("_").classList)) { + DOMTokenList.prototype.replace = function (token, replacement_token) { + var tokens = this.toString().split(" "), + index = tokens.indexOf(token + ""); + + if (~index) { + tokens = tokens.slice(index); + this.remove.apply(this, tokens); + this.add(replacement_token); + this.add.apply(this, tokens.slice(1)); + } + }; + } + + testElement = null; + })(); + } + + /** + * Detect Element Resize + * + * https://github.com/sdecima/javascript-detect-element-resize + * Sebastian Decima + * + * version: 0.5.3 + **/ + (function () { + var stylesCreated = false; + + function resetTriggers(element) { + var triggers = element.__resizeTriggers__, + expand = triggers.firstElementChild, + contract = triggers.lastElementChild, + expandChild = expand.firstElementChild; + contract.scrollLeft = contract.scrollWidth; + contract.scrollTop = contract.scrollHeight; + expandChild.style.width = expand.offsetWidth + 1 + 'px'; + expandChild.style.height = expand.offsetHeight + 1 + 'px'; + expand.scrollLeft = expand.scrollWidth; + expand.scrollTop = expand.scrollHeight; + } + + function checkTriggers(element) { + return element.offsetWidth != element.__resizeLast__.width || element.offsetHeight != element.__resizeLast__.height; + } + + function scrollListener(e) { + var element = this; + resetTriggers(this); + if (this.__resizeRAF__) cancelFrame(this.__resizeRAF__); + this.__resizeRAF__ = requestFrame(function () { + if (checkTriggers(element)) { + element.__resizeLast__.width = element.offsetWidth; + element.__resizeLast__.height = element.offsetHeight; + + element.__resizeListeners__.forEach(function (fn) { + fn.call(e); + }); + } + }); + } + + function createStyles() { + if (!stylesCreated) { + // opacity:0 works around a chrome bug https://code.google.com/p/chromium/issues/detail?id=286360 + var css = (animationKeyframes || '') + '.resize-triggers { ' + (animationStyle || '') + 'visibility: hidden; opacity: 0; } ' + '.resize-triggers, .resize-triggers > div, .contract-trigger:before { content: \" \"; display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; } .resize-triggers > div { background: #eee; overflow: auto; } .contract-trigger:before { width: 200%; height: 200%; }', + head = document.head || document.getElementsByTagName('head')[0], + style = document.createElement('style'); + style.type = 'text/css'; + + if (style.styleSheet) { + style.styleSheet.cssText = css; + } else { + style.appendChild(document.createTextNode(css)); + } + + head.appendChild(style); + stylesCreated = true; + } + } + + var requestFrame = function () { + var raf = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || function (fn) { + return window.setTimeout(fn, 20); + }; + + return function (fn) { + return raf(fn); + }; + }(); + + var cancelFrame = function () { + var cancel = window.cancelAnimationFrame || window.mozCancelAnimationFrame || window.webkitCancelAnimationFrame || window.clearTimeout; + return function (id) { + return cancel(id); + }; + }(); + /* Detect CSS Animations support to detect element display/re-attach */ + + + var animation = false, + keyframeprefix = '', + animationstartevent = 'animationstart', + domPrefixes = 'Webkit Moz O ms'.split(' '), + startEvents = 'webkitAnimationStart animationstart oAnimationStart MSAnimationStart'.split(' '), + pfx = ''; + { + var elm = document.createElement('fakeelement'); + + if (elm.style.animationName !== undefined) { + animation = true; + } + + if (animation === false) { + for (var i = 0; i < domPrefixes.length; i++) { + if (elm.style[domPrefixes[i] + 'AnimationName'] !== undefined) { + pfx = domPrefixes[i]; + keyframeprefix = '-' + pfx.toLowerCase() + '-'; + animationstartevent = startEvents[i]; + break; + } + } + } + } + var animationName = 'resizeanim'; + var animationKeyframes = '@' + keyframeprefix + 'keyframes ' + animationName + ' { from { opacity: 0; } to { opacity: 0; } } '; + var animationStyle = keyframeprefix + 'animation: 1ms ' + animationName + '; '; + + window.addResizeListener = function (element, fn) { + if (!element.__resizeTriggers__) { + if (getComputedStyle(element).position == 'static') element.style.position = 'relative'; + createStyles(); + element.__resizeLast__ = {}; + element.__resizeListeners__ = []; + (element.__resizeTriggers__ = document.createElement('div')).className = 'resize-triggers'; + element.__resizeTriggers__.innerHTML = '
    ' + '
    '; + element.appendChild(element.__resizeTriggers__); + resetTriggers(element); + element.addEventListener('scroll', scrollListener, true); + /* Listen for a css animation to detect element display/re-attach */ + + animationstartevent && element.__resizeTriggers__.addEventListener(animationstartevent, function (e) { + if (e.animationName == animationName) { + resetTriggers(element); + } + }); + } + + element.__resizeListeners__.push(fn); + }; + + window.removeResizeListener = function (element, fn) { + if (element) { + element.__resizeListeners__.splice(element.__resizeListeners__.indexOf(fn), 1); + + if (!element.__resizeListeners__.length) { + element.removeEventListener('scroll', scrollListener); + element.__resizeTriggers__ = !element.removeChild(element.__resizeTriggers__); + } + } + }; + })(); + + window.Apex = {}; + /** + * + * @module ApexCharts + **/ + + var ApexCharts$1 = + /*#__PURE__*/ + function () { + function ApexCharts(el, opts) { + _classCallCheck(this, ApexCharts); + + this.opts = opts; + this.ctx = this; // Pass the user supplied options to the Base Class where these options will be extended with defaults. The returned object from Base Class will become the config object in the entire codebase. + + this.w = new Base(opts).init(); + this.el = el; + this.w.globals.cuid = (Math.random() + 1).toString(36).substring(4); + this.w.globals.chartID = this.w.config.chart.id ? this.w.config.chart.id : this.w.globals.cuid; + this.eventList = ['mousedown', 'mousemove', 'touchstart', 'touchmove', 'mouseup', 'touchend']; + this.initModules(); + this.create = Utils.bind(this.create, this); + this.documentEvent = Utils.bind(this.documentEvent, this); + this.windowResizeHandler = this.windowResize.bind(this); + } + /** + * The primary method user will call to render the chart. + */ + + + _createClass(ApexCharts, [{ + key: "render", + value: function render() { + var _this = this; + + // main method + return new Promise$1(function (resolve, reject) { + // only draw chart, if element found + if (_this.el !== null) { + if (typeof Apex._chartInstances === 'undefined') { + Apex._chartInstances = []; + } + + if (_this.w.config.chart.id) { + Apex._chartInstances.push({ + id: _this.w.globals.chartID, + group: _this.w.config.chart.group, + chart: _this + }); + } // set the locale here + + + _this.setLocale(_this.w.config.chart.defaultLocale); + + var beforeMount = _this.w.config.chart.events.beforeMount; + + if (typeof beforeMount === 'function') { + beforeMount(_this, _this.w); + } + + _this.fireEvent('beforeMount', [_this, _this.w]); + + window.addEventListener('resize', _this.windowResizeHandler); + window.addResizeListener(_this.el.parentNode, _this.parentResizeCallback.bind(_this)); + + var graphData = _this.create(_this.w.config.series, {}); + + if (!graphData) return resolve(_this); + + _this.mount(graphData).then(function () { + resolve(graphData); + + if (typeof _this.w.config.chart.events.mounted === 'function') { + _this.w.config.chart.events.mounted(_this, _this.w); + } + + _this.fireEvent('mounted', [_this, _this.w]); + }).catch(function (e) { + reject(e); // handle error in case no data or element not found + }); + } else { + reject(new Error('Element not found')); + } + }); + } + }, { + key: "initModules", + value: function initModules() { + this.animations = new Animations(this); + this.core = new Core(this.el, this); + this.grid = new Grid(this); + this.coreUtils = new CoreUtils(this); + this.config = new Config({}); + this.crosshairs = new Crosshairs(this); + this.options = new Options(); + this.responsive = new Responsive(this); + this.series = new Series(this); + this.theme = new Theme(this); + this.formatters = new Formatters(this); + this.titleSubtitle = new TitleSubtitle(this); + this.legend = new Legend(this); + this.toolbar = new Toolbar(this); + this.dimensions = new Dimensions(this); + this.zoomPanSelection = new ZoomPanSelection(this); + this.w.globals.tooltip = new Tooltip(this); + } + }, { + key: "addEventListener", + value: function addEventListener(name$$1, handler) { + var w = this.w; + + if (w.globals.events.hasOwnProperty(name$$1)) { + w.globals.events[name$$1].push(handler); + } else { + w.globals.events[name$$1] = [handler]; + } + } + }, { + key: "removeEventListener", + value: function removeEventListener(name$$1, handler) { + var w = this.w; + + if (!w.globals.events.hasOwnProperty(name$$1)) { + return; + } + + var index = w.globals.events[name$$1].indexOf(handler); + + if (index !== -1) { + w.globals.events[name$$1].splice(index, 1); + } + } + }, { + key: "fireEvent", + value: function fireEvent(name$$1, args) { + var w = this.w; + + if (!w.globals.events.hasOwnProperty(name$$1)) { + return; + } + + if (!args || !args.length) { + args = []; + } + + var evs = w.globals.events[name$$1]; + var l = evs.length; + + for (var i = 0; i < l; i++) { + evs[i].apply(null, args); + } + } + }, { + key: "create", + value: function create(ser, opts) { + var w = this.w; + this.initModules(); + var gl = this.w.globals; + gl.noData = false; + gl.animationEnded = false; + this.responsive.checkResponsiveConfig(opts); + + if (this.el === null) { + gl.animationEnded = true; + return null; + } + + this.core.setupElements(); + + if (gl.svgWidth === 0) { + // if the element is hidden, skip drawing + gl.animationEnded = true; + return null; + } + + var combo = CoreUtils.checkComboSeries(ser); + gl.comboCharts = combo.comboCharts; + gl.comboChartsHasBars = combo.comboChartsHasBars; + + if (ser.length === 0 || ser.length === 1 && ser[0].data && ser[0].data.length === 0) { + this.series.handleNoData(); + } + + this.setupEventHandlers(); // Handle the data inputted by user and set some of the global variables (for eg, if data is datetime / numeric / category). Don't calculate the range / min / max at this time + + this.core.parseData(ser); // this is a good time to set theme colors first + + this.theme.init(); // as markers accepts array, we need to setup global markers for easier access + + var markers = new Markers(this); + markers.setGlobalMarkerSize(); // labelFormatters should be called before dimensions as in dimensions we need text labels width + + this.formatters.setLabelFormatters(); + this.titleSubtitle.draw(); // legend is calculated here before coreCalculations because it affects the plottable area + + if (!w.globals.noData) { + this.legend.init(); + } // check whether in multiple series, all series share the same X + + + this.series.hasAllSeriesEqualX(); // coreCalculations will give the min/max range and yaxis/axis values. It should be called here to set series variable from config to globals + + if (gl.axisCharts) { + this.core.coreCalculations(); + + if (w.config.xaxis.type !== 'category') { + // as we have minX and maxX values, determine the default DateTimeFormat for time series + this.formatters.setLabelFormatters(); + } + } // we need to generate yaxis for heatmap separately as we are not showing numerics there, but seriesNames. There are some tweaks which are required for heatmap to align labels correctly which are done in below function + // Also we need to do this before calcuting Dimentions plotCoords() method of Dimensions + + + this.formatters.heatmapLabelFormatters(); // We got plottable area here, next task would be to calculate axis areas + + this.dimensions.plotCoords(); + var xyRatios = this.core.xySettings(); + this.grid.createGridMask(); + var elGraph = this.core.plotChartType(ser, xyRatios); // after all the drawing calculations, shift the graphical area (actual charts/bars) excluding legends + + this.core.shiftGraphPosition(); + var dim = { + plot: { + left: w.globals.translateX, + top: w.globals.translateY, + width: w.globals.gridWidth, + height: w.globals.gridHeight + } + }; + return { + elGraph: elGraph, + xyRatios: xyRatios, + elInner: w.globals.dom.elGraphical, + dimensions: dim + }; + } + }, { + key: "mount", + value: function mount() { + var graphData = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var me = this; + var w = me.w; + return new Promise$1(function (resolve, reject) { + // no data to display + if (me.el === null) { + return reject(new Error('Not enough data to display or target element not found')); + } else if (graphData === null || w.globals.allSeriesCollapsed) { + me.series.handleNoData(); + } + + me.annotations = new Annotations(me); + me.core.drawAxis(w.config.chart.type, graphData.xyRatios); + me.grid = new Grid(me); + + if (w.config.grid.position === 'back') { + me.grid.drawGrid(); + } + + if (w.config.annotations.position === 'back') { + me.annotations.drawAnnotations(); + } + + if (graphData.elGraph instanceof Array) { + for (var g = 0; g < graphData.elGraph.length; g++) { + w.globals.dom.elGraphical.add(graphData.elGraph[g]); + } + } else { + w.globals.dom.elGraphical.add(graphData.elGraph); + } + + if (w.config.grid.position === 'front') { + me.grid.drawGrid(); + } + + if (w.config.xaxis.crosshairs.position === 'front') { + me.crosshairs.drawXCrosshairs(); + } + + if (w.config.yaxis[0].crosshairs.position === 'front') { + me.crosshairs.drawYCrosshairs(); + } + + if (w.config.annotations.position === 'front') { + me.annotations.drawAnnotations(); + } + + if (!w.globals.noData) { + // draw tooltips at the end + if (w.config.tooltip.enabled && !w.globals.noData) { + me.w.globals.tooltip.drawTooltip(graphData.xyRatios); + } + + if (w.globals.axisCharts && w.globals.isXNumeric) { + if (w.config.chart.zoom.enabled || w.config.chart.selection && w.config.chart.selection.enabled || w.config.chart.pan && w.config.chart.pan.enabled) { + me.zoomPanSelection.init({ + xyRatios: graphData.xyRatios + }); + } + } else { + var tools = w.config.chart.toolbar.tools; + tools.zoom = false; + tools.zoomin = false; + tools.zoomout = false; + tools.selection = false; + tools.pan = false; + tools.reset = false; + } + + if (w.config.chart.toolbar.show && !w.globals.allSeriesCollapsed) { + me.toolbar.createToolbar(); + } + } + + if (w.globals.memory.methodsToExec.length > 0) { + w.globals.memory.methodsToExec.forEach(function (fn) { + fn.method(fn.params, false, fn.context); + }); + } + + if (!w.globals.axisCharts && !w.globals.noData) { + me.core.resizeNonAxisCharts(); + } + + resolve(me); + }); + } + }, { + key: "clearPreviousPaths", + value: function clearPreviousPaths() { + var w = this.w; + w.globals.previousPaths = []; + w.globals.allSeriesCollapsed = false; + w.globals.collapsedSeries = []; + w.globals.collapsedSeriesIndices = []; + } + /** + * Allows users to update Options after the chart has rendered. + * + * @param {object} options - A new config object can be passed which will be merged with the existing config object + * @param {boolean} redraw - should redraw from beginning or should use existing paths and redraw from there + * @param {boolean} animate - should animate or not on updating Options + */ + + }, { + key: "updateOptions", + value: function updateOptions(options$$1) { + var redraw = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + var animate = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; + var updateSyncedCharts = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; + var overwriteInitialConfig = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; + var w = this.w; + + if (options$$1.series) { + this.resetSeries(false); + + if (options$$1.series.length && options$$1.series[0].data) { + options$$1.series = options$$1.series.map(function (s, i) { + return _objectSpread({}, w.config.series[i], { + name: s.name ? s.name : w.config.series[i] && w.config.series[i].name, + type: s.type ? s.type : w.config.series[i] && w.config.series[i].type, + data: s.data ? s.data : w.config.series[i] && w.config.series[i].data + }); + }); + } // user updated the series via updateOptions() function. + // Hence, we need to reset axis min/max to avoid zooming issues + + + this.revertDefaultAxisMinMax(); + } // user has set x-axis min/max externally - hence we need to forcefully set the xaxis min/max + + + if (options$$1.xaxis) { + if (options$$1.xaxis.min || options$$1.xaxis.max) { + this.forceXAxisUpdate(options$$1); + } + /* fixes apexcharts.js#369 and react-apexcharts#46 */ + + + if (options$$1.xaxis.categories && options$$1.xaxis.categories.length && w.config.xaxis.convertedCatToNumeric) { + options$$1 = Defaults.convertCatToNumeric(options$$1); + } + } + + if (w.globals.collapsedSeriesIndices.length > 0) { + this.clearPreviousPaths(); + } + /* update theme mode#459 */ + + + if (options$$1.theme) { + options$$1 = this.theme.updateThemeOptions(options$$1); + } + + return this._updateOptions(options$$1, redraw, animate, updateSyncedCharts, overwriteInitialConfig); + } + /** + * private method to update Options. + * + * @param {object} options - A new config object can be passed which will be merged with the existing config object + * @param {boolean} redraw - should redraw from beginning or should use existing paths and redraw from there + * @param {boolean} animate - should animate or not on updating Options + * @param {boolean} overwriteInitialConfig - should update the initial config or not + */ + + }, { + key: "_updateOptions", + value: function _updateOptions(options$$1) { + var redraw = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + var animate = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; + var updateSyncedCharts = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; + var overwriteInitialConfig = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false; + var charts = [this]; + + if (updateSyncedCharts) { + charts = this.getSyncedCharts(); + } + + if (this.w.globals.isExecCalled) { + // If the user called exec method, we don't want to get grouped charts as user specifically provided a chartID to update + charts = [this]; + this.w.globals.isExecCalled = false; + } + + charts.forEach(function (ch) { + var w = ch.w; + w.globals.shouldAnimate = animate; + + if (!redraw) { + w.globals.resized = true; + w.globals.dataChanged = true; + + if (animate) { + ch.series.getPreviousPaths(); + } + } + + if (options$$1 && _typeof(options$$1) === 'object') { + ch.config = new Config(options$$1); + options$$1 = CoreUtils.extendArrayProps(ch.config, options$$1); + w.config = Utils.extend(w.config, options$$1); + + if (overwriteInitialConfig) { + // we need to forget the lastXAxis and lastYAxis is user forcefully overwriteInitialConfig. If we do not do this, and next time when user zooms the chart after setting yaxis.min/max or xaxis.min/max - the stored lastXAxis will never allow the chart to use the updated min/max by user. + w.globals.lastXAxis = []; + w.globals.lastYAxis = []; // After forgetting lastAxes, we need to restore the new config in initialConfig/initialSeries + + w.globals.initialConfig = Utils.extend({}, w.config); + w.globals.initialSeries = JSON.parse(JSON.stringify(w.config.series)); + } + } + + return ch.update(options$$1); + }); + } + /** + * Allows users to update Series after the chart has rendered. + * + * @param {array} series - New series which will override the existing + */ + + }, { + key: "updateSeries", + value: function updateSeries() { + var newSeries = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; + var animate = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; + var overwriteInitialSeries = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; + this.resetSeries(false); + this.revertDefaultAxisMinMax(); + return this._updateSeries(newSeries, animate, overwriteInitialSeries); + } + /** + * Allows users to append a new series after the chart has rendered. + * + * @param {array} newSerie - New serie which will be appended to the existing series + */ + + }, { + key: "appendSeries", + value: function appendSeries(newSerie) { + var animate = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; + var overwriteInitialSeries = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; + var newSeries = this.w.config.series.slice(); + newSeries.push(newSerie); + this.resetSeries(false); + this.revertDefaultAxisMinMax(); + return this._updateSeries(newSeries, animate, overwriteInitialSeries); + } + /** + * Private method to update Series. + * + * @param {array} series - New series which will override the existing + */ + + }, { + key: "_updateSeries", + value: function _updateSeries(newSeries, animate) { + var overwriteInitialSeries = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; + var w = this.w; + this.w.globals.shouldAnimate = animate; + w.globals.dataChanged = true; // if user has collapsed some series with legend, we need to clear those + + if (w.globals.allSeriesCollapsed) { + w.globals.allSeriesCollapsed = false; + } + + if (animate) { + this.series.getPreviousPaths(); + } + + var existingSeries; // axis charts + + if (w.globals.axisCharts) { + existingSeries = newSeries.map(function (s, i) { + return _objectSpread({}, w.config.series[i], { + name: s.name ? s.name : w.config.series[i] && w.config.series[i].name, + type: s.type ? s.type : w.config.series[i] && w.config.series[i].type, + data: s.data ? s.data : w.config.series[i] && w.config.series[i].data + }); + }); + + if (existingSeries.length === 0) { + existingSeries = [{ + data: [] + }]; + } + + w.config.series = existingSeries; + } else { + // non-axis chart (pie/radialbar) + w.config.series = newSeries.slice(); + } + + if (overwriteInitialSeries) { + w.globals.initialConfig.series = JSON.parse(JSON.stringify(w.config.series)); + w.globals.initialSeries = JSON.parse(JSON.stringify(w.config.series)); + } + + return this.update(); + } + /** + * Get all charts in the same "group" (including the instance which is called upon) to sync them when user zooms in/out or pan. + */ + + }, { + key: "getSyncedCharts", + value: function getSyncedCharts() { + var chartGroups = this.getGroupedCharts(); + var allCharts = [this]; + + if (chartGroups.length) { + allCharts = []; + chartGroups.forEach(function (ch) { + allCharts.push(ch); + }); + } + + return allCharts; + } + /** + * Get charts in the same "group" (excluding the instance which is called upon) to perform operations on the other charts of the same group (eg., tooltip hovering) + */ + + }, { + key: "getGroupedCharts", + value: function getGroupedCharts() { + var _this2 = this; + + return Apex._chartInstances.filter(function (ch) { + if (ch.group) { + return true; + } + }).map(function (ch) { + return _this2.w.config.chart.group === ch.group ? ch.chart : _this2; + }); + } + /** + * Allows users to append Data to series. + * + * @param {array} newData - New data in the same format as series + */ + + }, { + key: "appendData", + value: function appendData(newData) { + var overwriteInitialSeries = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; + var me = this; + me.w.globals.dataChanged = true; + me.series.getPreviousPaths(); + var newSeries = me.w.config.series.slice(); + + for (var i = 0; i < newSeries.length; i++) { + if (typeof newData[i] !== 'undefined') { + for (var j = 0; j < newData[i].data.length; j++) { + newSeries[i].data.push(newData[i].data[j]); + } + } + } + + me.w.config.series = newSeries; + + if (overwriteInitialSeries) { + me.w.globals.initialSeries = JSON.parse(JSON.stringify(me.w.config.series)); + } + + return this.update(); + } + }, { + key: "update", + value: function update(options$$1) { + var _this3 = this; + + return new Promise$1(function (resolve, reject) { + _this3.clear(); + + var graphData = _this3.create(_this3.w.config.series, options$$1); + + if (!graphData) return resolve(_this3); + + _this3.mount(graphData).then(function () { + if (typeof _this3.w.config.chart.events.updated === 'function') { + _this3.w.config.chart.events.updated(_this3, _this3.w); + } + + _this3.fireEvent('updated', [_this3, _this3.w]); + + _this3.w.globals.isDirty = true; + resolve(_this3); + }).catch(function (e) { + reject(e); + }); + }); + } + }, { + key: "forceXAxisUpdate", + value: function forceXAxisUpdate(options$$1) { + var w = this.w; + + if (typeof options$$1.xaxis.min !== 'undefined') { + w.config.xaxis.min = options$$1.xaxis.min; + w.globals.lastXAxis.min = options$$1.xaxis.min; + } + + if (typeof options$$1.xaxis.max !== 'undefined') { + w.config.xaxis.max = options$$1.xaxis.max; + w.globals.lastXAxis.max = options$$1.xaxis.max; + } + } + /** + * This function reverts the yaxis and xaxis min/max values to what it was when the chart was defined. + * This function fixes an important bug where a user might load a new series after zooming in/out of previous series which resulted in wrong min/max + * Also, this should never be called internally on zoom/pan - the reset should only happen when user calls the updateSeries() function externally + */ + + }, { + key: "revertDefaultAxisMinMax", + value: function revertDefaultAxisMinMax() { + var w = this.w; + w.config.xaxis.min = w.globals.lastXAxis.min; + w.config.xaxis.max = w.globals.lastXAxis.max; + w.config.yaxis.map(function (yaxe, index) { + if (w.globals.zoomed) { + // if user has zoomed, and this function is called + // then we need to get the lastAxis min and max + if (typeof w.globals.lastYAxis[index] !== 'undefined') { + yaxe.min = w.globals.lastYAxis[index].min; + yaxe.max = w.globals.lastYAxis[index].max; + } + } + }); + } + }, { + key: "clear", + value: function clear() { + if (this.zoomPanSelection) { + this.zoomPanSelection.destroy(); + } + + if (this.toolbar) { + this.toolbar.destroy(); + } + + this.animations = null; + this.annotations = null; + this.core = null; + this.grid = null; + this.series = null; + this.responsive = null; + this.theme = null; + this.formatters = null; + this.titleSubtitle = null; + this.legend = null; + this.dimensions = null; + this.options = null; + this.crosshairs = null; + this.zoomPanSelection = null; + this.toolbar = null; + this.w.globals.tooltip = null; + this.clearDomElements(); + } + }, { + key: "killSVG", + value: function killSVG(draw) { + return new Promise$1(function (resolve, reject) { + draw.each(function (i, children) { + this.removeClass('*'); + this.off(); + this.stop(); + }, true); + draw.ungroup(); + draw.clear(); + resolve('done'); + }); + } + }, { + key: "clearDomElements", + value: function clearDomElements() { + var _this4 = this; + + // detach document event + this.eventList.forEach(function (event) { + document.removeEventListener(event, _this4.documentEvent); + }); + var domEls = this.w.globals.dom; + + if (this.el !== null) { + // remove all child elements - resetting the whole chart + while (this.el.firstChild) { + this.el.removeChild(this.el.firstChild); + } + } + + this.killSVG(domEls.Paper); + domEls.Paper.remove(); + domEls.elWrap = null; + domEls.elGraphical = null; + domEls.elLegendWrap = null; + domEls.baseEl = null; + domEls.elGridRect = null; + domEls.elGridRectMask = null; + domEls.elGridRectMarkerMask = null; + domEls.elDefs = null; + } + /** + * Destroy the chart instance by removing all elements which also clean up event listeners on those elements. + */ + + }, { + key: "destroy", + value: function destroy() { + this.clear(); // remove the chart's instance from the global Apex._chartInstances + + var chartID = this.w.config.chart.id; + + if (chartID) { + Apex._chartInstances.forEach(function (c, i) { + if (c.id === chartID) { + Apex._chartInstances.splice(i, 1); + } + }); + } + + window.removeEventListener('resize', this.windowResizeHandler); + window.removeResizeListener(this.el.parentNode, this.parentResizeCallback.bind(this)); + } + /** + * Allows the user to provide data attrs in the element and the chart will render automatically when this method is called by searching for the elements containing 'data-apexcharts' attribute + */ + + }, { + key: "toggleSeries", + value: function toggleSeries(seriesName) { + var targetElement = this.series.getSeriesByName(seriesName); + var seriesCnt = parseInt(targetElement.getAttribute('data:realIndex')); + var isHidden = targetElement.classList.contains('apexcharts-series-collapsed'); + this.legend.toggleDataSeries(seriesCnt, isHidden); + } + }, { + key: "resetSeries", + value: function resetSeries() { + var shouldUpdateChart = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; + this.series.resetSeries(shouldUpdateChart); + } + }, { + key: "setupEventHandlers", + value: function setupEventHandlers() { + var _this5 = this; + + var w = this.w; + var me = this; + var clickableArea = w.globals.dom.baseEl.querySelector(w.globals.chartClass); + this.eventListHandlers = []; + this.eventList.forEach(function (event) { + clickableArea.addEventListener(event, function (e) { + var opts = Object.assign({}, w, { + seriesIndex: w.globals.capturedSeriesIndex, + dataPointIndex: w.globals.capturedDataPointIndex + }); + + if (e.type === 'mousemove' || e.type === 'touchmove') { + if (typeof w.config.chart.events.mouseMove === 'function') { + w.config.chart.events.mouseMove(e, me, opts); + } + } else if (e.type === 'mouseup' && e.which === 1 || e.type === 'touchend') { + if (typeof w.config.chart.events.click === 'function') { + w.config.chart.events.click(e, me, opts); + } + + me.fireEvent('click', [e, me, opts]); + } + }, { + capture: false, + passive: true + }); + }); + this.eventList.forEach(function (event) { + document.addEventListener(event, _this5.documentEvent); + }); + this.core.setupBrushHandler(); + } + }, { + key: "documentEvent", + value: function documentEvent(e) { + var w = this.w; + w.globals.clientX = e.type === 'touchmove' ? e.touches[0].clientX : e.clientX; + w.globals.clientY = e.type === 'touchmove' ? e.touches[0].clientY : e.clientY; + } + }, { + key: "addXaxisAnnotation", + value: function addXaxisAnnotation(opts) { + var pushToMemory = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; + var context = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : undefined; + var me = this; + + if (context) { + me = context; + } + + me.annotations.addXaxisAnnotationExternal(opts, pushToMemory, me); + } + }, { + key: "addYaxisAnnotation", + value: function addYaxisAnnotation(opts) { + var pushToMemory = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; + var context = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : undefined; + var me = this; + + if (context) { + me = context; + } + + me.annotations.addYaxisAnnotationExternal(opts, pushToMemory, me); + } + }, { + key: "addPointAnnotation", + value: function addPointAnnotation(opts) { + var pushToMemory = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; + var context = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : undefined; + var me = this; + + if (context) { + me = context; + } + + me.annotations.addPointAnnotationExternal(opts, pushToMemory, me); + } + }, { + key: "clearAnnotations", + value: function clearAnnotations() { + var context = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : undefined; + var me = this; + + if (context) { + me = context; + } + + me.annotations.clearAnnotations(me); + } // This method is never used internally and will be only called externally on the chart instance. + // Hence, we need to keep all these elements in memory when the chart gets updated and redraw again + + }, { + key: "addText", + value: function addText(options$$1) { + var pushToMemory = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; + var context = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : undefined; + var me = this; + + if (context) { + me = context; + } + + me.annotations.addText(options$$1, pushToMemory, me); + } + }, { + key: "getChartArea", + value: function getChartArea() { + var el = this.w.globals.dom.baseEl.querySelector('.apexcharts-inner'); + return el; + } + }, { + key: "getSeriesTotalXRange", + value: function getSeriesTotalXRange(minX, maxX) { + return this.coreUtils.getSeriesTotalsXRange(minX, maxX); + } + }, { + key: "getHighestValueInSeries", + value: function getHighestValueInSeries() { + var seriesIndex = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0; + var range = new Range$1(this.ctx); + var minYmaxY = range.getMinYMaxY(seriesIndex); + return minYmaxY.highestY; + } + }, { + key: "getLowestValueInSeries", + value: function getLowestValueInSeries() { + var seriesIndex = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0; + var range = new Range$1(this.ctx); + var minYmaxY = range.getMinYMaxY(seriesIndex); + return minYmaxY.lowestY; + } + }, { + key: "getSeriesTotal", + value: function getSeriesTotal() { + return this.w.globals.seriesTotals; + } + }, { + key: "setLocale", + value: function setLocale(localeName) { + this.setCurrentLocaleValues(localeName); + } + }, { + key: "toggleDataPointSelection", + value: function toggleDataPointSelection(seriesIndex, dataPointIndex) { + var w = this.w; + var elPath = null; + + if (w.globals.axisCharts) { + elPath = w.globals.dom.Paper.select(".apexcharts-series[data\\:realIndex='".concat(seriesIndex, "'] path[j='").concat(dataPointIndex, "'], .apexcharts-series[data\\:realIndex='").concat(seriesIndex, "'] circle[j='").concat(dataPointIndex, "'], .apexcharts-series[data\\:realIndex='").concat(seriesIndex, "'] rect[j='").concat(dataPointIndex, "']")).members[0]; + } else { + elPath = w.globals.dom.Paper.select(".apexcharts-series[data\\:realIndex='".concat(seriesIndex, "']")).members[0]; + + if (w.config.chart.type === 'pie' || w.config.chart.type === 'donut') { + var pie = new Pie(this.ctx); + pie.pieClicked(seriesIndex); + } + } + + if (elPath) { + var graphics = new Graphics(this.ctx); + graphics.pathMouseDown(elPath, null); + } else { + console.warn('toggleDataPointSelection: Element not found'); + } + + return elPath.node ? elPath.node : null; + } + }, { + key: "setCurrentLocaleValues", + value: function setCurrentLocaleValues(localeName) { + var locales = this.w.config.chart.locales; // check if user has specified locales in global Apex variable + // if yes - then extend those with local chart's locale + + if (window.Apex.chart && window.Apex.chart.locales && window.Apex.chart.locales.length > 0) { + locales = this.w.config.chart.locales.concat(window.Apex.chart.locales); + } // find the locale from the array of locales which user has set (either by chart.defaultLocale or by calling setLocale() method.) + + + var selectedLocale = locales.filter(function (c) { + return c.name === localeName; + })[0]; + + if (selectedLocale) { + // create a complete locale object by extending defaults so you don't get undefined errors. + var ret = Utils.extend(en, selectedLocale); // store these locale options in global var for ease access + + this.w.globals.locale = ret.options; + } else { + throw new Error('Wrong locale name provided. Please make sure you set the correct locale name in options'); + } + } + }, { + key: "dataURI", + value: function dataURI() { + var exp = new Exports(this.ctx); + return exp.dataURI(); + } + }, { + key: "paper", + value: function paper() { + return this.w.globals.dom.Paper; + } + }, { + key: "parentResizeCallback", + value: function parentResizeCallback() { + if (this.w.globals.animationEnded) { + this.windowResize(); + } + } + /** + * Handle window resize and re-draw the whole chart. + */ + + }, { + key: "windowResize", + value: function windowResize() { + var _this6 = this; + + clearTimeout(this.w.globals.resizeTimer); + this.w.globals.resizeTimer = window.setTimeout(function () { + _this6.w.globals.resized = true; + _this6.w.globals.dataChanged = false; // we need to redraw the whole chart on window resize (with a small delay). + + _this6.update(); + }, 150); + } + }], [{ + key: "initOnLoad", + value: function initOnLoad() { + var els = document.querySelectorAll('[data-apexcharts]'); + + for (var i = 0; i < els.length; i++) { + var el = els[i]; + var options$$1 = JSON.parse(els[i].getAttribute('data-options')); + var apexChart = new ApexCharts(el, options$$1); + apexChart.render(); + } + } + /** + * This static method allows users to call chart methods without necessarily from the + * instance of the chart in case user has assigned chartID to the targetted chart. + * The chartID is used for mapping the instance stored in Apex._chartInstances global variable + * + * This is helpful in cases when you don't have reference of the chart instance + * easily and need to call the method from anywhere. + * For eg, in React/Vue applications when you have many parent/child components, + * and need easy reference to other charts for performing dynamic operations + * + * @param {string} chartID - The unique identifier which will be used to call methods + * on that chart instance + * @param {function} fn - The method name to call + * @param {object} opts - The parameters which are accepted in the original method will be passed here in the same order. + */ + + }, { + key: "exec", + value: function exec(chartID, fn) { + var chart = this.getChartByID(chartID); + if (!chart) return; // turn on the global exec flag to indicate this method was called + + chart.w.globals.isExecCalled = true; + + for (var _len = arguments.length, opts = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) { + opts[_key - 2] = arguments[_key]; + } + + switch (fn) { + case 'updateOptions': + { + return chart.updateOptions.apply(chart, opts); + } + + case 'updateSeries': + { + return chart.updateSeries.apply(chart, opts); + } + + case 'appendData': + { + return chart.appendData.apply(chart, opts); + } + + case 'appendSeries': + { + return chart.appendSeries.apply(chart, opts); + } + + case 'toggleSeries': + { + return chart.toggleSeries.apply(chart, opts); + } + + case 'resetSeries': + { + return chart.resetSeries.apply(chart, opts); + } + + case 'toggleDataPointSelection': + { + return chart.toggleDataPointSelection.apply(chart, opts); + } + + case 'dataURI': + { + return chart.dataURI.apply(chart, opts); + } + + case 'addXaxisAnnotation': + { + return chart.addXaxisAnnotation.apply(chart, opts); + } + + case 'addYaxisAnnotation': + { + return chart.addYaxisAnnotation.apply(chart, opts); + } + + case 'addPointAnnotation': + { + return chart.addPointAnnotation.apply(chart, opts); + } + + case 'addText': + { + return chart.addText.apply(chart, opts); + } + + case 'clearAnnotations': + { + return chart.clearAnnotations.apply(chart, opts); + } + + case 'paper': + { + return chart.paper.apply(chart, opts); + } + + case 'destroy': + { + return chart.destroy(); + } + } + } + }, { + key: "merge", + value: function merge(target, source) { + return Utils.extend(target, source); + } + }, { + key: "getChartByID", + value: function getChartByID(chartID) { + var c = Apex._chartInstances.filter(function (ch) { + return ch.id === chartID; + })[0]; + + return c.chart; + } + }]); + + return ApexCharts; + }(); + + return ApexCharts$1; + +})); diff --git a/assets/vendors/js/charts/apexcharts.min.js b/assets/vendors/js/charts/apexcharts.min.js new file mode 100644 index 0000000..af1936e --- /dev/null +++ b/assets/vendors/js/charts/apexcharts.min.js @@ -0,0 +1,6 @@ +/*! + * ApexCharts v3.8.6 + * (c) 2018-2019 Juned Chhipa + * Released under the MIT License. + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t=t||self).ApexCharts=e()}(this,function(){"use strict";function t(e){return(t="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})(e)}function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){for(var i=0;i>16,r=i>>8&255,o=255&i;return"#"+(16777216+65536*(Math.round((s-n)*a)+n)+256*(Math.round((s-r)*a)+r)+(Math.round((s-o)*a)+o)).toString(16).slice(1)}},{key:"shadeColor",value:function(t,e){return e.length>7?this.shadeRGBColor(t,e):this.shadeHexColor(t,e)}}],[{key:"bind",value:function(t,e){return function(){return t.apply(e,arguments)}}},{key:"isObject",value:function(e){return e&&"object"===t(e)&&!Array.isArray(e)&&null!=e}},{key:"listToArray",value:function(t){var e,i=[];for(e=0;e1?(e.shift(),this.addProps(s,e,i)):t[e[0]]=i,t}},{key:"clone",value:function(e){if("[object Array]"===Object.prototype.toString.call(e)){for(var i=[],s=0;s0&&void 0!==arguments[0]?arguments[0]:"#999999",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:.6;"#"!==t.substring(0,1)&&(t="#999999");var i=t.replace("#","");i=i.match(new RegExp("(.{"+i.length/3+"})","g"));for(var s=0;s1&&void 0!==arguments[1]?arguments[1]:"x",i=t.toString().slice();return i=i.replace(/[` ~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi,e)}},{key:"negToZero",value:function(t){return t<0?0:t}},{key:"moveIndexInArray",value:function(t,e,i){if(i>=t.length)for(var s=i-t.length+1;s--;)t.push(void 0);return t.splice(i,0,t.splice(e,1)[0]),t}},{key:"extractNumber",value:function(t){return parseFloat(t.replace(/[^\d\.]*/g,""))}},{key:"randomString",value:function(t){for(var e="",i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",s=0;s-1}},{key:"isIE11",value:function(){if(-1!==window.navigator.userAgent.indexOf("MSIE")||window.navigator.appVersion.indexOf("Trident/")>-1)return!0}},{key:"isIE",value:function(){var t=window.navigator.userAgent,e=t.indexOf("MSIE ");if(e>0)return parseInt(t.substring(e+5,t.indexOf(".",e)),10);if(t.indexOf("Trident/")>0){var i=t.indexOf("rv:");return parseInt(t.substring(i+3,t.indexOf(".",i)),10)}var s=t.indexOf("Edge/");return s>0&&parseInt(t.substring(s+5,t.indexOf(".",s)),10)}}]),i}(),u=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return s(t,[{key:"getDefaultFilter",value:function(t,e){var i=this.w;t.unfilter(!0),(new window.SVG.Filter).size("120%","180%","-5%","-40%"),"none"!==i.config.states.normal.filter?this.applyFilter(t,e,i.config.states.normal.filter.type,i.config.states.normal.filter.value):i.config.chart.dropShadow.enabled&&this.dropShadow(t,i.config.chart.dropShadow,e)}},{key:"addNormalFilter",value:function(t,e){var i=this.w;i.config.chart.dropShadow.enabled&&this.dropShadow(t,i.config.chart.dropShadow,e)}},{key:"addLightenFilter",value:function(t,e,i){var s=this,a=this.w,n=i.intensity;if(!d.isFirefox()){t.unfilter(!0);var r=new window.SVG.Filter;r.size("120%","180%","-5%","-40%"),t.filter(function(t){var i=a.config.chart.dropShadow;(r=i.enabled?s.addShadow(t,e,i):t).componentTransfer({rgb:{type:"linear",slope:1.5,intercept:n}})}),t.filterer.node.setAttribute("filterUnits","userSpaceOnUse")}}},{key:"addDarkenFilter",value:function(t,e,i){var s=this,a=this.w,n=i.intensity;if(!d.isFirefox()){t.unfilter(!0);var r=new window.SVG.Filter;r.size("120%","180%","-5%","-40%"),t.filter(function(t){var i=a.config.chart.dropShadow;(r=i.enabled?s.addShadow(t,e,i):t).componentTransfer({rgb:{type:"linear",slope:n}})}),t.filterer.node.setAttribute("filterUnits","userSpaceOnUse")}}},{key:"applyFilter",value:function(t,e,i){var s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:.5;switch(i){case"none":this.addNormalFilter(t,e);break;case"lighten":this.addLightenFilter(t,e,{intensity:s});break;case"darken":this.addDarkenFilter(t,e,{intensity:s})}}},{key:"addShadow",value:function(t,e,i){var s=i.blur,a=i.top,n=i.left,r=i.color,o=i.opacity,l=t.flood(Array.isArray(r)?r[e]:r,o).composite(t.sourceAlpha,"in").offset(n,a).gaussianBlur(s).merge(t.source);return t.blend(t.source,l)}},{key:"dropShadow",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,s=e.top,a=e.left,n=e.blur,r=e.color,o=e.opacity,l=e.noUserSpaceOnUse,h=this.w;return t.unfilter(!0),d.isIE()&&"radialBar"===h.config.chart.type?t:(r=Array.isArray(r)?r[i]:r,(new window.SVG.Filter).size("120%","180%","-5%","-40%"),t.filter(function(t){var e=null;e=d.isSafari()||d.isFirefox()||d.isIE()?t.flood(r,o).composite(t.sourceAlpha,"in").offset(a,s).gaussianBlur(n):t.flood(r,o).composite(t.sourceAlpha,"in").offset(a,s).gaussianBlur(n).merge(t.source),t.blend(t.source,e)}),l||t.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),t)}},{key:"setSelectionFilter",value:function(t,e,i){var s=this.w;if(void 0!==s.globals.selectedDataPoints[e]&&s.globals.selectedDataPoints[e].indexOf(i)>-1){t.node.setAttribute("selected",!0);var a=s.config.states.active.filter;"none"!==a&&this.applyFilter(t,e,a.type,a.value)}}}]),t}(),g=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.setEasingFunctions()}return s(t,[{key:"setEasingFunctions",value:function(){var t;if(!this.w.globals.easing){switch(this.w.config.chart.animations.easing){case"linear":t="-";break;case"easein":t="<";break;case"easeout":t=">";break;case"easeinout":t="<>";break;case"swing":t=function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1};break;case"bounce":t=function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375};break;case"elastic":t=function(t){return t===!!t?t:Math.pow(2,-10*t)*Math.sin((t-.075)*(2*Math.PI)/.3)+1};break;default:t="<>"}this.w.globals.easing=t}}},{key:"animateLine",value:function(t,e,i,s){t.attr(e).animate(s).attr(i)}},{key:"animateCircleRadius",value:function(t,e,i,s,a){e||(e=0),t.attr({r:e}).animate(s,a).attr({r:i})}},{key:"animateCircle",value:function(t,e,i,s,a){t.attr({r:e.r,cx:e.cx,cy:e.cy}).animate(s,a).attr({r:i.r,cx:i.cx,cy:i.cy})}},{key:"animateRect",value:function(t,e,i,s,a){t.attr(e).animate(s).attr(i).afterAll(function(){a()})}},{key:"animatePathsGradually",value:function(t){var e=t.el,i=t.j,s=t.pathFrom,a=t.pathTo,n=t.speed,r=t.delay,o=t.strokeWidth,l=this.w,h=0;l.config.chart.animations.animateGradually.enabled&&(h=l.config.chart.animations.animateGradually.delay),l.config.chart.animations.dynamicAnimation.enabled&&l.globals.dataChanged&&(h=0),this.morphSVG(e,i,s,a,n,o,r*h)}},{key:"showDelayedElements",value:function(){this.w.globals.delayedElements.forEach(function(t){t.el.classList.remove("hidden")})}},{key:"animationCompleted",value:function(){var t=this.w;t.globals.animationEnded=!0,"function"==typeof t.config.chart.events.animationEnd&&t.config.chart.events.animationEnd(this.ctx,t)}},{key:"morphSVG",value:function(t,e,i,s,a,n,r){var o=this,l=this.w;i||(i=t.attr("pathFrom")),s||(s=t.attr("pathTo")),(!i||i.indexOf("undefined")>-1||i.indexOf("NaN")>-1)&&(i="M 0 ".concat(l.globals.gridHeight),a=1),(s.indexOf("undefined")>-1||s.indexOf("NaN")>-1)&&(s="M 0 ".concat(l.globals.gridHeight),a=1),l.globals.shouldAnimate||(a=1),t.plot(i).animate(1,l.globals.easing,r).plot(i).animate(a,l.globals.easing,r).plot(s).afterAll(function(){d.isNumber(e)?e===l.globals.series[l.globals.maxValsInArrayIndex].length-2&&l.globals.shouldAnimate&&o.animationCompleted():l.globals.shouldAnimate&&o.animationCompleted(),o.showDelayedElements()})}}]),t}(),f=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return s(t,[{key:"drawLine",value:function(t,e,i,s){var a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:"#a8a8a8",n=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,r=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null;return this.w.globals.dom.Paper.line().attr({x1:t,y1:e,x2:i,y2:s,stroke:a,"stroke-dasharray":n,"stroke-width":r})}},{key:"drawRect",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0,n=arguments.length>5&&void 0!==arguments[5]?arguments[5]:"#fefefe",r=arguments.length>6&&void 0!==arguments[6]?arguments[6]:1,o=arguments.length>7&&void 0!==arguments[7]?arguments[7]:null,l=arguments.length>8&&void 0!==arguments[8]?arguments[8]:null,h=arguments.length>9&&void 0!==arguments[9]?arguments[9]:0,c=this.w.globals.dom.Paper.rect();return c.attr({x:t,y:e,width:i>0?i:0,height:s>0?s:0,rx:a,ry:a,fill:n,opacity:r,"stroke-width":null!==o?o:0,stroke:null!==l?l:"none","stroke-dasharray":h}),c}},{key:"drawPolygon",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"#e1e1e1",i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"none";return this.w.globals.dom.Paper.polygon(t).attr({fill:i,stroke:e})}},{key:"drawCircle",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=this.w.globals.dom.Paper.circle(2*t);return null!==e&&i.attr(e),i}},{key:"drawPath",value:function(t){var e=t.d,i=void 0===e?"":e,s=t.stroke,a=void 0===s?"#a8a8a8":s,n=t.strokeWidth,r=void 0===n?1:n,o=t.fill,l=t.fillOpacity,h=void 0===l?1:l,c=t.strokeOpacity,d=void 0===c?1:c,u=t.classes,g=t.strokeLinecap,f=void 0===g?null:g,p=t.strokeDashArray,x=void 0===p?0:p,b=this.w;return null===f&&(f=b.config.stroke.lineCap),(i.indexOf("undefined")>-1||i.indexOf("NaN")>-1)&&(i="M 0 ".concat(b.globals.gridHeight)),b.globals.dom.Paper.path(i).attr({fill:o,"fill-opacity":h,stroke:a,"stroke-opacity":d,"stroke-linecap":f,"stroke-width":r,"stroke-dasharray":x,class:u})}},{key:"group",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=this.w.globals.dom.Paper.group();return null!==t&&e.attr(t),e}},{key:"move",value:function(t,e){var i=["M",t,e].join(" ");return i}},{key:"line",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,s=null;return null===i?s=["L",t,e].join(" "):"H"===i?s=["H",t].join(" "):"V"===i&&(s=["V",e].join(" ")),s}},{key:"curve",value:function(t,e,i,s,a,n){var r=["C",t,e,i,s,a,n].join(" ");return r}},{key:"quadraticCurve",value:function(t,e,i,s){return["Q",t,e,i,s].join(" ")}},{key:"arc",value:function(t,e,i,s,a,n,r){var o="A";arguments.length>7&&void 0!==arguments[7]&&arguments[7]&&(o="a");var l=[o,t,e,i,s,a,n,r].join(" ");return l}},{key:"renderPaths",value:function(t){var e,i=t.j,s=t.realIndex,a=t.pathFrom,r=t.pathTo,o=t.stroke,l=t.strokeWidth,h=t.strokeLinecap,c=t.fill,d=t.animationDelay,f=t.initialSpeed,p=t.dataChangeSpeed,x=t.className,b=t.shouldClipToGrid,m=void 0===b||b,v=t.bindEventsOnPaths,y=void 0===v||v,w=t.drawShadow,k=void 0===w||w,A=this.w,S=new u(this.ctx),C=new g(this.ctx),L=this.w.config.chart.animations.enabled,z=L&&this.w.config.chart.animations.dynamicAnimation.enabled,P=!!(L&&!A.globals.resized||z&&A.globals.dataChanged&&A.globals.shouldAnimate);P?e=a:(e=r,C.animationCompleted());var M=A.config.stroke.dashArray,E=0;E=Array.isArray(M)?M[s]:A.config.stroke.dashArray;var T=this.drawPath({d:e,stroke:o,strokeWidth:l,fill:c,fillOpacity:1,classes:x,strokeLinecap:h,strokeDashArray:E});if(T.attr("index",s),m&&T.attr({"clip-path":"url(#gridRectMask".concat(A.globals.cuid,")")}),"none"!==A.config.states.normal.filter.type)S.getDefaultFilter(T,s);else if(A.config.chart.dropShadow.enabled&&k&&(!A.config.chart.dropShadow.enabledSeries||A.config.chart.dropShadow.enabledSeries&&-1!==A.config.chart.dropShadow.enabledSeries.indexOf(s))){var X=A.config.chart.dropShadow;S.dropShadow(T,X,s)}y&&(T.node.addEventListener("mouseenter",this.pathMouseEnter.bind(this,T)),T.node.addEventListener("mouseleave",this.pathMouseLeave.bind(this,T)),T.node.addEventListener("mousedown",this.pathMouseDown.bind(this,T))),T.attr({pathTo:r,pathFrom:a});var I={el:T,j:i,pathFrom:a,pathTo:r,strokeWidth:l};return!L||A.globals.resized||A.globals.dataChanged?!A.globals.resized&&A.globals.dataChanged||C.showDelayedElements():C.animatePathsGradually(n({},I,{speed:f,delay:d})),A.globals.dataChanged&&z&&P&&C.animatePathsGradually(n({},I,{speed:p})),T}},{key:"drawPattern",value:function(t,e,i){var s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"#a8a8a8",a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0;return this.w.globals.dom.Paper.pattern(e,i,function(n){"horizontalLines"===t?n.line(0,0,i,0).stroke({color:s,width:a+1}):"verticalLines"===t?n.line(0,0,0,e).stroke({color:s,width:a+1}):"slantedLines"===t?n.line(0,0,e,i).stroke({color:s,width:a}):"squares"===t?n.rect(e,i).fill("none").stroke({color:s,width:a}):"circles"===t&&n.circle(e).fill("none").stroke({color:s,width:a})})}},{key:"drawGradient",value:function(t,e,i,s,a){var n,r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:null,o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null,l=arguments.length>7&&void 0!==arguments[7]?arguments[7]:null,h=arguments.length>8&&void 0!==arguments[8]?arguments[8]:0,c=this.w;e=d.hexToRgba(e,s),i=d.hexToRgba(i,a);var u=0,g=1,f=1,p=null;null!==o&&(u=void 0!==o[0]?o[0]/100:0,g=void 0!==o[1]?o[1]/100:1,f=void 0!==o[2]?o[2]/100:1,p=void 0!==o[3]?o[3]/100:null);var x=!("donut"!==c.config.chart.type&&"pie"!==c.config.chart.type&&"bubble"!==c.config.chart.type);if(n=null===l||0===l.length?c.globals.dom.Paper.gradient(x?"radial":"linear",function(t){t.at(u,e,s),t.at(g,i,a),t.at(f,i,a),null!==p&&t.at(p,e,s)}):c.globals.dom.Paper.gradient(x?"radial":"linear",function(t){(Array.isArray(l[h])?l[h]:l).forEach(function(e){t.at(e.offset/100,e.color,e.opacity)})}),x){var b=c.globals.gridWidth/2,m=c.globals.gridHeight/2;"bubble"!==c.config.chart.type?n.attr({gradientUnits:"userSpaceOnUse",cx:b,cy:m,r:r}):n.attr({cx:.5,cy:.5,r:.8,fx:.2,fy:.2})}else"vertical"===t?n.from(0,0).to(0,1):"diagonal"===t?n.from(0,0).to(1,1):"horizontal"===t?n.from(0,1).to(1,1):"diagonal2"===t&&n.from(0,1).to(2,2);return n}},{key:"drawText",value:function(t){var e,i=this.w,s=t.x,a=t.y,n=t.text,r=t.textAnchor,o=t.fontSize,l=t.fontFamily,h=t.fontWeight,c=t.foreColor,d=t.opacity;return void 0===n&&(n=""),r||(r="start"),c||(c=i.config.chart.foreColor),l=l||i.config.chart.fontFamily,h=h||"regular",(e=Array.isArray(n)?i.globals.dom.Paper.text(function(t){for(var e=0;e-1){var o=i.globals.selectedDataPoints[a].indexOf(n);i.globals.selectedDataPoints[a].splice(o,1)}}else{if(!i.config.states.active.allowMultipleDataPointsSelection&&i.globals.selectedDataPoints.length>0){i.globals.selectedDataPoints=[];var l=i.globals.dom.Paper.select(".apexcharts-series path").members,h=i.globals.dom.Paper.select(".apexcharts-series circle, .apexcharts-series rect").members;l.forEach(function(t){t.node.setAttribute("selected","false"),s.getDefaultFilter(t,a)}),h.forEach(function(t){t.node.setAttribute("selected","false"),s.getDefaultFilter(t,a)})}t.node.setAttribute("selected","true"),r="true",void 0===i.globals.selectedDataPoints[a]&&(i.globals.selectedDataPoints[a]=[]),i.globals.selectedDataPoints[a].push(n)}if("true"===r){var c=i.config.states.active.filter;"none"!==c&&s.applyFilter(t,a,c.type,c.value)}else"none"!==i.config.states.active.filter.type&&s.getDefaultFilter(t,a);"function"==typeof i.config.chart.events.dataPointSelection&&i.config.chart.events.dataPointSelection(e,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:a,dataPointIndex:n,w:i}),e&&this.ctx.fireEvent("dataPointSelection",[e,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:a,dataPointIndex:n,w:i}])}},{key:"rotateAroundCenter",value:function(t){var e=t.getBBox();return{x:e.x+e.width/2,y:e.y+e.height/2}}},{key:"getTextRects",value:function(t,e,i,s){var a=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],n=this.w,r=this.drawText({x:-200,y:-200,text:t,textAnchor:"start",fontSize:e,fontFamily:i,foreColor:"#fff",opacity:0});s&&r.attr("transform",s),n.globals.dom.Paper.add(r);var o=r.bbox();return a||(o=r.node.getBoundingClientRect()),r.remove(),{width:o.width,height:o.height}}},{key:"placeTextWithEllipsis",value:function(t,e,i){if(t.textContent=e,e.length>0&&t.getComputedTextLength()>=i){for(var s=e.length-3;s>0;s-=3)if(t.getSubStringLength(0,s)<=i)return void(t.textContent=e.substring(0,s)+"...");t.textContent="..."}}}],[{key:"setAttrs",value:function(t,e){for(var i in e)e.hasOwnProperty(i)&&t.setAttribute(i,e[i])}}]),t}();var p={name:"en",options:{months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],toolbar:{exportToSVG:"Download SVG",exportToPNG:"Download PNG",menu:"Menu",selection:"Selection",selectionZoom:"Selection Zoom",zoomIn:"Zoom In",zoomOut:"Zoom Out",pan:"Panning",reset:"Reset Zoom"}}},x=function(){function t(){e(this,t),this.yAxis={show:!0,showAlways:!1,seriesName:void 0,opposite:!1,reversed:!1,logarithmic:!1,tickAmount:void 0,forceNiceScale:!1,max:void 0,min:void 0,floating:!1,decimalsInFloat:void 0,labels:{show:!0,minWidth:0,maxWidth:160,offsetX:0,offsetY:0,align:void 0,rotate:0,padding:20,style:{colors:[],fontSize:"11px",fontFamily:void 0,cssClass:""},formatter:void 0},axisBorder:{show:!1,color:"#78909C",offsetX:0,offsetY:0},axisTicks:{show:!1,color:"#78909C",width:6,offsetX:0,offsetY:0},title:{text:void 0,rotate:90,offsetY:0,offsetX:0,style:{color:void 0,fontSize:"11px",fontFamily:void 0,cssClass:""}},tooltip:{enabled:!1,offsetX:0},crosshairs:{show:!0,position:"front",stroke:{color:"#b6b6b6",width:1,dashArray:0}}},this.xAxisAnnotation={x:0,x2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",opacity:.3,offsetX:0,offsetY:0,label:{borderColor:"#c2c2c2",borderWidth:1,text:void 0,textAnchor:"middle",orientation:"vertical",position:"top",offsetX:0,offsetY:0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.yAxisAnnotation={y:0,y2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",opacity:.3,offsetX:0,offsetY:0,yAxisIndex:0,label:{borderColor:"#c2c2c2",borderWidth:1,text:void 0,textAnchor:"end",position:"right",offsetX:0,offsetY:-3,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,cssClass:"",padding:{left:5,right:5,top:0,bottom:2}}}},this.pointAnnotation={x:0,y:null,yAxisIndex:0,seriesIndex:0,marker:{size:4,fillColor:"#fff",strokeWidth:2,strokeColor:"#333",shape:"circle",offsetX:0,offsetY:0,radius:2,cssClass:""},label:{borderColor:"#c2c2c2",borderWidth:1,text:void 0,textAnchor:"middle",offsetX:0,offsetY:-15,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,cssClass:"",padding:{left:5,right:5,top:0,bottom:2}}},customSVG:{SVG:void 0,cssClass:void 0,offsetX:0,offsetY:0}}}return s(t,[{key:"init",value:function(){return{annotations:{position:"front",yaxis:[this.yAxisAnnotation],xaxis:[this.xAxisAnnotation],points:[this.pointAnnotation]},chart:{animations:{enabled:!0,easing:"easeinout",speed:800,animateGradually:{delay:150,enabled:!0},dynamicAnimation:{enabled:!0,speed:350}},background:"transparent",locales:[p],defaultLocale:"en",dropShadow:{enabled:!1,enabledSeries:void 0,top:2,left:2,blur:4,color:"#000",opacity:.35},events:{animationEnd:void 0,beforeMount:void 0,mounted:void 0,updated:void 0,click:void 0,mouseMove:void 0,legendClick:void 0,markerClick:void 0,selection:void 0,dataPointSelection:void 0,dataPointMouseEnter:void 0,dataPointMouseLeave:void 0,beforeZoom:void 0,zoomed:void 0,scrolled:void 0},foreColor:"#373d3f",fontFamily:"Helvetica, Arial, sans-serif",height:"auto",parentHeightOffset:15,id:void 0,group:void 0,offsetX:0,offsetY:0,selection:{enabled:!1,type:"x",fill:{color:"#24292e",opacity:.1},stroke:{width:1,color:"#24292e",opacity:.4,dashArray:3},xaxis:{min:void 0,max:void 0},yaxis:{min:void 0,max:void 0}},sparkline:{enabled:!1},brush:{enabled:!1,autoScaleYaxis:!0,target:void 0},stacked:!1,stackType:"normal",toolbar:{show:!0,tools:{download:!0,selection:!0,zoom:!0,zoomin:!0,zoomout:!0,pan:!0,reset:!0,customIcons:[]},autoSelected:"zoom"},type:"line",width:"100%",zoom:{enabled:!0,type:"x",autoScaleYaxis:!1,zoomedArea:{fill:{color:"#90CAF9",opacity:.4},stroke:{color:"#0D47A1",opacity:.4,width:1}}}},plotOptions:{bar:{horizontal:!1,columnWidth:"70%",barHeight:"70%",distributed:!1,endingShape:"flat",colors:{ranges:[],backgroundBarColors:[],backgroundBarOpacity:1},dataLabels:{maxItems:100,hideOverflowingLabels:!0,position:"top"}},candlestick:{colors:{upward:"#00B746",downward:"#EF403C"},wick:{useFillColor:!0}},heatmap:{radius:2,enableShades:!0,shadeIntensity:.5,reverseNegativeShade:!0,distributed:!1,colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},radialBar:{size:void 0,inverseOrder:!1,startAngle:0,endAngle:360,offsetX:0,offsetY:0,hollow:{margin:5,size:"50%",background:"transparent",image:void 0,imageWidth:150,imageHeight:150,imageOffsetX:0,imageOffsetY:0,imageClipped:!0,position:"front",dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},track:{show:!0,startAngle:void 0,endAngle:void 0,background:"#f2f2f2",strokeWidth:"97%",opacity:1,margin:5,dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},dataLabels:{show:!0,name:{show:!0,fontSize:"16px",fontFamily:void 0,color:void 0,offsetY:0},value:{show:!0,fontSize:"14px",fontFamily:void 0,color:void 0,offsetY:16,formatter:function(t){return t+"%"}},total:{show:!1,label:"Total",color:void 0,formatter:function(t){return t.globals.seriesTotals.reduce(function(t,e){return t+e},0)/t.globals.series.length+"%"}}}},rangeBar:{},pie:{size:void 0,customScale:1,offsetX:0,offsetY:0,expandOnClick:!0,dataLabels:{offset:0,minAngleToShowLabel:10},donut:{size:"65%",background:"transparent",labels:{show:!1,name:{show:!0,fontSize:"16px",fontFamily:void 0,color:void 0,offsetY:-10},value:{show:!0,fontSize:"20px",fontFamily:void 0,color:void 0,offsetY:10,formatter:function(t){return t}},total:{show:!1,label:"Total",color:void 0,formatter:function(t){return t.globals.seriesTotals.reduce(function(t,e){return t+e},0)}}}}},radar:{size:void 0,offsetX:0,offsetY:0,polygons:{strokeColors:"#e8e8e8",connectorColors:"#e8e8e8",fill:{colors:void 0}}}},colors:void 0,dataLabels:{enabled:!0,enabledOnSeries:void 0,formatter:function(t){return null!==t?t:""},textAnchor:"middle",offsetX:0,offsetY:0,style:{fontSize:"12px",fontFamily:void 0,colors:void 0},dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]},image:{src:[],width:void 0,height:void 0},pattern:{style:"sqaures",width:6,height:6,strokeWidth:2}},grid:{show:!0,borderColor:"#e0e0e0",strokeDashArray:0,position:"back",xaxis:{lines:{show:!1,animate:!1}},yaxis:{lines:{show:!0,animate:!1}},row:{colors:void 0,opacity:.5},column:{colors:void 0,opacity:.5},padding:{top:0,right:10,bottom:0,left:12}},labels:[],legend:{show:!0,showForSingleSeries:!1,showForNullSeries:!0,showForZeroSeries:!0,floating:!1,position:"bottom",horizontalAlign:"center",inverseOrder:!1,fontSize:"12px",fontFamily:void 0,width:void 0,height:void 0,formatter:void 0,tooltipHoverFormatter:void 0,offsetX:-20,offsetY:0,labels:{colors:void 0,useSeriesColors:!1},markers:{width:12,height:12,strokeWidth:0,strokeColor:"#fff",radius:12,customHTML:void 0,offsetX:0,offsetY:0,onClick:void 0},itemMargin:{horizontal:0,vertical:5},onItemClick:{toggleDataSeries:!0},onItemHover:{highlightDataSeries:!0}},markers:{discrete:[],size:0,colors:void 0,strokeColors:"#fff",strokeWidth:2,strokeOpacity:.9,fillOpacity:1,shape:"circle",radius:2,offsetX:0,offsetY:0,onClick:void 0,onDblClick:void 0,hover:{size:void 0,sizeOffset:3}},noData:{text:void 0,align:"center",verticalAlign:"middle",offsetX:0,offsetY:0,style:{color:void 0,fontSize:"14px",fontFamily:void 0}},responsive:[],series:void 0,states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"lighten",value:.15}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"darken",value:.65}}},title:{text:void 0,align:"left",margin:10,offsetX:0,offsetY:0,floating:!1,style:{fontSize:"14px",fontFamily:void 0,color:void 0}},subtitle:{text:void 0,align:"left",margin:10,offsetX:0,offsetY:30,floating:!1,style:{fontSize:"12px",fontFamily:void 0,color:void 0}},stroke:{show:!0,curve:"smooth",lineCap:"butt",width:2,colors:void 0,dashArray:0},tooltip:{enabled:!0,enabledOnSeries:void 0,shared:!0,followCursor:!1,intersect:!1,inverseOrder:!1,custom:void 0,fillSeriesColor:!1,theme:"light",style:{fontSize:"12px",fontFamily:void 0},onDatasetHover:{highlightDataSeries:!1},x:{show:!0,format:"dd MMM",formatter:void 0},y:{formatter:void 0,title:{formatter:function(t){return t}}},z:{formatter:void 0,title:"Size: "},marker:{show:!0},items:{display:"flex"},fixed:{enabled:!1,position:"topRight",offsetX:0,offsetY:0}},xaxis:{type:"category",categories:[],offsetX:0,offsetY:0,labels:{show:!0,rotate:-45,rotateAlways:!1,hideOverlappingLabels:!0,trim:!0,minHeight:void 0,maxHeight:120,showDuplicates:!0,style:{colors:[],fontSize:"12px",fontFamily:void 0,cssClass:""},offsetX:0,offsetY:0,format:void 0,formatter:void 0,datetimeFormatter:{year:"yyyy",month:"MMM 'yy",day:"dd MMM",hour:"HH:mm",minute:"HH:mm:ss"}},axisBorder:{show:!0,color:"#78909C",width:"100%",height:1,offsetX:0,offsetY:0},axisTicks:{show:!0,color:"#78909C",height:6,offsetX:0,offsetY:0},tickAmount:void 0,tickPlacement:"on",min:void 0,max:void 0,range:void 0,floating:!1,position:"bottom",title:{text:void 0,offsetX:0,offsetY:0,style:{color:void 0,fontSize:"12px",fontFamily:void 0,cssClass:""}},crosshairs:{show:!0,width:1,position:"back",opacity:.9,stroke:{color:"#b6b6b6",width:1,dashArray:3},fill:{type:"solid",color:"#B1B9C4",gradient:{colorFrom:"#D8E3F0",colorTo:"#BED1E6",stops:[0,100],opacityFrom:.4,opacityTo:.5}},dropShadow:{enabled:!1,left:0,top:0,blur:1,opacity:.4}},tooltip:{enabled:!0,offsetY:0,formatter:void 0,style:{fontSize:"12px",fontFamily:void 0}}},yaxis:this.yAxis,theme:{mode:"light",palette:"palette1",monochrome:{enabled:!1,color:"#008FFB",shadeTo:"light",shadeIntensity:.65}}}}}]),t}(),b=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.graphics=new f(this.ctx),this.w.globals.isBarHorizontal&&(this.invertAxis=!0),this.xDivision=this.w.globals.gridWidth/this.w.globals.dataPoints}return s(t,[{key:"drawAnnotations",value:function(){var t=this.w;if(t.globals.axisCharts){for(var e=this.drawYAxisAnnotations(),i=this.drawXAxisAnnotations(),s=this.drawPointAnnotations(),a=t.config.chart.animations.enabled,n=[e,i,s],r=[i.node,e.node,s.node],o=0;o<3;o++)t.globals.dom.elGraphical.add(n[o]),!a||t.globals.resized||t.globals.dataChanged||"scatter"!==t.config.chart.type&&"bubble"!==t.config.chart.type&&r[o].classList.add("hidden"),t.globals.delayedElements.push({el:r[o],index:0});this.annotationsBackground()}}},{key:"getStringX",value:function(t){var e=this.w,i=t,s=e.globals.labels.indexOf(t),a=e.globals.dom.baseEl.querySelector(".apexcharts-xaxis-texts-g text:nth-child("+(s+1)+")");return a&&(i=parseFloat(a.getAttribute("x"))),i}},{key:"addXaxisAnnotation",value:function(t,e,i){var s=this.w,a=this.invertAxis?s.globals.minY:s.globals.minX,n=this.invertAxis?s.globals.yRange[0]:s.globals.xRange,r=(t.x-a)/(n/s.globals.gridWidth),o=t.label.text;"category"!==s.config.xaxis.type&&!s.config.xaxis.convertedCatToNumeric||this.invertAxis||s.globals.isXNumeric||(r=this.getStringX(t.x));var l=t.strokeDashArray;if(!(r<0||r>s.globals.gridWidth)){if(null===t.x2){var h=this.graphics.drawLine(r+t.offsetX,0+t.offsetY,r+t.offsetX,s.globals.gridHeight+t.offsetY,t.borderColor,l);e.appendChild(h.node)}else{var c=(t.x2-a)/(n/s.globals.gridWidth);if("category"!==s.config.xaxis.type&&!s.config.xaxis.convertedCatToNumeric||this.invertAxis||s.globals.isXNumeric||(c=this.getStringX(t.x2)),cs){var g=s;s=a,a=g}if(h){var f=this.graphics.drawRect(0+t.offsetX,a+t.offsetY,n.globals.gridWidth+t.offsetX,s-a,0,t.fillColor,t.opacity,1,t.borderColor,r);e.appendChild(f.node)}}var p="right"===t.label.position?n.globals.gridWidth:0,x=this.graphics.drawText({x:p+t.label.offsetX,y:(a||s)+t.label.offsetY-3,text:h,textAnchor:t.label.textAnchor,fontSize:t.label.style.fontSize,fontFamily:t.label.style.fontFamily,foreColor:t.label.style.color,cssClass:"apexcharts-yaxis-annotation-label "+t.label.style.cssClass});x.attr({rel:i}),e.appendChild(x.node)}},{key:"drawYAxisAnnotations",value:function(){var t=this,e=this.w,i=this.graphics.group({class:"apexcharts-yaxis-annotations"});return e.config.annotations.yaxis.map(function(e,s){t.addYaxisAnnotation(e,i.node,s)}),i}},{key:"clearAnnotations",value:function(t){var e=t.w.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis-annotations, .apexcharts-xaxis-annotations, .apexcharts-point-annotations");(e=d.listToArray(e)).forEach(function(t){for(;t.firstChild;)t.removeChild(t.firstChild)})}},{key:"addPointAnnotation",value:function(t,e,i){var s=this.w,a=0,n=0,r=0;if(this.invertAxis&&console.warn("Point annotation is not supported in horizontal bar charts."),"string"==typeof t.x){var o=s.globals.labels.indexOf(t.x),l=s.globals.dom.baseEl.querySelector(".apexcharts-xaxis-texts-g text:nth-child("+(o+1)+")");a=parseFloat(l.getAttribute("x"));var h=t.y;null===t.y&&(h=s.globals.series[t.seriesIndex][o]),n=s.globals.gridHeight-(h-s.globals.minYArr[t.yAxisIndex])/(s.globals.yRange[t.yAxisIndex]/s.globals.gridHeight)-parseInt(t.label.style.fontSize)-t.marker.size,r=s.globals.gridHeight-(h-s.globals.minYArr[t.yAxisIndex])/(s.globals.yRange[t.yAxisIndex]/s.globals.gridHeight),s.config.yaxis[t.yAxisIndex]&&s.config.yaxis[t.yAxisIndex].reversed&&(n=(h-s.globals.minYArr[t.yAxisIndex])/(s.globals.yRange[t.yAxisIndex]/s.globals.gridHeight)+parseInt(t.label.style.fontSize)+t.marker.size,r=(h-s.globals.minYArr[t.yAxisIndex])/(s.globals.yRange[t.yAxisIndex]/s.globals.gridHeight))}else a=(t.x-s.globals.minX)/(s.globals.xRange/s.globals.gridWidth),n=s.globals.gridHeight-(parseFloat(t.y)-s.globals.minYArr[t.yAxisIndex])/(s.globals.yRange[t.yAxisIndex]/s.globals.gridHeight)-parseInt(t.label.style.fontSize)-t.marker.size,r=s.globals.gridHeight-(t.y-s.globals.minYArr[t.yAxisIndex])/(s.globals.yRange[t.yAxisIndex]/s.globals.gridHeight),s.config.yaxis[t.yAxisIndex]&&s.config.yaxis[t.yAxisIndex].reversed&&(n=(parseFloat(t.y)-s.globals.minYArr[t.yAxisIndex])/(s.globals.yRange[t.yAxisIndex]/s.globals.gridHeight)-parseInt(t.label.style.fontSize)-t.marker.size,r=(t.y-s.globals.minYArr[t.yAxisIndex])/(s.globals.yRange[t.yAxisIndex]/s.globals.gridHeight));if(!(a<0||a>s.globals.gridWidth)){var c={pSize:t.marker.size,pWidth:t.marker.strokeWidth,pointFillColor:t.marker.fillColor,pointStrokeColor:t.marker.strokeColor,shape:t.marker.shape,radius:t.marker.radius,class:"apexcharts-point-annotation-marker "+t.marker.cssClass},d=this.graphics.drawMarker(a+t.marker.offsetX,r+t.marker.offsetY,c);e.appendChild(d.node);var u=t.label.text?t.label.text:"",g=this.graphics.drawText({x:a+t.label.offsetX,y:n+t.label.offsetY,text:u,textAnchor:t.label.textAnchor,fontSize:t.label.style.fontSize,fontFamily:t.label.style.fontFamily,foreColor:t.label.style.color,cssClass:"apexcharts-point-annotation-label "+t.label.style.cssClass});if(g.attr({rel:i}),e.appendChild(g.node),t.customSVG.SVG){var f=this.graphics.group({class:"apexcharts-point-annotations-custom-svg "+t.customSVG.cssClass});f.attr({transform:"translate(".concat(a+t.customSVG.offsetX,", ").concat(n+t.customSVG.offsetY,")")}),f.node.innerHTML=t.customSVG.SVG,e.appendChild(f.node)}}}},{key:"drawPointAnnotations",value:function(){var t=this,e=this.w,i=this.graphics.group({class:"apexcharts-point-annotations"});return e.config.annotations.points.map(function(e,s){t.addPointAnnotation(e,i.node,s)}),i}},{key:"setOrientations",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=this.w;if("vertical"===t.label.orientation){var s=null!==e?e:0,a=i.globals.dom.baseEl.querySelector(".apexcharts-xaxis-annotations .apexcharts-xaxis-annotation-label[rel='".concat(s,"']"));if(null!==a){var n=a.getBoundingClientRect();a.setAttribute("x",parseFloat(a.getAttribute("x"))-n.height+4),"top"===t.label.position?a.setAttribute("y",parseFloat(a.getAttribute("y"))+n.width):a.setAttribute("y",parseFloat(a.getAttribute("y"))-n.width);var r=this.graphics.rotateAroundCenter(a),o=r.x,l=r.y;a.setAttribute("transform","rotate(-90 ".concat(o," ").concat(l,")"))}}}},{key:"addBackgroundToAnno",value:function(t,e){var i=this.w;if(!e.label.text||e.label.text&&!e.label.text.trim())return null;var s=i.globals.dom.baseEl.querySelector(".apexcharts-grid").getBoundingClientRect(),a=t.getBoundingClientRect(),n=e.label.style.padding.left,r=e.label.style.padding.right,o=e.label.style.padding.top,l=e.label.style.padding.bottom;"vertical"===e.label.orientation&&(o=e.label.style.padding.left,l=e.label.style.padding.right,n=e.label.style.padding.top,r=e.label.style.padding.bottom);var h=a.left-s.left-n,c=a.top-s.top-o;return this.graphics.drawRect(h,c,a.width+n+r,a.height+o+l,0,e.label.style.background,1,e.label.borderWidth,e.label.borderColor,0)}},{key:"annotationsBackground",value:function(){var t=this,e=this.w,i=function(i,s,a){var n=e.globals.dom.baseEl.querySelector(".apexcharts-".concat(a,"-annotations .apexcharts-").concat(a,"-annotation-label[rel='").concat(s,"']"));if(n){var r=n.parentNode,o=t.addBackgroundToAnno(n,i);o&&r.insertBefore(o.node,n)}};e.config.annotations.xaxis.map(function(t,e){i(t,e,"xaxis")}),e.config.annotations.yaxis.map(function(t,e){i(t,e,"yaxis")}),e.config.annotations.points.map(function(t,e){i(t,e,"point")})}},{key:"addText",value:function(t,e,i){var s=t.x,a=t.y,n=t.text,r=t.textAnchor,o=t.appendTo,l=void 0===o?".apexcharts-inner":o,h=t.foreColor,c=t.fontSize,d=t.fontFamily,u=t.cssClass,g=t.backgroundColor,f=t.borderWidth,p=t.strokeDashArray,x=t.radius,b=t.borderColor,m=t.paddingLeft,v=void 0===m?4:m,y=t.paddingRight,w=void 0===y?4:y,k=t.paddingBottom,A=void 0===k?2:k,S=t.paddingTop,C=void 0===S?2:S,L=i,z=L.w,P=z.globals.dom.baseEl.querySelector(l),M=this.graphics.drawText({x:s,y:a,text:n,textAnchor:r||"start",fontSize:c||"12px",fontFamily:d||z.config.chart.fontFamily,foreColor:h||z.config.chart.foreColor,cssClass:u});P.appendChild(M.node);var E=M.bbox();if(n){var T=this.graphics.drawRect(E.x-v,E.y-C,E.width+v+w,E.height+A+C,x,g,1,f,b,p);M.before(T)}return e&&z.globals.memory.methodsToExec.push({context:L,method:L.addText,params:{x:s,y:a,text:n,textAnchor:r,appendTo:l,foreColor:h,fontSize:c,cssClass:u,backgroundColor:g,borderWidth:f,strokeDashArray:p,radius:x,borderColor:b,paddingLeft:v,paddingRight:w,paddingBottom:A,paddingTop:C}}),i}},{key:"addPointAnnotationExternal",value:function(t,e,i){return void 0===this.invertAxis&&(this.invertAxis=i.w.globals.isBarHorizontal),this.addAnnotationExternal({params:t,pushToMemory:e,context:i,type:"point",contextMethod:i.addPointAnnotation}),i}},{key:"addYaxisAnnotationExternal",value:function(t,e,i){return this.addAnnotationExternal({params:t,pushToMemory:e,context:i,type:"yaxis",contextMethod:i.addYaxisAnnotation}),i}},{key:"addXaxisAnnotationExternal",value:function(t,e,i){return this.addAnnotationExternal({params:t,pushToMemory:e,context:i,type:"xaxis",contextMethod:i.addXaxisAnnotation}),i}},{key:"addAnnotationExternal",value:function(t){var e=t.params,i=t.pushToMemory,s=t.context,a=t.type,n=t.contextMethod,r=s,o=r.w,l=o.globals.dom.baseEl.querySelector(".apexcharts-".concat(a,"-annotations")),h=l.childNodes.length+1,c=new x,u=Object.assign({},"xaxis"===a?c.xAxisAnnotation:"yaxis"===a?c.yAxisAnnotation:c.pointAnnotation),g=d.extend(u,e);switch(a){case"xaxis":this.addXaxisAnnotation(g,l,h);break;case"yaxis":this.addYaxisAnnotation(g,l,h);break;case"point":this.addPointAnnotation(g,l,h)}var f=o.globals.dom.baseEl.querySelector(".apexcharts-".concat(a,"-annotations .apexcharts-").concat(a,"-annotation-label[rel='").concat(h,"']")),p=this.addBackgroundToAnno(f,g);return p&&l.insertBefore(p.node,f),i&&o.globals.memory.methodsToExec.push({context:r,method:n,params:e}),s}}]),t}(),m=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.months31=[1,3,5,7,8,10,12],this.months30=[2,4,6,9,11],this.daysCntOfYear=[0,31,59,90,120,151,181,212,243,273,304,334]}return s(t,[{key:"isValidDate",value:function(t){return!isNaN(this.parseDate(t))}},{key:"getUTCTimeStamp",value:function(t){return Date.parse(t)?new Date(new Date(t).toISOString().substr(0,25)).getTime():t}},{key:"parseDate",value:function(t){var e=Date.parse(t);if(!isNaN(e))return this.getUTCTimeStamp(t);var i=Date.parse(t.replace(/-/g,"/").replace(/[a-z]+/gi," "));return i=this.getUTCTimeStamp(i)}},{key:"treatAsUtc",value:function(t){var e=new Date(t);return e.setMinutes(e.getMinutes()-e.getTimezoneOffset()),e}},{key:"formatDate",value:function(t,e){var i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],s=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],a=this.w.globals.locale,n=["\0"].concat(c(a.months)),r=["\x01"].concat(c(a.shortMonths)),o=["\x02"].concat(c(a.days)),l=["\x03"].concat(c(a.shortDays));function h(t,e){var i=t+"";for(e=e||2;i.length12?f-12:0===f?12:f;e=(e=(e=(e=e.replace(/(^|[^\\])HH+/g,"$1"+h(f))).replace(/(^|[^\\])H/g,"$1"+f)).replace(/(^|[^\\])hh+/g,"$1"+h(p))).replace(/(^|[^\\])h/g,"$1"+p);var x=i?t.getUTCMinutes():t.getMinutes();e=(e=e.replace(/(^|[^\\])mm+/g,"$1"+h(x))).replace(/(^|[^\\])m/g,"$1"+x);var b=i?t.getUTCSeconds():t.getSeconds();e=(e=e.replace(/(^|[^\\])ss+/g,"$1"+h(b))).replace(/(^|[^\\])s/g,"$1"+b);var m=i?t.getUTCMilliseconds():t.getMilliseconds();e=e.replace(/(^|[^\\])fff+/g,"$1"+h(m,3)),m=Math.round(m/10),e=e.replace(/(^|[^\\])ff/g,"$1"+h(m)),m=Math.round(m/10);var v=f<12?"AM":"PM";e=(e=(e=e.replace(/(^|[^\\])f/g,"$1"+m)).replace(/(^|[^\\])TT+/g,"$1"+v)).replace(/(^|[^\\])T/g,"$1"+v.charAt(0));var y=v.toLowerCase();e=(e=e.replace(/(^|[^\\])tt+/g,"$1"+y)).replace(/(^|[^\\])t/g,"$1"+y.charAt(0));var w=-t.getTimezoneOffset(),k=i||!w?"Z":w>0?"+":"-";if(!i){var A=(w=Math.abs(w))%60;k+=h(Math.floor(w/60))+":"+h(A)}e=e.replace(/(^|[^\\])K/g,"$1"+k);var S=(i?t.getUTCDay():t.getDay())+1;return e=(e=(e=(e=(e=e.replace(new RegExp(o[0],"g"),o[S])).replace(new RegExp(l[0],"g"),l[S])).replace(new RegExp(n[0],"g"),n[u])).replace(new RegExp(r[0],"g"),r[u])).replace(/\\(.)/g,"$1")}},{key:"getTimeUnitsfromTimestamp",value:function(t,e){var i=this.w;void 0!==i.config.xaxis.min&&(t=i.config.xaxis.min),void 0!==i.config.xaxis.max&&(e=i.config.xaxis.max);var s=new Date(t).getFullYear(),a=new Date(e).getFullYear(),n=new Date(t).getMonth(),r=new Date(e).getMonth(),o=new Date(t).getDate(),l=new Date(e).getDate(),h=new Date(t).getHours(),c=new Date(e).getHours();return{minMinute:new Date(t).getMinutes(),maxMinute:new Date(e).getMinutes(),minHour:h,maxHour:c,minDate:o,maxDate:l,minMonth:n,maxMonth:r,minYear:s,maxYear:a}}},{key:"isLeapYear",value:function(t){return t%4==0&&t%100!=0||t%400==0}},{key:"calculcateLastDaysOfMonth",value:function(t,e,i){return this.determineDaysOfMonths(t,e)-i}},{key:"determineDaysOfYear",value:function(t){var e=365;return this.isLeapYear(t)&&(e=366),e}},{key:"determineRemainingDaysOfYear",value:function(t,e,i){var s=this.daysCntOfYear[e]+i;return e>1&&this.isLeapYear()&&s++,s}},{key:"determineDaysOfMonths",value:function(t,e){var i=30;switch(t=d.monthMod(t),!0){case this.months30.indexOf(t)>-1:2===t&&(i=this.isLeapYear(e)?29:28);break;case this.months31.indexOf(t)>-1:default:i=31}return i}}]),t}(),v=function(){function t(i){e(this,t),this.opts=i}return s(t,[{key:"line",value:function(){return{chart:{animations:{easing:"swing"}},dataLabels:{enabled:!1},stroke:{width:5,curve:"straight"},markers:{size:0,hover:{sizeOffset:6}},xaxis:{crosshairs:{width:1}}}}},{key:"sparkline",value:function(t){this.opts.yaxis[0].labels.show=!1,this.opts.yaxis[0].floating=!0;return d.extend(t,{grid:{show:!1,padding:{left:0,right:0,top:0,bottom:0}},legend:{show:!1},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1}},chart:{toolbar:{show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1}})}},{key:"bar",value:function(){return{chart:{stacked:!1,animations:{easing:"swing"}},plotOptions:{bar:{dataLabels:{position:"center"}}},dataLabels:{style:{colors:["#fff"]}},stroke:{width:0},fill:{opacity:.85},legend:{markers:{shape:"square",radius:2,size:8}},tooltip:{shared:!1},xaxis:{tooltip:{enabled:!1},crosshairs:{width:"barWidth",position:"back",fill:{type:"gradient"},dropShadow:{enabled:!1},stroke:{width:0}}}}}},{key:"candlestick",value:function(){return{stroke:{width:1,colors:["#333"]},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(t){var e=t.seriesIndex,i=t.dataPointIndex,s=t.w;return'
    Open: '+s.globals.seriesCandleO[e][i]+'
    High: '+s.globals.seriesCandleH[e][i]+'
    Low: '+s.globals.seriesCandleL[e][i]+'
    Close: '+s.globals.seriesCandleC[e][i]+"
    "}},states:{active:{filter:{type:"none"}}},xaxis:{crosshairs:{width:1}}}}},{key:"rangeBar",value:function(){return{stroke:{width:0},plotOptions:{bar:{dataLabels:{position:"center"}}},dataLabels:{enabled:!1,formatter:function(t,e){e.ctx;var i=e.seriesIndex,s=e.dataPointIndex,a=e.w,n=a.globals.seriesRangeStart[i][s];return a.globals.seriesRangeEnd[i][s]-n},style:{colors:["#fff"]}},tooltip:{shared:!1,followCursor:!0,custom:function(t){var e=t.ctx,i=t.seriesIndex,s=t.dataPointIndex,a=t.w,n=a.globals.seriesRangeStart[i][s],r=a.globals.seriesRangeEnd[i][s],o="",l="",h=a.globals.colors[i];if(void 0===a.config.tooltip.x.formatter)if("datetime"===a.config.xaxis.type){var c=new m(e);o=c.formatDate(new Date(n),a.config.tooltip.x.format,!0,!0),l=c.formatDate(new Date(r),a.config.tooltip.x.format,!0,!0)}else o=n,l=r;else o=a.config.tooltip.x.formatter(n),l=a.config.tooltip.x.formatter(r);var d=a.globals.labels[s];return'
    '+(a.config.series[i].name?a.config.series[i].name:"")+'
    '+d+': '+o+' - '+l+"
    "}},xaxis:{tooltip:{enabled:!1},crosshairs:{stroke:{width:0}}}}}},{key:"area",value:function(){return{stroke:{width:4},fill:{type:"gradient",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}},markers:{size:0,hover:{sizeOffset:6}},tooltip:{followCursor:!1}}}},{key:"brush",value:function(t){return d.extend(t,{chart:{toolbar:{autoSelected:"selection",show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1},stroke:{width:1},tooltip:{enabled:!1},xaxis:{tooltip:{enabled:!1}}})}},{key:"stacked100",value:function(){var t=this;this.opts.dataLabels=this.opts.dataLabels||{},this.opts.dataLabels.formatter=this.opts.dataLabels.formatter||void 0;var e=this.opts.dataLabels.formatter;this.opts.yaxis.forEach(function(e,i){t.opts.yaxis[i].min=0,t.opts.yaxis[i].max=100}),"bar"===this.opts.chart.type&&(this.opts.dataLabels.formatter=e||function(t){return"number"==typeof t&&t?t.toFixed(0)+"%":t})}},{key:"bubble",value:function(){return{dataLabels:{style:{colors:["#fff"]}},tooltip:{shared:!1,intersect:!0},xaxis:{crosshairs:{width:0}},fill:{type:"solid",gradient:{shade:"light",inverse:!0,shadeIntensity:.55,opacityFrom:.4,opacityTo:.8}}}}},{key:"scatter",value:function(){return{dataLabels:{enabled:!1},tooltip:{shared:!1,intersect:!0},markers:{size:6,strokeWidth:2,hover:{sizeOffset:2}}}}},{key:"heatmap",value:function(){return{chart:{stacked:!1,zoom:{enabled:!1}},fill:{opacity:1},dataLabels:{style:{colors:["#fff"]}},stroke:{colors:["#fff"]},tooltip:{followCursor:!0,marker:{show:!1},x:{show:!1}},legend:{position:"top",markers:{shape:"square",size:10,offsetY:2}},grid:{padding:{right:20}}}}},{key:"pie",value:function(){return{chart:{toolbar:{show:!1}},plotOptions:{pie:{donut:{labels:{show:!1}}}},dataLabels:{formatter:function(t){return t.toFixed(1)+"%"},style:{colors:["#fff"]},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"dark",shadeIntensity:.35,inverseColors:!1,stops:[0,100,100]}},padding:{right:0,left:0},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"donut",value:function(){return{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(t){return t.toFixed(1)+"%"},style:{colors:["#fff"]},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"dark",shadeIntensity:.4,inverseColors:!1,type:"vertical",opacityFrom:1,opacityTo:1,stops:[70,98,100]}},padding:{right:0,left:0},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"radar",value:function(){return this.opts.yaxis[0].labels.style.fontSize="13px",this.opts.yaxis[0].labels.offsetY=6,{dataLabels:{enabled:!0,style:{colors:["#a8a8a8"],fontSize:"11px"}},stroke:{width:2},markers:{size:3,strokeWidth:1,strokeOpacity:1},fill:{opacity:.2},tooltip:{shared:!1,intersect:!0,followCursor:!0},grid:{show:!1},xaxis:{tooltip:{enabled:!1},crosshairs:{show:!1}}}}},{key:"radialBar",value:function(){return{chart:{animations:{dynamicAnimation:{enabled:!0,speed:800}},toolbar:{show:!1}},fill:{gradient:{shade:"dark",shadeIntensity:.4,inverseColors:!1,type:"diagonal2",opacityFrom:1,opacityTo:1,stops:[70,98,100]}},padding:{right:0,left:0},legend:{show:!1,position:"right"},tooltip:{enabled:!1,fillSeriesColor:!0}}}}],[{key:"convertCatToNumeric",value:function(t){t.xaxis.type="numeric",t.xaxis.convertedCatToNumeric=!0,t.xaxis.labels=t.xaxis.labels||{},t.xaxis.labels.formatter=t.xaxis.labels.formatter||function(t){return t},t.chart=t.chart||{},t.chart.zoom=t.chart.zoom||window.Apex.chart&&window.Apex.chart.zoom||{};var e=t.xaxis.labels.formatter,i=t.xaxis.categories&&t.xaxis.categories.length?t.xaxis.categories:t.labels;return i&&i.length&&(t.xaxis.labels.formatter=function(t){return e(i[t-1])}),t.xaxis.categories=[],t.labels=[],t.chart.zoom.enabled=t.chart.zoom.enabled||!1,t}}]),t}(),y=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return s(t,[{key:"getStackedSeriesTotals",value:function(){var t=this.w,e=[];if(0===t.globals.series.length)return e;for(var i=0;i0&&void 0!==arguments[0]?arguments[0]:null;return null===t?this.w.config.series.reduce(function(t,e){return t+e},0):this.w.globals.series[t].reduce(function(t,e){return t+e},0)}},{key:"isSeriesNull",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return 0===(null===t?this.w.config.series.filter(function(t){return null!==t}):this.w.globals.series[t].filter(function(t){return null!==t})).length}},{key:"seriesHaveSameValues",value:function(t){return this.w.globals.series[t].every(function(t,e,i){return t===i[0]})}},{key:"getLargestSeries",value:function(){var t=this.w;t.globals.maxValsInArrayIndex=t.globals.series.map(function(t){return t.length}).indexOf(Math.max.apply(Math,t.globals.series.map(function(t){return t.length})))}},{key:"getLargestMarkerSize",value:function(){var t=this.w,e=0;return t.globals.markers.size.forEach(function(t){e=Math.max(e,t)}),t.globals.markers.largestSize=e,e}},{key:"getSeriesTotals",value:function(){var t=this.w;t.globals.seriesTotals=t.globals.series.map(function(t,e){var i=0;if(Array.isArray(t))for(var s=0;st&&i.globals.seriesX[a][r]1)throw new Error("Multiple Y Axis for bars are not supported. Switch to column chart by setting plotOptions.bar.horizontal=false");e.yaxis[0].reversed&&(e.yaxis[0].opposite=!0),e.xaxis.tooltip.enabled=!1,e.yaxis[0].tooltip.enabled=!1,e.chart.zoom.enabled=!1}return"bar"!==e.chart.type&&"rangeBar"!==e.chart.type||e.tooltip.shared&&("barWidth"===e.xaxis.crosshairs.width&&e.series.length>1&&(console.warn('crosshairs.width = "barWidth" is only supported in single series, not in a multi-series barChart.'),e.xaxis.crosshairs.width="tickWidth"),e.plotOptions.bar.horizontal&&(e.states.hover.type="none",e.tooltip.shared=!1),e.tooltip.followCursor||(console.warn("followCursor option in shared columns cannot be turned off. Please set %ctooltip.followCursor: true","color: blue;"),e.tooltip.followCursor=!0)),"candlestick"===e.chart.type&&e.yaxis[0].reversed&&(console.warn("Reversed y-axis in candlestick chart is not supported."),e.yaxis[0].reversed=!1),e.chart.group&&0===e.yaxis[0].labels.minWidth&&console.warn("It looks like you have multiple charts in synchronization. You must provide yaxis.labels.minWidth which must be EQUAL for all grouped charts to prevent incorrect behaviour."),Array.isArray(e.stroke.width)&&"line"!==e.chart.type&&"area"!==e.chart.type&&(console.warn("stroke.width option accepts array only for line and area charts. Reverted back to Number"),e.stroke.width=e.stroke.width[0]),e}}]),i}(),k=function(){function t(){e(this,t)}return s(t,[{key:"globalVars",value:function(t){return{chartID:null,cuid:null,events:{beforeMount:[],mounted:[],updated:[],clicked:[],selection:[],dataPointSelection:[],zoomed:[],scrolled:[]},colors:[],clientX:null,clientY:null,fill:{colors:[]},stroke:{colors:[]},dataLabels:{style:{colors:[]}},radarPolygons:{fill:{colors:[]}},markers:{colors:[],size:t.markers.size,largestSize:0},animationEnded:!1,isTouchDevice:"ontouchstart"in window||navigator.msMaxTouchPoints,isDirty:!1,isExecCalled:!1,initialConfig:null,lastXAxis:[],lastYAxis:[],series:[],seriesRangeStart:[],seriesRangeEnd:[],seriesPercent:[],seriesTotals:[],stackedSeriesTotals:[],seriesX:[],seriesZ:[],labels:[],timelineLabels:[],invertedTimelineLabels:[],seriesNames:[],noLabelsProvided:!1,allSeriesCollapsed:!1,collapsedSeries:[],collapsedSeriesIndices:[],ancillaryCollapsedSeries:[],ancillaryCollapsedSeriesIndices:[],risingSeries:[],dataFormatXNumeric:!1,capturedSeriesIndex:-1,capturedDataPointIndex:-1,selectedDataPoints:[],ignoreYAxisIndexes:[],yAxisSameScaleIndices:[],padHorizontal:0,maxValsInArrayIndex:0,radialSize:0,zoomEnabled:"zoom"===t.chart.toolbar.autoSelected&&t.chart.toolbar.tools.zoom&&t.chart.zoom.enabled,panEnabled:"pan"===t.chart.toolbar.autoSelected&&t.chart.toolbar.tools.pan,selectionEnabled:"selection"===t.chart.toolbar.autoSelected&&t.chart.toolbar.tools.selection,yaxis:null,minY:Number.MIN_VALUE,maxY:-Number.MAX_VALUE,minYArr:[],maxYArr:[],maxX:-Number.MAX_VALUE,initialmaxX:-Number.MAX_VALUE,minX:Number.MIN_VALUE,initialminX:Number.MIN_VALUE,minZ:Number.MIN_VALUE,maxZ:-Number.MAX_VALUE,minXDiff:Number.MAX_VALUE,mousedown:!1,lastClientPosition:{},visibleXRange:void 0,yRange:[],zRange:0,xRange:0,yValueDecimal:0,total:0,SVGNS:"http://www.w3.org/2000/svg",svgWidth:0,svgHeight:0,noData:!1,locale:{},dom:{},memory:{methodsToExec:[]},shouldAnimate:!0,skipLastTimelinelabel:!1,delayedElements:[],axisCharts:!0,isXNumeric:!1,isDataXYZ:!1,resized:!1,resizeTimer:null,comboCharts:!1,comboChartsHasBars:!1,dataChanged:!1,previousPaths:[],seriesXvalues:[],seriesYvalues:[],seriesCandleO:[],seriesCandleH:[],seriesCandleL:[],seriesCandleC:[],allSeriesHasEqualX:!0,dataPoints:0,pointsArray:[],dataLabelsRects:[],lastDrawnDataLabelsIndexes:[],hasNullValues:!1,easing:null,zoomed:!1,gridWidth:0,gridHeight:0,yAxisScale:[],xAxisScale:null,xAxisTicksPositions:[],timescaleTicks:[],rotateXLabels:!1,defaultLabels:!1,xLabelFormatter:void 0,yLabelFormatters:[],xaxisTooltipFormatter:void 0,ttKeyFormatter:void 0,ttVal:void 0,ttZFormatter:void 0,LINE_HEIGHT_RATIO:1.618,xAxisLabelsHeight:0,yAxisLabelsWidth:0,scaleX:1,scaleY:1,translateX:0,translateY:0,translateYAxisX:[],yLabelsCoords:[],yTitleCoords:[],yAxisWidths:[],translateXAxisY:0,translateXAxisX:0,tooltip:null,tooltipOpts:null}}},{key:"init",value:function(t){var e=this.globalVars(t);return e.initialConfig=d.extend({},t),e.initialSeries=JSON.parse(JSON.stringify(e.initialConfig.series)),e.lastXAxis=JSON.parse(JSON.stringify(e.initialConfig.xaxis)),e.lastYAxis=JSON.parse(JSON.stringify(e.initialConfig.yaxis)),e}}]),t}(),A=function(){function t(i){e(this,t),this.opts=i}return s(t,[{key:"init",value:function(){var t=new w(this.opts).init();return{config:t,globals:(new k).init(t)}}}]),t}(),S=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.opts=null,this.seriesIndex=0}return s(t,[{key:"clippedImgArea",value:function(t){var e=this.w,i=e.config,s=parseInt(e.globals.gridWidth),a=parseInt(e.globals.gridHeight),n=s>a?s:a,r=t.image,o=0,l=0;void 0===t.width&&void 0===t.height?void 0!==i.fill.image.width&&void 0!==i.fill.image.height?(o=i.fill.image.width+1,l=i.fill.image.height):(o=n+1,l=n):(o=t.width,l=t.height);var h=document.createElementNS(e.globals.SVGNS,"pattern");f.setAttrs(h,{id:t.patternID,patternUnits:t.patternUnits?t.patternUnits:"userSpaceOnUse",width:o+"px",height:l+"px"});var c=document.createElementNS(e.globals.SVGNS,"image");h.appendChild(c),c.setAttributeNS("http://www.w3.org/1999/xlink","href",r),f.setAttrs(c,{x:0,y:0,preserveAspectRatio:"none",width:o+"px",height:l+"px"}),c.style.opacity=t.opacity,e.globals.dom.elDefs.node.appendChild(h)}},{key:"getSeriesIndex",value:function(t){var e=this.w;return"bar"===e.config.chart.type&&e.config.plotOptions.bar.distributed||"heatmap"===e.config.chart.type?this.seriesIndex=t.seriesNumber:this.seriesIndex=t.seriesNumber%e.globals.series.length,this.seriesIndex}},{key:"fillPath",value:function(t){var e=this.w;this.opts=t;var i,s,a,n=this.w.config;this.seriesIndex=this.getSeriesIndex(t);var r=this.getFillColors()[this.seriesIndex];"function"==typeof r&&(r=r({seriesIndex:this.seriesIndex,value:t.value,w:e}));var o=this.getFillType(this.seriesIndex),l=Array.isArray(n.fill.opacity)?n.fill.opacity[this.seriesIndex]:n.fill.opacity,h=r;return t.color&&(r=t.color),-1===r.indexOf("rgb")?h=d.hexToRgba(r,l):r.indexOf("rgba")>-1&&(l="0."+d.getOpacityFromRGBA(r)),"pattern"===o&&(s=this.handlePatternFill(s,r,l,h)),"gradient"===o&&(a=this.handleGradientFill(a,r,l,this.seriesIndex)),n.fill.image.src.length>0&&"image"===o?t.seriesNumber0){if(t.globals.markers.size.length0&&(o=l.group({class:"apexcharts-series-markers"})).attr("clip-path","url(#gridRectMarkerMask".concat(a.globals.cuid,")")),r.x instanceof Array)for(var h=0;h0:a.config.markers.size>0){d.isNumber(r.y[h])?g+=" w".concat((Math.random()+1).toString(36).substring(4)):g="apexcharts-nullpoint";var p=this.getMarkerConfig(g,e,c);a.config.series[n].data[i]&&(a.config.series[n].data[i].fillColor&&(p.pointFillColor=a.config.series[n].data[i].fillColor),a.config.series[n].data[i].strokeColor&&(p.pointStrokeColor=a.config.series[n].data[i].strokeColor)),(s=l.drawMarker(r.x[h],r.y[h],p)).attr("rel",c),s.attr("j",c),s.attr("index",e),s.node.setAttribute("default-marker-size",p.pSize),new u(this.ctx).setSelectionFilter(s,e,c),this.addEvents(s),o&&o.add(s)}else void 0===a.globals.pointsArray[e]&&(a.globals.pointsArray[e]=[]),a.globals.pointsArray[e].push([r.x[h],r.y[h]])}return o}},{key:"getMarkerConfig",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,s=this.w,a=this.getMarkerStyle(e),n=s.globals.markers.size[e];return null!==i&&s.config.markers.discrete.length&&s.config.markers.discrete.map(function(t){t.seriesIndex===e&&t.dataPointIndex===i&&(a.pointStrokeColor=t.strokeColor,a.pointFillColor=t.fillColor,n=t.size)}),{pSize:n,pRadius:s.config.markers.radius,pWidth:s.config.markers.strokeWidth,pointStrokeColor:a.pointStrokeColor,pointFillColor:a.pointFillColor,shape:s.config.markers.shape instanceof Array?s.config.markers.shape[e]:s.config.markers.shape,class:t,pointStrokeOpacity:s.config.markers.strokeOpacity,pointFillOpacity:s.config.markers.fillOpacity,seriesIndex:e}}},{key:"addEvents",value:function(t){var e=this.w,i=new f(this.ctx);t.node.addEventListener("mouseenter",i.pathMouseEnter.bind(this.ctx,t)),t.node.addEventListener("mouseleave",i.pathMouseLeave.bind(this.ctx,t)),t.node.addEventListener("mousedown",i.pathMouseDown.bind(this.ctx,t)),t.node.addEventListener("click",e.config.markers.onClick),t.node.addEventListener("dblclick",e.config.markers.onDblClick),t.node.addEventListener("touchstart",i.pathMouseDown.bind(this.ctx,t),{passive:!0})}},{key:"getMarkerStyle",value:function(t){var e=this.w,i=e.globals.markers.colors,s=e.config.markers.strokeColor||e.config.markers.strokeColors;return{pointStrokeColor:s instanceof Array?s[t]:s,pointFillColor:i instanceof Array?i[t]:i}}}]),t}(),L=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled,this.radiusSizes=[]}return s(t,[{key:"draw",value:function(t,e,i){var s=this.w,a=new f(this.ctx),n=i.realIndex,r=i.pointsPos,o=i.zRatio,l=i.elParent,h=a.group({class:"apexcharts-series-markers apexcharts-series-".concat(s.config.chart.type)});if(h.attr("clip-path","url(#gridRectMarkerMask".concat(s.globals.cuid,")")),r.x instanceof Array)for(var c=0;cp.x+p.width+2||e>p.y+p.height+2||t+c4&&void 0!==arguments[4]?arguments[4]:"top",a=this.w,n=new f(this.ctx),r=a.config.dataLabels,o=0,l=0,h=i,c=null;if(!r.enabled||t.x instanceof Array!=!0)return c;c=n.group({class:"apexcharts-data-labels"});for(var d=0;de.globals.gridWidth+10)&&(o=""),p.drawnextLabel){var x=i.drawText({width:100,height:parseInt(c.style.fontSize),x:s,y:a,foreColor:e.globals.dataLabels.style.colors[n],textAnchor:l||c.textAnchor,text:o,fontSize:c.style.fontSize,fontFamily:c.style.fontFamily});if(x.attr({class:"apexcharts-datalabel",cx:s,cy:a}),c.dropShadow.enabled){var b=c.dropShadow;new u(this.ctx).dropShadow(x,b)}h.add(x),void 0===e.globals.lastDrawnDataLabelsIndexes[n]&&(e.globals.lastDrawnDataLabelsIndexes[n]=[]),e.globals.lastDrawnDataLabelsIndexes[n].push(r)}}}}]),t}(),P=function(){function t(i,s){e(this,t),this.ctx=i,this.w=i.w;var a=this.w;this.barOptions=a.config.plotOptions.bar,this.isHorizontal=this.barOptions.horizontal,this.strokeWidth=a.config.stroke.width,this.isNullValue=!1,this.xyRatios=s,null!==this.xyRatios&&(this.xRatio=s.xRatio,this.yRatio=s.yRatio,this.invertedXRatio=s.invertedXRatio,this.invertedYRatio=s.invertedYRatio,this.baseLineY=s.baseLineY,this.baseLineInvertedY=s.baseLineInvertedY),this.yaxisIndex=0,this.seriesLen=0}return s(t,[{key:"draw",value:function(t,e){var i=this.w,s=new f(this.ctx),a=new y(this.ctx,i);t=a.getLogSeries(t),this.series=t,this.yRatio=a.getLogYRatios(this.yRatio),this.initVariables(t);var n=s.group({class:"apexcharts-bar-series apexcharts-plot-series"});i.config.dataLabels.enabled&&this.totalItems>i.config.plotOptions.bar.dataLabels.maxItems&&console.warn("WARNING: DataLabels are enabled but there are too many to display. This may cause performance issue when rendering.");for(var r=0,o=0;r0&&(this.visibleI=this.visibleI+1);var A=0,S=0,C=0;this.yRatio.length>1&&(this.yaxisIndex=w),this.isReversed=i.config.yaxis[this.yaxisIndex]&&i.config.yaxis[this.yaxisIndex].reversed;var L=this.initialPositions();b=L.y,S=L.barHeight,h=L.yDivision,u=L.zeroW,x=L.x,C=L.barWidth,l=L.xDivision,c=L.zeroH,this.horizontal||v.push(x+C/2);for(var z=s.group({class:"apexcharts-datalabels"}),P=0,M=i.globals.dataPoints;P0&&v.push(x+C/2),m.push(b);var T=this.getPathFillColor(t,r,P,w);k=this.renderSeries({realIndex:w,pathFill:T,j:P,i:r,pathFrom:p,pathTo:g,strokeWidth:A,elSeries:k,x:x,y:b,series:t,barHeight:S,barWidth:C,elDataLabelsWrap:z,visibleSeries:this.visibleI,type:"bar"})}i.globals.seriesXvalues[w]=v,i.globals.seriesYvalues[w]=m,n.add(k)}return n}},{key:"getPathFillColor",value:function(t,e,i,s){var a=this.w,n=new S(this.ctx),r=null,o=this.barOptions.distributed?i:e;this.barOptions.colors.ranges.length>0&&this.barOptions.colors.ranges.map(function(s){t[e][i]>=s.from&&t[e][i]<=s.to&&(r=s.color)});return a.config.series[e].data[i]&&a.config.series[e].data[i].fillColor&&(r=a.config.series[e].data[i].fillColor),n.fillPath({seriesNumber:this.barOptions.distributed?o:s,color:r,value:t[e][i]})}},{key:"renderSeries",value:function(t){var e=t.realIndex,i=t.pathFill,s=t.lineFill,a=t.j,n=t.i,r=t.pathFrom,o=t.pathTo,l=t.strokeWidth,h=t.elSeries,c=t.x,d=t.y,g=t.series,p=t.barHeight,x=t.barWidth,b=t.elDataLabelsWrap,m=t.visibleSeries,v=t.type,y=this.w,w=new f(this.ctx);s||(s=this.barOptions.distributed?y.globals.stroke.colors[a]:y.globals.stroke.colors[e]),y.config.series[n].data[a]&&y.config.series[n].data[a].strokeColor&&(s=y.config.series[n].data[a].strokeColor),this.isNullValue&&(i="none");var k=a/y.config.chart.animations.animateGradually.delay*(y.config.chart.animations.speed/y.globals.dataPoints)/2.4,A=w.renderPaths({i:n,j:a,realIndex:e,pathFrom:r,pathTo:o,stroke:s,strokeWidth:l,strokeLineCap:y.config.stroke.lineCap,fill:i,animationDelay:k,initialSpeed:y.config.chart.animations.speed,dataChangeSpeed:y.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(v,"-area")});A.attr("clip-path","url(#gridRectMask".concat(y.globals.cuid,")")),new u(this.ctx).setSelectionFilter(A,e,a),h.add(A);var S=this.calculateDataLabelsPos({x:c,y:d,i:n,j:a,series:g,realIndex:e,barHeight:p,barWidth:x,renderedPath:A,visibleSeries:m});return null!==S&&b.add(S),h.add(b),h}},{key:"initVariables",value:function(t){var e=this.w;this.series=t,this.totalItems=0,this.seriesLen=0,this.visibleI=-1,this.visibleItems=1;for(var i=0;i0&&(this.seriesLen=this.seriesLen+1,this.totalItems+=t[i].length),e.globals.isXNumeric)for(var s=0;se.globals.minX&&e.globals.seriesX[i][s]0&&(n=this.getPathFrom(x,p));var v={barHeight:i,strokeWidth:s,barYPosition:m,x:o=void 0===this.series[g][p]||null===this.series[g][p]?r:r+this.series[g][p]/this.invertedYRatio-2*(this.isReversed?this.series[g][p]/this.invertedYRatio:0),zeroW:r},y=this.barEndingShape(d,v,this.series,g,p);if(a=a+u.line(y.newX,m)+y.path+u.line(r,m+i-s)+u.line(r,m),n=n+u.line(r,m)+y.ending_p_from+u.line(r,m+i-s)+u.line(r,m+i-s)+u.line(r,m),d.globals.isXNumeric||(l+=h),this.barOptions.colors.backgroundBarColors.length>0&&0===g){b>=this.barOptions.colors.backgroundBarColors.length&&(b=0);var w=this.barOptions.colors.backgroundBarColors[b],k=u.drawRect(0,m-i*this.visibleI,d.globals.gridWidth,i*this.seriesLen,0,w,this.barOptions.colors.backgroundBarOpacity);c.add(k),k.node.classList.add("apexcharts-backgroundBar")}return{pathTo:a,pathFrom:n,x:o,y:l,barYPosition:m}}},{key:"drawColumnPaths",value:function(t){var e=t.indexes,i=t.x,s=t.y,a=t.xDivision,n=t.pathTo,r=t.pathFrom,o=t.barWidth,l=t.zeroH,h=t.strokeWidth,c=t.elSeries,d=this.w,u=new f(this.ctx),g=e.i,p=e.j,x=e.realIndex,b=e.bc,m=i+o*this.visibleI;if(d.globals.isXNumeric){var v=g;d.globals.seriesX[g].length||(v=d.globals.maxValsInArrayIndex),m=(i=(d.globals.seriesX[v][p]-d.globals.minX)/this.xRatio)+o*this.visibleI-o*this.seriesLen/2}n=u.move(m,l),r=u.move(m,l),d.globals.previousPaths.length>0&&(r=this.getPathFrom(x,p));var y={barWidth:o,strokeWidth:h,barXPosition:m,y:s=void 0===this.series[g][p]||null===this.series[g][p]?l:l-this.series[g][p]/this.yRatio[this.yaxisIndex]+2*(this.isReversed?this.series[g][p]/this.yRatio[this.yaxisIndex]:0),zeroH:l},w=this.barEndingShape(d,y,this.series,g,p);if(n=n+u.line(m,w.newY)+w.path+u.line(m+o-h,l)+u.line(m-h/2,l),r=r+u.line(m,l)+w.ending_p_from+u.line(m+o-h,l)+u.line(m+o-h,l)+u.line(m-h/2,l),d.globals.isXNumeric||(i+=a),this.barOptions.colors.backgroundBarColors.length>0&&0===g){b>=this.barOptions.colors.backgroundBarColors.length&&(b=0);var k=this.barOptions.colors.backgroundBarColors[b],A=u.drawRect(m-o*this.visibleI,0,o*this.seriesLen,d.globals.gridHeight,0,k,this.barOptions.colors.backgroundBarOpacity);c.add(A),A.node.classList.add("apexcharts-backgroundBar")}return{pathTo:n,pathFrom:r,x:i,y:s,barXPosition:m}}},{key:"getPathFrom",value:function(t,e){for(var i,s=this.w,a=0;a0&&parseInt(n.realIndex)===parseInt(t)&&void 0!==s.globals.previousPaths[a].paths[e]&&(i=s.globals.previousPaths[a].paths[e].d)}return i}},{key:"calculateDataLabelsPos",value:function(t){var e=t.x,i=t.y,s=t.i,a=t.j,n=t.realIndex,r=t.series,o=t.barHeight,l=t.barWidth,h=t.visibleSeries,c=t.renderedPath,d=this.w,u=new f(this.ctx),g=Array.isArray(this.strokeWidth)?this.strokeWidth[n]:this.strokeWidth,p=e+parseFloat(l*h),x=i+parseFloat(o*h);d.globals.isXNumeric&&!d.globals.isBarHorizontal&&(p=e+parseFloat(l*(h+1))/2,x=i+parseFloat(o*(h+1))-g);var b=e,m=i,v={},y=d.config.dataLabels,w=this.barOptions.dataLabels,k=y.offsetX,A=y.offsetY,S={width:0,height:0};return d.config.dataLabels.enabled&&(S=u.getTextRects(d.globals.yLabelFormatters[0](d.globals.maxY),parseInt(y.style.fontSize))),v=this.isHorizontal?this.calculateBarsDataLabelsPosition({x:e,y:i,i:s,j:a,renderedPath:c,bcy:x,barHeight:o,barWidth:l,textRects:S,strokeWidth:g,dataLabelsX:b,dataLabelsY:m,barDataLabelsConfig:w,offX:k,offY:A}):this.calculateColumnsDataLabelsPosition({x:e,y:i,i:s,j:a,renderedPath:c,realIndex:n,bcx:p,bcy:x,barHeight:o,barWidth:l,textRects:S,strokeWidth:g,dataLabelsY:m,barDataLabelsConfig:w,offX:k,offY:A}),c.attr({cy:v.bcy,cx:v.bcx,j:a,val:r[s][a],barHeight:o,barWidth:l}),this.drawCalculatedDataLabels({x:v.dataLabelsX,y:v.dataLabelsY,val:r[s][a],i:n,j:a,barWidth:l,barHeight:o,textRects:S,dataLabelsConfig:y})}},{key:"calculateColumnsDataLabelsPosition",value:function(t){var e,i=this.w,s=t.i,a=t.j,n=t.y,r=t.bcx,o=t.barWidth,l=t.barHeight,h=t.textRects,c=t.dataLabelsY,d=t.barDataLabelsConfig,u=t.strokeWidth,g=t.offX,f=t.offY,p=i.globals.gridWidth/i.globals.dataPoints;r-=u/2,e=i.globals.isXNumeric?r-o/2+g:r-p+o/2+g;var x=this.series[s][a]<=0;switch(this.isReversed&&(n-=l),d.position){case"center":c=x?n+l/2+h.height/2+f:n+l/2+h.height/2-f;break;case"bottom":c=x?n+l+h.height+u+f:n+l-h.height/2+u-f;break;case"top":c=x?n-h.height/2-f:n+h.height+f}return i.config.chart.stacked||(c<0?c=0+u:c+h.height/3>i.globals.gridHeight&&(c=i.globals.gridHeight-u)),{bcx:r,bcy:n,dataLabelsX:e,dataLabelsY:c}}},{key:"calculateBarsDataLabelsPosition",value:function(t){var e=this.w,i=t.x,s=t.i,a=t.j,n=t.bcy,r=t.barHeight,o=t.barWidth,l=t.textRects,h=t.dataLabelsX,c=t.strokeWidth,d=t.barDataLabelsConfig,u=t.offX,g=t.offY,f=n-e.globals.gridHeight/e.globals.dataPoints+r/2+l.height/2+g-3,p=this.series[s][a]<=0;switch(this.isReversed&&(i+=o),d.position){case"center":h=p?i-o/2-u:i-o/2+u;break;case"bottom":h=p?i-o-c-Math.round(l.width/2)-u:i-o+c+Math.round(l.width/2)+u;break;case"top":h=p?i-c+Math.round(l.width/2)-u:i-c-Math.round(l.width/2)+u}return e.config.chart.stacked||(h<0?h=h+l.width+c:h+l.width/2>e.globals.gridWidth&&(h=e.globals.gridWidth-l.width-c)),{bcx:i,bcy:n,dataLabelsX:h,dataLabelsY:f}}},{key:"drawCalculatedDataLabels",value:function(t){var e=t.x,i=t.y,s=t.val,a=t.i,r=t.j,o=t.textRects,l=t.barHeight,h=t.barWidth,c=t.dataLabelsConfig,d=this.w,u=new z(this.ctx),g=new f(this.ctx),p=c.formatter,x=null,b=d.globals.collapsedSeriesIndices.indexOf(a)>-1;if(c.enabled&&!b){x=g.group({class:"apexcharts-data-labels"});var m="";void 0!==s&&(m=p(s,{seriesIndex:a,dataPointIndex:r,w:d})),0===s&&d.config.chart.stacked&&(m=""),d.config.chart.stacked&&this.barOptions.dataLabels.hideOverflowingLabels&&(this.isHorizontal?((h=this.series[a][r]/this.yRatio[this.yaxisIndex])>0&&o.width/1.6>h||h<0&&o.width/1.6l&&(m="")));var v=n({},c);this.isHorizontal&&s<0&&("start"===c.textAnchor?v.textAnchor="end":"end"===c.textAnchor&&(v.textAnchor="start")),u.plotDataLabelsText({x:e,y:i,text:m,i:a,j:r,parent:x,dataLabelsConfig:v,alwaysDrawDataLabel:!0,offsetCorrection:!0})}return x}},{key:"barEndingShape",value:function(t,e,i,s,a){var n=new f(this.ctx);if(this.isHorizontal){var r=null,o=e.x;if(void 0!==i[s][a]||null!==i[s][a]){var l=i[s][a]<0,h=e.barHeight/2-e.strokeWidth;switch(l&&(h=-e.barHeight/2-e.strokeWidth),t.config.chart.stacked||"rounded"===this.barOptions.endingShape&&(o=e.x-h/2),this.barOptions.endingShape){case"flat":r=n.line(o,e.barYPosition+e.barHeight-e.strokeWidth);break;case"rounded":r=n.quadraticCurve(o+h,e.barYPosition+(e.barHeight-e.strokeWidth)/2,o,e.barYPosition+e.barHeight-e.strokeWidth)}}return{path:r,ending_p_from:"",newX:o}}var c=null,d=e.y;if(void 0!==i[s][a]||null!==i[s][a]){var u=i[s][a]<0,g=e.barWidth/2-e.strokeWidth;switch(u&&(g=-e.barWidth/2-e.strokeWidth),t.config.chart.stacked||"rounded"===this.barOptions.endingShape&&(d+=g/2),this.barOptions.endingShape){case"flat":c=n.line(e.barXPosition+e.barWidth-e.strokeWidth,d);break;case"rounded":c=n.quadraticCurve(e.barXPosition+(e.barWidth-e.strokeWidth)/2,d-g,e.barXPosition+e.barWidth-e.strokeWidth,d)}}return{path:c,ending_p_from:"",newY:d}}}]),t}(),M=function(t){function i(){return e(this,i),h(this,o(i).apply(this,arguments))}return r(i,P),s(i,[{key:"draw",value:function(t,e){var i=this.w;this.graphics=new f(this.ctx),this.fill=new S(this.ctx),this.bar=new P(this.ctx,this.xyRatios);var s=new y(this.ctx,i);t=s.getLogSeries(t),this.yRatio=s.getLogYRatios(this.yRatio),this.initVariables(t),"100%"===i.config.chart.stackType&&(t=i.globals.seriesPercent.slice()),this.series=t,this.totalItems=0,this.prevY=[],this.prevX=[],this.prevYF=[],this.prevXF=[],this.prevYVal=[],this.prevXVal=[],this.xArrj=[],this.xArrjF=[],this.xArrjVal=[],this.yArrj=[],this.yArrjF=[],this.yArrjVal=[];for(var a=0;a0&&(this.totalItems+=t[a].length);for(var n=this.graphics.group({class:"apexcharts-bar-series apexcharts-plot-series"}),r=0,o=0,l=0,h=0;l1&&(this.yaxisIndex=w),this.isReversed=i.config.yaxis[this.yaxisIndex]&&i.config.yaxis[this.yaxisIndex].reversed;var k=this.graphics.group({class:"apexcharts-series",seriesName:d.escapeString(i.globals.seriesNames[w]),rel:l+1,"data:realIndex":w}),A=this.graphics.group({class:"apexcharts-datalabels"}),C=0,L=0,z=0,M=this.initialPositions(r,o,g,p,x,b);o=M.y,L=M.barHeight,p=M.yDivision,b=M.zeroW,r=M.x,z=M.barWidth,g=M.xDivision,x=M.zeroH,this.yArrj=[],this.yArrjF=[],this.yArrjVal=[],this.xArrj=[],this.xArrjF=[],this.xArrjVal=[];for(var E=0;E0){var y=o;this.prevXVal[f-1][p]<0?y=this.series[f][p]>=0?this.prevX[f-1][p]+m-2*(this.isReversed?m:0):this.prevX[f-1][p]:this.prevXVal[f-1][p]>=0&&(y=this.series[f][p]>=0?this.prevX[f-1][p]:this.prevX[f-1][p]-m+2*(this.isReversed?m:0)),e=y}else e=o;l=null===this.series[f][p]?e:e+this.series[f][p]/this.invertedYRatio-2*(this.isReversed?this.series[f][p]/this.invertedYRatio:0);var w={barHeight:s,strokeWidth:a,invertedYRatio:this.invertedYRatio,barYPosition:g,x:l},k=this.bar.barEndingShape(u,w,this.series,f,p);if(this.series.length>1&&f!==this.endingShapeOnSeriesNumber&&(k.path=this.graphics.line(k.newX,g+s-a)),this.xArrj.push(k.newX),this.xArrjF.push(Math.abs(e-k.newX)),this.xArrjVal.push(this.series[f][p]),n=this.graphics.move(e,g),r=this.graphics.move(e,g),u.globals.previousPaths.length>0&&(r=this.bar.getPathFrom(x,p,!1)),n=n+this.graphics.line(k.newX,g)+k.path+this.graphics.line(e,g+s-a)+this.graphics.line(e,g),r=r+this.graphics.line(e,g)+this.graphics.line(e,g+s-a)+this.graphics.line(e,g+s-a)+this.graphics.line(e,g+s-a)+this.graphics.line(e,g),u.config.plotOptions.bar.colors.backgroundBarColors.length>0&&0===f){b>=u.config.plotOptions.bar.colors.backgroundBarColors.length&&(b=0);var A=u.config.plotOptions.bar.colors.backgroundBarColors[b],S=this.graphics.drawRect(0,g,u.globals.gridWidth,s,0,A,u.config.plotOptions.bar.colors.backgroundBarOpacity);d.add(S),S.node.classList.add("apexcharts-backgroundBar")}return{pathTo:n,pathFrom:r,x:l,y:h+=c}}},{key:"drawColumnPaths",value:function(t){var e=t.indexes,i=t.x,s=t.y,a=t.xDivision,n=t.pathTo,r=t.pathFrom,o=t.barWidth,l=t.zeroH,h=t.strokeWidth,c=t.elSeries,d=this.w,u=e.i,g=e.j,f=e.realIndex,p=e.bc;if(d.globals.isXNumeric){var x=d.globals.seriesX[u][g];x||(x=0),i=(x-d.globals.minX)/this.xRatio-o/2}for(var b,m=i,v=0,y=0;y0&&!d.globals.isXNumeric||u>0&&d.globals.isXNumeric&&d.globals.seriesX[u-1][g]===d.globals.seriesX[u][g]){var w=this.prevY[u-1][g];b=this.prevYVal[u-1][g]<0?this.series[u][g]>=0?w-v+2*(this.isReversed?v:0):w:this.series[u][g]>=0?w:w+v-2*(this.isReversed?v:0)}else b=d.globals.gridHeight-l;s=b-this.series[u][g]/this.yRatio[this.yaxisIndex]+2*(this.isReversed?this.series[u][g]/this.yRatio[this.yaxisIndex]:0);var k={barWidth:o,strokeWidth:h,yRatio:this.yRatio[this.yaxisIndex],barXPosition:m,y:s},A=this.bar.barEndingShape(d,k,this.series,u,g);if(this.yArrj.push(A.newY),this.yArrjF.push(Math.abs(b-A.newY)),this.yArrjVal.push(this.series[u][g]),n=this.graphics.move(m,b),r=this.graphics.move(m,b),d.globals.previousPaths.length>0&&(r=this.bar.getPathFrom(f,g,!1)),n=n+this.graphics.line(m,A.newY)+A.path+this.graphics.line(m+o-h,b)+this.graphics.line(m-h/2,b),r=r+this.graphics.line(m,b)+this.graphics.line(m+o-h,b)+this.graphics.line(m+o-h,b)+this.graphics.line(m+o-h,b)+this.graphics.line(m-h/2,b),d.config.plotOptions.bar.colors.backgroundBarColors.length>0&&0===u){p>=d.config.plotOptions.bar.colors.backgroundBarColors.length&&(p=0);var S=d.config.plotOptions.bar.colors.backgroundBarColors[p],C=this.graphics.drawRect(m,0,o,d.globals.gridHeight,0,S,d.config.plotOptions.bar.colors.backgroundBarOpacity);c.add(C),C.node.classList.add("apexcharts-backgroundBar")}return i+=a,{pathTo:n,pathFrom:r,x:d.globals.isXNumeric?i-a:i,y:s}}},{key:"checkZeroSeries",value:function(t){for(var e=t.series,i=this.w,s=0;s=0;r--)this.zeroSerieses.indexOf(r)>-1&&r===this.endingShapeOnSeriesNumber&&(this.endingShapeOnSeriesNumber-=1)}}]),i}(),E=function(t){function i(){return e(this,i),h(this,o(i).apply(this,arguments))}return r(i,P),s(i,[{key:"draw",value:function(t,e){var i=this.w,s=new f(this.ctx),a=new S(this.ctx);this.candlestickOptions=this.w.config.plotOptions.candlestick;var n=new y(this.ctx,i);t=n.getLogSeries(t),this.series=t,this.yRatio=n.getLogYRatios(this.yRatio),this.initVariables(t);for(var r=s.group({class:"apexcharts-candlestick-series apexcharts-plot-series"}),o=0,l=0;o0&&(this.visibleI=this.visibleI+1);var k,A,C=0;this.yRatio.length>1&&(this.yaxisIndex=v);var L=this.initialPositions();x=L.y,k=L.barHeight,p=L.x,A=L.barWidth,h=L.xDivision,c=L.zeroH,m.push(p+A/2);for(var z=s.group({class:"apexcharts-datalabels"}),P=0,M=i.globals.dataPoints;P0&&m.push(p+A/2),b.push(x);var X=a.fillPath({seriesNumber:v,color:E,value:t[o][P]}),I=this.candlestickOptions.wick.useFillColor?E:void 0;w=this.renderSeries({realIndex:v,pathFill:X,lineFill:I,j:P,i:o,pathFrom:g,pathTo:u,strokeWidth:C,elSeries:w,x:p,y:x,series:t,barHeight:k,barWidth:A,elDataLabelsWrap:z,visibleSeries:this.visibleI,type:"candlestick"})}i.globals.seriesXvalues[v]=m,i.globals.seriesYvalues[v]=b,r.add(w)}return r}},{key:"drawCandleStickPaths",value:function(t){var e=t.indexes,i=t.x,s=(t.y,t.xDivision),a=t.pathTo,n=t.pathFrom,r=t.barWidth,o=t.zeroH,l=t.strokeWidth,h=this.w,c=new f(this.ctx),d=e.i,u=e.j,g=!0,p=h.config.plotOptions.candlestick.colors.upward,x=h.config.plotOptions.candlestick.colors.downward,b=this.yRatio[this.yaxisIndex],m=e.realIndex,v=this.getOHLCValue(m,u),y=o,w=o;v.o>v.c&&(g=!1);var k=Math.min(v.o,v.c),A=Math.max(v.o,v.c);h.globals.isXNumeric&&(i=(h.globals.seriesX[d][u]-h.globals.minX)/this.xRatio-r/2);var S=i+r*this.visibleI;return void 0===this.series[d][u]||null===this.series[d][u]?k=o:(k=o-k/b,A=o-A/b,y=o-v.h/b,w=o-v.l/b),c.move(S,o),n=c.move(S,k),h.globals.previousPaths.length>0&&(n=this.getPathFrom(m,u,!0)),a=c.move(S,A)+c.line(S+r/2,A)+c.line(S+r/2,y)+c.line(S+r/2,A)+c.line(S+r,A)+c.line(S+r,k)+c.line(S+r/2,k)+c.line(S+r/2,w)+c.line(S+r/2,k)+c.line(S,k)+c.line(S,A-l/2),n+=c.move(S,k),h.globals.isXNumeric||(i+=s),{pathTo:a,pathFrom:n,x:i,y:A,barXPosition:S,color:g?p:x}}},{key:"getOHLCValue",value:function(t,e){var i=this.w;return{o:i.globals.seriesCandleO[t][e],h:i.globals.seriesCandleH[t][e],l:i.globals.seriesCandleL[t][e],c:i.globals.seriesCandleC[t][e]}}}]),i}(),T=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return s(t,[{key:"drawXCrosshairs",value:function(){var t=this.w,e=new f(this.ctx),i=new u(this.ctx),s=t.config.xaxis.crosshairs.fill.gradient,a=t.config.xaxis.crosshairs.dropShadow,n=t.config.xaxis.crosshairs.fill.type,r=s.colorFrom,o=s.colorTo,l=s.opacityFrom,h=s.opacityTo,c=s.stops,g=a.enabled,p=a.left,x=a.top,b=a.blur,m=a.color,v=a.opacity,y=t.config.xaxis.crosshairs.fill.color;if(t.config.xaxis.crosshairs.show){"gradient"===n&&(y=e.drawGradient("vertical",r,o,l,h,null,c,null));var w=e.drawRect();1===t.config.xaxis.crosshairs.width&&(w=e.drawLine()),w.attr({class:"apexcharts-xcrosshairs",x:0,y:0,y2:t.globals.gridHeight,width:d.isNumber(t.config.xaxis.crosshairs.width)?t.config.xaxis.crosshairs.width:0,height:t.globals.gridHeight,fill:y,filter:"none","fill-opacity":t.config.xaxis.crosshairs.opacity,stroke:t.config.xaxis.crosshairs.stroke.color,"stroke-width":t.config.xaxis.crosshairs.stroke.width,"stroke-dasharray":t.config.xaxis.crosshairs.stroke.dashArray}),g&&(w=i.dropShadow(w,{left:p,top:x,blur:b,color:m,opacity:v})),t.globals.dom.elGraphical.add(w)}}},{key:"drawYCrosshairs",value:function(){var t=this.w,e=new f(this.ctx),i=t.config.yaxis[0].crosshairs;if(t.config.yaxis[0].crosshairs.show){var s=e.drawLine(0,0,t.globals.gridWidth,0,i.stroke.color,i.stroke.dashArray,i.stroke.width);s.attr({class:"apexcharts-ycrosshairs"}),t.globals.dom.elGraphical.add(s)}var a=e.drawLine(0,0,t.globals.gridWidth,0,i.stroke.color,0,0);a.attr({class:"apexcharts-ycrosshairs-hidden"}),t.globals.dom.elGraphical.add(a)}}]),t}(),X=function(){function t(i,s){e(this,t),this.ctx=i,this.w=i.w,this.xRatio=s.xRatio,this.yRatio=s.yRatio,this.negRange=!1,this.dynamicAnim=this.w.config.chart.animations.dynamicAnimation,this.rectRadius=this.w.config.plotOptions.heatmap.radius,this.strokeWidth=this.w.config.stroke.width}return s(t,[{key:"draw",value:function(t){var e=this.w,i=new f(this.ctx),s=i.group({class:"apexcharts-heatmap"});s.attr("clip-path","url(#gridRectMask".concat(e.globals.cuid,")"));var a=e.globals.gridWidth/e.globals.dataPoints,n=e.globals.gridHeight/e.globals.series.length,r=0,o=!1;this.checkColorRange();var l=t.slice();e.config.yaxis[0].reversed&&(o=!0,l.reverse());for(var h=o?0:l.length-1;o?h=0;o?h++:h--){var c=i.group({class:"apexcharts-series apexcharts-heatmap-series",seriesName:d.escapeString(e.globals.seriesNames[h]),rel:h+1,"data:realIndex":h});if(e.config.chart.dropShadow.enabled){var g=e.config.chart.dropShadow;new u(this.ctx).dropShadow(c,g,h)}for(var p=0,x=0;x0&&e.colorScale.ranges.map(function(e,i){e.from<0&&(t.negRange=!0)})}},{key:"determineHeatColor",value:function(t,e){var i=this.w,s=i.globals.series[t][e],a=i.config.plotOptions.heatmap,n=a.colorScale.inverse?e:t,r=i.globals.colors[n],o=Math.min.apply(Math,c(i.globals.series[t])),l=Math.max.apply(Math,c(i.globals.series[t]));a.distributed||(o=i.globals.minY,l=i.globals.maxY),void 0!==a.colorScale.min&&(o=a.colorScale.mini.globals.maxY?a.colorScale.max:i.globals.maxY);var h=Math.abs(l)+Math.abs(o),d=100*s/(0===h?h-1e-6:h);a.colorScale.ranges.length>0&&a.colorScale.ranges.map(function(t,e){if(s>=t.from&&s<=t.to){r=t.color,o=t.from,l=t.to;var i=Math.abs(l)+Math.abs(o);d=100*s/(0===i?i-1e-6:i)}});return{color:r,percent:d}}},{key:"calculateHeatmapDataLabels",value:function(t){var e=t.x,i=t.y,s=t.i,a=t.j,n=(t.series,t.rectHeight),r=t.rectWidth,o=this.w,l=o.config.dataLabels,h=new f(this.ctx),c=new z(this.ctx),d=l.formatter,u=null;if(l.enabled){u=h.group({class:"apexcharts-data-labels"});var g=l.offsetX,p=l.offsetY,x=e+r/2+g,b=i+n/2+parseInt(l.style.fontSize)/3+p,m=d(o.globals.series[s][a],{seriesIndex:s,dataPointIndex:a,w:o});c.plotDataLabelsText({x:x,y:b,text:m,i:s,j:a,parent:u,dataLabelsConfig:l})}return u}},{key:"animateHeatMap",value:function(t,e,i,s,a,n){var r=new g(this.ctx);r.animateRect(t,{x:e+s/2,y:i+a/2,width:0,height:0},{x:e,y:i,width:s,height:a},n,function(){r.animationCompleted()})}},{key:"animateHeatColor",value:function(t,e,i,s){t.attr({fill:e}).animate(s).attr({fill:i})}}]),t}(),I=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.chartType=this.w.config.chart.type,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled,this.animBeginArr=[0],this.animDur=0,this.donutDataLabels=this.w.config.plotOptions.pie.donut.labels;var s=this.w;this.lineColorArr=void 0!==s.globals.stroke.colors?s.globals.stroke.colors:s.globals.colors,this.defaultSize=s.globals.svgHeightthis.fullAngle?e.endAngle=e.endAngle-(s+r):s+r=360&&(l=359.99);var h=Math.PI*(l-90)/180,c=e.centerX+a*Math.cos(o),u=e.centerY+a*Math.sin(o),g=e.centerX+a*Math.cos(h),f=e.centerY+a*Math.sin(h),p=d.polarToCartesian(e.centerX,e.centerY,e.donutSize,l),x=d.polarToCartesian(e.centerX,e.centerY,e.donutSize,r),b=s>180?1:0;return"donut"===n.config.chart.type?["M",c,u,"A",a,a,0,b,1,g,f,"L",p.x,p.y,"A",e.donutSize,e.donutSize,0,b,0,x.x,x.y,"L",c,u,"z"].join(" "):"pie"===n.config.chart.type?["M",c,u,"A",a,a,0,b,1,g,f,"L",e.centerX,e.centerY,"L",c,u].join(" "):["M",c,u,"A",a,a,0,b,1,g,f].join(" ")}},{key:"renderInnerDataLabels",value:function(t,e){var i=this.w,s=new f(this.ctx),a=s.group({class:"apexcharts-datalabels-group",transform:"translate(".concat(e.translateX?e.translateX:0,", ").concat(e.translateY?e.translateY:0,")")}),n=t.total.show;a.node.style.opacity=e.opacity;var r,o,l=e.centerX,h=e.centerY;r=void 0===t.name.color?i.globals.colors[0]:t.name.color,o=void 0===t.value.color?i.config.chart.foreColor:t.value.color;var c=t.value.formatter,d="",u="";if(n?(r=t.total.color,u=t.total.label,d=t.total.formatter(i)):1===i.globals.series.length&&(d=c(i.globals.series[0],i),u=i.globals.seriesNames[0]),t.name.show){var g=s.drawText({x:l,y:h+parseInt(t.name.offsetY),text:u,textAnchor:"middle",foreColor:r,fontSize:t.name.fontSize,fontFamily:t.name.fontFamily});g.node.classList.add("apexcharts-datalabel-label"),a.add(g)}if(t.value.show){var p=t.name.show?parseInt(t.value.offsetY)+16:t.value.offsetY,x=s.drawText({x:l,y:h+p,text:d,textAnchor:"middle",foreColor:o,fontSize:t.value.fontSize,fontFamily:t.value.fontFamily});x.node.classList.add("apexcharts-datalabel-value"),a.add(x)}return a}},{key:"printInnerLabels",value:function(t,e,i,s){var a,n=this.w;s?a=void 0===t.name.color?n.globals.colors[parseInt(s.parentNode.getAttribute("rel"))-1]:t.name.color:n.globals.series.length>1&&t.total.show&&(a=t.total.color);var r=n.globals.dom.baseEl.querySelector(".apexcharts-datalabel-label"),o=n.globals.dom.baseEl.querySelector(".apexcharts-datalabel-value");i=(0,t.value.formatter)(i,n),s||"function"!=typeof t.total.formatter||(i=t.total.formatter(n)),null!==r&&(r.textContent=e),null!==o&&(o.textContent=i),null!==r&&(r.style.fill=a)}},{key:"printDataLabelsInner",value:function(t,e){var i=this.w,s=t.getAttribute("data:value"),a=i.globals.seriesNames[parseInt(t.parentNode.getAttribute("rel"))-1];i.globals.series.length>1&&this.printInnerLabels(e,a,s,t);var n=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels-group");null!==n&&(n.style.opacity=1)}},{key:"revertDataLabelsInner",value:function(e,i,s){var a=this,n=this.w,r=n.globals.dom.baseEl.querySelector(".apexcharts-datalabels-group");if(i.total.show&&n.globals.series.length>1){new t(this.ctx).printInnerLabels(i,i.total.label,i.total.formatter(n))}else{var o=document.querySelectorAll(".apexcharts-pie-area"),l=!1;if(Array.prototype.forEach.call(o,function(t){"true"===t.getAttribute("data:pieClicked")&&(l=!0,a.printDataLabelsInner(t,i))}),!l)if(n.globals.selectedDataPoints.length&&n.globals.series.length>1)if(n.globals.selectedDataPoints[0].length>0){var h=n.globals.selectedDataPoints[0],c=n.globals.dom.baseEl.querySelector(".apexcharts-".concat(n.config.chart.type.toLowerCase(),"-slice-").concat(h));this.printDataLabelsInner(c,i)}else r&&n.globals.selectedDataPoints.length&&0===n.globals.selectedDataPoints[0].length&&(r.style.opacity=0);else r&&n.globals.series.length>1&&(r.style.opacity=0)}}}]),t}(),Y=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.chartType=this.w.config.chart.type,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled,this.animDur=0;var s=this.w;this.graphics=new f(this.ctx),this.lineColorArr=void 0!==s.globals.stroke.colors?s.globals.stroke.colors:s.globals.colors,this.defaultSize=s.globals.svgHeight0&&(f=e.getPathFrom(r));for(var p=0;p=10?n[h].x>0?(i="start",r+=10):n[h].x<0&&(i="end",r-=10):i="middle",Math.abs(n[h].y)>=t.size-10&&(n[h].y<0?o-=10:n[h].y>0&&(o+=10));var u=c(l,{seriesIndex:-1,dataPointIndex:h,w:e});d.plotDataLabelsText({x:r,y:o,text:u,textAnchor:i,i:h,j:h,parent:a,dataLabelsConfig:s,offsetCorrection:!1})}}),a}},{key:"createPaths",value:function(t,e){var i=this,s=[],a=[],n=[],r=[];if(t.length){a=[this.graphics.move(e.x,e.y)],r=[this.graphics.move(e.x,e.y)];var o=this.graphics.move(t[0].x,t[0].y),l=this.graphics.move(t[0].x,t[0].y);t.forEach(function(e,s){o+=i.graphics.line(e.x,e.y),l+=i.graphics.line(e.x,e.y),s===t.length-1&&(o+="Z",l+="Z")}),s.push(o),n.push(l)}return{linePathsFrom:a,linePathsTo:s,areaPathsFrom:r,areaPathsTo:n}}},{key:"getPathFrom",value:function(t){for(var e=this.w,i=null,s=0;s0&&parseInt(a.realIndex)===parseInt(t)&&void 0!==e.globals.previousPaths[s].paths[0]&&(i=e.globals.previousPaths[s].paths[0].d)}return i}},{key:"getDataPointsPos",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.dataPointsLen;t=t||[],e=e||[];for(var s=[],a=0;a=360&&(g=360-Math.abs(this.startAngle)-.1);var p=i.drawPath({d:"",stroke:c,strokeWidth:r*parseInt(h.strokeWidth)/100,fill:"none",strokeOpacity:h.opacity,classes:"apexcharts-radialbar-area"});if(h.dropShadow.enabled){var x=h.dropShadow;a.dropShadow(p,x)}l.add(p),p.attr("id","apexcharts-radialbarTrack-"+o),this.animatePaths(p,{centerX:t.centerX,centerY:t.centerY,endAngle:g,startAngle:d,size:t.size,i:o,totalItems:2,animBeginArr:0,dur:0,isTrack:!0,easing:e.globals.easing})}return s}},{key:"drawArcs",value:function(t){var e=this.w,i=new f(this.ctx),s=new S(this.ctx),a=new u(this.ctx),n=i.group(),r=this.getStrokeWidth(t);t.size=t.size-r/2;var o=e.config.plotOptions.radialBar.hollow.background,l=t.size-r*t.series.length-this.margin*t.series.length-r*parseInt(e.config.plotOptions.radialBar.track.strokeWidth)/100/2,h=l-e.config.plotOptions.radialBar.hollow.margin;void 0!==e.config.plotOptions.radialBar.hollow.image&&(o=this.drawHollowImage(t,n,l,o));var c=this.drawHollow({size:h,centerX:t.centerX,centerY:t.centerY,fill:o});if(e.config.plotOptions.radialBar.hollow.dropShadow.enabled){var g=e.config.plotOptions.radialBar.hollow.dropShadow;a.dropShadow(c,g)}var p=1;!this.radialDataLabels.total.show&&e.globals.series.length>1&&(p=0);var x=null;this.radialDataLabels.show&&(x=this.renderInnerDataLabels(this.radialDataLabels,{hollowSize:l,centerX:t.centerX,centerY:t.centerY,opacity:p})),"back"===e.config.plotOptions.radialBar.hollow.position&&(n.add(c),x&&n.add(x));var b=!1;e.config.plotOptions.radialBar.inverseOrder&&(b=!0);for(var m=b?t.series.length-1:0;b?m>=0:m100?100:t.series[m])/100,L=Math.round(A*C)+this.startAngle,z=void 0;e.globals.dataChanged&&(k=this.startAngle,z=Math.round(A*d.negToZero(e.globals.previousPaths[m])/100)+k),Math.abs(L)+Math.abs(w)>=360&&(L-=.01),Math.abs(z)+Math.abs(k)>=360&&(z-=.01);var P=L-w,M=Array.isArray(e.config.stroke.dashArray)?e.config.stroke.dashArray[m]:e.config.stroke.dashArray,E=i.drawPath({d:"",stroke:y,strokeWidth:r,fill:"none",fillOpacity:e.config.fill.opacity,classes:"apexcharts-radialbar-area apexcharts-radialbar-slice-"+m,strokeDashArray:M});if(f.setAttrs(E.node,{"data:angle":P,"data:value":t.series[m]}),e.config.chart.dropShadow.enabled){var T=e.config.chart.dropShadow;a.dropShadow(E,T,m)}this.addListeners(E,this.radialDataLabels),v.add(E),E.attr({index:0,j:m});var X=0;!this.initialAnim||e.globals.resized||e.globals.dataChanged||(X=(L-w)/360*e.config.chart.animations.speed,this.animDur=X/(1.2*t.series.length)+this.animDur,this.animBeginArr.push(this.animDur)),e.globals.dataChanged&&(X=(L-w)/360*e.config.chart.animations.dynamicAnimation.speed,this.animDur=X/(1.2*t.series.length)+this.animDur,this.animBeginArr.push(this.animDur)),this.animatePaths(E,{centerX:t.centerX,centerY:t.centerY,endAngle:L,startAngle:w,prevEndAngle:z,prevStartAngle:k,size:t.size,i:m,totalItems:2,animBeginArr:this.animBeginArr,dur:X,shouldSetPrevPaths:!0,easing:e.globals.easing})}return{g:n,elHollow:c,dataLabels:x}}},{key:"drawHollow",value:function(t){var e=new f(this.ctx).drawCircle(2*t.size);return e.attr({class:"apexcharts-radialbar-hollow",cx:t.centerX,cy:t.centerY,r:t.size,fill:t.fill}),e}},{key:"drawHollowImage",value:function(t,e,i,s){var a=this.w,n=new S(this.ctx),r=(Math.random()+1).toString(36).substring(4),o=a.config.plotOptions.radialBar.hollow.image;if(a.config.plotOptions.radialBar.hollow.imageClipped)n.clippedImgArea({width:i,height:i,image:o,patternID:"pattern".concat(a.globals.cuid).concat(r)}),s="url(#pattern".concat(a.globals.cuid).concat(r,")");else{var l=a.config.plotOptions.radialBar.hollow.imageWidth,h=a.config.plotOptions.radialBar.hollow.imageHeight;if(void 0===l&&void 0===h){var c=a.globals.dom.Paper.image(o).loaded(function(e){this.move(t.centerX-e.width/2+a.config.plotOptions.radialBar.hollow.imageOffsetX,t.centerY-e.height/2+a.config.plotOptions.radialBar.hollow.imageOffsetY)});e.add(c)}else{var d=a.globals.dom.Paper.image(o).loaded(function(e){this.move(t.centerX-l/2+a.config.plotOptions.radialBar.hollow.imageOffsetX,t.centerY-h/2+a.config.plotOptions.radialBar.hollow.imageOffsetY),this.size(l,h)});e.add(d)}}return s}},{key:"getStrokeWidth",value:function(t){var e=this.w;return t.size*(100-parseInt(e.config.plotOptions.radialBar.hollow.size))/100/(t.series.length+1)-this.margin}}]),i}(),R=function(t){function i(){return e(this,i),h(this,o(i).apply(this,arguments))}return r(i,P),s(i,[{key:"draw",value:function(t,e){var i=this.w,s=new f(this.ctx),a=new S(this.ctx);this.rangeBarOptions=this.w.config.plotOptions.rangeBar,this.series=t,this.seriesRangeStart=i.globals.seriesRangeStart,this.seriesRangeEnd=i.globals.seriesRangeEnd,this.initVariables(t);for(var n=s.group({class:"apexcharts-rangebar-series apexcharts-plot-series"}),r=0,o=0;r0&&(this.visibleI=this.visibleI+1);var k=0,A=0,C=0;this.yRatio.length>1&&(this.yaxisIndex=y);var L=this.initialPositions();b=L.y,h=L.yDivision,A=L.barHeight,u=L.zeroW,x=L.x,C=L.barWidth,l=L.xDivision,c=L.zeroH,v.push(x+C/2);for(var z=s.group({class:"apexcharts-datalabels"}),P=0,M=i.globals.dataPoints;P0&&v.push(x+C/2),m.push(b);var T=a.fillPath({seriesNumber:y}),X=i.globals.stroke.colors[y];w=this.renderSeries({realIndex:y,pathFill:T,lineFill:X,j:P,i:r,pathFrom:p,pathTo:g,strokeWidth:k,elSeries:w,x:x,y:b,series:t,barHeight:A,barWidth:C,elDataLabelsWrap:z,visibleSeries:this.visibleI,type:"rangebar"})}i.globals.seriesXvalues[y]=v,i.globals.seriesYvalues[y]=m,n.add(w)}return n}},{key:"drawRangeColumnPaths",value:function(t){var e=t.indexes,i=t.x,s=(t.y,t.strokeWidth),a=t.xDivision,n=t.pathTo,r=t.pathFrom,o=t.barWidth,l=t.zeroH,h=this.w,c=new f(this.ctx),d=e.i,u=e.j,g=this.yRatio[this.yaxisIndex],p=e.realIndex,x=this.getRangeValue(p,u),b=Math.min(x.start,x.end),m=Math.max(x.start,x.end);h.globals.isXNumeric&&(i=(h.globals.seriesX[d][u]-h.globals.minX)/this.xRatio-o/2);var v=i+o*this.visibleI;void 0===this.series[d][u]||null===this.series[d][u]?b=l:(b=l-b/g,m=l-m/g);var y=Math.abs(m-b);return c.move(v,l),r=c.move(v,b),h.globals.previousPaths.length>0&&(r=this.getPathFrom(p,u,!0)),n=c.move(v,m)+c.line(v+o,m)+c.line(v+o,b)+c.line(v,b)+c.line(v,m-s/2),r=r+c.move(v,b)+c.line(v+o,b)+c.line(v+o,b)+c.line(v,b),h.globals.isXNumeric||(i+=a),{pathTo:n,pathFrom:r,barHeight:y,x:i,y:m,barXPosition:v}}},{key:"drawRangeBarPaths",value:function(t){var e=t.indexes,i=(t.x,t.y),s=t.yDivision,a=t.pathTo,n=t.pathFrom,r=t.barHeight,o=t.zeroW,l=this.w,h=new f(this.ctx),c=e.i,d=e.j,u=e.realIndex,g=o,p=o;l.globals.isXNumeric&&(i=(l.globals.seriesX[c][d]-l.globals.minX)/this.invertedXRatio-r);var x=i+r*this.visibleI;void 0!==this.series[c][d]&&null!==this.series[c][d]&&(g=o+this.seriesRangeStart[c][d]/this.invertedYRatio,p=o+this.seriesRangeEnd[c][d]/this.invertedYRatio),h.move(o,x),n=h.move(o,x),l.globals.previousPaths.length>0&&(n=this.getPathFrom(u,d));var b=Math.abs(p-g);return a=h.move(g,x)+h.line(p,x)+h.line(p,x+r)+h.line(g,x+r)+h.line(g,x),n=n+h.line(g,x)+h.line(g,x+r)+h.line(g,x+r)+h.line(g,x),l.globals.isXNumeric||(i+=s),{pathTo:a,pathFrom:n,barWidth:b,x:p,y:i,barYPosition:x}}},{key:"getRangeValue",value:function(t,e){var i=this.w;return{start:i.globals.seriesRangeStart[t][e],end:i.globals.seriesRangeEnd[t][e]}}}]),i}(),D=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.tooltipKeyFormat="dd MMM"}return s(t,[{key:"xLabelFormat",value:function(t,e,i){var s=this.w;if("datetime"===s.config.xaxis.type&&(void 0===s.config.xaxis.labels.formatter&&void 0===s.config.tooltip.x.formatter))return new m(this.ctx).formatDate(new Date(e),s.config.tooltip.x.format,!0,!0);return t(e,i)}},{key:"setLabelFormatters",value:function(){var t=this.w;return t.globals.xLabelFormatter=function(t){return t},t.globals.xaxisTooltipFormatter=function(t){return t},t.globals.ttKeyFormatter=function(t){return t},t.globals.ttZFormatter=function(t){return t},t.globals.legendFormatter=function(t){return t},void 0!==t.config.xaxis.labels.formatter?t.globals.xLabelFormatter=t.config.xaxis.labels.formatter:t.globals.xLabelFormatter=function(e){if(d.isNumber(e)){if("numeric"===t.config.xaxis.type&&t.globals.dataPoints<50)return e.toFixed(1);if(t.globals.isBarHorizontal)if(t.globals.maxY-t.globals.minYArr<4)return e.toFixed(1);return e.toFixed(0)}return e},"function"==typeof t.config.tooltip.x.formatter?t.globals.ttKeyFormatter=t.config.tooltip.x.formatter:t.globals.ttKeyFormatter=t.globals.xLabelFormatter,"function"==typeof t.config.xaxis.tooltip.formatter&&(t.globals.xaxisTooltipFormatter=t.config.xaxis.tooltip.formatter),Array.isArray(t.config.tooltip.y)?t.globals.ttVal=t.config.tooltip.y:void 0!==t.config.tooltip.y.formatter&&(t.globals.ttVal=t.config.tooltip.y),void 0!==t.config.tooltip.z.formatter&&(t.globals.ttZFormatter=t.config.tooltip.z.formatter),void 0!==t.config.legend.formatter&&(t.globals.legendFormatter=t.config.legend.formatter),t.config.yaxis.forEach(function(e,i){void 0!==e.labels.formatter?t.globals.yLabelFormatters[i]=e.labels.formatter:t.globals.yLabelFormatters[i]=function(s){return t.globals.xyCharts&&d.isNumber(s)?0!==t.globals.yValueDecimal?s.toFixed(void 0!==e.decimalsInFloat?e.decimalsInFloat:t.globals.yValueDecimal):t.globals.maxYArr[i]-t.globals.minYArr[i]<10?s.toFixed(1):s.toFixed(0):s}}),t.globals}},{key:"heatmapLabelFormatters",value:function(){var t=this.w;if("heatmap"===t.config.chart.type){t.globals.yAxisScale[0].result=t.globals.seriesNames.slice();var e=t.globals.seriesNames.reduce(function(t,e){return t.length>e.length?t:e},0);t.globals.yAxisScale[0].niceMax=e,t.globals.yAxisScale[0].niceMin=e}}}]),t}(),N=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return s(t,[{key:"getLabel",value:function(t,e,i,s){var a,n=arguments.length>4&&void 0!==arguments[4]?arguments[4]:[],r=this.w,o=void 0===t[s]?"":t[s],l=r.globals.xLabelFormatter,h=r.config.xaxis.labels.formatter,c=!1,d=o;a=new D(this.ctx).xLabelFormat(l,o,d),void 0!==h&&(a=h(o,t[s],s));var u,g;return e.length>0?(u=e[s].unit,g=null,e.forEach(function(t){"month"===t.unit?g="year":"day"===t.unit?g="month":"hour"===t.unit?g="day":"minute"===t.unit&&(g="hour")}),c=g===u,i=e[s].position,a=e[s].value):"datetime"===r.config.xaxis.type&&void 0===h&&(a=""),void 0===a&&(a=""),(0===(a=a.toString()).indexOf("NaN")||0===a.toLowerCase().indexOf("invalid")||a.toLowerCase().indexOf("infinity")>=0||n.indexOf(a)>=0&&!r.config.xaxis.labels.showDuplicates)&&(a=""),{x:i,text:a,isBold:c}}},{key:"drawYAxisTicks",value:function(t,e,i,s,a,n,r){var o=this.w,l=new f(this.ctx),h=o.globals.translateY;if(s.show){!0===o.config.yaxis[a].opposite&&(t+=s.width);for(var c=e;c>=0;c--){var d=h+e/10+o.config.yaxis[a].labels.offsetY-1;o.globals.isBarHorizontal&&(d=n*c);var u=l.drawLine(t+i.offsetX-s.width+s.offsetX,d+s.offsetY,t+i.offsetX+s.offsetX,d+s.offsetY,i.color);r.add(u),h+=n}}}}]),t}(),O=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w;var s=this.w;this.xaxisFontSize=s.config.xaxis.labels.style.fontSize,this.axisFontFamily=s.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=s.config.xaxis.labels.style.colors,this.xAxisoffX=0,"bottom"===s.config.xaxis.position&&(this.xAxisoffX=s.globals.gridHeight),this.drawnLabels=[],this.axesUtils=new N(i)}return s(t,[{key:"drawYaxis",value:function(t){var e=this.w,i=new f(this.ctx),s=e.config.yaxis[t].labels.style.fontSize,a=e.config.yaxis[t].labels.style.fontFamily,n=i.group({class:"apexcharts-yaxis",rel:t,transform:"translate("+e.globals.translateYAxisX[t]+", 0)"});if(!e.config.yaxis[t].show)return n;var r=i.group({class:"apexcharts-yaxis-texts-g"});n.add(r);var o=e.globals.yAxisScale[t].result.length-1,l=e.globals.gridHeight/o+.1,h=e.globals.translateY,c=e.globals.yLabelFormatters[t],d=e.globals.yAxisScale[t].result.slice();if(e.config.yaxis[t]&&e.config.yaxis[t].reversed&&d.reverse(),e.config.yaxis[t].labels.show)for(var u=o;u>=0;u--){var g=d[u];g=c(g,u);var p=e.config.yaxis[t].labels.padding;e.config.yaxis[t].opposite&&0!==e.config.yaxis.length&&(p*=-1);var x=i.drawText({x:p,y:h+o/10+e.config.yaxis[t].labels.offsetY+1,text:g,textAnchor:e.config.yaxis[t].opposite?"start":"end",fontSize:s,fontFamily:a,foreColor:e.config.yaxis[t].labels.style.color,cssClass:"apexcharts-yaxis-label "+e.config.yaxis[t].labels.style.cssClass});r.add(x);var b=i.rotateAroundCenter(x.node);0!==e.config.yaxis[t].labels.rotate&&x.node.setAttribute("transform","rotate(".concat(e.config.yaxis[t].labels.rotate," ").concat(b.x," ").concat(b.y,")")),h+=l}if(void 0!==e.config.yaxis[t].title.text){var m=i.group({class:"apexcharts-yaxis-title"}),v=0;e.config.yaxis[t].opposite&&(v=e.globals.translateYAxisX[t]);var y=i.drawText({x:v,y:e.globals.gridHeight/2+e.globals.translateY,text:e.config.yaxis[t].title.text,textAnchor:"end",foreColor:e.config.yaxis[t].title.style.color,fontSize:e.config.yaxis[t].title.style.fontSize,fontFamily:e.config.yaxis[t].title.style.fontFamily,cssClass:"apexcharts-yaxis-title-text "+e.config.yaxis[t].title.style.cssClass});m.add(y),n.add(m)}var w=e.config.yaxis[t].axisBorder;if(w.show){var k=31+w.offsetX;e.config.yaxis[t].opposite&&(k=-31-w.offsetX);var A=i.drawLine(k,e.globals.translateY+w.offsetY-2,k,e.globals.gridHeight+e.globals.translateY+w.offsetY+2,w.color);n.add(A),this.axesUtils.drawYAxisTicks(k,o,w,e.config.yaxis[t].axisTicks,t,l,n)}return n}},{key:"drawYaxisInversed",value:function(t){var e=this.w,i=new f(this.ctx),s=i.group({class:"apexcharts-xaxis apexcharts-yaxis-inversed"}),a=i.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(e.globals.translateXAxisX,", ").concat(e.globals.translateXAxisY,")")});s.add(a);var n=e.globals.yAxisScale[t].result.length-1,r=e.globals.gridWidth/n+.1,o=r+e.config.xaxis.labels.offsetX,l=e.globals.xLabelFormatter,h=e.globals.yAxisScale[t].result.slice(),c=e.globals.invertedTimelineLabels;c.length>0&&(this.xaxisLabels=c.slice(),n=(h=c.slice()).length),e.config.yaxis[t]&&e.config.yaxis[t].reversed&&h.reverse();var d=c.length;if(e.config.xaxis.labels.show)for(var u=d?0:n;d?u=0;d?u++:u--){var g=h[u];g=l(g,u);var p=e.globals.gridWidth+e.globals.padHorizontal-(o-r+e.config.xaxis.labels.offsetX);if(c.length){var x=this.axesUtils.getLabel(h,c,p,u,this.drawnLabels);p=x.x,g=x.text,this.drawnLabels.push(x.text)}var b=i.drawText({x:p,y:this.xAxisoffX+e.config.xaxis.labels.offsetY+30,text:"",textAnchor:"middle",foreColor:Array.isArray(this.xaxisForeColors)?this.xaxisForeColors[t]:this.xaxisForeColors,fontSize:this.xaxisFontSize,fontFamily:this.xaxisFontFamily,cssClass:"apexcharts-xaxis-label "+e.config.xaxis.labels.style.cssClass});a.add(b),b.tspan(g);var m=document.createElementNS(e.globals.SVGNS,"title");m.textContent=g,b.node.appendChild(m),o+=r}if(void 0!==e.config.xaxis.title.text){var v=i.group({class:"apexcharts-xaxis-title apexcharts-yaxis-title-inversed"}),y=i.drawText({x:e.globals.gridWidth/2,y:this.xAxisoffX+parseInt(this.xaxisFontSize)+parseInt(e.config.xaxis.title.style.fontSize)+20,text:e.config.xaxis.title.text,textAnchor:"middle",fontSize:e.config.xaxis.title.style.fontSize,fontFamily:e.config.xaxis.title.style.fontFamily,cssClass:"apexcharts-xaxis-title-text "+e.config.xaxis.title.style.cssClass});v.add(y),s.add(v)}var w=e.config.yaxis[t].axisBorder;if(w.show){var k=i.drawLine(e.globals.padHorizontal+w.offsetX,1+w.offsetY,e.globals.padHorizontal+w.offsetX,e.globals.gridHeight+w.offsetY,w.color);s.add(k)}return s}},{key:"yAxisTitleRotate",value:function(t,e){var i=this.w,s=new f(this.ctx),a={width:0,height:0},n={width:0,height:0},r=i.globals.dom.baseEl.querySelector(" .apexcharts-yaxis[rel='".concat(t,"'] .apexcharts-yaxis-texts-g"));null!==r&&(a=r.getBoundingClientRect());var o=i.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(t,"'] .apexcharts-yaxis-title text"));if(null!==o&&(n=o.getBoundingClientRect()),null!==o){var l=this.xPaddingForYAxisTitle(t,a,n,e);o.setAttribute("x",l.xPos-(e?10:0))}if(null!==o){var h=s.rotateAroundCenter(o);e?o.setAttribute("transform","rotate(".concat(i.config.yaxis[t].title.rotate," ").concat(h.x," ").concat(h.y,")")):o.setAttribute("transform","rotate(-".concat(i.config.yaxis[t].title.rotate," ").concat(h.x," ").concat(h.y,")"))}}},{key:"xPaddingForYAxisTitle",value:function(t,e,i,s){var a=this.w,n=0,r=0,o=10;return void 0===a.config.yaxis[t].title.text||t<0?{xPos:r,padd:0}:(s?(r=e.width+a.config.yaxis[t].title.offsetX+i.width/2+o/2,0===(n+=1)&&(r-=o/2)):(r=-1*e.width+a.config.yaxis[t].title.offsetX+o/2+i.width/2,a.globals.isBarHorizontal&&(o=25,r=-1*e.width-a.config.yaxis[t].title.offsetX-o)),{xPos:r,padd:o})}},{key:"setYAxisXPosition",value:function(t,e){var i=this.w,s=0,a=0,n=21,r=1;i.config.yaxis.length>1&&(this.multipleYs=!0),i.config.yaxis.map(function(o,l){var h=i.globals.ignoreYAxisIndexes.indexOf(l)>-1||!o.show||o.floating||0===t[l].width,c=t[l].width+e[l].width;o.opposite?i.globals.isBarHorizontal?(a=i.globals.gridWidth+i.globals.translateX-1,i.globals.translateYAxisX[l]=a-o.labels.offsetX):(a=i.globals.gridWidth+i.globals.translateX+r,h||(r=r+c+20),i.globals.translateYAxisX[l]=a-o.labels.offsetX+20):(s=i.globals.translateX-n,h||(n=n+c+20),i.globals.translateYAxisX[l]=s+o.labels.offsetX)})}},{key:"setYAxisTextAlignments",value:function(){var t=this.w,e=t.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis");(e=d.listToArray(e)).forEach(function(e,i){var s=t.config.yaxis[i];if(void 0!==s.labels.align){var a=t.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(i,"'] .apexcharts-yaxis-texts-g")),n=t.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis[rel='".concat(i,"'] .apexcharts-yaxis-label"));n=d.listToArray(n);var r=a.getBoundingClientRect();"left"===s.labels.align?(n.forEach(function(t,e){t.setAttribute("text-anchor","start")}),s.opposite||a.setAttribute("transform","translate(-".concat(r.width,", 0)"))):"center"===s.labels.align?(n.forEach(function(t,e){t.setAttribute("text-anchor","middle")}),a.setAttribute("transform","translate(".concat(r.width/2*(s.opposite?1:-1),", 0)"))):"right"===s.labels.align&&(n.forEach(function(t,e){t.setAttribute("text-anchor","end")}),s.opposite&&a.setAttribute("transform","translate(".concat(r.width,", 0)")))}})}}]),t}(),H=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.lgRect={},this.yAxisWidth=0,this.xAxisHeight=0,this.isSparkline=this.w.config.chart.sparkline.enabled,this.xPadRight=0,this.xPadLeft=0}return s(t,[{key:"plotCoords",value:function(){var t=this.w,e=t.globals,i=this.getLegendsRect();e.axisCharts?this.setGridCoordsForAxisCharts(i):this.setGridCoordsForNonAxisCharts(i),this.titleSubtitleOffset(),e.gridHeight=e.gridHeight-t.config.grid.padding.top-t.config.grid.padding.bottom,e.gridWidth=e.gridWidth-t.config.grid.padding.left-t.config.grid.padding.right-this.xPadRight-this.xPadLeft,e.translateX=e.translateX+t.config.grid.padding.left+this.xPadLeft,e.translateY=e.translateY+t.config.grid.padding.top}},{key:"conditionalChecksForAxisCoords",value:function(t,e){var i=this.w;this.xAxisHeight=(t.height+e.height)*i.globals.LINE_HEIGHT_RATIO+15,this.xAxisWidth=t.width,this.xAxisHeight-e.height>i.config.xaxis.labels.maxHeight&&(this.xAxisHeight=i.config.xaxis.labels.maxHeight),i.config.xaxis.labels.minHeight&&this.xAxisHeighta&&(this.yAxisWidth=a)}},{key:"setGridCoordsForAxisCharts",value:function(t){var e=this.w,i=e.globals,s=this.getyAxisLabelsCoords(),a=this.getxAxisLabelsCoords(),n=this.getyAxisTitleCoords(),r=this.getxAxisTitleCoords();e.globals.yLabelsCoords=[],e.globals.yTitleCoords=[],e.config.yaxis.map(function(t,i){e.globals.yLabelsCoords.push({width:s[i].width,index:i}),e.globals.yTitleCoords.push({width:n[i].width,index:i})}),this.conditionalChecksForAxisCoords(a,r),i.translateXAxisY=e.globals.rotateXLabels?this.xAxisHeight/8:-4,i.translateXAxisX=e.globals.rotateXLabels&&e.globals.isXNumeric&&e.config.xaxis.labels.rotate<=-45?-this.xAxisWidth/4:0,e.globals.isBarHorizontal&&(i.rotateXLabels=!1,i.translateXAxisY=parseInt(e.config.xaxis.labels.style.fontSize)/1.5*-1),i.translateXAxisY=i.translateXAxisY+e.config.xaxis.labels.offsetY,i.translateXAxisX=i.translateXAxisX+e.config.xaxis.labels.offsetX;var o=this.yAxisWidth,l=this.xAxisHeight;i.xAxisLabelsHeight=this.xAxisHeight,i.xAxisHeight=this.xAxisHeight;var h=10;switch(e.config.grid.show&&"radar"!==e.config.chart.type||(o=0,l=35),this.isSparkline&&(t={height:0,width:0},l=0,o=0,h=0),this.additionalPaddingXLabels(a),e.config.legend.position){case"bottom":i.translateY=h,i.translateX=o,i.gridHeight=i.svgHeight-t.height-l-(this.isSparkline?0:e.globals.rotateXLabels?10:15),i.gridWidth=i.svgWidth-o;break;case"top":i.translateY=t.height+h,i.translateX=o,i.gridHeight=i.svgHeight-t.height-l-(this.isSparkline?0:e.globals.rotateXLabels?10:15),i.gridWidth=i.svgWidth-o;break;case"left":i.translateY=h,i.translateX=t.width+o,i.gridHeight=i.svgHeight-l-12,i.gridWidth=i.svgWidth-t.width-o;break;case"right":i.translateY=h,i.translateX=o,i.gridHeight=i.svgHeight-l-12,i.gridWidth=i.svgWidth-t.width-o-5;break;default:throw new Error("Legend position not supported")}this.setGridXPosForDualYAxis(n,s),new O(this.ctx).setYAxisXPosition(s,n)}},{key:"setGridCoordsForNonAxisCharts",value:function(t){var e=this.w,i=e.globals,s=0;e.config.legend.show&&!e.config.legend.floating&&(s=20);var a=10,n=0;if("pie"===e.config.chart.type||"donut"===e.config.chart.type?(a+=e.config.plotOptions.pie.offsetY,n+=e.config.plotOptions.pie.offsetX):"radialBar"===e.config.chart.type&&(a+=e.config.plotOptions.radialBar.offsetY,n+=e.config.plotOptions.radialBar.offsetX),!e.config.legend.show)return i.gridHeight=i.svgHeight-35,i.gridWidth=i.gridHeight,i.translateY=a-10,void(i.translateX=n+(i.svgWidth-i.gridWidth)/2);switch(e.config.legend.position){case"bottom":i.gridHeight=i.svgHeight-t.height-35,i.gridWidth=i.gridHeight,i.translateY=a-20,i.translateX=n+(i.svgWidth-i.gridWidth)/2;break;case"top":i.gridHeight=i.svgHeight-t.height-35,i.gridWidth=i.gridHeight,i.translateY=t.height+a+10,i.translateX=n+(i.svgWidth-i.gridWidth)/2;break;case"left":i.gridWidth=i.svgWidth-t.width-s,i.gridHeight=i.gridWidth,i.translateY=a,i.translateX=n+t.width+s;break;case"right":i.gridWidth=i.svgWidth-t.width-s-5,i.gridHeight=i.gridWidth,i.translateY=a,i.translateX=n+10;break;default:throw new Error("Legend position not supported")}}},{key:"setGridXPosForDualYAxis",value:function(t,e){var i=this.w;i.config.yaxis.map(function(s,a){-1===i.globals.ignoreYAxisIndexes.indexOf(a)&&!i.config.yaxis[a].floating&&i.config.yaxis[a].show&&s.opposite&&(i.globals.translateX=i.globals.translateX-(e[a].width+t[a].width)-parseInt(i.config.yaxis[a].labels.style.fontSize)/1.2-12)})}},{key:"additionalPaddingXLabels",value:function(t){var e=this,i=this.w;if("category"===i.config.xaxis.type&&i.globals.isBarHorizontal||"numeric"===i.config.xaxis.type||"datetime"===i.config.xaxis.type){var s=i.globals.isXNumeric;i.config.yaxis.forEach(function(a,n){var r;(!a.show||a.floating||-1!==i.globals.collapsedSeriesIndices.indexOf(n)||s||a.opposite&&i.globals.isBarHorizontal)&&((s&&i.globals.isMultipleYAxis&&-1!==i.globals.collapsedSeriesIndices.indexOf(n)||i.globals.isBarHorizontal&&a.opposite)&&(r=t,i.config.grid.padding.lefti.globals.gridWidth?i.globals.skipLastTimelinelabel=!0:i.globals.skipLastTimelinelabel=!1:"datetime"===i.config.xaxis.type?i.config.grid.padding.right1||!t.globals.axisCharts||t.config.legend.showForSingleSeries)&&(i+=10);var s=this.getTitleSubtitleCoords("title"),a=this.getTitleSubtitleCoords("subtitle");e.gridHeight=e.gridHeight-s.height-a.height-i,e.translateY=e.translateY+s.height+a.height+i}},{key:"getTotalYAxisWidth",value:function(){var t=this.w,e=0,i=10,s=function(e){return t.globals.ignoreYAxisIndexes.indexOf(e)>-1};return t.globals.yLabelsCoords.map(function(a,n){var r=t.config.yaxis[n].floating;a.width>0&&!r?(e=e+a.width+i,s(n)&&(e=e-a.width-i)):e+=r||!t.config.yaxis[n].show?0:5}),t.globals.yTitleCoords.map(function(a,n){var r=t.config.yaxis[n].floating;i=parseInt(t.config.yaxis[n].title.style.fontSize),a.width>0&&!r?(e=e+a.width+i,s(n)&&(e=e-a.width-i)):e+=r||!t.config.yaxis[n].show?0:5}),e}},{key:"getxAxisTimeScaleLabelsCoords",value:function(){var t,e=this.w;this.timescaleLabels=e.globals.timelineLabels.slice(),e.globals.isBarHorizontal&&"datetime"===e.config.xaxis.type&&(this.timescaleLabels=e.globals.invertedTimelineLabels.slice());var i=this.timescaleLabels.map(function(t){return t.value}),s=i.reduce(function(t,e){return void 0===t?(console.error("You have possibly supplied invalid Date format. Please supply a valid JavaScript Date"),0):t.length>e.length?t:e},0);return 1.05*(t=new f(this.ctx).getTextRects(s,e.config.xaxis.labels.style.fontSize)).width*i.length>e.globals.gridWidth&&0!==e.config.xaxis.labels.rotate&&(e.globals.overlappingXLabels=!0),t}},{key:"getxAxisLabelsCoords",value:function(){var t,e=this.w,i=e.globals.labels.slice();if(e.globals.timelineLabels.length>0){var s=this.getxAxisTimeScaleLabelsCoords();t={width:s.width,height:s.height}}else{var a="left"!==e.config.legend.position||"right"!==e.config.legend.position||e.config.legend.floating?0:this.lgRect.width,n=e.globals.xLabelFormatter,r=i.reduce(function(t,e){return t.length>e.length?t:e},0);e.globals.isBarHorizontal&&(r=e.globals.yAxisScale[0].result.reduce(function(t,e){return t.length>e.length?t:e},0));var o=r;r=new D(this.ctx).xLabelFormat(n,r,o);var l=new f(this.ctx),h=l.getTextRects(r,e.config.xaxis.labels.style.fontSize);(t={width:h.width,height:h.height}).width*i.length>e.globals.svgWidth-a-this.yAxisWidth&&0!==e.config.xaxis.labels.rotate?e.globals.isBarHorizontal||(e.globals.rotateXLabels=!0,h=l.getTextRects(r,e.config.xaxis.labels.style.fontSize,e.config.xaxis.labels.style.fontFamily,"rotate(".concat(e.config.xaxis.labels.rotate," 0 0)"),!1),t.height=h.height/1.66):e.globals.rotateXLabels=!1}return e.config.xaxis.labels.show||(t={width:0,height:0}),{width:t.width,height:t.height}}},{key:"getyAxisLabelsCoords",value:function(){var t=this,e=this.w,i=[],s=10;return e.config.yaxis.map(function(a,n){if(a.show&&a.labels.show&&e.globals.yAxisScale[n].result.length){var r=e.globals.yLabelFormatters[n],o=r(e.globals.yAxisScale[n].niceMax,-1);if(void 0!==o&&0!==o.length||(o=e.globals.yAxisScale[n].niceMax),e.globals.isBarHorizontal)s=0,o=r(o=e.globals.labels.slice().reduce(function(t,e){return t.length>e.length?t:e},0),-1);var l=new f(t.ctx).getTextRects(o,a.labels.style.fontSize);i.push({width:l.width+s,height:l.height})}else i.push({width:0,height:0})}),i}},{key:"getxAxisTitleCoords",value:function(){var t=this.w,e=0,i=0;if(void 0!==t.config.xaxis.title.text){var s=new f(this.ctx).getTextRects(t.config.xaxis.title.text,t.config.xaxis.title.style.fontSize);e=s.width,i=s.height}return{width:e,height:i}}},{key:"getyAxisTitleCoords",value:function(){var t=this,e=this.w,i=[];return e.config.yaxis.map(function(e,s){if(e.show&&void 0!==e.title.text){var a=new f(t.ctx).getTextRects(e.title.text,e.title.style.fontSize,e.title.style.fontFamily,"rotate(-90 0 0)",!1);i.push({width:a.width,height:a.height})}else i.push({width:0,height:0})}),i}},{key:"getTitleSubtitleCoords",value:function(t){var e=this.w,i=0,s=0,a="title"===t?e.config.title.floating:e.config.subtitle.floating,n=e.globals.dom.baseEl.querySelector(".apexcharts-".concat(t,"-text"));if(null!==n&&!a){var r=n.getBoundingClientRect();i=r.width,s=e.globals.axisCharts?r.height+5:r.height}return{width:i,height:s}}},{key:"getLegendsRect",value:function(){var t=this.w,e=t.globals.dom.baseEl.querySelector(".apexcharts-legend"),i=Object.assign({},d.getBoundingClientRect(e));return null!==e&&!t.config.legend.floating&&t.config.legend.show?this.lgRect={x:i.x,y:i.y,height:i.height,width:0===i.height?0:i.width}:this.lgRect={x:0,y:0,height:0,width:0},this.lgRect}}]),t}(),W=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return s(t,[{key:"getAllSeriesEls",value:function(){return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series")}},{key:"getSeriesByName",value:function(t){return this.w.globals.dom.baseEl.querySelector("[seriesName='".concat(d.escapeString(t),"']"))}},{key:"addCollapsedClassToSeries",value:function(t,e){var i=this.w;function s(i){for(var s=0;s0&&void 0!==arguments[0])||arguments[0],e=this.w,i=e.globals.initialSeries.slice();e.config.series=i,e.globals.collapsedSeries=[],e.globals.ancillaryCollapsedSeries=[],e.globals.collapsedSeriesIndices=[],e.globals.ancillaryCollapsedSeriesIndices=[],e.globals.previousPaths=[],t&&this.ctx._updateSeries(i,e.config.chart.animations.dynamicAnimation.enabled)}},{key:"toggleSeriesOnHover",value:function(t,e){var i=this.w,s=i.globals.dom.baseEl.querySelectorAll(".apexcharts-series");if("mousemove"===t.type){var a=parseInt(e.getAttribute("rel"))-1,n=null;n=i.globals.axisCharts||"radialBar"===i.config.chart.type?i.globals.axisCharts?i.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(a,"']")):i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(a+1,"']")):i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(a+1,"'] path"));for(var r=0;r=t.from&&i<=t.to&&s[e].classList.remove("legend-mouseover-inactive")}}(i.config.plotOptions.heatmap.colorScale.ranges[n])}else"mouseout"===t.type&&a()}},{key:"getActiveSeriesIndex",value:function(){var t=this.w,e=0;if(t.globals.series.length>1)for(var i=t.globals.series.map(function(e,i){return e.length>0&&"bar"!==t.config.series[i].type&&"column"!==t.config.series[i].type?i:-1}),s=0;s1)for(var i=t.config.series.map(function(t,e){return t.data&&t.data.length>0?e:-1}),s=0;s0)for(var s=i.length-1;s>=0;s--)e(i,s,"line");var a=t.globals.dom.baseEl.querySelectorAll(".apexcharts-area-series .apexcharts-series");if(a.length>0)for(var n=a.length-1;n>=0;n--)e(a,n,"area");var r=t.globals.dom.baseEl.querySelectorAll(".apexcharts-bar-series .apexcharts-series");if(r.length>0)for(var o=0;o0)for(var h=0;h0)for(var d=0;d0)for(var g=0;g0)for(var m=0;m0)for(var A=0;A0?t:[]});return t}}]),t}(),B=function(){function t(i,s){e(this,t),this.ctx=i,this.w=i.w,this.onLegendClick=this.onLegendClick.bind(this),this.onLegendHovered=this.onLegendHovered.bind(this)}return s(t,[{key:"init",value:function(){var t=this.w,e=t.globals,i=t.config;if((i.legend.showForSingleSeries&&1===e.series.length||e.series.length>1||!e.axisCharts)&&i.legend.show){for(;e.dom.elLegendWrap.firstChild;)e.dom.elLegendWrap.removeChild(e.dom.elLegendWrap.firstChild);this.drawLegends(),d.isIE11()?document.getElementsByTagName("head")[0].appendChild(this.getLegendStyles()):this.appendToForeignObject(),"bottom"===i.legend.position||"top"===i.legend.position?this.legendAlignHorizontal():"right"!==i.legend.position&&"left"!==i.legend.position||this.legendAlignVertical()}}},{key:"appendToForeignObject",value:function(){var t=this.w.globals;t.dom.elLegendForeign=document.createElementNS(t.SVGNS,"foreignObject");var e=t.dom.elLegendForeign;e.setAttribute("x",0),e.setAttribute("y",0),e.setAttribute("width",t.svgWidth),e.setAttribute("height",t.svgHeight),t.dom.elLegendWrap.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),e.appendChild(t.dom.elLegendWrap),e.appendChild(this.getLegendStyles()),t.dom.Paper.node.insertBefore(e,t.dom.elGraphical.node)}},{key:"drawLegends",value:function(){var t=this.w,e=t.config.legend.fontFamily,i=t.globals.seriesNames,s=t.globals.colors.slice();if("heatmap"===t.config.chart.type){var a=t.config.plotOptions.heatmap.colorScale.ranges;i=a.map(function(t){return t.name?t.name:t.from+" - "+t.to}),s=a.map(function(t){return t.color})}for(var n=t.globals.legendFormatter,r=t.config.legend.inverseOrder,o=r?i.length-1:0;r?o>=0:o<=i.length-1;r?o--:o++){var l=n(i[o],{seriesIndex:o,w:t}),h=!1,c=!1;if(t.globals.collapsedSeries.length>0)for(var d=0;d0)for(var u=0;u0?l-10:0)+(h>0?h-10:0)}s.style.position="absolute",n=n+t+i.config.legend.offsetX,r=r+e+i.config.legend.offsetY,s.style.left=n+"px",s.style.top=r+"px","bottom"===i.config.legend.position?(s.style.top="auto",s.style.bottom=10+i.config.legend.offsetY+"px"):"right"===i.config.legend.position&&(s.style.left="auto",s.style.right=25+i.config.legend.offsetX+"px"),s.style.width&&(s.style.width=parseInt(i.config.legend.width)+"px"),s.style.height&&(s.style.height=parseInt(i.config.legend.height)+"px")}},{key:"legendAlignHorizontal",value:function(){var t=this.w;t.globals.dom.baseEl.querySelector(".apexcharts-legend").style.right=0;var e=this.getLegendBBox(),i=new H(this.ctx),s=i.getTitleSubtitleCoords("title"),a=i.getTitleSubtitleCoords("subtitle"),n=0;"bottom"===t.config.legend.position?n=-e.clwh/1.8:"top"===t.config.legend.position&&(n=s.height+a.height+t.config.title.margin+t.config.subtitle.margin-15),this.setLegendWrapXY(20,n)}},{key:"legendAlignVertical",value:function(){var t=this.w,e=this.getLegendBBox(),i=0;"left"===t.config.legend.position&&(i=20),"right"===t.config.legend.position&&(i=t.globals.svgWidth-e.clww-10),this.setLegendWrapXY(i,20)}},{key:"onLegendHovered",value:function(t){var e=this.w,i=t.target.classList.contains("apexcharts-legend-text")||t.target.classList.contains("apexcharts-legend-marker");if("heatmap"!==e.config.chart.type)!t.target.classList.contains("inactive-legend")&&i&&new W(this.ctx).toggleSeriesOnHover(t,t.target);else if(i){var s=parseInt(t.target.getAttribute("rel"))-1;this.ctx.fireEvent("legendHover",[this.ctx,s,this.w]),new W(this.ctx).highlightRangeInSeries(t,t.target)}}},{key:"onLegendClick",value:function(t){if(t.target.classList.contains("apexcharts-legend-text")||t.target.classList.contains("apexcharts-legend-marker")){var e=parseInt(t.target.getAttribute("rel"))-1,i="true"===t.target.getAttribute("data:collapsed"),s=this.w.config.chart.events.legendClick;"function"==typeof s&&s(this.ctx,e,this.w),this.ctx.fireEvent("legendClick",[this.ctx,e,this.w]);var a=this.w.config.legend.markers.onClick;"function"==typeof a&&t.target.classList.contains("apexcharts-legend-marker")&&(a(this.ctx,e,this.w),this.ctx.fireEvent("legendMarkerClick",[this.ctx,e,this.w])),this.toggleDataSeries(e,i)}}},{key:"getLegendStyles",value:function(){var t=document.createElement("style");t.setAttribute("type","text/css");var e=document.createTextNode("\n \n .apexcharts-legend {\n display: flex;\n overflow: auto;\n padding: 0 10px;\n }\n\n .apexcharts-legend.position-bottom, .apexcharts-legend.position-top {\n flex-wrap: wrap\n }\n .apexcharts-legend.position-right, .apexcharts-legend.position-left {\n flex-direction: column;\n bottom: 0;\n }\n\n .apexcharts-legend.position-bottom.left, .apexcharts-legend.position-top.left, .apexcharts-legend.position-right, .apexcharts-legend.position-left {\n justify-content: flex-start;\n }\n\n .apexcharts-legend.position-bottom.center, .apexcharts-legend.position-top.center {\n justify-content: center; \n }\n\n .apexcharts-legend.position-bottom.right, .apexcharts-legend.position-top.right {\n justify-content: flex-end;\n }\n\n .apexcharts-legend-series {\n cursor: pointer;\n line-height: normal;\n }\n\n .apexcharts-legend.position-bottom .apexcharts-legend-series, .apexcharts-legend.position-top .apexcharts-legend-series{\n display: flex;\n align-items: center;\n }\n\n .apexcharts-legend-text {\n position: relative;\n font-size: 14px;\n }\n\n .apexcharts-legend-text *, .apexcharts-legend-marker * {\n pointer-events: none;\n }\n\n .apexcharts-legend-marker {\n position: relative;\n display: inline-block;\n cursor: pointer;\n margin-right: 3px;\n }\n \n .apexcharts-legend.right .apexcharts-legend-series, .apexcharts-legend.left .apexcharts-legend-series{\n display: inline-block;\n }\n\n .apexcharts-legend-series.no-click {\n cursor: auto;\n }\n\n .apexcharts-legend .apexcharts-hidden-zero-series, .apexcharts-legend .apexcharts-hidden-null-series {\n display: none !important;\n }\n\n .inactive-legend {\n opacity: 0.45;\n }");return t.appendChild(e),t}},{key:"toggleDataSeries",value:function(t,e){var i=this.w;if(i.globals.axisCharts||"radialBar"===i.config.chart.type){i.globals.resized=!0;var s=null,a=null;if(i.globals.risingSeries=[],i.globals.axisCharts?(s=i.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(t,"']")),a=parseInt(s.getAttribute("data:realIndex"))):(s=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(t+1,"']")),a=parseInt(s.getAttribute("rel"))-1),e)this.riseCollapsedSeries(i.globals.collapsedSeries,i.globals.collapsedSeriesIndices,a),this.riseCollapsedSeries(i.globals.ancillaryCollapsedSeries,i.globals.ancillaryCollapsedSeriesIndices,a);else{if(i.globals.axisCharts){var n=!1;if(i.config.yaxis[a]&&i.config.yaxis[a].show&&i.config.yaxis[a].showAlways&&(n=!0,i.globals.ancillaryCollapsedSeriesIndices.indexOf(a)<0&&(i.globals.ancillaryCollapsedSeries.push({index:a,data:i.config.series[a].data.slice(),type:s.parentNode.className.baseVal.split("-")[1]}),i.globals.ancillaryCollapsedSeriesIndices.push(a))),!n){i.globals.collapsedSeries.push({index:a,data:i.config.series[a].data.slice(),type:s.parentNode.className.baseVal.split("-")[1]}),i.globals.collapsedSeriesIndices.push(a);var r=i.globals.risingSeries.indexOf(a);i.globals.risingSeries.splice(r,1)}i.config.series[a].data=[]}else i.globals.collapsedSeries.push({index:a,data:i.config.series[a]}),i.globals.collapsedSeriesIndices.push(a),i.config.series[a]=0;for(var o=s.childNodes,l=0;l0)for(var a=0;a1&&(this.yaxisIndex=A),this.isReversed=s.config.yaxis[this.yaxisIndex]&&s.config.yaxis[this.yaxisIndex].reversed;var L=[],P=[],M=s.globals.gridHeight-p[this.yaxisIndex]-(this.isReversed?s.globals.gridHeight:0)+(this.isReversed?2*p[this.yaxisIndex]:0),E=M;M>s.globals.gridHeight&&(E=s.globals.gridHeight),m=k/2;var T=s.globals.padHorizontal+m,X=1;s.globals.isXNumeric&&s.globals.seriesX.length>0&&(T=(s.globals.seriesX[A][0]-s.globals.minX)/g),P.push(T);var I=void 0,Y=void 0,F=void 0,R=void 0,D=[],N=[],O=a.group({class:"apexcharts-series",seriesName:d.escapeString(s.globals.seriesNames[A])}),H=a.group({class:"apexcharts-series-markers-wrap"}),W=a.group({class:"apexcharts-datalabels"});this.ctx.series.addCollapsedClassToSeries(O,A);var B=t[v].length===s.globals.dataPoints;O.attr({"data:longestSeries":B,rel:v+1,"data:realIndex":A}),this.appendPathFrom=!0;var V=T,G=void 0,_=V,j=M,U=0;if(j=this.determineFirstPrevY({i:v,series:t,yRatio:c[this.yaxisIndex],zeroY:M,prevY:j,prevSeriesY:b,lineYPosition:U}).prevY,L.push(j),G=j,null===t[v][0]){for(var q=0;q0){var Z=this.checkPreviousPaths({pathFromLine:F,pathFromArea:R,realIndex:A});F=Z.pathFromLine,R=Z.pathFromArea}for(var $=s.globals.dataPoints>1?s.globals.dataPoints-1:s.globals.dataPoints,J=0;J<$;J++){if(s.globals.isXNumeric){var Q=s.globals.seriesX[A][J+1];void 0===s.globals.seriesX[A][J+1]&&(Q=s.globals.seriesX[A][$-1]),T=(Q-s.globals.minX)/g}else T+=k;var K=d.isNumber(s.globals.minYArr[A])?s.globals.minYArr[A]:s.globals.minY;s.config.chart.stacked?(U=v>0&&s.globals.collapsedSeries.length1&&H.node.classList.add("hidden");var st=it.plotChartMarkers(et,A,J+1);null!==st&&H.add(st)}var at=!t[v][J+1]||t[v][J+1]>t[v][J]?"top":"bottom",nt=new z(this.ctx).drawDataLabel(et,A,J+1,null,at);null!==nt&&W.add(nt)}b.push(L),s.globals.seriesXvalues[A]=P,s.globals.seriesYvalues[A]=L,this.pointsChart||s.globals.delayedElements.push({el:H.node,index:A});var rt={i:v,realIndex:A,animationDelay:v,initialSpeed:s.config.chart.animations.speed,dataChangeSpeed:s.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(o)};if("area"===o)for(var ot=r.fillPath({seriesNumber:A}),lt=0;lt0;gt--)l.add(x[gt-1]);return l}},{key:"createPaths",value:function(t){var e=t.series,i=t.i,s=t.j,a=t.x,n=t.y,r=t.pX,o=t.pY,l=t.xDivision,h=t.areaBottomY,c=t.linePath,d=t.areaPath,u=t.linePaths,g=t.areaPaths,p=t.seriesIndex,x=this.w,b=new f(this.ctx),m=x.config.stroke.curve;if(Array.isArray(x.config.stroke.curve)&&(m=Array.isArray(p)?x.config.stroke.curve[p[i]]:x.config.stroke.curve[i]),"smooth"===m){var v=.35*(a-r);x.globals.hasNullValues?(null!==e[i][s]&&(null!==e[i][s+1]?(c=b.move(r,o)+b.curve(r+v,o,a-v,n,a+1,n),d=b.move(r+1,o)+b.curve(r+v,o,a-v,n,a+1,n)+b.line(a,h)+b.line(r,h)+"z"):(c=b.move(r,o),d=b.move(r,o)+"z")),u.push(c),g.push(d)):(c+=b.curve(r+v,o,a-v,n,a,n),d+=b.curve(r+v,o,a-v,n,a,n)),r=a,o=n,s===e[i].length-2&&(d=d+b.curve(r,o,a,n,a,h)+b.move(a,n)+"z",x.globals.hasNullValues||(u.push(c),g.push(d)))}else null===e[i][s+1]&&(c+=b.move(a,n),d=d+b.line(a-l,h)+b.move(a,n)),null===e[i][s]&&(c+=b.move(a,n),d+=b.move(a,h)),"stepline"===m?(c=c+b.line(a,null,"H")+b.line(null,n,"V"),d=d+b.line(a,null,"H")+b.line(null,n,"V")):"straight"===m&&(c+=b.line(a,n),d+=b.line(a,n)),s===e[i].length-2&&(d=d+b.line(a,h)+b.move(a,n)+"z",u.push(c),g.push(d));return{linePaths:u,areaPaths:g,pX:r,pY:o,linePath:c,areaPath:d}}},{key:"calculatePoints",value:function(t){var e=t.series,i=t.realIndex,s=t.x,a=t.y,n=t.i,r=t.j,o=t.prevY,l=t.categoryAxisCorrection,h=t.xRatio,c=this.w,u=[],g=[];if(0===r){var f=l+c.config.markers.offsetX;c.globals.isXNumeric&&(f=(c.globals.seriesX[i][0]-c.globals.minX)/h+c.config.markers.offsetX),u.push(f),g.push(d.isNumber(e[n][0])?o+c.config.markers.offsetY:null),u.push(s+c.config.markers.offsetX),g.push(d.isNumber(e[n][r+1])?a+c.config.markers.offsetY:null)}else u.push(s+c.config.markers.offsetX),g.push(d.isNumber(e[n][r+1])?a+c.config.markers.offsetY:null);return{x:u,y:g}}},{key:"checkPreviousPaths",value:function(t){for(var e=t.pathFromLine,i=t.pathFromArea,s=t.realIndex,a=this.w,n=0;n0&&parseInt(r.realIndex)===parseInt(s)&&("line"===r.type?(this.appendPathFrom=!1,e=a.globals.previousPaths[n].paths[0].d):"area"===r.type&&(this.appendPathFrom=!1,i=a.globals.previousPaths[n].paths[0].d,a.config.stroke.show&&(e=a.globals.previousPaths[n].paths[1].d)))}return{pathFromLine:e,pathFromArea:i}}},{key:"determineFirstPrevY",value:function(t){var e=t.i,i=t.series,s=t.yRatio,a=t.zeroY,n=t.prevY,r=t.prevSeriesY,o=t.lineYPosition,l=this.w;if(void 0!==i[e][0])n=l.config.chart.stacked?(o=e>0?r[e-1][0]:a)-i[e][0]/s+2*(this.isReversed?i[e][0]/s:0):a-i[e][0]/s+2*(this.isReversed?i[e][0]/s:0);else if(l.config.chart.stacked&&e>0&&void 0===i[e][0])for(var h=e-1;h>=0;h--)if(null!==i[h][0]&&void 0!==i[h][0]){n=o=r[h][0];break}return{prevY:n,lineYPosition:o}}}]),t}(),G=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w;var s=this.w;this.xaxisLabels=s.globals.labels.slice(),s.globals.timelineLabels.length>0&&(this.xaxisLabels=s.globals.timelineLabels.slice()),this.drawnLabels=[],"top"===s.config.xaxis.position?this.offY=0:this.offY=s.globals.gridHeight+1,this.offY=this.offY+s.config.xaxis.axisBorder.offsetY,this.xaxisFontSize=s.config.xaxis.labels.style.fontSize,this.xaxisFontFamily=s.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=s.config.xaxis.labels.style.colors,this.xaxisBorderWidth=s.config.xaxis.axisBorder.width,this.xaxisBorderWidth.indexOf("%")>-1?this.xaxisBorderWidth=s.globals.gridWidth*parseInt(this.xaxisBorderWidth)/100:this.xaxisBorderWidth=parseInt(this.xaxisBorderWidth),this.xaxisBorderHeight=s.config.xaxis.axisBorder.height,this.yaxis=s.config.yaxis[0],this.axesUtils=new N(i)}return s(t,[{key:"drawXaxis",value:function(){var t,e=this.w,i=new f(this.ctx),s=i.group({class:"apexcharts-xaxis",transform:"translate(".concat(e.config.xaxis.offsetX,", ").concat(e.config.xaxis.offsetY,")")}),a=i.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(e.globals.translateXAxisX,", ").concat(e.globals.translateXAxisY,")")});s.add(a);for(var n=e.globals.padHorizontal,r=[],o=0;oi.globals.gridWidth)){var a=this.offY+i.config.xaxis.axisTicks.offsetY,n=a+i.config.xaxis.axisTicks.height;if(i.config.xaxis.axisTicks.show){var r=new f(this.ctx).drawLine(t+i.config.xaxis.axisTicks.offsetX,a+i.config.xaxis.offsetY,s+i.config.xaxis.axisTicks.offsetX,n+i.config.xaxis.offsetY,i.config.xaxis.axisTicks.color);e.add(r),r.node.classList.add("apexcharts-xaxis-tick")}}}},{key:"getXAxisTicksPositions",value:function(){var t=this.w,e=[],i=this.xaxisLabels.length,s=t.globals.padHorizontal;if(t.globals.timelineLabels.length>0)for(var a=0;a0){var u=a[a.length-1].getBBox(),g=a[0].getBBox();u.x<-20&&a[a.length-1].parentNode.removeChild(a[a.length-1]),g.x+g.width>t.globals.gridWidth&&a[0].parentNode.removeChild(a[0]);for(var p=0;p3&&void 0!==arguments[3]?arguments[3]:0,a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:10,n=this.w,r=void 0===this.w.config.yaxis[s].max&&void 0===this.w.config.yaxis[s].min||this.w.config.yaxis[s].forceNiceScale;if(t===Number.MIN_VALUE&&0===e||!d.isNumber(t)&&!d.isNumber(e)||t===Number.MIN_VALUE&&e===-Number.MAX_VALUE)return t=0,e=a,this.linearScale(t,e,a);t>e?(console.warn("yaxis.min cannot be greater than yaxis.max"),e=t+.1):t===e&&(t=0===t?0:t-.5,e=0===e?2:e+.5);var o=[],l=Math.abs(e-t);l<1&&r&&("candlestick"===n.config.chart.type||"candlestick"===n.config.series[s].type||n.globals.isRangeData)&&(e*=1.01);var h=a+1;h<2?h=2:h>2&&(h-=2);var c=l/h,u=Math.floor(d.log10(c)),g=Math.pow(10,u),f=Math.round(c/g);f<1&&(f=1);var p=f*g,x=p*Math.floor(t/p),b=p*Math.ceil(e/p),m=x;if(r&&l>2){for(;o.push(m),!((m+=p)>b););return{result:o,niceMin:o[0],niceMax:o[o.length-1]}}var v=t;(o=[]).push(v);for(var y=Math.abs(e-t)/a,w=0;w<=a;w++)v+=y,o.push(v);return o[o.length-2]>=e&&o.pop(),{result:o,niceMin:o[0],niceMax:o[o.length-1]}}},{key:"linearScale",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10,s=Math.abs(e-t)/i;i===Number.MAX_VALUE&&(i=10,s=1);for(var a=[],n=t;i>=0;)a.push(n),n+=s,i-=1;return{result:a,niceMin:a[0],niceMax:a[a.length-1]}}},{key:"logarithmicScale",value:function(t,e,i,s){(e<0||e===Number.MIN_VALUE)&&(e=.01);for(var a=Math.log(e)/Math.log(10),n=Math.log(i)/Math.log(10),r=Math.abs(i-e)/s,o=[],l=e;s>=0;)o.push(l),l+=r,s-=1;var h=o.map(function(t,s){t<=0&&(t=.01);var r=(n-a)/(i-e),o=Math.pow(10,a+r*(t-a));return Math.round(o/d.roundToBase(o,10))*d.roundToBase(o,10)});return 0===h[0]&&(h[0]=1),{result:h,niceMin:h[0],niceMax:h[h.length-1]}}},{key:"setYScaleForIndex",value:function(t,e,i){var s=this.w.globals,a=this.w.config,n=s.isBarHorizontal?a.xaxis:a.yaxis[t];if(void 0===s.yAxisScale[t]&&(s.yAxisScale[t]=[]),n.logarithmic)s.allSeriesCollapsed=!1,s.yAxisScale[t]=this.logarithmicScale(t,e,i,n.tickAmount?n.tickAmount:Math.floor(Math.log10(i)));else if(i!==-Number.MAX_VALUE&&d.isNumber(i))if(s.allSeriesCollapsed=!1,void 0===n.min&&void 0===n.max||n.forceNiceScale){var r=Math.abs(i-e);s.yAxisScale[t]=this.niceScale(e,i,r,t,n.tickAmount?n.tickAmount:r<5&&r>1?r+1:5)}else s.yAxisScale[t]=this.linearScale(e,i,n.tickAmount);else s.yAxisScale[t]=this.linearScale(0,5,5)}},{key:"setMultipleYScales",value:function(){var t=this,e=this.w.globals,i=this.w.config,s=e.minYArr.concat([]),a=e.maxYArr.concat([]),n=[];i.yaxis.forEach(function(r,o){var l=o;i.series.forEach(function(t,i){t.name===r.seriesName&&-1===e.collapsedSeriesIndices.indexOf(i)&&(l=i,o!==i?n.push({index:i,similarIndex:o,alreadyExists:!0}):n.push({index:i}))});var h=s[l],c=a[l];t.setYScaleForIndex(o,h,c)}),this.sameScaleInMultipleAxes(s,a,n)}},{key:"sameScaleInMultipleAxes",value:function(t,e,i){var s=this,a=this.w.config,n=this.w.globals,r=[];i.forEach(function(t){t.alreadyExists&&(void 0===r[t.index]&&(r[t.index]=[]),r[t.index].push(t.index),r[t.index].push(t.similarIndex))}),n.yAxisSameScaleIndices=r,r.forEach(function(t,e){r.forEach(function(i,s){var a,n;e!==s&&(a=t,n=i,a.filter(function(t){return-1!==n.indexOf(t)})).length>0&&(r[e]=r[e].concat(r[s]))})});var o=r.map(function(t){return t.filter(function(e,i){return t.indexOf(e)===i})}).map(function(t){return t.sort()});r=r.filter(function(t){return!!t});var l=o.slice(),h=l.map(function(t){return JSON.stringify(t)});l=l.filter(function(t,e){return h.indexOf(JSON.stringify(t))===e});var c=[],d=[];t.forEach(function(t,i){l.forEach(function(s,a){s.indexOf(i)>-1&&(void 0===c[a]&&(c[a]=[],d[a]=[]),c[a].push({key:i,value:t}),d[a].push({key:i,value:e[i]}))})});var u=Array.apply(null,Array(l.length)).map(Number.prototype.valueOf,Number.MIN_VALUE),g=Array.apply(null,Array(l.length)).map(Number.prototype.valueOf,-Number.MAX_VALUE);c.forEach(function(t,e){t.forEach(function(t,i){u[e]=Math.min(t.value,u[e])})}),d.forEach(function(t,e){t.forEach(function(t,i){g[e]=Math.max(t.value,g[e])})}),t.forEach(function(t,e){d.forEach(function(t,i){var r=u[i],o=g[i];a.chart.stacked&&(o=0,t.forEach(function(t,e){o+=t.value,r!==Number.MIN_VALUE&&(r+=c[i][e].value)})),t.forEach(function(i,l){t[l].key===e&&(void 0!==a.yaxis[e].min&&(r="function"==typeof a.yaxis[e].min?a.yaxis[e].min(n.minY):a.yaxis[e].min),void 0!==a.yaxis[e].max&&(o="function"==typeof a.yaxis[e].max?a.yaxis[e].max(n.maxY):a.yaxis[e].max),s.setYScaleForIndex(e,r,o))})})})}},{key:"autoScaleY",value:function(t,e,i){t||(t=this);var s=t.w;if(s.globals.isMultipleYAxis||s.globals.collapsedSeries.length)return e;var a=s.globals.seriesX[0],n=s.config.chart.stacked;return e.forEach(function(t,r){for(var o=0,l=0;l=i.xaxis.min){o=l;break}var h,c,d=s.globals.minYArr[r],u=s.globals.maxYArr[r],g=s.globals.stackedSeriesTotals;s.globals.series.forEach(function(r,l){var f=r[o];n?(f=g[o],h=c=f,g.forEach(function(t,e){a[e]<=i.xaxis.max&&a[e]>=i.xaxis.min&&(t>c&&null!==t&&(c=t),r[e]=i.xaxis.min){var n=t,r=t;s.globals.series.forEach(function(i,s){null!==t&&(n=Math.min(i[e],n),r=Math.max(i[e],r))}),r>c&&null!==r&&(c=r),nd&&(h=d),e.length>1?(e[l].min=void 0===t.min?h:t.min,e[l].max=void 0===t.max?c:t.max):(e[0].min=void 0===t.min?h:t.min,e[0].max=void 0===t.max?c:t.max)})}),e}}]),t}(),j=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.scales=new _(i)}return s(t,[{key:"init",value:function(){this.setYRange(),this.setXRange(),this.setZRange()}},{key:"getMinYMaxY",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:-Number.MAX_VALUE,s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,a=this.w.globals,n=-Number.MAX_VALUE,r=Number.MIN_VALUE;null===s&&(s=t+1);var o=a.series,l=o,h=o;"candlestick"===this.w.config.chart.type?(l=a.seriesCandleL,h=a.seriesCandleH):a.isRangeData&&(l=a.seriesRangeStart,h=a.seriesRangeEnd);for(var c=t;cl[c][u]&&l[c][u]<0&&(r=l[c][u])):a.hasNullValues=!0}}return{minY:r,maxY:n,lowestY:e,highestY:i}}},{key:"setYRange",value:function(){var t=this.w.globals,e=this.w.config;t.maxY=-Number.MAX_VALUE,t.minY=Number.MIN_VALUE;var i=Number.MAX_VALUE;if(t.isMultipleYAxis)for(var s=0;s0?h=h+parseFloat(t.series[u][l])+1e-4:c+=parseFloat(t.series[u][l])),u===t.series.length-1&&(r.push(h),o.push(c));for(var g=0;g=0&&i<=10&&(f=0),t.minY=i-5*f/100,t.maxY=t.maxY+5*f/100}return e.yaxis.map(function(e,i){void 0!==e.max&&("number"==typeof e.max?t.maxYArr[i]=e.max:"function"==typeof e.max&&(t.maxYArr[i]=e.max(t.maxY)),t.maxY=t.maxYArr[i]),void 0!==e.min&&("number"==typeof e.min?t.minYArr[i]=e.min:"function"==typeof e.min&&(t.minYArr[i]=e.min(t.minY)),t.minY=t.minYArr[i])}),t.isBarHorizontal&&(void 0!==e.xaxis.min&&"number"==typeof e.xaxis.min&&(t.minY=e.xaxis.min),void 0!==e.xaxis.max&&"number"==typeof e.xaxis.max&&(t.maxY=e.xaxis.max)),t.isMultipleYAxis?(this.scales.setMultipleYScales(),t.minY=i,t.yAxisScale.forEach(function(e,i){t.minYArr[i]=e.niceMin,t.maxYArr[i]=e.niceMax})):(this.scales.setYScaleForIndex(0,t.minY,t.maxY),t.minY=t.yAxisScale[0].niceMin,t.maxY=t.yAxisScale[0].niceMax,t.minYArr[0]=t.yAxisScale[0].niceMin,t.maxYArr[0]=t.yAxisScale[0].niceMax),{minY:t.minY,maxY:t.maxY,minYArr:t.minYArr,maxYArr:t.maxYArr}}},{key:"setXRange",value:function(){var t,e=this.w.globals,i=this.w.config,s="numeric"===i.xaxis.type||"datetime"===i.xaxis.type||"category"===i.xaxis.type&&!e.noLabelsProvided||e.noLabelsProvided||e.isXNumeric;if(e.isXNumeric)for(var a=0;ae.dataPoints&&0!==e.dataPoints&&(t=e.dataPoints-1)):t="dataPoints"===i.xaxis.tickAmount?e.series[e.maxValsInArrayIndex].length-1:i.xaxis.tickAmount,void 0!==i.xaxis.max&&"number"==typeof i.xaxis.max&&(e.maxX=i.xaxis.max),void 0!==i.xaxis.min&&"number"==typeof i.xaxis.min&&(e.minX=i.xaxis.min),void 0!==i.xaxis.range&&(e.minX=e.maxX-i.xaxis.range),e.minX!==Number.MAX_VALUE&&e.maxX!==-Number.MAX_VALUE?e.xAxisScale=this.scales.linearScale(e.minX,e.maxX,t):(e.xAxisScale=this.scales.linearScale(1,t,t),e.noLabelsProvided&&e.labels.length>0&&(e.xAxisScale=this.scales.linearScale(1,e.labels.length,t-1),e.seriesX=e.labels.slice())),s&&(e.labels=e.xAxisScale.result.slice()));if(e.minX===e.maxX)if("datetime"===i.xaxis.type){var h=new Date(e.minX);h.setDate(h.getDate()-2),e.minX=new Date(h).getTime();var c=new Date(e.maxX);c.setDate(c.getDate()+2),e.maxX=new Date(c).getTime()}else("numeric"===i.xaxis.type||"category"===i.xaxis.type&&!e.noLabelsProvided)&&(e.minX=e.minX-2,e.maxX=e.maxX+2);return e.isXNumeric&&(e.seriesX.forEach(function(t,i){1===t.length&&t.push(e.seriesX[e.maxValsInArrayIndex][e.seriesX[e.maxValsInArrayIndex].length-1]),t.forEach(function(t,s){if(s>0){var a=t-e.seriesX[i][s-1];e.minXDiff=Math.min(a,e.minXDiff)}})}),this.calcMinXDiffForTinySeries()),{minX:e.minX,maxX:e.maxX}}},{key:"calcMinXDiffForTinySeries",value:function(){var t=this.w,e=t.globals.labels.length;return 1===t.globals.labels.length?t.globals.minXDiff=(t.globals.maxX-t.globals.minX)/e/3:t.globals.minXDiff===Number.MAX_VALUE&&(t.globals.timelineLabels.length>0&&(e=t.globals.timelineLabels.length),e<3&&(e=3),t.globals.minXDiff=(t.globals.maxX-t.globals.minX)/e),t.globals.minXDiff}},{key:"setZRange",value:function(){var t=this.w.globals;if(t.isDataXYZ)for(var e=0;e5e4&&(s.globals.disableZoomOut=!0);var o=a.getTimeUnitsfromTimestamp(t,e),l=s.globals.gridWidth/r,h=l/24,c=h/60,d=Math.floor(24*r),u=Math.floor(24*r*60),g=Math.floor(r),f=Math.floor(r/30),p=Math.floor(r/365),x={minMinute:o.minMinute,minHour:o.minHour,minDate:o.minDate,minMonth:o.minMonth,minYear:o.minYear},b={firstVal:x,currentMinute:x.minMinute,currentHour:x.minHour,currentMonthDate:x.minDate,currentDate:x.minDate,currentMonth:x.minMonth,currentYear:x.minYear,daysWidthOnXAxis:l,hoursWidthOnXAxis:h,minutesWidthOnXAxis:c,numberOfMinutes:u,numberOfHours:d,numberOfDays:g,numberOfMonths:f,numberOfYears:p};switch(this.tickInterval){case"years":this.generateYearScale(b);break;case"months":case"half_year":this.generateMonthScale(b);break;case"months_days":case"months_fortnight":case"days":case"week_days":this.generateDayScale(b);break;case"hours":this.generateHourScale(b);break;case"minutes":this.generateMinuteScale(b)}var v=this.timeScaleArray.map(function(t){var e={position:t.position,unit:t.unit,year:t.year,day:t.day?t.day:1,hour:t.hour?t.hour:0,month:t.month+1};return"month"===t.unit?n({},e,{day:1,value:t.value+1}):"day"===t.unit||"hour"===t.unit?n({},e,{value:t.value}):"minute"===t.unit?n({},e,{value:t.value,minute:t.value}):t});return v.filter(function(t){var e=1,a=Math.ceil(s.globals.gridWidth/120),n=t.value;void 0!==s.config.xaxis.tickAmount&&(a=s.config.xaxis.tickAmount),v.length>a&&(e=Math.floor(v.length/a));var r=!1,o=!1;switch(i.tickInterval){case"half_year":e=7,"year"===t.unit&&(r=!0);break;case"months":e=1,"year"===t.unit&&(r=!0);break;case"months_fortnight":e=15,"year"!==t.unit&&"month"!==t.unit||(r=!0),30===n&&(o=!0);break;case"months_days":e=10,"month"===t.unit&&(r=!0),30===n&&(o=!0);break;case"week_days":e=8,"month"===t.unit&&(r=!0);break;case"days":e=1,"month"===t.unit&&(r=!0);break;case"hours":"day"===t.unit&&(r=!0);break;case"minutes":n%5!=0&&(o=!0)}if("minutes"===i.tickInterval||"hours"===i.tickInterval){if(!o)return!0}else if((n%e==0||r)&&!o)return!0})}},{key:"recalcDimensionsBasedOnFormat",value:function(t,e){var i=this.w,s=this.formatDates(t),a=this.removeOverlappingTS(s);e?i.globals.invertedTimelineLabels=a.slice():i.globals.timelineLabels=a.slice(),new H(this.ctx).plotCoords()}},{key:"determineInterval",value:function(t){switch(!0){case t>1825:this.tickInterval="years";break;case t>800&&t<=1825:this.tickInterval="half_year";break;case t>180&&t<=800:this.tickInterval="months";break;case t>90&&t<=180:this.tickInterval="months_fortnight";break;case t>60&&t<=90:this.tickInterval="months_days";break;case t>30&&t<=60:this.tickInterval="week_days";break;case t>2&&t<=30:this.tickInterval="days";break;case t>.1&&t<=2:this.tickInterval="hours";break;case t<.1:this.tickInterval="minutes";break;default:this.tickInterval="days"}}},{key:"generateYearScale",value:function(t){var e=t.firstVal,i=t.currentMonth,s=t.currentYear,a=t.daysWidthOnXAxis,n=t.numberOfYears,r=e.minYear,o=0,l=new m(this.ctx);if(e.minDate>1&&e.minMonth>0){var h=l.determineRemainingDaysOfYear(e.minYear,e.minMonth,e.minDate);o=(l.determineDaysOfYear(e.minYear)-h+1)*a,r=e.minYear+1,this.timeScaleArray.push({position:o,value:r,unit:"year",year:r,month:d.monthMod(i+1)})}else 1===e.minDate&&0===e.minMonth&&this.timeScaleArray.push({position:o,value:r,unit:"year",year:s,month:d.monthMod(i+1)});for(var c=r,u=o,g=0;g1){l=(h.determineDaysOfMonths(s+1,e.minYear)-i+1)*n,o=d.monthMod(s+1);var g=a+u,f=d.monthMod(o),p=o;0===o&&(c="year",p=g,f=1,g+=u+=1),this.timeScaleArray.push({position:l,value:p,unit:c,year:g,month:f})}else this.timeScaleArray.push({position:l,value:o,unit:c,year:a,month:d.monthMod(s)});for(var x=o+1,b=l,v=0,y=1;vr.determineDaysOfMonths(e+1,i)?(g=1,o="month",c=e+=1,e):e},g=h,f=u(g,i,s);this.timeScaleArray.push({position:l,value:c,unit:o,year:s,month:d.monthMod(f),day:g});for(var p=l,x=0;xo.determineDaysOfMonths(e+1,a)&&(x=1,e+=1),{month:e,date:x}},c=function(t,e){return t>o.determineDaysOfMonths(e+1,a)?e+=1:e},u=60-e.minMinute,g=u*n,f=e.minHour+1,p=f+1;60===u&&(g=0,p=(f=e.minHour)+1);var x=i,b=c(x,s);this.timeScaleArray.push({position:g,value:f,unit:l,day:x,hour:p,year:a,month:d.monthMod(b)});for(var v=g,y=0;y=24)p=0,l="day",b=h(x+=1,b).month,b=c(x,b);var w=a+Math.floor(b/12)+0;v=0===p&&0===y?u*n:60*n+v;var k=0===p?x:p;this.timeScaleArray.push({position:v,value:k,unit:l,hour:p,day:x,year:w,month:d.monthMod(b)}),p++}}},{key:"generateMinuteScale",value:function(t){var e=t.firstVal,i=t.currentMinute,s=t.currentHour,a=t.currentDate,n=t.currentMonth,r=t.currentYear,o=t.minutesWidthOnXAxis,l=t.numberOfMinutes,h=o-(i-e.minMinute),c=e.minMinute+1,u=c+1,g=a,f=n,p=r,x=s;this.timeScaleArray.push({position:h,value:c,unit:"minute",day:g,hour:x,minute:u,year:p,month:d.monthMod(f)});for(var b=h,m=0;m=60&&(u=0,24===(x+=1)&&(x=0));var v=r+Math.floor(f/12)+0;b=o+b;var y=u;this.timeScaleArray.push({position:b,value:y,unit:"minute",hour:x,minute:u,day:g,year:v,month:d.monthMod(f)}),u++}}},{key:"createRawDateString",value:function(t,e){var i=t.year;return i+="-"+("0"+t.month.toString()).slice(-2),"day"===t.unit?i+="day"===t.unit?"-"+("0"+e).slice(-2):"-01":i+="-"+("0"+(t.day?t.day:"1")).slice(-2),"hour"===t.unit?i+="hour"===t.unit?"T"+("0"+e).slice(-2):"T00":i+="T"+("0"+(t.hour?t.hour:"0")).slice(-2),i+="minute"===t.unit?":"+("0"+e).slice(-2)+":00.000Z":":00:00.000Z"}},{key:"formatDates",value:function(t){var e=this,i=this.w;return t.map(function(t){var s=t.value.toString(),a=new m(e.ctx),n=e.createRawDateString(t,s),r=new Date(Date.parse(n));if(void 0===i.config.xaxis.labels.format){var o="dd MMM",l=i.config.xaxis.labels.datetimeFormatter;"year"===t.unit&&(o=l.year),"month"===t.unit&&(o=l.month),"day"===t.unit&&(o=l.day),"hour"===t.unit&&(o=l.hour),"minute"===t.unit&&(o=l.minute),s=a.formatDate(r,o,!0,!1)}else s=a.formatDate(r,i.config.xaxis.labels.format);return{dateString:n,position:t.position,value:s,unit:t.unit,year:t.year,month:t.month}})}},{key:"removeOverlappingTS",value:function(t){var e=this,i=new f(this.ctx),s=0,a=t.map(function(a,n){if(n>0&&e.w.config.xaxis.labels.hideOverlappingLabels){var r=i.getTextRects(t[s].value).width,o=t[s].position;return a.position>o+r+10?(s=n,a):null}return a});return a=a.filter(function(t){return null!==t})}}]),t}(),q=function(){function t(i,s){e(this,t),this.ctx=s,this.w=s.w,this.el=i,this.coreUtils=new y(this.ctx),this.twoDSeries=[],this.threeDSeries=[],this.twoDSeriesX=[]}return s(t,[{key:"setupElements",value:function(){var t=this.w.globals,e=this.w.config,i=e.chart.type;t.axisCharts=["line","area","bar","rangeBar","candlestick","radar","scatter","bubble","heatmap"].indexOf(i)>-1,t.xyCharts=["line","area","bar","rangeBar","candlestick","scatter","bubble"].indexOf(i)>-1,t.isBarHorizontal=("bar"===e.chart.type||"rangeBar"===e.chart.type)&&e.plotOptions.bar.horizontal,t.chartClass=".apexcharts"+t.cuid,t.dom.baseEl=this.el,t.dom.elWrap=document.createElement("div"),f.setAttrs(t.dom.elWrap,{id:t.chartClass.substring(1),class:"apexcharts-canvas "+t.chartClass.substring(1)}),this.el.appendChild(t.dom.elWrap),t.dom.Paper=new window.SVG.Doc(t.dom.elWrap),t.dom.Paper.attr({class:"apexcharts-svg","xmlns:data":"ApexChartsNS",transform:"translate(".concat(e.chart.offsetX,", ").concat(e.chart.offsetY,")")}),t.dom.Paper.node.style.background=e.chart.background,this.setSVGDimensions(),t.dom.elGraphical=t.dom.Paper.group().attr({class:"apexcharts-inner apexcharts-graphical"}),t.dom.elDefs=t.dom.Paper.defs(),t.dom.elLegendWrap=document.createElement("div"),t.dom.elLegendWrap.classList.add("apexcharts-legend"),t.dom.elWrap.appendChild(t.dom.elLegendWrap),t.dom.Paper.add(t.dom.elGraphical),t.dom.elGraphical.add(t.dom.elDefs)}},{key:"plotChartType",value:function(t,e){var i=this.w,s=i.config,a=i.globals,n={series:[],i:[]},r={series:[],i:[]},o={series:[],i:[]},l={series:[],i:[]},h={series:[],i:[]};a.series.map(function(e,s){void 0!==t[s].type?("column"===t[s].type||"bar"===t[s].type?(i.config.plotOptions.bar.horizontal=!1,l.series.push(e),l.i.push(s)):"area"===t[s].type?(r.series.push(e),r.i.push(s)):"line"===t[s].type?(n.series.push(e),n.i.push(s)):"scatter"===t[s].type?(o.series.push(e),o.i.push(s)):"bubble"===t[s].type||("candlestick"===t[s].type?(h.series.push(e),h.i.push(s)):console.warn("You have specified an unrecognized chart type. Available types for this propery are line/area/column/bar/scatter/bubble")),a.comboCharts=!0):(n.series.push(e),n.i.push(s))});var c=new V(this.ctx,e),d=new E(this.ctx,e),u=new I(this.ctx),g=new F(this.ctx),f=new R(this.ctx,e),p=new Y(this.ctx),x=[];if(a.comboCharts){if(r.series.length>0&&x.push(c.draw(r.series,"area",r.i)),l.series.length>0)if(i.config.chart.stacked){var b=new M(this.ctx,e);x.push(b.draw(l.series,l.i))}else{var m=new P(this.ctx,e);x.push(m.draw(l.series,l.i))}if(n.series.length>0&&x.push(c.draw(n.series,"line",n.i)),h.series.length>0&&x.push(d.draw(h.series,h.i)),o.series.length>0){var v=new V(this.ctx,e,!0);x.push(v.draw(o.series,"scatter",o.i))}}else switch(s.chart.type){case"line":x=c.draw(a.series,"line");break;case"area":x=c.draw(a.series,"area");break;case"bar":if(s.chart.stacked)x=new M(this.ctx,e).draw(a.series);else x=new P(this.ctx,e).draw(a.series);break;case"candlestick":x=new E(this.ctx,e).draw(a.series);break;case"rangeBar":x=f.draw(a.series);break;case"heatmap":x=new X(this.ctx,e).draw(a.series);break;case"pie":case"donut":x=u.draw(a.series);break;case"radialBar":x=g.draw(a.series);break;case"radar":x=p.draw(a.series);break;default:x=c.draw(a.series)}return x}},{key:"setSVGDimensions",value:function(){var t=this.w.globals,e=this.w.config;t.svgWidth=e.chart.width,t.svgHeight=e.chart.height;var i=d.getDimensions(this.el),s=e.chart.width.toString().split(/[0-9]+/g).pop();if("%"===s?d.isNumber(i[0])&&(0===i[0].width&&(i=d.getDimensions(this.el.parentNode)),t.svgWidth=i[0]*parseInt(e.chart.width)/100):"px"!==s&&""!==s||(t.svgWidth=parseInt(e.chart.width)),"auto"!==t.svgHeight&&""!==t.svgHeight)if("%"===e.chart.height.toString().split(/[0-9]+/g).pop()){var a=d.getDimensions(this.el.parentNode);t.svgHeight=a[1]*parseInt(e.chart.height)/100}else t.svgHeight=parseInt(e.chart.height);else t.axisCharts?t.svgHeight=t.svgWidth/1.61:t.svgHeight=t.svgWidth;t.svgWidth<0&&(t.svgWidth=0),t.svgHeight<0&&(t.svgHeight=0),f.setAttrs(t.dom.Paper.node,{width:t.svgWidth,height:t.svgHeight});var n=e.chart.sparkline.enabled?0:t.axisCharts?e.chart.parentHeightOffset:0;t.dom.Paper.node.parentNode.parentNode.style.minHeight=t.svgHeight+n+"px",t.dom.elWrap.style.width=t.svgWidth+"px",t.dom.elWrap.style.height=t.svgHeight+"px"}},{key:"shiftGraphPosition",value:function(){var t=this.w.globals,e=t.translateY,i={transform:"translate("+t.translateX+", "+e+")"};f.setAttrs(t.dom.elGraphical.node,i)}},{key:"resizeNonAxisCharts",value:function(){var t=this.w,e=t.globals,i=0;"top"!==t.config.legend.position&&"bottom"!==t.config.legend.position||(i=new B(this.ctx).getLegendBBox().clwh+10);var s=t.globals.dom.baseEl.querySelector(".apexcharts-radialbar"),a=2*t.globals.radialSize;s&&-90!==t.config.plotOptions.radialBar.startAngle&&(a=d.getBoundingClientRect(s).height);var n=Math.max(a,2*t.globals.radialSize)+e.translateY+i+20;e.dom.elLegendForeign&&e.dom.elLegendForeign.setAttribute("height",n),e.dom.elWrap.style.height=n+"px",f.setAttrs(e.dom.Paper.node,{height:n}),e.dom.Paper.node.parentNode.parentNode.style.minHeight=n+"px"}},{key:"coreCalculations",value:function(){new j(this.ctx).init()}},{key:"resetGlobals",value:function(){var t=this,e=this.w.globals;e.series=[],e.seriesCandleO=[],e.seriesCandleH=[],e.seriesCandleL=[],e.seriesCandleC=[],e.seriesRangeStart=[],e.seriesRangeEnd=[],e.seriesPercent=[],e.seriesX=[],e.seriesZ=[],e.seriesNames=[],e.seriesTotals=[],e.stackedSeriesTotals=[],e.labels=[],e.timelineLabels=[],e.noLabelsProvided=!1,e.timescaleTicks=[],e.resizeTimer=null,e.selectionResizeTimer=null,e.seriesXvalues=t.w.config.series.map(function(t){return[]}),e.seriesYvalues=t.w.config.series.map(function(t){return[]}),e.delayedElements=[],e.pointsArray=[],e.dataLabelsRects=[],e.isXNumeric=!1,e.isDataXYZ=!1,e.maxY=-Number.MAX_VALUE,e.minY=Number.MIN_VALUE,e.minYArr=[],e.maxYArr=[],e.maxX=-Number.MAX_VALUE,e.minX=Number.MAX_VALUE,e.initialmaxX=-Number.MAX_VALUE,e.initialminX=Number.MAX_VALUE,e.maxDate=0,e.minDate=Number.MAX_VALUE,e.minZ=Number.MAX_VALUE,e.maxZ=-Number.MAX_VALUE,e.minXDiff=Number.MAX_VALUE,e.yAxisScale=[],e.xAxisScale=null,e.xAxisTicksPositions=[],e.yLabelsCoords=[],e.yTitleCoords=[],e.xRange=0,e.yRange=[],e.zRange=0,e.dataPoints=0}},{key:"isMultipleY",value:function(){if(this.w.config.yaxis.constructor===Array&&this.w.config.yaxis.length>1)return this.w.globals.isMultipleYAxis=!0,!0}},{key:"excludeCollapsedSeriesInYAxis",value:function(){var t=this,e=this.w;e.globals.ignoreYAxisIndexes=e.globals.collapsedSeries.map(function(e,i){if(t.w.globals.isMultipleYAxis)return e.index})}},{key:"isMultiFormat",value:function(){return this.isFormatXY()||this.isFormat2DArray()}},{key:"isFormatXY",value:function(){var t=this.w.config.series.slice(),e=new W(this.ctx);if(this.activeSeriesIndex=e.getActiveConfigSeriesIndex(),void 0!==t[this.activeSeriesIndex].data&&t[this.activeSeriesIndex].data.length>0&&null!==t[this.activeSeriesIndex].data[0]&&void 0!==t[this.activeSeriesIndex].data[0].x&&null!==t[this.activeSeriesIndex].data[0])return!0}},{key:"isFormat2DArray",value:function(){var t=this.w.config.series.slice(),e=new W(this.ctx);if(this.activeSeriesIndex=e.getActiveConfigSeriesIndex(),void 0!==t[this.activeSeriesIndex].data&&t[this.activeSeriesIndex].data.length>0&&void 0!==t[this.activeSeriesIndex].data[0]&&null!==t[this.activeSeriesIndex].data[0]&&t[this.activeSeriesIndex].data[0].constructor===Array)return!0}},{key:"handleFormat2DArray",value:function(t,e){for(var i=this.w.config,s=this.w.globals,a=0;a-1&&(n=this.activeSeriesIndex);for(var r=0;r1&&void 0!==arguments[1]?arguments[1]:this.ctx,i=this.w.config,s=this.w.globals,a=new m(e),n=0;n0?i.labels.slice():i.xaxis.categories.slice(),o=0;o0?i.labels.slice():i.xaxis.categories.slice();l.length>0&&(this.twoDSeriesX=l,s.seriesX.push(this.twoDSeriesX))}s.labels.push(this.twoDSeriesX);var h=t[n].data.map(function(t){return d.parseNumber(t)});s.series.push(h)}s.seriesZ.push(this.threeDSeries),void 0!==t[n].name?s.seriesNames.push(t[n].name):s.seriesNames.push("series-"+parseInt(n+1))}return this.w}},{key:"parseDataNonAxisCharts",value:function(t){var e=this.w.globals,i=this.w.config;e.series=t.slice(),e.seriesNames=i.labels.slice();for(var s=0;s0)i.labels=e.xaxis.categories;else if(e.labels.length>0)i.labels=e.labels.slice();else if(this.fallbackToCategory)i.labels=i.labels[0];else{var s=[];if(i.axisCharts){if(i.series.length>0)for(var a=0;a0&&(this.xaxisLabels=s.globals.timelineLabels.slice())}return s(t,[{key:"drawGridArea",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=this.w,i=new f(this.ctx);null===t&&(t=i.group({class:"apexcharts-grid"}));var s=i.drawLine(e.globals.padHorizontal,1,e.globals.padHorizontal,e.globals.gridHeight,"transparent"),a=i.drawLine(e.globals.padHorizontal,e.globals.gridHeight,e.globals.gridWidth,e.globals.gridHeight,"transparent");return t.add(a),t.add(s),t}},{key:"drawGrid",value:function(){var t=this.w,e=new G(this.ctx),i=new O(this.ctx),s=this.w.globals,a=null;if(s.axisCharts){if(t.config.grid.show)a=this.renderGrid(),s.dom.elGraphical.add(a.el),this.drawGridArea(a.el);else{var n=this.drawGridArea();s.dom.elGraphical.add(n)}null!==a&&e.xAxisLabelCorrections(a.xAxisTickWidth),i.setYAxisTextAlignments()}}},{key:"createGridMask",value:function(){var t=this.w,e=t.globals,i=new f(this.ctx),s=Array.isArray(t.config.stroke.width)?0:t.config.stroke.width;if(Array.isArray(t.config.stroke.width)){var a=0;t.config.stroke.width.forEach(function(t){a=Math.max(a,t)}),s=a}e.dom.elGridRectMask=document.createElementNS(e.SVGNS,"clipPath"),e.dom.elGridRectMask.setAttribute("id","gridRectMask".concat(e.cuid)),e.dom.elGridRectMarkerMask=document.createElementNS(e.SVGNS,"clipPath"),e.dom.elGridRectMarkerMask.setAttribute("id","gridRectMarkerMask".concat(e.cuid)),e.dom.elGridRect=i.drawRect(-s/2,-s/2,e.gridWidth+s,e.gridHeight+s,0,"#fff"),new y(this).getLargestMarkerSize();var n=t.globals.markers.largestSize+1;e.dom.elGridRectMarker=i.drawRect(-n,-n,e.gridWidth+2*n,e.gridHeight+2*n,0,"#fff"),e.dom.elGridRectMask.appendChild(e.dom.elGridRect.node),e.dom.elGridRectMarkerMask.appendChild(e.dom.elGridRectMarker.node);var r=e.dom.baseEl.querySelector("defs");r.appendChild(e.dom.elGridRectMask),r.appendChild(e.dom.elGridRectMarkerMask)}},{key:"renderGrid",value:function(){var t=this.w,e=new f(this.ctx),i=t.config.grid.strokeDashArray,s=e.group({class:"apexcharts-grid"}),a=e.group({class:"apexcharts-gridlines-horizontal"}),n=e.group({class:"apexcharts-gridlines-vertical"});s.add(a),s.add(n);for(var r,o=8,l=0;l2));l++);if(t.globals.isBarHorizontal){if(r=o,t.config.grid.xaxis.lines.show||t.config.xaxis.axisTicks.show)for(var h,c=t.globals.padHorizontal,d=t.globals.gridHeight,u=0;u0)for(var A=0;A0&&w0)for(var n=0,r=s.globals.gridHeight/i,o=s.globals.gridWidth,l=0,h=0;l=s.config.grid.row.colors.length&&(h=0);var c=s.config.grid.row.colors[h],d=a.drawRect(0,n,o,r,0,c,s.config.grid.row.opacity);t.add(d),d.node.classList.add("apexcharts-gridRow"),n+=s.globals.gridHeight/i}if(void 0!==s.config.grid.column.colors&&s.config.grid.column.colors.length>0)for(var u=s.globals.padHorizontal,g=s.globals.padHorizontal+s.globals.gridWidth/e,p=s.globals.gridHeight,x=0,b=0;x=s.config.grid.column.colors.length&&(b=0);var m=s.config.grid.column.colors[b],v=a.drawRect(u,0,g,p,0,m,s.config.grid.column.opacity);v.node.classList.add("apexcharts-gridColumn"),t.add(v),u+=s.globals.gridWidth/e}}},{key:"animateLine",value:function(t,e,i){var s=this.w,a=s.config.chart.animations;if(a&&!s.globals.resized&&!s.globals.dataChanged){var n=a.speed;this.anim.animateLine(t,e,i,n)}}}]),t}(),lt=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return s(t,[{key:"checkResponsiveConfig",value:function(t){var e=this,i=this.w,s=i.config;if(0!==s.responsive.length){var a=s.responsive.slice();a.sort(function(t,e){return t.breakpoint>e.breakpoint?1:e.breakpoint>t.breakpoint?-1:0}).reverse();var n=new w({}),r=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},s=a[0].breakpoint,r=window.innerWidth>0?window.innerWidth:screen.width;if(r>s){var o=y.extendArrayProps(n,i.globals.initialConfig);t=d.extend(o,t),t=d.extend(i.config,t),e.overrideResponsiveOptions(t)}else for(var l=0;l2&&void 0!==arguments[2]?arguments[2]:null,s=this.w,a=e||s.globals.series.length;if(null===i&&(i="bar"===s.config.chart.type&&s.config.plotOptions.bar.distributed||"heatmap"===s.config.chart.type&&s.config.plotOptions.heatmap.colorScale.inverse),i&&(a=s.globals.series[0].length*s.globals.series.length),t.lengthr.globals.gridWidth||d>r.globals.gridHeight?(e.classList.remove("hovering-zoom"),e.classList.remove("hovering-pan")):r.globals.zoomEnabled?(e.classList.remove("hovering-pan"),e.classList.add("hovering-zoom")):r.globals.panEnabled&&(e.classList.remove("hovering-zoom"),e.classList.add("hovering-pan"));var u=Math.round(c/l);n&&(u=Math.ceil(c/l),u-=1);for(var g,f=null,p=null,x=[],b=0;b1?n=this.getFirstActiveXArray(i):r=0;var l=s[n][0],h=i[n][0],c=Math.abs(t-h),d=Math.abs(e-l),u=d+c;return s.map(function(a,n){a.map(function(a,l){var h=Math.abs(e-s[n][l]),g=Math.abs(t-i[n][l]),f=g+h;f0?e:-1}),a=0;a0)for(var s=0;s-1?g[0].parentNode.style.display="none":g[0].parentNode.style.display=o.config.tooltip.items.display)}},{key:"toggleActiveInactiveSeries",value:function(t){var e=this.w;if(t)this.tooltipUtil.toggleAllTooltipSeriesGroups("enable");else{this.tooltipUtil.toggleAllTooltipSeriesGroups("disable");var i=e.globals.dom.baseEl.querySelector(".apexcharts-tooltip-series-group");i&&(i.classList.add("active"),i.style.display=e.config.tooltip.items.display)}}},{key:"getValuesToPrint",value:function(t){var e=t.i,i=t.j,s=this.w,a=this.ctx.series.filteredSeriesX(),n="",r=null,o=null,l={series:s.globals.series,seriesIndex:e,dataPointIndex:i,w:s},h=s.globals.ttZFormatter;null===i?o=s.globals.series[e]:s.globals.isXNumeric?(n=a[e][i],0===a[e].length&&(n=a[this.tooltipUtil.getFirstActiveXArray(a)][i])):n=void 0!==s.globals.labels[i]?s.globals.labels[i]:"";var c=n;s.globals.isXNumeric&&"datetime"===s.config.xaxis.type?n=new D(this.ctx).xLabelFormat(s.globals.ttKeyFormatter,c,c):s.globals.isBarHorizontal||(n=s.globals.xLabelFormatter(c,l));return void 0!==s.config.tooltip.x.formatter&&(n=s.globals.ttKeyFormatter(c,l)),s.globals.seriesZ.length>0&&s.globals.seriesZ[0].length>0&&(r=h(s.globals.seriesZ[e][i],s)),{val:o,xVal:n,xAxisTTVal:"function"==typeof s.config.xaxis.tooltip.formatter?s.globals.xaxisTooltipFormatter(c,l):n,zVal:r}}},{key:"handleCustomTooltip",value:function(t){var e=t.i,i=t.j,s=this.w;this.ttCtx.getElTooltip().innerHTML=s.config.tooltip.custom({ctx:this.ctx,series:s.globals.series,seriesIndex:e,dataPointIndex:i,w:s})}}]),t}(),ut=function(){function t(i){e(this,t),this.ttCtx=i,this.ctx=i.ctx,this.w=i.w}return s(t,[{key:"moveXCrosshairs",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=this.ttCtx,s=this.w,a=i.getElXCrosshairs(),n=t-i.xcrosshairsWidth/2,r=s.globals.labels.slice().length;if(null!==e&&(n=s.globals.gridWidth/r*e),"tickWidth"===s.config.xaxis.crosshairs.width||"barWidth"===s.config.xaxis.crosshairs.width?n+i.xcrosshairsWidth>s.globals.gridWidth&&(n=s.globals.gridWidth-i.xcrosshairsWidth):null!==e&&(n+=s.globals.gridWidth/r/2),n<0&&(n=0),n>s.globals.gridWidth&&(n=s.globals.gridWidth),null!==a&&(a.setAttribute("x",n),a.setAttribute("x1",n),a.setAttribute("x2",n),a.setAttribute("y2",s.globals.gridHeight),a.classList.add("active")),i.blxaxisTooltip){var o=n;"tickWidth"!==s.config.xaxis.crosshairs.width&&"barWidth"!==s.config.xaxis.crosshairs.width||(o=n+i.xcrosshairsWidth/2),this.moveXAxisTooltip(o)}}},{key:"moveYCrosshairs",value:function(t){var e=this.ttCtx;null!==e.ycrosshairs&&(f.setAttrs(e.ycrosshairs,{y1:t,y2:t}),f.setAttrs(e.ycrosshairsHidden,{y1:t,y2:t}))}},{key:"moveXAxisTooltip",value:function(t){var e=this.w,i=this.ttCtx;if(null!==i.xaxisTooltip){i.xaxisTooltip.classList.add("active");var s=i.xaxisOffY+e.config.xaxis.tooltip.offsetY+e.globals.translateY+1+e.config.xaxis.offsetY;if(t-=i.xaxisTooltip.getBoundingClientRect().width/2,!isNaN(t)){t+=e.globals.translateX;var a;a=new f(this.ctx).getTextRects(i.xaxisTooltipText.innerHTML),i.xaxisTooltipText.style.minWidth=a.width+"px",i.xaxisTooltip.style.left=t+"px",i.xaxisTooltip.style.top=s+"px"}}}},{key:"moveYAxisTooltip",value:function(t){var e=this.w,i=this.ttCtx;null===i.yaxisTTEls&&(i.yaxisTTEls=e.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxistooltip"));var s=parseInt(i.ycrosshairsHidden.getAttribute("y1")),a=e.globals.translateY+s,n=i.yaxisTTEls[t].getBoundingClientRect().height,r=e.globals.translateYAxisX[t]-2;e.config.yaxis[t].opposite&&(r-=26),a-=n/2,-1===e.globals.ignoreYAxisIndexes.indexOf(t)?(i.yaxisTTEls[t].classList.add("active"),i.yaxisTTEls[t].style.top=a+"px",i.yaxisTTEls[t].style.left=r+e.config.yaxis[t].tooltip.offsetX+"px"):i.yaxisTTEls[t].classList.remove("active")}},{key:"moveTooltip",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,s=this.w,a=this.ttCtx,n=a.getElTooltip(),r=a.tooltipRect,o=null!==i?parseInt(i):1,l=parseInt(t)+o+5,h=parseInt(e)+o/2;if(l>s.globals.gridWidth/2&&(l=l-r.ttWidth-o-15),l>s.globals.gridWidth-r.ttWidth-10&&(l=s.globals.gridWidth-r.ttWidth),l<-20&&(l=-20),s.config.tooltip.followCursor){var c=a.getElGrid().getBoundingClientRect();h=a.e.clientY+s.globals.translateY-c.top-r.ttHeight/2}var d=this.positionChecks(r,l,h);l=d.x,h=d.y,isNaN(l)||(l+=s.globals.translateX,n.style.left=l+"px",n.style.top=h+"px")}},{key:"positionChecks",value:function(t,e,i){var s=this.w;return t.ttHeight+i>s.globals.gridHeight&&(i=s.globals.gridHeight-t.ttHeight+s.globals.translateY),i<0&&(i=0),{x:e,y:i}}},{key:"moveMarkers",value:function(t,e){var i=this.w,s=this.ttCtx;if(i.globals.markers.size[t]>0)for(var a=i.globals.dom.baseEl.querySelectorAll(" .apexcharts-series[data\\:realIndex='".concat(t,"'] .apexcharts-marker")),n=0;n2&&void 0!==arguments[2]?arguments[2]:null,s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,a=this.w;"bubble"!==a.config.chart.type&&this.newPointSize(t,e);var n=e.getAttribute("cx"),r=e.getAttribute("cy");if(null!==i&&null!==s&&(n=i,r=s),this.tooltipPosition.moveXCrosshairs(n),!this.fixedTooltip){if("radar"===a.config.chart.type){var o=this.ttCtx.getElGrid().getBoundingClientRect();n=this.ttCtx.e.clientX-o.left}this.tooltipPosition.moveTooltip(n,r,a.config.markers.hover.size)}}},{key:"enlargePoints",value:function(t){for(var e=this.w,i=this.ttCtx,s=t,a=e.globals.dom.baseEl.querySelectorAll(".apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker"),n=e.config.markers.hover.size,r=0;rr.globals.gridWidth/2&&(s=h-n.tooltipRect.ttWidth/2+d),n.w.config.tooltip.followCursor){var g=n.getElGrid().getBoundingClientRect();a=n.e.clientY-g.top+r.globals.translateY/2-10}}return{x:s,y:a}}},{key:"handleMarkerTooltip",value:function(t){var e,i,s=t.e,a=t.opt,n=t.x,r=t.y,o=this.w,l=this.ttCtx;if(s.target.classList.contains("apexcharts-marker")){var h=parseInt(a.paths.getAttribute("cx")),c=parseInt(a.paths.getAttribute("cy")),u=parseFloat(a.paths.getAttribute("val"));if(i=parseInt(a.paths.getAttribute("rel")),e=parseInt(a.paths.parentNode.parentNode.parentNode.getAttribute("rel"))-1,l.intersect){var g=d.findAncestor(a.paths,"apexcharts-series");g&&(e=parseInt(g.getAttribute("data:realIndex")))}if(l.tooltipLabels.drawSeriesTexts({ttItems:a.ttItems,i:e,j:i,shared:!l.showOnIntersect&&o.config.tooltip.shared}),"mouseup"===s.type&&l.markerClick(s,e,i),o.globals.capturedSeriesIndex=e,o.globals.capturedDataPointIndex=i,n=h,r=c+o.globals.translateY-1.4*l.tooltipRect.ttHeight,l.w.config.tooltip.followCursor){var f=l.getElGrid().getBoundingClientRect();r=l.e.clientY+o.globals.translateY-f.top}u<0&&(r=c),l.marker.enlargeCurrentPoint(i,a.paths,n,r)}return{x:n,y:r}}},{key:"handleBarTooltip",value:function(t){var e,i,s=t.e,a=t.opt,n=this.w,r=this.ttCtx,o=r.getElTooltip(),l=0,h=0,c=0,d=this.getBarTooltipXY({e:s,opt:a});e=d.i;var u=d.barHeight,g=d.j;if(n.globals.capturedSeriesIndex=e,n.globals.capturedDataPointIndex=g,n.globals.isBarHorizontal&&r.hasBars()||!n.config.tooltip.shared?(h=d.x,c=d.y,i=Array.isArray(n.config.stroke.width)?n.config.stroke.width[e]:n.config.stroke.width,l=h):n.globals.comboCharts||n.config.tooltip.shared||(l/=2),isNaN(c)&&(c=n.globals.svgHeight-r.tooltipRect.ttHeight),h+r.tooltipRect.ttWidth>n.globals.gridWidth?h-=r.tooltipRect.ttWidth:h<0&&(h+=r.tooltipRect.ttWidth),r.w.config.tooltip.followCursor){var f=r.getElGrid().getBoundingClientRect();c=r.e.clientY-f.top}if(null===r.tooltip&&(r.tooltip=n.globals.dom.baseEl.querySelector(".apexcharts-tooltip")),n.config.tooltip.shared||(n.globals.comboChartsHasBars?r.tooltipPosition.moveXCrosshairs(l+i/2):r.tooltipPosition.moveXCrosshairs(l)),!r.fixedTooltip&&(!n.config.tooltip.shared||n.globals.isBarHorizontal&&r.hasBars())){x&&(h=n.globals.gridWidth-h),o.style.left=h+n.globals.translateX+"px";var p=parseInt(a.paths.parentNode.getAttribute("data:realIndex")),x=n.globals.isMultipleYAxis?n.config.yaxis[p]&&n.config.yaxis[p].reversed:n.config.yaxis[0].reversed;!x||n.globals.isBarHorizontal&&r.hasBars()||(c=c+u-2*(n.globals.series[e][g]<0?u:0)),r.tooltipRect.ttHeight+c>n.globals.gridHeight?(c=n.globals.gridHeight-r.tooltipRect.ttHeight+n.globals.translateY,o.style.top=c+"px"):o.style.top=c+n.globals.translateY-r.tooltipRect.ttHeight/2+"px"}}},{key:"getBarTooltipXY",value:function(t){var e=t.e,i=t.opt,s=this.w,a=null,n=this.ttCtx,r=0,o=0,l=0,h=0,c=0,d=e.target.classList;if(d.contains("apexcharts-bar-area")||d.contains("apexcharts-candlestick-area")||d.contains("apexcharts-rangebar-area")){var u=e.target,g=u.getBoundingClientRect(),f=i.elGrid.getBoundingClientRect(),p=g.height;c=g.height;var x=g.width,b=parseInt(u.getAttribute("cx")),m=parseInt(u.getAttribute("cy"));h=parseFloat(u.getAttribute("barWidth"));var v="touchmove"===e.type?e.touches[0].clientX:e.clientX;a=parseInt(u.getAttribute("j")),r=parseInt(u.parentNode.getAttribute("rel"))-1,s.globals.comboCharts&&(r=parseInt(u.parentNode.getAttribute("data:realIndex"))),n.tooltipLabels.drawSeriesTexts({ttItems:i.ttItems,i:r,j:a,shared:!n.showOnIntersect&&s.config.tooltip.shared}),s.config.tooltip.followCursor?s.globals.isBarHorizontal?(o=v-f.left+15,l=m-n.dataPointsDividedHeight+p/2-n.tooltipRect.ttHeight/2):(o=s.globals.isXNumeric?b-x/2:b-n.dataPointsDividedWidth+x/2,l=e.clientY-f.top-n.tooltipRect.ttHeight/2-15):s.globals.isBarHorizontal?((o=b)0&&i.setAttribute("width",e.xcrosshairsWidth)}},{key:"handleYCrosshair",value:function(){var t=this.w,e=this.ttCtx;e.ycrosshairs=t.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs"),e.ycrosshairsHidden=t.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs-hidden")}},{key:"drawYaxisTooltipText",value:function(t,e,i){var s=this.ttCtx,a=this.w,n=a.globals.yLabelFormatters[t];if(s.blyaxisTooltip){var r=s.getElGrid().getBoundingClientRect(),o=(e-r.top)*i.yRatio[t],l=a.globals.maxYArr[t]-a.globals.minYArr[t],h=a.globals.minYArr[t]+(l-o);s.tooltipPosition.moveYCrosshairs(e-r.top),s.yaxisTooltipText[t].innerHTML=n(h),s.tooltipPosition.moveYAxisTooltip(t)}}}]),t}(),xt=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w;var s=this.w;this.tConfig=s.config.tooltip,this.tooltipUtil=new ct(this),this.tooltipLabels=new dt(this),this.tooltipPosition=new ut(this),this.marker=new gt(this),this.intersect=new ft(this),this.axesTooltip=new pt(this),this.showOnIntersect=this.tConfig.intersect,this.showTooltipTitle=this.tConfig.x.show,this.fixedTooltip=this.tConfig.fixed.enabled,this.xaxisTooltip=null,this.yaxisTTEls=null,this.isBarShared=!s.globals.isBarHorizontal&&this.tConfig.shared}return s(t,[{key:"getElTooltip",value:function(t){return t||(t=this),t.w.globals.dom.baseEl.querySelector(".apexcharts-tooltip")}},{key:"getElXCrosshairs",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-xcrosshairs")}},{key:"getElGrid",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-grid")}},{key:"drawTooltip",value:function(t){var e=this.w;this.xyRatios=t,this.blxaxisTooltip=e.config.xaxis.tooltip.enabled&&e.globals.axisCharts,this.blyaxisTooltip=e.config.yaxis[0].tooltip.enabled&&e.globals.axisCharts,this.allTooltipSeriesGroups=[],e.globals.axisCharts||(this.showTooltipTitle=!1);var i=document.createElement("div");if(i.classList.add("apexcharts-tooltip"),i.classList.add(this.tConfig.theme),e.globals.dom.elWrap.appendChild(i),e.globals.axisCharts){this.axesTooltip.drawXaxisTooltip(),this.axesTooltip.drawYaxisTooltip(),this.axesTooltip.setXCrosshairWidth(),this.axesTooltip.handleYCrosshair();var s=new G(this.ctx);this.xAxisTicksPositions=s.getXAxisTicksPositions()}if((e.globals.comboCharts&&!this.tConfig.shared||this.tConfig.intersect&&!this.tConfig.shared||("bar"===e.config.chart.type||"rangeBar"===e.config.chart.type)&&!this.tConfig.shared)&&(this.showOnIntersect=!0),0!==e.config.markers.size&&0!==e.globals.markers.largestSize||this.marker.drawDynamicPoints(this),e.globals.collapsedSeries.length!==e.globals.series.length){this.dataPointsDividedHeight=e.globals.gridHeight/e.globals.dataPoints,this.dataPointsDividedWidth=e.globals.gridWidth/e.globals.dataPoints,this.showTooltipTitle&&(this.tooltipTitle=document.createElement("div"),this.tooltipTitle.classList.add("apexcharts-tooltip-title"),this.tooltipTitle.style.fontFamily=this.tConfig.style.fontFamily||e.config.chart.fontFamily,this.tooltipTitle.style.fontSize=this.tConfig.style.fontSize,i.appendChild(this.tooltipTitle));var a=e.globals.series.length;(e.globals.xyCharts||e.globals.comboCharts)&&this.tConfig.shared&&(a=this.showOnIntersect?1:e.globals.series.length),this.legendLabels=e.globals.dom.baseEl.querySelectorAll(".apexcharts-legend-text"),this.ttItems=this.createTTElements(a),this.addSVGEvents()}}},{key:"createTTElements",value:function(t){for(var e=this.w,i=[],s=this.getElTooltip(),a=0;a0&&this.addPathsEventListeners(u,h);var g=t.globals.dom.baseEl.querySelectorAll(".apexcharts-area-series .apexcharts-marker");g.length>0&&this.addPathsEventListeners(g,h),this.hasBars()&&!this.tConfig.shared&&this.addBarsEventListeners(h)}}},{key:"drawFixedTooltipRect",value:function(){var t=this.w,e=this.getElTooltip(),i=e.getBoundingClientRect(),s=i.width+10,a=i.height+10,n=this.tConfig.fixed.offsetX,r=this.tConfig.fixed.offsetY;return this.tConfig.fixed.position.toLowerCase().indexOf("right")>-1&&(n=n+t.globals.svgWidth-s+10),this.tConfig.fixed.position.toLowerCase().indexOf("bottom")>-1&&(r=r+t.globals.svgHeight-a-10),e.style.left=n+"px",e.style.top=r+"px",{x:n,y:r,ttWidth:s,ttHeight:a}}},{key:"addPointsEventsListeners",value:function(t){var e=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers .apexcharts-marker");this.addPathsEventListeners(e,t)}},{key:"addBarsEventListeners",value:function(t){var e=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-bar-area, .apexcharts-candlestick-area, .apexcharts-rangebar-area");this.addPathsEventListeners(e,t)}},{key:"addPathsEventListeners",value:function(t,e){for(var i=this,s=this,a=function(a){var n={paths:t[a],tooltipEl:e.tooltipEl,tooltipY:e.tooltipY,tooltipX:e.tooltipX,elGrid:e.elGrid,hoverArea:e.hoverArea,ttItems:e.ttItems};i.w.globals.tooltipOpts=n;["mousemove","mouseup","touchmove","mouseout","touchend"].map(function(e){return t[a].addEventListener(e,s.seriesHover.bind(s,n),{capture:!1,passive:!0})})},n=0;nl.top+l.height)this.handleMouseOut(n);else{if(Array.isArray(this.tConfig.enabledOnSeries)&&!r.config.tooltip.shared){var d=parseInt(n.paths.getAttribute("index"));if(this.tConfig.enabledOnSeries.indexOf(d)<0)return void this.handleMouseOut(n)}var u=this.getElTooltip(),g=this.getElXCrosshairs(),f=r.globals.xyCharts||"bar"===r.config.chart.type&&!r.globals.isBarHorizontal&&this.hasBars()&&this.tConfig.shared||r.globals.comboCharts&&this.hasBars;if(r.globals.isBarHorizontal&&this.hasBars()&&(f=!1),"mousemove"===a.type||"touchmove"===a.type||"mouseup"===a.type){if(null!==g&&g.classList.add("active"),null!==this.ycrosshairs&&this.blyaxisTooltip&&this.ycrosshairs.classList.add("active"),f&&!this.showOnIntersect){e=(o=this.tooltipUtil.getNearestValues({context:this,hoverArea:n.hoverArea,elGrid:n.elGrid,clientX:h,clientY:c,hasBars:this.hasBars})).j;var p=o.capturedSeries;if(o.hoverX<0||o.hoverX>r.globals.gridWidth)return void this.handleMouseOut(n);if(null!==p){if(null===r.globals.series[p][e])return void this.handleMouseOut(n);void 0!==r.globals.series[p][e]?this.tConfig.shared&&this.tooltipUtil.isXoverlap(e)&&this.tooltipUtil.isInitialSeriesSameLen()?this.create(a,this,p,e,n.ttItems):this.create(a,this,p,e,n.ttItems,!1):this.tooltipUtil.isXoverlap(e)&&this.create(a,this,0,e,n.ttItems)}else this.tooltipUtil.isXoverlap(e)&&this.create(a,this,0,e,n.ttItems)}else if("heatmap"===r.config.chart.type){var x=this.intersect.handleHeatTooltip({e:a,opt:n,x:i,y:s});i=x.x,s=x.y,u.style.left=i+"px",u.style.top=s+"px"}else this.hasBars&&this.intersect.handleBarTooltip({e:a,opt:n}),this.hasMarkers&&this.intersect.handleMarkerTooltip({e:a,opt:n,x:i,y:s});if(this.blyaxisTooltip)for(var b=0;b0}},{key:"getElBars",value:function(){return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-bar-series, .apexcharts-candlestick-series, .apexcharts-rangebar-series")}},{key:"hasBars",value:function(){return this.getElBars().length>0}},{key:"markerClick",value:function(t,e,i){var s=this.w;"function"==typeof s.config.chart.events.markerClick&&s.config.chart.events.markerClick(t,this.ctx,{seriesIndex:e,dataPointIndex:i,w:s}),this.ctx.fireEvent("markerClick",[t,this.ctx,{seriesIndex:e,dataPointIndex:i,w:s}])}},{key:"create",value:function(t,e,i,s,a){var n=arguments.length>5&&void 0!==arguments[5]?arguments[5]:null,r=this.w,o=e;"mouseup"===t.type&&this.markerClick(t,i,s),null===n&&(n=this.tConfig.shared);var l=this.hasMarkers(),h=this.getElBars();if(r.config.legend.tooltipHoverFormatter){var c=r.config.legend.tooltipHoverFormatter,d=Array.from(this.legendLabels);d.forEach(function(t){var e=t.getAttribute("data:default-text");t.innerHTML=e});for(var u=0;u0?o.marker.enlargePoints(s):o.tooltipPosition.moveDynamicPointsOnHover(s)),this.hasBars()&&(this.barSeriesHeight=this.tooltipUtil.getBarsHeight(h),this.barSeriesHeight>0)){var m=new f(this.ctx),v=r.globals.dom.Paper.select(".apexcharts-bar-area[j='".concat(s,"']"));this.deactivateHoverFilter(),this.tooltipPosition.moveStickyTooltipOverBars(s);for(var y=0;y\n \n \n\n',title:this.localeValues.zoomIn,class:"apexcharts-zoom-in-icon"}),this.t.zoomout&&t.config.chart.zoom.enabled&&s.push({el:this.elZoomOut,icon:"string"==typeof this.t.zoomout?this.t.zoomout:'\n \n \n\n',title:this.localeValues.zoomOut,class:"apexcharts-zoom-out-icon"}),this.t.zoom&&t.config.chart.zoom.enabled&&s.push({el:this.elZoom,icon:"string"==typeof this.t.zoom?this.t.zoom:'\n \n \n \n',title:this.localeValues.selectionZoom,class:t.globals.isTouchDevice?"hidden":"apexcharts-zoom-icon"}),this.t.selection&&t.config.chart.selection.enabled&&s.push({el:this.elSelection,icon:"string"==typeof this.t.selection?this.t.selection:'\n \n \n',title:this.localeValues.selection,class:t.globals.isTouchDevice?"hidden":"apexcharts-selection-icon"}),this.t.pan&&t.config.chart.zoom.enabled&&s.push({el:this.elPan,icon:"string"==typeof this.t.pan?this.t.pan:'\n \n \n \n \n \n \n \n',title:this.localeValues.pan,class:t.globals.isTouchDevice?"hidden":"apexcharts-pan-icon"}),this.t.reset&&t.config.chart.zoom.enabled&&s.push({el:this.elZoomReset,icon:"string"==typeof this.t.reset?this.t.reset:'\n \n \n',title:this.localeValues.reset,class:"apexcharts-reset-zoom-icon"}),this.t.download&&s.push({el:this.elMenuIcon,icon:"string"==typeof this.t.download?this.t.download:'',title:this.localeValues.menu,class:"apexcharts-menu-icon"});for(var a=0;a0&&e.height>0&&this.slDraggableRect.selectize().resize({constraint:{minX:0,minY:0,maxX:t.globals.gridWidth,maxY:t.globals.gridHeight}}).on("resizing",this.selectionDragging.bind(this,"resizing"))}}},{key:"preselectedSelection",value:function(){var t=this.w,e=this.xyRatios;if(!t.globals.zoomEnabled)if(void 0!==t.globals.selection&&null!==t.globals.selection)this.drawSelectionRect(t.globals.selection);else if(void 0!==t.config.chart.selection.xaxis.min&&void 0!==t.config.chart.selection.xaxis.max){var i=(t.config.chart.selection.xaxis.min-t.globals.minX)/e.xRatio,s={x:i,y:0,width:t.globals.gridWidth-(t.globals.maxX-t.config.chart.selection.xaxis.max)/e.xRatio-i,height:t.globals.gridHeight,translateX:0,translateY:0,selectionEnabled:!0};this.drawSelectionRect(s),this.makeSelectionRectDraggable(),"function"==typeof t.config.chart.events.selection&&t.config.chart.events.selection(this.ctx,{xaxis:{min:t.config.chart.selection.xaxis.min,max:t.config.chart.selection.xaxis.max},yaxis:{}})}}},{key:"drawSelectionRect",value:function(t){var e=t.x,i=t.y,s=t.width,a=t.height,n=t.translateX,r=t.translateY,o=this.w,l=this.zoomRect,h=this.selectionRect;if(this.dragged||null!==o.globals.selection){var c={transform:"translate("+n+", "+r+")"};o.globals.zoomEnabled&&this.dragged&&(l.attr({x:e,y:i,width:s,height:a,fill:o.config.chart.zoom.zoomedArea.fill.color,"fill-opacity":o.config.chart.zoom.zoomedArea.fill.opacity,stroke:o.config.chart.zoom.zoomedArea.stroke.color,"stroke-width":o.config.chart.zoom.zoomedArea.stroke.width,"stroke-opacity":o.config.chart.zoom.zoomedArea.stroke.opacity}),f.setAttrs(l.node,c)),o.globals.selectionEnabled&&(h.attr({x:e,y:i,width:s>0?s:0,height:a>0?a:0,fill:o.config.chart.selection.fill.color,"fill-opacity":o.config.chart.selection.fill.opacity,stroke:o.config.chart.selection.stroke.color,"stroke-width":o.config.chart.selection.stroke.width,"stroke-dasharray":o.config.chart.selection.stroke.dashArray,"stroke-opacity":o.config.chart.selection.stroke.opacity}),f.setAttrs(h.node,c))}}},{key:"hideSelectionRect",value:function(t){t&&t.attr({x:0,y:0,width:0,height:0})}},{key:"selectionDrawing",value:function(t){var e=t.context,i=t.zoomtype,s=this.w,a=e,n=this.gridRect.getBoundingClientRect(),r=a.startX-1,o=a.startY,l=a.clientX-n.left-r,h=a.clientY-n.top-o,c=0,d=0,u={};return Math.abs(l+r)>s.globals.gridWidth?l=s.globals.gridWidth-r:a.clientX-n.left<0&&(l=r),r>a.clientX-n.left&&(c=-(l=Math.abs(l))),o>a.clientY-n.top&&(d=-(h=Math.abs(h))),u="x"===i?{x:r,y:0,width:l,height:s.globals.gridHeight,translateX:c,translateY:0}:"y"===i?{x:0,y:o,width:s.globals.gridWidth,height:h,translateX:0,translateY:d}:{x:r,y:o,width:l,height:h,translateX:c,translateY:d},a.drawSelectionRect(u),a.selectionDragging("resizing"),u}},{key:"selectionDragging",value:function(t,e){var i=this,s=this.w,a=this.xyRatios,n=this.selectionRect,r=0;"resizing"===t&&(r=30),"function"==typeof s.config.chart.events.selection&&s.globals.selectionEnabled&&(clearTimeout(this.w.globals.selectionResizeTimer),this.w.globals.selectionResizeTimer=window.setTimeout(function(){var t=i.gridRect.getBoundingClientRect(),e=n.node.getBoundingClientRect(),r=s.globals.xAxisScale.niceMin+(e.left-t.left)*a.xRatio,o=s.globals.xAxisScale.niceMin+(e.right-t.left)*a.xRatio,l=s.globals.yAxisScale[0].niceMin+(t.bottom-e.bottom)*a.yRatio[0],h=s.globals.yAxisScale[0].niceMax-(e.top-t.top)*a.yRatio[0];s.config.chart.events.selection(i.ctx,{xaxis:{min:r,max:o},yaxis:{min:l,max:h}})},r))}},{key:"selectionDrawn",value:function(t){var e=t.context,i=t.zoomtype,s=this.w,a=e,n=this.xyRatios,r=this.ctx.toolbar;if(a.startX>a.endX){var o=a.startX;a.startX=a.endX,a.endX=o}if(a.startY>a.endY){var l=a.startY;a.startY=a.endY,a.endY=l}var h=s.globals.xAxisScale.niceMin+a.startX*n.xRatio,c=s.globals.xAxisScale.niceMin+a.endX*n.xRatio,u=[],g=[];if(s.config.yaxis.forEach(function(t,e){u.push(Math.floor(s.globals.yAxisScale[e].niceMax-n.yRatio[e]*a.startY)),g.push(Math.floor(s.globals.yAxisScale[e].niceMax-n.yRatio[e]*a.endY))}),a.dragged&&(a.dragX>10||a.dragY>10)&&h!==c)if(s.globals.zoomEnabled){var f=d.clone(s.globals.initialConfig.yaxis);s.globals.zoomed||(s.globals.lastXAxis=d.clone(s.config.xaxis),s.globals.lastYAxis=d.clone(s.config.yaxis));var p={min:h,max:c};if("xy"!==i&&"y"!==i||f.forEach(function(t,e){f[e].min=g[e],f[e].max=u[e]}),s.config.chart.zoom.autoScaleYaxis){var x=new _(a.ctx);f=x.autoScaleY(a.ctx,f,{xaxis:p})}if(r){var b=r.getBeforeZoomRange(p,f);b&&(p=b.xaxis?b.xaxis:p,f=b.yaxis?b.yaxe:f)}var m={xaxis:p};s.config.chart.group||(m.yaxis=f),a.ctx._updateOptions(m,!1,a.w.config.chart.animations.dynamicAnimation.enabled),"function"==typeof s.config.chart.events.zoomed&&r.zoomCallback(p,f),s.globals.zoomed=!0}else if(s.globals.selectionEnabled){var v,y=null;v={min:h,max:c},"xy"!==i&&"y"!==i||(y=d.clone(s.config.yaxis)).forEach(function(t,e){y[e].min=g[e],y[e].max=u[e]}),s.globals.selection=a.selection,"function"==typeof s.config.chart.events.selection&&s.config.chart.events.selection(a.ctx,{xaxis:v,yaxis:y})}}},{key:"panDragging",value:function(t){var e,i=t.context,s=this.w,a=i;if(void 0!==s.globals.lastClientPosition.x){var n=s.globals.lastClientPosition.x-a.clientX,r=s.globals.lastClientPosition.y-a.clientY;Math.abs(n)>Math.abs(r)&&n>0?e="left":Math.abs(n)>Math.abs(r)&&n<0?e="right":Math.abs(r)>Math.abs(n)&&r>0?e="up":Math.abs(r)>Math.abs(n)&&r<0&&(e="down")}s.globals.lastClientPosition={x:a.clientX,y:a.clientY};var o=s.globals.minX,l=s.globals.maxX;a.panScrolled(e,o,l)}},{key:"panScrolled",value:function(t,e,i){var s=this.w,a=this.xyRatios,n=d.clone(s.globals.initialConfig.yaxis);"left"===t?(e=s.globals.minX+s.globals.gridWidth/15*a.xRatio,i=s.globals.maxX+s.globals.gridWidth/15*a.xRatio):"right"===t&&(e=s.globals.minX-s.globals.gridWidth/15*a.xRatio,i=s.globals.maxX-s.globals.gridWidth/15*a.xRatio),(es.globals.initialmaxX)&&(e=s.globals.minX,i=s.globals.maxX);var r={min:e,max:i};s.config.chart.zoom.autoScaleYaxis&&(n=new _(this.ctx).autoScaleY(this.ctx,n,{xaxis:r}));var o={xaxis:{min:e,max:i}};s.config.chart.group||(o.yaxis=n),this.ctx._updateOptions(o,!1,!1),"function"==typeof s.config.chart.events.scrolled&&s.config.chart.events.scrolled(this.ctx,{xaxis:{min:e,max:i}})}}]),i}(),vt=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return s(t,[{key:"draw",value:function(){this.drawTitleSubtitle("title"),this.drawTitleSubtitle("subtitle")}},{key:"drawTitleSubtitle",value:function(t){var e=this.w,i="title"===t?e.config.title:e.config.subtitle,s=e.globals.svgWidth/2,a=i.offsetY,n="middle";if("left"===i.align?(s=10,n="start"):"right"===i.align&&(s=e.globals.svgWidth-10,n="end"),s+=i.offsetX,a=a+parseInt(i.style.fontSize)+2,void 0!==i.text){var r=new f(this.ctx).drawText({x:s,y:a,text:i.text,textAnchor:n,fontSize:i.style.fontSize,fontFamily:i.style.fontFamily,foreColor:i.style.color,opacity:1});r.node.setAttribute("class","apexcharts-".concat(t,"-text")),e.globals.dom.Paper.add(r)}}}]),t}();at="undefined"!=typeof window?window:void 0,nt=function(e,i){var s=(void 0!==this?this:e).SVG=function(t){if(s.supported)return t=new s.Doc(t),s.parser.draw||s.prepare(),t};if(s.ns="http://www.w3.org/2000/svg",s.xmlns="http://www.w3.org/2000/xmlns/",s.xlink="http://www.w3.org/1999/xlink",s.svgjs="http://svgjs.com/svgjs",s.supported=!0,!s.supported)return!1;s.did=1e3,s.eid=function(t){return"Svgjs"+d(t)+s.did++},s.create=function(t){var e=i.createElementNS(this.ns,t);return e.setAttribute("id",this.eid(t)),e},s.extend=function(){var t,e,i,a;for(e=(t=[].slice.call(arguments)).pop(),a=t.length-1;a>=0;a--)if(t[a])for(i in e)t[a].prototype[i]=e[i];s.Set&&s.Set.inherit&&s.Set.inherit()},s.invent=function(t){var e="function"==typeof t.create?t.create:function(){this.constructor.call(this,s.create(t.create))};return t.inherit&&(e.prototype=new t.inherit),t.extend&&s.extend(e,t.extend),t.construct&&s.extend(t.parent||s.Container,t.construct),e},s.adopt=function(t){return t?t.instance?t.instance:((i="svg"==t.nodeName?t.parentNode instanceof e.SVGElement?new s.Nested:new s.Doc:"linearGradient"==t.nodeName?new s.Gradient("linear"):"radialGradient"==t.nodeName?new s.Gradient("radial"):s[d(t.nodeName)]?new(s[d(t.nodeName)]):new s.Element(t)).type=t.nodeName,i.node=t,t.instance=i,i instanceof s.Doc&&i.namespace().defs(),i.setData(JSON.parse(t.getAttribute("svgjs:data"))||{}),i):null;var i},s.prepare=function(){var t=i.getElementsByTagName("body")[0],e=(t?new s.Doc(t):s.adopt(i.documentElement).nested()).size(2,0);s.parser={body:t||i.documentElement,draw:e.style("opacity:0;position:absolute;left:-100%;top:-100%;overflow:hidden").node,poly:e.polyline().node,path:e.path().node,native:s.create("svg")}},s.parser={native:s.create("svg")},i.addEventListener("DOMContentLoaded",function(){s.parser.draw||s.prepare()},!1),s.regex={numberAndUnit:/^([+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?)([a-z%]*)$/i,hex:/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,rgb:/rgb\((\d+),(\d+),(\d+)\)/,reference:/#([a-z0-9\-_]+)/i,transforms:/\)\s*,?\s*/,whitespace:/\s/g,isHex:/^#[a-f0-9]{3,6}$/i,isRgb:/^rgb\(/,isCss:/[^:]+:[^;]+;?/,isBlank:/^(\s+)?$/,isNumber:/^[+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,isPercent:/^-?[\d\.]+%$/,isImage:/\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i,delimiter:/[\s,]+/,hyphen:/([^e])\-/gi,pathLetters:/[MLHVCSQTAZ]/gi,isPathLetter:/[MLHVCSQTAZ]/i,numbersWithDots:/((\d?\.\d+(?:e[+-]?\d+)?)((?:\.\d+(?:e[+-]?\d+)?)+))+/gi,dots:/\./g},s.utils={map:function(t,e){var i,s=t.length,a=[];for(i=0;i1?1:t,new s.Color({r:~~(this.r+(this.destination.r-this.r)*t),g:~~(this.g+(this.destination.g-this.g)*t),b:~~(this.b+(this.destination.b-this.b)*t)})):this}}),s.Color.test=function(t){return t+="",s.regex.isHex.test(t)||s.regex.isRgb.test(t)},s.Color.isRgb=function(t){return t&&"number"==typeof t.r&&"number"==typeof t.g&&"number"==typeof t.b},s.Color.isColor=function(t){return s.Color.isRgb(t)||s.Color.test(t)},s.Array=function(t,e){0==(t=(t||[]).valueOf()).length&&e&&(t=e.valueOf()),this.value=this.parse(t)},s.extend(s.Array,{morph:function(t){if(this.destination=this.parse(t),this.value.length!=this.destination.length){for(var e=this.value[this.value.length-1],i=this.destination[this.destination.length-1];this.value.length>this.destination.length;)this.destination.push(i);for(;this.value.length=0;s--)this.value[s]=[this.value[s][0]+t,this.value[s][1]+e];return this},size:function(t,e){var i,s=this.bbox();for(i=this.value.length-1;i>=0;i--)s.width&&(this.value[i][0]=(this.value[i][0]-s.x)*t/s.width+s.x),s.height&&(this.value[i][1]=(this.value[i][1]-s.y)*e/s.height+s.y);return this},bbox:function(){return s.parser.draw||s.prepare(),s.parser.poly.setAttribute("points",this.toString()),s.parser.poly.getBBox()}});for(var a={M:function(t,e,i){return e.x=i.x=t[0],e.y=i.y=t[1],["M",e.x,e.y]},L:function(t,e){return e.x=t[0],e.y=t[1],["L",t[0],t[1]]},H:function(t,e){return e.x=t[0],["H",t[0]]},V:function(t,e){return e.y=t[0],["V",t[0]]},C:function(t,e){return e.x=t[4],e.y=t[5],["C",t[0],t[1],t[2],t[3],t[4],t[5]]},S:function(t,e){return e.x=t[2],e.y=t[3],["S",t[0],t[1],t[2],t[3]]},Q:function(t,e){return e.x=t[2],e.y=t[3],["Q",t[0],t[1],t[2],t[3]]},T:function(t,e){return e.x=t[0],e.y=t[1],["T",t[0],t[1]]},Z:function(t,e,i){return e.x=i.x,e.y=i.y,["Z"]},A:function(t,e){return e.x=t[5],e.y=t[6],["A",t[0],t[1],t[2],t[3],t[4],t[5],t[6]]}},n="mlhvqtcsaz".split(""),r=0,o=n.length;r=0;a--)"M"==(s=this.value[a][0])||"L"==s||"T"==s?(this.value[a][1]+=t,this.value[a][2]+=e):"H"==s?this.value[a][1]+=t:"V"==s?this.value[a][1]+=e:"C"==s||"S"==s||"Q"==s?(this.value[a][1]+=t,this.value[a][2]+=e,this.value[a][3]+=t,this.value[a][4]+=e,"C"==s&&(this.value[a][5]+=t,this.value[a][6]+=e)):"A"==s&&(this.value[a][6]+=t,this.value[a][7]+=e);return this},size:function(t,e){var i,s,a=this.bbox();for(i=this.value.length-1;i>=0;i--)"M"==(s=this.value[i][0])||"L"==s||"T"==s?(this.value[i][1]=(this.value[i][1]-a.x)*t/a.width+a.x,this.value[i][2]=(this.value[i][2]-a.y)*e/a.height+a.y):"H"==s?this.value[i][1]=(this.value[i][1]-a.x)*t/a.width+a.x:"V"==s?this.value[i][1]=(this.value[i][1]-a.y)*e/a.height+a.y:"C"==s||"S"==s||"Q"==s?(this.value[i][1]=(this.value[i][1]-a.x)*t/a.width+a.x,this.value[i][2]=(this.value[i][2]-a.y)*e/a.height+a.y,this.value[i][3]=(this.value[i][3]-a.x)*t/a.width+a.x,this.value[i][4]=(this.value[i][4]-a.y)*e/a.height+a.y,"C"==s&&(this.value[i][5]=(this.value[i][5]-a.x)*t/a.width+a.x,this.value[i][6]=(this.value[i][6]-a.y)*e/a.height+a.y)):"A"==s&&(this.value[i][1]=this.value[i][1]*t/a.width,this.value[i][2]=this.value[i][2]*e/a.height,this.value[i][6]=(this.value[i][6]-a.x)*t/a.width+a.x,this.value[i][7]=(this.value[i][7]-a.y)*e/a.height+a.y);return this},equalCommands:function(t){var e,i,a;for(t=new s.PathArray(t),a=this.value.length===t.value.length,e=0,i=this.value.length;a&&el);return n},bbox:function(){return s.parser.draw||s.prepare(),s.parser.path.setAttribute("d",this.toString()),s.parser.path.getBBox()}}),s.Number=s.invent({create:function(t,e){this.value=0,this.unit=e||"","number"==typeof t?this.value=isNaN(t)?0:isFinite(t)?t:t<0?-3.4e38:3.4e38:"string"==typeof t?(e=t.match(s.regex.numberAndUnit))&&(this.value=parseFloat(e[1]),"%"==e[5]?this.value/=100:"s"==e[5]&&(this.value*=1e3),this.unit=e[5]):t instanceof s.Number&&(this.value=t.valueOf(),this.unit=t.unit)},extend:{toString:function(){return("%"==this.unit?~~(1e8*this.value)/1e6:"s"==this.unit?this.value/1e3:this.value)+this.unit},toJSON:function(){return this.toString()},valueOf:function(){return this.value},plus:function(t){return t=new s.Number(t),new s.Number(this+t,this.unit||t.unit)},minus:function(t){return t=new s.Number(t),new s.Number(this-t,this.unit||t.unit)},times:function(t){return t=new s.Number(t),new s.Number(this*t,this.unit||t.unit)},divide:function(t){return t=new s.Number(t),new s.Number(this/t,this.unit||t.unit)},to:function(t){var e=new s.Number(this);return"string"==typeof t&&(e.unit=t),e},morph:function(t){return this.destination=new s.Number(t),t.relative&&(this.destination.value+=this.value),this},at:function(t){return this.destination?new s.Number(this.destination).minus(this).times(t).plus(this):this}}}),s.Element=s.invent({create:function(t){this._stroke=s.defaults.attrs.stroke,this._event=null,this.dom={},(this.node=t)&&(this.type=t.nodeName,this.node.instance=this,this._stroke=t.getAttribute("stroke")||this._stroke)},extend:{x:function(t){return this.attr("x",t)},y:function(t){return this.attr("y",t)},cx:function(t){return null==t?this.x()+this.width()/2:this.x(t-this.width()/2)},cy:function(t){return null==t?this.y()+this.height()/2:this.y(t-this.height()/2)},move:function(t,e){return this.x(t).y(e)},center:function(t,e){return this.cx(t).cy(e)},width:function(t){return this.attr("width",t)},height:function(t){return this.attr("height",t)},size:function(t,e){var i=g(this,t,e);return this.width(new s.Number(i.width)).height(new s.Number(i.height))},clone:function(t){this.writeDataToDom();var e=b(this.node.cloneNode(!0));return t?t.add(e):this.after(e),e},remove:function(){return this.parent()&&this.parent().removeElement(this),this},replace:function(t){return this.after(t).remove(),t},addTo:function(t){return t.put(this)},putIn:function(t){return t.add(this)},id:function(t){return this.attr("id",t)},inside:function(t,e){var i=this.bbox();return t>i.x&&e>i.y&&t/,"").replace(/<\/svg>$/,"");e.innerHTML=""+t.replace(/\n/,"").replace(/<([\w:-]+)([^<]+?)\/>/g,"<$1$2>")+"";for(var a=0,n=e.firstChild.childNodes.length;a":function(t){return-Math.cos(t*Math.PI)/2+.5},">":function(t){return Math.sin(t*Math.PI/2)},"<":function(t){return 1-Math.cos(t*Math.PI/2)}},s.morph=function(t){return function(e,i){return new s.MorphObj(e,i).at(t)}},s.Situation=s.invent({create:function(t){this.init=!1,this.reversed=!1,this.reversing=!1,this.duration=new s.Number(t.duration).valueOf(),this.delay=new s.Number(t.delay).valueOf(),this.start=+new Date+this.delay,this.finish=this.start+this.duration,this.ease=t.ease,this.loop=0,this.loops=!1,this.animations={},this.attrs={},this.styles={},this.transforms=[],this.once={}}}),s.FX=s.invent({create:function(t){this._target=t,this.situations=[],this.active=!1,this.situation=null,this.paused=!1,this.lastPos=0,this.pos=0,this.absPos=0,this._speed=1},extend:{animate:function(e,i,a){"object"===t(e)&&(i=e.ease,a=e.delay,e=e.duration);var n=new s.Situation({duration:e||1e3,delay:a||0,ease:s.easing[i||"-"]||i});return this.queue(n),this},delay:function(t){var e=new s.Situation({duration:t,delay:0,ease:s.easing["-"]});return this.queue(e)},target:function(t){return t&&t instanceof s.Element?(this._target=t,this):this._target},timeToAbsPos:function(t){return(t-this.situation.start)/(this.situation.duration/this._speed)},absPosToTime:function(t){return this.situation.duration/this._speed*t+this.situation.start},startAnimFrame:function(){this.stopAnimFrame(),this.animationFrame=e.requestAnimationFrame(function(){this.step()}.bind(this))},stopAnimFrame:function(){e.cancelAnimationFrame(this.animationFrame)},start:function(){return!this.active&&this.situation&&(this.active=!0,this.startCurrent()),this},startCurrent:function(){return this.situation.start=+new Date+this.situation.delay/this._speed,this.situation.finish=this.situation.start+this.situation.duration/this._speed,this.initAnimations().step()},queue:function(t){return("function"==typeof t||t instanceof s.Situation)&&this.situations.push(t),this.situation||(this.situation=this.situations.shift()),this},dequeue:function(){return this.stop(),this.situation=this.situations.shift(),this.situation&&(this.situation instanceof s.Situation?this.start():this.situation.call(this)),this},initAnimations:function(){var t,e,i,a=this.situation;if(a.init)return this;for(t in a.animations)for(i=this.target()[t](),Array.isArray(i)||(i=[i]),Array.isArray(a.animations[t])||(a.animations[t]=[a.animations[t]]),e=i.length;e--;)a.animations[t][e]instanceof s.Number&&(i[e]=new s.Number(i[e])),a.animations[t][e]=i[e].morph(a.animations[t][e]);for(t in a.attrs)a.attrs[t]=new s.MorphObj(this.target().attr(t),a.attrs[t]);for(t in a.styles)a.styles[t]=new s.MorphObj(this.target().style(t),a.styles[t]);return a.initialTransformation=this.target().matrixify(),a.init=!0,this},clearQueue:function(){return this.situations=[],this},clearCurrent:function(){return this.situation=null,this},stop:function(t,e){var i=this.active;return this.active=!1,e&&this.clearQueue(),t&&this.situation&&(!i&&this.startCurrent(),this.atEnd()),this.stopAnimFrame(),this.clearCurrent()},reset:function(){if(this.situation){var t=this.situation;this.stop(),this.situation=t,this.atStart()}return this},finish:function(){for(this.stop(!0,!1);this.dequeue().situation&&this.stop(!0,!1););return this.clearQueue().clearCurrent(),this},atStart:function(){return this.at(0,!0)},atEnd:function(){return!0===this.situation.loops&&(this.situation.loops=this.situation.loop+1),"number"==typeof this.situation.loops?this.at(this.situation.loops,!0):this.at(1,!0)},at:function(t,e){var i=this.situation.duration/this._speed;return this.absPos=t,e||(this.situation.reversed&&(this.absPos=1-this.absPos),this.absPos+=this.situation.loop),this.situation.start=+new Date-this.absPos*i,this.situation.finish=this.situation.start+i,this.step(!0)},speed:function(t){return 0===t?this.pause():t?(this._speed=t,this.at(this.absPos,!0)):this._speed},loop:function(t,e){var i=this.last();return i.loops=null==t||t,i.loop=0,e&&(i.reversing=!0),this},pause:function(){return this.paused=!0,this.stopAnimFrame(),this},play:function(){return this.paused?(this.paused=!1,this.at(this.absPos,!0)):this},reverse:function(t){var e=this.last();return e.reversed=void 0===t?!e.reversed:t,this},progress:function(t){return t?this.situation.ease(this.pos):this.pos},after:function(t){var e=this.last();return this.target().on("finished.fx",function i(s){s.detail.situation==e&&(t.call(this,e),this.off("finished.fx",i))}),this._callStart()},during:function(t){var e=this.last(),i=function(i){i.detail.situation==e&&t.call(this,i.detail.pos,s.morph(i.detail.pos),i.detail.eased,e)};return this.target().off("during.fx",i).on("during.fx",i),this.after(function(){this.off("during.fx",i)}),this._callStart()},afterAll:function(t){var e=function e(i){t.call(this),this.off("allfinished.fx",e)};return this.target().off("allfinished.fx",e).on("allfinished.fx",e),this._callStart()},duringAll:function(t){var e=function(e){t.call(this,e.detail.pos,s.morph(e.detail.pos),e.detail.eased,e.detail.situation)};return this.target().off("during.fx",e).on("during.fx",e),this.afterAll(function(){this.off("during.fx",e)}),this._callStart()},last:function(){return this.situations.length?this.situations[this.situations.length-1]:this.situation},add:function(t,e,i){return this.last()[i||"animations"][t]=e,this._callStart()},step:function(t){var e,i,s;(t||(this.absPos=this.timeToAbsPos(+new Date)),!1!==this.situation.loops)?(e=Math.max(this.absPos,0),i=Math.floor(e),!0===this.situation.loops||ithis.lastPos&&n<=a&&(this.situation.once[n].call(this.target(),this.pos,a),delete this.situation.once[n]);return this.active&&this.target().fire("during",{pos:this.pos,eased:a,fx:this,situation:this.situation}),this.situation?(this.eachAt(),1==this.pos&&!this.situation.reversed||this.situation.reversed&&0==this.pos?(this.stopAnimFrame(),this.target().fire("finished",{fx:this,situation:this.situation}),this.situations.length||(this.target().fire("allfinished"),this.situations.length||(this.target().off(".fx"),this.active=!1)),this.active?this.dequeue():this.clearCurrent()):!this.paused&&this.active&&this.startAnimFrame(),this.lastPos=a,this):this},eachAt:function(){var t,e,i,a=this,n=this.target(),r=this.situation;for(t in r.animations)i=[].concat(r.animations[t]).map(function(t){return"string"!=typeof t&&t.at?t.at(r.ease(a.pos),a.pos):t}),n[t].apply(n,i);for(t in r.attrs)i=[t].concat(r.attrs[t]).map(function(t){return"string"!=typeof t&&t.at?t.at(r.ease(a.pos),a.pos):t}),n.attr.apply(n,i);for(t in r.styles)i=[t].concat(r.styles[t]).map(function(t){return"string"!=typeof t&&t.at?t.at(r.ease(a.pos),a.pos):t}),n.style.apply(n,i);if(r.transforms.length){for(i=r.initialTransformation,t=0,e=r.transforms.length;t=0;--i)this[y[i]]=null!=e[y[i]]?e[y[i]]:a[y[i]]},extend:{extract:function(){var t=f(this,0,1),e=f(this,1,0),i=180/Math.PI*Math.atan2(t.y,t.x)-90;return{x:this.e,y:this.f,transformedX:(this.e*Math.cos(i*Math.PI/180)+this.f*Math.sin(i*Math.PI/180))/Math.sqrt(this.a*this.a+this.b*this.b),transformedY:(this.f*Math.cos(i*Math.PI/180)+this.e*Math.sin(-i*Math.PI/180))/Math.sqrt(this.c*this.c+this.d*this.d),skewX:-i,skewY:180/Math.PI*Math.atan2(e.y,e.x),scaleX:Math.sqrt(this.a*this.a+this.b*this.b),scaleY:Math.sqrt(this.c*this.c+this.d*this.d),rotation:i,a:this.a,b:this.b,c:this.c,d:this.d,e:this.e,f:this.f,matrix:new s.Matrix(this)}},clone:function(){return new s.Matrix(this)},morph:function(t){return this.destination=new s.Matrix(t),this},at:function(t){return this.destination?new s.Matrix({a:this.a+(this.destination.a-this.a)*t,b:this.b+(this.destination.b-this.b)*t,c:this.c+(this.destination.c-this.c)*t,d:this.d+(this.destination.d-this.d)*t,e:this.e+(this.destination.e-this.e)*t,f:this.f+(this.destination.f-this.f)*t}):this},multiply:function(t){return new s.Matrix(this.native().multiply(function(t){t instanceof s.Matrix||(t=new s.Matrix(t));return t}(t).native()))},inverse:function(){return new s.Matrix(this.native().inverse())},translate:function(t,e){return new s.Matrix(this.native().translate(t||0,e||0))},scale:function(t,e,i,a){return 1==arguments.length?e=t:3==arguments.length&&(a=i,i=e,e=t),this.around(i,a,new s.Matrix(t,0,0,e,0,0))},rotate:function(t,e,i){return t=s.utils.radians(t),this.around(e,i,new s.Matrix(Math.cos(t),Math.sin(t),-Math.sin(t),Math.cos(t),0,0))},flip:function(t,e){return"x"==t?this.scale(-1,1,e,0):"y"==t?this.scale(1,-1,0,e):this.scale(-1,-1,t,null!=e?e:t)},skew:function(t,e,i,a){return 1==arguments.length?e=t:3==arguments.length&&(a=i,i=e,e=t),t=s.utils.radians(t),e=s.utils.radians(e),this.around(i,a,new s.Matrix(1,Math.tan(e),Math.tan(t),1,0,0))},skewX:function(t,e,i){return this.skew(t,0,e,i)},skewY:function(t,e,i){return this.skew(0,t,e,i)},around:function(t,e,i){return this.multiply(new s.Matrix(1,0,0,1,t||0,e||0)).multiply(i).multiply(new s.Matrix(1,0,0,1,-t||0,-e||0))},native:function(){for(var t=s.parser.native.createSVGMatrix(),e=y.length-1;e>=0;e--)t[y[e]]=this[y[e]];return t},toString:function(){return"matrix("+v(this.a)+","+v(this.b)+","+v(this.c)+","+v(this.d)+","+v(this.e)+","+v(this.f)+")"}},parent:s.Element,construct:{ctm:function(){return new s.Matrix(this.node.getCTM())},screenCTM:function(){if(this instanceof s.Nested){var t=this.rect(1,1),e=t.node.getScreenCTM();return t.remove(),new s.Matrix(e)}return new s.Matrix(this.node.getScreenCTM())}}}),s.Point=s.invent({create:function(e,i){var s;s=Array.isArray(e)?{x:e[0],y:e[1]}:"object"===t(e)?{x:e.x,y:e.y}:null!=e?{x:e,y:null!=i?i:e}:{x:0,y:0},this.x=s.x,this.y=s.y},extend:{clone:function(){return new s.Point(this)},morph:function(t,e){return this.destination=new s.Point(t,e),this},at:function(t){return this.destination?new s.Point({x:this.x+(this.destination.x-this.x)*t,y:this.y+(this.destination.y-this.y)*t}):this},native:function(){var t=s.parser.native.createSVGPoint();return t.x=this.x,t.y=this.y,t},transform:function(t){return new s.Point(this.native().matrixTransform(t.native()))}}}),s.extend(s.Element,{point:function(t,e){return new s.Point(t,e).transform(this.screenCTM().inverse())}}),s.extend(s.Element,{attr:function(e,i,a){if(null==e){for(e={},a=(i=this.node.attributes).length-1;a>=0;a--)e[i[a].nodeName]=s.regex.isNumber.test(i[a].nodeValue)?parseFloat(i[a].nodeValue):i[a].nodeValue;return e}if("object"===t(e))for(i in e)this.attr(i,e[i]);else if(null===i)this.node.removeAttribute(e);else{if(null==i)return null==(i=this.node.getAttribute(e))?s.defaults.attrs[e]:s.regex.isNumber.test(i)?parseFloat(i):i;"stroke-width"==e?this.attr("stroke",parseFloat(i)>0?this._stroke:null):"stroke"==e&&(this._stroke=i),"fill"!=e&&"stroke"!=e||(s.regex.isImage.test(i)&&(i=this.doc().defs().image(i,0,0)),i instanceof s.Image&&(i=this.doc().defs().pattern(0,0,function(){this.add(i)}))),"number"==typeof i?i=new s.Number(i):s.Color.isColor(i)?i=new s.Color(i):Array.isArray(i)&&(i=new s.Array(i)),"leading"==e?this.leading&&this.leading(i):"string"==typeof a?this.node.setAttributeNS(a,e,i.toString()):this.node.setAttribute(e,i.toString()),!this.rebuild||"font-size"!=e&&"x"!=e||this.rebuild(e,i)}return this}}),s.extend(s.Element,{transform:function(e,i){var a,n;if("object"!==t(e))return a=new s.Matrix(this).extract(),"string"==typeof e?a[e]:a;if(a=new s.Matrix(this),i=!!i||!!e.relative,null!=e.a)a=i?a.multiply(new s.Matrix(e)):new s.Matrix(e);else if(null!=e.rotation)x(e,this),a=i?a.rotate(e.rotation,e.cx,e.cy):a.rotate(e.rotation-a.extract().rotation,e.cx,e.cy);else if(null!=e.scale||null!=e.scaleX||null!=e.scaleY){if(x(e,this),e.scaleX=null!=e.scale?e.scale:null!=e.scaleX?e.scaleX:1,e.scaleY=null!=e.scale?e.scale:null!=e.scaleY?e.scaleY:1,!i){var r=a.extract();e.scaleX=1*e.scaleX/r.scaleX,e.scaleY=1*e.scaleY/r.scaleY}a=a.scale(e.scaleX,e.scaleY,e.cx,e.cy)}else if(null!=e.skew||null!=e.skewX||null!=e.skewY){if(x(e,this),e.skewX=null!=e.skew?e.skew:null!=e.skewX?e.skewX:0,e.skewY=null!=e.skew?e.skew:null!=e.skewY?e.skewY:0,!i){r=a.extract();a=a.multiply((new s.Matrix).skew(r.skewX,r.skewY,e.cx,e.cy).inverse())}a=a.skew(e.skewX,e.skewY,e.cx,e.cy)}else e.flip?("x"==e.flip||"y"==e.flip?e.offset=null==e.offset?this.bbox()["c"+e.flip]:e.offset:null==e.offset?(n=this.bbox(),e.flip=n.cx,e.offset=n.cy):e.flip=e.offset,a=(new s.Matrix).flip(e.flip,e.offset)):null==e.x&&null==e.y||(i?a=a.translate(e.x,e.y):(null!=e.x&&(a.e=e.x),null!=e.y&&(a.f=e.y)));return this.attr("transform",a)}}),s.extend(s.FX,{transform:function(e,i){var a,n,r=this.target();return"object"!==t(e)?(a=new s.Matrix(r).extract(),"string"==typeof e?a[e]:a):(i=!!i||!!e.relative,null!=e.a?a=new s.Matrix(e):null!=e.rotation?(x(e,r),a=new s.Rotate(e.rotation,e.cx,e.cy)):null!=e.scale||null!=e.scaleX||null!=e.scaleY?(x(e,r),e.scaleX=null!=e.scale?e.scale:null!=e.scaleX?e.scaleX:1,e.scaleY=null!=e.scale?e.scale:null!=e.scaleY?e.scaleY:1,a=new s.Scale(e.scaleX,e.scaleY,e.cx,e.cy)):null!=e.skewX||null!=e.skewY?(x(e,r),e.skewX=null!=e.skewX?e.skewX:0,e.skewY=null!=e.skewY?e.skewY:0,a=new s.Skew(e.skewX,e.skewY,e.cx,e.cy)):e.flip?("x"==e.flip||"y"==e.flip?e.offset=null==e.offset?r.bbox()["c"+e.flip]:e.offset:null==e.offset?(n=r.bbox(),e.flip=n.cx,e.offset=n.cy):e.flip=e.offset,a=(new s.Matrix).flip(e.flip,e.offset)):null==e.x&&null==e.y||(a=new s.Translate(e.x,e.y)),a?(a.relative=i,this.last().transforms.push(a),this._callStart()):this)}}),s.extend(s.Element,{untransform:function(){return this.attr("transform",null)},matrixify:function(){return(this.attr("transform")||"").split(s.regex.transforms).slice(0,-1).map(function(t){var e=t.trim().split("(");return[e[0],e[1].split(s.regex.delimiter).map(function(t){return parseFloat(t)})]}).reduce(function(t,e){return"matrix"==e[0]?t.multiply(p(e[1])):t[e[0]].apply(t,e[1])},new s.Matrix)},toParent:function(t){if(this==t)return this;var e=this.screenCTM(),i=t.screenCTM().inverse();return this.addTo(t).untransform().transform(i.multiply(e)),this},toDoc:function(){return this.toParent(this.doc())}}),s.Transformation=s.invent({create:function(e,i){if(arguments.length>1&&"boolean"!=typeof i)return this.constructor.call(this,[].slice.call(arguments));if(Array.isArray(e))for(var s=0,a=this.arguments.length;s=0},index:function(t){return[].slice.call(this.node.childNodes).indexOf(t.node)},get:function(t){return s.adopt(this.node.childNodes[t])},first:function(){return this.get(0)},last:function(){return this.get(this.node.childNodes.length-1)},each:function(t,e){var i,a,n=this.children();for(i=0,a=n.length;in/r?this.height/r:this.width/n,this.x=i,this.y=a,this.width=n,this.height=r)}else e="string"==typeof e?e.match(u).map(function(t){return parseFloat(t)}):Array.isArray(e)?e:"object"===t(e)?[e.x,e.y,e.width,e.height]:4==arguments.length?[].slice.call(arguments):[0,0,0,0],this.x=e[0],this.y=e[1],this.width=e[2],this.height=e[3]},extend:{toString:function(){return this.x+" "+this.y+" "+this.width+" "+this.height},morph:function(t,e,i,a){return this.destination=new s.ViewBox(t,e,i,a),this},at:function(t){return this.destination?new s.ViewBox([this.x+(this.destination.x-this.x)*t,this.y+(this.destination.y-this.y)*t,this.width+(this.destination.width-this.width)*t,this.height+(this.destination.height-this.height)*t]):this}},parent:s.Container,construct:{viewbox:function(t,e,i,a){return 0==arguments.length?new s.ViewBox(this):this.attr("viewBox",new s.ViewBox(t,e,i,a))}}}),["click","dblclick","mousedown","mouseup","mouseover","mouseout","mousemove","touchstart","touchmove","touchleave","touchend","touchcancel"].forEach(function(t){s.Element.prototype[t]=function(e){return s.on(this.node,t,e),this}}),s.listeners=[],s.handlerMap=[],s.listenerId=0,s.on=function(t,e,i,a,n){var r=i.bind(a||t.instance||t),o=(s.handlerMap.indexOf(t)+1||s.handlerMap.push(t))-1,l=e.split(".")[0],h=e.split(".")[1]||"*";s.listeners[o]=s.listeners[o]||{},s.listeners[o][l]=s.listeners[o][l]||{},s.listeners[o][l][h]=s.listeners[o][l][h]||{},i._svgjsListenerId||(i._svgjsListenerId=++s.listenerId),s.listeners[o][l][h][i._svgjsListenerId]=r,t.addEventListener(l,r,n||!1)},s.off=function(t,e,i){var a=s.handlerMap.indexOf(t),n=e&&e.split(".")[0],r=e&&e.split(".")[1],o="";if(-1!=a)if(i){if("function"==typeof i&&(i=i._svgjsListenerId),!i)return;s.listeners[a][n]&&s.listeners[a][n][r||"*"]&&(t.removeEventListener(n,s.listeners[a][n][r||"*"][i],!1),delete s.listeners[a][n][r||"*"][i])}else if(r&&n){if(s.listeners[a][n]&&s.listeners[a][n][r]){for(i in s.listeners[a][n][r])s.off(t,[n,r].join("."),i);delete s.listeners[a][n][r]}}else if(r)for(e in s.listeners[a])for(o in s.listeners[a][e])r===o&&s.off(t,[e,r].join("."));else if(n){if(s.listeners[a][n]){for(o in s.listeners[a][n])s.off(t,[n,o].join("."));delete s.listeners[a][n]}}else{for(e in s.listeners[a])s.off(t,e);delete s.listeners[a],delete s.handlerMap[a]}},s.extend(s.Element,{on:function(t,e,i,a){return s.on(this.node,t,e,i,a),this},off:function(t,e){return s.off(this.node,t,e),this},fire:function(t,i){return t instanceof e.Event?this.node.dispatchEvent(t):this.node.dispatchEvent(t=new s.CustomEvent(t,{detail:i,cancelable:!0})),this._event=t,this},event:function(){return this._event}}),s.Defs=s.invent({create:"defs",inherit:s.Container}),s.G=s.invent({create:"g",inherit:s.Container,extend:{x:function(t){return null==t?this.transform("x"):this.transform({x:t-this.x()},!0)},y:function(t){return null==t?this.transform("y"):this.transform({y:t-this.y()},!0)},cx:function(t){return null==t?this.gbox().cx:this.x(t-this.gbox().width/2)},cy:function(t){return null==t?this.gbox().cy:this.y(t-this.gbox().height/2)},gbox:function(){var t=this.bbox(),e=this.transform();return t.x+=e.x,t.x2+=e.x,t.cx+=e.x,t.y+=e.y,t.y2+=e.y,t.cy+=e.y,t}},construct:{group:function(){return this.put(new s.G)}}}),s.Doc=s.invent({create:function(t){t&&("svg"==(t="string"==typeof t?i.getElementById(t):t).nodeName?this.constructor.call(this,t):(this.constructor.call(this,s.create("svg")),t.appendChild(this.node),this.size("100%","100%")),this.namespace().defs())},inherit:s.Container,extend:{namespace:function(){return this.attr({xmlns:s.ns,version:"1.1"}).attr("xmlns:xlink",s.xlink,s.xmlns).attr("xmlns:svgjs",s.svgjs,s.xmlns)},defs:function(){var t;this._defs||((t=this.node.getElementsByTagName("defs")[0])?this._defs=s.adopt(t):this._defs=new s.Defs,this.node.appendChild(this._defs.node));return this._defs},parent:function(){return this.node.parentNode&&"#document"!=this.node.parentNode.nodeName?this.node.parentNode:null},spof:function(){var t=this.node.getScreenCTM();return t&&this.style("left",-t.e%1+"px").style("top",-t.f%1+"px"),this},remove:function(){return this.parent()&&this.parent().removeChild(this.node),this},clear:function(){for(;this.node.hasChildNodes();)this.node.removeChild(this.node.lastChild);return delete this._defs,s.parser.draw&&!s.parser.draw.parentNode&&this.node.appendChild(s.parser.draw),this},clone:function(t){this.writeDataToDom();var e=this.node,i=b(e.cloneNode(!0));return t?(t.node||t).appendChild(i.node):e.parentNode.insertBefore(i.node,e.nextSibling),i}}}),s.extend(s.Element,{siblings:function(){return this.parent().children()},position:function(){return this.parent().index(this)},next:function(){return this.siblings()[this.position()+1]},previous:function(){return this.siblings()[this.position()-1]},forward:function(){var t=this.position()+1,e=this.parent();return e.removeElement(this).add(this,t),e instanceof s.Doc&&e.node.appendChild(e.defs().node),this},backward:function(){var t=this.position();return t>0&&this.parent().removeElement(this).add(this,t-1),this},front:function(){var t=this.parent();return t.node.appendChild(this.node),t instanceof s.Doc&&t.node.appendChild(t.defs().node),this},back:function(){return this.position()>0&&this.parent().removeElement(this).add(this,0),this},before:function(t){t.remove();var e=this.position();return this.parent().add(t,e),this},after:function(t){t.remove();var e=this.position();return this.parent().add(t,e+1),this}}),s.Mask=s.invent({create:function(){this.constructor.call(this,s.create("mask")),this.targets=[]},inherit:s.Container,extend:{remove:function(){for(var t=this.targets.length-1;t>=0;t--)this.targets[t]&&this.targets[t].unmask();return this.targets=[],s.Element.prototype.remove.call(this),this}},construct:{mask:function(){return this.defs().put(new s.Mask)}}}),s.extend(s.Element,{maskWith:function(t){return this.masker=t instanceof s.Mask?t:this.parent().mask().add(t),this.masker.targets.push(this),this.attr("mask",'url("#'+this.masker.attr("id")+'")')},unmask:function(){return delete this.masker,this.attr("mask",null)}}),s.ClipPath=s.invent({create:function(){this.constructor.call(this,s.create("clipPath")),this.targets=[]},inherit:s.Container,extend:{remove:function(){for(var t=this.targets.length-1;t>=0;t--)this.targets[t]&&this.targets[t].unclip();return this.targets=[],this.parent().removeElement(this),this}},construct:{clip:function(){return this.defs().put(new s.ClipPath)}}}),s.extend(s.Element,{clipWith:function(t){return this.clipper=t instanceof s.ClipPath?t:this.parent().clip().add(t),this.clipper.targets.push(this),this.attr("clip-path",'url("#'+this.clipper.attr("id")+'")')},unclip:function(){return delete this.clipper,this.attr("clip-path",null)}}),s.Gradient=s.invent({create:function(t){this.constructor.call(this,s.create(t+"Gradient")),this.type=t},inherit:s.Container,extend:{at:function(t,e,i){return this.put(new s.Stop).update(t,e,i)},update:function(t){return this.clear(),"function"==typeof t&&t.call(this,this),this},fill:function(){return"url(#"+this.id()+")"},toString:function(){return this.fill()},attr:function(t,e,i){return"transform"==t&&(t="gradientTransform"),s.Container.prototype.attr.call(this,t,e,i)}},construct:{gradient:function(t,e){return this.defs().gradient(t,e)}}}),s.extend(s.Gradient,s.FX,{from:function(t,e){return"radial"==(this._target||this).type?this.attr({fx:new s.Number(t),fy:new s.Number(e)}):this.attr({x1:new s.Number(t),y1:new s.Number(e)})},to:function(t,e){return"radial"==(this._target||this).type?this.attr({cx:new s.Number(t),cy:new s.Number(e)}):this.attr({x2:new s.Number(t),y2:new s.Number(e)})}}),s.extend(s.Defs,{gradient:function(t,e){return this.put(new s.Gradient(t)).update(e)}}),s.Stop=s.invent({create:"stop",inherit:s.Element,extend:{update:function(t){return("number"==typeof t||t instanceof s.Number)&&(t={offset:arguments[0],color:arguments[1],opacity:arguments[2]}),null!=t.opacity&&this.attr("stop-opacity",t.opacity),null!=t.color&&this.attr("stop-color",t.color),null!=t.offset&&this.attr("offset",new s.Number(t.offset)),this}}}),s.Pattern=s.invent({create:"pattern",inherit:s.Container,extend:{fill:function(){return"url(#"+this.id()+")"},update:function(t){return this.clear(),"function"==typeof t&&t.call(this,this),this},toString:function(){return this.fill()},attr:function(t,e,i){return"transform"==t&&(t="patternTransform"),s.Container.prototype.attr.call(this,t,e,i)}},construct:{pattern:function(t,e,i){return this.defs().pattern(t,e,i)}}}),s.extend(s.Defs,{pattern:function(t,e,i){return this.put(new s.Pattern).update(i).attr({x:0,y:0,width:t,height:e,patternUnits:"userSpaceOnUse"})}}),s.Shape=s.invent({create:function(t){this.constructor.call(this,t)},inherit:s.Element}),s.Bare=s.invent({create:function(t,e){if(this.constructor.call(this,s.create(t)),e)for(var i in e.prototype)"function"==typeof e.prototype[i]&&(this[i]=e.prototype[i])},inherit:s.Element,extend:{words:function(t){for(;this.node.hasChildNodes();)this.node.removeChild(this.node.lastChild);return this.node.appendChild(i.createTextNode(t)),this}}}),s.extend(s.Parent,{element:function(t,e){return this.put(new s.Bare(t,e))}}),s.Symbol=s.invent({create:"symbol",inherit:s.Container,construct:{symbol:function(){return this.put(new s.Symbol)}}}),s.Use=s.invent({create:"use",inherit:s.Shape,extend:{element:function(t,e){return this.attr("href",(e||"")+"#"+t,s.xlink)}},construct:{use:function(t,e){return this.put(new s.Use).element(t,e)}}}),s.Rect=s.invent({create:"rect",inherit:s.Shape,construct:{rect:function(t,e){return this.put(new s.Rect).size(t,e)}}}),s.Circle=s.invent({create:"circle",inherit:s.Shape,construct:{circle:function(t){return this.put(new s.Circle).rx(new s.Number(t).divide(2)).move(0,0)}}}),s.extend(s.Circle,s.FX,{rx:function(t){return this.attr("r",t)},ry:function(t){return this.rx(t)}}),s.Ellipse=s.invent({create:"ellipse",inherit:s.Shape,construct:{ellipse:function(t,e){return this.put(new s.Ellipse).size(t,e).move(0,0)}}}),s.extend(s.Ellipse,s.Rect,s.FX,{rx:function(t){return this.attr("rx",t)},ry:function(t){return this.attr("ry",t)}}),s.extend(s.Circle,s.Ellipse,{x:function(t){return null==t?this.cx()-this.rx():this.cx(t+this.rx())},y:function(t){return null==t?this.cy()-this.ry():this.cy(t+this.ry())},cx:function(t){return null==t?this.attr("cx"):this.attr("cx",t)},cy:function(t){return null==t?this.attr("cy"):this.attr("cy",t)},width:function(t){return null==t?2*this.rx():this.rx(new s.Number(t).divide(2))},height:function(t){return null==t?2*this.ry():this.ry(new s.Number(t).divide(2))},size:function(t,e){var i=g(this,t,e);return this.rx(new s.Number(i.width).divide(2)).ry(new s.Number(i.height).divide(2))}}),s.Line=s.invent({create:"line",inherit:s.Shape,extend:{array:function(){return new s.PointArray([[this.attr("x1"),this.attr("y1")],[this.attr("x2"),this.attr("y2")]])},plot:function(t,e,i,a){return null==t?this.array():(t=void 0!==e?{x1:t,y1:e,x2:i,y2:a}:new s.PointArray(t).toLine(),this.attr(t))},move:function(t,e){return this.attr(this.array().move(t,e).toLine())},size:function(t,e){var i=g(this,t,e);return this.attr(this.array().size(i.width,i.height).toLine())}},construct:{line:function(t,e,i,a){return s.Line.prototype.plot.apply(this.put(new s.Line),null!=t?[t,e,i,a]:[0,0,0,0])}}}),s.Polyline=s.invent({create:"polyline",inherit:s.Shape,construct:{polyline:function(t){return this.put(new s.Polyline).plot(t||new s.PointArray)}}}),s.Polygon=s.invent({create:"polygon",inherit:s.Shape,construct:{polygon:function(t){return this.put(new s.Polygon).plot(t||new s.PointArray)}}}),s.extend(s.Polyline,s.Polygon,{array:function(){return this._array||(this._array=new s.PointArray(this.attr("points")))},plot:function(t){return null==t?this.array():this.clear().attr("points","string"==typeof t?t:this._array=new s.PointArray(t))},clear:function(){return delete this._array,this},move:function(t,e){return this.attr("points",this.array().move(t,e))},size:function(t,e){var i=g(this,t,e);return this.attr("points",this.array().size(i.width,i.height))}}),s.extend(s.Line,s.Polyline,s.Polygon,{morphArray:s.PointArray,x:function(t){return null==t?this.bbox().x:this.move(t,this.bbox().y)},y:function(t){return null==t?this.bbox().y:this.move(this.bbox().x,t)},width:function(t){var e=this.bbox();return null==t?e.width:this.size(t,e.height)},height:function(t){var e=this.bbox();return null==t?e.height:this.size(e.width,t)}}),s.Path=s.invent({create:"path",inherit:s.Shape,extend:{morphArray:s.PathArray,array:function(){return this._array||(this._array=new s.PathArray(this.attr("d")))},plot:function(t){return null==t?this.array():this.clear().attr("d","string"==typeof t?t:this._array=new s.PathArray(t))},clear:function(){return delete this._array,this},move:function(t,e){return this.attr("d",this.array().move(t,e))},x:function(t){return null==t?this.bbox().x:this.move(t,this.bbox().y)},y:function(t){return null==t?this.bbox().y:this.move(this.bbox().x,t)},size:function(t,e){var i=g(this,t,e);return this.attr("d",this.array().size(i.width,i.height))},width:function(t){return null==t?this.bbox().width:this.size(t,this.bbox().height)},height:function(t){return null==t?this.bbox().height:this.size(this.bbox().width,t)}},construct:{path:function(t){return this.put(new s.Path).plot(t||new s.PathArray)}}}),s.Image=s.invent({create:"image",inherit:s.Shape,extend:{load:function(t){if(!t)return this;var i=this,a=new e.Image;return s.on(a,"load",function(){s.off(a);var e=i.parent(s.Pattern);null!==e&&(0==i.width()&&0==i.height()&&i.size(a.width,a.height),e&&0==e.width()&&0==e.height()&&e.size(i.width(),i.height()),"function"==typeof i._loaded&&i._loaded.call(i,{width:a.width,height:a.height,ratio:a.width/a.height,url:t}))}),s.on(a,"error",function(t){s.off(a),"function"==typeof i._error&&i._error.call(i,t)}),this.attr("href",a.src=this.src=t,s.xlink)},loaded:function(t){return this._loaded=t,this},error:function(t){return this._error=t,this}},construct:{image:function(t,e,i){return this.put(new s.Image).load(t).size(e||0,i||e||0)}}}),s.Text=s.invent({create:function(){this.constructor.call(this,s.create("text")),this.dom.leading=new s.Number(1.3),this._rebuild=!0,this._build=!1,this.attr("font-family",s.defaults.attrs["font-family"])},inherit:s.Shape,extend:{x:function(t){return null==t?this.attr("x"):this.attr("x",t)},y:function(t){var e=this.attr("y"),i="number"==typeof e?e-this.bbox().y:0;return null==t?"number"==typeof e?e-i:e:this.attr("y","number"==typeof t.valueOf()?t+i:t)},cx:function(t){return null==t?this.bbox().cx:this.x(t-this.bbox().width/2)},cy:function(t){return null==t?this.bbox().cy:this.y(t-this.bbox().height/2)},text:function(t){if(void 0===t){t="";for(var e=this.node.childNodes,i=0,a=e.length;i=0;i--)t.childNodes[i]instanceof e.SVGElement&&b(t.childNodes[i]);return s.adopt(t).id(s.eid(t.nodeName))}function m(t){return null==t.x&&(t.x=0,t.y=0,t.width=0,t.height=0),t.w=t.width,t.h=t.height,t.x2=t.x+t.width,t.y2=t.y+t.height,t.cx=t.x+t.width/2,t.cy=t.y+t.height/2,t}function v(t){return Math.abs(t)>1e-37?t:0}["fill","stroke"].forEach(function(t){var e,i={};i[t]=function(i){if(void 0===i)return this;if("string"==typeof i||s.Color.isRgb(i)||i&&"function"==typeof i.fill)this.attr(t,i);else for(e=l[t].length-1;e>=0;e--)null!=i[l[t][e]]&&this.attr(l.prefix(t,l[t][e]),i[l[t][e]]);return this},s.extend(s.Element,s.FX,i)}),s.extend(s.Element,s.FX,{rotate:function(t,e,i){return this.transform({rotation:t,cx:e,cy:i})},skew:function(t,e,i,s){return 1==arguments.length||3==arguments.length?this.transform({skew:t,cx:e,cy:i}):this.transform({skewX:t,skewY:e,cx:i,cy:s})},scale:function(t,e,i,s){return 1==arguments.length||3==arguments.length?this.transform({scale:t,cx:e,cy:i}):this.transform({scaleX:t,scaleY:e,cx:i,cy:s})},translate:function(t,e){return this.transform({x:t,y:e})},flip:function(t,e){return e="number"==typeof t?t:e,this.transform({flip:t||"both",offset:e})},matrix:function(t){return this.attr("transform",new s.Matrix(6==arguments.length?[].slice.call(arguments):t))},opacity:function(t){return this.attr("opacity",t)},dx:function(t){return this.x(new s.Number(t).plus(this instanceof s.FX?0:this.x()),!0)},dy:function(t){return this.y(new s.Number(t).plus(this instanceof s.FX?0:this.y()),!0)},dmove:function(t,e){return this.dx(t).dy(e)}}),s.extend(s.Rect,s.Ellipse,s.Circle,s.Gradient,s.FX,{radius:function(t,e){var i=(this._target||this).type;return"radial"==i||"circle"==i?this.attr("r",new s.Number(t)):this.rx(t).ry(null==e?t:e)}}),s.extend(s.Path,{length:function(){return this.node.getTotalLength()},pointAt:function(t){return this.node.getPointAtLength(t)}}),s.extend(s.Parent,s.Text,s.Tspan,s.FX,{font:function(e,i){if("object"===t(e))for(i in e)this.font(i,e[i]);return"leading"==e?this.leading(i):"anchor"==e?this.attr("text-anchor",i):"size"==e||"family"==e||"weight"==e||"stretch"==e||"variant"==e||"style"==e?this.attr("font-"+e,i):this.attr(e,i)}}),s.Set=s.invent({create:function(t){Array.isArray(t)?this.members=t:this.clear()},extend:{add:function(){var t,e,i=[].slice.call(arguments);for(t=0,e=i.length;t-1&&this.members.splice(e,1),this},each:function(t){for(var e=0,i=this.members.length;e=0},index:function(t){return this.members.indexOf(t)},get:function(t){return this.members[t]},first:function(){return this.get(0)},last:function(){return this.get(this.members.length-1)},valueOf:function(){return this.members},bbox:function(){if(0==this.members.length)return new s.RBox;var t=this.members[0].rbox(this.members[0].doc());return this.each(function(){t=t.merge(this.rbox(this.doc()))}),t}},construct:{set:function(t){return new s.Set(t)}}}),s.FX.Set=s.invent({create:function(t){this.set=t}}),s.Set.inherit=function(){var t=[];for(var e in s.Shape.prototype)"function"==typeof s.Shape.prototype[e]&&"function"!=typeof s.Set.prototype[e]&&t.push(e);for(var e in t.forEach(function(t){s.Set.prototype[t]=function(){for(var e=0,i=this.members.length;e=0;t--)delete this.memory()[arguments[t]];return this},memory:function(){return this._memory||(this._memory={})}}),s.get=function(t){var e=i.getElementById(function(t){var e=(t||"").toString().match(s.regex.reference);if(e)return e[1]}(t)||t);return s.adopt(e)},s.select=function(t,e){return new s.Set(s.utils.map((e||i).querySelectorAll(t),function(t){return s.adopt(t)}))},s.extend(s.Parent,{select:function(t){return s.select(t,this.node)}});var y="abcdef".split("");if("function"!=typeof e.CustomEvent){var w=function(t,e){e=e||{bubbles:!1,cancelable:!1,detail:void 0};var s=i.createEvent("CustomEvent");return s.initCustomEvent(t,e.bubbles,e.cancelable,e.detail),s};w.prototype=e.Event.prototype,s.CustomEvent=w}else s.CustomEvent=e.CustomEvent;return function(t){for(var i=0,s=["moz","webkit"],a=0;a1&&(s=Math.sqrt(s),P*=s,M*=s);a=(new SVG.Matrix).rotate(E).scale(1/P,1/M).rotate(-E),F=F.transform(a),R=R.transform(a),n=[R.x-F.x,R.y-F.y],o=n[0]*n[0]+n[1]*n[1],r=Math.sqrt(o),n[0]/=r,n[1]/=r,l=o<4?Math.sqrt(1-o/4):0,T===X&&(l*=-1);h=new SVG.Point((R.x+F.x)/2+l*-n[1],(R.y+F.y)/2+l*n[0]),c=new SVG.Point(F.x-h.x,F.y-h.y),d=new SVG.Point(R.x-h.x,R.y-h.y),u=Math.acos(c.x/Math.sqrt(c.x*c.x+c.y*c.y)),c.y<0&&(u*=-1);g=Math.acos(d.x/Math.sqrt(d.x*d.x+d.y*d.y)),d.y<0&&(g*=-1);X&&u>g&&(g+=2*Math.PI);!X&&un.maxX-e.width&&(r=(s=n.maxX-e.width)-this.startPoints.box.x),null!=n.minY&&an.maxY-e.height&&(o=(a=n.maxY-e.height)-this.startPoints.box.y),null!=n.snapToGrid&&(s-=s%n.snapToGrid,a-=a%n.snapToGrid,r-=r%n.snapToGrid,o-=o%n.snapToGrid),this.el instanceof SVG.G?this.el.matrix(this.startPoints.transform).transform({x:r,y:o},!0):this.el.move(s,a));return i},t.prototype.end=function(t){var e=this.drag(t);this.el.fire("dragend",{event:t,p:e,m:this.m,handler:this}),SVG.off(window,"mousemove.drag"),SVG.off(window,"touchmove.drag"),SVG.off(window,"mouseup.drag"),SVG.off(window,"touchend.drag")},SVG.extend(SVG.Element,{draggable:function(e,i){"function"!=typeof e&&"object"!=typeof e||(i=e,e=!0);var s=this.remember("_draggable")||new t(this);return(e=void 0===e||e)?s.init(i||{},e):(this.off("mousedown.drag"),this.off("touchstart.drag")),this}})}.call(void 0),function(){function t(t){this.el=t,t.remember("_selectHandler",this),this.pointSelection={isSelected:!1},this.rectSelection={isSelected:!1}}t.prototype.init=function(t,e){var i=this.el.bbox();for(var s in this.options={},this.el.selectize.defaults)this.options[s]=this.el.selectize.defaults[s],void 0!==e[s]&&(this.options[s]=e[s]);this.parent=this.el.parent(),this.nested=this.nested||this.parent.group(),this.nested.matrix(new SVG.Matrix(this.el).translate(i.x,i.y)),this.options.deepSelect&&-1!==["line","polyline","polygon"].indexOf(this.el.type)?this.selectPoints(t):this.selectRect(t),this.observe(),this.cleanup()},t.prototype.selectPoints=function(t){return this.pointSelection.isSelected=t,this.pointSelection.set?this:(this.pointSelection.set=this.parent.set(),this.drawCircles(),this)},t.prototype.getPointArray=function(){var t=this.el.bbox();return this.el.array().valueOf().map(function(e){return[e[0]-t.x,e[1]-t.y]})},t.prototype.drawCircles=function(){for(var t=this,e=this.getPointArray(),i=0,s=e.length;i0&&this.parameters.box.height-i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x+i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-i[0]);i=this.checkAspectRatio(i),this.el.move(this.parameters.box.x+i[0],this.parameters.box.y+i[1]).size(this.parameters.box.width-i[0],this.parameters.box.height-i[1])}};break;case"rt":this.calc=function(t,e){var i=this.snapToGrid(t,e,2);if(this.parameters.box.width+i[0]>0&&this.parameters.box.height-i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x-i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+i[0]);i=this.checkAspectRatio(i,!0),this.el.move(this.parameters.box.x,this.parameters.box.y+i[1]).size(this.parameters.box.width+i[0],this.parameters.box.height-i[1])}};break;case"rb":this.calc=function(t,e){var i=this.snapToGrid(t,e,0);if(this.parameters.box.width+i[0]>0&&this.parameters.box.height+i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x-i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+i[0]);i=this.checkAspectRatio(i),this.el.move(this.parameters.box.x,this.parameters.box.y).size(this.parameters.box.width+i[0],this.parameters.box.height+i[1])}};break;case"lb":this.calc=function(t,e){var i=this.snapToGrid(t,e,1);if(this.parameters.box.width-i[0]>0&&this.parameters.box.height+i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x+i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-i[0]);i=this.checkAspectRatio(i,!0),this.el.move(this.parameters.box.x+i[0],this.parameters.box.y).size(this.parameters.box.width-i[0],this.parameters.box.height+i[1])}};break;case"t":this.calc=function(t,e){var i=this.snapToGrid(t,e,2);if(this.parameters.box.height-i[1]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x,this.parameters.box.y+i[1]).height(this.parameters.box.height-i[1])}};break;case"r":this.calc=function(t,e){var i=this.snapToGrid(t,e,0);if(this.parameters.box.width+i[0]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x,this.parameters.box.y).width(this.parameters.box.width+i[0])}};break;case"b":this.calc=function(t,e){var i=this.snapToGrid(t,e,0);if(this.parameters.box.height+i[1]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x,this.parameters.box.y).height(this.parameters.box.height+i[1])}};break;case"l":this.calc=function(t,e){var i=this.snapToGrid(t,e,1);if(this.parameters.box.width-i[0]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x+i[0],this.parameters.box.y).width(this.parameters.box.width-i[0])}};break;case"rot":this.calc=function(t,e){var i=t+this.parameters.p.x,s=e+this.parameters.p.y,a=Math.atan2(this.parameters.p.y-this.parameters.box.y-this.parameters.box.height/2,this.parameters.p.x-this.parameters.box.x-this.parameters.box.width/2),n=Math.atan2(s-this.parameters.box.y-this.parameters.box.height/2,i-this.parameters.box.x-this.parameters.box.width/2),r=this.parameters.rotation+180*(n-a)/Math.PI+this.options.snapToAngle/2;this.el.center(this.parameters.box.cx,this.parameters.box.cy).rotate(r-r%this.options.snapToAngle,this.parameters.box.cx,this.parameters.box.cy)};break;case"point":this.calc=function(t,e){var i=this.snapToGrid(t,e,this.parameters.pointCoords[0],this.parameters.pointCoords[1]),s=this.el.array().valueOf();s[this.parameters.i][0]=this.parameters.pointCoords[0]+i[0],s[this.parameters.i][1]=this.parameters.pointCoords[1]+i[1],this.el.plot(s)}}this.el.fire("resizestart",{dx:this.parameters.x,dy:this.parameters.y,event:t}),SVG.on(window,"touchmove.resize",function(t){e.update(t||window.event)}),SVG.on(window,"touchend.resize",function(){e.done()}),SVG.on(window,"mousemove.resize",function(t){e.update(t||window.event)}),SVG.on(window,"mouseup.resize",function(){e.done()})},t.prototype.update=function(t){if(t){var e=this._extractPosition(t),i=this.transformPoint(e.x,e.y),s=i.x-this.parameters.p.x,a=i.y-this.parameters.p.y;this.lastUpdateCall=[s,a],this.calc(s,a),this.el.fire("resizing",{dx:s,dy:a,event:t})}else this.lastUpdateCall&&this.calc(this.lastUpdateCall[0],this.lastUpdateCall[1])},t.prototype.done=function(){this.lastUpdateCall=null,SVG.off(window,"mousemove.resize"),SVG.off(window,"mouseup.resize"),SVG.off(window,"touchmove.resize"),SVG.off(window,"touchend.resize"),this.el.fire("resizedone")},t.prototype.snapToGrid=function(t,e,i,s){var a;return void 0!==s?a=[(i+t)%this.options.snapToGrid,(s+e)%this.options.snapToGrid]:(i=null==i?3:i,a=[(this.parameters.box.x+t+(1&i?0:this.parameters.box.width))%this.options.snapToGrid,(this.parameters.box.y+e+(2&i?0:this.parameters.box.height))%this.options.snapToGrid]),t<0&&(a[0]-=this.options.snapToGrid),e<0&&(a[1]-=this.options.snapToGrid),t-=Math.abs(a[0])r.maxX&&(t=r.maxX-a),void 0!==r.minY&&n+er.maxY&&(e=r.maxY-n),[t,e]},t.prototype.checkAspectRatio=function(t,e){if(!this.options.saveAspectRatio)return t;var i=t.slice(),s=this.parameters.box.width/this.parameters.box.height,a=this.parameters.box.width+t[0],n=this.parameters.box.height-t[1],r=a/n;return rs&&(i[0]=this.parameters.box.width-n*s,e&&(i[0]=-i[0])),i},SVG.extend(SVG.Element,{resize:function(e){return(this.remember("_resizeHandler")||new t(this)).init(e||{}),this}}),SVG.Element.prototype.resize.defaults={snapToAngle:.1,snapToGrid:1,constraint:{},saveAspectRatio:!1}}).call(this)}();return function(t,e){void 0===e&&(e={});var i=e.insertAt;if(t&&"undefined"!=typeof document){var s=document.head||document.getElementsByTagName("head")[0],a=document.createElement("style");a.type="text/css","top"===i&&s.firstChild?s.insertBefore(a,s.firstChild):s.appendChild(a),a.styleSheet?a.styleSheet.cssText=t:a.appendChild(document.createTextNode(t))}}('.apexcharts-canvas {\n position: relative;\n user-select: none;\n /* cannot give overflow: hidden as it will crop tooltips which overflow outside chart area */\n}\n\n/* scrollbar is not visible by default for legend, hence forcing the visibility */\n.apexcharts-canvas ::-webkit-scrollbar {\n -webkit-appearance: none;\n width: 6px;\n}\n.apexcharts-canvas ::-webkit-scrollbar-thumb {\n border-radius: 4px;\n background-color: rgba(0,0,0,.5);\n box-shadow: 0 0 1px rgba(255,255,255,.5);\n -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);\n}\n.apexcharts-canvas.dark {\n background: #343F57;\n}\n\n.apexcharts-inner {\n position: relative;\n}\n\n.legend-mouseover-inactive {\n transition: 0.15s ease all;\n opacity: 0.20;\n}\n\n.apexcharts-series-collapsed {\n opacity: 0;\n}\n\n.apexcharts-gridline, .apexcharts-text {\n pointer-events: none;\n}\n\n.apexcharts-tooltip {\n border-radius: 5px;\n box-shadow: 2px 2px 6px -4px #999;\n cursor: default;\n font-size: 14px;\n left: 62px;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n top: 20px;\n overflow: hidden;\n white-space: nowrap;\n z-index: 12;\n transition: 0.15s ease all;\n}\n.apexcharts-tooltip.light {\n border: 1px solid #e3e3e3;\n background: rgba(255, 255, 255, 0.96);\n}\n.apexcharts-tooltip.dark {\n color: #fff;\n background: rgba(30,30,30, 0.8);\n}\n.apexcharts-tooltip * {\n font-family: inherit;\n}\n\n.apexcharts-tooltip .apexcharts-marker,\n.apexcharts-area-series .apexcharts-area,\n.apexcharts-line {\n pointer-events: none;\n}\n\n.apexcharts-tooltip.active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-tooltip-title {\n padding: 6px;\n font-size: 15px;\n margin-bottom: 4px;\n}\n.apexcharts-tooltip.light .apexcharts-tooltip-title {\n background: #ECEFF1;\n border-bottom: 1px solid #ddd;\n}\n.apexcharts-tooltip.dark .apexcharts-tooltip-title {\n background: rgba(0, 0, 0, 0.7);\n border-bottom: 1px solid #333;\n}\n\n.apexcharts-tooltip-text-value,\n.apexcharts-tooltip-text-z-value {\n display: inline-block;\n font-weight: 600;\n margin-left: 5px;\n}\n\n.apexcharts-tooltip-text-z-label:empty,\n.apexcharts-tooltip-text-z-value:empty {\n display: none;\n}\n\n.apexcharts-tooltip-text-value, \n.apexcharts-tooltip-text-z-value {\n font-weight: 600;\n}\n\n.apexcharts-tooltip-marker {\n width: 12px;\n height: 12px;\n position: relative;\n top: 0px;\n margin-right: 10px;\n border-radius: 50%;\n}\n\n.apexcharts-tooltip-series-group {\n padding: 0 10px;\n display: none;\n text-align: left;\n justify-content: left;\n align-items: center;\n}\n\n.apexcharts-tooltip-series-group.active .apexcharts-tooltip-marker {\n opacity: 1;\n}\n.apexcharts-tooltip-series-group.active, .apexcharts-tooltip-series-group:last-child {\n padding-bottom: 4px;\n}\n.apexcharts-tooltip-series-group-hidden {\n opacity: 0;\n height: 0;\n line-height: 0;\n padding: 0 !important;\n}\n.apexcharts-tooltip-y-group {\n padding: 6px 0 5px;\n}\n.apexcharts-tooltip-candlestick {\n padding: 4px 8px;\n}\n.apexcharts-tooltip-candlestick > div {\n margin: 4px 0;\n}\n.apexcharts-tooltip-candlestick span.value {\n font-weight: bold;\n}\n\n.apexcharts-tooltip-rangebar {\n padding: 5px 8px;\n}\n\n.apexcharts-tooltip-rangebar .category {\n font-weight: 600;\n color: #777;\n}\n\n.apexcharts-tooltip-rangebar .series-name {\n font-weight: bold;\n display: block;\n margin-bottom: 5px;\n}\n\n.apexcharts-xaxistooltip {\n opacity: 0;\n padding: 9px 10px;\n pointer-events: none;\n color: #373d3f;\n font-size: 13px;\n text-align: center;\n border-radius: 2px;\n position: absolute;\n z-index: 10;\n\tbackground: #ECEFF1;\n border: 1px solid #90A4AE;\n transition: 0.15s ease all;\n}\n\n.apexcharts-xaxistooltip.dark {\n background: rgba(0, 0, 0, 0.7);\n border: 1px solid rgba(0, 0, 0, 0.5);\n color: #fff;\n}\n\n.apexcharts-xaxistooltip:after, .apexcharts-xaxistooltip:before {\n\tleft: 50%;\n\tborder: solid transparent;\n\tcontent: " ";\n\theight: 0;\n\twidth: 0;\n\tposition: absolute;\n\tpointer-events: none;\n}\n\n.apexcharts-xaxistooltip:after {\n\tborder-color: rgba(236, 239, 241, 0);\n\tborder-width: 6px;\n\tmargin-left: -6px;\n}\n.apexcharts-xaxistooltip:before {\n\tborder-color: rgba(144, 164, 174, 0);\n\tborder-width: 7px;\n\tmargin-left: -7px;\n}\n\n.apexcharts-xaxistooltip-bottom:after, .apexcharts-xaxistooltip-bottom:before {\n bottom: 100%;\n}\n\n.apexcharts-xaxistooltip-top:after, .apexcharts-xaxistooltip-top:before {\n top: 100%;\n}\n\n.apexcharts-xaxistooltip-bottom:after {\n border-bottom-color: #ECEFF1;\n}\n.apexcharts-xaxistooltip-bottom:before {\n border-bottom-color: #90A4AE;\n}\n\n.apexcharts-xaxistooltip-bottom.dark:after {\n border-bottom-color: rgba(0, 0, 0, 0.5);\n}\n.apexcharts-xaxistooltip-bottom.dark:before {\n border-bottom-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip-top:after {\n border-top-color:#ECEFF1\n}\n.apexcharts-xaxistooltip-top:before {\n border-top-color: #90A4AE;\n}\n.apexcharts-xaxistooltip-top.dark:after {\n border-top-color:rgba(0, 0, 0, 0.5);\n}\n.apexcharts-xaxistooltip-top.dark:before {\n border-top-color: rgba(0, 0, 0, 0.5);\n}\n\n\n.apexcharts-xaxistooltip.active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-yaxistooltip {\n opacity: 0;\n padding: 4px 10px;\n pointer-events: none;\n color: #373d3f;\n font-size: 13px;\n text-align: center;\n border-radius: 2px;\n position: absolute;\n z-index: 10;\n\tbackground: #ECEFF1;\n border: 1px solid #90A4AE;\n}\n\n.apexcharts-yaxistooltip.dark {\n background: rgba(0, 0, 0, 0.7);\n border: 1px solid rgba(0, 0, 0, 0.5);\n color: #fff;\n}\n\n.apexcharts-yaxistooltip:after, .apexcharts-yaxistooltip:before {\n\ttop: 50%;\n\tborder: solid transparent;\n\tcontent: " ";\n\theight: 0;\n\twidth: 0;\n\tposition: absolute;\n\tpointer-events: none;\n}\n.apexcharts-yaxistooltip:after {\n\tborder-color: rgba(236, 239, 241, 0);\n\tborder-width: 6px;\n\tmargin-top: -6px;\n}\n.apexcharts-yaxistooltip:before {\n\tborder-color: rgba(144, 164, 174, 0);\n\tborder-width: 7px;\n\tmargin-top: -7px;\n}\n\n.apexcharts-yaxistooltip-left:after, .apexcharts-yaxistooltip-left:before {\n left: 100%;\n}\n\n.apexcharts-yaxistooltip-right:after, .apexcharts-yaxistooltip-right:before {\n right: 100%;\n}\n\n.apexcharts-yaxistooltip-left:after {\n border-left-color: #ECEFF1;\n}\n.apexcharts-yaxistooltip-left:before {\n border-left-color: #90A4AE;\n}\n.apexcharts-yaxistooltip-left.dark:after {\n border-left-color: rgba(0, 0, 0, 0.5);\n}\n.apexcharts-yaxistooltip-left.dark:before {\n border-left-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip-right:after {\n border-right-color: #ECEFF1;\n}\n.apexcharts-yaxistooltip-right:before {\n border-right-color: #90A4AE;\n}\n.apexcharts-yaxistooltip-right.dark:after {\n border-right-color: rgba(0, 0, 0, 0.5);\n}\n.apexcharts-yaxistooltip-right.dark:before {\n border-right-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip.active {\n opacity: 1;\n}\n.apexcharts-yaxistooltip-hidden {\n display: none;\n}\n\n.apexcharts-xcrosshairs, .apexcharts-ycrosshairs {\n pointer-events: none;\n opacity: 0;\n transition: 0.15s ease all;\n}\n\n.apexcharts-xcrosshairs.active, .apexcharts-ycrosshairs.active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-ycrosshairs-hidden {\n opacity: 0;\n}\n\n.apexcharts-zoom-rect {\n pointer-events: none;\n}\n.apexcharts-selection-rect {\n cursor: move;\n}\n\n.svg_select_points, .svg_select_points_rot {\n opacity: 0;\n visibility: hidden;\n}\n.svg_select_points_l, .svg_select_points_r {\n cursor: ew-resize;\n opacity: 1;\n visibility: visible;\n fill: #888;\n}\n.apexcharts-canvas.zoomable .hovering-zoom {\n cursor: crosshair\n}\n.apexcharts-canvas.zoomable .hovering-pan {\n cursor: move\n}\n\n.apexcharts-xaxis,\n.apexcharts-yaxis {\n pointer-events: none;\n}\n\n.apexcharts-zoom-icon, \n.apexcharts-zoom-in-icon,\n.apexcharts-zoom-out-icon,\n.apexcharts-reset-zoom-icon, \n.apexcharts-pan-icon, \n.apexcharts-selection-icon,\n.apexcharts-menu-icon, \n.apexcharts-toolbar-custom-icon {\n cursor: pointer;\n width: 20px;\n height: 20px;\n line-height: 24px;\n color: #6E8192;\n text-align: center;\n}\n\n\n.apexcharts-zoom-icon svg, \n.apexcharts-zoom-in-icon svg,\n.apexcharts-zoom-out-icon svg,\n.apexcharts-reset-zoom-icon svg,\n.apexcharts-menu-icon svg {\n fill: #6E8192;\n}\n.apexcharts-selection-icon svg {\n fill: #444;\n transform: scale(0.76)\n}\n\n.dark .apexcharts-zoom-icon svg, \n.dark .apexcharts-zoom-in-icon svg,\n.dark .apexcharts-zoom-out-icon svg,\n.dark .apexcharts-reset-zoom-icon svg, \n.dark .apexcharts-pan-icon svg, \n.dark .apexcharts-selection-icon svg,\n.dark .apexcharts-menu-icon svg, \n.dark .apexcharts-toolbar-custom-icon svg{\n fill: #f3f4f5;\n}\n\n.apexcharts-canvas .apexcharts-zoom-icon.selected svg, \n.apexcharts-canvas .apexcharts-selection-icon.selected svg, \n.apexcharts-canvas .apexcharts-reset-zoom-icon.selected svg {\n fill: #008FFB;\n}\n.light .apexcharts-selection-icon:not(.selected):hover svg,\n.light .apexcharts-zoom-icon:not(.selected):hover svg, \n.light .apexcharts-zoom-in-icon:hover svg, \n.light .apexcharts-zoom-out-icon:hover svg, \n.light .apexcharts-reset-zoom-icon:hover svg, \n.light .apexcharts-menu-icon:hover svg {\n fill: #333;\n}\n\n.apexcharts-selection-icon, .apexcharts-menu-icon {\n position: relative;\n}\n.apexcharts-reset-zoom-icon {\n margin-left: 5px;\n}\n.apexcharts-zoom-icon, .apexcharts-reset-zoom-icon, .apexcharts-menu-icon {\n transform: scale(0.85);\n}\n\n.apexcharts-zoom-in-icon, .apexcharts-zoom-out-icon {\n transform: scale(0.7)\n}\n\n.apexcharts-zoom-out-icon {\n margin-right: 3px;\n}\n\n.apexcharts-pan-icon {\n transform: scale(0.62);\n position: relative;\n left: 1px;\n top: 0px;\n}\n.apexcharts-pan-icon svg {\n fill: #fff;\n stroke: #6E8192;\n stroke-width: 2;\n}\n.apexcharts-pan-icon.selected svg {\n stroke: #008FFB;\n}\n.apexcharts-pan-icon:not(.selected):hover svg {\n stroke: #333;\n}\n\n.apexcharts-toolbar {\n position: absolute;\n z-index: 11;\n top: 0px;\n right: 3px;\n max-width: 176px;\n text-align: right;\n border-radius: 3px;\n padding: 0px 6px 2px 6px;\n display: flex;\n justify-content: space-between;\n align-items: center; \n}\n\n.apexcharts-toolbar svg {\n pointer-events: none;\n}\n\n.apexcharts-menu {\n background: #fff;\n position: absolute;\n top: 100%;\n border: 1px solid #ddd;\n border-radius: 3px;\n padding: 3px;\n right: 10px;\n opacity: 0;\n min-width: 110px;\n transition: 0.15s ease all;\n pointer-events: none;\n}\n\n.apexcharts-menu.open {\n opacity: 1;\n pointer-events: all;\n transition: 0.15s ease all;\n}\n\n.apexcharts-menu-item {\n padding: 6px 7px;\n font-size: 12px;\n cursor: pointer;\n}\n.light .apexcharts-menu-item:hover {\n background: #eee;\n}\n.dark .apexcharts-menu {\n background: rgba(0, 0, 0, 0.7);\n color: #fff;\n}\n\n@media screen and (min-width: 768px) {\n .apexcharts-toolbar {\n /*opacity: 0;*/\n }\n\n .apexcharts-canvas:hover .apexcharts-toolbar {\n opacity: 1;\n } \n}\n\n.apexcharts-datalabel.hidden {\n opacity: 0;\n}\n\n.apexcharts-pie-label,\n.apexcharts-datalabel, .apexcharts-datalabel-label, .apexcharts-datalabel-value {\n cursor: default;\n pointer-events: none;\n}\n\n.apexcharts-pie-label-delay {\n opacity: 0;\n animation-name: opaque;\n animation-duration: 0.3s;\n animation-fill-mode: forwards;\n animation-timing-function: ease;\n}\n\n.apexcharts-canvas .hidden {\n opacity: 0;\n}\n\n.apexcharts-hide .apexcharts-series-points {\n opacity: 0;\n}\n\n.apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,\n.apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events, .apexcharts-radar-series path, .apexcharts-radar-series polygon {\n pointer-events: none;\n}\n\n/* markers */\n\n.apexcharts-marker {\n transition: 0.15s ease all;\n}\n\n@keyframes opaque {\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}'),"document"in self&&("classList"in document.createElement("_")&&(!document.createElementNS||"classList"in document.createElementNS("http://www.w3.org/2000/svg","g"))||function(t){if("Element"in t){var e=t.Element.prototype,i=Object,s=String.prototype.trim||function(){return this.replace(/^\s+|\s+$/g,"")},a=Array.prototype.indexOf||function(t){for(var e=0,i=this.length;e div, .contract-trigger:before { content: " "; display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; } .resize-triggers > div { background: #eee; overflow: auto; } .contract-trigger:before { width: 200%; height: 200%; }',i=document.head||document.getElementsByTagName("head")[0],s=document.createElement("style");s.type="text/css",s.styleSheet?s.styleSheet.cssText=e:s.appendChild(document.createTextNode(e)),i.appendChild(s),t=!0}}(),s.__resizeLast__={},s.__resizeListeners__=[],(s.__resizeTriggers__=document.createElement("div")).className="resize-triggers",s.__resizeTriggers__.innerHTML='
    ',s.appendChild(s.__resizeTriggers__),e(s),s.addEventListener("scroll",i,!0),h&&s.__resizeTriggers__.addEventListener(h,function(t){"resizeanim"==t.animationName&&e(s)})),s.__resizeListeners__.push(a)},window.removeResizeListener=function(t,e){t&&(t.__resizeListeners__.splice(t.__resizeListeners__.indexOf(e),1),t.__resizeListeners__.length||(t.removeEventListener("scroll",i),t.__resizeTriggers__=!t.removeChild(t.__resizeTriggers__)))}}(),window.Apex={},function(){function i(t,s){e(this,i),this.opts=s,this.ctx=this,this.w=new A(s).init(),this.el=t,this.w.globals.cuid=(Math.random()+1).toString(36).substring(4),this.w.globals.chartID=this.w.config.chart.id?this.w.config.chart.id:this.w.globals.cuid,this.eventList=["mousedown","mousemove","touchstart","touchmove","mouseup","touchend"],this.initModules(),this.create=d.bind(this.create,this),this.documentEvent=d.bind(this.documentEvent,this),this.windowResizeHandler=this.windowResize.bind(this)}return s(i,[{key:"render",value:function(){var t=this;return new J(function(e,i){if(null!==t.el){void 0===Apex._chartInstances&&(Apex._chartInstances=[]),t.w.config.chart.id&&Apex._chartInstances.push({id:t.w.globals.chartID,group:t.w.config.chart.group,chart:t}),t.setLocale(t.w.config.chart.defaultLocale);var s=t.w.config.chart.events.beforeMount;"function"==typeof s&&s(t,t.w),t.fireEvent("beforeMount",[t,t.w]),window.addEventListener("resize",t.windowResizeHandler),window.addResizeListener(t.el.parentNode,t.parentResizeCallback.bind(t));var a=t.create(t.w.config.series,{});if(!a)return e(t);t.mount(a).then(function(){e(a),"function"==typeof t.w.config.chart.events.mounted&&t.w.config.chart.events.mounted(t,t.w),t.fireEvent("mounted",[t,t.w])}).catch(function(t){i(t)})}else i(new Error("Element not found"))})}},{key:"initModules",value:function(){this.animations=new g(this),this.core=new q(this.el,this),this.grid=new ot(this),this.coreUtils=new y(this),this.config=new w({}),this.crosshairs=new T(this),this.options=new x,this.responsive=new lt(this),this.series=new W(this),this.theme=new ht(this),this.formatters=new D(this),this.titleSubtitle=new vt(this),this.legend=new B(this),this.toolbar=new bt(this),this.dimensions=new H(this),this.zoomPanSelection=new mt(this),this.w.globals.tooltip=new xt(this)}},{key:"addEventListener",value:function(t,e){var i=this.w;i.globals.events.hasOwnProperty(t)?i.globals.events[t].push(e):i.globals.events[t]=[e]}},{key:"removeEventListener",value:function(t,e){var i=this.w;if(i.globals.events.hasOwnProperty(t)){var s=i.globals.events[t].indexOf(e);-1!==s&&i.globals.events[t].splice(s,1)}}},{key:"fireEvent",value:function(t,e){var i=this.w;if(i.globals.events.hasOwnProperty(t)){e&&e.length||(e=[]);for(var s=i.globals.events[t],a=s.length,n=0;n0&&void 0!==arguments[0]?arguments[0]:null,e=this,i=e.w;return new J(function(s,a){if(null===e.el)return a(new Error("Not enough data to display or target element not found"));if((null===t||i.globals.allSeriesCollapsed)&&e.series.handleNoData(),e.annotations=new b(e),e.core.drawAxis(i.config.chart.type,t.xyRatios),e.grid=new ot(e),"back"===i.config.grid.position&&e.grid.drawGrid(),"back"===i.config.annotations.position&&e.annotations.drawAnnotations(),t.elGraph instanceof Array)for(var n=0;n0&&i.globals.memory.methodsToExec.forEach(function(t){t.method(t.params,!1,t.context)}),i.globals.axisCharts||i.globals.noData||e.core.resizeNonAxisCharts(),s(e)})}},{key:"clearPreviousPaths",value:function(){var t=this.w;t.globals.previousPaths=[],t.globals.allSeriesCollapsed=!1,t.globals.collapsedSeries=[],t.globals.collapsedSeriesIndices=[]}},{key:"updateOptions",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],s=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],a=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],r=this.w;return t.series&&(this.resetSeries(!1),t.series.length&&t.series[0].data&&(t.series=t.series.map(function(t,e){return n({},r.config.series[e],{name:t.name?t.name:r.config.series[e]&&r.config.series[e].name,type:t.type?t.type:r.config.series[e]&&r.config.series[e].type,data:t.data?t.data:r.config.series[e]&&r.config.series[e].data})})),this.revertDefaultAxisMinMax()),t.xaxis&&((t.xaxis.min||t.xaxis.max)&&this.forceXAxisUpdate(t),t.xaxis.categories&&t.xaxis.categories.length&&r.config.xaxis.convertedCatToNumeric&&(t=v.convertCatToNumeric(t))),r.globals.collapsedSeriesIndices.length>0&&this.clearPreviousPaths(),t.theme&&(t=this.theme.updateThemeOptions(t)),this._updateOptions(t,e,i,s,a)}},{key:"_updateOptions",value:function(e){var i=arguments.length>1&&void 0!==arguments[1]&&arguments[1],s=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],n=arguments.length>4&&void 0!==arguments[4]&&arguments[4],r=[this];a&&(r=this.getSyncedCharts()),this.w.globals.isExecCalled&&(r=[this],this.w.globals.isExecCalled=!1),r.forEach(function(a){var r=a.w;return r.globals.shouldAnimate=s,i||(r.globals.resized=!0,r.globals.dataChanged=!0,s&&a.series.getPreviousPaths()),e&&"object"===t(e)&&(a.config=new w(e),e=y.extendArrayProps(a.config,e),r.config=d.extend(r.config,e),n&&(r.globals.lastXAxis=[],r.globals.lastYAxis=[],r.globals.initialConfig=d.extend({},r.config),r.globals.initialSeries=JSON.parse(JSON.stringify(r.config.series)))),a.update(e)})}},{key:"updateSeries",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];return this.resetSeries(!1),this.revertDefaultAxisMinMax(),this._updateSeries(t,e,i)}},{key:"appendSeries",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],s=this.w.config.series.slice();return s.push(t),this.resetSeries(!1),this.revertDefaultAxisMinMax(),this._updateSeries(s,e,i)}},{key:"_updateSeries",value:function(t,e){var i,s=arguments.length>2&&void 0!==arguments[2]&&arguments[2],a=this.w;return this.w.globals.shouldAnimate=e,a.globals.dataChanged=!0,a.globals.allSeriesCollapsed&&(a.globals.allSeriesCollapsed=!1),e&&this.series.getPreviousPaths(),a.globals.axisCharts?(0===(i=t.map(function(t,e){return n({},a.config.series[e],{name:t.name?t.name:a.config.series[e]&&a.config.series[e].name,type:t.type?t.type:a.config.series[e]&&a.config.series[e].type,data:t.data?t.data:a.config.series[e]&&a.config.series[e].data})})).length&&(i=[{data:[]}]),a.config.series=i):a.config.series=t.slice(),s&&(a.globals.initialConfig.series=JSON.parse(JSON.stringify(a.config.series)),a.globals.initialSeries=JSON.parse(JSON.stringify(a.config.series))),this.update()}},{key:"getSyncedCharts",value:function(){var t=this.getGroupedCharts(),e=[this];return t.length&&(e=[],t.forEach(function(t){e.push(t)})),e}},{key:"getGroupedCharts",value:function(){var t=this;return Apex._chartInstances.filter(function(t){if(t.group)return!0}).map(function(e){return t.w.config.chart.group===e.group?e.chart:t})}},{key:"appendData",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var s=i.w.config.series.slice(),a=0;a0&&void 0!==arguments[0])||arguments[0];this.series.resetSeries(t)}},{key:"setupEventHandlers",value:function(){var t=this,e=this.w,i=this,s=e.globals.dom.baseEl.querySelector(e.globals.chartClass);this.eventListHandlers=[],this.eventList.forEach(function(t){s.addEventListener(t,function(t){var s=Object.assign({},e,{seriesIndex:e.globals.capturedSeriesIndex,dataPointIndex:e.globals.capturedDataPointIndex});"mousemove"===t.type||"touchmove"===t.type?"function"==typeof e.config.chart.events.mouseMove&&e.config.chart.events.mouseMove(t,i,s):("mouseup"===t.type&&1===t.which||"touchend"===t.type)&&("function"==typeof e.config.chart.events.click&&e.config.chart.events.click(t,i,s),i.fireEvent("click",[t,i,s]))},{capture:!1,passive:!0})}),this.eventList.forEach(function(e){document.addEventListener(e,t.documentEvent)}),this.core.setupBrushHandler()}},{key:"documentEvent",value:function(t){var e=this.w;e.globals.clientX="touchmove"===t.type?t.touches[0].clientX:t.clientX,e.globals.clientY="touchmove"===t.type?t.touches[0].clientY:t.clientY}},{key:"addXaxisAnnotation",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,s=this;i&&(s=i),s.annotations.addXaxisAnnotationExternal(t,e,s)}},{key:"addYaxisAnnotation",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,s=this;i&&(s=i),s.annotations.addYaxisAnnotationExternal(t,e,s)}},{key:"addPointAnnotation",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,s=this;i&&(s=i),s.annotations.addPointAnnotationExternal(t,e,s)}},{key:"clearAnnotations",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,e=this;t&&(e=t),e.annotations.clearAnnotations(e)}},{key:"addText",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,s=this;i&&(s=i),s.annotations.addText(t,e,s)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(t,e){return this.coreUtils.getSeriesTotalsXRange(t,e)}},{key:"getHighestValueInSeries",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;return new j(this.ctx).getMinYMaxY(t).highestY}},{key:"getLowestValueInSeries",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;return new j(this.ctx).getMinYMaxY(t).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"setLocale",value:function(t){this.setCurrentLocaleValues(t)}},{key:"toggleDataPointSelection",value:function(t,e){var i=this.w,s=null;i.globals.axisCharts?s=i.globals.dom.Paper.select(".apexcharts-series[data\\:realIndex='".concat(t,"'] path[j='").concat(e,"'], .apexcharts-series[data\\:realIndex='").concat(t,"'] circle[j='").concat(e,"'], .apexcharts-series[data\\:realIndex='").concat(t,"'] rect[j='").concat(e,"']")).members[0]:(s=i.globals.dom.Paper.select(".apexcharts-series[data\\:realIndex='".concat(t,"']")).members[0],("pie"===i.config.chart.type||"donut"===i.config.chart.type)&&new I(this.ctx).pieClicked(t));s?new f(this.ctx).pathMouseDown(s,null):console.warn("toggleDataPointSelection: Element not found");return s.node?s.node:null}},{key:"setCurrentLocaleValues",value:function(t){var e=this.w.config.chart.locales;window.Apex.chart&&window.Apex.chart.locales&&window.Apex.chart.locales.length>0&&(e=this.w.config.chart.locales.concat(window.Apex.chart.locales));var i=e.filter(function(e){return e.name===t})[0];if(!i)throw new Error("Wrong locale name provided. Please make sure you set the correct locale name in options");var s=d.extend(p,i);this.w.globals.locale=s.options}},{key:"dataURI",value:function(){return new rt(this.ctx).dataURI()}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.windowResize()}},{key:"windowResize",value:function(){var t=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout(function(){t.w.globals.resized=!0,t.w.globals.dataChanged=!1,t.update()},150)}}],[{key:"initOnLoad",value:function(){for(var t=document.querySelectorAll("[data-apexcharts]"),e=0;e2?s-2:0),n=2;n.04045?Math.pow((e+.055)/1.055,2.4):e/12.92)+.3576*(i=i>.04045?Math.pow((i+.055)/1.055,2.4):i/12.92)+.1805*(n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92)),100*(.2126*e+.7152*i+.0722*n),100*(.0193*e+.1192*i+.9505*n)]}function d(t){var e=l(t),i=e[0],n=e[1],a=e[2];return n/=100,a/=108.883,i=(i/=95.047)>.008856?Math.pow(i,1/3):7.787*i+16/116,[116*(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116)-16,500*(i-n),200*(n-(a=a>.008856?Math.pow(a,1/3):7.787*a+16/116))]}function u(t){var e,i,n,a,o,r=t[0]/360,s=t[1]/100,l=t[2]/100;if(0==s)return[o=255*l,o,o];e=2*l-(i=l<.5?l*(1+s):l+s-l*s),a=[0,0,0];for(var d=0;d<3;d++)(n=r+1/3*-(d-1))<0&&n++,n>1&&n--,o=6*n<1?e+6*(i-e)*n:2*n<1?i:3*n<2?e+(i-e)*(2/3-n)*6:e,a[d]=255*o;return a}function h(t){var e=t[0]/60,i=t[1]/100,n=t[2]/100,a=Math.floor(e)%6,o=e-Math.floor(e),r=255*n*(1-i),s=255*n*(1-i*o),l=255*n*(1-i*(1-o));n*=255;switch(a){case 0:return[n,l,r];case 1:return[s,n,r];case 2:return[r,n,l];case 3:return[r,s,n];case 4:return[l,r,n];case 5:return[n,r,s]}}function c(t){var e,i,n,a,o=t[0]/360,s=t[1]/100,l=t[2]/100,d=s+l;switch(d>1&&(s/=d,l/=d),n=6*o-(e=Math.floor(6*o)),0!=(1&e)&&(n=1-n),a=s+n*((i=1-l)-s),e){default:case 6:case 0:r=i,g=a,b=s;break;case 1:r=a,g=i,b=s;break;case 2:r=s,g=i,b=a;break;case 3:r=s,g=a,b=i;break;case 4:r=a,g=s,b=i;break;case 5:r=i,g=s,b=a}return[255*r,255*g,255*b]}function f(t){var e=t[0]/100,i=t[1]/100,n=t[2]/100,a=t[3]/100;return[255*(1-Math.min(1,e*(1-a)+a)),255*(1-Math.min(1,i*(1-a)+a)),255*(1-Math.min(1,n*(1-a)+a))]}function p(t){var e,i,n,a=t[0]/100,o=t[1]/100,r=t[2]/100;return i=-.9689*a+1.8758*o+.0415*r,n=.0557*a+-.204*o+1.057*r,e=(e=3.2406*a+-1.5372*o+-.4986*r)>.0031308?1.055*Math.pow(e,1/2.4)-.055:e*=12.92,i=i>.0031308?1.055*Math.pow(i,1/2.4)-.055:i*=12.92,n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:n*=12.92,[255*(e=Math.min(Math.max(0,e),1)),255*(i=Math.min(Math.max(0,i),1)),255*(n=Math.min(Math.max(0,n),1))]}function m(t){var e=t[0],i=t[1],n=t[2];return i/=100,n/=108.883,e=(e/=95.047)>.008856?Math.pow(e,1/3):7.787*e+16/116,[116*(i=i>.008856?Math.pow(i,1/3):7.787*i+16/116)-16,500*(e-i),200*(i-(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116))]}function v(t){var e,i,n,a,o=t[0],r=t[1],s=t[2];return o<=8?a=(i=100*o/903.3)/100*7.787+16/116:(i=100*Math.pow((o+16)/116,3),a=Math.pow(i/100,1/3)),[e=e/95.047<=.008856?e=95.047*(r/500+a-16/116)/7.787:95.047*Math.pow(r/500+a,3),i,n=n/108.883<=.008859?n=108.883*(a-s/200-16/116)/7.787:108.883*Math.pow(a-s/200,3)]}function x(t){var e,i=t[0],n=t[1],a=t[2];return(e=360*Math.atan2(a,n)/2/Math.PI)<0&&(e+=360),[i,Math.sqrt(n*n+a*a),e]}function y(t){return p(v(t))}function k(t){var e,i=t[0],n=t[1];return e=t[2]/360*2*Math.PI,[i,n*Math.cos(e),n*Math.sin(e)]}function w(t){return M[t]}var M={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},_={};for(var C in M)_[JSON.stringify(M[C])]=C;var S=function(){return new T};for(var P in e){S[P+"Raw"]=function(t){return function(i){return"number"==typeof i&&(i=Array.prototype.slice.call(arguments)),e[t](i)}}(P);var I=/(\w+)2(\w+)/.exec(P),A=I[1],D=I[2];(S[A]=S[A]||{})[D]=S[P]=function(t){return function(i){"number"==typeof i&&(i=Array.prototype.slice.call(arguments));var n=e[t](i);if("string"==typeof n||void 0===n)return n;for(var a=0;a=0&&e<1?H(Math.round(255*e)):"")},rgbString:function(t,e){if(e<1||t[3]&&t[3]<1)return N(t,e);return"rgb("+t[0]+", "+t[1]+", "+t[2]+")"},rgbaString:N,percentString:function(t,e){if(e<1||t[3]&&t[3]<1)return W(t,e);var i=Math.round(t[0]/255*100),n=Math.round(t[1]/255*100),a=Math.round(t[2]/255*100);return"rgb("+i+"%, "+n+"%, "+a+"%)"},percentaString:W,hslString:function(t,e){if(e<1||t[3]&&t[3]<1)return V(t,e);return"hsl("+t[0]+", "+t[1]+"%, "+t[2]+"%)"},hslaString:V,hwbString:function(t,e){void 0===e&&(e=void 0!==t[3]?t[3]:1);return"hwb("+t[0]+", "+t[1]+"%, "+t[2]+"%"+(void 0!==e&&1!==e?", "+e:"")+")"},keyword:function(t){return j[t.slice(0,3)]}};function O(t){if(t){var e=[0,0,0],i=1,n=t.match(/^#([a-fA-F0-9]{3,4})$/i),a="";if(n){a=(n=n[1])[3];for(var o=0;oi?(e+.05)/(i+.05):(i+.05)/(e+.05)},level:function(t){var e=this.contrast(t);return e>=7.1?"AAA":e>=4.5?"AA":""},dark:function(){var t=this.values.rgb;return(299*t[0]+587*t[1]+114*t[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var t=[],e=0;e<3;e++)t[e]=255-this.values.rgb[e];return this.setValues("rgb",t),this},lighten:function(t){var e=this.values.hsl;return e[2]+=e[2]*t,this.setValues("hsl",e),this},darken:function(t){var e=this.values.hsl;return e[2]-=e[2]*t,this.setValues("hsl",e),this},saturate:function(t){var e=this.values.hsl;return e[1]+=e[1]*t,this.setValues("hsl",e),this},desaturate:function(t){var e=this.values.hsl;return e[1]-=e[1]*t,this.setValues("hsl",e),this},whiten:function(t){var e=this.values.hwb;return e[1]+=e[1]*t,this.setValues("hwb",e),this},blacken:function(t){var e=this.values.hwb;return e[2]+=e[2]*t,this.setValues("hwb",e),this},greyscale:function(){var t=this.values.rgb,e=.3*t[0]+.59*t[1]+.11*t[2];return this.setValues("rgb",[e,e,e]),this},clearer:function(t){var e=this.values.alpha;return this.setValues("alpha",e-e*t),this},opaquer:function(t){var e=this.values.alpha;return this.setValues("alpha",e+e*t),this},rotate:function(t){var e=this.values.hsl,i=(e[0]+t)%360;return e[0]=i<0?360+i:i,this.setValues("hsl",e),this},mix:function(t,e){var i=t,n=void 0===e?.5:e,a=2*n-1,o=this.alpha()-i.alpha(),r=((a*o==-1?a:(a+o)/(1+a*o))+1)/2,s=1-r;return this.rgb(r*this.red()+s*i.red(),r*this.green()+s*i.green(),r*this.blue()+s*i.blue()).alpha(this.alpha()*n+i.alpha()*(1-n))},toJSON:function(){return this.rgb()},clone:function(){var t,e,i=new Y,n=this.values,a=i.values;for(var o in n)n.hasOwnProperty(o)&&(t=n[o],"[object Array]"===(e={}.toString.call(t))?a[o]=t.slice(0):"[object Number]"===e?a[o]=t:console.error("unexpected color value:",t));return i}},Y.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},Y.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},Y.prototype.getValues=function(t){for(var e=this.values,i={},n=0;n=0;a--)e.call(i,t[a],a);else for(a=0;a=1?t:-(Math.sqrt(1-t*t)-1)},easeOutCirc:function(t){return Math.sqrt(1-(t-=1)*t)},easeInOutCirc:function(t){return(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeInElastic:function(t){var e=1.70158,i=0,n=1;return 0===t?0:1===t?1:(i||(i=.3),n<1?(n=1,e=i/4):e=i/(2*Math.PI)*Math.asin(1/n),-n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i))},easeOutElastic:function(t){var e=1.70158,i=0,n=1;return 0===t?0:1===t?1:(i||(i=.3),n<1?(n=1,e=i/4):e=i/(2*Math.PI)*Math.asin(1/n),n*Math.pow(2,-10*t)*Math.sin((t-e)*(2*Math.PI)/i)+1)},easeInOutElastic:function(t){var e=1.70158,i=0,n=1;return 0===t?0:2==(t/=.5)?1:(i||(i=.45),n<1?(n=1,e=i/4):e=i/(2*Math.PI)*Math.asin(1/n),t<1?n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i)*-.5:n*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i)*.5+1)},easeInBack:function(t){var e=1.70158;return t*t*((e+1)*t-e)},easeOutBack:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},easeInOutBack:function(t){var e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},easeInBounce:function(t){return 1-Z.easeOutBounce(1-t)},easeOutBounce:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},easeInOutBounce:function(t){return t<.5?.5*Z.easeInBounce(2*t):.5*Z.easeOutBounce(2*t-1)+.5}},$={effects:Z};G.easingEffects=Z;var J=Math.PI,Q=J/180,tt=2*J,et=J/2,it=J/4,nt=2*J/3,at={clear:function(t){t.ctx.clearRect(0,0,t.width,t.height)},roundedRect:function(t,e,i,n,a,o){if(o){var r=Math.min(o,a/2,n/2),s=e+r,l=i+r,d=e+n-r,u=i+a-r;t.moveTo(e,l),se.left-1e-6&&t.xe.top-1e-6&&t.y0&&this.requestAnimationFrame()},advance:function(){for(var t,e,i,n,a=this.animations,o=0;o=i?(ut.callback(t.onAnimationComplete,[t],e),e.animating=!1,a.splice(o,1)):++o}},xt=ut.options.resolve,yt=["push","pop","shift","splice","unshift"];function kt(t,e){var i=t._chartjs;if(i){var n=i.listeners,a=n.indexOf(e);-1!==a&&n.splice(a,1),n.length>0||(yt.forEach(function(e){delete t[e]}),delete t._chartjs)}}var wt=function(t,e){this.initialize(t,e)};ut.extend(wt.prototype,{datasetElementType:null,dataElementType:null,initialize:function(t,e){this.chart=t,this.index=e,this.linkScales(),this.addElements()},updateIndex:function(t){this.index=t},linkScales:function(){var t=this,e=t.getMeta(),i=t.getDataset();null!==e.xAxisID&&e.xAxisID in t.chart.scales||(e.xAxisID=i.xAxisID||t.chart.options.scales.xAxes[0].id),null!==e.yAxisID&&e.yAxisID in t.chart.scales||(e.yAxisID=i.yAxisID||t.chart.options.scales.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(t){return this.chart.scales[t]},_getValueScaleId:function(){return this.getMeta().yAxisID},_getIndexScaleId:function(){return this.getMeta().xAxisID},_getValueScale:function(){return this.getScaleForId(this._getValueScaleId())},_getIndexScale:function(){return this.getScaleForId(this._getIndexScaleId())},reset:function(){this.update(!0)},destroy:function(){this._data&&kt(this._data,this)},createMetaDataset:function(){var t=this.datasetElementType;return t&&new t({_chart:this.chart,_datasetIndex:this.index})},createMetaData:function(t){var e=this.dataElementType;return e&&new e({_chart:this.chart,_datasetIndex:this.index,_index:t})},addElements:function(){var t,e,i=this.getMeta(),n=this.getDataset().data||[],a=i.data;for(t=0,e=n.length;ti&&this.insertElements(i,n-i)},insertElements:function(t,e){for(var i=0;is;)a-=2*Math.PI;for(;a=r&&a<=s,d=o>=i.innerRadius&&o<=i.outerRadius;return l&&d}return!1},getCenterPoint:function(){var t=this._view,e=(t.startAngle+t.endAngle)/2,i=(t.innerRadius+t.outerRadius)/2;return{x:t.x+Math.cos(e)*i,y:t.y+Math.sin(e)*i}},getArea:function(){var t=this._view;return Math.PI*((t.endAngle-t.startAngle)/(2*Math.PI))*(Math.pow(t.outerRadius,2)-Math.pow(t.innerRadius,2))},tooltipPosition:function(){var t=this._view,e=t.startAngle+(t.endAngle-t.startAngle)/2,i=(t.outerRadius-t.innerRadius)/2+t.innerRadius;return{x:t.x+Math.cos(e)*i,y:t.y+Math.sin(e)*i}},draw:function(){var t,e=this._chart.ctx,i=this._view,n=i.startAngle,a=i.endAngle,o="inner"===i.borderAlign?.33:0;e.save(),e.beginPath(),e.arc(i.x,i.y,Math.max(i.outerRadius-o,0),n,a),e.arc(i.x,i.y,i.innerRadius,a,n,!0),e.closePath(),e.fillStyle=i.backgroundColor,e.fill(),i.borderWidth&&("inner"===i.borderAlign?(e.beginPath(),t=o/i.outerRadius,e.arc(i.x,i.y,i.outerRadius,n-t,a+t),i.innerRadius>o?(t=o/i.innerRadius,e.arc(i.x,i.y,i.innerRadius-o,a+t,n-t,!0)):e.arc(i.x,i.y,o,a+Math.PI/2,n-Math.PI/2),e.closePath(),e.clip(),e.beginPath(),e.arc(i.x,i.y,i.outerRadius,n,a),e.arc(i.x,i.y,i.innerRadius,a,n,!0),e.closePath(),e.lineWidth=2*i.borderWidth,e.lineJoin="round"):(e.lineWidth=i.borderWidth,e.lineJoin="bevel"),e.strokeStyle=i.borderColor,e.stroke()),e.restore()}}),Ct=ut.valueOrDefault,St=st.global.defaultColor;st._set("global",{elements:{line:{tension:.4,backgroundColor:St,borderWidth:3,borderColor:St,borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",capBezierPoints:!0,fill:!0}}});var Pt=pt.extend({draw:function(){var t,e,i,n,a=this._view,o=this._chart.ctx,r=a.spanGaps,s=this._children.slice(),l=st.global,d=l.elements.line,u=-1;for(this._loop&&s.length&&s.push(s[0]),o.save(),o.lineCap=a.borderCapStyle||d.borderCapStyle,o.setLineDash&&o.setLineDash(a.borderDash||d.borderDash),o.lineDashOffset=Ct(a.borderDashOffset,d.borderDashOffset),o.lineJoin=a.borderJoinStyle||d.borderJoinStyle,o.lineWidth=Ct(a.borderWidth,d.borderWidth),o.strokeStyle=a.borderColor||l.defaultColor,o.beginPath(),u=-1,t=0;tt.x&&(e=Ot(e,"left","right")):t.basei?i:n,r:l.right||a<0?0:a>e?e:a,b:l.bottom||o<0?0:o>i?i:o,l:l.left||r<0?0:r>e?e:r}}function Bt(t,e,i){var n=null===e,a=null===i,o=!(!t||n&&a)&&Rt(t);return o&&(n||e>=o.left&&e<=o.right)&&(a||i>=o.top&&i<=o.bottom)}st._set("global",{elements:{rectangle:{backgroundColor:Ft,borderColor:Ft,borderSkipped:"bottom",borderWidth:0}}});var Nt=pt.extend({draw:function(){var t=this._chart.ctx,e=this._view,i=function(t){var e=Rt(t),i=e.right-e.left,n=e.bottom-e.top,a=zt(t,i/2,n/2);return{outer:{x:e.left,y:e.top,w:i,h:n},inner:{x:e.left+a.l,y:e.top+a.t,w:i-a.l-a.r,h:n-a.t-a.b}}}(e),n=i.outer,a=i.inner;t.fillStyle=e.backgroundColor,t.fillRect(n.x,n.y,n.w,n.h),n.w===a.w&&n.h===a.h||(t.save(),t.beginPath(),t.rect(n.x,n.y,n.w,n.h),t.clip(),t.fillStyle=e.borderColor,t.rect(a.x,a.y,a.w,a.h),t.fill("evenodd"),t.restore())},height:function(){var t=this._view;return t.base-t.y},inRange:function(t,e){return Bt(this._view,t,e)},inLabelRange:function(t,e){var i=this._view;return Lt(i)?Bt(i,t,null):Bt(i,null,e)},inXRange:function(t){return Bt(this._view,t,null)},inYRange:function(t){return Bt(this._view,null,t)},getCenterPoint:function(){var t,e,i=this._view;return Lt(i)?(t=i.x,e=(i.y+i.base)/2):(t=(i.x+i.base)/2,e=i.y),{x:t,y:e}},getArea:function(){var t=this._view;return Lt(t)?t.width*Math.abs(t.y-t.base):t.height*Math.abs(t.x-t.base)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y}}}),Wt={},Vt=_t,Et=Pt,Ht=Tt,jt=Nt;Wt.Arc=Vt,Wt.Line=Et,Wt.Point=Ht,Wt.Rectangle=jt;var qt=ut.options.resolve;st._set("bar",{hover:{mode:"label"},scales:{xAxes:[{type:"category",categoryPercentage:.8,barPercentage:.9,offset:!0,gridLines:{offsetGridLines:!0}}],yAxes:[{type:"linear"}]}});var Yt=Mt.extend({dataElementType:Wt.Rectangle,initialize:function(){var t;Mt.prototype.initialize.apply(this,arguments),(t=this.getMeta()).stack=this.getDataset().stack,t.bar=!0},update:function(t){var e,i,n=this.getMeta().data;for(this._ruler=this.getRuler(),e=0,i=n.length;e0?Math.min(r,n-i):r,i=n;return r}(i,l):-1,pixels:l,start:r,end:s,stackCount:n,scale:i}},calculateBarValuePixels:function(t,e){var i,n,a,o,r,s,l=this.chart,d=this.getMeta(),u=this._getValueScale(),h=u.isHorizontal(),c=l.data.datasets,f=+u.getRightValue(c[t].data[e]),g=u.options.minBarLength,p=u.options.stacked,m=d.stack,v=0;if(p||void 0===p&&void 0!==m)for(i=0;i=0&&a>0)&&(v+=a));return o=u.getPixelForValue(v),s=(r=u.getPixelForValue(v+f))-o,void 0!==g&&Math.abs(s)=0&&!h||f<0&&h?o-g:o+g),{size:s,base:o,head:r,center:r+s/2}},calculateBarIndexPixels:function(t,e,i){var n=i.scale.options,a="flex"===n.barThickness?function(t,e,i){var n,a=e.pixels,o=a[t],r=t>0?a[t-1]:null,s=t');var i=t.data,n=i.datasets,a=i.labels;if(n.length)for(var o=0;o'),a[o]&&e.push(a[o]),e.push("");return e.push(""),e.join("")},legend:{labels:{generateLabels:function(t){var e=t.data;return e.labels.length&&e.datasets.length?e.labels.map(function(i,n){var a=t.getDatasetMeta(0),o=e.datasets[0],r=a.data[n],s=r&&r.custom||{},l=t.options.elements.arc;return{text:i,fillStyle:Gt([s.backgroundColor,o.backgroundColor,l.backgroundColor],void 0,n),strokeStyle:Gt([s.borderColor,o.borderColor,l.borderColor],void 0,n),lineWidth:Gt([s.borderWidth,o.borderWidth,l.borderWidth],void 0,n),hidden:isNaN(o.data[n])||a.data[n].hidden,index:n}}):[]}},onClick:function(t,e){var i,n,a,o=e.index,r=this.chart;for(i=0,n=(r.data.datasets||[]).length;i=Math.PI?-1:m<-Math.PI?1:0))+g,b={x:Math.cos(m),y:Math.sin(m)},x={x:Math.cos(v),y:Math.sin(v)},y=m<=0&&v>=0||m<=2*Math.PI&&2*Math.PI<=v,k=m<=.5*Math.PI&&.5*Math.PI<=v||m<=2.5*Math.PI&&2.5*Math.PI<=v,w=m<=-Math.PI&&-Math.PI<=v||m<=Math.PI&&Math.PI<=v,M=m<=.5*-Math.PI&&.5*-Math.PI<=v||m<=1.5*Math.PI&&1.5*Math.PI<=v,_=f/100,C={x:w?-1:Math.min(b.x*(b.x<0?1:_),x.x*(x.x<0?1:_)),y:M?-1:Math.min(b.y*(b.y<0?1:_),x.y*(x.y<0?1:_))},S={x:y?1:Math.max(b.x*(b.x>0?1:_),x.x*(x.x>0?1:_)),y:k?1:Math.max(b.y*(b.y>0?1:_),x.y*(x.y>0?1:_))},P={width:.5*(S.x-C.x),height:.5*(S.y-C.y)};d=Math.min(s/P.width,l/P.height),u={x:-.5*(S.x+C.x),y:-.5*(S.y+C.y)}}for(e=0,i=c.length;e0&&!isNaN(t)?2*Math.PI*(Math.abs(t)/e):0},getMaxBorderWidth:function(t){var e,i,n,a,o,r,s,l,d=0,u=this.chart;if(!t)for(e=0,i=u.data.datasets.length;e(d=s>d?s:d)?l:d);return d},setHoverStyle:function(t){var e=t._model,i=t._options,n=ut.getHoverColor;t.$previousStyle={backgroundColor:e.backgroundColor,borderColor:e.borderColor,borderWidth:e.borderWidth},e.backgroundColor=Zt(i.hoverBackgroundColor,n(i.backgroundColor)),e.borderColor=Zt(i.hoverBorderColor,n(i.borderColor)),e.borderWidth=Zt(i.hoverBorderWidth,i.borderWidth)},_resolveElementOptions:function(t,e){var i,n,a,o=this.chart,r=this.getDataset(),s=t.custom||{},l=o.options.elements.arc,d={},u={chart:o,dataIndex:e,dataset:r,datasetIndex:this.index},h=["backgroundColor","borderColor","borderWidth","borderAlign","hoverBackgroundColor","hoverBorderColor","hoverBorderWidth"];for(i=0,n=h.length;i0&&ee(l[t-1]._model,s)&&(i.controlPointPreviousX=d(i.controlPointPreviousX,s.left,s.right),i.controlPointPreviousY=d(i.controlPointPreviousY,s.top,s.bottom)),t');var i=t.data,n=i.datasets,a=i.labels;if(n.length)for(var o=0;o'),a[o]&&e.push(a[o]),e.push("");return e.push(""),e.join("")},legend:{labels:{generateLabels:function(t){var e=t.data;return e.labels.length&&e.datasets.length?e.labels.map(function(i,n){var a=t.getDatasetMeta(0),o=e.datasets[0],r=a.data[n].custom||{},s=t.options.elements.arc;return{text:i,fillStyle:ae([r.backgroundColor,o.backgroundColor,s.backgroundColor],void 0,n),strokeStyle:ae([r.borderColor,o.borderColor,s.borderColor],void 0,n),lineWidth:ae([r.borderWidth,o.borderWidth,s.borderWidth],void 0,n),hidden:isNaN(o.data[n])||a.data[n].hidden,index:n}}):[]}},onClick:function(t,e){var i,n,a,o=e.index,r=this.chart;for(i=0,n=(r.data.datasets||[]).length;i0&&(o=t.getDatasetMeta(o[0]._datasetIndex).data),o},"x-axis":function(t,e){return me(t,e,{intersect:!1})},point:function(t,e){return fe(t,he(e,t))},nearest:function(t,e,i){var n=he(e,t);i.axis=i.axis||"xy";var a=pe(i.axis);return ge(t,n,i.intersect,a)},x:function(t,e,i){var n=he(e,t),a=[],o=!1;return ce(t,function(t){t.inXRange(n.x)&&a.push(t),t.inRange(n.x,n.y)&&(o=!0)}),i.intersect&&!o&&(a=[]),a},y:function(t,e,i){var n=he(e,t),a=[],o=!1;return ce(t,function(t){t.inYRange(n.y)&&a.push(t),t.inRange(n.x,n.y)&&(o=!0)}),i.intersect&&!o&&(a=[]),a}}};function be(t,e){return ut.where(t,function(t){return t.position===e})}function xe(t,e){t.forEach(function(t,e){return t._tmpIndex_=e,t}),t.sort(function(t,i){var n=e?i:t,a=e?t:i;return n.weight===a.weight?n._tmpIndex_-a._tmpIndex_:n.weight-a.weight}),t.forEach(function(t){delete t._tmpIndex_})}function ye(t,e){ut.each(t,function(t){e[t.position]+=t.isHorizontal()?t.height:t.width})}st._set("global",{layout:{padding:{top:0,right:0,bottom:0,left:0}}});var ke={defaults:{},addBox:function(t,e){t.boxes||(t.boxes=[]),e.fullWidth=e.fullWidth||!1,e.position=e.position||"top",e.weight=e.weight||0,t.boxes.push(e)},removeBox:function(t,e){var i=t.boxes?t.boxes.indexOf(e):-1;-1!==i&&t.boxes.splice(i,1)},configure:function(t,e,i){for(var n,a=["fullWidth","position","weight"],o=a.length,r=0;rdiv{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0}"}))&&we.default||we,_e="$chartjs",Ce="chartjs-size-monitor",Se="chartjs-render-monitor",Pe="chartjs-render-animation",Ie=["animationstart","webkitAnimationStart"],Ae={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"};function De(t,e){var i=ut.getStyle(t,e),n=i&&i.match(/^(\d+)(\.\d+)?px$/);return n?Number(n[1]):void 0}var Te=!!function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("e",null,e)}catch(t){}return t}()&&{passive:!0};function Fe(t,e,i){t.addEventListener(e,i,Te)}function Le(t,e,i){t.removeEventListener(e,i,Te)}function Re(t,e,i,n,a){return{type:t,chart:e,native:a||null,x:void 0!==i?i:null,y:void 0!==n?n:null}}function Oe(t){var e=document.createElement("div");return e.className=t||"",e}function ze(t,e,i){var n,a,o,r,s=t[_e]||(t[_e]={}),l=s.resizer=function(t){var e=Oe(Ce),i=Oe(Ce+"-expand"),n=Oe(Ce+"-shrink");i.appendChild(Oe()),n.appendChild(Oe()),e.appendChild(i),e.appendChild(n),e._reset=function(){i.scrollLeft=1e6,i.scrollTop=1e6,n.scrollLeft=1e6,n.scrollTop=1e6};var a=function(){e._reset(),t()};return Fe(i,"scroll",a.bind(i,"expand")),Fe(n,"scroll",a.bind(n,"shrink")),e}((n=function(){if(s.resizer){var n=i.options.maintainAspectRatio&&t.parentNode,a=n?n.clientWidth:0;e(Re("resize",i)),n&&n.clientWidth0){var o=t[0];o.label?i=o.label:o.xLabel?i=o.xLabel:a>0&&o.index-1?t.split("\n"):t}function Xe(t){var e=st.global;return{xPadding:t.xPadding,yPadding:t.yPadding,xAlign:t.xAlign,yAlign:t.yAlign,bodyFontColor:t.bodyFontColor,_bodyFontFamily:je(t.bodyFontFamily,e.defaultFontFamily),_bodyFontStyle:je(t.bodyFontStyle,e.defaultFontStyle),_bodyAlign:t.bodyAlign,bodyFontSize:je(t.bodyFontSize,e.defaultFontSize),bodySpacing:t.bodySpacing,titleFontColor:t.titleFontColor,_titleFontFamily:je(t.titleFontFamily,e.defaultFontFamily),_titleFontStyle:je(t.titleFontStyle,e.defaultFontStyle),titleFontSize:je(t.titleFontSize,e.defaultFontSize),_titleAlign:t.titleAlign,titleSpacing:t.titleSpacing,titleMarginBottom:t.titleMarginBottom,footerFontColor:t.footerFontColor,_footerFontFamily:je(t.footerFontFamily,e.defaultFontFamily),_footerFontStyle:je(t.footerFontStyle,e.defaultFontStyle),footerFontSize:je(t.footerFontSize,e.defaultFontSize),_footerAlign:t.footerAlign,footerSpacing:t.footerSpacing,footerMarginTop:t.footerMarginTop,caretSize:t.caretSize,cornerRadius:t.cornerRadius,backgroundColor:t.backgroundColor,opacity:0,legendColorBackground:t.multiKeyBackground,displayColors:t.displayColors,borderColor:t.borderColor,borderWidth:t.borderWidth}}function Ke(t,e){return"center"===e?t.x+t.width/2:"right"===e?t.x+t.width-t.xPadding:t.x+t.xPadding}function Ge(t){return Ye([],Ue(t))}var Ze=pt.extend({initialize:function(){this._model=Xe(this._options),this._lastActive=[]},getTitle:function(){var t=this._options.callbacks,e=t.beforeTitle.apply(this,arguments),i=t.title.apply(this,arguments),n=t.afterTitle.apply(this,arguments),a=[];return a=Ye(a,Ue(e)),a=Ye(a,Ue(i)),a=Ye(a,Ue(n))},getBeforeBody:function(){return Ge(this._options.callbacks.beforeBody.apply(this,arguments))},getBody:function(t,e){var i=this,n=i._options.callbacks,a=[];return ut.each(t,function(t){var o={before:[],lines:[],after:[]};Ye(o.before,Ue(n.beforeLabel.call(i,t,e))),Ye(o.lines,n.label.call(i,t,e)),Ye(o.after,Ue(n.afterLabel.call(i,t,e))),a.push(o)}),a},getAfterBody:function(){return Ge(this._options.callbacks.afterBody.apply(this,arguments))},getFooter:function(){var t=this._options.callbacks,e=t.beforeFooter.apply(this,arguments),i=t.footer.apply(this,arguments),n=t.afterFooter.apply(this,arguments),a=[];return a=Ye(a,Ue(e)),a=Ye(a,Ue(i)),a=Ye(a,Ue(n))},update:function(t){var e,i,n,a,o,r,s,l,d,u,h=this,c=h._options,f=h._model,g=h._model=Xe(c),p=h._active,m=h._data,v={xAlign:f.xAlign,yAlign:f.yAlign},b={x:f.x,y:f.y},x={width:f.width,height:f.height},y={x:f.caretX,y:f.caretY};if(p.length){g.opacity=1;var k=[],w=[];y=qe[c.position].call(h,p,h._eventPosition);var M=[];for(e=0,i=p.length;en.width&&(a=n.width-e.width),a<0&&(a=0)),"top"===u?o+=h:o-="bottom"===u?e.height+h:e.height/2,"center"===u?"left"===d?a+=h:"right"===d&&(a-=h):"left"===d?a-=c:"right"===d&&(a+=c),{x:a,y:o}}(g,x,v=function(t,e){var i,n,a,o,r,s=t._model,l=t._chart,d=t._chart.chartArea,u="center",h="center";s.yl.height-e.height&&(h="bottom");var c=(d.left+d.right)/2,f=(d.top+d.bottom)/2;"center"===h?(i=function(t){return t<=c},n=function(t){return t>c}):(i=function(t){return t<=e.width/2},n=function(t){return t>=l.width-e.width/2}),a=function(t){return t+e.width+s.caretSize+s.caretPadding>l.width},o=function(t){return t-e.width-s.caretSize-s.caretPadding<0},r=function(t){return t<=f?"top":"bottom"},i(s.x)?(u="left",a(s.x)&&(u="center",h=r(s.y))):n(s.x)&&(u="right",o(s.x)&&(u="center",h=r(s.y)));var g=t._options;return{xAlign:g.xAlign?g.xAlign:u,yAlign:g.yAlign?g.yAlign:h}}(this,x),h._chart)}else g.opacity=0;return g.xAlign=v.xAlign,g.yAlign=v.yAlign,g.x=b.x,g.y=b.y,g.width=x.width,g.height=x.height,g.caretX=y.x,g.caretY=y.y,h._model=g,t&&c.custom&&c.custom.call(h,g),h},drawCaret:function(t,e){var i=this._chart.ctx,n=this._view,a=this.getCaretPosition(t,e,n);i.lineTo(a.x1,a.y1),i.lineTo(a.x2,a.y2),i.lineTo(a.x3,a.y3)},getCaretPosition:function(t,e,i){var n,a,o,r,s,l,d=i.caretSize,u=i.cornerRadius,h=i.xAlign,c=i.yAlign,f=t.x,g=t.y,p=e.width,m=e.height;if("center"===c)s=g+m/2,"left"===h?(a=(n=f)-d,o=n,r=s+d,l=s-d):(a=(n=f+p)+d,o=n,r=s-d,l=s+d);else if("left"===h?(n=(a=f+u+d)-d,o=a+d):"right"===h?(n=(a=f+p-u-d)-d,o=a+d):(n=(a=i.caretX)-d,o=a+d),"top"===c)s=(r=g)-d,l=r;else{s=(r=g+m)+d,l=r;var v=o;o=n,n=v}return{x1:n,x2:a,x3:o,y1:r,y2:s,y3:l}},drawTitle:function(t,e,i){var n=e.title;if(n.length){t.x=Ke(e,e._titleAlign),i.textAlign=e._titleAlign,i.textBaseline="top";var a,o,r=e.titleFontSize,s=e.titleSpacing;for(i.fillStyle=e.titleFontColor,i.font=ut.fontString(r,e._titleFontStyle,e._titleFontFamily),a=0,o=n.length;a0&&i.stroke()},draw:function(){var t=this._chart.ctx,e=this._view;if(0!==e.opacity){var i={width:e.width,height:e.height},n={x:e.x,y:e.y},a=Math.abs(e.opacity<.001)?0:e.opacity,o=e.title.length||e.beforeBody.length||e.body.length||e.afterBody.length||e.footer.length;this._options.enabled&&o&&(t.save(),t.globalAlpha=a,this.drawBackground(n,e,t,i),n.y+=e.yPadding,this.drawTitle(n,e,t),this.drawBody(n,e,t),this.drawFooter(n,e,t),t.restore())}},handleEvent:function(t){var e,i=this,n=i._options;return i._lastActive=i._lastActive||[],"mouseout"===t.type?i._active=[]:i._active=i._chart.getElementsAtEventForMode(t,n.mode,n),(e=!ut.arrayEquals(i._active,i._lastActive))&&(i._lastActive=i._active,(n.enabled||n.custom)&&(i._eventPosition={x:t.x,y:t.y},i.update(!0),i.pivot())),e}}),$e=qe,Je=Ze;Je.positioners=$e;var Qe=ut.valueOrDefault;function ti(){return ut.merge({},[].slice.call(arguments),{merger:function(t,e,i,n){if("xAxes"===t||"yAxes"===t){var a,o,r,s=i[t].length;for(e[t]||(e[t]=[]),a=0;a=e[t].length&&e[t].push({}),!e[t][a].type||r.type&&r.type!==e[t][a].type?ut.merge(e[t][a],[He.getScaleDefaults(o),r]):ut.merge(e[t][a],r)}else ut._merger(t,e,i,n)}})}function ei(){return ut.merge({},[].slice.call(arguments),{merger:function(t,e,i,n){var a=e[t]||{},o=i[t];"scales"===t?e[t]=ti(a,o):"scale"===t?e[t]=ut.merge(a,[He.getScaleDefaults(o.type),o]):ut._merger(t,e,i,n)}})}function ii(t){return"top"===t||"bottom"===t}st._set("global",{elements:{},events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,maintainAspectRatio:!0,responsive:!0,responsiveAnimationDuration:0});var ni=function(t,e){return this.construct(t,e),this};ut.extend(ni.prototype,{construct:function(t,e){var i=this;e=function(t){var e=(t=t||{}).data=t.data||{};return e.datasets=e.datasets||[],e.labels=e.labels||[],t.options=ei(st.global,st[t.type],t.options||{}),t}(e);var n=Ve.acquireContext(t,e),a=n&&n.canvas,o=a&&a.height,r=a&&a.width;i.id=ut.uid(),i.ctx=n,i.canvas=a,i.config=e,i.width=r,i.height=o,i.aspectRatio=o?r/o:null,i.options=e.options,i._bufferedRender=!1,i.chart=i,i.controller=i,ni.instances[i.id]=i,Object.defineProperty(i,"data",{get:function(){return i.config.data},set:function(t){i.config.data=t}}),n&&a?(i.initialize(),i.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var t=this;return Ee.notify(t,"beforeInit"),ut.retinaScale(t,t.options.devicePixelRatio),t.bindEvents(),t.options.responsive&&t.resize(!0),t.ensureScalesHaveIDs(),t.buildOrUpdateScales(),t.initToolTip(),Ee.notify(t,"afterInit"),t},clear:function(){return ut.canvas.clear(this),this},stop:function(){return bt.cancelAnimation(this),this},resize:function(t){var e=this,i=e.options,n=e.canvas,a=i.maintainAspectRatio&&e.aspectRatio||null,o=Math.max(0,Math.floor(ut.getMaximumWidth(n))),r=Math.max(0,Math.floor(a?o/a:ut.getMaximumHeight(n)));if((e.width!==o||e.height!==r)&&(n.width=e.width=o,n.height=e.height=r,n.style.width=o+"px",n.style.height=r+"px",ut.retinaScale(e,i.devicePixelRatio),!t)){var s={width:o,height:r};Ee.notify(e,"resize",[s]),i.onResize&&i.onResize(e,s),e.stop(),e.update({duration:i.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},i=t.scale;ut.each(e.xAxes,function(t,e){t.id=t.id||"x-axis-"+e}),ut.each(e.yAxes,function(t,e){t.id=t.id||"y-axis-"+e}),i&&(i.id=i.id||"scale")},buildOrUpdateScales:function(){var t=this,e=t.options,i=t.scales||{},n=[],a=Object.keys(i).reduce(function(t,e){return t[e]=!1,t},{});e.scales&&(n=n.concat((e.scales.xAxes||[]).map(function(t){return{options:t,dtype:"category",dposition:"bottom"}}),(e.scales.yAxes||[]).map(function(t){return{options:t,dtype:"linear",dposition:"left"}}))),e.scale&&n.push({options:e.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),ut.each(n,function(e){var n=e.options,o=n.id,r=Qe(n.type,e.dtype);ii(n.position)!==ii(e.dposition)&&(n.position=e.dposition),a[o]=!0;var s=null;if(o in i&&i[o].type===r)(s=i[o]).options=n,s.ctx=t.ctx,s.chart=t;else{var l=He.getScaleConstructor(r);if(!l)return;s=new l({id:o,type:r,options:n,ctx:t.ctx,chart:t}),i[s.id]=s}s.mergeTicksOptions(),e.isDefault&&(t.scale=s)}),ut.each(a,function(t,e){t||delete i[e]}),t.scales=i,He.addScalesToLayout(this)},buildOrUpdateControllers:function(){var t=this,e=[];return ut.each(t.data.datasets,function(i,n){var a=t.getDatasetMeta(n),o=i.type||t.config.type;if(a.type&&a.type!==o&&(t.destroyDatasetMeta(n),a=t.getDatasetMeta(n)),a.type=o,a.controller)a.controller.updateIndex(n),a.controller.linkScales();else{var r=ue[a.type];if(void 0===r)throw new Error('"'+a.type+'" is not a chart type.');a.controller=new r(t,n),e.push(a.controller)}},t),e},resetElements:function(){var t=this;ut.each(t.data.datasets,function(e,i){t.getDatasetMeta(i).controller.reset()},t)},reset:function(){this.resetElements(),this.tooltip.initialize()},update:function(t){var e,i,n=this;if(t&&"object"==typeof t||(t={duration:t,lazy:arguments[1]}),i=(e=n).options,ut.each(e.scales,function(t){ke.removeBox(e,t)}),i=ei(st.global,st[e.config.type],i),e.options=e.config.options=i,e.ensureScalesHaveIDs(),e.buildOrUpdateScales(),e.tooltip._options=i.tooltips,e.tooltip.initialize(),Ee._invalidate(n),!1!==Ee.notify(n,"beforeUpdate")){n.tooltip._data=n.data;var a=n.buildOrUpdateControllers();ut.each(n.data.datasets,function(t,e){n.getDatasetMeta(e).controller.buildOrUpdateElements()},n),n.updateLayout(),n.options.animation&&n.options.animation.duration&&ut.each(a,function(t){t.reset()}),n.updateDatasets(),n.tooltip.initialize(),n.lastActive=[],Ee.notify(n,"afterUpdate"),n._bufferedRender?n._bufferedRequest={duration:t.duration,easing:t.easing,lazy:t.lazy}:n.render(t)}},updateLayout:function(){!1!==Ee.notify(this,"beforeLayout")&&(ke.update(this,this.width,this.height),Ee.notify(this,"afterScaleUpdate"),Ee.notify(this,"afterLayout"))},updateDatasets:function(){if(!1!==Ee.notify(this,"beforeDatasetsUpdate")){for(var t=0,e=this.data.datasets.length;t=0;--i)e.isDatasetVisible(i)&&e.drawDataset(i,t);Ee.notify(e,"afterDatasetsDraw",[t])}},drawDataset:function(t,e){var i=this.getDatasetMeta(t),n={meta:i,index:t,easingValue:e};!1!==Ee.notify(this,"beforeDatasetDraw",[n])&&(i.controller.draw(e),Ee.notify(this,"afterDatasetDraw",[n]))},_drawTooltip:function(t){var e=this.tooltip,i={tooltip:e,easingValue:t};!1!==Ee.notify(this,"beforeTooltipDraw",[i])&&(e.draw(),Ee.notify(this,"afterTooltipDraw",[i]))},getElementAtEvent:function(t){return ve.modes.single(this,t)},getElementsAtEvent:function(t){return ve.modes.label(this,t,{intersect:!0})},getElementsAtXAxis:function(t){return ve.modes["x-axis"](this,t,{intersect:!0})},getElementsAtEventForMode:function(t,e,i){var n=ve.modes[e];return"function"==typeof n?n(this,t,i):[]},getDatasetAtEvent:function(t){return ve.modes.dataset(this,t,{intersect:!0})},getDatasetMeta:function(t){var e=this.data.datasets[t];e._meta||(e._meta={});var i=e._meta[this.id];return i||(i=e._meta[this.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null}),i},getVisibleDatasetCount:function(){for(var t=0,e=0,i=this.data.datasets.length;e3?i[2]-i[1]:i[1]-i[0];Math.abs(n)>1&&t!==Math.floor(t)&&(n=t-Math.floor(t));var a=ut.log10(Math.abs(n)),o="";if(0!==t)if(Math.max(Math.abs(i[0]),Math.abs(i[i.length-1]))<1e-4){var r=ut.log10(Math.abs(t));o=t.toExponential(Math.floor(r)-Math.floor(a))}else{var s=-1*Math.floor(a);s=Math.max(Math.min(s,20),0),o=t.toFixed(s)}else o="0";return o},logarithmic:function(t,e,i){var n=t/Math.pow(10,Math.floor(ut.log10(t)));return 0===t?"0":1===n||2===n||5===n||0===e||e===i.length-1?t.toExponential():""}}},di=ut.valueOrDefault,ui=ut.valueAtIndexOrDefault;function hi(t){var e,i,n=[];for(e=0,i=t.length;ed&&ot.maxHeight){o--;break}o++,l=r*s}t.labelRotation=o},afterCalculateTickRotation:function(){ut.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){ut.callback(this.options.beforeFit,[this])},fit:function(){var t=this,e=t.minSize={width:0,height:0},i=hi(t._ticks),n=t.options,a=n.ticks,o=n.scaleLabel,r=n.gridLines,s=t._isVisible(),l=n.position,d=t.isHorizontal(),u=ut.options._parseFont,h=u(a),c=n.gridLines.tickMarkLength;if(e.width=d?t.isFullWidth()?t.maxWidth-t.margins.left-t.margins.right:t.maxWidth:s&&r.drawTicks?c:0,e.height=d?s&&r.drawTicks?c:0:t.maxHeight,o.display&&s){var f=u(o),g=ut.options.toPadding(o.padding),p=f.lineHeight+g.height;d?e.height+=p:e.width+=p}if(a.display&&s){var m=ut.longestText(t.ctx,h.string,i,t.longestTextCache),v=ut.numberOfLabelLines(i),b=.5*h.size,x=t.options.ticks.padding;if(t._maxLabelLines=v,t.longestLabelWidth=m,d){var y=ut.toRadians(t.labelRotation),k=Math.cos(y),w=Math.sin(y)*m+h.lineHeight*v+b;e.height=Math.min(t.maxHeight,e.height+w+x),t.ctx.font=h.string;var M,_,C=ci(t.ctx,i[0],h.string),S=ci(t.ctx,i[i.length-1],h.string),P=t.getPixelForTick(0)-t.left,I=t.right-t.getPixelForTick(i.length-1);0!==t.labelRotation?(M="bottom"===l?k*C:k*b,_="bottom"===l?k*b:k*S):(M=C/2,_=S/2),t.paddingLeft=Math.max(M-P,0)+3,t.paddingRight=Math.max(_-I,0)+3}else a.mirror?m=0:m+=x+b,e.width=Math.min(t.maxWidth,e.width+m),t.paddingTop=h.size/2,t.paddingBottom=h.size/2}t.handleMargins(),t.width=e.width,t.height=e.height},handleMargins:function(){var t=this;t.margins&&(t.paddingLeft=Math.max(t.paddingLeft-t.margins.left,0),t.paddingTop=Math.max(t.paddingTop-t.margins.top,0),t.paddingRight=Math.max(t.paddingRight-t.margins.right,0),t.paddingBottom=Math.max(t.paddingBottom-t.margins.bottom,0))},afterFit:function(){ut.callback(this.options.afterFit,[this])},isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){if(ut.isNullOrUndef(t))return NaN;if(("number"==typeof t||t instanceof Number)&&!isFinite(t))return NaN;if(t)if(this.isHorizontal()){if(void 0!==t.x)return this.getRightValue(t.x)}else if(void 0!==t.y)return this.getRightValue(t.y);return t},getLabelForIndex:ut.noop,getPixelForValue:ut.noop,getValueForPixel:ut.noop,getPixelForTick:function(t){var e=this,i=e.options.offset;if(e.isHorizontal()){var n=(e.width-(e.paddingLeft+e.paddingRight))/Math.max(e._ticks.length-(i?0:1),1),a=n*t+e.paddingLeft;i&&(a+=n/2);var o=e.left+a;return o+=e.isFullWidth()?e.margins.left:0}var r=e.height-(e.paddingTop+e.paddingBottom);return e.top+t*(r/(e._ticks.length-1))},getPixelForDecimal:function(t){var e=this;if(e.isHorizontal()){var i=(e.width-(e.paddingLeft+e.paddingRight))*t+e.paddingLeft,n=e.left+i;return n+=e.isFullWidth()?e.margins.left:0}return e.top+t*e.height},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this.min,e=this.max;return this.beginAtZero?0:t<0&&e<0?e:t>0&&e>0?t:0},_autoSkip:function(t){var e,i,n=this,a=n.isHorizontal(),o=n.options.ticks.minor,r=t.length,s=!1,l=o.maxTicksLimit,d=n._tickSize()*(r-1),u=a?n.width-(n.paddingLeft+n.paddingRight):n.height-(n.paddingTop+n.PaddingBottom),h=[];for(d>u&&(s=1+Math.floor(d/u)),r>l&&(s=Math.max(s,1+Math.floor(r/l))),e=0;e1&&e%s>0&&delete i.label,h.push(i);return h},_tickSize:function(){var t=this,e=t.isHorizontal(),i=t.options.ticks.minor,n=ut.toRadians(t.labelRotation),a=Math.abs(Math.cos(n)),o=Math.abs(Math.sin(n)),r=i.autoSkipPadding||0,s=t.longestLabelWidth+r||0,l=ut.options._parseFont(i),d=t._maxLabelLines*l.lineHeight+r||0;return e?d*a>s*o?s/a:d/o:d*o0&&n>0&&(t.min=0)}var a=void 0!==e.min||void 0!==e.suggestedMin,o=void 0!==e.max||void 0!==e.suggestedMax;void 0!==e.min?t.min=e.min:void 0!==e.suggestedMin&&(null===t.min?t.min=e.suggestedMin:t.min=Math.min(t.min,e.suggestedMin)),void 0!==e.max?t.max=e.max:void 0!==e.suggestedMax&&(null===t.max?t.max=e.suggestedMax:t.max=Math.max(t.max,e.suggestedMax)),a!==o&&t.min>=t.max&&(a?t.max=t.min+1:t.min=t.max-1),t.min===t.max&&(t.max++,e.beginAtZero||t.min--)},getTickLimit:function(){var t,e=this.options.ticks,i=e.stepSize,n=e.maxTicksLimit;return i?t=Math.ceil(this.max/i)-Math.floor(this.min/i)+1:(t=this._computeTickLimit(),n=n||11),n&&(t=Math.min(n,t)),t},_computeTickLimit:function(){return Number.POSITIVE_INFINITY},handleDirectionalChanges:mi,buildTicks:function(){var t=this,e=t.options.ticks,i=t.getTickLimit(),n={maxTicks:i=Math.max(2,i),min:e.min,max:e.max,precision:e.precision,stepSize:ut.valueOrDefault(e.fixedStepSize,e.stepSize)},a=t.ticks=function(t,e){var i,n,a,o,r=[],s=t.stepSize,l=s||1,d=t.maxTicks-1,u=t.min,h=t.max,c=t.precision,f=e.min,g=e.max,p=ut.niceNum((g-f)/d/l)*l;if(p<1e-14&&vi(u)&&vi(h))return[f,g];(o=Math.ceil(g/p)-Math.floor(f/p))>d&&(p=ut.niceNum(o*p/d/l)*l),s||vi(c)?i=Math.pow(10,ut._decimalPlaces(p)):(i=Math.pow(10,c),p=Math.ceil(p*i)/i),n=Math.floor(f/p)*p,a=Math.ceil(g/p)*p,s&&(!vi(u)&&ut.almostWhole(u/p,p/1e3)&&(n=u),!vi(h)&&ut.almostWhole(h/p,p/1e3)&&(a=h)),o=(a-n)/p,o=ut.almostEquals(o,Math.round(o),p/1e3)?Math.round(o):Math.ceil(o),n=Math.round(n*i)/i,a=Math.round(a*i)/i,r.push(vi(u)?n:u);for(var m=1;mt.max&&(t.max=n))})});t.min=isFinite(t.min)&&!isNaN(t.min)?t.min:0,t.max=isFinite(t.max)&&!isNaN(t.max)?t.max:1,this.handleTickRangeOptions()},_computeTickLimit:function(){var t;return this.isHorizontal()?Math.ceil(this.width/40):(t=ut.options._parseFont(this.options.ticks),Math.ceil(this.height/t.lineHeight))},handleDirectionalChanges:function(){this.isHorizontal()||this.ticks.reverse()},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},getPixelForValue:function(t){var e=this,i=e.start,n=+e.getRightValue(t),a=e.end-i;return e.isHorizontal()?e.left+e.width/a*(n-i):e.bottom-e.height/a*(n-i)},getValueForPixel:function(t){var e=this,i=e.isHorizontal(),n=i?e.width:e.height,a=(i?t-e.left:e.bottom-t)/n;return e.start+(e.end-e.start)*a},getPixelForTick:function(t){return this.getPixelForValue(this.ticksAsNumbers[t])}}),ki=xi;yi._defaults=ki;var wi=ut.valueOrDefault;var Mi={position:"left",ticks:{callback:li.formatters.logarithmic}};function _i(t,e){return ut.isFinite(t)&&t>=0?t:e}var Ci=fi.extend({determineDataLimits:function(){var t=this,e=t.options,i=t.chart,n=i.data.datasets,a=t.isHorizontal();function o(e){return a?e.xAxisID===t.id:e.yAxisID===t.id}t.min=null,t.max=null,t.minNotZero=null;var r=e.stacked;if(void 0===r&&ut.each(n,function(t,e){if(!r){var n=i.getDatasetMeta(e);i.isDatasetVisible(e)&&o(n)&&void 0!==n.stack&&(r=!0)}}),e.stacked||r){var s={};ut.each(n,function(n,a){var r=i.getDatasetMeta(a),l=[r.type,void 0===e.stacked&&void 0===r.stack?a:"",r.stack].join(".");i.isDatasetVisible(a)&&o(r)&&(void 0===s[l]&&(s[l]=[]),ut.each(n.data,function(e,i){var n=s[l],a=+t.getRightValue(e);isNaN(a)||r.data[i].hidden||a<0||(n[i]=n[i]||0,n[i]+=a)}))}),ut.each(s,function(e){if(e.length>0){var i=ut.min(e),n=ut.max(e);t.min=null===t.min?i:Math.min(t.min,i),t.max=null===t.max?n:Math.max(t.max,n)}})}else ut.each(n,function(e,n){var a=i.getDatasetMeta(n);i.isDatasetVisible(n)&&o(a)&&ut.each(e.data,function(e,i){var n=+t.getRightValue(e);isNaN(n)||a.data[i].hidden||n<0||(null===t.min?t.min=n:nt.max&&(t.max=n),0!==n&&(null===t.minNotZero||n0?t.minNotZero=t.min:t.max<1?t.minNotZero=Math.pow(10,Math.floor(ut.log10(t.max))):t.minNotZero=1)},buildTicks:function(){var t=this,e=t.options.ticks,i=!t.isHorizontal(),n={min:_i(e.min),max:_i(e.max)},a=t.ticks=function(t,e){var i,n,a=[],o=wi(t.min,Math.pow(10,Math.floor(ut.log10(e.min)))),r=Math.floor(ut.log10(e.max)),s=Math.ceil(e.max/Math.pow(10,r));0===o?(i=Math.floor(ut.log10(e.minNotZero)),n=Math.floor(e.minNotZero/Math.pow(10,i)),a.push(o),o=n*Math.pow(10,i)):(i=Math.floor(ut.log10(o)),n=Math.floor(o/Math.pow(10,i)));var l=i<0?Math.pow(10,Math.abs(i)):1;do{a.push(o),10==++n&&(n=1,l=++i>=0?1:l),o=Math.round(n*Math.pow(10,i)*l)/l}while(ia?{start:e-i,end:e}:{start:e,end:e+i}}function Ri(t){return 0===t||180===t?"center":t<180?"left":"right"}function Oi(t,e,i,n){var a,o,r=i.y+n/2;if(ut.isArray(e))for(a=0,o=e.length;a270||t<90)&&(i.y-=e.h)}function Bi(t){return ut.isNumber(t)?t:0}var Ni=bi.extend({setDimensions:function(){var t=this;t.width=t.maxWidth,t.height=t.maxHeight,t.paddingTop=Fi(t.options)/2,t.xCenter=Math.floor(t.width/2),t.yCenter=Math.floor((t.height-t.paddingTop)/2),t.drawingArea=Math.min(t.height-t.paddingTop,t.width)/2},determineDataLimits:function(){var t=this,e=t.chart,i=Number.POSITIVE_INFINITY,n=Number.NEGATIVE_INFINITY;ut.each(e.data.datasets,function(a,o){if(e.isDatasetVisible(o)){var r=e.getDatasetMeta(o);ut.each(a.data,function(e,a){var o=+t.getRightValue(e);isNaN(o)||r.data[a].hidden||(i=Math.min(o,i),n=Math.max(o,n))})}}),t.min=i===Number.POSITIVE_INFINITY?0:i,t.max=n===Number.NEGATIVE_INFINITY?0:n,t.handleTickRangeOptions()},_computeTickLimit:function(){return Math.ceil(this.drawingArea/Fi(this.options))},convertTicksToLabels:function(){var t=this;bi.prototype.convertTicksToLabels.call(t),t.pointLabels=t.chart.data.labels.map(t.options.pointLabels.callback,t)},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},fit:function(){var t=this.options;t.display&&t.pointLabels.display?function(t){var e,i,n,a=ut.options._parseFont(t.options.pointLabels),o={l:0,r:t.width,t:0,b:t.height-t.paddingTop},r={};t.ctx.font=a.string,t._pointLabelSizes=[];var s,l,d,u=Ti(t);for(e=0;eo.r&&(o.r=f.end,r.r=h),g.starto.b&&(o.b=g.end,r.b=h)}t.setReductions(t.drawingArea,o,r)}(this):this.setCenterPoint(0,0,0,0)},setReductions:function(t,e,i){var n=this,a=e.l/Math.sin(i.l),o=Math.max(e.r-n.width,0)/Math.sin(i.r),r=-e.t/Math.cos(i.t),s=-Math.max(e.b-(n.height-n.paddingTop),0)/Math.cos(i.b);a=Bi(a),o=Bi(o),r=Bi(r),s=Bi(s),n.drawingArea=Math.min(Math.floor(t-(a+o)/2),Math.floor(t-(r+s)/2)),n.setCenterPoint(a,o,r,s)},setCenterPoint:function(t,e,i,n){var a=this,o=a.width-e-a.drawingArea,r=t+a.drawingArea,s=i+a.drawingArea,l=a.height-a.paddingTop-n-a.drawingArea;a.xCenter=Math.floor((r+o)/2+a.left),a.yCenter=Math.floor((s+l)/2+a.top+a.paddingTop)},getIndexAngle:function(t){return t*(2*Math.PI/Ti(this))+(this.chart.options&&this.chart.options.startAngle?this.chart.options.startAngle:0)*Math.PI*2/360},getDistanceFromCenterForValue:function(t){var e=this;if(null===t)return 0;var i=e.drawingArea/(e.max-e.min);return e.options.ticks.reverse?(e.max-t)*i:(t-e.min)*i},getPointPosition:function(t,e){var i=this.getIndexAngle(t)-Math.PI/2;return{x:Math.cos(i)*e+this.xCenter,y:Math.sin(i)*e+this.yCenter}},getPointPositionForValue:function(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))},getBasePosition:function(){var t=this.min,e=this.max;return this.getPointPositionForValue(0,this.beginAtZero?0:t<0&&e<0?e:t>0&&e>0?t:0)},draw:function(){var t=this,e=t.options,i=e.gridLines,n=e.ticks;if(e.display){var a=t.ctx,o=this.getIndexAngle(0),r=ut.options._parseFont(n);(e.angleLines.display||e.pointLabels.display)&&function(t){var e=t.ctx,i=t.options,n=i.angleLines,a=i.gridLines,o=i.pointLabels,r=Pi(n.lineWidth,a.lineWidth),s=Pi(n.color,a.color),l=Fi(i);e.save(),e.lineWidth=r,e.strokeStyle=s,e.setLineDash&&(e.setLineDash(Ai([n.borderDash,a.borderDash,[]])),e.lineDashOffset=Ai([n.borderDashOffset,a.borderDashOffset,0]));var d=t.getDistanceFromCenterForValue(i.ticks.reverse?t.min:t.max),u=ut.options._parseFont(o);e.font=u.string,e.textBaseline="middle";for(var h=Ti(t)-1;h>=0;h--){if(n.display&&r&&s){var c=t.getPointPosition(h,d);e.beginPath(),e.moveTo(t.xCenter,t.yCenter),e.lineTo(c.x,c.y),e.stroke()}if(o.display){var f=0===h?l/2:0,g=t.getPointPosition(h,d+f+5),p=Ii(o.fontColor,h,st.global.defaultFontColor);e.fillStyle=p;var m=t.getIndexAngle(h),v=ut.toDegrees(m);e.textAlign=Ri(v),zi(v,t._pointLabelSizes[h],g),Oi(e,t.pointLabels[h]||"",g,u.lineHeight)}}e.restore()}(t),ut.each(t.ticks,function(e,s){if(s>0||n.reverse){var l=t.getDistanceFromCenterForValue(t.ticksAsNumbers[s]);if(i.display&&0!==s&&function(t,e,i,n){var a,o=t.ctx,r=e.circular,s=Ti(t),l=Ii(e.color,n-1),d=Ii(e.lineWidth,n-1);if((r||s)&&l&&d){if(o.save(),o.strokeStyle=l,o.lineWidth=d,o.setLineDash&&(o.setLineDash(e.borderDash||[]),o.lineDashOffset=e.borderDashOffset||0),o.beginPath(),r)o.arc(t.xCenter,t.yCenter,i,0,2*Math.PI);else{a=t.getPointPosition(0,i),o.moveTo(a.x,a.y);for(var u=1;u=0&&r<=s;){if(a=t[(n=r+s>>1)-1]||null,o=t[n],!a)return{lo:null,hi:o};if(o[e]i))return{lo:a,hi:o};s=n-1}}return{lo:o,hi:null}}(t,e,i),o=a.lo?a.hi?a.lo:t[t.length-2]:t[0],r=a.lo?a.hi?a.hi:t[t.length-1]:t[1],s=r[e]-o[e],l=s?(i-o[e])/s:0,d=(r[n]-o[n])*l;return o[n]+d}function Ki(t,e){var i=t._adapter,n=t.options.time,a=n.parser,o=a||n.format,r=e;return"function"==typeof a&&(r=a(r)),ut.isFinite(r)||(r="string"==typeof o?i.parse(r,o):i.parse(r)),null!==r?+r:(a||"function"!=typeof o||(r=o(e),ut.isFinite(r)||(r=i.parse(r))),r)}function Gi(t,e){if(ut.isNullOrUndef(e))return null;var i=t.options.time,n=Ki(t,t.getRightValue(e));return null===n?n:(i.round&&(n=+t._adapter.startOf(n,i.round)),n)}function Zi(t){for(var e=qi.indexOf(t)+1,i=qi.length;e=a&&i<=o&&d.push(i);return n.min=a,n.max=o,n._unit=s.unit||function(t,e,i,n,a){var o,r;for(o=qi.length-1;o>=qi.indexOf(i);o--)if(r=qi[o],ji[r].common&&t._adapter.diff(a,n,r)>=e.length)return r;return qi[i?qi.indexOf(i):0]}(n,d,s.minUnit,n.min,n.max),n._majorUnit=Zi(n._unit),n._table=function(t,e,i,n){if("linear"===n||!t.length)return[{time:e,pos:0},{time:i,pos:1}];var a,o,r,s,l,d=[],u=[e];for(a=0,o=t.length;ae&&s=0&&t0?r:1}}),Qi={position:"bottom",distribution:"linear",bounds:"data",adapters:{},time:{parser:!1,format:!1,unit:!1,round:!1,displayFormat:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{}},ticks:{autoSkip:!1,source:"auto",major:{enabled:!1}}};Ji._defaults=Qi;var tn={category:gi,linear:yi,logarithmic:Ci,radialLinear:Ni,time:Ji},en={datetime:"MMM D, YYYY, h:mm:ss a",millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"};si._date.override("function"==typeof t?{_id:"moment",formats:function(){return en},parse:function(e,i){return"string"==typeof e&&"string"==typeof i?e=t(e,i):e instanceof t||(e=t(e)),e.isValid()?e.valueOf():null},format:function(e,i){return t(e).format(i)},add:function(e,i,n){return t(e).add(i,n).valueOf()},diff:function(e,i,n){return t.duration(t(e).diff(t(i))).as(n)},startOf:function(e,i,n){return e=t(e),"isoWeek"===i?e.isoWeekday(n).valueOf():e.startOf(i).valueOf()},endOf:function(e,i){return t(e).endOf(i).valueOf()},_create:function(e){return t(e)}}:{}),st._set("global",{plugins:{filler:{propagate:!0}}});var nn={dataset:function(t){var e=t.fill,i=t.chart,n=i.getDatasetMeta(e),a=n&&i.isDatasetVisible(e)&&n.dataset._children||[],o=a.length||0;return o?function(t,e){return e=i)&&n;switch(o){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return o;default:return!1}}function on(t){var e,i=t.el._model||{},n=t.el._scale||{},a=t.fill,o=null;if(isFinite(a))return null;if("start"===a?o=void 0===i.scaleBottom?n.bottom:i.scaleBottom:"end"===a?o=void 0===i.scaleTop?n.top:i.scaleTop:void 0!==i.scaleZero?o=i.scaleZero:n.getBasePosition?o=n.getBasePosition():n.getBasePixel&&(o=n.getBasePixel()),null!=o){if(void 0!==o.x&&void 0!==o.y)return o;if(ut.isFinite(o))return{x:(e=n.isHorizontal())?o:null,y:e?null:o}}return null}function rn(t,e,i){var n,a=t[e].fill,o=[e];if(!i)return a;for(;!1!==a&&-1===o.indexOf(a);){if(!isFinite(a))return a;if(!(n=t[a]))return!1;if(n.visible)return a;o.push(a),a=n.fill}return!1}function sn(t){var e=t.fill,i="dataset";return!1===e?null:(isFinite(e)||(i="boundary"),nn[i](t))}function ln(t){return t&&!t.skip}function dn(t,e,i,n,a){var o;if(n&&a){for(t.moveTo(e[0].x,e[0].y),o=1;o0;--o)ut.canvas.lineTo(t,i[o],i[o-1],!0)}}var un={id:"filler",afterDatasetsUpdate:function(t,e){var i,n,a,o,r=(t.data.datasets||[]).length,s=e.propagate,l=[];for(n=0;ne?e:t.boxWidth}st._set("global",{legend:{display:!0,position:"top",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(t,e){var i=e.datasetIndex,n=this.chart,a=n.getDatasetMeta(i);a.hidden=null===a.hidden?!n.data.datasets[i].hidden:null,n.update()},onHover:null,onLeave:null,labels:{boxWidth:40,padding:10,generateLabels:function(t){var e=t.data;return ut.isArray(e.datasets)?e.datasets.map(function(e,i){return{text:e.label,fillStyle:ut.isArray(e.backgroundColor)?e.backgroundColor[0]:e.backgroundColor,hidden:!t.isDatasetVisible(i),lineCap:e.borderCapStyle,lineDash:e.borderDash,lineDashOffset:e.borderDashOffset,lineJoin:e.borderJoinStyle,lineWidth:e.borderWidth,strokeStyle:e.borderColor,pointStyle:e.pointStyle,datasetIndex:i}},this):[]}}},legendCallback:function(t){var e=[];e.push('
      ');for(var i=0;i'),t.data.datasets[i].label&&e.push(t.data.datasets[i].label),e.push("");return e.push("
    "),e.join("")}});var gn=pt.extend({initialize:function(t){ut.extend(this,t),this.legendHitBoxes=[],this._hoveredItem=null,this.doughnutMode=!1},beforeUpdate:hn,update:function(t,e,i){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:hn,beforeSetDimensions:hn,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:hn,beforeBuildLabels:hn,buildLabels:function(){var t=this,e=t.options.labels||{},i=ut.callback(e.generateLabels,[t.chart],t)||[];e.filter&&(i=i.filter(function(i){return e.filter(i,t.chart.data)})),t.options.reverse&&i.reverse(),t.legendItems=i},afterBuildLabels:hn,beforeFit:hn,fit:function(){var t=this,e=t.options,i=e.labels,n=e.display,a=t.ctx,o=ut.options._parseFont(i),r=o.size,s=t.legendHitBoxes=[],l=t.minSize,d=t.isHorizontal();if(d?(l.width=t.maxWidth,l.height=n?10:0):(l.width=n?10:0,l.height=t.maxHeight),n)if(a.font=o.string,d){var u=t.lineWidths=[0],h=0;a.textAlign="left",a.textBaseline="top",ut.each(t.legendItems,function(t,e){var n=fn(i,r)+r/2+a.measureText(t.text).width;(0===e||u[u.length-1]+n+i.padding>l.width)&&(h+=r+i.padding,u[u.length-(e>0?0:1)]=i.padding),s[e]={left:0,top:0,width:n,height:r},u[u.length-1]+=n+i.padding}),l.height+=h}else{var c=i.padding,f=t.columnWidths=[],g=i.padding,p=0,m=0,v=r+c;ut.each(t.legendItems,function(t,e){var n=fn(i,r)+r/2+a.measureText(t.text).width;e>0&&m+v>l.height-c&&(g+=p+i.padding,f.push(p),p=0,m=0),p=Math.max(p,n),m+=v,s[e]={left:0,top:0,width:n,height:r}}),g+=p,f.push(p),l.width+=g}t.width=l.width,t.height=l.height},afterFit:hn,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var t=this,e=t.options,i=e.labels,n=st.global,a=n.defaultColor,o=n.elements.line,r=t.width,s=t.lineWidths;if(e.display){var l,d=t.ctx,u=cn(i.fontColor,n.defaultFontColor),h=ut.options._parseFont(i),c=h.size;d.textAlign="left",d.textBaseline="middle",d.lineWidth=.5,d.strokeStyle=u,d.fillStyle=u,d.font=h.string;var f=fn(i,c),g=t.legendHitBoxes,p=t.isHorizontal();l=p?{x:t.left+(r-s[0])/2+i.padding,y:t.top+i.padding,line:0}:{x:t.left+i.padding,y:t.top+i.padding,line:0};var m=c+i.padding;ut.each(t.legendItems,function(n,u){var h=d.measureText(n.text).width,v=f+c/2+h,b=l.x,x=l.y;p?u>0&&b+v+i.padding>t.left+t.minSize.width&&(x=l.y+=m,l.line++,b=l.x=t.left+(r-s[l.line])/2+i.padding):u>0&&x+m>t.top+t.minSize.height&&(b=l.x=b+t.columnWidths[l.line]+i.padding,x=l.y=t.top+i.padding,l.line++),function(t,i,n){if(!(isNaN(f)||f<=0)){d.save();var r=cn(n.lineWidth,o.borderWidth);if(d.fillStyle=cn(n.fillStyle,a),d.lineCap=cn(n.lineCap,o.borderCapStyle),d.lineDashOffset=cn(n.lineDashOffset,o.borderDashOffset),d.lineJoin=cn(n.lineJoin,o.borderJoinStyle),d.lineWidth=r,d.strokeStyle=cn(n.strokeStyle,a),d.setLineDash&&d.setLineDash(cn(n.lineDash,o.borderDash)),e.labels&&e.labels.usePointStyle){var s=f*Math.SQRT2/2,l=t+f/2,u=i+c/2;ut.canvas.drawPoint(d,n.pointStyle,s,l,u)}else 0!==r&&d.strokeRect(t,i,f,c),d.fillRect(t,i,f,c);d.restore()}}(b,x,n),g[u].left=b,g[u].top=x,function(t,e,i,n){var a=c/2,o=f+a+t,r=e+a;d.fillText(i.text,o,r),i.hidden&&(d.beginPath(),d.lineWidth=2,d.moveTo(o,r),d.lineTo(o+n,r),d.stroke())}(b,x,n,h),p?l.x+=v+i.padding:l.y+=m})}},_getLegendItemAt:function(t,e){var i,n,a,o=this;if(t>=o.left&&t<=o.right&&e>=o.top&&e<=o.bottom)for(a=o.legendHitBoxes,i=0;i=(n=a[i]).left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height)return o.legendItems[i];return null},handleEvent:function(t){var e,i=this,n=i.options,a="mouseup"===t.type?"click":t.type;if("mousemove"===a){if(!n.onHover&&!n.onLeave)return}else{if("click"!==a)return;if(!n.onClick)return}e=i._getLegendItemAt(t.x,t.y),"click"===a?e&&n.onClick&&n.onClick.call(i,t.native,e):(n.onLeave&&e!==i._hoveredItem&&(i._hoveredItem&&n.onLeave.call(i,t.native,i._hoveredItem),i._hoveredItem=e),n.onHover&&e&&n.onHover.call(i,t.native,e))}});function pn(t,e){var i=new gn({ctx:t.ctx,options:e,chart:t});ke.configure(t,i,e),ke.addBox(t,i),t.legend=i}var mn={id:"legend",_element:gn,beforeInit:function(t){var e=t.options.legend;e&&pn(t,e)},beforeUpdate:function(t){var e=t.options.legend,i=t.legend;e?(ut.mergeIf(e,st.global.legend),i?(ke.configure(t,i,e),i.options=e):pn(t,e)):i&&(ke.removeBox(t,i),delete t.legend)},afterEvent:function(t,e){var i=t.legend;i&&i.handleEvent(e)}},vn=ut.noop;st._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,padding:10,position:"top",text:"",weight:2e3}});var bn=pt.extend({initialize:function(t){ut.extend(this,t),this.legendHitBoxes=[]},beforeUpdate:vn,update:function(t,e,i){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:vn,beforeSetDimensions:vn,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:vn,beforeBuildLabels:vn,buildLabels:vn,afterBuildLabels:vn,beforeFit:vn,fit:function(){var t=this,e=t.options,i=e.display,n=t.minSize,a=ut.isArray(e.text)?e.text.length:1,o=ut.options._parseFont(e),r=i?a*o.lineHeight+2*e.padding:0;t.isHorizontal()?(n.width=t.maxWidth,n.height=r):(n.width=r,n.height=t.maxHeight),t.width=n.width,t.height=n.height},afterFit:vn,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var t=this,e=t.ctx,i=t.options;if(i.display){var n,a,o,r=ut.options._parseFont(i),s=r.lineHeight,l=s/2+i.padding,d=0,u=t.top,h=t.left,c=t.bottom,f=t.right;e.fillStyle=ut.valueOrDefault(i.fontColor,st.global.defaultFontColor),e.font=r.string,t.isHorizontal()?(a=h+(f-h)/2,o=u+l,n=f-h):(a="left"===i.position?h+l:f-l,o=u+(c-u)/2,n=c-u,d=Math.PI*("left"===i.position?-.5:.5)),e.save(),e.translate(a,o),e.rotate(d),e.textAlign="center",e.textBaseline="middle";var g=i.text;if(ut.isArray(g))for(var p=0,m=0;m=0;n--){var a=t[n];if(e(a))return a}},ut.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},ut.almostEquals=function(t,e,i){return Math.abs(t-e)t},ut.max=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.max(t,e)},Number.NEGATIVE_INFINITY)},ut.min=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.min(t,e)},Number.POSITIVE_INFINITY)},ut.sign=Math.sign?function(t){return Math.sign(t)}:function(t){return 0==(t=+t)||isNaN(t)?t:t>0?1:-1},ut.log10=Math.log10?function(t){return Math.log10(t)}:function(t){var e=Math.log(t)*Math.LOG10E,i=Math.round(e);return t===Math.pow(10,i)?i:e},ut.toRadians=function(t){return t*(Math.PI/180)},ut.toDegrees=function(t){return t*(180/Math.PI)},ut._decimalPlaces=function(t){if(ut.isFinite(t)){for(var e=1,i=0;Math.round(t*e)/e!==t;)e*=10,i++;return i}},ut.getAngleFromPoint=function(t,e){var i=e.x-t.x,n=e.y-t.y,a=Math.sqrt(i*i+n*n),o=Math.atan2(n,i);return o<-.5*Math.PI&&(o+=2*Math.PI),{angle:o,distance:a}},ut.distanceBetweenPoints=function(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))},ut.aliasPixel=function(t){return t%2==0?0:.5},ut._alignPixel=function(t,e,i){var n=t.currentDevicePixelRatio,a=i/2;return Math.round((e-a)*n)/n+a},ut.splineCurve=function(t,e,i,n){var a=t.skip?e:t,o=e,r=i.skip?e:i,s=Math.sqrt(Math.pow(o.x-a.x,2)+Math.pow(o.y-a.y,2)),l=Math.sqrt(Math.pow(r.x-o.x,2)+Math.pow(r.y-o.y,2)),d=s/(s+l),u=l/(s+l),h=n*(d=isNaN(d)?0:d),c=n*(u=isNaN(u)?0:u);return{previous:{x:o.x-h*(r.x-a.x),y:o.y-h*(r.y-a.y)},next:{x:o.x+c*(r.x-a.x),y:o.y+c*(r.y-a.y)}}},ut.EPSILON=Number.EPSILON||1e-14,ut.splineCurveMonotone=function(t){var e,i,n,a,o,r,s,l,d,u=(t||[]).map(function(t){return{model:t._model,deltaK:0,mK:0}}),h=u.length;for(e=0;e0?u[e-1]:null,(a=e0?u[e-1]:null,a=e=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},ut.previousItem=function(t,e,i){return i?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},ut.niceNum=function(t,e){var i=Math.floor(ut.log10(t)),n=t/Math.pow(10,i);return(e?n<1.5?1:n<3?2:n<7?5:10:n<=1?1:n<=2?2:n<=5?5:10)*Math.pow(10,i)},ut.requestAnimFrame="undefined"==typeof window?function(t){t()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)},ut.getRelativePosition=function(t,e){var i,n,a=t.originalEvent||t,o=t.target||t.srcElement,r=o.getBoundingClientRect(),s=a.touches;s&&s.length>0?(i=s[0].clientX,n=s[0].clientY):(i=a.clientX,n=a.clientY);var l=parseFloat(ut.getStyle(o,"padding-left")),d=parseFloat(ut.getStyle(o,"padding-top")),u=parseFloat(ut.getStyle(o,"padding-right")),h=parseFloat(ut.getStyle(o,"padding-bottom")),c=r.right-r.left-l-u,f=r.bottom-r.top-d-h;return{x:i=Math.round((i-r.left-l)/c*o.width/e.currentDevicePixelRatio),y:n=Math.round((n-r.top-d)/f*o.height/e.currentDevicePixelRatio)}},ut.getConstraintWidth=function(t){return i(t,"max-width","clientWidth")},ut.getConstraintHeight=function(t){return i(t,"max-height","clientHeight")},ut._calculatePadding=function(t,e,i){return(e=ut.getStyle(t,e)).indexOf("%")>-1?i*parseInt(e,10)/100:parseInt(e,10)},ut._getParentNode=function(t){var e=t.parentNode;return e&&"[object ShadowRoot]"===e.toString()&&(e=e.host),e},ut.getMaximumWidth=function(t){var e=ut._getParentNode(t);if(!e)return t.clientWidth;var i=e.clientWidth,n=i-ut._calculatePadding(e,"padding-left",i)-ut._calculatePadding(e,"padding-right",i),a=ut.getConstraintWidth(t);return isNaN(a)?n:Math.min(n,a)},ut.getMaximumHeight=function(t){var e=ut._getParentNode(t);if(!e)return t.clientHeight;var i=e.clientHeight,n=i-ut._calculatePadding(e,"padding-top",i)-ut._calculatePadding(e,"padding-bottom",i),a=ut.getConstraintHeight(t);return isNaN(a)?n:Math.min(n,a)},ut.getStyle=function(t,e){return t.currentStyle?t.currentStyle[e]:document.defaultView.getComputedStyle(t,null).getPropertyValue(e)},ut.retinaScale=function(t,e){var i=t.currentDevicePixelRatio=e||"undefined"!=typeof window&&window.devicePixelRatio||1;if(1!==i){var n=t.canvas,a=t.height,o=t.width;n.height=a*i,n.width=o*i,t.ctx.scale(i,i),n.style.height||n.style.width||(n.style.height=a+"px",n.style.width=o+"px")}},ut.fontString=function(t,e,i){return e+" "+t+"px "+i},ut.longestText=function(t,e,i,n){var a=(n=n||{}).data=n.data||{},o=n.garbageCollect=n.garbageCollect||[];n.font!==e&&(a=n.data={},o=n.garbageCollect=[],n.font=e),t.font=e;var r=0;ut.each(i,function(e){null!=e&&!0!==ut.isArray(e)?r=ut.measureText(t,a,o,r,e):ut.isArray(e)&&ut.each(e,function(e){null==e||ut.isArray(e)||(r=ut.measureText(t,a,o,r,e))})});var s=o.length/2;if(s>i.length){for(var l=0;ln&&(n=o),n},ut.numberOfLabelLines=function(t){var e=1;return ut.each(t,function(t){ut.isArray(t)&&t.length>e&&(e=t.length)}),e},ut.color=X?function(t){return t instanceof CanvasGradient&&(t=st.global.defaultColor),X(t)}:function(t){return console.error("Color.js not found!"),t},ut.getHoverColor=function(t){return t instanceof CanvasPattern||t instanceof CanvasGradient?t:ut.color(t).saturate(.5).darken(.1).rgbString()}}(),ai._adapters=si,ai.Animation=vt,ai.animationService=bt,ai.controllers=ue,ai.DatasetController=Mt,ai.defaults=st,ai.Element=pt,ai.elements=Wt,ai.Interaction=ve,ai.layouts=ke,ai.platform=Ve,ai.plugins=Ee,ai.Scale=fi,ai.scaleService=He,ai.Ticks=li,ai.Tooltip=Je,ai.helpers.each(tn,function(t,e){ai.scaleService.registerScaleType(e,t,t._defaults)}),yn)yn.hasOwnProperty(_n)&&ai.plugins.register(yn[_n]);ai.platform.initialize();var Cn=ai;return"undefined"!=typeof window&&(window.Chart=ai),ai.Chart=ai,ai.Legend=yn.legend._element,ai.Title=yn.title._element,ai.pluginService=ai.plugins,ai.PluginBase=ai.Element.extend({}),ai.canvasHelpers=ai.helpers.canvas,ai.layoutService=ai.layouts,ai.LinearScaleBase=bi,ai.helpers.each(["Bar","Bubble","Doughnut","Line","PolarArea","Radar","Scatter"],function(t){ai[t]=function(e,i){return new ai(e,ai.helpers.merge(i||{},{type:t.charAt(0).toLowerCase()+t.slice(1)}))}}),Cn}); diff --git a/assets/vendors/js/charts/echarts/echarts.js b/assets/vendors/js/charts/echarts/echarts.js new file mode 100644 index 0000000..8eb98f2 --- /dev/null +++ b/assets/vendors/js/charts/echarts/echarts.js @@ -0,0 +1,94906 @@ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (factory((global.echarts = {}))); +}(this, (function (exports) { 'use strict'; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// (1) The code `if (__DEV__) ...` can be removed by build tool. +// (2) If intend to use `__DEV__`, this module should be imported. Use a global +// variable `__DEV__` may cause that miss the declaration (see #6535), or the +// declaration is behind of the using position (for example in `Model.extent`, +// And tools like rollup can not analysis the dependency if not import). + +var dev; + +// In browser +if (typeof window !== 'undefined') { + dev = window.__DEV__; +} +// In node +else if (typeof global !== 'undefined') { + dev = global.__DEV__; +} + +if (typeof dev === 'undefined') { + dev = true; +} + +var __DEV__ = dev; + +/** + * zrender: 生成唯一id + * + * @author errorrik (errorrik@gmail.com) + */ + +var idStart = 0x0907; + +var guid = function () { + return idStart++; +}; + +/** + * echarts设备环境识别 + * + * @desc echarts基于Canvas,纯Javascript图表库,提供直观,生动,可交互,可个性化定制的数据统计图表。 + * @author firede[firede@firede.us] + * @desc thanks zepto. + */ + +var env = {}; + +if (typeof wx === 'object' && typeof wx.getSystemInfoSync === 'function') { + // In Weixin Application + env = { + browser: {}, + os: {}, + node: false, + wxa: true, // Weixin Application + canvasSupported: true, + svgSupported: false, + touchEventsSupported: true, + domSupported: false + }; +} +else if (typeof document === 'undefined' && typeof self !== 'undefined') { + // In worker + env = { + browser: {}, + os: {}, + node: false, + worker: true, + canvasSupported: true, + domSupported: false + }; +} +else if (typeof navigator === 'undefined') { + // In node + env = { + browser: {}, + os: {}, + node: true, + worker: false, + // Assume canvas is supported + canvasSupported: true, + svgSupported: true, + domSupported: false + }; +} +else { + env = detect(navigator.userAgent); +} + +var env$1 = env; + +// Zepto.js +// (c) 2010-2013 Thomas Fuchs +// Zepto.js may be freely distributed under the MIT license. + +function detect(ua) { + var os = {}; + var browser = {}; + // var webkit = ua.match(/Web[kK]it[\/]{0,1}([\d.]+)/); + // var android = ua.match(/(Android);?[\s\/]+([\d.]+)?/); + // var ipad = ua.match(/(iPad).*OS\s([\d_]+)/); + // var ipod = ua.match(/(iPod)(.*OS\s([\d_]+))?/); + // var iphone = !ipad && ua.match(/(iPhone\sOS)\s([\d_]+)/); + // var webos = ua.match(/(webOS|hpwOS)[\s\/]([\d.]+)/); + // var touchpad = webos && ua.match(/TouchPad/); + // var kindle = ua.match(/Kindle\/([\d.]+)/); + // var silk = ua.match(/Silk\/([\d._]+)/); + // var blackberry = ua.match(/(BlackBerry).*Version\/([\d.]+)/); + // var bb10 = ua.match(/(BB10).*Version\/([\d.]+)/); + // var rimtabletos = ua.match(/(RIM\sTablet\sOS)\s([\d.]+)/); + // var playbook = ua.match(/PlayBook/); + // var chrome = ua.match(/Chrome\/([\d.]+)/) || ua.match(/CriOS\/([\d.]+)/); + var firefox = ua.match(/Firefox\/([\d.]+)/); + // var safari = webkit && ua.match(/Mobile\//) && !chrome; + // var webview = ua.match(/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/) && !chrome; + var ie = ua.match(/MSIE\s([\d.]+)/) + // IE 11 Trident/7.0; rv:11.0 + || ua.match(/Trident\/.+?rv:(([\d.]+))/); + var edge = ua.match(/Edge\/([\d.]+)/); // IE 12 and 12+ + + var weChat = (/micromessenger/i).test(ua); + + // Todo: clean this up with a better OS/browser seperation: + // - discern (more) between multiple browsers on android + // - decide if kindle fire in silk mode is android or not + // - Firefox on Android doesn't specify the Android version + // - possibly devide in os, device and browser hashes + + // if (browser.webkit = !!webkit) browser.version = webkit[1]; + + // if (android) os.android = true, os.version = android[2]; + // if (iphone && !ipod) os.ios = os.iphone = true, os.version = iphone[2].replace(/_/g, '.'); + // if (ipad) os.ios = os.ipad = true, os.version = ipad[2].replace(/_/g, '.'); + // if (ipod) os.ios = os.ipod = true, os.version = ipod[3] ? ipod[3].replace(/_/g, '.') : null; + // if (webos) os.webos = true, os.version = webos[2]; + // if (touchpad) os.touchpad = true; + // if (blackberry) os.blackberry = true, os.version = blackberry[2]; + // if (bb10) os.bb10 = true, os.version = bb10[2]; + // if (rimtabletos) os.rimtabletos = true, os.version = rimtabletos[2]; + // if (playbook) browser.playbook = true; + // if (kindle) os.kindle = true, os.version = kindle[1]; + // if (silk) browser.silk = true, browser.version = silk[1]; + // if (!silk && os.android && ua.match(/Kindle Fire/)) browser.silk = true; + // if (chrome) browser.chrome = true, browser.version = chrome[1]; + if (firefox) { + browser.firefox = true; + browser.version = firefox[1]; + } + // if (safari && (ua.match(/Safari/) || !!os.ios)) browser.safari = true; + // if (webview) browser.webview = true; + + if (ie) { + browser.ie = true; + browser.version = ie[1]; + } + + if (edge) { + browser.edge = true; + browser.version = edge[1]; + } + + // It is difficult to detect WeChat in Win Phone precisely, because ua can + // not be set on win phone. So we do not consider Win Phone. + if (weChat) { + browser.weChat = true; + } + + // os.tablet = !!(ipad || playbook || (android && !ua.match(/Mobile/)) || + // (firefox && ua.match(/Tablet/)) || (ie && !ua.match(/Phone/) && ua.match(/Touch/))); + // os.phone = !!(!os.tablet && !os.ipod && (android || iphone || webos || + // (chrome && ua.match(/Android/)) || (chrome && ua.match(/CriOS\/([\d.]+)/)) || + // (firefox && ua.match(/Mobile/)) || (ie && ua.match(/Touch/)))); + + return { + browser: browser, + os: os, + node: false, + // 原生canvas支持,改极端点了 + // canvasSupported : !(browser.ie && parseFloat(browser.version) < 9) + canvasSupported: !!document.createElement('canvas').getContext, + svgSupported: typeof SVGRect !== 'undefined', + // works on most browsers + // IE10/11 does not support touch event, and MS Edge supports them but not by + // default, so we dont check navigator.maxTouchPoints for them here. + touchEventsSupported: 'ontouchstart' in window && !browser.ie && !browser.edge, + // . + pointerEventsSupported: 'onpointerdown' in window + // Firefox supports pointer but not by default, only MS browsers are reliable on pointer + // events currently. So we dont use that on other browsers unless tested sufficiently. + // Although IE 10 supports pointer event, it use old style and is different from the + // standard. So we exclude that. (IE 10 is hardly used on touch device) + && (browser.edge || (browser.ie && browser.version >= 11)), + // passiveSupported: detectPassiveSupport() + domSupported: typeof document !== 'undefined' + }; +} + +// See https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md#feature-detection +// function detectPassiveSupport() { +// // Test via a getter in the options object to see if the passive property is accessed +// var supportsPassive = false; +// try { +// var opts = Object.defineProperty({}, 'passive', { +// get: function() { +// supportsPassive = true; +// } +// }); +// window.addEventListener('testPassive', function() {}, opts); +// } catch (e) { +// } +// return supportsPassive; +// } + +/** + * @module zrender/core/util + */ + +// 用于处理merge时无法遍历Date等对象的问题 +var BUILTIN_OBJECT = { + '[object Function]': 1, + '[object RegExp]': 1, + '[object Date]': 1, + '[object Error]': 1, + '[object CanvasGradient]': 1, + '[object CanvasPattern]': 1, + // For node-canvas + '[object Image]': 1, + '[object Canvas]': 1 +}; + +var TYPED_ARRAY = { + '[object Int8Array]': 1, + '[object Uint8Array]': 1, + '[object Uint8ClampedArray]': 1, + '[object Int16Array]': 1, + '[object Uint16Array]': 1, + '[object Int32Array]': 1, + '[object Uint32Array]': 1, + '[object Float32Array]': 1, + '[object Float64Array]': 1 +}; + +var objToString = Object.prototype.toString; + +var arrayProto = Array.prototype; +var nativeForEach = arrayProto.forEach; +var nativeFilter = arrayProto.filter; +var nativeSlice = arrayProto.slice; +var nativeMap = arrayProto.map; +var nativeReduce = arrayProto.reduce; + +// Avoid assign to an exported variable, for transforming to cjs. +var methods = {}; + +function $override(name, fn) { + // Clear ctx instance for different environment + if (name === 'createCanvas') { + _ctx = null; + } + + methods[name] = fn; +} + +/** + * Those data types can be cloned: + * Plain object, Array, TypedArray, number, string, null, undefined. + * Those data types will be assgined using the orginal data: + * BUILTIN_OBJECT + * Instance of user defined class will be cloned to a plain object, without + * properties in prototype. + * Other data types is not supported (not sure what will happen). + * + * Caution: do not support clone Date, for performance consideration. + * (There might be a large number of date in `series.data`). + * So date should not be modified in and out of echarts. + * + * @param {*} source + * @return {*} new + */ +function clone(source) { + if (source == null || typeof source !== 'object') { + return source; + } + + var result = source; + var typeStr = objToString.call(source); + + if (typeStr === '[object Array]') { + if (!isPrimitive(source)) { + result = []; + for (var i = 0, len = source.length; i < len; i++) { + result[i] = clone(source[i]); + } + } + } + else if (TYPED_ARRAY[typeStr]) { + if (!isPrimitive(source)) { + var Ctor = source.constructor; + if (source.constructor.from) { + result = Ctor.from(source); + } + else { + result = new Ctor(source.length); + for (var i = 0, len = source.length; i < len; i++) { + result[i] = clone(source[i]); + } + } + } + } + else if (!BUILTIN_OBJECT[typeStr] && !isPrimitive(source) && !isDom(source)) { + result = {}; + for (var key in source) { + if (source.hasOwnProperty(key)) { + result[key] = clone(source[key]); + } + } + } + + return result; +} + +/** + * @memberOf module:zrender/core/util + * @param {*} target + * @param {*} source + * @param {boolean} [overwrite=false] + */ +function merge(target, source, overwrite) { + // We should escapse that source is string + // and enter for ... in ... + if (!isObject$1(source) || !isObject$1(target)) { + return overwrite ? clone(source) : target; + } + + for (var key in source) { + if (source.hasOwnProperty(key)) { + var targetProp = target[key]; + var sourceProp = source[key]; + + if (isObject$1(sourceProp) + && isObject$1(targetProp) + && !isArray(sourceProp) + && !isArray(targetProp) + && !isDom(sourceProp) + && !isDom(targetProp) + && !isBuiltInObject(sourceProp) + && !isBuiltInObject(targetProp) + && !isPrimitive(sourceProp) + && !isPrimitive(targetProp) + ) { + // 如果需要递归覆盖,就递归调用merge + merge(targetProp, sourceProp, overwrite); + } + else if (overwrite || !(key in target)) { + // 否则只处理overwrite为true,或者在目标对象中没有此属性的情况 + // NOTE,在 target[key] 不存在的时候也是直接覆盖 + target[key] = clone(source[key], true); + } + } + } + + return target; +} + +/** + * @param {Array} targetAndSources The first item is target, and the rests are source. + * @param {boolean} [overwrite=false] + * @return {*} target + */ +function mergeAll(targetAndSources, overwrite) { + var result = targetAndSources[0]; + for (var i = 1, len = targetAndSources.length; i < len; i++) { + result = merge(result, targetAndSources[i], overwrite); + } + return result; +} + +/** + * @param {*} target + * @param {*} source + * @memberOf module:zrender/core/util + */ +function extend(target, source) { + for (var key in source) { + if (source.hasOwnProperty(key)) { + target[key] = source[key]; + } + } + return target; +} + +/** + * @param {*} target + * @param {*} source + * @param {boolean} [overlay=false] + * @memberOf module:zrender/core/util + */ +function defaults(target, source, overlay) { + for (var key in source) { + if (source.hasOwnProperty(key) + && (overlay ? source[key] != null : target[key] == null) + ) { + target[key] = source[key]; + } + } + return target; +} + +var createCanvas = function () { + return methods.createCanvas(); +}; + +methods.createCanvas = function () { + return document.createElement('canvas'); +}; + +// FIXME +var _ctx; + +function getContext() { + if (!_ctx) { + // Use util.createCanvas instead of createCanvas + // because createCanvas may be overwritten in different environment + _ctx = createCanvas().getContext('2d'); + } + return _ctx; +} + +/** + * 查询数组中元素的index + * @memberOf module:zrender/core/util + */ +function indexOf(array, value) { + if (array) { + if (array.indexOf) { + return array.indexOf(value); + } + for (var i = 0, len = array.length; i < len; i++) { + if (array[i] === value) { + return i; + } + } + } + return -1; +} + +/** + * 构造类继承关系 + * + * @memberOf module:zrender/core/util + * @param {Function} clazz 源类 + * @param {Function} baseClazz 基类 + */ +function inherits(clazz, baseClazz) { + var clazzPrototype = clazz.prototype; + function F() {} + F.prototype = baseClazz.prototype; + clazz.prototype = new F(); + + for (var prop in clazzPrototype) { + clazz.prototype[prop] = clazzPrototype[prop]; + } + clazz.prototype.constructor = clazz; + clazz.superClass = baseClazz; +} + +/** + * @memberOf module:zrender/core/util + * @param {Object|Function} target + * @param {Object|Function} sorce + * @param {boolean} overlay + */ +function mixin(target, source, overlay) { + target = 'prototype' in target ? target.prototype : target; + source = 'prototype' in source ? source.prototype : source; + + defaults(target, source, overlay); +} + +/** + * Consider typed array. + * @param {Array|TypedArray} data + */ +function isArrayLike(data) { + if (!data) { + return; + } + if (typeof data === 'string') { + return false; + } + return typeof data.length === 'number'; +} + +/** + * 数组或对象遍历 + * @memberOf module:zrender/core/util + * @param {Object|Array} obj + * @param {Function} cb + * @param {*} [context] + */ +function each$1(obj, cb, context) { + if (!(obj && cb)) { + return; + } + if (obj.forEach && obj.forEach === nativeForEach) { + obj.forEach(cb, context); + } + else if (obj.length === +obj.length) { + for (var i = 0, len = obj.length; i < len; i++) { + cb.call(context, obj[i], i, obj); + } + } + else { + for (var key in obj) { + if (obj.hasOwnProperty(key)) { + cb.call(context, obj[key], key, obj); + } + } + } +} + +/** + * 数组映射 + * @memberOf module:zrender/core/util + * @param {Array} obj + * @param {Function} cb + * @param {*} [context] + * @return {Array} + */ +function map(obj, cb, context) { + if (!(obj && cb)) { + return; + } + if (obj.map && obj.map === nativeMap) { + return obj.map(cb, context); + } + else { + var result = []; + for (var i = 0, len = obj.length; i < len; i++) { + result.push(cb.call(context, obj[i], i, obj)); + } + return result; + } +} + +/** + * @memberOf module:zrender/core/util + * @param {Array} obj + * @param {Function} cb + * @param {Object} [memo] + * @param {*} [context] + * @return {Array} + */ +function reduce(obj, cb, memo, context) { + if (!(obj && cb)) { + return; + } + if (obj.reduce && obj.reduce === nativeReduce) { + return obj.reduce(cb, memo, context); + } + else { + for (var i = 0, len = obj.length; i < len; i++) { + memo = cb.call(context, memo, obj[i], i, obj); + } + return memo; + } +} + +/** + * 数组过滤 + * @memberOf module:zrender/core/util + * @param {Array} obj + * @param {Function} cb + * @param {*} [context] + * @return {Array} + */ +function filter(obj, cb, context) { + if (!(obj && cb)) { + return; + } + if (obj.filter && obj.filter === nativeFilter) { + return obj.filter(cb, context); + } + else { + var result = []; + for (var i = 0, len = obj.length; i < len; i++) { + if (cb.call(context, obj[i], i, obj)) { + result.push(obj[i]); + } + } + return result; + } +} + +/** + * 数组项查找 + * @memberOf module:zrender/core/util + * @param {Array} obj + * @param {Function} cb + * @param {*} [context] + * @return {*} + */ +function find(obj, cb, context) { + if (!(obj && cb)) { + return; + } + for (var i = 0, len = obj.length; i < len; i++) { + if (cb.call(context, obj[i], i, obj)) { + return obj[i]; + } + } +} + +/** + * @memberOf module:zrender/core/util + * @param {Function} func + * @param {*} context + * @return {Function} + */ +function bind(func, context) { + var args = nativeSlice.call(arguments, 2); + return function () { + return func.apply(context, args.concat(nativeSlice.call(arguments))); + }; +} + +/** + * @memberOf module:zrender/core/util + * @param {Function} func + * @return {Function} + */ +function curry(func) { + var args = nativeSlice.call(arguments, 1); + return function () { + return func.apply(this, args.concat(nativeSlice.call(arguments))); + }; +} + +/** + * @memberOf module:zrender/core/util + * @param {*} value + * @return {boolean} + */ +function isArray(value) { + return objToString.call(value) === '[object Array]'; +} + +/** + * @memberOf module:zrender/core/util + * @param {*} value + * @return {boolean} + */ +function isFunction$1(value) { + return typeof value === 'function'; +} + +/** + * @memberOf module:zrender/core/util + * @param {*} value + * @return {boolean} + */ +function isString(value) { + return objToString.call(value) === '[object String]'; +} + +/** + * @memberOf module:zrender/core/util + * @param {*} value + * @return {boolean} + */ +function isObject$1(value) { + // Avoid a V8 JIT bug in Chrome 19-20. + // See https://code.google.com/p/v8/issues/detail?id=2291 for more details. + var type = typeof value; + return type === 'function' || (!!value && type === 'object'); +} + +/** + * @memberOf module:zrender/core/util + * @param {*} value + * @return {boolean} + */ +function isBuiltInObject(value) { + return !!BUILTIN_OBJECT[objToString.call(value)]; +} + +/** + * @memberOf module:zrender/core/util + * @param {*} value + * @return {boolean} + */ +function isTypedArray(value) { + return !!TYPED_ARRAY[objToString.call(value)]; +} + +/** + * @memberOf module:zrender/core/util + * @param {*} value + * @return {boolean} + */ +function isDom(value) { + return typeof value === 'object' + && typeof value.nodeType === 'number' + && typeof value.ownerDocument === 'object'; +} + +/** + * Whether is exactly NaN. Notice isNaN('a') returns true. + * @param {*} value + * @return {boolean} + */ +function eqNaN(value) { + return value !== value; +} + +/** + * If value1 is not null, then return value1, otherwise judget rest of values. + * Low performance. + * @memberOf module:zrender/core/util + * @return {*} Final value + */ +function retrieve(values) { + for (var i = 0, len = arguments.length; i < len; i++) { + if (arguments[i] != null) { + return arguments[i]; + } + } +} + +function retrieve2(value0, value1) { + return value0 != null + ? value0 + : value1; +} + +function retrieve3(value0, value1, value2) { + return value0 != null + ? value0 + : value1 != null + ? value1 + : value2; +} + +/** + * @memberOf module:zrender/core/util + * @param {Array} arr + * @param {number} startIndex + * @param {number} endIndex + * @return {Array} + */ +function slice() { + return Function.call.apply(nativeSlice, arguments); +} + +/** + * Normalize css liked array configuration + * e.g. + * 3 => [3, 3, 3, 3] + * [4, 2] => [4, 2, 4, 2] + * [4, 3, 2] => [4, 3, 2, 3] + * @param {number|Array.} val + * @return {Array.} + */ +function normalizeCssArray(val) { + if (typeof (val) === 'number') { + return [val, val, val, val]; + } + var len = val.length; + if (len === 2) { + // vertical | horizontal + return [val[0], val[1], val[0], val[1]]; + } + else if (len === 3) { + // top | horizontal | bottom + return [val[0], val[1], val[2], val[1]]; + } + return val; +} + +/** + * @memberOf module:zrender/core/util + * @param {boolean} condition + * @param {string} message + */ +function assert$1(condition, message) { + if (!condition) { + throw new Error(message); + } +} + +/** + * @memberOf module:zrender/core/util + * @param {string} str string to be trimed + * @return {string} trimed string + */ +function trim(str) { + if (str == null) { + return null; + } + else if (typeof str.trim === 'function') { + return str.trim(); + } + else { + return str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''); + } +} + +var primitiveKey = '__ec_primitive__'; +/** + * Set an object as primitive to be ignored traversing children in clone or merge + */ +function setAsPrimitive(obj) { + obj[primitiveKey] = true; +} + +function isPrimitive(obj) { + return obj[primitiveKey]; +} + +/** + * @constructor + * @param {Object} obj Only apply `ownProperty`. + */ +function HashMap(obj) { + var isArr = isArray(obj); + // Key should not be set on this, otherwise + // methods get/set/... may be overrided. + this.data = {}; + var thisMap = this; + + (obj instanceof HashMap) + ? obj.each(visit) + : (obj && each$1(obj, visit)); + + function visit(value, key) { + isArr ? thisMap.set(value, key) : thisMap.set(key, value); + } +} + +HashMap.prototype = { + constructor: HashMap, + // Do not provide `has` method to avoid defining what is `has`. + // (We usually treat `null` and `undefined` as the same, different + // from ES6 Map). + get: function (key) { + return this.data.hasOwnProperty(key) ? this.data[key] : null; + }, + set: function (key, value) { + // Comparing with invocation chaining, `return value` is more commonly + // used in this case: `var someVal = map.set('a', genVal());` + return (this.data[key] = value); + }, + // Although util.each can be performed on this hashMap directly, user + // should not use the exposed keys, who are prefixed. + each: function (cb, context) { + context !== void 0 && (cb = bind(cb, context)); + for (var key in this.data) { + this.data.hasOwnProperty(key) && cb(this.data[key], key); + } + }, + // Do not use this method if performance sensitive. + removeKey: function (key) { + delete this.data[key]; + } +}; + +function createHashMap(obj) { + return new HashMap(obj); +} + +function concatArray(a, b) { + var newArray = new a.constructor(a.length + b.length); + for (var i = 0; i < a.length; i++) { + newArray[i] = a[i]; + } + var offset = a.length; + for (i = 0; i < b.length; i++) { + newArray[i + offset] = b[i]; + } + return newArray; +} + + +function noop() {} + + +var zrUtil = (Object.freeze || Object)({ + $override: $override, + clone: clone, + merge: merge, + mergeAll: mergeAll, + extend: extend, + defaults: defaults, + createCanvas: createCanvas, + getContext: getContext, + indexOf: indexOf, + inherits: inherits, + mixin: mixin, + isArrayLike: isArrayLike, + each: each$1, + map: map, + reduce: reduce, + filter: filter, + find: find, + bind: bind, + curry: curry, + isArray: isArray, + isFunction: isFunction$1, + isString: isString, + isObject: isObject$1, + isBuiltInObject: isBuiltInObject, + isTypedArray: isTypedArray, + isDom: isDom, + eqNaN: eqNaN, + retrieve: retrieve, + retrieve2: retrieve2, + retrieve3: retrieve3, + slice: slice, + normalizeCssArray: normalizeCssArray, + assert: assert$1, + trim: trim, + setAsPrimitive: setAsPrimitive, + isPrimitive: isPrimitive, + createHashMap: createHashMap, + concatArray: concatArray, + noop: noop +}); + +var ArrayCtor = typeof Float32Array === 'undefined' + ? Array + : Float32Array; + +/** + * 创建一个向量 + * @param {number} [x=0] + * @param {number} [y=0] + * @return {Vector2} + */ +function create(x, y) { + var out = new ArrayCtor(2); + if (x == null) { + x = 0; + } + if (y == null) { + y = 0; + } + out[0] = x; + out[1] = y; + return out; +} + +/** + * 复制向量数据 + * @param {Vector2} out + * @param {Vector2} v + * @return {Vector2} + */ +function copy(out, v) { + out[0] = v[0]; + out[1] = v[1]; + return out; +} + +/** + * 克隆一个向量 + * @param {Vector2} v + * @return {Vector2} + */ +function clone$1(v) { + var out = new ArrayCtor(2); + out[0] = v[0]; + out[1] = v[1]; + return out; +} + +/** + * 设置向量的两个项 + * @param {Vector2} out + * @param {number} a + * @param {number} b + * @return {Vector2} 结果 + */ +function set(out, a, b) { + out[0] = a; + out[1] = b; + return out; +} + +/** + * 向量相加 + * @param {Vector2} out + * @param {Vector2} v1 + * @param {Vector2} v2 + */ +function add(out, v1, v2) { + out[0] = v1[0] + v2[0]; + out[1] = v1[1] + v2[1]; + return out; +} + +/** + * 向量缩放后相加 + * @param {Vector2} out + * @param {Vector2} v1 + * @param {Vector2} v2 + * @param {number} a + */ +function scaleAndAdd(out, v1, v2, a) { + out[0] = v1[0] + v2[0] * a; + out[1] = v1[1] + v2[1] * a; + return out; +} + +/** + * 向量相减 + * @param {Vector2} out + * @param {Vector2} v1 + * @param {Vector2} v2 + */ +function sub(out, v1, v2) { + out[0] = v1[0] - v2[0]; + out[1] = v1[1] - v2[1]; + return out; +} + +/** + * 向量长度 + * @param {Vector2} v + * @return {number} + */ +function len(v) { + return Math.sqrt(lenSquare(v)); +} +var length = len; // jshint ignore:line + +/** + * 向量长度平方 + * @param {Vector2} v + * @return {number} + */ +function lenSquare(v) { + return v[0] * v[0] + v[1] * v[1]; +} +var lengthSquare = lenSquare; + +/** + * 向量乘法 + * @param {Vector2} out + * @param {Vector2} v1 + * @param {Vector2} v2 + */ +function mul(out, v1, v2) { + out[0] = v1[0] * v2[0]; + out[1] = v1[1] * v2[1]; + return out; +} + +/** + * 向量除法 + * @param {Vector2} out + * @param {Vector2} v1 + * @param {Vector2} v2 + */ +function div(out, v1, v2) { + out[0] = v1[0] / v2[0]; + out[1] = v1[1] / v2[1]; + return out; +} + +/** + * 向量点乘 + * @param {Vector2} v1 + * @param {Vector2} v2 + * @return {number} + */ +function dot(v1, v2) { + return v1[0] * v2[0] + v1[1] * v2[1]; +} + +/** + * 向量缩放 + * @param {Vector2} out + * @param {Vector2} v + * @param {number} s + */ +function scale(out, v, s) { + out[0] = v[0] * s; + out[1] = v[1] * s; + return out; +} + +/** + * 向量归一化 + * @param {Vector2} out + * @param {Vector2} v + */ +function normalize(out, v) { + var d = len(v); + if (d === 0) { + out[0] = 0; + out[1] = 0; + } + else { + out[0] = v[0] / d; + out[1] = v[1] / d; + } + return out; +} + +/** + * 计算向量间距离 + * @param {Vector2} v1 + * @param {Vector2} v2 + * @return {number} + */ +function distance(v1, v2) { + return Math.sqrt( + (v1[0] - v2[0]) * (v1[0] - v2[0]) + + (v1[1] - v2[1]) * (v1[1] - v2[1]) + ); +} +var dist = distance; + +/** + * 向量距离平方 + * @param {Vector2} v1 + * @param {Vector2} v2 + * @return {number} + */ +function distanceSquare(v1, v2) { + return (v1[0] - v2[0]) * (v1[0] - v2[0]) + + (v1[1] - v2[1]) * (v1[1] - v2[1]); +} +var distSquare = distanceSquare; + +/** + * 求负向量 + * @param {Vector2} out + * @param {Vector2} v + */ +function negate(out, v) { + out[0] = -v[0]; + out[1] = -v[1]; + return out; +} + +/** + * 插值两个点 + * @param {Vector2} out + * @param {Vector2} v1 + * @param {Vector2} v2 + * @param {number} t + */ +function lerp(out, v1, v2, t) { + out[0] = v1[0] + t * (v2[0] - v1[0]); + out[1] = v1[1] + t * (v2[1] - v1[1]); + return out; +} + +/** + * 矩阵左乘向量 + * @param {Vector2} out + * @param {Vector2} v + * @param {Vector2} m + */ +function applyTransform(out, v, m) { + var x = v[0]; + var y = v[1]; + out[0] = m[0] * x + m[2] * y + m[4]; + out[1] = m[1] * x + m[3] * y + m[5]; + return out; +} + +/** + * 求两个向量最小值 + * @param {Vector2} out + * @param {Vector2} v1 + * @param {Vector2} v2 + */ +function min(out, v1, v2) { + out[0] = Math.min(v1[0], v2[0]); + out[1] = Math.min(v1[1], v2[1]); + return out; +} + +/** + * 求两个向量最大值 + * @param {Vector2} out + * @param {Vector2} v1 + * @param {Vector2} v2 + */ +function max(out, v1, v2) { + out[0] = Math.max(v1[0], v2[0]); + out[1] = Math.max(v1[1], v2[1]); + return out; +} + + +var vector = (Object.freeze || Object)({ + create: create, + copy: copy, + clone: clone$1, + set: set, + add: add, + scaleAndAdd: scaleAndAdd, + sub: sub, + len: len, + length: length, + lenSquare: lenSquare, + lengthSquare: lengthSquare, + mul: mul, + div: div, + dot: dot, + scale: scale, + normalize: normalize, + distance: distance, + dist: dist, + distanceSquare: distanceSquare, + distSquare: distSquare, + negate: negate, + lerp: lerp, + applyTransform: applyTransform, + min: min, + max: max +}); + +// TODO Draggable for group +// FIXME Draggable on element which has parent rotation or scale +function Draggable() { + + this.on('mousedown', this._dragStart, this); + this.on('mousemove', this._drag, this); + this.on('mouseup', this._dragEnd, this); + this.on('globalout', this._dragEnd, this); + // this._dropTarget = null; + // this._draggingTarget = null; + + // this._x = 0; + // this._y = 0; +} + +Draggable.prototype = { + + constructor: Draggable, + + _dragStart: function (e) { + var draggingTarget = e.target; + if (draggingTarget && draggingTarget.draggable) { + this._draggingTarget = draggingTarget; + draggingTarget.dragging = true; + this._x = e.offsetX; + this._y = e.offsetY; + + this.dispatchToElement(param(draggingTarget, e), 'dragstart', e.event); + } + }, + + _drag: function (e) { + var draggingTarget = this._draggingTarget; + if (draggingTarget) { + + var x = e.offsetX; + var y = e.offsetY; + + var dx = x - this._x; + var dy = y - this._y; + this._x = x; + this._y = y; + + draggingTarget.drift(dx, dy, e); + this.dispatchToElement(param(draggingTarget, e), 'drag', e.event); + + var dropTarget = this.findHover(x, y, draggingTarget).target; + var lastDropTarget = this._dropTarget; + this._dropTarget = dropTarget; + + if (draggingTarget !== dropTarget) { + if (lastDropTarget && dropTarget !== lastDropTarget) { + this.dispatchToElement(param(lastDropTarget, e), 'dragleave', e.event); + } + if (dropTarget && dropTarget !== lastDropTarget) { + this.dispatchToElement(param(dropTarget, e), 'dragenter', e.event); + } + } + } + }, + + _dragEnd: function (e) { + var draggingTarget = this._draggingTarget; + + if (draggingTarget) { + draggingTarget.dragging = false; + } + + this.dispatchToElement(param(draggingTarget, e), 'dragend', e.event); + + if (this._dropTarget) { + this.dispatchToElement(param(this._dropTarget, e), 'drop', e.event); + } + + this._draggingTarget = null; + this._dropTarget = null; + } + +}; + +function param(target, e) { + return {target: target, topTarget: e && e.topTarget}; +} + +/** + * Event Mixin + * @module zrender/mixin/Eventful + * @author Kener (@Kener-林峰, kener.linfeng@gmail.com) + * pissang (https://www.github.com/pissang) + */ + +var arrySlice = Array.prototype.slice; + +/** + * Event dispatcher. + * + * @alias module:zrender/mixin/Eventful + * @constructor + * @param {Object} [eventProcessor] The object eventProcessor is the scope when + * `eventProcessor.xxx` called. + * @param {Function} [eventProcessor.normalizeQuery] + * param: {string|Object} Raw query. + * return: {string|Object} Normalized query. + * @param {Function} [eventProcessor.filter] Event will be dispatched only + * if it returns `true`. + * param: {string} eventType + * param: {string|Object} query + * return: {boolean} + * @param {Function} [eventProcessor.afterTrigger] Call after all handlers called. + * param: {string} eventType + */ +var Eventful = function (eventProcessor) { + this._$handlers = {}; + this._$eventProcessor = eventProcessor; +}; + +Eventful.prototype = { + + constructor: Eventful, + + /** + * The handler can only be triggered once, then removed. + * + * @param {string} event The event name. + * @param {string|Object} [query] Condition used on event filter. + * @param {Function} handler The event handler. + * @param {Object} context + */ + one: function (event, query, handler, context) { + return on(this, event, query, handler, context, true); + }, + + /** + * Bind a handler. + * + * @param {string} event The event name. + * @param {string|Object} [query] Condition used on event filter. + * @param {Function} handler The event handler. + * @param {Object} [context] + */ + on: function (event, query, handler, context) { + return on(this, event, query, handler, context, false); + }, + + /** + * Whether any handler has bound. + * + * @param {string} event + * @return {boolean} + */ + isSilent: function (event) { + var _h = this._$handlers; + return !_h[event] || !_h[event].length; + }, + + /** + * Unbind a event. + * + * @param {string} event The event name. + * @param {Function} [handler] The event handler. + */ + off: function (event, handler) { + var _h = this._$handlers; + + if (!event) { + this._$handlers = {}; + return this; + } + + if (handler) { + if (_h[event]) { + var newList = []; + for (var i = 0, l = _h[event].length; i < l; i++) { + if (_h[event][i].h !== handler) { + newList.push(_h[event][i]); + } + } + _h[event] = newList; + } + + if (_h[event] && _h[event].length === 0) { + delete _h[event]; + } + } + else { + delete _h[event]; + } + + return this; + }, + + /** + * Dispatch a event. + * + * @param {string} type The event name. + */ + trigger: function (type) { + var _h = this._$handlers[type]; + var eventProcessor = this._$eventProcessor; + + if (_h) { + var args = arguments; + var argLen = args.length; + + if (argLen > 3) { + args = arrySlice.call(args, 1); + } + + var len = _h.length; + for (var i = 0; i < len;) { + var hItem = _h[i]; + if (eventProcessor + && eventProcessor.filter + && hItem.query != null + && !eventProcessor.filter(type, hItem.query) + ) { + i++; + continue; + } + + // Optimize advise from backbone + switch (argLen) { + case 1: + hItem.h.call(hItem.ctx); + break; + case 2: + hItem.h.call(hItem.ctx, args[1]); + break; + case 3: + hItem.h.call(hItem.ctx, args[1], args[2]); + break; + default: + // have more than 2 given arguments + hItem.h.apply(hItem.ctx, args); + break; + } + + if (hItem.one) { + _h.splice(i, 1); + len--; + } + else { + i++; + } + } + } + + eventProcessor && eventProcessor.afterTrigger + && eventProcessor.afterTrigger(type); + + return this; + }, + + /** + * Dispatch a event with context, which is specified at the last parameter. + * + * @param {string} type The event name. + */ + triggerWithContext: function (type) { + var _h = this._$handlers[type]; + var eventProcessor = this._$eventProcessor; + + if (_h) { + var args = arguments; + var argLen = args.length; + + if (argLen > 4) { + args = arrySlice.call(args, 1, args.length - 1); + } + var ctx = args[args.length - 1]; + + var len = _h.length; + for (var i = 0; i < len;) { + var hItem = _h[i]; + if (eventProcessor + && eventProcessor.filter + && hItem.query != null + && !eventProcessor.filter(type, hItem.query) + ) { + i++; + continue; + } + + // Optimize advise from backbone + switch (argLen) { + case 1: + hItem.h.call(ctx); + break; + case 2: + hItem.h.call(ctx, args[1]); + break; + case 3: + hItem.h.call(ctx, args[1], args[2]); + break; + default: + // have more than 2 given arguments + hItem.h.apply(ctx, args); + break; + } + + if (hItem.one) { + _h.splice(i, 1); + len--; + } + else { + i++; + } + } + } + + eventProcessor && eventProcessor.afterTrigger + && eventProcessor.afterTrigger(type); + + return this; + } +}; + +function normalizeQuery(host, query) { + var eventProcessor = host._$eventProcessor; + if (query != null && eventProcessor && eventProcessor.normalizeQuery) { + query = eventProcessor.normalizeQuery(query); + } + return query; +} + +function on(eventful, event, query, handler, context, isOnce) { + var _h = eventful._$handlers; + + if (typeof query === 'function') { + context = handler; + handler = query; + query = null; + } + + if (!handler || !event) { + return eventful; + } + + query = normalizeQuery(eventful, query); + + if (!_h[event]) { + _h[event] = []; + } + + for (var i = 0; i < _h[event].length; i++) { + if (_h[event][i].h === handler) { + return eventful; + } + } + + var wrap = { + h: handler, + one: isOnce, + query: query, + ctx: context || eventful, + // FIXME + // Do not publish this feature util it is proved that it makes sense. + callAtLast: handler.zrEventfulCallAtLast + }; + + var lastIndex = _h[event].length - 1; + var lastWrap = _h[event][lastIndex]; + (lastWrap && lastWrap.callAtLast) + ? _h[event].splice(lastIndex, 0, wrap) + : _h[event].push(wrap); + + return eventful; +} + +/** + * The algoritm is learnt from + * https://franklinta.com/2014/09/08/computing-css-matrix3d-transforms/ + * And we made some optimization for matrix inversion. + * Other similar approaches: + * "cv::getPerspectiveTransform", "Direct Linear Transformation". + */ + +var LN2 = Math.log(2); + +function determinant(rows, rank, rowStart, rowMask, colMask, detCache) { + var cacheKey = rowMask + '-' + colMask; + var fullRank = rows.length; + + if (detCache.hasOwnProperty(cacheKey)) { + return detCache[cacheKey]; + } + + if (rank === 1) { + // In this case the colMask must be like: `11101111`. We can find the place of `0`. + var colStart = Math.round(Math.log(((1 << fullRank) - 1) & ~colMask) / LN2); + return rows[rowStart][colStart]; + } + + var subRowMask = rowMask | (1 << rowStart); + var subRowStart = rowStart + 1; + while (rowMask & (1 << subRowStart)) { + subRowStart++; + } + + var sum = 0; + for (var j = 0, colLocalIdx = 0; j < fullRank; j++) { + var colTag = 1 << j; + if (!(colTag & colMask)) { + sum += (colLocalIdx % 2 ? -1 : 1) * rows[rowStart][j] + // det(subMatrix(0, j)) + * determinant(rows, rank - 1, subRowStart, subRowMask, colMask | colTag, detCache); + colLocalIdx++; + } + } + + detCache[cacheKey] = sum; + + return sum; +} + +/** + * Usage: + * ```js + * var transformer = buildTransformer( + * [10, 44, 100, 44, 100, 300, 10, 300], + * [50, 54, 130, 14, 140, 330, 14, 220] + * ); + * var out = []; + * transformer && transformer([11, 33], out); + * ``` + * + * Notice: `buildTransformer` may take more than 10ms in some Android device. + * + * @param {Array.} src source four points, [x0, y0, x1, y1, x2, y2, x3, y3] + * @param {Array.} dest destination four points, [x0, y0, x1, y1, x2, y2, x3, y3] + * @return {Function} transformer If fail, return null/undefined. + */ +function buildTransformer(src, dest) { + var mA = [ + [src[0], src[1], 1, 0, 0, 0, -dest[0] * src[0], -dest[0] * src[1]], + [0, 0, 0, src[0], src[1], 1, -dest[1] * src[0], -dest[1] * src[1]], + [src[2], src[3], 1, 0, 0, 0, -dest[2] * src[2], -dest[2] * src[3]], + [0, 0, 0, src[2], src[3], 1, -dest[3] * src[2], -dest[3] * src[3]], + [src[4], src[5], 1, 0, 0, 0, -dest[4] * src[4], -dest[4] * src[5]], + [0, 0, 0, src[4], src[5], 1, -dest[5] * src[4], -dest[5] * src[5]], + [src[6], src[7], 1, 0, 0, 0, -dest[6] * src[6], -dest[6] * src[7]], + [0, 0, 0, src[6], src[7], 1, -dest[7] * src[6], -dest[7] * src[7]] + ]; + + var detCache = {}; + var det = determinant(mA, 8, 0, 0, 0, detCache); + if (det === 0) { + return; + } + + // `invert(mA) * dest`, that is, `adj(mA) / det * dest`. + var vh = []; + for (var i = 0; i < 8; i++) { + for (var j = 0; j < 8; j++) { + vh[j] == null && (vh[j] = 0); + vh[j] += ((i + j) % 2 ? -1 : 1) + // det(subMatrix(i, j)) + * determinant(mA, 7, i === 0 ? 1 : 0, 1 << i, 1 << j, detCache) + / det * dest[i]; + } + } + + return function (out, srcPointX, srcPointY) { + var pk = srcPointX * vh[6] + srcPointY * vh[7] + 1; + out[0] = (srcPointX * vh[0] + srcPointY * vh[1] + vh[2]) / pk; + out[1] = (srcPointX * vh[3] + srcPointY * vh[4] + vh[5]) / pk; + }; +} + +/** + * Utilities for mouse or touch events. + */ + +var isDomLevel2 = (typeof window !== 'undefined') && !!window.addEventListener; + +var MOUSE_EVENT_REG = /^(?:mouse|pointer|contextmenu|drag|drop)|click/; +var EVENT_SAVED_PROP = '___zrEVENTSAVED'; +var _calcOut = []; + +/** + * Get the `zrX` and `zrY`, which are relative to the top-left of + * the input `el`. + * CSS transform (2D & 3D) is supported. + * + * The strategy to fetch the coords: + * + If `calculate` is not set as `true`, users of this method should + * ensure that `el` is the same or the same size & location as `e.target`. + * Otherwise the result coords are probably not expected. Because we + * firstly try to get coords from e.offsetX/e.offsetY. + * + If `calculate` is set as `true`, the input `el` can be any element + * and we force to calculate the coords based on `el`. + * + The input `el` should be positionable (not position:static). + * + * The force `calculate` can be used in case like: + * When mousemove event triggered on ec tooltip, `e.target` is not `el`(zr painter.dom). + * + * @param {HTMLElement} el DOM element. + * @param {Event} e Mouse event or touch event. + * @param {Object} out Get `out.zrX` and `out.zrY` as the result. + * @param {boolean} [calculate=false] Whether to force calculate + * the coordinates but not use ones provided by browser. + */ +function clientToLocal(el, e, out, calculate) { + out = out || {}; + + // According to the W3C Working Draft, offsetX and offsetY should be relative + // to the padding edge of the target element. The only browser using this convention + // is IE. Webkit uses the border edge, Opera uses the content edge, and FireFox does + // not support the properties. + // (see http://www.jacklmoore.com/notes/mouse-position/) + // In zr painter.dom, padding edge equals to border edge. + + if (calculate || !env$1.canvasSupported) { + calculateZrXY(el, e, out); + } + // Caution: In FireFox, layerX/layerY Mouse position relative to the closest positioned + // ancestor element, so we should make sure el is positioned (e.g., not position:static). + // BTW1, Webkit don't return the same results as FF in non-simple cases (like add + // zoom-factor, overflow / opacity layers, transforms ...) + // BTW2, (ev.offsetY || ev.pageY - $(ev.target).offset().top) is not correct in preserve-3d. + // + // BTW3, In ff, offsetX/offsetY is always 0. + else if (env$1.browser.firefox && e.layerX != null && e.layerX !== e.offsetX) { + out.zrX = e.layerX; + out.zrY = e.layerY; + } + // For IE6+, chrome, safari, opera. (When will ff support offsetX?) + else if (e.offsetX != null) { + out.zrX = e.offsetX; + out.zrY = e.offsetY; + } + // For some other device, e.g., IOS safari. + else { + calculateZrXY(el, e, out); + } + + return out; +} + +function calculateZrXY(el, e, out) { + // BlackBerry 5, iOS 3 (original iPhone) don't have getBoundingRect. + if (el.getBoundingClientRect && env$1.domSupported) { + var ex = e.clientX; + var ey = e.clientY; + + if (el.nodeName.toUpperCase() === 'CANVAS') { + // Original approach, which do not support CSS transform. + // marker can not be locationed in a canvas container + // (getBoundingClientRect is always 0). We do not support + // that input a pre-created canvas to zr while using css + // transform in iOS. + var box = el.getBoundingClientRect(); + out.zrX = ex - box.left; + out.zrY = ey - box.top; + return; + } + else { + var saved = el[EVENT_SAVED_PROP] || (el[EVENT_SAVED_PROP] = {}); + var transformer = preparePointerTransformer(prepareCoordMarkers(el, saved), saved); + if (transformer) { + transformer(_calcOut, ex, ey); + out.zrX = _calcOut[0]; + out.zrY = _calcOut[1]; + return; + } + } + } + out.zrX = out.zrY = 0; +} + +function prepareCoordMarkers(el, saved) { + var markers = saved.markers; + if (markers) { + return markers; + } + + markers = saved.markers = []; + var propLR = ['left', 'right']; + var propTB = ['top', 'bottom']; + + for (var i = 0; i < 4; i++) { + var marker = document.createElement('div'); + var stl = marker.style; + var idxLR = i % 2; + var idxTB = (i >> 1) % 2; + stl.cssText = [ + 'position:absolute', + 'visibility: hidden', + 'padding: 0', + 'margin: 0', + 'border-width: 0', + 'width:0', + 'height:0', + // 'width: 5px', + // 'height: 5px', + propLR[idxLR] + ':0', + propTB[idxTB] + ':0', + propLR[1 - idxLR] + ':auto', + propTB[1 - idxTB] + ':auto', + '' + ].join('!important;'); + el.appendChild(marker); + markers.push(marker); + } + + return markers; +} + +function preparePointerTransformer(markers, saved) { + var transformer = saved.transformer; + var oldSrcCoords = saved.srcCoords; + var useOld = true; + var srcCoords = []; + var destCoords = []; + + for (var i = 0; i < 4; i++) { + var rect = markers[i].getBoundingClientRect(); + var ii = 2 * i; + var x = rect.left; + var y = rect.top; + srcCoords.push(x, y); + useOld &= oldSrcCoords && x === oldSrcCoords[ii] && y === oldSrcCoords[ii + 1]; + destCoords.push(markers[i].offsetLeft, markers[i].offsetTop); + } + + // Cache to avoid time consuming of `buildTransformer`. + return useOld + ? transformer + : ( + saved.srcCoords = srcCoords, + saved.transformer = buildTransformer(srcCoords, destCoords) + ); +} + +/** + * Normalize the coordinates of the input event. + * + * Get the `e.zrX` and `e.zrY`, which are relative to the top-left of + * the input `el`. + * Get `e.zrDelta` if using mouse wheel. + * Get `e.which`, see the comment inside this function. + * + * Do not calculate repeatly if `zrX` and `zrY` already exist. + * + * Notice: see comments in `clientToLocal`. check the relationship + * between the result coords and the parameters `el` and `calculate`. + * + * @param {HTMLElement} el DOM element. + * @param {Event} [e] Mouse event or touch event. For lagency IE, + * do not need to input it and `window.event` is used. + * @param {boolean} [calculate=false] Whether to force calculate + * the coordinates but not use ones provided by browser. + */ +function normalizeEvent(el, e, calculate) { + + e = e || window.event; + + if (e.zrX != null) { + return e; + } + + var eventType = e.type; + var isTouch = eventType && eventType.indexOf('touch') >= 0; + + if (!isTouch) { + clientToLocal(el, e, e, calculate); + e.zrDelta = (e.wheelDelta) ? e.wheelDelta / 120 : -(e.detail || 0) / 3; + } + else { + var touch = eventType !== 'touchend' + ? e.targetTouches[0] + : e.changedTouches[0]; + touch && clientToLocal(el, touch, e, calculate); + } + + // Add which for click: 1 === left; 2 === middle; 3 === right; otherwise: 0; + // See jQuery: https://github.com/jquery/jquery/blob/master/src/event.js + // If e.which has been defined, it may be readonly, + // see: https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/which + var button = e.button; + if (e.which == null && button !== undefined && MOUSE_EVENT_REG.test(e.type)) { + e.which = (button & 1 ? 1 : (button & 2 ? 3 : (button & 4 ? 2 : 0))); + } + // [Caution]: `e.which` from browser is not always reliable. For example, + // when press left button and `mousemove (pointermove)` in Edge, the `e.which` + // is 65536 and the `e.button` is -1. But the `mouseup (pointerup)` and + // `mousedown (pointerdown)` is the same as Chrome does. + + return e; +} + +/** + * @param {HTMLElement} el + * @param {string} name + * @param {Function} handler + */ +function addEventListener(el, name, handler) { + if (isDomLevel2) { + // Reproduct the console warning: + // [Violation] Added non-passive event listener to a scroll-blocking event. + // Consider marking event handler as 'passive' to make the page more responsive. + // Just set console log level: verbose in chrome dev tool. + // then the warning log will be printed when addEventListener called. + // See https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md + // We have not yet found a neat way to using passive. Because in zrender the dom event + // listener delegate all of the upper events of element. Some of those events need + // to prevent default. For example, the feature `preventDefaultMouseMove` of echarts. + // Before passive can be adopted, these issues should be considered: + // (1) Whether and how a zrender user specifies an event listener passive. And by default, + // passive or not. + // (2) How to tread that some zrender event listener is passive, and some is not. If + // we use other way but not preventDefault of mousewheel and touchmove, browser + // compatibility should be handled. + + // var opts = (env.passiveSupported && name === 'mousewheel') + // ? {passive: true} + // // By default, the third param of el.addEventListener is `capture: false`. + // : void 0; + // el.addEventListener(name, handler /* , opts */); + el.addEventListener(name, handler); + } + else { + el.attachEvent('on' + name, handler); + } +} + +function removeEventListener(el, name, handler) { + if (isDomLevel2) { + el.removeEventListener(name, handler); + } + else { + el.detachEvent('on' + name, handler); + } +} + +/** + * preventDefault and stopPropagation. + * Notice: do not use this method in zrender. It can only be + * used by upper applications if necessary. + * + * @param {Event} e A mouse or touch event. + */ +var stop = isDomLevel2 + ? function (e) { + e.preventDefault(); + e.stopPropagation(); + e.cancelBubble = true; + } + : function (e) { + e.returnValue = false; + e.cancelBubble = true; + }; + +/** + * This method only works for mouseup and mousedown. The functionality is restricted + * for fault tolerance, See the `e.which` compatibility above. + * + * @param {MouseEvent} e + * @return {boolean} + */ +function isMiddleOrRightButtonOnMouseUpDown(e) { + return e.which === 2 || e.which === 3; +} + +/** + * To be removed. + * @deprecated + */ + +/** + * Only implements needed gestures for mobile. + */ + +var GestureMgr = function () { + + /** + * @private + * @type {Array.} + */ + this._track = []; +}; + +GestureMgr.prototype = { + + constructor: GestureMgr, + + recognize: function (event, target, root) { + this._doTrack(event, target, root); + return this._recognize(event); + }, + + clear: function () { + this._track.length = 0; + return this; + }, + + _doTrack: function (event, target, root) { + var touches = event.touches; + + if (!touches) { + return; + } + + var trackItem = { + points: [], + touches: [], + target: target, + event: event + }; + + for (var i = 0, len = touches.length; i < len; i++) { + var touch = touches[i]; + var pos = clientToLocal(root, touch, {}); + trackItem.points.push([pos.zrX, pos.zrY]); + trackItem.touches.push(touch); + } + + this._track.push(trackItem); + }, + + _recognize: function (event) { + for (var eventName in recognizers) { + if (recognizers.hasOwnProperty(eventName)) { + var gestureInfo = recognizers[eventName](this._track, event); + if (gestureInfo) { + return gestureInfo; + } + } + } + } +}; + +function dist$1(pointPair) { + var dx = pointPair[1][0] - pointPair[0][0]; + var dy = pointPair[1][1] - pointPair[0][1]; + + return Math.sqrt(dx * dx + dy * dy); +} + +function center(pointPair) { + return [ + (pointPair[0][0] + pointPair[1][0]) / 2, + (pointPair[0][1] + pointPair[1][1]) / 2 + ]; +} + +var recognizers = { + + pinch: function (track, event) { + var trackLen = track.length; + + if (!trackLen) { + return; + } + + var pinchEnd = (track[trackLen - 1] || {}).points; + var pinchPre = (track[trackLen - 2] || {}).points || pinchEnd; + + if (pinchPre + && pinchPre.length > 1 + && pinchEnd + && pinchEnd.length > 1 + ) { + var pinchScale = dist$1(pinchEnd) / dist$1(pinchPre); + !isFinite(pinchScale) && (pinchScale = 1); + + event.pinchScale = pinchScale; + + var pinchCenter = center(pinchEnd); + event.pinchX = pinchCenter[0]; + event.pinchY = pinchCenter[1]; + + return { + type: 'pinch', + target: track[0].target, + event: event + }; + } + } + + // Only pinch currently. +}; + +var SILENT = 'silent'; + +function makeEventPacket(eveType, targetInfo, event) { + return { + type: eveType, + event: event, + // target can only be an element that is not silent. + target: targetInfo.target, + // topTarget can be a silent element. + topTarget: targetInfo.topTarget, + cancelBubble: false, + offsetX: event.zrX, + offsetY: event.zrY, + gestureEvent: event.gestureEvent, + pinchX: event.pinchX, + pinchY: event.pinchY, + pinchScale: event.pinchScale, + wheelDelta: event.zrDelta, + zrByTouch: event.zrByTouch, + which: event.which, + stop: stopEvent + }; +} + +function stopEvent(event) { + stop(this.event); +} + +function EmptyProxy() {} +EmptyProxy.prototype.dispose = function () {}; + +var handlerNames = [ + 'click', 'dblclick', 'mousewheel', 'mouseout', + 'mouseup', 'mousedown', 'mousemove', 'contextmenu' +]; +/** + * @alias module:zrender/Handler + * @constructor + * @extends module:zrender/mixin/Eventful + * @param {module:zrender/Storage} storage Storage instance. + * @param {module:zrender/Painter} painter Painter instance. + * @param {module:zrender/dom/HandlerProxy} proxy HandlerProxy instance. + * @param {HTMLElement} painterRoot painter.root (not painter.getViewportRoot()). + */ +var Handler = function (storage, painter, proxy, painterRoot) { + Eventful.call(this); + + this.storage = storage; + + this.painter = painter; + + this.painterRoot = painterRoot; + + proxy = proxy || new EmptyProxy(); + + /** + * Proxy of event. can be Dom, WebGLSurface, etc. + */ + this.proxy = null; + + /** + * {target, topTarget, x, y} + * @private + * @type {Object} + */ + this._hovered = {}; + + /** + * @private + * @type {Date} + */ + this._lastTouchMoment; + + /** + * @private + * @type {number} + */ + this._lastX; + + /** + * @private + * @type {number} + */ + this._lastY; + + /** + * @private + * @type {module:zrender/core/GestureMgr} + */ + this._gestureMgr; + + + Draggable.call(this); + + this.setHandlerProxy(proxy); +}; + +Handler.prototype = { + + constructor: Handler, + + setHandlerProxy: function (proxy) { + if (this.proxy) { + this.proxy.dispose(); + } + + if (proxy) { + each$1(handlerNames, function (name) { + proxy.on && proxy.on(name, this[name], this); + }, this); + // Attach handler + proxy.handler = this; + } + this.proxy = proxy; + }, + + mousemove: function (event) { + var x = event.zrX; + var y = event.zrY; + + var lastHovered = this._hovered; + var lastHoveredTarget = lastHovered.target; + + // If lastHoveredTarget is removed from zr (detected by '__zr') by some API call + // (like 'setOption' or 'dispatchAction') in event handlers, we should find + // lastHovered again here. Otherwise 'mouseout' can not be triggered normally. + // See #6198. + if (lastHoveredTarget && !lastHoveredTarget.__zr) { + lastHovered = this.findHover(lastHovered.x, lastHovered.y); + lastHoveredTarget = lastHovered.target; + } + + var hovered = this._hovered = this.findHover(x, y); + var hoveredTarget = hovered.target; + + var proxy = this.proxy; + proxy.setCursor && proxy.setCursor(hoveredTarget ? hoveredTarget.cursor : 'default'); + + // Mouse out on previous hovered element + if (lastHoveredTarget && hoveredTarget !== lastHoveredTarget) { + this.dispatchToElement(lastHovered, 'mouseout', event); + } + + // Mouse moving on one element + this.dispatchToElement(hovered, 'mousemove', event); + + // Mouse over on a new element + if (hoveredTarget && hoveredTarget !== lastHoveredTarget) { + this.dispatchToElement(hovered, 'mouseover', event); + } + }, + + mouseout: function (event) { + this.dispatchToElement(this._hovered, 'mouseout', event); + + // There might be some doms created by upper layer application + // at the same level of painter.getViewportRoot() (e.g., tooltip + // dom created by echarts), where 'globalout' event should not + // be triggered when mouse enters these doms. (But 'mouseout' + // should be triggered at the original hovered element as usual). + var element = event.toElement || event.relatedTarget; + var innerDom; + do { + element = element && element.parentNode; + } + while (element && element.nodeType !== 9 && !( + innerDom = element === this.painterRoot + )); + + !innerDom && this.trigger('globalout', {event: event}); + }, + + /** + * Resize + */ + resize: function (event) { + this._hovered = {}; + }, + + /** + * Dispatch event + * @param {string} eventName + * @param {event=} eventArgs + */ + dispatch: function (eventName, eventArgs) { + var handler = this[eventName]; + handler && handler.call(this, eventArgs); + }, + + /** + * Dispose + */ + dispose: function () { + + this.proxy.dispose(); + + this.storage = + this.proxy = + this.painter = null; + }, + + /** + * 设置默认的cursor style + * @param {string} [cursorStyle='default'] 例如 crosshair + */ + setCursorStyle: function (cursorStyle) { + var proxy = this.proxy; + proxy.setCursor && proxy.setCursor(cursorStyle); + }, + + /** + * 事件分发代理 + * + * @private + * @param {Object} targetInfo {target, topTarget} 目标图形元素 + * @param {string} eventName 事件名称 + * @param {Object} event 事件对象 + */ + dispatchToElement: function (targetInfo, eventName, event) { + targetInfo = targetInfo || {}; + var el = targetInfo.target; + if (el && el.silent) { + return; + } + var eventHandler = 'on' + eventName; + var eventPacket = makeEventPacket(eventName, targetInfo, event); + + while (el) { + el[eventHandler] + && (eventPacket.cancelBubble = el[eventHandler].call(el, eventPacket)); + + el.trigger(eventName, eventPacket); + + el = el.parent; + + if (eventPacket.cancelBubble) { + break; + } + } + + if (!eventPacket.cancelBubble) { + // 冒泡到顶级 zrender 对象 + this.trigger(eventName, eventPacket); + // 分发事件到用户自定义层 + // 用户有可能在全局 click 事件中 dispose,所以需要判断下 painter 是否存在 + this.painter && this.painter.eachOtherLayer(function (layer) { + if (typeof (layer[eventHandler]) === 'function') { + layer[eventHandler].call(layer, eventPacket); + } + if (layer.trigger) { + layer.trigger(eventName, eventPacket); + } + }); + } + }, + + /** + * @private + * @param {number} x + * @param {number} y + * @param {module:zrender/graphic/Displayable} exclude + * @return {model:zrender/Element} + * @method + */ + findHover: function (x, y, exclude) { + var list = this.storage.getDisplayList(); + var out = {x: x, y: y}; + + for (var i = list.length - 1; i >= 0; i--) { + var hoverCheckResult; + if (list[i] !== exclude + // getDisplayList may include ignored item in VML mode + && !list[i].ignore + && (hoverCheckResult = isHover(list[i], x, y)) + ) { + !out.topTarget && (out.topTarget = list[i]); + if (hoverCheckResult !== SILENT) { + out.target = list[i]; + break; + } + } + } + + return out; + }, + + processGesture: function (event, stage) { + if (!this._gestureMgr) { + this._gestureMgr = new GestureMgr(); + } + var gestureMgr = this._gestureMgr; + + stage === 'start' && gestureMgr.clear(); + + var gestureInfo = gestureMgr.recognize( + event, + this.findHover(event.zrX, event.zrY, null).target, + this.proxy.dom + ); + + stage === 'end' && gestureMgr.clear(); + + // Do not do any preventDefault here. Upper application do that if necessary. + if (gestureInfo) { + var type = gestureInfo.type; + event.gestureEvent = type; + + this.dispatchToElement({target: gestureInfo.target}, type, gestureInfo.event); + } + } +}; + +// Common handlers +each$1(['click', 'mousedown', 'mouseup', 'mousewheel', 'dblclick', 'contextmenu'], function (name) { + Handler.prototype[name] = function (event) { + // Find hover again to avoid click event is dispatched manually. Or click is triggered without mouseover + var hovered = this.findHover(event.zrX, event.zrY); + var hoveredTarget = hovered.target; + + if (name === 'mousedown') { + this._downEl = hoveredTarget; + this._downPoint = [event.zrX, event.zrY]; + // In case click triggered before mouseup + this._upEl = hoveredTarget; + } + else if (name === 'mouseup') { + this._upEl = hoveredTarget; + } + else if (name === 'click') { + if (this._downEl !== this._upEl + // Original click event is triggered on the whole canvas element, + // including the case that `mousedown` - `mousemove` - `mouseup`, + // which should be filtered, otherwise it will bring trouble to + // pan and zoom. + || !this._downPoint + // Arbitrary value + || dist(this._downPoint, [event.zrX, event.zrY]) > 4 + ) { + return; + } + this._downPoint = null; + } + + this.dispatchToElement(hovered, name, event); + }; +}); + +function isHover(displayable, x, y) { + if (displayable[displayable.rectHover ? 'rectContain' : 'contain'](x, y)) { + var el = displayable; + var isSilent; + while (el) { + // If clipped by ancestor. + // FIXME: If clipPath has neither stroke nor fill, + // el.clipPath.contain(x, y) will always return false. + if (el.clipPath && !el.clipPath.contain(x, y)) { + return false; + } + if (el.silent) { + isSilent = true; + } + el = el.parent; + } + return isSilent ? SILENT : true; + } + + return false; +} + +mixin(Handler, Eventful); +mixin(Handler, Draggable); + +/** + * 3x2矩阵操作类 + * @exports zrender/tool/matrix + */ + +var ArrayCtor$1 = typeof Float32Array === 'undefined' + ? Array + : Float32Array; + +/** + * Create a identity matrix. + * @return {Float32Array|Array.} + */ +function create$1() { + var out = new ArrayCtor$1(6); + identity(out); + + return out; +} + +/** + * 设置矩阵为单位矩阵 + * @param {Float32Array|Array.} out + */ +function identity(out) { + out[0] = 1; + out[1] = 0; + out[2] = 0; + out[3] = 1; + out[4] = 0; + out[5] = 0; + return out; +} + +/** + * 复制矩阵 + * @param {Float32Array|Array.} out + * @param {Float32Array|Array.} m + */ +function copy$1(out, m) { + out[0] = m[0]; + out[1] = m[1]; + out[2] = m[2]; + out[3] = m[3]; + out[4] = m[4]; + out[5] = m[5]; + return out; +} + +/** + * 矩阵相乘 + * @param {Float32Array|Array.} out + * @param {Float32Array|Array.} m1 + * @param {Float32Array|Array.} m2 + */ +function mul$1(out, m1, m2) { + // Consider matrix.mul(m, m2, m); + // where out is the same as m2. + // So use temp variable to escape error. + var out0 = m1[0] * m2[0] + m1[2] * m2[1]; + var out1 = m1[1] * m2[0] + m1[3] * m2[1]; + var out2 = m1[0] * m2[2] + m1[2] * m2[3]; + var out3 = m1[1] * m2[2] + m1[3] * m2[3]; + var out4 = m1[0] * m2[4] + m1[2] * m2[5] + m1[4]; + var out5 = m1[1] * m2[4] + m1[3] * m2[5] + m1[5]; + out[0] = out0; + out[1] = out1; + out[2] = out2; + out[3] = out3; + out[4] = out4; + out[5] = out5; + return out; +} + +/** + * 平移变换 + * @param {Float32Array|Array.} out + * @param {Float32Array|Array.} a + * @param {Float32Array|Array.} v + */ +function translate(out, a, v) { + out[0] = a[0]; + out[1] = a[1]; + out[2] = a[2]; + out[3] = a[3]; + out[4] = a[4] + v[0]; + out[5] = a[5] + v[1]; + return out; +} + +/** + * 旋转变换 + * @param {Float32Array|Array.} out + * @param {Float32Array|Array.} a + * @param {number} rad + */ +function rotate(out, a, rad) { + var aa = a[0]; + var ac = a[2]; + var atx = a[4]; + var ab = a[1]; + var ad = a[3]; + var aty = a[5]; + var st = Math.sin(rad); + var ct = Math.cos(rad); + + out[0] = aa * ct + ab * st; + out[1] = -aa * st + ab * ct; + out[2] = ac * ct + ad * st; + out[3] = -ac * st + ct * ad; + out[4] = ct * atx + st * aty; + out[5] = ct * aty - st * atx; + return out; +} + +/** + * 缩放变换 + * @param {Float32Array|Array.} out + * @param {Float32Array|Array.} a + * @param {Float32Array|Array.} v + */ +function scale$1(out, a, v) { + var vx = v[0]; + var vy = v[1]; + out[0] = a[0] * vx; + out[1] = a[1] * vy; + out[2] = a[2] * vx; + out[3] = a[3] * vy; + out[4] = a[4] * vx; + out[5] = a[5] * vy; + return out; +} + +/** + * 求逆矩阵 + * @param {Float32Array|Array.} out + * @param {Float32Array|Array.} a + */ +function invert(out, a) { + + var aa = a[0]; + var ac = a[2]; + var atx = a[4]; + var ab = a[1]; + var ad = a[3]; + var aty = a[5]; + + var det = aa * ad - ab * ac; + if (!det) { + return null; + } + det = 1.0 / det; + + out[0] = ad * det; + out[1] = -ab * det; + out[2] = -ac * det; + out[3] = aa * det; + out[4] = (ac * aty - ad * atx) * det; + out[5] = (ab * atx - aa * aty) * det; + return out; +} + +/** + * Clone a new matrix. + * @param {Float32Array|Array.} a + */ +function clone$2(a) { + var b = create$1(); + copy$1(b, a); + return b; +} + +var matrix = (Object.freeze || Object)({ + create: create$1, + identity: identity, + copy: copy$1, + mul: mul$1, + translate: translate, + rotate: rotate, + scale: scale$1, + invert: invert, + clone: clone$2 +}); + +/** + * 提供变换扩展 + * @module zrender/mixin/Transformable + * @author pissang (https://www.github.com/pissang) + */ + +var mIdentity = identity; + +var EPSILON = 5e-5; + +function isNotAroundZero(val) { + return val > EPSILON || val < -EPSILON; +} + +/** + * @alias module:zrender/mixin/Transformable + * @constructor + */ +var Transformable = function (opts) { + opts = opts || {}; + // If there are no given position, rotation, scale + if (!opts.position) { + /** + * 平移 + * @type {Array.} + * @default [0, 0] + */ + this.position = [0, 0]; + } + if (opts.rotation == null) { + /** + * 旋转 + * @type {Array.} + * @default 0 + */ + this.rotation = 0; + } + if (!opts.scale) { + /** + * 缩放 + * @type {Array.} + * @default [1, 1] + */ + this.scale = [1, 1]; + } + /** + * 旋转和缩放的原点 + * @type {Array.} + * @default null + */ + this.origin = this.origin || null; +}; + +var transformableProto = Transformable.prototype; +transformableProto.transform = null; + +/** + * 判断是否需要有坐标变换 + * 如果有坐标变换, 则从position, rotation, scale以及父节点的transform计算出自身的transform矩阵 + */ +transformableProto.needLocalTransform = function () { + return isNotAroundZero(this.rotation) + || isNotAroundZero(this.position[0]) + || isNotAroundZero(this.position[1]) + || isNotAroundZero(this.scale[0] - 1) + || isNotAroundZero(this.scale[1] - 1); +}; + +var scaleTmp = []; +transformableProto.updateTransform = function () { + var parent = this.parent; + var parentHasTransform = parent && parent.transform; + var needLocalTransform = this.needLocalTransform(); + + var m = this.transform; + if (!(needLocalTransform || parentHasTransform)) { + m && mIdentity(m); + return; + } + + m = m || create$1(); + + if (needLocalTransform) { + this.getLocalTransform(m); + } + else { + mIdentity(m); + } + + // 应用父节点变换 + if (parentHasTransform) { + if (needLocalTransform) { + mul$1(m, parent.transform, m); + } + else { + copy$1(m, parent.transform); + } + } + // 保存这个变换矩阵 + this.transform = m; + + var globalScaleRatio = this.globalScaleRatio; + if (globalScaleRatio != null && globalScaleRatio !== 1) { + this.getGlobalScale(scaleTmp); + var relX = scaleTmp[0] < 0 ? -1 : 1; + var relY = scaleTmp[1] < 0 ? -1 : 1; + var sx = ((scaleTmp[0] - relX) * globalScaleRatio + relX) / scaleTmp[0] || 0; + var sy = ((scaleTmp[1] - relY) * globalScaleRatio + relY) / scaleTmp[1] || 0; + + m[0] *= sx; + m[1] *= sx; + m[2] *= sy; + m[3] *= sy; + } + + this.invTransform = this.invTransform || create$1(); + invert(this.invTransform, m); +}; + +transformableProto.getLocalTransform = function (m) { + return Transformable.getLocalTransform(this, m); +}; + +/** + * 将自己的transform应用到context上 + * @param {CanvasRenderingContext2D} ctx + */ +transformableProto.setTransform = function (ctx) { + var m = this.transform; + var dpr = ctx.dpr || 1; + if (m) { + ctx.setTransform(dpr * m[0], dpr * m[1], dpr * m[2], dpr * m[3], dpr * m[4], dpr * m[5]); + } + else { + ctx.setTransform(dpr, 0, 0, dpr, 0, 0); + } +}; + +transformableProto.restoreTransform = function (ctx) { + var dpr = ctx.dpr || 1; + ctx.setTransform(dpr, 0, 0, dpr, 0, 0); +}; + +var tmpTransform = []; +var originTransform = create$1(); + +transformableProto.setLocalTransform = function (m) { + if (!m) { + // TODO return or set identity? + return; + } + var sx = m[0] * m[0] + m[1] * m[1]; + var sy = m[2] * m[2] + m[3] * m[3]; + var position = this.position; + var scale$$1 = this.scale; + if (isNotAroundZero(sx - 1)) { + sx = Math.sqrt(sx); + } + if (isNotAroundZero(sy - 1)) { + sy = Math.sqrt(sy); + } + if (m[0] < 0) { + sx = -sx; + } + if (m[3] < 0) { + sy = -sy; + } + + position[0] = m[4]; + position[1] = m[5]; + scale$$1[0] = sx; + scale$$1[1] = sy; + this.rotation = Math.atan2(-m[1] / sy, m[0] / sx); +}; +/** + * 分解`transform`矩阵到`position`, `rotation`, `scale` + */ +transformableProto.decomposeTransform = function () { + if (!this.transform) { + return; + } + var parent = this.parent; + var m = this.transform; + if (parent && parent.transform) { + // Get local transform and decompose them to position, scale, rotation + mul$1(tmpTransform, parent.invTransform, m); + m = tmpTransform; + } + var origin = this.origin; + if (origin && (origin[0] || origin[1])) { + originTransform[4] = origin[0]; + originTransform[5] = origin[1]; + mul$1(tmpTransform, m, originTransform); + tmpTransform[4] -= origin[0]; + tmpTransform[5] -= origin[1]; + m = tmpTransform; + } + + this.setLocalTransform(m); +}; + +/** + * Get global scale + * @return {Array.} + */ +transformableProto.getGlobalScale = function (out) { + var m = this.transform; + out = out || []; + if (!m) { + out[0] = 1; + out[1] = 1; + return out; + } + out[0] = Math.sqrt(m[0] * m[0] + m[1] * m[1]); + out[1] = Math.sqrt(m[2] * m[2] + m[3] * m[3]); + if (m[0] < 0) { + out[0] = -out[0]; + } + if (m[3] < 0) { + out[1] = -out[1]; + } + return out; +}; +/** + * 变换坐标位置到 shape 的局部坐标空间 + * @method + * @param {number} x + * @param {number} y + * @return {Array.} + */ +transformableProto.transformCoordToLocal = function (x, y) { + var v2 = [x, y]; + var invTransform = this.invTransform; + if (invTransform) { + applyTransform(v2, v2, invTransform); + } + return v2; +}; + +/** + * 变换局部坐标位置到全局坐标空间 + * @method + * @param {number} x + * @param {number} y + * @return {Array.} + */ +transformableProto.transformCoordToGlobal = function (x, y) { + var v2 = [x, y]; + var transform = this.transform; + if (transform) { + applyTransform(v2, v2, transform); + } + return v2; +}; + +/** + * @static + * @param {Object} target + * @param {Array.} target.origin + * @param {number} target.rotation + * @param {Array.} target.position + * @param {Array.} [m] + */ +Transformable.getLocalTransform = function (target, m) { + m = m || []; + mIdentity(m); + + var origin = target.origin; + var scale$$1 = target.scale || [1, 1]; + var rotation = target.rotation || 0; + var position = target.position || [0, 0]; + + if (origin) { + // Translate to origin + m[4] -= origin[0]; + m[5] -= origin[1]; + } + scale$1(m, m, scale$$1); + if (rotation) { + rotate(m, m, rotation); + } + if (origin) { + // Translate back from origin + m[4] += origin[0]; + m[5] += origin[1]; + } + + m[4] += position[0]; + m[5] += position[1]; + + return m; +}; + +/** + * 缓动代码来自 https://github.com/sole/tween.js/blob/master/src/Tween.js + * @see http://sole.github.io/tween.js/examples/03_graphs.html + * @exports zrender/animation/easing + */ +var easing = { + /** + * @param {number} k + * @return {number} + */ + linear: function (k) { + return k; + }, + + /** + * @param {number} k + * @return {number} + */ + quadraticIn: function (k) { + return k * k; + }, + /** + * @param {number} k + * @return {number} + */ + quadraticOut: function (k) { + return k * (2 - k); + }, + /** + * @param {number} k + * @return {number} + */ + quadraticInOut: function (k) { + if ((k *= 2) < 1) { + return 0.5 * k * k; + } + return -0.5 * (--k * (k - 2) - 1); + }, + + // 三次方的缓动(t^3) + /** + * @param {number} k + * @return {number} + */ + cubicIn: function (k) { + return k * k * k; + }, + /** + * @param {number} k + * @return {number} + */ + cubicOut: function (k) { + return --k * k * k + 1; + }, + /** + * @param {number} k + * @return {number} + */ + cubicInOut: function (k) { + if ((k *= 2) < 1) { + return 0.5 * k * k * k; + } + return 0.5 * ((k -= 2) * k * k + 2); + }, + + // 四次方的缓动(t^4) + /** + * @param {number} k + * @return {number} + */ + quarticIn: function (k) { + return k * k * k * k; + }, + /** + * @param {number} k + * @return {number} + */ + quarticOut: function (k) { + return 1 - (--k * k * k * k); + }, + /** + * @param {number} k + * @return {number} + */ + quarticInOut: function (k) { + if ((k *= 2) < 1) { + return 0.5 * k * k * k * k; + } + return -0.5 * ((k -= 2) * k * k * k - 2); + }, + + // 五次方的缓动(t^5) + /** + * @param {number} k + * @return {number} + */ + quinticIn: function (k) { + return k * k * k * k * k; + }, + /** + * @param {number} k + * @return {number} + */ + quinticOut: function (k) { + return --k * k * k * k * k + 1; + }, + /** + * @param {number} k + * @return {number} + */ + quinticInOut: function (k) { + if ((k *= 2) < 1) { + return 0.5 * k * k * k * k * k; + } + return 0.5 * ((k -= 2) * k * k * k * k + 2); + }, + + // 正弦曲线的缓动(sin(t)) + /** + * @param {number} k + * @return {number} + */ + sinusoidalIn: function (k) { + return 1 - Math.cos(k * Math.PI / 2); + }, + /** + * @param {number} k + * @return {number} + */ + sinusoidalOut: function (k) { + return Math.sin(k * Math.PI / 2); + }, + /** + * @param {number} k + * @return {number} + */ + sinusoidalInOut: function (k) { + return 0.5 * (1 - Math.cos(Math.PI * k)); + }, + + // 指数曲线的缓动(2^t) + /** + * @param {number} k + * @return {number} + */ + exponentialIn: function (k) { + return k === 0 ? 0 : Math.pow(1024, k - 1); + }, + /** + * @param {number} k + * @return {number} + */ + exponentialOut: function (k) { + return k === 1 ? 1 : 1 - Math.pow(2, -10 * k); + }, + /** + * @param {number} k + * @return {number} + */ + exponentialInOut: function (k) { + if (k === 0) { + return 0; + } + if (k === 1) { + return 1; + } + if ((k *= 2) < 1) { + return 0.5 * Math.pow(1024, k - 1); + } + return 0.5 * (-Math.pow(2, -10 * (k - 1)) + 2); + }, + + // 圆形曲线的缓动(sqrt(1-t^2)) + /** + * @param {number} k + * @return {number} + */ + circularIn: function (k) { + return 1 - Math.sqrt(1 - k * k); + }, + /** + * @param {number} k + * @return {number} + */ + circularOut: function (k) { + return Math.sqrt(1 - (--k * k)); + }, + /** + * @param {number} k + * @return {number} + */ + circularInOut: function (k) { + if ((k *= 2) < 1) { + return -0.5 * (Math.sqrt(1 - k * k) - 1); + } + return 0.5 * (Math.sqrt(1 - (k -= 2) * k) + 1); + }, + + // 创建类似于弹簧在停止前来回振荡的动画 + /** + * @param {number} k + * @return {number} + */ + elasticIn: function (k) { + var s; + var a = 0.1; + var p = 0.4; + if (k === 0) { + return 0; + } + if (k === 1) { + return 1; + } + if (!a || a < 1) { + a = 1; + s = p / 4; + } + else { + s = p * Math.asin(1 / a) / (2 * Math.PI); + } + return -(a * Math.pow(2, 10 * (k -= 1)) + * Math.sin((k - s) * (2 * Math.PI) / p)); + }, + /** + * @param {number} k + * @return {number} + */ + elasticOut: function (k) { + var s; + var a = 0.1; + var p = 0.4; + if (k === 0) { + return 0; + } + if (k === 1) { + return 1; + } + if (!a || a < 1) { + a = 1; + s = p / 4; + } + else { + s = p * Math.asin(1 / a) / (2 * Math.PI); + } + return (a * Math.pow(2, -10 * k) + * Math.sin((k - s) * (2 * Math.PI) / p) + 1); + }, + /** + * @param {number} k + * @return {number} + */ + elasticInOut: function (k) { + var s; + var a = 0.1; + var p = 0.4; + if (k === 0) { + return 0; + } + if (k === 1) { + return 1; + } + if (!a || a < 1) { + a = 1; + s = p / 4; + } + else { + s = p * Math.asin(1 / a) / (2 * Math.PI); + } + if ((k *= 2) < 1) { + return -0.5 * (a * Math.pow(2, 10 * (k -= 1)) + * Math.sin((k - s) * (2 * Math.PI) / p)); + } + return a * Math.pow(2, -10 * (k -= 1)) + * Math.sin((k - s) * (2 * Math.PI) / p) * 0.5 + 1; + + }, + + // 在某一动画开始沿指示的路径进行动画处理前稍稍收回该动画的移动 + /** + * @param {number} k + * @return {number} + */ + backIn: function (k) { + var s = 1.70158; + return k * k * ((s + 1) * k - s); + }, + /** + * @param {number} k + * @return {number} + */ + backOut: function (k) { + var s = 1.70158; + return --k * k * ((s + 1) * k + s) + 1; + }, + /** + * @param {number} k + * @return {number} + */ + backInOut: function (k) { + var s = 1.70158 * 1.525; + if ((k *= 2) < 1) { + return 0.5 * (k * k * ((s + 1) * k - s)); + } + return 0.5 * ((k -= 2) * k * ((s + 1) * k + s) + 2); + }, + + // 创建弹跳效果 + /** + * @param {number} k + * @return {number} + */ + bounceIn: function (k) { + return 1 - easing.bounceOut(1 - k); + }, + /** + * @param {number} k + * @return {number} + */ + bounceOut: function (k) { + if (k < (1 / 2.75)) { + return 7.5625 * k * k; + } + else if (k < (2 / 2.75)) { + return 7.5625 * (k -= (1.5 / 2.75)) * k + 0.75; + } + else if (k < (2.5 / 2.75)) { + return 7.5625 * (k -= (2.25 / 2.75)) * k + 0.9375; + } + else { + return 7.5625 * (k -= (2.625 / 2.75)) * k + 0.984375; + } + }, + /** + * @param {number} k + * @return {number} + */ + bounceInOut: function (k) { + if (k < 0.5) { + return easing.bounceIn(k * 2) * 0.5; + } + return easing.bounceOut(k * 2 - 1) * 0.5 + 0.5; + } +}; + +/** + * 动画主控制器 + * @config target 动画对象,可以是数组,如果是数组的话会批量分发onframe等事件 + * @config life(1000) 动画时长 + * @config delay(0) 动画延迟时间 + * @config loop(true) + * @config gap(0) 循环的间隔时间 + * @config onframe + * @config easing(optional) + * @config ondestroy(optional) + * @config onrestart(optional) + * + * TODO pause + */ + +function Clip(options) { + + this._target = options.target; + + // 生命周期 + this._life = options.life || 1000; + // 延时 + this._delay = options.delay || 0; + // 开始时间 + // this._startTime = new Date().getTime() + this._delay;// 单位毫秒 + this._initialized = false; + + // 是否循环 + this.loop = options.loop == null ? false : options.loop; + + this.gap = options.gap || 0; + + this.easing = options.easing || 'Linear'; + + this.onframe = options.onframe; + this.ondestroy = options.ondestroy; + this.onrestart = options.onrestart; + + this._pausedTime = 0; + this._paused = false; +} + +Clip.prototype = { + + constructor: Clip, + + step: function (globalTime, deltaTime) { + // Set startTime on first step, or _startTime may has milleseconds different between clips + // PENDING + if (!this._initialized) { + this._startTime = globalTime + this._delay; + this._initialized = true; + } + + if (this._paused) { + this._pausedTime += deltaTime; + return; + } + + var percent = (globalTime - this._startTime - this._pausedTime) / this._life; + + // 还没开始 + if (percent < 0) { + return; + } + + percent = Math.min(percent, 1); + + var easing$$1 = this.easing; + var easingFunc = typeof easing$$1 === 'string' ? easing[easing$$1] : easing$$1; + var schedule = typeof easingFunc === 'function' + ? easingFunc(percent) + : percent; + + this.fire('frame', schedule); + + // 结束 + if (percent === 1) { + if (this.loop) { + this.restart(globalTime); + // 重新开始周期 + // 抛出而不是直接调用事件直到 stage.update 后再统一调用这些事件 + return 'restart'; + } + + // 动画完成将这个控制器标识为待删除 + // 在Animation.update中进行批量删除 + this._needsRemove = true; + return 'destroy'; + } + + return null; + }, + + restart: function (globalTime) { + var remainder = (globalTime - this._startTime - this._pausedTime) % this._life; + this._startTime = globalTime - remainder + this.gap; + this._pausedTime = 0; + + this._needsRemove = false; + }, + + fire: function (eventType, arg) { + eventType = 'on' + eventType; + if (this[eventType]) { + this[eventType](this._target, arg); + } + }, + + pause: function () { + this._paused = true; + }, + + resume: function () { + this._paused = false; + } +}; + +// Simple LRU cache use doubly linked list +// @module zrender/core/LRU + +/** + * Simple double linked list. Compared with array, it has O(1) remove operation. + * @constructor + */ +var LinkedList = function () { + + /** + * @type {module:zrender/core/LRU~Entry} + */ + this.head = null; + + /** + * @type {module:zrender/core/LRU~Entry} + */ + this.tail = null; + + this._len = 0; +}; + +var linkedListProto = LinkedList.prototype; +/** + * Insert a new value at the tail + * @param {} val + * @return {module:zrender/core/LRU~Entry} + */ +linkedListProto.insert = function (val) { + var entry = new Entry(val); + this.insertEntry(entry); + return entry; +}; + +/** + * Insert an entry at the tail + * @param {module:zrender/core/LRU~Entry} entry + */ +linkedListProto.insertEntry = function (entry) { + if (!this.head) { + this.head = this.tail = entry; + } + else { + this.tail.next = entry; + entry.prev = this.tail; + entry.next = null; + this.tail = entry; + } + this._len++; +}; + +/** + * Remove entry. + * @param {module:zrender/core/LRU~Entry} entry + */ +linkedListProto.remove = function (entry) { + var prev = entry.prev; + var next = entry.next; + if (prev) { + prev.next = next; + } + else { + // Is head + this.head = next; + } + if (next) { + next.prev = prev; + } + else { + // Is tail + this.tail = prev; + } + entry.next = entry.prev = null; + this._len--; +}; + +/** + * @return {number} + */ +linkedListProto.len = function () { + return this._len; +}; + +/** + * Clear list + */ +linkedListProto.clear = function () { + this.head = this.tail = null; + this._len = 0; +}; + +/** + * @constructor + * @param {} val + */ +var Entry = function (val) { + /** + * @type {} + */ + this.value = val; + + /** + * @type {module:zrender/core/LRU~Entry} + */ + this.next; + + /** + * @type {module:zrender/core/LRU~Entry} + */ + this.prev; +}; + +/** + * LRU Cache + * @constructor + * @alias module:zrender/core/LRU + */ +var LRU = function (maxSize) { + + this._list = new LinkedList(); + + this._map = {}; + + this._maxSize = maxSize || 10; + + this._lastRemovedEntry = null; +}; + +var LRUProto = LRU.prototype; + +/** + * @param {string} key + * @param {} value + * @return {} Removed value + */ +LRUProto.put = function (key, value) { + var list = this._list; + var map = this._map; + var removed = null; + if (map[key] == null) { + var len = list.len(); + // Reuse last removed entry + var entry = this._lastRemovedEntry; + + if (len >= this._maxSize && len > 0) { + // Remove the least recently used + var leastUsedEntry = list.head; + list.remove(leastUsedEntry); + delete map[leastUsedEntry.key]; + + removed = leastUsedEntry.value; + this._lastRemovedEntry = leastUsedEntry; + } + + if (entry) { + entry.value = value; + } + else { + entry = new Entry(value); + } + entry.key = key; + list.insertEntry(entry); + map[key] = entry; + } + + return removed; +}; + +/** + * @param {string} key + * @return {} + */ +LRUProto.get = function (key) { + var entry = this._map[key]; + var list = this._list; + if (entry != null) { + // Put the latest used entry in the tail + if (entry !== list.tail) { + list.remove(entry); + list.insertEntry(entry); + } + + return entry.value; + } +}; + +/** + * Clear the cache + */ +LRUProto.clear = function () { + this._list.clear(); + this._map = {}; +}; + +var kCSSColorTable = { + 'transparent': [0, 0, 0, 0], 'aliceblue': [240, 248, 255, 1], + 'antiquewhite': [250, 235, 215, 1], 'aqua': [0, 255, 255, 1], + 'aquamarine': [127, 255, 212, 1], 'azure': [240, 255, 255, 1], + 'beige': [245, 245, 220, 1], 'bisque': [255, 228, 196, 1], + 'black': [0, 0, 0, 1], 'blanchedalmond': [255, 235, 205, 1], + 'blue': [0, 0, 255, 1], 'blueviolet': [138, 43, 226, 1], + 'brown': [165, 42, 42, 1], 'burlywood': [222, 184, 135, 1], + 'cadetblue': [95, 158, 160, 1], 'chartreuse': [127, 255, 0, 1], + 'chocolate': [210, 105, 30, 1], 'coral': [255, 127, 80, 1], + 'cornflowerblue': [100, 149, 237, 1], 'cornsilk': [255, 248, 220, 1], + 'crimson': [220, 20, 60, 1], 'cyan': [0, 255, 255, 1], + 'darkblue': [0, 0, 139, 1], 'darkcyan': [0, 139, 139, 1], + 'darkgoldenrod': [184, 134, 11, 1], 'darkgray': [169, 169, 169, 1], + 'darkgreen': [0, 100, 0, 1], 'darkgrey': [169, 169, 169, 1], + 'darkkhaki': [189, 183, 107, 1], 'darkmagenta': [139, 0, 139, 1], + 'darkolivegreen': [85, 107, 47, 1], 'darkorange': [255, 140, 0, 1], + 'darkorchid': [153, 50, 204, 1], 'darkred': [139, 0, 0, 1], + 'darksalmon': [233, 150, 122, 1], 'darkseagreen': [143, 188, 143, 1], + 'darkslateblue': [72, 61, 139, 1], 'darkslategray': [47, 79, 79, 1], + 'darkslategrey': [47, 79, 79, 1], 'darkturquoise': [0, 206, 209, 1], + 'darkviolet': [148, 0, 211, 1], 'deeppink': [255, 20, 147, 1], + 'deepskyblue': [0, 191, 255, 1], 'dimgray': [105, 105, 105, 1], + 'dimgrey': [105, 105, 105, 1], 'dodgerblue': [30, 144, 255, 1], + 'firebrick': [178, 34, 34, 1], 'floralwhite': [255, 250, 240, 1], + 'forestgreen': [34, 139, 34, 1], 'fuchsia': [255, 0, 255, 1], + 'gainsboro': [220, 220, 220, 1], 'ghostwhite': [248, 248, 255, 1], + 'gold': [255, 215, 0, 1], 'goldenrod': [218, 165, 32, 1], + 'gray': [128, 128, 128, 1], 'green': [0, 128, 0, 1], + 'greenyellow': [173, 255, 47, 1], 'grey': [128, 128, 128, 1], + 'honeydew': [240, 255, 240, 1], 'hotpink': [255, 105, 180, 1], + 'indianred': [205, 92, 92, 1], 'indigo': [75, 0, 130, 1], + 'ivory': [255, 255, 240, 1], 'khaki': [240, 230, 140, 1], + 'lavender': [230, 230, 250, 1], 'lavenderblush': [255, 240, 245, 1], + 'lawngreen': [124, 252, 0, 1], 'lemonchiffon': [255, 250, 205, 1], + 'lightblue': [173, 216, 230, 1], 'lightcoral': [240, 128, 128, 1], + 'lightcyan': [224, 255, 255, 1], 'lightgoldenrodyellow': [250, 250, 210, 1], + 'lightgray': [211, 211, 211, 1], 'lightgreen': [144, 238, 144, 1], + 'lightgrey': [211, 211, 211, 1], 'lightpink': [255, 182, 193, 1], + 'lightsalmon': [255, 160, 122, 1], 'lightseagreen': [32, 178, 170, 1], + 'lightskyblue': [135, 206, 250, 1], 'lightslategray': [119, 136, 153, 1], + 'lightslategrey': [119, 136, 153, 1], 'lightsteelblue': [176, 196, 222, 1], + 'lightyellow': [255, 255, 224, 1], 'lime': [0, 255, 0, 1], + 'limegreen': [50, 205, 50, 1], 'linen': [250, 240, 230, 1], + 'magenta': [255, 0, 255, 1], 'maroon': [128, 0, 0, 1], + 'mediumaquamarine': [102, 205, 170, 1], 'mediumblue': [0, 0, 205, 1], + 'mediumorchid': [186, 85, 211, 1], 'mediumpurple': [147, 112, 219, 1], + 'mediumseagreen': [60, 179, 113, 1], 'mediumslateblue': [123, 104, 238, 1], + 'mediumspringgreen': [0, 250, 154, 1], 'mediumturquoise': [72, 209, 204, 1], + 'mediumvioletred': [199, 21, 133, 1], 'midnightblue': [25, 25, 112, 1], + 'mintcream': [245, 255, 250, 1], 'mistyrose': [255, 228, 225, 1], + 'moccasin': [255, 228, 181, 1], 'navajowhite': [255, 222, 173, 1], + 'navy': [0, 0, 128, 1], 'oldlace': [253, 245, 230, 1], + 'olive': [128, 128, 0, 1], 'olivedrab': [107, 142, 35, 1], + 'orange': [255, 165, 0, 1], 'orangered': [255, 69, 0, 1], + 'orchid': [218, 112, 214, 1], 'palegoldenrod': [238, 232, 170, 1], + 'palegreen': [152, 251, 152, 1], 'paleturquoise': [175, 238, 238, 1], + 'palevioletred': [219, 112, 147, 1], 'papayawhip': [255, 239, 213, 1], + 'peachpuff': [255, 218, 185, 1], 'peru': [205, 133, 63, 1], + 'pink': [255, 192, 203, 1], 'plum': [221, 160, 221, 1], + 'powderblue': [176, 224, 230, 1], 'purple': [128, 0, 128, 1], + 'red': [255, 0, 0, 1], 'rosybrown': [188, 143, 143, 1], + 'royalblue': [65, 105, 225, 1], 'saddlebrown': [139, 69, 19, 1], + 'salmon': [250, 128, 114, 1], 'sandybrown': [244, 164, 96, 1], + 'seagreen': [46, 139, 87, 1], 'seashell': [255, 245, 238, 1], + 'sienna': [160, 82, 45, 1], 'silver': [192, 192, 192, 1], + 'skyblue': [135, 206, 235, 1], 'slateblue': [106, 90, 205, 1], + 'slategray': [112, 128, 144, 1], 'slategrey': [112, 128, 144, 1], + 'snow': [255, 250, 250, 1], 'springgreen': [0, 255, 127, 1], + 'steelblue': [70, 130, 180, 1], 'tan': [210, 180, 140, 1], + 'teal': [0, 128, 128, 1], 'thistle': [216, 191, 216, 1], + 'tomato': [255, 99, 71, 1], 'turquoise': [64, 224, 208, 1], + 'violet': [238, 130, 238, 1], 'wheat': [245, 222, 179, 1], + 'white': [255, 255, 255, 1], 'whitesmoke': [245, 245, 245, 1], + 'yellow': [255, 255, 0, 1], 'yellowgreen': [154, 205, 50, 1] +}; + +function clampCssByte(i) { // Clamp to integer 0 .. 255. + i = Math.round(i); // Seems to be what Chrome does (vs truncation). + return i < 0 ? 0 : i > 255 ? 255 : i; +} + +function clampCssAngle(i) { // Clamp to integer 0 .. 360. + i = Math.round(i); // Seems to be what Chrome does (vs truncation). + return i < 0 ? 0 : i > 360 ? 360 : i; +} + +function clampCssFloat(f) { // Clamp to float 0.0 .. 1.0. + return f < 0 ? 0 : f > 1 ? 1 : f; +} + +function parseCssInt(str) { // int or percentage. + if (str.length && str.charAt(str.length - 1) === '%') { + return clampCssByte(parseFloat(str) / 100 * 255); + } + return clampCssByte(parseInt(str, 10)); +} + +function parseCssFloat(str) { // float or percentage. + if (str.length && str.charAt(str.length - 1) === '%') { + return clampCssFloat(parseFloat(str) / 100); + } + return clampCssFloat(parseFloat(str)); +} + +function cssHueToRgb(m1, m2, h) { + if (h < 0) { + h += 1; + } + else if (h > 1) { + h -= 1; + } + + if (h * 6 < 1) { + return m1 + (m2 - m1) * h * 6; + } + if (h * 2 < 1) { + return m2; + } + if (h * 3 < 2) { + return m1 + (m2 - m1) * (2 / 3 - h) * 6; + } + return m1; +} + +function lerpNumber(a, b, p) { + return a + (b - a) * p; +} + +function setRgba(out, r, g, b, a) { + out[0] = r; out[1] = g; out[2] = b; out[3] = a; + return out; +} +function copyRgba(out, a) { + out[0] = a[0]; out[1] = a[1]; out[2] = a[2]; out[3] = a[3]; + return out; +} + +var colorCache = new LRU(20); +var lastRemovedArr = null; + +function putToCache(colorStr, rgbaArr) { + // Reuse removed array + if (lastRemovedArr) { + copyRgba(lastRemovedArr, rgbaArr); + } + lastRemovedArr = colorCache.put(colorStr, lastRemovedArr || (rgbaArr.slice())); +} + +/** + * @param {string} colorStr + * @param {Array.} out + * @return {Array.} + * @memberOf module:zrender/util/color + */ +function parse(colorStr, rgbaArr) { + if (!colorStr) { + return; + } + rgbaArr = rgbaArr || []; + + var cached = colorCache.get(colorStr); + if (cached) { + return copyRgba(rgbaArr, cached); + } + + // colorStr may be not string + colorStr = colorStr + ''; + // Remove all whitespace, not compliant, but should just be more accepting. + var str = colorStr.replace(/ /g, '').toLowerCase(); + + // Color keywords (and transparent) lookup. + if (str in kCSSColorTable) { + copyRgba(rgbaArr, kCSSColorTable[str]); + putToCache(colorStr, rgbaArr); + return rgbaArr; + } + + // #abc and #abc123 syntax. + if (str.charAt(0) === '#') { + if (str.length === 4) { + var iv = parseInt(str.substr(1), 16); // TODO(deanm): Stricter parsing. + if (!(iv >= 0 && iv <= 0xfff)) { + setRgba(rgbaArr, 0, 0, 0, 1); + return; // Covers NaN. + } + setRgba(rgbaArr, + ((iv & 0xf00) >> 4) | ((iv & 0xf00) >> 8), + (iv & 0xf0) | ((iv & 0xf0) >> 4), + (iv & 0xf) | ((iv & 0xf) << 4), + 1 + ); + putToCache(colorStr, rgbaArr); + return rgbaArr; + } + else if (str.length === 7) { + var iv = parseInt(str.substr(1), 16); // TODO(deanm): Stricter parsing. + if (!(iv >= 0 && iv <= 0xffffff)) { + setRgba(rgbaArr, 0, 0, 0, 1); + return; // Covers NaN. + } + setRgba(rgbaArr, + (iv & 0xff0000) >> 16, + (iv & 0xff00) >> 8, + iv & 0xff, + 1 + ); + putToCache(colorStr, rgbaArr); + return rgbaArr; + } + + return; + } + var op = str.indexOf('('); + var ep = str.indexOf(')'); + if (op !== -1 && ep + 1 === str.length) { + var fname = str.substr(0, op); + var params = str.substr(op + 1, ep - (op + 1)).split(','); + var alpha = 1; // To allow case fallthrough. + switch (fname) { + case 'rgba': + if (params.length !== 4) { + setRgba(rgbaArr, 0, 0, 0, 1); + return; + } + alpha = parseCssFloat(params.pop()); // jshint ignore:line + // Fall through. + case 'rgb': + if (params.length !== 3) { + setRgba(rgbaArr, 0, 0, 0, 1); + return; + } + setRgba(rgbaArr, + parseCssInt(params[0]), + parseCssInt(params[1]), + parseCssInt(params[2]), + alpha + ); + putToCache(colorStr, rgbaArr); + return rgbaArr; + case 'hsla': + if (params.length !== 4) { + setRgba(rgbaArr, 0, 0, 0, 1); + return; + } + params[3] = parseCssFloat(params[3]); + hsla2rgba(params, rgbaArr); + putToCache(colorStr, rgbaArr); + return rgbaArr; + case 'hsl': + if (params.length !== 3) { + setRgba(rgbaArr, 0, 0, 0, 1); + return; + } + hsla2rgba(params, rgbaArr); + putToCache(colorStr, rgbaArr); + return rgbaArr; + default: + return; + } + } + + setRgba(rgbaArr, 0, 0, 0, 1); + return; +} + +/** + * @param {Array.} hsla + * @param {Array.} rgba + * @return {Array.} rgba + */ +function hsla2rgba(hsla, rgba) { + var h = (((parseFloat(hsla[0]) % 360) + 360) % 360) / 360; // 0 .. 1 + // NOTE(deanm): According to the CSS spec s/l should only be + // percentages, but we don't bother and let float or percentage. + var s = parseCssFloat(hsla[1]); + var l = parseCssFloat(hsla[2]); + var m2 = l <= 0.5 ? l * (s + 1) : l + s - l * s; + var m1 = l * 2 - m2; + + rgba = rgba || []; + setRgba(rgba, + clampCssByte(cssHueToRgb(m1, m2, h + 1 / 3) * 255), + clampCssByte(cssHueToRgb(m1, m2, h) * 255), + clampCssByte(cssHueToRgb(m1, m2, h - 1 / 3) * 255), + 1 + ); + + if (hsla.length === 4) { + rgba[3] = hsla[3]; + } + + return rgba; +} + +/** + * @param {Array.} rgba + * @return {Array.} hsla + */ +function rgba2hsla(rgba) { + if (!rgba) { + return; + } + + // RGB from 0 to 255 + var R = rgba[0] / 255; + var G = rgba[1] / 255; + var B = rgba[2] / 255; + + var vMin = Math.min(R, G, B); // Min. value of RGB + var vMax = Math.max(R, G, B); // Max. value of RGB + var delta = vMax - vMin; // Delta RGB value + + var L = (vMax + vMin) / 2; + var H; + var S; + // HSL results from 0 to 1 + if (delta === 0) { + H = 0; + S = 0; + } + else { + if (L < 0.5) { + S = delta / (vMax + vMin); + } + else { + S = delta / (2 - vMax - vMin); + } + + var deltaR = (((vMax - R) / 6) + (delta / 2)) / delta; + var deltaG = (((vMax - G) / 6) + (delta / 2)) / delta; + var deltaB = (((vMax - B) / 6) + (delta / 2)) / delta; + + if (R === vMax) { + H = deltaB - deltaG; + } + else if (G === vMax) { + H = (1 / 3) + deltaR - deltaB; + } + else if (B === vMax) { + H = (2 / 3) + deltaG - deltaR; + } + + if (H < 0) { + H += 1; + } + + if (H > 1) { + H -= 1; + } + } + + var hsla = [H * 360, S, L]; + + if (rgba[3] != null) { + hsla.push(rgba[3]); + } + + return hsla; +} + +/** + * @param {string} color + * @param {number} level + * @return {string} + * @memberOf module:zrender/util/color + */ +function lift(color, level) { + var colorArr = parse(color); + if (colorArr) { + for (var i = 0; i < 3; i++) { + if (level < 0) { + colorArr[i] = colorArr[i] * (1 - level) | 0; + } + else { + colorArr[i] = ((255 - colorArr[i]) * level + colorArr[i]) | 0; + } + if (colorArr[i] > 255) { + colorArr[i] = 255; + } + else if (color[i] < 0) { + colorArr[i] = 0; + } + } + return stringify(colorArr, colorArr.length === 4 ? 'rgba' : 'rgb'); + } +} + +/** + * @param {string} color + * @return {string} + * @memberOf module:zrender/util/color + */ +function toHex(color) { + var colorArr = parse(color); + if (colorArr) { + return ((1 << 24) + (colorArr[0] << 16) + (colorArr[1] << 8) + (+colorArr[2])).toString(16).slice(1); + } +} + +/** + * Map value to color. Faster than lerp methods because color is represented by rgba array. + * @param {number} normalizedValue A float between 0 and 1. + * @param {Array.>} colors List of rgba color array + * @param {Array.} [out] Mapped gba color array + * @return {Array.} will be null/undefined if input illegal. + */ +function fastLerp(normalizedValue, colors, out) { + if (!(colors && colors.length) + || !(normalizedValue >= 0 && normalizedValue <= 1) + ) { + return; + } + + out = out || []; + + var value = normalizedValue * (colors.length - 1); + var leftIndex = Math.floor(value); + var rightIndex = Math.ceil(value); + var leftColor = colors[leftIndex]; + var rightColor = colors[rightIndex]; + var dv = value - leftIndex; + out[0] = clampCssByte(lerpNumber(leftColor[0], rightColor[0], dv)); + out[1] = clampCssByte(lerpNumber(leftColor[1], rightColor[1], dv)); + out[2] = clampCssByte(lerpNumber(leftColor[2], rightColor[2], dv)); + out[3] = clampCssFloat(lerpNumber(leftColor[3], rightColor[3], dv)); + + return out; +} + +/** + * @deprecated + */ +var fastMapToColor = fastLerp; + +/** + * @param {number} normalizedValue A float between 0 and 1. + * @param {Array.} colors Color list. + * @param {boolean=} fullOutput Default false. + * @return {(string|Object)} Result color. If fullOutput, + * return {color: ..., leftIndex: ..., rightIndex: ..., value: ...}, + * @memberOf module:zrender/util/color + */ +function lerp$1(normalizedValue, colors, fullOutput) { + if (!(colors && colors.length) + || !(normalizedValue >= 0 && normalizedValue <= 1) + ) { + return; + } + + var value = normalizedValue * (colors.length - 1); + var leftIndex = Math.floor(value); + var rightIndex = Math.ceil(value); + var leftColor = parse(colors[leftIndex]); + var rightColor = parse(colors[rightIndex]); + var dv = value - leftIndex; + + var color = stringify( + [ + clampCssByte(lerpNumber(leftColor[0], rightColor[0], dv)), + clampCssByte(lerpNumber(leftColor[1], rightColor[1], dv)), + clampCssByte(lerpNumber(leftColor[2], rightColor[2], dv)), + clampCssFloat(lerpNumber(leftColor[3], rightColor[3], dv)) + ], + 'rgba' + ); + + return fullOutput + ? { + color: color, + leftIndex: leftIndex, + rightIndex: rightIndex, + value: value + } + : color; +} + +/** + * @deprecated + */ +var mapToColor = lerp$1; + +/** + * @param {string} color + * @param {number=} h 0 ~ 360, ignore when null. + * @param {number=} s 0 ~ 1, ignore when null. + * @param {number=} l 0 ~ 1, ignore when null. + * @return {string} Color string in rgba format. + * @memberOf module:zrender/util/color + */ +function modifyHSL(color, h, s, l) { + color = parse(color); + + if (color) { + color = rgba2hsla(color); + h != null && (color[0] = clampCssAngle(h)); + s != null && (color[1] = parseCssFloat(s)); + l != null && (color[2] = parseCssFloat(l)); + + return stringify(hsla2rgba(color), 'rgba'); + } +} + +/** + * @param {string} color + * @param {number=} alpha 0 ~ 1 + * @return {string} Color string in rgba format. + * @memberOf module:zrender/util/color + */ +function modifyAlpha(color, alpha) { + color = parse(color); + + if (color && alpha != null) { + color[3] = clampCssFloat(alpha); + return stringify(color, 'rgba'); + } +} + +/** + * @param {Array.} arrColor like [12,33,44,0.4] + * @param {string} type 'rgba', 'hsva', ... + * @return {string} Result color. (If input illegal, return undefined). + */ +function stringify(arrColor, type) { + if (!arrColor || !arrColor.length) { + return; + } + var colorStr = arrColor[0] + ',' + arrColor[1] + ',' + arrColor[2]; + if (type === 'rgba' || type === 'hsva' || type === 'hsla') { + colorStr += ',' + arrColor[3]; + } + return type + '(' + colorStr + ')'; +} + + +var color = (Object.freeze || Object)({ + parse: parse, + lift: lift, + toHex: toHex, + fastLerp: fastLerp, + fastMapToColor: fastMapToColor, + lerp: lerp$1, + mapToColor: mapToColor, + modifyHSL: modifyHSL, + modifyAlpha: modifyAlpha, + stringify: stringify +}); + +/** + * @module echarts/animation/Animator + */ + +var arraySlice = Array.prototype.slice; + +function defaultGetter(target, key) { + return target[key]; +} + +function defaultSetter(target, key, value) { + target[key] = value; +} + +/** + * @param {number} p0 + * @param {number} p1 + * @param {number} percent + * @return {number} + */ +function interpolateNumber(p0, p1, percent) { + return (p1 - p0) * percent + p0; +} + +/** + * @param {string} p0 + * @param {string} p1 + * @param {number} percent + * @return {string} + */ +function interpolateString(p0, p1, percent) { + return percent > 0.5 ? p1 : p0; +} + +/** + * @param {Array} p0 + * @param {Array} p1 + * @param {number} percent + * @param {Array} out + * @param {number} arrDim + */ +function interpolateArray(p0, p1, percent, out, arrDim) { + var len = p0.length; + if (arrDim === 1) { + for (var i = 0; i < len; i++) { + out[i] = interpolateNumber(p0[i], p1[i], percent); + } + } + else { + var len2 = len && p0[0].length; + for (var i = 0; i < len; i++) { + for (var j = 0; j < len2; j++) { + out[i][j] = interpolateNumber( + p0[i][j], p1[i][j], percent + ); + } + } + } +} + +// arr0 is source array, arr1 is target array. +// Do some preprocess to avoid error happened when interpolating from arr0 to arr1 +function fillArr(arr0, arr1, arrDim) { + var arr0Len = arr0.length; + var arr1Len = arr1.length; + if (arr0Len !== arr1Len) { + // FIXME Not work for TypedArray + var isPreviousLarger = arr0Len > arr1Len; + if (isPreviousLarger) { + // Cut the previous + arr0.length = arr1Len; + } + else { + // Fill the previous + for (var i = arr0Len; i < arr1Len; i++) { + arr0.push( + arrDim === 1 ? arr1[i] : arraySlice.call(arr1[i]) + ); + } + } + } + // Handling NaN value + var len2 = arr0[0] && arr0[0].length; + for (var i = 0; i < arr0.length; i++) { + if (arrDim === 1) { + if (isNaN(arr0[i])) { + arr0[i] = arr1[i]; + } + } + else { + for (var j = 0; j < len2; j++) { + if (isNaN(arr0[i][j])) { + arr0[i][j] = arr1[i][j]; + } + } + } + } +} + +/** + * @param {Array} arr0 + * @param {Array} arr1 + * @param {number} arrDim + * @return {boolean} + */ +function isArraySame(arr0, arr1, arrDim) { + if (arr0 === arr1) { + return true; + } + var len = arr0.length; + if (len !== arr1.length) { + return false; + } + if (arrDim === 1) { + for (var i = 0; i < len; i++) { + if (arr0[i] !== arr1[i]) { + return false; + } + } + } + else { + var len2 = arr0[0].length; + for (var i = 0; i < len; i++) { + for (var j = 0; j < len2; j++) { + if (arr0[i][j] !== arr1[i][j]) { + return false; + } + } + } + } + return true; +} + +/** + * Catmull Rom interpolate array + * @param {Array} p0 + * @param {Array} p1 + * @param {Array} p2 + * @param {Array} p3 + * @param {number} t + * @param {number} t2 + * @param {number} t3 + * @param {Array} out + * @param {number} arrDim + */ +function catmullRomInterpolateArray( + p0, p1, p2, p3, t, t2, t3, out, arrDim +) { + var len = p0.length; + if (arrDim === 1) { + for (var i = 0; i < len; i++) { + out[i] = catmullRomInterpolate( + p0[i], p1[i], p2[i], p3[i], t, t2, t3 + ); + } + } + else { + var len2 = p0[0].length; + for (var i = 0; i < len; i++) { + for (var j = 0; j < len2; j++) { + out[i][j] = catmullRomInterpolate( + p0[i][j], p1[i][j], p2[i][j], p3[i][j], + t, t2, t3 + ); + } + } + } +} + +/** + * Catmull Rom interpolate number + * @param {number} p0 + * @param {number} p1 + * @param {number} p2 + * @param {number} p3 + * @param {number} t + * @param {number} t2 + * @param {number} t3 + * @return {number} + */ +function catmullRomInterpolate(p0, p1, p2, p3, t, t2, t3) { + var v0 = (p2 - p0) * 0.5; + var v1 = (p3 - p1) * 0.5; + return (2 * (p1 - p2) + v0 + v1) * t3 + + (-3 * (p1 - p2) - 2 * v0 - v1) * t2 + + v0 * t + p1; +} + +function cloneValue(value) { + if (isArrayLike(value)) { + var len = value.length; + if (isArrayLike(value[0])) { + var ret = []; + for (var i = 0; i < len; i++) { + ret.push(arraySlice.call(value[i])); + } + return ret; + } + + return arraySlice.call(value); + } + + return value; +} + +function rgba2String(rgba) { + rgba[0] = Math.floor(rgba[0]); + rgba[1] = Math.floor(rgba[1]); + rgba[2] = Math.floor(rgba[2]); + + return 'rgba(' + rgba.join(',') + ')'; +} + +function getArrayDim(keyframes) { + var lastValue = keyframes[keyframes.length - 1].value; + return isArrayLike(lastValue && lastValue[0]) ? 2 : 1; +} + +function createTrackClip(animator, easing, oneTrackDone, keyframes, propName, forceAnimate) { + var getter = animator._getter; + var setter = animator._setter; + var useSpline = easing === 'spline'; + + var trackLen = keyframes.length; + if (!trackLen) { + return; + } + // Guess data type + var firstVal = keyframes[0].value; + var isValueArray = isArrayLike(firstVal); + var isValueColor = false; + var isValueString = false; + + // For vertices morphing + var arrDim = isValueArray ? getArrayDim(keyframes) : 0; + + var trackMaxTime; + // Sort keyframe as ascending + keyframes.sort(function (a, b) { + return a.time - b.time; + }); + + trackMaxTime = keyframes[trackLen - 1].time; + // Percents of each keyframe + var kfPercents = []; + // Value of each keyframe + var kfValues = []; + var prevValue = keyframes[0].value; + var isAllValueEqual = true; + for (var i = 0; i < trackLen; i++) { + kfPercents.push(keyframes[i].time / trackMaxTime); + // Assume value is a color when it is a string + var value = keyframes[i].value; + + // Check if value is equal, deep check if value is array + if (!((isValueArray && isArraySame(value, prevValue, arrDim)) + || (!isValueArray && value === prevValue))) { + isAllValueEqual = false; + } + prevValue = value; + + // Try converting a string to a color array + if (typeof value === 'string') { + var colorArray = parse(value); + if (colorArray) { + value = colorArray; + isValueColor = true; + } + else { + isValueString = true; + } + } + kfValues.push(value); + } + if (!forceAnimate && isAllValueEqual) { + return; + } + + var lastValue = kfValues[trackLen - 1]; + // Polyfill array and NaN value + for (var i = 0; i < trackLen - 1; i++) { + if (isValueArray) { + fillArr(kfValues[i], lastValue, arrDim); + } + else { + if (isNaN(kfValues[i]) && !isNaN(lastValue) && !isValueString && !isValueColor) { + kfValues[i] = lastValue; + } + } + } + isValueArray && fillArr(getter(animator._target, propName), lastValue, arrDim); + + // Cache the key of last frame to speed up when + // animation playback is sequency + var lastFrame = 0; + var lastFramePercent = 0; + var start; + var w; + var p0; + var p1; + var p2; + var p3; + + if (isValueColor) { + var rgba = [0, 0, 0, 0]; + } + + var onframe = function (target, percent) { + // Find the range keyframes + // kf1-----kf2---------current--------kf3 + // find kf2 and kf3 and do interpolation + var frame; + // In the easing function like elasticOut, percent may less than 0 + if (percent < 0) { + frame = 0; + } + else if (percent < lastFramePercent) { + // Start from next key + // PENDING start from lastFrame ? + start = Math.min(lastFrame + 1, trackLen - 1); + for (frame = start; frame >= 0; frame--) { + if (kfPercents[frame] <= percent) { + break; + } + } + // PENDING really need to do this ? + frame = Math.min(frame, trackLen - 2); + } + else { + for (frame = lastFrame; frame < trackLen; frame++) { + if (kfPercents[frame] > percent) { + break; + } + } + frame = Math.min(frame - 1, trackLen - 2); + } + lastFrame = frame; + lastFramePercent = percent; + + var range = (kfPercents[frame + 1] - kfPercents[frame]); + if (range === 0) { + return; + } + else { + w = (percent - kfPercents[frame]) / range; + } + if (useSpline) { + p1 = kfValues[frame]; + p0 = kfValues[frame === 0 ? frame : frame - 1]; + p2 = kfValues[frame > trackLen - 2 ? trackLen - 1 : frame + 1]; + p3 = kfValues[frame > trackLen - 3 ? trackLen - 1 : frame + 2]; + if (isValueArray) { + catmullRomInterpolateArray( + p0, p1, p2, p3, w, w * w, w * w * w, + getter(target, propName), + arrDim + ); + } + else { + var value; + if (isValueColor) { + value = catmullRomInterpolateArray( + p0, p1, p2, p3, w, w * w, w * w * w, + rgba, 1 + ); + value = rgba2String(rgba); + } + else if (isValueString) { + // String is step(0.5) + return interpolateString(p1, p2, w); + } + else { + value = catmullRomInterpolate( + p0, p1, p2, p3, w, w * w, w * w * w + ); + } + setter( + target, + propName, + value + ); + } + } + else { + if (isValueArray) { + interpolateArray( + kfValues[frame], kfValues[frame + 1], w, + getter(target, propName), + arrDim + ); + } + else { + var value; + if (isValueColor) { + interpolateArray( + kfValues[frame], kfValues[frame + 1], w, + rgba, 1 + ); + value = rgba2String(rgba); + } + else if (isValueString) { + // String is step(0.5) + return interpolateString(kfValues[frame], kfValues[frame + 1], w); + } + else { + value = interpolateNumber(kfValues[frame], kfValues[frame + 1], w); + } + setter( + target, + propName, + value + ); + } + } + }; + + var clip = new Clip({ + target: animator._target, + life: trackMaxTime, + loop: animator._loop, + delay: animator._delay, + onframe: onframe, + ondestroy: oneTrackDone + }); + + if (easing && easing !== 'spline') { + clip.easing = easing; + } + + return clip; +} + +/** + * @alias module:zrender/animation/Animator + * @constructor + * @param {Object} target + * @param {boolean} loop + * @param {Function} getter + * @param {Function} setter + */ +var Animator = function (target, loop, getter, setter) { + this._tracks = {}; + this._target = target; + + this._loop = loop || false; + + this._getter = getter || defaultGetter; + this._setter = setter || defaultSetter; + + this._clipCount = 0; + + this._delay = 0; + + this._doneList = []; + + this._onframeList = []; + + this._clipList = []; +}; + +Animator.prototype = { + /** + * 设置动画关键帧 + * @param {number} time 关键帧时间,单位是ms + * @param {Object} props 关键帧的属性值,key-value表示 + * @return {module:zrender/animation/Animator} + */ + when: function (time /* ms */, props) { + var tracks = this._tracks; + for (var propName in props) { + if (!props.hasOwnProperty(propName)) { + continue; + } + + if (!tracks[propName]) { + tracks[propName] = []; + // Invalid value + var value = this._getter(this._target, propName); + if (value == null) { + // zrLog('Invalid property ' + propName); + continue; + } + // If time is 0 + // Then props is given initialize value + // Else + // Initialize value from current prop value + if (time !== 0) { + tracks[propName].push({ + time: 0, + value: cloneValue(value) + }); + } + } + tracks[propName].push({ + time: time, + value: props[propName] + }); + } + return this; + }, + /** + * 添加动画每一帧的回调函数 + * @param {Function} callback + * @return {module:zrender/animation/Animator} + */ + during: function (callback) { + this._onframeList.push(callback); + return this; + }, + + pause: function () { + for (var i = 0; i < this._clipList.length; i++) { + this._clipList[i].pause(); + } + this._paused = true; + }, + + resume: function () { + for (var i = 0; i < this._clipList.length; i++) { + this._clipList[i].resume(); + } + this._paused = false; + }, + + isPaused: function () { + return !!this._paused; + }, + + _doneCallback: function () { + // Clear all tracks + this._tracks = {}; + // Clear all clips + this._clipList.length = 0; + + var doneList = this._doneList; + var len = doneList.length; + for (var i = 0; i < len; i++) { + doneList[i].call(this); + } + }, + /** + * 开始执行动画 + * @param {string|Function} [easing] + * 动画缓动函数,详见{@link module:zrender/animation/easing} + * @param {boolean} forceAnimate + * @return {module:zrender/animation/Animator} + */ + start: function (easing, forceAnimate) { + + var self = this; + var clipCount = 0; + + var oneTrackDone = function () { + clipCount--; + if (!clipCount) { + self._doneCallback(); + } + }; + + var lastClip; + for (var propName in this._tracks) { + if (!this._tracks.hasOwnProperty(propName)) { + continue; + } + var clip = createTrackClip( + this, easing, oneTrackDone, + this._tracks[propName], propName, forceAnimate + ); + if (clip) { + this._clipList.push(clip); + clipCount++; + + // If start after added to animation + if (this.animation) { + this.animation.addClip(clip); + } + + lastClip = clip; + } + } + + // Add during callback on the last clip + if (lastClip) { + var oldOnFrame = lastClip.onframe; + lastClip.onframe = function (target, percent) { + oldOnFrame(target, percent); + + for (var i = 0; i < self._onframeList.length; i++) { + self._onframeList[i](target, percent); + } + }; + } + + // This optimization will help the case that in the upper application + // the view may be refreshed frequently, where animation will be + // called repeatly but nothing changed. + if (!clipCount) { + this._doneCallback(); + } + return this; + }, + /** + * 停止动画 + * @param {boolean} forwardToLast If move to last frame before stop + */ + stop: function (forwardToLast) { + var clipList = this._clipList; + var animation = this.animation; + for (var i = 0; i < clipList.length; i++) { + var clip = clipList[i]; + if (forwardToLast) { + // Move to last frame before stop + clip.onframe(this._target, 1); + } + animation && animation.removeClip(clip); + } + clipList.length = 0; + }, + /** + * 设置动画延迟开始的时间 + * @param {number} time 单位ms + * @return {module:zrender/animation/Animator} + */ + delay: function (time) { + this._delay = time; + return this; + }, + /** + * 添加动画结束的回调 + * @param {Function} cb + * @return {module:zrender/animation/Animator} + */ + done: function (cb) { + if (cb) { + this._doneList.push(cb); + } + return this; + }, + + /** + * @return {Array.} + */ + getClips: function () { + return this._clipList; + } +}; + +var dpr = 1; + +// If in browser environment +if (typeof window !== 'undefined') { + dpr = Math.max(window.devicePixelRatio || 1, 1); +} + +/** + * config默认配置项 + * @exports zrender/config + * @author Kener (@Kener-林峰, kener.linfeng@gmail.com) + */ + +/** + * debug日志选项:catchBrushException为true下有效 + * 0 : 不生成debug数据,发布用 + * 1 : 异常抛出,调试用 + * 2 : 控制台输出,调试用 + */ +var debugMode = 0; + +// retina 屏幕优化 +var devicePixelRatio = dpr; + +var log = function () { +}; + +if (debugMode === 1) { + log = function () { + for (var k in arguments) { + throw new Error(arguments[k]); + } + }; +} +else if (debugMode > 1) { + log = function () { + for (var k in arguments) { + console.log(arguments[k]); + } + }; +} + +var zrLog = log; + +/** + * @alias modue:zrender/mixin/Animatable + * @constructor + */ +var Animatable = function () { + + /** + * @type {Array.} + * @readOnly + */ + this.animators = []; +}; + +Animatable.prototype = { + + constructor: Animatable, + + /** + * 动画 + * + * @param {string} path The path to fetch value from object, like 'a.b.c'. + * @param {boolean} [loop] Whether to loop animation. + * @return {module:zrender/animation/Animator} + * @example: + * el.animate('style', false) + * .when(1000, {x: 10} ) + * .done(function(){ // Animation done }) + * .start() + */ + animate: function (path, loop) { + var target; + var animatingShape = false; + var el = this; + var zr = this.__zr; + if (path) { + var pathSplitted = path.split('.'); + var prop = el; + // If animating shape + animatingShape = pathSplitted[0] === 'shape'; + for (var i = 0, l = pathSplitted.length; i < l; i++) { + if (!prop) { + continue; + } + prop = prop[pathSplitted[i]]; + } + if (prop) { + target = prop; + } + } + else { + target = el; + } + + if (!target) { + zrLog( + 'Property "' + + path + + '" is not existed in element ' + + el.id + ); + return; + } + + var animators = el.animators; + + var animator = new Animator(target, loop); + + animator.during(function (target) { + el.dirty(animatingShape); + }) + .done(function () { + // FIXME Animator will not be removed if use `Animator#stop` to stop animation + animators.splice(indexOf(animators, animator), 1); + }); + + animators.push(animator); + + // If animate after added to the zrender + if (zr) { + zr.animation.addAnimator(animator); + } + + return animator; + }, + + /** + * 停止动画 + * @param {boolean} forwardToLast If move to last frame before stop + */ + stopAnimation: function (forwardToLast) { + var animators = this.animators; + var len = animators.length; + for (var i = 0; i < len; i++) { + animators[i].stop(forwardToLast); + } + animators.length = 0; + + return this; + }, + + /** + * Caution: this method will stop previous animation. + * So do not use this method to one element twice before + * animation starts, unless you know what you are doing. + * @param {Object} target + * @param {number} [time=500] Time in ms + * @param {string} [easing='linear'] + * @param {number} [delay=0] + * @param {Function} [callback] + * @param {Function} [forceAnimate] Prevent stop animation and callback + * immediently when target values are the same as current values. + * + * @example + * // Animate position + * el.animateTo({ + * position: [10, 10] + * }, function () { // done }) + * + * // Animate shape, style and position in 100ms, delayed 100ms, with cubicOut easing + * el.animateTo({ + * shape: { + * width: 500 + * }, + * style: { + * fill: 'red' + * } + * position: [10, 10] + * }, 100, 100, 'cubicOut', function () { // done }) + */ + // TODO Return animation key + animateTo: function (target, time, delay, easing, callback, forceAnimate) { + animateTo(this, target, time, delay, easing, callback, forceAnimate); + }, + + /** + * Animate from the target state to current state. + * The params and the return value are the same as `this.animateTo`. + */ + animateFrom: function (target, time, delay, easing, callback, forceAnimate) { + animateTo(this, target, time, delay, easing, callback, forceAnimate, true); + } +}; + +function animateTo(animatable, target, time, delay, easing, callback, forceAnimate, reverse) { + // animateTo(target, time, easing, callback); + if (isString(delay)) { + callback = easing; + easing = delay; + delay = 0; + } + // animateTo(target, time, delay, callback); + else if (isFunction$1(easing)) { + callback = easing; + easing = 'linear'; + delay = 0; + } + // animateTo(target, time, callback); + else if (isFunction$1(delay)) { + callback = delay; + delay = 0; + } + // animateTo(target, callback) + else if (isFunction$1(time)) { + callback = time; + time = 500; + } + // animateTo(target) + else if (!time) { + time = 500; + } + // Stop all previous animations + animatable.stopAnimation(); + animateToShallow(animatable, '', animatable, target, time, delay, reverse); + + // Animators may be removed immediately after start + // if there is nothing to animate + var animators = animatable.animators.slice(); + var count = animators.length; + function done() { + count--; + if (!count) { + callback && callback(); + } + } + + // No animators. This should be checked before animators[i].start(), + // because 'done' may be executed immediately if no need to animate. + if (!count) { + callback && callback(); + } + // Start after all animators created + // Incase any animator is done immediately when all animation properties are not changed + for (var i = 0; i < animators.length; i++) { + animators[i] + .done(done) + .start(easing, forceAnimate); + } +} + +/** + * @param {string} path='' + * @param {Object} source=animatable + * @param {Object} target + * @param {number} [time=500] + * @param {number} [delay=0] + * @param {boolean} [reverse] If `true`, animate + * from the `target` to current state. + * + * @example + * // Animate position + * el._animateToShallow({ + * position: [10, 10] + * }) + * + * // Animate shape, style and position in 100ms, delayed 100ms + * el._animateToShallow({ + * shape: { + * width: 500 + * }, + * style: { + * fill: 'red' + * } + * position: [10, 10] + * }, 100, 100) + */ +function animateToShallow(animatable, path, source, target, time, delay, reverse) { + var objShallow = {}; + var propertyCount = 0; + for (var name in target) { + if (!target.hasOwnProperty(name)) { + continue; + } + + if (source[name] != null) { + if (isObject$1(target[name]) && !isArrayLike(target[name])) { + animateToShallow( + animatable, + path ? path + '.' + name : name, + source[name], + target[name], + time, + delay, + reverse + ); + } + else { + if (reverse) { + objShallow[name] = source[name]; + setAttrByPath(animatable, path, name, target[name]); + } + else { + objShallow[name] = target[name]; + } + propertyCount++; + } + } + else if (target[name] != null && !reverse) { + setAttrByPath(animatable, path, name, target[name]); + } + } + + if (propertyCount > 0) { + animatable.animate(path, false) + .when(time == null ? 500 : time, objShallow) + .delay(delay || 0); + } +} + +function setAttrByPath(el, path, name, value) { + // Attr directly if not has property + // FIXME, if some property not needed for element ? + if (!path) { + el.attr(name, value); + } + else { + // Only support set shape or style + var props = {}; + props[path] = {}; + props[path][name] = value; + el.attr(props); + } +} + +/** + * @alias module:zrender/Element + * @constructor + * @extends {module:zrender/mixin/Animatable} + * @extends {module:zrender/mixin/Transformable} + * @extends {module:zrender/mixin/Eventful} + */ +var Element = function (opts) { // jshint ignore:line + + Transformable.call(this, opts); + Eventful.call(this, opts); + Animatable.call(this, opts); + + /** + * 画布元素ID + * @type {string} + */ + this.id = opts.id || guid(); +}; + +Element.prototype = { + + /** + * 元素类型 + * Element type + * @type {string} + */ + type: 'element', + + /** + * 元素名字 + * Element name + * @type {string} + */ + name: '', + + /** + * ZRender 实例对象,会在 element 添加到 zrender 实例中后自动赋值 + * ZRender instance will be assigned when element is associated with zrender + * @name module:/zrender/Element#__zr + * @type {module:zrender/ZRender} + */ + __zr: null, + + /** + * 图形是否忽略,为true时忽略图形的绘制以及事件触发 + * If ignore drawing and events of the element object + * @name module:/zrender/Element#ignore + * @type {boolean} + * @default false + */ + ignore: false, + + /** + * 用于裁剪的路径(shape),所有 Group 内的路径在绘制时都会被这个路径裁剪 + * 该路径会继承被裁减对象的变换 + * @type {module:zrender/graphic/Path} + * @see http://www.w3.org/TR/2dcontext/#clipping-region + * @readOnly + */ + clipPath: null, + + /** + * 是否是 Group + * @type {boolean} + */ + isGroup: false, + + /** + * Drift element + * @param {number} dx dx on the global space + * @param {number} dy dy on the global space + */ + drift: function (dx, dy) { + switch (this.draggable) { + case 'horizontal': + dy = 0; + break; + case 'vertical': + dx = 0; + break; + } + + var m = this.transform; + if (!m) { + m = this.transform = [1, 0, 0, 1, 0, 0]; + } + m[4] += dx; + m[5] += dy; + + this.decomposeTransform(); + this.dirty(false); + }, + + /** + * Hook before update + */ + beforeUpdate: function () {}, + /** + * Hook after update + */ + afterUpdate: function () {}, + /** + * Update each frame + */ + update: function () { + this.updateTransform(); + }, + + /** + * @param {Function} cb + * @param {} context + */ + traverse: function (cb, context) {}, + + /** + * @protected + */ + attrKV: function (key, value) { + if (key === 'position' || key === 'scale' || key === 'origin') { + // Copy the array + if (value) { + var target = this[key]; + if (!target) { + target = this[key] = []; + } + target[0] = value[0]; + target[1] = value[1]; + } + } + else { + this[key] = value; + } + }, + + /** + * Hide the element + */ + hide: function () { + this.ignore = true; + this.__zr && this.__zr.refresh(); + }, + + /** + * Show the element + */ + show: function () { + this.ignore = false; + this.__zr && this.__zr.refresh(); + }, + + /** + * @param {string|Object} key + * @param {*} value + */ + attr: function (key, value) { + if (typeof key === 'string') { + this.attrKV(key, value); + } + else if (isObject$1(key)) { + for (var name in key) { + if (key.hasOwnProperty(name)) { + this.attrKV(name, key[name]); + } + } + } + + this.dirty(false); + + return this; + }, + + /** + * @param {module:zrender/graphic/Path} clipPath + */ + setClipPath: function (clipPath) { + var zr = this.__zr; + if (zr) { + clipPath.addSelfToZr(zr); + } + + // Remove previous clip path + if (this.clipPath && this.clipPath !== clipPath) { + this.removeClipPath(); + } + + this.clipPath = clipPath; + clipPath.__zr = zr; + clipPath.__clipTarget = this; + + this.dirty(false); + }, + + /** + */ + removeClipPath: function () { + var clipPath = this.clipPath; + if (clipPath) { + if (clipPath.__zr) { + clipPath.removeSelfFromZr(clipPath.__zr); + } + + clipPath.__zr = null; + clipPath.__clipTarget = null; + this.clipPath = null; + + this.dirty(false); + } + }, + + /** + * Add self from zrender instance. + * Not recursively because it will be invoked when element added to storage. + * @param {module:zrender/ZRender} zr + */ + addSelfToZr: function (zr) { + this.__zr = zr; + // 添加动画 + var animators = this.animators; + if (animators) { + for (var i = 0; i < animators.length; i++) { + zr.animation.addAnimator(animators[i]); + } + } + + if (this.clipPath) { + this.clipPath.addSelfToZr(zr); + } + }, + + /** + * Remove self from zrender instance. + * Not recursively because it will be invoked when element added to storage. + * @param {module:zrender/ZRender} zr + */ + removeSelfFromZr: function (zr) { + this.__zr = null; + // 移除动画 + var animators = this.animators; + if (animators) { + for (var i = 0; i < animators.length; i++) { + zr.animation.removeAnimator(animators[i]); + } + } + + if (this.clipPath) { + this.clipPath.removeSelfFromZr(zr); + } + } +}; + +mixin(Element, Animatable); +mixin(Element, Transformable); +mixin(Element, Eventful); + +/** + * @module echarts/core/BoundingRect + */ + +var v2ApplyTransform = applyTransform; +var mathMin = Math.min; +var mathMax = Math.max; + +/** + * @alias module:echarts/core/BoundingRect + */ +function BoundingRect(x, y, width, height) { + + if (width < 0) { + x = x + width; + width = -width; + } + if (height < 0) { + y = y + height; + height = -height; + } + + /** + * @type {number} + */ + this.x = x; + /** + * @type {number} + */ + this.y = y; + /** + * @type {number} + */ + this.width = width; + /** + * @type {number} + */ + this.height = height; +} + +BoundingRect.prototype = { + + constructor: BoundingRect, + + /** + * @param {module:echarts/core/BoundingRect} other + */ + union: function (other) { + var x = mathMin(other.x, this.x); + var y = mathMin(other.y, this.y); + + this.width = mathMax( + other.x + other.width, + this.x + this.width + ) - x; + this.height = mathMax( + other.y + other.height, + this.y + this.height + ) - y; + this.x = x; + this.y = y; + }, + + /** + * @param {Array.} m + * @methods + */ + applyTransform: (function () { + var lt = []; + var rb = []; + var lb = []; + var rt = []; + return function (m) { + // In case usage like this + // el.getBoundingRect().applyTransform(el.transform) + // And element has no transform + if (!m) { + return; + } + lt[0] = lb[0] = this.x; + lt[1] = rt[1] = this.y; + rb[0] = rt[0] = this.x + this.width; + rb[1] = lb[1] = this.y + this.height; + + v2ApplyTransform(lt, lt, m); + v2ApplyTransform(rb, rb, m); + v2ApplyTransform(lb, lb, m); + v2ApplyTransform(rt, rt, m); + + this.x = mathMin(lt[0], rb[0], lb[0], rt[0]); + this.y = mathMin(lt[1], rb[1], lb[1], rt[1]); + var maxX = mathMax(lt[0], rb[0], lb[0], rt[0]); + var maxY = mathMax(lt[1], rb[1], lb[1], rt[1]); + this.width = maxX - this.x; + this.height = maxY - this.y; + }; + })(), + + /** + * Calculate matrix of transforming from self to target rect + * @param {module:zrender/core/BoundingRect} b + * @return {Array.} + */ + calculateTransform: function (b) { + var a = this; + var sx = b.width / a.width; + var sy = b.height / a.height; + + var m = create$1(); + + // 矩阵右乘 + translate(m, m, [-a.x, -a.y]); + scale$1(m, m, [sx, sy]); + translate(m, m, [b.x, b.y]); + + return m; + }, + + /** + * @param {(module:echarts/core/BoundingRect|Object)} b + * @return {boolean} + */ + intersect: function (b) { + if (!b) { + return false; + } + + if (!(b instanceof BoundingRect)) { + // Normalize negative width/height. + b = BoundingRect.create(b); + } + + var a = this; + var ax0 = a.x; + var ax1 = a.x + a.width; + var ay0 = a.y; + var ay1 = a.y + a.height; + + var bx0 = b.x; + var bx1 = b.x + b.width; + var by0 = b.y; + var by1 = b.y + b.height; + + return !(ax1 < bx0 || bx1 < ax0 || ay1 < by0 || by1 < ay0); + }, + + contain: function (x, y) { + var rect = this; + return x >= rect.x + && x <= (rect.x + rect.width) + && y >= rect.y + && y <= (rect.y + rect.height); + }, + + /** + * @return {module:echarts/core/BoundingRect} + */ + clone: function () { + return new BoundingRect(this.x, this.y, this.width, this.height); + }, + + /** + * Copy from another rect + */ + copy: function (other) { + this.x = other.x; + this.y = other.y; + this.width = other.width; + this.height = other.height; + }, + + plain: function () { + return { + x: this.x, + y: this.y, + width: this.width, + height: this.height + }; + } +}; + +/** + * @param {Object|module:zrender/core/BoundingRect} rect + * @param {number} rect.x + * @param {number} rect.y + * @param {number} rect.width + * @param {number} rect.height + * @return {module:zrender/core/BoundingRect} + */ +BoundingRect.create = function (rect) { + return new BoundingRect(rect.x, rect.y, rect.width, rect.height); +}; + +/** + * Group是一个容器,可以插入子节点,Group的变换也会被应用到子节点上 + * @module zrender/graphic/Group + * @example + * var Group = require('zrender/container/Group'); + * var Circle = require('zrender/graphic/shape/Circle'); + * var g = new Group(); + * g.position[0] = 100; + * g.position[1] = 100; + * g.add(new Circle({ + * style: { + * x: 100, + * y: 100, + * r: 20, + * } + * })); + * zr.add(g); + */ + +/** + * @alias module:zrender/graphic/Group + * @constructor + * @extends module:zrender/mixin/Transformable + * @extends module:zrender/mixin/Eventful + */ +var Group = function (opts) { + + opts = opts || {}; + + Element.call(this, opts); + + for (var key in opts) { + if (opts.hasOwnProperty(key)) { + this[key] = opts[key]; + } + } + + this._children = []; + + this.__storage = null; + + this.__dirty = true; +}; + +Group.prototype = { + + constructor: Group, + + isGroup: true, + + /** + * @type {string} + */ + type: 'group', + + /** + * 所有子孙元素是否响应鼠标事件 + * @name module:/zrender/container/Group#silent + * @type {boolean} + * @default false + */ + silent: false, + + /** + * @return {Array.} + */ + children: function () { + return this._children.slice(); + }, + + /** + * 获取指定 index 的儿子节点 + * @param {number} idx + * @return {module:zrender/Element} + */ + childAt: function (idx) { + return this._children[idx]; + }, + + /** + * 获取指定名字的儿子节点 + * @param {string} name + * @return {module:zrender/Element} + */ + childOfName: function (name) { + var children = this._children; + for (var i = 0; i < children.length; i++) { + if (children[i].name === name) { + return children[i]; + } + } + }, + + /** + * @return {number} + */ + childCount: function () { + return this._children.length; + }, + + /** + * 添加子节点到最后 + * @param {module:zrender/Element} child + */ + add: function (child) { + if (child && child !== this && child.parent !== this) { + + this._children.push(child); + + this._doAdd(child); + } + + return this; + }, + + /** + * 添加子节点在 nextSibling 之前 + * @param {module:zrender/Element} child + * @param {module:zrender/Element} nextSibling + */ + addBefore: function (child, nextSibling) { + if (child && child !== this && child.parent !== this + && nextSibling && nextSibling.parent === this) { + + var children = this._children; + var idx = children.indexOf(nextSibling); + + if (idx >= 0) { + children.splice(idx, 0, child); + this._doAdd(child); + } + } + + return this; + }, + + _doAdd: function (child) { + if (child.parent) { + child.parent.remove(child); + } + + child.parent = this; + + var storage = this.__storage; + var zr = this.__zr; + if (storage && storage !== child.__storage) { + + storage.addToStorage(child); + + if (child instanceof Group) { + child.addChildrenToStorage(storage); + } + } + + zr && zr.refresh(); + }, + + /** + * 移除子节点 + * @param {module:zrender/Element} child + */ + remove: function (child) { + var zr = this.__zr; + var storage = this.__storage; + var children = this._children; + + var idx = indexOf(children, child); + if (idx < 0) { + return this; + } + children.splice(idx, 1); + + child.parent = null; + + if (storage) { + + storage.delFromStorage(child); + + if (child instanceof Group) { + child.delChildrenFromStorage(storage); + } + } + + zr && zr.refresh(); + + return this; + }, + + /** + * 移除所有子节点 + */ + removeAll: function () { + var children = this._children; + var storage = this.__storage; + var child; + var i; + for (i = 0; i < children.length; i++) { + child = children[i]; + if (storage) { + storage.delFromStorage(child); + if (child instanceof Group) { + child.delChildrenFromStorage(storage); + } + } + child.parent = null; + } + children.length = 0; + + return this; + }, + + /** + * 遍历所有子节点 + * @param {Function} cb + * @param {} context + */ + eachChild: function (cb, context) { + var children = this._children; + for (var i = 0; i < children.length; i++) { + var child = children[i]; + cb.call(context, child, i); + } + return this; + }, + + /** + * 深度优先遍历所有子孙节点 + * @param {Function} cb + * @param {} context + */ + traverse: function (cb, context) { + for (var i = 0; i < this._children.length; i++) { + var child = this._children[i]; + cb.call(context, child); + + if (child.type === 'group') { + child.traverse(cb, context); + } + } + return this; + }, + + addChildrenToStorage: function (storage) { + for (var i = 0; i < this._children.length; i++) { + var child = this._children[i]; + storage.addToStorage(child); + if (child instanceof Group) { + child.addChildrenToStorage(storage); + } + } + }, + + delChildrenFromStorage: function (storage) { + for (var i = 0; i < this._children.length; i++) { + var child = this._children[i]; + storage.delFromStorage(child); + if (child instanceof Group) { + child.delChildrenFromStorage(storage); + } + } + }, + + dirty: function () { + this.__dirty = true; + this.__zr && this.__zr.refresh(); + return this; + }, + + /** + * @return {module:zrender/core/BoundingRect} + */ + getBoundingRect: function (includeChildren) { + // TODO Caching + var rect = null; + var tmpRect = new BoundingRect(0, 0, 0, 0); + var children = includeChildren || this._children; + var tmpMat = []; + + for (var i = 0; i < children.length; i++) { + var child = children[i]; + if (child.ignore || child.invisible) { + continue; + } + + var childRect = child.getBoundingRect(); + var transform = child.getLocalTransform(tmpMat); + // TODO + // The boundingRect cacluated by transforming original + // rect may be bigger than the actual bundingRect when rotation + // is used. (Consider a circle rotated aginst its center, where + // the actual boundingRect should be the same as that not be + // rotated.) But we can not find better approach to calculate + // actual boundingRect yet, considering performance. + if (transform) { + tmpRect.copy(childRect); + tmpRect.applyTransform(transform); + rect = rect || tmpRect.clone(); + rect.union(tmpRect); + } + else { + rect = rect || childRect.clone(); + rect.union(childRect); + } + } + return rect || tmpRect; + } +}; + +inherits(Group, Element); + +// https://github.com/mziccard/node-timsort +var DEFAULT_MIN_MERGE = 32; + +var DEFAULT_MIN_GALLOPING = 7; + +function minRunLength(n) { + var r = 0; + + while (n >= DEFAULT_MIN_MERGE) { + r |= n & 1; + n >>= 1; + } + + return n + r; +} + +function makeAscendingRun(array, lo, hi, compare) { + var runHi = lo + 1; + + if (runHi === hi) { + return 1; + } + + if (compare(array[runHi++], array[lo]) < 0) { + while (runHi < hi && compare(array[runHi], array[runHi - 1]) < 0) { + runHi++; + } + + reverseRun(array, lo, runHi); + } + else { + while (runHi < hi && compare(array[runHi], array[runHi - 1]) >= 0) { + runHi++; + } + } + + return runHi - lo; +} + +function reverseRun(array, lo, hi) { + hi--; + + while (lo < hi) { + var t = array[lo]; + array[lo++] = array[hi]; + array[hi--] = t; + } +} + +function binaryInsertionSort(array, lo, hi, start, compare) { + if (start === lo) { + start++; + } + + for (; start < hi; start++) { + var pivot = array[start]; + + var left = lo; + var right = start; + var mid; + + while (left < right) { + mid = left + right >>> 1; + + if (compare(pivot, array[mid]) < 0) { + right = mid; + } + else { + left = mid + 1; + } + } + + var n = start - left; + + switch (n) { + case 3: + array[left + 3] = array[left + 2]; + + case 2: + array[left + 2] = array[left + 1]; + + case 1: + array[left + 1] = array[left]; + break; + default: + while (n > 0) { + array[left + n] = array[left + n - 1]; + n--; + } + } + + array[left] = pivot; + } +} + +function gallopLeft(value, array, start, length, hint, compare) { + var lastOffset = 0; + var maxOffset = 0; + var offset = 1; + + if (compare(value, array[start + hint]) > 0) { + maxOffset = length - hint; + + while (offset < maxOffset && compare(value, array[start + hint + offset]) > 0) { + lastOffset = offset; + offset = (offset << 1) + 1; + + if (offset <= 0) { + offset = maxOffset; + } + } + + if (offset > maxOffset) { + offset = maxOffset; + } + + lastOffset += hint; + offset += hint; + } + else { + maxOffset = hint + 1; + while (offset < maxOffset && compare(value, array[start + hint - offset]) <= 0) { + lastOffset = offset; + offset = (offset << 1) + 1; + + if (offset <= 0) { + offset = maxOffset; + } + } + if (offset > maxOffset) { + offset = maxOffset; + } + + var tmp = lastOffset; + lastOffset = hint - offset; + offset = hint - tmp; + } + + lastOffset++; + while (lastOffset < offset) { + var m = lastOffset + (offset - lastOffset >>> 1); + + if (compare(value, array[start + m]) > 0) { + lastOffset = m + 1; + } + else { + offset = m; + } + } + return offset; +} + +function gallopRight(value, array, start, length, hint, compare) { + var lastOffset = 0; + var maxOffset = 0; + var offset = 1; + + if (compare(value, array[start + hint]) < 0) { + maxOffset = hint + 1; + + while (offset < maxOffset && compare(value, array[start + hint - offset]) < 0) { + lastOffset = offset; + offset = (offset << 1) + 1; + + if (offset <= 0) { + offset = maxOffset; + } + } + + if (offset > maxOffset) { + offset = maxOffset; + } + + var tmp = lastOffset; + lastOffset = hint - offset; + offset = hint - tmp; + } + else { + maxOffset = length - hint; + + while (offset < maxOffset && compare(value, array[start + hint + offset]) >= 0) { + lastOffset = offset; + offset = (offset << 1) + 1; + + if (offset <= 0) { + offset = maxOffset; + } + } + + if (offset > maxOffset) { + offset = maxOffset; + } + + lastOffset += hint; + offset += hint; + } + + lastOffset++; + + while (lastOffset < offset) { + var m = lastOffset + (offset - lastOffset >>> 1); + + if (compare(value, array[start + m]) < 0) { + offset = m; + } + else { + lastOffset = m + 1; + } + } + + return offset; +} + +function TimSort(array, compare) { + var minGallop = DEFAULT_MIN_GALLOPING; + var runStart; + var runLength; + var stackSize = 0; + + var tmp = []; + + runStart = []; + runLength = []; + + function pushRun(_runStart, _runLength) { + runStart[stackSize] = _runStart; + runLength[stackSize] = _runLength; + stackSize += 1; + } + + function mergeRuns() { + while (stackSize > 1) { + var n = stackSize - 2; + + if (n >= 1 && runLength[n - 1] <= runLength[n] + runLength[n + 1] || n >= 2 && runLength[n - 2] <= runLength[n] + runLength[n - 1]) { + if (runLength[n - 1] < runLength[n + 1]) { + n--; + } + } + else if (runLength[n] > runLength[n + 1]) { + break; + } + mergeAt(n); + } + } + + function forceMergeRuns() { + while (stackSize > 1) { + var n = stackSize - 2; + + if (n > 0 && runLength[n - 1] < runLength[n + 1]) { + n--; + } + + mergeAt(n); + } + } + + function mergeAt(i) { + var start1 = runStart[i]; + var length1 = runLength[i]; + var start2 = runStart[i + 1]; + var length2 = runLength[i + 1]; + + runLength[i] = length1 + length2; + + if (i === stackSize - 3) { + runStart[i + 1] = runStart[i + 2]; + runLength[i + 1] = runLength[i + 2]; + } + + stackSize--; + + var k = gallopRight(array[start2], array, start1, length1, 0, compare); + start1 += k; + length1 -= k; + + if (length1 === 0) { + return; + } + + length2 = gallopLeft(array[start1 + length1 - 1], array, start2, length2, length2 - 1, compare); + + if (length2 === 0) { + return; + } + + if (length1 <= length2) { + mergeLow(start1, length1, start2, length2); + } + else { + mergeHigh(start1, length1, start2, length2); + } + } + + function mergeLow(start1, length1, start2, length2) { + var i = 0; + + for (i = 0; i < length1; i++) { + tmp[i] = array[start1 + i]; + } + + var cursor1 = 0; + var cursor2 = start2; + var dest = start1; + + array[dest++] = array[cursor2++]; + + if (--length2 === 0) { + for (i = 0; i < length1; i++) { + array[dest + i] = tmp[cursor1 + i]; + } + return; + } + + if (length1 === 1) { + for (i = 0; i < length2; i++) { + array[dest + i] = array[cursor2 + i]; + } + array[dest + length2] = tmp[cursor1]; + return; + } + + var _minGallop = minGallop; + var count1, count2, exit; + + while (1) { + count1 = 0; + count2 = 0; + exit = false; + + do { + if (compare(array[cursor2], tmp[cursor1]) < 0) { + array[dest++] = array[cursor2++]; + count2++; + count1 = 0; + + if (--length2 === 0) { + exit = true; + break; + } + } + else { + array[dest++] = tmp[cursor1++]; + count1++; + count2 = 0; + if (--length1 === 1) { + exit = true; + break; + } + } + } while ((count1 | count2) < _minGallop); + + if (exit) { + break; + } + + do { + count1 = gallopRight(array[cursor2], tmp, cursor1, length1, 0, compare); + + if (count1 !== 0) { + for (i = 0; i < count1; i++) { + array[dest + i] = tmp[cursor1 + i]; + } + + dest += count1; + cursor1 += count1; + length1 -= count1; + if (length1 <= 1) { + exit = true; + break; + } + } + + array[dest++] = array[cursor2++]; + + if (--length2 === 0) { + exit = true; + break; + } + + count2 = gallopLeft(tmp[cursor1], array, cursor2, length2, 0, compare); + + if (count2 !== 0) { + for (i = 0; i < count2; i++) { + array[dest + i] = array[cursor2 + i]; + } + + dest += count2; + cursor2 += count2; + length2 -= count2; + + if (length2 === 0) { + exit = true; + break; + } + } + array[dest++] = tmp[cursor1++]; + + if (--length1 === 1) { + exit = true; + break; + } + + _minGallop--; + } while (count1 >= DEFAULT_MIN_GALLOPING || count2 >= DEFAULT_MIN_GALLOPING); + + if (exit) { + break; + } + + if (_minGallop < 0) { + _minGallop = 0; + } + + _minGallop += 2; + } + + minGallop = _minGallop; + + minGallop < 1 && (minGallop = 1); + + if (length1 === 1) { + for (i = 0; i < length2; i++) { + array[dest + i] = array[cursor2 + i]; + } + array[dest + length2] = tmp[cursor1]; + } + else if (length1 === 0) { + throw new Error(); + // throw new Error('mergeLow preconditions were not respected'); + } + else { + for (i = 0; i < length1; i++) { + array[dest + i] = tmp[cursor1 + i]; + } + } + } + + function mergeHigh(start1, length1, start2, length2) { + var i = 0; + + for (i = 0; i < length2; i++) { + tmp[i] = array[start2 + i]; + } + + var cursor1 = start1 + length1 - 1; + var cursor2 = length2 - 1; + var dest = start2 + length2 - 1; + var customCursor = 0; + var customDest = 0; + + array[dest--] = array[cursor1--]; + + if (--length1 === 0) { + customCursor = dest - (length2 - 1); + + for (i = 0; i < length2; i++) { + array[customCursor + i] = tmp[i]; + } + + return; + } + + if (length2 === 1) { + dest -= length1; + cursor1 -= length1; + customDest = dest + 1; + customCursor = cursor1 + 1; + + for (i = length1 - 1; i >= 0; i--) { + array[customDest + i] = array[customCursor + i]; + } + + array[dest] = tmp[cursor2]; + return; + } + + var _minGallop = minGallop; + + while (true) { + var count1 = 0; + var count2 = 0; + var exit = false; + + do { + if (compare(tmp[cursor2], array[cursor1]) < 0) { + array[dest--] = array[cursor1--]; + count1++; + count2 = 0; + if (--length1 === 0) { + exit = true; + break; + } + } + else { + array[dest--] = tmp[cursor2--]; + count2++; + count1 = 0; + if (--length2 === 1) { + exit = true; + break; + } + } + } while ((count1 | count2) < _minGallop); + + if (exit) { + break; + } + + do { + count1 = length1 - gallopRight(tmp[cursor2], array, start1, length1, length1 - 1, compare); + + if (count1 !== 0) { + dest -= count1; + cursor1 -= count1; + length1 -= count1; + customDest = dest + 1; + customCursor = cursor1 + 1; + + for (i = count1 - 1; i >= 0; i--) { + array[customDest + i] = array[customCursor + i]; + } + + if (length1 === 0) { + exit = true; + break; + } + } + + array[dest--] = tmp[cursor2--]; + + if (--length2 === 1) { + exit = true; + break; + } + + count2 = length2 - gallopLeft(array[cursor1], tmp, 0, length2, length2 - 1, compare); + + if (count2 !== 0) { + dest -= count2; + cursor2 -= count2; + length2 -= count2; + customDest = dest + 1; + customCursor = cursor2 + 1; + + for (i = 0; i < count2; i++) { + array[customDest + i] = tmp[customCursor + i]; + } + + if (length2 <= 1) { + exit = true; + break; + } + } + + array[dest--] = array[cursor1--]; + + if (--length1 === 0) { + exit = true; + break; + } + + _minGallop--; + } while (count1 >= DEFAULT_MIN_GALLOPING || count2 >= DEFAULT_MIN_GALLOPING); + + if (exit) { + break; + } + + if (_minGallop < 0) { + _minGallop = 0; + } + + _minGallop += 2; + } + + minGallop = _minGallop; + + if (minGallop < 1) { + minGallop = 1; + } + + if (length2 === 1) { + dest -= length1; + cursor1 -= length1; + customDest = dest + 1; + customCursor = cursor1 + 1; + + for (i = length1 - 1; i >= 0; i--) { + array[customDest + i] = array[customCursor + i]; + } + + array[dest] = tmp[cursor2]; + } + else if (length2 === 0) { + throw new Error(); + // throw new Error('mergeHigh preconditions were not respected'); + } + else { + customCursor = dest - (length2 - 1); + for (i = 0; i < length2; i++) { + array[customCursor + i] = tmp[i]; + } + } + } + + this.mergeRuns = mergeRuns; + this.forceMergeRuns = forceMergeRuns; + this.pushRun = pushRun; +} + +function sort(array, compare, lo, hi) { + if (!lo) { + lo = 0; + } + if (!hi) { + hi = array.length; + } + + var remaining = hi - lo; + + if (remaining < 2) { + return; + } + + var runLength = 0; + + if (remaining < DEFAULT_MIN_MERGE) { + runLength = makeAscendingRun(array, lo, hi, compare); + binaryInsertionSort(array, lo, hi, lo + runLength, compare); + return; + } + + var ts = new TimSort(array, compare); + + var minRun = minRunLength(remaining); + + do { + runLength = makeAscendingRun(array, lo, hi, compare); + if (runLength < minRun) { + var force = remaining; + if (force > minRun) { + force = minRun; + } + + binaryInsertionSort(array, lo, lo + force, lo + runLength, compare); + runLength = force; + } + + ts.pushRun(lo, runLength); + ts.mergeRuns(); + + remaining -= runLength; + lo += runLength; + } while (remaining !== 0); + + ts.forceMergeRuns(); +} + +// Use timsort because in most case elements are partially sorted +// https://jsfiddle.net/pissang/jr4x7mdm/8/ +function shapeCompareFunc(a, b) { + if (a.zlevel === b.zlevel) { + if (a.z === b.z) { + // if (a.z2 === b.z2) { + // // FIXME Slow has renderidx compare + // // http://stackoverflow.com/questions/20883421/sorting-in-javascript-should-every-compare-function-have-a-return-0-statement + // // https://github.com/v8/v8/blob/47cce544a31ed5577ffe2963f67acb4144ee0232/src/js/array.js#L1012 + // return a.__renderidx - b.__renderidx; + // } + return a.z2 - b.z2; + } + return a.z - b.z; + } + return a.zlevel - b.zlevel; +} +/** + * 内容仓库 (M) + * @alias module:zrender/Storage + * @constructor + */ +var Storage = function () { // jshint ignore:line + this._roots = []; + + this._displayList = []; + + this._displayListLen = 0; +}; + +Storage.prototype = { + + constructor: Storage, + + /** + * @param {Function} cb + * + */ + traverse: function (cb, context) { + for (var i = 0; i < this._roots.length; i++) { + this._roots[i].traverse(cb, context); + } + }, + + /** + * 返回所有图形的绘制队列 + * @param {boolean} [update=false] 是否在返回前更新该数组 + * @param {boolean} [includeIgnore=false] 是否包含 ignore 的数组, 在 update 为 true 的时候有效 + * + * 详见{@link module:zrender/graphic/Displayable.prototype.updateDisplayList} + * @return {Array.} + */ + getDisplayList: function (update, includeIgnore) { + includeIgnore = includeIgnore || false; + if (update) { + this.updateDisplayList(includeIgnore); + } + return this._displayList; + }, + + /** + * 更新图形的绘制队列。 + * 每次绘制前都会调用,该方法会先深度优先遍历整个树,更新所有Group和Shape的变换并且把所有可见的Shape保存到数组中, + * 最后根据绘制的优先级(zlevel > z > 插入顺序)排序得到绘制队列 + * @param {boolean} [includeIgnore=false] 是否包含 ignore 的数组 + */ + updateDisplayList: function (includeIgnore) { + this._displayListLen = 0; + + var roots = this._roots; + var displayList = this._displayList; + for (var i = 0, len = roots.length; i < len; i++) { + this._updateAndAddDisplayable(roots[i], null, includeIgnore); + } + + displayList.length = this._displayListLen; + + env$1.canvasSupported && sort(displayList, shapeCompareFunc); + }, + + _updateAndAddDisplayable: function (el, clipPaths, includeIgnore) { + + if (el.ignore && !includeIgnore) { + return; + } + + el.beforeUpdate(); + + if (el.__dirty) { + + el.update(); + + } + + el.afterUpdate(); + + var userSetClipPath = el.clipPath; + if (userSetClipPath) { + + // FIXME 效率影响 + if (clipPaths) { + clipPaths = clipPaths.slice(); + } + else { + clipPaths = []; + } + + var currentClipPath = userSetClipPath; + var parentClipPath = el; + // Recursively add clip path + while (currentClipPath) { + // clipPath 的变换是基于使用这个 clipPath 的元素 + currentClipPath.parent = parentClipPath; + currentClipPath.updateTransform(); + + clipPaths.push(currentClipPath); + + parentClipPath = currentClipPath; + currentClipPath = currentClipPath.clipPath; + } + } + + if (el.isGroup) { + var children = el._children; + + for (var i = 0; i < children.length; i++) { + var child = children[i]; + + // Force to mark as dirty if group is dirty + // FIXME __dirtyPath ? + if (el.__dirty) { + child.__dirty = true; + } + + this._updateAndAddDisplayable(child, clipPaths, includeIgnore); + } + + // Mark group clean here + el.__dirty = false; + + } + else { + el.__clipPaths = clipPaths; + + this._displayList[this._displayListLen++] = el; + } + }, + + /** + * 添加图形(Shape)或者组(Group)到根节点 + * @param {module:zrender/Element} el + */ + addRoot: function (el) { + if (el.__storage === this) { + return; + } + + if (el instanceof Group) { + el.addChildrenToStorage(this); + } + + this.addToStorage(el); + this._roots.push(el); + }, + + /** + * 删除指定的图形(Shape)或者组(Group) + * @param {string|Array.} [el] 如果为空清空整个Storage + */ + delRoot: function (el) { + if (el == null) { + // 不指定el清空 + for (var i = 0; i < this._roots.length; i++) { + var root = this._roots[i]; + if (root instanceof Group) { + root.delChildrenFromStorage(this); + } + } + + this._roots = []; + this._displayList = []; + this._displayListLen = 0; + + return; + } + + if (el instanceof Array) { + for (var i = 0, l = el.length; i < l; i++) { + this.delRoot(el[i]); + } + return; + } + + + var idx = indexOf(this._roots, el); + if (idx >= 0) { + this.delFromStorage(el); + this._roots.splice(idx, 1); + if (el instanceof Group) { + el.delChildrenFromStorage(this); + } + } + }, + + addToStorage: function (el) { + if (el) { + el.__storage = this; + el.dirty(false); + } + return this; + }, + + delFromStorage: function (el) { + if (el) { + el.__storage = null; + } + + return this; + }, + + /** + * 清空并且释放Storage + */ + dispose: function () { + this._renderList = + this._roots = null; + }, + + displayableSortFunc: shapeCompareFunc +}; + +var SHADOW_PROPS = { + 'shadowBlur': 1, + 'shadowOffsetX': 1, + 'shadowOffsetY': 1, + 'textShadowBlur': 1, + 'textShadowOffsetX': 1, + 'textShadowOffsetY': 1, + 'textBoxShadowBlur': 1, + 'textBoxShadowOffsetX': 1, + 'textBoxShadowOffsetY': 1 +}; + +var fixShadow = function (ctx, propName, value) { + if (SHADOW_PROPS.hasOwnProperty(propName)) { + return value *= ctx.dpr; + } + return value; +}; + +var ContextCachedBy = { + NONE: 0, + STYLE_BIND: 1, + PLAIN_TEXT: 2 +}; + +// Avoid confused with 0/false. +var WILL_BE_RESTORED = 9; + +var STYLE_COMMON_PROPS = [ + ['shadowBlur', 0], ['shadowOffsetX', 0], ['shadowOffsetY', 0], ['shadowColor', '#000'], + ['lineCap', 'butt'], ['lineJoin', 'miter'], ['miterLimit', 10] +]; + +// var SHADOW_PROPS = STYLE_COMMON_PROPS.slice(0, 4); +// var LINE_PROPS = STYLE_COMMON_PROPS.slice(4); + +var Style = function (opts) { + this.extendFrom(opts, false); +}; + +function createLinearGradient(ctx, obj, rect) { + var x = obj.x == null ? 0 : obj.x; + var x2 = obj.x2 == null ? 1 : obj.x2; + var y = obj.y == null ? 0 : obj.y; + var y2 = obj.y2 == null ? 0 : obj.y2; + + if (!obj.global) { + x = x * rect.width + rect.x; + x2 = x2 * rect.width + rect.x; + y = y * rect.height + rect.y; + y2 = y2 * rect.height + rect.y; + } + + // Fix NaN when rect is Infinity + x = isNaN(x) ? 0 : x; + x2 = isNaN(x2) ? 1 : x2; + y = isNaN(y) ? 0 : y; + y2 = isNaN(y2) ? 0 : y2; + + var canvasGradient = ctx.createLinearGradient(x, y, x2, y2); + + return canvasGradient; +} + +function createRadialGradient(ctx, obj, rect) { + var width = rect.width; + var height = rect.height; + var min = Math.min(width, height); + + var x = obj.x == null ? 0.5 : obj.x; + var y = obj.y == null ? 0.5 : obj.y; + var r = obj.r == null ? 0.5 : obj.r; + if (!obj.global) { + x = x * width + rect.x; + y = y * height + rect.y; + r = r * min; + } + + var canvasGradient = ctx.createRadialGradient(x, y, 0, x, y, r); + + return canvasGradient; +} + + +Style.prototype = { + + constructor: Style, + + /** + * @type {string} + */ + fill: '#000', + + /** + * @type {string} + */ + stroke: null, + + /** + * @type {number} + */ + opacity: 1, + + /** + * @type {number} + */ + fillOpacity: null, + + /** + * @type {number} + */ + strokeOpacity: null, + + /** + * `true` is not supported. + * `false`/`null`/`undefined` are the same. + * `false` is used to remove lineDash in some + * case that `null`/`undefined` can not be set. + * (e.g., emphasis.lineStyle in echarts) + * @type {Array.|boolean} + */ + lineDash: null, + + /** + * @type {number} + */ + lineDashOffset: 0, + + /** + * @type {number} + */ + shadowBlur: 0, + + /** + * @type {number} + */ + shadowOffsetX: 0, + + /** + * @type {number} + */ + shadowOffsetY: 0, + + /** + * @type {number} + */ + lineWidth: 1, + + /** + * If stroke ignore scale + * @type {Boolean} + */ + strokeNoScale: false, + + // Bounding rect text configuration + // Not affected by element transform + /** + * @type {string} + */ + text: null, + + /** + * If `fontSize` or `fontFamily` exists, `font` will be reset by + * `fontSize`, `fontStyle`, `fontWeight`, `fontFamily`. + * So do not visit it directly in upper application (like echarts), + * but use `contain/text#makeFont` instead. + * @type {string} + */ + font: null, + + /** + * The same as font. Use font please. + * @deprecated + * @type {string} + */ + textFont: null, + + /** + * It helps merging respectively, rather than parsing an entire font string. + * @type {string} + */ + fontStyle: null, + + /** + * It helps merging respectively, rather than parsing an entire font string. + * @type {string} + */ + fontWeight: null, + + /** + * It helps merging respectively, rather than parsing an entire font string. + * Should be 12 but not '12px'. + * @type {number} + */ + fontSize: null, + + /** + * It helps merging respectively, rather than parsing an entire font string. + * @type {string} + */ + fontFamily: null, + + /** + * Reserved for special functinality, like 'hr'. + * @type {string} + */ + textTag: null, + + /** + * @type {string} + */ + textFill: '#000', + + /** + * @type {string} + */ + textStroke: null, + + /** + * @type {number} + */ + textWidth: null, + + /** + * Only for textBackground. + * @type {number} + */ + textHeight: null, + + /** + * textStroke may be set as some color as a default + * value in upper applicaion, where the default value + * of textStrokeWidth should be 0 to make sure that + * user can choose to do not use text stroke. + * @type {number} + */ + textStrokeWidth: 0, + + /** + * @type {number} + */ + textLineHeight: null, + + /** + * 'inside', 'left', 'right', 'top', 'bottom' + * [x, y] + * Based on x, y of rect. + * @type {string|Array.} + * @default 'inside' + */ + textPosition: 'inside', + + /** + * If not specified, use the boundingRect of a `displayable`. + * @type {Object} + */ + textRect: null, + + /** + * [x, y] + * @type {Array.} + */ + textOffset: null, + + /** + * @type {string} + */ + textAlign: null, + + /** + * @type {string} + */ + textVerticalAlign: null, + + /** + * @type {number} + */ + textDistance: 5, + + /** + * @type {string} + */ + textShadowColor: 'transparent', + + /** + * @type {number} + */ + textShadowBlur: 0, + + /** + * @type {number} + */ + textShadowOffsetX: 0, + + /** + * @type {number} + */ + textShadowOffsetY: 0, + + /** + * @type {string} + */ + textBoxShadowColor: 'transparent', + + /** + * @type {number} + */ + textBoxShadowBlur: 0, + + /** + * @type {number} + */ + textBoxShadowOffsetX: 0, + + /** + * @type {number} + */ + textBoxShadowOffsetY: 0, + + /** + * Whether transform text. + * Only useful in Path and Image element + * @type {boolean} + */ + transformText: false, + + /** + * Text rotate around position of Path or Image + * Only useful in Path and Image element and transformText is false. + */ + textRotation: 0, + + /** + * Text origin of text rotation, like [10, 40]. + * Based on x, y of rect. + * Useful in label rotation of circular symbol. + * By default, this origin is textPosition. + * Can be 'center'. + * @type {string|Array.} + */ + textOrigin: null, + + /** + * @type {string} + */ + textBackgroundColor: null, + + /** + * @type {string} + */ + textBorderColor: null, + + /** + * @type {number} + */ + textBorderWidth: 0, + + /** + * @type {number} + */ + textBorderRadius: 0, + + /** + * Can be `2` or `[2, 4]` or `[2, 3, 4, 5]` + * @type {number|Array.} + */ + textPadding: null, + + /** + * Text styles for rich text. + * @type {Object} + */ + rich: null, + + /** + * {outerWidth, outerHeight, ellipsis, placeholder} + * @type {Object} + */ + truncate: null, + + /** + * https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/globalCompositeOperation + * @type {string} + */ + blend: null, + + /** + * @param {CanvasRenderingContext2D} ctx + */ + bind: function (ctx, el, prevEl) { + var style = this; + var prevStyle = prevEl && prevEl.style; + // If no prevStyle, it means first draw. + // Only apply cache if the last time cachced by this function. + var notCheckCache = !prevStyle || ctx.__attrCachedBy !== ContextCachedBy.STYLE_BIND; + + ctx.__attrCachedBy = ContextCachedBy.STYLE_BIND; + + for (var i = 0; i < STYLE_COMMON_PROPS.length; i++) { + var prop = STYLE_COMMON_PROPS[i]; + var styleName = prop[0]; + + if (notCheckCache || style[styleName] !== prevStyle[styleName]) { + // FIXME Invalid property value will cause style leak from previous element. + ctx[styleName] = + fixShadow(ctx, styleName, style[styleName] || prop[1]); + } + } + + if ((notCheckCache || style.fill !== prevStyle.fill)) { + ctx.fillStyle = style.fill; + } + if ((notCheckCache || style.stroke !== prevStyle.stroke)) { + ctx.strokeStyle = style.stroke; + } + if ((notCheckCache || style.opacity !== prevStyle.opacity)) { + ctx.globalAlpha = style.opacity == null ? 1 : style.opacity; + } + + if ((notCheckCache || style.blend !== prevStyle.blend)) { + ctx.globalCompositeOperation = style.blend || 'source-over'; + } + if (this.hasStroke()) { + var lineWidth = style.lineWidth; + ctx.lineWidth = lineWidth / ( + (this.strokeNoScale && el && el.getLineScale) ? el.getLineScale() : 1 + ); + } + }, + + hasFill: function () { + var fill = this.fill; + return fill != null && fill !== 'none'; + }, + + hasStroke: function () { + var stroke = this.stroke; + return stroke != null && stroke !== 'none' && this.lineWidth > 0; + }, + + /** + * Extend from other style + * @param {zrender/graphic/Style} otherStyle + * @param {boolean} overwrite true: overwrirte any way. + * false: overwrite only when !target.hasOwnProperty + * others: overwrite when property is not null/undefined. + */ + extendFrom: function (otherStyle, overwrite) { + if (otherStyle) { + for (var name in otherStyle) { + if (otherStyle.hasOwnProperty(name) + && (overwrite === true + || ( + overwrite === false + ? !this.hasOwnProperty(name) + : otherStyle[name] != null + ) + ) + ) { + this[name] = otherStyle[name]; + } + } + } + }, + + /** + * Batch setting style with a given object + * @param {Object|string} obj + * @param {*} [obj] + */ + set: function (obj, value) { + if (typeof obj === 'string') { + this[obj] = value; + } + else { + this.extendFrom(obj, true); + } + }, + + /** + * Clone + * @return {zrender/graphic/Style} [description] + */ + clone: function () { + var newStyle = new this.constructor(); + newStyle.extendFrom(this, true); + return newStyle; + }, + + getGradient: function (ctx, obj, rect) { + var method = obj.type === 'radial' ? createRadialGradient : createLinearGradient; + var canvasGradient = method(ctx, obj, rect); + var colorStops = obj.colorStops; + for (var i = 0; i < colorStops.length; i++) { + canvasGradient.addColorStop( + colorStops[i].offset, colorStops[i].color + ); + } + return canvasGradient; + } + +}; + +var styleProto = Style.prototype; +for (var i = 0; i < STYLE_COMMON_PROPS.length; i++) { + var prop = STYLE_COMMON_PROPS[i]; + if (!(prop[0] in styleProto)) { + styleProto[prop[0]] = prop[1]; + } +} + +// Provide for others +Style.getGradient = styleProto.getGradient; + +var Pattern = function (image, repeat) { + // Should do nothing more in this constructor. Because gradient can be + // declard by `color: {image: ...}`, where this constructor will not be called. + + this.image = image; + this.repeat = repeat; + + // Can be cloned + this.type = 'pattern'; +}; + +Pattern.prototype.getCanvasPattern = function (ctx) { + return ctx.createPattern(this.image, this.repeat || 'repeat'); +}; + +/** + * @module zrender/Layer + * @author pissang(https://www.github.com/pissang) + */ + +function returnFalse() { + return false; +} + +/** + * 创建dom + * + * @inner + * @param {string} id dom id 待用 + * @param {Painter} painter painter instance + * @param {number} number + */ +function createDom(id, painter, dpr) { + var newDom = createCanvas(); + var width = painter.getWidth(); + var height = painter.getHeight(); + + var newDomStyle = newDom.style; + if (newDomStyle) { // In node or some other non-browser environment + newDomStyle.position = 'absolute'; + newDomStyle.left = 0; + newDomStyle.top = 0; + newDomStyle.width = width + 'px'; + newDomStyle.height = height + 'px'; + + newDom.setAttribute('data-zr-dom-id', id); + } + + newDom.width = width * dpr; + newDom.height = height * dpr; + + return newDom; +} + +/** + * @alias module:zrender/Layer + * @constructor + * @extends module:zrender/mixin/Transformable + * @param {string} id + * @param {module:zrender/Painter} painter + * @param {number} [dpr] + */ +var Layer = function (id, painter, dpr) { + var dom; + dpr = dpr || devicePixelRatio; + if (typeof id === 'string') { + dom = createDom(id, painter, dpr); + } + // Not using isDom because in node it will return false + else if (isObject$1(id)) { + dom = id; + id = dom.id; + } + this.id = id; + this.dom = dom; + + var domStyle = dom.style; + if (domStyle) { // Not in node + dom.onselectstart = returnFalse; // 避免页面选中的尴尬 + domStyle['-webkit-user-select'] = 'none'; + domStyle['user-select'] = 'none'; + domStyle['-webkit-touch-callout'] = 'none'; + domStyle['-webkit-tap-highlight-color'] = 'rgba(0,0,0,0)'; + domStyle['padding'] = 0; + domStyle['margin'] = 0; + domStyle['border-width'] = 0; + } + + this.domBack = null; + this.ctxBack = null; + + this.painter = painter; + + this.config = null; + + // Configs + /** + * 每次清空画布的颜色 + * @type {string} + * @default 0 + */ + this.clearColor = 0; + /** + * 是否开启动态模糊 + * @type {boolean} + * @default false + */ + this.motionBlur = false; + /** + * 在开启动态模糊的时候使用,与上一帧混合的alpha值,值越大尾迹越明显 + * @type {number} + * @default 0.7 + */ + this.lastFrameAlpha = 0.7; + + /** + * Layer dpr + * @type {number} + */ + this.dpr = dpr; +}; + +Layer.prototype = { + + constructor: Layer, + + __dirty: true, + + __used: false, + + __drawIndex: 0, + __startIndex: 0, + __endIndex: 0, + + incremental: false, + + getElementCount: function () { + return this.__endIndex - this.__startIndex; + }, + + initContext: function () { + this.ctx = this.dom.getContext('2d'); + this.ctx.dpr = this.dpr; + }, + + createBackBuffer: function () { + var dpr = this.dpr; + + this.domBack = createDom('back-' + this.id, this.painter, dpr); + this.ctxBack = this.domBack.getContext('2d'); + + if (dpr !== 1) { + this.ctxBack.scale(dpr, dpr); + } + }, + + /** + * @param {number} width + * @param {number} height + */ + resize: function (width, height) { + var dpr = this.dpr; + + var dom = this.dom; + var domStyle = dom.style; + var domBack = this.domBack; + + if (domStyle) { + domStyle.width = width + 'px'; + domStyle.height = height + 'px'; + } + + dom.width = width * dpr; + dom.height = height * dpr; + + if (domBack) { + domBack.width = width * dpr; + domBack.height = height * dpr; + + if (dpr !== 1) { + this.ctxBack.scale(dpr, dpr); + } + } + }, + + /** + * 清空该层画布 + * @param {boolean} [clearAll]=false Clear all with out motion blur + * @param {Color} [clearColor] + */ + clear: function (clearAll, clearColor) { + var dom = this.dom; + var ctx = this.ctx; + var width = dom.width; + var height = dom.height; + + var clearColor = clearColor || this.clearColor; + var haveMotionBLur = this.motionBlur && !clearAll; + var lastFrameAlpha = this.lastFrameAlpha; + + var dpr = this.dpr; + + if (haveMotionBLur) { + if (!this.domBack) { + this.createBackBuffer(); + } + + this.ctxBack.globalCompositeOperation = 'copy'; + this.ctxBack.drawImage( + dom, 0, 0, + width / dpr, + height / dpr + ); + } + + ctx.clearRect(0, 0, width, height); + if (clearColor && clearColor !== 'transparent') { + var clearColorGradientOrPattern; + // Gradient + if (clearColor.colorStops) { + // Cache canvas gradient + clearColorGradientOrPattern = clearColor.__canvasGradient || Style.getGradient(ctx, clearColor, { + x: 0, + y: 0, + width: width, + height: height + }); + + clearColor.__canvasGradient = clearColorGradientOrPattern; + } + // Pattern + else if (clearColor.image) { + clearColorGradientOrPattern = Pattern.prototype.getCanvasPattern.call(clearColor, ctx); + } + ctx.save(); + ctx.fillStyle = clearColorGradientOrPattern || clearColor; + ctx.fillRect(0, 0, width, height); + ctx.restore(); + } + + if (haveMotionBLur) { + var domBack = this.domBack; + ctx.save(); + ctx.globalAlpha = lastFrameAlpha; + ctx.drawImage(domBack, 0, 0, width, height); + ctx.restore(); + } + } +}; + +var requestAnimationFrame = ( + typeof window !== 'undefined' + && ( + (window.requestAnimationFrame && window.requestAnimationFrame.bind(window)) + // https://github.com/ecomfe/zrender/issues/189#issuecomment-224919809 + || (window.msRequestAnimationFrame && window.msRequestAnimationFrame.bind(window)) + || window.mozRequestAnimationFrame + || window.webkitRequestAnimationFrame + ) +) || function (func) { + setTimeout(func, 16); +}; + +var globalImageCache = new LRU(50); + +/** + * @param {string|HTMLImageElement|HTMLCanvasElement|Canvas} newImageOrSrc + * @return {HTMLImageElement|HTMLCanvasElement|Canvas} image + */ +function findExistImage(newImageOrSrc) { + if (typeof newImageOrSrc === 'string') { + var cachedImgObj = globalImageCache.get(newImageOrSrc); + return cachedImgObj && cachedImgObj.image; + } + else { + return newImageOrSrc; + } +} + +/** + * Caution: User should cache loaded images, but not just count on LRU. + * Consider if required images more than LRU size, will dead loop occur? + * + * @param {string|HTMLImageElement|HTMLCanvasElement|Canvas} newImageOrSrc + * @param {HTMLImageElement|HTMLCanvasElement|Canvas} image Existent image. + * @param {module:zrender/Element} [hostEl] For calling `dirty`. + * @param {Function} [cb] params: (image, cbPayload) + * @param {Object} [cbPayload] Payload on cb calling. + * @return {HTMLImageElement|HTMLCanvasElement|Canvas} image + */ +function createOrUpdateImage(newImageOrSrc, image, hostEl, cb, cbPayload) { + if (!newImageOrSrc) { + return image; + } + else if (typeof newImageOrSrc === 'string') { + + // Image should not be loaded repeatly. + if ((image && image.__zrImageSrc === newImageOrSrc) || !hostEl) { + return image; + } + + // Only when there is no existent image or existent image src + // is different, this method is responsible for load. + var cachedImgObj = globalImageCache.get(newImageOrSrc); + + var pendingWrap = {hostEl: hostEl, cb: cb, cbPayload: cbPayload}; + + if (cachedImgObj) { + image = cachedImgObj.image; + !isImageReady(image) && cachedImgObj.pending.push(pendingWrap); + } + else { + image = new Image(); + image.onload = image.onerror = imageOnLoad; + + globalImageCache.put( + newImageOrSrc, + image.__cachedImgObj = { + image: image, + pending: [pendingWrap] + } + ); + + image.src = image.__zrImageSrc = newImageOrSrc; + } + + return image; + } + // newImageOrSrc is an HTMLImageElement or HTMLCanvasElement or Canvas + else { + return newImageOrSrc; + } +} + +function imageOnLoad() { + var cachedImgObj = this.__cachedImgObj; + this.onload = this.onerror = this.__cachedImgObj = null; + + for (var i = 0; i < cachedImgObj.pending.length; i++) { + var pendingWrap = cachedImgObj.pending[i]; + var cb = pendingWrap.cb; + cb && cb(this, pendingWrap.cbPayload); + pendingWrap.hostEl.dirty(); + } + cachedImgObj.pending.length = 0; +} + +function isImageReady(image) { + return image && image.width && image.height; +} + +var textWidthCache = {}; +var textWidthCacheCounter = 0; + +var TEXT_CACHE_MAX = 5000; +var STYLE_REG = /\{([a-zA-Z0-9_]+)\|([^}]*)\}/g; + +var DEFAULT_FONT$1 = '12px sans-serif'; + +// Avoid assign to an exported variable, for transforming to cjs. +var methods$1 = {}; + +function $override$1(name, fn) { + methods$1[name] = fn; +} + +/** + * @public + * @param {string} text + * @param {string} font + * @return {number} width + */ +function getWidth(text, font) { + font = font || DEFAULT_FONT$1; + var key = text + ':' + font; + if (textWidthCache[key]) { + return textWidthCache[key]; + } + + var textLines = (text + '').split('\n'); + var width = 0; + + for (var i = 0, l = textLines.length; i < l; i++) { + // textContain.measureText may be overrided in SVG or VML + width = Math.max(measureText(textLines[i], font).width, width); + } + + if (textWidthCacheCounter > TEXT_CACHE_MAX) { + textWidthCacheCounter = 0; + textWidthCache = {}; + } + textWidthCacheCounter++; + textWidthCache[key] = width; + + return width; +} + +/** + * @public + * @param {string} text + * @param {string} font + * @param {string} [textAlign='left'] + * @param {string} [textVerticalAlign='top'] + * @param {Array.} [textPadding] + * @param {Object} [rich] + * @param {Object} [truncate] + * @return {Object} {x, y, width, height, lineHeight} + */ +function getBoundingRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, rich, truncate) { + return rich + ? getRichTextRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, rich, truncate) + : getPlainTextRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, truncate); +} + +function getPlainTextRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, truncate) { + var contentBlock = parsePlainText(text, font, textPadding, textLineHeight, truncate); + var outerWidth = getWidth(text, font); + if (textPadding) { + outerWidth += textPadding[1] + textPadding[3]; + } + var outerHeight = contentBlock.outerHeight; + + var x = adjustTextX(0, outerWidth, textAlign); + var y = adjustTextY(0, outerHeight, textVerticalAlign); + + var rect = new BoundingRect(x, y, outerWidth, outerHeight); + rect.lineHeight = contentBlock.lineHeight; + + return rect; +} + +function getRichTextRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, rich, truncate) { + var contentBlock = parseRichText(text, { + rich: rich, + truncate: truncate, + font: font, + textAlign: textAlign, + textPadding: textPadding, + textLineHeight: textLineHeight + }); + var outerWidth = contentBlock.outerWidth; + var outerHeight = contentBlock.outerHeight; + + var x = adjustTextX(0, outerWidth, textAlign); + var y = adjustTextY(0, outerHeight, textVerticalAlign); + + return new BoundingRect(x, y, outerWidth, outerHeight); +} + +/** + * @public + * @param {number} x + * @param {number} width + * @param {string} [textAlign='left'] + * @return {number} Adjusted x. + */ +function adjustTextX(x, width, textAlign) { + // FIXME Right to left language + if (textAlign === 'right') { + x -= width; + } + else if (textAlign === 'center') { + x -= width / 2; + } + return x; +} + +/** + * @public + * @param {number} y + * @param {number} height + * @param {string} [textVerticalAlign='top'] + * @return {number} Adjusted y. + */ +function adjustTextY(y, height, textVerticalAlign) { + if (textVerticalAlign === 'middle') { + y -= height / 2; + } + else if (textVerticalAlign === 'bottom') { + y -= height; + } + return y; +} + +/** + * Follow same interface to `Displayable.prototype.calculateTextPosition`. + * @public + * @param {Obejct} [out] Prepared out object. If not input, auto created in the method. + * @param {module:zrender/graphic/Style} style where `textPosition` and `textDistance` are visited. + * @param {Object} rect {x, y, width, height} Rect of the host elment, according to which the text positioned. + * @return {Object} The input `out`. Set: {x, y, textAlign, textVerticalAlign} + */ +function calculateTextPosition(out, style, rect) { + var textPosition = style.textPosition; + var distance = style.textDistance; + + var x = rect.x; + var y = rect.y; + + var height = rect.height; + var width = rect.width; + var halfHeight = height / 2; + + var textAlign = 'left'; + var textVerticalAlign = 'top'; + + switch (textPosition) { + case 'left': + x -= distance; + y += halfHeight; + textAlign = 'right'; + textVerticalAlign = 'middle'; + break; + case 'right': + x += distance + width; + y += halfHeight; + textVerticalAlign = 'middle'; + break; + case 'top': + x += width / 2; + y -= distance; + textAlign = 'center'; + textVerticalAlign = 'bottom'; + break; + case 'bottom': + x += width / 2; + y += height + distance; + textAlign = 'center'; + break; + case 'inside': + x += width / 2; + y += halfHeight; + textAlign = 'center'; + textVerticalAlign = 'middle'; + break; + case 'insideLeft': + x += distance; + y += halfHeight; + textVerticalAlign = 'middle'; + break; + case 'insideRight': + x += width - distance; + y += halfHeight; + textAlign = 'right'; + textVerticalAlign = 'middle'; + break; + case 'insideTop': + x += width / 2; + y += distance; + textAlign = 'center'; + break; + case 'insideBottom': + x += width / 2; + y += height - distance; + textAlign = 'center'; + textVerticalAlign = 'bottom'; + break; + case 'insideTopLeft': + x += distance; + y += distance; + break; + case 'insideTopRight': + x += width - distance; + y += distance; + textAlign = 'right'; + break; + case 'insideBottomLeft': + x += distance; + y += height - distance; + textVerticalAlign = 'bottom'; + break; + case 'insideBottomRight': + x += width - distance; + y += height - distance; + textAlign = 'right'; + textVerticalAlign = 'bottom'; + break; + } + + out = out || {}; + out.x = x; + out.y = y; + out.textAlign = textAlign; + out.textVerticalAlign = textVerticalAlign; + + return out; +} + +/** + * To be removed. But still do not remove in case that some one has imported it. + * @deprecated + * @public + * @param {stirng} textPosition + * @param {Object} rect {x, y, width, height} + * @param {number} distance + * @return {Object} {x, y, textAlign, textVerticalAlign} + */ + + +/** + * Show ellipsis if overflow. + * + * @public + * @param {string} text + * @param {string} containerWidth + * @param {string} font + * @param {number} [ellipsis='...'] + * @param {Object} [options] + * @param {number} [options.maxIterations=3] + * @param {number} [options.minChar=0] If truncate result are less + * then minChar, ellipsis will not show, which is + * better for user hint in some cases. + * @param {number} [options.placeholder=''] When all truncated, use the placeholder. + * @return {string} + */ +function truncateText(text, containerWidth, font, ellipsis, options) { + if (!containerWidth) { + return ''; + } + + var textLines = (text + '').split('\n'); + options = prepareTruncateOptions(containerWidth, font, ellipsis, options); + + // FIXME + // It is not appropriate that every line has '...' when truncate multiple lines. + for (var i = 0, len = textLines.length; i < len; i++) { + textLines[i] = truncateSingleLine(textLines[i], options); + } + + return textLines.join('\n'); +} + +function prepareTruncateOptions(containerWidth, font, ellipsis, options) { + options = extend({}, options); + + options.font = font; + var ellipsis = retrieve2(ellipsis, '...'); + options.maxIterations = retrieve2(options.maxIterations, 2); + var minChar = options.minChar = retrieve2(options.minChar, 0); + // FIXME + // Other languages? + options.cnCharWidth = getWidth('国', font); + // FIXME + // Consider proportional font? + var ascCharWidth = options.ascCharWidth = getWidth('a', font); + options.placeholder = retrieve2(options.placeholder, ''); + + // Example 1: minChar: 3, text: 'asdfzxcv', truncate result: 'asdf', but not: 'a...'. + // Example 2: minChar: 3, text: '维度', truncate result: '维', but not: '...'. + var contentWidth = containerWidth = Math.max(0, containerWidth - 1); // Reserve some gap. + for (var i = 0; i < minChar && contentWidth >= ascCharWidth; i++) { + contentWidth -= ascCharWidth; + } + + var ellipsisWidth = getWidth(ellipsis, font); + if (ellipsisWidth > contentWidth) { + ellipsis = ''; + ellipsisWidth = 0; + } + + contentWidth = containerWidth - ellipsisWidth; + + options.ellipsis = ellipsis; + options.ellipsisWidth = ellipsisWidth; + options.contentWidth = contentWidth; + options.containerWidth = containerWidth; + + return options; +} + +function truncateSingleLine(textLine, options) { + var containerWidth = options.containerWidth; + var font = options.font; + var contentWidth = options.contentWidth; + + if (!containerWidth) { + return ''; + } + + var lineWidth = getWidth(textLine, font); + + if (lineWidth <= containerWidth) { + return textLine; + } + + for (var j = 0; ; j++) { + if (lineWidth <= contentWidth || j >= options.maxIterations) { + textLine += options.ellipsis; + break; + } + + var subLength = j === 0 + ? estimateLength(textLine, contentWidth, options.ascCharWidth, options.cnCharWidth) + : lineWidth > 0 + ? Math.floor(textLine.length * contentWidth / lineWidth) + : 0; + + textLine = textLine.substr(0, subLength); + lineWidth = getWidth(textLine, font); + } + + if (textLine === '') { + textLine = options.placeholder; + } + + return textLine; +} + +function estimateLength(text, contentWidth, ascCharWidth, cnCharWidth) { + var width = 0; + var i = 0; + for (var len = text.length; i < len && width < contentWidth; i++) { + var charCode = text.charCodeAt(i); + width += (0 <= charCode && charCode <= 127) ? ascCharWidth : cnCharWidth; + } + return i; +} + +/** + * @public + * @param {string} font + * @return {number} line height + */ +function getLineHeight(font) { + // FIXME A rough approach. + return getWidth('国', font); +} + +/** + * @public + * @param {string} text + * @param {string} font + * @return {Object} width + */ +function measureText(text, font) { + return methods$1.measureText(text, font); +} + +// Avoid assign to an exported variable, for transforming to cjs. +methods$1.measureText = function (text, font) { + var ctx = getContext(); + ctx.font = font || DEFAULT_FONT$1; + return ctx.measureText(text); +}; + +/** + * @public + * @param {string} text + * @param {string} font + * @param {Object} [truncate] + * @return {Object} block: {lineHeight, lines, height, outerHeight} + * Notice: for performance, do not calculate outerWidth util needed. + */ +function parsePlainText(text, font, padding, textLineHeight, truncate) { + text != null && (text += ''); + + var lineHeight = retrieve2(textLineHeight, getLineHeight(font)); + var lines = text ? text.split('\n') : []; + var height = lines.length * lineHeight; + var outerHeight = height; + + if (padding) { + outerHeight += padding[0] + padding[2]; + } + + if (text && truncate) { + var truncOuterHeight = truncate.outerHeight; + var truncOuterWidth = truncate.outerWidth; + if (truncOuterHeight != null && outerHeight > truncOuterHeight) { + text = ''; + lines = []; + } + else if (truncOuterWidth != null) { + var options = prepareTruncateOptions( + truncOuterWidth - (padding ? padding[1] + padding[3] : 0), + font, + truncate.ellipsis, + {minChar: truncate.minChar, placeholder: truncate.placeholder} + ); + + // FIXME + // It is not appropriate that every line has '...' when truncate multiple lines. + for (var i = 0, len = lines.length; i < len; i++) { + lines[i] = truncateSingleLine(lines[i], options); + } + } + } + + return { + lines: lines, + height: height, + outerHeight: outerHeight, + lineHeight: lineHeight + }; +} + +/** + * For example: 'some text {a|some text}other text{b|some text}xxx{c|}xxx' + * Also consider 'bbbb{a|xxx\nzzz}xxxx\naaaa'. + * + * @public + * @param {string} text + * @param {Object} style + * @return {Object} block + * { + * width, + * height, + * lines: [{ + * lineHeight, + * width, + * tokens: [[{ + * styleName, + * text, + * width, // include textPadding + * height, // include textPadding + * textWidth, // pure text width + * textHeight, // pure text height + * lineHeihgt, + * font, + * textAlign, + * textVerticalAlign + * }], [...], ...] + * }, ...] + * } + * If styleName is undefined, it is plain text. + */ +function parseRichText(text, style) { + var contentBlock = {lines: [], width: 0, height: 0}; + + text != null && (text += ''); + if (!text) { + return contentBlock; + } + + var lastIndex = STYLE_REG.lastIndex = 0; + var result; + while ((result = STYLE_REG.exec(text)) != null) { + var matchedIndex = result.index; + if (matchedIndex > lastIndex) { + pushTokens(contentBlock, text.substring(lastIndex, matchedIndex)); + } + pushTokens(contentBlock, result[2], result[1]); + lastIndex = STYLE_REG.lastIndex; + } + + if (lastIndex < text.length) { + pushTokens(contentBlock, text.substring(lastIndex, text.length)); + } + + var lines = contentBlock.lines; + var contentHeight = 0; + var contentWidth = 0; + // For `textWidth: 100%` + var pendingList = []; + + var stlPadding = style.textPadding; + + var truncate = style.truncate; + var truncateWidth = truncate && truncate.outerWidth; + var truncateHeight = truncate && truncate.outerHeight; + if (stlPadding) { + truncateWidth != null && (truncateWidth -= stlPadding[1] + stlPadding[3]); + truncateHeight != null && (truncateHeight -= stlPadding[0] + stlPadding[2]); + } + + // Calculate layout info of tokens. + for (var i = 0; i < lines.length; i++) { + var line = lines[i]; + var lineHeight = 0; + var lineWidth = 0; + + for (var j = 0; j < line.tokens.length; j++) { + var token = line.tokens[j]; + var tokenStyle = token.styleName && style.rich[token.styleName] || {}; + // textPadding should not inherit from style. + var textPadding = token.textPadding = tokenStyle.textPadding; + + // textFont has been asigned to font by `normalizeStyle`. + var font = token.font = tokenStyle.font || style.font; + + // textHeight can be used when textVerticalAlign is specified in token. + var tokenHeight = token.textHeight = retrieve2( + // textHeight should not be inherited, consider it can be specified + // as box height of the block. + tokenStyle.textHeight, getLineHeight(font) + ); + textPadding && (tokenHeight += textPadding[0] + textPadding[2]); + token.height = tokenHeight; + token.lineHeight = retrieve3( + tokenStyle.textLineHeight, style.textLineHeight, tokenHeight + ); + + token.textAlign = tokenStyle && tokenStyle.textAlign || style.textAlign; + token.textVerticalAlign = tokenStyle && tokenStyle.textVerticalAlign || 'middle'; + + if (truncateHeight != null && contentHeight + token.lineHeight > truncateHeight) { + return {lines: [], width: 0, height: 0}; + } + + token.textWidth = getWidth(token.text, font); + var tokenWidth = tokenStyle.textWidth; + var tokenWidthNotSpecified = tokenWidth == null || tokenWidth === 'auto'; + + // Percent width, can be `100%`, can be used in drawing separate + // line when box width is needed to be auto. + if (typeof tokenWidth === 'string' && tokenWidth.charAt(tokenWidth.length - 1) === '%') { + token.percentWidth = tokenWidth; + pendingList.push(token); + tokenWidth = 0; + // Do not truncate in this case, because there is no user case + // and it is too complicated. + } + else { + if (tokenWidthNotSpecified) { + tokenWidth = token.textWidth; + + // FIXME: If image is not loaded and textWidth is not specified, calling + // `getBoundingRect()` will not get correct result. + var textBackgroundColor = tokenStyle.textBackgroundColor; + var bgImg = textBackgroundColor && textBackgroundColor.image; + + // Use cases: + // (1) If image is not loaded, it will be loaded at render phase and call + // `dirty()` and `textBackgroundColor.image` will be replaced with the loaded + // image, and then the right size will be calculated here at the next tick. + // See `graphic/helper/text.js`. + // (2) If image loaded, and `textBackgroundColor.image` is image src string, + // use `imageHelper.findExistImage` to find cached image. + // `imageHelper.findExistImage` will always be called here before + // `imageHelper.createOrUpdateImage` in `graphic/helper/text.js#renderRichText` + // which ensures that image will not be rendered before correct size calcualted. + if (bgImg) { + bgImg = findExistImage(bgImg); + if (isImageReady(bgImg)) { + tokenWidth = Math.max(tokenWidth, bgImg.width * tokenHeight / bgImg.height); + } + } + } + + var paddingW = textPadding ? textPadding[1] + textPadding[3] : 0; + tokenWidth += paddingW; + + var remianTruncWidth = truncateWidth != null ? truncateWidth - lineWidth : null; + + if (remianTruncWidth != null && remianTruncWidth < tokenWidth) { + if (!tokenWidthNotSpecified || remianTruncWidth < paddingW) { + token.text = ''; + token.textWidth = tokenWidth = 0; + } + else { + token.text = truncateText( + token.text, remianTruncWidth - paddingW, font, truncate.ellipsis, + {minChar: truncate.minChar} + ); + token.textWidth = getWidth(token.text, font); + tokenWidth = token.textWidth + paddingW; + } + } + } + + lineWidth += (token.width = tokenWidth); + tokenStyle && (lineHeight = Math.max(lineHeight, token.lineHeight)); + } + + line.width = lineWidth; + line.lineHeight = lineHeight; + contentHeight += lineHeight; + contentWidth = Math.max(contentWidth, lineWidth); + } + + contentBlock.outerWidth = contentBlock.width = retrieve2(style.textWidth, contentWidth); + contentBlock.outerHeight = contentBlock.height = retrieve2(style.textHeight, contentHeight); + + if (stlPadding) { + contentBlock.outerWidth += stlPadding[1] + stlPadding[3]; + contentBlock.outerHeight += stlPadding[0] + stlPadding[2]; + } + + for (var i = 0; i < pendingList.length; i++) { + var token = pendingList[i]; + var percentWidth = token.percentWidth; + // Should not base on outerWidth, because token can not be placed out of padding. + token.width = parseInt(percentWidth, 10) / 100 * contentWidth; + } + + return contentBlock; +} + +function pushTokens(block, str, styleName) { + var isEmptyStr = str === ''; + var strs = str.split('\n'); + var lines = block.lines; + + for (var i = 0; i < strs.length; i++) { + var text = strs[i]; + var token = { + styleName: styleName, + text: text, + isLineHolder: !text && !isEmptyStr + }; + + // The first token should be appended to the last line. + if (!i) { + var tokens = (lines[lines.length - 1] || (lines[0] = {tokens: []})).tokens; + + // Consider cases: + // (1) ''.split('\n') => ['', '\n', ''], the '' at the first item + // (which is a placeholder) should be replaced by new token. + // (2) A image backage, where token likes {a|}. + // (3) A redundant '' will affect textAlign in line. + // (4) tokens with the same tplName should not be merged, because + // they should be displayed in different box (with border and padding). + var tokensLen = tokens.length; + (tokensLen === 1 && tokens[0].isLineHolder) + ? (tokens[0] = token) + // Consider text is '', only insert when it is the "lineHolder" or + // "emptyStr". Otherwise a redundant '' will affect textAlign in line. + : ((text || !tokensLen || isEmptyStr) && tokens.push(token)); + } + // Other tokens always start a new line. + else { + // If there is '', insert it as a placeholder. + lines.push({tokens: [token]}); + } + } +} + +function makeFont(style) { + // FIXME in node-canvas fontWeight is before fontStyle + // Use `fontSize` `fontFamily` to check whether font properties are defined. + var font = (style.fontSize || style.fontFamily) && [ + style.fontStyle, + style.fontWeight, + (style.fontSize || 12) + 'px', + // If font properties are defined, `fontFamily` should not be ignored. + style.fontFamily || 'sans-serif' + ].join(' '); + return font && trim(font) || style.textFont || style.font; +} + +/** + * @param {Object} ctx + * @param {Object} shape + * @param {number} shape.x + * @param {number} shape.y + * @param {number} shape.width + * @param {number} shape.height + * @param {number} shape.r + */ +function buildPath(ctx, shape) { + var x = shape.x; + var y = shape.y; + var width = shape.width; + var height = shape.height; + var r = shape.r; + var r1; + var r2; + var r3; + var r4; + + // Convert width and height to positive for better borderRadius + if (width < 0) { + x = x + width; + width = -width; + } + if (height < 0) { + y = y + height; + height = -height; + } + + if (typeof r === 'number') { + r1 = r2 = r3 = r4 = r; + } + else if (r instanceof Array) { + if (r.length === 1) { + r1 = r2 = r3 = r4 = r[0]; + } + else if (r.length === 2) { + r1 = r3 = r[0]; + r2 = r4 = r[1]; + } + else if (r.length === 3) { + r1 = r[0]; + r2 = r4 = r[1]; + r3 = r[2]; + } + else { + r1 = r[0]; + r2 = r[1]; + r3 = r[2]; + r4 = r[3]; + } + } + else { + r1 = r2 = r3 = r4 = 0; + } + + var total; + if (r1 + r2 > width) { + total = r1 + r2; + r1 *= width / total; + r2 *= width / total; + } + if (r3 + r4 > width) { + total = r3 + r4; + r3 *= width / total; + r4 *= width / total; + } + if (r2 + r3 > height) { + total = r2 + r3; + r2 *= height / total; + r3 *= height / total; + } + if (r1 + r4 > height) { + total = r1 + r4; + r1 *= height / total; + r4 *= height / total; + } + ctx.moveTo(x + r1, y); + ctx.lineTo(x + width - r2, y); + r2 !== 0 && ctx.arc(x + width - r2, y + r2, r2, -Math.PI / 2, 0); + ctx.lineTo(x + width, y + height - r3); + r3 !== 0 && ctx.arc(x + width - r3, y + height - r3, r3, 0, Math.PI / 2); + ctx.lineTo(x + r4, y + height); + r4 !== 0 && ctx.arc(x + r4, y + height - r4, r4, Math.PI / 2, Math.PI); + ctx.lineTo(x, y + r1); + r1 !== 0 && ctx.arc(x + r1, y + r1, r1, Math.PI, Math.PI * 1.5); +} + +var DEFAULT_FONT = DEFAULT_FONT$1; + +// TODO: Have not support 'start', 'end' yet. +var VALID_TEXT_ALIGN = {left: 1, right: 1, center: 1}; +var VALID_TEXT_VERTICAL_ALIGN = {top: 1, bottom: 1, middle: 1}; +// Different from `STYLE_COMMON_PROPS` of `graphic/Style`, +// the default value of shadowColor is `'transparent'`. +var SHADOW_STYLE_COMMON_PROPS = [ + ['textShadowBlur', 'shadowBlur', 0], + ['textShadowOffsetX', 'shadowOffsetX', 0], + ['textShadowOffsetY', 'shadowOffsetY', 0], + ['textShadowColor', 'shadowColor', 'transparent'] +]; +var _tmpTextPositionResult = {}; +var _tmpBoxPositionResult = {}; + +/** + * @param {module:zrender/graphic/Style} style + * @return {module:zrender/graphic/Style} The input style. + */ +function normalizeTextStyle(style) { + normalizeStyle(style); + each$1(style.rich, normalizeStyle); + return style; +} + +function normalizeStyle(style) { + if (style) { + + style.font = makeFont(style); + + var textAlign = style.textAlign; + textAlign === 'middle' && (textAlign = 'center'); + style.textAlign = ( + textAlign == null || VALID_TEXT_ALIGN[textAlign] + ) ? textAlign : 'left'; + + // Compatible with textBaseline. + var textVerticalAlign = style.textVerticalAlign || style.textBaseline; + textVerticalAlign === 'center' && (textVerticalAlign = 'middle'); + style.textVerticalAlign = ( + textVerticalAlign == null || VALID_TEXT_VERTICAL_ALIGN[textVerticalAlign] + ) ? textVerticalAlign : 'top'; + + var textPadding = style.textPadding; + if (textPadding) { + style.textPadding = normalizeCssArray(style.textPadding); + } + } +} + +/** + * @param {CanvasRenderingContext2D} ctx + * @param {string} text + * @param {module:zrender/graphic/Style} style + * @param {Object|boolean} [rect] {x, y, width, height} + * If set false, rect text is not used. + * @param {Element|module:zrender/graphic/helper/constant.WILL_BE_RESTORED} [prevEl] For ctx prop cache. + */ +function renderText(hostEl, ctx, text, style, rect, prevEl) { + style.rich + ? renderRichText(hostEl, ctx, text, style, rect, prevEl) + : renderPlainText(hostEl, ctx, text, style, rect, prevEl); +} + +// Avoid setting to ctx according to prevEl if possible for +// performance in scenarios of large amount text. +function renderPlainText(hostEl, ctx, text, style, rect, prevEl) { + 'use strict'; + + var needDrawBg = needDrawBackground(style); + + var prevStyle; + var checkCache = false; + var cachedByMe = ctx.__attrCachedBy === ContextCachedBy.PLAIN_TEXT; + + // Only take and check cache for `Text` el, but not RectText. + if (prevEl !== WILL_BE_RESTORED) { + if (prevEl) { + prevStyle = prevEl.style; + checkCache = !needDrawBg && cachedByMe && prevStyle; + } + + // Prevent from using cache in `Style::bind`, because of the case: + // ctx property is modified by other properties than `Style::bind` + // used, and Style::bind is called next. + ctx.__attrCachedBy = needDrawBg ? ContextCachedBy.NONE : ContextCachedBy.PLAIN_TEXT; + } + // Since this will be restored, prevent from using these props to check cache in the next + // entering of this method. But do not need to clear other cache like `Style::bind`. + else if (cachedByMe) { + ctx.__attrCachedBy = ContextCachedBy.NONE; + } + + var styleFont = style.font || DEFAULT_FONT; + // PENDING + // Only `Text` el set `font` and keep it (`RectText` will restore). So theoretically + // we can make font cache on ctx, which can cache for text el that are discontinuous. + // But layer save/restore needed to be considered. + // if (styleFont !== ctx.__fontCache) { + // ctx.font = styleFont; + // if (prevEl !== WILL_BE_RESTORED) { + // ctx.__fontCache = styleFont; + // } + // } + if (!checkCache || styleFont !== (prevStyle.font || DEFAULT_FONT)) { + ctx.font = styleFont; + } + + // Use the final font from context-2d, because the final + // font might not be the style.font when it is illegal. + // But get `ctx.font` might be time consuming. + var computedFont = hostEl.__computedFont; + if (hostEl.__styleFont !== styleFont) { + hostEl.__styleFont = styleFont; + computedFont = hostEl.__computedFont = ctx.font; + } + + var textPadding = style.textPadding; + var textLineHeight = style.textLineHeight; + + var contentBlock = hostEl.__textCotentBlock; + if (!contentBlock || hostEl.__dirtyText) { + contentBlock = hostEl.__textCotentBlock = parsePlainText( + text, computedFont, textPadding, textLineHeight, style.truncate + ); + } + + var outerHeight = contentBlock.outerHeight; + + var textLines = contentBlock.lines; + var lineHeight = contentBlock.lineHeight; + + var boxPos = getBoxPosition(_tmpBoxPositionResult, hostEl, style, rect); + var baseX = boxPos.baseX; + var baseY = boxPos.baseY; + var textAlign = boxPos.textAlign || 'left'; + var textVerticalAlign = boxPos.textVerticalAlign; + + // Origin of textRotation should be the base point of text drawing. + applyTextRotation(ctx, style, rect, baseX, baseY); + + var boxY = adjustTextY(baseY, outerHeight, textVerticalAlign); + var textX = baseX; + var textY = boxY; + + if (needDrawBg || textPadding) { + // Consider performance, do not call getTextWidth util necessary. + var textWidth = getWidth(text, computedFont); + var outerWidth = textWidth; + textPadding && (outerWidth += textPadding[1] + textPadding[3]); + var boxX = adjustTextX(baseX, outerWidth, textAlign); + + needDrawBg && drawBackground(hostEl, ctx, style, boxX, boxY, outerWidth, outerHeight); + + if (textPadding) { + textX = getTextXForPadding(baseX, textAlign, textPadding); + textY += textPadding[0]; + } + } + + // Always set textAlign and textBase line, because it is difficute to calculate + // textAlign from prevEl, and we dont sure whether textAlign will be reset if + // font set happened. + ctx.textAlign = textAlign; + // Force baseline to be "middle". Otherwise, if using "top", the + // text will offset downward a little bit in font "Microsoft YaHei". + ctx.textBaseline = 'middle'; + // Set text opacity + ctx.globalAlpha = style.opacity || 1; + + // Always set shadowBlur and shadowOffset to avoid leak from displayable. + for (var i = 0; i < SHADOW_STYLE_COMMON_PROPS.length; i++) { + var propItem = SHADOW_STYLE_COMMON_PROPS[i]; + var styleProp = propItem[0]; + var ctxProp = propItem[1]; + var val = style[styleProp]; + if (!checkCache || val !== prevStyle[styleProp]) { + ctx[ctxProp] = fixShadow(ctx, ctxProp, val || propItem[2]); + } + } + + // `textBaseline` is set as 'middle'. + textY += lineHeight / 2; + + var textStrokeWidth = style.textStrokeWidth; + var textStrokeWidthPrev = checkCache ? prevStyle.textStrokeWidth : null; + var strokeWidthChanged = !checkCache || textStrokeWidth !== textStrokeWidthPrev; + var strokeChanged = !checkCache || strokeWidthChanged || style.textStroke !== prevStyle.textStroke; + var textStroke = getStroke(style.textStroke, textStrokeWidth); + var textFill = getFill(style.textFill); + + if (textStroke) { + if (strokeWidthChanged) { + ctx.lineWidth = textStrokeWidth; + } + if (strokeChanged) { + ctx.strokeStyle = textStroke; + } + } + if (textFill) { + if (!checkCache || style.textFill !== prevStyle.textFill) { + ctx.fillStyle = textFill; + } + } + + // Optimize simply, in most cases only one line exists. + if (textLines.length === 1) { + // Fill after stroke so the outline will not cover the main part. + textStroke && ctx.strokeText(textLines[0], textX, textY); + textFill && ctx.fillText(textLines[0], textX, textY); + } + else { + for (var i = 0; i < textLines.length; i++) { + // Fill after stroke so the outline will not cover the main part. + textStroke && ctx.strokeText(textLines[i], textX, textY); + textFill && ctx.fillText(textLines[i], textX, textY); + textY += lineHeight; + } + } +} + +function renderRichText(hostEl, ctx, text, style, rect, prevEl) { + // Do not do cache for rich text because of the complexity. + // But `RectText` this will be restored, do not need to clear other cache like `Style::bind`. + if (prevEl !== WILL_BE_RESTORED) { + ctx.__attrCachedBy = ContextCachedBy.NONE; + } + + var contentBlock = hostEl.__textCotentBlock; + + if (!contentBlock || hostEl.__dirtyText) { + contentBlock = hostEl.__textCotentBlock = parseRichText(text, style); + } + + drawRichText(hostEl, ctx, contentBlock, style, rect); +} + +function drawRichText(hostEl, ctx, contentBlock, style, rect) { + var contentWidth = contentBlock.width; + var outerWidth = contentBlock.outerWidth; + var outerHeight = contentBlock.outerHeight; + var textPadding = style.textPadding; + + var boxPos = getBoxPosition(_tmpBoxPositionResult, hostEl, style, rect); + var baseX = boxPos.baseX; + var baseY = boxPos.baseY; + var textAlign = boxPos.textAlign; + var textVerticalAlign = boxPos.textVerticalAlign; + + // Origin of textRotation should be the base point of text drawing. + applyTextRotation(ctx, style, rect, baseX, baseY); + + var boxX = adjustTextX(baseX, outerWidth, textAlign); + var boxY = adjustTextY(baseY, outerHeight, textVerticalAlign); + var xLeft = boxX; + var lineTop = boxY; + if (textPadding) { + xLeft += textPadding[3]; + lineTop += textPadding[0]; + } + var xRight = xLeft + contentWidth; + + needDrawBackground(style) && drawBackground( + hostEl, ctx, style, boxX, boxY, outerWidth, outerHeight + ); + + for (var i = 0; i < contentBlock.lines.length; i++) { + var line = contentBlock.lines[i]; + var tokens = line.tokens; + var tokenCount = tokens.length; + var lineHeight = line.lineHeight; + var usedWidth = line.width; + + var leftIndex = 0; + var lineXLeft = xLeft; + var lineXRight = xRight; + var rightIndex = tokenCount - 1; + var token; + + while ( + leftIndex < tokenCount + && (token = tokens[leftIndex], !token.textAlign || token.textAlign === 'left') + ) { + placeToken(hostEl, ctx, token, style, lineHeight, lineTop, lineXLeft, 'left'); + usedWidth -= token.width; + lineXLeft += token.width; + leftIndex++; + } + + while ( + rightIndex >= 0 + && (token = tokens[rightIndex], token.textAlign === 'right') + ) { + placeToken(hostEl, ctx, token, style, lineHeight, lineTop, lineXRight, 'right'); + usedWidth -= token.width; + lineXRight -= token.width; + rightIndex--; + } + + // The other tokens are placed as textAlign 'center' if there is enough space. + lineXLeft += (contentWidth - (lineXLeft - xLeft) - (xRight - lineXRight) - usedWidth) / 2; + while (leftIndex <= rightIndex) { + token = tokens[leftIndex]; + // Consider width specified by user, use 'center' rather than 'left'. + placeToken(hostEl, ctx, token, style, lineHeight, lineTop, lineXLeft + token.width / 2, 'center'); + lineXLeft += token.width; + leftIndex++; + } + + lineTop += lineHeight; + } +} + +function applyTextRotation(ctx, style, rect, x, y) { + // textRotation only apply in RectText. + if (rect && style.textRotation) { + var origin = style.textOrigin; + if (origin === 'center') { + x = rect.width / 2 + rect.x; + y = rect.height / 2 + rect.y; + } + else if (origin) { + x = origin[0] + rect.x; + y = origin[1] + rect.y; + } + + ctx.translate(x, y); + // Positive: anticlockwise + ctx.rotate(-style.textRotation); + ctx.translate(-x, -y); + } +} + +function placeToken(hostEl, ctx, token, style, lineHeight, lineTop, x, textAlign) { + var tokenStyle = style.rich[token.styleName] || {}; + tokenStyle.text = token.text; + + // 'ctx.textBaseline' is always set as 'middle', for sake of + // the bias of "Microsoft YaHei". + var textVerticalAlign = token.textVerticalAlign; + var y = lineTop + lineHeight / 2; + if (textVerticalAlign === 'top') { + y = lineTop + token.height / 2; + } + else if (textVerticalAlign === 'bottom') { + y = lineTop + lineHeight - token.height / 2; + } + + !token.isLineHolder && needDrawBackground(tokenStyle) && drawBackground( + hostEl, + ctx, + tokenStyle, + textAlign === 'right' + ? x - token.width + : textAlign === 'center' + ? x - token.width / 2 + : x, + y - token.height / 2, + token.width, + token.height + ); + + var textPadding = token.textPadding; + if (textPadding) { + x = getTextXForPadding(x, textAlign, textPadding); + y -= token.height / 2 - textPadding[2] - token.textHeight / 2; + } + + setCtx(ctx, 'shadowBlur', retrieve3(tokenStyle.textShadowBlur, style.textShadowBlur, 0)); + setCtx(ctx, 'shadowColor', tokenStyle.textShadowColor || style.textShadowColor || 'transparent'); + setCtx(ctx, 'shadowOffsetX', retrieve3(tokenStyle.textShadowOffsetX, style.textShadowOffsetX, 0)); + setCtx(ctx, 'shadowOffsetY', retrieve3(tokenStyle.textShadowOffsetY, style.textShadowOffsetY, 0)); + + setCtx(ctx, 'textAlign', textAlign); + // Force baseline to be "middle". Otherwise, if using "top", the + // text will offset downward a little bit in font "Microsoft YaHei". + setCtx(ctx, 'textBaseline', 'middle'); + + setCtx(ctx, 'font', token.font || DEFAULT_FONT); + + var textStroke = getStroke(tokenStyle.textStroke || style.textStroke, textStrokeWidth); + var textFill = getFill(tokenStyle.textFill || style.textFill); + var textStrokeWidth = retrieve2(tokenStyle.textStrokeWidth, style.textStrokeWidth); + + // Fill after stroke so the outline will not cover the main part. + if (textStroke) { + setCtx(ctx, 'lineWidth', textStrokeWidth); + setCtx(ctx, 'strokeStyle', textStroke); + ctx.strokeText(token.text, x, y); + } + if (textFill) { + setCtx(ctx, 'fillStyle', textFill); + ctx.fillText(token.text, x, y); + } +} + +function needDrawBackground(style) { + return !!( + style.textBackgroundColor + || (style.textBorderWidth && style.textBorderColor) + ); +} + +// style: {textBackgroundColor, textBorderWidth, textBorderColor, textBorderRadius, text} +// shape: {x, y, width, height} +function drawBackground(hostEl, ctx, style, x, y, width, height) { + var textBackgroundColor = style.textBackgroundColor; + var textBorderWidth = style.textBorderWidth; + var textBorderColor = style.textBorderColor; + var isPlainBg = isString(textBackgroundColor); + + setCtx(ctx, 'shadowBlur', style.textBoxShadowBlur || 0); + setCtx(ctx, 'shadowColor', style.textBoxShadowColor || 'transparent'); + setCtx(ctx, 'shadowOffsetX', style.textBoxShadowOffsetX || 0); + setCtx(ctx, 'shadowOffsetY', style.textBoxShadowOffsetY || 0); + + if (isPlainBg || (textBorderWidth && textBorderColor)) { + ctx.beginPath(); + var textBorderRadius = style.textBorderRadius; + if (!textBorderRadius) { + ctx.rect(x, y, width, height); + } + else { + buildPath(ctx, { + x: x, y: y, width: width, height: height, r: textBorderRadius + }); + } + ctx.closePath(); + } + + if (isPlainBg) { + setCtx(ctx, 'fillStyle', textBackgroundColor); + + if (style.fillOpacity != null) { + var originalGlobalAlpha = ctx.globalAlpha; + ctx.globalAlpha = style.fillOpacity * style.opacity; + ctx.fill(); + ctx.globalAlpha = originalGlobalAlpha; + } + else { + ctx.fill(); + } + } + else if (isObject$1(textBackgroundColor)) { + var image = textBackgroundColor.image; + + image = createOrUpdateImage( + image, null, hostEl, onBgImageLoaded, textBackgroundColor + ); + if (image && isImageReady(image)) { + ctx.drawImage(image, x, y, width, height); + } + } + + if (textBorderWidth && textBorderColor) { + setCtx(ctx, 'lineWidth', textBorderWidth); + setCtx(ctx, 'strokeStyle', textBorderColor); + + if (style.strokeOpacity != null) { + var originalGlobalAlpha = ctx.globalAlpha; + ctx.globalAlpha = style.strokeOpacity * style.opacity; + ctx.stroke(); + ctx.globalAlpha = originalGlobalAlpha; + } + else { + ctx.stroke(); + } + } +} + +function onBgImageLoaded(image, textBackgroundColor) { + // Replace image, so that `contain/text.js#parseRichText` + // will get correct result in next tick. + textBackgroundColor.image = image; +} + +function getBoxPosition(out, hostEl, style, rect) { + var baseX = style.x || 0; + var baseY = style.y || 0; + var textAlign = style.textAlign; + var textVerticalAlign = style.textVerticalAlign; + + // Text position represented by coord + if (rect) { + var textPosition = style.textPosition; + if (textPosition instanceof Array) { + // Percent + baseX = rect.x + parsePercent(textPosition[0], rect.width); + baseY = rect.y + parsePercent(textPosition[1], rect.height); + } + else { + var res = (hostEl && hostEl.calculateTextPosition) + ? hostEl.calculateTextPosition(_tmpTextPositionResult, style, rect) + : calculateTextPosition(_tmpTextPositionResult, style, rect); + baseX = res.x; + baseY = res.y; + // Default align and baseline when has textPosition + textAlign = textAlign || res.textAlign; + textVerticalAlign = textVerticalAlign || res.textVerticalAlign; + } + + // textOffset is only support in RectText, otherwise + // we have to adjust boundingRect for textOffset. + var textOffset = style.textOffset; + if (textOffset) { + baseX += textOffset[0]; + baseY += textOffset[1]; + } + } + + out = out || {}; + out.baseX = baseX; + out.baseY = baseY; + out.textAlign = textAlign; + out.textVerticalAlign = textVerticalAlign; + + return out; +} + + +function setCtx(ctx, prop, value) { + ctx[prop] = fixShadow(ctx, prop, value); + return ctx[prop]; +} + +/** + * @param {string} [stroke] If specified, do not check style.textStroke. + * @param {string} [lineWidth] If specified, do not check style.textStroke. + * @param {number} style + */ +function getStroke(stroke, lineWidth) { + return (stroke == null || lineWidth <= 0 || stroke === 'transparent' || stroke === 'none') + ? null + // TODO pattern and gradient? + : (stroke.image || stroke.colorStops) + ? '#000' + : stroke; +} + +function getFill(fill) { + return (fill == null || fill === 'none') + ? null + // TODO pattern and gradient? + : (fill.image || fill.colorStops) + ? '#000' + : fill; +} + +function parsePercent(value, maxValue) { + if (typeof value === 'string') { + if (value.lastIndexOf('%') >= 0) { + return parseFloat(value) / 100 * maxValue; + } + return parseFloat(value); + } + return value; +} + +function getTextXForPadding(x, textAlign, textPadding) { + return textAlign === 'right' + ? (x - textPadding[1]) + : textAlign === 'center' + ? (x + textPadding[3] / 2 - textPadding[1] / 2) + : (x + textPadding[3]); +} + +/** + * @param {string} text + * @param {module:zrender/Style} style + * @return {boolean} + */ +function needDrawText(text, style) { + return text != null + && (text + || style.textBackgroundColor + || (style.textBorderWidth && style.textBorderColor) + || style.textPadding + ); +} + +/** + * Mixin for drawing text in a element bounding rect + * @module zrender/mixin/RectText + */ + +var tmpRect$1 = new BoundingRect(); + +var RectText = function () {}; + +RectText.prototype = { + + constructor: RectText, + + /** + * Draw text in a rect with specified position. + * @param {CanvasRenderingContext2D} ctx + * @param {Object} rect Displayable rect + */ + drawRectText: function (ctx, rect) { + var style = this.style; + + rect = style.textRect || rect; + + // Optimize, avoid normalize every time. + this.__dirty && normalizeTextStyle(style, true); + + var text = style.text; + + // Convert to string + text != null && (text += ''); + + if (!needDrawText(text, style)) { + return; + } + + // FIXME + // Do not provide prevEl to `textHelper.renderText` for ctx prop cache, + // but use `ctx.save()` and `ctx.restore()`. Because the cache for rect + // text propably break the cache for its host elements. + ctx.save(); + + // Transform rect to view space + var transform = this.transform; + if (!style.transformText) { + if (transform) { + tmpRect$1.copy(rect); + tmpRect$1.applyTransform(transform); + rect = tmpRect$1; + } + } + else { + this.setTransform(ctx); + } + + // transformText and textRotation can not be used at the same time. + renderText(this, ctx, text, style, rect, WILL_BE_RESTORED); + + ctx.restore(); + } +}; + +/** + * 可绘制的图形基类 + * Base class of all displayable graphic objects + * @module zrender/graphic/Displayable + */ + + +/** + * @alias module:zrender/graphic/Displayable + * @extends module:zrender/Element + * @extends module:zrender/graphic/mixin/RectText + */ +function Displayable(opts) { + + opts = opts || {}; + + Element.call(this, opts); + + // Extend properties + for (var name in opts) { + if ( + opts.hasOwnProperty(name) + && name !== 'style' + ) { + this[name] = opts[name]; + } + } + + /** + * @type {module:zrender/graphic/Style} + */ + this.style = new Style(opts.style, this); + + this._rect = null; + // Shapes for cascade clipping. + // Can only be `null`/`undefined` or an non-empty array, MUST NOT be an empty array. + // because it is easy to only using null to check whether clipPaths changed. + this.__clipPaths = null; + + // FIXME Stateful must be mixined after style is setted + // Stateful.call(this, opts); +} + +Displayable.prototype = { + + constructor: Displayable, + + type: 'displayable', + + /** + * Displayable 是否为脏,Painter 中会根据该标记判断是否需要是否需要重新绘制 + * Dirty flag. From which painter will determine if this displayable object needs brush + * @name module:zrender/graphic/Displayable#__dirty + * @type {boolean} + */ + __dirty: true, + + /** + * 图形是否可见,为true时不绘制图形,但是仍能触发鼠标事件 + * If ignore drawing of the displayable object. Mouse event will still be triggered + * @name module:/zrender/graphic/Displayable#invisible + * @type {boolean} + * @default false + */ + invisible: false, + + /** + * @name module:/zrender/graphic/Displayable#z + * @type {number} + * @default 0 + */ + z: 0, + + /** + * @name module:/zrender/graphic/Displayable#z + * @type {number} + * @default 0 + */ + z2: 0, + + /** + * z层level,决定绘画在哪层canvas中 + * @name module:/zrender/graphic/Displayable#zlevel + * @type {number} + * @default 0 + */ + zlevel: 0, + + /** + * 是否可拖拽 + * @name module:/zrender/graphic/Displayable#draggable + * @type {boolean} + * @default false + */ + draggable: false, + + /** + * 是否正在拖拽 + * @name module:/zrender/graphic/Displayable#draggable + * @type {boolean} + * @default false + */ + dragging: false, + + /** + * 是否相应鼠标事件 + * @name module:/zrender/graphic/Displayable#silent + * @type {boolean} + * @default false + */ + silent: false, + + /** + * If enable culling + * @type {boolean} + * @default false + */ + culling: false, + + /** + * Mouse cursor when hovered + * @name module:/zrender/graphic/Displayable#cursor + * @type {string} + */ + cursor: 'pointer', + + /** + * If hover area is bounding rect + * @name module:/zrender/graphic/Displayable#rectHover + * @type {string} + */ + rectHover: false, + + /** + * Render the element progressively when the value >= 0, + * usefull for large data. + * @type {boolean} + */ + progressive: false, + + /** + * @type {boolean} + */ + incremental: false, + /** + * Scale ratio for global scale. + * @type {boolean} + */ + globalScaleRatio: 1, + + beforeBrush: function (ctx) {}, + + afterBrush: function (ctx) {}, + + /** + * 图形绘制方法 + * @param {CanvasRenderingContext2D} ctx + */ + // Interface + brush: function (ctx, prevEl) {}, + + /** + * 获取最小包围盒 + * @return {module:zrender/core/BoundingRect} + */ + // Interface + getBoundingRect: function () {}, + + /** + * 判断坐标 x, y 是否在图形上 + * If displayable element contain coord x, y + * @param {number} x + * @param {number} y + * @return {boolean} + */ + contain: function (x, y) { + return this.rectContain(x, y); + }, + + /** + * @param {Function} cb + * @param {} context + */ + traverse: function (cb, context) { + cb.call(context, this); + }, + + /** + * 判断坐标 x, y 是否在图形的包围盒上 + * If bounding rect of element contain coord x, y + * @param {number} x + * @param {number} y + * @return {boolean} + */ + rectContain: function (x, y) { + var coord = this.transformCoordToLocal(x, y); + var rect = this.getBoundingRect(); + return rect.contain(coord[0], coord[1]); + }, + + /** + * 标记图形元素为脏,并且在下一帧重绘 + * Mark displayable element dirty and refresh next frame + */ + dirty: function () { + this.__dirty = this.__dirtyText = true; + + this._rect = null; + + this.__zr && this.__zr.refresh(); + }, + + /** + * 图形是否会触发事件 + * If displayable object binded any event + * @return {boolean} + */ + // TODO, 通过 bind 绑定的事件 + // isSilent: function () { + // return !( + // this.hoverable || this.draggable + // || this.onmousemove || this.onmouseover || this.onmouseout + // || this.onmousedown || this.onmouseup || this.onclick + // || this.ondragenter || this.ondragover || this.ondragleave + // || this.ondrop + // ); + // }, + /** + * Alias for animate('style') + * @param {boolean} loop + */ + animateStyle: function (loop) { + return this.animate('style', loop); + }, + + attrKV: function (key, value) { + if (key !== 'style') { + Element.prototype.attrKV.call(this, key, value); + } + else { + this.style.set(value); + } + }, + + /** + * @param {Object|string} key + * @param {*} value + */ + setStyle: function (key, value) { + this.style.set(key, value); + this.dirty(false); + return this; + }, + + /** + * Use given style object + * @param {Object} obj + */ + useStyle: function (obj) { + this.style = new Style(obj, this); + this.dirty(false); + return this; + }, + + /** + * The string value of `textPosition` needs to be calculated to a real postion. + * For example, `'inside'` is calculated to `[rect.width/2, rect.height/2]` + * by default. See `contain/text.js#calculateTextPosition` for more details. + * But some coutom shapes like "pin", "flag" have center that is not exactly + * `[width/2, height/2]`. So we provide this hook to customize the calculation + * for those shapes. It will be called if the `style.textPosition` is a string. + * @param {Obejct} [out] Prepared out object. If not provided, this method should + * be responsible for creating one. + * @param {module:zrender/graphic/Style} style + * @param {Object} rect {x, y, width, height} + * @return {Obejct} out The same as the input out. + * { + * x: number. mandatory. + * y: number. mandatory. + * textAlign: string. optional. use style.textAlign by default. + * textVerticalAlign: string. optional. use style.textVerticalAlign by default. + * } + */ + calculateTextPosition: null +}; + +inherits(Displayable, Element); + +mixin(Displayable, RectText); + +/** + * @alias zrender/graphic/Image + * @extends module:zrender/graphic/Displayable + * @constructor + * @param {Object} opts + */ +function ZImage(opts) { + Displayable.call(this, opts); +} + +ZImage.prototype = { + + constructor: ZImage, + + type: 'image', + + brush: function (ctx, prevEl) { + var style = this.style; + var src = style.image; + + // Must bind each time + style.bind(ctx, this, prevEl); + + var image = this._image = createOrUpdateImage( + src, + this._image, + this, + this.onload + ); + + if (!image || !isImageReady(image)) { + return; + } + + // 图片已经加载完成 + // if (image.nodeName.toUpperCase() == 'IMG') { + // if (!image.complete) { + // return; + // } + // } + // Else is canvas + + var x = style.x || 0; + var y = style.y || 0; + var width = style.width; + var height = style.height; + var aspect = image.width / image.height; + if (width == null && height != null) { + // Keep image/height ratio + width = height * aspect; + } + else if (height == null && width != null) { + height = width / aspect; + } + else if (width == null && height == null) { + width = image.width; + height = image.height; + } + + // 设置transform + this.setTransform(ctx); + + if (style.sWidth && style.sHeight) { + var sx = style.sx || 0; + var sy = style.sy || 0; + ctx.drawImage( + image, + sx, sy, style.sWidth, style.sHeight, + x, y, width, height + ); + } + else if (style.sx && style.sy) { + var sx = style.sx; + var sy = style.sy; + var sWidth = width - sx; + var sHeight = height - sy; + ctx.drawImage( + image, + sx, sy, sWidth, sHeight, + x, y, width, height + ); + } + else { + ctx.drawImage(image, x, y, width, height); + } + + // Draw rect text + if (style.text != null) { + // Only restore transform when needs draw text. + this.restoreTransform(ctx); + this.drawRectText(ctx, this.getBoundingRect()); + } + }, + + getBoundingRect: function () { + var style = this.style; + if (!this._rect) { + this._rect = new BoundingRect( + style.x || 0, style.y || 0, style.width || 0, style.height || 0 + ); + } + return this._rect; + } +}; + +inherits(ZImage, Displayable); + +var HOVER_LAYER_ZLEVEL = 1e5; +var CANVAS_ZLEVEL = 314159; + +var EL_AFTER_INCREMENTAL_INC = 0.01; +var INCREMENTAL_INC = 0.001; + +function parseInt10(val) { + return parseInt(val, 10); +} + +function isLayerValid(layer) { + if (!layer) { + return false; + } + + if (layer.__builtin__) { + return true; + } + + if (typeof (layer.resize) !== 'function' + || typeof (layer.refresh) !== 'function' + ) { + return false; + } + + return true; +} + +var tmpRect = new BoundingRect(0, 0, 0, 0); +var viewRect = new BoundingRect(0, 0, 0, 0); +function isDisplayableCulled(el, width, height) { + tmpRect.copy(el.getBoundingRect()); + if (el.transform) { + tmpRect.applyTransform(el.transform); + } + viewRect.width = width; + viewRect.height = height; + return !tmpRect.intersect(viewRect); +} + +function isClipPathChanged(clipPaths, prevClipPaths) { + // displayable.__clipPaths can only be `null`/`undefined` or an non-empty array. + if (clipPaths === prevClipPaths) { + return false; + } + if (!clipPaths || !prevClipPaths || (clipPaths.length !== prevClipPaths.length)) { + return true; + } + for (var i = 0; i < clipPaths.length; i++) { + if (clipPaths[i] !== prevClipPaths[i]) { + return true; + } + } + return false; +} + +function doClip(clipPaths, ctx) { + for (var i = 0; i < clipPaths.length; i++) { + var clipPath = clipPaths[i]; + + clipPath.setTransform(ctx); + ctx.beginPath(); + clipPath.buildPath(ctx, clipPath.shape); + ctx.clip(); + // Transform back + clipPath.restoreTransform(ctx); + } +} + +function createRoot(width, height) { + var domRoot = document.createElement('div'); + + // domRoot.onselectstart = returnFalse; // 避免页面选中的尴尬 + domRoot.style.cssText = [ + 'position:relative', + 'overflow:hidden', + 'width:' + width + 'px', + 'height:' + height + 'px', + 'padding:0', + 'margin:0', + 'border-width:0' + ].join(';') + ';'; + + return domRoot; +} + + +/** + * @alias module:zrender/Painter + * @constructor + * @param {HTMLElement} root 绘图容器 + * @param {module:zrender/Storage} storage + * @param {Object} opts + */ +var Painter = function (root, storage, opts) { + + this.type = 'canvas'; + + // In node environment using node-canvas + var singleCanvas = !root.nodeName // In node ? + || root.nodeName.toUpperCase() === 'CANVAS'; + + this._opts = opts = extend({}, opts || {}); + + /** + * @type {number} + */ + this.dpr = opts.devicePixelRatio || devicePixelRatio; + /** + * @type {boolean} + * @private + */ + this._singleCanvas = singleCanvas; + /** + * 绘图容器 + * @type {HTMLElement} + */ + this.root = root; + + var rootStyle = root.style; + + if (rootStyle) { + rootStyle['-webkit-tap-highlight-color'] = 'transparent'; + rootStyle['-webkit-user-select'] = + rootStyle['user-select'] = + rootStyle['-webkit-touch-callout'] = 'none'; + + root.innerHTML = ''; + } + + /** + * @type {module:zrender/Storage} + */ + this.storage = storage; + + /** + * @type {Array.} + * @private + */ + var zlevelList = this._zlevelList = []; + + /** + * @type {Object.} + * @private + */ + var layers = this._layers = {}; + + /** + * @type {Object.} + * @private + */ + this._layerConfig = {}; + + /** + * zrender will do compositing when root is a canvas and have multiple zlevels. + */ + this._needsManuallyCompositing = false; + + if (!singleCanvas) { + this._width = this._getSize(0); + this._height = this._getSize(1); + + var domRoot = this._domRoot = createRoot( + this._width, this._height + ); + root.appendChild(domRoot); + } + else { + var width = root.width; + var height = root.height; + + if (opts.width != null) { + width = opts.width; + } + if (opts.height != null) { + height = opts.height; + } + this.dpr = opts.devicePixelRatio || 1; + + // Use canvas width and height directly + root.width = width * this.dpr; + root.height = height * this.dpr; + + this._width = width; + this._height = height; + + // Create layer if only one given canvas + // Device can be specified to create a high dpi image. + var mainLayer = new Layer(root, this, this.dpr); + mainLayer.__builtin__ = true; + mainLayer.initContext(); + // FIXME Use canvas width and height + // mainLayer.resize(width, height); + layers[CANVAS_ZLEVEL] = mainLayer; + mainLayer.zlevel = CANVAS_ZLEVEL; + // Not use common zlevel. + zlevelList.push(CANVAS_ZLEVEL); + + this._domRoot = root; + } + + /** + * @type {module:zrender/Layer} + * @private + */ + this._hoverlayer = null; + + this._hoverElements = []; +}; + +Painter.prototype = { + + constructor: Painter, + + getType: function () { + return 'canvas'; + }, + + /** + * If painter use a single canvas + * @return {boolean} + */ + isSingleCanvas: function () { + return this._singleCanvas; + }, + /** + * @return {HTMLDivElement} + */ + getViewportRoot: function () { + return this._domRoot; + }, + + getViewportRootOffset: function () { + var viewportRoot = this.getViewportRoot(); + if (viewportRoot) { + return { + offsetLeft: viewportRoot.offsetLeft || 0, + offsetTop: viewportRoot.offsetTop || 0 + }; + } + }, + + /** + * 刷新 + * @param {boolean} [paintAll=false] 强制绘制所有displayable + */ + refresh: function (paintAll) { + + var list = this.storage.getDisplayList(true); + + var zlevelList = this._zlevelList; + + this._redrawId = Math.random(); + + this._paintList(list, paintAll, this._redrawId); + + // Paint custum layers + for (var i = 0; i < zlevelList.length; i++) { + var z = zlevelList[i]; + var layer = this._layers[z]; + if (!layer.__builtin__ && layer.refresh) { + var clearColor = i === 0 ? this._backgroundColor : null; + layer.refresh(clearColor); + } + } + + this.refreshHover(); + + return this; + }, + + addHover: function (el, hoverStyle) { + if (el.__hoverMir) { + return; + } + var elMirror = new el.constructor({ + style: el.style, + shape: el.shape, + z: el.z, + z2: el.z2, + silent: el.silent + }); + elMirror.__from = el; + el.__hoverMir = elMirror; + hoverStyle && elMirror.setStyle(hoverStyle); + this._hoverElements.push(elMirror); + + return elMirror; + }, + + removeHover: function (el) { + var elMirror = el.__hoverMir; + var hoverElements = this._hoverElements; + var idx = indexOf(hoverElements, elMirror); + if (idx >= 0) { + hoverElements.splice(idx, 1); + } + el.__hoverMir = null; + }, + + clearHover: function (el) { + var hoverElements = this._hoverElements; + for (var i = 0; i < hoverElements.length; i++) { + var from = hoverElements[i].__from; + if (from) { + from.__hoverMir = null; + } + } + hoverElements.length = 0; + }, + + refreshHover: function () { + var hoverElements = this._hoverElements; + var len = hoverElements.length; + var hoverLayer = this._hoverlayer; + hoverLayer && hoverLayer.clear(); + + if (!len) { + return; + } + sort(hoverElements, this.storage.displayableSortFunc); + + // Use a extream large zlevel + // FIXME? + if (!hoverLayer) { + hoverLayer = this._hoverlayer = this.getLayer(HOVER_LAYER_ZLEVEL); + } + + var scope = {}; + hoverLayer.ctx.save(); + for (var i = 0; i < len;) { + var el = hoverElements[i]; + var originalEl = el.__from; + // Original el is removed + // PENDING + if (!(originalEl && originalEl.__zr)) { + hoverElements.splice(i, 1); + originalEl.__hoverMir = null; + len--; + continue; + } + i++; + + // Use transform + // FIXME style and shape ? + if (!originalEl.invisible) { + el.transform = originalEl.transform; + el.invTransform = originalEl.invTransform; + el.__clipPaths = originalEl.__clipPaths; + // el. + this._doPaintEl(el, hoverLayer, true, scope); + } + } + + hoverLayer.ctx.restore(); + }, + + getHoverLayer: function () { + return this.getLayer(HOVER_LAYER_ZLEVEL); + }, + + _paintList: function (list, paintAll, redrawId) { + if (this._redrawId !== redrawId) { + return; + } + + paintAll = paintAll || false; + + this._updateLayerStatus(list); + + var finished = this._doPaintList(list, paintAll); + + if (this._needsManuallyCompositing) { + this._compositeManually(); + } + + if (!finished) { + var self = this; + requestAnimationFrame(function () { + self._paintList(list, paintAll, redrawId); + }); + } + }, + + _compositeManually: function () { + var ctx = this.getLayer(CANVAS_ZLEVEL).ctx; + var width = this._domRoot.width; + var height = this._domRoot.height; + ctx.clearRect(0, 0, width, height); + // PENDING, If only builtin layer? + this.eachBuiltinLayer(function (layer) { + if (layer.virtual) { + ctx.drawImage(layer.dom, 0, 0, width, height); + } + }); + }, + + _doPaintList: function (list, paintAll) { + var layerList = []; + for (var zi = 0; zi < this._zlevelList.length; zi++) { + var zlevel = this._zlevelList[zi]; + var layer = this._layers[zlevel]; + if (layer.__builtin__ + && layer !== this._hoverlayer + && (layer.__dirty || paintAll) + ) { + layerList.push(layer); + } + } + + var finished = true; + + for (var k = 0; k < layerList.length; k++) { + var layer = layerList[k]; + var ctx = layer.ctx; + var scope = {}; + ctx.save(); + + var start = paintAll ? layer.__startIndex : layer.__drawIndex; + + var useTimer = !paintAll && layer.incremental && Date.now; + var startTime = useTimer && Date.now(); + + var clearColor = layer.zlevel === this._zlevelList[0] + ? this._backgroundColor : null; + // All elements in this layer are cleared. + if (layer.__startIndex === layer.__endIndex) { + layer.clear(false, clearColor); + } + else if (start === layer.__startIndex) { + var firstEl = list[start]; + if (!firstEl.incremental || !firstEl.notClear || paintAll) { + layer.clear(false, clearColor); + } + } + if (start === -1) { + console.error('For some unknown reason. drawIndex is -1'); + start = layer.__startIndex; + } + for (var i = start; i < layer.__endIndex; i++) { + var el = list[i]; + this._doPaintEl(el, layer, paintAll, scope); + el.__dirty = el.__dirtyText = false; + + if (useTimer) { + // Date.now can be executed in 13,025,305 ops/second. + var dTime = Date.now() - startTime; + // Give 15 millisecond to draw. + // The rest elements will be drawn in the next frame. + if (dTime > 15) { + break; + } + } + } + + layer.__drawIndex = i; + + if (layer.__drawIndex < layer.__endIndex) { + finished = false; + } + + if (scope.prevElClipPaths) { + // Needs restore the state. If last drawn element is in the clipping area. + ctx.restore(); + } + + ctx.restore(); + } + + if (env$1.wxa) { + // Flush for weixin application + each$1(this._layers, function (layer) { + if (layer && layer.ctx && layer.ctx.draw) { + layer.ctx.draw(); + } + }); + } + + return finished; + }, + + _doPaintEl: function (el, currentLayer, forcePaint, scope) { + var ctx = currentLayer.ctx; + var m = el.transform; + if ( + (currentLayer.__dirty || forcePaint) + // Ignore invisible element + && !el.invisible + // Ignore transparent element + && el.style.opacity !== 0 + // Ignore scale 0 element, in some environment like node-canvas + // Draw a scale 0 element can cause all following draw wrong + // And setTransform with scale 0 will cause set back transform failed. + && !(m && !m[0] && !m[3]) + // Ignore culled element + && !(el.culling && isDisplayableCulled(el, this._width, this._height)) + ) { + + var clipPaths = el.__clipPaths; + var prevElClipPaths = scope.prevElClipPaths; + + // Optimize when clipping on group with several elements + if (!prevElClipPaths || isClipPathChanged(clipPaths, prevElClipPaths)) { + // If has previous clipping state, restore from it + if (prevElClipPaths) { + ctx.restore(); + scope.prevElClipPaths = null; + // Reset prevEl since context has been restored + scope.prevEl = null; + } + // New clipping state + if (clipPaths) { + ctx.save(); + doClip(clipPaths, ctx); + scope.prevElClipPaths = clipPaths; + } + } + el.beforeBrush && el.beforeBrush(ctx); + + el.brush(ctx, scope.prevEl || null); + scope.prevEl = el; + + el.afterBrush && el.afterBrush(ctx); + } + }, + + /** + * 获取 zlevel 所在层,如果不存在则会创建一个新的层 + * @param {number} zlevel + * @param {boolean} virtual Virtual layer will not be inserted into dom. + * @return {module:zrender/Layer} + */ + getLayer: function (zlevel, virtual) { + if (this._singleCanvas && !this._needsManuallyCompositing) { + zlevel = CANVAS_ZLEVEL; + } + var layer = this._layers[zlevel]; + if (!layer) { + // Create a new layer + layer = new Layer('zr_' + zlevel, this, this.dpr); + layer.zlevel = zlevel; + layer.__builtin__ = true; + + if (this._layerConfig[zlevel]) { + merge(layer, this._layerConfig[zlevel], true); + } + + if (virtual) { + layer.virtual = virtual; + } + + this.insertLayer(zlevel, layer); + + // Context is created after dom inserted to document + // Or excanvas will get 0px clientWidth and clientHeight + layer.initContext(); + } + + return layer; + }, + + insertLayer: function (zlevel, layer) { + + var layersMap = this._layers; + var zlevelList = this._zlevelList; + var len = zlevelList.length; + var prevLayer = null; + var i = -1; + var domRoot = this._domRoot; + + if (layersMap[zlevel]) { + zrLog('ZLevel ' + zlevel + ' has been used already'); + return; + } + // Check if is a valid layer + if (!isLayerValid(layer)) { + zrLog('Layer of zlevel ' + zlevel + ' is not valid'); + return; + } + + if (len > 0 && zlevel > zlevelList[0]) { + for (i = 0; i < len - 1; i++) { + if ( + zlevelList[i] < zlevel + && zlevelList[i + 1] > zlevel + ) { + break; + } + } + prevLayer = layersMap[zlevelList[i]]; + } + zlevelList.splice(i + 1, 0, zlevel); + + layersMap[zlevel] = layer; + + // Vitual layer will not directly show on the screen. + // (It can be a WebGL layer and assigned to a ZImage element) + // But it still under management of zrender. + if (!layer.virtual) { + if (prevLayer) { + var prevDom = prevLayer.dom; + if (prevDom.nextSibling) { + domRoot.insertBefore( + layer.dom, + prevDom.nextSibling + ); + } + else { + domRoot.appendChild(layer.dom); + } + } + else { + if (domRoot.firstChild) { + domRoot.insertBefore(layer.dom, domRoot.firstChild); + } + else { + domRoot.appendChild(layer.dom); + } + } + } + }, + + // Iterate each layer + eachLayer: function (cb, context) { + var zlevelList = this._zlevelList; + var z; + var i; + for (i = 0; i < zlevelList.length; i++) { + z = zlevelList[i]; + cb.call(context, this._layers[z], z); + } + }, + + // Iterate each buildin layer + eachBuiltinLayer: function (cb, context) { + var zlevelList = this._zlevelList; + var layer; + var z; + var i; + for (i = 0; i < zlevelList.length; i++) { + z = zlevelList[i]; + layer = this._layers[z]; + if (layer.__builtin__) { + cb.call(context, layer, z); + } + } + }, + + // Iterate each other layer except buildin layer + eachOtherLayer: function (cb, context) { + var zlevelList = this._zlevelList; + var layer; + var z; + var i; + for (i = 0; i < zlevelList.length; i++) { + z = zlevelList[i]; + layer = this._layers[z]; + if (!layer.__builtin__) { + cb.call(context, layer, z); + } + } + }, + + /** + * 获取所有已创建的层 + * @param {Array.} [prevLayer] + */ + getLayers: function () { + return this._layers; + }, + + _updateLayerStatus: function (list) { + + this.eachBuiltinLayer(function (layer, z) { + layer.__dirty = layer.__used = false; + }); + + function updatePrevLayer(idx) { + if (prevLayer) { + if (prevLayer.__endIndex !== idx) { + prevLayer.__dirty = true; + } + prevLayer.__endIndex = idx; + } + } + + if (this._singleCanvas) { + for (var i = 1; i < list.length; i++) { + var el = list[i]; + if (el.zlevel !== list[i - 1].zlevel || el.incremental) { + this._needsManuallyCompositing = true; + break; + } + } + } + + var prevLayer = null; + var incrementalLayerCount = 0; + for (var i = 0; i < list.length; i++) { + var el = list[i]; + var zlevel = el.zlevel; + var layer; + // PENDING If change one incremental element style ? + // TODO Where there are non-incremental elements between incremental elements. + if (el.incremental) { + layer = this.getLayer(zlevel + INCREMENTAL_INC, this._needsManuallyCompositing); + layer.incremental = true; + incrementalLayerCount = 1; + } + else { + layer = this.getLayer(zlevel + (incrementalLayerCount > 0 ? EL_AFTER_INCREMENTAL_INC : 0), this._needsManuallyCompositing); + } + + if (!layer.__builtin__) { + zrLog('ZLevel ' + zlevel + ' has been used by unkown layer ' + layer.id); + } + + if (layer !== prevLayer) { + layer.__used = true; + if (layer.__startIndex !== i) { + layer.__dirty = true; + } + layer.__startIndex = i; + if (!layer.incremental) { + layer.__drawIndex = i; + } + else { + // Mark layer draw index needs to update. + layer.__drawIndex = -1; + } + updatePrevLayer(i); + prevLayer = layer; + } + if (el.__dirty) { + layer.__dirty = true; + if (layer.incremental && layer.__drawIndex < 0) { + // Start draw from the first dirty element. + layer.__drawIndex = i; + } + } + } + + updatePrevLayer(i); + + this.eachBuiltinLayer(function (layer, z) { + // Used in last frame but not in this frame. Needs clear + if (!layer.__used && layer.getElementCount() > 0) { + layer.__dirty = true; + layer.__startIndex = layer.__endIndex = layer.__drawIndex = 0; + } + // For incremental layer. In case start index changed and no elements are dirty. + if (layer.__dirty && layer.__drawIndex < 0) { + layer.__drawIndex = layer.__startIndex; + } + }); + }, + + /** + * 清除hover层外所有内容 + */ + clear: function () { + this.eachBuiltinLayer(this._clearLayer); + return this; + }, + + _clearLayer: function (layer) { + layer.clear(); + }, + + setBackgroundColor: function (backgroundColor) { + this._backgroundColor = backgroundColor; + }, + + /** + * 修改指定zlevel的绘制参数 + * + * @param {string} zlevel + * @param {Object} config 配置对象 + * @param {string} [config.clearColor=0] 每次清空画布的颜色 + * @param {string} [config.motionBlur=false] 是否开启动态模糊 + * @param {number} [config.lastFrameAlpha=0.7] + * 在开启动态模糊的时候使用,与上一帧混合的alpha值,值越大尾迹越明显 + */ + configLayer: function (zlevel, config) { + if (config) { + var layerConfig = this._layerConfig; + if (!layerConfig[zlevel]) { + layerConfig[zlevel] = config; + } + else { + merge(layerConfig[zlevel], config, true); + } + + for (var i = 0; i < this._zlevelList.length; i++) { + var _zlevel = this._zlevelList[i]; + if (_zlevel === zlevel || _zlevel === zlevel + EL_AFTER_INCREMENTAL_INC) { + var layer = this._layers[_zlevel]; + merge(layer, layerConfig[zlevel], true); + } + } + } + }, + + /** + * 删除指定层 + * @param {number} zlevel 层所在的zlevel + */ + delLayer: function (zlevel) { + var layers = this._layers; + var zlevelList = this._zlevelList; + var layer = layers[zlevel]; + if (!layer) { + return; + } + layer.dom.parentNode.removeChild(layer.dom); + delete layers[zlevel]; + + zlevelList.splice(indexOf(zlevelList, zlevel), 1); + }, + + /** + * 区域大小变化后重绘 + */ + resize: function (width, height) { + if (!this._domRoot.style) { // Maybe in node or worker + if (width == null || height == null) { + return; + } + this._width = width; + this._height = height; + + this.getLayer(CANVAS_ZLEVEL).resize(width, height); + } + else { + var domRoot = this._domRoot; + // FIXME Why ? + domRoot.style.display = 'none'; + + // Save input w/h + var opts = this._opts; + width != null && (opts.width = width); + height != null && (opts.height = height); + + width = this._getSize(0); + height = this._getSize(1); + + domRoot.style.display = ''; + + // 优化没有实际改变的resize + if (this._width !== width || height !== this._height) { + domRoot.style.width = width + 'px'; + domRoot.style.height = height + 'px'; + + for (var id in this._layers) { + if (this._layers.hasOwnProperty(id)) { + this._layers[id].resize(width, height); + } + } + each$1(this._progressiveLayers, function (layer) { + layer.resize(width, height); + }); + + this.refresh(true); + } + + this._width = width; + this._height = height; + + } + return this; + }, + + /** + * 清除单独的一个层 + * @param {number} zlevel + */ + clearLayer: function (zlevel) { + var layer = this._layers[zlevel]; + if (layer) { + layer.clear(); + } + }, + + /** + * 释放 + */ + dispose: function () { + this.root.innerHTML = ''; + + this.root = + this.storage = + + this._domRoot = + this._layers = null; + }, + + /** + * Get canvas which has all thing rendered + * @param {Object} opts + * @param {string} [opts.backgroundColor] + * @param {number} [opts.pixelRatio] + */ + getRenderedCanvas: function (opts) { + opts = opts || {}; + if (this._singleCanvas && !this._compositeManually) { + return this._layers[CANVAS_ZLEVEL].dom; + } + + var imageLayer = new Layer('image', this, opts.pixelRatio || this.dpr); + imageLayer.initContext(); + imageLayer.clear(false, opts.backgroundColor || this._backgroundColor); + + if (opts.pixelRatio <= this.dpr) { + this.refresh(); + + var width = imageLayer.dom.width; + var height = imageLayer.dom.height; + var ctx = imageLayer.ctx; + this.eachLayer(function (layer) { + if (layer.__builtin__) { + ctx.drawImage(layer.dom, 0, 0, width, height); + } + else if (layer.renderToCanvas) { + imageLayer.ctx.save(); + layer.renderToCanvas(imageLayer.ctx); + imageLayer.ctx.restore(); + } + }); + } + else { + // PENDING, echarts-gl and incremental rendering. + var scope = {}; + var displayList = this.storage.getDisplayList(true); + for (var i = 0; i < displayList.length; i++) { + var el = displayList[i]; + this._doPaintEl(el, imageLayer, true, scope); + } + } + + return imageLayer.dom; + }, + /** + * 获取绘图区域宽度 + */ + getWidth: function () { + return this._width; + }, + + /** + * 获取绘图区域高度 + */ + getHeight: function () { + return this._height; + }, + + _getSize: function (whIdx) { + var opts = this._opts; + var wh = ['width', 'height'][whIdx]; + var cwh = ['clientWidth', 'clientHeight'][whIdx]; + var plt = ['paddingLeft', 'paddingTop'][whIdx]; + var prb = ['paddingRight', 'paddingBottom'][whIdx]; + + if (opts[wh] != null && opts[wh] !== 'auto') { + return parseFloat(opts[wh]); + } + + var root = this.root; + // IE8 does not support getComputedStyle, but it use VML. + var stl = document.defaultView.getComputedStyle(root); + + return ( + (root[cwh] || parseInt10(stl[wh]) || parseInt10(root.style[wh])) + - (parseInt10(stl[plt]) || 0) + - (parseInt10(stl[prb]) || 0) + ) | 0; + }, + + pathToImage: function (path, dpr) { + dpr = dpr || this.dpr; + + var canvas = document.createElement('canvas'); + var ctx = canvas.getContext('2d'); + var rect = path.getBoundingRect(); + var style = path.style; + var shadowBlurSize = style.shadowBlur * dpr; + var shadowOffsetX = style.shadowOffsetX * dpr; + var shadowOffsetY = style.shadowOffsetY * dpr; + var lineWidth = style.hasStroke() ? style.lineWidth : 0; + + var leftMargin = Math.max(lineWidth / 2, -shadowOffsetX + shadowBlurSize); + var rightMargin = Math.max(lineWidth / 2, shadowOffsetX + shadowBlurSize); + var topMargin = Math.max(lineWidth / 2, -shadowOffsetY + shadowBlurSize); + var bottomMargin = Math.max(lineWidth / 2, shadowOffsetY + shadowBlurSize); + var width = rect.width + leftMargin + rightMargin; + var height = rect.height + topMargin + bottomMargin; + + canvas.width = width * dpr; + canvas.height = height * dpr; + + ctx.scale(dpr, dpr); + ctx.clearRect(0, 0, width, height); + ctx.dpr = dpr; + + var pathTransform = { + position: path.position, + rotation: path.rotation, + scale: path.scale + }; + path.position = [leftMargin - rect.x, topMargin - rect.y]; + path.rotation = 0; + path.scale = [1, 1]; + path.updateTransform(); + if (path) { + path.brush(ctx); + } + + var ImageShape = ZImage; + var imgShape = new ImageShape({ + style: { + x: 0, + y: 0, + image: canvas + } + }); + + if (pathTransform.position != null) { + imgShape.position = path.position = pathTransform.position; + } + + if (pathTransform.rotation != null) { + imgShape.rotation = path.rotation = pathTransform.rotation; + } + + if (pathTransform.scale != null) { + imgShape.scale = path.scale = pathTransform.scale; + } + + return imgShape; + } +}; + +/** + * 动画主类, 调度和管理所有动画控制器 + * + * @module zrender/animation/Animation + * @author pissang(https://github.com/pissang) + */ +// TODO Additive animation +// http://iosoteric.com/additive-animations-animatewithduration-in-ios-8/ +// https://developer.apple.com/videos/wwdc2014/#236 + +/** + * @typedef {Object} IZRenderStage + * @property {Function} update + */ + +/** + * @alias module:zrender/animation/Animation + * @constructor + * @param {Object} [options] + * @param {Function} [options.onframe] + * @param {IZRenderStage} [options.stage] + * @example + * var animation = new Animation(); + * var obj = { + * x: 100, + * y: 100 + * }; + * animation.animate(node.position) + * .when(1000, { + * x: 500, + * y: 500 + * }) + * .when(2000, { + * x: 100, + * y: 100 + * }) + * .start('spline'); + */ +var Animation = function (options) { + + options = options || {}; + + this.stage = options.stage || {}; + + this.onframe = options.onframe || function () {}; + + // private properties + this._clips = []; + + this._running = false; + + this._time; + + this._pausedTime; + + this._pauseStart; + + this._paused = false; + + Eventful.call(this); +}; + +Animation.prototype = { + + constructor: Animation, + /** + * 添加 clip + * @param {module:zrender/animation/Clip} clip + */ + addClip: function (clip) { + this._clips.push(clip); + }, + /** + * 添加 animator + * @param {module:zrender/animation/Animator} animator + */ + addAnimator: function (animator) { + animator.animation = this; + var clips = animator.getClips(); + for (var i = 0; i < clips.length; i++) { + this.addClip(clips[i]); + } + }, + /** + * 删除动画片段 + * @param {module:zrender/animation/Clip} clip + */ + removeClip: function (clip) { + var idx = indexOf(this._clips, clip); + if (idx >= 0) { + this._clips.splice(idx, 1); + } + }, + + /** + * 删除动画片段 + * @param {module:zrender/animation/Animator} animator + */ + removeAnimator: function (animator) { + var clips = animator.getClips(); + for (var i = 0; i < clips.length; i++) { + this.removeClip(clips[i]); + } + animator.animation = null; + }, + + _update: function () { + var time = new Date().getTime() - this._pausedTime; + var delta = time - this._time; + var clips = this._clips; + var len = clips.length; + + var deferredEvents = []; + var deferredClips = []; + for (var i = 0; i < len; i++) { + var clip = clips[i]; + var e = clip.step(time, delta); + // Throw out the events need to be called after + // stage.update, like destroy + if (e) { + deferredEvents.push(e); + deferredClips.push(clip); + } + } + + // Remove the finished clip + for (var i = 0; i < len;) { + if (clips[i]._needsRemove) { + clips[i] = clips[len - 1]; + clips.pop(); + len--; + } + else { + i++; + } + } + + len = deferredEvents.length; + for (var i = 0; i < len; i++) { + deferredClips[i].fire(deferredEvents[i]); + } + + this._time = time; + + this.onframe(delta); + + // 'frame' should be triggered before stage, because upper application + // depends on the sequence (e.g., echarts-stream and finish + // event judge) + this.trigger('frame', delta); + + if (this.stage.update) { + this.stage.update(); + } + }, + + _startLoop: function () { + var self = this; + + this._running = true; + + function step() { + if (self._running) { + + requestAnimationFrame(step); + + !self._paused && self._update(); + } + } + + requestAnimationFrame(step); + }, + + /** + * Start animation. + */ + start: function () { + + this._time = new Date().getTime(); + this._pausedTime = 0; + + this._startLoop(); + }, + + /** + * Stop animation. + */ + stop: function () { + this._running = false; + }, + + /** + * Pause animation. + */ + pause: function () { + if (!this._paused) { + this._pauseStart = new Date().getTime(); + this._paused = true; + } + }, + + /** + * Resume animation. + */ + resume: function () { + if (this._paused) { + this._pausedTime += (new Date().getTime()) - this._pauseStart; + this._paused = false; + } + }, + + /** + * Clear animation. + */ + clear: function () { + this._clips = []; + }, + + /** + * Whether animation finished. + */ + isFinished: function () { + return !this._clips.length; + }, + + /** + * Creat animator for a target, whose props can be animated. + * + * @param {Object} target + * @param {Object} options + * @param {boolean} [options.loop=false] Whether loop animation. + * @param {Function} [options.getter=null] Get value from target. + * @param {Function} [options.setter=null] Set value to target. + * @return {module:zrender/animation/Animation~Animator} + */ + // TODO Gap + animate: function (target, options) { + options = options || {}; + + var animator = new Animator( + target, + options.loop, + options.getter, + options.setter + ); + + this.addAnimator(animator); + + return animator; + } +}; + +mixin(Animation, Eventful); + +var TOUCH_CLICK_DELAY = 300; + +var mouseHandlerNames = [ + 'click', 'dblclick', 'mousewheel', 'mouseout', + 'mouseup', 'mousedown', 'mousemove', 'contextmenu' +]; + +var touchHandlerNames = [ + 'touchstart', 'touchend', 'touchmove' +]; + +var pointerEventNames = { + pointerdown: 1, pointerup: 1, pointermove: 1, pointerout: 1 +}; + +var pointerHandlerNames = map(mouseHandlerNames, function (name) { + var nm = name.replace('mouse', 'pointer'); + return pointerEventNames[nm] ? nm : name; +}); + +function eventNameFix(name) { + return (name === 'mousewheel' && env$1.browser.firefox) ? 'DOMMouseScroll' : name; +} + +// function onMSGestureChange(proxy, event) { +// if (event.translationX || event.translationY) { +// // mousemove is carried by MSGesture to reduce the sensitivity. +// proxy.handler.dispatchToElement(event.target, 'mousemove', event); +// } +// if (event.scale !== 1) { +// event.pinchX = event.offsetX; +// event.pinchY = event.offsetY; +// event.pinchScale = event.scale; +// proxy.handler.dispatchToElement(event.target, 'pinch', event); +// } +// } + +/** + * Prevent mouse event from being dispatched after Touch Events action + * @see + * 1. Mobile browsers dispatch mouse events 300ms after touchend. + * 2. Chrome for Android dispatch mousedown for long-touch about 650ms + * Result: Blocking Mouse Events for 700ms. + */ +function setTouchTimer(instance) { + instance._touching = true; + clearTimeout(instance._touchTimer); + instance._touchTimer = setTimeout(function () { + instance._touching = false; + }, 700); +} + + +var domHandlers = { + /** + * Mouse move handler + * @inner + * @param {Event} event + */ + mousemove: function (event) { + event = normalizeEvent(this.dom, event); + + this.trigger('mousemove', event); + }, + + /** + * Mouse out handler + * @inner + * @param {Event} event + */ + mouseout: function (event) { + event = normalizeEvent(this.dom, event); + + var element = event.toElement || event.relatedTarget; + if (element !== this.dom) { + while (element && element.nodeType !== 9) { + // 忽略包含在root中的dom引起的mouseOut + if (element === this.dom) { + return; + } + + element = element.parentNode; + } + } + + this.trigger('mouseout', event); + }, + + /** + * Touch开始响应函数 + * @inner + * @param {Event} event + */ + touchstart: function (event) { + // Default mouse behaviour should not be disabled here. + // For example, page may needs to be slided. + event = normalizeEvent(this.dom, event); + + // Mark touch, which is useful in distinguish touch and + // mouse event in upper applicatoin. + event.zrByTouch = true; + + this._lastTouchMoment = new Date(); + + this.handler.processGesture(this, event, 'start'); + + // In touch device, trigger `mousemove`(`mouseover`) should + // be triggered, and must before `mousedown` triggered. + domHandlers.mousemove.call(this, event); + + domHandlers.mousedown.call(this, event); + + setTouchTimer(this); + }, + + /** + * Touch移动响应函数 + * @inner + * @param {Event} event + */ + touchmove: function (event) { + + event = normalizeEvent(this.dom, event); + + // Mark touch, which is useful in distinguish touch and + // mouse event in upper applicatoin. + event.zrByTouch = true; + + this.handler.processGesture(this, event, 'change'); + + // Mouse move should always be triggered no matter whether + // there is gestrue event, because mouse move and pinch may + // be used at the same time. + domHandlers.mousemove.call(this, event); + + setTouchTimer(this); + }, + + /** + * Touch结束响应函数 + * @inner + * @param {Event} event + */ + touchend: function (event) { + + event = normalizeEvent(this.dom, event); + + // Mark touch, which is useful in distinguish touch and + // mouse event in upper applicatoin. + event.zrByTouch = true; + + this.handler.processGesture(this, event, 'end'); + + domHandlers.mouseup.call(this, event); + + // Do not trigger `mouseout` here, in spite of `mousemove`(`mouseover`) is + // triggered in `touchstart`. This seems to be illogical, but by this mechanism, + // we can conveniently implement "hover style" in both PC and touch device just + // by listening to `mouseover` to add "hover style" and listening to `mouseout` + // to remove "hover style" on an element, without any additional code for + // compatibility. (`mouseout` will not be triggered in `touchend`, so "hover + // style" will remain for user view) + + // click event should always be triggered no matter whether + // there is gestrue event. System click can not be prevented. + if (+new Date() - this._lastTouchMoment < TOUCH_CLICK_DELAY) { + domHandlers.click.call(this, event); + } + + setTouchTimer(this); + }, + + pointerdown: function (event) { + domHandlers.mousedown.call(this, event); + + // if (useMSGuesture(this, event)) { + // this._msGesture.addPointer(event.pointerId); + // } + }, + + pointermove: function (event) { + // FIXME + // pointermove is so sensitive that it always triggered when + // tap(click) on touch screen, which affect some judgement in + // upper application. So, we dont support mousemove on MS touch + // device yet. + if (!isPointerFromTouch(event)) { + domHandlers.mousemove.call(this, event); + } + }, + + pointerup: function (event) { + domHandlers.mouseup.call(this, event); + }, + + pointerout: function (event) { + // pointerout will be triggered when tap on touch screen + // (IE11+/Edge on MS Surface) after click event triggered, + // which is inconsistent with the mousout behavior we defined + // in touchend. So we unify them. + // (check domHandlers.touchend for detailed explanation) + if (!isPointerFromTouch(event)) { + domHandlers.mouseout.call(this, event); + } + } +}; + +function isPointerFromTouch(event) { + var pointerType = event.pointerType; + return pointerType === 'pen' || pointerType === 'touch'; +} + +// function useMSGuesture(handlerProxy, event) { +// return isPointerFromTouch(event) && !!handlerProxy._msGesture; +// } + +// Common handlers +each$1(['click', 'mousedown', 'mouseup', 'mousewheel', 'dblclick', 'contextmenu'], function (name) { + domHandlers[name] = function (event) { + event = normalizeEvent(this.dom, event); + this.trigger(name, event); + }; +}); + +/** + * 为控制类实例初始化dom 事件处理函数 + * + * @inner + * @param {module:zrender/Handler} instance 控制类实例 + */ +function initDomHandler(instance) { + each$1(touchHandlerNames, function (name) { + instance._handlers[name] = bind(domHandlers[name], instance); + }); + + each$1(pointerHandlerNames, function (name) { + instance._handlers[name] = bind(domHandlers[name], instance); + }); + + each$1(mouseHandlerNames, function (name) { + instance._handlers[name] = makeMouseHandler(domHandlers[name], instance); + }); + + function makeMouseHandler(fn, instance) { + return function () { + if (instance._touching) { + return; + } + return fn.apply(instance, arguments); + }; + } +} + + +function HandlerDomProxy(dom) { + Eventful.call(this); + + this.dom = dom; + + /** + * @private + * @type {boolean} + */ + this._touching = false; + + /** + * @private + * @type {number} + */ + this._touchTimer; + + this._handlers = {}; + + initDomHandler(this); + + if (env$1.pointerEventsSupported) { // Only IE11+/Edge + // 1. On devices that both enable touch and mouse (e.g., MS Surface and lenovo X240), + // IE11+/Edge do not trigger touch event, but trigger pointer event and mouse event + // at the same time. + // 2. On MS Surface, it probablely only trigger mousedown but no mouseup when tap on + // screen, which do not occurs in pointer event. + // So we use pointer event to both detect touch gesture and mouse behavior. + mountHandlers(pointerHandlerNames, this); + + // FIXME + // Note: MS Gesture require CSS touch-action set. But touch-action is not reliable, + // which does not prevent defuault behavior occasionally (which may cause view port + // zoomed in but use can not zoom it back). And event.preventDefault() does not work. + // So we have to not to use MSGesture and not to support touchmove and pinch on MS + // touch screen. And we only support click behavior on MS touch screen now. + + // MS Gesture Event is only supported on IE11+/Edge and on Windows 8+. + // We dont support touch on IE on win7. + // See + // if (typeof MSGesture === 'function') { + // (this._msGesture = new MSGesture()).target = dom; // jshint ignore:line + // dom.addEventListener('MSGestureChange', onMSGestureChange); + // } + } + else { + if (env$1.touchEventsSupported) { + mountHandlers(touchHandlerNames, this); + // Handler of 'mouseout' event is needed in touch mode, which will be mounted below. + // addEventListener(root, 'mouseout', this._mouseoutHandler); + } + + // 1. Considering some devices that both enable touch and mouse event (like on MS Surface + // and lenovo X240, @see #2350), we make mouse event be always listened, otherwise + // mouse event can not be handle in those devices. + // 2. On MS Surface, Chrome will trigger both touch event and mouse event. How to prevent + // mouseevent after touch event triggered, see `setTouchTimer`. + mountHandlers(mouseHandlerNames, this); + } + + function mountHandlers(handlerNames, instance) { + each$1(handlerNames, function (name) { + addEventListener(dom, eventNameFix(name), instance._handlers[name]); + }, instance); + } +} + +var handlerDomProxyProto = HandlerDomProxy.prototype; +handlerDomProxyProto.dispose = function () { + var handlerNames = mouseHandlerNames.concat(touchHandlerNames); + + for (var i = 0; i < handlerNames.length; i++) { + var name = handlerNames[i]; + removeEventListener(this.dom, eventNameFix(name), this._handlers[name]); + } +}; + +handlerDomProxyProto.setCursor = function (cursorStyle) { + this.dom.style && (this.dom.style.cursor = cursorStyle || 'default'); +}; + +mixin(HandlerDomProxy, Eventful); + +/*! +* ZRender, a high performance 2d drawing library. +* +* Copyright (c) 2013, Baidu Inc. +* All rights reserved. +* +* LICENSE +* https://github.com/ecomfe/zrender/blob/master/LICENSE.txt +*/ + +var useVML = !env$1.canvasSupported; + +var painterCtors = { + canvas: Painter +}; + +var instances$1 = {}; // ZRender实例map索引 + +/** + * @type {string} + */ +var version$1 = '4.1.0'; + +/** + * Initializing a zrender instance + * @param {HTMLElement} dom + * @param {Object} [opts] + * @param {string} [opts.renderer='canvas'] 'canvas' or 'svg' + * @param {number} [opts.devicePixelRatio] + * @param {number|string} [opts.width] Can be 'auto' (the same as null/undefined) + * @param {number|string} [opts.height] Can be 'auto' (the same as null/undefined) + * @return {module:zrender/ZRender} + */ +function init$1(dom, opts) { + var zr = new ZRender(guid(), dom, opts); + instances$1[zr.id] = zr; + return zr; +} + +/** + * Dispose zrender instance + * @param {module:zrender/ZRender} zr + */ +function dispose$1(zr) { + if (zr) { + zr.dispose(); + } + else { + for (var key in instances$1) { + if (instances$1.hasOwnProperty(key)) { + instances$1[key].dispose(); + } + } + instances$1 = {}; + } + + return this; +} + +/** + * Get zrender instance by id + * @param {string} id zrender instance id + * @return {module:zrender/ZRender} + */ +function getInstance(id) { + return instances$1[id]; +} + +function registerPainter(name, Ctor) { + painterCtors[name] = Ctor; +} + +function delInstance(id) { + delete instances$1[id]; +} + +/** + * @module zrender/ZRender + */ +/** + * @constructor + * @alias module:zrender/ZRender + * @param {string} id + * @param {HTMLElement} dom + * @param {Object} opts + * @param {string} [opts.renderer='canvas'] 'canvas' or 'svg' + * @param {number} [opts.devicePixelRatio] + * @param {number} [opts.width] Can be 'auto' (the same as null/undefined) + * @param {number} [opts.height] Can be 'auto' (the same as null/undefined) + */ +var ZRender = function (id, dom, opts) { + + opts = opts || {}; + + /** + * @type {HTMLDomElement} + */ + this.dom = dom; + + /** + * @type {string} + */ + this.id = id; + + var self = this; + var storage = new Storage(); + + var rendererType = opts.renderer; + // TODO WebGL + if (useVML) { + if (!painterCtors.vml) { + throw new Error('You need to require \'zrender/vml/vml\' to support IE8'); + } + rendererType = 'vml'; + } + else if (!rendererType || !painterCtors[rendererType]) { + rendererType = 'canvas'; + } + var painter = new painterCtors[rendererType](dom, storage, opts, id); + + this.storage = storage; + this.painter = painter; + + var handerProxy = (!env$1.node && !env$1.worker) ? new HandlerDomProxy(painter.getViewportRoot()) : null; + this.handler = new Handler(storage, painter, handerProxy, painter.root); + + /** + * @type {module:zrender/animation/Animation} + */ + this.animation = new Animation({ + stage: { + update: bind(this.flush, this) + } + }); + this.animation.start(); + + /** + * @type {boolean} + * @private + */ + this._needsRefresh; + + // 修改 storage.delFromStorage, 每次删除元素之前删除动画 + // FIXME 有点ugly + var oldDelFromStorage = storage.delFromStorage; + var oldAddToStorage = storage.addToStorage; + + storage.delFromStorage = function (el) { + oldDelFromStorage.call(storage, el); + + el && el.removeSelfFromZr(self); + }; + + storage.addToStorage = function (el) { + oldAddToStorage.call(storage, el); + + el.addSelfToZr(self); + }; +}; + +ZRender.prototype = { + + constructor: ZRender, + /** + * 获取实例唯一标识 + * @return {string} + */ + getId: function () { + return this.id; + }, + + /** + * 添加元素 + * @param {module:zrender/Element} el + */ + add: function (el) { + this.storage.addRoot(el); + this._needsRefresh = true; + }, + + /** + * 删除元素 + * @param {module:zrender/Element} el + */ + remove: function (el) { + this.storage.delRoot(el); + this._needsRefresh = true; + }, + + /** + * Change configuration of layer + * @param {string} zLevel + * @param {Object} config + * @param {string} [config.clearColor=0] Clear color + * @param {string} [config.motionBlur=false] If enable motion blur + * @param {number} [config.lastFrameAlpha=0.7] Motion blur factor. Larger value cause longer trailer + */ + configLayer: function (zLevel, config) { + if (this.painter.configLayer) { + this.painter.configLayer(zLevel, config); + } + this._needsRefresh = true; + }, + + /** + * Set background color + * @param {string} backgroundColor + */ + setBackgroundColor: function (backgroundColor) { + if (this.painter.setBackgroundColor) { + this.painter.setBackgroundColor(backgroundColor); + } + this._needsRefresh = true; + }, + + /** + * Repaint the canvas immediately + */ + refreshImmediately: function () { + // var start = new Date(); + + // Clear needsRefresh ahead to avoid something wrong happens in refresh + // Or it will cause zrender refreshes again and again. + this._needsRefresh = this._needsRefreshHover = false; + this.painter.refresh(); + // Avoid trigger zr.refresh in Element#beforeUpdate hook + this._needsRefresh = this._needsRefreshHover = false; + + // var end = new Date(); + // var log = document.getElementById('log'); + // if (log) { + // log.innerHTML = log.innerHTML + '
    ' + (end - start); + // } + }, + + /** + * Mark and repaint the canvas in the next frame of browser + */ + refresh: function () { + this._needsRefresh = true; + }, + + /** + * Perform all refresh + */ + flush: function () { + var triggerRendered; + + if (this._needsRefresh) { + triggerRendered = true; + this.refreshImmediately(); + } + if (this._needsRefreshHover) { + triggerRendered = true; + this.refreshHoverImmediately(); + } + + triggerRendered && this.trigger('rendered'); + }, + + /** + * Add element to hover layer + * @param {module:zrender/Element} el + * @param {Object} style + */ + addHover: function (el, style) { + if (this.painter.addHover) { + var elMirror = this.painter.addHover(el, style); + this.refreshHover(); + return elMirror; + } + }, + + /** + * Add element from hover layer + * @param {module:zrender/Element} el + */ + removeHover: function (el) { + if (this.painter.removeHover) { + this.painter.removeHover(el); + this.refreshHover(); + } + }, + + /** + * Clear all hover elements in hover layer + * @param {module:zrender/Element} el + */ + clearHover: function () { + if (this.painter.clearHover) { + this.painter.clearHover(); + this.refreshHover(); + } + }, + + /** + * Refresh hover in next frame + */ + refreshHover: function () { + this._needsRefreshHover = true; + }, + + /** + * Refresh hover immediately + */ + refreshHoverImmediately: function () { + this._needsRefreshHover = false; + this.painter.refreshHover && this.painter.refreshHover(); + }, + + /** + * Resize the canvas. + * Should be invoked when container size is changed + * @param {Object} [opts] + * @param {number|string} [opts.width] Can be 'auto' (the same as null/undefined) + * @param {number|string} [opts.height] Can be 'auto' (the same as null/undefined) + */ + resize: function (opts) { + opts = opts || {}; + this.painter.resize(opts.width, opts.height); + this.handler.resize(); + }, + + /** + * Stop and clear all animation immediately + */ + clearAnimation: function () { + this.animation.clear(); + }, + + /** + * Get container width + */ + getWidth: function () { + return this.painter.getWidth(); + }, + + /** + * Get container height + */ + getHeight: function () { + return this.painter.getHeight(); + }, + + /** + * Export the canvas as Base64 URL + * @param {string} type + * @param {string} [backgroundColor='#fff'] + * @return {string} Base64 URL + */ + // toDataURL: function(type, backgroundColor) { + // return this.painter.getRenderedCanvas({ + // backgroundColor: backgroundColor + // }).toDataURL(type); + // }, + + /** + * Converting a path to image. + * It has much better performance of drawing image rather than drawing a vector path. + * @param {module:zrender/graphic/Path} e + * @param {number} width + * @param {number} height + */ + pathToImage: function (e, dpr) { + return this.painter.pathToImage(e, dpr); + }, + + /** + * Set default cursor + * @param {string} [cursorStyle='default'] 例如 crosshair + */ + setCursorStyle: function (cursorStyle) { + this.handler.setCursorStyle(cursorStyle); + }, + + /** + * Find hovered element + * @param {number} x + * @param {number} y + * @return {Object} {target, topTarget} + */ + findHover: function (x, y) { + return this.handler.findHover(x, y); + }, + + /** + * Bind event + * + * @param {string} eventName Event name + * @param {Function} eventHandler Handler function + * @param {Object} [context] Context object + */ + on: function (eventName, eventHandler, context) { + this.handler.on(eventName, eventHandler, context); + }, + + /** + * Unbind event + * @param {string} eventName Event name + * @param {Function} [eventHandler] Handler function + */ + off: function (eventName, eventHandler) { + this.handler.off(eventName, eventHandler); + }, + + /** + * Trigger event manually + * + * @param {string} eventName Event name + * @param {event=} event Event object + */ + trigger: function (eventName, event) { + this.handler.trigger(eventName, event); + }, + + + /** + * Clear all objects and the canvas. + */ + clear: function () { + this.storage.delRoot(); + this.painter.clear(); + }, + + /** + * Dispose self. + */ + dispose: function () { + this.animation.stop(); + + this.clear(); + this.storage.dispose(); + this.painter.dispose(); + this.handler.dispose(); + + this.animation = + this.storage = + this.painter = + this.handler = null; + + delInstance(this.id); + } +}; + + + +var zrender = (Object.freeze || Object)({ + version: version$1, + init: init$1, + dispose: dispose$1, + getInstance: getInstance, + registerPainter: registerPainter +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var each$2 = each$1; +var isObject$2 = isObject$1; +var isArray$1 = isArray; + +/** + * Make the name displayable. But we should + * make sure it is not duplicated with user + * specified name, so use '\0'; + */ +var DUMMY_COMPONENT_NAME_PREFIX = 'series\0'; + +/** + * If value is not array, then translate it to array. + * @param {*} value + * @return {Array} [value] or value + */ +function normalizeToArray(value) { + return value instanceof Array + ? value + : value == null + ? [] + : [value]; +} + +/** + * Sync default option between normal and emphasis like `position` and `show` + * In case some one will write code like + * label: { + * show: false, + * position: 'outside', + * fontSize: 18 + * }, + * emphasis: { + * label: { show: true } + * } + * @param {Object} opt + * @param {string} key + * @param {Array.} subOpts + */ +function defaultEmphasis(opt, key, subOpts) { + // Caution: performance sensitive. + if (opt) { + opt[key] = opt[key] || {}; + opt.emphasis = opt.emphasis || {}; + opt.emphasis[key] = opt.emphasis[key] || {}; + + // Default emphasis option from normal + for (var i = 0, len = subOpts.length; i < len; i++) { + var subOptName = subOpts[i]; + if (!opt.emphasis[key].hasOwnProperty(subOptName) + && opt[key].hasOwnProperty(subOptName) + ) { + opt.emphasis[key][subOptName] = opt[key][subOptName]; + } + } + } +} + +var TEXT_STYLE_OPTIONS = [ + 'fontStyle', 'fontWeight', 'fontSize', 'fontFamily', + 'rich', 'tag', 'color', 'textBorderColor', 'textBorderWidth', + 'width', 'height', 'lineHeight', 'align', 'verticalAlign', 'baseline', + 'shadowColor', 'shadowBlur', 'shadowOffsetX', 'shadowOffsetY', + 'textShadowColor', 'textShadowBlur', 'textShadowOffsetX', 'textShadowOffsetY', + 'backgroundColor', 'borderColor', 'borderWidth', 'borderRadius', 'padding' +]; + +// modelUtil.LABEL_OPTIONS = modelUtil.TEXT_STYLE_OPTIONS.concat([ +// 'position', 'offset', 'rotate', 'origin', 'show', 'distance', 'formatter', +// 'fontStyle', 'fontWeight', 'fontSize', 'fontFamily', +// // FIXME: deprecated, check and remove it. +// 'textStyle' +// ]); + +/** + * The method do not ensure performance. + * data could be [12, 2323, {value: 223}, [1221, 23], {value: [2, 23]}] + * This helper method retieves value from data. + * @param {string|number|Date|Array|Object} dataItem + * @return {number|string|Date|Array.} + */ +function getDataItemValue(dataItem) { + return (isObject$2(dataItem) && !isArray$1(dataItem) && !(dataItem instanceof Date)) + ? dataItem.value : dataItem; +} + +/** + * data could be [12, 2323, {value: 223}, [1221, 23], {value: [2, 23]}] + * This helper method determine if dataItem has extra option besides value + * @param {string|number|Date|Array|Object} dataItem + */ +function isDataItemOption(dataItem) { + return isObject$2(dataItem) + && !(dataItem instanceof Array); + // // markLine data can be array + // && !(dataItem[0] && isObject(dataItem[0]) && !(dataItem[0] instanceof Array)); +} + +/** + * Mapping to exists for merge. + * + * @public + * @param {Array.|Array.} exists + * @param {Object|Array.} newCptOptions + * @return {Array.} Result, like [{exist: ..., option: ...}, {}], + * index of which is the same as exists. + */ +function mappingToExists(exists, newCptOptions) { + // Mapping by the order by original option (but not order of + // new option) in merge mode. Because we should ensure + // some specified index (like xAxisIndex) is consistent with + // original option, which is easy to understand, espatially in + // media query. And in most case, merge option is used to + // update partial option but not be expected to change order. + newCptOptions = (newCptOptions || []).slice(); + + var result = map(exists || [], function (obj, index) { + return {exist: obj}; + }); + + // Mapping by id or name if specified. + each$2(newCptOptions, function (cptOption, index) { + if (!isObject$2(cptOption)) { + return; + } + + // id has highest priority. + for (var i = 0; i < result.length; i++) { + if (!result[i].option // Consider name: two map to one. + && cptOption.id != null + && result[i].exist.id === cptOption.id + '' + ) { + result[i].option = cptOption; + newCptOptions[index] = null; + return; + } + } + + for (var i = 0; i < result.length; i++) { + var exist = result[i].exist; + if (!result[i].option // Consider name: two map to one. + // Can not match when both ids exist but different. + && (exist.id == null || cptOption.id == null) + && cptOption.name != null + && !isIdInner(cptOption) + && !isIdInner(exist) + && exist.name === cptOption.name + '' + ) { + result[i].option = cptOption; + newCptOptions[index] = null; + return; + } + } + }); + + // Otherwise mapping by index. + each$2(newCptOptions, function (cptOption, index) { + if (!isObject$2(cptOption)) { + return; + } + + var i = 0; + for (; i < result.length; i++) { + var exist = result[i].exist; + if (!result[i].option + // Existing model that already has id should be able to + // mapped to (because after mapping performed model may + // be assigned with a id, whish should not affect next + // mapping), except those has inner id. + && !isIdInner(exist) + // Caution: + // Do not overwrite id. But name can be overwritten, + // because axis use name as 'show label text'. + // 'exist' always has id and name and we dont + // need to check it. + && cptOption.id == null + ) { + result[i].option = cptOption; + break; + } + } + + if (i >= result.length) { + result.push({option: cptOption}); + } + }); + + return result; +} + +/** + * Make id and name for mapping result (result of mappingToExists) + * into `keyInfo` field. + * + * @public + * @param {Array.} Result, like [{exist: ..., option: ...}, {}], + * which order is the same as exists. + * @return {Array.} The input. + */ +function makeIdAndName(mapResult) { + // We use this id to hash component models and view instances + // in echarts. id can be specified by user, or auto generated. + + // The id generation rule ensures new view instance are able + // to mapped to old instance when setOption are called in + // no-merge mode. So we generate model id by name and plus + // type in view id. + + // name can be duplicated among components, which is convenient + // to specify multi components (like series) by one name. + + // Ensure that each id is distinct. + var idMap = createHashMap(); + + each$2(mapResult, function (item, index) { + var existCpt = item.exist; + existCpt && idMap.set(existCpt.id, item); + }); + + each$2(mapResult, function (item, index) { + var opt = item.option; + + assert$1( + !opt || opt.id == null || !idMap.get(opt.id) || idMap.get(opt.id) === item, + 'id duplicates: ' + (opt && opt.id) + ); + + opt && opt.id != null && idMap.set(opt.id, item); + !item.keyInfo && (item.keyInfo = {}); + }); + + // Make name and id. + each$2(mapResult, function (item, index) { + var existCpt = item.exist; + var opt = item.option; + var keyInfo = item.keyInfo; + + if (!isObject$2(opt)) { + return; + } + + // name can be overwitten. Consider case: axis.name = '20km'. + // But id generated by name will not be changed, which affect + // only in that case: setOption with 'not merge mode' and view + // instance will be recreated, which can be accepted. + keyInfo.name = opt.name != null + ? opt.name + '' + : existCpt + ? existCpt.name + // Avoid diffferent series has the same name, + // because name may be used like in color pallet. + : DUMMY_COMPONENT_NAME_PREFIX + index; + + if (existCpt) { + keyInfo.id = existCpt.id; + } + else if (opt.id != null) { + keyInfo.id = opt.id + ''; + } + else { + // Consider this situatoin: + // optionA: [{name: 'a'}, {name: 'a'}, {..}] + // optionB [{..}, {name: 'a'}, {name: 'a'}] + // Series with the same name between optionA and optionB + // should be mapped. + var idNum = 0; + do { + keyInfo.id = '\0' + keyInfo.name + '\0' + idNum++; + } + while (idMap.get(keyInfo.id)); + } + + idMap.set(keyInfo.id, item); + }); +} + +function isNameSpecified(componentModel) { + var name = componentModel.name; + // Is specified when `indexOf` get -1 or > 0. + return !!(name && name.indexOf(DUMMY_COMPONENT_NAME_PREFIX)); +} + +/** + * @public + * @param {Object} cptOption + * @return {boolean} + */ +function isIdInner(cptOption) { + return isObject$2(cptOption) + && cptOption.id + && (cptOption.id + '').indexOf('\0_ec_\0') === 0; +} + +/** + * A helper for removing duplicate items between batchA and batchB, + * and in themselves, and categorize by series. + * + * @param {Array.} batchA Like: [{seriesId: 2, dataIndex: [32, 4, 5]}, ...] + * @param {Array.} batchB Like: [{seriesId: 2, dataIndex: [32, 4, 5]}, ...] + * @return {Array., Array.>} result: [resultBatchA, resultBatchB] + */ +function compressBatches(batchA, batchB) { + var mapA = {}; + var mapB = {}; + + makeMap(batchA || [], mapA); + makeMap(batchB || [], mapB, mapA); + + return [mapToArray(mapA), mapToArray(mapB)]; + + function makeMap(sourceBatch, map$$1, otherMap) { + for (var i = 0, len = sourceBatch.length; i < len; i++) { + var seriesId = sourceBatch[i].seriesId; + var dataIndices = normalizeToArray(sourceBatch[i].dataIndex); + var otherDataIndices = otherMap && otherMap[seriesId]; + + for (var j = 0, lenj = dataIndices.length; j < lenj; j++) { + var dataIndex = dataIndices[j]; + + if (otherDataIndices && otherDataIndices[dataIndex]) { + otherDataIndices[dataIndex] = null; + } + else { + (map$$1[seriesId] || (map$$1[seriesId] = {}))[dataIndex] = 1; + } + } + } + } + + function mapToArray(map$$1, isData) { + var result = []; + for (var i in map$$1) { + if (map$$1.hasOwnProperty(i) && map$$1[i] != null) { + if (isData) { + result.push(+i); + } + else { + var dataIndices = mapToArray(map$$1[i], true); + dataIndices.length && result.push({seriesId: i, dataIndex: dataIndices}); + } + } + } + return result; + } +} + +/** + * @param {module:echarts/data/List} data + * @param {Object} payload Contains dataIndex (means rawIndex) / dataIndexInside / name + * each of which can be Array or primary type. + * @return {number|Array.} dataIndex If not found, return undefined/null. + */ +function queryDataIndex(data, payload) { + if (payload.dataIndexInside != null) { + return payload.dataIndexInside; + } + else if (payload.dataIndex != null) { + return isArray(payload.dataIndex) + ? map(payload.dataIndex, function (value) { + return data.indexOfRawIndex(value); + }) + : data.indexOfRawIndex(payload.dataIndex); + } + else if (payload.name != null) { + return isArray(payload.name) + ? map(payload.name, function (value) { + return data.indexOfName(value); + }) + : data.indexOfName(payload.name); + } +} + +/** + * Enable property storage to any host object. + * Notice: Serialization is not supported. + * + * For example: + * var inner = zrUitl.makeInner(); + * + * function some1(hostObj) { + * inner(hostObj).someProperty = 1212; + * ... + * } + * function some2() { + * var fields = inner(this); + * fields.someProperty1 = 1212; + * fields.someProperty2 = 'xx'; + * ... + * } + * + * @return {Function} + */ +function makeInner() { + // Consider different scope by es module import. + var key = '__\0ec_inner_' + innerUniqueIndex++ + '_' + Math.random().toFixed(5); + return function (hostObj) { + return hostObj[key] || (hostObj[key] = {}); + }; +} +var innerUniqueIndex = 0; + +/** + * @param {module:echarts/model/Global} ecModel + * @param {string|Object} finder + * If string, e.g., 'geo', means {geoIndex: 0}. + * If Object, could contain some of these properties below: + * { + * seriesIndex, seriesId, seriesName, + * geoIndex, geoId, geoName, + * bmapIndex, bmapId, bmapName, + * xAxisIndex, xAxisId, xAxisName, + * yAxisIndex, yAxisId, yAxisName, + * gridIndex, gridId, gridName, + * ... (can be extended) + * } + * Each properties can be number|string|Array.|Array. + * For example, a finder could be + * { + * seriesIndex: 3, + * geoId: ['aa', 'cc'], + * gridName: ['xx', 'rr'] + * } + * xxxIndex can be set as 'all' (means all xxx) or 'none' (means not specify) + * If nothing or null/undefined specified, return nothing. + * @param {Object} [opt] + * @param {string} [opt.defaultMainType] + * @param {Array.} [opt.includeMainTypes] + * @return {Object} result like: + * { + * seriesModels: [seriesModel1, seriesModel2], + * seriesModel: seriesModel1, // The first model + * geoModels: [geoModel1, geoModel2], + * geoModel: geoModel1, // The first model + * ... + * } + */ +function parseFinder(ecModel, finder, opt) { + if (isString(finder)) { + var obj = {}; + obj[finder + 'Index'] = 0; + finder = obj; + } + + var defaultMainType = opt && opt.defaultMainType; + if (defaultMainType + && !has(finder, defaultMainType + 'Index') + && !has(finder, defaultMainType + 'Id') + && !has(finder, defaultMainType + 'Name') + ) { + finder[defaultMainType + 'Index'] = 0; + } + + var result = {}; + + each$2(finder, function (value, key) { + var value = finder[key]; + + // Exclude 'dataIndex' and other illgal keys. + if (key === 'dataIndex' || key === 'dataIndexInside') { + result[key] = value; + return; + } + + var parsedKey = key.match(/^(\w+)(Index|Id|Name)$/) || []; + var mainType = parsedKey[1]; + var queryType = (parsedKey[2] || '').toLowerCase(); + + if (!mainType + || !queryType + || value == null + || (queryType === 'index' && value === 'none') + || (opt && opt.includeMainTypes && indexOf(opt.includeMainTypes, mainType) < 0) + ) { + return; + } + + var queryParam = {mainType: mainType}; + if (queryType !== 'index' || value !== 'all') { + queryParam[queryType] = value; + } + + var models = ecModel.queryComponents(queryParam); + result[mainType + 'Models'] = models; + result[mainType + 'Model'] = models[0]; + }); + + return result; +} + +function has(obj, prop) { + return obj && obj.hasOwnProperty(prop); +} + +function setAttribute(dom, key, value) { + dom.setAttribute + ? dom.setAttribute(key, value) + : (dom[key] = value); +} + +function getAttribute(dom, key) { + return dom.getAttribute + ? dom.getAttribute(key) + : dom[key]; +} + +function getTooltipRenderMode(renderModeOption) { + if (renderModeOption === 'auto') { + // Using html when `document` exists, use richText otherwise + return env$1.domSupported ? 'html' : 'richText'; + } + else { + return renderModeOption || 'html'; + } +} + +/** + * Group a list by key. + * + * @param {Array} array + * @param {Function} getKey + * param {*} Array item + * return {string} key + * @return {Object} Result + * {Array}: keys, + * {module:zrender/core/util/HashMap} buckets: {key -> Array} + */ +function groupData(array, getKey) { + var buckets = createHashMap(); + var keys = []; + + each$1(array, function (item) { + var key = getKey(item); + (buckets.get(key) + || (keys.push(key), buckets.set(key, [])) + ).push(item); + }); + + return {keys: keys, buckets: buckets}; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var TYPE_DELIMITER = '.'; +var IS_CONTAINER = '___EC__COMPONENT__CONTAINER___'; + +/** + * Notice, parseClassType('') should returns {main: '', sub: ''} + * @public + */ +function parseClassType$1(componentType) { + var ret = {main: '', sub: ''}; + if (componentType) { + componentType = componentType.split(TYPE_DELIMITER); + ret.main = componentType[0] || ''; + ret.sub = componentType[1] || ''; + } + return ret; +} + +/** + * @public + */ +function checkClassType(componentType) { + assert$1( + /^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(componentType), + 'componentType "' + componentType + '" illegal' + ); +} + +/** + * @public + */ +function enableClassExtend(RootClass, mandatoryMethods) { + + RootClass.$constructor = RootClass; + RootClass.extend = function (proto) { + + if (__DEV__) { + each$1(mandatoryMethods, function (method) { + if (!proto[method]) { + console.warn( + 'Method `' + method + '` should be implemented' + + (proto.type ? ' in ' + proto.type : '') + '.' + ); + } + }); + } + + var superClass = this; + var ExtendedClass = function () { + if (!proto.$constructor) { + superClass.apply(this, arguments); + } + else { + proto.$constructor.apply(this, arguments); + } + }; + + extend(ExtendedClass.prototype, proto); + + ExtendedClass.extend = this.extend; + ExtendedClass.superCall = superCall; + ExtendedClass.superApply = superApply; + inherits(ExtendedClass, this); + ExtendedClass.superClass = superClass; + + return ExtendedClass; + }; +} + +var classBase = 0; + +/** + * Can not use instanceof, consider different scope by + * cross domain or es module import in ec extensions. + * Mount a method "isInstance()" to Clz. + */ +function enableClassCheck(Clz) { + var classAttr = ['__\0is_clz', classBase++, Math.random().toFixed(3)].join('_'); + Clz.prototype[classAttr] = true; + + if (__DEV__) { + assert$1(!Clz.isInstance, 'The method "is" can not be defined.'); + } + + Clz.isInstance = function (obj) { + return !!(obj && obj[classAttr]); + }; +} + +// superCall should have class info, which can not be fetch from 'this'. +// Consider this case: +// class A has method f, +// class B inherits class A, overrides method f, f call superApply('f'), +// class C inherits class B, do not overrides method f, +// then when method of class C is called, dead loop occured. +function superCall(context, methodName) { + var args = slice(arguments, 2); + return this.superClass.prototype[methodName].apply(context, args); +} + +function superApply(context, methodName, args) { + return this.superClass.prototype[methodName].apply(context, args); +} + +/** + * @param {Object} entity + * @param {Object} options + * @param {boolean} [options.registerWhenExtend] + * @public + */ +function enableClassManagement(entity, options) { + options = options || {}; + + /** + * Component model classes + * key: componentType, + * value: + * componentClass, when componentType is 'xxx' + * or Object., when componentType is 'xxx.yy' + * @type {Object} + */ + var storage = {}; + + entity.registerClass = function (Clazz, componentType) { + if (componentType) { + checkClassType(componentType); + componentType = parseClassType$1(componentType); + + if (!componentType.sub) { + if (__DEV__) { + if (storage[componentType.main]) { + console.warn(componentType.main + ' exists.'); + } + } + storage[componentType.main] = Clazz; + } + else if (componentType.sub !== IS_CONTAINER) { + var container = makeContainer(componentType); + container[componentType.sub] = Clazz; + } + } + return Clazz; + }; + + entity.getClass = function (componentMainType, subType, throwWhenNotFound) { + var Clazz = storage[componentMainType]; + + if (Clazz && Clazz[IS_CONTAINER]) { + Clazz = subType ? Clazz[subType] : null; + } + + if (throwWhenNotFound && !Clazz) { + throw new Error( + !subType + ? componentMainType + '.' + 'type should be specified.' + : 'Component ' + componentMainType + '.' + (subType || '') + ' not exists. Load it first.' + ); + } + + return Clazz; + }; + + entity.getClassesByMainType = function (componentType) { + componentType = parseClassType$1(componentType); + + var result = []; + var obj = storage[componentType.main]; + + if (obj && obj[IS_CONTAINER]) { + each$1(obj, function (o, type) { + type !== IS_CONTAINER && result.push(o); + }); + } + else { + result.push(obj); + } + + return result; + }; + + entity.hasClass = function (componentType) { + // Just consider componentType.main. + componentType = parseClassType$1(componentType); + return !!storage[componentType.main]; + }; + + /** + * @return {Array.} Like ['aa', 'bb'], but can not be ['aa.xx'] + */ + entity.getAllClassMainTypes = function () { + var types = []; + each$1(storage, function (obj, type) { + types.push(type); + }); + return types; + }; + + /** + * If a main type is container and has sub types + * @param {string} mainType + * @return {boolean} + */ + entity.hasSubTypes = function (componentType) { + componentType = parseClassType$1(componentType); + var obj = storage[componentType.main]; + return obj && obj[IS_CONTAINER]; + }; + + entity.parseClassType = parseClassType$1; + + function makeContainer(componentType) { + var container = storage[componentType.main]; + if (!container || !container[IS_CONTAINER]) { + container = storage[componentType.main] = {}; + container[IS_CONTAINER] = true; + } + return container; + } + + if (options.registerWhenExtend) { + var originalExtend = entity.extend; + if (originalExtend) { + entity.extend = function (proto) { + var ExtendedClass = originalExtend.call(this, proto); + return entity.registerClass(ExtendedClass, proto.type); + }; + } + } + + return entity; +} + +/** + * @param {string|Array.} properties + */ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// TODO Parse shadow style +// TODO Only shallow path support +var makeStyleMapper = function (properties) { + // Normalize + for (var i = 0; i < properties.length; i++) { + if (!properties[i][1]) { + properties[i][1] = properties[i][0]; + } + } + return function (model, excludes, includes) { + var style = {}; + for (var i = 0; i < properties.length; i++) { + var propName = properties[i][1]; + if ((excludes && indexOf(excludes, propName) >= 0) + || (includes && indexOf(includes, propName) < 0) + ) { + continue; + } + var val = model.getShallow(propName); + if (val != null) { + style[properties[i][0]] = val; + } + } + return style; + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var getLineStyle = makeStyleMapper( + [ + ['lineWidth', 'width'], + ['stroke', 'color'], + ['opacity'], + ['shadowBlur'], + ['shadowOffsetX'], + ['shadowOffsetY'], + ['shadowColor'] + ] +); + +var lineStyleMixin = { + getLineStyle: function (excludes) { + var style = getLineStyle(this, excludes); + // Always set lineDash whether dashed, otherwise we can not + // erase the previous style when assigning to el.style. + style.lineDash = this.getLineDash(style.lineWidth); + return style; + }, + + getLineDash: function (lineWidth) { + if (lineWidth == null) { + lineWidth = 1; + } + var lineType = this.get('type'); + var dotSize = Math.max(lineWidth, 2); + var dashSize = lineWidth * 4; + return (lineType === 'solid' || lineType == null) + // Use `false` but not `null` for the solid line here, because `null` might be + // ignored when assigning to `el.style`. e.g., when setting `lineStyle.type` as + // `'dashed'` and `emphasis.lineStyle.type` as `'solid'` in graph series, the + // `lineDash` gotten form the latter one is not able to erase that from the former + // one if using `null` here according to the emhpsis strategy in `util/graphic.js`. + ? false + : lineType === 'dashed' + ? [dashSize, dashSize] + : [dotSize, dotSize]; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var getAreaStyle = makeStyleMapper( + [ + ['fill', 'color'], + ['shadowBlur'], + ['shadowOffsetX'], + ['shadowOffsetY'], + ['opacity'], + ['shadowColor'] + ] +); + +var areaStyleMixin = { + getAreaStyle: function (excludes, includes) { + return getAreaStyle(this, excludes, includes); + } +}; + +/** + * 曲线辅助模块 + * @module zrender/core/curve + * @author pissang(https://www.github.com/pissang) + */ + +var mathPow = Math.pow; +var mathSqrt$2 = Math.sqrt; + +var EPSILON$1 = 1e-8; +var EPSILON_NUMERIC = 1e-4; + +var THREE_SQRT = mathSqrt$2(3); +var ONE_THIRD = 1 / 3; + +// 临时变量 +var _v0 = create(); +var _v1 = create(); +var _v2 = create(); + +function isAroundZero(val) { + return val > -EPSILON$1 && val < EPSILON$1; +} +function isNotAroundZero$1(val) { + return val > EPSILON$1 || val < -EPSILON$1; +} +/** + * 计算三次贝塞尔值 + * @memberOf module:zrender/core/curve + * @param {number} p0 + * @param {number} p1 + * @param {number} p2 + * @param {number} p3 + * @param {number} t + * @return {number} + */ +function cubicAt(p0, p1, p2, p3, t) { + var onet = 1 - t; + return onet * onet * (onet * p0 + 3 * t * p1) + + t * t * (t * p3 + 3 * onet * p2); +} + +/** + * 计算三次贝塞尔导数值 + * @memberOf module:zrender/core/curve + * @param {number} p0 + * @param {number} p1 + * @param {number} p2 + * @param {number} p3 + * @param {number} t + * @return {number} + */ +function cubicDerivativeAt(p0, p1, p2, p3, t) { + var onet = 1 - t; + return 3 * ( + ((p1 - p0) * onet + 2 * (p2 - p1) * t) * onet + + (p3 - p2) * t * t + ); +} + +/** + * 计算三次贝塞尔方程根,使用盛金公式 + * @memberOf module:zrender/core/curve + * @param {number} p0 + * @param {number} p1 + * @param {number} p2 + * @param {number} p3 + * @param {number} val + * @param {Array.} roots + * @return {number} 有效根数目 + */ +function cubicRootAt(p0, p1, p2, p3, val, roots) { + // Evaluate roots of cubic functions + var a = p3 + 3 * (p1 - p2) - p0; + var b = 3 * (p2 - p1 * 2 + p0); + var c = 3 * (p1 - p0); + var d = p0 - val; + + var A = b * b - 3 * a * c; + var B = b * c - 9 * a * d; + var C = c * c - 3 * b * d; + + var n = 0; + + if (isAroundZero(A) && isAroundZero(B)) { + if (isAroundZero(b)) { + roots[0] = 0; + } + else { + var t1 = -c / b; //t1, t2, t3, b is not zero + if (t1 >= 0 && t1 <= 1) { + roots[n++] = t1; + } + } + } + else { + var disc = B * B - 4 * A * C; + + if (isAroundZero(disc)) { + var K = B / A; + var t1 = -b / a + K; // t1, a is not zero + var t2 = -K / 2; // t2, t3 + if (t1 >= 0 && t1 <= 1) { + roots[n++] = t1; + } + if (t2 >= 0 && t2 <= 1) { + roots[n++] = t2; + } + } + else if (disc > 0) { + var discSqrt = mathSqrt$2(disc); + var Y1 = A * b + 1.5 * a * (-B + discSqrt); + var Y2 = A * b + 1.5 * a * (-B - discSqrt); + if (Y1 < 0) { + Y1 = -mathPow(-Y1, ONE_THIRD); + } + else { + Y1 = mathPow(Y1, ONE_THIRD); + } + if (Y2 < 0) { + Y2 = -mathPow(-Y2, ONE_THIRD); + } + else { + Y2 = mathPow(Y2, ONE_THIRD); + } + var t1 = (-b - (Y1 + Y2)) / (3 * a); + if (t1 >= 0 && t1 <= 1) { + roots[n++] = t1; + } + } + else { + var T = (2 * A * b - 3 * a * B) / (2 * mathSqrt$2(A * A * A)); + var theta = Math.acos(T) / 3; + var ASqrt = mathSqrt$2(A); + var tmp = Math.cos(theta); + + var t1 = (-b - 2 * ASqrt * tmp) / (3 * a); + var t2 = (-b + ASqrt * (tmp + THREE_SQRT * Math.sin(theta))) / (3 * a); + var t3 = (-b + ASqrt * (tmp - THREE_SQRT * Math.sin(theta))) / (3 * a); + if (t1 >= 0 && t1 <= 1) { + roots[n++] = t1; + } + if (t2 >= 0 && t2 <= 1) { + roots[n++] = t2; + } + if (t3 >= 0 && t3 <= 1) { + roots[n++] = t3; + } + } + } + return n; +} + +/** + * 计算三次贝塞尔方程极限值的位置 + * @memberOf module:zrender/core/curve + * @param {number} p0 + * @param {number} p1 + * @param {number} p2 + * @param {number} p3 + * @param {Array.} extrema + * @return {number} 有效数目 + */ +function cubicExtrema(p0, p1, p2, p3, extrema) { + var b = 6 * p2 - 12 * p1 + 6 * p0; + var a = 9 * p1 + 3 * p3 - 3 * p0 - 9 * p2; + var c = 3 * p1 - 3 * p0; + + var n = 0; + if (isAroundZero(a)) { + if (isNotAroundZero$1(b)) { + var t1 = -c / b; + if (t1 >= 0 && t1 <= 1) { + extrema[n++] = t1; + } + } + } + else { + var disc = b * b - 4 * a * c; + if (isAroundZero(disc)) { + extrema[0] = -b / (2 * a); + } + else if (disc > 0) { + var discSqrt = mathSqrt$2(disc); + var t1 = (-b + discSqrt) / (2 * a); + var t2 = (-b - discSqrt) / (2 * a); + if (t1 >= 0 && t1 <= 1) { + extrema[n++] = t1; + } + if (t2 >= 0 && t2 <= 1) { + extrema[n++] = t2; + } + } + } + return n; +} + +/** + * 细分三次贝塞尔曲线 + * @memberOf module:zrender/core/curve + * @param {number} p0 + * @param {number} p1 + * @param {number} p2 + * @param {number} p3 + * @param {number} t + * @param {Array.} out + */ +function cubicSubdivide(p0, p1, p2, p3, t, out) { + var p01 = (p1 - p0) * t + p0; + var p12 = (p2 - p1) * t + p1; + var p23 = (p3 - p2) * t + p2; + + var p012 = (p12 - p01) * t + p01; + var p123 = (p23 - p12) * t + p12; + + var p0123 = (p123 - p012) * t + p012; + // Seg0 + out[0] = p0; + out[1] = p01; + out[2] = p012; + out[3] = p0123; + // Seg1 + out[4] = p0123; + out[5] = p123; + out[6] = p23; + out[7] = p3; +} + +/** + * 投射点到三次贝塞尔曲线上,返回投射距离。 + * 投射点有可能会有一个或者多个,这里只返回其中距离最短的一个。 + * @param {number} x0 + * @param {number} y0 + * @param {number} x1 + * @param {number} y1 + * @param {number} x2 + * @param {number} y2 + * @param {number} x3 + * @param {number} y3 + * @param {number} x + * @param {number} y + * @param {Array.} [out] 投射点 + * @return {number} + */ +function cubicProjectPoint( + x0, y0, x1, y1, x2, y2, x3, y3, + x, y, out +) { + // http://pomax.github.io/bezierinfo/#projections + var t; + var interval = 0.005; + var d = Infinity; + var prev; + var next; + var d1; + var d2; + + _v0[0] = x; + _v0[1] = y; + + // 先粗略估计一下可能的最小距离的 t 值 + // PENDING + for (var _t = 0; _t < 1; _t += 0.05) { + _v1[0] = cubicAt(x0, x1, x2, x3, _t); + _v1[1] = cubicAt(y0, y1, y2, y3, _t); + d1 = distSquare(_v0, _v1); + if (d1 < d) { + t = _t; + d = d1; + } + } + d = Infinity; + + // At most 32 iteration + for (var i = 0; i < 32; i++) { + if (interval < EPSILON_NUMERIC) { + break; + } + prev = t - interval; + next = t + interval; + // t - interval + _v1[0] = cubicAt(x0, x1, x2, x3, prev); + _v1[1] = cubicAt(y0, y1, y2, y3, prev); + + d1 = distSquare(_v1, _v0); + + if (prev >= 0 && d1 < d) { + t = prev; + d = d1; + } + else { + // t + interval + _v2[0] = cubicAt(x0, x1, x2, x3, next); + _v2[1] = cubicAt(y0, y1, y2, y3, next); + d2 = distSquare(_v2, _v0); + + if (next <= 1 && d2 < d) { + t = next; + d = d2; + } + else { + interval *= 0.5; + } + } + } + // t + if (out) { + out[0] = cubicAt(x0, x1, x2, x3, t); + out[1] = cubicAt(y0, y1, y2, y3, t); + } + // console.log(interval, i); + return mathSqrt$2(d); +} + +/** + * 计算二次方贝塞尔值 + * @param {number} p0 + * @param {number} p1 + * @param {number} p2 + * @param {number} t + * @return {number} + */ +function quadraticAt(p0, p1, p2, t) { + var onet = 1 - t; + return onet * (onet * p0 + 2 * t * p1) + t * t * p2; +} + +/** + * 计算二次方贝塞尔导数值 + * @param {number} p0 + * @param {number} p1 + * @param {number} p2 + * @param {number} t + * @return {number} + */ +function quadraticDerivativeAt(p0, p1, p2, t) { + return 2 * ((1 - t) * (p1 - p0) + t * (p2 - p1)); +} + +/** + * 计算二次方贝塞尔方程根 + * @param {number} p0 + * @param {number} p1 + * @param {number} p2 + * @param {number} t + * @param {Array.} roots + * @return {number} 有效根数目 + */ +function quadraticRootAt(p0, p1, p2, val, roots) { + var a = p0 - 2 * p1 + p2; + var b = 2 * (p1 - p0); + var c = p0 - val; + + var n = 0; + if (isAroundZero(a)) { + if (isNotAroundZero$1(b)) { + var t1 = -c / b; + if (t1 >= 0 && t1 <= 1) { + roots[n++] = t1; + } + } + } + else { + var disc = b * b - 4 * a * c; + if (isAroundZero(disc)) { + var t1 = -b / (2 * a); + if (t1 >= 0 && t1 <= 1) { + roots[n++] = t1; + } + } + else if (disc > 0) { + var discSqrt = mathSqrt$2(disc); + var t1 = (-b + discSqrt) / (2 * a); + var t2 = (-b - discSqrt) / (2 * a); + if (t1 >= 0 && t1 <= 1) { + roots[n++] = t1; + } + if (t2 >= 0 && t2 <= 1) { + roots[n++] = t2; + } + } + } + return n; +} + +/** + * 计算二次贝塞尔方程极限值 + * @memberOf module:zrender/core/curve + * @param {number} p0 + * @param {number} p1 + * @param {number} p2 + * @return {number} + */ +function quadraticExtremum(p0, p1, p2) { + var divider = p0 + p2 - 2 * p1; + if (divider === 0) { + // p1 is center of p0 and p2 + return 0.5; + } + else { + return (p0 - p1) / divider; + } +} + +/** + * 细分二次贝塞尔曲线 + * @memberOf module:zrender/core/curve + * @param {number} p0 + * @param {number} p1 + * @param {number} p2 + * @param {number} t + * @param {Array.} out + */ +function quadraticSubdivide(p0, p1, p2, t, out) { + var p01 = (p1 - p0) * t + p0; + var p12 = (p2 - p1) * t + p1; + var p012 = (p12 - p01) * t + p01; + + // Seg0 + out[0] = p0; + out[1] = p01; + out[2] = p012; + + // Seg1 + out[3] = p012; + out[4] = p12; + out[5] = p2; +} + +/** + * 投射点到二次贝塞尔曲线上,返回投射距离。 + * 投射点有可能会有一个或者多个,这里只返回其中距离最短的一个。 + * @param {number} x0 + * @param {number} y0 + * @param {number} x1 + * @param {number} y1 + * @param {number} x2 + * @param {number} y2 + * @param {number} x + * @param {number} y + * @param {Array.} out 投射点 + * @return {number} + */ +function quadraticProjectPoint( + x0, y0, x1, y1, x2, y2, + x, y, out +) { + // http://pomax.github.io/bezierinfo/#projections + var t; + var interval = 0.005; + var d = Infinity; + + _v0[0] = x; + _v0[1] = y; + + // 先粗略估计一下可能的最小距离的 t 值 + // PENDING + for (var _t = 0; _t < 1; _t += 0.05) { + _v1[0] = quadraticAt(x0, x1, x2, _t); + _v1[1] = quadraticAt(y0, y1, y2, _t); + var d1 = distSquare(_v0, _v1); + if (d1 < d) { + t = _t; + d = d1; + } + } + d = Infinity; + + // At most 32 iteration + for (var i = 0; i < 32; i++) { + if (interval < EPSILON_NUMERIC) { + break; + } + var prev = t - interval; + var next = t + interval; + // t - interval + _v1[0] = quadraticAt(x0, x1, x2, prev); + _v1[1] = quadraticAt(y0, y1, y2, prev); + + var d1 = distSquare(_v1, _v0); + + if (prev >= 0 && d1 < d) { + t = prev; + d = d1; + } + else { + // t + interval + _v2[0] = quadraticAt(x0, x1, x2, next); + _v2[1] = quadraticAt(y0, y1, y2, next); + var d2 = distSquare(_v2, _v0); + if (next <= 1 && d2 < d) { + t = next; + d = d2; + } + else { + interval *= 0.5; + } + } + } + // t + if (out) { + out[0] = quadraticAt(x0, x1, x2, t); + out[1] = quadraticAt(y0, y1, y2, t); + } + // console.log(interval, i); + return mathSqrt$2(d); +} + +/** + * @author Yi Shen(https://github.com/pissang) + */ + +var mathMin$3 = Math.min; +var mathMax$3 = Math.max; +var mathSin$2 = Math.sin; +var mathCos$2 = Math.cos; +var PI2 = Math.PI * 2; + +var start = create(); +var end = create(); +var extremity = create(); + +/** + * 从顶点数组中计算出最小包围盒,写入`min`和`max`中 + * @module zrender/core/bbox + * @param {Array} points 顶点数组 + * @param {number} min + * @param {number} max + */ +function fromPoints(points, min$$1, max$$1) { + if (points.length === 0) { + return; + } + var p = points[0]; + var left = p[0]; + var right = p[0]; + var top = p[1]; + var bottom = p[1]; + var i; + + for (i = 1; i < points.length; i++) { + p = points[i]; + left = mathMin$3(left, p[0]); + right = mathMax$3(right, p[0]); + top = mathMin$3(top, p[1]); + bottom = mathMax$3(bottom, p[1]); + } + + min$$1[0] = left; + min$$1[1] = top; + max$$1[0] = right; + max$$1[1] = bottom; +} + +/** + * @memberOf module:zrender/core/bbox + * @param {number} x0 + * @param {number} y0 + * @param {number} x1 + * @param {number} y1 + * @param {Array.} min + * @param {Array.} max + */ +function fromLine(x0, y0, x1, y1, min$$1, max$$1) { + min$$1[0] = mathMin$3(x0, x1); + min$$1[1] = mathMin$3(y0, y1); + max$$1[0] = mathMax$3(x0, x1); + max$$1[1] = mathMax$3(y0, y1); +} + +var xDim = []; +var yDim = []; +/** + * 从三阶贝塞尔曲线(p0, p1, p2, p3)中计算出最小包围盒,写入`min`和`max`中 + * @memberOf module:zrender/core/bbox + * @param {number} x0 + * @param {number} y0 + * @param {number} x1 + * @param {number} y1 + * @param {number} x2 + * @param {number} y2 + * @param {number} x3 + * @param {number} y3 + * @param {Array.} min + * @param {Array.} max + */ +function fromCubic( + x0, y0, x1, y1, x2, y2, x3, y3, min$$1, max$$1 +) { + var cubicExtrema$$1 = cubicExtrema; + var cubicAt$$1 = cubicAt; + var i; + var n = cubicExtrema$$1(x0, x1, x2, x3, xDim); + min$$1[0] = Infinity; + min$$1[1] = Infinity; + max$$1[0] = -Infinity; + max$$1[1] = -Infinity; + + for (i = 0; i < n; i++) { + var x = cubicAt$$1(x0, x1, x2, x3, xDim[i]); + min$$1[0] = mathMin$3(x, min$$1[0]); + max$$1[0] = mathMax$3(x, max$$1[0]); + } + n = cubicExtrema$$1(y0, y1, y2, y3, yDim); + for (i = 0; i < n; i++) { + var y = cubicAt$$1(y0, y1, y2, y3, yDim[i]); + min$$1[1] = mathMin$3(y, min$$1[1]); + max$$1[1] = mathMax$3(y, max$$1[1]); + } + + min$$1[0] = mathMin$3(x0, min$$1[0]); + max$$1[0] = mathMax$3(x0, max$$1[0]); + min$$1[0] = mathMin$3(x3, min$$1[0]); + max$$1[0] = mathMax$3(x3, max$$1[0]); + + min$$1[1] = mathMin$3(y0, min$$1[1]); + max$$1[1] = mathMax$3(y0, max$$1[1]); + min$$1[1] = mathMin$3(y3, min$$1[1]); + max$$1[1] = mathMax$3(y3, max$$1[1]); +} + +/** + * 从二阶贝塞尔曲线(p0, p1, p2)中计算出最小包围盒,写入`min`和`max`中 + * @memberOf module:zrender/core/bbox + * @param {number} x0 + * @param {number} y0 + * @param {number} x1 + * @param {number} y1 + * @param {number} x2 + * @param {number} y2 + * @param {Array.} min + * @param {Array.} max + */ +function fromQuadratic(x0, y0, x1, y1, x2, y2, min$$1, max$$1) { + var quadraticExtremum$$1 = quadraticExtremum; + var quadraticAt$$1 = quadraticAt; + // Find extremities, where derivative in x dim or y dim is zero + var tx = + mathMax$3( + mathMin$3(quadraticExtremum$$1(x0, x1, x2), 1), 0 + ); + var ty = + mathMax$3( + mathMin$3(quadraticExtremum$$1(y0, y1, y2), 1), 0 + ); + + var x = quadraticAt$$1(x0, x1, x2, tx); + var y = quadraticAt$$1(y0, y1, y2, ty); + + min$$1[0] = mathMin$3(x0, x2, x); + min$$1[1] = mathMin$3(y0, y2, y); + max$$1[0] = mathMax$3(x0, x2, x); + max$$1[1] = mathMax$3(y0, y2, y); +} + +/** + * 从圆弧中计算出最小包围盒,写入`min`和`max`中 + * @method + * @memberOf module:zrender/core/bbox + * @param {number} x + * @param {number} y + * @param {number} rx + * @param {number} ry + * @param {number} startAngle + * @param {number} endAngle + * @param {number} anticlockwise + * @param {Array.} min + * @param {Array.} max + */ +function fromArc( + x, y, rx, ry, startAngle, endAngle, anticlockwise, min$$1, max$$1 +) { + var vec2Min = min; + var vec2Max = max; + + var diff = Math.abs(startAngle - endAngle); + + + if (diff % PI2 < 1e-4 && diff > 1e-4) { + // Is a circle + min$$1[0] = x - rx; + min$$1[1] = y - ry; + max$$1[0] = x + rx; + max$$1[1] = y + ry; + return; + } + + start[0] = mathCos$2(startAngle) * rx + x; + start[1] = mathSin$2(startAngle) * ry + y; + + end[0] = mathCos$2(endAngle) * rx + x; + end[1] = mathSin$2(endAngle) * ry + y; + + vec2Min(min$$1, start, end); + vec2Max(max$$1, start, end); + + // Thresh to [0, Math.PI * 2] + startAngle = startAngle % (PI2); + if (startAngle < 0) { + startAngle = startAngle + PI2; + } + endAngle = endAngle % (PI2); + if (endAngle < 0) { + endAngle = endAngle + PI2; + } + + if (startAngle > endAngle && !anticlockwise) { + endAngle += PI2; + } + else if (startAngle < endAngle && anticlockwise) { + startAngle += PI2; + } + if (anticlockwise) { + var tmp = endAngle; + endAngle = startAngle; + startAngle = tmp; + } + + // var number = 0; + // var step = (anticlockwise ? -Math.PI : Math.PI) / 2; + for (var angle = 0; angle < endAngle; angle += Math.PI / 2) { + if (angle > startAngle) { + extremity[0] = mathCos$2(angle) * rx + x; + extremity[1] = mathSin$2(angle) * ry + y; + + vec2Min(min$$1, extremity, min$$1); + vec2Max(max$$1, extremity, max$$1); + } + } +} + +/** + * Path 代理,可以在`buildPath`中用于替代`ctx`, 会保存每个path操作的命令到pathCommands属性中 + * 可以用于 isInsidePath 判断以及获取boundingRect + * + * @module zrender/core/PathProxy + * @author Yi Shen (http://www.github.com/pissang) + */ + +// TODO getTotalLength, getPointAtLength + +var CMD = { + M: 1, + L: 2, + C: 3, + Q: 4, + A: 5, + Z: 6, + // Rect + R: 7 +}; + +// var CMD_MEM_SIZE = { +// M: 3, +// L: 3, +// C: 7, +// Q: 5, +// A: 9, +// R: 5, +// Z: 1 +// }; + +var min$1 = []; +var max$1 = []; +var min2 = []; +var max2 = []; +var mathMin$2 = Math.min; +var mathMax$2 = Math.max; +var mathCos$1 = Math.cos; +var mathSin$1 = Math.sin; +var mathSqrt$1 = Math.sqrt; +var mathAbs = Math.abs; + +var hasTypedArray = typeof Float32Array !== 'undefined'; + +/** + * @alias module:zrender/core/PathProxy + * @constructor + */ +var PathProxy = function (notSaveData) { + + this._saveData = !(notSaveData || false); + + if (this._saveData) { + /** + * Path data. Stored as flat array + * @type {Array.} + */ + this.data = []; + } + + this._ctx = null; +}; + +/** + * 快速计算Path包围盒(并不是最小包围盒) + * @return {Object} + */ +PathProxy.prototype = { + + constructor: PathProxy, + + _xi: 0, + _yi: 0, + + _x0: 0, + _y0: 0, + // Unit x, Unit y. Provide for avoiding drawing that too short line segment + _ux: 0, + _uy: 0, + + _len: 0, + + _lineDash: null, + + _dashOffset: 0, + + _dashIdx: 0, + + _dashSum: 0, + + /** + * @readOnly + */ + setScale: function (sx, sy, segmentIgnoreThreshold) { + // Compat. Previously there is no segmentIgnoreThreshold. + segmentIgnoreThreshold = segmentIgnoreThreshold || 0; + this._ux = mathAbs(segmentIgnoreThreshold / devicePixelRatio / sx) || 0; + this._uy = mathAbs(segmentIgnoreThreshold / devicePixelRatio / sy) || 0; + }, + + getContext: function () { + return this._ctx; + }, + + /** + * @param {CanvasRenderingContext2D} ctx + * @return {module:zrender/core/PathProxy} + */ + beginPath: function (ctx) { + + this._ctx = ctx; + + ctx && ctx.beginPath(); + + ctx && (this.dpr = ctx.dpr); + + // Reset + if (this._saveData) { + this._len = 0; + } + + if (this._lineDash) { + this._lineDash = null; + + this._dashOffset = 0; + } + + return this; + }, + + /** + * @param {number} x + * @param {number} y + * @return {module:zrender/core/PathProxy} + */ + moveTo: function (x, y) { + this.addData(CMD.M, x, y); + this._ctx && this._ctx.moveTo(x, y); + + // x0, y0, xi, yi 是记录在 _dashedXXXXTo 方法中使用 + // xi, yi 记录当前点, x0, y0 在 closePath 的时候回到起始点。 + // 有可能在 beginPath 之后直接调用 lineTo,这时候 x0, y0 需要 + // 在 lineTo 方法中记录,这里先不考虑这种情况,dashed line 也只在 IE10- 中不支持 + this._x0 = x; + this._y0 = y; + + this._xi = x; + this._yi = y; + + return this; + }, + + /** + * @param {number} x + * @param {number} y + * @return {module:zrender/core/PathProxy} + */ + lineTo: function (x, y) { + var exceedUnit = mathAbs(x - this._xi) > this._ux + || mathAbs(y - this._yi) > this._uy + // Force draw the first segment + || this._len < 5; + + this.addData(CMD.L, x, y); + + if (this._ctx && exceedUnit) { + this._needsDash() ? this._dashedLineTo(x, y) + : this._ctx.lineTo(x, y); + } + if (exceedUnit) { + this._xi = x; + this._yi = y; + } + + return this; + }, + + /** + * @param {number} x1 + * @param {number} y1 + * @param {number} x2 + * @param {number} y2 + * @param {number} x3 + * @param {number} y3 + * @return {module:zrender/core/PathProxy} + */ + bezierCurveTo: function (x1, y1, x2, y2, x3, y3) { + this.addData(CMD.C, x1, y1, x2, y2, x3, y3); + if (this._ctx) { + this._needsDash() ? this._dashedBezierTo(x1, y1, x2, y2, x3, y3) + : this._ctx.bezierCurveTo(x1, y1, x2, y2, x3, y3); + } + this._xi = x3; + this._yi = y3; + return this; + }, + + /** + * @param {number} x1 + * @param {number} y1 + * @param {number} x2 + * @param {number} y2 + * @return {module:zrender/core/PathProxy} + */ + quadraticCurveTo: function (x1, y1, x2, y2) { + this.addData(CMD.Q, x1, y1, x2, y2); + if (this._ctx) { + this._needsDash() ? this._dashedQuadraticTo(x1, y1, x2, y2) + : this._ctx.quadraticCurveTo(x1, y1, x2, y2); + } + this._xi = x2; + this._yi = y2; + return this; + }, + + /** + * @param {number} cx + * @param {number} cy + * @param {number} r + * @param {number} startAngle + * @param {number} endAngle + * @param {boolean} anticlockwise + * @return {module:zrender/core/PathProxy} + */ + arc: function (cx, cy, r, startAngle, endAngle, anticlockwise) { + this.addData( + CMD.A, cx, cy, r, r, startAngle, endAngle - startAngle, 0, anticlockwise ? 0 : 1 + ); + this._ctx && this._ctx.arc(cx, cy, r, startAngle, endAngle, anticlockwise); + + this._xi = mathCos$1(endAngle) * r + cx; + this._yi = mathSin$1(endAngle) * r + cy; + return this; + }, + + // TODO + arcTo: function (x1, y1, x2, y2, radius) { + if (this._ctx) { + this._ctx.arcTo(x1, y1, x2, y2, radius); + } + return this; + }, + + // TODO + rect: function (x, y, w, h) { + this._ctx && this._ctx.rect(x, y, w, h); + this.addData(CMD.R, x, y, w, h); + return this; + }, + + /** + * @return {module:zrender/core/PathProxy} + */ + closePath: function () { + this.addData(CMD.Z); + + var ctx = this._ctx; + var x0 = this._x0; + var y0 = this._y0; + if (ctx) { + this._needsDash() && this._dashedLineTo(x0, y0); + ctx.closePath(); + } + + this._xi = x0; + this._yi = y0; + return this; + }, + + /** + * Context 从外部传入,因为有可能是 rebuildPath 完之后再 fill。 + * stroke 同样 + * @param {CanvasRenderingContext2D} ctx + * @return {module:zrender/core/PathProxy} + */ + fill: function (ctx) { + ctx && ctx.fill(); + this.toStatic(); + }, + + /** + * @param {CanvasRenderingContext2D} ctx + * @return {module:zrender/core/PathProxy} + */ + stroke: function (ctx) { + ctx && ctx.stroke(); + this.toStatic(); + }, + + /** + * 必须在其它绘制命令前调用 + * Must be invoked before all other path drawing methods + * @return {module:zrender/core/PathProxy} + */ + setLineDash: function (lineDash) { + if (lineDash instanceof Array) { + this._lineDash = lineDash; + + this._dashIdx = 0; + + var lineDashSum = 0; + for (var i = 0; i < lineDash.length; i++) { + lineDashSum += lineDash[i]; + } + this._dashSum = lineDashSum; + } + return this; + }, + + /** + * 必须在其它绘制命令前调用 + * Must be invoked before all other path drawing methods + * @return {module:zrender/core/PathProxy} + */ + setLineDashOffset: function (offset) { + this._dashOffset = offset; + return this; + }, + + /** + * + * @return {boolean} + */ + len: function () { + return this._len; + }, + + /** + * 直接设置 Path 数据 + */ + setData: function (data) { + + var len$$1 = data.length; + + if (!(this.data && this.data.length === len$$1) && hasTypedArray) { + this.data = new Float32Array(len$$1); + } + + for (var i = 0; i < len$$1; i++) { + this.data[i] = data[i]; + } + + this._len = len$$1; + }, + + /** + * 添加子路径 + * @param {module:zrender/core/PathProxy|Array.} path + */ + appendPath: function (path) { + if (!(path instanceof Array)) { + path = [path]; + } + var len$$1 = path.length; + var appendSize = 0; + var offset = this._len; + for (var i = 0; i < len$$1; i++) { + appendSize += path[i].len(); + } + if (hasTypedArray && (this.data instanceof Float32Array)) { + this.data = new Float32Array(offset + appendSize); + } + for (var i = 0; i < len$$1; i++) { + var appendPathData = path[i].data; + for (var k = 0; k < appendPathData.length; k++) { + this.data[offset++] = appendPathData[k]; + } + } + this._len = offset; + }, + + /** + * 填充 Path 数据。 + * 尽量复用而不申明新的数组。大部分图形重绘的指令数据长度都是不变的。 + */ + addData: function (cmd) { + if (!this._saveData) { + return; + } + + var data = this.data; + if (this._len + arguments.length > data.length) { + // 因为之前的数组已经转换成静态的 Float32Array + // 所以不够用时需要扩展一个新的动态数组 + this._expandData(); + data = this.data; + } + for (var i = 0; i < arguments.length; i++) { + data[this._len++] = arguments[i]; + } + + this._prevCmd = cmd; + }, + + _expandData: function () { + // Only if data is Float32Array + if (!(this.data instanceof Array)) { + var newData = []; + for (var i = 0; i < this._len; i++) { + newData[i] = this.data[i]; + } + this.data = newData; + } + }, + + /** + * If needs js implemented dashed line + * @return {boolean} + * @private + */ + _needsDash: function () { + return this._lineDash; + }, + + _dashedLineTo: function (x1, y1) { + var dashSum = this._dashSum; + var offset = this._dashOffset; + var lineDash = this._lineDash; + var ctx = this._ctx; + + var x0 = this._xi; + var y0 = this._yi; + var dx = x1 - x0; + var dy = y1 - y0; + var dist$$1 = mathSqrt$1(dx * dx + dy * dy); + var x = x0; + var y = y0; + var dash; + var nDash = lineDash.length; + var idx; + dx /= dist$$1; + dy /= dist$$1; + + if (offset < 0) { + // Convert to positive offset + offset = dashSum + offset; + } + offset %= dashSum; + x -= offset * dx; + y -= offset * dy; + + while ((dx > 0 && x <= x1) || (dx < 0 && x >= x1) + || (dx === 0 && ((dy > 0 && y <= y1) || (dy < 0 && y >= y1)))) { + idx = this._dashIdx; + dash = lineDash[idx]; + x += dx * dash; + y += dy * dash; + this._dashIdx = (idx + 1) % nDash; + // Skip positive offset + if ((dx > 0 && x < x0) || (dx < 0 && x > x0) || (dy > 0 && y < y0) || (dy < 0 && y > y0)) { + continue; + } + ctx[idx % 2 ? 'moveTo' : 'lineTo']( + dx >= 0 ? mathMin$2(x, x1) : mathMax$2(x, x1), + dy >= 0 ? mathMin$2(y, y1) : mathMax$2(y, y1) + ); + } + // Offset for next lineTo + dx = x - x1; + dy = y - y1; + this._dashOffset = -mathSqrt$1(dx * dx + dy * dy); + }, + + // Not accurate dashed line to + _dashedBezierTo: function (x1, y1, x2, y2, x3, y3) { + var dashSum = this._dashSum; + var offset = this._dashOffset; + var lineDash = this._lineDash; + var ctx = this._ctx; + + var x0 = this._xi; + var y0 = this._yi; + var t; + var dx; + var dy; + var cubicAt$$1 = cubicAt; + var bezierLen = 0; + var idx = this._dashIdx; + var nDash = lineDash.length; + + var x; + var y; + + var tmpLen = 0; + + if (offset < 0) { + // Convert to positive offset + offset = dashSum + offset; + } + offset %= dashSum; + // Bezier approx length + for (t = 0; t < 1; t += 0.1) { + dx = cubicAt$$1(x0, x1, x2, x3, t + 0.1) + - cubicAt$$1(x0, x1, x2, x3, t); + dy = cubicAt$$1(y0, y1, y2, y3, t + 0.1) + - cubicAt$$1(y0, y1, y2, y3, t); + bezierLen += mathSqrt$1(dx * dx + dy * dy); + } + + // Find idx after add offset + for (; idx < nDash; idx++) { + tmpLen += lineDash[idx]; + if (tmpLen > offset) { + break; + } + } + t = (tmpLen - offset) / bezierLen; + + while (t <= 1) { + + x = cubicAt$$1(x0, x1, x2, x3, t); + y = cubicAt$$1(y0, y1, y2, y3, t); + + // Use line to approximate dashed bezier + // Bad result if dash is long + idx % 2 ? ctx.moveTo(x, y) + : ctx.lineTo(x, y); + + t += lineDash[idx] / bezierLen; + + idx = (idx + 1) % nDash; + } + + // Finish the last segment and calculate the new offset + (idx % 2 !== 0) && ctx.lineTo(x3, y3); + dx = x3 - x; + dy = y3 - y; + this._dashOffset = -mathSqrt$1(dx * dx + dy * dy); + }, + + _dashedQuadraticTo: function (x1, y1, x2, y2) { + // Convert quadratic to cubic using degree elevation + var x3 = x2; + var y3 = y2; + x2 = (x2 + 2 * x1) / 3; + y2 = (y2 + 2 * y1) / 3; + x1 = (this._xi + 2 * x1) / 3; + y1 = (this._yi + 2 * y1) / 3; + + this._dashedBezierTo(x1, y1, x2, y2, x3, y3); + }, + + /** + * 转成静态的 Float32Array 减少堆内存占用 + * Convert dynamic array to static Float32Array + */ + toStatic: function () { + var data = this.data; + if (data instanceof Array) { + data.length = this._len; + if (hasTypedArray) { + this.data = new Float32Array(data); + } + } + }, + + /** + * @return {module:zrender/core/BoundingRect} + */ + getBoundingRect: function () { + min$1[0] = min$1[1] = min2[0] = min2[1] = Number.MAX_VALUE; + max$1[0] = max$1[1] = max2[0] = max2[1] = -Number.MAX_VALUE; + + var data = this.data; + var xi = 0; + var yi = 0; + var x0 = 0; + var y0 = 0; + + for (var i = 0; i < data.length;) { + var cmd = data[i++]; + + if (i === 1) { + // 如果第一个命令是 L, C, Q + // 则 previous point 同绘制命令的第一个 point + // + // 第一个命令为 Arc 的情况下会在后面特殊处理 + xi = data[i]; + yi = data[i + 1]; + + x0 = xi; + y0 = yi; + } + + switch (cmd) { + case CMD.M: + // moveTo 命令重新创建一个新的 subpath, 并且更新新的起点 + // 在 closePath 的时候使用 + x0 = data[i++]; + y0 = data[i++]; + xi = x0; + yi = y0; + min2[0] = x0; + min2[1] = y0; + max2[0] = x0; + max2[1] = y0; + break; + case CMD.L: + fromLine(xi, yi, data[i], data[i + 1], min2, max2); + xi = data[i++]; + yi = data[i++]; + break; + case CMD.C: + fromCubic( + xi, yi, data[i++], data[i++], data[i++], data[i++], data[i], data[i + 1], + min2, max2 + ); + xi = data[i++]; + yi = data[i++]; + break; + case CMD.Q: + fromQuadratic( + xi, yi, data[i++], data[i++], data[i], data[i + 1], + min2, max2 + ); + xi = data[i++]; + yi = data[i++]; + break; + case CMD.A: + // TODO Arc 判断的开销比较大 + var cx = data[i++]; + var cy = data[i++]; + var rx = data[i++]; + var ry = data[i++]; + var startAngle = data[i++]; + var endAngle = data[i++] + startAngle; + // TODO Arc 旋转 + i += 1; + var anticlockwise = 1 - data[i++]; + + if (i === 1) { + // 直接使用 arc 命令 + // 第一个命令起点还未定义 + x0 = mathCos$1(startAngle) * rx + cx; + y0 = mathSin$1(startAngle) * ry + cy; + } + + fromArc( + cx, cy, rx, ry, startAngle, endAngle, + anticlockwise, min2, max2 + ); + + xi = mathCos$1(endAngle) * rx + cx; + yi = mathSin$1(endAngle) * ry + cy; + break; + case CMD.R: + x0 = xi = data[i++]; + y0 = yi = data[i++]; + var width = data[i++]; + var height = data[i++]; + // Use fromLine + fromLine(x0, y0, x0 + width, y0 + height, min2, max2); + break; + case CMD.Z: + xi = x0; + yi = y0; + break; + } + + // Union + min(min$1, min$1, min2); + max(max$1, max$1, max2); + } + + // No data + if (i === 0) { + min$1[0] = min$1[1] = max$1[0] = max$1[1] = 0; + } + + return new BoundingRect( + min$1[0], min$1[1], max$1[0] - min$1[0], max$1[1] - min$1[1] + ); + }, + + /** + * Rebuild path from current data + * Rebuild path will not consider javascript implemented line dash. + * @param {CanvasRenderingContext2D} ctx + */ + rebuildPath: function (ctx) { + var d = this.data; + var x0, y0; + var xi, yi; + var x, y; + var ux = this._ux; + var uy = this._uy; + var len$$1 = this._len; + for (var i = 0; i < len$$1;) { + var cmd = d[i++]; + + if (i === 1) { + // 如果第一个命令是 L, C, Q + // 则 previous point 同绘制命令的第一个 point + // + // 第一个命令为 Arc 的情况下会在后面特殊处理 + xi = d[i]; + yi = d[i + 1]; + + x0 = xi; + y0 = yi; + } + switch (cmd) { + case CMD.M: + x0 = xi = d[i++]; + y0 = yi = d[i++]; + ctx.moveTo(xi, yi); + break; + case CMD.L: + x = d[i++]; + y = d[i++]; + // Not draw too small seg between + if (mathAbs(x - xi) > ux || mathAbs(y - yi) > uy || i === len$$1 - 1) { + ctx.lineTo(x, y); + xi = x; + yi = y; + } + break; + case CMD.C: + ctx.bezierCurveTo( + d[i++], d[i++], d[i++], d[i++], d[i++], d[i++] + ); + xi = d[i - 2]; + yi = d[i - 1]; + break; + case CMD.Q: + ctx.quadraticCurveTo(d[i++], d[i++], d[i++], d[i++]); + xi = d[i - 2]; + yi = d[i - 1]; + break; + case CMD.A: + var cx = d[i++]; + var cy = d[i++]; + var rx = d[i++]; + var ry = d[i++]; + var theta = d[i++]; + var dTheta = d[i++]; + var psi = d[i++]; + var fs = d[i++]; + var r = (rx > ry) ? rx : ry; + var scaleX = (rx > ry) ? 1 : rx / ry; + var scaleY = (rx > ry) ? ry / rx : 1; + var isEllipse = Math.abs(rx - ry) > 1e-3; + var endAngle = theta + dTheta; + if (isEllipse) { + ctx.translate(cx, cy); + ctx.rotate(psi); + ctx.scale(scaleX, scaleY); + ctx.arc(0, 0, r, theta, endAngle, 1 - fs); + ctx.scale(1 / scaleX, 1 / scaleY); + ctx.rotate(-psi); + ctx.translate(-cx, -cy); + } + else { + ctx.arc(cx, cy, r, theta, endAngle, 1 - fs); + } + + if (i === 1) { + // 直接使用 arc 命令 + // 第一个命令起点还未定义 + x0 = mathCos$1(theta) * rx + cx; + y0 = mathSin$1(theta) * ry + cy; + } + xi = mathCos$1(endAngle) * rx + cx; + yi = mathSin$1(endAngle) * ry + cy; + break; + case CMD.R: + x0 = xi = d[i]; + y0 = yi = d[i + 1]; + ctx.rect(d[i++], d[i++], d[i++], d[i++]); + break; + case CMD.Z: + ctx.closePath(); + xi = x0; + yi = y0; + } + } + } +}; + +PathProxy.CMD = CMD; + +/** + * 线段包含判断 + * @param {number} x0 + * @param {number} y0 + * @param {number} x1 + * @param {number} y1 + * @param {number} lineWidth + * @param {number} x + * @param {number} y + * @return {boolean} + */ +function containStroke$1(x0, y0, x1, y1, lineWidth, x, y) { + if (lineWidth === 0) { + return false; + } + var _l = lineWidth; + var _a = 0; + var _b = x0; + // Quick reject + if ( + (y > y0 + _l && y > y1 + _l) + || (y < y0 - _l && y < y1 - _l) + || (x > x0 + _l && x > x1 + _l) + || (x < x0 - _l && x < x1 - _l) + ) { + return false; + } + + if (x0 !== x1) { + _a = (y0 - y1) / (x0 - x1); + _b = (x0 * y1 - x1 * y0) / (x0 - x1); + } + else { + return Math.abs(x - x0) <= _l / 2; + } + var tmp = _a * x - y + _b; + var _s = tmp * tmp / (_a * _a + 1); + return _s <= _l / 2 * _l / 2; +} + +/** + * 三次贝塞尔曲线描边包含判断 + * @param {number} x0 + * @param {number} y0 + * @param {number} x1 + * @param {number} y1 + * @param {number} x2 + * @param {number} y2 + * @param {number} x3 + * @param {number} y3 + * @param {number} lineWidth + * @param {number} x + * @param {number} y + * @return {boolean} + */ +function containStroke$2(x0, y0, x1, y1, x2, y2, x3, y3, lineWidth, x, y) { + if (lineWidth === 0) { + return false; + } + var _l = lineWidth; + // Quick reject + if ( + (y > y0 + _l && y > y1 + _l && y > y2 + _l && y > y3 + _l) + || (y < y0 - _l && y < y1 - _l && y < y2 - _l && y < y3 - _l) + || (x > x0 + _l && x > x1 + _l && x > x2 + _l && x > x3 + _l) + || (x < x0 - _l && x < x1 - _l && x < x2 - _l && x < x3 - _l) + ) { + return false; + } + var d = cubicProjectPoint( + x0, y0, x1, y1, x2, y2, x3, y3, + x, y, null + ); + return d <= _l / 2; +} + +/** + * 二次贝塞尔曲线描边包含判断 + * @param {number} x0 + * @param {number} y0 + * @param {number} x1 + * @param {number} y1 + * @param {number} x2 + * @param {number} y2 + * @param {number} lineWidth + * @param {number} x + * @param {number} y + * @return {boolean} + */ +function containStroke$3(x0, y0, x1, y1, x2, y2, lineWidth, x, y) { + if (lineWidth === 0) { + return false; + } + var _l = lineWidth; + // Quick reject + if ( + (y > y0 + _l && y > y1 + _l && y > y2 + _l) + || (y < y0 - _l && y < y1 - _l && y < y2 - _l) + || (x > x0 + _l && x > x1 + _l && x > x2 + _l) + || (x < x0 - _l && x < x1 - _l && x < x2 - _l) + ) { + return false; + } + var d = quadraticProjectPoint( + x0, y0, x1, y1, x2, y2, + x, y, null + ); + return d <= _l / 2; +} + +var PI2$3 = Math.PI * 2; + +function normalizeRadian(angle) { + angle %= PI2$3; + if (angle < 0) { + angle += PI2$3; + } + return angle; +} + +var PI2$2 = Math.PI * 2; + +/** + * 圆弧描边包含判断 + * @param {number} cx + * @param {number} cy + * @param {number} r + * @param {number} startAngle + * @param {number} endAngle + * @param {boolean} anticlockwise + * @param {number} lineWidth + * @param {number} x + * @param {number} y + * @return {Boolean} + */ +function containStroke$4( + cx, cy, r, startAngle, endAngle, anticlockwise, + lineWidth, x, y +) { + + if (lineWidth === 0) { + return false; + } + var _l = lineWidth; + + x -= cx; + y -= cy; + var d = Math.sqrt(x * x + y * y); + + if ((d - _l > r) || (d + _l < r)) { + return false; + } + if (Math.abs(startAngle - endAngle) % PI2$2 < 1e-4) { + // Is a circle + return true; + } + if (anticlockwise) { + var tmp = startAngle; + startAngle = normalizeRadian(endAngle); + endAngle = normalizeRadian(tmp); + } + else { + startAngle = normalizeRadian(startAngle); + endAngle = normalizeRadian(endAngle); + } + if (startAngle > endAngle) { + endAngle += PI2$2; + } + + var angle = Math.atan2(y, x); + if (angle < 0) { + angle += PI2$2; + } + return (angle >= startAngle && angle <= endAngle) + || (angle + PI2$2 >= startAngle && angle + PI2$2 <= endAngle); +} + +function windingLine(x0, y0, x1, y1, x, y) { + if ((y > y0 && y > y1) || (y < y0 && y < y1)) { + return 0; + } + // Ignore horizontal line + if (y1 === y0) { + return 0; + } + var dir = y1 < y0 ? 1 : -1; + var t = (y - y0) / (y1 - y0); + + // Avoid winding error when intersection point is the connect point of two line of polygon + if (t === 1 || t === 0) { + dir = y1 < y0 ? 0.5 : -0.5; + } + + var x_ = t * (x1 - x0) + x0; + + // If (x, y) on the line, considered as "contain". + return x_ === x ? Infinity : x_ > x ? dir : 0; +} + +var CMD$1 = PathProxy.CMD; +var PI2$1 = Math.PI * 2; + +var EPSILON$2 = 1e-4; + +function isAroundEqual(a, b) { + return Math.abs(a - b) < EPSILON$2; +} + +// 临时数组 +var roots = [-1, -1, -1]; +var extrema = [-1, -1]; + +function swapExtrema() { + var tmp = extrema[0]; + extrema[0] = extrema[1]; + extrema[1] = tmp; +} + +function windingCubic(x0, y0, x1, y1, x2, y2, x3, y3, x, y) { + // Quick reject + if ( + (y > y0 && y > y1 && y > y2 && y > y3) + || (y < y0 && y < y1 && y < y2 && y < y3) + ) { + return 0; + } + var nRoots = cubicRootAt(y0, y1, y2, y3, y, roots); + if (nRoots === 0) { + return 0; + } + else { + var w = 0; + var nExtrema = -1; + var y0_; + var y1_; + for (var i = 0; i < nRoots; i++) { + var t = roots[i]; + + // Avoid winding error when intersection point is the connect point of two line of polygon + var unit = (t === 0 || t === 1) ? 0.5 : 1; + + var x_ = cubicAt(x0, x1, x2, x3, t); + if (x_ < x) { // Quick reject + continue; + } + if (nExtrema < 0) { + nExtrema = cubicExtrema(y0, y1, y2, y3, extrema); + if (extrema[1] < extrema[0] && nExtrema > 1) { + swapExtrema(); + } + y0_ = cubicAt(y0, y1, y2, y3, extrema[0]); + if (nExtrema > 1) { + y1_ = cubicAt(y0, y1, y2, y3, extrema[1]); + } + } + if (nExtrema === 2) { + // 分成三段单调函数 + if (t < extrema[0]) { + w += y0_ < y0 ? unit : -unit; + } + else if (t < extrema[1]) { + w += y1_ < y0_ ? unit : -unit; + } + else { + w += y3 < y1_ ? unit : -unit; + } + } + else { + // 分成两段单调函数 + if (t < extrema[0]) { + w += y0_ < y0 ? unit : -unit; + } + else { + w += y3 < y0_ ? unit : -unit; + } + } + } + return w; + } +} + +function windingQuadratic(x0, y0, x1, y1, x2, y2, x, y) { + // Quick reject + if ( + (y > y0 && y > y1 && y > y2) + || (y < y0 && y < y1 && y < y2) + ) { + return 0; + } + var nRoots = quadraticRootAt(y0, y1, y2, y, roots); + if (nRoots === 0) { + return 0; + } + else { + var t = quadraticExtremum(y0, y1, y2); + if (t >= 0 && t <= 1) { + var w = 0; + var y_ = quadraticAt(y0, y1, y2, t); + for (var i = 0; i < nRoots; i++) { + // Remove one endpoint. + var unit = (roots[i] === 0 || roots[i] === 1) ? 0.5 : 1; + + var x_ = quadraticAt(x0, x1, x2, roots[i]); + if (x_ < x) { // Quick reject + continue; + } + if (roots[i] < t) { + w += y_ < y0 ? unit : -unit; + } + else { + w += y2 < y_ ? unit : -unit; + } + } + return w; + } + else { + // Remove one endpoint. + var unit = (roots[0] === 0 || roots[0] === 1) ? 0.5 : 1; + + var x_ = quadraticAt(x0, x1, x2, roots[0]); + if (x_ < x) { // Quick reject + return 0; + } + return y2 < y0 ? unit : -unit; + } + } +} + +// TODO +// Arc 旋转 +function windingArc( + cx, cy, r, startAngle, endAngle, anticlockwise, x, y +) { + y -= cy; + if (y > r || y < -r) { + return 0; + } + var tmp = Math.sqrt(r * r - y * y); + roots[0] = -tmp; + roots[1] = tmp; + + var diff = Math.abs(startAngle - endAngle); + if (diff < 1e-4) { + return 0; + } + if (diff % PI2$1 < 1e-4) { + // Is a circle + startAngle = 0; + endAngle = PI2$1; + var dir = anticlockwise ? 1 : -1; + if (x >= roots[0] + cx && x <= roots[1] + cx) { + return dir; + } + else { + return 0; + } + } + + if (anticlockwise) { + var tmp = startAngle; + startAngle = normalizeRadian(endAngle); + endAngle = normalizeRadian(tmp); + } + else { + startAngle = normalizeRadian(startAngle); + endAngle = normalizeRadian(endAngle); + } + if (startAngle > endAngle) { + endAngle += PI2$1; + } + + var w = 0; + for (var i = 0; i < 2; i++) { + var x_ = roots[i]; + if (x_ + cx > x) { + var angle = Math.atan2(y, x_); + var dir = anticlockwise ? 1 : -1; + if (angle < 0) { + angle = PI2$1 + angle; + } + if ( + (angle >= startAngle && angle <= endAngle) + || (angle + PI2$1 >= startAngle && angle + PI2$1 <= endAngle) + ) { + if (angle > Math.PI / 2 && angle < Math.PI * 1.5) { + dir = -dir; + } + w += dir; + } + } + } + return w; +} + +function containPath(data, lineWidth, isStroke, x, y) { + var w = 0; + var xi = 0; + var yi = 0; + var x0 = 0; + var y0 = 0; + + for (var i = 0; i < data.length;) { + var cmd = data[i++]; + // Begin a new subpath + if (cmd === CMD$1.M && i > 1) { + // Close previous subpath + if (!isStroke) { + w += windingLine(xi, yi, x0, y0, x, y); + } + // 如果被任何一个 subpath 包含 + // if (w !== 0) { + // return true; + // } + } + + if (i === 1) { + // 如果第一个命令是 L, C, Q + // 则 previous point 同绘制命令的第一个 point + // + // 第一个命令为 Arc 的情况下会在后面特殊处理 + xi = data[i]; + yi = data[i + 1]; + + x0 = xi; + y0 = yi; + } + + switch (cmd) { + case CMD$1.M: + // moveTo 命令重新创建一个新的 subpath, 并且更新新的起点 + // 在 closePath 的时候使用 + x0 = data[i++]; + y0 = data[i++]; + xi = x0; + yi = y0; + break; + case CMD$1.L: + if (isStroke) { + if (containStroke$1(xi, yi, data[i], data[i + 1], lineWidth, x, y)) { + return true; + } + } + else { + // NOTE 在第一个命令为 L, C, Q 的时候会计算出 NaN + w += windingLine(xi, yi, data[i], data[i + 1], x, y) || 0; + } + xi = data[i++]; + yi = data[i++]; + break; + case CMD$1.C: + if (isStroke) { + if (containStroke$2(xi, yi, + data[i++], data[i++], data[i++], data[i++], data[i], data[i + 1], + lineWidth, x, y + )) { + return true; + } + } + else { + w += windingCubic( + xi, yi, + data[i++], data[i++], data[i++], data[i++], data[i], data[i + 1], + x, y + ) || 0; + } + xi = data[i++]; + yi = data[i++]; + break; + case CMD$1.Q: + if (isStroke) { + if (containStroke$3(xi, yi, + data[i++], data[i++], data[i], data[i + 1], + lineWidth, x, y + )) { + return true; + } + } + else { + w += windingQuadratic( + xi, yi, + data[i++], data[i++], data[i], data[i + 1], + x, y + ) || 0; + } + xi = data[i++]; + yi = data[i++]; + break; + case CMD$1.A: + // TODO Arc 判断的开销比较大 + var cx = data[i++]; + var cy = data[i++]; + var rx = data[i++]; + var ry = data[i++]; + var theta = data[i++]; + var dTheta = data[i++]; + // TODO Arc 旋转 + i += 1; + var anticlockwise = 1 - data[i++]; + var x1 = Math.cos(theta) * rx + cx; + var y1 = Math.sin(theta) * ry + cy; + // 不是直接使用 arc 命令 + if (i > 1) { + w += windingLine(xi, yi, x1, y1, x, y); + } + else { + // 第一个命令起点还未定义 + x0 = x1; + y0 = y1; + } + // zr 使用scale来模拟椭圆, 这里也对x做一定的缩放 + var _x = (x - cx) * ry / rx + cx; + if (isStroke) { + if (containStroke$4( + cx, cy, ry, theta, theta + dTheta, anticlockwise, + lineWidth, _x, y + )) { + return true; + } + } + else { + w += windingArc( + cx, cy, ry, theta, theta + dTheta, anticlockwise, + _x, y + ); + } + xi = Math.cos(theta + dTheta) * rx + cx; + yi = Math.sin(theta + dTheta) * ry + cy; + break; + case CMD$1.R: + x0 = xi = data[i++]; + y0 = yi = data[i++]; + var width = data[i++]; + var height = data[i++]; + var x1 = x0 + width; + var y1 = y0 + height; + if (isStroke) { + if (containStroke$1(x0, y0, x1, y0, lineWidth, x, y) + || containStroke$1(x1, y0, x1, y1, lineWidth, x, y) + || containStroke$1(x1, y1, x0, y1, lineWidth, x, y) + || containStroke$1(x0, y1, x0, y0, lineWidth, x, y) + ) { + return true; + } + } + else { + // FIXME Clockwise ? + w += windingLine(x1, y0, x1, y1, x, y); + w += windingLine(x0, y1, x0, y0, x, y); + } + break; + case CMD$1.Z: + if (isStroke) { + if (containStroke$1( + xi, yi, x0, y0, lineWidth, x, y + )) { + return true; + } + } + else { + // Close a subpath + w += windingLine(xi, yi, x0, y0, x, y); + // 如果被任何一个 subpath 包含 + // FIXME subpaths may overlap + // if (w !== 0) { + // return true; + // } + } + xi = x0; + yi = y0; + break; + } + } + if (!isStroke && !isAroundEqual(yi, y0)) { + w += windingLine(xi, yi, x0, y0, x, y) || 0; + } + return w !== 0; +} + +function contain(pathData, x, y) { + return containPath(pathData, 0, false, x, y); +} + +function containStroke(pathData, lineWidth, x, y) { + return containPath(pathData, lineWidth, true, x, y); +} + +var getCanvasPattern = Pattern.prototype.getCanvasPattern; + +var abs = Math.abs; + +var pathProxyForDraw = new PathProxy(true); +/** + * @alias module:zrender/graphic/Path + * @extends module:zrender/graphic/Displayable + * @constructor + * @param {Object} opts + */ +function Path(opts) { + Displayable.call(this, opts); + + /** + * @type {module:zrender/core/PathProxy} + * @readOnly + */ + this.path = null; +} + +Path.prototype = { + + constructor: Path, + + type: 'path', + + __dirtyPath: true, + + strokeContainThreshold: 5, + + // This item default to be false. But in map series in echarts, + // in order to improve performance, it should be set to true, + // so the shorty segment won't draw. + segmentIgnoreThreshold: 0, + + /** + * See `module:zrender/src/graphic/helper/subPixelOptimize`. + * @type {boolean} + */ + subPixelOptimize: false, + + brush: function (ctx, prevEl) { + var style = this.style; + var path = this.path || pathProxyForDraw; + var hasStroke = style.hasStroke(); + var hasFill = style.hasFill(); + var fill = style.fill; + var stroke = style.stroke; + var hasFillGradient = hasFill && !!(fill.colorStops); + var hasStrokeGradient = hasStroke && !!(stroke.colorStops); + var hasFillPattern = hasFill && !!(fill.image); + var hasStrokePattern = hasStroke && !!(stroke.image); + + style.bind(ctx, this, prevEl); + this.setTransform(ctx); + + if (this.__dirty) { + var rect; + // Update gradient because bounding rect may changed + if (hasFillGradient) { + rect = rect || this.getBoundingRect(); + this._fillGradient = style.getGradient(ctx, fill, rect); + } + if (hasStrokeGradient) { + rect = rect || this.getBoundingRect(); + this._strokeGradient = style.getGradient(ctx, stroke, rect); + } + } + // Use the gradient or pattern + if (hasFillGradient) { + // PENDING If may have affect the state + ctx.fillStyle = this._fillGradient; + } + else if (hasFillPattern) { + ctx.fillStyle = getCanvasPattern.call(fill, ctx); + } + if (hasStrokeGradient) { + ctx.strokeStyle = this._strokeGradient; + } + else if (hasStrokePattern) { + ctx.strokeStyle = getCanvasPattern.call(stroke, ctx); + } + + var lineDash = style.lineDash; + var lineDashOffset = style.lineDashOffset; + + var ctxLineDash = !!ctx.setLineDash; + + // Update path sx, sy + var scale = this.getGlobalScale(); + path.setScale(scale[0], scale[1], this.segmentIgnoreThreshold); + + // Proxy context + // Rebuild path in following 2 cases + // 1. Path is dirty + // 2. Path needs javascript implemented lineDash stroking. + // In this case, lineDash information will not be saved in PathProxy + if (this.__dirtyPath + || (lineDash && !ctxLineDash && hasStroke) + ) { + path.beginPath(ctx); + + // Setting line dash before build path + if (lineDash && !ctxLineDash) { + path.setLineDash(lineDash); + path.setLineDashOffset(lineDashOffset); + } + + this.buildPath(path, this.shape, false); + + // Clear path dirty flag + if (this.path) { + this.__dirtyPath = false; + } + } + else { + // Replay path building + ctx.beginPath(); + this.path.rebuildPath(ctx); + } + + if (hasFill) { + if (style.fillOpacity != null) { + var originalGlobalAlpha = ctx.globalAlpha; + ctx.globalAlpha = style.fillOpacity * style.opacity; + path.fill(ctx); + ctx.globalAlpha = originalGlobalAlpha; + } + else { + path.fill(ctx); + } + } + + if (lineDash && ctxLineDash) { + ctx.setLineDash(lineDash); + ctx.lineDashOffset = lineDashOffset; + } + + if (hasStroke) { + if (style.strokeOpacity != null) { + var originalGlobalAlpha = ctx.globalAlpha; + ctx.globalAlpha = style.strokeOpacity * style.opacity; + path.stroke(ctx); + ctx.globalAlpha = originalGlobalAlpha; + } + else { + path.stroke(ctx); + } + } + + if (lineDash && ctxLineDash) { + // PENDING + // Remove lineDash + ctx.setLineDash([]); + } + + // Draw rect text + if (style.text != null) { + // Only restore transform when needs draw text. + this.restoreTransform(ctx); + this.drawRectText(ctx, this.getBoundingRect()); + } + }, + + // When bundling path, some shape may decide if use moveTo to begin a new subpath or closePath + // Like in circle + buildPath: function (ctx, shapeCfg, inBundle) {}, + + createPathProxy: function () { + this.path = new PathProxy(); + }, + + getBoundingRect: function () { + var rect = this._rect; + var style = this.style; + var needsUpdateRect = !rect; + if (needsUpdateRect) { + var path = this.path; + if (!path) { + // Create path on demand. + path = this.path = new PathProxy(); + } + if (this.__dirtyPath) { + path.beginPath(); + this.buildPath(path, this.shape, false); + } + rect = path.getBoundingRect(); + } + this._rect = rect; + + if (style.hasStroke()) { + // Needs update rect with stroke lineWidth when + // 1. Element changes scale or lineWidth + // 2. Shape is changed + var rectWithStroke = this._rectWithStroke || (this._rectWithStroke = rect.clone()); + if (this.__dirty || needsUpdateRect) { + rectWithStroke.copy(rect); + // FIXME Must after updateTransform + var w = style.lineWidth; + // PENDING, Min line width is needed when line is horizontal or vertical + var lineScale = style.strokeNoScale ? this.getLineScale() : 1; + + // Only add extra hover lineWidth when there are no fill + if (!style.hasFill()) { + w = Math.max(w, this.strokeContainThreshold || 4); + } + // Consider line width + // Line scale can't be 0; + if (lineScale > 1e-10) { + rectWithStroke.width += w / lineScale; + rectWithStroke.height += w / lineScale; + rectWithStroke.x -= w / lineScale / 2; + rectWithStroke.y -= w / lineScale / 2; + } + } + + // Return rect with stroke + return rectWithStroke; + } + + return rect; + }, + + contain: function (x, y) { + var localPos = this.transformCoordToLocal(x, y); + var rect = this.getBoundingRect(); + var style = this.style; + x = localPos[0]; + y = localPos[1]; + + if (rect.contain(x, y)) { + var pathData = this.path.data; + if (style.hasStroke()) { + var lineWidth = style.lineWidth; + var lineScale = style.strokeNoScale ? this.getLineScale() : 1; + // Line scale can't be 0; + if (lineScale > 1e-10) { + // Only add extra hover lineWidth when there are no fill + if (!style.hasFill()) { + lineWidth = Math.max(lineWidth, this.strokeContainThreshold); + } + if (containStroke( + pathData, lineWidth / lineScale, x, y + )) { + return true; + } + } + } + if (style.hasFill()) { + return contain(pathData, x, y); + } + } + return false; + }, + + /** + * @param {boolean} dirtyPath + */ + dirty: function (dirtyPath) { + if (dirtyPath == null) { + dirtyPath = true; + } + // Only mark dirty, not mark clean + if (dirtyPath) { + this.__dirtyPath = dirtyPath; + this._rect = null; + } + + this.__dirty = this.__dirtyText = true; + + this.__zr && this.__zr.refresh(); + + // Used as a clipping path + if (this.__clipTarget) { + this.__clipTarget.dirty(); + } + }, + + /** + * Alias for animate('shape') + * @param {boolean} loop + */ + animateShape: function (loop) { + return this.animate('shape', loop); + }, + + // Overwrite attrKV + attrKV: function (key, value) { + // FIXME + if (key === 'shape') { + this.setShape(value); + this.__dirtyPath = true; + this._rect = null; + } + else { + Displayable.prototype.attrKV.call(this, key, value); + } + }, + + /** + * @param {Object|string} key + * @param {*} value + */ + setShape: function (key, value) { + var shape = this.shape; + // Path from string may not have shape + if (shape) { + if (isObject$1(key)) { + for (var name in key) { + if (key.hasOwnProperty(name)) { + shape[name] = key[name]; + } + } + } + else { + shape[key] = value; + } + this.dirty(true); + } + return this; + }, + + getLineScale: function () { + var m = this.transform; + // Get the line scale. + // Determinant of `m` means how much the area is enlarged by the + // transformation. So its square root can be used as a scale factor + // for width. + return m && abs(m[0] - 1) > 1e-10 && abs(m[3] - 1) > 1e-10 + ? Math.sqrt(abs(m[0] * m[3] - m[2] * m[1])) + : 1; + } +}; + +/** + * 扩展一个 Path element, 比如星形,圆等。 + * Extend a path element + * @param {Object} props + * @param {string} props.type Path type + * @param {Function} props.init Initialize + * @param {Function} props.buildPath Overwrite buildPath method + * @param {Object} [props.style] Extended default style config + * @param {Object} [props.shape] Extended default shape config + */ +Path.extend = function (defaults$$1) { + var Sub = function (opts) { + Path.call(this, opts); + + if (defaults$$1.style) { + // Extend default style + this.style.extendFrom(defaults$$1.style, false); + } + + // Extend default shape + var defaultShape = defaults$$1.shape; + if (defaultShape) { + this.shape = this.shape || {}; + var thisShape = this.shape; + for (var name in defaultShape) { + if ( + !thisShape.hasOwnProperty(name) + && defaultShape.hasOwnProperty(name) + ) { + thisShape[name] = defaultShape[name]; + } + } + } + + defaults$$1.init && defaults$$1.init.call(this, opts); + }; + + inherits(Sub, Path); + + // FIXME 不能 extend position, rotation 等引用对象 + for (var name in defaults$$1) { + // Extending prototype values and methods + if (name !== 'style' && name !== 'shape') { + Sub.prototype[name] = defaults$$1[name]; + } + } + + return Sub; +}; + +inherits(Path, Displayable); + +var CMD$2 = PathProxy.CMD; + +var points = [[], [], []]; +var mathSqrt$3 = Math.sqrt; +var mathAtan2 = Math.atan2; + +var transformPath = function (path, m) { + var data = path.data; + var cmd; + var nPoint; + var i; + var j; + var k; + var p; + + var M = CMD$2.M; + var C = CMD$2.C; + var L = CMD$2.L; + var R = CMD$2.R; + var A = CMD$2.A; + var Q = CMD$2.Q; + + for (i = 0, j = 0; i < data.length;) { + cmd = data[i++]; + j = i; + nPoint = 0; + + switch (cmd) { + case M: + nPoint = 1; + break; + case L: + nPoint = 1; + break; + case C: + nPoint = 3; + break; + case Q: + nPoint = 2; + break; + case A: + var x = m[4]; + var y = m[5]; + var sx = mathSqrt$3(m[0] * m[0] + m[1] * m[1]); + var sy = mathSqrt$3(m[2] * m[2] + m[3] * m[3]); + var angle = mathAtan2(-m[1] / sy, m[0] / sx); + // cx + data[i] *= sx; + data[i++] += x; + // cy + data[i] *= sy; + data[i++] += y; + // Scale rx and ry + // FIXME Assume psi is 0 here + data[i++] *= sx; + data[i++] *= sy; + + // Start angle + data[i++] += angle; + // end angle + data[i++] += angle; + // FIXME psi + i += 2; + j = i; + break; + case R: + // x0, y0 + p[0] = data[i++]; + p[1] = data[i++]; + applyTransform(p, p, m); + data[j++] = p[0]; + data[j++] = p[1]; + // x1, y1 + p[0] += data[i++]; + p[1] += data[i++]; + applyTransform(p, p, m); + data[j++] = p[0]; + data[j++] = p[1]; + } + + for (k = 0; k < nPoint; k++) { + var p = points[k]; + p[0] = data[i++]; + p[1] = data[i++]; + + applyTransform(p, p, m); + // Write back + data[j++] = p[0]; + data[j++] = p[1]; + } + } +}; + +// command chars +// var cc = [ +// 'm', 'M', 'l', 'L', 'v', 'V', 'h', 'H', 'z', 'Z', +// 'c', 'C', 'q', 'Q', 't', 'T', 's', 'S', 'a', 'A' +// ]; + +var mathSqrt = Math.sqrt; +var mathSin = Math.sin; +var mathCos = Math.cos; +var PI = Math.PI; + +var vMag = function (v) { + return Math.sqrt(v[0] * v[0] + v[1] * v[1]); +}; +var vRatio = function (u, v) { + return (u[0] * v[0] + u[1] * v[1]) / (vMag(u) * vMag(v)); +}; +var vAngle = function (u, v) { + return (u[0] * v[1] < u[1] * v[0] ? -1 : 1) + * Math.acos(vRatio(u, v)); +}; + +function processArc(x1, y1, x2, y2, fa, fs, rx, ry, psiDeg, cmd, path) { + var psi = psiDeg * (PI / 180.0); + var xp = mathCos(psi) * (x1 - x2) / 2.0 + + mathSin(psi) * (y1 - y2) / 2.0; + var yp = -1 * mathSin(psi) * (x1 - x2) / 2.0 + + mathCos(psi) * (y1 - y2) / 2.0; + + var lambda = (xp * xp) / (rx * rx) + (yp * yp) / (ry * ry); + + if (lambda > 1) { + rx *= mathSqrt(lambda); + ry *= mathSqrt(lambda); + } + + var f = (fa === fs ? -1 : 1) + * mathSqrt((((rx * rx) * (ry * ry)) + - ((rx * rx) * (yp * yp)) + - ((ry * ry) * (xp * xp))) / ((rx * rx) * (yp * yp) + + (ry * ry) * (xp * xp)) + ) || 0; + + var cxp = f * rx * yp / ry; + var cyp = f * -ry * xp / rx; + + var cx = (x1 + x2) / 2.0 + + mathCos(psi) * cxp + - mathSin(psi) * cyp; + var cy = (y1 + y2) / 2.0 + + mathSin(psi) * cxp + + mathCos(psi) * cyp; + + var theta = vAngle([ 1, 0 ], [ (xp - cxp) / rx, (yp - cyp) / ry ]); + var u = [ (xp - cxp) / rx, (yp - cyp) / ry ]; + var v = [ (-1 * xp - cxp) / rx, (-1 * yp - cyp) / ry ]; + var dTheta = vAngle(u, v); + + if (vRatio(u, v) <= -1) { + dTheta = PI; + } + if (vRatio(u, v) >= 1) { + dTheta = 0; + } + if (fs === 0 && dTheta > 0) { + dTheta = dTheta - 2 * PI; + } + if (fs === 1 && dTheta < 0) { + dTheta = dTheta + 2 * PI; + } + + path.addData(cmd, cx, cy, rx, ry, theta, dTheta, psi, fs); +} + + +var commandReg = /([mlvhzcqtsa])([^mlvhzcqtsa]*)/ig; +// Consider case: +// (1) delimiter can be comma or space, where continuous commas +// or spaces should be seen as one comma. +// (2) value can be like: +// '2e-4', 'l.5.9' (ignore 0), 'M-10-10', 'l-2.43e-1,34.9983', +// 'l-.5E1,54', '121-23-44-11' (no delimiter) +var numberReg = /-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g; +// var valueSplitReg = /[\s,]+/; + +function createPathProxyFromString(data) { + if (!data) { + return new PathProxy(); + } + + // var data = data.replace(/-/g, ' -') + // .replace(/ /g, ' ') + // .replace(/ /g, ',') + // .replace(/,,/g, ','); + + // var n; + // create pipes so that we can split the data + // for (n = 0; n < cc.length; n++) { + // cs = cs.replace(new RegExp(cc[n], 'g'), '|' + cc[n]); + // } + + // data = data.replace(/-/g, ',-'); + + // create array + // var arr = cs.split('|'); + // init context point + var cpx = 0; + var cpy = 0; + var subpathX = cpx; + var subpathY = cpy; + var prevCmd; + + var path = new PathProxy(); + var CMD = PathProxy.CMD; + + // commandReg.lastIndex = 0; + // var cmdResult; + // while ((cmdResult = commandReg.exec(data)) != null) { + // var cmdStr = cmdResult[1]; + // var cmdContent = cmdResult[2]; + + var cmdList = data.match(commandReg); + for (var l = 0; l < cmdList.length; l++) { + var cmdText = cmdList[l]; + var cmdStr = cmdText.charAt(0); + + var cmd; + + // String#split is faster a little bit than String#replace or RegExp#exec. + // var p = cmdContent.split(valueSplitReg); + // var pLen = 0; + // for (var i = 0; i < p.length; i++) { + // // '' and other invalid str => NaN + // var val = parseFloat(p[i]); + // !isNaN(val) && (p[pLen++] = val); + // } + + var p = cmdText.match(numberReg) || []; + var pLen = p.length; + for (var i = 0; i < pLen; i++) { + p[i] = parseFloat(p[i]); + } + + var off = 0; + while (off < pLen) { + var ctlPtx; + var ctlPty; + + var rx; + var ry; + var psi; + var fa; + var fs; + + var x1 = cpx; + var y1 = cpy; + + // convert l, H, h, V, and v to L + switch (cmdStr) { + case 'l': + cpx += p[off++]; + cpy += p[off++]; + cmd = CMD.L; + path.addData(cmd, cpx, cpy); + break; + case 'L': + cpx = p[off++]; + cpy = p[off++]; + cmd = CMD.L; + path.addData(cmd, cpx, cpy); + break; + case 'm': + cpx += p[off++]; + cpy += p[off++]; + cmd = CMD.M; + path.addData(cmd, cpx, cpy); + subpathX = cpx; + subpathY = cpy; + cmdStr = 'l'; + break; + case 'M': + cpx = p[off++]; + cpy = p[off++]; + cmd = CMD.M; + path.addData(cmd, cpx, cpy); + subpathX = cpx; + subpathY = cpy; + cmdStr = 'L'; + break; + case 'h': + cpx += p[off++]; + cmd = CMD.L; + path.addData(cmd, cpx, cpy); + break; + case 'H': + cpx = p[off++]; + cmd = CMD.L; + path.addData(cmd, cpx, cpy); + break; + case 'v': + cpy += p[off++]; + cmd = CMD.L; + path.addData(cmd, cpx, cpy); + break; + case 'V': + cpy = p[off++]; + cmd = CMD.L; + path.addData(cmd, cpx, cpy); + break; + case 'C': + cmd = CMD.C; + path.addData( + cmd, p[off++], p[off++], p[off++], p[off++], p[off++], p[off++] + ); + cpx = p[off - 2]; + cpy = p[off - 1]; + break; + case 'c': + cmd = CMD.C; + path.addData( + cmd, + p[off++] + cpx, p[off++] + cpy, + p[off++] + cpx, p[off++] + cpy, + p[off++] + cpx, p[off++] + cpy + ); + cpx += p[off - 2]; + cpy += p[off - 1]; + break; + case 'S': + ctlPtx = cpx; + ctlPty = cpy; + var len = path.len(); + var pathData = path.data; + if (prevCmd === CMD.C) { + ctlPtx += cpx - pathData[len - 4]; + ctlPty += cpy - pathData[len - 3]; + } + cmd = CMD.C; + x1 = p[off++]; + y1 = p[off++]; + cpx = p[off++]; + cpy = p[off++]; + path.addData(cmd, ctlPtx, ctlPty, x1, y1, cpx, cpy); + break; + case 's': + ctlPtx = cpx; + ctlPty = cpy; + var len = path.len(); + var pathData = path.data; + if (prevCmd === CMD.C) { + ctlPtx += cpx - pathData[len - 4]; + ctlPty += cpy - pathData[len - 3]; + } + cmd = CMD.C; + x1 = cpx + p[off++]; + y1 = cpy + p[off++]; + cpx += p[off++]; + cpy += p[off++]; + path.addData(cmd, ctlPtx, ctlPty, x1, y1, cpx, cpy); + break; + case 'Q': + x1 = p[off++]; + y1 = p[off++]; + cpx = p[off++]; + cpy = p[off++]; + cmd = CMD.Q; + path.addData(cmd, x1, y1, cpx, cpy); + break; + case 'q': + x1 = p[off++] + cpx; + y1 = p[off++] + cpy; + cpx += p[off++]; + cpy += p[off++]; + cmd = CMD.Q; + path.addData(cmd, x1, y1, cpx, cpy); + break; + case 'T': + ctlPtx = cpx; + ctlPty = cpy; + var len = path.len(); + var pathData = path.data; + if (prevCmd === CMD.Q) { + ctlPtx += cpx - pathData[len - 4]; + ctlPty += cpy - pathData[len - 3]; + } + cpx = p[off++]; + cpy = p[off++]; + cmd = CMD.Q; + path.addData(cmd, ctlPtx, ctlPty, cpx, cpy); + break; + case 't': + ctlPtx = cpx; + ctlPty = cpy; + var len = path.len(); + var pathData = path.data; + if (prevCmd === CMD.Q) { + ctlPtx += cpx - pathData[len - 4]; + ctlPty += cpy - pathData[len - 3]; + } + cpx += p[off++]; + cpy += p[off++]; + cmd = CMD.Q; + path.addData(cmd, ctlPtx, ctlPty, cpx, cpy); + break; + case 'A': + rx = p[off++]; + ry = p[off++]; + psi = p[off++]; + fa = p[off++]; + fs = p[off++]; + + x1 = cpx, y1 = cpy; + cpx = p[off++]; + cpy = p[off++]; + cmd = CMD.A; + processArc( + x1, y1, cpx, cpy, fa, fs, rx, ry, psi, cmd, path + ); + break; + case 'a': + rx = p[off++]; + ry = p[off++]; + psi = p[off++]; + fa = p[off++]; + fs = p[off++]; + + x1 = cpx, y1 = cpy; + cpx += p[off++]; + cpy += p[off++]; + cmd = CMD.A; + processArc( + x1, y1, cpx, cpy, fa, fs, rx, ry, psi, cmd, path + ); + break; + } + } + + if (cmdStr === 'z' || cmdStr === 'Z') { + cmd = CMD.Z; + path.addData(cmd); + // z may be in the middle of the path. + cpx = subpathX; + cpy = subpathY; + } + + prevCmd = cmd; + } + + path.toStatic(); + + return path; +} + +// TODO Optimize double memory cost problem +function createPathOptions(str, opts) { + var pathProxy = createPathProxyFromString(str); + opts = opts || {}; + opts.buildPath = function (path) { + if (path.setData) { + path.setData(pathProxy.data); + // Svg and vml renderer don't have context + var ctx = path.getContext(); + if (ctx) { + path.rebuildPath(ctx); + } + } + else { + var ctx = path; + pathProxy.rebuildPath(ctx); + } + }; + + opts.applyTransform = function (m) { + transformPath(pathProxy, m); + this.dirty(true); + }; + + return opts; +} + +/** + * Create a Path object from path string data + * http://www.w3.org/TR/SVG/paths.html#PathData + * @param {Object} opts Other options + */ +function createFromString(str, opts) { + return new Path(createPathOptions(str, opts)); +} + +/** + * Create a Path class from path string data + * @param {string} str + * @param {Object} opts Other options + */ +function extendFromString(str, opts) { + return Path.extend(createPathOptions(str, opts)); +} + +/** + * Merge multiple paths + */ +// TODO Apply transform +// TODO stroke dash +// TODO Optimize double memory cost problem +function mergePath$1(pathEls, opts) { + var pathList = []; + var len = pathEls.length; + for (var i = 0; i < len; i++) { + var pathEl = pathEls[i]; + if (!pathEl.path) { + pathEl.createPathProxy(); + } + if (pathEl.__dirtyPath) { + pathEl.buildPath(pathEl.path, pathEl.shape, true); + } + pathList.push(pathEl.path); + } + + var pathBundle = new Path(opts); + // Need path proxy. + pathBundle.createPathProxy(); + pathBundle.buildPath = function (path) { + path.appendPath(pathList); + // Svg and vml renderer don't have context + var ctx = path.getContext(); + if (ctx) { + path.rebuildPath(ctx); + } + }; + + return pathBundle; +} + +/** + * @alias zrender/graphic/Text + * @extends module:zrender/graphic/Displayable + * @constructor + * @param {Object} opts + */ +var Text = function (opts) { // jshint ignore:line + Displayable.call(this, opts); +}; + +Text.prototype = { + + constructor: Text, + + type: 'text', + + brush: function (ctx, prevEl) { + var style = this.style; + + // Optimize, avoid normalize every time. + this.__dirty && normalizeTextStyle(style, true); + + // Use props with prefix 'text'. + style.fill = style.stroke = style.shadowBlur = style.shadowColor = + style.shadowOffsetX = style.shadowOffsetY = null; + + var text = style.text; + // Convert to string + text != null && (text += ''); + + // Do not apply style.bind in Text node. Because the real bind job + // is in textHelper.renderText, and performance of text render should + // be considered. + // style.bind(ctx, this, prevEl); + + if (!needDrawText(text, style)) { + // The current el.style is not applied + // and should not be used as cache. + ctx.__attrCachedBy = ContextCachedBy.NONE; + return; + } + + this.setTransform(ctx); + + renderText(this, ctx, text, style, null, prevEl); + + this.restoreTransform(ctx); + }, + + getBoundingRect: function () { + var style = this.style; + + // Optimize, avoid normalize every time. + this.__dirty && normalizeTextStyle(style, true); + + if (!this._rect) { + var text = style.text; + text != null ? (text += '') : (text = ''); + + var rect = getBoundingRect( + style.text + '', + style.font, + style.textAlign, + style.textVerticalAlign, + style.textPadding, + style.textLineHeight, + style.rich + ); + + rect.x += style.x || 0; + rect.y += style.y || 0; + + if (getStroke(style.textStroke, style.textStrokeWidth)) { + var w = style.textStrokeWidth; + rect.x -= w / 2; + rect.y -= w / 2; + rect.width += w; + rect.height += w; + } + + this._rect = rect; + } + + return this._rect; + } +}; + +inherits(Text, Displayable); + +/** + * 圆形 + * @module zrender/shape/Circle + */ + +var Circle = Path.extend({ + + type: 'circle', + + shape: { + cx: 0, + cy: 0, + r: 0 + }, + + + buildPath: function (ctx, shape, inBundle) { + // Better stroking in ShapeBundle + // Always do it may have performence issue ( fill may be 2x more cost) + if (inBundle) { + ctx.moveTo(shape.cx + shape.r, shape.cy); + } + // else { + // if (ctx.allocate && !ctx.data.length) { + // ctx.allocate(ctx.CMD_MEM_SIZE.A); + // } + // } + // Better stroking in ShapeBundle + // ctx.moveTo(shape.cx + shape.r, shape.cy); + ctx.arc(shape.cx, shape.cy, shape.r, 0, Math.PI * 2, true); + } +}); + +// Fix weird bug in some version of IE11 (like 11.0.9600.178**), +// where exception "unexpected call to method or property access" +// might be thrown when calling ctx.fill or ctx.stroke after a path +// whose area size is zero is drawn and ctx.clip() is called and +// shadowBlur is set. See #4572, #3112, #5777. +// (e.g., +// ctx.moveTo(10, 10); +// ctx.lineTo(20, 10); +// ctx.closePath(); +// ctx.clip(); +// ctx.shadowBlur = 10; +// ... +// ctx.fill(); +// ) + +var shadowTemp = [ + ['shadowBlur', 0], + ['shadowColor', '#000'], + ['shadowOffsetX', 0], + ['shadowOffsetY', 0] +]; + +var fixClipWithShadow = function (orignalBrush) { + + // version string can be: '11.0' + return (env$1.browser.ie && env$1.browser.version >= 11) + + ? function () { + var clipPaths = this.__clipPaths; + var style = this.style; + var modified; + + if (clipPaths) { + for (var i = 0; i < clipPaths.length; i++) { + var clipPath = clipPaths[i]; + var shape = clipPath && clipPath.shape; + var type = clipPath && clipPath.type; + + if (shape && ( + (type === 'sector' && shape.startAngle === shape.endAngle) + || (type === 'rect' && (!shape.width || !shape.height)) + )) { + for (var j = 0; j < shadowTemp.length; j++) { + // It is save to put shadowTemp static, because shadowTemp + // will be all modified each item brush called. + shadowTemp[j][2] = style[shadowTemp[j][0]]; + style[shadowTemp[j][0]] = shadowTemp[j][1]; + } + modified = true; + break; + } + } + } + + orignalBrush.apply(this, arguments); + + if (modified) { + for (var j = 0; j < shadowTemp.length; j++) { + style[shadowTemp[j][0]] = shadowTemp[j][2]; + } + } + } + + : orignalBrush; +}; + +/** + * 扇形 + * @module zrender/graphic/shape/Sector + */ + +var Sector = Path.extend({ + + type: 'sector', + + shape: { + + cx: 0, + + cy: 0, + + r0: 0, + + r: 0, + + startAngle: 0, + + endAngle: Math.PI * 2, + + clockwise: true + }, + + brush: fixClipWithShadow(Path.prototype.brush), + + buildPath: function (ctx, shape) { + + var x = shape.cx; + var y = shape.cy; + var r0 = Math.max(shape.r0 || 0, 0); + var r = Math.max(shape.r, 0); + var startAngle = shape.startAngle; + var endAngle = shape.endAngle; + var clockwise = shape.clockwise; + + var unitX = Math.cos(startAngle); + var unitY = Math.sin(startAngle); + + ctx.moveTo(unitX * r0 + x, unitY * r0 + y); + + ctx.lineTo(unitX * r + x, unitY * r + y); + + ctx.arc(x, y, r, startAngle, endAngle, !clockwise); + + ctx.lineTo( + Math.cos(endAngle) * r0 + x, + Math.sin(endAngle) * r0 + y + ); + + if (r0 !== 0) { + ctx.arc(x, y, r0, endAngle, startAngle, clockwise); + } + + ctx.closePath(); + } +}); + +/** + * 圆环 + * @module zrender/graphic/shape/Ring + */ + +var Ring = Path.extend({ + + type: 'ring', + + shape: { + cx: 0, + cy: 0, + r: 0, + r0: 0 + }, + + buildPath: function (ctx, shape) { + var x = shape.cx; + var y = shape.cy; + var PI2 = Math.PI * 2; + ctx.moveTo(x + shape.r, y); + ctx.arc(x, y, shape.r, 0, PI2, false); + ctx.moveTo(x + shape.r0, y); + ctx.arc(x, y, shape.r0, 0, PI2, true); + } +}); + +/** + * Catmull-Rom spline 插值折线 + * @module zrender/shape/util/smoothSpline + * @author pissang (https://www.github.com/pissang) + * Kener (@Kener-林峰, kener.linfeng@gmail.com) + * errorrik (errorrik@gmail.com) + */ + +/** + * @inner + */ +function interpolate(p0, p1, p2, p3, t, t2, t3) { + var v0 = (p2 - p0) * 0.5; + var v1 = (p3 - p1) * 0.5; + return (2 * (p1 - p2) + v0 + v1) * t3 + + (-3 * (p1 - p2) - 2 * v0 - v1) * t2 + + v0 * t + p1; +} + +/** + * @alias module:zrender/shape/util/smoothSpline + * @param {Array} points 线段顶点数组 + * @param {boolean} isLoop + * @return {Array} + */ +var smoothSpline = function (points, isLoop) { + var len$$1 = points.length; + var ret = []; + + var distance$$1 = 0; + for (var i = 1; i < len$$1; i++) { + distance$$1 += distance(points[i - 1], points[i]); + } + + var segs = distance$$1 / 2; + segs = segs < len$$1 ? len$$1 : segs; + for (var i = 0; i < segs; i++) { + var pos = i / (segs - 1) * (isLoop ? len$$1 : len$$1 - 1); + var idx = Math.floor(pos); + + var w = pos - idx; + + var p0; + var p1 = points[idx % len$$1]; + var p2; + var p3; + if (!isLoop) { + p0 = points[idx === 0 ? idx : idx - 1]; + p2 = points[idx > len$$1 - 2 ? len$$1 - 1 : idx + 1]; + p3 = points[idx > len$$1 - 3 ? len$$1 - 1 : idx + 2]; + } + else { + p0 = points[(idx - 1 + len$$1) % len$$1]; + p2 = points[(idx + 1) % len$$1]; + p3 = points[(idx + 2) % len$$1]; + } + + var w2 = w * w; + var w3 = w * w2; + + ret.push([ + interpolate(p0[0], p1[0], p2[0], p3[0], w, w2, w3), + interpolate(p0[1], p1[1], p2[1], p3[1], w, w2, w3) + ]); + } + return ret; +}; + +/** + * 贝塞尔平滑曲线 + * @module zrender/shape/util/smoothBezier + * @author pissang (https://www.github.com/pissang) + * Kener (@Kener-林峰, kener.linfeng@gmail.com) + * errorrik (errorrik@gmail.com) + */ + +/** + * 贝塞尔平滑曲线 + * @alias module:zrender/shape/util/smoothBezier + * @param {Array} points 线段顶点数组 + * @param {number} smooth 平滑等级, 0-1 + * @param {boolean} isLoop + * @param {Array} constraint 将计算出来的控制点约束在一个包围盒内 + * 比如 [[0, 0], [100, 100]], 这个包围盒会与 + * 整个折线的包围盒做一个并集用来约束控制点。 + * @param {Array} 计算出来的控制点数组 + */ +var smoothBezier = function (points, smooth, isLoop, constraint) { + var cps = []; + + var v = []; + var v1 = []; + var v2 = []; + var prevPoint; + var nextPoint; + + var min$$1; + var max$$1; + if (constraint) { + min$$1 = [Infinity, Infinity]; + max$$1 = [-Infinity, -Infinity]; + for (var i = 0, len$$1 = points.length; i < len$$1; i++) { + min(min$$1, min$$1, points[i]); + max(max$$1, max$$1, points[i]); + } + // 与指定的包围盒做并集 + min(min$$1, min$$1, constraint[0]); + max(max$$1, max$$1, constraint[1]); + } + + for (var i = 0, len$$1 = points.length; i < len$$1; i++) { + var point = points[i]; + + if (isLoop) { + prevPoint = points[i ? i - 1 : len$$1 - 1]; + nextPoint = points[(i + 1) % len$$1]; + } + else { + if (i === 0 || i === len$$1 - 1) { + cps.push(clone$1(points[i])); + continue; + } + else { + prevPoint = points[i - 1]; + nextPoint = points[i + 1]; + } + } + + sub(v, nextPoint, prevPoint); + + // use degree to scale the handle length + scale(v, v, smooth); + + var d0 = distance(point, prevPoint); + var d1 = distance(point, nextPoint); + var sum = d0 + d1; + if (sum !== 0) { + d0 /= sum; + d1 /= sum; + } + + scale(v1, v, -d0); + scale(v2, v, d1); + var cp0 = add([], point, v1); + var cp1 = add([], point, v2); + if (constraint) { + max(cp0, cp0, min$$1); + min(cp0, cp0, max$$1); + max(cp1, cp1, min$$1); + min(cp1, cp1, max$$1); + } + cps.push(cp0); + cps.push(cp1); + } + + if (isLoop) { + cps.push(cps.shift()); + } + + return cps; +}; + +function buildPath$1(ctx, shape, closePath) { + var points = shape.points; + var smooth = shape.smooth; + if (points && points.length >= 2) { + if (smooth && smooth !== 'spline') { + var controlPoints = smoothBezier( + points, smooth, closePath, shape.smoothConstraint + ); + + ctx.moveTo(points[0][0], points[0][1]); + var len = points.length; + for (var i = 0; i < (closePath ? len : len - 1); i++) { + var cp1 = controlPoints[i * 2]; + var cp2 = controlPoints[i * 2 + 1]; + var p = points[(i + 1) % len]; + ctx.bezierCurveTo( + cp1[0], cp1[1], cp2[0], cp2[1], p[0], p[1] + ); + } + } + else { + if (smooth === 'spline') { + points = smoothSpline(points, closePath); + } + + ctx.moveTo(points[0][0], points[0][1]); + for (var i = 1, l = points.length; i < l; i++) { + ctx.lineTo(points[i][0], points[i][1]); + } + } + + closePath && ctx.closePath(); + } +} + +/** + * 多边形 + * @module zrender/shape/Polygon + */ + +var Polygon = Path.extend({ + + type: 'polygon', + + shape: { + points: null, + + smooth: false, + + smoothConstraint: null + }, + + buildPath: function (ctx, shape) { + buildPath$1(ctx, shape, true); + } +}); + +/** + * @module zrender/graphic/shape/Polyline + */ + +var Polyline = Path.extend({ + + type: 'polyline', + + shape: { + points: null, + + smooth: false, + + smoothConstraint: null + }, + + style: { + stroke: '#000', + + fill: null + }, + + buildPath: function (ctx, shape) { + buildPath$1(ctx, shape, false); + } +}); + +/** + * Sub-pixel optimize for canvas rendering, prevent from blur + * when rendering a thin vertical/horizontal line. + */ + +var round = Math.round; + +/** + * Sub pixel optimize line for canvas + * + * @param {Object} outputShape The modification will be performed on `outputShape`. + * `outputShape` and `inputShape` can be the same object. + * `outputShape` object can be used repeatly, because all of + * the `x1`, `x2`, `y1`, `y2` will be assigned in this method. + * @param {Object} [inputShape] + * @param {number} [inputShape.x1] + * @param {number} [inputShape.y1] + * @param {number} [inputShape.x2] + * @param {number} [inputShape.y2] + * @param {Object} [style] + * @param {number} [style.lineWidth] + */ +function subPixelOptimizeLine$1(outputShape, inputShape, style) { + var lineWidth = style && style.lineWidth; + + if (!inputShape || !lineWidth) { + return; + } + + var x1 = inputShape.x1; + var x2 = inputShape.x2; + var y1 = inputShape.y1; + var y2 = inputShape.y2; + + if (round(x1 * 2) === round(x2 * 2)) { + outputShape.x1 = outputShape.x2 = subPixelOptimize$1(x1, lineWidth, true); + } + else { + outputShape.x1 = x1; + outputShape.x2 = x2; + } + if (round(y1 * 2) === round(y2 * 2)) { + outputShape.y1 = outputShape.y2 = subPixelOptimize$1(y1, lineWidth, true); + } + else { + outputShape.y1 = y1; + outputShape.y2 = y2; + } +} + +/** + * Sub pixel optimize rect for canvas + * + * @param {Object} outputShape The modification will be performed on `outputShape`. + * `outputShape` and `inputShape` can be the same object. + * `outputShape` object can be used repeatly, because all of + * the `x`, `y`, `width`, `height` will be assigned in this method. + * @param {Object} [inputShape] + * @param {number} [inputShape.x] + * @param {number} [inputShape.y] + * @param {number} [inputShape.width] + * @param {number} [inputShape.height] + * @param {Object} [style] + * @param {number} [style.lineWidth] + */ +function subPixelOptimizeRect$1(outputShape, inputShape, style) { + var lineWidth = style && style.lineWidth; + + if (!inputShape || !lineWidth) { + return; + } + + var originX = inputShape.x; + var originY = inputShape.y; + var originWidth = inputShape.width; + var originHeight = inputShape.height; + + outputShape.x = subPixelOptimize$1(originX, lineWidth, true); + outputShape.y = subPixelOptimize$1(originY, lineWidth, true); + outputShape.width = Math.max( + subPixelOptimize$1(originX + originWidth, lineWidth, false) - outputShape.x, + originWidth === 0 ? 0 : 1 + ); + outputShape.height = Math.max( + subPixelOptimize$1(originY + originHeight, lineWidth, false) - outputShape.y, + originHeight === 0 ? 0 : 1 + ); +} + +/** + * Sub pixel optimize for canvas + * + * @param {number} position Coordinate, such as x, y + * @param {number} lineWidth Should be nonnegative integer. + * @param {boolean=} positiveOrNegative Default false (negative). + * @return {number} Optimized position. + */ +function subPixelOptimize$1(position, lineWidth, positiveOrNegative) { + // Assure that (position + lineWidth / 2) is near integer edge, + // otherwise line will be fuzzy in canvas. + var doubledPosition = round(position * 2); + return (doubledPosition + round(lineWidth)) % 2 === 0 + ? doubledPosition / 2 + : (doubledPosition + (positiveOrNegative ? 1 : -1)) / 2; +} + +/** + * 矩形 + * @module zrender/graphic/shape/Rect + */ + +// Avoid create repeatly. +var subPixelOptimizeOutputShape = {}; + +var Rect = Path.extend({ + + type: 'rect', + + shape: { + // 左上、右上、右下、左下角的半径依次为r1、r2、r3、r4 + // r缩写为1 相当于 [1, 1, 1, 1] + // r缩写为[1] 相当于 [1, 1, 1, 1] + // r缩写为[1, 2] 相当于 [1, 2, 1, 2] + // r缩写为[1, 2, 3] 相当于 [1, 2, 3, 2] + r: 0, + + x: 0, + y: 0, + width: 0, + height: 0 + }, + + buildPath: function (ctx, shape) { + var x; + var y; + var width; + var height; + + if (this.subPixelOptimize) { + subPixelOptimizeRect$1(subPixelOptimizeOutputShape, shape, this.style); + x = subPixelOptimizeOutputShape.x; + y = subPixelOptimizeOutputShape.y; + width = subPixelOptimizeOutputShape.width; + height = subPixelOptimizeOutputShape.height; + subPixelOptimizeOutputShape.r = shape.r; + shape = subPixelOptimizeOutputShape; + } + else { + x = shape.x; + y = shape.y; + width = shape.width; + height = shape.height; + } + + if (!shape.r) { + ctx.rect(x, y, width, height); + } + else { + buildPath(ctx, shape); + } + ctx.closePath(); + return; + } +}); + +/** + * 直线 + * @module zrender/graphic/shape/Line + */ + +// Avoid create repeatly. +var subPixelOptimizeOutputShape$1 = {}; + +var Line = Path.extend({ + + type: 'line', + + shape: { + // Start point + x1: 0, + y1: 0, + // End point + x2: 0, + y2: 0, + + percent: 1 + }, + + style: { + stroke: '#000', + fill: null + }, + + buildPath: function (ctx, shape) { + var x1; + var y1; + var x2; + var y2; + + if (this.subPixelOptimize) { + subPixelOptimizeLine$1(subPixelOptimizeOutputShape$1, shape, this.style); + x1 = subPixelOptimizeOutputShape$1.x1; + y1 = subPixelOptimizeOutputShape$1.y1; + x2 = subPixelOptimizeOutputShape$1.x2; + y2 = subPixelOptimizeOutputShape$1.y2; + } + else { + x1 = shape.x1; + y1 = shape.y1; + x2 = shape.x2; + y2 = shape.y2; + } + + var percent = shape.percent; + + if (percent === 0) { + return; + } + + ctx.moveTo(x1, y1); + + if (percent < 1) { + x2 = x1 * (1 - percent) + x2 * percent; + y2 = y1 * (1 - percent) + y2 * percent; + } + ctx.lineTo(x2, y2); + }, + + /** + * Get point at percent + * @param {number} percent + * @return {Array.} + */ + pointAt: function (p) { + var shape = this.shape; + return [ + shape.x1 * (1 - p) + shape.x2 * p, + shape.y1 * (1 - p) + shape.y2 * p + ]; + } +}); + +/** + * 贝塞尔曲线 + * @module zrender/shape/BezierCurve + */ + +var out = []; + +function someVectorAt(shape, t, isTangent) { + var cpx2 = shape.cpx2; + var cpy2 = shape.cpy2; + if (cpx2 === null || cpy2 === null) { + return [ + (isTangent ? cubicDerivativeAt : cubicAt)(shape.x1, shape.cpx1, shape.cpx2, shape.x2, t), + (isTangent ? cubicDerivativeAt : cubicAt)(shape.y1, shape.cpy1, shape.cpy2, shape.y2, t) + ]; + } + else { + return [ + (isTangent ? quadraticDerivativeAt : quadraticAt)(shape.x1, shape.cpx1, shape.x2, t), + (isTangent ? quadraticDerivativeAt : quadraticAt)(shape.y1, shape.cpy1, shape.y2, t) + ]; + } +} + +var BezierCurve = Path.extend({ + + type: 'bezier-curve', + + shape: { + x1: 0, + y1: 0, + x2: 0, + y2: 0, + cpx1: 0, + cpy1: 0, + // cpx2: 0, + // cpy2: 0 + + // Curve show percent, for animating + percent: 1 + }, + + style: { + stroke: '#000', + fill: null + }, + + buildPath: function (ctx, shape) { + var x1 = shape.x1; + var y1 = shape.y1; + var x2 = shape.x2; + var y2 = shape.y2; + var cpx1 = shape.cpx1; + var cpy1 = shape.cpy1; + var cpx2 = shape.cpx2; + var cpy2 = shape.cpy2; + var percent = shape.percent; + if (percent === 0) { + return; + } + + ctx.moveTo(x1, y1); + + if (cpx2 == null || cpy2 == null) { + if (percent < 1) { + quadraticSubdivide( + x1, cpx1, x2, percent, out + ); + cpx1 = out[1]; + x2 = out[2]; + quadraticSubdivide( + y1, cpy1, y2, percent, out + ); + cpy1 = out[1]; + y2 = out[2]; + } + + ctx.quadraticCurveTo( + cpx1, cpy1, + x2, y2 + ); + } + else { + if (percent < 1) { + cubicSubdivide( + x1, cpx1, cpx2, x2, percent, out + ); + cpx1 = out[1]; + cpx2 = out[2]; + x2 = out[3]; + cubicSubdivide( + y1, cpy1, cpy2, y2, percent, out + ); + cpy1 = out[1]; + cpy2 = out[2]; + y2 = out[3]; + } + ctx.bezierCurveTo( + cpx1, cpy1, + cpx2, cpy2, + x2, y2 + ); + } + }, + + /** + * Get point at percent + * @param {number} t + * @return {Array.} + */ + pointAt: function (t) { + return someVectorAt(this.shape, t, false); + }, + + /** + * Get tangent at percent + * @param {number} t + * @return {Array.} + */ + tangentAt: function (t) { + var p = someVectorAt(this.shape, t, true); + return normalize(p, p); + } +}); + +/** + * 圆弧 + * @module zrender/graphic/shape/Arc + */ + +var Arc = Path.extend({ + + type: 'arc', + + shape: { + + cx: 0, + + cy: 0, + + r: 0, + + startAngle: 0, + + endAngle: Math.PI * 2, + + clockwise: true + }, + + style: { + + stroke: '#000', + + fill: null + }, + + buildPath: function (ctx, shape) { + + var x = shape.cx; + var y = shape.cy; + var r = Math.max(shape.r, 0); + var startAngle = shape.startAngle; + var endAngle = shape.endAngle; + var clockwise = shape.clockwise; + + var unitX = Math.cos(startAngle); + var unitY = Math.sin(startAngle); + + ctx.moveTo(unitX * r + x, unitY * r + y); + ctx.arc(x, y, r, startAngle, endAngle, !clockwise); + } +}); + +// CompoundPath to improve performance + +var CompoundPath = Path.extend({ + + type: 'compound', + + shape: { + + paths: null + }, + + _updatePathDirty: function () { + var dirtyPath = this.__dirtyPath; + var paths = this.shape.paths; + for (var i = 0; i < paths.length; i++) { + // Mark as dirty if any subpath is dirty + dirtyPath = dirtyPath || paths[i].__dirtyPath; + } + this.__dirtyPath = dirtyPath; + this.__dirty = this.__dirty || dirtyPath; + }, + + beforeBrush: function () { + this._updatePathDirty(); + var paths = this.shape.paths || []; + var scale = this.getGlobalScale(); + // Update path scale + for (var i = 0; i < paths.length; i++) { + if (!paths[i].path) { + paths[i].createPathProxy(); + } + paths[i].path.setScale(scale[0], scale[1], paths[i].segmentIgnoreThreshold); + } + }, + + buildPath: function (ctx, shape) { + var paths = shape.paths || []; + for (var i = 0; i < paths.length; i++) { + paths[i].buildPath(ctx, paths[i].shape, true); + } + }, + + afterBrush: function () { + var paths = this.shape.paths || []; + for (var i = 0; i < paths.length; i++) { + paths[i].__dirtyPath = false; + } + }, + + getBoundingRect: function () { + this._updatePathDirty(); + return Path.prototype.getBoundingRect.call(this); + } +}); + +/** + * @param {Array.} colorStops + */ +var Gradient = function (colorStops) { + + this.colorStops = colorStops || []; + +}; + +Gradient.prototype = { + + constructor: Gradient, + + addColorStop: function (offset, color) { + this.colorStops.push({ + + offset: offset, + + color: color + }); + } + +}; + +/** + * x, y, x2, y2 are all percent from 0 to 1 + * @param {number} [x=0] + * @param {number} [y=0] + * @param {number} [x2=1] + * @param {number} [y2=0] + * @param {Array.} colorStops + * @param {boolean} [globalCoord=false] + */ +var LinearGradient = function (x, y, x2, y2, colorStops, globalCoord) { + // Should do nothing more in this constructor. Because gradient can be + // declard by `color: {type: 'linear', colorStops: ...}`, where + // this constructor will not be called. + + this.x = x == null ? 0 : x; + + this.y = y == null ? 0 : y; + + this.x2 = x2 == null ? 1 : x2; + + this.y2 = y2 == null ? 0 : y2; + + // Can be cloned + this.type = 'linear'; + + // If use global coord + this.global = globalCoord || false; + + Gradient.call(this, colorStops); +}; + +LinearGradient.prototype = { + + constructor: LinearGradient +}; + +inherits(LinearGradient, Gradient); + +/** + * x, y, r are all percent from 0 to 1 + * @param {number} [x=0.5] + * @param {number} [y=0.5] + * @param {number} [r=0.5] + * @param {Array.} [colorStops] + * @param {boolean} [globalCoord=false] + */ +var RadialGradient = function (x, y, r, colorStops, globalCoord) { + // Should do nothing more in this constructor. Because gradient can be + // declard by `color: {type: 'radial', colorStops: ...}`, where + // this constructor will not be called. + + this.x = x == null ? 0.5 : x; + + this.y = y == null ? 0.5 : y; + + this.r = r == null ? 0.5 : r; + + // Can be cloned + this.type = 'radial'; + + // If use global coord + this.global = globalCoord || false; + + Gradient.call(this, colorStops); +}; + +RadialGradient.prototype = { + + constructor: RadialGradient +}; + +inherits(RadialGradient, Gradient); + +/** + * Displayable for incremental rendering. It will be rendered in a separate layer + * IncrementalDisplay have two main methods. `clearDisplayables` and `addDisplayables` + * addDisplayables will render the added displayables incremetally. + * + * It use a not clearFlag to tell the painter don't clear the layer if it's the first element. + */ +// TODO Style override ? +function IncrementalDisplayble(opts) { + + Displayable.call(this, opts); + + this._displayables = []; + + this._temporaryDisplayables = []; + + this._cursor = 0; + + this.notClear = true; +} + +IncrementalDisplayble.prototype.incremental = true; + +IncrementalDisplayble.prototype.clearDisplaybles = function () { + this._displayables = []; + this._temporaryDisplayables = []; + this._cursor = 0; + this.dirty(); + + this.notClear = false; +}; + +IncrementalDisplayble.prototype.addDisplayable = function (displayable, notPersistent) { + if (notPersistent) { + this._temporaryDisplayables.push(displayable); + } + else { + this._displayables.push(displayable); + } + this.dirty(); +}; + +IncrementalDisplayble.prototype.addDisplayables = function (displayables, notPersistent) { + notPersistent = notPersistent || false; + for (var i = 0; i < displayables.length; i++) { + this.addDisplayable(displayables[i], notPersistent); + } +}; + +IncrementalDisplayble.prototype.eachPendingDisplayable = function (cb) { + for (var i = this._cursor; i < this._displayables.length; i++) { + cb && cb(this._displayables[i]); + } + for (var i = 0; i < this._temporaryDisplayables.length; i++) { + cb && cb(this._temporaryDisplayables[i]); + } +}; + +IncrementalDisplayble.prototype.update = function () { + this.updateTransform(); + for (var i = this._cursor; i < this._displayables.length; i++) { + var displayable = this._displayables[i]; + // PENDING + displayable.parent = this; + displayable.update(); + displayable.parent = null; + } + for (var i = 0; i < this._temporaryDisplayables.length; i++) { + var displayable = this._temporaryDisplayables[i]; + // PENDING + displayable.parent = this; + displayable.update(); + displayable.parent = null; + } +}; + +IncrementalDisplayble.prototype.brush = function (ctx, prevEl) { + // Render persistant displayables. + for (var i = this._cursor; i < this._displayables.length; i++) { + var displayable = this._displayables[i]; + displayable.beforeBrush && displayable.beforeBrush(ctx); + displayable.brush(ctx, i === this._cursor ? null : this._displayables[i - 1]); + displayable.afterBrush && displayable.afterBrush(ctx); + } + this._cursor = i; + // Render temporary displayables. + for (var i = 0; i < this._temporaryDisplayables.length; i++) { + var displayable = this._temporaryDisplayables[i]; + displayable.beforeBrush && displayable.beforeBrush(ctx); + displayable.brush(ctx, i === 0 ? null : this._temporaryDisplayables[i - 1]); + displayable.afterBrush && displayable.afterBrush(ctx); + } + + this._temporaryDisplayables = []; + + this.notClear = true; +}; + +var m = []; +IncrementalDisplayble.prototype.getBoundingRect = function () { + if (!this._rect) { + var rect = new BoundingRect(Infinity, Infinity, -Infinity, -Infinity); + for (var i = 0; i < this._displayables.length; i++) { + var displayable = this._displayables[i]; + var childRect = displayable.getBoundingRect().clone(); + if (displayable.needLocalTransform()) { + childRect.applyTransform(displayable.getLocalTransform(m)); + } + rect.union(childRect); + } + this._rect = rect; + } + return this._rect; +}; + +IncrementalDisplayble.prototype.contain = function (x, y) { + var localPos = this.transformCoordToLocal(x, y); + var rect = this.getBoundingRect(); + + if (rect.contain(localPos[0], localPos[1])) { + for (var i = 0; i < this._displayables.length; i++) { + var displayable = this._displayables[i]; + if (displayable.contain(x, y)) { + return true; + } + } + } + return false; +}; + +inherits(IncrementalDisplayble, Displayable); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var mathMax$1 = Math.max; +var mathMin$1 = Math.min; + +var EMPTY_OBJ = {}; + +var Z2_EMPHASIS_LIFT = 1; + +// key: label model property nane, value: style property name. +var CACHED_LABEL_STYLE_PROPERTIES = { + color: 'textFill', + textBorderColor: 'textStroke', + textBorderWidth: 'textStrokeWidth' +}; + +var EMPHASIS = 'emphasis'; +var NORMAL = 'normal'; + +// Reserve 0 as default. +var _highlightNextDigit = 1; +var _highlightKeyMap = {}; + + +/** + * Extend shape with parameters + */ +function extendShape(opts) { + return Path.extend(opts); +} + +/** + * Extend path + */ +function extendPath(pathData, opts) { + return extendFromString(pathData, opts); +} + +/** + * Create a path element from path data string + * @param {string} pathData + * @param {Object} opts + * @param {module:zrender/core/BoundingRect} rect + * @param {string} [layout=cover] 'center' or 'cover' + */ +function makePath(pathData, opts, rect, layout) { + var path = createFromString(pathData, opts); + if (rect) { + if (layout === 'center') { + rect = centerGraphic(rect, path.getBoundingRect()); + } + resizePath(path, rect); + } + return path; +} + +/** + * Create a image element from image url + * @param {string} imageUrl image url + * @param {Object} opts options + * @param {module:zrender/core/BoundingRect} rect constrain rect + * @param {string} [layout=cover] 'center' or 'cover' + */ +function makeImage(imageUrl, rect, layout) { + var path = new ZImage({ + style: { + image: imageUrl, + x: rect.x, + y: rect.y, + width: rect.width, + height: rect.height + }, + onload: function (img) { + if (layout === 'center') { + var boundingRect = { + width: img.width, + height: img.height + }; + path.setStyle(centerGraphic(rect, boundingRect)); + } + } + }); + return path; +} + +/** + * Get position of centered element in bounding box. + * + * @param {Object} rect element local bounding box + * @param {Object} boundingRect constraint bounding box + * @return {Object} element position containing x, y, width, and height + */ +function centerGraphic(rect, boundingRect) { + // Set rect to center, keep width / height ratio. + var aspect = boundingRect.width / boundingRect.height; + var width = rect.height * aspect; + var height; + if (width <= rect.width) { + height = rect.height; + } + else { + width = rect.width; + height = width / aspect; + } + var cx = rect.x + rect.width / 2; + var cy = rect.y + rect.height / 2; + + return { + x: cx - width / 2, + y: cy - height / 2, + width: width, + height: height + }; +} + +var mergePath = mergePath$1; + +/** + * Resize a path to fit the rect + * @param {module:zrender/graphic/Path} path + * @param {Object} rect + */ +function resizePath(path, rect) { + if (!path.applyTransform) { + return; + } + + var pathRect = path.getBoundingRect(); + + var m = pathRect.calculateTransform(rect); + + path.applyTransform(m); +} + +/** + * Sub pixel optimize line for canvas + * + * @param {Object} param + * @param {Object} [param.shape] + * @param {number} [param.shape.x1] + * @param {number} [param.shape.y1] + * @param {number} [param.shape.x2] + * @param {number} [param.shape.y2] + * @param {Object} [param.style] + * @param {number} [param.style.lineWidth] + * @return {Object} Modified param + */ +function subPixelOptimizeLine(param) { + subPixelOptimizeLine$1(param.shape, param.shape, param.style); + return param; +} + +/** + * Sub pixel optimize rect for canvas + * + * @param {Object} param + * @param {Object} [param.shape] + * @param {number} [param.shape.x] + * @param {number} [param.shape.y] + * @param {number} [param.shape.width] + * @param {number} [param.shape.height] + * @param {Object} [param.style] + * @param {number} [param.style.lineWidth] + * @return {Object} Modified param + */ +function subPixelOptimizeRect(param) { + subPixelOptimizeRect$1(param.shape, param.shape, param.style); + return param; +} + +/** + * Sub pixel optimize for canvas + * + * @param {number} position Coordinate, such as x, y + * @param {number} lineWidth Should be nonnegative integer. + * @param {boolean=} positiveOrNegative Default false (negative). + * @return {number} Optimized position. + */ +var subPixelOptimize = subPixelOptimize$1; + + +function hasFillOrStroke(fillOrStroke) { + return fillOrStroke != null && fillOrStroke !== 'none'; +} + +// Most lifted color are duplicated. +var liftedColorMap = createHashMap(); +var liftedColorCount = 0; + +function liftColor(color) { + if (typeof color !== 'string') { + return color; + } + var liftedColor = liftedColorMap.get(color); + if (!liftedColor) { + liftedColor = lift(color, -0.1); + if (liftedColorCount < 10000) { + liftedColorMap.set(color, liftedColor); + liftedColorCount++; + } + } + return liftedColor; +} + +function cacheElementStl(el) { + if (!el.__hoverStlDirty) { + return; + } + el.__hoverStlDirty = false; + + var hoverStyle = el.__hoverStl; + if (!hoverStyle) { + el.__cachedNormalStl = el.__cachedNormalZ2 = null; + return; + } + + var normalStyle = el.__cachedNormalStl = {}; + el.__cachedNormalZ2 = el.z2; + var elStyle = el.style; + + for (var name in hoverStyle) { + // See comment in `singleEnterEmphasis`. + if (hoverStyle[name] != null) { + normalStyle[name] = elStyle[name]; + } + } + + // Always cache fill and stroke to normalStyle for lifting color. + normalStyle.fill = elStyle.fill; + normalStyle.stroke = elStyle.stroke; +} + +function singleEnterEmphasis(el) { + var hoverStl = el.__hoverStl; + + if (!hoverStl || el.__highlighted) { + return; + } + + var useHoverLayer = el.useHoverLayer; + el.__highlighted = useHoverLayer ? 'layer' : 'plain'; + + var zr = el.__zr; + if (el.isGroup || (!zr && useHoverLayer)) { + return; + } + + var elTarget = el; + var targetStyle = el.style; + + if (useHoverLayer) { + elTarget = zr.addHover(el); + targetStyle = elTarget.style; + } + + rollbackDefaultTextStyle(targetStyle); + + if (!useHoverLayer) { + cacheElementStl(elTarget); + } + + // styles can be: + // { + // label: { + // show: false, + // position: 'outside', + // fontSize: 18 + // }, + // emphasis: { + // label: { + // show: true + // } + // } + // }, + // where properties of `emphasis` may not appear in `normal`. We previously use + // module:echarts/util/model#defaultEmphasis to merge `normal` to `emphasis`. + // But consider rich text and setOption in merge mode, it is impossible to cover + // all properties in merge. So we use merge mode when setting style here. + // But we choose the merge strategy that only properties that is not `null/undefined`. + // Because when making a textStyle (espacially rich text), it is not easy to distinguish + // `hasOwnProperty` and `null/undefined` in code, so we trade them as the same for simplicity. + // But this strategy brings a trouble that `null/undefined` can not be used to remove + // style any more in `emphasis`. Users can both set properties directly on normal and + // emphasis to avoid this issue, or we might support `'none'` for this case if required. + targetStyle.extendFrom(hoverStl); + + setDefaultHoverFillStroke(targetStyle, hoverStl, 'fill'); + setDefaultHoverFillStroke(targetStyle, hoverStl, 'stroke'); + + applyDefaultTextStyle(targetStyle); + + if (!useHoverLayer) { + el.dirty(false); + el.z2 += Z2_EMPHASIS_LIFT; + } +} + +function setDefaultHoverFillStroke(targetStyle, hoverStyle, prop) { + if (!hasFillOrStroke(hoverStyle[prop]) && hasFillOrStroke(targetStyle[prop])) { + targetStyle[prop] = liftColor(targetStyle[prop]); + } +} + +function singleEnterNormal(el) { + var highlighted = el.__highlighted; + + if (!highlighted) { + return; + } + + el.__highlighted = false; + + if (el.isGroup) { + return; + } + + if (highlighted === 'layer') { + el.__zr && el.__zr.removeHover(el); + } + else { + var style = el.style; + + var normalStl = el.__cachedNormalStl; + if (normalStl) { + rollbackDefaultTextStyle(style); + el.setStyle(normalStl); + applyDefaultTextStyle(style); + } + // `__cachedNormalZ2` will not be reset if calling `setElementHoverStyle` + // when `el` is on emphasis state. So here by comparing with 1, we try + // hard to make the bug case rare. + var normalZ2 = el.__cachedNormalZ2; + if (normalZ2 != null && el.z2 - normalZ2 === Z2_EMPHASIS_LIFT) { + el.z2 = normalZ2; + } + } +} + +function traverseUpdate(el, updater, commonParam) { + // If root is group, also enter updater for `highDownOnUpdate`. + var fromState = NORMAL; + var toState = NORMAL; + var trigger; + // See the rule of `highDownOnUpdate` on `graphic.setAsHighDownDispatcher`. + el.__highlighted && (fromState = EMPHASIS, trigger = true); + updater(el, commonParam); + el.__highlighted && (toState = EMPHASIS, trigger = true); + + el.isGroup && el.traverse(function (child) { + !child.isGroup && updater(child, commonParam); + }); + + trigger && el.__highDownOnUpdate && el.__highDownOnUpdate(fromState, toState); +} + +/** + * Set hover style (namely "emphasis style") of element, based on the current + * style of the given `el`. + * This method should be called after all of the normal styles have been adopted + * to the `el`. See the reason on `setHoverStyle`. + * + * @param {module:zrender/Element} el Should not be `zrender/container/Group`. + * @param {Object} [el.hoverStyle] Can be set on el or its descendants, + * e.g., `el.hoverStyle = ...; graphic.setHoverStyle(el); `. + * Often used when item group has a label element and it's hoverStyle is different. + * @param {Object|boolean} [hoverStl] The specified hover style. + * If set as `false`, disable the hover style. + * Similarly, The `el.hoverStyle` can alse be set + * as `false` to disable the hover style. + * Otherwise, use the default hover style if not provided. + */ +function setElementHoverStyle(el, hoverStl) { + // For performance consideration, it might be better to make the "hover style" only the + // difference properties from the "normal style", but not a entire copy of all styles. + hoverStl = el.__hoverStl = hoverStl !== false && (el.hoverStyle || hoverStl || {}); + el.__hoverStlDirty = true; + + // FIXME + // It is not completely right to save "normal"/"emphasis" flag on elements. + // It probably should be saved on `data` of series. Consider the cases: + // (1) A highlighted elements are moved out of the view port and re-enter + // again by dataZoom. + // (2) call `setOption` and replace elements totally when they are highlighted. + if (el.__highlighted) { + // Consider the case: + // The styles of a highlighted `el` is being updated. The new "emphasis style" + // should be adapted to the `el`. Notice here new "normal styles" should have + // been set outside and the cached "normal style" is out of date. + el.__cachedNormalStl = null; + // Do not clear `__cachedNormalZ2` here, because setting `z2` is not a constraint + // of this method. In most cases, `z2` is not set and hover style should be able + // to rollback. Of course, that would bring bug, but only in a rare case, see + // `doSingleLeaveHover` for details. + singleEnterNormal(el); + + singleEnterEmphasis(el); + } +} + +function onElementMouseOver(e) { + !shouldSilent(this, e) + // "emphasis" event highlight has higher priority than mouse highlight. + && !this.__highByOuter + && traverseUpdate(this, singleEnterEmphasis); +} + +function onElementMouseOut(e) { + !shouldSilent(this, e) + // "emphasis" event highlight has higher priority than mouse highlight. + && !this.__highByOuter + && traverseUpdate(this, singleEnterNormal); +} + +function onElementEmphasisEvent(highlightDigit) { + this.__highByOuter |= 1 << (highlightDigit || 0); + traverseUpdate(this, singleEnterEmphasis); +} + +function onElementNormalEvent(highlightDigit) { + !(this.__highByOuter &= ~(1 << (highlightDigit || 0))) + && traverseUpdate(this, singleEnterNormal); +} + +function shouldSilent(el, e) { + return el.__highDownSilentOnTouch && e.zrByTouch; +} + +/** + * Set hover style (namely "emphasis style") of element, + * based on the current style of the given `el`. + * + * (1) + * **CONSTRAINTS** for this method: + * This method MUST be called after all of the normal styles having been adopted + * to the `el`. + * The input `hoverStyle` (that is, "emphasis style") MUST be the subset of the + * "normal style" having been set to the el. + * `color` MUST be one of the "normal styles" (because color might be lifted as + * a default hover style). + * + * The reason: this method treat the current style of the `el` as the "normal style" + * and cache them when enter/update the "emphasis style". Consider the case: the `el` + * is in "emphasis" state and `setOption`/`dispatchAction` trigger the style updating + * logic, where the el should shift from the original emphasis style to the new + * "emphasis style" and should be able to "downplay" back to the new "normal style". + * + * Indeed, it is error-prone to make a interface has so many constraints, but I have + * not found a better solution yet to fit the backward compatibility, performance and + * the current programming style. + * + * (2) + * Call the method for a "root" element once. Do not call it for each descendants. + * If the descendants elemenets of a group has itself hover style different from the + * root group, we can simply mount the style on `el.hoverStyle` for them, but should + * not call this method for them. + * + * (3) These input parameters can be set directly on `el`: + * + * @param {module:zrender/Element} el + * @param {Object} [el.hoverStyle] See `graphic.setElementHoverStyle`. + * @param {boolean} [el.highDownSilentOnTouch=false] See `graphic.setAsHighDownDispatcher`. + * @param {Function} [el.highDownOnUpdate] See `graphic.setAsHighDownDispatcher`. + * @param {Object|boolean} [hoverStyle] See `graphic.setElementHoverStyle`. + */ +function setHoverStyle(el, hoverStyle) { + setAsHighDownDispatcher(el, true); + traverseUpdate(el, setElementHoverStyle, hoverStyle); +} + +/** + * @param {module:zrender/Element} el + * @param {Function} [el.highDownOnUpdate] Called when state updated. + * Since `setHoverStyle` has the constraint that it must be called after + * all of the normal style updated, `highDownOnUpdate` is not needed to + * trigger if both `fromState` and `toState` is 'normal', and needed to + * trigger if both `fromState` and `toState` is 'emphasis', which enables + * to sync outside style settings to "emphasis" state. + * @this {string} This dispatcher `el`. + * @param {string} fromState Can be "normal" or "emphasis". + * `fromState` might equal to `toState`, + * for example, when this method is called when `el` is + * on "emphasis" state. + * @param {string} toState Can be "normal" or "emphasis". + * + * FIXME + * CAUTION: Do not expose `highDownOnUpdate` outside echarts. + * Because it is not a complete solution. The update + * listener should not have been mount in element, + * and the normal/emphasis state should not have + * mantained on elements. + * + * @param {boolean} [el.highDownSilentOnTouch=false] + * In touch device, mouseover event will be trigger on touchstart event + * (see module:zrender/dom/HandlerProxy). By this mechanism, we can + * conveniently use hoverStyle when tap on touch screen without additional + * code for compatibility. + * But if the chart/component has select feature, which usually also use + * hoverStyle, there might be conflict between 'select-highlight' and + * 'hover-highlight' especially when roam is enabled (see geo for example). + * In this case, `highDownSilentOnTouch` should be used to disable + * hover-highlight on touch device. + * @param {boolean} [asDispatcher=true] If `false`, do not set as "highDownDispatcher". + */ +function setAsHighDownDispatcher(el, asDispatcher) { + var disable = asDispatcher === false; + // Make `highDownSilentOnTouch` and `highDownOnUpdate` only work after + // `setAsHighDownDispatcher` called. Avoid it is modified by user unexpectedly. + el.__highDownSilentOnTouch = el.highDownSilentOnTouch; + el.__highDownOnUpdate = el.highDownOnUpdate; + + // Simple optimize, since this method might be + // called for each elements of a group in some cases. + if (!disable || el.__highDownDispatcher) { + var method = disable ? 'off' : 'on'; + + // Duplicated function will be auto-ignored, see Eventful.js. + el[method]('mouseover', onElementMouseOver)[method]('mouseout', onElementMouseOut); + // Emphasis, normal can be triggered manually by API or other components like hover link. + el[method]('emphasis', onElementEmphasisEvent)[method]('normal', onElementNormalEvent); + // Also keep previous record. + el.__highByOuter = el.__highByOuter || 0; + + el.__highDownDispatcher = !disable; + } +} + +/** + * @param {module:zrender/src/Element} el + * @return {boolean} + */ +function isHighDownDispatcher(el) { + return !!(el && el.__highDownDispatcher); +} + +/** + * Support hightlight/downplay record on each elements. + * For the case: hover highlight/downplay (legend, visualMap, ...) and + * user triggerred hightlight/downplay should not conflict. + * Only all of the highlightDigit cleared, return to normal. + * @param {string} highlightKey + * @return {number} highlightDigit + */ +function getHighlightDigit(highlightKey) { + var highlightDigit = _highlightKeyMap[highlightKey]; + if (highlightDigit == null && _highlightNextDigit <= 32) { + highlightDigit = _highlightKeyMap[highlightKey] = _highlightNextDigit++; + } + return highlightDigit; +} + +/** + * See more info in `setTextStyleCommon`. + * @param {Object|module:zrender/graphic/Style} normalStyle + * @param {Object} emphasisStyle + * @param {module:echarts/model/Model} normalModel + * @param {module:echarts/model/Model} emphasisModel + * @param {Object} opt Check `opt` of `setTextStyleCommon` to find other props. + * @param {string|Function} [opt.defaultText] + * @param {module:echarts/model/Model} [opt.labelFetcher] Fetch text by + * `opt.labelFetcher.getFormattedLabel(opt.labelDataIndex, 'normal'/'emphasis', null, opt.labelDimIndex)` + * @param {module:echarts/model/Model} [opt.labelDataIndex] Fetch text by + * `opt.textFetcher.getFormattedLabel(opt.labelDataIndex, 'normal'/'emphasis', null, opt.labelDimIndex)` + * @param {module:echarts/model/Model} [opt.labelDimIndex] Fetch text by + * `opt.textFetcher.getFormattedLabel(opt.labelDataIndex, 'normal'/'emphasis', null, opt.labelDimIndex)` + * @param {Object} [normalSpecified] + * @param {Object} [emphasisSpecified] + */ +function setLabelStyle( + normalStyle, emphasisStyle, + normalModel, emphasisModel, + opt, + normalSpecified, emphasisSpecified +) { + opt = opt || EMPTY_OBJ; + var labelFetcher = opt.labelFetcher; + var labelDataIndex = opt.labelDataIndex; + var labelDimIndex = opt.labelDimIndex; + + // This scenario, `label.normal.show = true; label.emphasis.show = false`, + // is not supported util someone requests. + + var showNormal = normalModel.getShallow('show'); + var showEmphasis = emphasisModel.getShallow('show'); + + // Consider performance, only fetch label when necessary. + // If `normal.show` is `false` and `emphasis.show` is `true` and `emphasis.formatter` is not set, + // label should be displayed, where text is fetched by `normal.formatter` or `opt.defaultText`. + var baseText; + if (showNormal || showEmphasis) { + if (labelFetcher) { + baseText = labelFetcher.getFormattedLabel(labelDataIndex, 'normal', null, labelDimIndex); + } + if (baseText == null) { + baseText = isFunction$1(opt.defaultText) ? opt.defaultText(labelDataIndex, opt) : opt.defaultText; + } + } + var normalStyleText = showNormal ? baseText : null; + var emphasisStyleText = showEmphasis + ? retrieve2( + labelFetcher + ? labelFetcher.getFormattedLabel(labelDataIndex, 'emphasis', null, labelDimIndex) + : null, + baseText + ) + : null; + + // Optimize: If style.text is null, text will not be drawn. + if (normalStyleText != null || emphasisStyleText != null) { + // Always set `textStyle` even if `normalStyle.text` is null, because default + // values have to be set on `normalStyle`. + // If we set default values on `emphasisStyle`, consider case: + // Firstly, `setOption(... label: {normal: {text: null}, emphasis: {show: true}} ...);` + // Secondly, `setOption(... label: {noraml: {show: true, text: 'abc', color: 'red'} ...);` + // Then the 'red' will not work on emphasis. + setTextStyle(normalStyle, normalModel, normalSpecified, opt); + setTextStyle(emphasisStyle, emphasisModel, emphasisSpecified, opt, true); + } + + normalStyle.text = normalStyleText; + emphasisStyle.text = emphasisStyleText; +} + +/** + * Modify label style manually. + * Only works after `setLabelStyle` and `setElementHoverStyle` called. + * + * @param {module:zrender/src/Element} el + * @param {Object} [normalStyleProps] optional + * @param {Object} [emphasisStyleProps] optional + */ +function modifyLabelStyle(el, normalStyleProps, emphasisStyleProps) { + var elStyle = el.style; + if (normalStyleProps) { + rollbackDefaultTextStyle(elStyle); + el.setStyle(normalStyleProps); + applyDefaultTextStyle(elStyle); + } + elStyle = el.__hoverStl; + if (emphasisStyleProps && elStyle) { + rollbackDefaultTextStyle(elStyle); + extend(elStyle, emphasisStyleProps); + applyDefaultTextStyle(elStyle); + } +} + +/** + * Set basic textStyle properties. + * See more info in `setTextStyleCommon`. + * @param {Object|module:zrender/graphic/Style} textStyle + * @param {module:echarts/model/Model} model + * @param {Object} [specifiedTextStyle] Can be overrided by settings in model. + * @param {Object} [opt] See `opt` of `setTextStyleCommon`. + * @param {boolean} [isEmphasis] + */ +function setTextStyle( + textStyle, textStyleModel, specifiedTextStyle, opt, isEmphasis +) { + setTextStyleCommon(textStyle, textStyleModel, opt, isEmphasis); + specifiedTextStyle && extend(textStyle, specifiedTextStyle); + // textStyle.host && textStyle.host.dirty && textStyle.host.dirty(false); + + return textStyle; +} + +/** + * Set text option in the style. + * See more info in `setTextStyleCommon`. + * @deprecated + * @param {Object} textStyle + * @param {module:echarts/model/Model} labelModel + * @param {string|boolean} defaultColor Default text color. + * If set as false, it will be processed as a emphasis style. + */ +function setText(textStyle, labelModel, defaultColor) { + var opt = {isRectText: true}; + var isEmphasis; + + if (defaultColor === false) { + isEmphasis = true; + } + else { + // Support setting color as 'auto' to get visual color. + opt.autoColor = defaultColor; + } + setTextStyleCommon(textStyle, labelModel, opt, isEmphasis); + // textStyle.host && textStyle.host.dirty && textStyle.host.dirty(false); +} + +/** + * The uniform entry of set text style, that is, retrieve style definitions + * from `model` and set to `textStyle` object. + * + * Never in merge mode, but in overwrite mode, that is, all of the text style + * properties will be set. (Consider the states of normal and emphasis and + * default value can be adopted, merge would make the logic too complicated + * to manage.) + * + * The `textStyle` object can either be a plain object or an instance of + * `zrender/src/graphic/Style`, and either be the style of normal or emphasis. + * After this mothod called, the `textStyle` object can then be used in + * `el.setStyle(textStyle)` or `el.hoverStyle = textStyle`. + * + * Default value will be adopted and `insideRollbackOpt` will be created. + * See `applyDefaultTextStyle` `rollbackDefaultTextStyle` for more details. + * + * opt: { + * disableBox: boolean, Whether diable drawing box of block (outer most). + * isRectText: boolean, + * autoColor: string, specify a color when color is 'auto', + * for textFill, textStroke, textBackgroundColor, and textBorderColor. + * If autoColor specified, it is used as default textFill. + * useInsideStyle: + * `true`: Use inside style (textFill, textStroke, textStrokeWidth) + * if `textFill` is not specified. + * `false`: Do not use inside style. + * `null/undefined`: use inside style if `isRectText` is true and + * `textFill` is not specified and textPosition contains `'inside'`. + * forceRich: boolean + * } + */ +function setTextStyleCommon(textStyle, textStyleModel, opt, isEmphasis) { + // Consider there will be abnormal when merge hover style to normal style if given default value. + opt = opt || EMPTY_OBJ; + + if (opt.isRectText) { + var textPosition = textStyleModel.getShallow('position') + || (isEmphasis ? null : 'inside'); + // 'outside' is not a valid zr textPostion value, but used + // in bar series, and magric type should be considered. + textPosition === 'outside' && (textPosition = 'top'); + textStyle.textPosition = textPosition; + textStyle.textOffset = textStyleModel.getShallow('offset'); + var labelRotate = textStyleModel.getShallow('rotate'); + labelRotate != null && (labelRotate *= Math.PI / 180); + textStyle.textRotation = labelRotate; + textStyle.textDistance = retrieve2( + textStyleModel.getShallow('distance'), isEmphasis ? null : 5 + ); + } + + var ecModel = textStyleModel.ecModel; + var globalTextStyle = ecModel && ecModel.option.textStyle; + + // Consider case: + // { + // data: [{ + // value: 12, + // label: { + // rich: { + // // no 'a' here but using parent 'a'. + // } + // } + // }], + // rich: { + // a: { ... } + // } + // } + var richItemNames = getRichItemNames(textStyleModel); + var richResult; + if (richItemNames) { + richResult = {}; + for (var name in richItemNames) { + if (richItemNames.hasOwnProperty(name)) { + // Cascade is supported in rich. + var richTextStyle = textStyleModel.getModel(['rich', name]); + // In rich, never `disableBox`. + // FIXME: consider `label: {formatter: '{a|xx}', color: 'blue', rich: {a: {}}}`, + // the default color `'blue'` will not be adopted if no color declared in `rich`. + // That might confuses users. So probably we should put `textStyleModel` as the + // root ancestor of the `richTextStyle`. But that would be a break change. + setTokenTextStyle(richResult[name] = {}, richTextStyle, globalTextStyle, opt, isEmphasis); + } + } + } + textStyle.rich = richResult; + + setTokenTextStyle(textStyle, textStyleModel, globalTextStyle, opt, isEmphasis, true); + + if (opt.forceRich && !opt.textStyle) { + opt.textStyle = {}; + } + + return textStyle; +} + +// Consider case: +// { +// data: [{ +// value: 12, +// label: { +// rich: { +// // no 'a' here but using parent 'a'. +// } +// } +// }], +// rich: { +// a: { ... } +// } +// } +function getRichItemNames(textStyleModel) { + // Use object to remove duplicated names. + var richItemNameMap; + while (textStyleModel && textStyleModel !== textStyleModel.ecModel) { + var rich = (textStyleModel.option || EMPTY_OBJ).rich; + if (rich) { + richItemNameMap = richItemNameMap || {}; + for (var name in rich) { + if (rich.hasOwnProperty(name)) { + richItemNameMap[name] = 1; + } + } + } + textStyleModel = textStyleModel.parentModel; + } + return richItemNameMap; +} + +function setTokenTextStyle(textStyle, textStyleModel, globalTextStyle, opt, isEmphasis, isBlock) { + // In merge mode, default value should not be given. + globalTextStyle = !isEmphasis && globalTextStyle || EMPTY_OBJ; + + textStyle.textFill = getAutoColor(textStyleModel.getShallow('color'), opt) + || globalTextStyle.color; + textStyle.textStroke = getAutoColor(textStyleModel.getShallow('textBorderColor'), opt) + || globalTextStyle.textBorderColor; + textStyle.textStrokeWidth = retrieve2( + textStyleModel.getShallow('textBorderWidth'), + globalTextStyle.textBorderWidth + ); + + if (!isEmphasis) { + if (isBlock) { + textStyle.insideRollbackOpt = opt; + applyDefaultTextStyle(textStyle); + } + + // Set default finally. + if (textStyle.textFill == null) { + textStyle.textFill = opt.autoColor; + } + } + + // Do not use `getFont` here, because merge should be supported, where + // part of these properties may be changed in emphasis style, and the + // others should remain their original value got from normal style. + textStyle.fontStyle = textStyleModel.getShallow('fontStyle') || globalTextStyle.fontStyle; + textStyle.fontWeight = textStyleModel.getShallow('fontWeight') || globalTextStyle.fontWeight; + textStyle.fontSize = textStyleModel.getShallow('fontSize') || globalTextStyle.fontSize; + textStyle.fontFamily = textStyleModel.getShallow('fontFamily') || globalTextStyle.fontFamily; + + textStyle.textAlign = textStyleModel.getShallow('align'); + textStyle.textVerticalAlign = textStyleModel.getShallow('verticalAlign') + || textStyleModel.getShallow('baseline'); + + textStyle.textLineHeight = textStyleModel.getShallow('lineHeight'); + textStyle.textWidth = textStyleModel.getShallow('width'); + textStyle.textHeight = textStyleModel.getShallow('height'); + textStyle.textTag = textStyleModel.getShallow('tag'); + + if (!isBlock || !opt.disableBox) { + textStyle.textBackgroundColor = getAutoColor(textStyleModel.getShallow('backgroundColor'), opt); + textStyle.textPadding = textStyleModel.getShallow('padding'); + textStyle.textBorderColor = getAutoColor(textStyleModel.getShallow('borderColor'), opt); + textStyle.textBorderWidth = textStyleModel.getShallow('borderWidth'); + textStyle.textBorderRadius = textStyleModel.getShallow('borderRadius'); + + textStyle.textBoxShadowColor = textStyleModel.getShallow('shadowColor'); + textStyle.textBoxShadowBlur = textStyleModel.getShallow('shadowBlur'); + textStyle.textBoxShadowOffsetX = textStyleModel.getShallow('shadowOffsetX'); + textStyle.textBoxShadowOffsetY = textStyleModel.getShallow('shadowOffsetY'); + } + + textStyle.textShadowColor = textStyleModel.getShallow('textShadowColor') + || globalTextStyle.textShadowColor; + textStyle.textShadowBlur = textStyleModel.getShallow('textShadowBlur') + || globalTextStyle.textShadowBlur; + textStyle.textShadowOffsetX = textStyleModel.getShallow('textShadowOffsetX') + || globalTextStyle.textShadowOffsetX; + textStyle.textShadowOffsetY = textStyleModel.getShallow('textShadowOffsetY') + || globalTextStyle.textShadowOffsetY; +} + +function getAutoColor(color, opt) { + return color !== 'auto' ? color : (opt && opt.autoColor) ? opt.autoColor : null; +} + +/** + * Give some default value to the input `textStyle` object, based on the current settings + * in this `textStyle` object. + * + * The Scenario: + * when text position is `inside` and `textFill` is not specified, we show + * text border by default for better view. But it should be considered that text position + * might be changed when hovering or being emphasis, where the `insideRollback` is used to + * restore the style. + * + * Usage (& NOTICE): + * When a style object (eithor plain object or instance of `zrender/src/graphic/Style`) is + * about to be modified on its text related properties, `rollbackDefaultTextStyle` should + * be called before the modification and `applyDefaultTextStyle` should be called after that. + * (For the case that all of the text related properties is reset, like `setTextStyleCommon` + * does, `rollbackDefaultTextStyle` is not needed to be called). + */ +function applyDefaultTextStyle(textStyle) { + var textPosition = textStyle.textPosition; + var opt = textStyle.insideRollbackOpt; + var insideRollback; + + if (opt && textStyle.textFill == null) { + var autoColor = opt.autoColor; + var isRectText = opt.isRectText; + var useInsideStyle = opt.useInsideStyle; + + var useInsideStyleCache = useInsideStyle !== false + && (useInsideStyle === true + || (isRectText + && textPosition + // textPosition can be [10, 30] + && typeof textPosition === 'string' + && textPosition.indexOf('inside') >= 0 + ) + ); + var useAutoColorCache = !useInsideStyleCache && autoColor != null; + + // All of the props declared in `CACHED_LABEL_STYLE_PROPERTIES` are to be cached. + if (useInsideStyleCache || useAutoColorCache) { + insideRollback = { + textFill: textStyle.textFill, + textStroke: textStyle.textStroke, + textStrokeWidth: textStyle.textStrokeWidth + }; + } + if (useInsideStyleCache) { + textStyle.textFill = '#fff'; + // Consider text with #fff overflow its container. + if (textStyle.textStroke == null) { + textStyle.textStroke = autoColor; + textStyle.textStrokeWidth == null && (textStyle.textStrokeWidth = 2); + } + } + if (useAutoColorCache) { + textStyle.textFill = autoColor; + } + } + + // Always set `insideRollback`, so that the previous one can be cleared. + textStyle.insideRollback = insideRollback; +} + +/** + * Consider the case: in a scatter, + * label: { + * normal: {position: 'inside'}, + * emphasis: {position: 'top'} + * } + * In the normal state, the `textFill` will be set as '#fff' for pretty view (see + * `applyDefaultTextStyle`), but when switching to emphasis state, the `textFill` + * should be retured to 'autoColor', but not keep '#fff'. + */ +function rollbackDefaultTextStyle(style) { + var insideRollback = style.insideRollback; + if (insideRollback) { + // Reset all of the props in `CACHED_LABEL_STYLE_PROPERTIES`. + style.textFill = insideRollback.textFill; + style.textStroke = insideRollback.textStroke; + style.textStrokeWidth = insideRollback.textStrokeWidth; + style.insideRollback = null; + } +} + +function getFont(opt, ecModel) { + // ecModel or default text style model. + var gTextStyleModel = ecModel || ecModel.getModel('textStyle'); + return trim([ + // FIXME in node-canvas fontWeight is before fontStyle + opt.fontStyle || gTextStyleModel && gTextStyleModel.getShallow('fontStyle') || '', + opt.fontWeight || gTextStyleModel && gTextStyleModel.getShallow('fontWeight') || '', + (opt.fontSize || gTextStyleModel && gTextStyleModel.getShallow('fontSize') || 12) + 'px', + opt.fontFamily || gTextStyleModel && gTextStyleModel.getShallow('fontFamily') || 'sans-serif' + ].join(' ')); +} + +function animateOrSetProps(isUpdate, el, props, animatableModel, dataIndex, cb) { + if (typeof dataIndex === 'function') { + cb = dataIndex; + dataIndex = null; + } + // Do not check 'animation' property directly here. Consider this case: + // animation model is an `itemModel`, whose does not have `isAnimationEnabled` + // but its parent model (`seriesModel`) does. + var animationEnabled = animatableModel && animatableModel.isAnimationEnabled(); + + if (animationEnabled) { + var postfix = isUpdate ? 'Update' : ''; + var duration = animatableModel.getShallow('animationDuration' + postfix); + var animationEasing = animatableModel.getShallow('animationEasing' + postfix); + var animationDelay = animatableModel.getShallow('animationDelay' + postfix); + if (typeof animationDelay === 'function') { + animationDelay = animationDelay( + dataIndex, + animatableModel.getAnimationDelayParams + ? animatableModel.getAnimationDelayParams(el, dataIndex) + : null + ); + } + if (typeof duration === 'function') { + duration = duration(dataIndex); + } + + duration > 0 + ? el.animateTo(props, duration, animationDelay || 0, animationEasing, cb, !!cb) + : (el.stopAnimation(), el.attr(props), cb && cb()); + } + else { + el.stopAnimation(); + el.attr(props); + cb && cb(); + } +} + +/** + * Update graphic element properties with or without animation according to the + * configuration in series. + * + * Caution: this method will stop previous animation. + * So if do not use this method to one element twice before + * animation starts, unless you know what you are doing. + * + * @param {module:zrender/Element} el + * @param {Object} props + * @param {module:echarts/model/Model} [animatableModel] + * @param {number} [dataIndex] + * @param {Function} [cb] + * @example + * graphic.updateProps(el, { + * position: [100, 100] + * }, seriesModel, dataIndex, function () { console.log('Animation done!'); }); + * // Or + * graphic.updateProps(el, { + * position: [100, 100] + * }, seriesModel, function () { console.log('Animation done!'); }); + */ +function updateProps(el, props, animatableModel, dataIndex, cb) { + animateOrSetProps(true, el, props, animatableModel, dataIndex, cb); +} + +/** + * Init graphic element properties with or without animation according to the + * configuration in series. + * + * Caution: this method will stop previous animation. + * So if do not use this method to one element twice before + * animation starts, unless you know what you are doing. + * + * @param {module:zrender/Element} el + * @param {Object} props + * @param {module:echarts/model/Model} [animatableModel] + * @param {number} [dataIndex] + * @param {Function} cb + */ +function initProps(el, props, animatableModel, dataIndex, cb) { + animateOrSetProps(false, el, props, animatableModel, dataIndex, cb); +} + +/** + * Get transform matrix of target (param target), + * in coordinate of its ancestor (param ancestor) + * + * @param {module:zrender/mixin/Transformable} target + * @param {module:zrender/mixin/Transformable} [ancestor] + */ +function getTransform(target, ancestor) { + var mat = identity([]); + + while (target && target !== ancestor) { + mul$1(mat, target.getLocalTransform(), mat); + target = target.parent; + } + + return mat; +} + +/** + * Apply transform to an vertex. + * @param {Array.} target [x, y] + * @param {Array.|TypedArray.|Object} transform Can be: + * + Transform matrix: like [1, 0, 0, 1, 0, 0] + * + {position, rotation, scale}, the same as `zrender/Transformable`. + * @param {boolean=} invert Whether use invert matrix. + * @return {Array.} [x, y] + */ +function applyTransform$1(target, transform, invert$$1) { + if (transform && !isArrayLike(transform)) { + transform = Transformable.getLocalTransform(transform); + } + + if (invert$$1) { + transform = invert([], transform); + } + return applyTransform([], target, transform); +} + +/** + * @param {string} direction 'left' 'right' 'top' 'bottom' + * @param {Array.} transform Transform matrix: like [1, 0, 0, 1, 0, 0] + * @param {boolean=} invert Whether use invert matrix. + * @return {string} Transformed direction. 'left' 'right' 'top' 'bottom' + */ +function transformDirection(direction, transform, invert$$1) { + + // Pick a base, ensure that transform result will not be (0, 0). + var hBase = (transform[4] === 0 || transform[5] === 0 || transform[0] === 0) + ? 1 : Math.abs(2 * transform[4] / transform[0]); + var vBase = (transform[4] === 0 || transform[5] === 0 || transform[2] === 0) + ? 1 : Math.abs(2 * transform[4] / transform[2]); + + var vertex = [ + direction === 'left' ? -hBase : direction === 'right' ? hBase : 0, + direction === 'top' ? -vBase : direction === 'bottom' ? vBase : 0 + ]; + + vertex = applyTransform$1(vertex, transform, invert$$1); + + return Math.abs(vertex[0]) > Math.abs(vertex[1]) + ? (vertex[0] > 0 ? 'right' : 'left') + : (vertex[1] > 0 ? 'bottom' : 'top'); +} + +/** + * Apply group transition animation from g1 to g2. + * If no animatableModel, no animation. + */ +function groupTransition(g1, g2, animatableModel, cb) { + if (!g1 || !g2) { + return; + } + + function getElMap(g) { + var elMap = {}; + g.traverse(function (el) { + if (!el.isGroup && el.anid) { + elMap[el.anid] = el; + } + }); + return elMap; + } + function getAnimatableProps(el) { + var obj = { + position: clone$1(el.position), + rotation: el.rotation + }; + if (el.shape) { + obj.shape = extend({}, el.shape); + } + return obj; + } + var elMap1 = getElMap(g1); + + g2.traverse(function (el) { + if (!el.isGroup && el.anid) { + var oldEl = elMap1[el.anid]; + if (oldEl) { + var newProp = getAnimatableProps(el); + el.attr(getAnimatableProps(oldEl)); + updateProps(el, newProp, animatableModel, el.dataIndex); + } + // else { + // if (el.previousProps) { + // graphic.updateProps + // } + // } + } + }); +} + +/** + * @param {Array.>} points Like: [[23, 44], [53, 66], ...] + * @param {Object} rect {x, y, width, height} + * @return {Array.>} A new clipped points. + */ +function clipPointsByRect(points, rect) { + // FIXME: this way migth be incorrect when grpahic clipped by a corner. + // and when element have border. + return map(points, function (point) { + var x = point[0]; + x = mathMax$1(x, rect.x); + x = mathMin$1(x, rect.x + rect.width); + var y = point[1]; + y = mathMax$1(y, rect.y); + y = mathMin$1(y, rect.y + rect.height); + return [x, y]; + }); +} + +/** + * @param {Object} targetRect {x, y, width, height} + * @param {Object} rect {x, y, width, height} + * @return {Object} A new clipped rect. If rect size are negative, return undefined. + */ +function clipRectByRect(targetRect, rect) { + var x = mathMax$1(targetRect.x, rect.x); + var x2 = mathMin$1(targetRect.x + targetRect.width, rect.x + rect.width); + var y = mathMax$1(targetRect.y, rect.y); + var y2 = mathMin$1(targetRect.y + targetRect.height, rect.y + rect.height); + + // If the total rect is cliped, nothing, including the border, + // should be painted. So return undefined. + if (x2 >= x && y2 >= y) { + return { + x: x, + y: y, + width: x2 - x, + height: y2 - y + }; + } +} + +/** + * @param {string} iconStr Support 'image://' or 'path://' or direct svg path. + * @param {Object} [opt] Properties of `module:zrender/Element`, except `style`. + * @param {Object} [rect] {x, y, width, height} + * @return {module:zrender/Element} Icon path or image element. + */ +function createIcon(iconStr, opt, rect) { + opt = extend({rectHover: true}, opt); + var style = opt.style = {strokeNoScale: true}; + rect = rect || {x: -1, y: -1, width: 2, height: 2}; + + if (iconStr) { + return iconStr.indexOf('image://') === 0 + ? ( + style.image = iconStr.slice(8), + defaults(style, rect), + new ZImage(opt) + ) + : ( + makePath( + iconStr.replace('path://', ''), + opt, + rect, + 'center' + ) + ); + } +} + +/** + * Return `true` if the given line (line `a`) and the given polygon + * are intersect. + * Note that we do not count colinear as intersect here because no + * requirement for that. We could do that if required in future. + * + * @param {number} a1x + * @param {number} a1y + * @param {number} a2x + * @param {number} a2y + * @param {Array.>} points Points of the polygon. + * @return {boolean} + */ +function linePolygonIntersect(a1x, a1y, a2x, a2y, points) { + for (var i = 0, p2 = points[points.length - 1]; i < points.length; i++) { + var p = points[i]; + if (lineLineIntersect(a1x, a1y, a2x, a2y, p[0], p[1], p2[0], p2[1])) { + return true; + } + p2 = p; + } +} + +/** + * Return `true` if the given two lines (line `a` and line `b`) + * are intersect. + * Note that we do not count colinear as intersect here because no + * requirement for that. We could do that if required in future. + * + * @param {number} a1x + * @param {number} a1y + * @param {number} a2x + * @param {number} a2y + * @param {number} b1x + * @param {number} b1y + * @param {number} b2x + * @param {number} b2y + * @return {boolean} + */ +function lineLineIntersect(a1x, a1y, a2x, a2y, b1x, b1y, b2x, b2y) { + // let `vec_m` to be `vec_a2 - vec_a1` and `vec_n` to be `vec_b2 - vec_b1`. + var mx = a2x - a1x; + var my = a2y - a1y; + var nx = b2x - b1x; + var ny = b2y - b1y; + + // `vec_m` and `vec_n` are parallel iff + // exising `k` such that `vec_m = k · vec_n`, equivalent to `vec_m X vec_n = 0`. + var nmCrossProduct = crossProduct2d(nx, ny, mx, my); + if (nearZero(nmCrossProduct)) { + return false; + } + + // `vec_m` and `vec_n` are intersect iff + // existing `p` and `q` in [0, 1] such that `vec_a1 + p * vec_m = vec_b1 + q * vec_n`, + // such that `q = ((vec_a1 - vec_b1) X vec_m) / (vec_n X vec_m)` + // and `p = ((vec_a1 - vec_b1) X vec_n) / (vec_n X vec_m)`. + var b1a1x = a1x - b1x; + var b1a1y = a1y - b1y; + var q = crossProduct2d(b1a1x, b1a1y, mx, my) / nmCrossProduct; + if (q < 0 || q > 1) { + return false; + } + var p = crossProduct2d(b1a1x, b1a1y, nx, ny) / nmCrossProduct; + if (p < 0 || p > 1) { + return false; + } + + return true; +} + +/** + * Cross product of 2-dimension vector. + */ +function crossProduct2d(x1, y1, x2, y2) { + return x1 * y2 - x2 * y1; +} + +function nearZero(val) { + return val <= (1e-6) && val >= -(1e-6); +} + + + + +var graphic = (Object.freeze || Object)({ + Z2_EMPHASIS_LIFT: Z2_EMPHASIS_LIFT, + CACHED_LABEL_STYLE_PROPERTIES: CACHED_LABEL_STYLE_PROPERTIES, + extendShape: extendShape, + extendPath: extendPath, + makePath: makePath, + makeImage: makeImage, + mergePath: mergePath, + resizePath: resizePath, + subPixelOptimizeLine: subPixelOptimizeLine, + subPixelOptimizeRect: subPixelOptimizeRect, + subPixelOptimize: subPixelOptimize, + setElementHoverStyle: setElementHoverStyle, + setHoverStyle: setHoverStyle, + setAsHighDownDispatcher: setAsHighDownDispatcher, + isHighDownDispatcher: isHighDownDispatcher, + getHighlightDigit: getHighlightDigit, + setLabelStyle: setLabelStyle, + modifyLabelStyle: modifyLabelStyle, + setTextStyle: setTextStyle, + setText: setText, + getFont: getFont, + updateProps: updateProps, + initProps: initProps, + getTransform: getTransform, + applyTransform: applyTransform$1, + transformDirection: transformDirection, + groupTransition: groupTransition, + clipPointsByRect: clipPointsByRect, + clipRectByRect: clipRectByRect, + createIcon: createIcon, + linePolygonIntersect: linePolygonIntersect, + lineLineIntersect: lineLineIntersect, + Group: Group, + Image: ZImage, + Text: Text, + Circle: Circle, + Sector: Sector, + Ring: Ring, + Polygon: Polygon, + Polyline: Polyline, + Rect: Rect, + Line: Line, + BezierCurve: BezierCurve, + Arc: Arc, + IncrementalDisplayable: IncrementalDisplayble, + CompoundPath: CompoundPath, + LinearGradient: LinearGradient, + RadialGradient: RadialGradient, + BoundingRect: BoundingRect +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var PATH_COLOR = ['textStyle', 'color']; + +var textStyleMixin = { + /** + * Get color property or get color from option.textStyle.color + * @param {boolean} [isEmphasis] + * @return {string} + */ + getTextColor: function (isEmphasis) { + var ecModel = this.ecModel; + return this.getShallow('color') + || ( + (!isEmphasis && ecModel) ? ecModel.get(PATH_COLOR) : null + ); + }, + + /** + * Create font string from fontStyle, fontWeight, fontSize, fontFamily + * @return {string} + */ + getFont: function () { + return getFont({ + fontStyle: this.getShallow('fontStyle'), + fontWeight: this.getShallow('fontWeight'), + fontSize: this.getShallow('fontSize'), + fontFamily: this.getShallow('fontFamily') + }, this.ecModel); + }, + + getTextRect: function (text) { + return getBoundingRect( + text, + this.getFont(), + this.getShallow('align'), + this.getShallow('verticalAlign') || this.getShallow('baseline'), + this.getShallow('padding'), + this.getShallow('lineHeight'), + this.getShallow('rich'), + this.getShallow('truncateText') + ); + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var getItemStyle = makeStyleMapper( + [ + ['fill', 'color'], + ['stroke', 'borderColor'], + ['lineWidth', 'borderWidth'], + ['opacity'], + ['shadowBlur'], + ['shadowOffsetX'], + ['shadowOffsetY'], + ['shadowColor'], + ['textPosition'], + ['textAlign'] + ] +); + +var itemStyleMixin = { + getItemStyle: function (excludes, includes) { + var style = getItemStyle(this, excludes, includes); + var lineDash = this.getBorderLineDash(); + lineDash && (style.lineDash = lineDash); + return style; + }, + + getBorderLineDash: function () { + var lineType = this.get('borderType'); + return (lineType === 'solid' || lineType == null) ? null + : (lineType === 'dashed' ? [5, 5] : [1, 1]); + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @module echarts/model/Model + */ + +var mixin$1 = mixin; +var inner = makeInner(); + +/** + * @alias module:echarts/model/Model + * @constructor + * @param {Object} [option] + * @param {module:echarts/model/Model} [parentModel] + * @param {module:echarts/model/Global} [ecModel] + */ +function Model(option, parentModel, ecModel) { + /** + * @type {module:echarts/model/Model} + * @readOnly + */ + this.parentModel = parentModel; + + /** + * @type {module:echarts/model/Global} + * @readOnly + */ + this.ecModel = ecModel; + + /** + * @type {Object} + * @protected + */ + this.option = option; + + // Simple optimization + // if (this.init) { + // if (arguments.length <= 4) { + // this.init(option, parentModel, ecModel, extraOpt); + // } + // else { + // this.init.apply(this, arguments); + // } + // } +} + +Model.prototype = { + + constructor: Model, + + /** + * Model 的初始化函数 + * @param {Object} option + */ + init: null, + + /** + * 从新的 Option merge + */ + mergeOption: function (option) { + merge(this.option, option, true); + }, + + /** + * @param {string|Array.} path + * @param {boolean} [ignoreParent=false] + * @return {*} + */ + get: function (path, ignoreParent) { + if (path == null) { + return this.option; + } + + return doGet( + this.option, + this.parsePath(path), + !ignoreParent && getParent(this, path) + ); + }, + + /** + * @param {string} key + * @param {boolean} [ignoreParent=false] + * @return {*} + */ + getShallow: function (key, ignoreParent) { + var option = this.option; + + var val = option == null ? option : option[key]; + var parentModel = !ignoreParent && getParent(this, key); + if (val == null && parentModel) { + val = parentModel.getShallow(key); + } + return val; + }, + + /** + * @param {string|Array.} [path] + * @param {module:echarts/model/Model} [parentModel] + * @return {module:echarts/model/Model} + */ + getModel: function (path, parentModel) { + var obj = path == null + ? this.option + : doGet(this.option, path = this.parsePath(path)); + + var thisParentModel; + parentModel = parentModel || ( + (thisParentModel = getParent(this, path)) + && thisParentModel.getModel(path) + ); + + return new Model(obj, parentModel, this.ecModel); + }, + + /** + * If model has option + */ + isEmpty: function () { + return this.option == null; + }, + + restoreData: function () {}, + + // Pending + clone: function () { + var Ctor = this.constructor; + return new Ctor(clone(this.option)); + }, + + setReadOnly: function (properties) { + // clazzUtil.setReadOnly(this, properties); + }, + + // If path is null/undefined, return null/undefined. + parsePath: function (path) { + if (typeof path === 'string') { + path = path.split('.'); + } + return path; + }, + + /** + * @param {Function} getParentMethod + * param {Array.|string} path + * return {module:echarts/model/Model} + */ + customizeGetParent: function (getParentMethod) { + inner(this).getParent = getParentMethod; + }, + + isAnimationEnabled: function () { + if (!env$1.node) { + if (this.option.animation != null) { + return !!this.option.animation; + } + else if (this.parentModel) { + return this.parentModel.isAnimationEnabled(); + } + } + } + +}; + +function doGet(obj, pathArr, parentModel) { + for (var i = 0; i < pathArr.length; i++) { + // Ignore empty + if (!pathArr[i]) { + continue; + } + // obj could be number/string/... (like 0) + obj = (obj && typeof obj === 'object') ? obj[pathArr[i]] : null; + if (obj == null) { + break; + } + } + if (obj == null && parentModel) { + obj = parentModel.get(pathArr); + } + return obj; +} + +// `path` can be null/undefined +function getParent(model, path) { + var getParentMethod = inner(model).getParent; + return getParentMethod ? getParentMethod.call(model, path) : model.parentModel; +} + +// Enable Model.extend. +enableClassExtend(Model); +enableClassCheck(Model); + +mixin$1(Model, lineStyleMixin); +mixin$1(Model, areaStyleMixin); +mixin$1(Model, textStyleMixin); +mixin$1(Model, itemStyleMixin); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var base = 0; + +/** + * @public + * @param {string} type + * @return {string} + */ +function getUID(type) { + // Considering the case of crossing js context, + // use Math.random to make id as unique as possible. + return [(type || ''), base++, Math.random().toFixed(5)].join('_'); +} + +/** + * @inner + */ +function enableSubTypeDefaulter(entity) { + + var subTypeDefaulters = {}; + + entity.registerSubTypeDefaulter = function (componentType, defaulter) { + componentType = parseClassType$1(componentType); + subTypeDefaulters[componentType.main] = defaulter; + }; + + entity.determineSubType = function (componentType, option) { + var type = option.type; + if (!type) { + var componentTypeMain = parseClassType$1(componentType).main; + if (entity.hasSubTypes(componentType) && subTypeDefaulters[componentTypeMain]) { + type = subTypeDefaulters[componentTypeMain](option); + } + } + return type; + }; + + return entity; +} + +/** + * Topological travel on Activity Network (Activity On Vertices). + * Dependencies is defined in Model.prototype.dependencies, like ['xAxis', 'yAxis']. + * + * If 'xAxis' or 'yAxis' is absent in componentTypeList, just ignore it in topology. + * + * If there is circle dependencey, Error will be thrown. + * + */ +function enableTopologicalTravel(entity, dependencyGetter) { + + /** + * @public + * @param {Array.} targetNameList Target Component type list. + * Can be ['aa', 'bb', 'aa.xx'] + * @param {Array.} fullNameList By which we can build dependency graph. + * @param {Function} callback Params: componentType, dependencies. + * @param {Object} context Scope of callback. + */ + entity.topologicalTravel = function (targetNameList, fullNameList, callback, context) { + if (!targetNameList.length) { + return; + } + + var result = makeDepndencyGraph(fullNameList); + var graph = result.graph; + var stack = result.noEntryList; + + var targetNameSet = {}; + each$1(targetNameList, function (name) { + targetNameSet[name] = true; + }); + + while (stack.length) { + var currComponentType = stack.pop(); + var currVertex = graph[currComponentType]; + var isInTargetNameSet = !!targetNameSet[currComponentType]; + if (isInTargetNameSet) { + callback.call(context, currComponentType, currVertex.originalDeps.slice()); + delete targetNameSet[currComponentType]; + } + each$1( + currVertex.successor, + isInTargetNameSet ? removeEdgeAndAdd : removeEdge + ); + } + + each$1(targetNameSet, function () { + throw new Error('Circle dependency may exists'); + }); + + function removeEdge(succComponentType) { + graph[succComponentType].entryCount--; + if (graph[succComponentType].entryCount === 0) { + stack.push(succComponentType); + } + } + + // Consider this case: legend depends on series, and we call + // chart.setOption({series: [...]}), where only series is in option. + // If we do not have 'removeEdgeAndAdd', legendModel.mergeOption will + // not be called, but only sereis.mergeOption is called. Thus legend + // have no chance to update its local record about series (like which + // name of series is available in legend). + function removeEdgeAndAdd(succComponentType) { + targetNameSet[succComponentType] = true; + removeEdge(succComponentType); + } + }; + + /** + * DepndencyGraph: {Object} + * key: conponentType, + * value: { + * successor: [conponentTypes...], + * originalDeps: [conponentTypes...], + * entryCount: {number} + * } + */ + function makeDepndencyGraph(fullNameList) { + var graph = {}; + var noEntryList = []; + + each$1(fullNameList, function (name) { + + var thisItem = createDependencyGraphItem(graph, name); + var originalDeps = thisItem.originalDeps = dependencyGetter(name); + + var availableDeps = getAvailableDependencies(originalDeps, fullNameList); + thisItem.entryCount = availableDeps.length; + if (thisItem.entryCount === 0) { + noEntryList.push(name); + } + + each$1(availableDeps, function (dependentName) { + if (indexOf(thisItem.predecessor, dependentName) < 0) { + thisItem.predecessor.push(dependentName); + } + var thatItem = createDependencyGraphItem(graph, dependentName); + if (indexOf(thatItem.successor, dependentName) < 0) { + thatItem.successor.push(name); + } + }); + }); + + return {graph: graph, noEntryList: noEntryList}; + } + + function createDependencyGraphItem(graph, name) { + if (!graph[name]) { + graph[name] = {predecessor: [], successor: []}; + } + return graph[name]; + } + + function getAvailableDependencies(originalDeps, fullNameList) { + var availableDeps = []; + each$1(originalDeps, function (dep) { + indexOf(fullNameList, dep) >= 0 && availableDeps.push(dep); + }); + return availableDeps; + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* A third-party license is embeded for some of the code in this file: +* The method "quantile" was copied from "d3.js". +* (See more details in the comment of the method below.) +* The use of the source code of this file is also subject to the terms +* and consitions of the license of "d3.js" (BSD-3Clause, see +* ). +*/ + +var RADIAN_EPSILON = 1e-4; + +function _trim(str) { + return str.replace(/^\s+/, '').replace(/\s+$/, ''); +} + +/** + * Linear mapping a value from domain to range + * @memberOf module:echarts/util/number + * @param {(number|Array.)} val + * @param {Array.} domain Domain extent domain[0] can be bigger than domain[1] + * @param {Array.} range Range extent range[0] can be bigger than range[1] + * @param {boolean} clamp + * @return {(number|Array.} + */ +function linearMap(val, domain, range, clamp) { + var subDomain = domain[1] - domain[0]; + var subRange = range[1] - range[0]; + + if (subDomain === 0) { + return subRange === 0 + ? range[0] + : (range[0] + range[1]) / 2; + } + + // Avoid accuracy problem in edge, such as + // 146.39 - 62.83 === 83.55999999999999. + // See echarts/test/ut/spec/util/number.js#linearMap#accuracyError + // It is a little verbose for efficiency considering this method + // is a hotspot. + if (clamp) { + if (subDomain > 0) { + if (val <= domain[0]) { + return range[0]; + } + else if (val >= domain[1]) { + return range[1]; + } + } + else { + if (val >= domain[0]) { + return range[0]; + } + else if (val <= domain[1]) { + return range[1]; + } + } + } + else { + if (val === domain[0]) { + return range[0]; + } + if (val === domain[1]) { + return range[1]; + } + } + + return (val - domain[0]) / subDomain * subRange + range[0]; +} + +/** + * Convert a percent string to absolute number. + * Returns NaN if percent is not a valid string or number + * @memberOf module:echarts/util/number + * @param {string|number} percent + * @param {number} all + * @return {number} + */ +function parsePercent$1(percent, all) { + switch (percent) { + case 'center': + case 'middle': + percent = '50%'; + break; + case 'left': + case 'top': + percent = '0%'; + break; + case 'right': + case 'bottom': + percent = '100%'; + break; + } + if (typeof percent === 'string') { + if (_trim(percent).match(/%$/)) { + return parseFloat(percent) / 100 * all; + } + + return parseFloat(percent); + } + + return percent == null ? NaN : +percent; +} + +/** + * (1) Fix rounding error of float numbers. + * (2) Support return string to avoid scientific notation like '3.5e-7'. + * + * @param {number} x + * @param {number} [precision] + * @param {boolean} [returnStr] + * @return {number|string} + */ +function round$1(x, precision, returnStr) { + if (precision == null) { + precision = 10; + } + // Avoid range error + precision = Math.min(Math.max(0, precision), 20); + x = (+x).toFixed(precision); + return returnStr ? x : +x; +} + +/** + * asc sort arr. + * The input arr will be modified. + * + * @param {Array} arr + * @return {Array} The input arr. + */ +function asc(arr) { + arr.sort(function (a, b) { + return a - b; + }); + return arr; +} + +/** + * Get precision + * @param {number} val + */ +function getPrecision(val) { + val = +val; + if (isNaN(val)) { + return 0; + } + // It is much faster than methods converting number to string as follows + // var tmp = val.toString(); + // return tmp.length - 1 - tmp.indexOf('.'); + // especially when precision is low + var e = 1; + var count = 0; + while (Math.round(val * e) / e !== val) { + e *= 10; + count++; + } + return count; +} + +/** + * @param {string|number} val + * @return {number} + */ +function getPrecisionSafe(val) { + var str = val.toString(); + + // Consider scientific notation: '3.4e-12' '3.4e+12' + var eIndex = str.indexOf('e'); + if (eIndex > 0) { + var precision = +str.slice(eIndex + 1); + return precision < 0 ? -precision : 0; + } + else { + var dotIndex = str.indexOf('.'); + return dotIndex < 0 ? 0 : str.length - 1 - dotIndex; + } +} + +/** + * Minimal dicernible data precisioin according to a single pixel. + * + * @param {Array.} dataExtent + * @param {Array.} pixelExtent + * @return {number} precision + */ +function getPixelPrecision(dataExtent, pixelExtent) { + var log = Math.log; + var LN10 = Math.LN10; + var dataQuantity = Math.floor(log(dataExtent[1] - dataExtent[0]) / LN10); + var sizeQuantity = Math.round(log(Math.abs(pixelExtent[1] - pixelExtent[0])) / LN10); + // toFixed() digits argument must be between 0 and 20. + var precision = Math.min(Math.max(-dataQuantity + sizeQuantity, 0), 20); + return !isFinite(precision) ? 20 : precision; +} + +/** + * Get a data of given precision, assuring the sum of percentages + * in valueList is 1. + * The largest remainer method is used. + * https://en.wikipedia.org/wiki/Largest_remainder_method + * + * @param {Array.} valueList a list of all data + * @param {number} idx index of the data to be processed in valueList + * @param {number} precision integer number showing digits of precision + * @return {number} percent ranging from 0 to 100 + */ +function getPercentWithPrecision(valueList, idx, precision) { + if (!valueList[idx]) { + return 0; + } + + var sum = reduce(valueList, function (acc, val) { + return acc + (isNaN(val) ? 0 : val); + }, 0); + if (sum === 0) { + return 0; + } + + var digits = Math.pow(10, precision); + var votesPerQuota = map(valueList, function (val) { + return (isNaN(val) ? 0 : val) / sum * digits * 100; + }); + var targetSeats = digits * 100; + + var seats = map(votesPerQuota, function (votes) { + // Assign automatic seats. + return Math.floor(votes); + }); + var currentSum = reduce(seats, function (acc, val) { + return acc + val; + }, 0); + + var remainder = map(votesPerQuota, function (votes, idx) { + return votes - seats[idx]; + }); + + // Has remainding votes. + while (currentSum < targetSeats) { + // Find next largest remainder. + var max = Number.NEGATIVE_INFINITY; + var maxId = null; + for (var i = 0, len = remainder.length; i < len; ++i) { + if (remainder[i] > max) { + max = remainder[i]; + maxId = i; + } + } + + // Add a vote to max remainder. + ++seats[maxId]; + remainder[maxId] = 0; + ++currentSum; + } + + return seats[idx] / digits; +} + +// Number.MAX_SAFE_INTEGER, ie do not support. +var MAX_SAFE_INTEGER = 9007199254740991; + +/** + * To 0 - 2 * PI, considering negative radian. + * @param {number} radian + * @return {number} + */ +function remRadian(radian) { + var pi2 = Math.PI * 2; + return (radian % pi2 + pi2) % pi2; +} + +/** + * @param {type} radian + * @return {boolean} + */ +function isRadianAroundZero(val) { + return val > -RADIAN_EPSILON && val < RADIAN_EPSILON; +} + +/* eslint-disable */ +var TIME_REG = /^(?:(\d{4})(?:[-\/](\d{1,2})(?:[-\/](\d{1,2})(?:[T ](\d{1,2})(?::(\d\d)(?::(\d\d)(?:[.,](\d+))?)?)?(Z|[\+\-]\d\d:?\d\d)?)?)?)?)?$/; // jshint ignore:line +/* eslint-enable */ + +/** + * @param {string|Date|number} value These values can be accepted: + * + An instance of Date, represent a time in its own time zone. + * + Or string in a subset of ISO 8601, only including: + * + only year, month, date: '2012-03', '2012-03-01', '2012-03-01 05', '2012-03-01 05:06', + * + separated with T or space: '2012-03-01T12:22:33.123', '2012-03-01 12:22:33.123', + * + time zone: '2012-03-01T12:22:33Z', '2012-03-01T12:22:33+8000', '2012-03-01T12:22:33-05:00', + * all of which will be treated as local time if time zone is not specified + * (see ). + * + Or other string format, including (all of which will be treated as loacal time): + * '2012', '2012-3-1', '2012/3/1', '2012/03/01', + * '2009/6/12 2:00', '2009/6/12 2:05:08', '2009/6/12 2:05:08.123' + * + a timestamp, which represent a time in UTC. + * @return {Date} date + */ +function parseDate(value) { + if (value instanceof Date) { + return value; + } + else if (typeof value === 'string') { + // Different browsers parse date in different way, so we parse it manually. + // Some other issues: + // new Date('1970-01-01') is UTC, + // new Date('1970/01/01') and new Date('1970-1-01') is local. + // See issue #3623 + var match = TIME_REG.exec(value); + + if (!match) { + // return Invalid Date. + return new Date(NaN); + } + + // Use local time when no timezone offset specifed. + if (!match[8]) { + // match[n] can only be string or undefined. + // But take care of '12' + 1 => '121'. + return new Date( + +match[1], + +(match[2] || 1) - 1, + +match[3] || 1, + +match[4] || 0, + +(match[5] || 0), + +match[6] || 0, + +match[7] || 0 + ); + } + // Timezoneoffset of Javascript Date has considered DST (Daylight Saving Time, + // https://tc39.github.io/ecma262/#sec-daylight-saving-time-adjustment). + // For example, system timezone is set as "Time Zone: America/Toronto", + // then these code will get different result: + // `new Date(1478411999999).getTimezoneOffset(); // get 240` + // `new Date(1478412000000).getTimezoneOffset(); // get 300` + // So we should not use `new Date`, but use `Date.UTC`. + else { + var hour = +match[4] || 0; + if (match[8].toUpperCase() !== 'Z') { + hour -= match[8].slice(0, 3); + } + return new Date(Date.UTC( + +match[1], + +(match[2] || 1) - 1, + +match[3] || 1, + hour, + +(match[5] || 0), + +match[6] || 0, + +match[7] || 0 + )); + } + } + else if (value == null) { + return new Date(NaN); + } + + return new Date(Math.round(value)); +} + +/** + * Quantity of a number. e.g. 0.1, 1, 10, 100 + * + * @param {number} val + * @return {number} + */ +function quantity(val) { + return Math.pow(10, quantityExponent(val)); +} + +function quantityExponent(val) { + return Math.floor(Math.log(val) / Math.LN10); +} + +/** + * find a “nice” number approximately equal to x. Round the number if round = true, + * take ceiling if round = false. The primary observation is that the “nicest” + * numbers in decimal are 1, 2, and 5, and all power-of-ten multiples of these numbers. + * + * See "Nice Numbers for Graph Labels" of Graphic Gems. + * + * @param {number} val Non-negative value. + * @param {boolean} round + * @return {number} + */ +function nice(val, round) { + var exponent = quantityExponent(val); + var exp10 = Math.pow(10, exponent); + var f = val / exp10; // 1 <= f < 10 + var nf; + if (round) { + if (f < 1.5) { + nf = 1; + } + else if (f < 2.5) { + nf = 2; + } + else if (f < 4) { + nf = 3; + } + else if (f < 7) { + nf = 5; + } + else { + nf = 10; + } + } + else { + if (f < 1) { + nf = 1; + } + else if (f < 2) { + nf = 2; + } + else if (f < 3) { + nf = 3; + } + else if (f < 5) { + nf = 5; + } + else { + nf = 10; + } + } + val = nf * exp10; + + // Fix 3 * 0.1 === 0.30000000000000004 issue (see IEEE 754). + // 20 is the uppper bound of toFixed. + return exponent >= -20 ? +val.toFixed(exponent < 0 ? -exponent : 0) : val; +} + +/** + * This code was copied from "d3.js" + * . + * See the license statement at the head of this file. + * @param {Array.} ascArr + */ +function quantile(ascArr, p) { + var H = (ascArr.length - 1) * p + 1; + var h = Math.floor(H); + var v = +ascArr[h - 1]; + var e = H - h; + return e ? v + e * (ascArr[h] - v) : v; +} + +/** + * Order intervals asc, and split them when overlap. + * expect(numberUtil.reformIntervals([ + * {interval: [18, 62], close: [1, 1]}, + * {interval: [-Infinity, -70], close: [0, 0]}, + * {interval: [-70, -26], close: [1, 1]}, + * {interval: [-26, 18], close: [1, 1]}, + * {interval: [62, 150], close: [1, 1]}, + * {interval: [106, 150], close: [1, 1]}, + * {interval: [150, Infinity], close: [0, 0]} + * ])).toEqual([ + * {interval: [-Infinity, -70], close: [0, 0]}, + * {interval: [-70, -26], close: [1, 1]}, + * {interval: [-26, 18], close: [0, 1]}, + * {interval: [18, 62], close: [0, 1]}, + * {interval: [62, 150], close: [0, 1]}, + * {interval: [150, Infinity], close: [0, 0]} + * ]); + * @param {Array.} list, where `close` mean open or close + * of the interval, and Infinity can be used. + * @return {Array.} The origin list, which has been reformed. + */ +function reformIntervals(list) { + list.sort(function (a, b) { + return littleThan(a, b, 0) ? -1 : 1; + }); + + var curr = -Infinity; + var currClose = 1; + for (var i = 0; i < list.length;) { + var interval = list[i].interval; + var close = list[i].close; + + for (var lg = 0; lg < 2; lg++) { + if (interval[lg] <= curr) { + interval[lg] = curr; + close[lg] = !lg ? 1 - currClose : 1; + } + curr = interval[lg]; + currClose = close[lg]; + } + + if (interval[0] === interval[1] && close[0] * close[1] !== 1) { + list.splice(i, 1); + } + else { + i++; + } + } + + return list; + + function littleThan(a, b, lg) { + return a.interval[lg] < b.interval[lg] + || ( + a.interval[lg] === b.interval[lg] + && ( + (a.close[lg] - b.close[lg] === (!lg ? 1 : -1)) + || (!lg && littleThan(a, b, 1)) + ) + ); + } +} + +/** + * parseFloat NaNs numeric-cast false positives (null|true|false|"") + * ...but misinterprets leading-number strings, particularly hex literals ("0x...") + * subtraction forces infinities to NaN + * + * @param {*} v + * @return {boolean} + */ +function isNumeric(v) { + return v - parseFloat(v) >= 0; +} + + +var number = (Object.freeze || Object)({ + linearMap: linearMap, + parsePercent: parsePercent$1, + round: round$1, + asc: asc, + getPrecision: getPrecision, + getPrecisionSafe: getPrecisionSafe, + getPixelPrecision: getPixelPrecision, + getPercentWithPrecision: getPercentWithPrecision, + MAX_SAFE_INTEGER: MAX_SAFE_INTEGER, + remRadian: remRadian, + isRadianAroundZero: isRadianAroundZero, + parseDate: parseDate, + quantity: quantity, + nice: nice, + quantile: quantile, + reformIntervals: reformIntervals, + isNumeric: isNumeric +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// import Text from 'zrender/src/graphic/Text'; + +/** + * 每三位默认加,格式化 + * @param {string|number} x + * @return {string} + */ +function addCommas(x) { + if (isNaN(x)) { + return '-'; + } + x = (x + '').split('.'); + return x[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g, '$1,') + + (x.length > 1 ? ('.' + x[1]) : ''); +} + +/** + * @param {string} str + * @param {boolean} [upperCaseFirst=false] + * @return {string} str + */ +function toCamelCase(str, upperCaseFirst) { + str = (str || '').toLowerCase().replace(/-(.)/g, function (match, group1) { + return group1.toUpperCase(); + }); + + if (upperCaseFirst && str) { + str = str.charAt(0).toUpperCase() + str.slice(1); + } + + return str; +} + +var normalizeCssArray$1 = normalizeCssArray; + + +var replaceReg = /([&<>"'])/g; +var replaceMap = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + '\'': ''' +}; + +function encodeHTML(source) { + return source == null + ? '' + : (source + '').replace(replaceReg, function (str, c) { + return replaceMap[c]; + }); +} + +var TPL_VAR_ALIAS = ['a', 'b', 'c', 'd', 'e', 'f', 'g']; + +var wrapVar = function (varName, seriesIdx) { + return '{' + varName + (seriesIdx == null ? '' : seriesIdx) + '}'; +}; + +/** + * Template formatter + * @param {string} tpl + * @param {Array.|Object} paramsList + * @param {boolean} [encode=false] + * @return {string} + */ +function formatTpl(tpl, paramsList, encode) { + if (!isArray(paramsList)) { + paramsList = [paramsList]; + } + var seriesLen = paramsList.length; + if (!seriesLen) { + return ''; + } + + var $vars = paramsList[0].$vars || []; + for (var i = 0; i < $vars.length; i++) { + var alias = TPL_VAR_ALIAS[i]; + tpl = tpl.replace(wrapVar(alias), wrapVar(alias, 0)); + } + for (var seriesIdx = 0; seriesIdx < seriesLen; seriesIdx++) { + for (var k = 0; k < $vars.length; k++) { + var val = paramsList[seriesIdx][$vars[k]]; + tpl = tpl.replace( + wrapVar(TPL_VAR_ALIAS[k], seriesIdx), + encode ? encodeHTML(val) : val + ); + } + } + + return tpl; +} + +/** + * simple Template formatter + * + * @param {string} tpl + * @param {Object} param + * @param {boolean} [encode=false] + * @return {string} + */ +function formatTplSimple(tpl, param, encode) { + each$1(param, function (value, key) { + tpl = tpl.replace( + '{' + key + '}', + encode ? encodeHTML(value) : value + ); + }); + return tpl; +} + +/** + * @param {Object|string} [opt] If string, means color. + * @param {string} [opt.color] + * @param {string} [opt.extraCssText] + * @param {string} [opt.type='item'] 'item' or 'subItem' + * @param {string} [opt.renderMode='html'] render mode of tooltip, 'html' or 'richText' + * @param {string} [opt.markerId='X'] id name for marker. If only one marker is in a rich text, this can be omitted. + * @return {string} + */ +function getTooltipMarker(opt, extraCssText) { + opt = isString(opt) ? {color: opt, extraCssText: extraCssText} : (opt || {}); + var color = opt.color; + var type = opt.type; + var extraCssText = opt.extraCssText; + var renderMode = opt.renderMode || 'html'; + var markerId = opt.markerId || 'X'; + + if (!color) { + return ''; + } + + if (renderMode === 'html') { + return type === 'subItem' + ? '' + : ''; + } + else { + // Space for rich element marker + return { + renderMode: renderMode, + content: '{marker' + markerId + '|} ', + style: { + color: color + } + }; + } +} + +function pad(str, len) { + str += ''; + return '0000'.substr(0, len - str.length) + str; +} + + +/** + * ISO Date format + * @param {string} tpl + * @param {number} value + * @param {boolean} [isUTC=false] Default in local time. + * see `module:echarts/scale/Time` + * and `module:echarts/util/number#parseDate`. + * @inner + */ +function formatTime(tpl, value, isUTC) { + if (tpl === 'week' + || tpl === 'month' + || tpl === 'quarter' + || tpl === 'half-year' + || tpl === 'year' + ) { + tpl = 'MM-dd\nyyyy'; + } + + var date = parseDate(value); + var utc = isUTC ? 'UTC' : ''; + var y = date['get' + utc + 'FullYear'](); + var M = date['get' + utc + 'Month']() + 1; + var d = date['get' + utc + 'Date'](); + var h = date['get' + utc + 'Hours'](); + var m = date['get' + utc + 'Minutes'](); + var s = date['get' + utc + 'Seconds'](); + var S = date['get' + utc + 'Milliseconds'](); + + tpl = tpl.replace('MM', pad(M, 2)) + .replace('M', M) + .replace('yyyy', y) + .replace('yy', y % 100) + .replace('dd', pad(d, 2)) + .replace('d', d) + .replace('hh', pad(h, 2)) + .replace('h', h) + .replace('mm', pad(m, 2)) + .replace('m', m) + .replace('ss', pad(s, 2)) + .replace('s', s) + .replace('SSS', pad(S, 3)); + + return tpl; +} + +/** + * Capital first + * @param {string} str + * @return {string} + */ +function capitalFirst(str) { + return str ? str.charAt(0).toUpperCase() + str.substr(1) : str; +} + +var truncateText$1 = truncateText; + +/** + * @public + * @param {Object} opt + * @param {string} opt.text + * @param {string} opt.font + * @param {string} [opt.textAlign='left'] + * @param {string} [opt.textVerticalAlign='top'] + * @param {Array.} [opt.textPadding] + * @param {number} [opt.textLineHeight] + * @param {Object} [opt.rich] + * @param {Object} [opt.truncate] + * @return {Object} {x, y, width, height, lineHeight} + */ +function getTextBoundingRect(opt) { + return getBoundingRect( + opt.text, + opt.font, + opt.textAlign, + opt.textVerticalAlign, + opt.textPadding, + opt.textLineHeight, + opt.rich, + opt.truncate + ); +} + +/** + * @deprecated + * the `textLineHeight` was added later. + * For backward compatiblility, put it as the last parameter. + * But deprecated this interface. Please use `getTextBoundingRect` instead. + */ +function getTextRect( + text, font, textAlign, textVerticalAlign, textPadding, rich, truncate, textLineHeight +) { + return getBoundingRect( + text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, rich, truncate + ); +} + + +var format = (Object.freeze || Object)({ + addCommas: addCommas, + toCamelCase: toCamelCase, + normalizeCssArray: normalizeCssArray$1, + encodeHTML: encodeHTML, + formatTpl: formatTpl, + formatTplSimple: formatTplSimple, + getTooltipMarker: getTooltipMarker, + formatTime: formatTime, + capitalFirst: capitalFirst, + truncateText: truncateText$1, + getTextBoundingRect: getTextBoundingRect, + getTextRect: getTextRect +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Layout helpers for each component positioning + +var each$3 = each$1; + +/** + * @public + */ +var LOCATION_PARAMS = [ + 'left', 'right', 'top', 'bottom', 'width', 'height' +]; + +/** + * @public + */ +var HV_NAMES = [ + ['width', 'left', 'right'], + ['height', 'top', 'bottom'] +]; + +function boxLayout(orient, group, gap, maxWidth, maxHeight) { + var x = 0; + var y = 0; + + if (maxWidth == null) { + maxWidth = Infinity; + } + if (maxHeight == null) { + maxHeight = Infinity; + } + var currentLineMaxSize = 0; + + group.eachChild(function (child, idx) { + var position = child.position; + var rect = child.getBoundingRect(); + var nextChild = group.childAt(idx + 1); + var nextChildRect = nextChild && nextChild.getBoundingRect(); + var nextX; + var nextY; + + if (orient === 'horizontal') { + var moveX = rect.width + (nextChildRect ? (-nextChildRect.x + rect.x) : 0); + nextX = x + moveX; + // Wrap when width exceeds maxWidth or meet a `newline` group + // FIXME compare before adding gap? + if (nextX > maxWidth || child.newline) { + x = 0; + nextX = moveX; + y += currentLineMaxSize + gap; + currentLineMaxSize = rect.height; + } + else { + // FIXME: consider rect.y is not `0`? + currentLineMaxSize = Math.max(currentLineMaxSize, rect.height); + } + } + else { + var moveY = rect.height + (nextChildRect ? (-nextChildRect.y + rect.y) : 0); + nextY = y + moveY; + // Wrap when width exceeds maxHeight or meet a `newline` group + if (nextY > maxHeight || child.newline) { + x += currentLineMaxSize + gap; + y = 0; + nextY = moveY; + currentLineMaxSize = rect.width; + } + else { + currentLineMaxSize = Math.max(currentLineMaxSize, rect.width); + } + } + + if (child.newline) { + return; + } + + position[0] = x; + position[1] = y; + + orient === 'horizontal' + ? (x = nextX + gap) + : (y = nextY + gap); + }); +} + +/** + * VBox or HBox layouting + * @param {string} orient + * @param {module:zrender/container/Group} group + * @param {number} gap + * @param {number} [width=Infinity] + * @param {number} [height=Infinity] + */ +var box = boxLayout; + +/** + * VBox layouting + * @param {module:zrender/container/Group} group + * @param {number} gap + * @param {number} [width=Infinity] + * @param {number} [height=Infinity] + */ +var vbox = curry(boxLayout, 'vertical'); + +/** + * HBox layouting + * @param {module:zrender/container/Group} group + * @param {number} gap + * @param {number} [width=Infinity] + * @param {number} [height=Infinity] + */ +var hbox = curry(boxLayout, 'horizontal'); + +/** + * If x or x2 is not specified or 'center' 'left' 'right', + * the width would be as long as possible. + * If y or y2 is not specified or 'middle' 'top' 'bottom', + * the height would be as long as possible. + * + * @param {Object} positionInfo + * @param {number|string} [positionInfo.x] + * @param {number|string} [positionInfo.y] + * @param {number|string} [positionInfo.x2] + * @param {number|string} [positionInfo.y2] + * @param {Object} containerRect {width, height} + * @param {string|number} margin + * @return {Object} {width, height} + */ +function getAvailableSize(positionInfo, containerRect, margin) { + var containerWidth = containerRect.width; + var containerHeight = containerRect.height; + + var x = parsePercent$1(positionInfo.x, containerWidth); + var y = parsePercent$1(positionInfo.y, containerHeight); + var x2 = parsePercent$1(positionInfo.x2, containerWidth); + var y2 = parsePercent$1(positionInfo.y2, containerHeight); + + (isNaN(x) || isNaN(parseFloat(positionInfo.x))) && (x = 0); + (isNaN(x2) || isNaN(parseFloat(positionInfo.x2))) && (x2 = containerWidth); + (isNaN(y) || isNaN(parseFloat(positionInfo.y))) && (y = 0); + (isNaN(y2) || isNaN(parseFloat(positionInfo.y2))) && (y2 = containerHeight); + + margin = normalizeCssArray$1(margin || 0); + + return { + width: Math.max(x2 - x - margin[1] - margin[3], 0), + height: Math.max(y2 - y - margin[0] - margin[2], 0) + }; +} + +/** + * Parse position info. + * + * @param {Object} positionInfo + * @param {number|string} [positionInfo.left] + * @param {number|string} [positionInfo.top] + * @param {number|string} [positionInfo.right] + * @param {number|string} [positionInfo.bottom] + * @param {number|string} [positionInfo.width] + * @param {number|string} [positionInfo.height] + * @param {number|string} [positionInfo.aspect] Aspect is width / height + * @param {Object} containerRect + * @param {string|number} [margin] + * + * @return {module:zrender/core/BoundingRect} + */ +function getLayoutRect( + positionInfo, containerRect, margin +) { + margin = normalizeCssArray$1(margin || 0); + + var containerWidth = containerRect.width; + var containerHeight = containerRect.height; + + var left = parsePercent$1(positionInfo.left, containerWidth); + var top = parsePercent$1(positionInfo.top, containerHeight); + var right = parsePercent$1(positionInfo.right, containerWidth); + var bottom = parsePercent$1(positionInfo.bottom, containerHeight); + var width = parsePercent$1(positionInfo.width, containerWidth); + var height = parsePercent$1(positionInfo.height, containerHeight); + + var verticalMargin = margin[2] + margin[0]; + var horizontalMargin = margin[1] + margin[3]; + var aspect = positionInfo.aspect; + + // If width is not specified, calculate width from left and right + if (isNaN(width)) { + width = containerWidth - right - horizontalMargin - left; + } + if (isNaN(height)) { + height = containerHeight - bottom - verticalMargin - top; + } + + if (aspect != null) { + // If width and height are not given + // 1. Graph should not exceeds the container + // 2. Aspect must be keeped + // 3. Graph should take the space as more as possible + // FIXME + // Margin is not considered, because there is no case that both + // using margin and aspect so far. + if (isNaN(width) && isNaN(height)) { + if (aspect > containerWidth / containerHeight) { + width = containerWidth * 0.8; + } + else { + height = containerHeight * 0.8; + } + } + + // Calculate width or height with given aspect + if (isNaN(width)) { + width = aspect * height; + } + if (isNaN(height)) { + height = width / aspect; + } + } + + // If left is not specified, calculate left from right and width + if (isNaN(left)) { + left = containerWidth - right - width - horizontalMargin; + } + if (isNaN(top)) { + top = containerHeight - bottom - height - verticalMargin; + } + + // Align left and top + switch (positionInfo.left || positionInfo.right) { + case 'center': + left = containerWidth / 2 - width / 2 - margin[3]; + break; + case 'right': + left = containerWidth - width - horizontalMargin; + break; + } + switch (positionInfo.top || positionInfo.bottom) { + case 'middle': + case 'center': + top = containerHeight / 2 - height / 2 - margin[0]; + break; + case 'bottom': + top = containerHeight - height - verticalMargin; + break; + } + // If something is wrong and left, top, width, height are calculated as NaN + left = left || 0; + top = top || 0; + if (isNaN(width)) { + // Width may be NaN if only one value is given except width + width = containerWidth - horizontalMargin - left - (right || 0); + } + if (isNaN(height)) { + // Height may be NaN if only one value is given except height + height = containerHeight - verticalMargin - top - (bottom || 0); + } + + var rect = new BoundingRect(left + margin[3], top + margin[0], width, height); + rect.margin = margin; + return rect; +} + + +/** + * Position a zr element in viewport + * Group position is specified by either + * {left, top}, {right, bottom} + * If all properties exists, right and bottom will be igonred. + * + * Logic: + * 1. Scale (against origin point in parent coord) + * 2. Rotate (against origin point in parent coord) + * 3. Traslate (with el.position by this method) + * So this method only fixes the last step 'Traslate', which does not affect + * scaling and rotating. + * + * If be called repeatly with the same input el, the same result will be gotten. + * + * @param {module:zrender/Element} el Should have `getBoundingRect` method. + * @param {Object} positionInfo + * @param {number|string} [positionInfo.left] + * @param {number|string} [positionInfo.top] + * @param {number|string} [positionInfo.right] + * @param {number|string} [positionInfo.bottom] + * @param {number|string} [positionInfo.width] Only for opt.boundingModel: 'raw' + * @param {number|string} [positionInfo.height] Only for opt.boundingModel: 'raw' + * @param {Object} containerRect + * @param {string|number} margin + * @param {Object} [opt] + * @param {Array.} [opt.hv=[1,1]] Only horizontal or only vertical. + * @param {Array.} [opt.boundingMode='all'] + * Specify how to calculate boundingRect when locating. + * 'all': Position the boundingRect that is transformed and uioned + * both itself and its descendants. + * This mode simplies confine the elements in the bounding + * of their container (e.g., using 'right: 0'). + * 'raw': Position the boundingRect that is not transformed and only itself. + * This mode is useful when you want a element can overflow its + * container. (Consider a rotated circle needs to be located in a corner.) + * In this mode positionInfo.width/height can only be number. + */ +function positionElement(el, positionInfo, containerRect, margin, opt) { + var h = !opt || !opt.hv || opt.hv[0]; + var v = !opt || !opt.hv || opt.hv[1]; + var boundingMode = opt && opt.boundingMode || 'all'; + + if (!h && !v) { + return; + } + + var rect; + if (boundingMode === 'raw') { + rect = el.type === 'group' + ? new BoundingRect(0, 0, +positionInfo.width || 0, +positionInfo.height || 0) + : el.getBoundingRect(); + } + else { + rect = el.getBoundingRect(); + if (el.needLocalTransform()) { + var transform = el.getLocalTransform(); + // Notice: raw rect may be inner object of el, + // which should not be modified. + rect = rect.clone(); + rect.applyTransform(transform); + } + } + + // The real width and height can not be specified but calculated by the given el. + positionInfo = getLayoutRect( + defaults( + {width: rect.width, height: rect.height}, + positionInfo + ), + containerRect, + margin + ); + + // Because 'tranlate' is the last step in transform + // (see zrender/core/Transformable#getLocalTransform), + // we can just only modify el.position to get final result. + var elPos = el.position; + var dx = h ? positionInfo.x - rect.x : 0; + var dy = v ? positionInfo.y - rect.y : 0; + + el.attr('position', boundingMode === 'raw' ? [dx, dy] : [elPos[0] + dx, elPos[1] + dy]); +} + +/** + * @param {Object} option Contains some of the properties in HV_NAMES. + * @param {number} hvIdx 0: horizontal; 1: vertical. + */ +function sizeCalculable(option, hvIdx) { + return option[HV_NAMES[hvIdx][0]] != null + || (option[HV_NAMES[hvIdx][1]] != null && option[HV_NAMES[hvIdx][2]] != null); +} + +/** + * Consider Case: + * When defulat option has {left: 0, width: 100}, and we set {right: 0} + * through setOption or media query, using normal zrUtil.merge will cause + * {right: 0} does not take effect. + * + * @example + * ComponentModel.extend({ + * init: function () { + * ... + * var inputPositionParams = layout.getLayoutParams(option); + * this.mergeOption(inputPositionParams); + * }, + * mergeOption: function (newOption) { + * newOption && zrUtil.merge(thisOption, newOption, true); + * layout.mergeLayoutParam(thisOption, newOption); + * } + * }); + * + * @param {Object} targetOption + * @param {Object} newOption + * @param {Object|string} [opt] + * @param {boolean|Array.} [opt.ignoreSize=false] Used for the components + * that width (or height) should not be calculated by left and right (or top and bottom). + */ +function mergeLayoutParam(targetOption, newOption, opt) { + !isObject$1(opt) && (opt = {}); + + var ignoreSize = opt.ignoreSize; + !isArray(ignoreSize) && (ignoreSize = [ignoreSize, ignoreSize]); + + var hResult = merge$$1(HV_NAMES[0], 0); + var vResult = merge$$1(HV_NAMES[1], 1); + + copy(HV_NAMES[0], targetOption, hResult); + copy(HV_NAMES[1], targetOption, vResult); + + function merge$$1(names, hvIdx) { + var newParams = {}; + var newValueCount = 0; + var merged = {}; + var mergedValueCount = 0; + var enoughParamNumber = 2; + + each$3(names, function (name) { + merged[name] = targetOption[name]; + }); + each$3(names, function (name) { + // Consider case: newOption.width is null, which is + // set by user for removing width setting. + hasProp(newOption, name) && (newParams[name] = merged[name] = newOption[name]); + hasValue(newParams, name) && newValueCount++; + hasValue(merged, name) && mergedValueCount++; + }); + + if (ignoreSize[hvIdx]) { + // Only one of left/right is premitted to exist. + if (hasValue(newOption, names[1])) { + merged[names[2]] = null; + } + else if (hasValue(newOption, names[2])) { + merged[names[1]] = null; + } + return merged; + } + + // Case: newOption: {width: ..., right: ...}, + // or targetOption: {right: ...} and newOption: {width: ...}, + // There is no conflict when merged only has params count + // little than enoughParamNumber. + if (mergedValueCount === enoughParamNumber || !newValueCount) { + return merged; + } + // Case: newOption: {width: ..., right: ...}, + // Than we can make sure user only want those two, and ignore + // all origin params in targetOption. + else if (newValueCount >= enoughParamNumber) { + return newParams; + } + else { + // Chose another param from targetOption by priority. + for (var i = 0; i < names.length; i++) { + var name = names[i]; + if (!hasProp(newParams, name) && hasProp(targetOption, name)) { + newParams[name] = targetOption[name]; + break; + } + } + return newParams; + } + } + + function hasProp(obj, name) { + return obj.hasOwnProperty(name); + } + + function hasValue(obj, name) { + return obj[name] != null && obj[name] !== 'auto'; + } + + function copy(names, target, source) { + each$3(names, function (name) { + target[name] = source[name]; + }); + } +} + +/** + * Retrieve 'left', 'right', 'top', 'bottom', 'width', 'height' from object. + * @param {Object} source + * @return {Object} Result contains those props. + */ +function getLayoutParams(source) { + return copyLayoutParams({}, source); +} + +/** + * Retrieve 'left', 'right', 'top', 'bottom', 'width', 'height' from object. + * @param {Object} source + * @return {Object} Result contains those props. + */ +function copyLayoutParams(target, source) { + source && target && each$3(LOCATION_PARAMS, function (name) { + source.hasOwnProperty(name) && (target[name] = source[name]); + }); + return target; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var boxLayoutMixin = { + getBoxLayoutParams: function () { + return { + left: this.get('left'), + top: this.get('top'), + right: this.get('right'), + bottom: this.get('bottom'), + width: this.get('width'), + height: this.get('height') + }; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Component model + * + * @module echarts/model/Component + */ + +var inner$1 = makeInner(); + +/** + * @alias module:echarts/model/Component + * @constructor + * @param {Object} option + * @param {module:echarts/model/Model} parentModel + * @param {module:echarts/model/Model} ecModel + */ +var ComponentModel = Model.extend({ + + type: 'component', + + /** + * @readOnly + * @type {string} + */ + id: '', + + /** + * Because simplified concept is probably better, series.name (or component.name) + * has been having too many resposibilities: + * (1) Generating id (which requires name in option should not be modified). + * (2) As an index to mapping series when merging option or calling API (a name + * can refer to more then one components, which is convinient is some case). + * (3) Display. + * @readOnly + */ + name: '', + + /** + * @readOnly + * @type {string} + */ + mainType: '', + + /** + * @readOnly + * @type {string} + */ + subType: '', + + /** + * @readOnly + * @type {number} + */ + componentIndex: 0, + + /** + * @type {Object} + * @protected + */ + defaultOption: null, + + /** + * @type {module:echarts/model/Global} + * @readOnly + */ + ecModel: null, + + /** + * key: componentType + * value: Component model list, can not be null. + * @type {Object.>} + * @readOnly + */ + dependentModels: [], + + /** + * @type {string} + * @readOnly + */ + uid: null, + + /** + * Support merge layout params. + * Only support 'box' now (left/right/top/bottom/width/height). + * @type {string|Object} Object can be {ignoreSize: true} + * @readOnly + */ + layoutMode: null, + + $constructor: function (option, parentModel, ecModel, extraOpt) { + Model.call(this, option, parentModel, ecModel, extraOpt); + + this.uid = getUID('ec_cpt_model'); + }, + + init: function (option, parentModel, ecModel, extraOpt) { + this.mergeDefaultAndTheme(option, ecModel); + }, + + mergeDefaultAndTheme: function (option, ecModel) { + var layoutMode = this.layoutMode; + var inputPositionParams = layoutMode + ? getLayoutParams(option) : {}; + + var themeModel = ecModel.getTheme(); + merge(option, themeModel.get(this.mainType)); + merge(option, this.getDefaultOption()); + + if (layoutMode) { + mergeLayoutParam(option, inputPositionParams, layoutMode); + } + }, + + mergeOption: function (option, extraOpt) { + merge(this.option, option, true); + + var layoutMode = this.layoutMode; + if (layoutMode) { + mergeLayoutParam(this.option, option, layoutMode); + } + }, + + // Hooker after init or mergeOption + optionUpdated: function (newCptOption, isInit) {}, + + getDefaultOption: function () { + var fields = inner$1(this); + if (!fields.defaultOption) { + var optList = []; + var Class = this.constructor; + while (Class) { + var opt = Class.prototype.defaultOption; + opt && optList.push(opt); + Class = Class.superClass; + } + + var defaultOption = {}; + for (var i = optList.length - 1; i >= 0; i--) { + defaultOption = merge(defaultOption, optList[i], true); + } + fields.defaultOption = defaultOption; + } + return fields.defaultOption; + }, + + getReferringComponents: function (mainType) { + return this.ecModel.queryComponents({ + mainType: mainType, + index: this.get(mainType + 'Index', true), + id: this.get(mainType + 'Id', true) + }); + } + +}); + +// Reset ComponentModel.extend, add preConstruct. +// clazzUtil.enableClassExtend( +// ComponentModel, +// function (option, parentModel, ecModel, extraOpt) { +// // Set dependentModels, componentIndex, name, id, mainType, subType. +// zrUtil.extend(this, extraOpt); + +// this.uid = componentUtil.getUID('componentModel'); + +// // this.setReadOnly([ +// // 'type', 'id', 'uid', 'name', 'mainType', 'subType', +// // 'dependentModels', 'componentIndex' +// // ]); +// } +// ); + +// Add capability of registerClass, getClass, hasClass, registerSubTypeDefaulter and so on. +enableClassManagement( + ComponentModel, {registerWhenExtend: true} +); +enableSubTypeDefaulter(ComponentModel); + +// Add capability of ComponentModel.topologicalTravel. +enableTopologicalTravel(ComponentModel, getDependencies); + +function getDependencies(componentType) { + var deps = []; + each$1(ComponentModel.getClassesByMainType(componentType), function (Clazz) { + deps = deps.concat(Clazz.prototype.dependencies || []); + }); + + // Ensure main type. + deps = map(deps, function (type) { + return parseClassType$1(type).main; + }); + + // Hack dataset for convenience. + if (componentType !== 'dataset' && indexOf(deps, 'dataset') <= 0) { + deps.unshift('dataset'); + } + + return deps; +} + +mixin(ComponentModel, boxLayoutMixin); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var platform = ''; +// Navigator not exists in node +if (typeof navigator !== 'undefined') { + platform = navigator.platform || ''; +} + +var globalDefault = { + // backgroundColor: 'rgba(0,0,0,0)', + + // https://dribbble.com/shots/1065960-Infographic-Pie-chart-visualization + // color: ['#5793f3', '#d14a61', '#fd9c35', '#675bba', '#fec42c', '#dd4444', '#d4df5a', '#cd4870'], + // Light colors: + // color: ['#bcd3bb', '#e88f70', '#edc1a5', '#9dc5c8', '#e1e8c8', '#7b7c68', '#e5b5b5', '#f0b489', '#928ea8', '#bda29a'], + // color: ['#cc5664', '#9bd6ec', '#ea946e', '#8acaaa', '#f1ec64', '#ee8686', '#a48dc1', '#5da6bc', '#b9dcae'], + // Dark colors: + color: [ + '#c23531', '#2f4554', '#61a0a8', '#d48265', '#91c7ae', '#749f83', + '#ca8622', '#bda29a', '#6e7074', '#546570', '#c4ccd3' + ], + + gradientColor: ['#f6efa6', '#d88273', '#bf444c'], + + // If xAxis and yAxis declared, grid is created by default. + // grid: {}, + + textStyle: { + // color: '#000', + // decoration: 'none', + // PENDING + fontFamily: platform.match(/^Win/) ? 'Microsoft YaHei' : 'sans-serif', + // fontFamily: 'Arial, Verdana, sans-serif', + fontSize: 12, + fontStyle: 'normal', + fontWeight: 'normal' + }, + + // http://blogs.adobe.com/webplatform/2014/02/24/using-blend-modes-in-html-canvas/ + // https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/globalCompositeOperation + // Default is source-over + blendMode: null, + + animation: 'auto', + animationDuration: 1000, + animationDurationUpdate: 300, + animationEasing: 'exponentialOut', + animationEasingUpdate: 'cubicOut', + + animationThreshold: 2000, + // Configuration for progressive/incremental rendering + progressiveThreshold: 3000, + progressive: 400, + + // Threshold of if use single hover layer to optimize. + // It is recommended that `hoverLayerThreshold` is equivalent to or less than + // `progressiveThreshold`, otherwise hover will cause restart of progressive, + // which is unexpected. + // see example . + hoverLayerThreshold: 3000, + + // See: module:echarts/scale/Time + useUTC: false +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var inner$2 = makeInner(); + +function getNearestColorPalette(colors, requestColorNum) { + var paletteNum = colors.length; + // TODO colors must be in order + for (var i = 0; i < paletteNum; i++) { + if (colors[i].length > requestColorNum) { + return colors[i]; + } + } + return colors[paletteNum - 1]; +} + +var colorPaletteMixin = { + clearColorPalette: function () { + inner$2(this).colorIdx = 0; + inner$2(this).colorNameMap = {}; + }, + + /** + * @param {string} name MUST NOT be null/undefined. Otherwise call this function + * twise with the same parameters will get different result. + * @param {Object} [scope=this] + * @param {Object} [requestColorNum] + * @return {string} color string. + */ + getColorFromPalette: function (name, scope, requestColorNum) { + scope = scope || this; + var scopeFields = inner$2(scope); + var colorIdx = scopeFields.colorIdx || 0; + var colorNameMap = scopeFields.colorNameMap = scopeFields.colorNameMap || {}; + // Use `hasOwnProperty` to avoid conflict with Object.prototype. + if (colorNameMap.hasOwnProperty(name)) { + return colorNameMap[name]; + } + var defaultColorPalette = normalizeToArray(this.get('color', true)); + var layeredColorPalette = this.get('colorLayer', true); + var colorPalette = ((requestColorNum == null || !layeredColorPalette) + ? defaultColorPalette : getNearestColorPalette(layeredColorPalette, requestColorNum)); + + // In case can't find in layered color palette. + colorPalette = colorPalette || defaultColorPalette; + + if (!colorPalette || !colorPalette.length) { + return; + } + + var color = colorPalette[colorIdx]; + if (name) { + colorNameMap[name] = color; + } + scopeFields.colorIdx = (colorIdx + 1) % colorPalette.length; + + return color; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Helper for model references. + * There are many manners to refer axis/coordSys. + */ + +// TODO +// merge relevant logic to this file? +// check: "modelHelper" of tooltip and "BrushTargetManager". + +/** + * @return {Object} For example: + * { + * coordSysName: 'cartesian2d', + * coordSysDims: ['x', 'y', ...], + * axisMap: HashMap({ + * x: xAxisModel, + * y: yAxisModel + * }), + * categoryAxisMap: HashMap({ + * x: xAxisModel, + * y: undefined + * }), + * // It also indicate that whether there is category axis. + * firstCategoryDimIndex: 1, + * // To replace user specified encode. + * } + */ +function getCoordSysDefineBySeries(seriesModel) { + var coordSysName = seriesModel.get('coordinateSystem'); + var result = { + coordSysName: coordSysName, + coordSysDims: [], + axisMap: createHashMap(), + categoryAxisMap: createHashMap() + }; + var fetch = fetchers[coordSysName]; + if (fetch) { + fetch(seriesModel, result, result.axisMap, result.categoryAxisMap); + return result; + } +} + +var fetchers = { + + cartesian2d: function (seriesModel, result, axisMap, categoryAxisMap) { + var xAxisModel = seriesModel.getReferringComponents('xAxis')[0]; + var yAxisModel = seriesModel.getReferringComponents('yAxis')[0]; + + if (__DEV__) { + if (!xAxisModel) { + throw new Error('xAxis "' + retrieve( + seriesModel.get('xAxisIndex'), + seriesModel.get('xAxisId'), + 0 + ) + '" not found'); + } + if (!yAxisModel) { + throw new Error('yAxis "' + retrieve( + seriesModel.get('xAxisIndex'), + seriesModel.get('yAxisId'), + 0 + ) + '" not found'); + } + } + + result.coordSysDims = ['x', 'y']; + axisMap.set('x', xAxisModel); + axisMap.set('y', yAxisModel); + + if (isCategory(xAxisModel)) { + categoryAxisMap.set('x', xAxisModel); + result.firstCategoryDimIndex = 0; + } + if (isCategory(yAxisModel)) { + categoryAxisMap.set('y', yAxisModel); + result.firstCategoryDimIndex = 1; + } + }, + + singleAxis: function (seriesModel, result, axisMap, categoryAxisMap) { + var singleAxisModel = seriesModel.getReferringComponents('singleAxis')[0]; + + if (__DEV__) { + if (!singleAxisModel) { + throw new Error('singleAxis should be specified.'); + } + } + + result.coordSysDims = ['single']; + axisMap.set('single', singleAxisModel); + + if (isCategory(singleAxisModel)) { + categoryAxisMap.set('single', singleAxisModel); + result.firstCategoryDimIndex = 0; + } + }, + + polar: function (seriesModel, result, axisMap, categoryAxisMap) { + var polarModel = seriesModel.getReferringComponents('polar')[0]; + var radiusAxisModel = polarModel.findAxisModel('radiusAxis'); + var angleAxisModel = polarModel.findAxisModel('angleAxis'); + + if (__DEV__) { + if (!angleAxisModel) { + throw new Error('angleAxis option not found'); + } + if (!radiusAxisModel) { + throw new Error('radiusAxis option not found'); + } + } + + result.coordSysDims = ['radius', 'angle']; + axisMap.set('radius', radiusAxisModel); + axisMap.set('angle', angleAxisModel); + + if (isCategory(radiusAxisModel)) { + categoryAxisMap.set('radius', radiusAxisModel); + result.firstCategoryDimIndex = 0; + } + if (isCategory(angleAxisModel)) { + categoryAxisMap.set('angle', angleAxisModel); + result.firstCategoryDimIndex = 1; + } + }, + + geo: function (seriesModel, result, axisMap, categoryAxisMap) { + result.coordSysDims = ['lng', 'lat']; + }, + + parallel: function (seriesModel, result, axisMap, categoryAxisMap) { + var ecModel = seriesModel.ecModel; + var parallelModel = ecModel.getComponent( + 'parallel', seriesModel.get('parallelIndex') + ); + var coordSysDims = result.coordSysDims = parallelModel.dimensions.slice(); + + each$1(parallelModel.parallelAxisIndex, function (axisIndex, index) { + var axisModel = ecModel.getComponent('parallelAxis', axisIndex); + var axisDim = coordSysDims[index]; + axisMap.set(axisDim, axisModel); + + if (isCategory(axisModel) && result.firstCategoryDimIndex == null) { + categoryAxisMap.set(axisDim, axisModel); + result.firstCategoryDimIndex = index; + } + }); + } +}; + +function isCategory(axisModel) { + return axisModel.get('type') === 'category'; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Avoid typo. +var SOURCE_FORMAT_ORIGINAL = 'original'; +var SOURCE_FORMAT_ARRAY_ROWS = 'arrayRows'; +var SOURCE_FORMAT_OBJECT_ROWS = 'objectRows'; +var SOURCE_FORMAT_KEYED_COLUMNS = 'keyedColumns'; +var SOURCE_FORMAT_UNKNOWN = 'unknown'; +// ??? CHANGE A NAME +var SOURCE_FORMAT_TYPED_ARRAY = 'typedArray'; + +var SERIES_LAYOUT_BY_COLUMN = 'column'; +var SERIES_LAYOUT_BY_ROW = 'row'; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * [sourceFormat] + * + * + "original": + * This format is only used in series.data, where + * itemStyle can be specified in data item. + * + * + "arrayRows": + * [ + * ['product', 'score', 'amount'], + * ['Matcha Latte', 89.3, 95.8], + * ['Milk Tea', 92.1, 89.4], + * ['Cheese Cocoa', 94.4, 91.2], + * ['Walnut Brownie', 85.4, 76.9] + * ] + * + * + "objectRows": + * [ + * {product: 'Matcha Latte', score: 89.3, amount: 95.8}, + * {product: 'Milk Tea', score: 92.1, amount: 89.4}, + * {product: 'Cheese Cocoa', score: 94.4, amount: 91.2}, + * {product: 'Walnut Brownie', score: 85.4, amount: 76.9} + * ] + * + * + "keyedColumns": + * { + * 'product': ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie'], + * 'count': [823, 235, 1042, 988], + * 'score': [95.8, 81.4, 91.2, 76.9] + * } + * + * + "typedArray" + * + * + "unknown" + */ + +/** + * @constructor + * @param {Object} fields + * @param {string} fields.sourceFormat + * @param {Array|Object} fields.fromDataset + * @param {Array|Object} [fields.data] + * @param {string} [seriesLayoutBy='column'] + * @param {Array.} [dimensionsDefine] + * @param {Objet|HashMap} [encodeDefine] + * @param {number} [startIndex=0] + * @param {number} [dimensionsDetectCount] + */ +function Source(fields) { + + /** + * @type {boolean} + */ + this.fromDataset = fields.fromDataset; + + /** + * Not null/undefined. + * @type {Array|Object} + */ + this.data = fields.data || ( + fields.sourceFormat === SOURCE_FORMAT_KEYED_COLUMNS ? {} : [] + ); + + /** + * See also "detectSourceFormat". + * Not null/undefined. + * @type {string} + */ + this.sourceFormat = fields.sourceFormat || SOURCE_FORMAT_UNKNOWN; + + /** + * 'row' or 'column' + * Not null/undefined. + * @type {string} seriesLayoutBy + */ + this.seriesLayoutBy = fields.seriesLayoutBy || SERIES_LAYOUT_BY_COLUMN; + + /** + * dimensions definition in option. + * can be null/undefined. + * @type {Array.} + */ + this.dimensionsDefine = fields.dimensionsDefine; + + /** + * encode definition in option. + * can be null/undefined. + * @type {Objet|HashMap} + */ + this.encodeDefine = fields.encodeDefine && createHashMap(fields.encodeDefine); + + /** + * Not null/undefined, uint. + * @type {number} + */ + this.startIndex = fields.startIndex || 0; + + /** + * Can be null/undefined (when unknown), uint. + * @type {number} + */ + this.dimensionsDetectCount = fields.dimensionsDetectCount; +} + +/** + * Wrap original series data for some compatibility cases. + */ +Source.seriesDataToSource = function (data) { + return new Source({ + data: data, + sourceFormat: isTypedArray(data) + ? SOURCE_FORMAT_TYPED_ARRAY + : SOURCE_FORMAT_ORIGINAL, + fromDataset: false + }); +}; + +enableClassCheck(Source); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var inner$3 = makeInner(); + +/** + * @see {module:echarts/data/Source} + * @param {module:echarts/component/dataset/DatasetModel} datasetModel + * @return {string} sourceFormat + */ +function detectSourceFormat(datasetModel) { + var data = datasetModel.option.source; + var sourceFormat = SOURCE_FORMAT_UNKNOWN; + + if (isTypedArray(data)) { + sourceFormat = SOURCE_FORMAT_TYPED_ARRAY; + } + else if (isArray(data)) { + // FIXME Whether tolerate null in top level array? + if (data.length === 0) { + sourceFormat = SOURCE_FORMAT_ARRAY_ROWS; + } + + for (var i = 0, len = data.length; i < len; i++) { + var item = data[i]; + + if (item == null) { + continue; + } + else if (isArray(item)) { + sourceFormat = SOURCE_FORMAT_ARRAY_ROWS; + break; + } + else if (isObject$1(item)) { + sourceFormat = SOURCE_FORMAT_OBJECT_ROWS; + break; + } + } + } + else if (isObject$1(data)) { + for (var key in data) { + if (data.hasOwnProperty(key) && isArrayLike(data[key])) { + sourceFormat = SOURCE_FORMAT_KEYED_COLUMNS; + break; + } + } + } + else if (data != null) { + throw new Error('Invalid data'); + } + + inner$3(datasetModel).sourceFormat = sourceFormat; +} + +/** + * [Scenarios]: + * (1) Provide source data directly: + * series: { + * encode: {...}, + * dimensions: [...] + * seriesLayoutBy: 'row', + * data: [[...]] + * } + * (2) Refer to datasetModel. + * series: [{ + * encode: {...} + * // Ignore datasetIndex means `datasetIndex: 0` + * // and the dimensions defination in dataset is used + * }, { + * encode: {...}, + * seriesLayoutBy: 'column', + * datasetIndex: 1 + * }] + * + * Get data from series itself or datset. + * @return {module:echarts/data/Source} source + */ +function getSource(seriesModel) { + return inner$3(seriesModel).source; +} + +/** + * MUST be called before mergeOption of all series. + * @param {module:echarts/model/Global} ecModel + */ +function resetSourceDefaulter(ecModel) { + // `datasetMap` is used to make default encode. + inner$3(ecModel).datasetMap = createHashMap(); +} + +/** + * [Caution]: + * MUST be called after series option merged and + * before "series.getInitailData()" called. + * + * [The rule of making default encode]: + * Category axis (if exists) alway map to the first dimension. + * Each other axis occupies a subsequent dimension. + * + * [Why make default encode]: + * Simplify the typing of encode in option, avoiding the case like that: + * series: [{encode: {x: 0, y: 1}}, {encode: {x: 0, y: 2}}, {encode: {x: 0, y: 3}}], + * where the "y" have to be manually typed as "1, 2, 3, ...". + * + * @param {module:echarts/model/Series} seriesModel + */ +function prepareSource(seriesModel) { + var seriesOption = seriesModel.option; + + var data = seriesOption.data; + var sourceFormat = isTypedArray(data) + ? SOURCE_FORMAT_TYPED_ARRAY : SOURCE_FORMAT_ORIGINAL; + var fromDataset = false; + + var seriesLayoutBy = seriesOption.seriesLayoutBy; + var sourceHeader = seriesOption.sourceHeader; + var dimensionsDefine = seriesOption.dimensions; + + var datasetModel = getDatasetModel(seriesModel); + if (datasetModel) { + var datasetOption = datasetModel.option; + + data = datasetOption.source; + sourceFormat = inner$3(datasetModel).sourceFormat; + fromDataset = true; + + // These settings from series has higher priority. + seriesLayoutBy = seriesLayoutBy || datasetOption.seriesLayoutBy; + sourceHeader == null && (sourceHeader = datasetOption.sourceHeader); + dimensionsDefine = dimensionsDefine || datasetOption.dimensions; + } + + var completeResult = completeBySourceData( + data, sourceFormat, seriesLayoutBy, sourceHeader, dimensionsDefine + ); + + // Note: dataset option does not have `encode`. + var encodeDefine = seriesOption.encode; + if (!encodeDefine && datasetModel) { + encodeDefine = makeDefaultEncode( + seriesModel, datasetModel, data, sourceFormat, seriesLayoutBy, completeResult + ); + } + + inner$3(seriesModel).source = new Source({ + data: data, + fromDataset: fromDataset, + seriesLayoutBy: seriesLayoutBy, + sourceFormat: sourceFormat, + dimensionsDefine: completeResult.dimensionsDefine, + startIndex: completeResult.startIndex, + dimensionsDetectCount: completeResult.dimensionsDetectCount, + encodeDefine: encodeDefine + }); +} + +// return {startIndex, dimensionsDefine, dimensionsCount} +function completeBySourceData(data, sourceFormat, seriesLayoutBy, sourceHeader, dimensionsDefine) { + if (!data) { + return {dimensionsDefine: normalizeDimensionsDefine(dimensionsDefine)}; + } + + var dimensionsDetectCount; + var startIndex; + var findPotentialName; + + if (sourceFormat === SOURCE_FORMAT_ARRAY_ROWS) { + // Rule: Most of the first line are string: it is header. + // Caution: consider a line with 5 string and 1 number, + // it still can not be sure it is a head, because the + // 5 string may be 5 values of category columns. + if (sourceHeader === 'auto' || sourceHeader == null) { + arrayRowsTravelFirst(function (val) { + // '-' is regarded as null/undefined. + if (val != null && val !== '-') { + if (isString(val)) { + startIndex == null && (startIndex = 1); + } + else { + startIndex = 0; + } + } + // 10 is an experience number, avoid long loop. + }, seriesLayoutBy, data, 10); + } + else { + startIndex = sourceHeader ? 1 : 0; + } + + if (!dimensionsDefine && startIndex === 1) { + dimensionsDefine = []; + arrayRowsTravelFirst(function (val, index) { + dimensionsDefine[index] = val != null ? val : ''; + }, seriesLayoutBy, data); + } + + dimensionsDetectCount = dimensionsDefine + ? dimensionsDefine.length + : seriesLayoutBy === SERIES_LAYOUT_BY_ROW + ? data.length + : data[0] + ? data[0].length + : null; + } + else if (sourceFormat === SOURCE_FORMAT_OBJECT_ROWS) { + if (!dimensionsDefine) { + dimensionsDefine = objectRowsCollectDimensions(data); + findPotentialName = true; + } + } + else if (sourceFormat === SOURCE_FORMAT_KEYED_COLUMNS) { + if (!dimensionsDefine) { + dimensionsDefine = []; + findPotentialName = true; + each$1(data, function (colArr, key) { + dimensionsDefine.push(key); + }); + } + } + else if (sourceFormat === SOURCE_FORMAT_ORIGINAL) { + var value0 = getDataItemValue(data[0]); + dimensionsDetectCount = isArray(value0) && value0.length || 1; + } + else if (sourceFormat === SOURCE_FORMAT_TYPED_ARRAY) { + if (__DEV__) { + assert$1(!!dimensionsDefine, 'dimensions must be given if data is TypedArray.'); + } + } + + var potentialNameDimIndex; + if (findPotentialName) { + each$1(dimensionsDefine, function (dim, idx) { + if ((isObject$1(dim) ? dim.name : dim) === 'name') { + potentialNameDimIndex = idx; + } + }); + } + + return { + startIndex: startIndex, + dimensionsDefine: normalizeDimensionsDefine(dimensionsDefine), + dimensionsDetectCount: dimensionsDetectCount, + potentialNameDimIndex: potentialNameDimIndex + // TODO: potentialIdDimIdx + }; +} + +// Consider dimensions defined like ['A', 'price', 'B', 'price', 'C', 'price'], +// which is reasonable. But dimension name is duplicated. +// Returns undefined or an array contains only object without null/undefiend or string. +function normalizeDimensionsDefine(dimensionsDefine) { + if (!dimensionsDefine) { + // The meaning of null/undefined is different from empty array. + return; + } + var nameMap = createHashMap(); + return map(dimensionsDefine, function (item, index) { + item = extend({}, isObject$1(item) ? item : {name: item}); + + // User can set null in dimensions. + // We dont auto specify name, othewise a given name may + // cause it be refered unexpectedly. + if (item.name == null) { + return item; + } + + // Also consider number form like 2012. + item.name += ''; + // User may also specify displayName. + // displayName will always exists except user not + // specified or dim name is not specified or detected. + // (A auto generated dim name will not be used as + // displayName). + if (item.displayName == null) { + item.displayName = item.name; + } + + var exist = nameMap.get(item.name); + if (!exist) { + nameMap.set(item.name, {count: 1}); + } + else { + item.name += '-' + exist.count++; + } + + return item; + }); +} + +function arrayRowsTravelFirst(cb, seriesLayoutBy, data, maxLoop) { + maxLoop == null && (maxLoop = Infinity); + if (seriesLayoutBy === SERIES_LAYOUT_BY_ROW) { + for (var i = 0; i < data.length && i < maxLoop; i++) { + cb(data[i] ? data[i][0] : null, i); + } + } + else { + var value0 = data[0] || []; + for (var i = 0; i < value0.length && i < maxLoop; i++) { + cb(value0[i], i); + } + } +} + +function objectRowsCollectDimensions(data) { + var firstIndex = 0; + var obj; + while (firstIndex < data.length && !(obj = data[firstIndex++])) {} // jshint ignore: line + if (obj) { + var dimensions = []; + each$1(obj, function (value, key) { + dimensions.push(key); + }); + return dimensions; + } +} + +// ??? TODO merge to completedimensions, where also has +// default encode making logic. And the default rule +// should depends on series? consider 'map'. +function makeDefaultEncode( + seriesModel, datasetModel, data, sourceFormat, seriesLayoutBy, completeResult +) { + var coordSysDefine = getCoordSysDefineBySeries(seriesModel); + var encode = {}; + // var encodeTooltip = []; + // var encodeLabel = []; + var encodeItemName = []; + var encodeSeriesName = []; + var seriesType = seriesModel.subType; + + // ??? TODO refactor: provide by series itself. + // Consider the case: 'map' series is based on geo coordSys, + // 'graph', 'heatmap' can be based on cartesian. But can not + // give default rule simply here. + var nSeriesMap = createHashMap(['pie', 'map', 'funnel']); + var cSeriesMap = createHashMap([ + 'line', 'bar', 'pictorialBar', 'scatter', 'effectScatter', 'candlestick', 'boxplot' + ]); + + // Usually in this case series will use the first data + // dimension as the "value" dimension, or other default + // processes respectively. + if (coordSysDefine && cSeriesMap.get(seriesType) != null) { + var ecModel = seriesModel.ecModel; + var datasetMap = inner$3(ecModel).datasetMap; + var key = datasetModel.uid + '_' + seriesLayoutBy; + var datasetRecord = datasetMap.get(key) + || datasetMap.set(key, {categoryWayDim: 1, valueWayDim: 0}); + + // TODO + // Auto detect first time axis and do arrangement. + each$1(coordSysDefine.coordSysDims, function (coordDim) { + // In value way. + if (coordSysDefine.firstCategoryDimIndex == null) { + var dataDim = datasetRecord.valueWayDim++; + encode[coordDim] = dataDim; + + // ??? TODO give a better default series name rule? + // especially when encode x y specified. + // consider: when mutiple series share one dimension + // category axis, series name should better use + // the other dimsion name. On the other hand, use + // both dimensions name. + + encodeSeriesName.push(dataDim); + // encodeTooltip.push(dataDim); + // encodeLabel.push(dataDim); + } + // In category way, category axis. + else if (coordSysDefine.categoryAxisMap.get(coordDim)) { + encode[coordDim] = 0; + encodeItemName.push(0); + } + // In category way, non-category axis. + else { + var dataDim = datasetRecord.categoryWayDim++; + encode[coordDim] = dataDim; + // encodeTooltip.push(dataDim); + // encodeLabel.push(dataDim); + encodeSeriesName.push(dataDim); + } + }); + } + // Do not make a complex rule! Hard to code maintain and not necessary. + // ??? TODO refactor: provide by series itself. + // [{name: ..., value: ...}, ...] like: + else if (nSeriesMap.get(seriesType) != null) { + // Find the first not ordinal. (5 is an experience value) + var firstNotOrdinal; + for (var i = 0; i < 5 && firstNotOrdinal == null; i++) { + if (!doGuessOrdinal( + data, sourceFormat, seriesLayoutBy, + completeResult.dimensionsDefine, completeResult.startIndex, i + )) { + firstNotOrdinal = i; + } + } + if (firstNotOrdinal != null) { + encode.value = firstNotOrdinal; + var nameDimIndex = completeResult.potentialNameDimIndex + || Math.max(firstNotOrdinal - 1, 0); + // By default, label use itemName in charts. + // So we dont set encodeLabel here. + encodeSeriesName.push(nameDimIndex); + encodeItemName.push(nameDimIndex); + // encodeTooltip.push(firstNotOrdinal); + } + } + + // encodeTooltip.length && (encode.tooltip = encodeTooltip); + // encodeLabel.length && (encode.label = encodeLabel); + encodeItemName.length && (encode.itemName = encodeItemName); + encodeSeriesName.length && (encode.seriesName = encodeSeriesName); + + return encode; +} + +/** + * If return null/undefined, indicate that should not use datasetModel. + */ +function getDatasetModel(seriesModel) { + var option = seriesModel.option; + // Caution: consider the scenario: + // A dataset is declared and a series is not expected to use the dataset, + // and at the beginning `setOption({series: { noData })` (just prepare other + // option but no data), then `setOption({series: {data: [...]}); In this case, + // the user should set an empty array to avoid that dataset is used by default. + var thisData = option.data; + if (!thisData) { + return seriesModel.ecModel.getComponent('dataset', option.datasetIndex || 0); + } +} + +/** + * The rule should not be complex, otherwise user might not + * be able to known where the data is wrong. + * The code is ugly, but how to make it neat? + * + * @param {module:echars/data/Source} source + * @param {number} dimIndex + * @return {boolean} Whether ordinal. + */ +function guessOrdinal(source, dimIndex) { + return doGuessOrdinal( + source.data, + source.sourceFormat, + source.seriesLayoutBy, + source.dimensionsDefine, + source.startIndex, + dimIndex + ); +} + +// dimIndex may be overflow source data. +function doGuessOrdinal( + data, sourceFormat, seriesLayoutBy, dimensionsDefine, startIndex, dimIndex +) { + var result; + // Experience value. + var maxLoop = 5; + + if (isTypedArray(data)) { + return false; + } + + // When sourceType is 'objectRows' or 'keyedColumns', dimensionsDefine + // always exists in source. + var dimName; + if (dimensionsDefine) { + dimName = dimensionsDefine[dimIndex]; + dimName = isObject$1(dimName) ? dimName.name : dimName; + } + + if (sourceFormat === SOURCE_FORMAT_ARRAY_ROWS) { + if (seriesLayoutBy === SERIES_LAYOUT_BY_ROW) { + var sample = data[dimIndex]; + for (var i = 0; i < (sample || []).length && i < maxLoop; i++) { + if ((result = detectValue(sample[startIndex + i])) != null) { + return result; + } + } + } + else { + for (var i = 0; i < data.length && i < maxLoop; i++) { + var row = data[startIndex + i]; + if (row && (result = detectValue(row[dimIndex])) != null) { + return result; + } + } + } + } + else if (sourceFormat === SOURCE_FORMAT_OBJECT_ROWS) { + if (!dimName) { + return; + } + for (var i = 0; i < data.length && i < maxLoop; i++) { + var item = data[i]; + if (item && (result = detectValue(item[dimName])) != null) { + return result; + } + } + } + else if (sourceFormat === SOURCE_FORMAT_KEYED_COLUMNS) { + if (!dimName) { + return; + } + var sample = data[dimName]; + if (!sample || isTypedArray(sample)) { + return false; + } + for (var i = 0; i < sample.length && i < maxLoop; i++) { + if ((result = detectValue(sample[i])) != null) { + return result; + } + } + } + else if (sourceFormat === SOURCE_FORMAT_ORIGINAL) { + for (var i = 0; i < data.length && i < maxLoop; i++) { + var item = data[i]; + var val = getDataItemValue(item); + if (!isArray(val)) { + return false; + } + if ((result = detectValue(val[dimIndex])) != null) { + return result; + } + } + } + + function detectValue(val) { + // Consider usage convenience, '1', '2' will be treated as "number". + // `isFinit('')` get `true`. + if (val != null && isFinite(val) && val !== '') { + return false; + } + else if (isString(val) && val !== '-') { + return true; + } + } + + return false; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * ECharts global model + * + * @module {echarts/model/Global} + */ + + +/** + * Caution: If the mechanism should be changed some day, these cases + * should be considered: + * + * (1) In `merge option` mode, if using the same option to call `setOption` + * many times, the result should be the same (try our best to ensure that). + * (2) In `merge option` mode, if a component has no id/name specified, it + * will be merged by index, and the result sequence of the components is + * consistent to the original sequence. + * (3) `reset` feature (in toolbox). Find detailed info in comments about + * `mergeOption` in module:echarts/model/OptionManager. + */ + +var OPTION_INNER_KEY = '\0_ec_inner'; + +/** + * @alias module:echarts/model/Global + * + * @param {Object} option + * @param {module:echarts/model/Model} parentModel + * @param {Object} theme + */ +var GlobalModel = Model.extend({ + + init: function (option, parentModel, theme, optionManager) { + theme = theme || {}; + + this.option = null; // Mark as not initialized. + + /** + * @type {module:echarts/model/Model} + * @private + */ + this._theme = new Model(theme); + + /** + * @type {module:echarts/model/OptionManager} + */ + this._optionManager = optionManager; + }, + + setOption: function (option, optionPreprocessorFuncs) { + assert$1( + !(OPTION_INNER_KEY in option), + 'please use chart.getOption()' + ); + + this._optionManager.setOption(option, optionPreprocessorFuncs); + + this.resetOption(null); + }, + + /** + * @param {string} type null/undefined: reset all. + * 'recreate': force recreate all. + * 'timeline': only reset timeline option + * 'media': only reset media query option + * @return {boolean} Whether option changed. + */ + resetOption: function (type) { + var optionChanged = false; + var optionManager = this._optionManager; + + if (!type || type === 'recreate') { + var baseOption = optionManager.mountOption(type === 'recreate'); + + if (!this.option || type === 'recreate') { + initBase.call(this, baseOption); + } + else { + this.restoreData(); + this.mergeOption(baseOption); + } + optionChanged = true; + } + + if (type === 'timeline' || type === 'media') { + this.restoreData(); + } + + if (!type || type === 'recreate' || type === 'timeline') { + var timelineOption = optionManager.getTimelineOption(this); + timelineOption && (this.mergeOption(timelineOption), optionChanged = true); + } + + if (!type || type === 'recreate' || type === 'media') { + var mediaOptions = optionManager.getMediaOption(this, this._api); + if (mediaOptions.length) { + each$1(mediaOptions, function (mediaOption) { + this.mergeOption(mediaOption, optionChanged = true); + }, this); + } + } + + return optionChanged; + }, + + /** + * @protected + */ + mergeOption: function (newOption) { + var option = this.option; + var componentsMap = this._componentsMap; + var newCptTypes = []; + + resetSourceDefaulter(this); + + // If no component class, merge directly. + // For example: color, animaiton options, etc. + each$1(newOption, function (componentOption, mainType) { + if (componentOption == null) { + return; + } + + if (!ComponentModel.hasClass(mainType)) { + // globalSettingTask.dirty(); + option[mainType] = option[mainType] == null + ? clone(componentOption) + : merge(option[mainType], componentOption, true); + } + else if (mainType) { + newCptTypes.push(mainType); + } + }); + + ComponentModel.topologicalTravel( + newCptTypes, ComponentModel.getAllClassMainTypes(), visitComponent, this + ); + + function visitComponent(mainType, dependencies) { + + var newCptOptionList = normalizeToArray(newOption[mainType]); + + var mapResult = mappingToExists( + componentsMap.get(mainType), newCptOptionList + ); + + makeIdAndName(mapResult); + + // Set mainType and complete subType. + each$1(mapResult, function (item, index) { + var opt = item.option; + if (isObject$1(opt)) { + item.keyInfo.mainType = mainType; + item.keyInfo.subType = determineSubType(mainType, opt, item.exist); + } + }); + + var dependentModels = getComponentsByTypes( + componentsMap, dependencies + ); + + option[mainType] = []; + componentsMap.set(mainType, []); + + each$1(mapResult, function (resultItem, index) { + var componentModel = resultItem.exist; + var newCptOption = resultItem.option; + + assert$1( + isObject$1(newCptOption) || componentModel, + 'Empty component definition' + ); + + // Consider where is no new option and should be merged using {}, + // see removeEdgeAndAdd in topologicalTravel and + // ComponentModel.getAllClassMainTypes. + if (!newCptOption) { + componentModel.mergeOption({}, this); + componentModel.optionUpdated({}, false); + } + else { + var ComponentModelClass = ComponentModel.getClass( + mainType, resultItem.keyInfo.subType, true + ); + + if (componentModel && componentModel instanceof ComponentModelClass) { + componentModel.name = resultItem.keyInfo.name; + // componentModel.settingTask && componentModel.settingTask.dirty(); + componentModel.mergeOption(newCptOption, this); + componentModel.optionUpdated(newCptOption, false); + } + else { + // PENDING Global as parent ? + var extraOpt = extend( + { + dependentModels: dependentModels, + componentIndex: index + }, + resultItem.keyInfo + ); + componentModel = new ComponentModelClass( + newCptOption, this, this, extraOpt + ); + extend(componentModel, extraOpt); + componentModel.init(newCptOption, this, this, extraOpt); + + // Call optionUpdated after init. + // newCptOption has been used as componentModel.option + // and may be merged with theme and default, so pass null + // to avoid confusion. + componentModel.optionUpdated(null, true); + } + } + + componentsMap.get(mainType)[index] = componentModel; + option[mainType][index] = componentModel.option; + }, this); + + // Backup series for filtering. + if (mainType === 'series') { + createSeriesIndices(this, componentsMap.get('series')); + } + } + + this._seriesIndicesMap = createHashMap( + this._seriesIndices = this._seriesIndices || [] + ); + }, + + /** + * Get option for output (cloned option and inner info removed) + * @public + * @return {Object} + */ + getOption: function () { + var option = clone(this.option); + + each$1(option, function (opts, mainType) { + if (ComponentModel.hasClass(mainType)) { + var opts = normalizeToArray(opts); + for (var i = opts.length - 1; i >= 0; i--) { + // Remove options with inner id. + if (isIdInner(opts[i])) { + opts.splice(i, 1); + } + } + option[mainType] = opts; + } + }); + + delete option[OPTION_INNER_KEY]; + + return option; + }, + + /** + * @return {module:echarts/model/Model} + */ + getTheme: function () { + return this._theme; + }, + + /** + * @param {string} mainType + * @param {number} [idx=0] + * @return {module:echarts/model/Component} + */ + getComponent: function (mainType, idx) { + var list = this._componentsMap.get(mainType); + if (list) { + return list[idx || 0]; + } + }, + + /** + * If none of index and id and name used, return all components with mainType. + * @param {Object} condition + * @param {string} condition.mainType + * @param {string} [condition.subType] If ignore, only query by mainType + * @param {number|Array.} [condition.index] Either input index or id or name. + * @param {string|Array.} [condition.id] Either input index or id or name. + * @param {string|Array.} [condition.name] Either input index or id or name. + * @return {Array.} + */ + queryComponents: function (condition) { + var mainType = condition.mainType; + if (!mainType) { + return []; + } + + var index = condition.index; + var id = condition.id; + var name = condition.name; + + var cpts = this._componentsMap.get(mainType); + + if (!cpts || !cpts.length) { + return []; + } + + var result; + + if (index != null) { + if (!isArray(index)) { + index = [index]; + } + result = filter(map(index, function (idx) { + return cpts[idx]; + }), function (val) { + return !!val; + }); + } + else if (id != null) { + var isIdArray = isArray(id); + result = filter(cpts, function (cpt) { + return (isIdArray && indexOf(id, cpt.id) >= 0) + || (!isIdArray && cpt.id === id); + }); + } + else if (name != null) { + var isNameArray = isArray(name); + result = filter(cpts, function (cpt) { + return (isNameArray && indexOf(name, cpt.name) >= 0) + || (!isNameArray && cpt.name === name); + }); + } + else { + // Return all components with mainType + result = cpts.slice(); + } + + return filterBySubType(result, condition); + }, + + /** + * The interface is different from queryComponents, + * which is convenient for inner usage. + * + * @usage + * var result = findComponents( + * {mainType: 'dataZoom', query: {dataZoomId: 'abc'}} + * ); + * var result = findComponents( + * {mainType: 'series', subType: 'pie', query: {seriesName: 'uio'}} + * ); + * var result = findComponents( + * {mainType: 'series'}, + * function (model, index) {...} + * ); + * // result like [component0, componnet1, ...] + * + * @param {Object} condition + * @param {string} condition.mainType Mandatory. + * @param {string} [condition.subType] Optional. + * @param {Object} [condition.query] like {xxxIndex, xxxId, xxxName}, + * where xxx is mainType. + * If query attribute is null/undefined or has no index/id/name, + * do not filtering by query conditions, which is convenient for + * no-payload situations or when target of action is global. + * @param {Function} [condition.filter] parameter: component, return boolean. + * @return {Array.} + */ + findComponents: function (condition) { + var query = condition.query; + var mainType = condition.mainType; + + var queryCond = getQueryCond(query); + var result = queryCond + ? this.queryComponents(queryCond) + : this._componentsMap.get(mainType); + + return doFilter(filterBySubType(result, condition)); + + function getQueryCond(q) { + var indexAttr = mainType + 'Index'; + var idAttr = mainType + 'Id'; + var nameAttr = mainType + 'Name'; + return q && ( + q[indexAttr] != null + || q[idAttr] != null + || q[nameAttr] != null + ) + ? { + mainType: mainType, + // subType will be filtered finally. + index: q[indexAttr], + id: q[idAttr], + name: q[nameAttr] + } + : null; + } + + function doFilter(res) { + return condition.filter + ? filter(res, condition.filter) + : res; + } + }, + + /** + * @usage + * eachComponent('legend', function (legendModel, index) { + * ... + * }); + * eachComponent(function (componentType, model, index) { + * // componentType does not include subType + * // (componentType is 'xxx' but not 'xxx.aa') + * }); + * eachComponent( + * {mainType: 'dataZoom', query: {dataZoomId: 'abc'}}, + * function (model, index) {...} + * ); + * eachComponent( + * {mainType: 'series', subType: 'pie', query: {seriesName: 'uio'}}, + * function (model, index) {...} + * ); + * + * @param {string|Object=} mainType When mainType is object, the definition + * is the same as the method 'findComponents'. + * @param {Function} cb + * @param {*} context + */ + eachComponent: function (mainType, cb, context) { + var componentsMap = this._componentsMap; + + if (typeof mainType === 'function') { + context = cb; + cb = mainType; + componentsMap.each(function (components, componentType) { + each$1(components, function (component, index) { + cb.call(context, componentType, component, index); + }); + }); + } + else if (isString(mainType)) { + each$1(componentsMap.get(mainType), cb, context); + } + else if (isObject$1(mainType)) { + var queryResult = this.findComponents(mainType); + each$1(queryResult, cb, context); + } + }, + + /** + * @param {string} name + * @return {Array.} + */ + getSeriesByName: function (name) { + var series = this._componentsMap.get('series'); + return filter(series, function (oneSeries) { + return oneSeries.name === name; + }); + }, + + /** + * @param {number} seriesIndex + * @return {module:echarts/model/Series} + */ + getSeriesByIndex: function (seriesIndex) { + return this._componentsMap.get('series')[seriesIndex]; + }, + + /** + * Get series list before filtered by type. + * FIXME: rename to getRawSeriesByType? + * + * @param {string} subType + * @return {Array.} + */ + getSeriesByType: function (subType) { + var series = this._componentsMap.get('series'); + return filter(series, function (oneSeries) { + return oneSeries.subType === subType; + }); + }, + + /** + * @return {Array.} + */ + getSeries: function () { + return this._componentsMap.get('series').slice(); + }, + + /** + * @return {number} + */ + getSeriesCount: function () { + return this._componentsMap.get('series').length; + }, + + /** + * After filtering, series may be different + * frome raw series. + * + * @param {Function} cb + * @param {*} context + */ + eachSeries: function (cb, context) { + assertSeriesInitialized(this); + each$1(this._seriesIndices, function (rawSeriesIndex) { + var series = this._componentsMap.get('series')[rawSeriesIndex]; + cb.call(context, series, rawSeriesIndex); + }, this); + }, + + /** + * Iterate raw series before filtered. + * + * @param {Function} cb + * @param {*} context + */ + eachRawSeries: function (cb, context) { + each$1(this._componentsMap.get('series'), cb, context); + }, + + /** + * After filtering, series may be different. + * frome raw series. + * + * @param {string} subType. + * @param {Function} cb + * @param {*} context + */ + eachSeriesByType: function (subType, cb, context) { + assertSeriesInitialized(this); + each$1(this._seriesIndices, function (rawSeriesIndex) { + var series = this._componentsMap.get('series')[rawSeriesIndex]; + if (series.subType === subType) { + cb.call(context, series, rawSeriesIndex); + } + }, this); + }, + + /** + * Iterate raw series before filtered of given type. + * + * @parma {string} subType + * @param {Function} cb + * @param {*} context + */ + eachRawSeriesByType: function (subType, cb, context) { + return each$1(this.getSeriesByType(subType), cb, context); + }, + + /** + * @param {module:echarts/model/Series} seriesModel + */ + isSeriesFiltered: function (seriesModel) { + assertSeriesInitialized(this); + return this._seriesIndicesMap.get(seriesModel.componentIndex) == null; + }, + + /** + * @return {Array.} + */ + getCurrentSeriesIndices: function () { + return (this._seriesIndices || []).slice(); + }, + + /** + * @param {Function} cb + * @param {*} context + */ + filterSeries: function (cb, context) { + assertSeriesInitialized(this); + var filteredSeries = filter( + this._componentsMap.get('series'), cb, context + ); + createSeriesIndices(this, filteredSeries); + }, + + restoreData: function (payload) { + var componentsMap = this._componentsMap; + + createSeriesIndices(this, componentsMap.get('series')); + + var componentTypes = []; + componentsMap.each(function (components, componentType) { + componentTypes.push(componentType); + }); + + ComponentModel.topologicalTravel( + componentTypes, + ComponentModel.getAllClassMainTypes(), + function (componentType, dependencies) { + each$1(componentsMap.get(componentType), function (component) { + (componentType !== 'series' || !isNotTargetSeries(component, payload)) + && component.restoreData(); + }); + } + ); + } + +}); + +function isNotTargetSeries(seriesModel, payload) { + if (payload) { + var index = payload.seiresIndex; + var id = payload.seriesId; + var name = payload.seriesName; + return (index != null && seriesModel.componentIndex !== index) + || (id != null && seriesModel.id !== id) + || (name != null && seriesModel.name !== name); + } +} + +/** + * @inner + */ +function mergeTheme(option, theme) { + // PENDING + // NOT use `colorLayer` in theme if option has `color` + var notMergeColorLayer = option.color && !option.colorLayer; + + each$1(theme, function (themeItem, name) { + if (name === 'colorLayer' && notMergeColorLayer) { + return; + } + // 如果有 component model 则把具体的 merge 逻辑交给该 model 处理 + if (!ComponentModel.hasClass(name)) { + if (typeof themeItem === 'object') { + option[name] = !option[name] + ? clone(themeItem) + : merge(option[name], themeItem, false); + } + else { + if (option[name] == null) { + option[name] = themeItem; + } + } + } + }); +} + +function initBase(baseOption) { + baseOption = baseOption; + + // Using OPTION_INNER_KEY to mark that this option can not be used outside, + // i.e. `chart.setOption(chart.getModel().option);` is forbiden. + this.option = {}; + this.option[OPTION_INNER_KEY] = 1; + + /** + * Init with series: [], in case of calling findSeries method + * before series initialized. + * @type {Object.>} + * @private + */ + this._componentsMap = createHashMap({series: []}); + + /** + * Mapping between filtered series list and raw series list. + * key: filtered series indices, value: raw series indices. + * @type {Array.} + * @private + */ + this._seriesIndices; + + this._seriesIndicesMap; + + mergeTheme(baseOption, this._theme.option); + + // TODO Needs clone when merging to the unexisted property + merge(baseOption, globalDefault, false); + + this.mergeOption(baseOption); +} + +/** + * @inner + * @param {Array.|string} types model types + * @return {Object} key: {string} type, value: {Array.} models + */ +function getComponentsByTypes(componentsMap, types) { + if (!isArray(types)) { + types = types ? [types] : []; + } + + var ret = {}; + each$1(types, function (type) { + ret[type] = (componentsMap.get(type) || []).slice(); + }); + + return ret; +} + +/** + * @inner + */ +function determineSubType(mainType, newCptOption, existComponent) { + var subType = newCptOption.type + ? newCptOption.type + : existComponent + ? existComponent.subType + // Use determineSubType only when there is no existComponent. + : ComponentModel.determineSubType(mainType, newCptOption); + + // tooltip, markline, markpoint may always has no subType + return subType; +} + +/** + * @inner + */ +function createSeriesIndices(ecModel, seriesModels) { + ecModel._seriesIndicesMap = createHashMap( + ecModel._seriesIndices = map(seriesModels, function (series) { + return series.componentIndex; + }) || [] + ); +} + +/** + * @inner + */ +function filterBySubType(components, condition) { + // Using hasOwnProperty for restrict. Consider + // subType is undefined in user payload. + return condition.hasOwnProperty('subType') + ? filter(components, function (cpt) { + return cpt.subType === condition.subType; + }) + : components; +} + +/** + * @inner + */ +function assertSeriesInitialized(ecModel) { + // Components that use _seriesIndices should depends on series component, + // which make sure that their initialization is after series. + if (__DEV__) { + if (!ecModel._seriesIndices) { + throw new Error('Option should contains series.'); + } + } +} + +mixin(GlobalModel, colorPaletteMixin); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var echartsAPIList = [ + 'getDom', 'getZr', 'getWidth', 'getHeight', 'getDevicePixelRatio', 'dispatchAction', 'isDisposed', + 'on', 'off', 'getDataURL', 'getConnectedDataURL', 'getModel', 'getOption', + 'getViewOfComponentModel', 'getViewOfSeriesModel' +]; +// And `getCoordinateSystems` and `getComponentByElement` will be injected in echarts.js + +function ExtensionAPI(chartInstance) { + each$1(echartsAPIList, function (name) { + this[name] = bind(chartInstance[name], chartInstance); + }, this); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var coordinateSystemCreators = {}; + +function CoordinateSystemManager() { + + this._coordinateSystems = []; +} + +CoordinateSystemManager.prototype = { + + constructor: CoordinateSystemManager, + + create: function (ecModel, api) { + var coordinateSystems = []; + each$1(coordinateSystemCreators, function (creater, type) { + var list = creater.create(ecModel, api); + coordinateSystems = coordinateSystems.concat(list || []); + }); + + this._coordinateSystems = coordinateSystems; + }, + + update: function (ecModel, api) { + each$1(this._coordinateSystems, function (coordSys) { + coordSys.update && coordSys.update(ecModel, api); + }); + }, + + getCoordinateSystems: function () { + return this._coordinateSystems.slice(); + } +}; + +CoordinateSystemManager.register = function (type, coordinateSystemCreator) { + coordinateSystemCreators[type] = coordinateSystemCreator; +}; + +CoordinateSystemManager.get = function (type) { + return coordinateSystemCreators[type]; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * ECharts option manager + * + * @module {echarts/model/OptionManager} + */ + + +var each$4 = each$1; +var clone$3 = clone; +var map$1 = map; +var merge$1 = merge; + +var QUERY_REG = /^(min|max)?(.+)$/; + +/** + * TERM EXPLANATIONS: + * + * [option]: + * + * An object that contains definitions of components. For example: + * var option = { + * title: {...}, + * legend: {...}, + * visualMap: {...}, + * series: [ + * {data: [...]}, + * {data: [...]}, + * ... + * ] + * }; + * + * [rawOption]: + * + * An object input to echarts.setOption. 'rawOption' may be an + * 'option', or may be an object contains multi-options. For example: + * var option = { + * baseOption: { + * title: {...}, + * legend: {...}, + * series: [ + * {data: [...]}, + * {data: [...]}, + * ... + * ] + * }, + * timeline: {...}, + * options: [ + * {title: {...}, series: {data: [...]}}, + * {title: {...}, series: {data: [...]}}, + * ... + * ], + * media: [ + * { + * query: {maxWidth: 320}, + * option: {series: {x: 20}, visualMap: {show: false}} + * }, + * { + * query: {minWidth: 320, maxWidth: 720}, + * option: {series: {x: 500}, visualMap: {show: true}} + * }, + * { + * option: {series: {x: 1200}, visualMap: {show: true}} + * } + * ] + * }; + * + * @alias module:echarts/model/OptionManager + * @param {module:echarts/ExtensionAPI} api + */ +function OptionManager(api) { + + /** + * @private + * @type {module:echarts/ExtensionAPI} + */ + this._api = api; + + /** + * @private + * @type {Array.} + */ + this._timelineOptions = []; + + /** + * @private + * @type {Array.} + */ + this._mediaList = []; + + /** + * @private + * @type {Object} + */ + this._mediaDefault; + + /** + * -1, means default. + * empty means no media. + * @private + * @type {Array.} + */ + this._currentMediaIndices = []; + + /** + * @private + * @type {Object} + */ + this._optionBackup; + + /** + * @private + * @type {Object} + */ + this._newBaseOption; +} + +// timeline.notMerge is not supported in ec3. Firstly there is rearly +// case that notMerge is needed. Secondly supporting 'notMerge' requires +// rawOption cloned and backuped when timeline changed, which does no +// good to performance. What's more, that both timeline and setOption +// method supply 'notMerge' brings complex and some problems. +// Consider this case: +// (step1) chart.setOption({timeline: {notMerge: false}, ...}, false); +// (step2) chart.setOption({timeline: {notMerge: true}, ...}, false); + +OptionManager.prototype = { + + constructor: OptionManager, + + /** + * @public + * @param {Object} rawOption Raw option. + * @param {module:echarts/model/Global} ecModel + * @param {Array.} optionPreprocessorFuncs + * @return {Object} Init option + */ + setOption: function (rawOption, optionPreprocessorFuncs) { + if (rawOption) { + // That set dat primitive is dangerous if user reuse the data when setOption again. + each$1(normalizeToArray(rawOption.series), function (series) { + series && series.data && isTypedArray(series.data) && setAsPrimitive(series.data); + }); + } + + // Caution: some series modify option data, if do not clone, + // it should ensure that the repeat modify correctly + // (create a new object when modify itself). + rawOption = clone$3(rawOption); + + // FIXME + // 如果 timeline options 或者 media 中设置了某个属性,而baseOption中没有设置,则进行警告。 + + var oldOptionBackup = this._optionBackup; + var newParsedOption = parseRawOption.call( + this, rawOption, optionPreprocessorFuncs, !oldOptionBackup + ); + this._newBaseOption = newParsedOption.baseOption; + + // For setOption at second time (using merge mode); + if (oldOptionBackup) { + // Only baseOption can be merged. + mergeOption(oldOptionBackup.baseOption, newParsedOption.baseOption); + + // For simplicity, timeline options and media options do not support merge, + // that is, if you `setOption` twice and both has timeline options, the latter + // timeline opitons will not be merged to the formers, but just substitude them. + if (newParsedOption.timelineOptions.length) { + oldOptionBackup.timelineOptions = newParsedOption.timelineOptions; + } + if (newParsedOption.mediaList.length) { + oldOptionBackup.mediaList = newParsedOption.mediaList; + } + if (newParsedOption.mediaDefault) { + oldOptionBackup.mediaDefault = newParsedOption.mediaDefault; + } + } + else { + this._optionBackup = newParsedOption; + } + }, + + /** + * @param {boolean} isRecreate + * @return {Object} + */ + mountOption: function (isRecreate) { + var optionBackup = this._optionBackup; + + // TODO + // 如果没有reset功能则不clone。 + + this._timelineOptions = map$1(optionBackup.timelineOptions, clone$3); + this._mediaList = map$1(optionBackup.mediaList, clone$3); + this._mediaDefault = clone$3(optionBackup.mediaDefault); + this._currentMediaIndices = []; + + return clone$3(isRecreate + // this._optionBackup.baseOption, which is created at the first `setOption` + // called, and is merged into every new option by inner method `mergeOption` + // each time `setOption` called, can be only used in `isRecreate`, because + // its reliability is under suspicion. In other cases option merge is + // performed by `model.mergeOption`. + ? optionBackup.baseOption : this._newBaseOption + ); + }, + + /** + * @param {module:echarts/model/Global} ecModel + * @return {Object} + */ + getTimelineOption: function (ecModel) { + var option; + var timelineOptions = this._timelineOptions; + + if (timelineOptions.length) { + // getTimelineOption can only be called after ecModel inited, + // so we can get currentIndex from timelineModel. + var timelineModel = ecModel.getComponent('timeline'); + if (timelineModel) { + option = clone$3( + timelineOptions[timelineModel.getCurrentIndex()], + true + ); + } + } + + return option; + }, + + /** + * @param {module:echarts/model/Global} ecModel + * @return {Array.} + */ + getMediaOption: function (ecModel) { + var ecWidth = this._api.getWidth(); + var ecHeight = this._api.getHeight(); + var mediaList = this._mediaList; + var mediaDefault = this._mediaDefault; + var indices = []; + var result = []; + + // No media defined. + if (!mediaList.length && !mediaDefault) { + return result; + } + + // Multi media may be applied, the latter defined media has higher priority. + for (var i = 0, len = mediaList.length; i < len; i++) { + if (applyMediaQuery(mediaList[i].query, ecWidth, ecHeight)) { + indices.push(i); + } + } + + // FIXME + // 是否mediaDefault应该强制用户设置,否则可能修改不能回归。 + if (!indices.length && mediaDefault) { + indices = [-1]; + } + + if (indices.length && !indicesEquals(indices, this._currentMediaIndices)) { + result = map$1(indices, function (index) { + return clone$3( + index === -1 ? mediaDefault.option : mediaList[index].option + ); + }); + } + // Otherwise return nothing. + + this._currentMediaIndices = indices; + + return result; + } +}; + +function parseRawOption(rawOption, optionPreprocessorFuncs, isNew) { + var timelineOptions = []; + var mediaList = []; + var mediaDefault; + var baseOption; + + // Compatible with ec2. + var timelineOpt = rawOption.timeline; + + if (rawOption.baseOption) { + baseOption = rawOption.baseOption; + } + + // For timeline + if (timelineOpt || rawOption.options) { + baseOption = baseOption || {}; + timelineOptions = (rawOption.options || []).slice(); + } + + // For media query + if (rawOption.media) { + baseOption = baseOption || {}; + var media = rawOption.media; + each$4(media, function (singleMedia) { + if (singleMedia && singleMedia.option) { + if (singleMedia.query) { + mediaList.push(singleMedia); + } + else if (!mediaDefault) { + // Use the first media default. + mediaDefault = singleMedia; + } + } + }); + } + + // For normal option + if (!baseOption) { + baseOption = rawOption; + } + + // Set timelineOpt to baseOption in ec3, + // which is convenient for merge option. + if (!baseOption.timeline) { + baseOption.timeline = timelineOpt; + } + + // Preprocess. + each$4([baseOption].concat(timelineOptions) + .concat(map(mediaList, function (media) { + return media.option; + })), + function (option) { + each$4(optionPreprocessorFuncs, function (preProcess) { + preProcess(option, isNew); + }); + } + ); + + return { + baseOption: baseOption, + timelineOptions: timelineOptions, + mediaDefault: mediaDefault, + mediaList: mediaList + }; +} + +/** + * @see + * Support: width, height, aspectRatio + * Can use max or min as prefix. + */ +function applyMediaQuery(query, ecWidth, ecHeight) { + var realMap = { + width: ecWidth, + height: ecHeight, + aspectratio: ecWidth / ecHeight // lowser case for convenientce. + }; + + var applicatable = true; + + each$1(query, function (value, attr) { + var matched = attr.match(QUERY_REG); + + if (!matched || !matched[1] || !matched[2]) { + return; + } + + var operator = matched[1]; + var realAttr = matched[2].toLowerCase(); + + if (!compare(realMap[realAttr], value, operator)) { + applicatable = false; + } + }); + + return applicatable; +} + +function compare(real, expect, operator) { + if (operator === 'min') { + return real >= expect; + } + else if (operator === 'max') { + return real <= expect; + } + else { // Equals + return real === expect; + } +} + +function indicesEquals(indices1, indices2) { + // indices is always order by asc and has only finite number. + return indices1.join(',') === indices2.join(','); +} + +/** + * Consider case: + * `chart.setOption(opt1);` + * Then user do some interaction like dataZoom, dataView changing. + * `chart.setOption(opt2);` + * Then user press 'reset button' in toolbox. + * + * After doing that all of the interaction effects should be reset, the + * chart should be the same as the result of invoke + * `chart.setOption(opt1); chart.setOption(opt2);`. + * + * Although it is not able ensure that + * `chart.setOption(opt1); chart.setOption(opt2);` is equivalents to + * `chart.setOption(merge(opt1, opt2));` exactly, + * this might be the only simple way to implement that feature. + * + * MEMO: We've considered some other approaches: + * 1. Each model handle its self restoration but not uniform treatment. + * (Too complex in logic and error-prone) + * 2. Use a shadow ecModel. (Performace expensive) + */ +function mergeOption(oldOption, newOption) { + newOption = newOption || {}; + + each$4(newOption, function (newCptOpt, mainType) { + if (newCptOpt == null) { + return; + } + + var oldCptOpt = oldOption[mainType]; + + if (!ComponentModel.hasClass(mainType)) { + oldOption[mainType] = merge$1(oldCptOpt, newCptOpt, true); + } + else { + newCptOpt = normalizeToArray(newCptOpt); + oldCptOpt = normalizeToArray(oldCptOpt); + + var mapResult = mappingToExists(oldCptOpt, newCptOpt); + + oldOption[mainType] = map$1(mapResult, function (item) { + return (item.option && item.exist) + ? merge$1(item.exist, item.option, true) + : (item.exist || item.option); + }); + } + }); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var each$5 = each$1; +var isObject$3 = isObject$1; + +var POSSIBLE_STYLES = [ + 'areaStyle', 'lineStyle', 'nodeStyle', 'linkStyle', + 'chordStyle', 'label', 'labelLine' +]; + +function compatEC2ItemStyle(opt) { + var itemStyleOpt = opt && opt.itemStyle; + if (!itemStyleOpt) { + return; + } + for (var i = 0, len = POSSIBLE_STYLES.length; i < len; i++) { + var styleName = POSSIBLE_STYLES[i]; + var normalItemStyleOpt = itemStyleOpt.normal; + var emphasisItemStyleOpt = itemStyleOpt.emphasis; + if (normalItemStyleOpt && normalItemStyleOpt[styleName]) { + opt[styleName] = opt[styleName] || {}; + if (!opt[styleName].normal) { + opt[styleName].normal = normalItemStyleOpt[styleName]; + } + else { + merge(opt[styleName].normal, normalItemStyleOpt[styleName]); + } + normalItemStyleOpt[styleName] = null; + } + if (emphasisItemStyleOpt && emphasisItemStyleOpt[styleName]) { + opt[styleName] = opt[styleName] || {}; + if (!opt[styleName].emphasis) { + opt[styleName].emphasis = emphasisItemStyleOpt[styleName]; + } + else { + merge(opt[styleName].emphasis, emphasisItemStyleOpt[styleName]); + } + emphasisItemStyleOpt[styleName] = null; + } + } +} + +function convertNormalEmphasis(opt, optType, useExtend) { + if (opt && opt[optType] && (opt[optType].normal || opt[optType].emphasis)) { + var normalOpt = opt[optType].normal; + var emphasisOpt = opt[optType].emphasis; + + if (normalOpt) { + // Timeline controlStyle has other properties besides normal and emphasis + if (useExtend) { + opt[optType].normal = opt[optType].emphasis = null; + defaults(opt[optType], normalOpt); + } + else { + opt[optType] = normalOpt; + } + } + if (emphasisOpt) { + opt.emphasis = opt.emphasis || {}; + opt.emphasis[optType] = emphasisOpt; + } + } +} + +function removeEC3NormalStatus(opt) { + convertNormalEmphasis(opt, 'itemStyle'); + convertNormalEmphasis(opt, 'lineStyle'); + convertNormalEmphasis(opt, 'areaStyle'); + convertNormalEmphasis(opt, 'label'); + convertNormalEmphasis(opt, 'labelLine'); + // treemap + convertNormalEmphasis(opt, 'upperLabel'); + // graph + convertNormalEmphasis(opt, 'edgeLabel'); +} + +function compatTextStyle(opt, propName) { + // Check whether is not object (string\null\undefined ...) + var labelOptSingle = isObject$3(opt) && opt[propName]; + var textStyle = isObject$3(labelOptSingle) && labelOptSingle.textStyle; + if (textStyle) { + for (var i = 0, len = TEXT_STYLE_OPTIONS.length; i < len; i++) { + var propName = TEXT_STYLE_OPTIONS[i]; + if (textStyle.hasOwnProperty(propName)) { + labelOptSingle[propName] = textStyle[propName]; + } + } + } +} + +function compatEC3CommonStyles(opt) { + if (opt) { + removeEC3NormalStatus(opt); + compatTextStyle(opt, 'label'); + opt.emphasis && compatTextStyle(opt.emphasis, 'label'); + } +} + +function processSeries(seriesOpt) { + if (!isObject$3(seriesOpt)) { + return; + } + + compatEC2ItemStyle(seriesOpt); + removeEC3NormalStatus(seriesOpt); + + compatTextStyle(seriesOpt, 'label'); + // treemap + compatTextStyle(seriesOpt, 'upperLabel'); + // graph + compatTextStyle(seriesOpt, 'edgeLabel'); + if (seriesOpt.emphasis) { + compatTextStyle(seriesOpt.emphasis, 'label'); + // treemap + compatTextStyle(seriesOpt.emphasis, 'upperLabel'); + // graph + compatTextStyle(seriesOpt.emphasis, 'edgeLabel'); + } + + var markPoint = seriesOpt.markPoint; + if (markPoint) { + compatEC2ItemStyle(markPoint); + compatEC3CommonStyles(markPoint); + } + + var markLine = seriesOpt.markLine; + if (markLine) { + compatEC2ItemStyle(markLine); + compatEC3CommonStyles(markLine); + } + + var markArea = seriesOpt.markArea; + if (markArea) { + compatEC3CommonStyles(markArea); + } + + var data = seriesOpt.data; + + // Break with ec3: if `setOption` again, there may be no `type` in option, + // then the backward compat based on option type will not be performed. + + if (seriesOpt.type === 'graph') { + data = data || seriesOpt.nodes; + var edgeData = seriesOpt.links || seriesOpt.edges; + if (edgeData && !isTypedArray(edgeData)) { + for (var i = 0; i < edgeData.length; i++) { + compatEC3CommonStyles(edgeData[i]); + } + } + each$1(seriesOpt.categories, function (opt) { + removeEC3NormalStatus(opt); + }); + } + + if (data && !isTypedArray(data)) { + for (var i = 0; i < data.length; i++) { + compatEC3CommonStyles(data[i]); + } + } + + // mark point data + var markPoint = seriesOpt.markPoint; + if (markPoint && markPoint.data) { + var mpData = markPoint.data; + for (var i = 0; i < mpData.length; i++) { + compatEC3CommonStyles(mpData[i]); + } + } + // mark line data + var markLine = seriesOpt.markLine; + if (markLine && markLine.data) { + var mlData = markLine.data; + for (var i = 0; i < mlData.length; i++) { + if (isArray(mlData[i])) { + compatEC3CommonStyles(mlData[i][0]); + compatEC3CommonStyles(mlData[i][1]); + } + else { + compatEC3CommonStyles(mlData[i]); + } + } + } + + // Series + if (seriesOpt.type === 'gauge') { + compatTextStyle(seriesOpt, 'axisLabel'); + compatTextStyle(seriesOpt, 'title'); + compatTextStyle(seriesOpt, 'detail'); + } + else if (seriesOpt.type === 'treemap') { + convertNormalEmphasis(seriesOpt.breadcrumb, 'itemStyle'); + each$1(seriesOpt.levels, function (opt) { + removeEC3NormalStatus(opt); + }); + } + else if (seriesOpt.type === 'tree') { + removeEC3NormalStatus(seriesOpt.leaves); + } + // sunburst starts from ec4, so it does not need to compat levels. +} + +function toArr(o) { + return isArray(o) ? o : o ? [o] : []; +} + +function toObj(o) { + return (isArray(o) ? o[0] : o) || {}; +} + +var compatStyle = function (option, isTheme) { + each$5(toArr(option.series), function (seriesOpt) { + isObject$3(seriesOpt) && processSeries(seriesOpt); + }); + + var axes = ['xAxis', 'yAxis', 'radiusAxis', 'angleAxis', 'singleAxis', 'parallelAxis', 'radar']; + isTheme && axes.push('valueAxis', 'categoryAxis', 'logAxis', 'timeAxis'); + + each$5( + axes, + function (axisName) { + each$5(toArr(option[axisName]), function (axisOpt) { + if (axisOpt) { + compatTextStyle(axisOpt, 'axisLabel'); + compatTextStyle(axisOpt.axisPointer, 'label'); + } + }); + } + ); + + each$5(toArr(option.parallel), function (parallelOpt) { + var parallelAxisDefault = parallelOpt && parallelOpt.parallelAxisDefault; + compatTextStyle(parallelAxisDefault, 'axisLabel'); + compatTextStyle(parallelAxisDefault && parallelAxisDefault.axisPointer, 'label'); + }); + + each$5(toArr(option.calendar), function (calendarOpt) { + convertNormalEmphasis(calendarOpt, 'itemStyle'); + compatTextStyle(calendarOpt, 'dayLabel'); + compatTextStyle(calendarOpt, 'monthLabel'); + compatTextStyle(calendarOpt, 'yearLabel'); + }); + + // radar.name.textStyle + each$5(toArr(option.radar), function (radarOpt) { + compatTextStyle(radarOpt, 'name'); + }); + + each$5(toArr(option.geo), function (geoOpt) { + if (isObject$3(geoOpt)) { + compatEC3CommonStyles(geoOpt); + each$5(toArr(geoOpt.regions), function (regionObj) { + compatEC3CommonStyles(regionObj); + }); + } + }); + + each$5(toArr(option.timeline), function (timelineOpt) { + compatEC3CommonStyles(timelineOpt); + convertNormalEmphasis(timelineOpt, 'label'); + convertNormalEmphasis(timelineOpt, 'itemStyle'); + convertNormalEmphasis(timelineOpt, 'controlStyle', true); + + var data = timelineOpt.data; + isArray(data) && each$1(data, function (item) { + if (isObject$1(item)) { + convertNormalEmphasis(item, 'label'); + convertNormalEmphasis(item, 'itemStyle'); + } + }); + }); + + each$5(toArr(option.toolbox), function (toolboxOpt) { + convertNormalEmphasis(toolboxOpt, 'iconStyle'); + each$5(toolboxOpt.feature, function (featureOpt) { + convertNormalEmphasis(featureOpt, 'iconStyle'); + }); + }); + + compatTextStyle(toObj(option.axisPointer), 'label'); + compatTextStyle(toObj(option.tooltip).axisPointer, 'label'); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Compatitable with 2.0 + +function get(opt, path) { + path = path.split(','); + var obj = opt; + for (var i = 0; i < path.length; i++) { + obj = obj && obj[path[i]]; + if (obj == null) { + break; + } + } + return obj; +} + +function set$1(opt, path, val, overwrite) { + path = path.split(','); + var obj = opt; + var key; + for (var i = 0; i < path.length - 1; i++) { + key = path[i]; + if (obj[key] == null) { + obj[key] = {}; + } + obj = obj[key]; + } + if (overwrite || obj[path[i]] == null) { + obj[path[i]] = val; + } +} + +function compatLayoutProperties(option) { + each$1(LAYOUT_PROPERTIES, function (prop) { + if (prop[0] in option && !(prop[1] in option)) { + option[prop[1]] = option[prop[0]]; + } + }); +} + +var LAYOUT_PROPERTIES = [ + ['x', 'left'], ['y', 'top'], ['x2', 'right'], ['y2', 'bottom'] +]; + +var COMPATITABLE_COMPONENTS = [ + 'grid', 'geo', 'parallel', 'legend', 'toolbox', 'title', 'visualMap', 'dataZoom', 'timeline' +]; + +var backwardCompat = function (option, isTheme) { + compatStyle(option, isTheme); + + // Make sure series array for model initialization. + option.series = normalizeToArray(option.series); + + each$1(option.series, function (seriesOpt) { + if (!isObject$1(seriesOpt)) { + return; + } + + var seriesType = seriesOpt.type; + + if (seriesType === 'pie' || seriesType === 'gauge') { + if (seriesOpt.clockWise != null) { + seriesOpt.clockwise = seriesOpt.clockWise; + } + } + if (seriesType === 'gauge') { + var pointerColor = get(seriesOpt, 'pointer.color'); + pointerColor != null + && set$1(seriesOpt, 'itemStyle.color', pointerColor); + } + + compatLayoutProperties(seriesOpt); + }); + + // dataRange has changed to visualMap + if (option.dataRange) { + option.visualMap = option.dataRange; + } + + each$1(COMPATITABLE_COMPONENTS, function (componentName) { + var options = option[componentName]; + if (options) { + if (!isArray(options)) { + options = [options]; + } + each$1(options, function (option) { + compatLayoutProperties(option); + }); + } + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// (1) [Caution]: the logic is correct based on the premises: +// data processing stage is blocked in stream. +// See +// (2) Only register once when import repeatly. +// Should be executed before after series filtered and before stack calculation. +var dataStack = function (ecModel) { + var stackInfoMap = createHashMap(); + ecModel.eachSeries(function (seriesModel) { + var stack = seriesModel.get('stack'); + // Compatibal: when `stack` is set as '', do not stack. + if (stack) { + var stackInfoList = stackInfoMap.get(stack) || stackInfoMap.set(stack, []); + var data = seriesModel.getData(); + + var stackInfo = { + // Used for calculate axis extent automatically. + stackResultDimension: data.getCalculationInfo('stackResultDimension'), + stackedOverDimension: data.getCalculationInfo('stackedOverDimension'), + stackedDimension: data.getCalculationInfo('stackedDimension'), + stackedByDimension: data.getCalculationInfo('stackedByDimension'), + isStackedByIndex: data.getCalculationInfo('isStackedByIndex'), + data: data, + seriesModel: seriesModel + }; + + // If stacked on axis that do not support data stack. + if (!stackInfo.stackedDimension + || !(stackInfo.isStackedByIndex || stackInfo.stackedByDimension) + ) { + return; + } + + stackInfoList.length && data.setCalculationInfo( + 'stackedOnSeries', stackInfoList[stackInfoList.length - 1].seriesModel + ); + + stackInfoList.push(stackInfo); + } + }); + + stackInfoMap.each(calculateStack); +}; + +function calculateStack(stackInfoList) { + each$1(stackInfoList, function (targetStackInfo, idxInStack) { + var resultVal = []; + var resultNaN = [NaN, NaN]; + var dims = [targetStackInfo.stackResultDimension, targetStackInfo.stackedOverDimension]; + var targetData = targetStackInfo.data; + var isStackedByIndex = targetStackInfo.isStackedByIndex; + + // Should not write on raw data, because stack series model list changes + // depending on legend selection. + var newData = targetData.map(dims, function (v0, v1, dataIndex) { + var sum = targetData.get(targetStackInfo.stackedDimension, dataIndex); + + // Consider `connectNulls` of line area, if value is NaN, stackedOver + // should also be NaN, to draw a appropriate belt area. + if (isNaN(sum)) { + return resultNaN; + } + + var byValue; + var stackedDataRawIndex; + + if (isStackedByIndex) { + stackedDataRawIndex = targetData.getRawIndex(dataIndex); + } + else { + byValue = targetData.get(targetStackInfo.stackedByDimension, dataIndex); + } + + // If stackOver is NaN, chart view will render point on value start. + var stackedOver = NaN; + + for (var j = idxInStack - 1; j >= 0; j--) { + var stackInfo = stackInfoList[j]; + + // Has been optimized by inverted indices on `stackedByDimension`. + if (!isStackedByIndex) { + stackedDataRawIndex = stackInfo.data.rawIndexOf(stackInfo.stackedByDimension, byValue); + } + + if (stackedDataRawIndex >= 0) { + var val = stackInfo.data.getByRawIndex(stackInfo.stackResultDimension, stackedDataRawIndex); + + // Considering positive stack, negative stack and empty data + if ((sum >= 0 && val > 0) // Positive stack + || (sum <= 0 && val < 0) // Negative stack + ) { + sum += val; + stackedOver = val; + break; + } + } + } + + resultVal[0] = sum; + resultVal[1] = stackedOver; + + return resultVal; + }); + + targetData.hostModel.setData(newData); + // Update for consequent calculation + targetStackInfo.data = newData; + }); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// TODO +// ??? refactor? check the outer usage of data provider. +// merge with defaultDimValueGetter? + +/** + * If normal array used, mutable chunk size is supported. + * If typed array used, chunk size must be fixed. + */ +function DefaultDataProvider(source, dimSize) { + if (!Source.isInstance(source)) { + source = Source.seriesDataToSource(source); + } + this._source = source; + + var data = this._data = source.data; + var sourceFormat = source.sourceFormat; + + // Typed array. TODO IE10+? + if (sourceFormat === SOURCE_FORMAT_TYPED_ARRAY) { + if (__DEV__) { + if (dimSize == null) { + throw new Error('Typed array data must specify dimension size'); + } + } + this._offset = 0; + this._dimSize = dimSize; + this._data = data; + } + + var methods = providerMethods[ + sourceFormat === SOURCE_FORMAT_ARRAY_ROWS + ? sourceFormat + '_' + source.seriesLayoutBy + : sourceFormat + ]; + + if (__DEV__) { + assert$1(methods, 'Invalide sourceFormat: ' + sourceFormat); + } + + extend(this, methods); +} + +var providerProto = DefaultDataProvider.prototype; +// If data is pure without style configuration +providerProto.pure = false; +// If data is persistent and will not be released after use. +providerProto.persistent = true; + +// ???! FIXME legacy data provider do not has method getSource +providerProto.getSource = function () { + return this._source; +}; + +var providerMethods = { + + 'arrayRows_column': { + pure: true, + count: function () { + return Math.max(0, this._data.length - this._source.startIndex); + }, + getItem: function (idx) { + return this._data[idx + this._source.startIndex]; + }, + appendData: appendDataSimply + }, + + 'arrayRows_row': { + pure: true, + count: function () { + var row = this._data[0]; + return row ? Math.max(0, row.length - this._source.startIndex) : 0; + }, + getItem: function (idx) { + idx += this._source.startIndex; + var item = []; + var data = this._data; + for (var i = 0; i < data.length; i++) { + var row = data[i]; + item.push(row ? row[idx] : null); + } + return item; + }, + appendData: function () { + throw new Error('Do not support appendData when set seriesLayoutBy: "row".'); + } + }, + + 'objectRows': { + pure: true, + count: countSimply, + getItem: getItemSimply, + appendData: appendDataSimply + }, + + 'keyedColumns': { + pure: true, + count: function () { + var dimName = this._source.dimensionsDefine[0].name; + var col = this._data[dimName]; + return col ? col.length : 0; + }, + getItem: function (idx) { + var item = []; + var dims = this._source.dimensionsDefine; + for (var i = 0; i < dims.length; i++) { + var col = this._data[dims[i].name]; + item.push(col ? col[idx] : null); + } + return item; + }, + appendData: function (newData) { + var data = this._data; + each$1(newData, function (newCol, key) { + var oldCol = data[key] || (data[key] = []); + for (var i = 0; i < (newCol || []).length; i++) { + oldCol.push(newCol[i]); + } + }); + } + }, + + 'original': { + count: countSimply, + getItem: getItemSimply, + appendData: appendDataSimply + }, + + 'typedArray': { + persistent: false, + pure: true, + count: function () { + return this._data ? (this._data.length / this._dimSize) : 0; + }, + getItem: function (idx, out) { + idx = idx - this._offset; + out = out || []; + var offset = this._dimSize * idx; + for (var i = 0; i < this._dimSize; i++) { + out[i] = this._data[offset + i]; + } + return out; + }, + appendData: function (newData) { + if (__DEV__) { + assert$1( + isTypedArray(newData), + 'Added data must be TypedArray if data in initialization is TypedArray' + ); + } + + this._data = newData; + }, + + // Clean self if data is already used. + clean: function () { + // PENDING + this._offset += this.count(); + this._data = null; + } + } +}; + +function countSimply() { + return this._data.length; +} +function getItemSimply(idx) { + return this._data[idx]; +} +function appendDataSimply(newData) { + for (var i = 0; i < newData.length; i++) { + this._data.push(newData[i]); + } +} + + + +var rawValueGetters = { + + arrayRows: getRawValueSimply, + + objectRows: function (dataItem, dataIndex, dimIndex, dimName) { + return dimIndex != null ? dataItem[dimName] : dataItem; + }, + + keyedColumns: getRawValueSimply, + + original: function (dataItem, dataIndex, dimIndex, dimName) { + // FIXME + // In some case (markpoint in geo (geo-map.html)), dataItem + // is {coord: [...]} + var value = getDataItemValue(dataItem); + return (dimIndex == null || !(value instanceof Array)) + ? value + : value[dimIndex]; + }, + + typedArray: getRawValueSimply +}; + +function getRawValueSimply(dataItem, dataIndex, dimIndex, dimName) { + return dimIndex != null ? dataItem[dimIndex] : dataItem; +} + + +var defaultDimValueGetters = { + + arrayRows: getDimValueSimply, + + objectRows: function (dataItem, dimName, dataIndex, dimIndex) { + return converDataValue(dataItem[dimName], this._dimensionInfos[dimName]); + }, + + keyedColumns: getDimValueSimply, + + original: function (dataItem, dimName, dataIndex, dimIndex) { + // Performance sensitive, do not use modelUtil.getDataItemValue. + // If dataItem is an plain object with no value field, the var `value` + // will be assigned with the object, but it will be tread correctly + // in the `convertDataValue`. + var value = dataItem && (dataItem.value == null ? dataItem : dataItem.value); + + // If any dataItem is like { value: 10 } + if (!this._rawData.pure && isDataItemOption(dataItem)) { + this.hasItemOption = true; + } + return converDataValue( + (value instanceof Array) + ? value[dimIndex] + // If value is a single number or something else not array. + : value, + this._dimensionInfos[dimName] + ); + }, + + typedArray: function (dataItem, dimName, dataIndex, dimIndex) { + return dataItem[dimIndex]; + } + +}; + +function getDimValueSimply(dataItem, dimName, dataIndex, dimIndex) { + return converDataValue(dataItem[dimIndex], this._dimensionInfos[dimName]); +} + +/** + * This helper method convert value in data. + * @param {string|number|Date} value + * @param {Object|string} [dimInfo] If string (like 'x'), dimType defaults 'number'. + * If "dimInfo.ordinalParseAndSave", ordinal value can be parsed. + */ +function converDataValue(value, dimInfo) { + // Performance sensitive. + var dimType = dimInfo && dimInfo.type; + if (dimType === 'ordinal') { + // If given value is a category string + var ordinalMeta = dimInfo && dimInfo.ordinalMeta; + return ordinalMeta + ? ordinalMeta.parseAndCollect(value) + : value; + } + + if (dimType === 'time' + // spead up when using timestamp + && typeof value !== 'number' + && value != null + && value !== '-' + ) { + value = +parseDate(value); + } + + // dimType defaults 'number'. + // If dimType is not ordinal and value is null or undefined or NaN or '-', + // parse to NaN. + return (value == null || value === '') + ? NaN + // If string (like '-'), using '+' parse to NaN + // If object, also parse to NaN + : +value; +} + +// ??? FIXME can these logic be more neat: getRawValue, getRawDataItem, +// Consider persistent. +// Caution: why use raw value to display on label or tooltip? +// A reason is to avoid format. For example time value we do not know +// how to format is expected. More over, if stack is used, calculated +// value may be 0.91000000001, which have brings trouble to display. +// TODO: consider how to treat null/undefined/NaN when display? +/** + * @param {module:echarts/data/List} data + * @param {number} dataIndex + * @param {string|number} [dim] dimName or dimIndex + * @return {Array.|string|number} can be null/undefined. + */ +function retrieveRawValue(data, dataIndex, dim) { + if (!data) { + return; + } + + // Consider data may be not persistent. + var dataItem = data.getRawDataItem(dataIndex); + + if (dataItem == null) { + return; + } + + var sourceFormat = data.getProvider().getSource().sourceFormat; + var dimName; + var dimIndex; + + var dimInfo = data.getDimensionInfo(dim); + if (dimInfo) { + dimName = dimInfo.name; + dimIndex = dimInfo.index; + } + + return rawValueGetters[sourceFormat](dataItem, dataIndex, dimIndex, dimName); +} + +/** + * Compatible with some cases (in pie, map) like: + * data: [{name: 'xx', value: 5, selected: true}, ...] + * where only sourceFormat is 'original' and 'objectRows' supported. + * + * ??? TODO + * Supported detail options in data item when using 'arrayRows'. + * + * @param {module:echarts/data/List} data + * @param {number} dataIndex + * @param {string} attr like 'selected' + */ +function retrieveRawAttr(data, dataIndex, attr) { + if (!data) { + return; + } + + var sourceFormat = data.getProvider().getSource().sourceFormat; + + if (sourceFormat !== SOURCE_FORMAT_ORIGINAL + && sourceFormat !== SOURCE_FORMAT_OBJECT_ROWS + ) { + return; + } + + var dataItem = data.getRawDataItem(dataIndex); + if (sourceFormat === SOURCE_FORMAT_ORIGINAL && !isObject$1(dataItem)) { + dataItem = null; + } + if (dataItem) { + return dataItem[attr]; + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var DIMENSION_LABEL_REG = /\{@(.+?)\}/g; + +// PENDING A little ugly +var dataFormatMixin = { + /** + * Get params for formatter + * @param {number} dataIndex + * @param {string} [dataType] + * @return {Object} + */ + getDataParams: function (dataIndex, dataType) { + var data = this.getData(dataType); + var rawValue = this.getRawValue(dataIndex, dataType); + var rawDataIndex = data.getRawIndex(dataIndex); + var name = data.getName(dataIndex); + var itemOpt = data.getRawDataItem(dataIndex); + var color = data.getItemVisual(dataIndex, 'color'); + var tooltipModel = this.ecModel.getComponent('tooltip'); + var renderModeOption = tooltipModel && tooltipModel.get('renderMode'); + var renderMode = getTooltipRenderMode(renderModeOption); + var mainType = this.mainType; + var isSeries = mainType === 'series'; + var userOutput = data.userOutput; + + return { + componentType: mainType, + componentSubType: this.subType, + componentIndex: this.componentIndex, + seriesType: isSeries ? this.subType : null, + seriesIndex: this.seriesIndex, + seriesId: isSeries ? this.id : null, + seriesName: isSeries ? this.name : null, + name: name, + dataIndex: rawDataIndex, + data: itemOpt, + dataType: dataType, + value: rawValue, + color: color, + dimensionNames: userOutput ? userOutput.dimensionNames : null, + encode: userOutput ? userOutput.encode : null, + marker: getTooltipMarker({ + color: color, + renderMode: renderMode + }), + + // Param name list for mapping `a`, `b`, `c`, `d`, `e` + $vars: ['seriesName', 'name', 'value'] + }; + }, + + /** + * Format label + * @param {number} dataIndex + * @param {string} [status='normal'] 'normal' or 'emphasis' + * @param {string} [dataType] + * @param {number} [dimIndex] Only used in some chart that + * use formatter in different dimensions, like radar. + * @param {string} [labelProp='label'] + * @return {string} If not formatter, return null/undefined + */ + getFormattedLabel: function (dataIndex, status, dataType, dimIndex, labelProp) { + status = status || 'normal'; + var data = this.getData(dataType); + var itemModel = data.getItemModel(dataIndex); + + var params = this.getDataParams(dataIndex, dataType); + if (dimIndex != null && (params.value instanceof Array)) { + params.value = params.value[dimIndex]; + } + + var formatter = itemModel.get( + status === 'normal' + ? [labelProp || 'label', 'formatter'] + : [status, labelProp || 'label', 'formatter'] + ); + + if (typeof formatter === 'function') { + params.status = status; + params.dimensionIndex = dimIndex; + return formatter(params); + } + else if (typeof formatter === 'string') { + var str = formatTpl(formatter, params); + + // Support 'aaa{@[3]}bbb{@product}ccc'. + // Do not support '}' in dim name util have to. + return str.replace(DIMENSION_LABEL_REG, function (origin, dim) { + var len = dim.length; + if (dim.charAt(0) === '[' && dim.charAt(len - 1) === ']') { + dim = +dim.slice(1, len - 1); // Also: '[]' => 0 + } + return retrieveRawValue(data, dataIndex, dim); + }); + } + }, + + /** + * Get raw value in option + * @param {number} idx + * @param {string} [dataType] + * @return {Array|number|string} + */ + getRawValue: function (idx, dataType) { + return retrieveRawValue(this.getData(dataType), idx); + }, + + /** + * Should be implemented. + * @param {number} dataIndex + * @param {boolean} [multipleSeries=false] + * @param {number} [dataType] + * @return {string} tooltip string + */ + formatTooltip: function () { + // Empty function + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @param {Object} define + * @return See the return of `createTask`. + */ +function createTask(define) { + return new Task(define); +} + +/** + * @constructor + * @param {Object} define + * @param {Function} define.reset Custom reset + * @param {Function} [define.plan] Returns 'reset' indicate reset immediately. + * @param {Function} [define.count] count is used to determin data task. + * @param {Function} [define.onDirty] count is used to determin data task. + */ +function Task(define) { + define = define || {}; + + this._reset = define.reset; + this._plan = define.plan; + this._count = define.count; + this._onDirty = define.onDirty; + + this._dirty = true; + + // Context must be specified implicitly, to + // avoid miss update context when model changed. + this.context; +} + +var taskProto = Task.prototype; + +/** + * @param {Object} performArgs + * @param {number} [performArgs.step] Specified step. + * @param {number} [performArgs.skip] Skip customer perform call. + * @param {number} [performArgs.modBy] Sampling window size. + * @param {number} [performArgs.modDataCount] Sampling count. + */ +taskProto.perform = function (performArgs) { + var upTask = this._upstream; + var skip = performArgs && performArgs.skip; + + // TODO some refactor. + // Pull data. Must pull data each time, because context.data + // may be updated by Series.setData. + if (this._dirty && upTask) { + var context = this.context; + context.data = context.outputData = upTask.context.outputData; + } + + if (this.__pipeline) { + this.__pipeline.currentTask = this; + } + + var planResult; + if (this._plan && !skip) { + planResult = this._plan(this.context); + } + + // Support sharding by mod, which changes the render sequence and makes the rendered graphic + // elements uniformed distributed when progress, especially when moving or zooming. + var lastModBy = normalizeModBy(this._modBy); + var lastModDataCount = this._modDataCount || 0; + var modBy = normalizeModBy(performArgs && performArgs.modBy); + var modDataCount = performArgs && performArgs.modDataCount || 0; + if (lastModBy !== modBy || lastModDataCount !== modDataCount) { + planResult = 'reset'; + } + + function normalizeModBy(val) { + !(val >= 1) && (val = 1); // jshint ignore:line + return val; + } + + var forceFirstProgress; + if (this._dirty || planResult === 'reset') { + this._dirty = false; + forceFirstProgress = reset(this, skip); + } + + this._modBy = modBy; + this._modDataCount = modDataCount; + + var step = performArgs && performArgs.step; + + if (upTask) { + + if (__DEV__) { + assert$1(upTask._outputDueEnd != null); + } + this._dueEnd = upTask._outputDueEnd; + } + // DataTask or overallTask + else { + if (__DEV__) { + assert$1(!this._progress || this._count); + } + this._dueEnd = this._count ? this._count(this.context) : Infinity; + } + + // Note: Stubs, that its host overall task let it has progress, has progress. + // If no progress, pass index from upstream to downstream each time plan called. + if (this._progress) { + var start = this._dueIndex; + var end = Math.min( + step != null ? this._dueIndex + step : Infinity, + this._dueEnd + ); + + if (!skip && (forceFirstProgress || start < end)) { + var progress = this._progress; + if (isArray(progress)) { + for (var i = 0; i < progress.length; i++) { + doProgress(this, progress[i], start, end, modBy, modDataCount); + } + } + else { + doProgress(this, progress, start, end, modBy, modDataCount); + } + } + + this._dueIndex = end; + // If no `outputDueEnd`, assume that output data and + // input data is the same, so use `dueIndex` as `outputDueEnd`. + var outputDueEnd = this._settedOutputEnd != null + ? this._settedOutputEnd : end; + + if (__DEV__) { + // ??? Can not rollback. + assert$1(outputDueEnd >= this._outputDueEnd); + } + + this._outputDueEnd = outputDueEnd; + } + else { + // (1) Some overall task has no progress. + // (2) Stubs, that its host overall task do not let it has progress, has no progress. + // This should always be performed so it can be passed to downstream. + this._dueIndex = this._outputDueEnd = this._settedOutputEnd != null + ? this._settedOutputEnd : this._dueEnd; + } + + return this.unfinished(); +}; + +var iterator = (function () { + + var end; + var current; + var modBy; + var modDataCount; + var winCount; + + var it = { + reset: function (s, e, sStep, sCount) { + current = s; + end = e; + + modBy = sStep; + modDataCount = sCount; + winCount = Math.ceil(modDataCount / modBy); + + it.next = (modBy > 1 && modDataCount > 0) ? modNext : sequentialNext; + } + }; + + return it; + + function sequentialNext() { + return current < end ? current++ : null; + } + + function modNext() { + var dataIndex = (current % winCount) * modBy + Math.ceil(current / winCount); + var result = current >= end + ? null + : dataIndex < modDataCount + ? dataIndex + // If modDataCount is smaller than data.count() (consider `appendData` case), + // Use normal linear rendering mode. + : current; + current++; + return result; + } +})(); + +taskProto.dirty = function () { + this._dirty = true; + this._onDirty && this._onDirty(this.context); +}; + +function doProgress(taskIns, progress, start, end, modBy, modDataCount) { + iterator.reset(start, end, modBy, modDataCount); + taskIns._callingProgress = progress; + taskIns._callingProgress({ + start: start, end: end, count: end - start, next: iterator.next + }, taskIns.context); +} + +function reset(taskIns, skip) { + taskIns._dueIndex = taskIns._outputDueEnd = taskIns._dueEnd = 0; + taskIns._settedOutputEnd = null; + + var progress; + var forceFirstProgress; + + if (!skip && taskIns._reset) { + progress = taskIns._reset(taskIns.context); + if (progress && progress.progress) { + forceFirstProgress = progress.forceFirstProgress; + progress = progress.progress; + } + // To simplify no progress checking, array must has item. + if (isArray(progress) && !progress.length) { + progress = null; + } + } + + taskIns._progress = progress; + taskIns._modBy = taskIns._modDataCount = null; + + var downstream = taskIns._downstream; + downstream && downstream.dirty(); + + return forceFirstProgress; +} + +/** + * @return {boolean} + */ +taskProto.unfinished = function () { + return this._progress && this._dueIndex < this._dueEnd; +}; + +/** + * @param {Object} downTask The downstream task. + * @return {Object} The downstream task. + */ +taskProto.pipe = function (downTask) { + if (__DEV__) { + assert$1(downTask && !downTask._disposed && downTask !== this); + } + + // If already downstream, do not dirty downTask. + if (this._downstream !== downTask || this._dirty) { + this._downstream = downTask; + downTask._upstream = this; + downTask.dirty(); + } +}; + +taskProto.dispose = function () { + if (this._disposed) { + return; + } + + this._upstream && (this._upstream._downstream = null); + this._downstream && (this._downstream._upstream = null); + + this._dirty = false; + this._disposed = true; +}; + +taskProto.getUpstream = function () { + return this._upstream; +}; + +taskProto.getDownstream = function () { + return this._downstream; +}; + +taskProto.setOutputEnd = function (end) { + // This only happend in dataTask, dataZoom, map, currently. + // where dataZoom do not set end each time, but only set + // when reset. So we should record the setted end, in case + // that the stub of dataZoom perform again and earse the + // setted end by upstream. + this._outputDueEnd = this._settedOutputEnd = end; +}; + + +/////////////////////////////////////////////////////////// +// For stream debug (Should be commented out after used!) +// Usage: printTask(this, 'begin'); +// Usage: printTask(this, null, {someExtraProp}); +// function printTask(task, prefix, extra) { +// window.ecTaskUID == null && (window.ecTaskUID = 0); +// task.uidDebug == null && (task.uidDebug = `task_${window.ecTaskUID++}`); +// task.agent && task.agent.uidDebug == null && (task.agent.uidDebug = `task_${window.ecTaskUID++}`); +// var props = []; +// if (task.__pipeline) { +// var val = `${task.__idxInPipeline}/${task.__pipeline.tail.__idxInPipeline} ${task.agent ? '(stub)' : ''}`; +// props.push({text: 'idx', value: val}); +// } else { +// var stubCount = 0; +// task.agentStubMap.each(() => stubCount++); +// props.push({text: 'idx', value: `overall (stubs: ${stubCount})`}); +// } +// props.push({text: 'uid', value: task.uidDebug}); +// if (task.__pipeline) { +// props.push({text: 'pid', value: task.__pipeline.id}); +// task.agent && props.push( +// {text: 'stubFor', value: task.agent.uidDebug} +// ); +// } +// props.push( +// {text: 'dirty', value: task._dirty}, +// {text: 'dueIndex', value: task._dueIndex}, +// {text: 'dueEnd', value: task._dueEnd}, +// {text: 'outputDueEnd', value: task._outputDueEnd} +// ); +// if (extra) { +// Object.keys(extra).forEach(key => { +// props.push({text: key, value: extra[key]}); +// }); +// } +// var args = ['color: blue']; +// var msg = `%c[${prefix || 'T'}] %c` + props.map(item => ( +// args.push('color: black', 'color: red'), +// `${item.text}: %c${item.value}` +// )).join('%c, '); +// console.log.apply(console, [msg].concat(args)); +// // console.log(this); +// } + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var inner$4 = makeInner(); + +var SeriesModel = ComponentModel.extend({ + + type: 'series.__base__', + + /** + * @readOnly + */ + seriesIndex: 0, + + // coodinateSystem will be injected in the echarts/CoordinateSystem + coordinateSystem: null, + + /** + * @type {Object} + * @protected + */ + defaultOption: null, + + /** + * Data provided for legend + * @type {Function} + */ + // PENDING + legendDataProvider: null, + + /** + * Access path of color for visual + */ + visualColorAccessPath: 'itemStyle.color', + + /** + * Support merge layout params. + * Only support 'box' now (left/right/top/bottom/width/height). + * @type {string|Object} Object can be {ignoreSize: true} + * @readOnly + */ + layoutMode: null, + + init: function (option, parentModel, ecModel, extraOpt) { + + /** + * @type {number} + * @readOnly + */ + this.seriesIndex = this.componentIndex; + + this.dataTask = createTask({ + count: dataTaskCount, + reset: dataTaskReset + }); + this.dataTask.context = {model: this}; + + this.mergeDefaultAndTheme(option, ecModel); + + prepareSource(this); + + + var data = this.getInitialData(option, ecModel); + wrapData(data, this); + this.dataTask.context.data = data; + + if (__DEV__) { + assert$1(data, 'getInitialData returned invalid data.'); + } + + /** + * @type {module:echarts/data/List|module:echarts/data/Tree|module:echarts/data/Graph} + * @private + */ + inner$4(this).dataBeforeProcessed = data; + + // If we reverse the order (make data firstly, and then make + // dataBeforeProcessed by cloneShallow), cloneShallow will + // cause data.graph.data !== data when using + // module:echarts/data/Graph or module:echarts/data/Tree. + // See module:echarts/data/helper/linkList + + // Theoretically, it is unreasonable to call `seriesModel.getData()` in the model + // init or merge stage, because the data can be restored. So we do not `restoreData` + // and `setData` here, which forbids calling `seriesModel.getData()` in this stage. + // Call `seriesModel.getRawData()` instead. + // this.restoreData(); + + autoSeriesName(this); + }, + + /** + * Util for merge default and theme to option + * @param {Object} option + * @param {module:echarts/model/Global} ecModel + */ + mergeDefaultAndTheme: function (option, ecModel) { + var layoutMode = this.layoutMode; + var inputPositionParams = layoutMode + ? getLayoutParams(option) : {}; + + // Backward compat: using subType on theme. + // But if name duplicate between series subType + // (for example: parallel) add component mainType, + // add suffix 'Series'. + var themeSubType = this.subType; + if (ComponentModel.hasClass(themeSubType)) { + themeSubType += 'Series'; + } + merge( + option, + ecModel.getTheme().get(this.subType) + ); + merge(option, this.getDefaultOption()); + + // Default label emphasis `show` + defaultEmphasis(option, 'label', ['show']); + + this.fillDataTextStyle(option.data); + + if (layoutMode) { + mergeLayoutParam(option, inputPositionParams, layoutMode); + } + }, + + mergeOption: function (newSeriesOption, ecModel) { + // this.settingTask.dirty(); + + newSeriesOption = merge(this.option, newSeriesOption, true); + this.fillDataTextStyle(newSeriesOption.data); + + var layoutMode = this.layoutMode; + if (layoutMode) { + mergeLayoutParam(this.option, newSeriesOption, layoutMode); + } + + prepareSource(this); + + var data = this.getInitialData(newSeriesOption, ecModel); + wrapData(data, this); + this.dataTask.dirty(); + this.dataTask.context.data = data; + + inner$4(this).dataBeforeProcessed = data; + + autoSeriesName(this); + }, + + fillDataTextStyle: function (data) { + // Default data label emphasis `show` + // FIXME Tree structure data ? + // FIXME Performance ? + if (data && !isTypedArray(data)) { + var props = ['show']; + for (var i = 0; i < data.length; i++) { + if (data[i] && data[i].label) { + defaultEmphasis(data[i], 'label', props); + } + } + } + }, + + /** + * Init a data structure from data related option in series + * Must be overwritten + */ + getInitialData: function () {}, + + /** + * Append data to list + * @param {Object} params + * @param {Array|TypedArray} params.data + */ + appendData: function (params) { + // FIXME ??? + // (1) If data from dataset, forbidden append. + // (2) support append data of dataset. + var data = this.getRawData(); + data.appendData(params.data); + }, + + /** + * Consider some method like `filter`, `map` need make new data, + * We should make sure that `seriesModel.getData()` get correct + * data in the stream procedure. So we fetch data from upstream + * each time `task.perform` called. + * @param {string} [dataType] + * @return {module:echarts/data/List} + */ + getData: function (dataType) { + var task = getCurrentTask(this); + if (task) { + var data = task.context.data; + return dataType == null ? data : data.getLinkedData(dataType); + } + else { + // When series is not alive (that may happen when click toolbox + // restore or setOption with not merge mode), series data may + // be still need to judge animation or something when graphic + // elements want to know whether fade out. + return inner$4(this).data; + } + }, + + /** + * @param {module:echarts/data/List} data + */ + setData: function (data) { + var task = getCurrentTask(this); + if (task) { + var context = task.context; + // Consider case: filter, data sample. + if (context.data !== data && task.modifyOutputEnd) { + task.setOutputEnd(data.count()); + } + context.outputData = data; + // Caution: setData should update context.data, + // Because getData may be called multiply in a + // single stage and expect to get the data just + // set. (For example, AxisProxy, x y both call + // getData and setDate sequentially). + // So the context.data should be fetched from + // upstream each time when a stage starts to be + // performed. + if (task !== this.dataTask) { + context.data = data; + } + } + inner$4(this).data = data; + }, + + /** + * @see {module:echarts/data/helper/sourceHelper#getSource} + * @return {module:echarts/data/Source} source + */ + getSource: function () { + return getSource(this); + }, + + /** + * Get data before processed + * @return {module:echarts/data/List} + */ + getRawData: function () { + return inner$4(this).dataBeforeProcessed; + }, + + /** + * Get base axis if has coordinate system and has axis. + * By default use coordSys.getBaseAxis(); + * Can be overrided for some chart. + * @return {type} description + */ + getBaseAxis: function () { + var coordSys = this.coordinateSystem; + return coordSys && coordSys.getBaseAxis && coordSys.getBaseAxis(); + }, + + // FIXME + /** + * Default tooltip formatter + * + * @param {number} dataIndex + * @param {boolean} [multipleSeries=false] + * @param {number} [dataType] + * @param {string} [renderMode='html'] valid values: 'html' and 'richText'. + * 'html' is used for rendering tooltip in extra DOM form, and the result + * string is used as DOM HTML content. + * 'richText' is used for rendering tooltip in rich text form, for those where + * DOM operation is not supported. + * @return {Object} formatted tooltip with `html` and `markers` + */ + formatTooltip: function (dataIndex, multipleSeries, dataType, renderMode) { + + var series = this; + renderMode = renderMode || 'html'; + var newLine = renderMode === 'html' ? '
    ' : '\n'; + var isRichText = renderMode === 'richText'; + var markers = {}; + var markerId = 0; + + function formatArrayValue(value) { + // ??? TODO refactor these logic. + // check: category-no-encode-has-axis-data in dataset.html + var vertially = reduce(value, function (vertially, val, idx) { + var dimItem = data.getDimensionInfo(idx); + return vertially |= dimItem && dimItem.tooltip !== false && dimItem.displayName != null; + }, 0); + + var result = []; + + tooltipDims.length + ? each$1(tooltipDims, function (dim) { + setEachItem(retrieveRawValue(data, dataIndex, dim), dim); + }) + // By default, all dims is used on tooltip. + : each$1(value, setEachItem); + + function setEachItem(val, dim) { + var dimInfo = data.getDimensionInfo(dim); + // If `dimInfo.tooltip` is not set, show tooltip. + if (!dimInfo || dimInfo.otherDims.tooltip === false) { + return; + } + var dimType = dimInfo.type; + var markName = 'sub' + series.seriesIndex + 'at' + markerId; + var dimHead = getTooltipMarker({ + color: color, + type: 'subItem', + renderMode: renderMode, + markerId: markName + }); + + var dimHeadStr = typeof dimHead === 'string' ? dimHead : dimHead.content; + var valStr = (vertially + ? dimHeadStr + encodeHTML(dimInfo.displayName || '-') + ': ' + : '' + ) + // FIXME should not format time for raw data? + + encodeHTML(dimType === 'ordinal' + ? val + '' + : dimType === 'time' + ? (multipleSeries ? '' : formatTime('yyyy/MM/dd hh:mm:ss', val)) + : addCommas(val) + ); + valStr && result.push(valStr); + + if (isRichText) { + markers[markName] = color; + ++markerId; + } + } + + var newLine = vertially ? (isRichText ? '\n' : '
    ') : ''; + var content = newLine + result.join(newLine || ', '); + return { + renderMode: renderMode, + content: content, + style: markers + }; + } + + function formatSingleValue(val) { + // return encodeHTML(addCommas(val)); + return { + renderMode: renderMode, + content: encodeHTML(addCommas(val)), + style: markers + }; + } + + var data = this.getData(); + var tooltipDims = data.mapDimension('defaultedTooltip', true); + var tooltipDimLen = tooltipDims.length; + var value = this.getRawValue(dataIndex); + var isValueArr = isArray(value); + + var color = data.getItemVisual(dataIndex, 'color'); + if (isObject$1(color) && color.colorStops) { + color = (color.colorStops[0] || {}).color; + } + color = color || 'transparent'; + + // Complicated rule for pretty tooltip. + var formattedValue = (tooltipDimLen > 1 || (isValueArr && !tooltipDimLen)) + ? formatArrayValue(value) + : tooltipDimLen + ? formatSingleValue(retrieveRawValue(data, dataIndex, tooltipDims[0])) + : formatSingleValue(isValueArr ? value[0] : value); + var content = formattedValue.content; + + var markName = series.seriesIndex + 'at' + markerId; + var colorEl = getTooltipMarker({ + color: color, + type: 'item', + renderMode: renderMode, + markerId: markName + }); + markers[markName] = color; + ++markerId; + + var name = data.getName(dataIndex); + + var seriesName = this.name; + if (!isNameSpecified(this)) { + seriesName = ''; + } + seriesName = seriesName + ? encodeHTML(seriesName) + (!multipleSeries ? newLine : ': ') + : ''; + + var colorStr = typeof colorEl === 'string' ? colorEl : colorEl.content; + var html = !multipleSeries + ? seriesName + colorStr + + (name + ? encodeHTML(name) + ': ' + content + : content + ) + : colorStr + seriesName + content; + + return { + html: html, + markers: markers + }; + }, + + /** + * @return {boolean} + */ + isAnimationEnabled: function () { + if (env$1.node) { + return false; + } + + var animationEnabled = this.getShallow('animation'); + if (animationEnabled) { + if (this.getData().count() > this.getShallow('animationThreshold')) { + animationEnabled = false; + } + } + return animationEnabled; + }, + + restoreData: function () { + this.dataTask.dirty(); + }, + + getColorFromPalette: function (name, scope, requestColorNum) { + var ecModel = this.ecModel; + // PENDING + var color = colorPaletteMixin.getColorFromPalette.call(this, name, scope, requestColorNum); + if (!color) { + color = ecModel.getColorFromPalette(name, scope, requestColorNum); + } + return color; + }, + + /** + * Use `data.mapDimension(coordDim, true)` instead. + * @deprecated + */ + coordDimToDataDim: function (coordDim) { + return this.getRawData().mapDimension(coordDim, true); + }, + + /** + * Get progressive rendering count each step + * @return {number} + */ + getProgressive: function () { + return this.get('progressive'); + }, + + /** + * Get progressive rendering count each step + * @return {number} + */ + getProgressiveThreshold: function () { + return this.get('progressiveThreshold'); + }, + + /** + * Get data indices for show tooltip content. See tooltip. + * @abstract + * @param {Array.|string} dim + * @param {Array.} value + * @param {module:echarts/coord/single/SingleAxis} baseAxis + * @return {Object} {dataIndices, nestestValue}. + */ + getAxisTooltipData: null, + + /** + * See tooltip. + * @abstract + * @param {number} dataIndex + * @return {Array.} Point of tooltip. null/undefined can be returned. + */ + getTooltipPosition: null, + + /** + * @see {module:echarts/stream/Scheduler} + */ + pipeTask: null, + + /** + * Convinient for override in extended class. + * @protected + * @type {Function} + */ + preventIncremental: null, + + /** + * @public + * @readOnly + * @type {Object} + */ + pipelineContext: null + +}); + + +mixin(SeriesModel, dataFormatMixin); +mixin(SeriesModel, colorPaletteMixin); + +/** + * MUST be called after `prepareSource` called + * Here we need to make auto series, especially for auto legend. But we + * do not modify series.name in option to avoid side effects. + */ +function autoSeriesName(seriesModel) { + // User specified name has higher priority, otherwise it may cause + // series can not be queried unexpectedly. + var name = seriesModel.name; + if (!isNameSpecified(seriesModel)) { + seriesModel.name = getSeriesAutoName(seriesModel) || name; + } +} + +function getSeriesAutoName(seriesModel) { + var data = seriesModel.getRawData(); + var dataDims = data.mapDimension('seriesName', true); + var nameArr = []; + each$1(dataDims, function (dataDim) { + var dimInfo = data.getDimensionInfo(dataDim); + dimInfo.displayName && nameArr.push(dimInfo.displayName); + }); + return nameArr.join(' '); +} + +function dataTaskCount(context) { + return context.model.getRawData().count(); +} + +function dataTaskReset(context) { + var seriesModel = context.model; + seriesModel.setData(seriesModel.getRawData().cloneShallow()); + return dataTaskProgress; +} + +function dataTaskProgress(param, context) { + // Avoid repead cloneShallow when data just created in reset. + if (param.end > context.outputData.count()) { + context.model.getRawData().cloneShallow(context.outputData); + } +} + +// TODO refactor +function wrapData(data, seriesModel) { + each$1(data.CHANGABLE_METHODS, function (methodName) { + data.wrapMethod(methodName, curry(onDataSelfChange, seriesModel)); + }); +} + +function onDataSelfChange(seriesModel) { + var task = getCurrentTask(seriesModel); + if (task) { + // Consider case: filter, selectRange + task.setOutputEnd(this.count()); + } +} + +function getCurrentTask(seriesModel) { + var scheduler = (seriesModel.ecModel || {}).scheduler; + var pipeline = scheduler && scheduler.getPipeline(seriesModel.uid); + + if (pipeline) { + // When pipline finished, the currrentTask keep the last + // task (renderTask). + var task = pipeline.currentTask; + if (task) { + var agentStubMap = task.agentStubMap; + if (agentStubMap) { + task = agentStubMap.get(seriesModel.uid); + } + } + return task; + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var Component$1 = function () { + /** + * @type {module:zrender/container/Group} + * @readOnly + */ + this.group = new Group(); + + /** + * @type {string} + * @readOnly + */ + this.uid = getUID('viewComponent'); +}; + +Component$1.prototype = { + + constructor: Component$1, + + init: function (ecModel, api) {}, + + render: function (componentModel, ecModel, api, payload) {}, + + dispose: function () {}, + + /** + * @param {string} eventType + * @param {Object} query + * @param {module:zrender/Element} targetEl + * @param {Object} packedEvent + * @return {boolen} Pass only when return `true`. + */ + filterForExposedEvent: null + +}; + +var componentProto = Component$1.prototype; +componentProto.updateView + = componentProto.updateLayout + = componentProto.updateVisual + = function (seriesModel, ecModel, api, payload) { + // Do nothing; + }; +// Enable Component.extend. +enableClassExtend(Component$1); + +// Enable capability of registerClass, getClass, hasClass, registerSubTypeDefaulter and so on. +enableClassManagement(Component$1, {registerWhenExtend: true}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @return {string} If large mode changed, return string 'reset'; + */ +var createRenderPlanner = function () { + var inner = makeInner(); + + return function (seriesModel) { + var fields = inner(seriesModel); + var pipelineContext = seriesModel.pipelineContext; + + var originalLarge = fields.large; + var originalProgressive = fields.progressiveRender; + + var large = fields.large = pipelineContext.large; + var progressive = fields.progressiveRender = pipelineContext.progressiveRender; + + return !!((originalLarge ^ large) || (originalProgressive ^ progressive)) && 'reset'; + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var inner$5 = makeInner(); +var renderPlanner = createRenderPlanner(); + +function Chart() { + + /** + * @type {module:zrender/container/Group} + * @readOnly + */ + this.group = new Group(); + + /** + * @type {string} + * @readOnly + */ + this.uid = getUID('viewChart'); + + this.renderTask = createTask({ + plan: renderTaskPlan, + reset: renderTaskReset + }); + this.renderTask.context = {view: this}; +} + +Chart.prototype = { + + type: 'chart', + + /** + * Init the chart. + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + */ + init: function (ecModel, api) {}, + + /** + * Render the chart. + * @param {module:echarts/model/Series} seriesModel + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + * @param {Object} payload + */ + render: function (seriesModel, ecModel, api, payload) {}, + + /** + * Highlight series or specified data item. + * @param {module:echarts/model/Series} seriesModel + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + * @param {Object} payload + */ + highlight: function (seriesModel, ecModel, api, payload) { + toggleHighlight(seriesModel.getData(), payload, 'emphasis'); + }, + + /** + * Downplay series or specified data item. + * @param {module:echarts/model/Series} seriesModel + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + * @param {Object} payload + */ + downplay: function (seriesModel, ecModel, api, payload) { + toggleHighlight(seriesModel.getData(), payload, 'normal'); + }, + + /** + * Remove self. + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + */ + remove: function (ecModel, api) { + this.group.removeAll(); + }, + + /** + * Dispose self. + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + */ + dispose: function () {}, + + /** + * Rendering preparation in progressive mode. + * @param {module:echarts/model/Series} seriesModel + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + * @param {Object} payload + */ + incrementalPrepareRender: null, + + /** + * Render in progressive mode. + * @param {Object} params See taskParams in `stream/task.js` + * @param {module:echarts/model/Series} seriesModel + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + * @param {Object} payload + */ + incrementalRender: null, + + /** + * Update transform directly. + * @param {module:echarts/model/Series} seriesModel + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + * @param {Object} payload + * @return {Object} {update: true} + */ + updateTransform: null, + + /** + * The view contains the given point. + * @interface + * @param {Array.} point + * @return {boolean} + */ + // containPoint: function () {} + + /** + * @param {string} eventType + * @param {Object} query + * @param {module:zrender/Element} targetEl + * @param {Object} packedEvent + * @return {boolen} Pass only when return `true`. + */ + filterForExposedEvent: null + +}; + +var chartProto = Chart.prototype; +chartProto.updateView = +chartProto.updateLayout = +chartProto.updateVisual = + function (seriesModel, ecModel, api, payload) { + this.render(seriesModel, ecModel, api, payload); + }; + +/** + * Set state of single element + * @param {module:zrender/Element} el + * @param {string} state 'normal'|'emphasis' + * @param {number} highlightDigit + */ +function elSetState(el, state, highlightDigit) { + if (el) { + el.trigger(state, highlightDigit); + if (el.isGroup + // Simple optimize. + && !isHighDownDispatcher(el) + ) { + for (var i = 0, len = el.childCount(); i < len; i++) { + elSetState(el.childAt(i), state, highlightDigit); + } + } + } +} + +/** + * @param {module:echarts/data/List} data + * @param {Object} payload + * @param {string} state 'normal'|'emphasis' + */ +function toggleHighlight(data, payload, state) { + var dataIndex = queryDataIndex(data, payload); + + var highlightDigit = (payload && payload.highlightKey != null) + ? getHighlightDigit(payload.highlightKey) + : null; + + if (dataIndex != null) { + each$1(normalizeToArray(dataIndex), function (dataIdx) { + elSetState(data.getItemGraphicEl(dataIdx), state, highlightDigit); + }); + } + else { + data.eachItemGraphicEl(function (el) { + elSetState(el, state, highlightDigit); + }); + } +} + +// Enable Chart.extend. +enableClassExtend(Chart, ['dispose']); + +// Add capability of registerClass, getClass, hasClass, registerSubTypeDefaulter and so on. +enableClassManagement(Chart, {registerWhenExtend: true}); + +Chart.markUpdateMethod = function (payload, methodName) { + inner$5(payload).updateMethod = methodName; +}; + +function renderTaskPlan(context) { + return renderPlanner(context.model); +} + +function renderTaskReset(context) { + var seriesModel = context.model; + var ecModel = context.ecModel; + var api = context.api; + var payload = context.payload; + // ???! remove updateView updateVisual + var progressiveRender = seriesModel.pipelineContext.progressiveRender; + var view = context.view; + + var updateMethod = payload && inner$5(payload).updateMethod; + var methodName = progressiveRender + ? 'incrementalPrepareRender' + : (updateMethod && view[updateMethod]) + ? updateMethod + // `appendData` is also supported when data amount + // is less than progressive threshold. + : 'render'; + + if (methodName !== 'render') { + view[methodName](seriesModel, ecModel, api, payload); + } + + return progressMethodMap[methodName]; +} + +var progressMethodMap = { + incrementalPrepareRender: { + progress: function (params, context) { + context.view.incrementalRender( + params, context.model, context.ecModel, context.api, context.payload + ); + } + }, + render: { + // Put view.render in `progress` to support appendData. But in this case + // view.render should not be called in reset, otherwise it will be called + // twise. Use `forceFirstProgress` to make sure that view.render is called + // in any cases. + forceFirstProgress: true, + progress: function (params, context) { + context.view.render( + context.model, context.ecModel, context.api, context.payload + ); + } + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var ORIGIN_METHOD = '\0__throttleOriginMethod'; +var RATE = '\0__throttleRate'; +var THROTTLE_TYPE = '\0__throttleType'; + +/** + * @public + * @param {(Function)} fn + * @param {number} [delay=0] Unit: ms. + * @param {boolean} [debounce=false] + * true: If call interval less than `delay`, only the last call works. + * false: If call interval less than `delay, call works on fixed rate. + * @return {(Function)} throttled fn. + */ +function throttle(fn, delay, debounce) { + + var currCall; + var lastCall = 0; + var lastExec = 0; + var timer = null; + var diff; + var scope; + var args; + var debounceNextCall; + + delay = delay || 0; + + function exec() { + lastExec = (new Date()).getTime(); + timer = null; + fn.apply(scope, args || []); + } + + var cb = function () { + currCall = (new Date()).getTime(); + scope = this; + args = arguments; + var thisDelay = debounceNextCall || delay; + var thisDebounce = debounceNextCall || debounce; + debounceNextCall = null; + diff = currCall - (thisDebounce ? lastCall : lastExec) - thisDelay; + + clearTimeout(timer); + + // Here we should make sure that: the `exec` SHOULD NOT be called later + // than a new call of `cb`, that is, preserving the command order. Consider + // calculating "scale rate" when roaming as an example. When a call of `cb` + // happens, either the `exec` is called dierectly, or the call is delayed. + // But the delayed call should never be later than next call of `cb`. Under + // this assurance, we can simply update view state each time `dispatchAction` + // triggered by user roaming, but not need to add extra code to avoid the + // state being "rolled-back". + if (thisDebounce) { + timer = setTimeout(exec, thisDelay); + } + else { + if (diff >= 0) { + exec(); + } + else { + timer = setTimeout(exec, -diff); + } + } + + lastCall = currCall; + }; + + /** + * Clear throttle. + * @public + */ + cb.clear = function () { + if (timer) { + clearTimeout(timer); + timer = null; + } + }; + + /** + * Enable debounce once. + */ + cb.debounceNextCall = function (debounceDelay) { + debounceNextCall = debounceDelay; + }; + + return cb; +} + +/** + * Create throttle method or update throttle rate. + * + * @example + * ComponentView.prototype.render = function () { + * ... + * throttle.createOrUpdate( + * this, + * '_dispatchAction', + * this.model.get('throttle'), + * 'fixRate' + * ); + * }; + * ComponentView.prototype.remove = function () { + * throttle.clear(this, '_dispatchAction'); + * }; + * ComponentView.prototype.dispose = function () { + * throttle.clear(this, '_dispatchAction'); + * }; + * + * @public + * @param {Object} obj + * @param {string} fnAttr + * @param {number} [rate] + * @param {string} [throttleType='fixRate'] 'fixRate' or 'debounce' + * @return {Function} throttled function. + */ +function createOrUpdate(obj, fnAttr, rate, throttleType) { + var fn = obj[fnAttr]; + + if (!fn) { + return; + } + + var originFn = fn[ORIGIN_METHOD] || fn; + var lastThrottleType = fn[THROTTLE_TYPE]; + var lastRate = fn[RATE]; + + if (lastRate !== rate || lastThrottleType !== throttleType) { + if (rate == null || !throttleType) { + return (obj[fnAttr] = originFn); + } + + fn = obj[fnAttr] = throttle( + originFn, rate, throttleType === 'debounce' + ); + fn[ORIGIN_METHOD] = originFn; + fn[THROTTLE_TYPE] = throttleType; + fn[RATE] = rate; + } + + return fn; +} + +/** + * Clear throttle. Example see throttle.createOrUpdate. + * + * @public + * @param {Object} obj + * @param {string} fnAttr + */ +function clear(obj, fnAttr) { + var fn = obj[fnAttr]; + if (fn && fn[ORIGIN_METHOD]) { + obj[fnAttr] = fn[ORIGIN_METHOD]; + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var seriesColor = { + createOnAllSeries: true, + performRawSeries: true, + reset: function (seriesModel, ecModel) { + var data = seriesModel.getData(); + var colorAccessPath = (seriesModel.visualColorAccessPath || 'itemStyle.color').split('.'); + var color = seriesModel.get(colorAccessPath) // Set in itemStyle + || seriesModel.getColorFromPalette( + // TODO series count changed. + seriesModel.name, null, ecModel.getSeriesCount() + ); // Default color + + // FIXME Set color function or use the platte color + data.setVisual('color', color); + + // Only visible series has each data be visual encoded + if (!ecModel.isSeriesFiltered(seriesModel)) { + if (typeof color === 'function' && !(color instanceof Gradient)) { + data.each(function (idx) { + data.setItemVisual( + idx, 'color', color(seriesModel.getDataParams(idx)) + ); + }); + } + + // itemStyle in each data item + var dataEach = function (data, idx) { + var itemModel = data.getItemModel(idx); + var color = itemModel.get(colorAccessPath, true); + if (color != null) { + data.setItemVisual(idx, 'color', color); + } + }; + + return { dataEach: data.hasItemOption ? dataEach : null }; + } + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var lang = { + toolbox: { + brush: { + title: { + rect: '矩形选择', + polygon: '圈选', + lineX: '横向选择', + lineY: '纵向选择', + keep: '保持选择', + clear: '清除选择' + } + }, + dataView: { + title: '数据视图', + lang: ['数据视图', '关闭', '刷新'] + }, + dataZoom: { + title: { + zoom: '区域缩放', + back: '区域缩放还原' + } + }, + magicType: { + title: { + line: '切换为折线图', + bar: '切换为柱状图', + stack: '切换为堆叠', + tiled: '切换为平铺' + } + }, + restore: { + title: '还原' + }, + saveAsImage: { + title: '保存为图片', + lang: ['右键另存为图片'] + } + }, + series: { + typeNames: { + pie: '饼图', + bar: '柱状图', + line: '折线图', + scatter: '散点图', + effectScatter: '涟漪散点图', + radar: '雷达图', + tree: '树图', + treemap: '矩形树图', + boxplot: '箱型图', + candlestick: 'K线图', + k: 'K线图', + heatmap: '热力图', + map: '地图', + parallel: '平行坐标图', + lines: '线图', + graph: '关系图', + sankey: '桑基图', + funnel: '漏斗图', + gauge: '仪表盘图', + pictorialBar: '象形柱图', + themeRiver: '主题河流图', + sunburst: '旭日图' + } + }, + aria: { + general: { + withTitle: '这是一个关于“{title}”的图表。', + withoutTitle: '这是一个图表,' + }, + series: { + single: { + prefix: '', + withName: '图表类型是{seriesType},表示{seriesName}。', + withoutName: '图表类型是{seriesType}。' + }, + multiple: { + prefix: '它由{seriesCount}个图表系列组成。', + withName: '第{seriesId}个系列是一个表示{seriesName}的{seriesType},', + withoutName: '第{seriesId}个系列是一个{seriesType},', + separator: { + middle: ';', + end: '。' + } + } + }, + data: { + allData: '其数据是——', + partialData: '其中,前{displayCnt}项是——', + withName: '{name}的数据是{value}', + withoutName: '{value}', + separator: { + middle: ',', + end: '' + } + } + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var aria = function (dom, ecModel) { + var ariaModel = ecModel.getModel('aria'); + if (!ariaModel.get('show')) { + return; + } + else if (ariaModel.get('description')) { + dom.setAttribute('aria-label', ariaModel.get('description')); + return; + } + + var seriesCnt = 0; + ecModel.eachSeries(function (seriesModel, idx) { + ++seriesCnt; + }, this); + + var maxDataCnt = ariaModel.get('data.maxCount') || 10; + var maxSeriesCnt = ariaModel.get('series.maxCount') || 10; + var displaySeriesCnt = Math.min(seriesCnt, maxSeriesCnt); + + var ariaLabel; + if (seriesCnt < 1) { + // No series, no aria label + return; + } + else { + var title = getTitle(); + if (title) { + ariaLabel = replace(getConfig('general.withTitle'), { + title: title + }); + } + else { + ariaLabel = getConfig('general.withoutTitle'); + } + + var seriesLabels = []; + var prefix = seriesCnt > 1 + ? 'series.multiple.prefix' + : 'series.single.prefix'; + ariaLabel += replace(getConfig(prefix), { seriesCount: seriesCnt }); + + ecModel.eachSeries(function (seriesModel, idx) { + if (idx < displaySeriesCnt) { + var seriesLabel; + + var seriesName = seriesModel.get('name'); + var seriesTpl = 'series.' + + (seriesCnt > 1 ? 'multiple' : 'single') + '.'; + seriesLabel = getConfig(seriesName + ? seriesTpl + 'withName' + : seriesTpl + 'withoutName'); + + seriesLabel = replace(seriesLabel, { + seriesId: seriesModel.seriesIndex, + seriesName: seriesModel.get('name'), + seriesType: getSeriesTypeName(seriesModel.subType) + }); + + var data = seriesModel.getData(); + window.data = data; + if (data.count() > maxDataCnt) { + // Show part of data + seriesLabel += replace(getConfig('data.partialData'), { + displayCnt: maxDataCnt + }); + } + else { + seriesLabel += getConfig('data.allData'); + } + + var dataLabels = []; + for (var i = 0; i < data.count(); i++) { + if (i < maxDataCnt) { + var name = data.getName(i); + var value = retrieveRawValue(data, i); + dataLabels.push( + replace( + name + ? getConfig('data.withName') + : getConfig('data.withoutName'), + { + name: name, + value: value + } + ) + ); + } + } + seriesLabel += dataLabels + .join(getConfig('data.separator.middle')) + + getConfig('data.separator.end'); + + seriesLabels.push(seriesLabel); + } + }); + + ariaLabel += seriesLabels + .join(getConfig('series.multiple.separator.middle')) + + getConfig('series.multiple.separator.end'); + + dom.setAttribute('aria-label', ariaLabel); + } + + function replace(str, keyValues) { + if (typeof str !== 'string') { + return str; + } + + var result = str; + each$1(keyValues, function (value, key) { + result = result.replace( + new RegExp('\\{\\s*' + key + '\\s*\\}', 'g'), + value + ); + }); + return result; + } + + function getConfig(path) { + var userConfig = ariaModel.get(path); + if (userConfig == null) { + var pathArr = path.split('.'); + var result = lang.aria; + for (var i = 0; i < pathArr.length; ++i) { + result = result[pathArr[i]]; + } + return result; + } + else { + return userConfig; + } + } + + function getTitle() { + var title = ecModel.getModel('title').option; + if (title && title.length) { + title = title[0]; + } + return title && title.text; + } + + function getSeriesTypeName(type) { + return lang.series.typeNames[type] || '自定义图'; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var PI$1 = Math.PI; + +/** + * @param {module:echarts/ExtensionAPI} api + * @param {Object} [opts] + * @param {string} [opts.text] + * @param {string} [opts.color] + * @param {string} [opts.textColor] + * @return {module:zrender/Element} + */ +var loadingDefault = function (api, opts) { + opts = opts || {}; + defaults(opts, { + text: 'loading', + color: '#c23531', + textColor: '#000', + maskColor: 'rgba(255, 255, 255, 0.8)', + zlevel: 0 + }); + var mask = new Rect({ + style: { + fill: opts.maskColor + }, + zlevel: opts.zlevel, + z: 10000 + }); + var arc = new Arc({ + shape: { + startAngle: -PI$1 / 2, + endAngle: -PI$1 / 2 + 0.1, + r: 10 + }, + style: { + stroke: opts.color, + lineCap: 'round', + lineWidth: 5 + }, + zlevel: opts.zlevel, + z: 10001 + }); + var labelRect = new Rect({ + style: { + fill: 'none', + text: opts.text, + textPosition: 'right', + textDistance: 10, + textFill: opts.textColor + }, + zlevel: opts.zlevel, + z: 10001 + }); + + arc.animateShape(true) + .when(1000, { + endAngle: PI$1 * 3 / 2 + }) + .start('circularInOut'); + arc.animateShape(true) + .when(1000, { + startAngle: PI$1 * 3 / 2 + }) + .delay(300) + .start('circularInOut'); + + var group = new Group(); + group.add(arc); + group.add(labelRect); + group.add(mask); + // Inject resize + group.resize = function () { + var cx = api.getWidth() / 2; + var cy = api.getHeight() / 2; + arc.setShape({ + cx: cx, + cy: cy + }); + var r = arc.shape.r; + labelRect.setShape({ + x: cx - r, + y: cy - r, + width: r * 2, + height: r * 2 + }); + + mask.setShape({ + x: 0, + y: 0, + width: api.getWidth(), + height: api.getHeight() + }); + }; + group.resize(); + return group; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @module echarts/stream/Scheduler + */ + +/** + * @constructor + */ +function Scheduler(ecInstance, api, dataProcessorHandlers, visualHandlers) { + this.ecInstance = ecInstance; + this.api = api; + this.unfinished; + + // Fix current processors in case that in some rear cases that + // processors might be registered after echarts instance created. + // Register processors incrementally for a echarts instance is + // not supported by this stream architecture. + var dataProcessorHandlers = this._dataProcessorHandlers = dataProcessorHandlers.slice(); + var visualHandlers = this._visualHandlers = visualHandlers.slice(); + this._allHandlers = dataProcessorHandlers.concat(visualHandlers); + + /** + * @private + * @type { + * [handlerUID: string]: { + * seriesTaskMap?: { + * [seriesUID: string]: Task + * }, + * overallTask?: Task + * } + * } + */ + this._stageTaskMap = createHashMap(); +} + +var proto = Scheduler.prototype; + +/** + * @param {module:echarts/model/Global} ecModel + * @param {Object} payload + */ +proto.restoreData = function (ecModel, payload) { + // TODO: Only restroe needed series and components, but not all components. + // Currently `restoreData` of all of the series and component will be called. + // But some independent components like `title`, `legend`, `graphic`, `toolbox`, + // `tooltip`, `axisPointer`, etc, do not need series refresh when `setOption`, + // and some components like coordinate system, axes, dataZoom, visualMap only + // need their target series refresh. + // (1) If we are implementing this feature some day, we should consider these cases: + // if a data processor depends on a component (e.g., dataZoomProcessor depends + // on the settings of `dataZoom`), it should be re-performed if the component + // is modified by `setOption`. + // (2) If a processor depends on sevral series, speicified by its `getTargetSeries`, + // it should be re-performed when the result array of `getTargetSeries` changed. + // We use `dependencies` to cover these issues. + // (3) How to update target series when coordinate system related components modified. + + // TODO: simply the dirty mechanism? Check whether only the case here can set tasks dirty, + // and this case all of the tasks will be set as dirty. + + ecModel.restoreData(payload); + + // Theoretically an overall task not only depends on each of its target series, but also + // depends on all of the series. + // The overall task is not in pipeline, and `ecModel.restoreData` only set pipeline tasks + // dirty. If `getTargetSeries` of an overall task returns nothing, we should also ensure + // that the overall task is set as dirty and to be performed, otherwise it probably cause + // state chaos. So we have to set dirty of all of the overall tasks manually, otherwise it + // probably cause state chaos (consider `dataZoomProcessor`). + this._stageTaskMap.each(function (taskRecord) { + var overallTask = taskRecord.overallTask; + overallTask && overallTask.dirty(); + }); +}; + +// If seriesModel provided, incremental threshold is check by series data. +proto.getPerformArgs = function (task, isBlock) { + // For overall task + if (!task.__pipeline) { + return; + } + + var pipeline = this._pipelineMap.get(task.__pipeline.id); + var pCtx = pipeline.context; + var incremental = !isBlock + && pipeline.progressiveEnabled + && (!pCtx || pCtx.progressiveRender) + && task.__idxInPipeline > pipeline.blockIndex; + + var step = incremental ? pipeline.step : null; + var modDataCount = pCtx && pCtx.modDataCount; + var modBy = modDataCount != null ? Math.ceil(modDataCount / step) : null; + + return {step: step, modBy: modBy, modDataCount: modDataCount}; +}; + +proto.getPipeline = function (pipelineId) { + return this._pipelineMap.get(pipelineId); +}; + +/** + * Current, progressive rendering starts from visual and layout. + * Always detect render mode in the same stage, avoiding that incorrect + * detection caused by data filtering. + * Caution: + * `updateStreamModes` use `seriesModel.getData()`. + */ +proto.updateStreamModes = function (seriesModel, view) { + var pipeline = this._pipelineMap.get(seriesModel.uid); + var data = seriesModel.getData(); + var dataLen = data.count(); + + // `progressiveRender` means that can render progressively in each + // animation frame. Note that some types of series do not provide + // `view.incrementalPrepareRender` but support `chart.appendData`. We + // use the term `incremental` but not `progressive` to describe the + // case that `chart.appendData`. + var progressiveRender = pipeline.progressiveEnabled + && view.incrementalPrepareRender + && dataLen >= pipeline.threshold; + + var large = seriesModel.get('large') && dataLen >= seriesModel.get('largeThreshold'); + + // TODO: modDataCount should not updated if `appendData`, otherwise cause whole repaint. + // see `test/candlestick-large3.html` + var modDataCount = seriesModel.get('progressiveChunkMode') === 'mod' ? dataLen : null; + + seriesModel.pipelineContext = pipeline.context = { + progressiveRender: progressiveRender, + modDataCount: modDataCount, + large: large + }; +}; + +proto.restorePipelines = function (ecModel) { + var scheduler = this; + var pipelineMap = scheduler._pipelineMap = createHashMap(); + + ecModel.eachSeries(function (seriesModel) { + var progressive = seriesModel.getProgressive(); + var pipelineId = seriesModel.uid; + + pipelineMap.set(pipelineId, { + id: pipelineId, + head: null, + tail: null, + threshold: seriesModel.getProgressiveThreshold(), + progressiveEnabled: progressive + && !(seriesModel.preventIncremental && seriesModel.preventIncremental()), + blockIndex: -1, + step: Math.round(progressive || 700), + count: 0 + }); + + pipe(scheduler, seriesModel, seriesModel.dataTask); + }); +}; + +proto.prepareStageTasks = function () { + var stageTaskMap = this._stageTaskMap; + var ecModel = this.ecInstance.getModel(); + var api = this.api; + + each$1(this._allHandlers, function (handler) { + var record = stageTaskMap.get(handler.uid) || stageTaskMap.set(handler.uid, []); + + handler.reset && createSeriesStageTask(this, handler, record, ecModel, api); + handler.overallReset && createOverallStageTask(this, handler, record, ecModel, api); + }, this); +}; + +proto.prepareView = function (view, model, ecModel, api) { + var renderTask = view.renderTask; + var context = renderTask.context; + + context.model = model; + context.ecModel = ecModel; + context.api = api; + + renderTask.__block = !view.incrementalPrepareRender; + + pipe(this, model, renderTask); +}; + + +proto.performDataProcessorTasks = function (ecModel, payload) { + // If we do not use `block` here, it should be considered when to update modes. + performStageTasks(this, this._dataProcessorHandlers, ecModel, payload, {block: true}); +}; + +// opt +// opt.visualType: 'visual' or 'layout' +// opt.setDirty +proto.performVisualTasks = function (ecModel, payload, opt) { + performStageTasks(this, this._visualHandlers, ecModel, payload, opt); +}; + +function performStageTasks(scheduler, stageHandlers, ecModel, payload, opt) { + opt = opt || {}; + var unfinished; + + each$1(stageHandlers, function (stageHandler, idx) { + if (opt.visualType && opt.visualType !== stageHandler.visualType) { + return; + } + + var stageHandlerRecord = scheduler._stageTaskMap.get(stageHandler.uid); + var seriesTaskMap = stageHandlerRecord.seriesTaskMap; + var overallTask = stageHandlerRecord.overallTask; + + if (overallTask) { + var overallNeedDirty; + var agentStubMap = overallTask.agentStubMap; + agentStubMap.each(function (stub) { + if (needSetDirty(opt, stub)) { + stub.dirty(); + overallNeedDirty = true; + } + }); + overallNeedDirty && overallTask.dirty(); + updatePayload(overallTask, payload); + var performArgs = scheduler.getPerformArgs(overallTask, opt.block); + // Execute stubs firstly, which may set the overall task dirty, + // then execute the overall task. And stub will call seriesModel.setData, + // which ensures that in the overallTask seriesModel.getData() will not + // return incorrect data. + agentStubMap.each(function (stub) { + stub.perform(performArgs); + }); + unfinished |= overallTask.perform(performArgs); + } + else if (seriesTaskMap) { + seriesTaskMap.each(function (task, pipelineId) { + if (needSetDirty(opt, task)) { + task.dirty(); + } + var performArgs = scheduler.getPerformArgs(task, opt.block); + performArgs.skip = !stageHandler.performRawSeries + && ecModel.isSeriesFiltered(task.context.model); + updatePayload(task, payload); + unfinished |= task.perform(performArgs); + }); + } + }); + + function needSetDirty(opt, task) { + return opt.setDirty && (!opt.dirtyMap || opt.dirtyMap.get(task.__pipeline.id)); + } + + scheduler.unfinished |= unfinished; +} + +proto.performSeriesTasks = function (ecModel) { + var unfinished; + + ecModel.eachSeries(function (seriesModel) { + // Progress to the end for dataInit and dataRestore. + unfinished |= seriesModel.dataTask.perform(); + }); + + this.unfinished |= unfinished; +}; + +proto.plan = function () { + // Travel pipelines, check block. + this._pipelineMap.each(function (pipeline) { + var task = pipeline.tail; + do { + if (task.__block) { + pipeline.blockIndex = task.__idxInPipeline; + break; + } + task = task.getUpstream(); + } + while (task); + }); +}; + +var updatePayload = proto.updatePayload = function (task, payload) { + payload !== 'remain' && (task.context.payload = payload); +}; + +function createSeriesStageTask(scheduler, stageHandler, stageHandlerRecord, ecModel, api) { + var seriesTaskMap = stageHandlerRecord.seriesTaskMap + || (stageHandlerRecord.seriesTaskMap = createHashMap()); + var seriesType = stageHandler.seriesType; + var getTargetSeries = stageHandler.getTargetSeries; + + // If a stageHandler should cover all series, `createOnAllSeries` should be declared mandatorily, + // to avoid some typo or abuse. Otherwise if an extension do not specify a `seriesType`, + // it works but it may cause other irrelevant charts blocked. + if (stageHandler.createOnAllSeries) { + ecModel.eachRawSeries(create); + } + else if (seriesType) { + ecModel.eachRawSeriesByType(seriesType, create); + } + else if (getTargetSeries) { + getTargetSeries(ecModel, api).each(create); + } + + function create(seriesModel) { + var pipelineId = seriesModel.uid; + + // Init tasks for each seriesModel only once. + // Reuse original task instance. + var task = seriesTaskMap.get(pipelineId) + || seriesTaskMap.set(pipelineId, createTask({ + plan: seriesTaskPlan, + reset: seriesTaskReset, + count: seriesTaskCount + })); + task.context = { + model: seriesModel, + ecModel: ecModel, + api: api, + useClearVisual: stageHandler.isVisual && !stageHandler.isLayout, + plan: stageHandler.plan, + reset: stageHandler.reset, + scheduler: scheduler + }; + pipe(scheduler, seriesModel, task); + } + + // Clear unused series tasks. + var pipelineMap = scheduler._pipelineMap; + seriesTaskMap.each(function (task, pipelineId) { + if (!pipelineMap.get(pipelineId)) { + task.dispose(); + seriesTaskMap.removeKey(pipelineId); + } + }); +} + +function createOverallStageTask(scheduler, stageHandler, stageHandlerRecord, ecModel, api) { + var overallTask = stageHandlerRecord.overallTask = stageHandlerRecord.overallTask + // For overall task, the function only be called on reset stage. + || createTask({reset: overallTaskReset}); + + overallTask.context = { + ecModel: ecModel, + api: api, + overallReset: stageHandler.overallReset, + scheduler: scheduler + }; + + // Reuse orignal stubs. + var agentStubMap = overallTask.agentStubMap = overallTask.agentStubMap || createHashMap(); + + var seriesType = stageHandler.seriesType; + var getTargetSeries = stageHandler.getTargetSeries; + var overallProgress = true; + var modifyOutputEnd = stageHandler.modifyOutputEnd; + + // An overall task with seriesType detected or has `getTargetSeries`, we add + // stub in each pipelines, it will set the overall task dirty when the pipeline + // progress. Moreover, to avoid call the overall task each frame (too frequent), + // we set the pipeline block. + if (seriesType) { + ecModel.eachRawSeriesByType(seriesType, createStub); + } + else if (getTargetSeries) { + getTargetSeries(ecModel, api).each(createStub); + } + // Otherwise, (usually it is legancy case), the overall task will only be + // executed when upstream dirty. Otherwise the progressive rendering of all + // pipelines will be disabled unexpectedly. But it still needs stubs to receive + // dirty info from upsteam. + else { + overallProgress = false; + each$1(ecModel.getSeries(), createStub); + } + + function createStub(seriesModel) { + var pipelineId = seriesModel.uid; + var stub = agentStubMap.get(pipelineId); + if (!stub) { + stub = agentStubMap.set(pipelineId, createTask( + {reset: stubReset, onDirty: stubOnDirty} + )); + // When the result of `getTargetSeries` changed, the overallTask + // should be set as dirty and re-performed. + overallTask.dirty(); + } + stub.context = { + model: seriesModel, + overallProgress: overallProgress, + modifyOutputEnd: modifyOutputEnd + }; + stub.agent = overallTask; + stub.__block = overallProgress; + + pipe(scheduler, seriesModel, stub); + } + + // Clear unused stubs. + var pipelineMap = scheduler._pipelineMap; + agentStubMap.each(function (stub, pipelineId) { + if (!pipelineMap.get(pipelineId)) { + stub.dispose(); + // When the result of `getTargetSeries` changed, the overallTask + // should be set as dirty and re-performed. + overallTask.dirty(); + agentStubMap.removeKey(pipelineId); + } + }); +} + +function overallTaskReset(context) { + context.overallReset( + context.ecModel, context.api, context.payload + ); +} + +function stubReset(context, upstreamContext) { + return context.overallProgress && stubProgress; +} + +function stubProgress() { + this.agent.dirty(); + this.getDownstream().dirty(); +} + +function stubOnDirty() { + this.agent && this.agent.dirty(); +} + +function seriesTaskPlan(context) { + return context.plan && context.plan( + context.model, context.ecModel, context.api, context.payload + ); +} + +function seriesTaskReset(context) { + if (context.useClearVisual) { + context.data.clearAllVisual(); + } + var resetDefines = context.resetDefines = normalizeToArray(context.reset( + context.model, context.ecModel, context.api, context.payload + )); + return resetDefines.length > 1 + ? map(resetDefines, function (v, idx) { + return makeSeriesTaskProgress(idx); + }) + : singleSeriesTaskProgress; +} + +var singleSeriesTaskProgress = makeSeriesTaskProgress(0); + +function makeSeriesTaskProgress(resetDefineIdx) { + return function (params, context) { + var data = context.data; + var resetDefine = context.resetDefines[resetDefineIdx]; + + if (resetDefine && resetDefine.dataEach) { + for (var i = params.start; i < params.end; i++) { + resetDefine.dataEach(data, i); + } + } + else if (resetDefine && resetDefine.progress) { + resetDefine.progress(params, data); + } + }; +} + +function seriesTaskCount(context) { + return context.data.count(); +} + +function pipe(scheduler, seriesModel, task) { + var pipelineId = seriesModel.uid; + var pipeline = scheduler._pipelineMap.get(pipelineId); + !pipeline.head && (pipeline.head = task); + pipeline.tail && pipeline.tail.pipe(task); + pipeline.tail = task; + task.__idxInPipeline = pipeline.count++; + task.__pipeline = pipeline; +} + +Scheduler.wrapStageHandler = function (stageHandler, visualType) { + if (isFunction$1(stageHandler)) { + stageHandler = { + overallReset: stageHandler, + seriesType: detectSeriseType(stageHandler) + }; + } + + stageHandler.uid = getUID('stageHandler'); + visualType && (stageHandler.visualType = visualType); + + return stageHandler; +}; + + + +/** + * Only some legacy stage handlers (usually in echarts extensions) are pure function. + * To ensure that they can work normally, they should work in block mode, that is, + * they should not be started util the previous tasks finished. So they cause the + * progressive rendering disabled. We try to detect the series type, to narrow down + * the block range to only the series type they concern, but not all series. + */ +function detectSeriseType(legacyFunc) { + seriesType = null; + try { + // Assume there is no async when calling `eachSeriesByType`. + legacyFunc(ecModelMock, apiMock); + } + catch (e) { + } + return seriesType; +} + +var ecModelMock = {}; +var apiMock = {}; +var seriesType; + +mockMethods(ecModelMock, GlobalModel); +mockMethods(apiMock, ExtensionAPI); +ecModelMock.eachSeriesByType = ecModelMock.eachRawSeriesByType = function (type) { + seriesType = type; +}; +ecModelMock.eachComponent = function (cond) { + if (cond.mainType === 'series' && cond.subType) { + seriesType = cond.subType; + } +}; + +function mockMethods(target, Clz) { + /* eslint-disable */ + for (var name in Clz.prototype) { + // Do not use hasOwnProperty + target[name] = noop; + } + /* eslint-enable */ +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var colorAll = [ + '#37A2DA', '#32C5E9', '#67E0E3', '#9FE6B8', '#FFDB5C', '#ff9f7f', + '#fb7293', '#E062AE', '#E690D1', '#e7bcf3', '#9d96f5', '#8378EA', '#96BFFF' +]; + +var lightTheme = { + + color: colorAll, + + colorLayer: [ + ['#37A2DA', '#ffd85c', '#fd7b5f'], + ['#37A2DA', '#67E0E3', '#FFDB5C', '#ff9f7f', '#E062AE', '#9d96f5'], + ['#37A2DA', '#32C5E9', '#9FE6B8', '#FFDB5C', '#ff9f7f', '#fb7293', '#e7bcf3', '#8378EA', '#96BFFF'], + colorAll + ] +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var contrastColor = '#eee'; +var axisCommon = function () { + return { + axisLine: { + lineStyle: { + color: contrastColor + } + }, + axisTick: { + lineStyle: { + color: contrastColor + } + }, + axisLabel: { + textStyle: { + color: contrastColor + } + }, + splitLine: { + lineStyle: { + type: 'dashed', + color: '#aaa' + } + }, + splitArea: { + areaStyle: { + color: contrastColor + } + } + }; +}; + +var colorPalette = [ + '#dd6b66', '#759aa0', '#e69d87', '#8dc1a9', '#ea7e53', + '#eedd78', '#73a373', '#73b9bc', '#7289ab', '#91ca8c', '#f49f42' +]; +var theme = { + color: colorPalette, + backgroundColor: '#333', + tooltip: { + axisPointer: { + lineStyle: { + color: contrastColor + }, + crossStyle: { + color: contrastColor + } + } + }, + legend: { + textStyle: { + color: contrastColor + } + }, + textStyle: { + color: contrastColor + }, + title: { + textStyle: { + color: contrastColor + } + }, + toolbox: { + iconStyle: { + normal: { + borderColor: contrastColor + } + } + }, + dataZoom: { + textStyle: { + color: contrastColor + } + }, + visualMap: { + textStyle: { + color: contrastColor + } + }, + timeline: { + lineStyle: { + color: contrastColor + }, + itemStyle: { + normal: { + color: colorPalette[1] + } + }, + label: { + normal: { + textStyle: { + color: contrastColor + } + } + }, + controlStyle: { + normal: { + color: contrastColor, + borderColor: contrastColor + } + } + }, + timeAxis: axisCommon(), + logAxis: axisCommon(), + valueAxis: axisCommon(), + categoryAxis: axisCommon(), + + line: { + symbol: 'circle' + }, + graph: { + color: colorPalette + }, + gauge: { + title: { + textStyle: { + color: contrastColor + } + } + }, + candlestick: { + itemStyle: { + normal: { + color: '#FD1050', + color0: '#0CF49B', + borderColor: '#FD1050', + borderColor0: '#0CF49B' + } + } + } +}; +theme.categoryAxis.splitLine.show = false; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * This module is imported by echarts directly. + * + * Notice: + * Always keep this file exists for backward compatibility. + * Because before 4.1.0, dataset is an optional component, + * some users may import this module manually. + */ + +ComponentModel.extend({ + + type: 'dataset', + + /** + * @protected + */ + defaultOption: { + + // 'row', 'column' + seriesLayoutBy: SERIES_LAYOUT_BY_COLUMN, + + // null/'auto': auto detect header, see "module:echarts/data/helper/sourceHelper" + sourceHeader: null, + + dimensions: null, + + source: null + }, + + optionUpdated: function () { + detectSourceFormat(this); + } + +}); + +Component$1.extend({ + + type: 'dataset' + +}); + +/** + * 椭圆形状 + * @module zrender/graphic/shape/Ellipse + */ + +var Ellipse = Path.extend({ + + type: 'ellipse', + + shape: { + cx: 0, cy: 0, + rx: 0, ry: 0 + }, + + buildPath: function (ctx, shape) { + var k = 0.5522848; + var x = shape.cx; + var y = shape.cy; + var a = shape.rx; + var b = shape.ry; + var ox = a * k; // 水平控制点偏移量 + var oy = b * k; // 垂直控制点偏移量 + // 从椭圆的左端点开始顺时针绘制四条三次贝塞尔曲线 + ctx.moveTo(x - a, y); + ctx.bezierCurveTo(x - a, y - oy, x - ox, y - b, x, y - b); + ctx.bezierCurveTo(x + ox, y - b, x + a, y - oy, x + a, y); + ctx.bezierCurveTo(x + a, y + oy, x + ox, y + b, x, y + b); + ctx.bezierCurveTo(x - ox, y + b, x - a, y + oy, x - a, y); + ctx.closePath(); + } +}); + +// import RadialGradient from '../graphic/RadialGradient'; +// import Pattern from '../graphic/Pattern'; +// import * as vector from '../core/vector'; +// Most of the values can be separated by comma and/or white space. +var DILIMITER_REG = /[\s,]+/; + +/** + * For big svg string, this method might be time consuming. + * + * @param {string} svg xml string + * @return {Object} xml root. + */ +function parseXML(svg) { + if (isString(svg)) { + var parser = new DOMParser(); + svg = parser.parseFromString(svg, 'text/xml'); + } + + // Document node. If using $.get, doc node may be input. + if (svg.nodeType === 9) { + svg = svg.firstChild; + } + // nodeName of is also 'svg'. + while (svg.nodeName.toLowerCase() !== 'svg' || svg.nodeType !== 1) { + svg = svg.nextSibling; + } + + return svg; +} + +function SVGParser() { + this._defs = {}; + this._root = null; + + this._isDefine = false; + this._isText = false; +} + +SVGParser.prototype.parse = function (xml, opt) { + opt = opt || {}; + + var svg = parseXML(xml); + + if (!svg) { + throw new Error('Illegal svg'); + } + + var root = new Group(); + this._root = root; + // parse view port + var viewBox = svg.getAttribute('viewBox') || ''; + + // If width/height not specified, means "100%" of `opt.width/height`. + // TODO: Other percent value not supported yet. + var width = parseFloat(svg.getAttribute('width') || opt.width); + var height = parseFloat(svg.getAttribute('height') || opt.height); + // If width/height not specified, set as null for output. + isNaN(width) && (width = null); + isNaN(height) && (height = null); + + // Apply inline style on svg element. + parseAttributes(svg, root, null, true); + + var child = svg.firstChild; + while (child) { + this._parseNode(child, root); + child = child.nextSibling; + } + + var viewBoxRect; + var viewBoxTransform; + + if (viewBox) { + var viewBoxArr = trim(viewBox).split(DILIMITER_REG); + // Some invalid case like viewBox: 'none'. + if (viewBoxArr.length >= 4) { + viewBoxRect = { + x: parseFloat(viewBoxArr[0] || 0), + y: parseFloat(viewBoxArr[1] || 0), + width: parseFloat(viewBoxArr[2]), + height: parseFloat(viewBoxArr[3]) + }; + } + } + + if (viewBoxRect && width != null && height != null) { + viewBoxTransform = makeViewBoxTransform(viewBoxRect, width, height); + + if (!opt.ignoreViewBox) { + // If set transform on the output group, it probably bring trouble when + // some users only intend to show the clipped content inside the viewBox, + // but not intend to transform the output group. So we keep the output + // group no transform. If the user intend to use the viewBox as a + // camera, just set `opt.ignoreViewBox` as `true` and set transfrom + // manually according to the viewBox info in the output of this method. + var elRoot = root; + root = new Group(); + root.add(elRoot); + elRoot.scale = viewBoxTransform.scale.slice(); + elRoot.position = viewBoxTransform.position.slice(); + } + } + + // Some shapes might be overflow the viewport, which should be + // clipped despite whether the viewBox is used, as the SVG does. + if (!opt.ignoreRootClip && width != null && height != null) { + root.setClipPath(new Rect({ + shape: {x: 0, y: 0, width: width, height: height} + })); + } + + // Set width/height on group just for output the viewport size. + return { + root: root, + width: width, + height: height, + viewBoxRect: viewBoxRect, + viewBoxTransform: viewBoxTransform + }; +}; + +SVGParser.prototype._parseNode = function (xmlNode, parentGroup) { + + var nodeName = xmlNode.nodeName.toLowerCase(); + + // TODO + // support in svg, where nodeName is 'style', + // CSS classes is defined globally wherever the style tags are declared. + + if (nodeName === 'defs') { + // define flag + this._isDefine = true; + } + else if (nodeName === 'text') { + this._isText = true; + } + + var el; + if (this._isDefine) { + var parser = defineParsers[nodeName]; + if (parser) { + var def = parser.call(this, xmlNode); + var id = xmlNode.getAttribute('id'); + if (id) { + this._defs[id] = def; + } + } + } + else { + var parser = nodeParsers[nodeName]; + if (parser) { + el = parser.call(this, xmlNode, parentGroup); + parentGroup.add(el); + } + } + + var child = xmlNode.firstChild; + while (child) { + if (child.nodeType === 1) { + this._parseNode(child, el); + } + // Is text + if (child.nodeType === 3 && this._isText) { + this._parseText(child, el); + } + child = child.nextSibling; + } + + // Quit define + if (nodeName === 'defs') { + this._isDefine = false; + } + else if (nodeName === 'text') { + this._isText = false; + } +}; + +SVGParser.prototype._parseText = function (xmlNode, parentGroup) { + if (xmlNode.nodeType === 1) { + var dx = xmlNode.getAttribute('dx') || 0; + var dy = xmlNode.getAttribute('dy') || 0; + this._textX += parseFloat(dx); + this._textY += parseFloat(dy); + } + + var text = new Text({ + style: { + text: xmlNode.textContent, + transformText: true + }, + position: [this._textX || 0, this._textY || 0] + }); + + inheritStyle(parentGroup, text); + parseAttributes(xmlNode, text, this._defs); + + var fontSize = text.style.fontSize; + if (fontSize && fontSize < 9) { + // PENDING + text.style.fontSize = 9; + text.scale = text.scale || [1, 1]; + text.scale[0] *= fontSize / 9; + text.scale[1] *= fontSize / 9; + } + + var rect = text.getBoundingRect(); + this._textX += rect.width; + + parentGroup.add(text); + + return text; +}; + +var nodeParsers = { + 'g': function (xmlNode, parentGroup) { + var g = new Group(); + inheritStyle(parentGroup, g); + parseAttributes(xmlNode, g, this._defs); + + return g; + }, + 'rect': function (xmlNode, parentGroup) { + var rect = new Rect(); + inheritStyle(parentGroup, rect); + parseAttributes(xmlNode, rect, this._defs); + + rect.setShape({ + x: parseFloat(xmlNode.getAttribute('x') || 0), + y: parseFloat(xmlNode.getAttribute('y') || 0), + width: parseFloat(xmlNode.getAttribute('width') || 0), + height: parseFloat(xmlNode.getAttribute('height') || 0) + }); + + // console.log(xmlNode.getAttribute('transform')); + // console.log(rect.transform); + + return rect; + }, + 'circle': function (xmlNode, parentGroup) { + var circle = new Circle(); + inheritStyle(parentGroup, circle); + parseAttributes(xmlNode, circle, this._defs); + + circle.setShape({ + cx: parseFloat(xmlNode.getAttribute('cx') || 0), + cy: parseFloat(xmlNode.getAttribute('cy') || 0), + r: parseFloat(xmlNode.getAttribute('r') || 0) + }); + + return circle; + }, + 'line': function (xmlNode, parentGroup) { + var line = new Line(); + inheritStyle(parentGroup, line); + parseAttributes(xmlNode, line, this._defs); + + line.setShape({ + x1: parseFloat(xmlNode.getAttribute('x1') || 0), + y1: parseFloat(xmlNode.getAttribute('y1') || 0), + x2: parseFloat(xmlNode.getAttribute('x2') || 0), + y2: parseFloat(xmlNode.getAttribute('y2') || 0) + }); + + return line; + }, + 'ellipse': function (xmlNode, parentGroup) { + var ellipse = new Ellipse(); + inheritStyle(parentGroup, ellipse); + parseAttributes(xmlNode, ellipse, this._defs); + + ellipse.setShape({ + cx: parseFloat(xmlNode.getAttribute('cx') || 0), + cy: parseFloat(xmlNode.getAttribute('cy') || 0), + rx: parseFloat(xmlNode.getAttribute('rx') || 0), + ry: parseFloat(xmlNode.getAttribute('ry') || 0) + }); + return ellipse; + }, + 'polygon': function (xmlNode, parentGroup) { + var points = xmlNode.getAttribute('points'); + if (points) { + points = parsePoints(points); + } + var polygon = new Polygon({ + shape: { + points: points || [] + } + }); + + inheritStyle(parentGroup, polygon); + parseAttributes(xmlNode, polygon, this._defs); + + return polygon; + }, + 'polyline': function (xmlNode, parentGroup) { + var path = new Path(); + inheritStyle(parentGroup, path); + parseAttributes(xmlNode, path, this._defs); + + var points = xmlNode.getAttribute('points'); + if (points) { + points = parsePoints(points); + } + var polyline = new Polyline({ + shape: { + points: points || [] + } + }); + + return polyline; + }, + 'image': function (xmlNode, parentGroup) { + var img = new ZImage(); + inheritStyle(parentGroup, img); + parseAttributes(xmlNode, img, this._defs); + + img.setStyle({ + image: xmlNode.getAttribute('xlink:href'), + x: xmlNode.getAttribute('x'), + y: xmlNode.getAttribute('y'), + width: xmlNode.getAttribute('width'), + height: xmlNode.getAttribute('height') + }); + + return img; + }, + 'text': function (xmlNode, parentGroup) { + var x = xmlNode.getAttribute('x') || 0; + var y = xmlNode.getAttribute('y') || 0; + var dx = xmlNode.getAttribute('dx') || 0; + var dy = xmlNode.getAttribute('dy') || 0; + + this._textX = parseFloat(x) + parseFloat(dx); + this._textY = parseFloat(y) + parseFloat(dy); + + var g = new Group(); + inheritStyle(parentGroup, g); + parseAttributes(xmlNode, g, this._defs); + + return g; + }, + 'tspan': function (xmlNode, parentGroup) { + var x = xmlNode.getAttribute('x'); + var y = xmlNode.getAttribute('y'); + if (x != null) { + // new offset x + this._textX = parseFloat(x); + } + if (y != null) { + // new offset y + this._textY = parseFloat(y); + } + var dx = xmlNode.getAttribute('dx') || 0; + var dy = xmlNode.getAttribute('dy') || 0; + + var g = new Group(); + + inheritStyle(parentGroup, g); + parseAttributes(xmlNode, g, this._defs); + + + this._textX += dx; + this._textY += dy; + + return g; + }, + 'path': function (xmlNode, parentGroup) { + // TODO svg fill rule + // https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill-rule + // path.style.globalCompositeOperation = 'xor'; + var d = xmlNode.getAttribute('d') || ''; + + // Performance sensitive. + + var path = createFromString(d); + + inheritStyle(parentGroup, path); + parseAttributes(xmlNode, path, this._defs); + + return path; + } +}; + +var defineParsers = { + + 'lineargradient': function (xmlNode) { + var x1 = parseInt(xmlNode.getAttribute('x1') || 0, 10); + var y1 = parseInt(xmlNode.getAttribute('y1') || 0, 10); + var x2 = parseInt(xmlNode.getAttribute('x2') || 10, 10); + var y2 = parseInt(xmlNode.getAttribute('y2') || 0, 10); + + var gradient = new LinearGradient(x1, y1, x2, y2); + + _parseGradientColorStops(xmlNode, gradient); + + return gradient; + }, + + 'radialgradient': function (xmlNode) { + + } +}; + +function _parseGradientColorStops(xmlNode, gradient) { + + var stop = xmlNode.firstChild; + + while (stop) { + if (stop.nodeType === 1) { + var offset = stop.getAttribute('offset'); + if (offset.indexOf('%') > 0) { // percentage + offset = parseInt(offset, 10) / 100; + } + else if (offset) { // number from 0 to 1 + offset = parseFloat(offset); + } + else { + offset = 0; + } + + var stopColor = stop.getAttribute('stop-color') || '#000000'; + + gradient.addColorStop(offset, stopColor); + } + stop = stop.nextSibling; + } +} + +function inheritStyle(parent, child) { + if (parent && parent.__inheritedStyle) { + if (!child.__inheritedStyle) { + child.__inheritedStyle = {}; + } + defaults(child.__inheritedStyle, parent.__inheritedStyle); + } +} + +function parsePoints(pointsString) { + var list = trim(pointsString).split(DILIMITER_REG); + var points = []; + + for (var i = 0; i < list.length; i += 2) { + var x = parseFloat(list[i]); + var y = parseFloat(list[i + 1]); + points.push([x, y]); + } + return points; +} + +var attributesMap = { + 'fill': 'fill', + 'stroke': 'stroke', + 'stroke-width': 'lineWidth', + 'opacity': 'opacity', + 'fill-opacity': 'fillOpacity', + 'stroke-opacity': 'strokeOpacity', + 'stroke-dasharray': 'lineDash', + 'stroke-dashoffset': 'lineDashOffset', + 'stroke-linecap': 'lineCap', + 'stroke-linejoin': 'lineJoin', + 'stroke-miterlimit': 'miterLimit', + 'font-family': 'fontFamily', + 'font-size': 'fontSize', + 'font-style': 'fontStyle', + 'font-weight': 'fontWeight', + + 'text-align': 'textAlign', + 'alignment-baseline': 'textBaseline' +}; + +function parseAttributes(xmlNode, el, defs, onlyInlineStyle) { + var zrStyle = el.__inheritedStyle || {}; + var isTextEl = el.type === 'text'; + + // TODO Shadow + if (xmlNode.nodeType === 1) { + parseTransformAttribute(xmlNode, el); + + extend(zrStyle, parseStyleAttribute(xmlNode)); + + if (!onlyInlineStyle) { + for (var svgAttrName in attributesMap) { + if (attributesMap.hasOwnProperty(svgAttrName)) { + var attrValue = xmlNode.getAttribute(svgAttrName); + if (attrValue != null) { + zrStyle[attributesMap[svgAttrName]] = attrValue; + } + } + } + } + } + + var elFillProp = isTextEl ? 'textFill' : 'fill'; + var elStrokeProp = isTextEl ? 'textStroke' : 'stroke'; + + el.style = el.style || new Style(); + var elStyle = el.style; + + zrStyle.fill != null && elStyle.set(elFillProp, getPaint(zrStyle.fill, defs)); + zrStyle.stroke != null && elStyle.set(elStrokeProp, getPaint(zrStyle.stroke, defs)); + + each$1([ + 'lineWidth', 'opacity', 'fillOpacity', 'strokeOpacity', 'miterLimit', 'fontSize' + ], function (propName) { + var elPropName = (propName === 'lineWidth' && isTextEl) ? 'textStrokeWidth' : propName; + zrStyle[propName] != null && elStyle.set(elPropName, parseFloat(zrStyle[propName])); + }); + + if (!zrStyle.textBaseline || zrStyle.textBaseline === 'auto') { + zrStyle.textBaseline = 'alphabetic'; + } + if (zrStyle.textBaseline === 'alphabetic') { + zrStyle.textBaseline = 'bottom'; + } + if (zrStyle.textAlign === 'start') { + zrStyle.textAlign = 'left'; + } + if (zrStyle.textAlign === 'end') { + zrStyle.textAlign = 'right'; + } + + each$1(['lineDashOffset', 'lineCap', 'lineJoin', + 'fontWeight', 'fontFamily', 'fontStyle', 'textAlign', 'textBaseline' + ], function (propName) { + zrStyle[propName] != null && elStyle.set(propName, zrStyle[propName]); + }); + + if (zrStyle.lineDash) { + el.style.lineDash = trim(zrStyle.lineDash).split(DILIMITER_REG); + } + + if (elStyle[elStrokeProp] && elStyle[elStrokeProp] !== 'none') { + // enable stroke + el[elStrokeProp] = true; + } + + el.__inheritedStyle = zrStyle; +} + + +var urlRegex = /url\(\s*#(.*?)\)/; +function getPaint(str, defs) { + // if (str === 'none') { + // return; + // } + var urlMatch = defs && str && str.match(urlRegex); + if (urlMatch) { + var url = trim(urlMatch[1]); + var def = defs[url]; + return def; + } + return str; +} + +var transformRegex = /(translate|scale|rotate|skewX|skewY|matrix)\(([\-\s0-9\.e,]*)\)/g; + +function parseTransformAttribute(xmlNode, node) { + var transform = xmlNode.getAttribute('transform'); + if (transform) { + transform = transform.replace(/,/g, ' '); + var m = null; + var transformOps = []; + transform.replace(transformRegex, function (str, type, value) { + transformOps.push(type, value); + }); + for (var i = transformOps.length - 1; i > 0; i -= 2) { + var value = transformOps[i]; + var type = transformOps[i - 1]; + m = m || create$1(); + switch (type) { + case 'translate': + value = trim(value).split(DILIMITER_REG); + translate(m, m, [parseFloat(value[0]), parseFloat(value[1] || 0)]); + break; + case 'scale': + value = trim(value).split(DILIMITER_REG); + scale$1(m, m, [parseFloat(value[0]), parseFloat(value[1] || value[0])]); + break; + case 'rotate': + value = trim(value).split(DILIMITER_REG); + rotate(m, m, parseFloat(value[0])); + break; + case 'skew': + value = trim(value).split(DILIMITER_REG); + console.warn('Skew transform is not supported yet'); + break; + case 'matrix': + var value = trim(value).split(DILIMITER_REG); + m[0] = parseFloat(value[0]); + m[1] = parseFloat(value[1]); + m[2] = parseFloat(value[2]); + m[3] = parseFloat(value[3]); + m[4] = parseFloat(value[4]); + m[5] = parseFloat(value[5]); + break; + } + } + node.setLocalTransform(m); + } +} + +// Value may contain space. +var styleRegex = /([^\s:;]+)\s*:\s*([^:;]+)/g; +function parseStyleAttribute(xmlNode) { + var style = xmlNode.getAttribute('style'); + var result = {}; + + if (!style) { + return result; + } + + var styleList = {}; + styleRegex.lastIndex = 0; + var styleRegResult; + while ((styleRegResult = styleRegex.exec(style)) != null) { + styleList[styleRegResult[1]] = styleRegResult[2]; + } + + for (var svgAttrName in attributesMap) { + if (attributesMap.hasOwnProperty(svgAttrName) && styleList[svgAttrName] != null) { + result[attributesMap[svgAttrName]] = styleList[svgAttrName]; + } + } + + return result; +} + +/** + * @param {Array.} viewBoxRect + * @param {number} width + * @param {number} height + * @return {Object} {scale, position} + */ +function makeViewBoxTransform(viewBoxRect, width, height) { + var scaleX = width / viewBoxRect.width; + var scaleY = height / viewBoxRect.height; + var scale = Math.min(scaleX, scaleY); + // preserveAspectRatio 'xMidYMid' + var viewBoxScale = [scale, scale]; + var viewBoxPosition = [ + -(viewBoxRect.x + viewBoxRect.width / 2) * scale + width / 2, + -(viewBoxRect.y + viewBoxRect.height / 2) * scale + height / 2 + ]; + + return { + scale: viewBoxScale, + position: viewBoxPosition + }; +} + +/** + * @param {string|XMLElement} xml + * @param {Object} [opt] + * @param {number} [opt.width] Default width if svg width not specified or is a percent value. + * @param {number} [opt.height] Default height if svg height not specified or is a percent value. + * @param {boolean} [opt.ignoreViewBox] + * @param {boolean} [opt.ignoreRootClip] + * @return {Object} result: + * { + * root: Group, The root of the the result tree of zrender shapes, + * width: number, the viewport width of the SVG, + * height: number, the viewport height of the SVG, + * viewBoxRect: {x, y, width, height}, the declared viewBox rect of the SVG, if exists, + * viewBoxTransform: the {scale, position} calculated by viewBox and viewport, is exists. + * } + */ +function parseSVG(xml, opt) { + var parser = new SVGParser(); + return parser.parse(xml, opt); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var storage = createHashMap(); + +// For minimize the code size of common echarts package, +// do not put too much logic in this module. + +var mapDataStorage = { + + // The format of record: see `echarts.registerMap`. + // Compatible with previous `echarts.registerMap`. + registerMap: function (mapName, rawGeoJson, rawSpecialAreas) { + + var records; + + if (isArray(rawGeoJson)) { + records = rawGeoJson; + } + else if (rawGeoJson.svg) { + records = [{ + type: 'svg', + source: rawGeoJson.svg, + specialAreas: rawGeoJson.specialAreas + }]; + } + else { + // Backward compatibility. + if (rawGeoJson.geoJson && !rawGeoJson.features) { + rawSpecialAreas = rawGeoJson.specialAreas; + rawGeoJson = rawGeoJson.geoJson; + } + records = [{ + type: 'geoJSON', + source: rawGeoJson, + specialAreas: rawSpecialAreas + }]; + } + + each$1(records, function (record) { + var type = record.type; + type === 'geoJson' && (type = record.type = 'geoJSON'); + + var parse = parsers[type]; + + if (__DEV__) { + assert$1(parse, 'Illegal map type: ' + type); + } + + parse(record); + }); + + return storage.set(mapName, records); + }, + + retrieveMap: function (mapName) { + return storage.get(mapName); + } + +}; + +var parsers = { + + geoJSON: function (record) { + var source = record.source; + record.geoJSON = !isString(source) + ? source + : (typeof JSON !== 'undefined' && JSON.parse) + ? JSON.parse(source) + : (new Function('return (' + source + ');'))(); + }, + + // Only perform parse to XML object here, which might be time + // consiming for large SVG. + // Although convert XML to zrender element is also time consiming, + // if we do it here, the clone of zrender elements has to be + // required. So we do it once for each geo instance, util real + // performance issues call for optimizing it. + svg: function (record) { + record.svgXML = parseXML(record.source); + } + +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ +var assert = assert$1; +var each = each$1; +var isFunction = isFunction$1; +var isObject = isObject$1; +var parseClassType = ComponentModel.parseClassType; + +var version = '4.3.0'; + +var dependencies = { + zrender: '4.1.0' +}; + +var TEST_FRAME_REMAIN_TIME = 1; + +var PRIORITY_PROCESSOR_FILTER = 1000; +var PRIORITY_PROCESSOR_STATISTIC = 5000; + +var PRIORITY_VISUAL_LAYOUT = 1000; +var PRIORITY_VISUAL_PROGRESSIVE_LAYOUT = 1100; +var PRIORITY_VISUAL_GLOBAL = 2000; +var PRIORITY_VISUAL_CHART = 3000; +var PRIORITY_VISUAL_POST_CHART_LAYOUT = 3500; +var PRIORITY_VISUAL_COMPONENT = 4000; +// FIXME +// necessary? +var PRIORITY_VISUAL_BRUSH = 5000; + +var PRIORITY = { + PROCESSOR: { + FILTER: PRIORITY_PROCESSOR_FILTER, + STATISTIC: PRIORITY_PROCESSOR_STATISTIC + }, + VISUAL: { + LAYOUT: PRIORITY_VISUAL_LAYOUT, + PROGRESSIVE_LAYOUT: PRIORITY_VISUAL_PROGRESSIVE_LAYOUT, + GLOBAL: PRIORITY_VISUAL_GLOBAL, + CHART: PRIORITY_VISUAL_CHART, + POST_CHART_LAYOUT: PRIORITY_VISUAL_POST_CHART_LAYOUT, + COMPONENT: PRIORITY_VISUAL_COMPONENT, + BRUSH: PRIORITY_VISUAL_BRUSH + } +}; + +// Main process have three entries: `setOption`, `dispatchAction` and `resize`, +// where they must not be invoked nestedly, except the only case: invoke +// dispatchAction with updateMethod "none" in main process. +// This flag is used to carry out this rule. +// All events will be triggered out side main process (i.e. when !this[IN_MAIN_PROCESS]). +var IN_MAIN_PROCESS = '__flagInMainProcess'; +var OPTION_UPDATED = '__optionUpdated'; +var ACTION_REG = /^[a-zA-Z0-9_]+$/; + + +function createRegisterEventWithLowercaseName(method) { + return function (eventName, handler, context) { + // Event name is all lowercase + eventName = eventName && eventName.toLowerCase(); + Eventful.prototype[method].call(this, eventName, handler, context); + }; +} + +/** + * @module echarts~MessageCenter + */ +function MessageCenter() { + Eventful.call(this); +} +MessageCenter.prototype.on = createRegisterEventWithLowercaseName('on'); +MessageCenter.prototype.off = createRegisterEventWithLowercaseName('off'); +MessageCenter.prototype.one = createRegisterEventWithLowercaseName('one'); +mixin(MessageCenter, Eventful); + +/** + * @module echarts~ECharts + */ +function ECharts(dom, theme$$1, opts) { + opts = opts || {}; + + // Get theme by name + if (typeof theme$$1 === 'string') { + theme$$1 = themeStorage[theme$$1]; + } + + /** + * @type {string} + */ + this.id; + + /** + * Group id + * @type {string} + */ + this.group; + + /** + * @type {HTMLElement} + * @private + */ + this._dom = dom; + + var defaultRenderer = 'canvas'; + if (__DEV__) { + defaultRenderer = ( + typeof window === 'undefined' ? global : window + ).__ECHARTS__DEFAULT__RENDERER__ || defaultRenderer; + } + + /** + * @type {module:zrender/ZRender} + * @private + */ + var zr = this._zr = init$1(dom, { + renderer: opts.renderer || defaultRenderer, + devicePixelRatio: opts.devicePixelRatio, + width: opts.width, + height: opts.height + }); + + /** + * Expect 60 fps. + * @type {Function} + * @private + */ + this._throttledZrFlush = throttle(bind(zr.flush, zr), 17); + + var theme$$1 = clone(theme$$1); + theme$$1 && backwardCompat(theme$$1, true); + /** + * @type {Object} + * @private + */ + this._theme = theme$$1; + + /** + * @type {Array.} + * @private + */ + this._chartsViews = []; + + /** + * @type {Object.} + * @private + */ + this._chartsMap = {}; + + /** + * @type {Array.} + * @private + */ + this._componentsViews = []; + + /** + * @type {Object.} + * @private + */ + this._componentsMap = {}; + + /** + * @type {module:echarts/CoordinateSystem} + * @private + */ + this._coordSysMgr = new CoordinateSystemManager(); + + /** + * @type {module:echarts/ExtensionAPI} + * @private + */ + var api = this._api = createExtensionAPI(this); + + // Sort on demand + function prioritySortFunc(a, b) { + return a.__prio - b.__prio; + } + sort(visualFuncs, prioritySortFunc); + sort(dataProcessorFuncs, prioritySortFunc); + + /** + * @type {module:echarts/stream/Scheduler} + */ + this._scheduler = new Scheduler(this, api, dataProcessorFuncs, visualFuncs); + + Eventful.call(this, this._ecEventProcessor = new EventProcessor()); + + /** + * @type {module:echarts~MessageCenter} + * @private + */ + this._messageCenter = new MessageCenter(); + + // Init mouse events + this._initEvents(); + + // In case some people write `window.onresize = chart.resize` + this.resize = bind(this.resize, this); + + // Can't dispatch action during rendering procedure + this._pendingActions = []; + + zr.animation.on('frame', this._onframe, this); + + bindRenderedEvent(zr, this); + + // ECharts instance can be used as value. + setAsPrimitive(this); +} + +var echartsProto = ECharts.prototype; + +echartsProto._onframe = function () { + if (this._disposed) { + return; + } + + var scheduler = this._scheduler; + + // Lazy update + if (this[OPTION_UPDATED]) { + var silent = this[OPTION_UPDATED].silent; + + this[IN_MAIN_PROCESS] = true; + + prepare(this); + updateMethods.update.call(this); + + this[IN_MAIN_PROCESS] = false; + + this[OPTION_UPDATED] = false; + + flushPendingActions.call(this, silent); + + triggerUpdatedEvent.call(this, silent); + } + // Avoid do both lazy update and progress in one frame. + else if (scheduler.unfinished) { + // Stream progress. + var remainTime = TEST_FRAME_REMAIN_TIME; + var ecModel = this._model; + var api = this._api; + scheduler.unfinished = false; + do { + var startTime = +new Date(); + + scheduler.performSeriesTasks(ecModel); + + // Currently dataProcessorFuncs do not check threshold. + scheduler.performDataProcessorTasks(ecModel); + + updateStreamModes(this, ecModel); + + // Do not update coordinate system here. Because that coord system update in + // each frame is not a good user experience. So we follow the rule that + // the extent of the coordinate system is determin in the first frame (the + // frame is executed immedietely after task reset. + // this._coordSysMgr.update(ecModel, api); + + // console.log('--- ec frame visual ---', remainTime); + scheduler.performVisualTasks(ecModel); + + renderSeries(this, this._model, api, 'remain'); + + remainTime -= (+new Date() - startTime); + } + while (remainTime > 0 && scheduler.unfinished); + + // Call flush explicitly for trigger finished event. + if (!scheduler.unfinished) { + this._zr.flush(); + } + // Else, zr flushing be ensue within the same frame, + // because zr flushing is after onframe event. + } +}; + +/** + * @return {HTMLElement} + */ +echartsProto.getDom = function () { + return this._dom; +}; + +/** + * @return {module:zrender~ZRender} + */ +echartsProto.getZr = function () { + return this._zr; +}; + +/** + * Usage: + * chart.setOption(option, notMerge, lazyUpdate); + * chart.setOption(option, { + * notMerge: ..., + * lazyUpdate: ..., + * silent: ... + * }); + * + * @param {Object} option + * @param {Object|boolean} [opts] opts or notMerge. + * @param {boolean} [opts.notMerge=false] + * @param {boolean} [opts.lazyUpdate=false] Useful when setOption frequently. + */ +echartsProto.setOption = function (option, notMerge, lazyUpdate) { + if (__DEV__) { + assert(!this[IN_MAIN_PROCESS], '`setOption` should not be called during main process.'); + } + + var silent; + if (isObject(notMerge)) { + lazyUpdate = notMerge.lazyUpdate; + silent = notMerge.silent; + notMerge = notMerge.notMerge; + } + + this[IN_MAIN_PROCESS] = true; + + if (!this._model || notMerge) { + var optionManager = new OptionManager(this._api); + var theme$$1 = this._theme; + var ecModel = this._model = new GlobalModel(); + ecModel.scheduler = this._scheduler; + ecModel.init(null, null, theme$$1, optionManager); + } + + this._model.setOption(option, optionPreprocessorFuncs); + + if (lazyUpdate) { + this[OPTION_UPDATED] = {silent: silent}; + this[IN_MAIN_PROCESS] = false; + } + else { + prepare(this); + + updateMethods.update.call(this); + + // Ensure zr refresh sychronously, and then pixel in canvas can be + // fetched after `setOption`. + this._zr.flush(); + + this[OPTION_UPDATED] = false; + this[IN_MAIN_PROCESS] = false; + + flushPendingActions.call(this, silent); + triggerUpdatedEvent.call(this, silent); + } +}; + +/** + * @DEPRECATED + */ +echartsProto.setTheme = function () { + console.error('ECharts#setTheme() is DEPRECATED in ECharts 3.0'); +}; + +/** + * @return {module:echarts/model/Global} + */ +echartsProto.getModel = function () { + return this._model; +}; + +/** + * @return {Object} + */ +echartsProto.getOption = function () { + return this._model && this._model.getOption(); +}; + +/** + * @return {number} + */ +echartsProto.getWidth = function () { + return this._zr.getWidth(); +}; + +/** + * @return {number} + */ +echartsProto.getHeight = function () { + return this._zr.getHeight(); +}; + +/** + * @return {number} + */ +echartsProto.getDevicePixelRatio = function () { + return this._zr.painter.dpr || window.devicePixelRatio || 1; +}; + +/** + * Get canvas which has all thing rendered + * @param {Object} opts + * @param {string} [opts.backgroundColor] + * @return {string} + */ +echartsProto.getRenderedCanvas = function (opts) { + if (!env$1.canvasSupported) { + return; + } + opts = opts || {}; + opts.pixelRatio = opts.pixelRatio || 1; + opts.backgroundColor = opts.backgroundColor + || this._model.get('backgroundColor'); + var zr = this._zr; + // var list = zr.storage.getDisplayList(); + // Stop animations + // Never works before in init animation, so remove it. + // zrUtil.each(list, function (el) { + // el.stopAnimation(true); + // }); + return zr.painter.getRenderedCanvas(opts); +}; + +/** + * Get svg data url + * @return {string} + */ +echartsProto.getSvgDataUrl = function () { + if (!env$1.svgSupported) { + return; + } + + var zr = this._zr; + var list = zr.storage.getDisplayList(); + // Stop animations + each$1(list, function (el) { + el.stopAnimation(true); + }); + + return zr.painter.pathToDataUrl(); +}; + +/** + * @return {string} + * @param {Object} opts + * @param {string} [opts.type='png'] + * @param {string} [opts.pixelRatio=1] + * @param {string} [opts.backgroundColor] + * @param {string} [opts.excludeComponents] + */ +echartsProto.getDataURL = function (opts) { + opts = opts || {}; + var excludeComponents = opts.excludeComponents; + var ecModel = this._model; + var excludesComponentViews = []; + var self = this; + + each(excludeComponents, function (componentType) { + ecModel.eachComponent({ + mainType: componentType + }, function (component) { + var view = self._componentsMap[component.__viewId]; + if (!view.group.ignore) { + excludesComponentViews.push(view); + view.group.ignore = true; + } + }); + }); + + var url = this._zr.painter.getType() === 'svg' + ? this.getSvgDataUrl() + : this.getRenderedCanvas(opts).toDataURL( + 'image/' + (opts && opts.type || 'png') + ); + + each(excludesComponentViews, function (view) { + view.group.ignore = false; + }); + + return url; +}; + + +/** + * @return {string} + * @param {Object} opts + * @param {string} [opts.type='png'] + * @param {string} [opts.pixelRatio=1] + * @param {string} [opts.backgroundColor] + */ +echartsProto.getConnectedDataURL = function (opts) { + if (!env$1.canvasSupported) { + return; + } + var groupId = this.group; + var mathMin = Math.min; + var mathMax = Math.max; + var MAX_NUMBER = Infinity; + if (connectedGroups[groupId]) { + var left = MAX_NUMBER; + var top = MAX_NUMBER; + var right = -MAX_NUMBER; + var bottom = -MAX_NUMBER; + var canvasList = []; + var dpr = (opts && opts.pixelRatio) || 1; + + each$1(instances, function (chart, id) { + if (chart.group === groupId) { + var canvas = chart.getRenderedCanvas( + clone(opts) + ); + var boundingRect = chart.getDom().getBoundingClientRect(); + left = mathMin(boundingRect.left, left); + top = mathMin(boundingRect.top, top); + right = mathMax(boundingRect.right, right); + bottom = mathMax(boundingRect.bottom, bottom); + canvasList.push({ + dom: canvas, + left: boundingRect.left, + top: boundingRect.top + }); + } + }); + + left *= dpr; + top *= dpr; + right *= dpr; + bottom *= dpr; + var width = right - left; + var height = bottom - top; + var targetCanvas = createCanvas(); + targetCanvas.width = width; + targetCanvas.height = height; + var zr = init$1(targetCanvas); + + // Background between the charts + if (opts.connectedBackgroundColor) { + zr.add(new Rect({ + shape: { + x: 0, + y: 0, + width: width, + height: height + }, + style: { + fill: opts.connectedBackgroundColor + } + })); + } + + each(canvasList, function (item) { + var img = new ZImage({ + style: { + x: item.left * dpr - left, + y: item.top * dpr - top, + image: item.dom + } + }); + zr.add(img); + }); + zr.refreshImmediately(); + + return targetCanvas.toDataURL('image/' + (opts && opts.type || 'png')); + } + else { + return this.getDataURL(opts); + } +}; + +/** + * Convert from logical coordinate system to pixel coordinate system. + * See CoordinateSystem#convertToPixel. + * @param {string|Object} finder + * If string, e.g., 'geo', means {geoIndex: 0}. + * If Object, could contain some of these properties below: + * { + * seriesIndex / seriesId / seriesName, + * geoIndex / geoId, geoName, + * bmapIndex / bmapId / bmapName, + * xAxisIndex / xAxisId / xAxisName, + * yAxisIndex / yAxisId / yAxisName, + * gridIndex / gridId / gridName, + * ... (can be extended) + * } + * @param {Array|number} value + * @return {Array|number} result + */ +echartsProto.convertToPixel = curry(doConvertPixel, 'convertToPixel'); + +/** + * Convert from pixel coordinate system to logical coordinate system. + * See CoordinateSystem#convertFromPixel. + * @param {string|Object} finder + * If string, e.g., 'geo', means {geoIndex: 0}. + * If Object, could contain some of these properties below: + * { + * seriesIndex / seriesId / seriesName, + * geoIndex / geoId / geoName, + * bmapIndex / bmapId / bmapName, + * xAxisIndex / xAxisId / xAxisName, + * yAxisIndex / yAxisId / yAxisName + * gridIndex / gridId / gridName, + * ... (can be extended) + * } + * @param {Array|number} value + * @return {Array|number} result + */ +echartsProto.convertFromPixel = curry(doConvertPixel, 'convertFromPixel'); + +function doConvertPixel(methodName, finder, value) { + var ecModel = this._model; + var coordSysList = this._coordSysMgr.getCoordinateSystems(); + var result; + + finder = parseFinder(ecModel, finder); + + for (var i = 0; i < coordSysList.length; i++) { + var coordSys = coordSysList[i]; + if (coordSys[methodName] + && (result = coordSys[methodName](ecModel, finder, value)) != null + ) { + return result; + } + } + + if (__DEV__) { + console.warn( + 'No coordinate system that supports ' + methodName + ' found by the given finder.' + ); + } +} + +/** + * Is the specified coordinate systems or components contain the given pixel point. + * @param {string|Object} finder + * If string, e.g., 'geo', means {geoIndex: 0}. + * If Object, could contain some of these properties below: + * { + * seriesIndex / seriesId / seriesName, + * geoIndex / geoId / geoName, + * bmapIndex / bmapId / bmapName, + * xAxisIndex / xAxisId / xAxisName, + * yAxisIndex / yAxisId / yAxisName, + * gridIndex / gridId / gridName, + * ... (can be extended) + * } + * @param {Array|number} value + * @return {boolean} result + */ +echartsProto.containPixel = function (finder, value) { + var ecModel = this._model; + var result; + + finder = parseFinder(ecModel, finder); + + each$1(finder, function (models, key) { + key.indexOf('Models') >= 0 && each$1(models, function (model) { + var coordSys = model.coordinateSystem; + if (coordSys && coordSys.containPoint) { + result |= !!coordSys.containPoint(value); + } + else if (key === 'seriesModels') { + var view = this._chartsMap[model.__viewId]; + if (view && view.containPoint) { + result |= view.containPoint(value, model); + } + else { + if (__DEV__) { + console.warn(key + ': ' + (view + ? 'The found component do not support containPoint.' + : 'No view mapping to the found component.' + )); + } + } + } + else { + if (__DEV__) { + console.warn(key + ': containPoint is not supported'); + } + } + }, this); + }, this); + + return !!result; +}; + +/** + * Get visual from series or data. + * @param {string|Object} finder + * If string, e.g., 'series', means {seriesIndex: 0}. + * If Object, could contain some of these properties below: + * { + * seriesIndex / seriesId / seriesName, + * dataIndex / dataIndexInside + * } + * If dataIndex is not specified, series visual will be fetched, + * but not data item visual. + * If all of seriesIndex, seriesId, seriesName are not specified, + * visual will be fetched from first series. + * @param {string} visualType 'color', 'symbol', 'symbolSize' + */ +echartsProto.getVisual = function (finder, visualType) { + var ecModel = this._model; + + finder = parseFinder(ecModel, finder, {defaultMainType: 'series'}); + + var seriesModel = finder.seriesModel; + + if (__DEV__) { + if (!seriesModel) { + console.warn('There is no specified seires model'); + } + } + + var data = seriesModel.getData(); + + var dataIndexInside = finder.hasOwnProperty('dataIndexInside') + ? finder.dataIndexInside + : finder.hasOwnProperty('dataIndex') + ? data.indexOfRawIndex(finder.dataIndex) + : null; + + return dataIndexInside != null + ? data.getItemVisual(dataIndexInside, visualType) + : data.getVisual(visualType); +}; + +/** + * Get view of corresponding component model + * @param {module:echarts/model/Component} componentModel + * @return {module:echarts/view/Component} + */ +echartsProto.getViewOfComponentModel = function (componentModel) { + return this._componentsMap[componentModel.__viewId]; +}; + +/** + * Get view of corresponding series model + * @param {module:echarts/model/Series} seriesModel + * @return {module:echarts/view/Chart} + */ +echartsProto.getViewOfSeriesModel = function (seriesModel) { + return this._chartsMap[seriesModel.__viewId]; +}; + +var updateMethods = { + + prepareAndUpdate: function (payload) { + prepare(this); + updateMethods.update.call(this, payload); + }, + + /** + * @param {Object} payload + * @private + */ + update: function (payload) { + // console.profile && console.profile('update'); + + var ecModel = this._model; + var api = this._api; + var zr = this._zr; + var coordSysMgr = this._coordSysMgr; + var scheduler = this._scheduler; + + // update before setOption + if (!ecModel) { + return; + } + + scheduler.restoreData(ecModel, payload); + + scheduler.performSeriesTasks(ecModel); + + // TODO + // Save total ecModel here for undo/redo (after restoring data and before processing data). + // Undo (restoration of total ecModel) can be carried out in 'action' or outside API call. + + // Create new coordinate system each update + // In LineView may save the old coordinate system and use it to get the orignal point + coordSysMgr.create(ecModel, api); + + scheduler.performDataProcessorTasks(ecModel, payload); + + // Current stream render is not supported in data process. So we can update + // stream modes after data processing, where the filtered data is used to + // deteming whether use progressive rendering. + updateStreamModes(this, ecModel); + + // We update stream modes before coordinate system updated, then the modes info + // can be fetched when coord sys updating (consider the barGrid extent fix). But + // the drawback is the full coord info can not be fetched. Fortunately this full + // coord is not requied in stream mode updater currently. + coordSysMgr.update(ecModel, api); + + clearColorPalette(ecModel); + scheduler.performVisualTasks(ecModel, payload); + + render(this, ecModel, api, payload); + + // Set background + var backgroundColor = ecModel.get('backgroundColor') || 'transparent'; + + // In IE8 + if (!env$1.canvasSupported) { + var colorArr = parse(backgroundColor); + backgroundColor = stringify(colorArr, 'rgb'); + if (colorArr[3] === 0) { + backgroundColor = 'transparent'; + } + } + else { + zr.setBackgroundColor(backgroundColor); + } + + performPostUpdateFuncs(ecModel, api); + + // console.profile && console.profileEnd('update'); + }, + + /** + * @param {Object} payload + * @private + */ + updateTransform: function (payload) { + var ecModel = this._model; + var ecIns = this; + var api = this._api; + + // update before setOption + if (!ecModel) { + return; + } + + // ChartView.markUpdateMethod(payload, 'updateTransform'); + + var componentDirtyList = []; + ecModel.eachComponent(function (componentType, componentModel) { + var componentView = ecIns.getViewOfComponentModel(componentModel); + if (componentView && componentView.__alive) { + if (componentView.updateTransform) { + var result = componentView.updateTransform(componentModel, ecModel, api, payload); + result && result.update && componentDirtyList.push(componentView); + } + else { + componentDirtyList.push(componentView); + } + } + }); + + var seriesDirtyMap = createHashMap(); + ecModel.eachSeries(function (seriesModel) { + var chartView = ecIns._chartsMap[seriesModel.__viewId]; + if (chartView.updateTransform) { + var result = chartView.updateTransform(seriesModel, ecModel, api, payload); + result && result.update && seriesDirtyMap.set(seriesModel.uid, 1); + } + else { + seriesDirtyMap.set(seriesModel.uid, 1); + } + }); + + clearColorPalette(ecModel); + // Keep pipe to the exist pipeline because it depends on the render task of the full pipeline. + // this._scheduler.performVisualTasks(ecModel, payload, 'layout', true); + this._scheduler.performVisualTasks( + ecModel, payload, {setDirty: true, dirtyMap: seriesDirtyMap} + ); + + // Currently, not call render of components. Geo render cost a lot. + // renderComponents(ecIns, ecModel, api, payload, componentDirtyList); + renderSeries(ecIns, ecModel, api, payload, seriesDirtyMap); + + performPostUpdateFuncs(ecModel, this._api); + }, + + /** + * @param {Object} payload + * @private + */ + updateView: function (payload) { + var ecModel = this._model; + + // update before setOption + if (!ecModel) { + return; + } + + Chart.markUpdateMethod(payload, 'updateView'); + + clearColorPalette(ecModel); + + // Keep pipe to the exist pipeline because it depends on the render task of the full pipeline. + this._scheduler.performVisualTasks(ecModel, payload, {setDirty: true}); + + render(this, this._model, this._api, payload); + + performPostUpdateFuncs(ecModel, this._api); + }, + + /** + * @param {Object} payload + * @private + */ + updateVisual: function (payload) { + updateMethods.update.call(this, payload); + + // var ecModel = this._model; + + // // update before setOption + // if (!ecModel) { + // return; + // } + + // ChartView.markUpdateMethod(payload, 'updateVisual'); + + // clearColorPalette(ecModel); + + // // Keep pipe to the exist pipeline because it depends on the render task of the full pipeline. + // this._scheduler.performVisualTasks(ecModel, payload, {visualType: 'visual', setDirty: true}); + + // render(this, this._model, this._api, payload); + + // performPostUpdateFuncs(ecModel, this._api); + }, + + /** + * @param {Object} payload + * @private + */ + updateLayout: function (payload) { + updateMethods.update.call(this, payload); + + // var ecModel = this._model; + + // // update before setOption + // if (!ecModel) { + // return; + // } + + // ChartView.markUpdateMethod(payload, 'updateLayout'); + + // // Keep pipe to the exist pipeline because it depends on the render task of the full pipeline. + // // this._scheduler.performVisualTasks(ecModel, payload, 'layout', true); + // this._scheduler.performVisualTasks(ecModel, payload, {setDirty: true}); + + // render(this, this._model, this._api, payload); + + // performPostUpdateFuncs(ecModel, this._api); + } +}; + +function prepare(ecIns) { + var ecModel = ecIns._model; + var scheduler = ecIns._scheduler; + + scheduler.restorePipelines(ecModel); + + scheduler.prepareStageTasks(); + + prepareView(ecIns, 'component', ecModel, scheduler); + + prepareView(ecIns, 'chart', ecModel, scheduler); + + scheduler.plan(); +} + +/** + * @private + */ +function updateDirectly(ecIns, method, payload, mainType, subType) { + var ecModel = ecIns._model; + + // broadcast + if (!mainType) { + // FIXME + // Chart will not be update directly here, except set dirty. + // But there is no such scenario now. + each(ecIns._componentsViews.concat(ecIns._chartsViews), callView); + return; + } + + var query = {}; + query[mainType + 'Id'] = payload[mainType + 'Id']; + query[mainType + 'Index'] = payload[mainType + 'Index']; + query[mainType + 'Name'] = payload[mainType + 'Name']; + + var condition = {mainType: mainType, query: query}; + subType && (condition.subType = subType); // subType may be '' by parseClassType; + + var excludeSeriesId = payload.excludeSeriesId; + if (excludeSeriesId != null) { + excludeSeriesId = createHashMap(normalizeToArray(excludeSeriesId)); + } + + // If dispatchAction before setOption, do nothing. + ecModel && ecModel.eachComponent(condition, function (model) { + if (!excludeSeriesId || excludeSeriesId.get(model.id) == null) { + callView(ecIns[ + mainType === 'series' ? '_chartsMap' : '_componentsMap' + ][model.__viewId]); + } + }, ecIns); + + function callView(view) { + view && view.__alive && view[method] && view[method]( + view.__model, ecModel, ecIns._api, payload + ); + } +} + +/** + * Resize the chart + * @param {Object} opts + * @param {number} [opts.width] Can be 'auto' (the same as null/undefined) + * @param {number} [opts.height] Can be 'auto' (the same as null/undefined) + * @param {boolean} [opts.silent=false] + */ +echartsProto.resize = function (opts) { + if (__DEV__) { + assert(!this[IN_MAIN_PROCESS], '`resize` should not be called during main process.'); + } + + this._zr.resize(opts); + + var ecModel = this._model; + + // Resize loading effect + this._loadingFX && this._loadingFX.resize(); + + if (!ecModel) { + return; + } + + var optionChanged = ecModel.resetOption('media'); + + var silent = opts && opts.silent; + + this[IN_MAIN_PROCESS] = true; + + optionChanged && prepare(this); + updateMethods.update.call(this); + + this[IN_MAIN_PROCESS] = false; + + flushPendingActions.call(this, silent); + + triggerUpdatedEvent.call(this, silent); +}; + +function updateStreamModes(ecIns, ecModel) { + var chartsMap = ecIns._chartsMap; + var scheduler = ecIns._scheduler; + ecModel.eachSeries(function (seriesModel) { + scheduler.updateStreamModes(seriesModel, chartsMap[seriesModel.__viewId]); + }); +} + +/** + * Show loading effect + * @param {string} [name='default'] + * @param {Object} [cfg] + */ +echartsProto.showLoading = function (name, cfg) { + if (isObject(name)) { + cfg = name; + name = ''; + } + name = name || 'default'; + + this.hideLoading(); + if (!loadingEffects[name]) { + if (__DEV__) { + console.warn('Loading effects ' + name + ' not exists.'); + } + return; + } + var el = loadingEffects[name](this._api, cfg); + var zr = this._zr; + this._loadingFX = el; + + zr.add(el); +}; + +/** + * Hide loading effect + */ +echartsProto.hideLoading = function () { + this._loadingFX && this._zr.remove(this._loadingFX); + this._loadingFX = null; +}; + +/** + * @param {Object} eventObj + * @return {Object} + */ +echartsProto.makeActionFromEvent = function (eventObj) { + var payload = extend({}, eventObj); + payload.type = eventActionMap[eventObj.type]; + return payload; +}; + +/** + * @pubilc + * @param {Object} payload + * @param {string} [payload.type] Action type + * @param {Object|boolean} [opt] If pass boolean, means opt.silent + * @param {boolean} [opt.silent=false] Whether trigger events. + * @param {boolean} [opt.flush=undefined] + * true: Flush immediately, and then pixel in canvas can be fetched + * immediately. Caution: it might affect performance. + * false: Not not flush. + * undefined: Auto decide whether perform flush. + */ +echartsProto.dispatchAction = function (payload, opt) { + if (!isObject(opt)) { + opt = {silent: !!opt}; + } + + if (!actions[payload.type]) { + return; + } + + // Avoid dispatch action before setOption. Especially in `connect`. + if (!this._model) { + return; + } + + // May dispatchAction in rendering procedure + if (this[IN_MAIN_PROCESS]) { + this._pendingActions.push(payload); + return; + } + + doDispatchAction.call(this, payload, opt.silent); + + if (opt.flush) { + this._zr.flush(true); + } + else if (opt.flush !== false && env$1.browser.weChat) { + // In WeChat embeded browser, `requestAnimationFrame` and `setInterval` + // hang when sliding page (on touch event), which cause that zr does not + // refresh util user interaction finished, which is not expected. + // But `dispatchAction` may be called too frequently when pan on touch + // screen, which impacts performance if do not throttle them. + this._throttledZrFlush(); + } + + flushPendingActions.call(this, opt.silent); + + triggerUpdatedEvent.call(this, opt.silent); +}; + +function doDispatchAction(payload, silent) { + var payloadType = payload.type; + var escapeConnect = payload.escapeConnect; + var actionWrap = actions[payloadType]; + var actionInfo = actionWrap.actionInfo; + + var cptType = (actionInfo.update || 'update').split(':'); + var updateMethod = cptType.pop(); + cptType = cptType[0] != null && parseClassType(cptType[0]); + + this[IN_MAIN_PROCESS] = true; + + var payloads = [payload]; + var batched = false; + // Batch action + if (payload.batch) { + batched = true; + payloads = map(payload.batch, function (item) { + item = defaults(extend({}, item), payload); + item.batch = null; + return item; + }); + } + + var eventObjBatch = []; + var eventObj; + var isHighDown = payloadType === 'highlight' || payloadType === 'downplay'; + + each(payloads, function (batchItem) { + // Action can specify the event by return it. + eventObj = actionWrap.action(batchItem, this._model, this._api); + // Emit event outside + eventObj = eventObj || extend({}, batchItem); + // Convert type to eventType + eventObj.type = actionInfo.event || eventObj.type; + eventObjBatch.push(eventObj); + + // light update does not perform data process, layout and visual. + if (isHighDown) { + // method, payload, mainType, subType + updateDirectly(this, updateMethod, batchItem, 'series'); + } + else if (cptType) { + updateDirectly(this, updateMethod, batchItem, cptType.main, cptType.sub); + } + }, this); + + if (updateMethod !== 'none' && !isHighDown && !cptType) { + // Still dirty + if (this[OPTION_UPDATED]) { + // FIXME Pass payload ? + prepare(this); + updateMethods.update.call(this, payload); + this[OPTION_UPDATED] = false; + } + else { + updateMethods[updateMethod].call(this, payload); + } + } + + // Follow the rule of action batch + if (batched) { + eventObj = { + type: actionInfo.event || payloadType, + escapeConnect: escapeConnect, + batch: eventObjBatch + }; + } + else { + eventObj = eventObjBatch[0]; + } + + this[IN_MAIN_PROCESS] = false; + + !silent && this._messageCenter.trigger(eventObj.type, eventObj); +} + +function flushPendingActions(silent) { + var pendingActions = this._pendingActions; + while (pendingActions.length) { + var payload = pendingActions.shift(); + doDispatchAction.call(this, payload, silent); + } +} + +function triggerUpdatedEvent(silent) { + !silent && this.trigger('updated'); +} + +/** + * Event `rendered` is triggered when zr + * rendered. It is useful for realtime + * snapshot (reflect animation). + * + * Event `finished` is triggered when: + * (1) zrender rendering finished. + * (2) initial animation finished. + * (3) progressive rendering finished. + * (4) no pending action. + * (5) no delayed setOption needs to be processed. + */ +function bindRenderedEvent(zr, ecIns) { + zr.on('rendered', function () { + + ecIns.trigger('rendered'); + + // The `finished` event should not be triggered repeatly, + // so it should only be triggered when rendering indeed happend + // in zrender. (Consider the case that dipatchAction is keep + // triggering when mouse move). + if ( + // Although zr is dirty if initial animation is not finished + // and this checking is called on frame, we also check + // animation finished for robustness. + zr.animation.isFinished() + && !ecIns[OPTION_UPDATED] + && !ecIns._scheduler.unfinished + && !ecIns._pendingActions.length + ) { + ecIns.trigger('finished'); + } + }); +} + +/** + * @param {Object} params + * @param {number} params.seriesIndex + * @param {Array|TypedArray} params.data + */ +echartsProto.appendData = function (params) { + var seriesIndex = params.seriesIndex; + var ecModel = this.getModel(); + var seriesModel = ecModel.getSeriesByIndex(seriesIndex); + + if (__DEV__) { + assert(params.data && seriesModel); + } + + seriesModel.appendData(params); + + // Note: `appendData` does not support that update extent of coordinate + // system, util some scenario require that. In the expected usage of + // `appendData`, the initial extent of coordinate system should better + // be fixed by axis `min`/`max` setting or initial data, otherwise if + // the extent changed while `appendData`, the location of the painted + // graphic elements have to be changed, which make the usage of + // `appendData` meaningless. + + this._scheduler.unfinished = true; +}; + +/** + * Register event + * @method + */ +echartsProto.on = createRegisterEventWithLowercaseName('on'); +echartsProto.off = createRegisterEventWithLowercaseName('off'); +echartsProto.one = createRegisterEventWithLowercaseName('one'); + +/** + * Prepare view instances of charts and components + * @param {module:echarts/model/Global} ecModel + * @private + */ +function prepareView(ecIns, type, ecModel, scheduler) { + var isComponent = type === 'component'; + var viewList = isComponent ? ecIns._componentsViews : ecIns._chartsViews; + var viewMap = isComponent ? ecIns._componentsMap : ecIns._chartsMap; + var zr = ecIns._zr; + var api = ecIns._api; + + for (var i = 0; i < viewList.length; i++) { + viewList[i].__alive = false; + } + + isComponent + ? ecModel.eachComponent(function (componentType, model) { + componentType !== 'series' && doPrepare(model); + }) + : ecModel.eachSeries(doPrepare); + + function doPrepare(model) { + // Consider: id same and type changed. + var viewId = '_ec_' + model.id + '_' + model.type; + var view = viewMap[viewId]; + if (!view) { + var classType = parseClassType(model.type); + var Clazz = isComponent + ? Component$1.getClass(classType.main, classType.sub) + : Chart.getClass(classType.sub); + + if (__DEV__) { + assert(Clazz, classType.sub + ' does not exist.'); + } + + view = new Clazz(); + view.init(ecModel, api); + viewMap[viewId] = view; + viewList.push(view); + zr.add(view.group); + } + + model.__viewId = view.__id = viewId; + view.__alive = true; + view.__model = model; + view.group.__ecComponentInfo = { + mainType: model.mainType, + index: model.componentIndex + }; + !isComponent && scheduler.prepareView(view, model, ecModel, api); + } + + for (var i = 0; i < viewList.length;) { + var view = viewList[i]; + if (!view.__alive) { + !isComponent && view.renderTask.dispose(); + zr.remove(view.group); + view.dispose(ecModel, api); + viewList.splice(i, 1); + delete viewMap[view.__id]; + view.__id = view.group.__ecComponentInfo = null; + } + else { + i++; + } + } +} + +// /** +// * Encode visual infomation from data after data processing +// * +// * @param {module:echarts/model/Global} ecModel +// * @param {object} layout +// * @param {boolean} [layoutFilter] `true`: only layout, +// * `false`: only not layout, +// * `null`/`undefined`: all. +// * @param {string} taskBaseTag +// * @private +// */ +// function startVisualEncoding(ecIns, ecModel, api, payload, layoutFilter) { +// each(visualFuncs, function (visual, index) { +// var isLayout = visual.isLayout; +// if (layoutFilter == null +// || (layoutFilter === false && !isLayout) +// || (layoutFilter === true && isLayout) +// ) { +// visual.func(ecModel, api, payload); +// } +// }); +// } + +function clearColorPalette(ecModel) { + ecModel.clearColorPalette(); + ecModel.eachSeries(function (seriesModel) { + seriesModel.clearColorPalette(); + }); +} + +function render(ecIns, ecModel, api, payload) { + + renderComponents(ecIns, ecModel, api, payload); + + each(ecIns._chartsViews, function (chart) { + chart.__alive = false; + }); + + renderSeries(ecIns, ecModel, api, payload); + + // Remove groups of unrendered charts + each(ecIns._chartsViews, function (chart) { + if (!chart.__alive) { + chart.remove(ecModel, api); + } + }); +} + +function renderComponents(ecIns, ecModel, api, payload, dirtyList) { + each(dirtyList || ecIns._componentsViews, function (componentView) { + var componentModel = componentView.__model; + componentView.render(componentModel, ecModel, api, payload); + + updateZ(componentModel, componentView); + }); +} + +/** + * Render each chart and component + * @private + */ +function renderSeries(ecIns, ecModel, api, payload, dirtyMap) { + // Render all charts + var scheduler = ecIns._scheduler; + var unfinished; + ecModel.eachSeries(function (seriesModel) { + var chartView = ecIns._chartsMap[seriesModel.__viewId]; + chartView.__alive = true; + + var renderTask = chartView.renderTask; + scheduler.updatePayload(renderTask, payload); + + if (dirtyMap && dirtyMap.get(seriesModel.uid)) { + renderTask.dirty(); + } + + unfinished |= renderTask.perform(scheduler.getPerformArgs(renderTask)); + + chartView.group.silent = !!seriesModel.get('silent'); + + updateZ(seriesModel, chartView); + + updateBlend(seriesModel, chartView); + }); + scheduler.unfinished |= unfinished; + + // If use hover layer + updateHoverLayerStatus(ecIns, ecModel); + + // Add aria + aria(ecIns._zr.dom, ecModel); +} + +function performPostUpdateFuncs(ecModel, api) { + each(postUpdateFuncs, function (func) { + func(ecModel, api); + }); +} + + +var MOUSE_EVENT_NAMES = [ + 'click', 'dblclick', 'mouseover', 'mouseout', 'mousemove', + 'mousedown', 'mouseup', 'globalout', 'contextmenu' +]; + +/** + * @private + */ +echartsProto._initEvents = function () { + each(MOUSE_EVENT_NAMES, function (eveName) { + var handler = function (e) { + var ecModel = this.getModel(); + var el = e.target; + var params; + var isGlobalOut = eveName === 'globalout'; + + // no e.target when 'globalout'. + if (isGlobalOut) { + params = {}; + } + else if (el && el.dataIndex != null) { + var dataModel = el.dataModel || ecModel.getSeriesByIndex(el.seriesIndex); + params = dataModel && dataModel.getDataParams(el.dataIndex, el.dataType, el) || {}; + } + // If element has custom eventData of components + else if (el && el.eventData) { + params = extend({}, el.eventData); + } + + // Contract: if params prepared in mouse event, + // these properties must be specified: + // { + // componentType: string (component main type) + // componentIndex: number + // } + // Otherwise event query can not work. + + if (params) { + var componentType = params.componentType; + var componentIndex = params.componentIndex; + // Special handling for historic reason: when trigger by + // markLine/markPoint/markArea, the componentType is + // 'markLine'/'markPoint'/'markArea', but we should better + // enable them to be queried by seriesIndex, since their + // option is set in each series. + if (componentType === 'markLine' + || componentType === 'markPoint' + || componentType === 'markArea' + ) { + componentType = 'series'; + componentIndex = params.seriesIndex; + } + var model = componentType && componentIndex != null + && ecModel.getComponent(componentType, componentIndex); + var view = model && this[ + model.mainType === 'series' ? '_chartsMap' : '_componentsMap' + ][model.__viewId]; + + if (__DEV__) { + // `event.componentType` and `event[componentTpype + 'Index']` must not + // be missed, otherwise there is no way to distinguish source component. + // See `dataFormat.getDataParams`. + if (!isGlobalOut && !(model && view)) { + console.warn('model or view can not be found by params'); + } + } + + params.event = e; + params.type = eveName; + + this._ecEventProcessor.eventInfo = { + targetEl: el, + packedEvent: params, + model: model, + view: view + }; + + this.trigger(eveName, params); + } + }; + // Consider that some component (like tooltip, brush, ...) + // register zr event handler, but user event handler might + // do anything, such as call `setOption` or `dispatchAction`, + // which probably update any of the content and probably + // cause problem if it is called previous other inner handlers. + handler.zrEventfulCallAtLast = true; + this._zr.on(eveName, handler, this); + }, this); + + each(eventActionMap, function (actionType, eventType) { + this._messageCenter.on(eventType, function (event) { + this.trigger(eventType, event); + }, this); + }, this); +}; + +/** + * @return {boolean} + */ +echartsProto.isDisposed = function () { + return this._disposed; +}; + +/** + * Clear + */ +echartsProto.clear = function () { + this.setOption({ series: [] }, true); +}; + +/** + * Dispose instance + */ +echartsProto.dispose = function () { + if (this._disposed) { + if (__DEV__) { + console.warn('Instance ' + this.id + ' has been disposed'); + } + return; + } + this._disposed = true; + + setAttribute(this.getDom(), DOM_ATTRIBUTE_KEY, ''); + + var api = this._api; + var ecModel = this._model; + + each(this._componentsViews, function (component) { + component.dispose(ecModel, api); + }); + each(this._chartsViews, function (chart) { + chart.dispose(ecModel, api); + }); + + // Dispose after all views disposed + this._zr.dispose(); + + delete instances[this.id]; +}; + +mixin(ECharts, Eventful); + +function updateHoverLayerStatus(ecIns, ecModel) { + var zr = ecIns._zr; + var storage = zr.storage; + var elCount = 0; + + storage.traverse(function (el) { + elCount++; + }); + + if (elCount > ecModel.get('hoverLayerThreshold') && !env$1.node) { + ecModel.eachSeries(function (seriesModel) { + if (seriesModel.preventUsingHoverLayer) { + return; + } + var chartView = ecIns._chartsMap[seriesModel.__viewId]; + if (chartView.__alive) { + chartView.group.traverse(function (el) { + // Don't switch back. + el.useHoverLayer = true; + }); + } + }); + } +} + +/** + * Update chart progressive and blend. + * @param {module:echarts/model/Series|module:echarts/model/Component} model + * @param {module:echarts/view/Component|module:echarts/view/Chart} view + */ +function updateBlend(seriesModel, chartView) { + var blendMode = seriesModel.get('blendMode') || null; + if (__DEV__) { + if (!env$1.canvasSupported && blendMode && blendMode !== 'source-over') { + console.warn('Only canvas support blendMode'); + } + } + chartView.group.traverse(function (el) { + // FIXME marker and other components + if (!el.isGroup) { + // Only set if blendMode is changed. In case element is incremental and don't wan't to rerender. + if (el.style.blend !== blendMode) { + el.setStyle('blend', blendMode); + } + } + if (el.eachPendingDisplayable) { + el.eachPendingDisplayable(function (displayable) { + displayable.setStyle('blend', blendMode); + }); + } + }); +} + +/** + * @param {module:echarts/model/Series|module:echarts/model/Component} model + * @param {module:echarts/view/Component|module:echarts/view/Chart} view + */ +function updateZ(model, view) { + var z = model.get('z'); + var zlevel = model.get('zlevel'); + // Set z and zlevel + view.group.traverse(function (el) { + if (el.type !== 'group') { + z != null && (el.z = z); + zlevel != null && (el.zlevel = zlevel); + } + }); +} + +function createExtensionAPI(ecInstance) { + var coordSysMgr = ecInstance._coordSysMgr; + return extend(new ExtensionAPI(ecInstance), { + // Inject methods + getCoordinateSystems: bind( + coordSysMgr.getCoordinateSystems, coordSysMgr + ), + getComponentByElement: function (el) { + while (el) { + var modelInfo = el.__ecComponentInfo; + if (modelInfo != null) { + return ecInstance._model.getComponent(modelInfo.mainType, modelInfo.index); + } + el = el.parent; + } + } + }); +} + + +/** + * @class + * Usage of query: + * `chart.on('click', query, handler);` + * The `query` can be: + * + The component type query string, only `mainType` or `mainType.subType`, + * like: 'xAxis', 'series', 'xAxis.category' or 'series.line'. + * + The component query object, like: + * `{seriesIndex: 2}`, `{seriesName: 'xx'}`, `{seriesId: 'some'}`, + * `{xAxisIndex: 2}`, `{xAxisName: 'xx'}`, `{xAxisId: 'some'}`. + * + The data query object, like: + * `{dataIndex: 123}`, `{dataType: 'link'}`, `{name: 'some'}`. + * + The other query object (cmponent customized query), like: + * `{element: 'some'}` (only available in custom series). + * + * Caveat: If a prop in the `query` object is `null/undefined`, it is the + * same as there is no such prop in the `query` object. + */ +function EventProcessor() { + // These info required: targetEl, packedEvent, model, view + this.eventInfo; +} +EventProcessor.prototype = { + constructor: EventProcessor, + + normalizeQuery: function (query) { + var cptQuery = {}; + var dataQuery = {}; + var otherQuery = {}; + + // `query` is `mainType` or `mainType.subType` of component. + if (isString(query)) { + var condCptType = parseClassType(query); + // `.main` and `.sub` may be ''. + cptQuery.mainType = condCptType.main || null; + cptQuery.subType = condCptType.sub || null; + } + // `query` is an object, convert to {mainType, index, name, id}. + else { + // `xxxIndex`, `xxxName`, `xxxId`, `name`, `dataIndex`, `dataType` is reserved, + // can not be used in `compomentModel.filterForExposedEvent`. + var suffixes = ['Index', 'Name', 'Id']; + var dataKeys = {name: 1, dataIndex: 1, dataType: 1}; + each$1(query, function (val, key) { + var reserved = false; + for (var i = 0; i < suffixes.length; i++) { + var propSuffix = suffixes[i]; + var suffixPos = key.lastIndexOf(propSuffix); + if (suffixPos > 0 && suffixPos === key.length - propSuffix.length) { + var mainType = key.slice(0, suffixPos); + // Consider `dataIndex`. + if (mainType !== 'data') { + cptQuery.mainType = mainType; + cptQuery[propSuffix.toLowerCase()] = val; + reserved = true; + } + } + } + if (dataKeys.hasOwnProperty(key)) { + dataQuery[key] = val; + reserved = true; + } + if (!reserved) { + otherQuery[key] = val; + } + }); + } + + return { + cptQuery: cptQuery, + dataQuery: dataQuery, + otherQuery: otherQuery + }; + }, + + filter: function (eventType, query, args) { + // They should be assigned before each trigger call. + var eventInfo = this.eventInfo; + + if (!eventInfo) { + return true; + } + + var targetEl = eventInfo.targetEl; + var packedEvent = eventInfo.packedEvent; + var model = eventInfo.model; + var view = eventInfo.view; + + // For event like 'globalout'. + if (!model || !view) { + return true; + } + + var cptQuery = query.cptQuery; + var dataQuery = query.dataQuery; + + return check(cptQuery, model, 'mainType') + && check(cptQuery, model, 'subType') + && check(cptQuery, model, 'index', 'componentIndex') + && check(cptQuery, model, 'name') + && check(cptQuery, model, 'id') + && check(dataQuery, packedEvent, 'name') + && check(dataQuery, packedEvent, 'dataIndex') + && check(dataQuery, packedEvent, 'dataType') + && (!view.filterForExposedEvent || view.filterForExposedEvent( + eventType, query.otherQuery, targetEl, packedEvent + )); + + function check(query, host, prop, propOnHost) { + return query[prop] == null || host[propOnHost || prop] === query[prop]; + } + }, + + afterTrigger: function () { + // Make sure the eventInfo wont be used in next trigger. + this.eventInfo = null; + } +}; + + +/** + * @type {Object} key: actionType. + * @inner + */ +var actions = {}; + +/** + * Map eventType to actionType + * @type {Object} + */ +var eventActionMap = {}; + +/** + * Data processor functions of each stage + * @type {Array.>} + * @inner + */ +var dataProcessorFuncs = []; + +/** + * @type {Array.} + * @inner + */ +var optionPreprocessorFuncs = []; + +/** + * @type {Array.} + * @inner + */ +var postUpdateFuncs = []; + +/** + * Visual encoding functions of each stage + * @type {Array.>} + */ +var visualFuncs = []; + +/** + * Theme storage + * @type {Object.} + */ +var themeStorage = {}; +/** + * Loading effects + */ +var loadingEffects = {}; + +var instances = {}; +var connectedGroups = {}; + +var idBase = new Date() - 0; +var groupIdBase = new Date() - 0; +var DOM_ATTRIBUTE_KEY = '_echarts_instance_'; + +function enableConnect(chart) { + var STATUS_PENDING = 0; + var STATUS_UPDATING = 1; + var STATUS_UPDATED = 2; + var STATUS_KEY = '__connectUpdateStatus'; + + function updateConnectedChartsStatus(charts, status) { + for (var i = 0; i < charts.length; i++) { + var otherChart = charts[i]; + otherChart[STATUS_KEY] = status; + } + } + + each(eventActionMap, function (actionType, eventType) { + chart._messageCenter.on(eventType, function (event) { + if (connectedGroups[chart.group] && chart[STATUS_KEY] !== STATUS_PENDING) { + if (event && event.escapeConnect) { + return; + } + + var action = chart.makeActionFromEvent(event); + var otherCharts = []; + + each(instances, function (otherChart) { + if (otherChart !== chart && otherChart.group === chart.group) { + otherCharts.push(otherChart); + } + }); + + updateConnectedChartsStatus(otherCharts, STATUS_PENDING); + each(otherCharts, function (otherChart) { + if (otherChart[STATUS_KEY] !== STATUS_UPDATING) { + otherChart.dispatchAction(action); + } + }); + updateConnectedChartsStatus(otherCharts, STATUS_UPDATED); + } + }); + }); +} + +/** + * @param {HTMLElement} dom + * @param {Object} [theme] + * @param {Object} opts + * @param {number} [opts.devicePixelRatio] Use window.devicePixelRatio by default + * @param {string} [opts.renderer] Can choose 'canvas' or 'svg' to render the chart. + * @param {number} [opts.width] Use clientWidth of the input `dom` by default. + * Can be 'auto' (the same as null/undefined) + * @param {number} [opts.height] Use clientHeight of the input `dom` by default. + * Can be 'auto' (the same as null/undefined) + */ +function init(dom, theme$$1, opts) { + if (__DEV__) { + // Check version + if ((version$1.replace('.', '') - 0) < (dependencies.zrender.replace('.', '') - 0)) { + throw new Error( + 'zrender/src ' + version$1 + + ' is too old for ECharts ' + version + + '. Current version need ZRender ' + + dependencies.zrender + '+' + ); + } + + if (!dom) { + throw new Error('Initialize failed: invalid dom.'); + } + } + + var existInstance = getInstanceByDom(dom); + if (existInstance) { + if (__DEV__) { + console.warn('There is a chart instance already initialized on the dom.'); + } + return existInstance; + } + + if (__DEV__) { + if (isDom(dom) + && dom.nodeName.toUpperCase() !== 'CANVAS' + && ( + (!dom.clientWidth && (!opts || opts.width == null)) + || (!dom.clientHeight && (!opts || opts.height == null)) + ) + ) { + console.warn('Can\'t get DOM width or height. Please check ' + + 'dom.clientWidth and dom.clientHeight. They should not be 0.' + + 'For example, you may need to call this in the callback ' + + 'of window.onload.'); + } + } + + var chart = new ECharts(dom, theme$$1, opts); + chart.id = 'ec_' + idBase++; + instances[chart.id] = chart; + + setAttribute(dom, DOM_ATTRIBUTE_KEY, chart.id); + + enableConnect(chart); + + return chart; +} + +/** + * @return {string|Array.} groupId + */ +function connect(groupId) { + // Is array of charts + if (isArray(groupId)) { + var charts = groupId; + groupId = null; + // If any chart has group + each(charts, function (chart) { + if (chart.group != null) { + groupId = chart.group; + } + }); + groupId = groupId || ('g_' + groupIdBase++); + each(charts, function (chart) { + chart.group = groupId; + }); + } + connectedGroups[groupId] = true; + return groupId; +} + +/** + * @DEPRECATED + * @return {string} groupId + */ +function disConnect(groupId) { + connectedGroups[groupId] = false; +} + +/** + * @return {string} groupId + */ +var disconnect = disConnect; + +/** + * Dispose a chart instance + * @param {module:echarts~ECharts|HTMLDomElement|string} chart + */ +function dispose(chart) { + if (typeof chart === 'string') { + chart = instances[chart]; + } + else if (!(chart instanceof ECharts)) { + // Try to treat as dom + chart = getInstanceByDom(chart); + } + if ((chart instanceof ECharts) && !chart.isDisposed()) { + chart.dispose(); + } +} + +/** + * @param {HTMLElement} dom + * @return {echarts~ECharts} + */ +function getInstanceByDom(dom) { + return instances[getAttribute(dom, DOM_ATTRIBUTE_KEY)]; +} + +/** + * @param {string} key + * @return {echarts~ECharts} + */ +function getInstanceById(key) { + return instances[key]; +} + +/** + * Register theme + */ +function registerTheme(name, theme$$1) { + themeStorage[name] = theme$$1; +} + +/** + * Register option preprocessor + * @param {Function} preprocessorFunc + */ +function registerPreprocessor(preprocessorFunc) { + optionPreprocessorFuncs.push(preprocessorFunc); +} + +/** + * @param {number} [priority=1000] + * @param {Object|Function} processor + */ +function registerProcessor(priority, processor) { + normalizeRegister(dataProcessorFuncs, priority, processor, PRIORITY_PROCESSOR_FILTER); +} + +/** + * Register postUpdater + * @param {Function} postUpdateFunc + */ +function registerPostUpdate(postUpdateFunc) { + postUpdateFuncs.push(postUpdateFunc); +} + +/** + * Usage: + * registerAction('someAction', 'someEvent', function () { ... }); + * registerAction('someAction', function () { ... }); + * registerAction( + * {type: 'someAction', event: 'someEvent', update: 'updateView'}, + * function () { ... } + * ); + * + * @param {(string|Object)} actionInfo + * @param {string} actionInfo.type + * @param {string} [actionInfo.event] + * @param {string} [actionInfo.update] + * @param {string} [eventName] + * @param {Function} action + */ +function registerAction(actionInfo, eventName, action) { + if (typeof eventName === 'function') { + action = eventName; + eventName = ''; + } + var actionType = isObject(actionInfo) + ? actionInfo.type + : ([actionInfo, actionInfo = { + event: eventName + }][0]); + + // Event name is all lowercase + actionInfo.event = (actionInfo.event || actionType).toLowerCase(); + eventName = actionInfo.event; + + // Validate action type and event name. + assert(ACTION_REG.test(actionType) && ACTION_REG.test(eventName)); + + if (!actions[actionType]) { + actions[actionType] = {action: action, actionInfo: actionInfo}; + } + eventActionMap[eventName] = actionType; +} + +/** + * @param {string} type + * @param {*} CoordinateSystem + */ +function registerCoordinateSystem(type, CoordinateSystem$$1) { + CoordinateSystemManager.register(type, CoordinateSystem$$1); +} + +/** + * Get dimensions of specified coordinate system. + * @param {string} type + * @return {Array.} + */ +function getCoordinateSystemDimensions(type) { + var coordSysCreator = CoordinateSystemManager.get(type); + if (coordSysCreator) { + return coordSysCreator.getDimensionsInfo + ? coordSysCreator.getDimensionsInfo() + : coordSysCreator.dimensions.slice(); + } +} + +/** + * Layout is a special stage of visual encoding + * Most visual encoding like color are common for different chart + * But each chart has it's own layout algorithm + * + * @param {number} [priority=1000] + * @param {Function} layoutTask + */ +function registerLayout(priority, layoutTask) { + normalizeRegister(visualFuncs, priority, layoutTask, PRIORITY_VISUAL_LAYOUT, 'layout'); +} + +/** + * @param {number} [priority=3000] + * @param {module:echarts/stream/Task} visualTask + */ +function registerVisual(priority, visualTask) { + normalizeRegister(visualFuncs, priority, visualTask, PRIORITY_VISUAL_CHART, 'visual'); +} + +/** + * @param {Object|Function} fn: {seriesType, createOnAllSeries, performRawSeries, reset} + */ +function normalizeRegister(targetList, priority, fn, defaultPriority, visualType) { + if (isFunction(priority) || isObject(priority)) { + fn = priority; + priority = defaultPriority; + } + + if (__DEV__) { + if (isNaN(priority) || priority == null) { + throw new Error('Illegal priority'); + } + // Check duplicate + each(targetList, function (wrap) { + assert(wrap.__raw !== fn); + }); + } + + var stageHandler = Scheduler.wrapStageHandler(fn, visualType); + + stageHandler.__prio = priority; + stageHandler.__raw = fn; + targetList.push(stageHandler); + + return stageHandler; +} + +/** + * @param {string} name + */ +function registerLoading(name, loadingFx) { + loadingEffects[name] = loadingFx; +} + +/** + * @param {Object} opts + * @param {string} [superClass] + */ +function extendComponentModel(opts/*, superClass*/) { + // var Clazz = ComponentModel; + // if (superClass) { + // var classType = parseClassType(superClass); + // Clazz = ComponentModel.getClass(classType.main, classType.sub, true); + // } + return ComponentModel.extend(opts); +} + +/** + * @param {Object} opts + * @param {string} [superClass] + */ +function extendComponentView(opts/*, superClass*/) { + // var Clazz = ComponentView; + // if (superClass) { + // var classType = parseClassType(superClass); + // Clazz = ComponentView.getClass(classType.main, classType.sub, true); + // } + return Component$1.extend(opts); +} + +/** + * @param {Object} opts + * @param {string} [superClass] + */ +function extendSeriesModel(opts/*, superClass*/) { + // var Clazz = SeriesModel; + // if (superClass) { + // superClass = 'series.' + superClass.replace('series.', ''); + // var classType = parseClassType(superClass); + // Clazz = ComponentModel.getClass(classType.main, classType.sub, true); + // } + return SeriesModel.extend(opts); +} + +/** + * @param {Object} opts + * @param {string} [superClass] + */ +function extendChartView(opts/*, superClass*/) { + // var Clazz = ChartView; + // if (superClass) { + // superClass = superClass.replace('series.', ''); + // var classType = parseClassType(superClass); + // Clazz = ChartView.getClass(classType.main, true); + // } + return Chart.extend(opts); +} + +/** + * ZRender need a canvas context to do measureText. + * But in node environment canvas may be created by node-canvas. + * So we need to specify how to create a canvas instead of using document.createElement('canvas') + * + * Be careful of using it in the browser. + * + * @param {Function} creator + * @example + * var Canvas = require('canvas'); + * var echarts = require('echarts'); + * echarts.setCanvasCreator(function () { + * // Small size is enough. + * return new Canvas(32, 32); + * }); + */ +function setCanvasCreator(creator) { + $override('createCanvas', creator); +} + +/** + * @param {string} mapName + * @param {Array.|Object|string} geoJson + * @param {Object} [specialAreas] + * + * @example GeoJSON + * $.get('USA.json', function (geoJson) { + * echarts.registerMap('USA', geoJson); + * // Or + * echarts.registerMap('USA', { + * geoJson: geoJson, + * specialAreas: {} + * }) + * }); + * + * $.get('airport.svg', function (svg) { + * echarts.registerMap('airport', { + * svg: svg + * } + * }); + * + * echarts.registerMap('eu', [ + * {svg: eu-topographic.svg}, + * {geoJSON: eu.json} + * ]) + */ +function registerMap(mapName, geoJson, specialAreas) { + mapDataStorage.registerMap(mapName, geoJson, specialAreas); +} + +/** + * @param {string} mapName + * @return {Object} + */ +function getMap(mapName) { + // For backward compatibility, only return the first one. + var records = mapDataStorage.retrieveMap(mapName); + return records && records[0] && { + geoJson: records[0].geoJSON, + specialAreas: records[0].specialAreas + }; +} + +registerVisual(PRIORITY_VISUAL_GLOBAL, seriesColor); +registerPreprocessor(backwardCompat); +registerProcessor(PRIORITY_PROCESSOR_STATISTIC, dataStack); +registerLoading('default', loadingDefault); + +// Default actions + +registerAction({ + type: 'highlight', + event: 'highlight', + update: 'highlight' +}, noop); + +registerAction({ + type: 'downplay', + event: 'downplay', + update: 'downplay' +}, noop); + +// Default theme +registerTheme('light', lightTheme); +registerTheme('dark', theme); + +// For backward compatibility, where the namespace `dataTool` will +// be mounted on `echarts` is the extension `dataTool` is imported. +var dataTool = {}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +function defaultKeyGetter(item) { + return item; +} + +/** + * @param {Array} oldArr + * @param {Array} newArr + * @param {Function} oldKeyGetter + * @param {Function} newKeyGetter + * @param {Object} [context] Can be visited by this.context in callback. + */ +function DataDiffer(oldArr, newArr, oldKeyGetter, newKeyGetter, context) { + this._old = oldArr; + this._new = newArr; + + this._oldKeyGetter = oldKeyGetter || defaultKeyGetter; + this._newKeyGetter = newKeyGetter || defaultKeyGetter; + + this.context = context; +} + +DataDiffer.prototype = { + + constructor: DataDiffer, + + /** + * Callback function when add a data + */ + add: function (func) { + this._add = func; + return this; + }, + + /** + * Callback function when update a data + */ + update: function (func) { + this._update = func; + return this; + }, + + /** + * Callback function when remove a data + */ + remove: function (func) { + this._remove = func; + return this; + }, + + execute: function () { + var oldArr = this._old; + var newArr = this._new; + + var oldDataIndexMap = {}; + var newDataIndexMap = {}; + var oldDataKeyArr = []; + var newDataKeyArr = []; + var i; + + initIndexMap(oldArr, oldDataIndexMap, oldDataKeyArr, '_oldKeyGetter', this); + initIndexMap(newArr, newDataIndexMap, newDataKeyArr, '_newKeyGetter', this); + + // Travel by inverted order to make sure order consistency + // when duplicate keys exists (consider newDataIndex.pop() below). + // For performance consideration, these code below do not look neat. + for (i = 0; i < oldArr.length; i++) { + var key = oldDataKeyArr[i]; + var idx = newDataIndexMap[key]; + + // idx can never be empty array here. see 'set null' logic below. + if (idx != null) { + // Consider there is duplicate key (for example, use dataItem.name as key). + // We should make sure every item in newArr and oldArr can be visited. + var len = idx.length; + if (len) { + len === 1 && (newDataIndexMap[key] = null); + idx = idx.unshift(); + } + else { + newDataIndexMap[key] = null; + } + this._update && this._update(idx, i); + } + else { + this._remove && this._remove(i); + } + } + + for (var i = 0; i < newDataKeyArr.length; i++) { + var key = newDataKeyArr[i]; + if (newDataIndexMap.hasOwnProperty(key)) { + var idx = newDataIndexMap[key]; + if (idx == null) { + continue; + } + // idx can never be empty array here. see 'set null' logic above. + if (!idx.length) { + this._add && this._add(idx); + } + else { + for (var j = 0, len = idx.length; j < len; j++) { + this._add && this._add(idx[j]); + } + } + } + } + } +}; + +function initIndexMap(arr, map, keyArr, keyGetterName, dataDiffer) { + for (var i = 0; i < arr.length; i++) { + // Add prefix to avoid conflict with Object.prototype. + var key = '_ec_' + dataDiffer[keyGetterName](arr[i], i); + var existence = map[key]; + if (existence == null) { + keyArr.push(key); + map[key] = i; + } + else { + if (!existence.length) { + map[key] = existence = [existence]; + } + existence.push(i); + } + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var OTHER_DIMENSIONS = createHashMap([ + 'tooltip', 'label', 'itemName', 'itemId', 'seriesName' +]); + +function summarizeDimensions(data) { + var summary = {}; + var encode = summary.encode = {}; + var notExtraCoordDimMap = createHashMap(); + var defaultedLabel = []; + var defaultedTooltip = []; + + // See the comment of `List.js#userOutput`. + var userOutput = summary.userOutput = { + dimensionNames: data.dimensions.slice(), + encode: {} + }; + + each$1(data.dimensions, function (dimName) { + var dimItem = data.getDimensionInfo(dimName); + + var coordDim = dimItem.coordDim; + if (coordDim) { + if (__DEV__) { + assert$1(OTHER_DIMENSIONS.get(coordDim) == null); + } + + var coordDimIndex = dimItem.coordDimIndex; + getOrCreateEncodeArr(encode, coordDim)[coordDimIndex] = dimName; + + if (!dimItem.isExtraCoord) { + notExtraCoordDimMap.set(coordDim, 1); + + // Use the last coord dim (and label friendly) as default label, + // because when dataset is used, it is hard to guess which dimension + // can be value dimension. If both show x, y on label is not look good, + // and conventionally y axis is focused more. + if (mayLabelDimType(dimItem.type)) { + defaultedLabel[0] = dimName; + } + + // User output encode do not contain generated coords. + // And it only has index. User can use index to retrieve value from the raw item array. + getOrCreateEncodeArr(userOutput.encode, coordDim)[coordDimIndex] = dimItem.index; + } + if (dimItem.defaultTooltip) { + defaultedTooltip.push(dimName); + } + } + + OTHER_DIMENSIONS.each(function (v, otherDim) { + var encodeArr = getOrCreateEncodeArr(encode, otherDim); + + var dimIndex = dimItem.otherDims[otherDim]; + if (dimIndex != null && dimIndex !== false) { + encodeArr[dimIndex] = dimItem.name; + } + }); + }); + + var dataDimsOnCoord = []; + var encodeFirstDimNotExtra = {}; + + notExtraCoordDimMap.each(function (v, coordDim) { + var dimArr = encode[coordDim]; + // ??? FIXME extra coord should not be set in dataDimsOnCoord. + // But should fix the case that radar axes: simplify the logic + // of `completeDimension`, remove `extraPrefix`. + encodeFirstDimNotExtra[coordDim] = dimArr[0]; + // Not necessary to remove duplicate, because a data + // dim canot on more than one coordDim. + dataDimsOnCoord = dataDimsOnCoord.concat(dimArr); + }); + + summary.dataDimsOnCoord = dataDimsOnCoord; + summary.encodeFirstDimNotExtra = encodeFirstDimNotExtra; + + var encodeLabel = encode.label; + // FIXME `encode.label` is not recommanded, because formatter can not be set + // in this way. Use label.formatter instead. May be remove this approach someday. + if (encodeLabel && encodeLabel.length) { + defaultedLabel = encodeLabel.slice(); + } + + var encodeTooltip = encode.tooltip; + if (encodeTooltip && encodeTooltip.length) { + defaultedTooltip = encodeTooltip.slice(); + } + else if (!defaultedTooltip.length) { + defaultedTooltip = defaultedLabel.slice(); + } + + encode.defaultedLabel = defaultedLabel; + encode.defaultedTooltip = defaultedTooltip; + + return summary; +} + +function getOrCreateEncodeArr(encode, dim) { + if (!encode.hasOwnProperty(dim)) { + encode[dim] = []; + } + return encode[dim]; +} + +function getDimensionTypeByAxis(axisType) { + return axisType === 'category' + ? 'ordinal' + : axisType === 'time' + ? 'time' + : 'float'; +} + +function mayLabelDimType(dimType) { + // In most cases, ordinal and time do not suitable for label. + // Ordinal info can be displayed on axis. Time is too long. + return !(dimType === 'ordinal' || dimType === 'time'); +} + +// function findTheLastDimMayLabel(data) { +// // Get last value dim +// var dimensions = data.dimensions.slice(); +// var valueType; +// var valueDim; +// while (dimensions.length && ( +// valueDim = dimensions.pop(), +// valueType = data.getDimensionInfo(valueDim).type, +// valueType === 'ordinal' || valueType === 'time' +// )) {} // jshint ignore:line +// return valueDim; +// } + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* global Float64Array, Int32Array, Uint32Array, Uint16Array */ + +/** + * List for data storage + * @module echarts/data/List + */ + +var isObject$4 = isObject$1; + +var UNDEFINED = 'undefined'; +var INDEX_NOT_FOUND = -1; + +// Use prefix to avoid index to be the same as otherIdList[idx], +// which will cause weird udpate animation. +var ID_PREFIX = 'e\0\0'; + +var dataCtors = { + 'float': typeof Float64Array === UNDEFINED + ? Array : Float64Array, + 'int': typeof Int32Array === UNDEFINED + ? Array : Int32Array, + // Ordinal data type can be string or int + 'ordinal': Array, + 'number': Array, + 'time': Array +}; + +// Caution: MUST not use `new CtorUint32Array(arr, 0, len)`, because the Ctor of array is +// different from the Ctor of typed array. +var CtorUint32Array = typeof Uint32Array === UNDEFINED ? Array : Uint32Array; +var CtorInt32Array = typeof Int32Array === UNDEFINED ? Array : Int32Array; +var CtorUint16Array = typeof Uint16Array === UNDEFINED ? Array : Uint16Array; + +function getIndicesCtor(list) { + // The possible max value in this._indicies is always this._rawCount despite of filtering. + return list._rawCount > 65535 ? CtorUint32Array : CtorUint16Array; +} + +function cloneChunk(originalChunk) { + var Ctor = originalChunk.constructor; + // Only shallow clone is enough when Array. + return Ctor === Array ? originalChunk.slice() : new Ctor(originalChunk); +} + +var TRANSFERABLE_PROPERTIES = [ + 'hasItemOption', '_nameList', '_idList', '_invertedIndicesMap', + '_rawData', '_chunkSize', '_chunkCount', '_dimValueGetter', + '_count', '_rawCount', '_nameDimIdx', '_idDimIdx' +]; +var CLONE_PROPERTIES = [ + '_extent', '_approximateExtent', '_rawExtent' +]; + +function transferProperties(target, source) { + each$1(TRANSFERABLE_PROPERTIES.concat(source.__wrappedMethods || []), function (propName) { + if (source.hasOwnProperty(propName)) { + target[propName] = source[propName]; + } + }); + + target.__wrappedMethods = source.__wrappedMethods; + + each$1(CLONE_PROPERTIES, function (propName) { + target[propName] = clone(source[propName]); + }); + + target._calculationInfo = extend(source._calculationInfo); +} + + + + + +/** + * @constructor + * @alias module:echarts/data/List + * + * @param {Array.} dimensions + * For example, ['someDimName', {name: 'someDimName', type: 'someDimType'}, ...]. + * Dimensions should be concrete names like x, y, z, lng, lat, angle, radius + * Spetial fields: { + * ordinalMeta: + * createInvertedIndices: + * } + * @param {module:echarts/model/Model} hostModel + */ +var List = function (dimensions, hostModel) { + + dimensions = dimensions || ['x', 'y']; + + var dimensionInfos = {}; + var dimensionNames = []; + var invertedIndicesMap = {}; + + for (var i = 0; i < dimensions.length; i++) { + // Use the original dimensions[i], where other flag props may exists. + var dimensionInfo = dimensions[i]; + + if (isString(dimensionInfo)) { + dimensionInfo = {name: dimensionInfo}; + } + + var dimensionName = dimensionInfo.name; + dimensionInfo.type = dimensionInfo.type || 'float'; + if (!dimensionInfo.coordDim) { + dimensionInfo.coordDim = dimensionName; + dimensionInfo.coordDimIndex = 0; + } + + dimensionInfo.otherDims = dimensionInfo.otherDims || {}; + dimensionNames.push(dimensionName); + dimensionInfos[dimensionName] = dimensionInfo; + + dimensionInfo.index = i; + + if (dimensionInfo.createInvertedIndices) { + invertedIndicesMap[dimensionName] = []; + } + } + + /** + * @readOnly + * @type {Array.} + */ + this.dimensions = dimensionNames; + + /** + * Infomation of each data dimension, like data type. + * @type {Object} + */ + this._dimensionInfos = dimensionInfos; + + /** + * @type {module:echarts/model/Model} + */ + this.hostModel = hostModel; + + /** + * @type {module:echarts/model/Model} + */ + this.dataType; + + /** + * Indices stores the indices of data subset after filtered. + * This data subset will be used in chart. + * @type {Array.} + * @readOnly + */ + this._indices = null; + + this._count = 0; + this._rawCount = 0; + + /** + * Data storage + * @type {Object.>} + * @private + */ + this._storage = {}; + + /** + * @type {Array.} + */ + this._nameList = []; + /** + * @type {Array.} + */ + this._idList = []; + + /** + * Models of data option is stored sparse for optimizing memory cost + * @type {Array.} + * @private + */ + this._optionModels = []; + + /** + * Global visual properties after visual coding + * @type {Object} + * @private + */ + this._visual = {}; + + /** + * Globel layout properties. + * @type {Object} + * @private + */ + this._layout = {}; + + /** + * Item visual properties after visual coding + * @type {Array.} + * @private + */ + this._itemVisuals = []; + + /** + * Key: visual type, Value: boolean + * @type {Object} + * @readOnly + */ + this.hasItemVisual = {}; + + /** + * Item layout properties after layout + * @type {Array.} + * @private + */ + this._itemLayouts = []; + + /** + * Graphic elemnents + * @type {Array.} + * @private + */ + this._graphicEls = []; + + /** + * Max size of each chunk. + * @type {number} + * @private + */ + this._chunkSize = 1e5; + + /** + * @type {number} + * @private + */ + this._chunkCount = 0; + + /** + * @type {Array.} + * @private + */ + this._rawData; + + /** + * Raw extent will not be cloned, but only transfered. + * It will not be calculated util needed. + * key: dim, + * value: {end: number, extent: Array.} + * @type {Object} + * @private + */ + this._rawExtent = {}; + + /** + * @type {Object} + * @private + */ + this._extent = {}; + + /** + * key: dim + * value: extent + * @type {Object} + * @private + */ + this._approximateExtent = {}; + + /** + * Cache summary info for fast visit. See "dimensionHelper". + * @type {Object} + * @private + */ + this._dimensionsSummary = summarizeDimensions(this); + + /** + * @type {Object.} + * @private + */ + this._invertedIndicesMap = invertedIndicesMap; + + /** + * @type {Object} + * @private + */ + this._calculationInfo = {}; + + /** + * User output info of this data. + * DO NOT use it in other places! + * + * When preparing user params for user callbacks, we have + * to clone these inner data structures to prevent users + * from modifying them to effect built-in logic. And for + * performance consideration we make this `userOutput` to + * avoid clone them too many times. + * + * @type {Object} + * @readOnly + */ + this.userOutput = this._dimensionsSummary.userOutput; +}; + +var listProto = List.prototype; + +listProto.type = 'list'; + +/** + * If each data item has it's own option + * @type {boolean} + */ +listProto.hasItemOption = true; + +/** + * The meanings of the input parameter `dim`: + * + * + If dim is a number (e.g., `1`), it means the index of the dimension. + * For example, `getDimension(0)` will return 'x' or 'lng' or 'radius'. + * + If dim is a number-like string (e.g., `"1"`): + * + If there is the same concrete dim name defined in `this.dimensions`, it means that concrete name. + * + If not, it will be converted to a number, which means the index of the dimension. + * (why? because of the backward compatbility. We have been tolerating number-like string in + * dimension setting, although now it seems that it is not a good idea.) + * For example, `visualMap[i].dimension: "1"` is the same meaning as `visualMap[i].dimension: 1`, + * if no dimension name is defined as `"1"`. + * + If dim is a not-number-like string, it means the concrete dim name. + * For example, it can be be default name `"x"`, `"y"`, `"z"`, `"lng"`, `"lat"`, `"angle"`, `"radius"`, + * or customized in `dimensions` property of option like `"age"`. + * + * Get dimension name + * @param {string|number} dim See above. + * @return {string} Concrete dim name. + */ +listProto.getDimension = function (dim) { + if (typeof dim === 'number' + // If being a number-like string but not being defined a dimension name. + || (!isNaN(dim) && !this._dimensionInfos.hasOwnProperty(dim)) + ) { + dim = this.dimensions[dim]; + } + return dim; +}; + +/** + * Get type and calculation info of particular dimension + * @param {string|number} dim + * Dimension can be concrete names like x, y, z, lng, lat, angle, radius + * Or a ordinal number. For example getDimensionInfo(0) will return 'x' or 'lng' or 'radius' + */ +listProto.getDimensionInfo = function (dim) { + // Do not clone, because there may be categories in dimInfo. + return this._dimensionInfos[this.getDimension(dim)]; +}; + +/** + * @return {Array.} concrete dimension name list on coord. + */ +listProto.getDimensionsOnCoord = function () { + return this._dimensionsSummary.dataDimsOnCoord.slice(); +}; + +/** + * @param {string} coordDim + * @param {number} [idx] A coordDim may map to more than one data dim. + * If idx is `true`, return a array of all mapped dims. + * If idx is not specified, return the first dim not extra. + * @return {string|Array.} concrete data dim. + * If idx is number, and not found, return null/undefined. + * If idx is `true`, and not found, return empty array (always return array). + */ +listProto.mapDimension = function (coordDim, idx) { + var dimensionsSummary = this._dimensionsSummary; + + if (idx == null) { + return dimensionsSummary.encodeFirstDimNotExtra[coordDim]; + } + + var dims = dimensionsSummary.encode[coordDim]; + return idx === true + // always return array if idx is `true` + ? (dims || []).slice() + : (dims && dims[idx]); +}; + +/** + * Initialize from data + * @param {Array.} data source or data or data provider. + * @param {Array.} [nameLIst] The name of a datum is used on data diff and + * defualt label/tooltip. + * A name can be specified in encode.itemName, + * or dataItem.name (only for series option data), + * or provided in nameList from outside. + * @param {Function} [dimValueGetter] (dataItem, dimName, dataIndex, dimIndex) => number + */ +listProto.initData = function (data, nameList, dimValueGetter) { + + var notProvider = Source.isInstance(data) || isArrayLike(data); + if (notProvider) { + data = new DefaultDataProvider(data, this.dimensions.length); + } + + if (__DEV__) { + if (!notProvider && (typeof data.getItem !== 'function' || typeof data.count !== 'function')) { + throw new Error('Inavlid data provider.'); + } + } + + this._rawData = data; + + // Clear + this._storage = {}; + this._indices = null; + + this._nameList = nameList || []; + + this._idList = []; + + this._nameRepeatCount = {}; + + if (!dimValueGetter) { + this.hasItemOption = false; + } + + /** + * @readOnly + */ + this.defaultDimValueGetter = defaultDimValueGetters[ + this._rawData.getSource().sourceFormat + ]; + // Default dim value getter + this._dimValueGetter = dimValueGetter = dimValueGetter + || this.defaultDimValueGetter; + this._dimValueGetterArrayRows = defaultDimValueGetters.arrayRows; + + // Reset raw extent. + this._rawExtent = {}; + + this._initDataFromProvider(0, data.count()); + + // If data has no item option. + if (data.pure) { + this.hasItemOption = false; + } +}; + +listProto.getProvider = function () { + return this._rawData; +}; + +/** + * Caution: Can be only called on raw data (before `this._indices` created). + */ +listProto.appendData = function (data) { + if (__DEV__) { + assert$1(!this._indices, 'appendData can only be called on raw data.'); + } + + var rawData = this._rawData; + var start = this.count(); + rawData.appendData(data); + var end = rawData.count(); + if (!rawData.persistent) { + end += start; + } + this._initDataFromProvider(start, end); +}; + +/** + * Caution: Can be only called on raw data (before `this._indices` created). + * This method does not modify `rawData` (`dataProvider`), but only + * add values to storage. + * + * The final count will be increased by `Math.max(values.length, names.length)`. + * + * @param {Array.>} values That is the SourceType: 'arrayRows', like + * [ + * [12, 33, 44], + * [NaN, 43, 1], + * ['-', 'asdf', 0] + * ] + * Each item is exaclty cooresponding to a dimension. + * @param {Array.} [names] + */ +listProto.appendValues = function (values, names) { + var chunkSize = this._chunkSize; + var storage = this._storage; + var dimensions = this.dimensions; + var dimLen = dimensions.length; + var rawExtent = this._rawExtent; + + var start = this.count(); + var end = start + Math.max(values.length, names ? names.length : 0); + var originalChunkCount = this._chunkCount; + + for (var i = 0; i < dimLen; i++) { + var dim = dimensions[i]; + if (!rawExtent[dim]) { + rawExtent[dim] = getInitialExtent(); + } + if (!storage[dim]) { + storage[dim] = []; + } + prepareChunks(storage, this._dimensionInfos[dim], chunkSize, originalChunkCount, end); + this._chunkCount = storage[dim].length; + } + + var emptyDataItem = new Array(dimLen); + for (var idx = start; idx < end; idx++) { + var sourceIdx = idx - start; + var chunkIndex = Math.floor(idx / chunkSize); + var chunkOffset = idx % chunkSize; + + // Store the data by dimensions + for (var k = 0; k < dimLen; k++) { + var dim = dimensions[k]; + var val = this._dimValueGetterArrayRows( + values[sourceIdx] || emptyDataItem, dim, sourceIdx, k + ); + storage[dim][chunkIndex][chunkOffset] = val; + + var dimRawExtent = rawExtent[dim]; + val < dimRawExtent[0] && (dimRawExtent[0] = val); + val > dimRawExtent[1] && (dimRawExtent[1] = val); + } + + if (names) { + this._nameList[idx] = names[sourceIdx]; + } + } + + this._rawCount = this._count = end; + + // Reset data extent + this._extent = {}; + + prepareInvertedIndex(this); +}; + +listProto._initDataFromProvider = function (start, end) { + // Optimize. + if (start >= end) { + return; + } + + var chunkSize = this._chunkSize; + var rawData = this._rawData; + var storage = this._storage; + var dimensions = this.dimensions; + var dimLen = dimensions.length; + var dimensionInfoMap = this._dimensionInfos; + var nameList = this._nameList; + var idList = this._idList; + var rawExtent = this._rawExtent; + var nameRepeatCount = this._nameRepeatCount = {}; + var nameDimIdx; + + var originalChunkCount = this._chunkCount; + for (var i = 0; i < dimLen; i++) { + var dim = dimensions[i]; + if (!rawExtent[dim]) { + rawExtent[dim] = getInitialExtent(); + } + + var dimInfo = dimensionInfoMap[dim]; + if (dimInfo.otherDims.itemName === 0) { + nameDimIdx = this._nameDimIdx = i; + } + if (dimInfo.otherDims.itemId === 0) { + this._idDimIdx = i; + } + + if (!storage[dim]) { + storage[dim] = []; + } + + prepareChunks(storage, dimInfo, chunkSize, originalChunkCount, end); + + this._chunkCount = storage[dim].length; + } + + var dataItem = new Array(dimLen); + for (var idx = start; idx < end; idx++) { + // NOTICE: Try not to write things into dataItem + dataItem = rawData.getItem(idx, dataItem); + // Each data item is value + // [1, 2] + // 2 + // Bar chart, line chart which uses category axis + // only gives the 'y' value. 'x' value is the indices of category + // Use a tempValue to normalize the value to be a (x, y) value + var chunkIndex = Math.floor(idx / chunkSize); + var chunkOffset = idx % chunkSize; + + // Store the data by dimensions + for (var k = 0; k < dimLen; k++) { + var dim = dimensions[k]; + var dimStorage = storage[dim][chunkIndex]; + // PENDING NULL is empty or zero + var val = this._dimValueGetter(dataItem, dim, idx, k); + dimStorage[chunkOffset] = val; + + var dimRawExtent = rawExtent[dim]; + val < dimRawExtent[0] && (dimRawExtent[0] = val); + val > dimRawExtent[1] && (dimRawExtent[1] = val); + } + + // ??? FIXME not check by pure but sourceFormat? + // TODO refactor these logic. + if (!rawData.pure) { + var name = nameList[idx]; + + if (dataItem && name == null) { + // If dataItem is {name: ...}, it has highest priority. + // That is appropriate for many common cases. + if (dataItem.name != null) { + // There is no other place to persistent dataItem.name, + // so save it to nameList. + nameList[idx] = name = dataItem.name; + } + else if (nameDimIdx != null) { + var nameDim = dimensions[nameDimIdx]; + var nameDimChunk = storage[nameDim][chunkIndex]; + if (nameDimChunk) { + name = nameDimChunk[chunkOffset]; + var ordinalMeta = dimensionInfoMap[nameDim].ordinalMeta; + if (ordinalMeta && ordinalMeta.categories.length) { + name = ordinalMeta.categories[name]; + } + } + } + } + + // Try using the id in option + // id or name is used on dynamical data, mapping old and new items. + var id = dataItem == null ? null : dataItem.id; + + if (id == null && name != null) { + // Use name as id and add counter to avoid same name + nameRepeatCount[name] = nameRepeatCount[name] || 0; + id = name; + if (nameRepeatCount[name] > 0) { + id += '__ec__' + nameRepeatCount[name]; + } + nameRepeatCount[name]++; + } + id != null && (idList[idx] = id); + } + } + + if (!rawData.persistent && rawData.clean) { + // Clean unused data if data source is typed array. + rawData.clean(); + } + + this._rawCount = this._count = end; + + // Reset data extent + this._extent = {}; + + prepareInvertedIndex(this); +}; + +function prepareChunks(storage, dimInfo, chunkSize, chunkCount, end) { + var DataCtor = dataCtors[dimInfo.type]; + var lastChunkIndex = chunkCount - 1; + var dim = dimInfo.name; + var resizeChunkArray = storage[dim][lastChunkIndex]; + if (resizeChunkArray && resizeChunkArray.length < chunkSize) { + var newStore = new DataCtor(Math.min(end - lastChunkIndex * chunkSize, chunkSize)); + // The cost of the copy is probably inconsiderable + // within the initial chunkSize. + for (var j = 0; j < resizeChunkArray.length; j++) { + newStore[j] = resizeChunkArray[j]; + } + storage[dim][lastChunkIndex] = newStore; + } + + // Create new chunks. + for (var k = chunkCount * chunkSize; k < end; k += chunkSize) { + storage[dim].push(new DataCtor(Math.min(end - k, chunkSize))); + } +} + +function prepareInvertedIndex(list) { + var invertedIndicesMap = list._invertedIndicesMap; + each$1(invertedIndicesMap, function (invertedIndices, dim) { + var dimInfo = list._dimensionInfos[dim]; + + // Currently, only dimensions that has ordinalMeta can create inverted indices. + var ordinalMeta = dimInfo.ordinalMeta; + if (ordinalMeta) { + invertedIndices = invertedIndicesMap[dim] = new CtorInt32Array( + ordinalMeta.categories.length + ); + // The default value of TypedArray is 0. To avoid miss + // mapping to 0, we should set it as INDEX_NOT_FOUND. + for (var i = 0; i < invertedIndices.length; i++) { + invertedIndices[i] = INDEX_NOT_FOUND; + } + for (var i = 0; i < list._count; i++) { + // Only support the case that all values are distinct. + invertedIndices[list.get(dim, i)] = i; + } + } + }); +} + +function getRawValueFromStore(list, dimIndex, rawIndex) { + var val; + if (dimIndex != null) { + var chunkSize = list._chunkSize; + var chunkIndex = Math.floor(rawIndex / chunkSize); + var chunkOffset = rawIndex % chunkSize; + var dim = list.dimensions[dimIndex]; + var chunk = list._storage[dim][chunkIndex]; + if (chunk) { + val = chunk[chunkOffset]; + var ordinalMeta = list._dimensionInfos[dim].ordinalMeta; + if (ordinalMeta && ordinalMeta.categories.length) { + val = ordinalMeta.categories[val]; + } + } + } + return val; +} + +/** + * @return {number} + */ +listProto.count = function () { + return this._count; +}; + +listProto.getIndices = function () { + var newIndices; + + var indices = this._indices; + if (indices) { + var Ctor = indices.constructor; + var thisCount = this._count; + // `new Array(a, b, c)` is different from `new Uint32Array(a, b, c)`. + if (Ctor === Array) { + newIndices = new Ctor(thisCount); + for (var i = 0; i < thisCount; i++) { + newIndices[i] = indices[i]; + } + } + else { + newIndices = new Ctor(indices.buffer, 0, thisCount); + } + } + else { + var Ctor = getIndicesCtor(this); + var newIndices = new Ctor(this.count()); + for (var i = 0; i < newIndices.length; i++) { + newIndices[i] = i; + } + } + + return newIndices; +}; + +/** + * Get value. Return NaN if idx is out of range. + * @param {string} dim Dim must be concrete name. + * @param {number} idx + * @param {boolean} stack + * @return {number} + */ +listProto.get = function (dim, idx /*, stack */) { + if (!(idx >= 0 && idx < this._count)) { + return NaN; + } + var storage = this._storage; + if (!storage[dim]) { + // TODO Warn ? + return NaN; + } + + idx = this.getRawIndex(idx); + + var chunkIndex = Math.floor(idx / this._chunkSize); + var chunkOffset = idx % this._chunkSize; + + var chunkStore = storage[dim][chunkIndex]; + var value = chunkStore[chunkOffset]; + // FIXME ordinal data type is not stackable + // if (stack) { + // var dimensionInfo = this._dimensionInfos[dim]; + // if (dimensionInfo && dimensionInfo.stackable) { + // var stackedOn = this.stackedOn; + // while (stackedOn) { + // // Get no stacked data of stacked on + // var stackedValue = stackedOn.get(dim, idx); + // // Considering positive stack, negative stack and empty data + // if ((value >= 0 && stackedValue > 0) // Positive stack + // || (value <= 0 && stackedValue < 0) // Negative stack + // ) { + // value += stackedValue; + // } + // stackedOn = stackedOn.stackedOn; + // } + // } + // } + + return value; +}; + +/** + * @param {string} dim concrete dim + * @param {number} rawIndex + * @return {number|string} + */ +listProto.getByRawIndex = function (dim, rawIdx) { + if (!(rawIdx >= 0 && rawIdx < this._rawCount)) { + return NaN; + } + var dimStore = this._storage[dim]; + if (!dimStore) { + // TODO Warn ? + return NaN; + } + + var chunkIndex = Math.floor(rawIdx / this._chunkSize); + var chunkOffset = rawIdx % this._chunkSize; + var chunkStore = dimStore[chunkIndex]; + return chunkStore[chunkOffset]; +}; + +/** + * FIXME Use `get` on chrome maybe slow(in filterSelf and selectRange). + * Hack a much simpler _getFast + * @private + */ +listProto._getFast = function (dim, rawIdx) { + var chunkIndex = Math.floor(rawIdx / this._chunkSize); + var chunkOffset = rawIdx % this._chunkSize; + var chunkStore = this._storage[dim][chunkIndex]; + return chunkStore[chunkOffset]; +}; + +/** + * Get value for multi dimensions. + * @param {Array.} [dimensions] If ignored, using all dimensions. + * @param {number} idx + * @return {number} + */ +listProto.getValues = function (dimensions, idx /*, stack */) { + var values = []; + + if (!isArray(dimensions)) { + // stack = idx; + idx = dimensions; + dimensions = this.dimensions; + } + + for (var i = 0, len = dimensions.length; i < len; i++) { + values.push(this.get(dimensions[i], idx /*, stack */)); + } + + return values; +}; + +/** + * If value is NaN. Inlcuding '-' + * Only check the coord dimensions. + * @param {string} dim + * @param {number} idx + * @return {number} + */ +listProto.hasValue = function (idx) { + var dataDimsOnCoord = this._dimensionsSummary.dataDimsOnCoord; + for (var i = 0, len = dataDimsOnCoord.length; i < len; i++) { + // Ordinal type originally can be string or number. + // But when an ordinal type is used on coord, it can + // not be string but only number. So we can also use isNaN. + if (isNaN(this.get(dataDimsOnCoord[i], idx))) { + return false; + } + } + return true; +}; + +/** + * Get extent of data in one dimension + * @param {string} dim + * @param {boolean} stack + */ +listProto.getDataExtent = function (dim /*, stack */) { + // Make sure use concrete dim as cache name. + dim = this.getDimension(dim); + var dimData = this._storage[dim]; + var initialExtent = getInitialExtent(); + + // stack = !!((stack || false) && this.getCalculationInfo(dim)); + + if (!dimData) { + return initialExtent; + } + + // Make more strict checkings to ensure hitting cache. + var currEnd = this.count(); + // var cacheName = [dim, !!stack].join('_'); + // var cacheName = dim; + + // Consider the most cases when using data zoom, `getDataExtent` + // happened before filtering. We cache raw extent, which is not + // necessary to be cleared and recalculated when restore data. + var useRaw = !this._indices; // && !stack; + var dimExtent; + + if (useRaw) { + return this._rawExtent[dim].slice(); + } + dimExtent = this._extent[dim]; + if (dimExtent) { + return dimExtent.slice(); + } + dimExtent = initialExtent; + + var min = dimExtent[0]; + var max = dimExtent[1]; + + for (var i = 0; i < currEnd; i++) { + // var value = stack ? this.get(dim, i, true) : this._getFast(dim, this.getRawIndex(i)); + var value = this._getFast(dim, this.getRawIndex(i)); + value < min && (min = value); + value > max && (max = value); + } + + dimExtent = [min, max]; + + this._extent[dim] = dimExtent; + + return dimExtent; +}; + +/** + * Optimize for the scenario that data is filtered by a given extent. + * Consider that if data amount is more than hundreds of thousand, + * extent calculation will cost more than 10ms and the cache will + * be erased because of the filtering. + */ +listProto.getApproximateExtent = function (dim /*, stack */) { + dim = this.getDimension(dim); + return this._approximateExtent[dim] || this.getDataExtent(dim /*, stack */); +}; + +listProto.setApproximateExtent = function (extent, dim /*, stack */) { + dim = this.getDimension(dim); + this._approximateExtent[dim] = extent.slice(); +}; + +/** + * @param {string} key + * @return {*} + */ +listProto.getCalculationInfo = function (key) { + return this._calculationInfo[key]; +}; + +/** + * @param {string|Object} key or k-v object + * @param {*} [value] + */ +listProto.setCalculationInfo = function (key, value) { + isObject$4(key) + ? extend(this._calculationInfo, key) + : (this._calculationInfo[key] = value); +}; + +/** + * Get sum of data in one dimension + * @param {string} dim + */ +listProto.getSum = function (dim /*, stack */) { + var dimData = this._storage[dim]; + var sum = 0; + if (dimData) { + for (var i = 0, len = this.count(); i < len; i++) { + var value = this.get(dim, i /*, stack */); + if (!isNaN(value)) { + sum += value; + } + } + } + return sum; +}; + +/** + * Get median of data in one dimension + * @param {string} dim + */ +listProto.getMedian = function (dim /*, stack */) { + var dimDataArray = []; + // map all data of one dimension + this.each(dim, function (val, idx) { + if (!isNaN(val)) { + dimDataArray.push(val); + } + }); + + // TODO + // Use quick select? + + // immutability & sort + var sortedDimDataArray = [].concat(dimDataArray).sort(function (a, b) { + return a - b; + }); + var len = this.count(); + // calculate median + return len === 0 + ? 0 + : len % 2 === 1 + ? sortedDimDataArray[(len - 1) / 2] + : (sortedDimDataArray[len / 2] + sortedDimDataArray[len / 2 - 1]) / 2; +}; + +// /** +// * Retreive the index with given value +// * @param {string} dim Concrete dimension. +// * @param {number} value +// * @return {number} +// */ +// Currently incorrect: should return dataIndex but not rawIndex. +// Do not fix it until this method is to be used somewhere. +// FIXME Precision of float value +// listProto.indexOf = function (dim, value) { +// var storage = this._storage; +// var dimData = storage[dim]; +// var chunkSize = this._chunkSize; +// if (dimData) { +// for (var i = 0, len = this.count(); i < len; i++) { +// var chunkIndex = Math.floor(i / chunkSize); +// var chunkOffset = i % chunkSize; +// if (dimData[chunkIndex][chunkOffset] === value) { +// return i; +// } +// } +// } +// return -1; +// }; + +/** + * Only support the dimension which inverted index created. + * Do not support other cases until required. + * @param {string} concrete dim + * @param {number|string} value + * @return {number} rawIndex + */ +listProto.rawIndexOf = function (dim, value) { + var invertedIndices = dim && this._invertedIndicesMap[dim]; + if (__DEV__) { + if (!invertedIndices) { + throw new Error('Do not supported yet'); + } + } + var rawIndex = invertedIndices[value]; + if (rawIndex == null || isNaN(rawIndex)) { + return INDEX_NOT_FOUND; + } + return rawIndex; +}; + +/** + * Retreive the index with given name + * @param {number} idx + * @param {number} name + * @return {number} + */ +listProto.indexOfName = function (name) { + for (var i = 0, len = this.count(); i < len; i++) { + if (this.getName(i) === name) { + return i; + } + } + + return -1; +}; + +/** + * Retreive the index with given raw data index + * @param {number} idx + * @param {number} name + * @return {number} + */ +listProto.indexOfRawIndex = function (rawIndex) { + if (!this._indices) { + return rawIndex; + } + + if (rawIndex >= this._rawCount || rawIndex < 0) { + return -1; + } + + // Indices are ascending + var indices = this._indices; + + // If rawIndex === dataIndex + var rawDataIndex = indices[rawIndex]; + if (rawDataIndex != null && rawDataIndex < this._count && rawDataIndex === rawIndex) { + return rawIndex; + } + + var left = 0; + var right = this._count - 1; + while (left <= right) { + var mid = (left + right) / 2 | 0; + if (indices[mid] < rawIndex) { + left = mid + 1; + } + else if (indices[mid] > rawIndex) { + right = mid - 1; + } + else { + return mid; + } + } + return -1; +}; + +/** + * Retreive the index of nearest value + * @param {string} dim + * @param {number} value + * @param {number} [maxDistance=Infinity] + * @return {Array.} Considere multiple points has the same value. + */ +listProto.indicesOfNearest = function (dim, value, maxDistance) { + var storage = this._storage; + var dimData = storage[dim]; + var nearestIndices = []; + + if (!dimData) { + return nearestIndices; + } + + if (maxDistance == null) { + maxDistance = Infinity; + } + + var minDist = Number.MAX_VALUE; + var minDiff = -1; + for (var i = 0, len = this.count(); i < len; i++) { + var diff = value - this.get(dim, i /*, stack */); + var dist = Math.abs(diff); + if (diff <= maxDistance && dist <= minDist) { + // For the case of two data are same on xAxis, which has sequence data. + // Show the nearest index + // https://github.com/ecomfe/echarts/issues/2869 + if (dist < minDist || (diff >= 0 && minDiff < 0)) { + minDist = dist; + minDiff = diff; + nearestIndices.length = 0; + } + nearestIndices.push(i); + } + } + return nearestIndices; +}; + +/** + * Get raw data index + * @param {number} idx + * @return {number} + */ +listProto.getRawIndex = getRawIndexWithoutIndices; + +function getRawIndexWithoutIndices(idx) { + return idx; +} + +function getRawIndexWithIndices(idx) { + if (idx < this._count && idx >= 0) { + return this._indices[idx]; + } + return -1; +} + +/** + * Get raw data item + * @param {number} idx + * @return {number} + */ +listProto.getRawDataItem = function (idx) { + if (!this._rawData.persistent) { + var val = []; + for (var i = 0; i < this.dimensions.length; i++) { + var dim = this.dimensions[i]; + val.push(this.get(dim, idx)); + } + return val; + } + else { + return this._rawData.getItem(this.getRawIndex(idx)); + } +}; + +/** + * @param {number} idx + * @param {boolean} [notDefaultIdx=false] + * @return {string} + */ +listProto.getName = function (idx) { + var rawIndex = this.getRawIndex(idx); + return this._nameList[rawIndex] + || getRawValueFromStore(this, this._nameDimIdx, rawIndex) + || ''; +}; + +/** + * @param {number} idx + * @param {boolean} [notDefaultIdx=false] + * @return {string} + */ +listProto.getId = function (idx) { + return getId(this, this.getRawIndex(idx)); +}; + +function getId(list, rawIndex) { + var id = list._idList[rawIndex]; + if (id == null) { + id = getRawValueFromStore(list, list._idDimIdx, rawIndex); + } + if (id == null) { + // FIXME Check the usage in graph, should not use prefix. + id = ID_PREFIX + rawIndex; + } + return id; +} + +function normalizeDimensions(dimensions) { + if (!isArray(dimensions)) { + dimensions = [dimensions]; + } + return dimensions; +} + +function validateDimensions(list, dims) { + for (var i = 0; i < dims.length; i++) { + // stroage may be empty when no data, so use + // dimensionInfos to check. + if (!list._dimensionInfos[dims[i]]) { + console.error('Unkown dimension ' + dims[i]); + } + } +} + +/** + * Data iteration + * @param {string|Array.} + * @param {Function} cb + * @param {*} [context=this] + * + * @example + * list.each('x', function (x, idx) {}); + * list.each(['x', 'y'], function (x, y, idx) {}); + * list.each(function (idx) {}) + */ +listProto.each = function (dims, cb, context, contextCompat) { + 'use strict'; + + if (!this._count) { + return; + } + + if (typeof dims === 'function') { + contextCompat = context; + context = cb; + cb = dims; + dims = []; + } + + // contextCompat just for compat echarts3 + context = context || contextCompat || this; + + dims = map(normalizeDimensions(dims), this.getDimension, this); + + if (__DEV__) { + validateDimensions(this, dims); + } + + var dimSize = dims.length; + + for (var i = 0; i < this.count(); i++) { + // Simple optimization + switch (dimSize) { + case 0: + cb.call(context, i); + break; + case 1: + cb.call(context, this.get(dims[0], i), i); + break; + case 2: + cb.call(context, this.get(dims[0], i), this.get(dims[1], i), i); + break; + default: + var k = 0; + var value = []; + for (; k < dimSize; k++) { + value[k] = this.get(dims[k], i); + } + // Index + value[k] = i; + cb.apply(context, value); + } + } +}; + +/** + * Data filter + * @param {string|Array.} + * @param {Function} cb + * @param {*} [context=this] + */ +listProto.filterSelf = function (dimensions, cb, context, contextCompat) { + 'use strict'; + + if (!this._count) { + return; + } + + if (typeof dimensions === 'function') { + contextCompat = context; + context = cb; + cb = dimensions; + dimensions = []; + } + + // contextCompat just for compat echarts3 + context = context || contextCompat || this; + + dimensions = map( + normalizeDimensions(dimensions), this.getDimension, this + ); + + if (__DEV__) { + validateDimensions(this, dimensions); + } + + + var count = this.count(); + var Ctor = getIndicesCtor(this); + var newIndices = new Ctor(count); + var value = []; + var dimSize = dimensions.length; + + var offset = 0; + var dim0 = dimensions[0]; + + for (var i = 0; i < count; i++) { + var keep; + var rawIdx = this.getRawIndex(i); + // Simple optimization + if (dimSize === 0) { + keep = cb.call(context, i); + } + else if (dimSize === 1) { + var val = this._getFast(dim0, rawIdx); + keep = cb.call(context, val, i); + } + else { + for (var k = 0; k < dimSize; k++) { + value[k] = this._getFast(dim0, rawIdx); + } + value[k] = i; + keep = cb.apply(context, value); + } + if (keep) { + newIndices[offset++] = rawIdx; + } + } + + // Set indices after filtered. + if (offset < count) { + this._indices = newIndices; + } + this._count = offset; + // Reset data extent + this._extent = {}; + + this.getRawIndex = this._indices ? getRawIndexWithIndices : getRawIndexWithoutIndices; + + return this; +}; + +/** + * Select data in range. (For optimization of filter) + * (Manually inline code, support 5 million data filtering in data zoom.) + */ +listProto.selectRange = function (range) { + 'use strict'; + + if (!this._count) { + return; + } + + var dimensions = []; + for (var dim in range) { + if (range.hasOwnProperty(dim)) { + dimensions.push(dim); + } + } + + if (__DEV__) { + validateDimensions(this, dimensions); + } + + var dimSize = dimensions.length; + if (!dimSize) { + return; + } + + var originalCount = this.count(); + var Ctor = getIndicesCtor(this); + var newIndices = new Ctor(originalCount); + + var offset = 0; + var dim0 = dimensions[0]; + + var min = range[dim0][0]; + var max = range[dim0][1]; + + var quickFinished = false; + if (!this._indices) { + // Extreme optimization for common case. About 2x faster in chrome. + var idx = 0; + if (dimSize === 1) { + var dimStorage = this._storage[dimensions[0]]; + for (var k = 0; k < this._chunkCount; k++) { + var chunkStorage = dimStorage[k]; + var len = Math.min(this._count - k * this._chunkSize, this._chunkSize); + for (var i = 0; i < len; i++) { + var val = chunkStorage[i]; + // NaN will not be filtered. Consider the case, in line chart, empty + // value indicates the line should be broken. But for the case like + // scatter plot, a data item with empty value will not be rendered, + // but the axis extent may be effected if some other dim of the data + // item has value. Fortunately it is not a significant negative effect. + if ( + (val >= min && val <= max) || isNaN(val) + ) { + newIndices[offset++] = idx; + } + idx++; + } + } + quickFinished = true; + } + else if (dimSize === 2) { + var dimStorage = this._storage[dim0]; + var dimStorage2 = this._storage[dimensions[1]]; + var min2 = range[dimensions[1]][0]; + var max2 = range[dimensions[1]][1]; + for (var k = 0; k < this._chunkCount; k++) { + var chunkStorage = dimStorage[k]; + var chunkStorage2 = dimStorage2[k]; + var len = Math.min(this._count - k * this._chunkSize, this._chunkSize); + for (var i = 0; i < len; i++) { + var val = chunkStorage[i]; + var val2 = chunkStorage2[i]; + // Do not filter NaN, see comment above. + if (( + (val >= min && val <= max) || isNaN(val) + ) + && ( + (val2 >= min2 && val2 <= max2) || isNaN(val2) + ) + ) { + newIndices[offset++] = idx; + } + idx++; + } + } + quickFinished = true; + } + } + if (!quickFinished) { + if (dimSize === 1) { + for (var i = 0; i < originalCount; i++) { + var rawIndex = this.getRawIndex(i); + var val = this._getFast(dim0, rawIndex); + // Do not filter NaN, see comment above. + if ( + (val >= min && val <= max) || isNaN(val) + ) { + newIndices[offset++] = rawIndex; + } + } + } + else { + for (var i = 0; i < originalCount; i++) { + var keep = true; + var rawIndex = this.getRawIndex(i); + for (var k = 0; k < dimSize; k++) { + var dimk = dimensions[k]; + var val = this._getFast(dim, rawIndex); + // Do not filter NaN, see comment above. + if (val < range[dimk][0] || val > range[dimk][1]) { + keep = false; + } + } + if (keep) { + newIndices[offset++] = this.getRawIndex(i); + } + } + } + } + + // Set indices after filtered. + if (offset < originalCount) { + this._indices = newIndices; + } + this._count = offset; + // Reset data extent + this._extent = {}; + + this.getRawIndex = this._indices ? getRawIndexWithIndices : getRawIndexWithoutIndices; + + return this; +}; + +/** + * Data mapping to a plain array + * @param {string|Array.} [dimensions] + * @param {Function} cb + * @param {*} [context=this] + * @return {Array} + */ +listProto.mapArray = function (dimensions, cb, context, contextCompat) { + 'use strict'; + + if (typeof dimensions === 'function') { + contextCompat = context; + context = cb; + cb = dimensions; + dimensions = []; + } + + // contextCompat just for compat echarts3 + context = context || contextCompat || this; + + var result = []; + this.each(dimensions, function () { + result.push(cb && cb.apply(this, arguments)); + }, context); + return result; +}; + +// Data in excludeDimensions is copied, otherwise transfered. +function cloneListForMapAndSample(original, excludeDimensions) { + var allDimensions = original.dimensions; + var list = new List( + map(allDimensions, original.getDimensionInfo, original), + original.hostModel + ); + // FIXME If needs stackedOn, value may already been stacked + transferProperties(list, original); + + var storage = list._storage = {}; + var originalStorage = original._storage; + + // Init storage + for (var i = 0; i < allDimensions.length; i++) { + var dim = allDimensions[i]; + if (originalStorage[dim]) { + // Notice that we do not reset invertedIndicesMap here, becuase + // there is no scenario of mapping or sampling ordinal dimension. + if (indexOf(excludeDimensions, dim) >= 0) { + storage[dim] = cloneDimStore(originalStorage[dim]); + list._rawExtent[dim] = getInitialExtent(); + list._extent[dim] = null; + } + else { + // Direct reference for other dimensions + storage[dim] = originalStorage[dim]; + } + } + } + return list; +} + +function cloneDimStore(originalDimStore) { + var newDimStore = new Array(originalDimStore.length); + for (var j = 0; j < originalDimStore.length; j++) { + newDimStore[j] = cloneChunk(originalDimStore[j]); + } + return newDimStore; +} + +function getInitialExtent() { + return [Infinity, -Infinity]; +} + +/** + * Data mapping to a new List with given dimensions + * @param {string|Array.} dimensions + * @param {Function} cb + * @param {*} [context=this] + * @return {Array} + */ +listProto.map = function (dimensions, cb, context, contextCompat) { + 'use strict'; + + // contextCompat just for compat echarts3 + context = context || contextCompat || this; + + dimensions = map( + normalizeDimensions(dimensions), this.getDimension, this + ); + + if (__DEV__) { + validateDimensions(this, dimensions); + } + + var list = cloneListForMapAndSample(this, dimensions); + + // Following properties are all immutable. + // So we can reference to the same value + list._indices = this._indices; + list.getRawIndex = list._indices ? getRawIndexWithIndices : getRawIndexWithoutIndices; + + var storage = list._storage; + + var tmpRetValue = []; + var chunkSize = this._chunkSize; + var dimSize = dimensions.length; + var dataCount = this.count(); + var values = []; + var rawExtent = list._rawExtent; + + for (var dataIndex = 0; dataIndex < dataCount; dataIndex++) { + for (var dimIndex = 0; dimIndex < dimSize; dimIndex++) { + values[dimIndex] = this.get(dimensions[dimIndex], dataIndex /*, stack */); + } + values[dimSize] = dataIndex; + + var retValue = cb && cb.apply(context, values); + if (retValue != null) { + // a number or string (in oridinal dimension)? + if (typeof retValue !== 'object') { + tmpRetValue[0] = retValue; + retValue = tmpRetValue; + } + + var rawIndex = this.getRawIndex(dataIndex); + var chunkIndex = Math.floor(rawIndex / chunkSize); + var chunkOffset = rawIndex % chunkSize; + + for (var i = 0; i < retValue.length; i++) { + var dim = dimensions[i]; + var val = retValue[i]; + var rawExtentOnDim = rawExtent[dim]; + + var dimStore = storage[dim]; + if (dimStore) { + dimStore[chunkIndex][chunkOffset] = val; + } + + if (val < rawExtentOnDim[0]) { + rawExtentOnDim[0] = val; + } + if (val > rawExtentOnDim[1]) { + rawExtentOnDim[1] = val; + } + } + } + } + + return list; +}; + +/** + * Large data down sampling on given dimension + * @param {string} dimension + * @param {number} rate + * @param {Function} sampleValue + * @param {Function} sampleIndex Sample index for name and id + */ +listProto.downSample = function (dimension, rate, sampleValue, sampleIndex) { + var list = cloneListForMapAndSample(this, [dimension]); + var targetStorage = list._storage; + + var frameValues = []; + var frameSize = Math.floor(1 / rate); + + var dimStore = targetStorage[dimension]; + var len = this.count(); + var chunkSize = this._chunkSize; + var rawExtentOnDim = list._rawExtent[dimension]; + + var newIndices = new (getIndicesCtor(this))(len); + + var offset = 0; + for (var i = 0; i < len; i += frameSize) { + // Last frame + if (frameSize > len - i) { + frameSize = len - i; + frameValues.length = frameSize; + } + for (var k = 0; k < frameSize; k++) { + var dataIdx = this.getRawIndex(i + k); + var originalChunkIndex = Math.floor(dataIdx / chunkSize); + var originalChunkOffset = dataIdx % chunkSize; + frameValues[k] = dimStore[originalChunkIndex][originalChunkOffset]; + } + var value = sampleValue(frameValues); + var sampleFrameIdx = this.getRawIndex( + Math.min(i + sampleIndex(frameValues, value) || 0, len - 1) + ); + var sampleChunkIndex = Math.floor(sampleFrameIdx / chunkSize); + var sampleChunkOffset = sampleFrameIdx % chunkSize; + // Only write value on the filtered data + dimStore[sampleChunkIndex][sampleChunkOffset] = value; + + if (value < rawExtentOnDim[0]) { + rawExtentOnDim[0] = value; + } + if (value > rawExtentOnDim[1]) { + rawExtentOnDim[1] = value; + } + + newIndices[offset++] = sampleFrameIdx; + } + + list._count = offset; + list._indices = newIndices; + + list.getRawIndex = getRawIndexWithIndices; + + return list; +}; + +/** + * Get model of one data item. + * + * @param {number} idx + */ +// FIXME Model proxy ? +listProto.getItemModel = function (idx) { + var hostModel = this.hostModel; + return new Model(this.getRawDataItem(idx), hostModel, hostModel && hostModel.ecModel); +}; + +/** + * Create a data differ + * @param {module:echarts/data/List} otherList + * @return {module:echarts/data/DataDiffer} + */ +listProto.diff = function (otherList) { + var thisList = this; + + return new DataDiffer( + otherList ? otherList.getIndices() : [], + this.getIndices(), + function (idx) { + return getId(otherList, idx); + }, + function (idx) { + return getId(thisList, idx); + } + ); +}; +/** + * Get visual property. + * @param {string} key + */ +listProto.getVisual = function (key) { + var visual = this._visual; + return visual && visual[key]; +}; + +/** + * Set visual property + * @param {string|Object} key + * @param {*} [value] + * + * @example + * setVisual('color', color); + * setVisual({ + * 'color': color + * }); + */ +listProto.setVisual = function (key, val) { + if (isObject$4(key)) { + for (var name in key) { + if (key.hasOwnProperty(name)) { + this.setVisual(name, key[name]); + } + } + return; + } + this._visual = this._visual || {}; + this._visual[key] = val; +}; + +/** + * Set layout property. + * @param {string|Object} key + * @param {*} [val] + */ +listProto.setLayout = function (key, val) { + if (isObject$4(key)) { + for (var name in key) { + if (key.hasOwnProperty(name)) { + this.setLayout(name, key[name]); + } + } + return; + } + this._layout[key] = val; +}; + +/** + * Get layout property. + * @param {string} key. + * @return {*} + */ +listProto.getLayout = function (key) { + return this._layout[key]; +}; + +/** + * Get layout of single data item + * @param {number} idx + */ +listProto.getItemLayout = function (idx) { + return this._itemLayouts[idx]; +}; + +/** + * Set layout of single data item + * @param {number} idx + * @param {Object} layout + * @param {boolean=} [merge=false] + */ +listProto.setItemLayout = function (idx, layout, merge$$1) { + this._itemLayouts[idx] = merge$$1 + ? extend(this._itemLayouts[idx] || {}, layout) + : layout; +}; + +/** + * Clear all layout of single data item + */ +listProto.clearItemLayouts = function () { + this._itemLayouts.length = 0; +}; + +/** + * Get visual property of single data item + * @param {number} idx + * @param {string} key + * @param {boolean} [ignoreParent=false] + */ +listProto.getItemVisual = function (idx, key, ignoreParent) { + var itemVisual = this._itemVisuals[idx]; + var val = itemVisual && itemVisual[key]; + if (val == null && !ignoreParent) { + // Use global visual property + return this.getVisual(key); + } + return val; +}; + +/** + * Set visual property of single data item + * + * @param {number} idx + * @param {string|Object} key + * @param {*} [value] + * + * @example + * setItemVisual(0, 'color', color); + * setItemVisual(0, { + * 'color': color + * }); + */ +listProto.setItemVisual = function (idx, key, value) { + var itemVisual = this._itemVisuals[idx] || {}; + var hasItemVisual = this.hasItemVisual; + this._itemVisuals[idx] = itemVisual; + + if (isObject$4(key)) { + for (var name in key) { + if (key.hasOwnProperty(name)) { + itemVisual[name] = key[name]; + hasItemVisual[name] = true; + } + } + return; + } + itemVisual[key] = value; + hasItemVisual[key] = true; +}; + +/** + * Clear itemVisuals and list visual. + */ +listProto.clearAllVisual = function () { + this._visual = {}; + this._itemVisuals = []; + this.hasItemVisual = {}; +}; + +var setItemDataAndSeriesIndex = function (child) { + child.seriesIndex = this.seriesIndex; + child.dataIndex = this.dataIndex; + child.dataType = this.dataType; +}; +/** + * Set graphic element relative to data. It can be set as null + * @param {number} idx + * @param {module:zrender/Element} [el] + */ +listProto.setItemGraphicEl = function (idx, el) { + var hostModel = this.hostModel; + + if (el) { + // Add data index and series index for indexing the data by element + // Useful in tooltip + el.dataIndex = idx; + el.dataType = this.dataType; + el.seriesIndex = hostModel && hostModel.seriesIndex; + if (el.type === 'group') { + el.traverse(setItemDataAndSeriesIndex, el); + } + } + + this._graphicEls[idx] = el; +}; + +/** + * @param {number} idx + * @return {module:zrender/Element} + */ +listProto.getItemGraphicEl = function (idx) { + return this._graphicEls[idx]; +}; + +/** + * @param {Function} cb + * @param {*} context + */ +listProto.eachItemGraphicEl = function (cb, context) { + each$1(this._graphicEls, function (el, idx) { + if (el) { + cb && cb.call(context, el, idx); + } + }); +}; + +/** + * Shallow clone a new list except visual and layout properties, and graph elements. + * New list only change the indices. + */ +listProto.cloneShallow = function (list) { + if (!list) { + var dimensionInfoList = map(this.dimensions, this.getDimensionInfo, this); + list = new List(dimensionInfoList, this.hostModel); + } + + // FIXME + list._storage = this._storage; + + transferProperties(list, this); + + // Clone will not change the data extent and indices + if (this._indices) { + var Ctor = this._indices.constructor; + list._indices = new Ctor(this._indices); + } + else { + list._indices = null; + } + list.getRawIndex = list._indices ? getRawIndexWithIndices : getRawIndexWithoutIndices; + + return list; +}; + +/** + * Wrap some method to add more feature + * @param {string} methodName + * @param {Function} injectFunction + */ +listProto.wrapMethod = function (methodName, injectFunction) { + var originalMethod = this[methodName]; + if (typeof originalMethod !== 'function') { + return; + } + this.__wrappedMethods = this.__wrappedMethods || []; + this.__wrappedMethods.push(methodName); + this[methodName] = function () { + var res = originalMethod.apply(this, arguments); + return injectFunction.apply(this, [res].concat(slice(arguments))); + }; +}; + +// Methods that create a new list based on this list should be listed here. +// Notice that those method should `RETURN` the new list. +listProto.TRANSFERABLE_METHODS = ['cloneShallow', 'downSample', 'map']; +// Methods that change indices of this list should be listed here. +listProto.CHANGABLE_METHODS = ['filterSelf', 'selectRange']; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @deprecated + * Use `echarts/data/helper/createDimensions` instead. + */ + +/** + * @see {module:echarts/test/ut/spec/data/completeDimensions} + * + * Complete the dimensions array, by user defined `dimension` and `encode`, + * and guessing from the data structure. + * If no 'value' dimension specified, the first no-named dimension will be + * named as 'value'. + * + * @param {Array.} sysDims Necessary dimensions, like ['x', 'y'], which + * provides not only dim template, but also default order. + * properties: 'name', 'type', 'displayName'. + * `name` of each item provides default coord name. + * [{dimsDef: [string|Object, ...]}, ...] dimsDef of sysDim item provides default dim name, and + * provide dims count that the sysDim required. + * [{ordinalMeta}] can be specified. + * @param {module:echarts/data/Source|Array|Object} source or data (for compatibal with pervious) + * @param {Object} [opt] + * @param {Array.} [opt.dimsDef] option.series.dimensions User defined dimensions + * For example: ['asdf', {name, type}, ...]. + * @param {Object|HashMap} [opt.encodeDef] option.series.encode {x: 2, y: [3, 1], tooltip: [1, 2], label: 3} + * @param {string} [opt.generateCoord] Generate coord dim with the given name. + * If not specified, extra dim names will be: + * 'value', 'value0', 'value1', ... + * @param {number} [opt.generateCoordCount] By default, the generated dim name is `generateCoord`. + * If `generateCoordCount` specified, the generated dim names will be: + * `generateCoord` + 0, `generateCoord` + 1, ... + * can be Infinity, indicate that use all of the remain columns. + * @param {number} [opt.dimCount] If not specified, guess by the first data item. + * @param {number} [opt.encodeDefaulter] If not specified, auto find the next available data dim. + * @return {Array.} [{ + * name: string mandatory, + * displayName: string, the origin name in dimsDef, see source helper. + * If displayName given, the tooltip will displayed vertically. + * coordDim: string mandatory, + * coordDimIndex: number mandatory, + * type: string optional, + * otherDims: { never null/undefined + * tooltip: number optional, + * label: number optional, + * itemName: number optional, + * seriesName: number optional, + * }, + * isExtraCoord: boolean true if coord is generated + * (not specified in encode and not series specified) + * other props ... + * }] + */ +function completeDimensions(sysDims, source, opt) { + if (!Source.isInstance(source)) { + source = Source.seriesDataToSource(source); + } + + opt = opt || {}; + sysDims = (sysDims || []).slice(); + var dimsDef = (opt.dimsDef || []).slice(); + var encodeDef = createHashMap(opt.encodeDef); + var dataDimNameMap = createHashMap(); + var coordDimNameMap = createHashMap(); + // var valueCandidate; + var result = []; + + var dimCount = getDimCount(source, sysDims, dimsDef, opt.dimCount); + + // Apply user defined dims (`name` and `type`) and init result. + for (var i = 0; i < dimCount; i++) { + var dimDefItem = dimsDef[i] = extend( + {}, isObject$1(dimsDef[i]) ? dimsDef[i] : {name: dimsDef[i]} + ); + var userDimName = dimDefItem.name; + var resultItem = result[i] = {otherDims: {}}; + // Name will be applied later for avoiding duplication. + if (userDimName != null && dataDimNameMap.get(userDimName) == null) { + // Only if `series.dimensions` is defined in option + // displayName, will be set, and dimension will be diplayed vertically in + // tooltip by default. + resultItem.name = resultItem.displayName = userDimName; + dataDimNameMap.set(userDimName, i); + } + dimDefItem.type != null && (resultItem.type = dimDefItem.type); + dimDefItem.displayName != null && (resultItem.displayName = dimDefItem.displayName); + } + + // Set `coordDim` and `coordDimIndex` by `encodeDef` and normalize `encodeDef`. + encodeDef.each(function (dataDims, coordDim) { + dataDims = normalizeToArray(dataDims).slice(); + + // Note: It is allowed that `dataDims.length` is `0`, e.g., options is + // `{encode: {x: -1, y: 1}}`. Should not filter anything in + // this case. + if (dataDims.length === 1 && !isString(dataDims[0]) && dataDims[0] < 0) { + encodeDef.set(coordDim, false); + return; + } + + var validDataDims = encodeDef.set(coordDim, []); + each$1(dataDims, function (resultDimIdx, idx) { + // The input resultDimIdx can be dim name or index. + isString(resultDimIdx) && (resultDimIdx = dataDimNameMap.get(resultDimIdx)); + if (resultDimIdx != null && resultDimIdx < dimCount) { + validDataDims[idx] = resultDimIdx; + applyDim(result[resultDimIdx], coordDim, idx); + } + }); + }); + + // Apply templetes and default order from `sysDims`. + var availDimIdx = 0; + each$1(sysDims, function (sysDimItem, sysDimIndex) { + var coordDim; + var sysDimItem; + var sysDimItemDimsDef; + var sysDimItemOtherDims; + if (isString(sysDimItem)) { + coordDim = sysDimItem; + sysDimItem = {}; + } + else { + coordDim = sysDimItem.name; + var ordinalMeta = sysDimItem.ordinalMeta; + sysDimItem.ordinalMeta = null; + sysDimItem = clone(sysDimItem); + sysDimItem.ordinalMeta = ordinalMeta; + // `coordDimIndex` should not be set directly. + sysDimItemDimsDef = sysDimItem.dimsDef; + sysDimItemOtherDims = sysDimItem.otherDims; + sysDimItem.name = sysDimItem.coordDim = sysDimItem.coordDimIndex + = sysDimItem.dimsDef = sysDimItem.otherDims = null; + } + + var dataDims = encodeDef.get(coordDim); + + // negative resultDimIdx means no need to mapping. + if (dataDims === false) { + return; + } + + var dataDims = normalizeToArray(dataDims); + + // dimensions provides default dim sequences. + if (!dataDims.length) { + for (var i = 0; i < (sysDimItemDimsDef && sysDimItemDimsDef.length || 1); i++) { + while (availDimIdx < result.length && result[availDimIdx].coordDim != null) { + availDimIdx++; + } + availDimIdx < result.length && dataDims.push(availDimIdx++); + } + } + + // Apply templates. + each$1(dataDims, function (resultDimIdx, coordDimIndex) { + var resultItem = result[resultDimIdx]; + applyDim(defaults(resultItem, sysDimItem), coordDim, coordDimIndex); + if (resultItem.name == null && sysDimItemDimsDef) { + var sysDimItemDimsDefItem = sysDimItemDimsDef[coordDimIndex]; + !isObject$1(sysDimItemDimsDefItem) && (sysDimItemDimsDefItem = {name: sysDimItemDimsDefItem}); + resultItem.name = resultItem.displayName = sysDimItemDimsDefItem.name; + resultItem.defaultTooltip = sysDimItemDimsDefItem.defaultTooltip; + } + // FIXME refactor, currently only used in case: {otherDims: {tooltip: false}} + sysDimItemOtherDims && defaults(resultItem.otherDims, sysDimItemOtherDims); + }); + }); + + function applyDim(resultItem, coordDim, coordDimIndex) { + if (OTHER_DIMENSIONS.get(coordDim) != null) { + resultItem.otherDims[coordDim] = coordDimIndex; + } + else { + resultItem.coordDim = coordDim; + resultItem.coordDimIndex = coordDimIndex; + coordDimNameMap.set(coordDim, true); + } + } + + // Make sure the first extra dim is 'value'. + var generateCoord = opt.generateCoord; + var generateCoordCount = opt.generateCoordCount; + var fromZero = generateCoordCount != null; + generateCoordCount = generateCoord ? (generateCoordCount || 1) : 0; + var extra = generateCoord || 'value'; + + // Set dim `name` and other `coordDim` and other props. + for (var resultDimIdx = 0; resultDimIdx < dimCount; resultDimIdx++) { + var resultItem = result[resultDimIdx] = result[resultDimIdx] || {}; + var coordDim = resultItem.coordDim; + + if (coordDim == null) { + resultItem.coordDim = genName( + extra, coordDimNameMap, fromZero + ); + resultItem.coordDimIndex = 0; + if (!generateCoord || generateCoordCount <= 0) { + resultItem.isExtraCoord = true; + } + generateCoordCount--; + } + + resultItem.name == null && (resultItem.name = genName( + resultItem.coordDim, + dataDimNameMap + )); + + if (resultItem.type == null && guessOrdinal(source, resultDimIdx, resultItem.name)) { + resultItem.type = 'ordinal'; + } + } + + return result; +} + +// ??? TODO +// Originally detect dimCount by data[0]. Should we +// optimize it to only by sysDims and dimensions and encode. +// So only necessary dims will be initialized. +// But +// (1) custom series should be considered. where other dims +// may be visited. +// (2) sometimes user need to calcualte bubble size or use visualMap +// on other dimensions besides coordSys needed. +// So, dims that is not used by system, should be shared in storage? +function getDimCount(source, sysDims, dimsDef, optDimCount) { + // Note that the result dimCount should not small than columns count + // of data, otherwise `dataDimNameMap` checking will be incorrect. + var dimCount = Math.max( + source.dimensionsDetectCount || 1, + sysDims.length, + dimsDef.length, + optDimCount || 0 + ); + each$1(sysDims, function (sysDimItem) { + var sysDimItemDimsDef = sysDimItem.dimsDef; + sysDimItemDimsDef && (dimCount = Math.max(dimCount, sysDimItemDimsDef.length)); + }); + return dimCount; +} + +function genName(name, map$$1, fromZero) { + if (fromZero || map$$1.get(name) != null) { + var i = 0; + while (map$$1.get(name + i) != null) { + i++; + } + name += i; + } + map$$1.set(name, true); + return name; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Substitute `completeDimensions`. + * `completeDimensions` is to be deprecated. + */ +/** + * @param {module:echarts/data/Source|module:echarts/data/List} source or data. + * @param {Object|Array} [opt] + * @param {Array.} [opt.coordDimensions=[]] + * @param {number} [opt.dimensionsCount] + * @param {string} [opt.generateCoord] + * @param {string} [opt.generateCoordCount] + * @param {Array.} [opt.dimensionsDefine=source.dimensionsDefine] Overwrite source define. + * @param {Object|HashMap} [opt.encodeDefine=source.encodeDefine] Overwrite source define. + * @return {Array.} dimensionsInfo + */ +var createDimensions = function (source, opt) { + opt = opt || {}; + return completeDimensions(opt.coordDimensions || [], source, { + dimsDef: opt.dimensionsDefine || source.dimensionsDefine, + encodeDef: opt.encodeDefine || source.encodeDefine, + dimCount: opt.dimensionsCount, + generateCoord: opt.generateCoord, + generateCoordCount: opt.generateCoordCount + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Note that it is too complicated to support 3d stack by value + * (have to create two-dimension inverted index), so in 3d case + * we just support that stacked by index. + * + * @param {module:echarts/model/Series} seriesModel + * @param {Array.} dimensionInfoList The same as the input of . + * The input dimensionInfoList will be modified. + * @param {Object} [opt] + * @param {boolean} [opt.stackedCoordDimension=''] Specify a coord dimension if needed. + * @param {boolean} [opt.byIndex=false] + * @return {Object} calculationInfo + * { + * stackedDimension: string + * stackedByDimension: string + * isStackedByIndex: boolean + * stackedOverDimension: string + * stackResultDimension: string + * } + */ +function enableDataStack(seriesModel, dimensionInfoList, opt) { + opt = opt || {}; + var byIndex = opt.byIndex; + var stackedCoordDimension = opt.stackedCoordDimension; + + // Compatibal: when `stack` is set as '', do not stack. + var mayStack = !!(seriesModel && seriesModel.get('stack')); + var stackedByDimInfo; + var stackedDimInfo; + var stackResultDimension; + var stackedOverDimension; + + each$1(dimensionInfoList, function (dimensionInfo, index) { + if (isString(dimensionInfo)) { + dimensionInfoList[index] = dimensionInfo = {name: dimensionInfo}; + } + + if (mayStack && !dimensionInfo.isExtraCoord) { + // Find the first ordinal dimension as the stackedByDimInfo. + if (!byIndex && !stackedByDimInfo && dimensionInfo.ordinalMeta) { + stackedByDimInfo = dimensionInfo; + } + // Find the first stackable dimension as the stackedDimInfo. + if (!stackedDimInfo + && dimensionInfo.type !== 'ordinal' + && dimensionInfo.type !== 'time' + && (!stackedCoordDimension || stackedCoordDimension === dimensionInfo.coordDim) + ) { + stackedDimInfo = dimensionInfo; + } + } + }); + + if (stackedDimInfo && !byIndex && !stackedByDimInfo) { + // Compatible with previous design, value axis (time axis) only stack by index. + // It may make sense if the user provides elaborately constructed data. + byIndex = true; + } + + // Add stack dimension, they can be both calculated by coordinate system in `unionExtent`. + // That put stack logic in List is for using conveniently in echarts extensions, but it + // might not be a good way. + if (stackedDimInfo) { + // Use a weird name that not duplicated with other names. + stackResultDimension = '__\0ecstackresult'; + stackedOverDimension = '__\0ecstackedover'; + + // Create inverted index to fast query index by value. + if (stackedByDimInfo) { + stackedByDimInfo.createInvertedIndices = true; + } + + var stackedDimCoordDim = stackedDimInfo.coordDim; + var stackedDimType = stackedDimInfo.type; + var stackedDimCoordIndex = 0; + + each$1(dimensionInfoList, function (dimensionInfo) { + if (dimensionInfo.coordDim === stackedDimCoordDim) { + stackedDimCoordIndex++; + } + }); + + dimensionInfoList.push({ + name: stackResultDimension, + coordDim: stackedDimCoordDim, + coordDimIndex: stackedDimCoordIndex, + type: stackedDimType, + isExtraCoord: true, + isCalculationCoord: true + }); + + stackedDimCoordIndex++; + + dimensionInfoList.push({ + name: stackedOverDimension, + // This dimension contains stack base (generally, 0), so do not set it as + // `stackedDimCoordDim` to avoid extent calculation, consider log scale. + coordDim: stackedOverDimension, + coordDimIndex: stackedDimCoordIndex, + type: stackedDimType, + isExtraCoord: true, + isCalculationCoord: true + }); + } + + return { + stackedDimension: stackedDimInfo && stackedDimInfo.name, + stackedByDimension: stackedByDimInfo && stackedByDimInfo.name, + isStackedByIndex: byIndex, + stackedOverDimension: stackedOverDimension, + stackResultDimension: stackResultDimension + }; +} + +/** + * @param {module:echarts/data/List} data + * @param {string} stackedDim + */ +function isDimensionStacked(data, stackedDim /*, stackedByDim*/) { + // Each single series only maps to one pair of axis. So we do not need to + // check stackByDim, whatever stacked by a dimension or stacked by index. + return !!stackedDim && stackedDim === data.getCalculationInfo('stackedDimension'); + // && ( + // stackedByDim != null + // ? stackedByDim === data.getCalculationInfo('stackedByDimension') + // : data.getCalculationInfo('isStackedByIndex') + // ); +} + +/** + * @param {module:echarts/data/List} data + * @param {string} targetDim + * @param {string} [stackedByDim] If not input this parameter, check whether + * stacked by index. + * @return {string} dimension + */ +function getStackedDimension(data, targetDim) { + return isDimensionStacked(data, targetDim) + ? data.getCalculationInfo('stackResultDimension') + : targetDim; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @param {module:echarts/data/Source|Array} source Or raw data. + * @param {module:echarts/model/Series} seriesModel + * @param {Object} [opt] + * @param {string} [opt.generateCoord] + */ +function createListFromArray(source, seriesModel, opt) { + opt = opt || {}; + + if (!Source.isInstance(source)) { + source = Source.seriesDataToSource(source); + } + + var coordSysName = seriesModel.get('coordinateSystem'); + var registeredCoordSys = CoordinateSystemManager.get(coordSysName); + + var coordSysDefine = getCoordSysDefineBySeries(seriesModel); + + var coordSysDimDefs; + + if (coordSysDefine) { + coordSysDimDefs = map(coordSysDefine.coordSysDims, function (dim) { + var dimInfo = {name: dim}; + var axisModel = coordSysDefine.axisMap.get(dim); + if (axisModel) { + var axisType = axisModel.get('type'); + dimInfo.type = getDimensionTypeByAxis(axisType); + // dimInfo.stackable = isStackable(axisType); + } + return dimInfo; + }); + } + + if (!coordSysDimDefs) { + // Get dimensions from registered coordinate system + coordSysDimDefs = (registeredCoordSys && ( + registeredCoordSys.getDimensionsInfo + ? registeredCoordSys.getDimensionsInfo() + : registeredCoordSys.dimensions.slice() + )) || ['x', 'y']; + } + + var dimInfoList = createDimensions(source, { + coordDimensions: coordSysDimDefs, + generateCoord: opt.generateCoord + }); + + var firstCategoryDimIndex; + var hasNameEncode; + coordSysDefine && each$1(dimInfoList, function (dimInfo, dimIndex) { + var coordDim = dimInfo.coordDim; + var categoryAxisModel = coordSysDefine.categoryAxisMap.get(coordDim); + if (categoryAxisModel) { + if (firstCategoryDimIndex == null) { + firstCategoryDimIndex = dimIndex; + } + dimInfo.ordinalMeta = categoryAxisModel.getOrdinalMeta(); + } + if (dimInfo.otherDims.itemName != null) { + hasNameEncode = true; + } + }); + if (!hasNameEncode && firstCategoryDimIndex != null) { + dimInfoList[firstCategoryDimIndex].otherDims.itemName = 0; + } + + var stackCalculationInfo = enableDataStack(seriesModel, dimInfoList); + + var list = new List(dimInfoList, seriesModel); + + list.setCalculationInfo(stackCalculationInfo); + + var dimValueGetter = (firstCategoryDimIndex != null && isNeedCompleteOrdinalData(source)) + ? function (itemOpt, dimName, dataIndex, dimIndex) { + // Use dataIndex as ordinal value in categoryAxis + return dimIndex === firstCategoryDimIndex + ? dataIndex + : this.defaultDimValueGetter(itemOpt, dimName, dataIndex, dimIndex); + } + : null; + + list.hasItemOption = false; + list.initData(source, null, dimValueGetter); + + return list; +} + +function isNeedCompleteOrdinalData(source) { + if (source.sourceFormat === SOURCE_FORMAT_ORIGINAL) { + var sampleItem = firstDataNotNull(source.data || []); + return sampleItem != null + && !isArray(getDataItemValue(sampleItem)); + } +} + +function firstDataNotNull(data) { + var i = 0; + while (i < data.length && data[i] == null) { + i++; + } + return data[i]; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * // Scale class management + * @module echarts/scale/Scale + */ + +/** + * @param {Object} [setting] + */ +function Scale(setting) { + this._setting = setting || {}; + + /** + * Extent + * @type {Array.} + * @protected + */ + this._extent = [Infinity, -Infinity]; + + /** + * Step is calculated in adjustExtent + * @type {Array.} + * @protected + */ + this._interval = 0; + + this.init && this.init.apply(this, arguments); +} + +/** + * Parse input val to valid inner number. + * @param {*} val + * @return {number} + */ +Scale.prototype.parse = function (val) { + // Notice: This would be a trap here, If the implementation + // of this method depends on extent, and this method is used + // before extent set (like in dataZoom), it would be wrong. + // Nevertheless, parse does not depend on extent generally. + return val; +}; + +Scale.prototype.getSetting = function (name) { + return this._setting[name]; +}; + +Scale.prototype.contain = function (val) { + var extent = this._extent; + return val >= extent[0] && val <= extent[1]; +}; + +/** + * Normalize value to linear [0, 1], return 0.5 if extent span is 0 + * @param {number} val + * @return {number} + */ +Scale.prototype.normalize = function (val) { + var extent = this._extent; + if (extent[1] === extent[0]) { + return 0.5; + } + return (val - extent[0]) / (extent[1] - extent[0]); +}; + +/** + * Scale normalized value + * @param {number} val + * @return {number} + */ +Scale.prototype.scale = function (val) { + var extent = this._extent; + return val * (extent[1] - extent[0]) + extent[0]; +}; + +/** + * Set extent from data + * @param {Array.} other + */ +Scale.prototype.unionExtent = function (other) { + var extent = this._extent; + other[0] < extent[0] && (extent[0] = other[0]); + other[1] > extent[1] && (extent[1] = other[1]); + // not setExtent because in log axis it may transformed to power + // this.setExtent(extent[0], extent[1]); +}; + +/** + * Set extent from data + * @param {module:echarts/data/List} data + * @param {string} dim + */ +Scale.prototype.unionExtentFromData = function (data, dim) { + this.unionExtent(data.getApproximateExtent(dim)); +}; + +/** + * Get extent + * @return {Array.} + */ +Scale.prototype.getExtent = function () { + return this._extent.slice(); +}; + +/** + * Set extent + * @param {number} start + * @param {number} end + */ +Scale.prototype.setExtent = function (start, end) { + var thisExtent = this._extent; + if (!isNaN(start)) { + thisExtent[0] = start; + } + if (!isNaN(end)) { + thisExtent[1] = end; + } +}; + +/** + * When axis extent depends on data and no data exists, + * axis ticks should not be drawn, which is named 'blank'. + */ +Scale.prototype.isBlank = function () { + return this._isBlank; +}, + +/** + * When axis extent depends on data and no data exists, + * axis ticks should not be drawn, which is named 'blank'. + */ +Scale.prototype.setBlank = function (isBlank) { + this._isBlank = isBlank; +}; + +/** + * @abstract + * @param {*} tick + * @return {string} label of the tick. + */ +Scale.prototype.getLabel = null; + + +enableClassExtend(Scale); +enableClassManagement(Scale, { + registerWhenExtend: true +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @constructor + * @param {Object} [opt] + * @param {Object} [opt.categories=[]] + * @param {Object} [opt.needCollect=false] + * @param {Object} [opt.deduplication=false] + */ +function OrdinalMeta(opt) { + + /** + * @readOnly + * @type {Array.} + */ + this.categories = opt.categories || []; + + /** + * @private + * @type {boolean} + */ + this._needCollect = opt.needCollect; + + /** + * @private + * @type {boolean} + */ + this._deduplication = opt.deduplication; + + /** + * @private + * @type {boolean} + */ + this._map; +} + +/** + * @param {module:echarts/model/Model} axisModel + * @return {module:echarts/data/OrdinalMeta} + */ +OrdinalMeta.createByAxisModel = function (axisModel) { + var option = axisModel.option; + var data = option.data; + var categories = data && map(data, getName); + + return new OrdinalMeta({ + categories: categories, + needCollect: !categories, + // deduplication is default in axis. + deduplication: option.dedplication !== false + }); +}; + +var proto$1 = OrdinalMeta.prototype; + +/** + * @param {string} category + * @return {number} ordinal + */ +proto$1.getOrdinal = function (category) { + return getOrCreateMap(this).get(category); +}; + +/** + * @param {*} category + * @return {number} The ordinal. If not found, return NaN. + */ +proto$1.parseAndCollect = function (category) { + var index; + var needCollect = this._needCollect; + + // The value of category dim can be the index of the given category set. + // This feature is only supported when !needCollect, because we should + // consider a common case: a value is 2017, which is a number but is + // expected to be tread as a category. This case usually happen in dataset, + // where it happent to be no need of the index feature. + if (typeof category !== 'string' && !needCollect) { + return category; + } + + // Optimize for the scenario: + // category is ['2012-01-01', '2012-01-02', ...], where the input + // data has been ensured not duplicate and is large data. + // Notice, if a dataset dimension provide categroies, usually echarts + // should remove duplication except user tell echarts dont do that + // (set axis.deduplication = false), because echarts do not know whether + // the values in the category dimension has duplication (consider the + // parallel-aqi example) + if (needCollect && !this._deduplication) { + index = this.categories.length; + this.categories[index] = category; + return index; + } + + var map$$1 = getOrCreateMap(this); + index = map$$1.get(category); + + if (index == null) { + if (needCollect) { + index = this.categories.length; + this.categories[index] = category; + map$$1.set(category, index); + } + else { + index = NaN; + } + } + + return index; +}; + +// Consider big data, do not create map until needed. +function getOrCreateMap(ordinalMeta) { + return ordinalMeta._map || ( + ordinalMeta._map = createHashMap(ordinalMeta.categories) + ); +} + +function getName(obj) { + if (isObject$1(obj) && obj.value != null) { + return obj.value; + } + else { + return obj + ''; + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Linear continuous scale + * @module echarts/coord/scale/Ordinal + * + * http://en.wikipedia.org/wiki/Level_of_measurement + */ + +// FIXME only one data + +var scaleProto = Scale.prototype; + +var OrdinalScale = Scale.extend({ + + type: 'ordinal', + + /** + * @param {module:echarts/data/OrdianlMeta|Array.} ordinalMeta + */ + init: function (ordinalMeta, extent) { + // Caution: Should not use instanceof, consider ec-extensions using + // import approach to get OrdinalMeta class. + if (!ordinalMeta || isArray(ordinalMeta)) { + ordinalMeta = new OrdinalMeta({categories: ordinalMeta}); + } + this._ordinalMeta = ordinalMeta; + this._extent = extent || [0, ordinalMeta.categories.length - 1]; + }, + + parse: function (val) { + return typeof val === 'string' + ? this._ordinalMeta.getOrdinal(val) + // val might be float. + : Math.round(val); + }, + + contain: function (rank) { + rank = this.parse(rank); + return scaleProto.contain.call(this, rank) + && this._ordinalMeta.categories[rank] != null; + }, + + /** + * Normalize given rank or name to linear [0, 1] + * @param {number|string} [val] + * @return {number} + */ + normalize: function (val) { + return scaleProto.normalize.call(this, this.parse(val)); + }, + + scale: function (val) { + return Math.round(scaleProto.scale.call(this, val)); + }, + + /** + * @return {Array} + */ + getTicks: function () { + var ticks = []; + var extent = this._extent; + var rank = extent[0]; + + while (rank <= extent[1]) { + ticks.push(rank); + rank++; + } + + return ticks; + }, + + /** + * Get item on rank n + * @param {number} n + * @return {string} + */ + getLabel: function (n) { + if (!this.isBlank()) { + // Note that if no data, ordinalMeta.categories is an empty array. + return this._ordinalMeta.categories[n]; + } + }, + + /** + * @return {number} + */ + count: function () { + return this._extent[1] - this._extent[0] + 1; + }, + + /** + * @override + */ + unionExtentFromData: function (data, dim) { + this.unionExtent(data.getApproximateExtent(dim)); + }, + + getOrdinalMeta: function () { + return this._ordinalMeta; + }, + + niceTicks: noop, + niceExtent: noop +}); + +/** + * @return {module:echarts/scale/Time} + */ +OrdinalScale.create = function () { + return new OrdinalScale(); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * For testable. + */ + +var roundNumber$1 = round$1; + +/** + * @param {Array.} extent Both extent[0] and extent[1] should be valid number. + * Should be extent[0] < extent[1]. + * @param {number} splitNumber splitNumber should be >= 1. + * @param {number} [minInterval] + * @param {number} [maxInterval] + * @return {Object} {interval, intervalPrecision, niceTickExtent} + */ +function intervalScaleNiceTicks(extent, splitNumber, minInterval, maxInterval) { + var result = {}; + var span = extent[1] - extent[0]; + + var interval = result.interval = nice(span / splitNumber, true); + if (minInterval != null && interval < minInterval) { + interval = result.interval = minInterval; + } + if (maxInterval != null && interval > maxInterval) { + interval = result.interval = maxInterval; + } + // Tow more digital for tick. + var precision = result.intervalPrecision = getIntervalPrecision(interval); + // Niced extent inside original extent + var niceTickExtent = result.niceTickExtent = [ + roundNumber$1(Math.ceil(extent[0] / interval) * interval, precision), + roundNumber$1(Math.floor(extent[1] / interval) * interval, precision) + ]; + + fixExtent(niceTickExtent, extent); + + return result; +} + +/** + * @param {number} interval + * @return {number} interval precision + */ +function getIntervalPrecision(interval) { + // Tow more digital for tick. + return getPrecisionSafe(interval) + 2; +} + +function clamp(niceTickExtent, idx, extent) { + niceTickExtent[idx] = Math.max(Math.min(niceTickExtent[idx], extent[1]), extent[0]); +} + +// In some cases (e.g., splitNumber is 1), niceTickExtent may be out of extent. +function fixExtent(niceTickExtent, extent) { + !isFinite(niceTickExtent[0]) && (niceTickExtent[0] = extent[0]); + !isFinite(niceTickExtent[1]) && (niceTickExtent[1] = extent[1]); + clamp(niceTickExtent, 0, extent); + clamp(niceTickExtent, 1, extent); + if (niceTickExtent[0] > niceTickExtent[1]) { + niceTickExtent[0] = niceTickExtent[1]; + } +} + +function intervalScaleGetTicks(interval, extent, niceTickExtent, intervalPrecision) { + var ticks = []; + + // If interval is 0, return []; + if (!interval) { + return ticks; + } + + // Consider this case: using dataZoom toolbox, zoom and zoom. + var safeLimit = 10000; + + if (extent[0] < niceTickExtent[0]) { + ticks.push(extent[0]); + } + var tick = niceTickExtent[0]; + + while (tick <= niceTickExtent[1]) { + ticks.push(tick); + // Avoid rounding error + tick = roundNumber$1(tick + interval, intervalPrecision); + if (tick === ticks[ticks.length - 1]) { + // Consider out of safe float point, e.g., + // -3711126.9907707 + 2e-10 === -3711126.9907707 + break; + } + if (ticks.length > safeLimit) { + return []; + } + } + // Consider this case: the last item of ticks is smaller + // than niceTickExtent[1] and niceTickExtent[1] === extent[1]. + if (extent[1] > (ticks.length ? ticks[ticks.length - 1] : niceTickExtent[1])) { + ticks.push(extent[1]); + } + + return ticks; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Interval scale + * @module echarts/scale/Interval + */ + + +var roundNumber = round$1; + +/** + * @alias module:echarts/coord/scale/Interval + * @constructor + */ +var IntervalScale = Scale.extend({ + + type: 'interval', + + _interval: 0, + + _intervalPrecision: 2, + + setExtent: function (start, end) { + var thisExtent = this._extent; + //start,end may be a Number like '25',so... + if (!isNaN(start)) { + thisExtent[0] = parseFloat(start); + } + if (!isNaN(end)) { + thisExtent[1] = parseFloat(end); + } + }, + + unionExtent: function (other) { + var extent = this._extent; + other[0] < extent[0] && (extent[0] = other[0]); + other[1] > extent[1] && (extent[1] = other[1]); + + // unionExtent may called by it's sub classes + IntervalScale.prototype.setExtent.call(this, extent[0], extent[1]); + }, + /** + * Get interval + */ + getInterval: function () { + return this._interval; + }, + + /** + * Set interval + */ + setInterval: function (interval) { + this._interval = interval; + // Dropped auto calculated niceExtent and use user setted extent + // We assume user wan't to set both interval, min, max to get a better result + this._niceExtent = this._extent.slice(); + + this._intervalPrecision = getIntervalPrecision(interval); + }, + + /** + * @return {Array.} + */ + getTicks: function () { + return intervalScaleGetTicks( + this._interval, this._extent, this._niceExtent, this._intervalPrecision + ); + }, + + /** + * @param {number} data + * @param {Object} [opt] + * @param {number|string} [opt.precision] If 'auto', use nice presision. + * @param {boolean} [opt.pad] returns 1.50 but not 1.5 if precision is 2. + * @return {string} + */ + getLabel: function (data, opt) { + if (data == null) { + return ''; + } + + var precision = opt && opt.precision; + + if (precision == null) { + precision = getPrecisionSafe(data) || 0; + } + else if (precision === 'auto') { + // Should be more precise then tick. + precision = this._intervalPrecision; + } + + // (1) If `precision` is set, 12.005 should be display as '12.00500'. + // (2) Use roundNumber (toFixed) to avoid scientific notation like '3.5e-7'. + data = roundNumber(data, precision, true); + + return addCommas(data); + }, + + /** + * Update interval and extent of intervals for nice ticks + * + * @param {number} [splitNumber = 5] Desired number of ticks + * @param {number} [minInterval] + * @param {number} [maxInterval] + */ + niceTicks: function (splitNumber, minInterval, maxInterval) { + splitNumber = splitNumber || 5; + var extent = this._extent; + var span = extent[1] - extent[0]; + if (!isFinite(span)) { + return; + } + // User may set axis min 0 and data are all negative + // FIXME If it needs to reverse ? + if (span < 0) { + span = -span; + extent.reverse(); + } + + var result = intervalScaleNiceTicks( + extent, splitNumber, minInterval, maxInterval + ); + + this._intervalPrecision = result.intervalPrecision; + this._interval = result.interval; + this._niceExtent = result.niceTickExtent; + }, + + /** + * Nice extent. + * @param {Object} opt + * @param {number} [opt.splitNumber = 5] Given approx tick number + * @param {boolean} [opt.fixMin=false] + * @param {boolean} [opt.fixMax=false] + * @param {boolean} [opt.minInterval] + * @param {boolean} [opt.maxInterval] + */ + niceExtent: function (opt) { + var extent = this._extent; + // If extent start and end are same, expand them + if (extent[0] === extent[1]) { + if (extent[0] !== 0) { + // Expand extent + var expandSize = extent[0]; + // In the fowllowing case + // Axis has been fixed max 100 + // Plus data are all 100 and axis extent are [100, 100]. + // Extend to the both side will cause expanded max is larger than fixed max. + // So only expand to the smaller side. + if (!opt.fixMax) { + extent[1] += expandSize / 2; + extent[0] -= expandSize / 2; + } + else { + extent[0] -= expandSize / 2; + } + } + else { + extent[1] = 1; + } + } + var span = extent[1] - extent[0]; + // If there are no data and extent are [Infinity, -Infinity] + if (!isFinite(span)) { + extent[0] = 0; + extent[1] = 1; + } + + this.niceTicks(opt.splitNumber, opt.minInterval, opt.maxInterval); + + // var extent = this._extent; + var interval = this._interval; + + if (!opt.fixMin) { + extent[0] = roundNumber(Math.floor(extent[0] / interval) * interval); + } + if (!opt.fixMax) { + extent[1] = roundNumber(Math.ceil(extent[1] / interval) * interval); + } + } +}); + +/** + * @return {module:echarts/scale/Time} + */ +IntervalScale.create = function () { + return new IntervalScale(); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* global Float32Array */ + +var STACK_PREFIX = '__ec_stack_'; +var LARGE_BAR_MIN_WIDTH = 0.5; + +var LargeArr = typeof Float32Array !== 'undefined' ? Float32Array : Array; + +function getSeriesStackId(seriesModel) { + return seriesModel.get('stack') || STACK_PREFIX + seriesModel.seriesIndex; +} + +function getAxisKey(axis) { + return axis.dim + axis.index; +} + +/** + * @param {Object} opt + * @param {module:echarts/coord/Axis} opt.axis Only support category axis currently. + * @param {number} opt.count Positive interger. + * @param {number} [opt.barWidth] + * @param {number} [opt.barMaxWidth] + * @param {number} [opt.barGap] + * @param {number} [opt.barCategoryGap] + * @return {Object} {width, offset, offsetCenter} If axis.type is not 'category', return undefined. + */ +function getLayoutOnAxis(opt) { + var params = []; + var baseAxis = opt.axis; + var axisKey = 'axis0'; + + if (baseAxis.type !== 'category') { + return; + } + var bandWidth = baseAxis.getBandWidth(); + + for (var i = 0; i < opt.count || 0; i++) { + params.push(defaults({ + bandWidth: bandWidth, + axisKey: axisKey, + stackId: STACK_PREFIX + i + }, opt)); + } + var widthAndOffsets = doCalBarWidthAndOffset(params); + + var result = []; + for (var i = 0; i < opt.count; i++) { + var item = widthAndOffsets[axisKey][STACK_PREFIX + i]; + item.offsetCenter = item.offset + item.width / 2; + result.push(item); + } + + return result; +} + +function prepareLayoutBarSeries(seriesType, ecModel) { + var seriesModels = []; + ecModel.eachSeriesByType(seriesType, function (seriesModel) { + // Check series coordinate, do layout for cartesian2d only + if (isOnCartesian(seriesModel) && !isInLargeMode(seriesModel)) { + seriesModels.push(seriesModel); + } + }); + return seriesModels; +} + +function makeColumnLayout(barSeries) { + var seriesInfoList = []; + each$1(barSeries, function (seriesModel) { + var data = seriesModel.getData(); + var cartesian = seriesModel.coordinateSystem; + var baseAxis = cartesian.getBaseAxis(); + var axisExtent = baseAxis.getExtent(); + var bandWidth = baseAxis.type === 'category' + ? baseAxis.getBandWidth() + : (Math.abs(axisExtent[1] - axisExtent[0]) / data.count()); + + var barWidth = parsePercent$1( + seriesModel.get('barWidth'), bandWidth + ); + var barMaxWidth = parsePercent$1( + seriesModel.get('barMaxWidth'), bandWidth + ); + var barGap = seriesModel.get('barGap'); + var barCategoryGap = seriesModel.get('barCategoryGap'); + + seriesInfoList.push({ + bandWidth: bandWidth, + barWidth: barWidth, + barMaxWidth: barMaxWidth, + barGap: barGap, + barCategoryGap: barCategoryGap, + axisKey: getAxisKey(baseAxis), + stackId: getSeriesStackId(seriesModel) + }); + }); + + return doCalBarWidthAndOffset(seriesInfoList); +} + +function doCalBarWidthAndOffset(seriesInfoList) { + // Columns info on each category axis. Key is cartesian name + var columnsMap = {}; + + each$1(seriesInfoList, function (seriesInfo, idx) { + var axisKey = seriesInfo.axisKey; + var bandWidth = seriesInfo.bandWidth; + var columnsOnAxis = columnsMap[axisKey] || { + bandWidth: bandWidth, + remainedWidth: bandWidth, + autoWidthCount: 0, + categoryGap: '20%', + gap: '30%', + stacks: {} + }; + var stacks = columnsOnAxis.stacks; + columnsMap[axisKey] = columnsOnAxis; + + var stackId = seriesInfo.stackId; + + if (!stacks[stackId]) { + columnsOnAxis.autoWidthCount++; + } + stacks[stackId] = stacks[stackId] || { + width: 0, + maxWidth: 0 + }; + + // Caution: In a single coordinate system, these barGrid attributes + // will be shared by series. Consider that they have default values, + // only the attributes set on the last series will work. + // Do not change this fact unless there will be a break change. + + // TODO + var barWidth = seriesInfo.barWidth; + if (barWidth && !stacks[stackId].width) { + // See #6312, do not restrict width. + stacks[stackId].width = barWidth; + barWidth = Math.min(columnsOnAxis.remainedWidth, barWidth); + columnsOnAxis.remainedWidth -= barWidth; + } + + var barMaxWidth = seriesInfo.barMaxWidth; + barMaxWidth && (stacks[stackId].maxWidth = barMaxWidth); + var barGap = seriesInfo.barGap; + (barGap != null) && (columnsOnAxis.gap = barGap); + var barCategoryGap = seriesInfo.barCategoryGap; + (barCategoryGap != null) && (columnsOnAxis.categoryGap = barCategoryGap); + }); + + var result = {}; + + each$1(columnsMap, function (columnsOnAxis, coordSysName) { + + result[coordSysName] = {}; + + var stacks = columnsOnAxis.stacks; + var bandWidth = columnsOnAxis.bandWidth; + var categoryGap = parsePercent$1(columnsOnAxis.categoryGap, bandWidth); + var barGapPercent = parsePercent$1(columnsOnAxis.gap, 1); + + var remainedWidth = columnsOnAxis.remainedWidth; + var autoWidthCount = columnsOnAxis.autoWidthCount; + var autoWidth = (remainedWidth - categoryGap) + / (autoWidthCount + (autoWidthCount - 1) * barGapPercent); + autoWidth = Math.max(autoWidth, 0); + + // Find if any auto calculated bar exceeded maxBarWidth + each$1(stacks, function (column, stack) { + var maxWidth = column.maxWidth; + if (maxWidth && maxWidth < autoWidth) { + maxWidth = Math.min(maxWidth, remainedWidth); + if (column.width) { + maxWidth = Math.min(maxWidth, column.width); + } + remainedWidth -= maxWidth; + column.width = maxWidth; + autoWidthCount--; + } + }); + + // Recalculate width again + autoWidth = (remainedWidth - categoryGap) + / (autoWidthCount + (autoWidthCount - 1) * barGapPercent); + autoWidth = Math.max(autoWidth, 0); + + var widthSum = 0; + var lastColumn; + each$1(stacks, function (column, idx) { + if (!column.width) { + column.width = autoWidth; + } + lastColumn = column; + widthSum += column.width * (1 + barGapPercent); + }); + if (lastColumn) { + widthSum -= lastColumn.width * barGapPercent; + } + + var offset = -widthSum / 2; + each$1(stacks, function (column, stackId) { + result[coordSysName][stackId] = result[coordSysName][stackId] || { + offset: offset, + width: column.width + }; + + offset += column.width * (1 + barGapPercent); + }); + }); + + return result; +} + +/** + * @param {Object} barWidthAndOffset The result of makeColumnLayout + * @param {module:echarts/coord/Axis} axis + * @param {module:echarts/model/Series} [seriesModel] If not provided, return all. + * @return {Object} {stackId: {offset, width}} or {offset, width} if seriesModel provided. + */ +function retrieveColumnLayout(barWidthAndOffset, axis, seriesModel) { + if (barWidthAndOffset && axis) { + var result = barWidthAndOffset[getAxisKey(axis)]; + if (result != null && seriesModel != null) { + result = result[getSeriesStackId(seriesModel)]; + } + return result; + } +} + +/** + * @param {string} seriesType + * @param {module:echarts/model/Global} ecModel + */ +function layout(seriesType, ecModel) { + + var seriesModels = prepareLayoutBarSeries(seriesType, ecModel); + var barWidthAndOffset = makeColumnLayout(seriesModels); + + var lastStackCoords = {}; + each$1(seriesModels, function (seriesModel) { + + var data = seriesModel.getData(); + var cartesian = seriesModel.coordinateSystem; + var baseAxis = cartesian.getBaseAxis(); + + var stackId = getSeriesStackId(seriesModel); + var columnLayoutInfo = barWidthAndOffset[getAxisKey(baseAxis)][stackId]; + var columnOffset = columnLayoutInfo.offset; + var columnWidth = columnLayoutInfo.width; + var valueAxis = cartesian.getOtherAxis(baseAxis); + + var barMinHeight = seriesModel.get('barMinHeight') || 0; + + lastStackCoords[stackId] = lastStackCoords[stackId] || []; + data.setLayout({ + offset: columnOffset, + size: columnWidth + }); + + var valueDim = data.mapDimension(valueAxis.dim); + var baseDim = data.mapDimension(baseAxis.dim); + var stacked = isDimensionStacked(data, valueDim /*, baseDim*/); + var isValueAxisH = valueAxis.isHorizontal(); + + var valueAxisStart = getValueAxisStart(baseAxis, valueAxis, stacked); + + for (var idx = 0, len = data.count(); idx < len; idx++) { + var value = data.get(valueDim, idx); + var baseValue = data.get(baseDim, idx); + + // If dataZoom in filteMode: 'empty', the baseValue can be set as NaN in "axisProxy". + if (isNaN(value) || isNaN(baseValue)) { + continue; + } + + var sign = value >= 0 ? 'p' : 'n'; + var baseCoord = valueAxisStart; + + // Because of the barMinHeight, we can not use the value in + // stackResultDimension directly. + if (stacked) { + // Only ordinal axis can be stacked. + if (!lastStackCoords[stackId][baseValue]) { + lastStackCoords[stackId][baseValue] = { + p: valueAxisStart, // Positive stack + n: valueAxisStart // Negative stack + }; + } + // Should also consider #4243 + baseCoord = lastStackCoords[stackId][baseValue][sign]; + } + + var x; + var y; + var width; + var height; + + if (isValueAxisH) { + var coord = cartesian.dataToPoint([value, baseValue]); + x = baseCoord; + y = coord[1] + columnOffset; + width = coord[0] - valueAxisStart; + height = columnWidth; + + if (Math.abs(width) < barMinHeight) { + width = (width < 0 ? -1 : 1) * barMinHeight; + } + stacked && (lastStackCoords[stackId][baseValue][sign] += width); + } + else { + var coord = cartesian.dataToPoint([baseValue, value]); + x = coord[0] + columnOffset; + y = baseCoord; + width = columnWidth; + height = coord[1] - valueAxisStart; + + if (Math.abs(height) < barMinHeight) { + // Include zero to has a positive bar + height = (height <= 0 ? -1 : 1) * barMinHeight; + } + stacked && (lastStackCoords[stackId][baseValue][sign] += height); + } + + data.setItemLayout(idx, { + x: x, + y: y, + width: width, + height: height + }); + } + + }, this); +} + +// TODO: Do not support stack in large mode yet. +var largeLayout = { + + seriesType: 'bar', + + plan: createRenderPlanner(), + + reset: function (seriesModel) { + if (!isOnCartesian(seriesModel) || !isInLargeMode(seriesModel)) { + return; + } + + var data = seriesModel.getData(); + var cartesian = seriesModel.coordinateSystem; + var baseAxis = cartesian.getBaseAxis(); + var valueAxis = cartesian.getOtherAxis(baseAxis); + var valueDim = data.mapDimension(valueAxis.dim); + var baseDim = data.mapDimension(baseAxis.dim); + var valueAxisHorizontal = valueAxis.isHorizontal(); + var valueDimIdx = valueAxisHorizontal ? 0 : 1; + + var barWidth = retrieveColumnLayout( + makeColumnLayout([seriesModel]), baseAxis, seriesModel + ).width; + if (!(barWidth > LARGE_BAR_MIN_WIDTH)) { // jshint ignore:line + barWidth = LARGE_BAR_MIN_WIDTH; + } + + return {progress: progress}; + + function progress(params, data) { + var count = params.count; + var largePoints = new LargeArr(count * 2); + var largeDataIndices = new LargeArr(count); + var dataIndex; + var coord = []; + var valuePair = []; + var pointsOffset = 0; + var idxOffset = 0; + + while ((dataIndex = params.next()) != null) { + valuePair[valueDimIdx] = data.get(valueDim, dataIndex); + valuePair[1 - valueDimIdx] = data.get(baseDim, dataIndex); + + coord = cartesian.dataToPoint(valuePair, null, coord); + // Data index might not be in order, depends on `progressiveChunkMode`. + largePoints[pointsOffset++] = coord[0]; + largePoints[pointsOffset++] = coord[1]; + largeDataIndices[idxOffset++] = dataIndex; + } + + data.setLayout({ + largePoints: largePoints, + largeDataIndices: largeDataIndices, + barWidth: barWidth, + valueAxisStart: getValueAxisStart(baseAxis, valueAxis, false), + valueAxisHorizontal: valueAxisHorizontal + }); + } + } +}; + +function isOnCartesian(seriesModel) { + return seriesModel.coordinateSystem && seriesModel.coordinateSystem.type === 'cartesian2d'; +} + +function isInLargeMode(seriesModel) { + return seriesModel.pipelineContext && seriesModel.pipelineContext.large; +} + +// See cases in `test/bar-start.html` and `#7412`, `#8747`. +function getValueAxisStart(baseAxis, valueAxis, stacked) { + var extent = valueAxis.getGlobalExtent(); + var min; + var max; + if (extent[0] > extent[1]) { + min = extent[1]; + max = extent[0]; + } + else { + min = extent[0]; + max = extent[1]; + } + + var valueStart = valueAxis.toGlobalCoord(valueAxis.dataToCoord(0)); + valueStart < min && (valueStart = min); + valueStart > max && (valueStart = max); + + return valueStart; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* A third-party license is embeded for some of the code in this file: +* The "scaleLevels" was originally copied from "d3.js" with some +* modifications made for this project. +* (See more details in the comment on the definition of "scaleLevels" below.) +* The use of the source code of this file is also subject to the terms +* and consitions of the license of "d3.js" (BSD-3Clause, see +* ). +*/ + + +// [About UTC and local time zone]: +// In most cases, `number.parseDate` will treat input data string as local time +// (except time zone is specified in time string). And `format.formateTime` returns +// local time by default. option.useUTC is false by default. This design have +// concidered these common case: +// (1) Time that is persistent in server is in UTC, but it is needed to be diplayed +// in local time by default. +// (2) By default, the input data string (e.g., '2011-01-02') should be displayed +// as its original time, without any time difference. + +var intervalScaleProto = IntervalScale.prototype; + +var mathCeil = Math.ceil; +var mathFloor = Math.floor; +var ONE_SECOND = 1000; +var ONE_MINUTE = ONE_SECOND * 60; +var ONE_HOUR = ONE_MINUTE * 60; +var ONE_DAY = ONE_HOUR * 24; + +// FIXME 公用? +var bisect = function (a, x, lo, hi) { + while (lo < hi) { + var mid = lo + hi >>> 1; + if (a[mid][1] < x) { + lo = mid + 1; + } + else { + hi = mid; + } + } + return lo; +}; + +/** + * @alias module:echarts/coord/scale/Time + * @constructor + */ +var TimeScale = IntervalScale.extend({ + type: 'time', + + /** + * @override + */ + getLabel: function (val) { + var stepLvl = this._stepLvl; + + var date = new Date(val); + + return formatTime(stepLvl[0], date, this.getSetting('useUTC')); + }, + + /** + * @override + */ + niceExtent: function (opt) { + var extent = this._extent; + // If extent start and end are same, expand them + if (extent[0] === extent[1]) { + // Expand extent + extent[0] -= ONE_DAY; + extent[1] += ONE_DAY; + } + // If there are no data and extent are [Infinity, -Infinity] + if (extent[1] === -Infinity && extent[0] === Infinity) { + var d = new Date(); + extent[1] = +new Date(d.getFullYear(), d.getMonth(), d.getDate()); + extent[0] = extent[1] - ONE_DAY; + } + + this.niceTicks(opt.splitNumber, opt.minInterval, opt.maxInterval); + + // var extent = this._extent; + var interval = this._interval; + + if (!opt.fixMin) { + extent[0] = round$1(mathFloor(extent[0] / interval) * interval); + } + if (!opt.fixMax) { + extent[1] = round$1(mathCeil(extent[1] / interval) * interval); + } + }, + + /** + * @override + */ + niceTicks: function (approxTickNum, minInterval, maxInterval) { + approxTickNum = approxTickNum || 10; + + var extent = this._extent; + var span = extent[1] - extent[0]; + var approxInterval = span / approxTickNum; + + if (minInterval != null && approxInterval < minInterval) { + approxInterval = minInterval; + } + if (maxInterval != null && approxInterval > maxInterval) { + approxInterval = maxInterval; + } + + var scaleLevelsLen = scaleLevels.length; + var idx = bisect(scaleLevels, approxInterval, 0, scaleLevelsLen); + + var level = scaleLevels[Math.min(idx, scaleLevelsLen - 1)]; + var interval = level[1]; + // Same with interval scale if span is much larger than 1 year + if (level[0] === 'year') { + var yearSpan = span / interval; + + // From "Nice Numbers for Graph Labels" of Graphic Gems + // var niceYearSpan = numberUtil.nice(yearSpan, false); + var yearStep = nice(yearSpan / approxTickNum, true); + + interval *= yearStep; + } + + var timezoneOffset = this.getSetting('useUTC') + ? 0 : (new Date(+extent[0] || +extent[1])).getTimezoneOffset() * 60 * 1000; + var niceExtent = [ + Math.round(mathCeil((extent[0] - timezoneOffset) / interval) * interval + timezoneOffset), + Math.round(mathFloor((extent[1] - timezoneOffset) / interval) * interval + timezoneOffset) + ]; + + fixExtent(niceExtent, extent); + + this._stepLvl = level; + // Interval will be used in getTicks + this._interval = interval; + this._niceExtent = niceExtent; + }, + + parse: function (val) { + // val might be float. + return +parseDate(val); + } +}); + +each$1(['contain', 'normalize'], function (methodName) { + TimeScale.prototype[methodName] = function (val) { + return intervalScaleProto[methodName].call(this, this.parse(val)); + }; +}); + +/** + * This implementation was originally copied from "d3.js" + * + * with some modifications made for this program. + * See the license statement at the head of this file. + */ +var scaleLevels = [ + // Format interval + ['hh:mm:ss', ONE_SECOND], // 1s + ['hh:mm:ss', ONE_SECOND * 5], // 5s + ['hh:mm:ss', ONE_SECOND * 10], // 10s + ['hh:mm:ss', ONE_SECOND * 15], // 15s + ['hh:mm:ss', ONE_SECOND * 30], // 30s + ['hh:mm\nMM-dd', ONE_MINUTE], // 1m + ['hh:mm\nMM-dd', ONE_MINUTE * 5], // 5m + ['hh:mm\nMM-dd', ONE_MINUTE * 10], // 10m + ['hh:mm\nMM-dd', ONE_MINUTE * 15], // 15m + ['hh:mm\nMM-dd', ONE_MINUTE * 30], // 30m + ['hh:mm\nMM-dd', ONE_HOUR], // 1h + ['hh:mm\nMM-dd', ONE_HOUR * 2], // 2h + ['hh:mm\nMM-dd', ONE_HOUR * 6], // 6h + ['hh:mm\nMM-dd', ONE_HOUR * 12], // 12h + ['MM-dd\nyyyy', ONE_DAY], // 1d + ['MM-dd\nyyyy', ONE_DAY * 2], // 2d + ['MM-dd\nyyyy', ONE_DAY * 3], // 3d + ['MM-dd\nyyyy', ONE_DAY * 4], // 4d + ['MM-dd\nyyyy', ONE_DAY * 5], // 5d + ['MM-dd\nyyyy', ONE_DAY * 6], // 6d + ['week', ONE_DAY * 7], // 7d + ['MM-dd\nyyyy', ONE_DAY * 10], // 10d + ['week', ONE_DAY * 14], // 2w + ['week', ONE_DAY * 21], // 3w + ['month', ONE_DAY * 31], // 1M + ['week', ONE_DAY * 42], // 6w + ['month', ONE_DAY * 62], // 2M + ['week', ONE_DAY * 70], // 10w + ['quarter', ONE_DAY * 95], // 3M + ['month', ONE_DAY * 31 * 4], // 4M + ['month', ONE_DAY * 31 * 5], // 5M + ['half-year', ONE_DAY * 380 / 2], // 6M + ['month', ONE_DAY * 31 * 8], // 8M + ['month', ONE_DAY * 31 * 10], // 10M + ['year', ONE_DAY * 380] // 1Y +]; + +/** + * @param {module:echarts/model/Model} + * @return {module:echarts/scale/Time} + */ +TimeScale.create = function (model) { + return new TimeScale({useUTC: model.ecModel.get('useUTC')}); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Log scale + * @module echarts/scale/Log + */ + +// Use some method of IntervalScale +var scaleProto$1 = Scale.prototype; +var intervalScaleProto$1 = IntervalScale.prototype; + +var getPrecisionSafe$1 = getPrecisionSafe; +var roundingErrorFix = round$1; + +var mathFloor$1 = Math.floor; +var mathCeil$1 = Math.ceil; +var mathPow$1 = Math.pow; + +var mathLog = Math.log; + +var LogScale = Scale.extend({ + + type: 'log', + + base: 10, + + $constructor: function () { + Scale.apply(this, arguments); + this._originalScale = new IntervalScale(); + }, + + /** + * @return {Array.} + */ + getTicks: function () { + var originalScale = this._originalScale; + var extent = this._extent; + var originalExtent = originalScale.getExtent(); + + return map(intervalScaleProto$1.getTicks.call(this), function (val) { + var powVal = round$1(mathPow$1(this.base, val)); + + // Fix #4158 + powVal = (val === extent[0] && originalScale.__fixMin) + ? fixRoundingError(powVal, originalExtent[0]) + : powVal; + powVal = (val === extent[1] && originalScale.__fixMax) + ? fixRoundingError(powVal, originalExtent[1]) + : powVal; + + return powVal; + }, this); + }, + + /** + * @param {number} val + * @return {string} + */ + getLabel: intervalScaleProto$1.getLabel, + + /** + * @param {number} val + * @return {number} + */ + scale: function (val) { + val = scaleProto$1.scale.call(this, val); + return mathPow$1(this.base, val); + }, + + /** + * @param {number} start + * @param {number} end + */ + setExtent: function (start, end) { + var base = this.base; + start = mathLog(start) / mathLog(base); + end = mathLog(end) / mathLog(base); + intervalScaleProto$1.setExtent.call(this, start, end); + }, + + /** + * @return {number} end + */ + getExtent: function () { + var base = this.base; + var extent = scaleProto$1.getExtent.call(this); + extent[0] = mathPow$1(base, extent[0]); + extent[1] = mathPow$1(base, extent[1]); + + // Fix #4158 + var originalScale = this._originalScale; + var originalExtent = originalScale.getExtent(); + originalScale.__fixMin && (extent[0] = fixRoundingError(extent[0], originalExtent[0])); + originalScale.__fixMax && (extent[1] = fixRoundingError(extent[1], originalExtent[1])); + + return extent; + }, + + /** + * @param {Array.} extent + */ + unionExtent: function (extent) { + this._originalScale.unionExtent(extent); + + var base = this.base; + extent[0] = mathLog(extent[0]) / mathLog(base); + extent[1] = mathLog(extent[1]) / mathLog(base); + scaleProto$1.unionExtent.call(this, extent); + }, + + /** + * @override + */ + unionExtentFromData: function (data, dim) { + // TODO + // filter value that <= 0 + this.unionExtent(data.getApproximateExtent(dim)); + }, + + /** + * Update interval and extent of intervals for nice ticks + * @param {number} [approxTickNum = 10] Given approx tick number + */ + niceTicks: function (approxTickNum) { + approxTickNum = approxTickNum || 10; + var extent = this._extent; + var span = extent[1] - extent[0]; + if (span === Infinity || span <= 0) { + return; + } + + var interval = quantity(span); + var err = approxTickNum / span * interval; + + // Filter ticks to get closer to the desired count. + if (err <= 0.5) { + interval *= 10; + } + + // Interval should be integer + while (!isNaN(interval) && Math.abs(interval) < 1 && Math.abs(interval) > 0) { + interval *= 10; + } + + var niceExtent = [ + round$1(mathCeil$1(extent[0] / interval) * interval), + round$1(mathFloor$1(extent[1] / interval) * interval) + ]; + + this._interval = interval; + this._niceExtent = niceExtent; + }, + + /** + * Nice extent. + * @override + */ + niceExtent: function (opt) { + intervalScaleProto$1.niceExtent.call(this, opt); + + var originalScale = this._originalScale; + originalScale.__fixMin = opt.fixMin; + originalScale.__fixMax = opt.fixMax; + } + +}); + +each$1(['contain', 'normalize'], function (methodName) { + LogScale.prototype[methodName] = function (val) { + val = mathLog(val) / mathLog(this.base); + return scaleProto$1[methodName].call(this, val); + }; +}); + +LogScale.create = function () { + return new LogScale(); +}; + +function fixRoundingError(val, originalVal) { + return roundingErrorFix(val, getPrecisionSafe$1(originalVal)); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Get axis scale extent before niced. + * Item of returned array can only be number (including Infinity and NaN). + */ +function getScaleExtent(scale, model) { + var scaleType = scale.type; + + var min = model.getMin(); + var max = model.getMax(); + var fixMin = min != null; + var fixMax = max != null; + var originalExtent = scale.getExtent(); + + var axisDataLen; + var boundaryGap; + var span; + if (scaleType === 'ordinal') { + axisDataLen = model.getCategories().length; + } + else { + boundaryGap = model.get('boundaryGap'); + if (!isArray(boundaryGap)) { + boundaryGap = [boundaryGap || 0, boundaryGap || 0]; + } + if (typeof boundaryGap[0] === 'boolean') { + if (__DEV__) { + console.warn('Boolean type for boundaryGap is only ' + + 'allowed for ordinal axis. Please use string in ' + + 'percentage instead, e.g., "20%". Currently, ' + + 'boundaryGap is set to be 0.'); + } + boundaryGap = [0, 0]; + } + boundaryGap[0] = parsePercent$1(boundaryGap[0], 1); + boundaryGap[1] = parsePercent$1(boundaryGap[1], 1); + span = (originalExtent[1] - originalExtent[0]) + || Math.abs(originalExtent[0]); + } + + // Notice: When min/max is not set (that is, when there are null/undefined, + // which is the most common case), these cases should be ensured: + // (1) For 'ordinal', show all axis.data. + // (2) For others: + // + `boundaryGap` is applied (if min/max set, boundaryGap is + // disabled). + // + If `needCrossZero`, min/max should be zero, otherwise, min/max should + // be the result that originalExtent enlarged by boundaryGap. + // (3) If no data, it should be ensured that `scale.setBlank` is set. + + // FIXME + // (1) When min/max is 'dataMin' or 'dataMax', should boundaryGap be able to used? + // (2) When `needCrossZero` and all data is positive/negative, should it be ensured + // that the results processed by boundaryGap are positive/negative? + + if (min == null) { + min = scaleType === 'ordinal' + ? (axisDataLen ? 0 : NaN) + : originalExtent[0] - boundaryGap[0] * span; + } + if (max == null) { + max = scaleType === 'ordinal' + ? (axisDataLen ? axisDataLen - 1 : NaN) + : originalExtent[1] + boundaryGap[1] * span; + } + + if (min === 'dataMin') { + min = originalExtent[0]; + } + else if (typeof min === 'function') { + min = min({ + min: originalExtent[0], + max: originalExtent[1] + }); + } + + if (max === 'dataMax') { + max = originalExtent[1]; + } + else if (typeof max === 'function') { + max = max({ + min: originalExtent[0], + max: originalExtent[1] + }); + } + + (min == null || !isFinite(min)) && (min = NaN); + (max == null || !isFinite(max)) && (max = NaN); + + scale.setBlank( + eqNaN(min) + || eqNaN(max) + || (scaleType === 'ordinal' && !scale.getOrdinalMeta().categories.length) + ); + + // Evaluate if axis needs cross zero + if (model.getNeedCrossZero()) { + // Axis is over zero and min is not set + if (min > 0 && max > 0 && !fixMin) { + min = 0; + } + // Axis is under zero and max is not set + if (min < 0 && max < 0 && !fixMax) { + max = 0; + } + } + + // If bars are placed on a base axis of type time or interval account for axis boundary overflow and current axis + // is base axis + // FIXME + // (1) Consider support value axis, where below zero and axis `onZero` should be handled properly. + // (2) Refactor the logic with `barGrid`. Is it not need to `makeBarWidthAndOffsetInfo` twice with different extent? + // Should not depend on series type `bar`? + // (3) Fix that might overlap when using dataZoom. + // (4) Consider other chart types using `barGrid`? + // See #6728, #4862, `test/bar-overflow-time-plot.html` + var ecModel = model.ecModel; + if (ecModel && (scaleType === 'time' /*|| scaleType === 'interval' */)) { + var barSeriesModels = prepareLayoutBarSeries('bar', ecModel); + var isBaseAxisAndHasBarSeries; + + each$1(barSeriesModels, function (seriesModel) { + isBaseAxisAndHasBarSeries |= seriesModel.getBaseAxis() === model.axis; + }); + + if (isBaseAxisAndHasBarSeries) { + // Calculate placement of bars on axis + var barWidthAndOffset = makeColumnLayout(barSeriesModels); + + // Adjust axis min and max to account for overflow + var adjustedScale = adjustScaleForOverflow(min, max, model, barWidthAndOffset); + min = adjustedScale.min; + max = adjustedScale.max; + } + } + + return [min, max]; +} + +function adjustScaleForOverflow(min, max, model, barWidthAndOffset) { + + // Get Axis Length + var axisExtent = model.axis.getExtent(); + var axisLength = axisExtent[1] - axisExtent[0]; + + // Get bars on current base axis and calculate min and max overflow + var barsOnCurrentAxis = retrieveColumnLayout(barWidthAndOffset, model.axis); + if (barsOnCurrentAxis === undefined) { + return {min: min, max: max}; + } + + var minOverflow = Infinity; + each$1(barsOnCurrentAxis, function (item) { + minOverflow = Math.min(item.offset, minOverflow); + }); + var maxOverflow = -Infinity; + each$1(barsOnCurrentAxis, function (item) { + maxOverflow = Math.max(item.offset + item.width, maxOverflow); + }); + minOverflow = Math.abs(minOverflow); + maxOverflow = Math.abs(maxOverflow); + var totalOverFlow = minOverflow + maxOverflow; + + // Calulate required buffer based on old range and overflow + var oldRange = max - min; + var oldRangePercentOfNew = (1 - (minOverflow + maxOverflow) / axisLength); + var overflowBuffer = ((oldRange / oldRangePercentOfNew) - oldRange); + + max += overflowBuffer * (maxOverflow / totalOverFlow); + min -= overflowBuffer * (minOverflow / totalOverFlow); + + return {min: min, max: max}; +} + +function niceScaleExtent(scale, model) { + var extent = getScaleExtent(scale, model); + var fixMin = model.getMin() != null; + var fixMax = model.getMax() != null; + var splitNumber = model.get('splitNumber'); + + if (scale.type === 'log') { + scale.base = model.get('logBase'); + } + + var scaleType = scale.type; + scale.setExtent(extent[0], extent[1]); + scale.niceExtent({ + splitNumber: splitNumber, + fixMin: fixMin, + fixMax: fixMax, + minInterval: (scaleType === 'interval' || scaleType === 'time') + ? model.get('minInterval') : null, + maxInterval: (scaleType === 'interval' || scaleType === 'time') + ? model.get('maxInterval') : null + }); + + // If some one specified the min, max. And the default calculated interval + // is not good enough. He can specify the interval. It is often appeared + // in angle axis with angle 0 - 360. Interval calculated in interval scale is hard + // to be 60. + // FIXME + var interval = model.get('interval'); + if (interval != null) { + scale.setInterval && scale.setInterval(interval); + } +} + +/** + * @param {module:echarts/model/Model} model + * @param {string} [axisType] Default retrieve from model.type + * @return {module:echarts/scale/*} + */ +function createScaleByModel(model, axisType) { + axisType = axisType || model.get('type'); + if (axisType) { + switch (axisType) { + // Buildin scale + case 'category': + return new OrdinalScale( + model.getOrdinalMeta + ? model.getOrdinalMeta() + : model.getCategories(), + [Infinity, -Infinity] + ); + case 'value': + return new IntervalScale(); + // Extended scale, like time and log + default: + return (Scale.getClass(axisType) || IntervalScale).create(model); + } + } +} + +/** + * Check if the axis corss 0 + */ +function ifAxisCrossZero(axis) { + var dataExtent = axis.scale.getExtent(); + var min = dataExtent[0]; + var max = dataExtent[1]; + return !((min > 0 && max > 0) || (min < 0 && max < 0)); +} + +/** + * @param {module:echarts/coord/Axis} axis + * @return {Function} Label formatter function. + * param: {number} tickValue, + * param: {number} idx, the index in all ticks. + * If category axis, this param is not requied. + * return: {string} label string. + */ +function makeLabelFormatter(axis) { + var labelFormatter = axis.getLabelModel().get('formatter'); + var categoryTickStart = axis.type === 'category' ? axis.scale.getExtent()[0] : null; + + if (typeof labelFormatter === 'string') { + labelFormatter = (function (tpl) { + return function (val) { + // For category axis, get raw value; for numeric axis, + // get foramtted label like '1,333,444'. + val = axis.scale.getLabel(val); + return tpl.replace('{value}', val != null ? val : ''); + }; + })(labelFormatter); + // Consider empty array + return labelFormatter; + } + else if (typeof labelFormatter === 'function') { + return function (tickValue, idx) { + // The original intention of `idx` is "the index of the tick in all ticks". + // But the previous implementation of category axis do not consider the + // `axisLabel.interval`, which cause that, for example, the `interval` is + // `1`, then the ticks "name5", "name7", "name9" are displayed, where the + // corresponding `idx` are `0`, `2`, `4`, but not `0`, `1`, `2`. So we keep + // the definition here for back compatibility. + if (categoryTickStart != null) { + idx = tickValue - categoryTickStart; + } + return labelFormatter(getAxisRawValue(axis, tickValue), idx); + }; + } + else { + return function (tick) { + return axis.scale.getLabel(tick); + }; + } +} + +function getAxisRawValue(axis, value) { + // In category axis with data zoom, tick is not the original + // index of axis.data. So tick should not be exposed to user + // in category axis. + return axis.type === 'category' ? axis.scale.getLabel(value) : value; +} + +/** + * @param {module:echarts/coord/Axis} axis + * @return {module:zrender/core/BoundingRect} Be null/undefined if no labels. + */ +function estimateLabelUnionRect(axis) { + var axisModel = axis.model; + var scale = axis.scale; + + if (!axisModel.get('axisLabel.show') || scale.isBlank()) { + return; + } + + var isCategory = axis.type === 'category'; + + var realNumberScaleTicks; + var tickCount; + var categoryScaleExtent = scale.getExtent(); + + // Optimize for large category data, avoid call `getTicks()`. + if (isCategory) { + tickCount = scale.count(); + } + else { + realNumberScaleTicks = scale.getTicks(); + tickCount = realNumberScaleTicks.length; + } + + var axisLabelModel = axis.getLabelModel(); + var labelFormatter = makeLabelFormatter(axis); + + var rect; + var step = 1; + // Simple optimization for large amount of labels + if (tickCount > 40) { + step = Math.ceil(tickCount / 40); + } + for (var i = 0; i < tickCount; i += step) { + var tickValue = realNumberScaleTicks ? realNumberScaleTicks[i] : categoryScaleExtent[0] + i; + var label = labelFormatter(tickValue); + var unrotatedSingleRect = axisLabelModel.getTextRect(label); + var singleRect = rotateTextRect(unrotatedSingleRect, axisLabelModel.get('rotate') || 0); + + rect ? rect.union(singleRect) : (rect = singleRect); + } + + return rect; +} + +function rotateTextRect(textRect, rotate) { + var rotateRadians = rotate * Math.PI / 180; + var boundingBox = textRect.plain(); + var beforeWidth = boundingBox.width; + var beforeHeight = boundingBox.height; + var afterWidth = beforeWidth * Math.cos(rotateRadians) + beforeHeight * Math.sin(rotateRadians); + var afterHeight = beforeWidth * Math.sin(rotateRadians) + beforeHeight * Math.cos(rotateRadians); + var rotatedRect = new BoundingRect(boundingBox.x, boundingBox.y, afterWidth, afterHeight); + + return rotatedRect; +} + +/** + * @param {module:echarts/src/model/Model} model axisLabelModel or axisTickModel + * @return {number|String} Can be null|'auto'|number|function + */ +function getOptionCategoryInterval(model) { + var interval = model.get('interval'); + return interval == null ? 'auto' : interval; +} + +/** + * Set `categoryInterval` as 0 implicitly indicates that + * show all labels reguardless of overlap. + * @param {Object} axis axisModel.axis + * @return {boolean} + */ +function shouldShowAllLabels(axis) { + return axis.type === 'category' + && getOptionCategoryInterval(axis.getLabelModel()) === 0; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// import * as axisHelper from './axisHelper'; + +var axisModelCommonMixin = { + + /** + * @param {boolean} origin + * @return {number|string} min value or 'dataMin' or null/undefined (means auto) or NaN + */ + getMin: function (origin) { + var option = this.option; + var min = (!origin && option.rangeStart != null) + ? option.rangeStart : option.min; + + if (this.axis + && min != null + && min !== 'dataMin' + && typeof min !== 'function' + && !eqNaN(min) + ) { + min = this.axis.scale.parse(min); + } + return min; + }, + + /** + * @param {boolean} origin + * @return {number|string} max value or 'dataMax' or null/undefined (means auto) or NaN + */ + getMax: function (origin) { + var option = this.option; + var max = (!origin && option.rangeEnd != null) + ? option.rangeEnd : option.max; + + if (this.axis + && max != null + && max !== 'dataMax' + && typeof max !== 'function' + && !eqNaN(max) + ) { + max = this.axis.scale.parse(max); + } + return max; + }, + + /** + * @return {boolean} + */ + getNeedCrossZero: function () { + var option = this.option; + return (option.rangeStart != null || option.rangeEnd != null) + ? false : !option.scale; + }, + + /** + * Should be implemented by each axis model if necessary. + * @return {module:echarts/model/Component} coordinate system model + */ + getCoordSysModel: noop, + + /** + * @param {number} rangeStart Can only be finite number or null/undefined or NaN. + * @param {number} rangeEnd Can only be finite number or null/undefined or NaN. + */ + setRange: function (rangeStart, rangeEnd) { + this.option.rangeStart = rangeStart; + this.option.rangeEnd = rangeEnd; + }, + + /** + * Reset range + */ + resetRange: function () { + // rangeStart and rangeEnd is readonly. + this.option.rangeStart = this.option.rangeEnd = null; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Symbol factory + +/** + * Triangle shape + * @inner + */ +var Triangle = extendShape({ + type: 'triangle', + shape: { + cx: 0, + cy: 0, + width: 0, + height: 0 + }, + buildPath: function (path, shape) { + var cx = shape.cx; + var cy = shape.cy; + var width = shape.width / 2; + var height = shape.height / 2; + path.moveTo(cx, cy - height); + path.lineTo(cx + width, cy + height); + path.lineTo(cx - width, cy + height); + path.closePath(); + } +}); + +/** + * Diamond shape + * @inner + */ +var Diamond = extendShape({ + type: 'diamond', + shape: { + cx: 0, + cy: 0, + width: 0, + height: 0 + }, + buildPath: function (path, shape) { + var cx = shape.cx; + var cy = shape.cy; + var width = shape.width / 2; + var height = shape.height / 2; + path.moveTo(cx, cy - height); + path.lineTo(cx + width, cy); + path.lineTo(cx, cy + height); + path.lineTo(cx - width, cy); + path.closePath(); + } +}); + +/** + * Pin shape + * @inner + */ +var Pin = extendShape({ + type: 'pin', + shape: { + // x, y on the cusp + x: 0, + y: 0, + width: 0, + height: 0 + }, + + buildPath: function (path, shape) { + var x = shape.x; + var y = shape.y; + var w = shape.width / 5 * 3; + // Height must be larger than width + var h = Math.max(w, shape.height); + var r = w / 2; + + // Dist on y with tangent point and circle center + var dy = r * r / (h - r); + var cy = y - h + r + dy; + var angle = Math.asin(dy / r); + // Dist on x with tangent point and circle center + var dx = Math.cos(angle) * r; + + var tanX = Math.sin(angle); + var tanY = Math.cos(angle); + + var cpLen = r * 0.6; + var cpLen2 = r * 0.7; + + path.moveTo(x - dx, cy + dy); + + path.arc( + x, cy, r, + Math.PI - angle, + Math.PI * 2 + angle + ); + path.bezierCurveTo( + x + dx - tanX * cpLen, cy + dy + tanY * cpLen, + x, y - cpLen2, + x, y + ); + path.bezierCurveTo( + x, y - cpLen2, + x - dx + tanX * cpLen, cy + dy + tanY * cpLen, + x - dx, cy + dy + ); + path.closePath(); + } +}); + +/** + * Arrow shape + * @inner + */ +var Arrow = extendShape({ + + type: 'arrow', + + shape: { + x: 0, + y: 0, + width: 0, + height: 0 + }, + + buildPath: function (ctx, shape) { + var height = shape.height; + var width = shape.width; + var x = shape.x; + var y = shape.y; + var dx = width / 3 * 2; + ctx.moveTo(x, y); + ctx.lineTo(x + dx, y + height); + ctx.lineTo(x, y + height / 4 * 3); + ctx.lineTo(x - dx, y + height); + ctx.lineTo(x, y); + ctx.closePath(); + } +}); + +/** + * Map of path contructors + * @type {Object.} + */ +var symbolCtors = { + + line: Line, + + rect: Rect, + + roundRect: Rect, + + square: Rect, + + circle: Circle, + + diamond: Diamond, + + pin: Pin, + + arrow: Arrow, + + triangle: Triangle +}; + +var symbolShapeMakers = { + + line: function (x, y, w, h, shape) { + // FIXME + shape.x1 = x; + shape.y1 = y + h / 2; + shape.x2 = x + w; + shape.y2 = y + h / 2; + }, + + rect: function (x, y, w, h, shape) { + shape.x = x; + shape.y = y; + shape.width = w; + shape.height = h; + }, + + roundRect: function (x, y, w, h, shape) { + shape.x = x; + shape.y = y; + shape.width = w; + shape.height = h; + shape.r = Math.min(w, h) / 4; + }, + + square: function (x, y, w, h, shape) { + var size = Math.min(w, h); + shape.x = x; + shape.y = y; + shape.width = size; + shape.height = size; + }, + + circle: function (x, y, w, h, shape) { + // Put circle in the center of square + shape.cx = x + w / 2; + shape.cy = y + h / 2; + shape.r = Math.min(w, h) / 2; + }, + + diamond: function (x, y, w, h, shape) { + shape.cx = x + w / 2; + shape.cy = y + h / 2; + shape.width = w; + shape.height = h; + }, + + pin: function (x, y, w, h, shape) { + shape.x = x + w / 2; + shape.y = y + h / 2; + shape.width = w; + shape.height = h; + }, + + arrow: function (x, y, w, h, shape) { + shape.x = x + w / 2; + shape.y = y + h / 2; + shape.width = w; + shape.height = h; + }, + + triangle: function (x, y, w, h, shape) { + shape.cx = x + w / 2; + shape.cy = y + h / 2; + shape.width = w; + shape.height = h; + } +}; + +var symbolBuildProxies = {}; +each$1(symbolCtors, function (Ctor, name) { + symbolBuildProxies[name] = new Ctor(); +}); + +var SymbolClz = extendShape({ + + type: 'symbol', + + shape: { + symbolType: '', + x: 0, + y: 0, + width: 0, + height: 0 + }, + + calculateTextPosition: function (out, style, rect) { + var res = calculateTextPosition(out, style, rect); + var shape = this.shape; + if (shape && shape.symbolType === 'pin' && style.textPosition === 'inside') { + res.y = rect.y + rect.height * 0.4; + } + return res; + }, + + buildPath: function (ctx, shape, inBundle) { + var symbolType = shape.symbolType; + if (symbolType !== 'none') { + var proxySymbol = symbolBuildProxies[symbolType]; + if (!proxySymbol) { + // Default rect + symbolType = 'rect'; + proxySymbol = symbolBuildProxies[symbolType]; + } + symbolShapeMakers[symbolType]( + shape.x, shape.y, shape.width, shape.height, proxySymbol.shape + ); + proxySymbol.buildPath(ctx, proxySymbol.shape, inBundle); + } + } +}); + +// Provide setColor helper method to avoid determine if set the fill or stroke outside +function symbolPathSetColor(color, innerColor) { + if (this.type !== 'image') { + var symbolStyle = this.style; + var symbolShape = this.shape; + if (symbolShape && symbolShape.symbolType === 'line') { + symbolStyle.stroke = color; + } + else if (this.__isEmptyBrush) { + symbolStyle.stroke = color; + symbolStyle.fill = innerColor || '#fff'; + } + else { + // FIXME 判断图形默认是填充还是描边,使用 onlyStroke ? + symbolStyle.fill && (symbolStyle.fill = color); + symbolStyle.stroke && (symbolStyle.stroke = color); + } + this.dirty(false); + } +} + +/** + * Create a symbol element with given symbol configuration: shape, x, y, width, height, color + * @param {string} symbolType + * @param {number} x + * @param {number} y + * @param {number} w + * @param {number} h + * @param {string} color + * @param {boolean} [keepAspect=false] whether to keep the ratio of w/h, + * for path and image only. + */ +function createSymbol(symbolType, x, y, w, h, color, keepAspect) { + // TODO Support image object, DynamicImage. + + var isEmpty = symbolType.indexOf('empty') === 0; + if (isEmpty) { + symbolType = symbolType.substr(5, 1).toLowerCase() + symbolType.substr(6); + } + var symbolPath; + + if (symbolType.indexOf('image://') === 0) { + symbolPath = makeImage( + symbolType.slice(8), + new BoundingRect(x, y, w, h), + keepAspect ? 'center' : 'cover' + ); + } + else if (symbolType.indexOf('path://') === 0) { + symbolPath = makePath( + symbolType.slice(7), + {}, + new BoundingRect(x, y, w, h), + keepAspect ? 'center' : 'cover' + ); + } + else { + symbolPath = new SymbolClz({ + shape: { + symbolType: symbolType, + x: x, + y: y, + width: w, + height: h + } + }); + } + + symbolPath.__isEmptyBrush = isEmpty; + + symbolPath.setColor = symbolPathSetColor; + + symbolPath.setColor(color); + + return symbolPath; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// import createGraphFromNodeEdge from './chart/helper/createGraphFromNodeEdge'; +/** + * Create a muti dimension List structure from seriesModel. + * @param {module:echarts/model/Model} seriesModel + * @return {module:echarts/data/List} list + */ +function createList(seriesModel) { + return createListFromArray(seriesModel.getSource(), seriesModel); +} + +var dataStack$1 = { + isDimensionStacked: isDimensionStacked, + enableDataStack: enableDataStack, + getStackedDimension: getStackedDimension +}; + +/** + * Create scale + * @param {Array.} dataExtent + * @param {Object|module:echarts/Model} option + */ +function createScale(dataExtent, option) { + var axisModel = option; + if (!Model.isInstance(option)) { + axisModel = new Model(option); + mixin(axisModel, axisModelCommonMixin); + } + + var scale = createScaleByModel(axisModel); + scale.setExtent(dataExtent[0], dataExtent[1]); + + niceScaleExtent(scale, axisModel); + return scale; +} + +/** + * Mixin common methods to axis model, + * + * Inlcude methods + * `getFormattedLabels() => Array.` + * `getCategories() => Array.` + * `getMin(origin: boolean) => number` + * `getMax(origin: boolean) => number` + * `getNeedCrossZero() => boolean` + * `setRange(start: number, end: number)` + * `resetRange()` + */ +function mixinAxisModelCommonMethods(Model$$1) { + mixin(Model$$1, axisModelCommonMixin); +} + +var helper = (Object.freeze || Object)({ + createList: createList, + getLayoutRect: getLayoutRect, + dataStack: dataStack$1, + createScale: createScale, + mixinAxisModelCommonMethods: mixinAxisModelCommonMethods, + completeDimensions: completeDimensions, + createDimensions: createDimensions, + createSymbol: createSymbol +}); + +var EPSILON$3 = 1e-8; + +function isAroundEqual$1(a, b) { + return Math.abs(a - b) < EPSILON$3; +} + +function contain$1(points, x, y) { + var w = 0; + var p = points[0]; + + if (!p) { + return false; + } + + for (var i = 1; i < points.length; i++) { + var p2 = points[i]; + w += windingLine(p[0], p[1], p2[0], p2[1], x, y); + p = p2; + } + + // Close polygon + var p0 = points[0]; + if (!isAroundEqual$1(p[0], p0[0]) || !isAroundEqual$1(p[1], p0[1])) { + w += windingLine(p[0], p[1], p0[0], p0[1], x, y); + } + + return w !== 0; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @module echarts/coord/geo/Region + */ + +/** + * @param {string|Region} name + * @param {Array} geometries + * @param {Array.} cp + */ +function Region(name, geometries, cp) { + + /** + * @type {string} + * @readOnly + */ + this.name = name; + + /** + * @type {Array.} + * @readOnly + */ + this.geometries = geometries; + + if (!cp) { + var rect = this.getBoundingRect(); + cp = [ + rect.x + rect.width / 2, + rect.y + rect.height / 2 + ]; + } + else { + cp = [cp[0], cp[1]]; + } + /** + * @type {Array.} + */ + this.center = cp; +} + +Region.prototype = { + + constructor: Region, + + properties: null, + + /** + * @return {module:zrender/core/BoundingRect} + */ + getBoundingRect: function () { + var rect = this._rect; + if (rect) { + return rect; + } + + var MAX_NUMBER = Number.MAX_VALUE; + var min$$1 = [MAX_NUMBER, MAX_NUMBER]; + var max$$1 = [-MAX_NUMBER, -MAX_NUMBER]; + var min2 = []; + var max2 = []; + var geometries = this.geometries; + for (var i = 0; i < geometries.length; i++) { + // Only support polygon + if (geometries[i].type !== 'polygon') { + continue; + } + // Doesn't consider hole + var exterior = geometries[i].exterior; + fromPoints(exterior, min2, max2); + min(min$$1, min$$1, min2); + max(max$$1, max$$1, max2); + } + // No data + if (i === 0) { + min$$1[0] = min$$1[1] = max$$1[0] = max$$1[1] = 0; + } + + return (this._rect = new BoundingRect( + min$$1[0], min$$1[1], max$$1[0] - min$$1[0], max$$1[1] - min$$1[1] + )); + }, + + /** + * @param {} coord + * @return {boolean} + */ + contain: function (coord) { + var rect = this.getBoundingRect(); + var geometries = this.geometries; + if (!rect.contain(coord[0], coord[1])) { + return false; + } + loopGeo: for (var i = 0, len$$1 = geometries.length; i < len$$1; i++) { + // Only support polygon. + if (geometries[i].type !== 'polygon') { + continue; + } + var exterior = geometries[i].exterior; + var interiors = geometries[i].interiors; + if (contain$1(exterior, coord[0], coord[1])) { + // Not in the region if point is in the hole. + for (var k = 0; k < (interiors ? interiors.length : 0); k++) { + if (contain$1(interiors[k])) { + continue loopGeo; + } + } + return true; + } + } + return false; + }, + + transformTo: function (x, y, width, height) { + var rect = this.getBoundingRect(); + var aspect = rect.width / rect.height; + if (!width) { + width = aspect * height; + } + else if (!height) { + height = width / aspect; + } + var target = new BoundingRect(x, y, width, height); + var transform = rect.calculateTransform(target); + var geometries = this.geometries; + for (var i = 0; i < geometries.length; i++) { + // Only support polygon. + if (geometries[i].type !== 'polygon') { + continue; + } + var exterior = geometries[i].exterior; + var interiors = geometries[i].interiors; + for (var p = 0; p < exterior.length; p++) { + applyTransform(exterior[p], exterior[p], transform); + } + for (var h = 0; h < (interiors ? interiors.length : 0); h++) { + for (var p = 0; p < interiors[h].length; p++) { + applyTransform(interiors[h][p], interiors[h][p], transform); + } + } + } + rect = this._rect; + rect.copy(target); + // Update center + this.center = [ + rect.x + rect.width / 2, + rect.y + rect.height / 2 + ]; + }, + + cloneShallow: function (name) { + name == null && (name = this.name); + var newRegion = new Region(name, this.geometries, this.center); + newRegion._rect = this._rect; + newRegion.transformTo = null; // Simply avoid to be called. + return newRegion; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Parse and decode geo json + * @module echarts/coord/geo/parseGeoJson + */ + +function decode(json) { + if (!json.UTF8Encoding) { + return json; + } + var encodeScale = json.UTF8Scale; + if (encodeScale == null) { + encodeScale = 1024; + } + + var features = json.features; + + for (var f = 0; f < features.length; f++) { + var feature = features[f]; + var geometry = feature.geometry; + var coordinates = geometry.coordinates; + var encodeOffsets = geometry.encodeOffsets; + + for (var c = 0; c < coordinates.length; c++) { + var coordinate = coordinates[c]; + + if (geometry.type === 'Polygon') { + coordinates[c] = decodePolygon( + coordinate, + encodeOffsets[c], + encodeScale + ); + } + else if (geometry.type === 'MultiPolygon') { + for (var c2 = 0; c2 < coordinate.length; c2++) { + var polygon = coordinate[c2]; + coordinate[c2] = decodePolygon( + polygon, + encodeOffsets[c][c2], + encodeScale + ); + } + } + } + } + // Has been decoded + json.UTF8Encoding = false; + return json; +} + +function decodePolygon(coordinate, encodeOffsets, encodeScale) { + var result = []; + var prevX = encodeOffsets[0]; + var prevY = encodeOffsets[1]; + + for (var i = 0; i < coordinate.length; i += 2) { + var x = coordinate.charCodeAt(i) - 64; + var y = coordinate.charCodeAt(i + 1) - 64; + // ZigZag decoding + x = (x >> 1) ^ (-(x & 1)); + y = (y >> 1) ^ (-(y & 1)); + // Delta deocding + x += prevX; + y += prevY; + + prevX = x; + prevY = y; + // Dequantize + result.push([x / encodeScale, y / encodeScale]); + } + + return result; +} + +/** + * @alias module:echarts/coord/geo/parseGeoJson + * @param {Object} geoJson + * @return {module:zrender/container/Group} + */ +var parseGeoJson$1 = function (geoJson) { + + decode(geoJson); + + return map(filter(geoJson.features, function (featureObj) { + // Output of mapshaper may have geometry null + return featureObj.geometry + && featureObj.properties + && featureObj.geometry.coordinates.length > 0; + }), function (featureObj) { + var properties = featureObj.properties; + var geo = featureObj.geometry; + + var coordinates = geo.coordinates; + + var geometries = []; + if (geo.type === 'Polygon') { + geometries.push({ + type: 'polygon', + // According to the GeoJSON specification. + // First must be exterior, and the rest are all interior(holes). + exterior: coordinates[0], + interiors: coordinates.slice(1) + }); + } + if (geo.type === 'MultiPolygon') { + each$1(coordinates, function (item) { + if (item[0]) { + geometries.push({ + type: 'polygon', + exterior: item[0], + interiors: item.slice(1) + }); + } + }); + } + + var region = new Region( + properties.name, + geometries, + properties.cp + ); + region.properties = properties; + return region; + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var inner$6 = makeInner(); + +/** + * @param {module:echats/coord/Axis} axis + * @return {Object} { + * labels: [{ + * formattedLabel: string, + * rawLabel: string, + * tickValue: number + * }, ...], + * labelCategoryInterval: number + * } + */ +function createAxisLabels(axis) { + // Only ordinal scale support tick interval + return axis.type === 'category' + ? makeCategoryLabels(axis) + : makeRealNumberLabels(axis); +} + +/** + * @param {module:echats/coord/Axis} axis + * @param {module:echarts/model/Model} tickModel For example, can be axisTick, splitLine, splitArea. + * @return {Object} { + * ticks: Array. + * tickCategoryInterval: number + * } + */ +function createAxisTicks(axis, tickModel) { + // Only ordinal scale support tick interval + return axis.type === 'category' + ? makeCategoryTicks(axis, tickModel) + : {ticks: axis.scale.getTicks()}; +} + +function makeCategoryLabels(axis) { + var labelModel = axis.getLabelModel(); + var result = makeCategoryLabelsActually(axis, labelModel); + + return (!labelModel.get('show') || axis.scale.isBlank()) + ? {labels: [], labelCategoryInterval: result.labelCategoryInterval} + : result; +} + +function makeCategoryLabelsActually(axis, labelModel) { + var labelsCache = getListCache(axis, 'labels'); + var optionLabelInterval = getOptionCategoryInterval(labelModel); + var result = listCacheGet(labelsCache, optionLabelInterval); + + if (result) { + return result; + } + + var labels; + var numericLabelInterval; + + if (isFunction$1(optionLabelInterval)) { + labels = makeLabelsByCustomizedCategoryInterval(axis, optionLabelInterval); + } + else { + numericLabelInterval = optionLabelInterval === 'auto' + ? makeAutoCategoryInterval(axis) : optionLabelInterval; + labels = makeLabelsByNumericCategoryInterval(axis, numericLabelInterval); + } + + // Cache to avoid calling interval function repeatly. + return listCacheSet(labelsCache, optionLabelInterval, { + labels: labels, labelCategoryInterval: numericLabelInterval + }); +} + +function makeCategoryTicks(axis, tickModel) { + var ticksCache = getListCache(axis, 'ticks'); + var optionTickInterval = getOptionCategoryInterval(tickModel); + var result = listCacheGet(ticksCache, optionTickInterval); + + if (result) { + return result; + } + + var ticks; + var tickCategoryInterval; + + // Optimize for the case that large category data and no label displayed, + // we should not return all ticks. + if (!tickModel.get('show') || axis.scale.isBlank()) { + ticks = []; + } + + if (isFunction$1(optionTickInterval)) { + ticks = makeLabelsByCustomizedCategoryInterval(axis, optionTickInterval, true); + } + // Always use label interval by default despite label show. Consider this + // scenario, Use multiple grid with the xAxis sync, and only one xAxis shows + // labels. `splitLine` and `axisTick` should be consistent in this case. + else if (optionTickInterval === 'auto') { + var labelsResult = makeCategoryLabelsActually(axis, axis.getLabelModel()); + tickCategoryInterval = labelsResult.labelCategoryInterval; + ticks = map(labelsResult.labels, function (labelItem) { + return labelItem.tickValue; + }); + } + else { + tickCategoryInterval = optionTickInterval; + ticks = makeLabelsByNumericCategoryInterval(axis, tickCategoryInterval, true); + } + + // Cache to avoid calling interval function repeatly. + return listCacheSet(ticksCache, optionTickInterval, { + ticks: ticks, tickCategoryInterval: tickCategoryInterval + }); +} + +function makeRealNumberLabels(axis) { + var ticks = axis.scale.getTicks(); + var labelFormatter = makeLabelFormatter(axis); + return { + labels: map(ticks, function (tickValue, idx) { + return { + formattedLabel: labelFormatter(tickValue, idx), + rawLabel: axis.scale.getLabel(tickValue), + tickValue: tickValue + }; + }) + }; +} + +// Large category data calculation is performence sensitive, and ticks and label +// probably be fetched by multiple times. So we cache the result. +// axis is created each time during a ec process, so we do not need to clear cache. +function getListCache(axis, prop) { + // Because key can be funciton, and cache size always be small, we use array cache. + return inner$6(axis)[prop] || (inner$6(axis)[prop] = []); +} + +function listCacheGet(cache, key) { + for (var i = 0; i < cache.length; i++) { + if (cache[i].key === key) { + return cache[i].value; + } + } +} + +function listCacheSet(cache, key, value) { + cache.push({key: key, value: value}); + return value; +} + +function makeAutoCategoryInterval(axis) { + var result = inner$6(axis).autoInterval; + return result != null + ? result + : (inner$6(axis).autoInterval = axis.calculateCategoryInterval()); +} + +/** + * Calculate interval for category axis ticks and labels. + * To get precise result, at least one of `getRotate` and `isHorizontal` + * should be implemented in axis. + */ +function calculateCategoryInterval(axis) { + var params = fetchAutoCategoryIntervalCalculationParams(axis); + var labelFormatter = makeLabelFormatter(axis); + var rotation = (params.axisRotate - params.labelRotate) / 180 * Math.PI; + + var ordinalScale = axis.scale; + var ordinalExtent = ordinalScale.getExtent(); + // Providing this method is for optimization: + // avoid generating a long array by `getTicks` + // in large category data case. + var tickCount = ordinalScale.count(); + + if (ordinalExtent[1] - ordinalExtent[0] < 1) { + return 0; + } + + var step = 1; + // Simple optimization. Empirical value: tick count should less than 40. + if (tickCount > 40) { + step = Math.max(1, Math.floor(tickCount / 40)); + } + var tickValue = ordinalExtent[0]; + var unitSpan = axis.dataToCoord(tickValue + 1) - axis.dataToCoord(tickValue); + var unitW = Math.abs(unitSpan * Math.cos(rotation)); + var unitH = Math.abs(unitSpan * Math.sin(rotation)); + + var maxW = 0; + var maxH = 0; + + // Caution: Performance sensitive for large category data. + // Consider dataZoom, we should make appropriate step to avoid O(n) loop. + for (; tickValue <= ordinalExtent[1]; tickValue += step) { + var width = 0; + var height = 0; + + // Not precise, do not consider align and vertical align + // and each distance from axis line yet. + var rect = getBoundingRect( + labelFormatter(tickValue), params.font, 'center', 'top' + ); + // Magic number + width = rect.width * 1.3; + height = rect.height * 1.3; + + // Min size, void long loop. + maxW = Math.max(maxW, width, 7); + maxH = Math.max(maxH, height, 7); + } + + var dw = maxW / unitW; + var dh = maxH / unitH; + // 0/0 is NaN, 1/0 is Infinity. + isNaN(dw) && (dw = Infinity); + isNaN(dh) && (dh = Infinity); + var interval = Math.max(0, Math.floor(Math.min(dw, dh))); + + var cache = inner$6(axis.model); + var lastAutoInterval = cache.lastAutoInterval; + var lastTickCount = cache.lastTickCount; + + // Use cache to keep interval stable while moving zoom window, + // otherwise the calculated interval might jitter when the zoom + // window size is close to the interval-changing size. + if (lastAutoInterval != null + && lastTickCount != null + && Math.abs(lastAutoInterval - interval) <= 1 + && Math.abs(lastTickCount - tickCount) <= 1 + // Always choose the bigger one, otherwise the critical + // point is not the same when zooming in or zooming out. + && lastAutoInterval > interval + ) { + interval = lastAutoInterval; + } + // Only update cache if cache not used, otherwise the + // changing of interval is too insensitive. + else { + cache.lastTickCount = tickCount; + cache.lastAutoInterval = interval; + } + + return interval; +} + +function fetchAutoCategoryIntervalCalculationParams(axis) { + var labelModel = axis.getLabelModel(); + return { + axisRotate: axis.getRotate + ? axis.getRotate() + : (axis.isHorizontal && !axis.isHorizontal()) + ? 90 + : 0, + labelRotate: labelModel.get('rotate') || 0, + font: labelModel.getFont() + }; +} + +function makeLabelsByNumericCategoryInterval(axis, categoryInterval, onlyTick) { + var labelFormatter = makeLabelFormatter(axis); + var ordinalScale = axis.scale; + var ordinalExtent = ordinalScale.getExtent(); + var labelModel = axis.getLabelModel(); + var result = []; + + // TODO: axisType: ordinalTime, pick the tick from each month/day/year/... + + var step = Math.max((categoryInterval || 0) + 1, 1); + var startTick = ordinalExtent[0]; + var tickCount = ordinalScale.count(); + + // Calculate start tick based on zero if possible to keep label consistent + // while zooming and moving while interval > 0. Otherwise the selection + // of displayable ticks and symbols probably keep changing. + // 3 is empirical value. + if (startTick !== 0 && step > 1 && tickCount / step > 2) { + startTick = Math.round(Math.ceil(startTick / step) * step); + } + + // (1) Only add min max label here but leave overlap checking + // to render stage, which also ensure the returned list + // suitable for splitLine and splitArea rendering. + // (2) Scales except category always contain min max label so + // do not need to perform this process. + var showAllLabel = shouldShowAllLabels(axis); + var includeMinLabel = labelModel.get('showMinLabel') || showAllLabel; + var includeMaxLabel = labelModel.get('showMaxLabel') || showAllLabel; + + if (includeMinLabel && startTick !== ordinalExtent[0]) { + addItem(ordinalExtent[0]); + } + + // Optimize: avoid generating large array by `ordinalScale.getTicks()`. + var tickValue = startTick; + for (; tickValue <= ordinalExtent[1]; tickValue += step) { + addItem(tickValue); + } + + if (includeMaxLabel && tickValue - step !== ordinalExtent[1]) { + addItem(ordinalExtent[1]); + } + + function addItem(tVal) { + result.push(onlyTick + ? tVal + : { + formattedLabel: labelFormatter(tVal), + rawLabel: ordinalScale.getLabel(tVal), + tickValue: tVal + } + ); + } + + return result; +} + +// When interval is function, the result `false` means ignore the tick. +// It is time consuming for large category data. +function makeLabelsByCustomizedCategoryInterval(axis, categoryInterval, onlyTick) { + var ordinalScale = axis.scale; + var labelFormatter = makeLabelFormatter(axis); + var result = []; + + each$1(ordinalScale.getTicks(), function (tickValue) { + var rawLabel = ordinalScale.getLabel(tickValue); + if (categoryInterval(tickValue, rawLabel)) { + result.push(onlyTick + ? tickValue + : { + formattedLabel: labelFormatter(tickValue), + rawLabel: rawLabel, + tickValue: tickValue + } + ); + } + }); + + return result; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var NORMALIZED_EXTENT = [0, 1]; + +/** + * Base class of Axis. + * @constructor + */ +var Axis = function (dim, scale, extent) { + + /** + * Axis dimension. Such as 'x', 'y', 'z', 'angle', 'radius'. + * @type {string} + */ + this.dim = dim; + + /** + * Axis scale + * @type {module:echarts/coord/scale/*} + */ + this.scale = scale; + + /** + * @type {Array.} + * @private + */ + this._extent = extent || [0, 0]; + + /** + * @type {boolean} + */ + this.inverse = false; + + /** + * Usually true when axis has a ordinal scale + * @type {boolean} + */ + this.onBand = false; +}; + +Axis.prototype = { + + constructor: Axis, + + /** + * If axis extent contain given coord + * @param {number} coord + * @return {boolean} + */ + contain: function (coord) { + var extent = this._extent; + var min = Math.min(extent[0], extent[1]); + var max = Math.max(extent[0], extent[1]); + return coord >= min && coord <= max; + }, + + /** + * If axis extent contain given data + * @param {number} data + * @return {boolean} + */ + containData: function (data) { + return this.contain(this.dataToCoord(data)); + }, + + /** + * Get coord extent. + * @return {Array.} + */ + getExtent: function () { + return this._extent.slice(); + }, + + /** + * Get precision used for formatting + * @param {Array.} [dataExtent] + * @return {number} + */ + getPixelPrecision: function (dataExtent) { + return getPixelPrecision( + dataExtent || this.scale.getExtent(), + this._extent + ); + }, + + /** + * Set coord extent + * @param {number} start + * @param {number} end + */ + setExtent: function (start, end) { + var extent = this._extent; + extent[0] = start; + extent[1] = end; + }, + + /** + * Convert data to coord. Data is the rank if it has an ordinal scale + * @param {number} data + * @param {boolean} clamp + * @return {number} + */ + dataToCoord: function (data, clamp) { + var extent = this._extent; + var scale = this.scale; + data = scale.normalize(data); + + if (this.onBand && scale.type === 'ordinal') { + extent = extent.slice(); + fixExtentWithBands(extent, scale.count()); + } + + return linearMap(data, NORMALIZED_EXTENT, extent, clamp); + }, + + /** + * Convert coord to data. Data is the rank if it has an ordinal scale + * @param {number} coord + * @param {boolean} clamp + * @return {number} + */ + coordToData: function (coord, clamp) { + var extent = this._extent; + var scale = this.scale; + + if (this.onBand && scale.type === 'ordinal') { + extent = extent.slice(); + fixExtentWithBands(extent, scale.count()); + } + + var t = linearMap(coord, extent, NORMALIZED_EXTENT, clamp); + + return this.scale.scale(t); + }, + + /** + * Convert pixel point to data in axis + * @param {Array.} point + * @param {boolean} clamp + * @return {number} data + */ + pointToData: function (point, clamp) { + // Should be implemented in derived class if necessary. + }, + + /** + * Different from `zrUtil.map(axis.getTicks(), axis.dataToCoord, axis)`, + * `axis.getTicksCoords` considers `onBand`, which is used by + * `boundaryGap:true` of category axis and splitLine and splitArea. + * @param {Object} [opt] + * @param {number} [opt.tickModel=axis.model.getModel('axisTick')] + * @param {boolean} [opt.clamp] If `true`, the first and the last + * tick must be at the axis end points. Otherwise, clip ticks + * that outside the axis extent. + * @return {Array.} [{ + * coord: ..., + * tickValue: ... + * }, ...] + */ + getTicksCoords: function (opt) { + opt = opt || {}; + + var tickModel = opt.tickModel || this.getTickModel(); + + var result = createAxisTicks(this, tickModel); + var ticks = result.ticks; + + var ticksCoords = map(ticks, function (tickValue) { + return { + coord: this.dataToCoord(tickValue), + tickValue: tickValue + }; + }, this); + + var alignWithLabel = tickModel.get('alignWithLabel'); + fixOnBandTicksCoords( + this, ticksCoords, result.tickCategoryInterval, alignWithLabel, opt.clamp + ); + + return ticksCoords; + }, + + /** + * @return {Array.} [{ + * formattedLabel: string, + * rawLabel: axis.scale.getLabel(tickValue) + * tickValue: number + * }, ...] + */ + getViewLabels: function () { + return createAxisLabels(this).labels; + }, + + /** + * @return {module:echarts/coord/model/Model} + */ + getLabelModel: function () { + return this.model.getModel('axisLabel'); + }, + + /** + * Notice here we only get the default tick model. For splitLine + * or splitArea, we should pass the splitLineModel or splitAreaModel + * manually when calling `getTicksCoords`. + * In GL, this method may be overrided to: + * `axisModel.getModel('axisTick', grid3DModel.getModel('axisTick'));` + * @return {module:echarts/coord/model/Model} + */ + getTickModel: function () { + return this.model.getModel('axisTick'); + }, + + /** + * Get width of band + * @return {number} + */ + getBandWidth: function () { + var axisExtent = this._extent; + var dataExtent = this.scale.getExtent(); + + var len = dataExtent[1] - dataExtent[0] + (this.onBand ? 1 : 0); + // Fix #2728, avoid NaN when only one data. + len === 0 && (len = 1); + + var size = Math.abs(axisExtent[1] - axisExtent[0]); + + return Math.abs(size) / len; + }, + + /** + * @abstract + * @return {boolean} Is horizontal + */ + isHorizontal: null, + + /** + * @abstract + * @return {number} Get axis rotate, by degree. + */ + getRotate: null, + + /** + * Only be called in category axis. + * Can be overrided, consider other axes like in 3D. + * @return {number} Auto interval for cateogry axis tick and label + */ + calculateCategoryInterval: function () { + return calculateCategoryInterval(this); + } + +}; + +function fixExtentWithBands(extent, nTick) { + var size = extent[1] - extent[0]; + var len = nTick; + var margin = size / len / 2; + extent[0] += margin; + extent[1] -= margin; +} + +// If axis has labels [1, 2, 3, 4]. Bands on the axis are +// |---1---|---2---|---3---|---4---|. +// So the displayed ticks and splitLine/splitArea should between +// each data item, otherwise cause misleading (e.g., split tow bars +// of a single data item when there are two bar series). +// Also consider if tickCategoryInterval > 0 and onBand, ticks and +// splitLine/spliteArea should layout appropriately corresponding +// to displayed labels. (So we should not use `getBandWidth` in this +// case). +function fixOnBandTicksCoords(axis, ticksCoords, tickCategoryInterval, alignWithLabel, clamp) { + var ticksLen = ticksCoords.length; + + if (!axis.onBand || alignWithLabel || !ticksLen) { + return; + } + + var axisExtent = axis.getExtent(); + var last; + if (ticksLen === 1) { + ticksCoords[0].coord = axisExtent[0]; + last = ticksCoords[1] = {coord: axisExtent[0]}; + } + else { + var shift = (ticksCoords[1].coord - ticksCoords[0].coord); + each$1(ticksCoords, function (ticksItem) { + ticksItem.coord -= shift / 2; + var tickCategoryInterval = tickCategoryInterval || 0; + // Avoid split a single data item when odd interval. + if (tickCategoryInterval % 2 > 0) { + ticksItem.coord -= shift / ((tickCategoryInterval + 1) * 2); + } + }); + last = {coord: ticksCoords[ticksLen - 1].coord + shift}; + ticksCoords.push(last); + } + + var inverse = axisExtent[0] > axisExtent[1]; + + if (littleThan(ticksCoords[0].coord, axisExtent[0])) { + clamp ? (ticksCoords[0].coord = axisExtent[0]) : ticksCoords.shift(); + } + if (clamp && littleThan(axisExtent[0], ticksCoords[0].coord)) { + ticksCoords.unshift({coord: axisExtent[0]}); + } + if (littleThan(axisExtent[1], last.coord)) { + clamp ? (last.coord = axisExtent[1]) : ticksCoords.pop(); + } + if (clamp && littleThan(last.coord, axisExtent[1])) { + ticksCoords.push({coord: axisExtent[1]}); + } + + function littleThan(a, b) { + return inverse ? a > b : a < b; + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Do not mount those modules on 'src/echarts' for better tree shaking. + */ + +var parseGeoJson = parseGeoJson$1; + +var ecUtil = {}; +each$1( + [ + 'map', 'each', 'filter', 'indexOf', 'inherits', 'reduce', 'filter', + 'bind', 'curry', 'isArray', 'isString', 'isObject', 'isFunction', + 'extend', 'defaults', 'clone', 'merge' + ], + function (name) { + ecUtil[name] = zrUtil[name]; + } +); +var graphic$1 = {}; +each$1( + [ + 'extendShape', 'extendPath', 'makePath', 'makeImage', + 'mergePath', 'resizePath', 'createIcon', + 'setHoverStyle', 'setLabelStyle', 'setTextStyle', 'setText', + 'getFont', 'updateProps', 'initProps', 'getTransform', + 'clipPointsByRect', 'clipRectByRect', + 'Group', + 'Image', + 'Text', + 'Circle', + 'Sector', + 'Ring', + 'Polygon', + 'Polyline', + 'Rect', + 'Line', + 'BezierCurve', + 'Arc', + 'IncrementalDisplayable', + 'CompoundPath', + 'LinearGradient', + 'RadialGradient', + 'BoundingRect' + ], + function (name) { + graphic$1[name] = graphic[name]; + } +); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +SeriesModel.extend({ + + type: 'series.line', + + dependencies: ['grid', 'polar'], + + getInitialData: function (option, ecModel) { + if (__DEV__) { + var coordSys = option.coordinateSystem; + if (coordSys !== 'polar' && coordSys !== 'cartesian2d') { + throw new Error('Line not support coordinateSystem besides cartesian and polar'); + } + } + return createListFromArray(this.getSource(), this); + }, + + defaultOption: { + zlevel: 0, + z: 2, + coordinateSystem: 'cartesian2d', + legendHoverLink: true, + + hoverAnimation: true, + // stack: null + // xAxisIndex: 0, + // yAxisIndex: 0, + + // polarIndex: 0, + + // If clip the overflow value + clipOverflow: true, + // cursor: null, + + label: { + position: 'top' + }, + // itemStyle: { + // }, + + lineStyle: { + width: 2, + type: 'solid' + }, + // areaStyle: { + // origin of areaStyle. Valid values: + // `'auto'/null/undefined`: from axisLine to data + // `'start'`: from min to data + // `'end'`: from data to max + // origin: 'auto' + // }, + // false, 'start', 'end', 'middle' + step: false, + + // Disabled if step is true + smooth: false, + smoothMonotone: null, + symbol: 'emptyCircle', + symbolSize: 4, + symbolRotate: null, + + showSymbol: true, + // `false`: follow the label interval strategy. + // `true`: show all symbols. + // `'auto'`: If possible, show all symbols, otherwise + // follow the label interval strategy. + showAllSymbol: 'auto', + + // Whether to connect break point. + connectNulls: false, + + // Sampling for large data. Can be: 'average', 'max', 'min', 'sum'. + sampling: 'none', + + animationEasing: 'linear', + + // Disable progressive + progressive: 0, + hoverLayerThreshold: Infinity + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @param {module:echarts/data/List} data + * @param {number} dataIndex + * @return {string} label string. Not null/undefined + */ +function getDefaultLabel(data, dataIndex) { + var labelDims = data.mapDimension('defaultedLabel', true); + var len = labelDims.length; + + // Simple optimization (in lots of cases, label dims length is 1) + if (len === 1) { + return retrieveRawValue(data, dataIndex, labelDims[0]); + } + else if (len) { + var vals = []; + for (var i = 0; i < labelDims.length; i++) { + var val = retrieveRawValue(data, dataIndex, labelDims[i]); + vals.push(val); + } + return vals.join(' '); + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @module echarts/chart/helper/Symbol + */ + +/** + * @constructor + * @alias {module:echarts/chart/helper/Symbol} + * @param {module:echarts/data/List} data + * @param {number} idx + * @extends {module:zrender/graphic/Group} + */ +function SymbolClz$1(data, idx, seriesScope) { + Group.call(this); + this.updateData(data, idx, seriesScope); +} + +var symbolProto = SymbolClz$1.prototype; + +/** + * @public + * @static + * @param {module:echarts/data/List} data + * @param {number} dataIndex + * @return {Array.} [width, height] + */ +var getSymbolSize = SymbolClz$1.getSymbolSize = function (data, idx) { + var symbolSize = data.getItemVisual(idx, 'symbolSize'); + return symbolSize instanceof Array + ? symbolSize.slice() + : [+symbolSize, +symbolSize]; +}; + +function getScale(symbolSize) { + return [symbolSize[0] / 2, symbolSize[1] / 2]; +} + +function driftSymbol(dx, dy) { + this.parent.drift(dx, dy); +} + +symbolProto._createSymbol = function ( + symbolType, + data, + idx, + symbolSize, + keepAspect +) { + // Remove paths created before + this.removeAll(); + + var color = data.getItemVisual(idx, 'color'); + + // var symbolPath = createSymbol( + // symbolType, -0.5, -0.5, 1, 1, color + // ); + // If width/height are set too small (e.g., set to 1) on ios10 + // and macOS Sierra, a circle stroke become a rect, no matter what + // the scale is set. So we set width/height as 2. See #4150. + var symbolPath = createSymbol( + symbolType, -1, -1, 2, 2, color, keepAspect + ); + + symbolPath.attr({ + z2: 100, + culling: true, + scale: getScale(symbolSize) + }); + // Rewrite drift method + symbolPath.drift = driftSymbol; + + this._symbolType = symbolType; + + this.add(symbolPath); +}; + +/** + * Stop animation + * @param {boolean} toLastFrame + */ +symbolProto.stopSymbolAnimation = function (toLastFrame) { + this.childAt(0).stopAnimation(toLastFrame); +}; + +/** + * FIXME: + * Caution: This method breaks the encapsulation of this module, + * but it indeed brings convenience. So do not use the method + * unless you detailedly know all the implements of `Symbol`, + * especially animation. + * + * Get symbol path element. + */ +symbolProto.getSymbolPath = function () { + return this.childAt(0); +}; + +/** + * Get scale(aka, current symbol size). + * Including the change caused by animation + */ +symbolProto.getScale = function () { + return this.childAt(0).scale; +}; + +/** + * Highlight symbol + */ +symbolProto.highlight = function () { + this.childAt(0).trigger('emphasis'); +}; + +/** + * Downplay symbol + */ +symbolProto.downplay = function () { + this.childAt(0).trigger('normal'); +}; + +/** + * @param {number} zlevel + * @param {number} z + */ +symbolProto.setZ = function (zlevel, z) { + var symbolPath = this.childAt(0); + symbolPath.zlevel = zlevel; + symbolPath.z = z; +}; + +symbolProto.setDraggable = function (draggable) { + var symbolPath = this.childAt(0); + symbolPath.draggable = draggable; + symbolPath.cursor = draggable ? 'move' : symbolPath.cursor; +}; + +/** + * Update symbol properties + * @param {module:echarts/data/List} data + * @param {number} idx + * @param {Object} [seriesScope] + * @param {Object} [seriesScope.itemStyle] + * @param {Object} [seriesScope.hoverItemStyle] + * @param {Object} [seriesScope.symbolRotate] + * @param {Object} [seriesScope.symbolOffset] + * @param {module:echarts/model/Model} [seriesScope.labelModel] + * @param {module:echarts/model/Model} [seriesScope.hoverLabelModel] + * @param {boolean} [seriesScope.hoverAnimation] + * @param {Object} [seriesScope.cursorStyle] + * @param {module:echarts/model/Model} [seriesScope.itemModel] + * @param {string} [seriesScope.symbolInnerColor] + * @param {Object} [seriesScope.fadeIn=false] + */ +symbolProto.updateData = function (data, idx, seriesScope) { + this.silent = false; + + var symbolType = data.getItemVisual(idx, 'symbol') || 'circle'; + var seriesModel = data.hostModel; + var symbolSize = getSymbolSize(data, idx); + var isInit = symbolType !== this._symbolType; + + if (isInit) { + var keepAspect = data.getItemVisual(idx, 'symbolKeepAspect'); + this._createSymbol(symbolType, data, idx, symbolSize, keepAspect); + } + else { + var symbolPath = this.childAt(0); + symbolPath.silent = false; + updateProps(symbolPath, { + scale: getScale(symbolSize) + }, seriesModel, idx); + } + + this._updateCommon(data, idx, symbolSize, seriesScope); + + if (isInit) { + var symbolPath = this.childAt(0); + var fadeIn = seriesScope && seriesScope.fadeIn; + + var target = {scale: symbolPath.scale.slice()}; + fadeIn && (target.style = {opacity: symbolPath.style.opacity}); + + symbolPath.scale = [0, 0]; + fadeIn && (symbolPath.style.opacity = 0); + + initProps(symbolPath, target, seriesModel, idx); + } + + this._seriesModel = seriesModel; +}; + +// Update common properties +var normalStyleAccessPath = ['itemStyle']; +var emphasisStyleAccessPath = ['emphasis', 'itemStyle']; +var normalLabelAccessPath = ['label']; +var emphasisLabelAccessPath = ['emphasis', 'label']; + +/** + * @param {module:echarts/data/List} data + * @param {number} idx + * @param {Array.} symbolSize + * @param {Object} [seriesScope] + */ +symbolProto._updateCommon = function (data, idx, symbolSize, seriesScope) { + var symbolPath = this.childAt(0); + var seriesModel = data.hostModel; + var color = data.getItemVisual(idx, 'color'); + + // Reset style + if (symbolPath.type !== 'image') { + symbolPath.useStyle({ + strokeNoScale: true + }); + } + + var itemStyle = seriesScope && seriesScope.itemStyle; + var hoverItemStyle = seriesScope && seriesScope.hoverItemStyle; + var symbolRotate = seriesScope && seriesScope.symbolRotate; + var symbolOffset = seriesScope && seriesScope.symbolOffset; + var labelModel = seriesScope && seriesScope.labelModel; + var hoverLabelModel = seriesScope && seriesScope.hoverLabelModel; + var hoverAnimation = seriesScope && seriesScope.hoverAnimation; + var cursorStyle = seriesScope && seriesScope.cursorStyle; + + if (!seriesScope || data.hasItemOption) { + var itemModel = (seriesScope && seriesScope.itemModel) + ? seriesScope.itemModel : data.getItemModel(idx); + + // Color must be excluded. + // Because symbol provide setColor individually to set fill and stroke + itemStyle = itemModel.getModel(normalStyleAccessPath).getItemStyle(['color']); + hoverItemStyle = itemModel.getModel(emphasisStyleAccessPath).getItemStyle(); + + symbolRotate = itemModel.getShallow('symbolRotate'); + symbolOffset = itemModel.getShallow('symbolOffset'); + + labelModel = itemModel.getModel(normalLabelAccessPath); + hoverLabelModel = itemModel.getModel(emphasisLabelAccessPath); + hoverAnimation = itemModel.getShallow('hoverAnimation'); + cursorStyle = itemModel.getShallow('cursor'); + } + else { + hoverItemStyle = extend({}, hoverItemStyle); + } + + var elStyle = symbolPath.style; + + symbolPath.attr('rotation', (symbolRotate || 0) * Math.PI / 180 || 0); + + if (symbolOffset) { + symbolPath.attr('position', [ + parsePercent$1(symbolOffset[0], symbolSize[0]), + parsePercent$1(symbolOffset[1], symbolSize[1]) + ]); + } + + cursorStyle && symbolPath.attr('cursor', cursorStyle); + + // PENDING setColor before setStyle!!! + symbolPath.setColor(color, seriesScope && seriesScope.symbolInnerColor); + + symbolPath.setStyle(itemStyle); + + var opacity = data.getItemVisual(idx, 'opacity'); + if (opacity != null) { + elStyle.opacity = opacity; + } + + var liftZ = data.getItemVisual(idx, 'liftZ'); + var z2Origin = symbolPath.__z2Origin; + if (liftZ != null) { + if (z2Origin == null) { + symbolPath.__z2Origin = symbolPath.z2; + symbolPath.z2 += liftZ; + } + } + else if (z2Origin != null) { + symbolPath.z2 = z2Origin; + symbolPath.__z2Origin = null; + } + + var useNameLabel = seriesScope && seriesScope.useNameLabel; + + setLabelStyle( + elStyle, hoverItemStyle, labelModel, hoverLabelModel, + { + labelFetcher: seriesModel, + labelDataIndex: idx, + defaultText: getLabelDefaultText, + isRectText: true, + autoColor: color + } + ); + + // Do not execute util needed. + function getLabelDefaultText(idx, opt) { + return useNameLabel ? data.getName(idx) : getDefaultLabel(data, idx); + } + + symbolPath.__symbolOriginalScale = getScale(symbolSize); + symbolPath.hoverStyle = hoverItemStyle; + symbolPath.highDownOnUpdate = ( + hoverAnimation && seriesModel.isAnimationEnabled() + ) ? highDownOnUpdate : null; + + setHoverStyle(symbolPath); +}; + +function highDownOnUpdate(fromState, toState) { + // Do not support this hover animation util some scenario required. + // Animation can only be supported in hover layer when using `el.incremetal`. + if (this.incremental || this.useHoverLayer) { + return; + } + + if (toState === 'emphasis') { + var scale = this.__symbolOriginalScale; + var ratio = scale[1] / scale[0]; + var emphasisOpt = { + scale: [ + Math.max(scale[0] * 1.1, scale[0] + 3), + Math.max(scale[1] * 1.1, scale[1] + 3 * ratio) + ] + }; + // FIXME + // modify it after support stop specified animation. + // toState === fromState + // ? (this.stopAnimation(), this.attr(emphasisOpt)) + this.animateTo(emphasisOpt, 400, 'elasticOut'); + } + else if (toState === 'normal') { + this.animateTo({ + scale: this.__symbolOriginalScale + }, 400, 'elasticOut'); + } +} + +/** + * @param {Function} cb + * @param {Object} [opt] + * @param {Object} [opt.keepLabel=true] + */ +symbolProto.fadeOut = function (cb, opt) { + var symbolPath = this.childAt(0); + // Avoid mistaken hover when fading out + this.silent = symbolPath.silent = true; + // Not show text when animating + !(opt && opt.keepLabel) && (symbolPath.style.text = null); + + updateProps( + symbolPath, + { + style: {opacity: 0}, + scale: [0, 0] + }, + this._seriesModel, + this.dataIndex, + cb + ); +}; + +inherits(SymbolClz$1, Group); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @module echarts/chart/helper/SymbolDraw + */ + +/** + * @constructor + * @alias module:echarts/chart/helper/SymbolDraw + * @param {module:zrender/graphic/Group} [symbolCtor] + */ +function SymbolDraw(symbolCtor) { + this.group = new Group(); + + this._symbolCtor = symbolCtor || SymbolClz$1; +} + +var symbolDrawProto = SymbolDraw.prototype; + +function symbolNeedsDraw(data, point, idx, opt) { + return point && !isNaN(point[0]) && !isNaN(point[1]) + && !(opt.isIgnore && opt.isIgnore(idx)) + // We do not set clipShape on group, because it will cut part of + // the symbol element shape. We use the same clip shape here as + // the line clip. + && !(opt.clipShape && !opt.clipShape.contain(point[0], point[1])) + && data.getItemVisual(idx, 'symbol') !== 'none'; +} + +/** + * Update symbols draw by new data + * @param {module:echarts/data/List} data + * @param {Object} [opt] Or isIgnore + * @param {Function} [opt.isIgnore] + * @param {Object} [opt.clipShape] + */ +symbolDrawProto.updateData = function (data, opt) { + opt = normalizeUpdateOpt(opt); + + var group = this.group; + var seriesModel = data.hostModel; + var oldData = this._data; + var SymbolCtor = this._symbolCtor; + + var seriesScope = makeSeriesScope(data); + + // There is no oldLineData only when first rendering or switching from + // stream mode to normal mode, where previous elements should be removed. + if (!oldData) { + group.removeAll(); + } + + data.diff(oldData) + .add(function (newIdx) { + var point = data.getItemLayout(newIdx); + if (symbolNeedsDraw(data, point, newIdx, opt)) { + var symbolEl = new SymbolCtor(data, newIdx, seriesScope); + symbolEl.attr('position', point); + data.setItemGraphicEl(newIdx, symbolEl); + group.add(symbolEl); + } + }) + .update(function (newIdx, oldIdx) { + var symbolEl = oldData.getItemGraphicEl(oldIdx); + var point = data.getItemLayout(newIdx); + if (!symbolNeedsDraw(data, point, newIdx, opt)) { + group.remove(symbolEl); + return; + } + if (!symbolEl) { + symbolEl = new SymbolCtor(data, newIdx); + symbolEl.attr('position', point); + } + else { + symbolEl.updateData(data, newIdx, seriesScope); + updateProps(symbolEl, { + position: point + }, seriesModel); + } + + // Add back + group.add(symbolEl); + + data.setItemGraphicEl(newIdx, symbolEl); + }) + .remove(function (oldIdx) { + var el = oldData.getItemGraphicEl(oldIdx); + el && el.fadeOut(function () { + group.remove(el); + }); + }) + .execute(); + + this._data = data; +}; + +symbolDrawProto.isPersistent = function () { + return true; +}; + +symbolDrawProto.updateLayout = function () { + var data = this._data; + if (data) { + // Not use animation + data.eachItemGraphicEl(function (el, idx) { + var point = data.getItemLayout(idx); + el.attr('position', point); + }); + } +}; + +symbolDrawProto.incrementalPrepareUpdate = function (data) { + this._seriesScope = makeSeriesScope(data); + this._data = null; + this.group.removeAll(); +}; + +/** + * Update symbols draw by new data + * @param {module:echarts/data/List} data + * @param {Object} [opt] Or isIgnore + * @param {Function} [opt.isIgnore] + * @param {Object} [opt.clipShape] + */ +symbolDrawProto.incrementalUpdate = function (taskParams, data, opt) { + opt = normalizeUpdateOpt(opt); + + function updateIncrementalAndHover(el) { + if (!el.isGroup) { + el.incremental = el.useHoverLayer = true; + } + } + for (var idx = taskParams.start; idx < taskParams.end; idx++) { + var point = data.getItemLayout(idx); + if (symbolNeedsDraw(data, point, idx, opt)) { + var el = new this._symbolCtor(data, idx, this._seriesScope); + el.traverse(updateIncrementalAndHover); + el.attr('position', point); + this.group.add(el); + data.setItemGraphicEl(idx, el); + } + } +}; + +function normalizeUpdateOpt(opt) { + if (opt != null && !isObject$1(opt)) { + opt = {isIgnore: opt}; + } + return opt || {}; +} + +symbolDrawProto.remove = function (enableAnimation) { + var group = this.group; + var data = this._data; + // Incremental model do not have this._data. + if (data && enableAnimation) { + data.eachItemGraphicEl(function (el) { + el.fadeOut(function () { + group.remove(el); + }); + }); + } + else { + group.removeAll(); + } +}; + +function makeSeriesScope(data) { + var seriesModel = data.hostModel; + return { + itemStyle: seriesModel.getModel('itemStyle').getItemStyle(['color']), + hoverItemStyle: seriesModel.getModel('emphasis.itemStyle').getItemStyle(), + symbolRotate: seriesModel.get('symbolRotate'), + symbolOffset: seriesModel.get('symbolOffset'), + hoverAnimation: seriesModel.get('hoverAnimation'), + labelModel: seriesModel.getModel('label'), + hoverLabelModel: seriesModel.getModel('emphasis.label'), + cursorStyle: seriesModel.get('cursor') + }; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @param {Object} coordSys + * @param {module:echarts/data/List} data + * @param {string} valueOrigin lineSeries.option.areaStyle.origin + */ +function prepareDataCoordInfo(coordSys, data, valueOrigin) { + var baseAxis = coordSys.getBaseAxis(); + var valueAxis = coordSys.getOtherAxis(baseAxis); + var valueStart = getValueStart(valueAxis, valueOrigin); + + var baseAxisDim = baseAxis.dim; + var valueAxisDim = valueAxis.dim; + var valueDim = data.mapDimension(valueAxisDim); + var baseDim = data.mapDimension(baseAxisDim); + var baseDataOffset = valueAxisDim === 'x' || valueAxisDim === 'radius' ? 1 : 0; + + var dims = map(coordSys.dimensions, function (coordDim) { + return data.mapDimension(coordDim); + }); + + var stacked; + var stackResultDim = data.getCalculationInfo('stackResultDimension'); + if (stacked |= isDimensionStacked(data, dims[0] /*, dims[1]*/)) { // jshint ignore:line + dims[0] = stackResultDim; + } + if (stacked |= isDimensionStacked(data, dims[1] /*, dims[0]*/)) { // jshint ignore:line + dims[1] = stackResultDim; + } + + return { + dataDimsForPoint: dims, + valueStart: valueStart, + valueAxisDim: valueAxisDim, + baseAxisDim: baseAxisDim, + stacked: !!stacked, + valueDim: valueDim, + baseDim: baseDim, + baseDataOffset: baseDataOffset, + stackedOverDimension: data.getCalculationInfo('stackedOverDimension') + }; +} + +function getValueStart(valueAxis, valueOrigin) { + var valueStart = 0; + var extent = valueAxis.scale.getExtent(); + + if (valueOrigin === 'start') { + valueStart = extent[0]; + } + else if (valueOrigin === 'end') { + valueStart = extent[1]; + } + // auto + else { + // Both positive + if (extent[0] > 0) { + valueStart = extent[0]; + } + // Both negative + else if (extent[1] < 0) { + valueStart = extent[1]; + } + // If is one positive, and one negative, onZero shall be true + } + + return valueStart; +} + +function getStackedOnPoint(dataCoordInfo, coordSys, data, idx) { + var value = NaN; + if (dataCoordInfo.stacked) { + value = data.get(data.getCalculationInfo('stackedOverDimension'), idx); + } + if (isNaN(value)) { + value = dataCoordInfo.valueStart; + } + + var baseDataOffset = dataCoordInfo.baseDataOffset; + var stackedData = []; + stackedData[baseDataOffset] = data.get(dataCoordInfo.baseDim, idx); + stackedData[1 - baseDataOffset] = value; + + return coordSys.dataToPoint(stackedData); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// var arrayDiff = require('zrender/src/core/arrayDiff'); +// 'zrender/src/core/arrayDiff' has been used before, but it did +// not do well in performance when roam with fixed dataZoom window. + +// function convertToIntId(newIdList, oldIdList) { +// // Generate int id instead of string id. +// // Compare string maybe slow in score function of arrDiff + +// // Assume id in idList are all unique +// var idIndicesMap = {}; +// var idx = 0; +// for (var i = 0; i < newIdList.length; i++) { +// idIndicesMap[newIdList[i]] = idx; +// newIdList[i] = idx++; +// } +// for (var i = 0; i < oldIdList.length; i++) { +// var oldId = oldIdList[i]; +// // Same with newIdList +// if (idIndicesMap[oldId]) { +// oldIdList[i] = idIndicesMap[oldId]; +// } +// else { +// oldIdList[i] = idx++; +// } +// } +// } + +function diffData(oldData, newData) { + var diffResult = []; + + newData.diff(oldData) + .add(function (idx) { + diffResult.push({cmd: '+', idx: idx}); + }) + .update(function (newIdx, oldIdx) { + diffResult.push({cmd: '=', idx: oldIdx, idx1: newIdx}); + }) + .remove(function (idx) { + diffResult.push({cmd: '-', idx: idx}); + }) + .execute(); + + return diffResult; +} + +var lineAnimationDiff = function ( + oldData, newData, + oldStackedOnPoints, newStackedOnPoints, + oldCoordSys, newCoordSys, + oldValueOrigin, newValueOrigin +) { + var diff = diffData(oldData, newData); + + // var newIdList = newData.mapArray(newData.getId); + // var oldIdList = oldData.mapArray(oldData.getId); + + // convertToIntId(newIdList, oldIdList); + + // // FIXME One data ? + // diff = arrayDiff(oldIdList, newIdList); + + var currPoints = []; + var nextPoints = []; + // Points for stacking base line + var currStackedPoints = []; + var nextStackedPoints = []; + + var status = []; + var sortedIndices = []; + var rawIndices = []; + + var newDataOldCoordInfo = prepareDataCoordInfo(oldCoordSys, newData, oldValueOrigin); + var oldDataNewCoordInfo = prepareDataCoordInfo(newCoordSys, oldData, newValueOrigin); + + for (var i = 0; i < diff.length; i++) { + var diffItem = diff[i]; + var pointAdded = true; + + // FIXME, animation is not so perfect when dataZoom window moves fast + // Which is in case remvoing or add more than one data in the tail or head + switch (diffItem.cmd) { + case '=': + var currentPt = oldData.getItemLayout(diffItem.idx); + var nextPt = newData.getItemLayout(diffItem.idx1); + // If previous data is NaN, use next point directly + if (isNaN(currentPt[0]) || isNaN(currentPt[1])) { + currentPt = nextPt.slice(); + } + currPoints.push(currentPt); + nextPoints.push(nextPt); + + currStackedPoints.push(oldStackedOnPoints[diffItem.idx]); + nextStackedPoints.push(newStackedOnPoints[diffItem.idx1]); + + rawIndices.push(newData.getRawIndex(diffItem.idx1)); + break; + case '+': + var idx = diffItem.idx; + currPoints.push( + oldCoordSys.dataToPoint([ + newData.get(newDataOldCoordInfo.dataDimsForPoint[0], idx), + newData.get(newDataOldCoordInfo.dataDimsForPoint[1], idx) + ]) + ); + + nextPoints.push(newData.getItemLayout(idx).slice()); + + currStackedPoints.push( + getStackedOnPoint(newDataOldCoordInfo, oldCoordSys, newData, idx) + ); + nextStackedPoints.push(newStackedOnPoints[idx]); + + rawIndices.push(newData.getRawIndex(idx)); + break; + case '-': + var idx = diffItem.idx; + var rawIndex = oldData.getRawIndex(idx); + // Data is replaced. In the case of dynamic data queue + // FIXME FIXME FIXME + if (rawIndex !== idx) { + currPoints.push(oldData.getItemLayout(idx)); + nextPoints.push(newCoordSys.dataToPoint([ + oldData.get(oldDataNewCoordInfo.dataDimsForPoint[0], idx), + oldData.get(oldDataNewCoordInfo.dataDimsForPoint[1], idx) + ])); + + currStackedPoints.push(oldStackedOnPoints[idx]); + nextStackedPoints.push( + getStackedOnPoint(oldDataNewCoordInfo, newCoordSys, oldData, idx) + ); + + rawIndices.push(rawIndex); + } + else { + pointAdded = false; + } + } + + // Original indices + if (pointAdded) { + status.push(diffItem); + sortedIndices.push(sortedIndices.length); + } + } + + // Diff result may be crossed if all items are changed + // Sort by data index + sortedIndices.sort(function (a, b) { + return rawIndices[a] - rawIndices[b]; + }); + + var sortedCurrPoints = []; + var sortedNextPoints = []; + + var sortedCurrStackedPoints = []; + var sortedNextStackedPoints = []; + + var sortedStatus = []; + for (var i = 0; i < sortedIndices.length; i++) { + var idx = sortedIndices[i]; + sortedCurrPoints[i] = currPoints[idx]; + sortedNextPoints[i] = nextPoints[idx]; + + sortedCurrStackedPoints[i] = currStackedPoints[idx]; + sortedNextStackedPoints[i] = nextStackedPoints[idx]; + + sortedStatus[i] = status[idx]; + } + + return { + current: sortedCurrPoints, + next: sortedNextPoints, + + stackedOnCurrent: sortedCurrStackedPoints, + stackedOnNext: sortedNextStackedPoints, + + status: sortedStatus + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Poly path support NaN point + +var vec2Min = min; +var vec2Max = max; + +var scaleAndAdd$1 = scaleAndAdd; +var v2Copy = copy; + +// Temporary variable +var v = []; +var cp0 = []; +var cp1 = []; + +function isPointNull(p) { + return isNaN(p[0]) || isNaN(p[1]); +} + +function drawSegment( + ctx, points, start, segLen, allLen, + dir, smoothMin, smoothMax, smooth, smoothMonotone, connectNulls +) { + // if (smoothMonotone == null) { + // if (isMono(points, 'x')) { + // return drawMono(ctx, points, start, segLen, allLen, + // dir, smoothMin, smoothMax, smooth, 'x', connectNulls); + // } + // else if (isMono(points, 'y')) { + // return drawMono(ctx, points, start, segLen, allLen, + // dir, smoothMin, smoothMax, smooth, 'y', connectNulls); + // } + // else { + // return drawNonMono.apply(this, arguments); + // } + // } + // else if (smoothMonotone !== 'none' && isMono(points, smoothMonotone)) { + // return drawMono.apply(this, arguments); + // } + // else { + // return drawNonMono.apply(this, arguments); + // } + if (smoothMonotone === 'none' || !smoothMonotone) { + return drawNonMono.apply(this, arguments); + } + else { + return drawMono.apply(this, arguments); + } +} + +/** + * Check if points is in monotone. + * + * @param {number[][]} points Array of points which is in [x, y] form + * @param {string} smoothMonotone 'x', 'y', or 'none', stating for which + * dimension that is checking. + * If is 'none', `drawNonMono` should be + * called. + * If is undefined, either being monotone + * in 'x' or 'y' will call `drawMono`. + */ +// function isMono(points, smoothMonotone) { +// if (points.length <= 1) { +// return true; +// } + +// var dim = smoothMonotone === 'x' ? 0 : 1; +// var last = points[0][dim]; +// var lastDiff = 0; +// for (var i = 1; i < points.length; ++i) { +// var diff = points[i][dim] - last; +// if (!isNaN(diff) && !isNaN(lastDiff) +// && diff !== 0 && lastDiff !== 0 +// && ((diff >= 0) !== (lastDiff >= 0)) +// ) { +// return false; +// } +// if (!isNaN(diff) && diff !== 0) { +// lastDiff = diff; +// last = points[i][dim]; +// } +// } +// return true; +// } + +/** + * Draw smoothed line in monotone, in which only vertical or horizontal bezier + * control points will be used. This should be used when points are monotone + * either in x or y dimension. + */ +function drawMono( + ctx, points, start, segLen, allLen, + dir, smoothMin, smoothMax, smooth, smoothMonotone, connectNulls +) { + var prevIdx = 0; + var idx = start; + for (var k = 0; k < segLen; k++) { + var p = points[idx]; + if (idx >= allLen || idx < 0) { + break; + } + if (isPointNull(p)) { + if (connectNulls) { + idx += dir; + continue; + } + break; + } + + if (idx === start) { + ctx[dir > 0 ? 'moveTo' : 'lineTo'](p[0], p[1]); + } + else { + if (smooth > 0) { + var prevP = points[prevIdx]; + var dim = smoothMonotone === 'y' ? 1 : 0; + + // Length of control point to p, either in x or y, but not both + var ctrlLen = (p[dim] - prevP[dim]) * smooth; + + v2Copy(cp0, prevP); + cp0[dim] = prevP[dim] + ctrlLen; + + v2Copy(cp1, p); + cp1[dim] = p[dim] - ctrlLen; + + ctx.bezierCurveTo( + cp0[0], cp0[1], + cp1[0], cp1[1], + p[0], p[1] + ); + } + else { + ctx.lineTo(p[0], p[1]); + } + } + + prevIdx = idx; + idx += dir; + } + + return k; +} + +/** + * Draw smoothed line in non-monotone, in may cause undesired curve in extreme + * situations. This should be used when points are non-monotone neither in x or + * y dimension. + */ +function drawNonMono( + ctx, points, start, segLen, allLen, + dir, smoothMin, smoothMax, smooth, smoothMonotone, connectNulls +) { + var prevIdx = 0; + var idx = start; + for (var k = 0; k < segLen; k++) { + var p = points[idx]; + if (idx >= allLen || idx < 0) { + break; + } + if (isPointNull(p)) { + if (connectNulls) { + idx += dir; + continue; + } + break; + } + + if (idx === start) { + ctx[dir > 0 ? 'moveTo' : 'lineTo'](p[0], p[1]); + v2Copy(cp0, p); + } + else { + if (smooth > 0) { + var nextIdx = idx + dir; + var nextP = points[nextIdx]; + if (connectNulls) { + // Find next point not null + while (nextP && isPointNull(points[nextIdx])) { + nextIdx += dir; + nextP = points[nextIdx]; + } + } + + var ratioNextSeg = 0.5; + var prevP = points[prevIdx]; + var nextP = points[nextIdx]; + // Last point + if (!nextP || isPointNull(nextP)) { + v2Copy(cp1, p); + } + else { + // If next data is null in not connect case + if (isPointNull(nextP) && !connectNulls) { + nextP = p; + } + + sub(v, nextP, prevP); + + var lenPrevSeg; + var lenNextSeg; + if (smoothMonotone === 'x' || smoothMonotone === 'y') { + var dim = smoothMonotone === 'x' ? 0 : 1; + lenPrevSeg = Math.abs(p[dim] - prevP[dim]); + lenNextSeg = Math.abs(p[dim] - nextP[dim]); + } + else { + lenPrevSeg = dist(p, prevP); + lenNextSeg = dist(p, nextP); + } + + // Use ratio of seg length + ratioNextSeg = lenNextSeg / (lenNextSeg + lenPrevSeg); + + scaleAndAdd$1(cp1, p, v, -smooth * (1 - ratioNextSeg)); + } + // Smooth constraint + vec2Min(cp0, cp0, smoothMax); + vec2Max(cp0, cp0, smoothMin); + vec2Min(cp1, cp1, smoothMax); + vec2Max(cp1, cp1, smoothMin); + + ctx.bezierCurveTo( + cp0[0], cp0[1], + cp1[0], cp1[1], + p[0], p[1] + ); + // cp0 of next segment + scaleAndAdd$1(cp0, p, v, smooth * ratioNextSeg); + } + else { + ctx.lineTo(p[0], p[1]); + } + } + + prevIdx = idx; + idx += dir; + } + + return k; +} + +function getBoundingBox(points, smoothConstraint) { + var ptMin = [Infinity, Infinity]; + var ptMax = [-Infinity, -Infinity]; + if (smoothConstraint) { + for (var i = 0; i < points.length; i++) { + var pt = points[i]; + if (pt[0] < ptMin[0]) { + ptMin[0] = pt[0]; + } + if (pt[1] < ptMin[1]) { + ptMin[1] = pt[1]; + } + if (pt[0] > ptMax[0]) { + ptMax[0] = pt[0]; + } + if (pt[1] > ptMax[1]) { + ptMax[1] = pt[1]; + } + } + } + return { + min: smoothConstraint ? ptMin : ptMax, + max: smoothConstraint ? ptMax : ptMin + }; +} + +var Polyline$1 = Path.extend({ + + type: 'ec-polyline', + + shape: { + points: [], + + smooth: 0, + + smoothConstraint: true, + + smoothMonotone: null, + + connectNulls: false + }, + + style: { + fill: null, + + stroke: '#000' + }, + + brush: fixClipWithShadow(Path.prototype.brush), + + buildPath: function (ctx, shape) { + var points = shape.points; + + var i = 0; + var len$$1 = points.length; + + var result = getBoundingBox(points, shape.smoothConstraint); + + if (shape.connectNulls) { + // Must remove first and last null values avoid draw error in polygon + for (; len$$1 > 0; len$$1--) { + if (!isPointNull(points[len$$1 - 1])) { + break; + } + } + for (; i < len$$1; i++) { + if (!isPointNull(points[i])) { + break; + } + } + } + while (i < len$$1) { + i += drawSegment( + ctx, points, i, len$$1, len$$1, + 1, result.min, result.max, shape.smooth, + shape.smoothMonotone, shape.connectNulls + ) + 1; + } + } +}); + +var Polygon$1 = Path.extend({ + + type: 'ec-polygon', + + shape: { + points: [], + + // Offset between stacked base points and points + stackedOnPoints: [], + + smooth: 0, + + stackedOnSmooth: 0, + + smoothConstraint: true, + + smoothMonotone: null, + + connectNulls: false + }, + + brush: fixClipWithShadow(Path.prototype.brush), + + buildPath: function (ctx, shape) { + var points = shape.points; + var stackedOnPoints = shape.stackedOnPoints; + + var i = 0; + var len$$1 = points.length; + var smoothMonotone = shape.smoothMonotone; + var bbox = getBoundingBox(points, shape.smoothConstraint); + var stackedOnBBox = getBoundingBox(stackedOnPoints, shape.smoothConstraint); + + if (shape.connectNulls) { + // Must remove first and last null values avoid draw error in polygon + for (; len$$1 > 0; len$$1--) { + if (!isPointNull(points[len$$1 - 1])) { + break; + } + } + for (; i < len$$1; i++) { + if (!isPointNull(points[i])) { + break; + } + } + } + while (i < len$$1) { + var k = drawSegment( + ctx, points, i, len$$1, len$$1, + 1, bbox.min, bbox.max, shape.smooth, + smoothMonotone, shape.connectNulls + ); + drawSegment( + ctx, stackedOnPoints, i + k - 1, k, len$$1, + -1, stackedOnBBox.min, stackedOnBBox.max, shape.stackedOnSmooth, + smoothMonotone, shape.connectNulls + ); + i += k + 1; + + ctx.closePath(); + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// FIXME step not support polar + +function isPointsSame(points1, points2) { + if (points1.length !== points2.length) { + return; + } + for (var i = 0; i < points1.length; i++) { + var p1 = points1[i]; + var p2 = points2[i]; + if (p1[0] !== p2[0] || p1[1] !== p2[1]) { + return; + } + } + return true; +} + +function getSmooth(smooth) { + return typeof (smooth) === 'number' ? smooth : (smooth ? 0.5 : 0); +} + +function getAxisExtentWithGap(axis) { + var extent = axis.getGlobalExtent(); + if (axis.onBand) { + // Remove extra 1px to avoid line miter in clipped edge + var halfBandWidth = axis.getBandWidth() / 2 - 1; + var dir = extent[1] > extent[0] ? 1 : -1; + extent[0] += dir * halfBandWidth; + extent[1] -= dir * halfBandWidth; + } + return extent; +} + +/** + * @param {module:echarts/coord/cartesian/Cartesian2D|module:echarts/coord/polar/Polar} coordSys + * @param {module:echarts/data/List} data + * @param {Object} dataCoordInfo + * @param {Array.>} points + */ +function getStackedOnPoints(coordSys, data, dataCoordInfo) { + if (!dataCoordInfo.valueDim) { + return []; + } + + var points = []; + for (var idx = 0, len = data.count(); idx < len; idx++) { + points.push(getStackedOnPoint(dataCoordInfo, coordSys, data, idx)); + } + + return points; +} + +function createGridClipShape(cartesian, hasAnimation, forSymbol, seriesModel) { + var xExtent = getAxisExtentWithGap(cartesian.getAxis('x')); + var yExtent = getAxisExtentWithGap(cartesian.getAxis('y')); + var isHorizontal = cartesian.getBaseAxis().isHorizontal(); + + var x = Math.min(xExtent[0], xExtent[1]); + var y = Math.min(yExtent[0], yExtent[1]); + var width = Math.max(xExtent[0], xExtent[1]) - x; + var height = Math.max(yExtent[0], yExtent[1]) - y; + + // Avoid float number rounding error for symbol on the edge of axis extent. + // See #7913 and `test/dataZoom-clip.html`. + if (forSymbol) { + x -= 0.5; + width += 0.5; + y -= 0.5; + height += 0.5; + } + else { + var lineWidth = seriesModel.get('lineStyle.width') || 2; + // Expand clip shape to avoid clipping when line value exceeds axis + var expandSize = seriesModel.get('clipOverflow') ? lineWidth / 2 : Math.max(width, height); + if (isHorizontal) { + y -= expandSize; + height += expandSize * 2; + } + else { + x -= expandSize; + width += expandSize * 2; + } + } + + var clipPath = new Rect({ + shape: { + x: x, + y: y, + width: width, + height: height + } + }); + + if (hasAnimation) { + clipPath.shape[isHorizontal ? 'width' : 'height'] = 0; + initProps(clipPath, { + shape: { + width: width, + height: height + } + }, seriesModel); + } + + return clipPath; +} + +function createPolarClipShape(polar, hasAnimation, forSymbol, seriesModel) { + var angleAxis = polar.getAngleAxis(); + var radiusAxis = polar.getRadiusAxis(); + + var radiusExtent = radiusAxis.getExtent().slice(); + radiusExtent[0] > radiusExtent[1] && radiusExtent.reverse(); + var angleExtent = angleAxis.getExtent(); + + var RADIAN = Math.PI / 180; + + // Avoid float number rounding error for symbol on the edge of axis extent. + if (forSymbol) { + radiusExtent[0] -= 0.5; + radiusExtent[1] += 0.5; + } + + var clipPath = new Sector({ + shape: { + cx: round$1(polar.cx, 1), + cy: round$1(polar.cy, 1), + r0: round$1(radiusExtent[0], 1), + r: round$1(radiusExtent[1], 1), + startAngle: -angleExtent[0] * RADIAN, + endAngle: -angleExtent[1] * RADIAN, + clockwise: angleAxis.inverse + } + }); + + if (hasAnimation) { + clipPath.shape.endAngle = -angleExtent[0] * RADIAN; + initProps(clipPath, { + shape: { + endAngle: -angleExtent[1] * RADIAN + } + }, seriesModel); + } + + return clipPath; +} + +function createClipShape(coordSys, hasAnimation, forSymbol, seriesModel) { + return coordSys.type === 'polar' + ? createPolarClipShape(coordSys, hasAnimation, forSymbol, seriesModel) + : createGridClipShape(coordSys, hasAnimation, forSymbol, seriesModel); +} + +function turnPointsIntoStep(points, coordSys, stepTurnAt) { + var baseAxis = coordSys.getBaseAxis(); + var baseIndex = baseAxis.dim === 'x' || baseAxis.dim === 'radius' ? 0 : 1; + + var stepPoints = []; + for (var i = 0; i < points.length - 1; i++) { + var nextPt = points[i + 1]; + var pt = points[i]; + stepPoints.push(pt); + + var stepPt = []; + switch (stepTurnAt) { + case 'end': + stepPt[baseIndex] = nextPt[baseIndex]; + stepPt[1 - baseIndex] = pt[1 - baseIndex]; + // default is start + stepPoints.push(stepPt); + break; + case 'middle': + // default is start + var middle = (pt[baseIndex] + nextPt[baseIndex]) / 2; + var stepPt2 = []; + stepPt[baseIndex] = stepPt2[baseIndex] = middle; + stepPt[1 - baseIndex] = pt[1 - baseIndex]; + stepPt2[1 - baseIndex] = nextPt[1 - baseIndex]; + stepPoints.push(stepPt); + stepPoints.push(stepPt2); + break; + default: + stepPt[baseIndex] = pt[baseIndex]; + stepPt[1 - baseIndex] = nextPt[1 - baseIndex]; + // default is start + stepPoints.push(stepPt); + } + } + // Last points + points[i] && stepPoints.push(points[i]); + return stepPoints; +} + +function getVisualGradient(data, coordSys) { + var visualMetaList = data.getVisual('visualMeta'); + if (!visualMetaList || !visualMetaList.length || !data.count()) { + // When data.count() is 0, gradient range can not be calculated. + return; + } + + if (coordSys.type !== 'cartesian2d') { + if (__DEV__) { + console.warn('Visual map on line style is only supported on cartesian2d.'); + } + return; + } + + var coordDim; + var visualMeta; + + for (var i = visualMetaList.length - 1; i >= 0; i--) { + var dimIndex = visualMetaList[i].dimension; + var dimName = data.dimensions[dimIndex]; + var dimInfo = data.getDimensionInfo(dimName); + coordDim = dimInfo && dimInfo.coordDim; + // Can only be x or y + if (coordDim === 'x' || coordDim === 'y') { + visualMeta = visualMetaList[i]; + break; + } + } + + if (!visualMeta) { + if (__DEV__) { + console.warn('Visual map on line style only support x or y dimension.'); + } + return; + } + + // If the area to be rendered is bigger than area defined by LinearGradient, + // the canvas spec prescribes that the color of the first stop and the last + // stop should be used. But if two stops are added at offset 0, in effect + // browsers use the color of the second stop to render area outside + // LinearGradient. So we can only infinitesimally extend area defined in + // LinearGradient to render `outerColors`. + + var axis = coordSys.getAxis(coordDim); + + // dataToCoor mapping may not be linear, but must be monotonic. + var colorStops = map(visualMeta.stops, function (stop) { + return { + coord: axis.toGlobalCoord(axis.dataToCoord(stop.value)), + color: stop.color + }; + }); + var stopLen = colorStops.length; + var outerColors = visualMeta.outerColors.slice(); + + if (stopLen && colorStops[0].coord > colorStops[stopLen - 1].coord) { + colorStops.reverse(); + outerColors.reverse(); + } + + var tinyExtent = 10; // Arbitrary value: 10px + var minCoord = colorStops[0].coord - tinyExtent; + var maxCoord = colorStops[stopLen - 1].coord + tinyExtent; + var coordSpan = maxCoord - minCoord; + + if (coordSpan < 1e-3) { + return 'transparent'; + } + + each$1(colorStops, function (stop) { + stop.offset = (stop.coord - minCoord) / coordSpan; + }); + colorStops.push({ + offset: stopLen ? colorStops[stopLen - 1].offset : 0.5, + color: outerColors[1] || 'transparent' + }); + colorStops.unshift({ // notice colorStops.length have been changed. + offset: stopLen ? colorStops[0].offset : 0.5, + color: outerColors[0] || 'transparent' + }); + + // zrUtil.each(colorStops, function (colorStop) { + // // Make sure each offset has rounded px to avoid not sharp edge + // colorStop.offset = (Math.round(colorStop.offset * (end - start) + start) - start) / (end - start); + // }); + + var gradient = new LinearGradient(0, 0, 0, 0, colorStops, true); + gradient[coordDim] = minCoord; + gradient[coordDim + '2'] = maxCoord; + + return gradient; +} + +function getIsIgnoreFunc(seriesModel, data, coordSys) { + var showAllSymbol = seriesModel.get('showAllSymbol'); + var isAuto = showAllSymbol === 'auto'; + + if (showAllSymbol && !isAuto) { + return; + } + + var categoryAxis = coordSys.getAxesByScale('ordinal')[0]; + if (!categoryAxis) { + return; + } + + // Note that category label interval strategy might bring some weird effect + // in some scenario: users may wonder why some of the symbols are not + // displayed. So we show all symbols as possible as we can. + if (isAuto + // Simplify the logic, do not determine label overlap here. + && canShowAllSymbolForCategory(categoryAxis, data) + ) { + return; + } + + // Otherwise follow the label interval strategy on category axis. + var categoryDataDim = data.mapDimension(categoryAxis.dim); + var labelMap = {}; + + each$1(categoryAxis.getViewLabels(), function (labelItem) { + labelMap[labelItem.tickValue] = 1; + }); + + return function (dataIndex) { + return !labelMap.hasOwnProperty(data.get(categoryDataDim, dataIndex)); + }; +} + +function canShowAllSymbolForCategory(categoryAxis, data) { + // In mose cases, line is monotonous on category axis, and the label size + // is close with each other. So we check the symbol size and some of the + // label size alone with the category axis to estimate whether all symbol + // can be shown without overlap. + var axisExtent = categoryAxis.getExtent(); + var availSize = Math.abs(axisExtent[1] - axisExtent[0]) / categoryAxis.scale.count(); + isNaN(availSize) && (availSize = 0); // 0/0 is NaN. + + // Sampling some points, max 5. + var dataLen = data.count(); + var step = Math.max(1, Math.round(dataLen / 5)); + for (var dataIndex = 0; dataIndex < dataLen; dataIndex += step) { + if (SymbolClz$1.getSymbolSize( + data, dataIndex + // Only for cartesian, where `isHorizontal` exists. + )[categoryAxis.isHorizontal() ? 1 : 0] + // Empirical number + * 1.5 > availSize + ) { + return false; + } + } + + return true; +} + +Chart.extend({ + + type: 'line', + + init: function () { + var lineGroup = new Group(); + + var symbolDraw = new SymbolDraw(); + this.group.add(symbolDraw.group); + + this._symbolDraw = symbolDraw; + this._lineGroup = lineGroup; + }, + + render: function (seriesModel, ecModel, api) { + var coordSys = seriesModel.coordinateSystem; + var group = this.group; + var data = seriesModel.getData(); + var lineStyleModel = seriesModel.getModel('lineStyle'); + var areaStyleModel = seriesModel.getModel('areaStyle'); + + var points = data.mapArray(data.getItemLayout); + + var isCoordSysPolar = coordSys.type === 'polar'; + var prevCoordSys = this._coordSys; + + var symbolDraw = this._symbolDraw; + var polyline = this._polyline; + var polygon = this._polygon; + + var lineGroup = this._lineGroup; + + var hasAnimation = seriesModel.get('animation'); + + var isAreaChart = !areaStyleModel.isEmpty(); + + var valueOrigin = areaStyleModel.get('origin'); + var dataCoordInfo = prepareDataCoordInfo(coordSys, data, valueOrigin); + + var stackedOnPoints = getStackedOnPoints(coordSys, data, dataCoordInfo); + + var showSymbol = seriesModel.get('showSymbol'); + + var isIgnoreFunc = showSymbol && !isCoordSysPolar + && getIsIgnoreFunc(seriesModel, data, coordSys); + + // Remove temporary symbols + var oldData = this._data; + oldData && oldData.eachItemGraphicEl(function (el, idx) { + if (el.__temp) { + group.remove(el); + oldData.setItemGraphicEl(idx, null); + } + }); + + // Remove previous created symbols if showSymbol changed to false + if (!showSymbol) { + symbolDraw.remove(); + } + + group.add(lineGroup); + + // FIXME step not support polar + var step = !isCoordSysPolar && seriesModel.get('step'); + // Initialization animation or coordinate system changed + if ( + !(polyline && prevCoordSys.type === coordSys.type && step === this._step) + ) { + showSymbol && symbolDraw.updateData(data, { + isIgnore: isIgnoreFunc, + clipShape: createClipShape(coordSys, false, true, seriesModel) + }); + + if (step) { + // TODO If stacked series is not step + points = turnPointsIntoStep(points, coordSys, step); + stackedOnPoints = turnPointsIntoStep(stackedOnPoints, coordSys, step); + } + + polyline = this._newPolyline(points, coordSys, hasAnimation); + if (isAreaChart) { + polygon = this._newPolygon( + points, stackedOnPoints, + coordSys, hasAnimation + ); + } + lineGroup.setClipPath(createClipShape(coordSys, true, false, seriesModel)); + } + else { + if (isAreaChart && !polygon) { + // If areaStyle is added + polygon = this._newPolygon( + points, stackedOnPoints, + coordSys, hasAnimation + ); + } + else if (polygon && !isAreaChart) { + // If areaStyle is removed + lineGroup.remove(polygon); + polygon = this._polygon = null; + } + + // Update clipPath + lineGroup.setClipPath(createClipShape(coordSys, false, false, seriesModel)); + + // Always update, or it is wrong in the case turning on legend + // because points are not changed + showSymbol && symbolDraw.updateData(data, { + isIgnore: isIgnoreFunc, + clipShape: createClipShape(coordSys, false, true, seriesModel) + }); + + // Stop symbol animation and sync with line points + // FIXME performance? + data.eachItemGraphicEl(function (el) { + el.stopAnimation(true); + }); + + // In the case data zoom triggerred refreshing frequently + // Data may not change if line has a category axis. So it should animate nothing + if (!isPointsSame(this._stackedOnPoints, stackedOnPoints) + || !isPointsSame(this._points, points) + ) { + if (hasAnimation) { + this._updateAnimation( + data, stackedOnPoints, coordSys, api, step, valueOrigin + ); + } + else { + // Not do it in update with animation + if (step) { + // TODO If stacked series is not step + points = turnPointsIntoStep(points, coordSys, step); + stackedOnPoints = turnPointsIntoStep(stackedOnPoints, coordSys, step); + } + + polyline.setShape({ + points: points + }); + polygon && polygon.setShape({ + points: points, + stackedOnPoints: stackedOnPoints + }); + } + } + } + + var visualColor = getVisualGradient(data, coordSys) || data.getVisual('color'); + + polyline.useStyle(defaults( + // Use color in lineStyle first + lineStyleModel.getLineStyle(), + { + fill: 'none', + stroke: visualColor, + lineJoin: 'bevel' + } + )); + + var smooth = seriesModel.get('smooth'); + smooth = getSmooth(seriesModel.get('smooth')); + polyline.setShape({ + smooth: smooth, + smoothMonotone: seriesModel.get('smoothMonotone'), + connectNulls: seriesModel.get('connectNulls') + }); + + if (polygon) { + var stackedOnSeries = data.getCalculationInfo('stackedOnSeries'); + var stackedOnSmooth = 0; + + polygon.useStyle(defaults( + areaStyleModel.getAreaStyle(), + { + fill: visualColor, + opacity: 0.7, + lineJoin: 'bevel' + } + )); + + if (stackedOnSeries) { + stackedOnSmooth = getSmooth(stackedOnSeries.get('smooth')); + } + + polygon.setShape({ + smooth: smooth, + stackedOnSmooth: stackedOnSmooth, + smoothMonotone: seriesModel.get('smoothMonotone'), + connectNulls: seriesModel.get('connectNulls') + }); + } + + this._data = data; + // Save the coordinate system for transition animation when data changed + this._coordSys = coordSys; + this._stackedOnPoints = stackedOnPoints; + this._points = points; + this._step = step; + this._valueOrigin = valueOrigin; + }, + + dispose: function () {}, + + highlight: function (seriesModel, ecModel, api, payload) { + var data = seriesModel.getData(); + var dataIndex = queryDataIndex(data, payload); + + if (!(dataIndex instanceof Array) && dataIndex != null && dataIndex >= 0) { + var symbol = data.getItemGraphicEl(dataIndex); + if (!symbol) { + // Create a temporary symbol if it is not exists + var pt = data.getItemLayout(dataIndex); + if (!pt) { + // Null data + return; + } + symbol = new SymbolClz$1(data, dataIndex); + symbol.position = pt; + symbol.setZ( + seriesModel.get('zlevel'), + seriesModel.get('z') + ); + symbol.ignore = isNaN(pt[0]) || isNaN(pt[1]); + symbol.__temp = true; + data.setItemGraphicEl(dataIndex, symbol); + + // Stop scale animation + symbol.stopSymbolAnimation(true); + + this.group.add(symbol); + } + symbol.highlight(); + } + else { + // Highlight whole series + Chart.prototype.highlight.call( + this, seriesModel, ecModel, api, payload + ); + } + }, + + downplay: function (seriesModel, ecModel, api, payload) { + var data = seriesModel.getData(); + var dataIndex = queryDataIndex(data, payload); + if (dataIndex != null && dataIndex >= 0) { + var symbol = data.getItemGraphicEl(dataIndex); + if (symbol) { + if (symbol.__temp) { + data.setItemGraphicEl(dataIndex, null); + this.group.remove(symbol); + } + else { + symbol.downplay(); + } + } + } + else { + // FIXME + // can not downplay completely. + // Downplay whole series + Chart.prototype.downplay.call( + this, seriesModel, ecModel, api, payload + ); + } + }, + + /** + * @param {module:zrender/container/Group} group + * @param {Array.>} points + * @private + */ + _newPolyline: function (points) { + var polyline = this._polyline; + // Remove previous created polyline + if (polyline) { + this._lineGroup.remove(polyline); + } + + polyline = new Polyline$1({ + shape: { + points: points + }, + silent: true, + z2: 10 + }); + + this._lineGroup.add(polyline); + + this._polyline = polyline; + + return polyline; + }, + + /** + * @param {module:zrender/container/Group} group + * @param {Array.>} stackedOnPoints + * @param {Array.>} points + * @private + */ + _newPolygon: function (points, stackedOnPoints) { + var polygon = this._polygon; + // Remove previous created polygon + if (polygon) { + this._lineGroup.remove(polygon); + } + + polygon = new Polygon$1({ + shape: { + points: points, + stackedOnPoints: stackedOnPoints + }, + silent: true + }); + + this._lineGroup.add(polygon); + + this._polygon = polygon; + return polygon; + }, + + /** + * @private + */ + // FIXME Two value axis + _updateAnimation: function (data, stackedOnPoints, coordSys, api, step, valueOrigin) { + var polyline = this._polyline; + var polygon = this._polygon; + var seriesModel = data.hostModel; + + var diff = lineAnimationDiff( + this._data, data, + this._stackedOnPoints, stackedOnPoints, + this._coordSys, coordSys, + this._valueOrigin, valueOrigin + ); + + var current = diff.current; + var stackedOnCurrent = diff.stackedOnCurrent; + var next = diff.next; + var stackedOnNext = diff.stackedOnNext; + if (step) { + // TODO If stacked series is not step + current = turnPointsIntoStep(diff.current, coordSys, step); + stackedOnCurrent = turnPointsIntoStep(diff.stackedOnCurrent, coordSys, step); + next = turnPointsIntoStep(diff.next, coordSys, step); + stackedOnNext = turnPointsIntoStep(diff.stackedOnNext, coordSys, step); + } + // `diff.current` is subset of `current` (which should be ensured by + // turnPointsIntoStep), so points in `__points` can be updated when + // points in `current` are update during animation. + polyline.shape.__points = diff.current; + polyline.shape.points = current; + + updateProps(polyline, { + shape: { + points: next + } + }, seriesModel); + + if (polygon) { + polygon.setShape({ + points: current, + stackedOnPoints: stackedOnCurrent + }); + updateProps(polygon, { + shape: { + points: next, + stackedOnPoints: stackedOnNext + } + }, seriesModel); + } + + var updatedDataInfo = []; + var diffStatus = diff.status; + + for (var i = 0; i < diffStatus.length; i++) { + var cmd = diffStatus[i].cmd; + if (cmd === '=') { + var el = data.getItemGraphicEl(diffStatus[i].idx1); + if (el) { + updatedDataInfo.push({ + el: el, + ptIdx: i // Index of points + }); + } + } + } + + if (polyline.animators && polyline.animators.length) { + polyline.animators[0].during(function () { + for (var i = 0; i < updatedDataInfo.length; i++) { + var el = updatedDataInfo[i].el; + el.attr('position', polyline.shape.__points[updatedDataInfo[i].ptIdx]); + } + }); + } + }, + + remove: function (ecModel) { + var group = this.group; + var oldData = this._data; + this._lineGroup.removeAll(); + this._symbolDraw.remove(true); + // Remove temporary created elements when highlighting + oldData && oldData.eachItemGraphicEl(function (el, idx) { + if (el.__temp) { + group.remove(el); + oldData.setItemGraphicEl(idx, null); + } + }); + + this._polyline + = this._polygon + = this._coordSys + = this._points + = this._stackedOnPoints + = this._data = null; + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var visualSymbol = function (seriesType, defaultSymbolType, legendSymbol) { + // Encoding visual for all series include which is filtered for legend drawing + return { + seriesType: seriesType, + + // For legend. + performRawSeries: true, + + reset: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + + var symbolType = seriesModel.get('symbol'); + var symbolSize = seriesModel.get('symbolSize'); + var keepAspect = seriesModel.get('symbolKeepAspect'); + + var hasSymbolTypeCallback = isFunction$1(symbolType); + var hasSymbolSizeCallback = isFunction$1(symbolSize); + var hasCallback = hasSymbolTypeCallback || hasSymbolSizeCallback; + var seriesSymbol = (!hasSymbolTypeCallback && symbolType) ? symbolType : defaultSymbolType; + var seriesSymbolSize = !hasSymbolSizeCallback ? symbolSize : null; + + data.setVisual({ + legendSymbol: legendSymbol || seriesSymbol, + // If seting callback functions on `symbol` or `symbolSize`, for simplicity and avoiding + // to bring trouble, we do not pick a reuslt from one of its calling on data item here, + // but just use the default value. Callback on `symbol` or `symbolSize` is convenient in + // some cases but generally it is not recommanded. + symbol: seriesSymbol, + symbolSize: seriesSymbolSize, + symbolKeepAspect: keepAspect + }); + + // Only visible series has each data be visual encoded + if (ecModel.isSeriesFiltered(seriesModel)) { + return; + } + + function dataEach(data, idx) { + if (hasCallback) { + var rawValue = seriesModel.getRawValue(idx); + var params = seriesModel.getDataParams(idx); + hasSymbolTypeCallback && data.setItemVisual(idx, 'symbol', symbolType(rawValue, params)); + hasSymbolSizeCallback && data.setItemVisual(idx, 'symbolSize', symbolSize(rawValue, params)); + } + + if (data.hasItemOption) { + var itemModel = data.getItemModel(idx); + var itemSymbolType = itemModel.getShallow('symbol', true); + var itemSymbolSize = itemModel.getShallow('symbolSize', true); + var itemSymbolKeepAspect = itemModel.getShallow('symbolKeepAspect', true); + + // If has item symbol + if (itemSymbolType != null) { + data.setItemVisual(idx, 'symbol', itemSymbolType); + } + if (itemSymbolSize != null) { + // PENDING Transform symbolSize ? + data.setItemVisual(idx, 'symbolSize', itemSymbolSize); + } + if (itemSymbolKeepAspect != null) { + data.setItemVisual(idx, 'symbolKeepAspect', itemSymbolKeepAspect); + } + } + } + + return { dataEach: (data.hasItemOption || hasCallback) ? dataEach : null }; + } + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* global Float32Array */ + +var pointsLayout = function (seriesType) { + return { + seriesType: seriesType, + + plan: createRenderPlanner(), + + reset: function (seriesModel) { + var data = seriesModel.getData(); + var coordSys = seriesModel.coordinateSystem; + var pipelineContext = seriesModel.pipelineContext; + var isLargeRender = pipelineContext.large; + + if (!coordSys) { + return; + } + + var dims = map(coordSys.dimensions, function (dim) { + return data.mapDimension(dim); + }).slice(0, 2); + var dimLen = dims.length; + + var stackResultDim = data.getCalculationInfo('stackResultDimension'); + if (isDimensionStacked(data, dims[0] /*, dims[1]*/)) { + dims[0] = stackResultDim; + } + if (isDimensionStacked(data, dims[1] /*, dims[0]*/)) { + dims[1] = stackResultDim; + } + + function progress(params, data) { + var segCount = params.end - params.start; + var points = isLargeRender && new Float32Array(segCount * dimLen); + + for (var i = params.start, offset = 0, tmpIn = [], tmpOut = []; i < params.end; i++) { + var point; + + if (dimLen === 1) { + var x = data.get(dims[0], i); + point = !isNaN(x) && coordSys.dataToPoint(x, null, tmpOut); + } + else { + var x = tmpIn[0] = data.get(dims[0], i); + var y = tmpIn[1] = data.get(dims[1], i); + // Also {Array.}, not undefined to avoid if...else... statement + point = !isNaN(x) && !isNaN(y) && coordSys.dataToPoint(tmpIn, null, tmpOut); + } + + if (isLargeRender) { + points[offset++] = point ? point[0] : NaN; + points[offset++] = point ? point[1] : NaN; + } + else { + data.setItemLayout(i, (point && point.slice()) || [NaN, NaN]); + } + } + + isLargeRender && data.setLayout('symbolPoints', points); + } + + return dimLen && {progress: progress}; + } + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var samplers = { + average: function (frame) { + var sum = 0; + var count = 0; + for (var i = 0; i < frame.length; i++) { + if (!isNaN(frame[i])) { + sum += frame[i]; + count++; + } + } + // Return NaN if count is 0 + return count === 0 ? NaN : sum / count; + }, + sum: function (frame) { + var sum = 0; + for (var i = 0; i < frame.length; i++) { + // Ignore NaN + sum += frame[i] || 0; + } + return sum; + }, + max: function (frame) { + var max = -Infinity; + for (var i = 0; i < frame.length; i++) { + frame[i] > max && (max = frame[i]); + } + // NaN will cause illegal axis extent. + return isFinite(max) ? max : NaN; + }, + min: function (frame) { + var min = Infinity; + for (var i = 0; i < frame.length; i++) { + frame[i] < min && (min = frame[i]); + } + // NaN will cause illegal axis extent. + return isFinite(min) ? min : NaN; + }, + // TODO + // Median + nearest: function (frame) { + return frame[0]; + } +}; + +var indexSampler = function (frame, value) { + return Math.round(frame.length / 2); +}; + +var dataSample = function (seriesType) { + return { + + seriesType: seriesType, + + modifyOutputEnd: true, + + reset: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + var sampling = seriesModel.get('sampling'); + var coordSys = seriesModel.coordinateSystem; + // Only cartesian2d support down sampling + if (coordSys.type === 'cartesian2d' && sampling) { + var baseAxis = coordSys.getBaseAxis(); + var valueAxis = coordSys.getOtherAxis(baseAxis); + var extent = baseAxis.getExtent(); + // Coordinste system has been resized + var size = extent[1] - extent[0]; + var rate = Math.round(data.count() / size); + if (rate > 1) { + var sampler; + if (typeof sampling === 'string') { + sampler = samplers[sampling]; + } + else if (typeof sampling === 'function') { + sampler = sampling; + } + if (sampler) { + // Only support sample the first dim mapped from value axis. + seriesModel.setData(data.downSample( + data.mapDimension(valueAxis.dim), 1 / rate, sampler, indexSampler + )); + } + } + } + } + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Cartesian coordinate system + * @module echarts/coord/Cartesian + * + */ + +function dimAxisMapper(dim) { + return this._axes[dim]; +} + +/** + * @alias module:echarts/coord/Cartesian + * @constructor + */ +var Cartesian = function (name) { + this._axes = {}; + + this._dimList = []; + + /** + * @type {string} + */ + this.name = name || ''; +}; + +Cartesian.prototype = { + + constructor: Cartesian, + + type: 'cartesian', + + /** + * Get axis + * @param {number|string} dim + * @return {module:echarts/coord/Cartesian~Axis} + */ + getAxis: function (dim) { + return this._axes[dim]; + }, + + /** + * Get axes list + * @return {Array.} + */ + getAxes: function () { + return map(this._dimList, dimAxisMapper, this); + }, + + /** + * Get axes list by given scale type + */ + getAxesByScale: function (scaleType) { + scaleType = scaleType.toLowerCase(); + return filter( + this.getAxes(), + function (axis) { + return axis.scale.type === scaleType; + } + ); + }, + + /** + * Add axis + * @param {module:echarts/coord/Cartesian.Axis} + */ + addAxis: function (axis) { + var dim = axis.dim; + + this._axes[dim] = axis; + + this._dimList.push(dim); + }, + + /** + * Convert data to coord in nd space + * @param {Array.|Object.} val + * @return {Array.|Object.} + */ + dataToCoord: function (val) { + return this._dataCoordConvert(val, 'dataToCoord'); + }, + + /** + * Convert coord in nd space to data + * @param {Array.|Object.} val + * @return {Array.|Object.} + */ + coordToData: function (val) { + return this._dataCoordConvert(val, 'coordToData'); + }, + + _dataCoordConvert: function (input, method) { + var dimList = this._dimList; + + var output = input instanceof Array ? [] : {}; + + for (var i = 0; i < dimList.length; i++) { + var dim = dimList[i]; + var axis = this._axes[dim]; + + output[dim] = axis[method](input[dim]); + } + + return output; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +function Cartesian2D(name) { + + Cartesian.call(this, name); +} + +Cartesian2D.prototype = { + + constructor: Cartesian2D, + + type: 'cartesian2d', + + /** + * @type {Array.} + * @readOnly + */ + dimensions: ['x', 'y'], + + /** + * Base axis will be used on stacking. + * + * @return {module:echarts/coord/cartesian/Axis2D} + */ + getBaseAxis: function () { + return this.getAxesByScale('ordinal')[0] + || this.getAxesByScale('time')[0] + || this.getAxis('x'); + }, + + /** + * If contain point + * @param {Array.} point + * @return {boolean} + */ + containPoint: function (point) { + var axisX = this.getAxis('x'); + var axisY = this.getAxis('y'); + return axisX.contain(axisX.toLocalCoord(point[0])) + && axisY.contain(axisY.toLocalCoord(point[1])); + }, + + /** + * If contain data + * @param {Array.} data + * @return {boolean} + */ + containData: function (data) { + return this.getAxis('x').containData(data[0]) + && this.getAxis('y').containData(data[1]); + }, + + /** + * @param {Array.} data + * @param {Array.} out + * @return {Array.} + */ + dataToPoint: function (data, reserved, out) { + var xAxis = this.getAxis('x'); + var yAxis = this.getAxis('y'); + out = out || []; + out[0] = xAxis.toGlobalCoord(xAxis.dataToCoord(data[0])); + out[1] = yAxis.toGlobalCoord(yAxis.dataToCoord(data[1])); + return out; + }, + + /** + * @param {Array.} data + * @param {Array.} out + * @return {Array.} + */ + clampData: function (data, out) { + var xScale = this.getAxis('x').scale; + var yScale = this.getAxis('y').scale; + var xAxisExtent = xScale.getExtent(); + var yAxisExtent = yScale.getExtent(); + var x = xScale.parse(data[0]); + var y = yScale.parse(data[1]); + out = out || []; + out[0] = Math.min( + Math.max(Math.min(xAxisExtent[0], xAxisExtent[1]), x), + Math.max(xAxisExtent[0], xAxisExtent[1]) + ); + out[1] = Math.min( + Math.max(Math.min(yAxisExtent[0], yAxisExtent[1]), y), + Math.max(yAxisExtent[0], yAxisExtent[1]) + ); + + return out; + }, + + /** + * @param {Array.} point + * @param {Array.} out + * @return {Array.} + */ + pointToData: function (point, out) { + var xAxis = this.getAxis('x'); + var yAxis = this.getAxis('y'); + out = out || []; + out[0] = xAxis.coordToData(xAxis.toLocalCoord(point[0])); + out[1] = yAxis.coordToData(yAxis.toLocalCoord(point[1])); + return out; + }, + + /** + * Get other axis + * @param {module:echarts/coord/cartesian/Axis2D} axis + */ + getOtherAxis: function (axis) { + return this.getAxis(axis.dim === 'x' ? 'y' : 'x'); + } + +}; + +inherits(Cartesian2D, Cartesian); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Extend axis 2d + * @constructor module:echarts/coord/cartesian/Axis2D + * @extends {module:echarts/coord/cartesian/Axis} + * @param {string} dim + * @param {*} scale + * @param {Array.} coordExtent + * @param {string} axisType + * @param {string} position + */ +var Axis2D = function (dim, scale, coordExtent, axisType, position) { + Axis.call(this, dim, scale, coordExtent); + /** + * Axis type + * - 'category' + * - 'value' + * - 'time' + * - 'log' + * @type {string} + */ + this.type = axisType || 'value'; + + /** + * Axis position + * - 'top' + * - 'bottom' + * - 'left' + * - 'right' + */ + this.position = position || 'bottom'; +}; + +Axis2D.prototype = { + + constructor: Axis2D, + + /** + * Index of axis, can be used as key + */ + index: 0, + + /** + * Implemented in . + * @return {Array.} + * If not on zero of other axis, return null/undefined. + * If no axes, return an empty array. + */ + getAxesOnZeroOf: null, + + /** + * Axis model + * @param {module:echarts/coord/cartesian/AxisModel} + */ + model: null, + + isHorizontal: function () { + var position = this.position; + return position === 'top' || position === 'bottom'; + }, + + /** + * Each item cooresponds to this.getExtent(), which + * means globalExtent[0] may greater than globalExtent[1], + * unless `asc` is input. + * + * @param {boolean} [asc] + * @return {Array.} + */ + getGlobalExtent: function (asc) { + var ret = this.getExtent(); + ret[0] = this.toGlobalCoord(ret[0]); + ret[1] = this.toGlobalCoord(ret[1]); + asc && ret[0] > ret[1] && ret.reverse(); + return ret; + }, + + getOtherAxis: function () { + this.grid.getOtherAxis(); + }, + + /** + * @override + */ + pointToData: function (point, clamp) { + return this.coordToData(this.toLocalCoord(point[this.dim === 'x' ? 0 : 1]), clamp); + }, + + /** + * Transform global coord to local coord, + * i.e. var localCoord = axis.toLocalCoord(80); + * designate by module:echarts/coord/cartesian/Grid. + * @type {Function} + */ + toLocalCoord: null, + + /** + * Transform global coord to local coord, + * i.e. var globalCoord = axis.toLocalCoord(40); + * designate by module:echarts/coord/cartesian/Grid. + * @type {Function} + */ + toGlobalCoord: null + +}; + +inherits(Axis2D, Axis); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var defaultOption = { + show: true, + zlevel: 0, + z: 0, + // Inverse the axis. + inverse: false, + + // Axis name displayed. + name: '', + // 'start' | 'middle' | 'end' + nameLocation: 'end', + // By degree. By defualt auto rotate by nameLocation. + nameRotate: null, + nameTruncate: { + maxWidth: null, + ellipsis: '...', + placeholder: '.' + }, + // Use global text style by default. + nameTextStyle: {}, + // The gap between axisName and axisLine. + nameGap: 15, + + // Default `false` to support tooltip. + silent: false, + // Default `false` to avoid legacy user event listener fail. + triggerEvent: false, + + tooltip: { + show: false + }, + + axisPointer: {}, + + axisLine: { + show: true, + onZero: true, + onZeroAxisIndex: null, + lineStyle: { + color: '#333', + width: 1, + type: 'solid' + }, + // The arrow at both ends the the axis. + symbol: ['none', 'none'], + symbolSize: [10, 15] + }, + axisTick: { + show: true, + // Whether axisTick is inside the grid or outside the grid. + inside: false, + // The length of axisTick. + length: 5, + lineStyle: { + width: 1 + } + }, + axisLabel: { + show: true, + // Whether axisLabel is inside the grid or outside the grid. + inside: false, + rotate: 0, + // true | false | null/undefined (auto) + showMinLabel: null, + // true | false | null/undefined (auto) + showMaxLabel: null, + margin: 8, + // formatter: null, + fontSize: 12 + }, + splitLine: { + show: true, + lineStyle: { + color: ['#ccc'], + width: 1, + type: 'solid' + } + }, + splitArea: { + show: false, + areaStyle: { + color: ['rgba(250,250,250,0.3)', 'rgba(200,200,200,0.3)'] + } + } +}; + +var axisDefault = {}; + +axisDefault.categoryAxis = merge({ + // The gap at both ends of the axis. For categoryAxis, boolean. + boundaryGap: true, + // Set false to faster category collection. + // Only usefull in the case like: category is + // ['2012-01-01', '2012-01-02', ...], where the input + // data has been ensured not duplicate and is large data. + // null means "auto": + // if axis.data provided, do not deduplication, + // else do deduplication. + deduplication: null, + // splitArea: { + // show: false + // }, + splitLine: { + show: false + }, + axisTick: { + // If tick is align with label when boundaryGap is true + alignWithLabel: false, + interval: 'auto' + }, + axisLabel: { + interval: 'auto' + } +}, defaultOption); + +axisDefault.valueAxis = merge({ + // The gap at both ends of the axis. For value axis, [GAP, GAP], where + // `GAP` can be an absolute pixel number (like `35`), or percent (like `'30%'`) + boundaryGap: [0, 0], + + // TODO + // min/max: [30, datamin, 60] or [20, datamin] or [datamin, 60] + + // Min value of the axis. can be: + // + a number + // + 'dataMin': use the min value in data. + // + null/undefined: auto decide min value (consider pretty look and boundaryGap). + // min: null, + + // Max value of the axis. can be: + // + a number + // + 'dataMax': use the max value in data. + // + null/undefined: auto decide max value (consider pretty look and boundaryGap). + // max: null, + + // Readonly prop, specifies start value of the range when using data zoom. + // rangeStart: null + + // Readonly prop, specifies end value of the range when using data zoom. + // rangeEnd: null + + // Optional value can be: + // + `false`: always include value 0. + // + `true`: the extent do not consider value 0. + // scale: false, + + // AxisTick and axisLabel and splitLine are caculated based on splitNumber. + splitNumber: 5 + + // Interval specifies the span of the ticks is mandatorily. + // interval: null + + // Specify min interval when auto calculate tick interval. + // minInterval: null + + // Specify max interval when auto calculate tick interval. + // maxInterval: null + +}, defaultOption); + +axisDefault.timeAxis = defaults({ + scale: true, + min: 'dataMin', + max: 'dataMax' +}, axisDefault.valueAxis); + +axisDefault.logAxis = defaults({ + scale: true, + logBase: 10 +}, axisDefault.valueAxis); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// FIXME axisType is fixed ? +var AXIS_TYPES = ['value', 'category', 'time', 'log']; + +/** + * Generate sub axis model class + * @param {string} axisName 'x' 'y' 'radius' 'angle' 'parallel' + * @param {module:echarts/model/Component} BaseAxisModelClass + * @param {Function} axisTypeDefaulter + * @param {Object} [extraDefaultOption] + */ +var axisModelCreator = function (axisName, BaseAxisModelClass, axisTypeDefaulter, extraDefaultOption) { + + each$1(AXIS_TYPES, function (axisType) { + + BaseAxisModelClass.extend({ + + /** + * @readOnly + */ + type: axisName + 'Axis.' + axisType, + + mergeDefaultAndTheme: function (option, ecModel) { + var layoutMode = this.layoutMode; + var inputPositionParams = layoutMode + ? getLayoutParams(option) : {}; + + var themeModel = ecModel.getTheme(); + merge(option, themeModel.get(axisType + 'Axis')); + merge(option, this.getDefaultOption()); + + option.type = axisTypeDefaulter(axisName, option); + + if (layoutMode) { + mergeLayoutParam(option, inputPositionParams, layoutMode); + } + }, + + /** + * @override + */ + optionUpdated: function () { + var thisOption = this.option; + if (thisOption.type === 'category') { + this.__ordinalMeta = OrdinalMeta.createByAxisModel(this); + } + }, + + /** + * Should not be called before all of 'getInitailData' finished. + * Because categories are collected during initializing data. + */ + getCategories: function (rawData) { + var option = this.option; + // FIXME + // warning if called before all of 'getInitailData' finished. + if (option.type === 'category') { + if (rawData) { + return option.data; + } + return this.__ordinalMeta.categories; + } + }, + + getOrdinalMeta: function () { + return this.__ordinalMeta; + }, + + defaultOption: mergeAll( + [ + {}, + axisDefault[axisType + 'Axis'], + extraDefaultOption + ], + true + ) + }); + }); + + ComponentModel.registerSubTypeDefaulter( + axisName + 'Axis', + curry(axisTypeDefaulter, axisName) + ); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var AxisModel = ComponentModel.extend({ + + type: 'cartesian2dAxis', + + /** + * @type {module:echarts/coord/cartesian/Axis2D} + */ + axis: null, + + /** + * @override + */ + init: function () { + AxisModel.superApply(this, 'init', arguments); + this.resetRange(); + }, + + /** + * @override + */ + mergeOption: function () { + AxisModel.superApply(this, 'mergeOption', arguments); + this.resetRange(); + }, + + /** + * @override + */ + restoreData: function () { + AxisModel.superApply(this, 'restoreData', arguments); + this.resetRange(); + }, + + /** + * @override + * @return {module:echarts/model/Component} + */ + getCoordSysModel: function () { + return this.ecModel.queryComponents({ + mainType: 'grid', + index: this.option.gridIndex, + id: this.option.gridId + })[0]; + } + +}); + +function getAxisType(axisDim, option) { + // Default axis with data is category axis + return option.type || (option.data ? 'category' : 'value'); +} + +merge(AxisModel.prototype, axisModelCommonMixin); + +var extraOption = { + // gridIndex: 0, + // gridId: '', + + // Offset is for multiple axis on the same position + offset: 0 +}; + +axisModelCreator('x', AxisModel, getAxisType, extraOption); +axisModelCreator('y', AxisModel, getAxisType, extraOption); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Grid 是在有直角坐标系的时候必须要存在的 +// 所以这里也要被 Cartesian2D 依赖 + +ComponentModel.extend({ + + type: 'grid', + + dependencies: ['xAxis', 'yAxis'], + + layoutMode: 'box', + + /** + * @type {module:echarts/coord/cartesian/Grid} + */ + coordinateSystem: null, + + defaultOption: { + show: false, + zlevel: 0, + z: 0, + left: '10%', + top: 60, + right: '10%', + bottom: 60, + // If grid size contain label + containLabel: false, + // width: {totalWidth} - left - right, + // height: {totalHeight} - top - bottom, + backgroundColor: 'rgba(0,0,0,0)', + borderWidth: 1, + borderColor: '#ccc' + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Grid is a region which contains at most 4 cartesian systems + * + * TODO Default cartesian + */ + +// Depends on GridModel, AxisModel, which performs preprocess. +/** + * Check if the axis is used in the specified grid + * @inner + */ +function isAxisUsedInTheGrid(axisModel, gridModel, ecModel) { + return axisModel.getCoordSysModel() === gridModel; +} + +function Grid(gridModel, ecModel, api) { + /** + * @type {Object.} + * @private + */ + this._coordsMap = {}; + + /** + * @type {Array.} + * @private + */ + this._coordsList = []; + + /** + * @type {Object.>} + * @private + */ + this._axesMap = {}; + + /** + * @type {Array.} + * @private + */ + this._axesList = []; + + this._initCartesian(gridModel, ecModel, api); + + this.model = gridModel; +} + +var gridProto = Grid.prototype; + +gridProto.type = 'grid'; + +gridProto.axisPointerEnabled = true; + +gridProto.getRect = function () { + return this._rect; +}; + +gridProto.update = function (ecModel, api) { + + var axesMap = this._axesMap; + + this._updateScale(ecModel, this.model); + + each$1(axesMap.x, function (xAxis) { + niceScaleExtent(xAxis.scale, xAxis.model); + }); + each$1(axesMap.y, function (yAxis) { + niceScaleExtent(yAxis.scale, yAxis.model); + }); + + // Key: axisDim_axisIndex, value: boolean, whether onZero target. + var onZeroRecords = {}; + + each$1(axesMap.x, function (xAxis) { + fixAxisOnZero(axesMap, 'y', xAxis, onZeroRecords); + }); + each$1(axesMap.y, function (yAxis) { + fixAxisOnZero(axesMap, 'x', yAxis, onZeroRecords); + }); + + // Resize again if containLabel is enabled + // FIXME It may cause getting wrong grid size in data processing stage + this.resize(this.model, api); +}; + +function fixAxisOnZero(axesMap, otherAxisDim, axis, onZeroRecords) { + + axis.getAxesOnZeroOf = function () { + // TODO: onZero of multiple axes. + return otherAxisOnZeroOf ? [otherAxisOnZeroOf] : []; + }; + + // onZero can not be enabled in these two situations: + // 1. When any other axis is a category axis. + // 2. When no axis is cross 0 point. + var otherAxes = axesMap[otherAxisDim]; + + var otherAxisOnZeroOf; + var axisModel = axis.model; + var onZero = axisModel.get('axisLine.onZero'); + var onZeroAxisIndex = axisModel.get('axisLine.onZeroAxisIndex'); + + if (!onZero) { + return; + } + + // If target axis is specified. + if (onZeroAxisIndex != null) { + if (canOnZeroToAxis(otherAxes[onZeroAxisIndex])) { + otherAxisOnZeroOf = otherAxes[onZeroAxisIndex]; + } + } + else { + // Find the first available other axis. + for (var idx in otherAxes) { + if (otherAxes.hasOwnProperty(idx) + && canOnZeroToAxis(otherAxes[idx]) + // Consider that two Y axes on one value axis, + // if both onZero, the two Y axes overlap. + && !onZeroRecords[getOnZeroRecordKey(otherAxes[idx])] + ) { + otherAxisOnZeroOf = otherAxes[idx]; + break; + } + } + } + + if (otherAxisOnZeroOf) { + onZeroRecords[getOnZeroRecordKey(otherAxisOnZeroOf)] = true; + } + + function getOnZeroRecordKey(axis) { + return axis.dim + '_' + axis.index; + } +} + +function canOnZeroToAxis(axis) { + return axis && axis.type !== 'category' && axis.type !== 'time' && ifAxisCrossZero(axis); +} + +/** + * Resize the grid + * @param {module:echarts/coord/cartesian/GridModel} gridModel + * @param {module:echarts/ExtensionAPI} api + */ +gridProto.resize = function (gridModel, api, ignoreContainLabel) { + + var gridRect = getLayoutRect( + gridModel.getBoxLayoutParams(), { + width: api.getWidth(), + height: api.getHeight() + }); + + this._rect = gridRect; + + var axesList = this._axesList; + + adjustAxes(); + + // Minus label size + if (!ignoreContainLabel && gridModel.get('containLabel')) { + each$1(axesList, function (axis) { + if (!axis.model.get('axisLabel.inside')) { + var labelUnionRect = estimateLabelUnionRect(axis); + if (labelUnionRect) { + var dim = axis.isHorizontal() ? 'height' : 'width'; + var margin = axis.model.get('axisLabel.margin'); + gridRect[dim] -= labelUnionRect[dim] + margin; + if (axis.position === 'top') { + gridRect.y += labelUnionRect.height + margin; + } + else if (axis.position === 'left') { + gridRect.x += labelUnionRect.width + margin; + } + } + } + }); + + adjustAxes(); + } + + function adjustAxes() { + each$1(axesList, function (axis) { + var isHorizontal = axis.isHorizontal(); + var extent = isHorizontal ? [0, gridRect.width] : [0, gridRect.height]; + var idx = axis.inverse ? 1 : 0; + axis.setExtent(extent[idx], extent[1 - idx]); + updateAxisTransform(axis, isHorizontal ? gridRect.x : gridRect.y); + }); + } +}; + +/** + * @param {string} axisType + * @param {number} [axisIndex] + */ +gridProto.getAxis = function (axisType, axisIndex) { + var axesMapOnDim = this._axesMap[axisType]; + if (axesMapOnDim != null) { + if (axisIndex == null) { + // Find first axis + for (var name in axesMapOnDim) { + if (axesMapOnDim.hasOwnProperty(name)) { + return axesMapOnDim[name]; + } + } + } + return axesMapOnDim[axisIndex]; + } +}; + +/** + * @return {Array.} + */ +gridProto.getAxes = function () { + return this._axesList.slice(); +}; + +/** + * Usage: + * grid.getCartesian(xAxisIndex, yAxisIndex); + * grid.getCartesian(xAxisIndex); + * grid.getCartesian(null, yAxisIndex); + * grid.getCartesian({xAxisIndex: ..., yAxisIndex: ...}); + * + * @param {number|Object} [xAxisIndex] + * @param {number} [yAxisIndex] + */ +gridProto.getCartesian = function (xAxisIndex, yAxisIndex) { + if (xAxisIndex != null && yAxisIndex != null) { + var key = 'x' + xAxisIndex + 'y' + yAxisIndex; + return this._coordsMap[key]; + } + + if (isObject$1(xAxisIndex)) { + yAxisIndex = xAxisIndex.yAxisIndex; + xAxisIndex = xAxisIndex.xAxisIndex; + } + // When only xAxisIndex or yAxisIndex given, find its first cartesian. + for (var i = 0, coordList = this._coordsList; i < coordList.length; i++) { + if (coordList[i].getAxis('x').index === xAxisIndex + || coordList[i].getAxis('y').index === yAxisIndex + ) { + return coordList[i]; + } + } +}; + +gridProto.getCartesians = function () { + return this._coordsList.slice(); +}; + +/** + * @implements + * see {module:echarts/CoodinateSystem} + */ +gridProto.convertToPixel = function (ecModel, finder, value) { + var target = this._findConvertTarget(ecModel, finder); + + return target.cartesian + ? target.cartesian.dataToPoint(value) + : target.axis + ? target.axis.toGlobalCoord(target.axis.dataToCoord(value)) + : null; +}; + +/** + * @implements + * see {module:echarts/CoodinateSystem} + */ +gridProto.convertFromPixel = function (ecModel, finder, value) { + var target = this._findConvertTarget(ecModel, finder); + + return target.cartesian + ? target.cartesian.pointToData(value) + : target.axis + ? target.axis.coordToData(target.axis.toLocalCoord(value)) + : null; +}; + +/** + * @inner + */ +gridProto._findConvertTarget = function (ecModel, finder) { + var seriesModel = finder.seriesModel; + var xAxisModel = finder.xAxisModel + || (seriesModel && seriesModel.getReferringComponents('xAxis')[0]); + var yAxisModel = finder.yAxisModel + || (seriesModel && seriesModel.getReferringComponents('yAxis')[0]); + var gridModel = finder.gridModel; + var coordsList = this._coordsList; + var cartesian; + var axis; + + if (seriesModel) { + cartesian = seriesModel.coordinateSystem; + indexOf(coordsList, cartesian) < 0 && (cartesian = null); + } + else if (xAxisModel && yAxisModel) { + cartesian = this.getCartesian(xAxisModel.componentIndex, yAxisModel.componentIndex); + } + else if (xAxisModel) { + axis = this.getAxis('x', xAxisModel.componentIndex); + } + else if (yAxisModel) { + axis = this.getAxis('y', yAxisModel.componentIndex); + } + // Lowest priority. + else if (gridModel) { + var grid = gridModel.coordinateSystem; + if (grid === this) { + cartesian = this._coordsList[0]; + } + } + + return {cartesian: cartesian, axis: axis}; +}; + +/** + * @implements + * see {module:echarts/CoodinateSystem} + */ +gridProto.containPoint = function (point) { + var coord = this._coordsList[0]; + if (coord) { + return coord.containPoint(point); + } +}; + +/** + * Initialize cartesian coordinate systems + * @private + */ +gridProto._initCartesian = function (gridModel, ecModel, api) { + var axisPositionUsed = { + left: false, + right: false, + top: false, + bottom: false + }; + + var axesMap = { + x: {}, + y: {} + }; + var axesCount = { + x: 0, + y: 0 + }; + + /// Create axis + ecModel.eachComponent('xAxis', createAxisCreator('x'), this); + ecModel.eachComponent('yAxis', createAxisCreator('y'), this); + + if (!axesCount.x || !axesCount.y) { + // Roll back when there no either x or y axis + this._axesMap = {}; + this._axesList = []; + return; + } + + this._axesMap = axesMap; + + /// Create cartesian2d + each$1(axesMap.x, function (xAxis, xAxisIndex) { + each$1(axesMap.y, function (yAxis, yAxisIndex) { + var key = 'x' + xAxisIndex + 'y' + yAxisIndex; + var cartesian = new Cartesian2D(key); + + cartesian.grid = this; + cartesian.model = gridModel; + + this._coordsMap[key] = cartesian; + this._coordsList.push(cartesian); + + cartesian.addAxis(xAxis); + cartesian.addAxis(yAxis); + }, this); + }, this); + + function createAxisCreator(axisType) { + return function (axisModel, idx) { + if (!isAxisUsedInTheGrid(axisModel, gridModel, ecModel)) { + return; + } + + var axisPosition = axisModel.get('position'); + if (axisType === 'x') { + // Fix position + if (axisPosition !== 'top' && axisPosition !== 'bottom') { + // Default bottom of X + axisPosition = axisPositionUsed.bottom ? 'top' : 'bottom'; + } + } + else { + // Fix position + if (axisPosition !== 'left' && axisPosition !== 'right') { + // Default left of Y + axisPosition = axisPositionUsed.left ? 'right' : 'left'; + } + } + axisPositionUsed[axisPosition] = true; + + var axis = new Axis2D( + axisType, createScaleByModel(axisModel), + [0, 0], + axisModel.get('type'), + axisPosition + ); + + var isCategory = axis.type === 'category'; + axis.onBand = isCategory && axisModel.get('boundaryGap'); + axis.inverse = axisModel.get('inverse'); + + // Inject axis into axisModel + axisModel.axis = axis; + + // Inject axisModel into axis + axis.model = axisModel; + + // Inject grid info axis + axis.grid = this; + + // Index of axis, can be used as key + axis.index = idx; + + this._axesList.push(axis); + + axesMap[axisType][idx] = axis; + axesCount[axisType]++; + }; + } +}; + +/** + * Update cartesian properties from series + * @param {module:echarts/model/Option} option + * @private + */ +gridProto._updateScale = function (ecModel, gridModel) { + // Reset scale + each$1(this._axesList, function (axis) { + axis.scale.setExtent(Infinity, -Infinity); + }); + ecModel.eachSeries(function (seriesModel) { + if (isCartesian2D(seriesModel)) { + var axesModels = findAxesModels(seriesModel, ecModel); + var xAxisModel = axesModels[0]; + var yAxisModel = axesModels[1]; + + if (!isAxisUsedInTheGrid(xAxisModel, gridModel, ecModel) + || !isAxisUsedInTheGrid(yAxisModel, gridModel, ecModel) + ) { + return; + } + + var cartesian = this.getCartesian( + xAxisModel.componentIndex, yAxisModel.componentIndex + ); + var data = seriesModel.getData(); + var xAxis = cartesian.getAxis('x'); + var yAxis = cartesian.getAxis('y'); + + if (data.type === 'list') { + unionExtent(data, xAxis, seriesModel); + unionExtent(data, yAxis, seriesModel); + } + } + }, this); + + function unionExtent(data, axis, seriesModel) { + each$1(data.mapDimension(axis.dim, true), function (dim) { + axis.scale.unionExtentFromData( + // For example, the extent of the orginal dimension + // is [0.1, 0.5], the extent of the `stackResultDimension` + // is [7, 9], the final extent should not include [0.1, 0.5]. + data, getStackedDimension(data, dim) + ); + }); + } +}; + +/** + * @param {string} [dim] 'x' or 'y' or 'auto' or null/undefined + * @return {Object} {baseAxes: [], otherAxes: []} + */ +gridProto.getTooltipAxes = function (dim) { + var baseAxes = []; + var otherAxes = []; + + each$1(this.getCartesians(), function (cartesian) { + var baseAxis = (dim != null && dim !== 'auto') + ? cartesian.getAxis(dim) : cartesian.getBaseAxis(); + var otherAxis = cartesian.getOtherAxis(baseAxis); + indexOf(baseAxes, baseAxis) < 0 && baseAxes.push(baseAxis); + indexOf(otherAxes, otherAxis) < 0 && otherAxes.push(otherAxis); + }); + + return {baseAxes: baseAxes, otherAxes: otherAxes}; +}; + +/** + * @inner + */ +function updateAxisTransform(axis, coordBase) { + var axisExtent = axis.getExtent(); + var axisExtentSum = axisExtent[0] + axisExtent[1]; + + // Fast transform + axis.toGlobalCoord = axis.dim === 'x' + ? function (coord) { + return coord + coordBase; + } + : function (coord) { + return axisExtentSum - coord + coordBase; + }; + axis.toLocalCoord = axis.dim === 'x' + ? function (coord) { + return coord - coordBase; + } + : function (coord) { + return axisExtentSum - coord + coordBase; + }; +} + +var axesTypes = ['xAxis', 'yAxis']; +/** + * @inner + */ +function findAxesModels(seriesModel, ecModel) { + return map(axesTypes, function (axisType) { + var axisModel = seriesModel.getReferringComponents(axisType)[0]; + + if (__DEV__) { + if (!axisModel) { + throw new Error(axisType + ' "' + retrieve( + seriesModel.get(axisType + 'Index'), + seriesModel.get(axisType + 'Id'), + 0 + ) + '" not found'); + } + } + return axisModel; + }); +} + +/** + * @inner + */ +function isCartesian2D(seriesModel) { + return seriesModel.get('coordinateSystem') === 'cartesian2d'; +} + +Grid.create = function (ecModel, api) { + var grids = []; + ecModel.eachComponent('grid', function (gridModel, idx) { + var grid = new Grid(gridModel, ecModel, api); + grid.name = 'grid_' + idx; + // dataSampling requires axis extent, so resize + // should be performed in create stage. + grid.resize(gridModel, api, true); + + gridModel.coordinateSystem = grid; + + grids.push(grid); + }); + + // Inject the coordinateSystems into seriesModel + ecModel.eachSeries(function (seriesModel) { + if (!isCartesian2D(seriesModel)) { + return; + } + + var axesModels = findAxesModels(seriesModel, ecModel); + var xAxisModel = axesModels[0]; + var yAxisModel = axesModels[1]; + + var gridModel = xAxisModel.getCoordSysModel(); + + if (__DEV__) { + if (!gridModel) { + throw new Error( + 'Grid "' + retrieve( + xAxisModel.get('gridIndex'), + xAxisModel.get('gridId'), + 0 + ) + '" not found' + ); + } + if (xAxisModel.getCoordSysModel() !== yAxisModel.getCoordSysModel()) { + throw new Error('xAxis and yAxis must use the same grid'); + } + } + + var grid = gridModel.coordinateSystem; + + seriesModel.coordinateSystem = grid.getCartesian( + xAxisModel.componentIndex, yAxisModel.componentIndex + ); + }); + + return grids; +}; + +// For deciding which dimensions to use when creating list data +Grid.dimensions = Grid.prototype.dimensions = Cartesian2D.prototype.dimensions; + +CoordinateSystemManager.register('cartesian2d', Grid); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var PI$2 = Math.PI; + +/** + * A final axis is translated and rotated from a "standard axis". + * So opt.position and opt.rotation is required. + * + * A standard axis is and axis from [0, 0] to [0, axisExtent[1]], + * for example: (0, 0) ------------> (0, 50) + * + * nameDirection or tickDirection or labelDirection is 1 means tick + * or label is below the standard axis, whereas is -1 means above + * the standard axis. labelOffset means offset between label and axis, + * which is useful when 'onZero', where axisLabel is in the grid and + * label in outside grid. + * + * Tips: like always, + * positive rotation represents anticlockwise, and negative rotation + * represents clockwise. + * The direction of position coordinate is the same as the direction + * of screen coordinate. + * + * Do not need to consider axis 'inverse', which is auto processed by + * axis extent. + * + * @param {module:zrender/container/Group} group + * @param {Object} axisModel + * @param {Object} opt Standard axis parameters. + * @param {Array.} opt.position [x, y] + * @param {number} opt.rotation by radian + * @param {number} [opt.nameDirection=1] 1 or -1 Used when nameLocation is 'middle' or 'center'. + * @param {number} [opt.tickDirection=1] 1 or -1 + * @param {number} [opt.labelDirection=1] 1 or -1 + * @param {number} [opt.labelOffset=0] Usefull when onZero. + * @param {string} [opt.axisLabelShow] default get from axisModel. + * @param {string} [opt.axisName] default get from axisModel. + * @param {number} [opt.axisNameAvailableWidth] + * @param {number} [opt.labelRotate] by degree, default get from axisModel. + * @param {number} [opt.strokeContainThreshold] Default label interval when label + * @param {number} [opt.nameTruncateMaxWidth] + */ +var AxisBuilder = function (axisModel, opt) { + + /** + * @readOnly + */ + this.opt = opt; + + /** + * @readOnly + */ + this.axisModel = axisModel; + + // Default value + defaults( + opt, + { + labelOffset: 0, + nameDirection: 1, + tickDirection: 1, + labelDirection: 1, + silent: true + } + ); + + /** + * @readOnly + */ + this.group = new Group(); + + // FIXME Not use a seperate text group? + var dumbGroup = new Group({ + position: opt.position.slice(), + rotation: opt.rotation + }); + + // this.group.add(dumbGroup); + // this._dumbGroup = dumbGroup; + + dumbGroup.updateTransform(); + this._transform = dumbGroup.transform; + + this._dumbGroup = dumbGroup; +}; + +AxisBuilder.prototype = { + + constructor: AxisBuilder, + + hasBuilder: function (name) { + return !!builders[name]; + }, + + add: function (name) { + builders[name].call(this); + }, + + getGroup: function () { + return this.group; + } + +}; + +var builders = { + + /** + * @private + */ + axisLine: function () { + var opt = this.opt; + var axisModel = this.axisModel; + + if (!axisModel.get('axisLine.show')) { + return; + } + + var extent = this.axisModel.axis.getExtent(); + + var matrix = this._transform; + var pt1 = [extent[0], 0]; + var pt2 = [extent[1], 0]; + if (matrix) { + applyTransform(pt1, pt1, matrix); + applyTransform(pt2, pt2, matrix); + } + + var lineStyle = extend( + { + lineCap: 'round' + }, + axisModel.getModel('axisLine.lineStyle').getLineStyle() + ); + + this.group.add(new Line({ + // Id for animation + anid: 'line', + subPixelOptimize: true, + shape: { + x1: pt1[0], + y1: pt1[1], + x2: pt2[0], + y2: pt2[1] + }, + style: lineStyle, + strokeContainThreshold: opt.strokeContainThreshold || 5, + silent: true, + z2: 1 + })); + + var arrows = axisModel.get('axisLine.symbol'); + var arrowSize = axisModel.get('axisLine.symbolSize'); + + var arrowOffset = axisModel.get('axisLine.symbolOffset') || 0; + if (typeof arrowOffset === 'number') { + arrowOffset = [arrowOffset, arrowOffset]; + } + + if (arrows != null) { + if (typeof arrows === 'string') { + // Use the same arrow for start and end point + arrows = [arrows, arrows]; + } + if (typeof arrowSize === 'string' + || typeof arrowSize === 'number' + ) { + // Use the same size for width and height + arrowSize = [arrowSize, arrowSize]; + } + + var symbolWidth = arrowSize[0]; + var symbolHeight = arrowSize[1]; + + each$1([{ + rotate: opt.rotation + Math.PI / 2, + offset: arrowOffset[0], + r: 0 + }, { + rotate: opt.rotation - Math.PI / 2, + offset: arrowOffset[1], + r: Math.sqrt((pt1[0] - pt2[0]) * (pt1[0] - pt2[0]) + + (pt1[1] - pt2[1]) * (pt1[1] - pt2[1])) + }], function (point, index) { + if (arrows[index] !== 'none' && arrows[index] != null) { + var symbol = createSymbol( + arrows[index], + -symbolWidth / 2, + -symbolHeight / 2, + symbolWidth, + symbolHeight, + lineStyle.stroke, + true + ); + + // Calculate arrow position with offset + var r = point.r + point.offset; + var pos = [ + pt1[0] + r * Math.cos(opt.rotation), + pt1[1] - r * Math.sin(opt.rotation) + ]; + + symbol.attr({ + rotation: point.rotate, + position: pos, + silent: true, + z2: 11 + }); + this.group.add(symbol); + } + }, this); + } + }, + + /** + * @private + */ + axisTickLabel: function () { + var axisModel = this.axisModel; + var opt = this.opt; + + var tickEls = buildAxisTick(this, axisModel, opt); + var labelEls = buildAxisLabel(this, axisModel, opt); + + fixMinMaxLabelShow(axisModel, labelEls, tickEls); + }, + + /** + * @private + */ + axisName: function () { + var opt = this.opt; + var axisModel = this.axisModel; + var name = retrieve(opt.axisName, axisModel.get('name')); + + if (!name) { + return; + } + + var nameLocation = axisModel.get('nameLocation'); + var nameDirection = opt.nameDirection; + var textStyleModel = axisModel.getModel('nameTextStyle'); + var gap = axisModel.get('nameGap') || 0; + + var extent = this.axisModel.axis.getExtent(); + var gapSignal = extent[0] > extent[1] ? -1 : 1; + var pos = [ + nameLocation === 'start' + ? extent[0] - gapSignal * gap + : nameLocation === 'end' + ? extent[1] + gapSignal * gap + : (extent[0] + extent[1]) / 2, // 'middle' + // Reuse labelOffset. + isNameLocationCenter(nameLocation) ? opt.labelOffset + nameDirection * gap : 0 + ]; + + var labelLayout; + + var nameRotation = axisModel.get('nameRotate'); + if (nameRotation != null) { + nameRotation = nameRotation * PI$2 / 180; // To radian. + } + + var axisNameAvailableWidth; + + if (isNameLocationCenter(nameLocation)) { + labelLayout = innerTextLayout( + opt.rotation, + nameRotation != null ? nameRotation : opt.rotation, // Adapt to axis. + nameDirection + ); + } + else { + labelLayout = endTextLayout( + opt, nameLocation, nameRotation || 0, extent + ); + + axisNameAvailableWidth = opt.axisNameAvailableWidth; + if (axisNameAvailableWidth != null) { + axisNameAvailableWidth = Math.abs( + axisNameAvailableWidth / Math.sin(labelLayout.rotation) + ); + !isFinite(axisNameAvailableWidth) && (axisNameAvailableWidth = null); + } + } + + var textFont = textStyleModel.getFont(); + + var truncateOpt = axisModel.get('nameTruncate', true) || {}; + var ellipsis = truncateOpt.ellipsis; + var maxWidth = retrieve( + opt.nameTruncateMaxWidth, truncateOpt.maxWidth, axisNameAvailableWidth + ); + // FIXME + // truncate rich text? (consider performance) + var truncatedText = (ellipsis != null && maxWidth != null) + ? truncateText$1( + name, maxWidth, textFont, ellipsis, + {minChar: 2, placeholder: truncateOpt.placeholder} + ) + : name; + + var tooltipOpt = axisModel.get('tooltip', true); + + var mainType = axisModel.mainType; + var formatterParams = { + componentType: mainType, + name: name, + $vars: ['name'] + }; + formatterParams[mainType + 'Index'] = axisModel.componentIndex; + + var textEl = new Text({ + // Id for animation + anid: 'name', + + __fullText: name, + __truncatedText: truncatedText, + + position: pos, + rotation: labelLayout.rotation, + silent: isLabelSilent(axisModel), + z2: 1, + tooltip: (tooltipOpt && tooltipOpt.show) + ? extend({ + content: name, + formatter: function () { + return name; + }, + formatterParams: formatterParams + }, tooltipOpt) + : null + }); + + setTextStyle(textEl.style, textStyleModel, { + text: truncatedText, + textFont: textFont, + textFill: textStyleModel.getTextColor() + || axisModel.get('axisLine.lineStyle.color'), + textAlign: textStyleModel.get('align') + || labelLayout.textAlign, + textVerticalAlign: textStyleModel.get('verticalAlign') + || labelLayout.textVerticalAlign + }); + + if (axisModel.get('triggerEvent')) { + textEl.eventData = makeAxisEventDataBase(axisModel); + textEl.eventData.targetType = 'axisName'; + textEl.eventData.name = name; + } + + // FIXME + this._dumbGroup.add(textEl); + textEl.updateTransform(); + + this.group.add(textEl); + + textEl.decomposeTransform(); + } + +}; + +var makeAxisEventDataBase = AxisBuilder.makeAxisEventDataBase = function (axisModel) { + var eventData = { + componentType: axisModel.mainType, + componentIndex: axisModel.componentIndex + }; + eventData[axisModel.mainType + 'Index'] = axisModel.componentIndex; + return eventData; +}; + +/** + * @public + * @static + * @param {Object} opt + * @param {number} axisRotation in radian + * @param {number} textRotation in radian + * @param {number} direction + * @return {Object} { + * rotation, // according to axis + * textAlign, + * textVerticalAlign + * } + */ +var innerTextLayout = AxisBuilder.innerTextLayout = function (axisRotation, textRotation, direction) { + var rotationDiff = remRadian(textRotation - axisRotation); + var textAlign; + var textVerticalAlign; + + if (isRadianAroundZero(rotationDiff)) { // Label is parallel with axis line. + textVerticalAlign = direction > 0 ? 'top' : 'bottom'; + textAlign = 'center'; + } + else if (isRadianAroundZero(rotationDiff - PI$2)) { // Label is inverse parallel with axis line. + textVerticalAlign = direction > 0 ? 'bottom' : 'top'; + textAlign = 'center'; + } + else { + textVerticalAlign = 'middle'; + + if (rotationDiff > 0 && rotationDiff < PI$2) { + textAlign = direction > 0 ? 'right' : 'left'; + } + else { + textAlign = direction > 0 ? 'left' : 'right'; + } + } + + return { + rotation: rotationDiff, + textAlign: textAlign, + textVerticalAlign: textVerticalAlign + }; +}; + +function endTextLayout(opt, textPosition, textRotate, extent) { + var rotationDiff = remRadian(textRotate - opt.rotation); + var textAlign; + var textVerticalAlign; + var inverse = extent[0] > extent[1]; + var onLeft = (textPosition === 'start' && !inverse) + || (textPosition !== 'start' && inverse); + + if (isRadianAroundZero(rotationDiff - PI$2 / 2)) { + textVerticalAlign = onLeft ? 'bottom' : 'top'; + textAlign = 'center'; + } + else if (isRadianAroundZero(rotationDiff - PI$2 * 1.5)) { + textVerticalAlign = onLeft ? 'top' : 'bottom'; + textAlign = 'center'; + } + else { + textVerticalAlign = 'middle'; + if (rotationDiff < PI$2 * 1.5 && rotationDiff > PI$2 / 2) { + textAlign = onLeft ? 'left' : 'right'; + } + else { + textAlign = onLeft ? 'right' : 'left'; + } + } + + return { + rotation: rotationDiff, + textAlign: textAlign, + textVerticalAlign: textVerticalAlign + }; +} + +var isLabelSilent = AxisBuilder.isLabelSilent = function (axisModel) { + var tooltipOpt = axisModel.get('tooltip'); + return axisModel.get('silent') + // Consider mouse cursor, add these restrictions. + || !( + axisModel.get('triggerEvent') || (tooltipOpt && tooltipOpt.show) + ); +}; + +function fixMinMaxLabelShow(axisModel, labelEls, tickEls) { + if (shouldShowAllLabels(axisModel.axis)) { + return; + } + + // If min or max are user set, we need to check + // If the tick on min(max) are overlap on their neighbour tick + // If they are overlapped, we need to hide the min(max) tick label + var showMinLabel = axisModel.get('axisLabel.showMinLabel'); + var showMaxLabel = axisModel.get('axisLabel.showMaxLabel'); + + // FIXME + // Have not consider onBand yet, where tick els is more than label els. + + labelEls = labelEls || []; + tickEls = tickEls || []; + + var firstLabel = labelEls[0]; + var nextLabel = labelEls[1]; + var lastLabel = labelEls[labelEls.length - 1]; + var prevLabel = labelEls[labelEls.length - 2]; + + var firstTick = tickEls[0]; + var nextTick = tickEls[1]; + var lastTick = tickEls[tickEls.length - 1]; + var prevTick = tickEls[tickEls.length - 2]; + + if (showMinLabel === false) { + ignoreEl(firstLabel); + ignoreEl(firstTick); + } + else if (isTwoLabelOverlapped(firstLabel, nextLabel)) { + if (showMinLabel) { + ignoreEl(nextLabel); + ignoreEl(nextTick); + } + else { + ignoreEl(firstLabel); + ignoreEl(firstTick); + } + } + + if (showMaxLabel === false) { + ignoreEl(lastLabel); + ignoreEl(lastTick); + } + else if (isTwoLabelOverlapped(prevLabel, lastLabel)) { + if (showMaxLabel) { + ignoreEl(prevLabel); + ignoreEl(prevTick); + } + else { + ignoreEl(lastLabel); + ignoreEl(lastTick); + } + } +} + +function ignoreEl(el) { + el && (el.ignore = true); +} + +function isTwoLabelOverlapped(current, next, labelLayout) { + // current and next has the same rotation. + var firstRect = current && current.getBoundingRect().clone(); + var nextRect = next && next.getBoundingRect().clone(); + + if (!firstRect || !nextRect) { + return; + } + + // When checking intersect of two rotated labels, we use mRotationBack + // to avoid that boundingRect is enlarge when using `boundingRect.applyTransform`. + var mRotationBack = identity([]); + rotate(mRotationBack, mRotationBack, -current.rotation); + + firstRect.applyTransform(mul$1([], mRotationBack, current.getLocalTransform())); + nextRect.applyTransform(mul$1([], mRotationBack, next.getLocalTransform())); + + return firstRect.intersect(nextRect); +} + +function isNameLocationCenter(nameLocation) { + return nameLocation === 'middle' || nameLocation === 'center'; +} + +function buildAxisTick(axisBuilder, axisModel, opt) { + var axis = axisModel.axis; + + if (!axisModel.get('axisTick.show') || axis.scale.isBlank()) { + return; + } + + var tickModel = axisModel.getModel('axisTick'); + + var lineStyleModel = tickModel.getModel('lineStyle'); + var tickLen = tickModel.get('length'); + + var ticksCoords = axis.getTicksCoords(); + + var pt1 = []; + var pt2 = []; + var matrix = axisBuilder._transform; + + var tickEls = []; + + for (var i = 0; i < ticksCoords.length; i++) { + var tickCoord = ticksCoords[i].coord; + + pt1[0] = tickCoord; + pt1[1] = 0; + pt2[0] = tickCoord; + pt2[1] = opt.tickDirection * tickLen; + + if (matrix) { + applyTransform(pt1, pt1, matrix); + applyTransform(pt2, pt2, matrix); + } + // Tick line, Not use group transform to have better line draw + var tickEl = new Line({ + // Id for animation + anid: 'tick_' + ticksCoords[i].tickValue, + subPixelOptimize: true, + shape: { + x1: pt1[0], + y1: pt1[1], + x2: pt2[0], + y2: pt2[1] + }, + style: defaults( + lineStyleModel.getLineStyle(), + { + stroke: axisModel.get('axisLine.lineStyle.color') + } + ), + z2: 2, + silent: true + }); + axisBuilder.group.add(tickEl); + tickEls.push(tickEl); + } + + return tickEls; +} + +function buildAxisLabel(axisBuilder, axisModel, opt) { + var axis = axisModel.axis; + var show = retrieve(opt.axisLabelShow, axisModel.get('axisLabel.show')); + + if (!show || axis.scale.isBlank()) { + return; + } + + var labelModel = axisModel.getModel('axisLabel'); + var labelMargin = labelModel.get('margin'); + var labels = axis.getViewLabels(); + + // Special label rotate. + var labelRotation = ( + retrieve(opt.labelRotate, labelModel.get('rotate')) || 0 + ) * PI$2 / 180; + + var labelLayout = innerTextLayout(opt.rotation, labelRotation, opt.labelDirection); + var rawCategoryData = axisModel.getCategories && axisModel.getCategories(true); + + var labelEls = []; + var silent = isLabelSilent(axisModel); + var triggerEvent = axisModel.get('triggerEvent'); + + each$1(labels, function (labelItem, index) { + var tickValue = labelItem.tickValue; + var formattedLabel = labelItem.formattedLabel; + var rawLabel = labelItem.rawLabel; + + var itemLabelModel = labelModel; + if (rawCategoryData && rawCategoryData[tickValue] && rawCategoryData[tickValue].textStyle) { + itemLabelModel = new Model( + rawCategoryData[tickValue].textStyle, labelModel, axisModel.ecModel + ); + } + + var textColor = itemLabelModel.getTextColor() + || axisModel.get('axisLine.lineStyle.color'); + + var tickCoord = axis.dataToCoord(tickValue); + var pos = [ + tickCoord, + opt.labelOffset + opt.labelDirection * labelMargin + ]; + + var textEl = new Text({ + // Id for animation + anid: 'label_' + tickValue, + position: pos, + rotation: labelLayout.rotation, + silent: silent, + z2: 10 + }); + + setTextStyle(textEl.style, itemLabelModel, { + text: formattedLabel, + textAlign: itemLabelModel.getShallow('align', true) + || labelLayout.textAlign, + textVerticalAlign: itemLabelModel.getShallow('verticalAlign', true) + || itemLabelModel.getShallow('baseline', true) + || labelLayout.textVerticalAlign, + textFill: typeof textColor === 'function' + ? textColor( + // (1) In category axis with data zoom, tick is not the original + // index of axis.data. So tick should not be exposed to user + // in category axis. + // (2) Compatible with previous version, which always use formatted label as + // input. But in interval scale the formatted label is like '223,445', which + // maked user repalce ','. So we modify it to return original val but remain + // it as 'string' to avoid error in replacing. + axis.type === 'category' + ? rawLabel + : axis.type === 'value' + ? tickValue + '' + : tickValue, + index + ) + : textColor + }); + + // Pack data for mouse event + if (triggerEvent) { + textEl.eventData = makeAxisEventDataBase(axisModel); + textEl.eventData.targetType = 'axisLabel'; + textEl.eventData.value = rawLabel; + } + + // FIXME + axisBuilder._dumbGroup.add(textEl); + textEl.updateTransform(); + + labelEls.push(textEl); + axisBuilder.group.add(textEl); + + textEl.decomposeTransform(); + + }); + + return labelEls; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var each$6 = each$1; +var curry$1 = curry; + +// Build axisPointerModel, mergin tooltip.axisPointer model for each axis. +// allAxesInfo should be updated when setOption performed. +function collect(ecModel, api) { + var result = { + /** + * key: makeKey(axis.model) + * value: { + * axis, + * coordSys, + * axisPointerModel, + * triggerTooltip, + * involveSeries, + * snap, + * seriesModels, + * seriesDataCount + * } + */ + axesInfo: {}, + seriesInvolved: false, + /** + * key: makeKey(coordSys.model) + * value: Object: key makeKey(axis.model), value: axisInfo + */ + coordSysAxesInfo: {}, + coordSysMap: {} + }; + + collectAxesInfo(result, ecModel, api); + + // Check seriesInvolved for performance, in case too many series in some chart. + result.seriesInvolved && collectSeriesInfo(result, ecModel); + + return result; +} + +function collectAxesInfo(result, ecModel, api) { + var globalTooltipModel = ecModel.getComponent('tooltip'); + var globalAxisPointerModel = ecModel.getComponent('axisPointer'); + // links can only be set on global. + var linksOption = globalAxisPointerModel.get('link', true) || []; + var linkGroups = []; + + // Collect axes info. + each$6(api.getCoordinateSystems(), function (coordSys) { + // Some coordinate system do not support axes, like geo. + if (!coordSys.axisPointerEnabled) { + return; + } + + var coordSysKey = makeKey(coordSys.model); + var axesInfoInCoordSys = result.coordSysAxesInfo[coordSysKey] = {}; + result.coordSysMap[coordSysKey] = coordSys; + + // Set tooltip (like 'cross') is a convienent way to show axisPointer + // for user. So we enable seting tooltip on coordSys model. + var coordSysModel = coordSys.model; + var baseTooltipModel = coordSysModel.getModel('tooltip', globalTooltipModel); + + each$6(coordSys.getAxes(), curry$1(saveTooltipAxisInfo, false, null)); + + // If axis tooltip used, choose tooltip axis for each coordSys. + // Notice this case: coordSys is `grid` but not `cartesian2D` here. + if (coordSys.getTooltipAxes + && globalTooltipModel + // If tooltip.showContent is set as false, tooltip will not + // show but axisPointer will show as normal. + && baseTooltipModel.get('show') + ) { + // Compatible with previous logic. But series.tooltip.trigger: 'axis' + // or series.data[n].tooltip.trigger: 'axis' are not support any more. + var triggerAxis = baseTooltipModel.get('trigger') === 'axis'; + var cross = baseTooltipModel.get('axisPointer.type') === 'cross'; + var tooltipAxes = coordSys.getTooltipAxes(baseTooltipModel.get('axisPointer.axis')); + if (triggerAxis || cross) { + each$6(tooltipAxes.baseAxes, curry$1( + saveTooltipAxisInfo, cross ? 'cross' : true, triggerAxis + )); + } + if (cross) { + each$6(tooltipAxes.otherAxes, curry$1(saveTooltipAxisInfo, 'cross', false)); + } + } + + // fromTooltip: true | false | 'cross' + // triggerTooltip: true | false | null + function saveTooltipAxisInfo(fromTooltip, triggerTooltip, axis) { + var axisPointerModel = axis.model.getModel('axisPointer', globalAxisPointerModel); + + var axisPointerShow = axisPointerModel.get('show'); + if (!axisPointerShow || ( + axisPointerShow === 'auto' + && !fromTooltip + && !isHandleTrigger(axisPointerModel) + )) { + return; + } + + if (triggerTooltip == null) { + triggerTooltip = axisPointerModel.get('triggerTooltip'); + } + + axisPointerModel = fromTooltip + ? makeAxisPointerModel( + axis, baseTooltipModel, globalAxisPointerModel, ecModel, + fromTooltip, triggerTooltip + ) + : axisPointerModel; + + var snap = axisPointerModel.get('snap'); + var key = makeKey(axis.model); + var involveSeries = triggerTooltip || snap || axis.type === 'category'; + + // If result.axesInfo[key] exist, override it (tooltip has higher priority). + var axisInfo = result.axesInfo[key] = { + key: key, + axis: axis, + coordSys: coordSys, + axisPointerModel: axisPointerModel, + triggerTooltip: triggerTooltip, + involveSeries: involveSeries, + snap: snap, + useHandle: isHandleTrigger(axisPointerModel), + seriesModels: [] + }; + axesInfoInCoordSys[key] = axisInfo; + result.seriesInvolved |= involveSeries; + + var groupIndex = getLinkGroupIndex(linksOption, axis); + if (groupIndex != null) { + var linkGroup = linkGroups[groupIndex] || (linkGroups[groupIndex] = {axesInfo: {}}); + linkGroup.axesInfo[key] = axisInfo; + linkGroup.mapper = linksOption[groupIndex].mapper; + axisInfo.linkGroup = linkGroup; + } + } + }); +} + +function makeAxisPointerModel( + axis, baseTooltipModel, globalAxisPointerModel, ecModel, fromTooltip, triggerTooltip +) { + var tooltipAxisPointerModel = baseTooltipModel.getModel('axisPointer'); + var volatileOption = {}; + + each$6( + [ + 'type', 'snap', 'lineStyle', 'shadowStyle', 'label', + 'animation', 'animationDurationUpdate', 'animationEasingUpdate', 'z' + ], + function (field) { + volatileOption[field] = clone(tooltipAxisPointerModel.get(field)); + } + ); + + // category axis do not auto snap, otherwise some tick that do not + // has value can not be hovered. value/time/log axis default snap if + // triggered from tooltip and trigger tooltip. + volatileOption.snap = axis.type !== 'category' && !!triggerTooltip; + + // Compatibel with previous behavior, tooltip axis do not show label by default. + // Only these properties can be overrided from tooltip to axisPointer. + if (tooltipAxisPointerModel.get('type') === 'cross') { + volatileOption.type = 'line'; + } + var labelOption = volatileOption.label || (volatileOption.label = {}); + // Follow the convention, do not show label when triggered by tooltip by default. + labelOption.show == null && (labelOption.show = false); + + if (fromTooltip === 'cross') { + // When 'cross', both axes show labels. + var tooltipAxisPointerLabelShow = tooltipAxisPointerModel.get('label.show'); + labelOption.show = tooltipAxisPointerLabelShow != null ? tooltipAxisPointerLabelShow : true; + // If triggerTooltip, this is a base axis, which should better not use cross style + // (cross style is dashed by default) + if (!triggerTooltip) { + var crossStyle = volatileOption.lineStyle = tooltipAxisPointerModel.get('crossStyle'); + crossStyle && defaults(labelOption, crossStyle.textStyle); + } + } + + return axis.model.getModel( + 'axisPointer', + new Model(volatileOption, globalAxisPointerModel, ecModel) + ); +} + +function collectSeriesInfo(result, ecModel) { + // Prepare data for axis trigger + ecModel.eachSeries(function (seriesModel) { + + // Notice this case: this coordSys is `cartesian2D` but not `grid`. + var coordSys = seriesModel.coordinateSystem; + var seriesTooltipTrigger = seriesModel.get('tooltip.trigger', true); + var seriesTooltipShow = seriesModel.get('tooltip.show', true); + if (!coordSys + || seriesTooltipTrigger === 'none' + || seriesTooltipTrigger === false + || seriesTooltipTrigger === 'item' + || seriesTooltipShow === false + || seriesModel.get('axisPointer.show', true) === false + ) { + return; + } + + each$6(result.coordSysAxesInfo[makeKey(coordSys.model)], function (axisInfo) { + var axis = axisInfo.axis; + if (coordSys.getAxis(axis.dim) === axis) { + axisInfo.seriesModels.push(seriesModel); + axisInfo.seriesDataCount == null && (axisInfo.seriesDataCount = 0); + axisInfo.seriesDataCount += seriesModel.getData().count(); + } + }); + + }, this); +} + +/** + * For example: + * { + * axisPointer: { + * links: [{ + * xAxisIndex: [2, 4], + * yAxisIndex: 'all' + * }, { + * xAxisId: ['a5', 'a7'], + * xAxisName: 'xxx' + * }] + * } + * } + */ +function getLinkGroupIndex(linksOption, axis) { + var axisModel = axis.model; + var dim = axis.dim; + for (var i = 0; i < linksOption.length; i++) { + var linkOption = linksOption[i] || {}; + if (checkPropInLink(linkOption[dim + 'AxisId'], axisModel.id) + || checkPropInLink(linkOption[dim + 'AxisIndex'], axisModel.componentIndex) + || checkPropInLink(linkOption[dim + 'AxisName'], axisModel.name) + ) { + return i; + } + } +} + +function checkPropInLink(linkPropValue, axisPropValue) { + return linkPropValue === 'all' + || (isArray(linkPropValue) && indexOf(linkPropValue, axisPropValue) >= 0) + || linkPropValue === axisPropValue; +} + +function fixValue(axisModel) { + var axisInfo = getAxisInfo(axisModel); + if (!axisInfo) { + return; + } + + var axisPointerModel = axisInfo.axisPointerModel; + var scale = axisInfo.axis.scale; + var option = axisPointerModel.option; + var status = axisPointerModel.get('status'); + var value = axisPointerModel.get('value'); + + // Parse init value for category and time axis. + if (value != null) { + value = scale.parse(value); + } + + var useHandle = isHandleTrigger(axisPointerModel); + // If `handle` used, `axisPointer` will always be displayed, so value + // and status should be initialized. + if (status == null) { + option.status = useHandle ? 'show' : 'hide'; + } + + var extent = scale.getExtent().slice(); + extent[0] > extent[1] && extent.reverse(); + + if (// Pick a value on axis when initializing. + value == null + // If both `handle` and `dataZoom` are used, value may be out of axis extent, + // where we should re-pick a value to keep `handle` displaying normally. + || value > extent[1] + ) { + // Make handle displayed on the end of the axis when init, which looks better. + value = extent[1]; + } + if (value < extent[0]) { + value = extent[0]; + } + + option.value = value; + + if (useHandle) { + option.status = axisInfo.axis.scale.isBlank() ? 'hide' : 'show'; + } +} + +function getAxisInfo(axisModel) { + var coordSysAxesInfo = (axisModel.ecModel.getComponent('axisPointer') || {}).coordSysAxesInfo; + return coordSysAxesInfo && coordSysAxesInfo.axesInfo[makeKey(axisModel)]; +} + +function getAxisPointerModel(axisModel) { + var axisInfo = getAxisInfo(axisModel); + return axisInfo && axisInfo.axisPointerModel; +} + +function isHandleTrigger(axisPointerModel) { + return !!axisPointerModel.get('handle.show'); +} + +/** + * @param {module:echarts/model/Model} model + * @return {string} unique key + */ +function makeKey(model) { + return model.type + '||' + model.id; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Base class of AxisView. + */ +var AxisView = extendComponentView({ + + type: 'axis', + + /** + * @private + */ + _axisPointer: null, + + /** + * @protected + * @type {string} + */ + axisPointerClass: null, + + /** + * @override + */ + render: function (axisModel, ecModel, api, payload) { + // FIXME + // This process should proformed after coordinate systems updated + // (axis scale updated), and should be performed each time update. + // So put it here temporarily, although it is not appropriate to + // put a model-writing procedure in `view`. + this.axisPointerClass && fixValue(axisModel); + + AxisView.superApply(this, 'render', arguments); + + updateAxisPointer(this, axisModel, ecModel, api, payload, true); + }, + + /** + * Action handler. + * @public + * @param {module:echarts/coord/cartesian/AxisModel} axisModel + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + * @param {Object} payload + */ + updateAxisPointer: function (axisModel, ecModel, api, payload, force) { + updateAxisPointer(this, axisModel, ecModel, api, payload, false); + }, + + /** + * @override + */ + remove: function (ecModel, api) { + var axisPointer = this._axisPointer; + axisPointer && axisPointer.remove(api); + AxisView.superApply(this, 'remove', arguments); + }, + + /** + * @override + */ + dispose: function (ecModel, api) { + disposeAxisPointer(this, api); + AxisView.superApply(this, 'dispose', arguments); + } + +}); + +function updateAxisPointer(axisView, axisModel, ecModel, api, payload, forceRender) { + var Clazz = AxisView.getAxisPointerClass(axisView.axisPointerClass); + if (!Clazz) { + return; + } + var axisPointerModel = getAxisPointerModel(axisModel); + axisPointerModel + ? (axisView._axisPointer || (axisView._axisPointer = new Clazz())) + .render(axisModel, axisPointerModel, api, forceRender) + : disposeAxisPointer(axisView, api); +} + +function disposeAxisPointer(axisView, ecModel, api) { + var axisPointer = axisView._axisPointer; + axisPointer && axisPointer.dispose(ecModel, api); + axisView._axisPointer = null; +} + +var axisPointerClazz = []; + +AxisView.registerAxisPointerClass = function (type, clazz) { + if (__DEV__) { + if (axisPointerClazz[type]) { + throw new Error('axisPointer ' + type + ' exists'); + } + } + axisPointerClazz[type] = clazz; +}; + +AxisView.getAxisPointerClass = function (type) { + return type && axisPointerClazz[type]; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Can only be called after coordinate system creation stage. + * (Can be called before coordinate system update stage). + * + * @param {Object} opt {labelInside} + * @return {Object} { + * position, rotation, labelDirection, labelOffset, + * tickDirection, labelRotate, z2 + * } + */ +function layout$1(gridModel, axisModel, opt) { + opt = opt || {}; + var grid = gridModel.coordinateSystem; + var axis = axisModel.axis; + var layout = {}; + var otherAxisOnZeroOf = axis.getAxesOnZeroOf()[0]; + + var rawAxisPosition = axis.position; + var axisPosition = otherAxisOnZeroOf ? 'onZero' : rawAxisPosition; + var axisDim = axis.dim; + + var rect = grid.getRect(); + var rectBound = [rect.x, rect.x + rect.width, rect.y, rect.y + rect.height]; + var idx = {left: 0, right: 1, top: 0, bottom: 1, onZero: 2}; + var axisOffset = axisModel.get('offset') || 0; + + var posBound = axisDim === 'x' + ? [rectBound[2] - axisOffset, rectBound[3] + axisOffset] + : [rectBound[0] - axisOffset, rectBound[1] + axisOffset]; + + if (otherAxisOnZeroOf) { + var onZeroCoord = otherAxisOnZeroOf.toGlobalCoord(otherAxisOnZeroOf.dataToCoord(0)); + posBound[idx.onZero] = Math.max(Math.min(onZeroCoord, posBound[1]), posBound[0]); + } + + // Axis position + layout.position = [ + axisDim === 'y' ? posBound[idx[axisPosition]] : rectBound[0], + axisDim === 'x' ? posBound[idx[axisPosition]] : rectBound[3] + ]; + + // Axis rotation + layout.rotation = Math.PI / 2 * (axisDim === 'x' ? 0 : 1); + + // Tick and label direction, x y is axisDim + var dirMap = {top: -1, bottom: 1, left: -1, right: 1}; + + layout.labelDirection = layout.tickDirection = layout.nameDirection = dirMap[rawAxisPosition]; + layout.labelOffset = otherAxisOnZeroOf ? posBound[idx[rawAxisPosition]] - posBound[idx.onZero] : 0; + + if (axisModel.get('axisTick.inside')) { + layout.tickDirection = -layout.tickDirection; + } + if (retrieve(opt.labelInside, axisModel.get('axisLabel.inside'))) { + layout.labelDirection = -layout.labelDirection; + } + + // Special label rotation + var labelRotate = axisModel.get('axisLabel.rotate'); + layout.labelRotate = axisPosition === 'top' ? -labelRotate : labelRotate; + + // Over splitLine and splitArea + layout.z2 = 1; + + return layout; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var axisBuilderAttrs = [ + 'axisLine', 'axisTickLabel', 'axisName' +]; +var selfBuilderAttrs = [ + 'splitArea', 'splitLine' +]; + +// function getAlignWithLabel(model, axisModel) { +// var alignWithLabel = model.get('alignWithLabel'); +// if (alignWithLabel === 'auto') { +// alignWithLabel = axisModel.get('axisTick.alignWithLabel'); +// } +// return alignWithLabel; +// } + +var CartesianAxisView = AxisView.extend({ + + type: 'cartesianAxis', + + axisPointerClass: 'CartesianAxisPointer', + + /** + * @override + */ + render: function (axisModel, ecModel, api, payload) { + + this.group.removeAll(); + + var oldAxisGroup = this._axisGroup; + this._axisGroup = new Group(); + + this.group.add(this._axisGroup); + + if (!axisModel.get('show')) { + return; + } + + var gridModel = axisModel.getCoordSysModel(); + + var layout = layout$1(gridModel, axisModel); + + var axisBuilder = new AxisBuilder(axisModel, layout); + + each$1(axisBuilderAttrs, axisBuilder.add, axisBuilder); + + this._axisGroup.add(axisBuilder.getGroup()); + + each$1(selfBuilderAttrs, function (name) { + if (axisModel.get(name + '.show')) { + this['_' + name](axisModel, gridModel); + } + }, this); + + groupTransition(oldAxisGroup, this._axisGroup, axisModel); + + CartesianAxisView.superCall(this, 'render', axisModel, ecModel, api, payload); + }, + + remove: function () { + this._splitAreaColors = null; + }, + + /** + * @param {module:echarts/coord/cartesian/AxisModel} axisModel + * @param {module:echarts/coord/cartesian/GridModel} gridModel + * @private + */ + _splitLine: function (axisModel, gridModel) { + var axis = axisModel.axis; + + if (axis.scale.isBlank()) { + return; + } + + var splitLineModel = axisModel.getModel('splitLine'); + var lineStyleModel = splitLineModel.getModel('lineStyle'); + var lineColors = lineStyleModel.get('color'); + + lineColors = isArray(lineColors) ? lineColors : [lineColors]; + + var gridRect = gridModel.coordinateSystem.getRect(); + var isHorizontal = axis.isHorizontal(); + + var lineCount = 0; + + var ticksCoords = axis.getTicksCoords({ + tickModel: splitLineModel + }); + + var p1 = []; + var p2 = []; + + // Simple optimization + // Batching the lines if color are the same + var lineStyle = lineStyleModel.getLineStyle(); + for (var i = 0; i < ticksCoords.length; i++) { + var tickCoord = axis.toGlobalCoord(ticksCoords[i].coord); + + if (isHorizontal) { + p1[0] = tickCoord; + p1[1] = gridRect.y; + p2[0] = tickCoord; + p2[1] = gridRect.y + gridRect.height; + } + else { + p1[0] = gridRect.x; + p1[1] = tickCoord; + p2[0] = gridRect.x + gridRect.width; + p2[1] = tickCoord; + } + + var colorIndex = (lineCount++) % lineColors.length; + var tickValue = ticksCoords[i].tickValue; + this._axisGroup.add(new Line({ + anid: tickValue != null ? 'line_' + ticksCoords[i].tickValue : null, + subPixelOptimize: true, + shape: { + x1: p1[0], + y1: p1[1], + x2: p2[0], + y2: p2[1] + }, + style: defaults({ + stroke: lineColors[colorIndex] + }, lineStyle), + silent: true + })); + } + }, + + /** + * @param {module:echarts/coord/cartesian/AxisModel} axisModel + * @param {module:echarts/coord/cartesian/GridModel} gridModel + * @private + */ + _splitArea: function (axisModel, gridModel) { + var axis = axisModel.axis; + + if (axis.scale.isBlank()) { + return; + } + + var splitAreaModel = axisModel.getModel('splitArea'); + var areaStyleModel = splitAreaModel.getModel('areaStyle'); + var areaColors = areaStyleModel.get('color'); + + var gridRect = gridModel.coordinateSystem.getRect(); + + var ticksCoords = axis.getTicksCoords({ + tickModel: splitAreaModel, + clamp: true + }); + + if (!ticksCoords.length) { + return; + } + + // For Making appropriate splitArea animation, the color and anid + // should be corresponding to previous one if possible. + var areaColorsLen = areaColors.length; + var lastSplitAreaColors = this._splitAreaColors; + var newSplitAreaColors = createHashMap(); + var colorIndex = 0; + if (lastSplitAreaColors) { + for (var i = 0; i < ticksCoords.length; i++) { + var cIndex = lastSplitAreaColors.get(ticksCoords[i].tickValue); + if (cIndex != null) { + colorIndex = (cIndex + (areaColorsLen - 1) * i) % areaColorsLen; + break; + } + } + } + + var prev = axis.toGlobalCoord(ticksCoords[0].coord); + + var areaStyle = areaStyleModel.getAreaStyle(); + areaColors = isArray(areaColors) ? areaColors : [areaColors]; + + for (var i = 1; i < ticksCoords.length; i++) { + var tickCoord = axis.toGlobalCoord(ticksCoords[i].coord); + + var x; + var y; + var width; + var height; + if (axis.isHorizontal()) { + x = prev; + y = gridRect.y; + width = tickCoord - x; + height = gridRect.height; + prev = x + width; + } + else { + x = gridRect.x; + y = prev; + width = gridRect.width; + height = tickCoord - y; + prev = y + height; + } + + var tickValue = ticksCoords[i - 1].tickValue; + tickValue != null && newSplitAreaColors.set(tickValue, colorIndex); + + this._axisGroup.add(new Rect({ + anid: tickValue != null ? 'area_' + tickValue : null, + shape: { + x: x, + y: y, + width: width, + height: height + }, + style: defaults({ + fill: areaColors[colorIndex] + }, areaStyle), + silent: true + })); + + colorIndex = (colorIndex + 1) % areaColorsLen; + } + + this._splitAreaColors = newSplitAreaColors; + } +}); + +CartesianAxisView.extend({ + type: 'xAxis' +}); +CartesianAxisView.extend({ + type: 'yAxis' +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Grid view +extendComponentView({ + + type: 'grid', + + render: function (gridModel, ecModel) { + this.group.removeAll(); + if (gridModel.get('show')) { + this.group.add(new Rect({ + shape: gridModel.coordinateSystem.getRect(), + style: defaults({ + fill: gridModel.get('backgroundColor') + }, gridModel.getItemStyle()), + silent: true, + z2: -1 + })); + } + } + +}); + +registerPreprocessor(function (option) { + // Only create grid when need + if (option.xAxis && option.yAxis && !option.grid) { + option.grid = {}; + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// In case developer forget to include grid component +registerVisual(visualSymbol('line', 'circle', 'line')); +registerLayout(pointsLayout('line')); + +// Down sample after filter +registerProcessor( + PRIORITY.PROCESSOR.STATISTIC, + dataSample('line') +); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var BaseBarSeries = SeriesModel.extend({ + + type: 'series.__base_bar__', + + getInitialData: function (option, ecModel) { + return createListFromArray(this.getSource(), this); + }, + + getMarkerPosition: function (value) { + var coordSys = this.coordinateSystem; + if (coordSys) { + // PENDING if clamp ? + var pt = coordSys.dataToPoint(coordSys.clampData(value)); + var data = this.getData(); + var offset = data.getLayout('offset'); + var size = data.getLayout('size'); + var offsetIndex = coordSys.getBaseAxis().isHorizontal() ? 0 : 1; + pt[offsetIndex] += offset + size / 2; + return pt; + } + return [NaN, NaN]; + }, + + defaultOption: { + zlevel: 0, // 一级层叠 + z: 2, // 二级层叠 + coordinateSystem: 'cartesian2d', + legendHoverLink: true, + // stack: null + + // Cartesian coordinate system + // xAxisIndex: 0, + // yAxisIndex: 0, + + // 最小高度改为0 + barMinHeight: 0, + // 最小角度为0,仅对极坐标系下的柱状图有效 + barMinAngle: 0, + // cursor: null, + + large: false, + largeThreshold: 400, + progressive: 3e3, + progressiveChunkMode: 'mod', + + // barMaxWidth: null, + // 默认自适应 + // barWidth: null, + // 柱间距离,默认为柱形宽度的30%,可设固定值 + // barGap: '30%', + // 类目间柱形距离,默认为类目间距的20%,可设固定值 + // barCategoryGap: '20%', + // label: { + // show: false + // }, + itemStyle: {}, + emphasis: {} + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +BaseBarSeries.extend({ + + type: 'series.bar', + + dependencies: ['grid', 'polar'], + + brushSelector: 'rect', + + /** + * @override + */ + getProgressive: function () { + // Do not support progressive in normal mode. + return this.get('large') + ? this.get('progressive') + : false; + }, + + /** + * @override + */ + getProgressiveThreshold: function () { + // Do not support progressive in normal mode. + var progressiveThreshold = this.get('progressiveThreshold'); + var largeThreshold = this.get('largeThreshold'); + if (largeThreshold > progressiveThreshold) { + progressiveThreshold = largeThreshold; + } + return progressiveThreshold; + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function setLabel( + normalStyle, hoverStyle, itemModel, color, seriesModel, dataIndex, labelPositionOutside +) { + var labelModel = itemModel.getModel('label'); + var hoverLabelModel = itemModel.getModel('emphasis.label'); + + setLabelStyle( + normalStyle, hoverStyle, labelModel, hoverLabelModel, + { + labelFetcher: seriesModel, + labelDataIndex: dataIndex, + defaultText: getDefaultLabel(seriesModel.getData(), dataIndex), + isRectText: true, + autoColor: color + } + ); + + fixPosition(normalStyle); + fixPosition(hoverStyle); +} + +function fixPosition(style, labelPositionOutside) { + if (style.textPosition === 'outside') { + style.textPosition = labelPositionOutside; + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var getBarItemStyle = makeStyleMapper( + [ + ['fill', 'color'], + ['stroke', 'borderColor'], + ['lineWidth', 'borderWidth'], + // Compatitable with 2 + ['stroke', 'barBorderColor'], + ['lineWidth', 'barBorderWidth'], + ['opacity'], + ['shadowBlur'], + ['shadowOffsetX'], + ['shadowOffsetY'], + ['shadowColor'] + ] +); + +var barItemStyle = { + getBarItemStyle: function (excludes) { + var style = getBarItemStyle(this, excludes); + if (this.getBorderLineDash) { + var lineDash = this.getBorderLineDash(); + lineDash && (style.lineDash = lineDash); + } + return style; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var BAR_BORDER_WIDTH_QUERY = ['itemStyle', 'barBorderWidth']; +var _eventPos = [0, 0]; + +// FIXME +// Just for compatible with ec2. +extend(Model.prototype, barItemStyle); + +extendChartView({ + + type: 'bar', + + render: function (seriesModel, ecModel, api) { + this._updateDrawMode(seriesModel); + + var coordinateSystemType = seriesModel.get('coordinateSystem'); + + if (coordinateSystemType === 'cartesian2d' + || coordinateSystemType === 'polar' + ) { + this._isLargeDraw + ? this._renderLarge(seriesModel, ecModel, api) + : this._renderNormal(seriesModel, ecModel, api); + } + else if (__DEV__) { + console.warn('Only cartesian2d and polar supported for bar.'); + } + + return this.group; + }, + + incrementalPrepareRender: function (seriesModel, ecModel, api) { + this._clear(); + this._updateDrawMode(seriesModel); + }, + + incrementalRender: function (params, seriesModel, ecModel, api) { + // Do not support progressive in normal mode. + this._incrementalRenderLarge(params, seriesModel); + }, + + _updateDrawMode: function (seriesModel) { + var isLargeDraw = seriesModel.pipelineContext.large; + if (this._isLargeDraw == null || isLargeDraw ^ this._isLargeDraw) { + this._isLargeDraw = isLargeDraw; + this._clear(); + } + }, + + _renderNormal: function (seriesModel, ecModel, api) { + var group = this.group; + var data = seriesModel.getData(); + var oldData = this._data; + + var coord = seriesModel.coordinateSystem; + var baseAxis = coord.getBaseAxis(); + var isHorizontalOrRadial; + + if (coord.type === 'cartesian2d') { + isHorizontalOrRadial = baseAxis.isHorizontal(); + } + else if (coord.type === 'polar') { + isHorizontalOrRadial = baseAxis.dim === 'angle'; + } + + var animationModel = seriesModel.isAnimationEnabled() ? seriesModel : null; + + data.diff(oldData) + .add(function (dataIndex) { + if (!data.hasValue(dataIndex)) { + return; + } + + var itemModel = data.getItemModel(dataIndex); + var layout = getLayout[coord.type](data, dataIndex, itemModel); + var el = elementCreator[coord.type]( + data, dataIndex, itemModel, layout, isHorizontalOrRadial, animationModel + ); + data.setItemGraphicEl(dataIndex, el); + group.add(el); + + updateStyle( + el, data, dataIndex, itemModel, layout, + seriesModel, isHorizontalOrRadial, coord.type === 'polar' + ); + }) + .update(function (newIndex, oldIndex) { + var el = oldData.getItemGraphicEl(oldIndex); + + if (!data.hasValue(newIndex)) { + group.remove(el); + return; + } + + var itemModel = data.getItemModel(newIndex); + var layout = getLayout[coord.type](data, newIndex, itemModel); + + if (el) { + updateProps(el, {shape: layout}, animationModel, newIndex); + } + else { + el = elementCreator[coord.type]( + data, newIndex, itemModel, layout, isHorizontalOrRadial, animationModel, true + ); + } + + data.setItemGraphicEl(newIndex, el); + // Add back + group.add(el); + + updateStyle( + el, data, newIndex, itemModel, layout, + seriesModel, isHorizontalOrRadial, coord.type === 'polar' + ); + }) + .remove(function (dataIndex) { + var el = oldData.getItemGraphicEl(dataIndex); + if (coord.type === 'cartesian2d') { + el && removeRect(dataIndex, animationModel, el); + } + else { + el && removeSector(dataIndex, animationModel, el); + } + }) + .execute(); + + this._data = data; + }, + + _renderLarge: function (seriesModel, ecModel, api) { + this._clear(); + createLarge(seriesModel, this.group); + }, + + _incrementalRenderLarge: function (params, seriesModel) { + createLarge(seriesModel, this.group, true); + }, + + dispose: noop, + + remove: function (ecModel) { + this._clear(ecModel); + }, + + _clear: function (ecModel) { + var group = this.group; + var data = this._data; + if (ecModel && ecModel.get('animation') && data && !this._isLargeDraw) { + data.eachItemGraphicEl(function (el) { + if (el.type === 'sector') { + removeSector(el.dataIndex, ecModel, el); + } + else { + removeRect(el.dataIndex, ecModel, el); + } + }); + } + else { + group.removeAll(); + } + this._data = null; + } + +}); + +var elementCreator = { + + cartesian2d: function ( + data, dataIndex, itemModel, layout, isHorizontal, + animationModel, isUpdate + ) { + var rect = new Rect({shape: extend({}, layout)}); + + // Animation + if (animationModel) { + var rectShape = rect.shape; + var animateProperty = isHorizontal ? 'height' : 'width'; + var animateTarget = {}; + rectShape[animateProperty] = 0; + animateTarget[animateProperty] = layout[animateProperty]; + graphic[isUpdate ? 'updateProps' : 'initProps'](rect, { + shape: animateTarget + }, animationModel, dataIndex); + } + + return rect; + }, + + polar: function ( + data, dataIndex, itemModel, layout, isRadial, + animationModel, isUpdate + ) { + // Keep the same logic with bar in catesion: use end value to control + // direction. Notice that if clockwise is true (by default), the sector + // will always draw clockwisely, no matter whether endAngle is greater + // or less than startAngle. + var clockwise = layout.startAngle < layout.endAngle; + var sector = new Sector({ + shape: defaults({clockwise: clockwise}, layout) + }); + + // Animation + if (animationModel) { + var sectorShape = sector.shape; + var animateProperty = isRadial ? 'r' : 'endAngle'; + var animateTarget = {}; + sectorShape[animateProperty] = isRadial ? 0 : layout.startAngle; + animateTarget[animateProperty] = layout[animateProperty]; + graphic[isUpdate ? 'updateProps' : 'initProps'](sector, { + shape: animateTarget + }, animationModel, dataIndex); + } + + return sector; + } +}; + +function removeRect(dataIndex, animationModel, el) { + // Not show text when animating + el.style.text = null; + updateProps(el, { + shape: { + width: 0 + } + }, animationModel, dataIndex, function () { + el.parent && el.parent.remove(el); + }); +} + +function removeSector(dataIndex, animationModel, el) { + // Not show text when animating + el.style.text = null; + updateProps(el, { + shape: { + r: el.shape.r0 + } + }, animationModel, dataIndex, function () { + el.parent && el.parent.remove(el); + }); +} + +var getLayout = { + cartesian2d: function (data, dataIndex, itemModel) { + var layout = data.getItemLayout(dataIndex); + var fixedLineWidth = getLineWidth(itemModel, layout); + + // fix layout with lineWidth + var signX = layout.width > 0 ? 1 : -1; + var signY = layout.height > 0 ? 1 : -1; + return { + x: layout.x + signX * fixedLineWidth / 2, + y: layout.y + signY * fixedLineWidth / 2, + width: layout.width - signX * fixedLineWidth, + height: layout.height - signY * fixedLineWidth + }; + }, + + polar: function (data, dataIndex, itemModel) { + var layout = data.getItemLayout(dataIndex); + return { + cx: layout.cx, + cy: layout.cy, + r0: layout.r0, + r: layout.r, + startAngle: layout.startAngle, + endAngle: layout.endAngle + }; + } +}; + +function updateStyle( + el, data, dataIndex, itemModel, layout, seriesModel, isHorizontal, isPolar +) { + var color = data.getItemVisual(dataIndex, 'color'); + var opacity = data.getItemVisual(dataIndex, 'opacity'); + var itemStyleModel = itemModel.getModel('itemStyle'); + var hoverStyle = itemModel.getModel('emphasis.itemStyle').getBarItemStyle(); + + if (!isPolar) { + el.setShape('r', itemStyleModel.get('barBorderRadius') || 0); + } + + el.useStyle(defaults( + { + fill: color, + opacity: opacity + }, + itemStyleModel.getBarItemStyle() + )); + + var cursorStyle = itemModel.getShallow('cursor'); + cursorStyle && el.attr('cursor', cursorStyle); + + var labelPositionOutside = isHorizontal + ? (layout.height > 0 ? 'bottom' : 'top') + : (layout.width > 0 ? 'left' : 'right'); + + if (!isPolar) { + setLabel( + el.style, hoverStyle, itemModel, color, + seriesModel, dataIndex, labelPositionOutside + ); + } + + setHoverStyle(el, hoverStyle); +} + +// In case width or height are too small. +function getLineWidth(itemModel, rawLayout) { + var lineWidth = itemModel.get(BAR_BORDER_WIDTH_QUERY) || 0; + return Math.min(lineWidth, Math.abs(rawLayout.width), Math.abs(rawLayout.height)); +} + + +var LargePath = Path.extend({ + + type: 'largeBar', + + shape: {points: []}, + + buildPath: function (ctx, shape) { + // Drawing lines is more efficient than drawing + // a whole line or drawing rects. + var points = shape.points; + var startPoint = this.__startPoint; + var baseDimIdx = this.__baseDimIdx; + + for (var i = 0; i < points.length; i += 2) { + startPoint[baseDimIdx] = points[i + baseDimIdx]; + ctx.moveTo(startPoint[0], startPoint[1]); + ctx.lineTo(points[i], points[i + 1]); + } + } +}); + +function createLarge(seriesModel, group, incremental) { + // TODO support polar + var data = seriesModel.getData(); + var startPoint = []; + var baseDimIdx = data.getLayout('valueAxisHorizontal') ? 1 : 0; + startPoint[1 - baseDimIdx] = data.getLayout('valueAxisStart'); + + var el = new LargePath({ + shape: {points: data.getLayout('largePoints')}, + incremental: !!incremental, + __startPoint: startPoint, + __baseDimIdx: baseDimIdx, + __largeDataIndices: data.getLayout('largeDataIndices'), + __barWidth: data.getLayout('barWidth') + }); + group.add(el); + setLargeStyle(el, seriesModel, data); + + // Enable tooltip and user mouse/touch event handlers. + el.seriesIndex = seriesModel.seriesIndex; + + if (!seriesModel.get('silent')) { + el.on('mousedown', largePathUpdateDataIndex); + el.on('mousemove', largePathUpdateDataIndex); + } +} + +// Use throttle to avoid frequently traverse to find dataIndex. +var largePathUpdateDataIndex = throttle(function (event) { + var largePath = this; + var dataIndex = largePathFindDataIndex(largePath, event.offsetX, event.offsetY); + largePath.dataIndex = dataIndex >= 0 ? dataIndex : null; +}, 30, false); + +function largePathFindDataIndex(largePath, x, y) { + var baseDimIdx = largePath.__baseDimIdx; + var valueDimIdx = 1 - baseDimIdx; + var points = largePath.shape.points; + var largeDataIndices = largePath.__largeDataIndices; + var barWidthHalf = Math.abs(largePath.__barWidth / 2); + var startValueVal = largePath.__startPoint[valueDimIdx]; + + _eventPos[0] = x; + _eventPos[1] = y; + var pointerBaseVal = _eventPos[baseDimIdx]; + var pointerValueVal = _eventPos[1 - baseDimIdx]; + var baseLowerBound = pointerBaseVal - barWidthHalf; + var baseUpperBound = pointerBaseVal + barWidthHalf; + + for (var i = 0, len = points.length / 2; i < len; i++) { + var ii = i * 2; + var barBaseVal = points[ii + baseDimIdx]; + var barValueVal = points[ii + valueDimIdx]; + if ( + barBaseVal >= baseLowerBound && barBaseVal <= baseUpperBound + && ( + startValueVal <= barValueVal + ? (pointerValueVal >= startValueVal && pointerValueVal <= barValueVal) + : (pointerValueVal >= barValueVal && pointerValueVal <= startValueVal) + ) + ) { + return largeDataIndices[i]; + } + } + + return -1; +} + +function setLargeStyle(el, seriesModel, data) { + var borderColor = data.getVisual('borderColor') || data.getVisual('color'); + var itemStyle = seriesModel.getModel('itemStyle').getItemStyle(['color', 'borderColor']); + + el.useStyle(itemStyle); + el.style.fill = null; + el.style.stroke = borderColor; + el.style.lineWidth = data.getLayout('barWidth'); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// In case developer forget to include grid component +registerLayout(PRIORITY.VISUAL.LAYOUT, curry(layout, 'bar')); +// Use higher prority to avoid to be blocked by other overall layout, which do not +// only exist in this module, but probably also exist in other modules, like `barPolar`. +registerLayout(PRIORITY.VISUAL.PROGRESSIVE_LAYOUT, largeLayout); + +registerVisual({ + seriesType: 'bar', + reset: function (seriesModel) { + // Visual coding for legend + seriesModel.getData().setVisual('legendSymbol', 'roundRect'); + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +/** + * [Usage]: + * (1) + * createListSimply(seriesModel, ['value']); + * (2) + * createListSimply(seriesModel, { + * coordDimensions: ['value'], + * dimensionsCount: 5 + * }); + * + * @param {module:echarts/model/Series} seriesModel + * @param {Object|Array.} opt opt or coordDimensions + * The options in opt, see `echarts/data/helper/createDimensions` + * @param {Array.} [nameList] + * @return {module:echarts/data/List} + */ +var createListSimply = function (seriesModel, opt, nameList) { + opt = isArray(opt) && {coordDimensions: opt} || extend({}, opt); + + var source = seriesModel.getSource(); + + var dimensionsInfo = createDimensions(source, opt); + + var list = new List(dimensionsInfo, seriesModel); + list.initData(source, nameList); + + return list; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Data selectable mixin for chart series. + * To eanble data select, option of series must have `selectedMode`. + * And each data item will use `selected` to toggle itself selected status + */ + +var selectableMixin = { + + /** + * @param {Array.} targetList [{name, value, selected}, ...] + * If targetList is an array, it should like [{name: ..., value: ...}, ...]. + * If targetList is a "List", it must have coordDim: 'value' dimension and name. + */ + updateSelectedMap: function (targetList) { + this._targetList = isArray(targetList) ? targetList.slice() : []; + + this._selectTargetMap = reduce(targetList || [], function (targetMap, target) { + targetMap.set(target.name, target); + return targetMap; + }, createHashMap()); + }, + + /** + * Either name or id should be passed as input here. + * If both of them are defined, id is used. + * + * @param {string|undefined} name name of data + * @param {number|undefined} id dataIndex of data + */ + // PENGING If selectedMode is null ? + select: function (name, id) { + var target = id != null + ? this._targetList[id] + : this._selectTargetMap.get(name); + var selectedMode = this.get('selectedMode'); + if (selectedMode === 'single') { + this._selectTargetMap.each(function (target) { + target.selected = false; + }); + } + target && (target.selected = true); + }, + + /** + * Either name or id should be passed as input here. + * If both of them are defined, id is used. + * + * @param {string|undefined} name name of data + * @param {number|undefined} id dataIndex of data + */ + unSelect: function (name, id) { + var target = id != null + ? this._targetList[id] + : this._selectTargetMap.get(name); + // var selectedMode = this.get('selectedMode'); + // selectedMode !== 'single' && target && (target.selected = false); + target && (target.selected = false); + }, + + /** + * Either name or id should be passed as input here. + * If both of them are defined, id is used. + * + * @param {string|undefined} name name of data + * @param {number|undefined} id dataIndex of data + */ + toggleSelected: function (name, id) { + var target = id != null + ? this._targetList[id] + : this._selectTargetMap.get(name); + if (target != null) { + this[target.selected ? 'unSelect' : 'select'](name, id); + return target.selected; + } + }, + + /** + * Either name or id should be passed as input here. + * If both of them are defined, id is used. + * + * @param {string|undefined} name name of data + * @param {number|undefined} id dataIndex of data + */ + isSelected: function (name, id) { + var target = id != null + ? this._targetList[id] + : this._selectTargetMap.get(name); + return target && target.selected; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var PieSeries = extendSeriesModel({ + + type: 'series.pie', + + // Overwrite + init: function (option) { + PieSeries.superApply(this, 'init', arguments); + + // Enable legend selection for each data item + // Use a function instead of direct access because data reference may changed + this.legendDataProvider = function () { + return this.getRawData(); + }; + + this.updateSelectedMap(this._createSelectableList()); + + this._defaultLabelLine(option); + }, + + // Overwrite + mergeOption: function (newOption) { + PieSeries.superCall(this, 'mergeOption', newOption); + + this.updateSelectedMap(this._createSelectableList()); + }, + + getInitialData: function (option, ecModel) { + return createListSimply(this, ['value']); + }, + + _createSelectableList: function () { + var data = this.getRawData(); + var valueDim = data.mapDimension('value'); + var targetList = []; + for (var i = 0, len = data.count(); i < len; i++) { + targetList.push({ + name: data.getName(i), + value: data.get(valueDim, i), + selected: retrieveRawAttr(data, i, 'selected') + }); + } + return targetList; + }, + + // Overwrite + getDataParams: function (dataIndex) { + var data = this.getData(); + var params = PieSeries.superCall(this, 'getDataParams', dataIndex); + // FIXME toFixed? + + var valueList = []; + data.each(data.mapDimension('value'), function (value) { + valueList.push(value); + }); + + params.percent = getPercentWithPrecision( + valueList, + dataIndex, + data.hostModel.get('percentPrecision') + ); + + params.$vars.push('percent'); + return params; + }, + + _defaultLabelLine: function (option) { + // Extend labelLine emphasis + defaultEmphasis(option, 'labelLine', ['show']); + + var labelLineNormalOpt = option.labelLine; + var labelLineEmphasisOpt = option.emphasis.labelLine; + // Not show label line if `label.normal.show = false` + labelLineNormalOpt.show = labelLineNormalOpt.show + && option.label.show; + labelLineEmphasisOpt.show = labelLineEmphasisOpt.show + && option.emphasis.label.show; + }, + + defaultOption: { + zlevel: 0, + z: 2, + legendHoverLink: true, + + hoverAnimation: true, + // 默认全局居中 + center: ['50%', '50%'], + radius: [0, '75%'], + // 默认顺时针 + clockwise: true, + startAngle: 90, + // 最小角度改为0 + minAngle: 0, + + // If the angle of a sector less than `minShowLabelAngle`, + // the label will not be displayed. + minShowLabelAngle: 0, + + // 选中时扇区偏移量 + selectedOffset: 10, + // 高亮扇区偏移量 + hoverOffset: 10, + + // If use strategy to avoid label overlapping + avoidLabelOverlap: true, + // 选择模式,默认关闭,可选single,multiple + // selectedMode: false, + // 南丁格尔玫瑰图模式,'radius'(半径) | 'area'(面积) + // roseType: null, + + percentPrecision: 2, + + // If still show when all data zero. + stillShowZeroSum: true, + + // cursor: null, + + label: { + // If rotate around circle + rotate: false, + show: true, + // 'outer', 'inside', 'center' + position: 'outer' + // formatter: 标签文本格式器,同Tooltip.formatter,不支持异步回调 + // 默认使用全局文本样式,详见TEXTSTYLE + // distance: 当position为inner时有效,为label位置到圆心的距离与圆半径(环状图为内外半径和)的比例系数 + }, + // Enabled when label.normal.position is 'outer' + labelLine: { + show: true, + // 引导线两段中的第一段长度 + length: 15, + // 引导线两段中的第二段长度 + length2: 15, + smooth: false, + lineStyle: { + // color: 各异, + width: 1, + type: 'solid' + } + }, + itemStyle: { + borderWidth: 1 + }, + + // Animation type canbe expansion, scale + animationType: 'expansion', + + animationEasing: 'cubicOut' + } +}); + +mixin(PieSeries, selectableMixin); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @param {module:echarts/model/Series} seriesModel + * @param {boolean} hasAnimation + * @inner + */ +function updateDataSelected(uid, seriesModel, hasAnimation, api) { + var data = seriesModel.getData(); + var dataIndex = this.dataIndex; + var name = data.getName(dataIndex); + var selectedOffset = seriesModel.get('selectedOffset'); + + api.dispatchAction({ + type: 'pieToggleSelect', + from: uid, + name: name, + seriesId: seriesModel.id + }); + + data.each(function (idx) { + toggleItemSelected( + data.getItemGraphicEl(idx), + data.getItemLayout(idx), + seriesModel.isSelected(data.getName(idx)), + selectedOffset, + hasAnimation + ); + }); +} + +/** + * @param {module:zrender/graphic/Sector} el + * @param {Object} layout + * @param {boolean} isSelected + * @param {number} selectedOffset + * @param {boolean} hasAnimation + * @inner + */ +function toggleItemSelected(el, layout, isSelected, selectedOffset, hasAnimation) { + var midAngle = (layout.startAngle + layout.endAngle) / 2; + + var dx = Math.cos(midAngle); + var dy = Math.sin(midAngle); + + var offset = isSelected ? selectedOffset : 0; + var position = [dx * offset, dy * offset]; + + hasAnimation + // animateTo will stop revious animation like update transition + ? el.animate() + .when(200, { + position: position + }) + .start('bounceOut') + : el.attr('position', position); +} + +/** + * Piece of pie including Sector, Label, LabelLine + * @constructor + * @extends {module:zrender/graphic/Group} + */ +function PiePiece(data, idx) { + + Group.call(this); + + var sector = new Sector({ + z2: 2 + }); + var polyline = new Polyline(); + var text = new Text(); + this.add(sector); + this.add(polyline); + this.add(text); + + this.updateData(data, idx, true); +} + +var piePieceProto = PiePiece.prototype; + +piePieceProto.updateData = function (data, idx, firstCreate) { + + var sector = this.childAt(0); + var labelLine = this.childAt(1); + var labelText = this.childAt(2); + + var seriesModel = data.hostModel; + var itemModel = data.getItemModel(idx); + var layout = data.getItemLayout(idx); + var sectorShape = extend({}, layout); + sectorShape.label = null; + + if (firstCreate) { + sector.setShape(sectorShape); + + var animationType = seriesModel.getShallow('animationType'); + if (animationType === 'scale') { + sector.shape.r = layout.r0; + initProps(sector, { + shape: { + r: layout.r + } + }, seriesModel, idx); + } + // Expansion + else { + sector.shape.endAngle = layout.startAngle; + updateProps(sector, { + shape: { + endAngle: layout.endAngle + } + }, seriesModel, idx); + } + + } + else { + updateProps(sector, { + shape: sectorShape + }, seriesModel, idx); + } + + // Update common style + var visualColor = data.getItemVisual(idx, 'color'); + + sector.useStyle( + defaults( + { + lineJoin: 'bevel', + fill: visualColor + }, + itemModel.getModel('itemStyle').getItemStyle() + ) + ); + sector.hoverStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle(); + + var cursorStyle = itemModel.getShallow('cursor'); + cursorStyle && sector.attr('cursor', cursorStyle); + + // Toggle selected + toggleItemSelected( + this, + data.getItemLayout(idx), + seriesModel.isSelected(null, idx), + seriesModel.get('selectedOffset'), + seriesModel.get('animation') + ); + + this._updateLabel(data, idx); + + this.highDownOnUpdate = (itemModel.get('hoverAnimation') && seriesModel.isAnimationEnabled()) + ? function (fromState, toState) { + if (toState === 'emphasis') { + labelLine.ignore = labelLine.hoverIgnore; + labelText.ignore = labelText.hoverIgnore; + + // Sector may has animation of updating data. Force to move to the last frame + // Or it may stopped on the wrong shape + sector.stopAnimation(true); + sector.animateTo({ + shape: { + r: layout.r + seriesModel.get('hoverOffset') + } + }, 300, 'elasticOut'); + } + else { + labelLine.ignore = labelLine.normalIgnore; + labelText.ignore = labelText.normalIgnore; + + sector.stopAnimation(true); + sector.animateTo({ + shape: { + r: layout.r + } + }, 300, 'elasticOut'); + } + } + : null; + + setHoverStyle(this); +}; + +piePieceProto._updateLabel = function (data, idx) { + + var labelLine = this.childAt(1); + var labelText = this.childAt(2); + + var seriesModel = data.hostModel; + var itemModel = data.getItemModel(idx); + var layout = data.getItemLayout(idx); + var labelLayout = layout.label; + var visualColor = data.getItemVisual(idx, 'color'); + + if (!labelLayout || isNaN(labelLayout.x) || isNaN(labelLayout.y)) { + labelText.ignore = labelText.normalIgnore = labelText.hoverIgnore = + labelLine.ignore = labelLine.normalIgnore = labelLine.hoverIgnore = true; + return; + } + + updateProps(labelLine, { + shape: { + points: labelLayout.linePoints || [ + [labelLayout.x, labelLayout.y], [labelLayout.x, labelLayout.y], [labelLayout.x, labelLayout.y] + ] + } + }, seriesModel, idx); + + updateProps(labelText, { + style: { + x: labelLayout.x, + y: labelLayout.y + } + }, seriesModel, idx); + labelText.attr({ + rotation: labelLayout.rotation, + origin: [labelLayout.x, labelLayout.y], + z2: 10 + }); + + var labelModel = itemModel.getModel('label'); + var labelHoverModel = itemModel.getModel('emphasis.label'); + var labelLineModel = itemModel.getModel('labelLine'); + var labelLineHoverModel = itemModel.getModel('emphasis.labelLine'); + var visualColor = data.getItemVisual(idx, 'color'); + + setLabelStyle( + labelText.style, labelText.hoverStyle = {}, labelModel, labelHoverModel, + { + labelFetcher: data.hostModel, + labelDataIndex: idx, + defaultText: data.getName(idx), + autoColor: visualColor, + useInsideStyle: !!labelLayout.inside + }, + { + textAlign: labelLayout.textAlign, + textVerticalAlign: labelLayout.verticalAlign, + opacity: data.getItemVisual(idx, 'opacity') + } + ); + + labelText.ignore = labelText.normalIgnore = !labelModel.get('show'); + labelText.hoverIgnore = !labelHoverModel.get('show'); + + labelLine.ignore = labelLine.normalIgnore = !labelLineModel.get('show'); + labelLine.hoverIgnore = !labelLineHoverModel.get('show'); + + // Default use item visual color + labelLine.setStyle({ + stroke: visualColor, + opacity: data.getItemVisual(idx, 'opacity') + }); + labelLine.setStyle(labelLineModel.getModel('lineStyle').getLineStyle()); + + labelLine.hoverStyle = labelLineHoverModel.getModel('lineStyle').getLineStyle(); + + var smooth = labelLineModel.get('smooth'); + if (smooth && smooth === true) { + smooth = 0.4; + } + labelLine.setShape({ + smooth: smooth + }); +}; + +inherits(PiePiece, Group); + + +// Pie view +var PieView = Chart.extend({ + + type: 'pie', + + init: function () { + var sectorGroup = new Group(); + this._sectorGroup = sectorGroup; + }, + + render: function (seriesModel, ecModel, api, payload) { + if (payload && (payload.from === this.uid)) { + return; + } + + var data = seriesModel.getData(); + var oldData = this._data; + var group = this.group; + + var hasAnimation = ecModel.get('animation'); + var isFirstRender = !oldData; + var animationType = seriesModel.get('animationType'); + + var onSectorClick = curry( + updateDataSelected, this.uid, seriesModel, hasAnimation, api + ); + + var selectedMode = seriesModel.get('selectedMode'); + data.diff(oldData) + .add(function (idx) { + var piePiece = new PiePiece(data, idx); + // Default expansion animation + if (isFirstRender && animationType !== 'scale') { + piePiece.eachChild(function (child) { + child.stopAnimation(true); + }); + } + + selectedMode && piePiece.on('click', onSectorClick); + + data.setItemGraphicEl(idx, piePiece); + + group.add(piePiece); + }) + .update(function (newIdx, oldIdx) { + var piePiece = oldData.getItemGraphicEl(oldIdx); + + piePiece.updateData(data, newIdx); + + piePiece.off('click'); + selectedMode && piePiece.on('click', onSectorClick); + group.add(piePiece); + data.setItemGraphicEl(newIdx, piePiece); + }) + .remove(function (idx) { + var piePiece = oldData.getItemGraphicEl(idx); + group.remove(piePiece); + }) + .execute(); + + if ( + hasAnimation && isFirstRender && data.count() > 0 + // Default expansion animation + && animationType !== 'scale' + ) { + var shape = data.getItemLayout(0); + for (var s = 1; isNaN(shape.startAngle) && s < data.count(); ++s) { + shape = data.getItemLayout(s); + } + + var r = Math.max(api.getWidth(), api.getHeight()) / 2; + + var removeClipPath = bind(group.removeClipPath, group); + group.setClipPath(this._createClipPath( + shape.cx, shape.cy, r, shape.startAngle, shape.clockwise, removeClipPath, seriesModel + )); + } + else { + // clipPath is used in first-time animation, so remove it when otherwise. See: #8994 + group.removeClipPath(); + } + + this._data = data; + }, + + dispose: function () {}, + + _createClipPath: function ( + cx, cy, r, startAngle, clockwise, cb, seriesModel + ) { + var clipPath = new Sector({ + shape: { + cx: cx, + cy: cy, + r0: 0, + r: r, + startAngle: startAngle, + endAngle: startAngle, + clockwise: clockwise + } + }); + + initProps(clipPath, { + shape: { + endAngle: startAngle + (clockwise ? 1 : -1) * Math.PI * 2 + } + }, seriesModel, cb); + + return clipPath; + }, + + /** + * @implement + */ + containPoint: function (point, seriesModel) { + var data = seriesModel.getData(); + var itemLayout = data.getItemLayout(0); + if (itemLayout) { + var dx = point[0] - itemLayout.cx; + var dy = point[1] - itemLayout.cy; + var radius = Math.sqrt(dx * dx + dy * dy); + return radius <= itemLayout.r && radius >= itemLayout.r0; + } + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var createDataSelectAction = function (seriesType, actionInfos) { + each$1(actionInfos, function (actionInfo) { + actionInfo.update = 'updateView'; + /** + * @payload + * @property {string} seriesName + * @property {string} name + */ + registerAction(actionInfo, function (payload, ecModel) { + var selected = {}; + ecModel.eachComponent( + {mainType: 'series', subType: seriesType, query: payload}, + function (seriesModel) { + if (seriesModel[actionInfo.method]) { + seriesModel[actionInfo.method]( + payload.name, + payload.dataIndex + ); + } + var data = seriesModel.getData(); + // Create selected map + data.each(function (idx) { + var name = data.getName(idx); + selected[name] = seriesModel.isSelected(name) + || false; + }); + } + ); + return { + name: payload.name, + selected: selected, + seriesId: payload.seriesId + }; + }); + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Pick color from palette for each data item. +// Applicable for charts that require applying color palette +// in data level (like pie, funnel, chord). +var dataColor = function (seriesType) { + return { + getTargetSeries: function (ecModel) { + // Pie and funnel may use diferrent scope + var paletteScope = {}; + var seiresModelMap = createHashMap(); + + ecModel.eachSeriesByType(seriesType, function (seriesModel) { + seriesModel.__paletteScope = paletteScope; + seiresModelMap.set(seriesModel.uid, seriesModel); + }); + + return seiresModelMap; + }, + reset: function (seriesModel, ecModel) { + var dataAll = seriesModel.getRawData(); + var idxMap = {}; + var data = seriesModel.getData(); + + data.each(function (idx) { + var rawIdx = data.getRawIndex(idx); + idxMap[rawIdx] = idx; + }); + + dataAll.each(function (rawIdx) { + var filteredIdx = idxMap[rawIdx]; + + // If series.itemStyle.normal.color is a function. itemVisual may be encoded + var singleDataColor = filteredIdx != null + && data.getItemVisual(filteredIdx, 'color', true); + + if (!singleDataColor) { + // FIXME Performance + var itemModel = dataAll.getItemModel(rawIdx); + + var color = itemModel.get('itemStyle.color') + || seriesModel.getColorFromPalette( + dataAll.getName(rawIdx) || (rawIdx + ''), seriesModel.__paletteScope, + dataAll.count() + ); + // Legend may use the visual info in data before processed + dataAll.setItemVisual(rawIdx, 'color', color); + + // Data is not filtered + if (filteredIdx != null) { + data.setItemVisual(filteredIdx, 'color', color); + } + } + else { + // Set data all color for legend + dataAll.setItemVisual(rawIdx, 'color', singleDataColor); + } + }); + } + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// FIXME emphasis label position is not same with normal label position + +var RADIAN$1 = Math.PI / 180; + +function adjustSingleSide(list, cx, cy, r, dir, viewWidth, viewHeight) { + list.sort(function (a, b) { + return a.y - b.y; + }); + + function shiftDown(start, end, delta, dir) { + for (var j = start; j < end; j++) { + list[j].y += delta; + if (j > start + && j + 1 < end + && list[j + 1].y > list[j].y + list[j].height + ) { + shiftUp(j, delta / 2); + return; + } + } + + shiftUp(end - 1, delta / 2); + } + + function shiftUp(end, delta) { + for (var j = end; j >= 0; j--) { + list[j].y -= delta; + if (j > 0 + && list[j].y > list[j - 1].y + list[j - 1].height + ) { + break; + } + } + } + + function changeX(list, isDownList, cx, cy, r, dir) { + var lastDeltaX = dir > 0 + ? isDownList // right-side + ? Number.MAX_VALUE // down + : 0 // up + : isDownList // left-side + ? Number.MAX_VALUE // down + : 0; // up + + for (var i = 0, l = list.length; i < l; i++) { + var deltaY = Math.abs(list[i].y - cy); + var length = list[i].len; + var length2 = list[i].len2; + var deltaX = (deltaY < r + length) + ? Math.sqrt( + (r + length + length2) * (r + length + length2) + - deltaY * deltaY + ) + : Math.abs(list[i].x - cx); + if (isDownList && deltaX >= lastDeltaX) { + // right-down, left-down + deltaX = lastDeltaX - 10; + } + if (!isDownList && deltaX <= lastDeltaX) { + // right-up, left-up + deltaX = lastDeltaX + 10; + } + + list[i].x = cx + deltaX * dir; + lastDeltaX = deltaX; + } + } + + var lastY = 0; + var delta; + var len = list.length; + var upList = []; + var downList = []; + for (var i = 0; i < len; i++) { + delta = list[i].y - lastY; + if (delta < 0) { + shiftDown(i, len, -delta, dir); + } + lastY = list[i].y + list[i].height; + } + if (viewHeight - lastY < 0) { + shiftUp(len - 1, lastY - viewHeight); + } + for (var i = 0; i < len; i++) { + if (list[i].y >= cy) { + downList.push(list[i]); + } + else { + upList.push(list[i]); + } + } + changeX(upList, false, cx, cy, r, dir); + changeX(downList, true, cx, cy, r, dir); +} + +function avoidOverlap(labelLayoutList, cx, cy, r, viewWidth, viewHeight) { + var leftList = []; + var rightList = []; + for (var i = 0; i < labelLayoutList.length; i++) { + if (isPositionCenter(labelLayoutList[i])) { + continue; + } + if (labelLayoutList[i].x < cx) { + leftList.push(labelLayoutList[i]); + } + else { + rightList.push(labelLayoutList[i]); + } + } + + adjustSingleSide(rightList, cx, cy, r, 1, viewWidth, viewHeight); + adjustSingleSide(leftList, cx, cy, r, -1, viewWidth, viewHeight); + + for (var i = 0; i < labelLayoutList.length; i++) { + if (isPositionCenter(labelLayoutList[i])) { + continue; + } + var linePoints = labelLayoutList[i].linePoints; + if (linePoints) { + var dist = linePoints[1][0] - linePoints[2][0]; + if (labelLayoutList[i].x < cx) { + linePoints[2][0] = labelLayoutList[i].x + 3; + } + else { + linePoints[2][0] = labelLayoutList[i].x - 3; + } + linePoints[1][1] = linePoints[2][1] = labelLayoutList[i].y; + linePoints[1][0] = linePoints[2][0] + dist; + } + } +} + +function isPositionCenter(layout) { + // Not change x for center label + return layout.position === 'center'; +} + +var labelLayout = function (seriesModel, r, viewWidth, viewHeight, sum) { + var data = seriesModel.getData(); + var labelLayoutList = []; + var cx; + var cy; + var hasLabelRotate = false; + var minShowLabelRadian = (seriesModel.get('minShowLabelAngle') || 0) * RADIAN$1; + + data.each(function (idx) { + var layout = data.getItemLayout(idx); + + var itemModel = data.getItemModel(idx); + var labelModel = itemModel.getModel('label'); + // Use position in normal or emphasis + var labelPosition = labelModel.get('position') || itemModel.get('emphasis.label.position'); + + var labelLineModel = itemModel.getModel('labelLine'); + var labelLineLen = labelLineModel.get('length'); + var labelLineLen2 = labelLineModel.get('length2'); + + if (layout.angle < minShowLabelRadian) { + return; + } + + var midAngle = (layout.startAngle + layout.endAngle) / 2; + var dx = Math.cos(midAngle); + var dy = Math.sin(midAngle); + + var textX; + var textY; + var linePoints; + var textAlign; + + cx = layout.cx; + cy = layout.cy; + + var isLabelInside = labelPosition === 'inside' || labelPosition === 'inner'; + if (labelPosition === 'center') { + textX = layout.cx; + textY = layout.cy; + textAlign = 'center'; + } + else { + var x1 = (isLabelInside ? (layout.r + layout.r0) / 2 * dx : layout.r * dx) + cx; + var y1 = (isLabelInside ? (layout.r + layout.r0) / 2 * dy : layout.r * dy) + cy; + + textX = x1 + dx * 3; + textY = y1 + dy * 3; + + if (!isLabelInside) { + // For roseType + var x2 = x1 + dx * (labelLineLen + r - layout.r); + var y2 = y1 + dy * (labelLineLen + r - layout.r); + var x3 = x2 + ((dx < 0 ? -1 : 1) * labelLineLen2); + var y3 = y2; + + textX = x3 + (dx < 0 ? -5 : 5); + textY = y3; + linePoints = [[x1, y1], [x2, y2], [x3, y3]]; + } + + textAlign = isLabelInside ? 'center' : (dx > 0 ? 'left' : 'right'); + } + var font = labelModel.getFont(); + + var labelRotate; + var rotate = labelModel.get('rotate'); + if (typeof rotate === 'number') { + labelRotate = rotate * (Math.PI / 180); + } + else { + labelRotate = rotate + ? (dx < 0 ? -midAngle + Math.PI : -midAngle) + : 0; + } + var text = seriesModel.getFormattedLabel(idx, 'normal') + || data.getName(idx); + var textRect = getBoundingRect( + text, font, textAlign, 'top' + ); + hasLabelRotate = !!labelRotate; + layout.label = { + x: textX, + y: textY, + position: labelPosition, + height: textRect.height, + len: labelLineLen, + len2: labelLineLen2, + linePoints: linePoints, + textAlign: textAlign, + verticalAlign: 'middle', + rotation: labelRotate, + inside: isLabelInside + }; + + // Not layout the inside label + if (!isLabelInside) { + labelLayoutList.push(layout.label); + } + }); + if (!hasLabelRotate && seriesModel.get('avoidLabelOverlap')) { + avoidOverlap(labelLayoutList, cx, cy, r, viewWidth, viewHeight); + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var PI2$4 = Math.PI * 2; +var RADIAN = Math.PI / 180; + +var pieLayout = function (seriesType, ecModel, api, payload) { + ecModel.eachSeriesByType(seriesType, function (seriesModel) { + var data = seriesModel.getData(); + var valueDim = data.mapDimension('value'); + + var center = seriesModel.get('center'); + var radius = seriesModel.get('radius'); + + if (!isArray(radius)) { + radius = [0, radius]; + } + if (!isArray(center)) { + center = [center, center]; + } + + var width = api.getWidth(); + var height = api.getHeight(); + var size = Math.min(width, height); + var cx = parsePercent$1(center[0], width); + var cy = parsePercent$1(center[1], height); + var r0 = parsePercent$1(radius[0], size / 2); + var r = parsePercent$1(radius[1], size / 2); + + var startAngle = -seriesModel.get('startAngle') * RADIAN; + + var minAngle = seriesModel.get('minAngle') * RADIAN; + + var validDataCount = 0; + data.each(valueDim, function (value) { + !isNaN(value) && validDataCount++; + }); + + var sum = data.getSum(valueDim); + // Sum may be 0 + var unitRadian = Math.PI / (sum || validDataCount) * 2; + + var clockwise = seriesModel.get('clockwise'); + + var roseType = seriesModel.get('roseType'); + var stillShowZeroSum = seriesModel.get('stillShowZeroSum'); + + // [0...max] + var extent = data.getDataExtent(valueDim); + extent[0] = 0; + + // In the case some sector angle is smaller than minAngle + var restAngle = PI2$4; + var valueSumLargerThanMinAngle = 0; + + var currentAngle = startAngle; + var dir = clockwise ? 1 : -1; + + data.each(valueDim, function (value, idx) { + var angle; + if (isNaN(value)) { + data.setItemLayout(idx, { + angle: NaN, + startAngle: NaN, + endAngle: NaN, + clockwise: clockwise, + cx: cx, + cy: cy, + r0: r0, + r: roseType + ? NaN + : r + }); + return; + } + + // FIXME 兼容 2.0 但是 roseType 是 area 的时候才是这样? + if (roseType !== 'area') { + angle = (sum === 0 && stillShowZeroSum) + ? unitRadian : (value * unitRadian); + } + else { + angle = PI2$4 / validDataCount; + } + + if (angle < minAngle) { + angle = minAngle; + restAngle -= minAngle; + } + else { + valueSumLargerThanMinAngle += value; + } + + var endAngle = currentAngle + dir * angle; + data.setItemLayout(idx, { + angle: angle, + startAngle: currentAngle, + endAngle: endAngle, + clockwise: clockwise, + cx: cx, + cy: cy, + r0: r0, + r: roseType + ? linearMap(value, extent, [r0, r]) + : r + }); + + currentAngle = endAngle; + }); + + // Some sector is constrained by minAngle + // Rest sectors needs recalculate angle + if (restAngle < PI2$4 && validDataCount) { + // Average the angle if rest angle is not enough after all angles is + // Constrained by minAngle + if (restAngle <= 1e-3) { + var angle = PI2$4 / validDataCount; + data.each(valueDim, function (value, idx) { + if (!isNaN(value)) { + var layout = data.getItemLayout(idx); + layout.angle = angle; + layout.startAngle = startAngle + dir * idx * angle; + layout.endAngle = startAngle + dir * (idx + 1) * angle; + } + }); + } + else { + unitRadian = restAngle / valueSumLargerThanMinAngle; + currentAngle = startAngle; + data.each(valueDim, function (value, idx) { + if (!isNaN(value)) { + var layout = data.getItemLayout(idx); + var angle = layout.angle === minAngle + ? minAngle : value * unitRadian; + layout.startAngle = currentAngle; + layout.endAngle = currentAngle + dir * angle; + currentAngle += dir * angle; + } + }); + } + } + + labelLayout(seriesModel, r, width, height); + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var dataFilter = function (seriesType) { + return { + seriesType: seriesType, + reset: function (seriesModel, ecModel) { + var legendModels = ecModel.findComponents({ + mainType: 'legend' + }); + if (!legendModels || !legendModels.length) { + return; + } + var data = seriesModel.getData(); + data.filterSelf(function (idx) { + var name = data.getName(idx); + // If in any legend component the status is not selected. + for (var i = 0; i < legendModels.length; i++) { + if (!legendModels[i].isSelected(name)) { + return false; + } + } + return true; + }); + } + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +createDataSelectAction('pie', [{ + type: 'pieToggleSelect', + event: 'pieselectchanged', + method: 'toggleSelected' +}, { + type: 'pieSelect', + event: 'pieselected', + method: 'select' +}, { + type: 'pieUnSelect', + event: 'pieunselected', + method: 'unSelect' +}]); + +registerVisual(dataColor('pie')); +registerLayout(curry(pieLayout, 'pie')); +registerProcessor(dataFilter('pie')); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +SeriesModel.extend({ + + type: 'series.scatter', + + dependencies: ['grid', 'polar', 'geo', 'singleAxis', 'calendar'], + + getInitialData: function (option, ecModel) { + return createListFromArray(this.getSource(), this); + }, + + brushSelector: 'point', + + getProgressive: function () { + var progressive = this.option.progressive; + if (progressive == null) { + // PENDING + return this.option.large ? 5e3 : this.get('progressive'); + } + return progressive; + }, + + getProgressiveThreshold: function () { + var progressiveThreshold = this.option.progressiveThreshold; + if (progressiveThreshold == null) { + // PENDING + return this.option.large ? 1e4 : this.get('progressiveThreshold'); + } + return progressiveThreshold; + }, + + defaultOption: { + coordinateSystem: 'cartesian2d', + zlevel: 0, + z: 2, + legendHoverLink: true, + + hoverAnimation: true, + // Cartesian coordinate system + // xAxisIndex: 0, + // yAxisIndex: 0, + + // Polar coordinate system + // polarIndex: 0, + + // Geo coordinate system + // geoIndex: 0, + + // symbol: null, // 图形类型 + symbolSize: 10, // 图形大小,半宽(半径)参数,当图形为方向或菱形则总宽度为symbolSize * 2 + // symbolRotate: null, // 图形旋转控制 + + large: false, + // Available when large is true + largeThreshold: 2000, + // cursor: null, + + // label: { + // show: false + // distance: 5, + // formatter: 标签文本格式器,同Tooltip.formatter,不支持异步回调 + // position: 默认自适应,水平布局为'top',垂直布局为'right',可选为 + // 'inside'|'left'|'right'|'top'|'bottom' + // 默认使用全局文本样式,详见TEXTSTYLE + // }, + itemStyle: { + opacity: 0.8 + // color: 各异 + } + + // progressive: null + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* global Float32Array */ + +// TODO Batch by color + +var BOOST_SIZE_THRESHOLD = 4; + +var LargeSymbolPath = extendShape({ + + shape: { + points: null + }, + + symbolProxy: null, + + buildPath: function (path, shape) { + var points = shape.points; + var size = shape.size; + + var symbolProxy = this.symbolProxy; + var symbolProxyShape = symbolProxy.shape; + var ctx = path.getContext ? path.getContext() : path; + var canBoost = ctx && size[0] < BOOST_SIZE_THRESHOLD; + + // Do draw in afterBrush. + if (canBoost) { + return; + } + + for (var i = 0; i < points.length;) { + var x = points[i++]; + var y = points[i++]; + + if (isNaN(x) || isNaN(y)) { + continue; + } + + symbolProxyShape.x = x - size[0] / 2; + symbolProxyShape.y = y - size[1] / 2; + symbolProxyShape.width = size[0]; + symbolProxyShape.height = size[1]; + + symbolProxy.buildPath(path, symbolProxyShape, true); + } + }, + + afterBrush: function (ctx) { + var shape = this.shape; + var points = shape.points; + var size = shape.size; + var canBoost = size[0] < BOOST_SIZE_THRESHOLD; + + if (!canBoost) { + return; + } + + this.setTransform(ctx); + // PENDING If style or other canvas status changed? + for (var i = 0; i < points.length;) { + var x = points[i++]; + var y = points[i++]; + if (isNaN(x) || isNaN(y)) { + continue; + } + // fillRect is faster than building a rect path and draw. + // And it support light globalCompositeOperation. + ctx.fillRect( + x - size[0] / 2, y - size[1] / 2, + size[0], size[1] + ); + } + + this.restoreTransform(ctx); + }, + + findDataIndex: function (x, y) { + // TODO ??? + // Consider transform + + var shape = this.shape; + var points = shape.points; + var size = shape.size; + + var w = Math.max(size[0], 4); + var h = Math.max(size[1], 4); + + // Not consider transform + // Treat each element as a rect + // top down traverse + for (var idx = points.length / 2 - 1; idx >= 0; idx--) { + var i = idx * 2; + var x0 = points[i] - w / 2; + var y0 = points[i + 1] - h / 2; + if (x >= x0 && y >= y0 && x <= x0 + w && y <= y0 + h) { + return idx; + } + } + + return -1; + } +}); + +function LargeSymbolDraw() { + this.group = new Group(); +} + +var largeSymbolProto = LargeSymbolDraw.prototype; + +largeSymbolProto.isPersistent = function () { + return !this._incremental; +}; + +/** + * Update symbols draw by new data + * @param {module:echarts/data/List} data + */ +largeSymbolProto.updateData = function (data) { + this.group.removeAll(); + var symbolEl = new LargeSymbolPath({ + rectHover: true, + cursor: 'default' + }); + + symbolEl.setShape({ + points: data.getLayout('symbolPoints') + }); + this._setCommon(symbolEl, data); + this.group.add(symbolEl); + + this._incremental = null; +}; + +largeSymbolProto.updateLayout = function (data) { + if (this._incremental) { + return; + } + + var points = data.getLayout('symbolPoints'); + this.group.eachChild(function (child) { + if (child.startIndex != null) { + var len = (child.endIndex - child.startIndex) * 2; + var byteOffset = child.startIndex * 4 * 2; + points = new Float32Array(points.buffer, byteOffset, len); + } + child.setShape('points', points); + }); +}; + +largeSymbolProto.incrementalPrepareUpdate = function (data) { + this.group.removeAll(); + + this._clearIncremental(); + // Only use incremental displayables when data amount is larger than 2 million. + // PENDING Incremental data? + if (data.count() > 2e6) { + if (!this._incremental) { + this._incremental = new IncrementalDisplayble({ + silent: true + }); + } + this.group.add(this._incremental); + } + else { + this._incremental = null; + } +}; + +largeSymbolProto.incrementalUpdate = function (taskParams, data) { + var symbolEl; + if (this._incremental) { + symbolEl = new LargeSymbolPath(); + this._incremental.addDisplayable(symbolEl, true); + } + else { + symbolEl = new LargeSymbolPath({ + rectHover: true, + cursor: 'default', + startIndex: taskParams.start, + endIndex: taskParams.end + }); + symbolEl.incremental = true; + this.group.add(symbolEl); + } + + symbolEl.setShape({ + points: data.getLayout('symbolPoints') + }); + this._setCommon(symbolEl, data, !!this._incremental); +}; + +largeSymbolProto._setCommon = function (symbolEl, data, isIncremental) { + var hostModel = data.hostModel; + + // TODO + // if (data.hasItemVisual.symbolSize) { + // // TODO typed array? + // symbolEl.setShape('sizes', data.mapArray( + // function (idx) { + // var size = data.getItemVisual(idx, 'symbolSize'); + // return (size instanceof Array) ? size : [size, size]; + // } + // )); + // } + // else { + var size = data.getVisual('symbolSize'); + symbolEl.setShape('size', (size instanceof Array) ? size : [size, size]); + // } + + // Create symbolProxy to build path for each data + symbolEl.symbolProxy = createSymbol( + data.getVisual('symbol'), 0, 0, 0, 0 + ); + // Use symbolProxy setColor method + symbolEl.setColor = symbolEl.symbolProxy.setColor; + + var extrudeShadow = symbolEl.shape.size[0] < BOOST_SIZE_THRESHOLD; + symbolEl.useStyle( + // Draw shadow when doing fillRect is extremely slow. + hostModel.getModel('itemStyle').getItemStyle(extrudeShadow ? ['color', 'shadowBlur', 'shadowColor'] : ['color']) + ); + + var visualColor = data.getVisual('color'); + if (visualColor) { + symbolEl.setColor(visualColor); + } + + if (!isIncremental) { + // Enable tooltip + // PENDING May have performance issue when path is extremely large + symbolEl.seriesIndex = hostModel.seriesIndex; + symbolEl.on('mousemove', function (e) { + symbolEl.dataIndex = null; + var dataIndex = symbolEl.findDataIndex(e.offsetX, e.offsetY); + if (dataIndex >= 0) { + // Provide dataIndex for tooltip + symbolEl.dataIndex = dataIndex + (symbolEl.startIndex || 0); + } + }); + } +}; + +largeSymbolProto.remove = function () { + this._clearIncremental(); + this._incremental = null; + this.group.removeAll(); +}; + +largeSymbolProto._clearIncremental = function () { + var incremental = this._incremental; + if (incremental) { + incremental.clearDisplaybles(); + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +extendChartView({ + + type: 'scatter', + + render: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + + var symbolDraw = this._updateSymbolDraw(data, seriesModel); + symbolDraw.updateData(data); + + this._finished = true; + }, + + incrementalPrepareRender: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + var symbolDraw = this._updateSymbolDraw(data, seriesModel); + + symbolDraw.incrementalPrepareUpdate(data); + + this._finished = false; + }, + + incrementalRender: function (taskParams, seriesModel, ecModel) { + this._symbolDraw.incrementalUpdate(taskParams, seriesModel.getData()); + + this._finished = taskParams.end === seriesModel.getData().count(); + }, + + updateTransform: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + // Must mark group dirty and make sure the incremental layer will be cleared + // PENDING + this.group.dirty(); + + if (!this._finished || data.count() > 1e4 || !this._symbolDraw.isPersistent()) { + return { + update: true + }; + } + else { + var res = pointsLayout().reset(seriesModel); + if (res.progress) { + res.progress({ start: 0, end: data.count() }, data); + } + + this._symbolDraw.updateLayout(data); + } + }, + + _updateSymbolDraw: function (data, seriesModel) { + var symbolDraw = this._symbolDraw; + var pipelineContext = seriesModel.pipelineContext; + var isLargeDraw = pipelineContext.large; + + if (!symbolDraw || isLargeDraw !== this._isLargeDraw) { + symbolDraw && symbolDraw.remove(); + symbolDraw = this._symbolDraw = isLargeDraw + ? new LargeSymbolDraw() + : new SymbolDraw(); + this._isLargeDraw = isLargeDraw; + this.group.removeAll(); + } + + this.group.add(symbolDraw.group); + + return symbolDraw; + }, + + remove: function (ecModel, api) { + this._symbolDraw && this._symbolDraw.remove(true); + this._symbolDraw = null; + }, + + dispose: function () {} +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// import * as zrUtil from 'zrender/src/core/util'; + +// In case developer forget to include grid component +registerVisual(visualSymbol('scatter', 'circle')); +registerLayout(pointsLayout('scatter')); + +// echarts.registerProcessor(function (ecModel, api) { +// ecModel.eachSeriesByType('scatter', function (seriesModel) { +// var data = seriesModel.getData(); +// var coordSys = seriesModel.coordinateSystem; +// if (coordSys.type !== 'geo') { +// return; +// } +// var startPt = coordSys.pointToData([0, 0]); +// var endPt = coordSys.pointToData([api.getWidth(), api.getHeight()]); + +// var dims = zrUtil.map(coordSys.dimensions, function (dim) { +// return data.mapDimension(dim); +// }); +// var range = {}; +// range[dims[0]] = [Math.min(startPt[0], endPt[0]), Math.max(startPt[0], endPt[0])]; +// range[dims[1]] = [Math.min(startPt[1], endPt[1]), Math.max(startPt[1], endPt[1])]; + +// data.selectRange(range); +// }); +// }); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function IndicatorAxis(dim, scale, radiusExtent) { + Axis.call(this, dim, scale, radiusExtent); + + /** + * Axis type + * - 'category' + * - 'value' + * - 'time' + * - 'log' + * @type {string} + */ + this.type = 'value'; + + this.angle = 0; + + /** + * Indicator name + * @type {string} + */ + this.name = ''; + /** + * @type {module:echarts/model/Model} + */ + this.model; +} + +inherits(IndicatorAxis, Axis); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// TODO clockwise + +function Radar(radarModel, ecModel, api) { + + this._model = radarModel; + /** + * Radar dimensions + * @type {Array.} + */ + this.dimensions = []; + + this._indicatorAxes = map(radarModel.getIndicatorModels(), function (indicatorModel, idx) { + var dim = 'indicator_' + idx; + var indicatorAxis = new IndicatorAxis(dim, new IntervalScale()); + indicatorAxis.name = indicatorModel.get('name'); + // Inject model and axis + indicatorAxis.model = indicatorModel; + indicatorModel.axis = indicatorAxis; + this.dimensions.push(dim); + return indicatorAxis; + }, this); + + this.resize(radarModel, api); + + /** + * @type {number} + * @readOnly + */ + this.cx; + /** + * @type {number} + * @readOnly + */ + this.cy; + /** + * @type {number} + * @readOnly + */ + this.r; + /** + * @type {number} + * @readOnly + */ + this.r0; + /** + * @type {number} + * @readOnly + */ + this.startAngle; +} + +Radar.prototype.getIndicatorAxes = function () { + return this._indicatorAxes; +}; + +Radar.prototype.dataToPoint = function (value, indicatorIndex) { + var indicatorAxis = this._indicatorAxes[indicatorIndex]; + + return this.coordToPoint(indicatorAxis.dataToCoord(value), indicatorIndex); +}; + +Radar.prototype.coordToPoint = function (coord, indicatorIndex) { + var indicatorAxis = this._indicatorAxes[indicatorIndex]; + var angle = indicatorAxis.angle; + var x = this.cx + coord * Math.cos(angle); + var y = this.cy - coord * Math.sin(angle); + return [x, y]; +}; + +Radar.prototype.pointToData = function (pt) { + var dx = pt[0] - this.cx; + var dy = pt[1] - this.cy; + var radius = Math.sqrt(dx * dx + dy * dy); + dx /= radius; + dy /= radius; + + var radian = Math.atan2(-dy, dx); + + // Find the closest angle + // FIXME index can calculated directly + var minRadianDiff = Infinity; + var closestAxis; + var closestAxisIdx = -1; + for (var i = 0; i < this._indicatorAxes.length; i++) { + var indicatorAxis = this._indicatorAxes[i]; + var diff = Math.abs(radian - indicatorAxis.angle); + if (diff < minRadianDiff) { + closestAxis = indicatorAxis; + closestAxisIdx = i; + minRadianDiff = diff; + } + } + + return [closestAxisIdx, +(closestAxis && closestAxis.coodToData(radius))]; +}; + +Radar.prototype.resize = function (radarModel, api) { + var center = radarModel.get('center'); + var viewWidth = api.getWidth(); + var viewHeight = api.getHeight(); + var viewSize = Math.min(viewWidth, viewHeight) / 2; + this.cx = parsePercent$1(center[0], viewWidth); + this.cy = parsePercent$1(center[1], viewHeight); + + this.startAngle = radarModel.get('startAngle') * Math.PI / 180; + + // radius may be single value like `20`, `'80%'`, or array like `[10, '80%']` + var radius = radarModel.get('radius'); + if (typeof radius === 'string' || typeof radius === 'number') { + radius = [0, radius]; + } + this.r0 = parsePercent$1(radius[0], viewSize); + this.r = parsePercent$1(radius[1], viewSize); + + each$1(this._indicatorAxes, function (indicatorAxis, idx) { + indicatorAxis.setExtent(this.r0, this.r); + var angle = (this.startAngle + idx * Math.PI * 2 / this._indicatorAxes.length); + // Normalize to [-PI, PI] + angle = Math.atan2(Math.sin(angle), Math.cos(angle)); + indicatorAxis.angle = angle; + }, this); +}; + +Radar.prototype.update = function (ecModel, api) { + var indicatorAxes = this._indicatorAxes; + var radarModel = this._model; + each$1(indicatorAxes, function (indicatorAxis) { + indicatorAxis.scale.setExtent(Infinity, -Infinity); + }); + ecModel.eachSeriesByType('radar', function (radarSeries, idx) { + if (radarSeries.get('coordinateSystem') !== 'radar' + || ecModel.getComponent('radar', radarSeries.get('radarIndex')) !== radarModel + ) { + return; + } + var data = radarSeries.getData(); + each$1(indicatorAxes, function (indicatorAxis) { + indicatorAxis.scale.unionExtentFromData(data, data.mapDimension(indicatorAxis.dim)); + }); + }, this); + + var splitNumber = radarModel.get('splitNumber'); + + function increaseInterval(interval) { + var exp10 = Math.pow(10, Math.floor(Math.log(interval) / Math.LN10)); + // Increase interval + var f = interval / exp10; + if (f === 2) { + f = 5; + } + else { // f is 2 or 5 + f *= 2; + } + return f * exp10; + } + // Force all the axis fixing the maxSplitNumber. + each$1(indicatorAxes, function (indicatorAxis, idx) { + var rawExtent = getScaleExtent(indicatorAxis.scale, indicatorAxis.model); + niceScaleExtent(indicatorAxis.scale, indicatorAxis.model); + + var axisModel = indicatorAxis.model; + var scale = indicatorAxis.scale; + var fixedMin = axisModel.getMin(); + var fixedMax = axisModel.getMax(); + var interval = scale.getInterval(); + + if (fixedMin != null && fixedMax != null) { + // User set min, max, divide to get new interval + scale.setExtent(+fixedMin, +fixedMax); + scale.setInterval( + (fixedMax - fixedMin) / splitNumber + ); + } + else if (fixedMin != null) { + var max; + // User set min, expand extent on the other side + do { + max = fixedMin + interval * splitNumber; + scale.setExtent(+fixedMin, max); + // Interval must been set after extent + // FIXME + scale.setInterval(interval); + + interval = increaseInterval(interval); + } while (max < rawExtent[1] && isFinite(max) && isFinite(rawExtent[1])); + } + else if (fixedMax != null) { + var min; + // User set min, expand extent on the other side + do { + min = fixedMax - interval * splitNumber; + scale.setExtent(min, +fixedMax); + scale.setInterval(interval); + interval = increaseInterval(interval); + } while (min > rawExtent[0] && isFinite(min) && isFinite(rawExtent[0])); + } + else { + var nicedSplitNumber = scale.getTicks().length - 1; + if (nicedSplitNumber > splitNumber) { + interval = increaseInterval(interval); + } + // PENDING + var center = Math.round((rawExtent[0] + rawExtent[1]) / 2 / interval) * interval; + var halfSplitNumber = Math.round(splitNumber / 2); + scale.setExtent( + round$1(center - halfSplitNumber * interval), + round$1(center + (splitNumber - halfSplitNumber) * interval) + ); + scale.setInterval(interval); + } + }); +}; + +/** + * Radar dimensions is based on the data + * @type {Array} + */ +Radar.dimensions = []; + +Radar.create = function (ecModel, api) { + var radarList = []; + ecModel.eachComponent('radar', function (radarModel) { + var radar = new Radar(radarModel, ecModel, api); + radarList.push(radar); + radarModel.coordinateSystem = radar; + }); + ecModel.eachSeriesByType('radar', function (radarSeries) { + if (radarSeries.get('coordinateSystem') === 'radar') { + // Inject coordinate system + radarSeries.coordinateSystem = radarList[radarSeries.get('radarIndex') || 0]; + } + }); + return radarList; +}; + +CoordinateSystemManager.register('radar', Radar); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var valueAxisDefault = axisDefault.valueAxis; + +function defaultsShow(opt, show) { + return defaults({ + show: show + }, opt); +} + +var RadarModel = extendComponentModel({ + + type: 'radar', + + optionUpdated: function () { + var boundaryGap = this.get('boundaryGap'); + var splitNumber = this.get('splitNumber'); + var scale = this.get('scale'); + var axisLine = this.get('axisLine'); + var axisTick = this.get('axisTick'); + var axisLabel = this.get('axisLabel'); + var nameTextStyle = this.get('name'); + var showName = this.get('name.show'); + var nameFormatter = this.get('name.formatter'); + var nameGap = this.get('nameGap'); + var triggerEvent = this.get('triggerEvent'); + + var indicatorModels = map(this.get('indicator') || [], function (indicatorOpt) { + // PENDING + if (indicatorOpt.max != null && indicatorOpt.max > 0 && !indicatorOpt.min) { + indicatorOpt.min = 0; + } + else if (indicatorOpt.min != null && indicatorOpt.min < 0 && !indicatorOpt.max) { + indicatorOpt.max = 0; + } + var iNameTextStyle = nameTextStyle; + if (indicatorOpt.color != null) { + iNameTextStyle = defaults({color: indicatorOpt.color}, nameTextStyle); + } + // Use same configuration + indicatorOpt = merge(clone(indicatorOpt), { + boundaryGap: boundaryGap, + splitNumber: splitNumber, + scale: scale, + axisLine: axisLine, + axisTick: axisTick, + axisLabel: axisLabel, + // Competitable with 2 and use text + name: indicatorOpt.text, + nameLocation: 'end', + nameGap: nameGap, + // min: 0, + nameTextStyle: iNameTextStyle, + triggerEvent: triggerEvent + }, false); + if (!showName) { + indicatorOpt.name = ''; + } + if (typeof nameFormatter === 'string') { + var indName = indicatorOpt.name; + indicatorOpt.name = nameFormatter.replace('{value}', indName != null ? indName : ''); + } + else if (typeof nameFormatter === 'function') { + indicatorOpt.name = nameFormatter( + indicatorOpt.name, indicatorOpt + ); + } + var model = extend( + new Model(indicatorOpt, null, this.ecModel), + axisModelCommonMixin + ); + + // For triggerEvent. + model.mainType = 'radar'; + model.componentIndex = this.componentIndex; + + return model; + }, this); + + this.getIndicatorModels = function () { + return indicatorModels; + }; + }, + + defaultOption: { + + zlevel: 0, + + z: 0, + + center: ['50%', '50%'], + + radius: '75%', + + startAngle: 90, + + name: { + show: true + // formatter: null + // textStyle: {} + }, + + boundaryGap: [0, 0], + + splitNumber: 5, + + nameGap: 15, + + scale: false, + + // Polygon or circle + shape: 'polygon', + + axisLine: merge( + { + lineStyle: { + color: '#bbb' + } + }, + valueAxisDefault.axisLine + ), + axisLabel: defaultsShow(valueAxisDefault.axisLabel, false), + axisTick: defaultsShow(valueAxisDefault.axisTick, false), + splitLine: defaultsShow(valueAxisDefault.splitLine, true), + splitArea: defaultsShow(valueAxisDefault.splitArea, true), + + // {text, min, max} + indicator: [] + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var axisBuilderAttrs$1 = [ + 'axisLine', 'axisTickLabel', 'axisName' +]; + +extendComponentView({ + + type: 'radar', + + render: function (radarModel, ecModel, api) { + var group = this.group; + group.removeAll(); + + this._buildAxes(radarModel); + this._buildSplitLineAndArea(radarModel); + }, + + _buildAxes: function (radarModel) { + var radar = radarModel.coordinateSystem; + var indicatorAxes = radar.getIndicatorAxes(); + var axisBuilders = map(indicatorAxes, function (indicatorAxis) { + var axisBuilder = new AxisBuilder(indicatorAxis.model, { + position: [radar.cx, radar.cy], + rotation: indicatorAxis.angle, + labelDirection: -1, + tickDirection: -1, + nameDirection: 1 + }); + return axisBuilder; + }); + + each$1(axisBuilders, function (axisBuilder) { + each$1(axisBuilderAttrs$1, axisBuilder.add, axisBuilder); + this.group.add(axisBuilder.getGroup()); + }, this); + }, + + _buildSplitLineAndArea: function (radarModel) { + var radar = radarModel.coordinateSystem; + var indicatorAxes = radar.getIndicatorAxes(); + if (!indicatorAxes.length) { + return; + } + var shape = radarModel.get('shape'); + var splitLineModel = radarModel.getModel('splitLine'); + var splitAreaModel = radarModel.getModel('splitArea'); + var lineStyleModel = splitLineModel.getModel('lineStyle'); + var areaStyleModel = splitAreaModel.getModel('areaStyle'); + + var showSplitLine = splitLineModel.get('show'); + var showSplitArea = splitAreaModel.get('show'); + var splitLineColors = lineStyleModel.get('color'); + var splitAreaColors = areaStyleModel.get('color'); + + splitLineColors = isArray(splitLineColors) ? splitLineColors : [splitLineColors]; + splitAreaColors = isArray(splitAreaColors) ? splitAreaColors : [splitAreaColors]; + + var splitLines = []; + var splitAreas = []; + + function getColorIndex(areaOrLine, areaOrLineColorList, idx) { + var colorIndex = idx % areaOrLineColorList.length; + areaOrLine[colorIndex] = areaOrLine[colorIndex] || []; + return colorIndex; + } + + if (shape === 'circle') { + var ticksRadius = indicatorAxes[0].getTicksCoords(); + var cx = radar.cx; + var cy = radar.cy; + for (var i = 0; i < ticksRadius.length; i++) { + if (showSplitLine) { + var colorIndex = getColorIndex(splitLines, splitLineColors, i); + splitLines[colorIndex].push(new Circle({ + shape: { + cx: cx, + cy: cy, + r: ticksRadius[i].coord + } + })); + } + if (showSplitArea && i < ticksRadius.length - 1) { + var colorIndex = getColorIndex(splitAreas, splitAreaColors, i); + splitAreas[colorIndex].push(new Ring({ + shape: { + cx: cx, + cy: cy, + r0: ticksRadius[i].coord, + r: ticksRadius[i + 1].coord + } + })); + } + } + } + // Polyyon + else { + var realSplitNumber; + var axesTicksPoints = map(indicatorAxes, function (indicatorAxis, idx) { + var ticksCoords = indicatorAxis.getTicksCoords(); + realSplitNumber = realSplitNumber == null + ? ticksCoords.length - 1 + : Math.min(ticksCoords.length - 1, realSplitNumber); + return map(ticksCoords, function (tickCoord) { + return radar.coordToPoint(tickCoord.coord, idx); + }); + }); + + var prevPoints = []; + for (var i = 0; i <= realSplitNumber; i++) { + var points = []; + for (var j = 0; j < indicatorAxes.length; j++) { + points.push(axesTicksPoints[j][i]); + } + // Close + if (points[0]) { + points.push(points[0].slice()); + } + else { + if (__DEV__) { + console.error('Can\'t draw value axis ' + i); + } + } + + if (showSplitLine) { + var colorIndex = getColorIndex(splitLines, splitLineColors, i); + splitLines[colorIndex].push(new Polyline({ + shape: { + points: points + } + })); + } + if (showSplitArea && prevPoints) { + var colorIndex = getColorIndex(splitAreas, splitAreaColors, i - 1); + splitAreas[colorIndex].push(new Polygon({ + shape: { + points: points.concat(prevPoints) + } + })); + } + prevPoints = points.slice().reverse(); + } + } + + var lineStyle = lineStyleModel.getLineStyle(); + var areaStyle = areaStyleModel.getAreaStyle(); + // Add splitArea before splitLine + each$1(splitAreas, function (splitAreas, idx) { + this.group.add(mergePath( + splitAreas, { + style: defaults({ + stroke: 'none', + fill: splitAreaColors[idx % splitAreaColors.length] + }, areaStyle), + silent: true + } + )); + }, this); + + each$1(splitLines, function (splitLines, idx) { + this.group.add(mergePath( + splitLines, { + style: defaults({ + fill: 'none', + stroke: splitLineColors[idx % splitLineColors.length] + }, lineStyle), + silent: true + } + )); + }, this); + + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var RadarSeries = SeriesModel.extend({ + + type: 'series.radar', + + dependencies: ['radar'], + + + // Overwrite + init: function (option) { + RadarSeries.superApply(this, 'init', arguments); + + // Enable legend selection for each data item + // Use a function instead of direct access because data reference may changed + this.legendDataProvider = function () { + return this.getRawData(); + }; + }, + + getInitialData: function (option, ecModel) { + return createListSimply(this, { + generateCoord: 'indicator_', + generateCoordCount: Infinity + }); + }, + + formatTooltip: function (dataIndex) { + var data = this.getData(); + var coordSys = this.coordinateSystem; + var indicatorAxes = coordSys.getIndicatorAxes(); + var name = this.getData().getName(dataIndex); + return encodeHTML(name === '' ? this.name : name) + '
    ' + + map(indicatorAxes, function (axis, idx) { + var val = data.get(data.mapDimension(axis.dim), dataIndex); + return encodeHTML(axis.name + ' : ' + val); + }).join('
    '); + }, + + defaultOption: { + zlevel: 0, + z: 2, + coordinateSystem: 'radar', + legendHoverLink: true, + radarIndex: 0, + lineStyle: { + width: 2, + type: 'solid' + }, + label: { + position: 'top' + }, + // areaStyle: { + // }, + // itemStyle: {} + symbol: 'emptyCircle', + symbolSize: 4 + // symbolRotate: null + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function normalizeSymbolSize(symbolSize) { + if (!isArray(symbolSize)) { + symbolSize = [+symbolSize, +symbolSize]; + } + return symbolSize; +} + +extendChartView({ + + type: 'radar', + + render: function (seriesModel, ecModel, api) { + var polar = seriesModel.coordinateSystem; + var group = this.group; + + var data = seriesModel.getData(); + var oldData = this._data; + + function createSymbol$$1(data, idx) { + var symbolType = data.getItemVisual(idx, 'symbol') || 'circle'; + var color = data.getItemVisual(idx, 'color'); + if (symbolType === 'none') { + return; + } + var symbolSize = normalizeSymbolSize( + data.getItemVisual(idx, 'symbolSize') + ); + var symbolPath = createSymbol( + symbolType, -1, -1, 2, 2, color + ); + symbolPath.attr({ + style: { + strokeNoScale: true + }, + z2: 100, + scale: [symbolSize[0] / 2, symbolSize[1] / 2] + }); + return symbolPath; + } + + function updateSymbols(oldPoints, newPoints, symbolGroup, data, idx, isInit) { + // Simply rerender all + symbolGroup.removeAll(); + for (var i = 0; i < newPoints.length - 1; i++) { + var symbolPath = createSymbol$$1(data, idx); + if (symbolPath) { + symbolPath.__dimIdx = i; + if (oldPoints[i]) { + symbolPath.attr('position', oldPoints[i]); + graphic[isInit ? 'initProps' : 'updateProps']( + symbolPath, { + position: newPoints[i] + }, seriesModel, idx + ); + } + else { + symbolPath.attr('position', newPoints[i]); + } + symbolGroup.add(symbolPath); + } + } + } + + function getInitialPoints(points) { + return map(points, function (pt) { + return [polar.cx, polar.cy]; + }); + } + data.diff(oldData) + .add(function (idx) { + var points = data.getItemLayout(idx); + if (!points) { + return; + } + var polygon = new Polygon(); + var polyline = new Polyline(); + var target = { + shape: { + points: points + } + }; + + polygon.shape.points = getInitialPoints(points); + polyline.shape.points = getInitialPoints(points); + initProps(polygon, target, seriesModel, idx); + initProps(polyline, target, seriesModel, idx); + + var itemGroup = new Group(); + var symbolGroup = new Group(); + itemGroup.add(polyline); + itemGroup.add(polygon); + itemGroup.add(symbolGroup); + + updateSymbols( + polyline.shape.points, points, symbolGroup, data, idx, true + ); + + data.setItemGraphicEl(idx, itemGroup); + }) + .update(function (newIdx, oldIdx) { + var itemGroup = oldData.getItemGraphicEl(oldIdx); + var polyline = itemGroup.childAt(0); + var polygon = itemGroup.childAt(1); + var symbolGroup = itemGroup.childAt(2); + var target = { + shape: { + points: data.getItemLayout(newIdx) + } + }; + + if (!target.shape.points) { + return; + } + updateSymbols( + polyline.shape.points, target.shape.points, symbolGroup, data, newIdx, false + ); + + updateProps(polyline, target, seriesModel); + updateProps(polygon, target, seriesModel); + + data.setItemGraphicEl(newIdx, itemGroup); + }) + .remove(function (idx) { + group.remove(oldData.getItemGraphicEl(idx)); + }) + .execute(); + + data.eachItemGraphicEl(function (itemGroup, idx) { + var itemModel = data.getItemModel(idx); + var polyline = itemGroup.childAt(0); + var polygon = itemGroup.childAt(1); + var symbolGroup = itemGroup.childAt(2); + var color = data.getItemVisual(idx, 'color'); + + group.add(itemGroup); + + polyline.useStyle( + defaults( + itemModel.getModel('lineStyle').getLineStyle(), + { + fill: 'none', + stroke: color + } + ) + ); + polyline.hoverStyle = itemModel.getModel('emphasis.lineStyle').getLineStyle(); + + var areaStyleModel = itemModel.getModel('areaStyle'); + var hoverAreaStyleModel = itemModel.getModel('emphasis.areaStyle'); + var polygonIgnore = areaStyleModel.isEmpty() && areaStyleModel.parentModel.isEmpty(); + var hoverPolygonIgnore = hoverAreaStyleModel.isEmpty() && hoverAreaStyleModel.parentModel.isEmpty(); + + hoverPolygonIgnore = hoverPolygonIgnore && polygonIgnore; + polygon.ignore = polygonIgnore; + + polygon.useStyle( + defaults( + areaStyleModel.getAreaStyle(), + { + fill: color, + opacity: 0.7 + } + ) + ); + polygon.hoverStyle = hoverAreaStyleModel.getAreaStyle(); + + var itemStyle = itemModel.getModel('itemStyle').getItemStyle(['color']); + var itemHoverStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle(); + var labelModel = itemModel.getModel('label'); + var labelHoverModel = itemModel.getModel('emphasis.label'); + symbolGroup.eachChild(function (symbolPath) { + symbolPath.setStyle(itemStyle); + symbolPath.hoverStyle = clone(itemHoverStyle); + var defaultText = data.get(data.dimensions[symbolPath.__dimIdx], idx); + (defaultText == null || isNaN(defaultText)) && (defaultText = ''); + + setLabelStyle( + symbolPath.style, symbolPath.hoverStyle, labelModel, labelHoverModel, + { + labelFetcher: data.hostModel, + labelDataIndex: idx, + labelDimIndex: symbolPath.__dimIdx, + defaultText: defaultText, + autoColor: color, + isRectText: true + } + ); + }); + + itemGroup.highDownOnUpdate = function (fromState, toState) { + polygon.attr('ignore', toState === 'emphasis' ? hoverPolygonIgnore : polygonIgnore); + }; + setHoverStyle(itemGroup); + }); + + this._data = data; + }, + + remove: function () { + this.group.removeAll(); + this._data = null; + }, + + dispose: function () {} +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var radarLayout = function (ecModel) { + ecModel.eachSeriesByType('radar', function (seriesModel) { + var data = seriesModel.getData(); + var points = []; + var coordSys = seriesModel.coordinateSystem; + if (!coordSys) { + return; + } + + var axes = coordSys.getIndicatorAxes(); + + each$1(axes, function (axis, axisIndex) { + data.each(data.mapDimension(axes[axisIndex].dim), function (val, dataIndex) { + points[dataIndex] = points[dataIndex] || []; + var point = coordSys.dataToPoint(val, axisIndex); + points[dataIndex][axisIndex] = isValidPoint(point) + ? point : getValueMissingPoint(coordSys); + }); + }); + + // Close polygon + data.each(function (idx) { + // TODO + // Is it appropriate to connect to the next data when some data is missing? + // Or, should trade it like `connectNull` in line chart? + var firstPoint = find(points[idx], function (point) { + return isValidPoint(point); + }) || getValueMissingPoint(coordSys); + + // Copy the first actual point to the end of the array + points[idx].push(firstPoint.slice()); + data.setItemLayout(idx, points[idx]); + }); + }); +}; + +function isValidPoint(point) { + return !isNaN(point[0]) && !isNaN(point[1]); +} + +function getValueMissingPoint(coordSys) { + // It is error-prone to input [NaN, NaN] into polygon, polygon. + // (probably cause problem when refreshing or animating) + return [coordSys.cx, coordSys.cy]; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Backward compat for radar chart in 2 +var backwardCompat$1 = function (option) { + var polarOptArr = option.polar; + if (polarOptArr) { + if (!isArray(polarOptArr)) { + polarOptArr = [polarOptArr]; + } + var polarNotRadar = []; + each$1(polarOptArr, function (polarOpt, idx) { + if (polarOpt.indicator) { + if (polarOpt.type && !polarOpt.shape) { + polarOpt.shape = polarOpt.type; + } + option.radar = option.radar || []; + if (!isArray(option.radar)) { + option.radar = [option.radar]; + } + option.radar.push(polarOpt); + } + else { + polarNotRadar.push(polarOpt); + } + }); + option.polar = polarNotRadar; + } + each$1(option.series, function (seriesOpt) { + if (seriesOpt && seriesOpt.type === 'radar' && seriesOpt.polarIndex) { + seriesOpt.radarIndex = seriesOpt.polarIndex; + } + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +// Must use radar component +registerVisual(dataColor('radar')); +registerVisual(visualSymbol('radar', 'circle')); +registerLayout(radarLayout); +registerProcessor(dataFilter('radar')); +registerPreprocessor(backwardCompat$1); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Fix for 南海诸岛 + +var geoCoord = [126, 25]; + +var points$1 = [ + [[0, 3.5], [7, 11.2], [15, 11.9], [30, 7], [42, 0.7], [52, 0.7], + [56, 7.7], [59, 0.7], [64, 0.7], [64, 0], [5, 0], [0, 3.5]], + [[13, 16.1], [19, 14.7], [16, 21.7], [11, 23.1], [13, 16.1]], + [[12, 32.2], [14, 38.5], [15, 38.5], [13, 32.2], [12, 32.2]], + [[16, 47.6], [12, 53.2], [13, 53.2], [18, 47.6], [16, 47.6]], + [[6, 64.4], [8, 70], [9, 70], [8, 64.4], [6, 64.4]], + [[23, 82.6], [29, 79.8], [30, 79.8], [25, 82.6], [23, 82.6]], + [[37, 70.7], [43, 62.3], [44, 62.3], [39, 70.7], [37, 70.7]], + [[48, 51.1], [51, 45.5], [53, 45.5], [50, 51.1], [48, 51.1]], + [[51, 35], [51, 28.7], [53, 28.7], [53, 35], [51, 35]], + [[52, 22.4], [55, 17.5], [56, 17.5], [53, 22.4], [52, 22.4]], + [[58, 12.6], [62, 7], [63, 7], [60, 12.6], [58, 12.6]], + [[0, 3.5], [0, 93.1], [64, 93.1], [64, 0], [63, 0], [63, 92.4], + [1, 92.4], [1, 3.5], [0, 3.5]] +]; + +for (var i$1 = 0; i$1 < points$1.length; i$1++) { + for (var k = 0; k < points$1[i$1].length; k++) { + points$1[i$1][k][0] /= 10.5; + points$1[i$1][k][1] /= -10.5 / 0.75; + + points$1[i$1][k][0] += geoCoord[0]; + points$1[i$1][k][1] += geoCoord[1]; + } +} + +var fixNanhai = function (mapType, regions) { + if (mapType === 'china') { + regions.push(new Region( + '南海诸岛', + map(points$1, function (exterior) { + return { + type: 'polygon', + exterior: exterior + }; + }), geoCoord + )); + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var coordsOffsetMap = { + '南海诸岛': [32, 80], + // 全国 + '广东': [0, -10], + '香港': [10, 5], + '澳门': [-10, 10], + //'北京': [-10, 0], + '天津': [5, 5] +}; + +var fixTextCoord = function (mapType, region) { + if (mapType === 'china') { + var coordFix = coordsOffsetMap[region.name]; + if (coordFix) { + var cp = region.center; + cp[0] += coordFix[0] / 10.5; + cp[1] += -coordFix[1] / (10.5 / 0.75); + } + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var geoCoordMap = { + 'Russia': [100, 60], + 'United States': [-99, 38], + 'United States of America': [-99, 38] +}; + +var fixGeoCoord = function (mapType, region) { + if (mapType === 'world') { + var geoCoord = geoCoordMap[region.name]; + if (geoCoord) { + var cp = region.center; + cp[0] = geoCoord[0]; + cp[1] = geoCoord[1]; + } + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Fix for 钓鱼岛 + +// var Region = require('../Region'); +// var zrUtil = require('zrender/src/core/util'); + +// var geoCoord = [126, 25]; + +var points$2 = [ + [ + [123.45165252685547, 25.73527164402261], + [123.49731445312499, 25.73527164402261], + [123.49731445312499, 25.750734064600884], + [123.45165252685547, 25.750734064600884], + [123.45165252685547, 25.73527164402261] + ] +]; + +var fixDiaoyuIsland = function (mapType, region) { + if (mapType === 'china' && region.name === '台湾') { + region.geometries.push({ + type: 'polygon', + exterior: points$2[0] + }); + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Built-in GEO fixer. +var inner$7 = makeInner(); + +var geoJSONLoader = { + + /** + * @param {string} mapName + * @param {Object} mapRecord {specialAreas, geoJSON} + * @return {Object} {regions, boundingRect} + */ + load: function (mapName, mapRecord) { + + var parsed = inner$7(mapRecord).parsed; + + if (parsed) { + return parsed; + } + + var specialAreas = mapRecord.specialAreas || {}; + var geoJSON = mapRecord.geoJSON; + var regions; + + // https://jsperf.com/try-catch-performance-overhead + try { + regions = geoJSON ? parseGeoJson$1(geoJSON) : []; + } + catch (e) { + throw new Error('Invalid geoJson format\n' + e.message); + } + + each$1(regions, function (region) { + var regionName = region.name; + + fixTextCoord(mapName, region); + fixGeoCoord(mapName, region); + fixDiaoyuIsland(mapName, region); + + // Some area like Alaska in USA map needs to be tansformed + // to look better + var specialArea = specialAreas[regionName]; + if (specialArea) { + region.transformTo( + specialArea.left, specialArea.top, specialArea.width, specialArea.height + ); + } + }); + + fixNanhai(mapName, regions); + + return (inner$7(mapRecord).parsed = { + regions: regions, + boundingRect: getBoundingRect$1(regions) + }); + } +}; + +function getBoundingRect$1(regions) { + var rect; + for (var i = 0; i < regions.length; i++) { + var regionRect = regions[i].getBoundingRect(); + rect = rect || regionRect.clone(); + rect.union(regionRect); + } + return rect; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var inner$8 = makeInner(); + +var geoSVGLoader = { + + /** + * @param {string} mapName + * @param {Object} mapRecord {specialAreas, geoJSON} + * @return {Object} {root, boundingRect} + */ + load: function (mapName, mapRecord) { + var originRoot = inner$8(mapRecord).originRoot; + if (originRoot) { + return { + root: originRoot, + boundingRect: inner$8(mapRecord).boundingRect + }; + } + + var graphic = buildGraphic(mapRecord); + + inner$8(mapRecord).originRoot = graphic.root; + inner$8(mapRecord).boundingRect = graphic.boundingRect; + + return graphic; + }, + + makeGraphic: function (mapName, mapRecord, hostKey) { + // For performance consideration (in large SVG), graphic only maked + // when necessary and reuse them according to hostKey. + var field = inner$8(mapRecord); + var rootMap = field.rootMap || (field.rootMap = createHashMap()); + + var root = rootMap.get(hostKey); + if (root) { + return root; + } + + var originRoot = field.originRoot; + var boundingRect = field.boundingRect; + + // For performance, if originRoot is not used by a view, + // assign it to a view, but not reproduce graphic elements. + if (!field.originRootHostKey) { + field.originRootHostKey = hostKey; + root = originRoot; + } + else { + root = buildGraphic(mapRecord, boundingRect).root; + } + + return rootMap.set(hostKey, root); + }, + + removeGraphic: function (mapName, mapRecord, hostKey) { + var field = inner$8(mapRecord); + var rootMap = field.rootMap; + rootMap && rootMap.removeKey(hostKey); + if (hostKey === field.originRootHostKey) { + field.originRootHostKey = null; + } + } +}; + +function buildGraphic(mapRecord, boundingRect) { + var svgXML = mapRecord.svgXML; + var result; + var root; + + try { + result = svgXML && parseSVG(svgXML, { + ignoreViewBox: true, + ignoreRootClip: true + }) || {}; + root = result.root; + assert$1(root != null); + } + catch (e) { + throw new Error('Invalid svg format\n' + e.message); + } + + var svgWidth = result.width; + var svgHeight = result.height; + var viewBoxRect = result.viewBoxRect; + + if (!boundingRect) { + boundingRect = (svgWidth == null || svgHeight == null) + // If svg width / height not specified, calculate + // bounding rect as the width / height + ? root.getBoundingRect() + : new BoundingRect(0, 0, 0, 0); + + if (svgWidth != null) { + boundingRect.width = svgWidth; + } + if (svgHeight != null) { + boundingRect.height = svgHeight; + } + } + + if (viewBoxRect) { + var viewBoxTransform = makeViewBoxTransform(viewBoxRect, boundingRect.width, boundingRect.height); + var elRoot = root; + root = new Group(); + root.add(elRoot); + elRoot.scale = viewBoxTransform.scale; + elRoot.position = viewBoxTransform.position; + } + + root.setClipPath(new Rect({ + shape: boundingRect.plain() + })); + + return { + root: root, + boundingRect: boundingRect + }; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var loaders = { + geoJSON: geoJSONLoader, + svg: geoSVGLoader +}; + +var geoSourceManager = { + + /** + * @param {string} mapName + * @param {Object} nameMap + * @return {Object} source {regions, regionsMap, nameCoordMap, boundingRect} + */ + load: function (mapName, nameMap) { + var regions = []; + var regionsMap = createHashMap(); + var nameCoordMap = createHashMap(); + var boundingRect; + var mapRecords = retrieveMap(mapName); + + each$1(mapRecords, function (record) { + var singleSource = loaders[record.type].load(mapName, record); + + each$1(singleSource.regions, function (region) { + var regionName = region.name; + + // Try use the alias in geoNameMap + if (nameMap && nameMap.hasOwnProperty(regionName)) { + region = region.cloneShallow(regionName = nameMap[regionName]); + } + + regions.push(region); + regionsMap.set(regionName, region); + nameCoordMap.set(regionName, region.center); + }); + + var rect = singleSource.boundingRect; + if (rect) { + boundingRect + ? boundingRect.union(rect) + : (boundingRect = rect.clone()); + } + }); + + return { + regions: regions, + regionsMap: regionsMap, + nameCoordMap: nameCoordMap, + // FIXME Always return new ? + boundingRect: boundingRect || new BoundingRect(0, 0, 0, 0) + }; + }, + + /** + * @param {string} mapName + * @param {string} hostKey For cache. + * @return {Array.} Roots. + */ + makeGraphic: makeInvoker('makeGraphic'), + + /** + * @param {string} mapName + * @param {string} hostKey For cache. + */ + removeGraphic: makeInvoker('removeGraphic') +}; + +function makeInvoker(methodName) { + return function (mapName, hostKey) { + var mapRecords = retrieveMap(mapName); + var results = []; + + each$1(mapRecords, function (record) { + var method = loaders[record.type][methodName]; + method && results.push(method(mapName, record, hostKey)); + }); + + return results; + }; +} + +function mapNotExistsError(mapName) { + if (__DEV__) { + console.error( + 'Map ' + mapName + ' not exists. The GeoJSON of the map must be provided.' + ); + } +} + +function retrieveMap(mapName) { + var mapRecords = mapDataStorage.retrieveMap(mapName) || []; + + if (__DEV__) { + if (!mapRecords.length) { + mapNotExistsError(mapName); + } + } + + return mapRecords; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var MapSeries = SeriesModel.extend({ + + type: 'series.map', + + dependencies: ['geo'], + + layoutMode: 'box', + + /** + * Only first map series of same mapType will drawMap + * @type {boolean} + */ + needsDrawMap: false, + + /** + * Group of all map series with same mapType + * @type {boolean} + */ + seriesGroup: [], + + getInitialData: function (option) { + var data = createListSimply(this, ['value']); + var valueDim = data.mapDimension('value'); + var dataNameMap = createHashMap(); + var selectTargetList = []; + var toAppendNames = []; + + for (var i = 0, len = data.count(); i < len; i++) { + var name = data.getName(i); + dataNameMap.set(name, true); + selectTargetList.push({ + name: name, + value: data.get(valueDim, i), + selected: retrieveRawAttr(data, i, 'selected') + }); + } + + var geoSource = geoSourceManager.load(this.getMapType(), this.option.nameMap); + each$1(geoSource.regions, function (region) { + var name = region.name; + if (!dataNameMap.get(name)) { + selectTargetList.push({name: name}); + toAppendNames.push(name); + } + }); + + this.updateSelectedMap(selectTargetList); + + // Complete data with missing regions. The consequent processes (like visual + // map and render) can not be performed without a "full data". For example, + // find `dataIndex` by name. + data.appendValues([], toAppendNames); + + return data; + }, + + /** + * If no host geo model, return null, which means using a + * inner exclusive geo model. + */ + getHostGeoModel: function () { + var geoIndex = this.option.geoIndex; + return geoIndex != null + ? this.dependentModels.geo[geoIndex] + : null; + }, + + getMapType: function () { + return (this.getHostGeoModel() || this).option.map; + }, + + // _fillOption: function (option, mapName) { + // Shallow clone + // option = zrUtil.extend({}, option); + + // option.data = geoCreator.getFilledRegions(option.data, mapName, option.nameMap); + + // return option; + // }, + + getRawValue: function (dataIndex) { + // Use value stored in data instead because it is calculated from multiple series + // FIXME Provide all value of multiple series ? + var data = this.getData(); + return data.get(data.mapDimension('value'), dataIndex); + }, + + /** + * Get model of region + * @param {string} name + * @return {module:echarts/model/Model} + */ + getRegionModel: function (regionName) { + var data = this.getData(); + return data.getItemModel(data.indexOfName(regionName)); + }, + + /** + * Map tooltip formatter + * + * @param {number} dataIndex + */ + formatTooltip: function (dataIndex) { + // FIXME orignalData and data is a bit confusing + var data = this.getData(); + var formattedValue = addCommas(this.getRawValue(dataIndex)); + var name = data.getName(dataIndex); + + var seriesGroup = this.seriesGroup; + var seriesNames = []; + for (var i = 0; i < seriesGroup.length; i++) { + var otherIndex = seriesGroup[i].originalData.indexOfName(name); + var valueDim = data.mapDimension('value'); + if (!isNaN(seriesGroup[i].originalData.get(valueDim, otherIndex))) { + seriesNames.push( + encodeHTML(seriesGroup[i].name) + ); + } + } + + return seriesNames.join(', ') + '
    ' + + encodeHTML(name + ' : ' + formattedValue); + }, + + /** + * @implement + */ + getTooltipPosition: function (dataIndex) { + if (dataIndex != null) { + var name = this.getData().getName(dataIndex); + var geo = this.coordinateSystem; + var region = geo.getRegion(name); + + return region && geo.dataToPoint(region.center); + } + }, + + setZoom: function (zoom) { + this.option.zoom = zoom; + }, + + setCenter: function (center) { + this.option.center = center; + }, + + defaultOption: { + // 一级层叠 + zlevel: 0, + // 二级层叠 + z: 2, + + coordinateSystem: 'geo', + + // map should be explicitly specified since ec3. + map: '', + + // If `geoIndex` is not specified, a exclusive geo will be + // created. Otherwise use the specified geo component, and + // `map` and `mapType` are ignored. + // geoIndex: 0, + + // 'center' | 'left' | 'right' | 'x%' | {number} + left: 'center', + // 'center' | 'top' | 'bottom' | 'x%' | {number} + top: 'center', + // right + // bottom + // width: + // height + + // Aspect is width / height. Inited to be geoJson bbox aspect + // This parameter is used for scale this aspect + aspectScale: 0.75, + + ///// Layout with center and size + // If you wan't to put map in a fixed size box with right aspect ratio + // This two properties may more conveninet + // layoutCenter: [50%, 50%] + // layoutSize: 100 + + + // 数值合并方式,默认加和,可选为: + // 'sum' | 'average' | 'max' | 'min' + // mapValueCalculation: 'sum', + // 地图数值计算结果小数精度 + // mapValuePrecision: 0, + + + // 显示图例颜色标识(系列标识的小圆点),图例开启时有效 + showLegendSymbol: true, + // 选择模式,默认关闭,可选single,multiple + // selectedMode: false, + dataRangeHoverLink: true, + // 是否开启缩放及漫游模式 + // roam: false, + + // Define left-top, right-bottom coords to control view + // For example, [ [180, 90], [-180, -90] ], + // higher priority than center and zoom + boundingCoords: null, + + // Default on center of map + center: null, + + zoom: 1, + + scaleLimit: null, + + label: { + show: false, + color: '#000' + }, + // scaleLimit: null, + itemStyle: { + borderWidth: 0.5, + borderColor: '#444', + areaColor: '#eee' + }, + + emphasis: { + label: { + show: true, + color: 'rgb(100,0,0)' + }, + itemStyle: { + areaColor: 'rgba(255,215,0,0.8)' + } + } + } + +}); + +mixin(MapSeries, selectableMixin); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var ATTR = '\0_ec_interaction_mutex'; + +function take(zr, resourceKey, userKey) { + var store = getStore(zr); + store[resourceKey] = userKey; +} + +function release(zr, resourceKey, userKey) { + var store = getStore(zr); + var uKey = store[resourceKey]; + + if (uKey === userKey) { + store[resourceKey] = null; + } +} + +function isTaken(zr, resourceKey) { + return !!getStore(zr)[resourceKey]; +} + +function getStore(zr) { + return zr[ATTR] || (zr[ATTR] = {}); +} + +/** + * payload: { + * type: 'takeGlobalCursor', + * key: 'dataZoomSelect', or 'brush', or ..., + * If no userKey, release global cursor. + * } + */ +registerAction( + {type: 'takeGlobalCursor', event: 'globalCursorTaken', update: 'update'}, + function () {} +); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @alias module:echarts/component/helper/RoamController + * @constructor + * @mixin {module:zrender/mixin/Eventful} + * + * @param {module:zrender/zrender~ZRender} zr + */ +function RoamController(zr) { + + /** + * @type {Function} + */ + this.pointerChecker; + + /** + * @type {module:zrender} + */ + this._zr = zr; + + /** + * @type {Object} + */ + this._opt = {}; + + // Avoid two roamController bind the same handler + var bind$$1 = bind; + var mousedownHandler = bind$$1(mousedown, this); + var mousemoveHandler = bind$$1(mousemove, this); + var mouseupHandler = bind$$1(mouseup, this); + var mousewheelHandler = bind$$1(mousewheel, this); + var pinchHandler = bind$$1(pinch, this); + + Eventful.call(this); + + /** + * @param {Function} pointerChecker + * input: x, y + * output: boolean + */ + this.setPointerChecker = function (pointerChecker) { + this.pointerChecker = pointerChecker; + }; + + /** + * Notice: only enable needed types. For example, if 'zoom' + * is not needed, 'zoom' should not be enabled, otherwise + * default mousewheel behaviour (scroll page) will be disabled. + * + * @param {boolean|string} [controlType=true] Specify the control type, + * which can be null/undefined or true/false + * or 'pan/move' or 'zoom'/'scale' + * @param {Object} [opt] + * @param {Object} [opt.zoomOnMouseWheel=true] The value can be: true / false / 'shift' / 'ctrl' / 'alt'. + * @param {Object} [opt.moveOnMouseMove=true] The value can be: true / false / 'shift' / 'ctrl' / 'alt'. + * @param {Object} [opt.moveOnMouseWheel=false] The value can be: true / false / 'shift' / 'ctrl' / 'alt'. + * @param {Object} [opt.preventDefaultMouseMove=true] When pan. + */ + this.enable = function (controlType, opt) { + + // Disable previous first + this.disable(); + + this._opt = defaults(clone(opt) || {}, { + zoomOnMouseWheel: true, + moveOnMouseMove: true, + // By default, wheel do not trigger move. + moveOnMouseWheel: false, + preventDefaultMouseMove: true + }); + + if (controlType == null) { + controlType = true; + } + + if (controlType === true || (controlType === 'move' || controlType === 'pan')) { + zr.on('mousedown', mousedownHandler); + zr.on('mousemove', mousemoveHandler); + zr.on('mouseup', mouseupHandler); + } + if (controlType === true || (controlType === 'scale' || controlType === 'zoom')) { + zr.on('mousewheel', mousewheelHandler); + zr.on('pinch', pinchHandler); + } + }; + + this.disable = function () { + zr.off('mousedown', mousedownHandler); + zr.off('mousemove', mousemoveHandler); + zr.off('mouseup', mouseupHandler); + zr.off('mousewheel', mousewheelHandler); + zr.off('pinch', pinchHandler); + }; + + this.dispose = this.disable; + + this.isDragging = function () { + return this._dragging; + }; + + this.isPinching = function () { + return this._pinching; + }; +} + +mixin(RoamController, Eventful); + + +function mousedown(e) { + if (isMiddleOrRightButtonOnMouseUpDown(e) + || (e.target && e.target.draggable) + ) { + return; + } + + var x = e.offsetX; + var y = e.offsetY; + + // Only check on mosedown, but not mousemove. + // Mouse can be out of target when mouse moving. + if (this.pointerChecker && this.pointerChecker(e, x, y)) { + this._x = x; + this._y = y; + this._dragging = true; + } +} + +function mousemove(e) { + if (!this._dragging + || !isAvailableBehavior('moveOnMouseMove', e, this._opt) + || e.gestureEvent === 'pinch' + || isTaken(this._zr, 'globalPan') + ) { + return; + } + + var x = e.offsetX; + var y = e.offsetY; + + var oldX = this._x; + var oldY = this._y; + + var dx = x - oldX; + var dy = y - oldY; + + this._x = x; + this._y = y; + + this._opt.preventDefaultMouseMove && stop(e.event); + + trigger(this, 'pan', 'moveOnMouseMove', e, { + dx: dx, dy: dy, oldX: oldX, oldY: oldY, newX: x, newY: y + }); +} + +function mouseup(e) { + if (!isMiddleOrRightButtonOnMouseUpDown(e)) { + this._dragging = false; + } +} + +function mousewheel(e) { + var shouldZoom = isAvailableBehavior('zoomOnMouseWheel', e, this._opt); + var shouldMove = isAvailableBehavior('moveOnMouseWheel', e, this._opt); + var wheelDelta = e.wheelDelta; + var absWheelDeltaDelta = Math.abs(wheelDelta); + var originX = e.offsetX; + var originY = e.offsetY; + + // wheelDelta maybe -0 in chrome mac. + if (wheelDelta === 0 || (!shouldZoom && !shouldMove)) { + return; + } + + // If both `shouldZoom` and `shouldMove` is true, trigger + // their event both, and the final behavior is determined + // by event listener themselves. + + if (shouldZoom) { + // Convenience: + // Mac and VM Windows on Mac: scroll up: zoom out. + // Windows: scroll up: zoom in. + + // FIXME: Should do more test in different environment. + // wheelDelta is too complicated in difference nvironment + // (https://developer.mozilla.org/en-US/docs/Web/Events/mousewheel), + // although it has been normallized by zrender. + // wheelDelta of mouse wheel is bigger than touch pad. + var factor = absWheelDeltaDelta > 3 ? 1.4 : absWheelDeltaDelta > 1 ? 1.2 : 1.1; + var scale = wheelDelta > 0 ? factor : 1 / factor; + checkPointerAndTrigger(this, 'zoom', 'zoomOnMouseWheel', e, { + scale: scale, originX: originX, originY: originY + }); + } + + if (shouldMove) { + // FIXME: Should do more test in different environment. + var absDelta = Math.abs(wheelDelta); + // wheelDelta of mouse wheel is bigger than touch pad. + var scrollDelta = (wheelDelta > 0 ? 1 : -1) * (absDelta > 3 ? 0.4 : absDelta > 1 ? 0.15 : 0.05); + checkPointerAndTrigger(this, 'scrollMove', 'moveOnMouseWheel', e, { + scrollDelta: scrollDelta, originX: originX, originY: originY + }); + } +} + +function pinch(e) { + if (isTaken(this._zr, 'globalPan')) { + return; + } + var scale = e.pinchScale > 1 ? 1.1 : 1 / 1.1; + checkPointerAndTrigger(this, 'zoom', null, e, { + scale: scale, originX: e.pinchX, originY: e.pinchY + }); +} + +function checkPointerAndTrigger(controller, eventName, behaviorToCheck, e, contollerEvent) { + if (controller.pointerChecker + && controller.pointerChecker(e, contollerEvent.originX, contollerEvent.originY) + ) { + // When mouse is out of roamController rect, + // default befavoius should not be be disabled, otherwise + // page sliding is disabled, contrary to expectation. + stop(e.event); + + trigger(controller, eventName, behaviorToCheck, e, contollerEvent); + } +} + +function trigger(controller, eventName, behaviorToCheck, e, contollerEvent) { + // Also provide behavior checker for event listener, for some case that + // multiple components share one listener. + contollerEvent.isAvailableBehavior = bind(isAvailableBehavior, null, behaviorToCheck, e); + controller.trigger(eventName, contollerEvent); +} + +// settings: { +// zoomOnMouseWheel +// moveOnMouseMove +// moveOnMouseWheel +// } +// The value can be: true / false / 'shift' / 'ctrl' / 'alt'. +function isAvailableBehavior(behaviorToCheck, e, settings) { + var setting = settings[behaviorToCheck]; + return !behaviorToCheck || ( + setting && (!isString(setting) || e.event[setting + 'Key']) + ); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +/** + * For geo and graph. + * + * @param {Object} controllerHost + * @param {module:zrender/Element} controllerHost.target + */ +function updateViewOnPan(controllerHost, dx, dy) { + var target = controllerHost.target; + var pos = target.position; + pos[0] += dx; + pos[1] += dy; + target.dirty(); +} + +/** + * For geo and graph. + * + * @param {Object} controllerHost + * @param {module:zrender/Element} controllerHost.target + * @param {number} controllerHost.zoom + * @param {number} controllerHost.zoomLimit like: {min: 1, max: 2} + */ +function updateViewOnZoom(controllerHost, zoomDelta, zoomX, zoomY) { + var target = controllerHost.target; + var zoomLimit = controllerHost.zoomLimit; + var pos = target.position; + var scale = target.scale; + + var newZoom = controllerHost.zoom = controllerHost.zoom || 1; + newZoom *= zoomDelta; + if (zoomLimit) { + var zoomMin = zoomLimit.min || 0; + var zoomMax = zoomLimit.max || Infinity; + newZoom = Math.max( + Math.min(zoomMax, newZoom), + zoomMin + ); + } + var zoomScale = newZoom / controllerHost.zoom; + controllerHost.zoom = newZoom; + // Keep the mouse center when scaling + pos[0] -= (zoomX - pos[0]) * (zoomScale - 1); + pos[1] -= (zoomY - pos[1]) * (zoomScale - 1); + scale[0] *= zoomScale; + scale[1] *= zoomScale; + + target.dirty(); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var IRRELEVANT_EXCLUDES = {'axisPointer': 1, 'tooltip': 1, 'brush': 1}; + +/** + * Avoid that: mouse click on a elements that is over geo or graph, + * but roam is triggered. + */ +function onIrrelevantElement(e, api, targetCoordSysModel) { + var model = api.getComponentByElement(e.topTarget); + // If model is axisModel, it works only if it is injected with coordinateSystem. + var coordSys = model && model.coordinateSystem; + return model + && model !== targetCoordSysModel + && !IRRELEVANT_EXCLUDES[model.mainType] + && (coordSys && coordSys.model !== targetCoordSysModel); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function getFixedItemStyle(model, scale) { + var itemStyle = model.getItemStyle(); + var areaColor = model.get('areaColor'); + + // If user want the color not to be changed when hover, + // they should both set areaColor and color to be null. + if (areaColor != null) { + itemStyle.fill = areaColor; + } + + return itemStyle; +} + +function updateMapSelectHandler(mapDraw, mapOrGeoModel, regionsGroup, api, fromView) { + regionsGroup.off('click'); + regionsGroup.off('mousedown'); + + if (mapOrGeoModel.get('selectedMode')) { + + regionsGroup.on('mousedown', function () { + mapDraw._mouseDownFlag = true; + }); + + regionsGroup.on('click', function (e) { + if (!mapDraw._mouseDownFlag) { + return; + } + mapDraw._mouseDownFlag = false; + + var el = e.target; + while (!el.__regions) { + el = el.parent; + } + if (!el) { + return; + } + + var action = { + type: (mapOrGeoModel.mainType === 'geo' ? 'geo' : 'map') + 'ToggleSelect', + batch: map(el.__regions, function (region) { + return { + name: region.name, + from: fromView.uid + }; + }) + }; + action[mapOrGeoModel.mainType + 'Id'] = mapOrGeoModel.id; + + api.dispatchAction(action); + + updateMapSelected(mapOrGeoModel, regionsGroup); + }); + } +} + +function updateMapSelected(mapOrGeoModel, regionsGroup) { + // FIXME + regionsGroup.eachChild(function (otherRegionEl) { + each$1(otherRegionEl.__regions, function (region) { + otherRegionEl.trigger(mapOrGeoModel.isSelected(region.name) ? 'emphasis' : 'normal'); + }); + }); +} + +/** + * @alias module:echarts/component/helper/MapDraw + * @param {module:echarts/ExtensionAPI} api + * @param {boolean} updateGroup + */ +function MapDraw(api, updateGroup) { + + var group = new Group(); + + /** + * @type {string} + * @private + */ + this.uid = getUID('ec_map_draw'); + + /** + * @type {module:echarts/component/helper/RoamController} + * @private + */ + this._controller = new RoamController(api.getZr()); + + /** + * @type {Object} {target, zoom, zoomLimit} + * @private + */ + this._controllerHost = {target: updateGroup ? group : null}; + + /** + * @type {module:zrender/container/Group} + * @readOnly + */ + this.group = group; + + /** + * @type {boolean} + * @private + */ + this._updateGroup = updateGroup; + + /** + * This flag is used to make sure that only one among + * `pan`, `zoom`, `click` can occurs, otherwise 'selected' + * action may be triggered when `pan`, which is unexpected. + * @type {booelan} + */ + this._mouseDownFlag; + + /** + * @type {string} + */ + this._mapName; + + /** + * @type {boolean} + */ + this._initialized; + + /** + * @type {module:zrender/container/Group} + */ + group.add(this._regionsGroup = new Group()); + + /** + * @type {module:zrender/container/Group} + */ + group.add(this._backgroundGroup = new Group()); +} + +MapDraw.prototype = { + + constructor: MapDraw, + + draw: function (mapOrGeoModel, ecModel, api, fromView, payload) { + + var isGeo = mapOrGeoModel.mainType === 'geo'; + + // Map series has data. GEO model that controlled by map series + // will be assigned with map data. Other GEO model has no data. + var data = mapOrGeoModel.getData && mapOrGeoModel.getData(); + isGeo && ecModel.eachComponent({mainType: 'series', subType: 'map'}, function (mapSeries) { + if (!data && mapSeries.getHostGeoModel() === mapOrGeoModel) { + data = mapSeries.getData(); + } + }); + + var geo = mapOrGeoModel.coordinateSystem; + + this._updateBackground(geo); + + var regionsGroup = this._regionsGroup; + var group = this.group; + + var scale = geo.scale; + var transform = { + position: geo.position, + scale: scale + }; + + // No animation when first draw or in action + if (!regionsGroup.childAt(0) || payload) { + group.attr(transform); + } + else { + updateProps(group, transform, mapOrGeoModel); + } + + regionsGroup.removeAll(); + + var itemStyleAccessPath = ['itemStyle']; + var hoverItemStyleAccessPath = ['emphasis', 'itemStyle']; + var labelAccessPath = ['label']; + var hoverLabelAccessPath = ['emphasis', 'label']; + var nameMap = createHashMap(); + + each$1(geo.regions, function (region) { + + // Consider in GeoJson properties.name may be duplicated, for example, + // there is multiple region named "United Kindom" or "France" (so many + // colonies). And it is not appropriate to merge them in geo, which + // will make them share the same label and bring trouble in label + // location calculation. + var regionGroup = nameMap.get(region.name) + || nameMap.set(region.name, new Group()); + + var compoundPath = new CompoundPath({ + segmentIgnoreThreshold: 1, + shape: { + paths: [] + } + }); + regionGroup.add(compoundPath); + + var regionModel = mapOrGeoModel.getRegionModel(region.name) || mapOrGeoModel; + + var itemStyleModel = regionModel.getModel(itemStyleAccessPath); + var hoverItemStyleModel = regionModel.getModel(hoverItemStyleAccessPath); + var itemStyle = getFixedItemStyle(itemStyleModel, scale); + var hoverItemStyle = getFixedItemStyle(hoverItemStyleModel, scale); + + var labelModel = regionModel.getModel(labelAccessPath); + var hoverLabelModel = regionModel.getModel(hoverLabelAccessPath); + + var dataIdx; + // Use the itemStyle in data if has data + if (data) { + dataIdx = data.indexOfName(region.name); + // Only visual color of each item will be used. It can be encoded by dataRange + // But visual color of series is used in symbol drawing + // + // Visual color for each series is for the symbol draw + var visualColor = data.getItemVisual(dataIdx, 'color', true); + if (visualColor) { + itemStyle.fill = visualColor; + } + } + + each$1(region.geometries, function (geometry) { + if (geometry.type !== 'polygon') { + return; + } + compoundPath.shape.paths.push(new Polygon({ + segmentIgnoreThreshold: 1, + shape: { + points: geometry.exterior + } + })); + + for (var i = 0; i < (geometry.interiors ? geometry.interiors.length : 0); i++) { + compoundPath.shape.paths.push(new Polygon({ + segmentIgnoreThreshold: 1, + shape: { + points: geometry.interiors[i] + } + })); + } + }); + + compoundPath.setStyle(itemStyle); + compoundPath.style.strokeNoScale = true; + compoundPath.culling = true; + // Label + var showLabel = labelModel.get('show'); + var hoverShowLabel = hoverLabelModel.get('show'); + + var isDataNaN = data && isNaN(data.get(data.mapDimension('value'), dataIdx)); + var itemLayout = data && data.getItemLayout(dataIdx); + // In the following cases label will be drawn + // 1. In map series and data value is NaN + // 2. In geo component + // 4. Region has no series legendSymbol, which will be add a showLabel flag in mapSymbolLayout + if ( + (isGeo || isDataNaN && (showLabel || hoverShowLabel)) + || (itemLayout && itemLayout.showLabel) + ) { + var query = !isGeo ? dataIdx : region.name; + var labelFetcher; + + // Consider dataIdx not found. + if (!data || dataIdx >= 0) { + labelFetcher = mapOrGeoModel; + } + + var textEl = new Text({ + position: region.center.slice(), + // FIXME + // label rotation is not support yet in geo or regions of series-map + // that has no data. The rotation will be effected by this `scale`. + // So needed to change to RectText? + scale: [1 / scale[0], 1 / scale[1]], + z2: 10, + silent: true + }); + + setLabelStyle( + textEl.style, textEl.hoverStyle = {}, labelModel, hoverLabelModel, + { + labelFetcher: labelFetcher, + labelDataIndex: query, + defaultText: region.name, + useInsideStyle: false + }, + { + textAlign: 'center', + textVerticalAlign: 'middle' + } + ); + + regionGroup.add(textEl); + } + + // setItemGraphicEl, setHoverStyle after all polygons and labels + // are added to the rigionGroup + if (data) { + data.setItemGraphicEl(dataIdx, regionGroup); + } + else { + var regionModel = mapOrGeoModel.getRegionModel(region.name); + // Package custom mouse event for geo component + compoundPath.eventData = { + componentType: 'geo', + componentIndex: mapOrGeoModel.componentIndex, + geoIndex: mapOrGeoModel.componentIndex, + name: region.name, + region: (regionModel && regionModel.option) || {} + }; + } + + var groupRegions = regionGroup.__regions || (regionGroup.__regions = []); + groupRegions.push(region); + + regionGroup.highDownSilentOnTouch = !!mapOrGeoModel.get('selectedMode'); + setHoverStyle(regionGroup, hoverItemStyle); + + regionsGroup.add(regionGroup); + }); + + this._updateController(mapOrGeoModel, ecModel, api); + + updateMapSelectHandler(this, mapOrGeoModel, regionsGroup, api, fromView); + + updateMapSelected(mapOrGeoModel, regionsGroup); + }, + + remove: function () { + this._regionsGroup.removeAll(); + this._backgroundGroup.removeAll(); + this._controller.dispose(); + this._mapName && geoSourceManager.removeGraphic(this._mapName, this.uid); + this._mapName = null; + this._controllerHost = {}; + }, + + _updateBackground: function (geo) { + var mapName = geo.map; + + if (this._mapName !== mapName) { + each$1(geoSourceManager.makeGraphic(mapName, this.uid), function (root) { + this._backgroundGroup.add(root); + }, this); + } + + this._mapName = mapName; + }, + + _updateController: function (mapOrGeoModel, ecModel, api) { + var geo = mapOrGeoModel.coordinateSystem; + var controller = this._controller; + var controllerHost = this._controllerHost; + + controllerHost.zoomLimit = mapOrGeoModel.get('scaleLimit'); + controllerHost.zoom = geo.getZoom(); + + // roamType is will be set default true if it is null + controller.enable(mapOrGeoModel.get('roam') || false); + var mainType = mapOrGeoModel.mainType; + + function makeActionBase() { + var action = { + type: 'geoRoam', + componentType: mainType + }; + action[mainType + 'Id'] = mapOrGeoModel.id; + return action; + } + + controller.off('pan').on('pan', function (e) { + this._mouseDownFlag = false; + + updateViewOnPan(controllerHost, e.dx, e.dy); + + api.dispatchAction(extend(makeActionBase(), { + dx: e.dx, + dy: e.dy + })); + }, this); + + controller.off('zoom').on('zoom', function (e) { + this._mouseDownFlag = false; + + updateViewOnZoom(controllerHost, e.scale, e.originX, e.originY); + + api.dispatchAction(extend(makeActionBase(), { + zoom: e.scale, + originX: e.originX, + originY: e.originY + })); + + if (this._updateGroup) { + var scale = this.group.scale; + this._regionsGroup.traverse(function (el) { + if (el.type === 'text') { + el.attr('scale', [1 / scale[0], 1 / scale[1]]); + } + }); + } + }, this); + + controller.setPointerChecker(function (e, x, y) { + return geo.getViewRectAfterRoam().contain(x, y) + && !onIrrelevantElement(e, api, mapOrGeoModel); + }); + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var HIGH_DOWN_PROP = '__seriesMapHighDown'; +var RECORD_VERSION_PROP = '__seriesMapCallKey'; + +extendChartView({ + + type: 'map', + + render: function (mapModel, ecModel, api, payload) { + // Not render if it is an toggleSelect action from self + if (payload && payload.type === 'mapToggleSelect' + && payload.from === this.uid + ) { + return; + } + + var group = this.group; + group.removeAll(); + + if (mapModel.getHostGeoModel()) { + return; + } + + // Not update map if it is an roam action from self + if (!(payload && payload.type === 'geoRoam' + && payload.componentType === 'series' + && payload.seriesId === mapModel.id + ) + ) { + if (mapModel.needsDrawMap) { + var mapDraw = this._mapDraw || new MapDraw(api, true); + group.add(mapDraw.group); + + mapDraw.draw(mapModel, ecModel, api, this, payload); + + this._mapDraw = mapDraw; + } + else { + // Remove drawed map + this._mapDraw && this._mapDraw.remove(); + this._mapDraw = null; + } + } + else { + var mapDraw = this._mapDraw; + mapDraw && group.add(mapDraw.group); + } + + mapModel.get('showLegendSymbol') && ecModel.getComponent('legend') + && this._renderSymbols(mapModel, ecModel, api); + }, + + remove: function () { + this._mapDraw && this._mapDraw.remove(); + this._mapDraw = null; + this.group.removeAll(); + }, + + dispose: function () { + this._mapDraw && this._mapDraw.remove(); + this._mapDraw = null; + }, + + _renderSymbols: function (mapModel, ecModel, api) { + var originalData = mapModel.originalData; + var group = this.group; + + originalData.each(originalData.mapDimension('value'), function (value, originalDataIndex) { + if (isNaN(value)) { + return; + } + + var layout = originalData.getItemLayout(originalDataIndex); + + if (!layout || !layout.point) { + // Not exists in map + return; + } + + var point = layout.point; + var offset = layout.offset; + + var circle = new Circle({ + style: { + // Because the special of map draw. + // Which needs statistic of multiple series and draw on one map. + // And each series also need a symbol with legend color + // + // Layout and visual are put one the different data + fill: mapModel.getData().getVisual('color') + }, + shape: { + cx: point[0] + offset * 9, + cy: point[1], + r: 3 + }, + silent: true, + // Do not overlap the first series, on which labels are displayed. + z2: 8 + (!offset ? Z2_EMPHASIS_LIFT + 1 : 0) + }); + + // Only the series that has the first value on the same region is in charge of rendering the label. + // But consider the case: + // series: [ + // {id: 'X', type: 'map', map: 'm', {data: [{name: 'A', value: 11}, {name: 'B', {value: 22}]}, + // {id: 'Y', type: 'map', map: 'm', {data: [{name: 'A', value: 21}, {name: 'C', {value: 33}]} + // ] + // The offset `0` of item `A` is at series `X`, but of item `C` is at series `Y`. + // For backward compatibility, we follow the rule that render label `A` by the + // settings on series `X` but render label `C` by the settings on series `Y`. + if (!offset) { + + var fullData = mapModel.mainSeries.getData(); + var name = originalData.getName(originalDataIndex); + + var fullIndex = fullData.indexOfName(name); + + var itemModel = originalData.getItemModel(originalDataIndex); + var labelModel = itemModel.getModel('label'); + var hoverLabelModel = itemModel.getModel('emphasis.label'); + + var regionGroup = fullData.getItemGraphicEl(fullIndex); + + // `getFormattedLabel` needs to use `getData` inside. Here + // `mapModel.getData()` is shallow cloned from `mainSeries.getData()`. + // FIXME + // If this is not the `mainSeries`, the item model (like label formatter) + // set on original data item will never get. But it has been working + // like that from the begining, and this scenario is rarely encountered. + // So it won't be fixed until have to. + var normalText = retrieve2( + mapModel.getFormattedLabel(fullIndex, 'normal'), + name + ); + var emphasisText = retrieve2( + mapModel.getFormattedLabel(fullIndex, 'emphasis'), + normalText + ); + + var highDownRecord = regionGroup[HIGH_DOWN_PROP]; + var recordVersion = Math.random(); + + // Prevent from register listeners duplicatedly when roaming. + if (!highDownRecord) { + highDownRecord = regionGroup[HIGH_DOWN_PROP] = {}; + var onEmphasis = curry(onRegionHighDown, true); + var onNormal = curry(onRegionHighDown, false); + regionGroup.on('mouseover', onEmphasis) + .on('mouseout', onNormal) + .on('emphasis', onEmphasis) + .on('normal', onNormal); + } + + // Prevent removed regions effect current grapics. + regionGroup[RECORD_VERSION_PROP] = recordVersion; + extend(highDownRecord, { + recordVersion: recordVersion, + circle: circle, + labelModel: labelModel, + hoverLabelModel: hoverLabelModel, + emphasisText: emphasisText, + normalText: normalText + }); + + // FIXME + // Consider set option when emphasis. + enterRegionHighDown(highDownRecord, false); + } + + group.add(circle); + }); + } +}); + +function onRegionHighDown(toHighOrDown) { + var highDownRecord = this[HIGH_DOWN_PROP]; + if (highDownRecord && highDownRecord.recordVersion === this[RECORD_VERSION_PROP]) { + enterRegionHighDown(highDownRecord, toHighOrDown); + } +} + +function enterRegionHighDown(highDownRecord, toHighOrDown) { + var circle = highDownRecord.circle; + var labelModel = highDownRecord.labelModel; + var hoverLabelModel = highDownRecord.hoverLabelModel; + var emphasisText = highDownRecord.emphasisText; + var normalText = highDownRecord.normalText; + + if (toHighOrDown) { + circle.style.extendFrom( + setTextStyle({}, hoverLabelModel, { + text: hoverLabelModel.get('show') ? emphasisText : null + }, {isRectText: true, useInsideStyle: false}, true) + ); + // Make label upper than others if overlaps. + circle.__mapOriginalZ2 = circle.z2; + circle.z2 += Z2_EMPHASIS_LIFT; + } + else { + setTextStyle(circle.style, labelModel, { + text: labelModel.get('show') ? normalText : null, + textPosition: labelModel.getShallow('position') || 'bottom' + }, {isRectText: true, useInsideStyle: false}); + // Trigger normalize style like padding. + circle.dirty(false); + + if (circle.__mapOriginalZ2 != null) { + circle.z2 = circle.__mapOriginalZ2; + circle.__mapOriginalZ2 = null; + } + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @param {module:echarts/coord/View} view + * @param {Object} payload + * @param {Object} [zoomLimit] + */ +function updateCenterAndZoom( + view, payload, zoomLimit +) { + var previousZoom = view.getZoom(); + var center = view.getCenter(); + var zoom = payload.zoom; + + var point = view.dataToPoint(center); + + if (payload.dx != null && payload.dy != null) { + point[0] -= payload.dx; + point[1] -= payload.dy; + + var center = view.pointToData(point); + view.setCenter(center); + } + if (zoom != null) { + if (zoomLimit) { + var zoomMin = zoomLimit.min || 0; + var zoomMax = zoomLimit.max || Infinity; + zoom = Math.max( + Math.min(previousZoom * zoom, zoomMax), + zoomMin + ) / previousZoom; + } + + // Zoom on given point(originX, originY) + view.scale[0] *= zoom; + view.scale[1] *= zoom; + var position = view.position; + var fixX = (payload.originX - position[0]) * (zoom - 1); + var fixY = (payload.originY - position[1]) * (zoom - 1); + + position[0] -= fixX; + position[1] -= fixY; + + view.updateTransform(); + // Get the new center + var center = view.pointToData(point); + view.setCenter(center); + view.setZoom(zoom * previousZoom); + } + + return { + center: view.getCenter(), + zoom: view.getZoom() + }; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @payload + * @property {string} [componentType=series] + * @property {number} [dx] + * @property {number} [dy] + * @property {number} [zoom] + * @property {number} [originX] + * @property {number} [originY] + */ +registerAction({ + type: 'geoRoam', + event: 'geoRoam', + update: 'updateTransform' +}, function (payload, ecModel) { + var componentType = payload.componentType || 'series'; + + ecModel.eachComponent( + { mainType: componentType, query: payload }, + function (componentModel) { + var geo = componentModel.coordinateSystem; + if (geo.type !== 'geo') { + return; + } + + var res = updateCenterAndZoom( + geo, payload, componentModel.get('scaleLimit') + ); + + componentModel.setCenter + && componentModel.setCenter(res.center); + + componentModel.setZoom + && componentModel.setZoom(res.zoom); + + // All map series with same `map` use the same geo coordinate system + // So the center and zoom must be in sync. Include the series not selected by legend + if (componentType === 'series') { + each$1(componentModel.seriesGroup, function (seriesModel) { + seriesModel.setCenter(res.center); + seriesModel.setZoom(res.zoom); + }); + } + } + ); +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Simple view coordinate system + * Mapping given x, y to transformd view x, y + */ + +var v2ApplyTransform$1 = applyTransform; + +// Dummy transform node +function TransformDummy() { + Transformable.call(this); +} +mixin(TransformDummy, Transformable); + +function View(name) { + /** + * @type {string} + */ + this.name = name; + + /** + * @type {Object} + */ + this.zoomLimit; + + Transformable.call(this); + + this._roamTransformable = new TransformDummy(); + + this._rawTransformable = new TransformDummy(); + + this._center; + this._zoom; +} + +View.prototype = { + + constructor: View, + + type: 'view', + + /** + * @param {Array.} + * @readOnly + */ + dimensions: ['x', 'y'], + + /** + * Set bounding rect + * @param {number} x + * @param {number} y + * @param {number} width + * @param {number} height + */ + + // PENDING to getRect + setBoundingRect: function (x, y, width, height) { + this._rect = new BoundingRect(x, y, width, height); + return this._rect; + }, + + /** + * @return {module:zrender/core/BoundingRect} + */ + // PENDING to getRect + getBoundingRect: function () { + return this._rect; + }, + + /** + * @param {number} x + * @param {number} y + * @param {number} width + * @param {number} height + */ + setViewRect: function (x, y, width, height) { + this.transformTo(x, y, width, height); + this._viewRect = new BoundingRect(x, y, width, height); + }, + + /** + * Transformed to particular position and size + * @param {number} x + * @param {number} y + * @param {number} width + * @param {number} height + */ + transformTo: function (x, y, width, height) { + var rect = this.getBoundingRect(); + var rawTransform = this._rawTransformable; + + rawTransform.transform = rect.calculateTransform( + new BoundingRect(x, y, width, height) + ); + + rawTransform.decomposeTransform(); + + this._updateTransform(); + }, + + /** + * Set center of view + * @param {Array.} [centerCoord] + */ + setCenter: function (centerCoord) { + if (!centerCoord) { + return; + } + this._center = centerCoord; + + this._updateCenterAndZoom(); + }, + + /** + * @param {number} zoom + */ + setZoom: function (zoom) { + zoom = zoom || 1; + + var zoomLimit = this.zoomLimit; + if (zoomLimit) { + if (zoomLimit.max != null) { + zoom = Math.min(zoomLimit.max, zoom); + } + if (zoomLimit.min != null) { + zoom = Math.max(zoomLimit.min, zoom); + } + } + this._zoom = zoom; + + this._updateCenterAndZoom(); + }, + + /** + * Get default center without roam + */ + getDefaultCenter: function () { + // Rect before any transform + var rawRect = this.getBoundingRect(); + var cx = rawRect.x + rawRect.width / 2; + var cy = rawRect.y + rawRect.height / 2; + + return [cx, cy]; + }, + + getCenter: function () { + return this._center || this.getDefaultCenter(); + }, + + getZoom: function () { + return this._zoom || 1; + }, + + /** + * @return {Array.} data + * @param {boolean} noRoam + * @param {Array.} [out] + * @return {Array.} + */ + dataToPoint: function (data, noRoam, out) { + var transform = noRoam ? this._rawTransform : this.transform; + out = out || []; + return transform + ? v2ApplyTransform$1(out, data, transform) + : copy(out, data); + }, + + /** + * Convert a (x, y) point to (lon, lat) data + * @param {Array.} point + * @return {Array.} + */ + pointToData: function (point) { + var invTransform = this.invTransform; + return invTransform + ? v2ApplyTransform$1([], point, invTransform) + : [point[0], point[1]]; + }, + + /** + * @implements + * see {module:echarts/CoodinateSystem} + */ + convertToPixel: curry(doConvert$1, 'dataToPoint'), + + /** + * @implements + * see {module:echarts/CoodinateSystem} + */ + convertFromPixel: curry(doConvert$1, 'pointToData'), + + /** + * @implements + * see {module:echarts/CoodinateSystem} + */ + containPoint: function (point) { + return this.getViewRectAfterRoam().contain(point[0], point[1]); + } + + /** + * @return {number} + */ + // getScalarScale: function () { + // // Use determinant square root of transform to mutiply scalar + // var m = this.transform; + // var det = Math.sqrt(Math.abs(m[0] * m[3] - m[2] * m[1])); + // return det; + // } +}; + +mixin(View, Transformable); + +function doConvert$1(methodName, ecModel, finder, value) { + var seriesModel = finder.seriesModel; + var coordSys = seriesModel ? seriesModel.coordinateSystem : null; // e.g., graph. + return coordSys === this ? coordSys[methodName](value) : null; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * [Geo description] + * For backward compatibility, the orginal interface: + * `name, map, geoJson, specialAreas, nameMap` is kept. + * + * @param {string|Object} name + * @param {string} map Map type + * Specify the positioned areas by left, top, width, height + * @param {Object.} [nameMap] + * Specify name alias + * @param {boolean} [invertLongitute=true] + */ +function Geo(name, map$$1, nameMap, invertLongitute) { + + View.call(this, name); + + /** + * Map type + * @type {string} + */ + this.map = map$$1; + + var source = geoSourceManager.load(map$$1, nameMap); + + this._nameCoordMap = source.nameCoordMap; + this._regionsMap = source.regionsMap; + this._invertLongitute = invertLongitute == null ? true : invertLongitute; + + /** + * @readOnly + */ + this.regions = source.regions; + + /** + * @type {module:zrender/src/core/BoundingRect} + */ + this._rect = source.boundingRect; +} + +Geo.prototype = { + + constructor: Geo, + + type: 'geo', + + /** + * @param {Array.} + * @readOnly + */ + dimensions: ['lng', 'lat'], + + /** + * If contain given lng,lat coord + * @param {Array.} + * @readOnly + */ + containCoord: function (coord) { + var regions = this.regions; + for (var i = 0; i < regions.length; i++) { + if (regions[i].contain(coord)) { + return true; + } + } + return false; + }, + + /** + * @override + */ + transformTo: function (x, y, width, height) { + var rect = this.getBoundingRect(); + var invertLongitute = this._invertLongitute; + + rect = rect.clone(); + + if (invertLongitute) { + // Longitute is inverted + rect.y = -rect.y - rect.height; + } + + var rawTransformable = this._rawTransformable; + + rawTransformable.transform = rect.calculateTransform( + new BoundingRect(x, y, width, height) + ); + + rawTransformable.decomposeTransform(); + + if (invertLongitute) { + var scale = rawTransformable.scale; + scale[1] = -scale[1]; + } + + rawTransformable.updateTransform(); + + this._updateTransform(); + }, + + /** + * @param {string} name + * @return {module:echarts/coord/geo/Region} + */ + getRegion: function (name) { + return this._regionsMap.get(name); + }, + + getRegionByCoord: function (coord) { + var regions = this.regions; + for (var i = 0; i < regions.length; i++) { + if (regions[i].contain(coord)) { + return regions[i]; + } + } + }, + + /** + * Add geoCoord for indexing by name + * @param {string} name + * @param {Array.} geoCoord + */ + addGeoCoord: function (name, geoCoord) { + this._nameCoordMap.set(name, geoCoord); + }, + + /** + * Get geoCoord by name + * @param {string} name + * @return {Array.} + */ + getGeoCoord: function (name) { + return this._nameCoordMap.get(name); + }, + + /** + * @override + */ + getBoundingRect: function () { + return this._rect; + }, + + /** + * @param {string|Array.} data + * @param {boolean} noRoam + * @param {Array.} [out] + * @return {Array.} + */ + dataToPoint: function (data, noRoam, out) { + if (typeof data === 'string') { + // Map area name to geoCoord + data = this.getGeoCoord(data); + } + if (data) { + return View.prototype.dataToPoint.call(this, data, noRoam, out); + } + }, + + /** + * @override + */ + convertToPixel: curry(doConvert, 'dataToPoint'), + + /** + * @override + */ + convertFromPixel: curry(doConvert, 'pointToData') + +}; + +mixin(Geo, View); + +function doConvert(methodName, ecModel, finder, value) { + var geoModel = finder.geoModel; + var seriesModel = finder.seriesModel; + + var coordSys = geoModel + ? geoModel.coordinateSystem + : seriesModel + ? ( + seriesModel.coordinateSystem // For map. + || (seriesModel.getReferringComponents('geo')[0] || {}).coordinateSystem + ) + : null; + + return coordSys === this ? coordSys[methodName](value) : null; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Resize method bound to the geo + * @param {module:echarts/coord/geo/GeoModel|module:echarts/chart/map/MapModel} geoModel + * @param {module:echarts/ExtensionAPI} api + */ +function resizeGeo(geoModel, api) { + + var boundingCoords = geoModel.get('boundingCoords'); + if (boundingCoords != null) { + var leftTop = boundingCoords[0]; + var rightBottom = boundingCoords[1]; + if (isNaN(leftTop[0]) || isNaN(leftTop[1]) || isNaN(rightBottom[0]) || isNaN(rightBottom[1])) { + if (__DEV__) { + console.error('Invalid boundingCoords'); + } + } + else { + this.setBoundingRect(leftTop[0], leftTop[1], rightBottom[0] - leftTop[0], rightBottom[1] - leftTop[1]); + } + } + + var rect = this.getBoundingRect(); + + var boxLayoutOption; + + var center = geoModel.get('layoutCenter'); + var size = geoModel.get('layoutSize'); + + var viewWidth = api.getWidth(); + var viewHeight = api.getHeight(); + + var aspect = rect.width / rect.height * this.aspectScale; + + var useCenterAndSize = false; + + if (center && size) { + center = [ + parsePercent$1(center[0], viewWidth), + parsePercent$1(center[1], viewHeight) + ]; + size = parsePercent$1(size, Math.min(viewWidth, viewHeight)); + + if (!isNaN(center[0]) && !isNaN(center[1]) && !isNaN(size)) { + useCenterAndSize = true; + } + else { + if (__DEV__) { + console.warn('Given layoutCenter or layoutSize data are invalid. Use left/top/width/height instead.'); + } + } + } + + var viewRect; + if (useCenterAndSize) { + var viewRect = {}; + if (aspect > 1) { + // Width is same with size + viewRect.width = size; + viewRect.height = size / aspect; + } + else { + viewRect.height = size; + viewRect.width = size * aspect; + } + viewRect.y = center[1] - viewRect.height / 2; + viewRect.x = center[0] - viewRect.width / 2; + } + else { + // Use left/top/width/height + boxLayoutOption = geoModel.getBoxLayoutParams(); + + // 0.75 rate + boxLayoutOption.aspect = aspect; + + viewRect = getLayoutRect(boxLayoutOption, { + width: viewWidth, + height: viewHeight + }); + } + + this.setViewRect(viewRect.x, viewRect.y, viewRect.width, viewRect.height); + + this.setCenter(geoModel.get('center')); + this.setZoom(geoModel.get('zoom')); +} + +/** + * @param {module:echarts/coord/Geo} geo + * @param {module:echarts/model/Model} model + * @inner + */ +function setGeoCoords(geo, model) { + each$1(model.get('geoCoord'), function (geoCoord, name) { + geo.addGeoCoord(name, geoCoord); + }); +} + +var geoCreator = { + + // For deciding which dimensions to use when creating list data + dimensions: Geo.prototype.dimensions, + + create: function (ecModel, api) { + var geoList = []; + + // FIXME Create each time may be slow + ecModel.eachComponent('geo', function (geoModel, idx) { + var name = geoModel.get('map'); + + var aspectScale = geoModel.get('aspectScale'); + var invertLongitute = true; + var mapRecords = mapDataStorage.retrieveMap(name); + if (mapRecords && mapRecords[0] && mapRecords[0].type === 'svg') { + aspectScale == null && (aspectScale = 1); + invertLongitute = false; + } + else { + aspectScale == null && (aspectScale = 0.75); + } + + var geo = new Geo(name + idx, name, geoModel.get('nameMap'), invertLongitute); + + geo.aspectScale = aspectScale; + geo.zoomLimit = geoModel.get('scaleLimit'); + geoList.push(geo); + + setGeoCoords(geo, geoModel); + + geoModel.coordinateSystem = geo; + geo.model = geoModel; + + // Inject resize method + geo.resize = resizeGeo; + + geo.resize(geoModel, api); + }); + + ecModel.eachSeries(function (seriesModel) { + var coordSys = seriesModel.get('coordinateSystem'); + if (coordSys === 'geo') { + var geoIndex = seriesModel.get('geoIndex') || 0; + seriesModel.coordinateSystem = geoList[geoIndex]; + } + }); + + // If has map series + var mapModelGroupBySeries = {}; + + ecModel.eachSeriesByType('map', function (seriesModel) { + if (!seriesModel.getHostGeoModel()) { + var mapType = seriesModel.getMapType(); + mapModelGroupBySeries[mapType] = mapModelGroupBySeries[mapType] || []; + mapModelGroupBySeries[mapType].push(seriesModel); + } + }); + + each$1(mapModelGroupBySeries, function (mapSeries, mapType) { + var nameMapList = map(mapSeries, function (singleMapSeries) { + return singleMapSeries.get('nameMap'); + }); + var geo = new Geo(mapType, mapType, mergeAll(nameMapList)); + + geo.zoomLimit = retrieve.apply(null, map(mapSeries, function (singleMapSeries) { + return singleMapSeries.get('scaleLimit'); + })); + geoList.push(geo); + + // Inject resize method + geo.resize = resizeGeo; + geo.aspectScale = mapSeries[0].get('aspectScale'); + + geo.resize(mapSeries[0], api); + + each$1(mapSeries, function (singleMapSeries) { + singleMapSeries.coordinateSystem = geo; + + setGeoCoords(geo, singleMapSeries); + }); + }); + + return geoList; + }, + + /** + * Fill given regions array + * @param {Array.} originRegionArr + * @param {string} mapName + * @param {Object} [nameMap] + * @return {Array} + */ + getFilledRegions: function (originRegionArr, mapName, nameMap) { + // Not use the original + var regionsArr = (originRegionArr || []).slice(); + + var dataNameMap = createHashMap(); + for (var i = 0; i < regionsArr.length; i++) { + dataNameMap.set(regionsArr[i].name, regionsArr[i]); + } + + var source = geoSourceManager.load(mapName, nameMap); + each$1(source.regions, function (region) { + var name = region.name; + !dataNameMap.get(name) && regionsArr.push({name: name}); + }); + + return regionsArr; + } +}; + +registerCoordinateSystem('geo', geoCreator); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var mapSymbolLayout = function (ecModel) { + + var processedMapType = {}; + + ecModel.eachSeriesByType('map', function (mapSeries) { + var mapType = mapSeries.getMapType(); + if (mapSeries.getHostGeoModel() || processedMapType[mapType]) { + return; + } + + var mapSymbolOffsets = {}; + + each$1(mapSeries.seriesGroup, function (subMapSeries) { + var geo = subMapSeries.coordinateSystem; + var data = subMapSeries.originalData; + if (subMapSeries.get('showLegendSymbol') && ecModel.getComponent('legend')) { + data.each(data.mapDimension('value'), function (value, idx) { + var name = data.getName(idx); + var region = geo.getRegion(name); + + // If input series.data is [11, 22, '-'/null/undefined, 44], + // it will be filled with NaN: [11, 22, NaN, 44] and NaN will + // not be drawn. So here must validate if value is NaN. + if (!region || isNaN(value)) { + return; + } + + var offset = mapSymbolOffsets[name] || 0; + + var point = geo.dataToPoint(region.center); + + mapSymbolOffsets[name] = offset + 1; + + data.setItemLayout(idx, { + point: point, + offset: offset + }); + }); + } + }); + + // Show label of those region not has legendSymbol(which is offset 0) + var data = mapSeries.getData(); + data.each(function (idx) { + var name = data.getName(idx); + var layout = data.getItemLayout(idx) || {}; + layout.showLabel = !mapSymbolOffsets[name]; + data.setItemLayout(idx, layout); + }); + + processedMapType[mapType] = true; + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var mapVisual = function (ecModel) { + ecModel.eachSeriesByType('map', function (seriesModel) { + var colorList = seriesModel.get('color'); + var itemStyleModel = seriesModel.getModel('itemStyle'); + + var areaColor = itemStyleModel.get('areaColor'); + var color = itemStyleModel.get('color') + || colorList[seriesModel.seriesIndex % colorList.length]; + + seriesModel.getData().setVisual({ + 'areaColor': areaColor, + 'color': color + }); + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// FIXME 公用? +/** + * @param {Array.} datas + * @param {string} statisticType 'average' 'sum' + * @inner + */ +function dataStatistics(datas, statisticType) { + var dataNameMap = {}; + + each$1(datas, function (data) { + data.each(data.mapDimension('value'), function (value, idx) { + // Add prefix to avoid conflict with Object.prototype. + var mapKey = 'ec-' + data.getName(idx); + dataNameMap[mapKey] = dataNameMap[mapKey] || []; + if (!isNaN(value)) { + dataNameMap[mapKey].push(value); + } + }); + }); + + return datas[0].map(datas[0].mapDimension('value'), function (value, idx) { + var mapKey = 'ec-' + datas[0].getName(idx); + var sum = 0; + var min = Infinity; + var max = -Infinity; + var len = dataNameMap[mapKey].length; + for (var i = 0; i < len; i++) { + min = Math.min(min, dataNameMap[mapKey][i]); + max = Math.max(max, dataNameMap[mapKey][i]); + sum += dataNameMap[mapKey][i]; + } + var result; + if (statisticType === 'min') { + result = min; + } + else if (statisticType === 'max') { + result = max; + } + else if (statisticType === 'average') { + result = sum / len; + } + else { + result = sum; + } + return len === 0 ? NaN : result; + }); +} + +var mapDataStatistic = function (ecModel) { + var seriesGroups = {}; + ecModel.eachSeriesByType('map', function (seriesModel) { + var hostGeoModel = seriesModel.getHostGeoModel(); + var key = hostGeoModel ? 'o' + hostGeoModel.id : 'i' + seriesModel.getMapType(); + (seriesGroups[key] = seriesGroups[key] || []).push(seriesModel); + }); + + each$1(seriesGroups, function (seriesList, key) { + var data = dataStatistics( + map(seriesList, function (seriesModel) { + return seriesModel.getData(); + }), + seriesList[0].get('mapValueCalculation') + ); + + for (var i = 0; i < seriesList.length; i++) { + seriesList[i].originalData = seriesList[i].getData(); + } + + // FIXME Put where? + for (var i = 0; i < seriesList.length; i++) { + seriesList[i].seriesGroup = seriesList; + seriesList[i].needsDrawMap = i === 0 && !seriesList[i].getHostGeoModel(); + + seriesList[i].setData(data.cloneShallow()); + seriesList[i].mainSeries = seriesList[0]; + } + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var backwardCompat$2 = function (option) { + // Save geoCoord + var mapSeries = []; + each$1(option.series, function (seriesOpt) { + if (seriesOpt && seriesOpt.type === 'map') { + mapSeries.push(seriesOpt); + seriesOpt.map = seriesOpt.map || seriesOpt.mapType; + // Put x, y, width, height, x2, y2 in the top level + defaults(seriesOpt, seriesOpt.mapLocation); + } + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerLayout(mapSymbolLayout); +registerVisual(mapVisual); +registerProcessor(PRIORITY.PROCESSOR.STATISTIC, mapDataStatistic); +registerPreprocessor(backwardCompat$2); + +createDataSelectAction('map', [{ + type: 'mapToggleSelect', + event: 'mapselectchanged', + method: 'toggleSelected' +}, { + type: 'mapSelect', + event: 'mapselected', + method: 'select' +}, { + type: 'mapUnSelect', + event: 'mapunselected', + method: 'unSelect' +}]); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Link lists and struct (graph or tree) + */ + +var each$7 = each$1; + +var DATAS = '\0__link_datas'; +var MAIN_DATA = '\0__link_mainData'; + +// Caution: +// In most case, either list or its shallow clones (see list.cloneShallow) +// is active in echarts process. So considering heap memory consumption, +// we do not clone tree or graph, but share them among list and its shallow clones. +// But in some rare case, we have to keep old list (like do animation in chart). So +// please take care that both the old list and the new list share the same tree/graph. + +/** + * @param {Object} opt + * @param {module:echarts/data/List} opt.mainData + * @param {Object} [opt.struct] For example, instance of Graph or Tree. + * @param {string} [opt.structAttr] designation: list[structAttr] = struct; + * @param {Object} [opt.datas] {dataType: data}, + * like: {node: nodeList, edge: edgeList}. + * Should contain mainData. + * @param {Object} [opt.datasAttr] {dataType: attr}, + * designation: struct[datasAttr[dataType]] = list; + */ +function linkList(opt) { + var mainData = opt.mainData; + var datas = opt.datas; + + if (!datas) { + datas = {main: mainData}; + opt.datasAttr = {main: 'data'}; + } + opt.datas = opt.mainData = null; + + linkAll(mainData, datas, opt); + + // Porxy data original methods. + each$7(datas, function (data) { + each$7(mainData.TRANSFERABLE_METHODS, function (methodName) { + data.wrapMethod(methodName, curry(transferInjection, opt)); + }); + + }); + + // Beyond transfer, additional features should be added to `cloneShallow`. + mainData.wrapMethod('cloneShallow', curry(cloneShallowInjection, opt)); + + // Only mainData trigger change, because struct.update may trigger + // another changable methods, which may bring about dead lock. + each$7(mainData.CHANGABLE_METHODS, function (methodName) { + mainData.wrapMethod(methodName, curry(changeInjection, opt)); + }); + + // Make sure datas contains mainData. + assert$1(datas[mainData.dataType] === mainData); +} + +function transferInjection(opt, res) { + if (isMainData(this)) { + // Transfer datas to new main data. + var datas = extend({}, this[DATAS]); + datas[this.dataType] = res; + linkAll(res, datas, opt); + } + else { + // Modify the reference in main data to point newData. + linkSingle(res, this.dataType, this[MAIN_DATA], opt); + } + return res; +} + +function changeInjection(opt, res) { + opt.struct && opt.struct.update(this); + return res; +} + +function cloneShallowInjection(opt, res) { + // cloneShallow, which brings about some fragilities, may be inappropriate + // to be exposed as an API. So for implementation simplicity we can make + // the restriction that cloneShallow of not-mainData should not be invoked + // outside, but only be invoked here. + each$7(res[DATAS], function (data, dataType) { + data !== res && linkSingle(data.cloneShallow(), dataType, res, opt); + }); + return res; +} + +/** + * Supplement method to List. + * + * @public + * @param {string} [dataType] If not specified, return mainData. + * @return {module:echarts/data/List} + */ +function getLinkedData(dataType) { + var mainData = this[MAIN_DATA]; + return (dataType == null || mainData == null) + ? mainData + : mainData[DATAS][dataType]; +} + +function isMainData(data) { + return data[MAIN_DATA] === data; +} + +function linkAll(mainData, datas, opt) { + mainData[DATAS] = {}; + each$7(datas, function (data, dataType) { + linkSingle(data, dataType, mainData, opt); + }); +} + +function linkSingle(data, dataType, mainData, opt) { + mainData[DATAS][dataType] = data; + data[MAIN_DATA] = mainData; + data.dataType = dataType; + + if (opt.struct) { + data[opt.structAttr] = opt.struct; + opt.struct[opt.datasAttr[dataType]] = data; + } + + // Supplement method. + data.getLinkedData = getLinkedData; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Tree data structure + * + * @module echarts/data/Tree + */ + +/** + * @constructor module:echarts/data/Tree~TreeNode + * @param {string} name + * @param {module:echarts/data/Tree} hostTree + */ +var TreeNode = function (name, hostTree) { + /** + * @type {string} + */ + this.name = name || ''; + + /** + * Depth of node + * + * @type {number} + * @readOnly + */ + this.depth = 0; + + /** + * Height of the subtree rooted at this node. + * @type {number} + * @readOnly + */ + this.height = 0; + + /** + * @type {module:echarts/data/Tree~TreeNode} + * @readOnly + */ + this.parentNode = null; + + /** + * Reference to list item. + * Do not persistent dataIndex outside, + * besause it may be changed by list. + * If dataIndex -1, + * this node is logical deleted (filtered) in list. + * + * @type {Object} + * @readOnly + */ + this.dataIndex = -1; + + /** + * @type {Array.} + * @readOnly + */ + this.children = []; + + /** + * @type {Array.} + * @pubilc + */ + this.viewChildren = []; + + /** + * @type {moduel:echarts/data/Tree} + * @readOnly + */ + this.hostTree = hostTree; +}; + +TreeNode.prototype = { + + constructor: TreeNode, + + /** + * The node is removed. + * @return {boolean} is removed. + */ + isRemoved: function () { + return this.dataIndex < 0; + }, + + /** + * Travel this subtree (include this node). + * Usage: + * node.eachNode(function () { ... }); // preorder + * node.eachNode('preorder', function () { ... }); // preorder + * node.eachNode('postorder', function () { ... }); // postorder + * node.eachNode( + * {order: 'postorder', attr: 'viewChildren'}, + * function () { ... } + * ); // postorder + * + * @param {(Object|string)} options If string, means order. + * @param {string=} options.order 'preorder' or 'postorder' + * @param {string=} options.attr 'children' or 'viewChildren' + * @param {Function} cb If in preorder and return false, + * its subtree will not be visited. + * @param {Object} [context] + */ + eachNode: function (options, cb, context) { + if (typeof options === 'function') { + context = cb; + cb = options; + options = null; + } + + options = options || {}; + if (isString(options)) { + options = {order: options}; + } + + var order = options.order || 'preorder'; + var children = this[options.attr || 'children']; + + var suppressVisitSub; + order === 'preorder' && (suppressVisitSub = cb.call(context, this)); + + for (var i = 0; !suppressVisitSub && i < children.length; i++) { + children[i].eachNode(options, cb, context); + } + + order === 'postorder' && cb.call(context, this); + }, + + /** + * Update depth and height of this subtree. + * + * @param {number} depth + */ + updateDepthAndHeight: function (depth) { + var height = 0; + this.depth = depth; + for (var i = 0; i < this.children.length; i++) { + var child = this.children[i]; + child.updateDepthAndHeight(depth + 1); + if (child.height > height) { + height = child.height; + } + } + this.height = height + 1; + }, + + /** + * @param {string} id + * @return {module:echarts/data/Tree~TreeNode} + */ + getNodeById: function (id) { + if (this.getId() === id) { + return this; + } + for (var i = 0, children = this.children, len = children.length; i < len; i++) { + var res = children[i].getNodeById(id); + if (res) { + return res; + } + } + }, + + /** + * @param {module:echarts/data/Tree~TreeNode} node + * @return {boolean} + */ + contains: function (node) { + if (node === this) { + return true; + } + for (var i = 0, children = this.children, len = children.length; i < len; i++) { + var res = children[i].contains(node); + if (res) { + return res; + } + } + }, + + /** + * @param {boolean} includeSelf Default false. + * @return {Array.} order: [root, child, grandchild, ...] + */ + getAncestors: function (includeSelf) { + var ancestors = []; + var node = includeSelf ? this : this.parentNode; + while (node) { + ancestors.push(node); + node = node.parentNode; + } + ancestors.reverse(); + return ancestors; + }, + + /** + * @param {string|Array=} [dimension='value'] Default 'value'. can be 0, 1, 2, 3 + * @return {number} Value. + */ + getValue: function (dimension) { + var data = this.hostTree.data; + return data.get(data.getDimension(dimension || 'value'), this.dataIndex); + }, + + /** + * @param {Object} layout + * @param {boolean=} [merge=false] + */ + setLayout: function (layout, merge$$1) { + this.dataIndex >= 0 + && this.hostTree.data.setItemLayout(this.dataIndex, layout, merge$$1); + }, + + /** + * @return {Object} layout + */ + getLayout: function () { + return this.hostTree.data.getItemLayout(this.dataIndex); + }, + + /** + * @param {string} [path] + * @return {module:echarts/model/Model} + */ + getModel: function (path) { + if (this.dataIndex < 0) { + return; + } + var hostTree = this.hostTree; + var itemModel = hostTree.data.getItemModel(this.dataIndex); + var levelModel = this.getLevelModel(); + var leavesModel; + if (!levelModel && (this.children.length === 0 || (this.children.length !== 0 && this.isExpand === false))) { + leavesModel = this.getLeavesModel(); + } + return itemModel.getModel(path, (levelModel || leavesModel || hostTree.hostModel).getModel(path)); + }, + + /** + * @return {module:echarts/model/Model} + */ + getLevelModel: function () { + return (this.hostTree.levelModels || [])[this.depth]; + }, + + /** + * @return {module:echarts/model/Model} + */ + getLeavesModel: function () { + return this.hostTree.leavesModel; + }, + + /** + * @example + * setItemVisual('color', color); + * setItemVisual({ + * 'color': color + * }); + */ + setVisual: function (key, value) { + this.dataIndex >= 0 + && this.hostTree.data.setItemVisual(this.dataIndex, key, value); + }, + + /** + * Get item visual + */ + getVisual: function (key, ignoreParent) { + return this.hostTree.data.getItemVisual(this.dataIndex, key, ignoreParent); + }, + + /** + * @public + * @return {number} + */ + getRawIndex: function () { + return this.hostTree.data.getRawIndex(this.dataIndex); + }, + + /** + * @public + * @return {string} + */ + getId: function () { + return this.hostTree.data.getId(this.dataIndex); + }, + + /** + * if this is an ancestor of another node + * + * @public + * @param {TreeNode} node another node + * @return {boolean} if is ancestor + */ + isAncestorOf: function (node) { + var parent = node.parentNode; + while (parent) { + if (parent === this) { + return true; + } + parent = parent.parentNode; + } + return false; + }, + + /** + * if this is an descendant of another node + * + * @public + * @param {TreeNode} node another node + * @return {boolean} if is descendant + */ + isDescendantOf: function (node) { + return node !== this && node.isAncestorOf(this); + } +}; + +/** + * @constructor + * @alias module:echarts/data/Tree + * @param {module:echarts/model/Model} hostModel + * @param {Array.} levelOptions + * @param {Object} leavesOption + */ +function Tree(hostModel, levelOptions, leavesOption) { + /** + * @type {module:echarts/data/Tree~TreeNode} + * @readOnly + */ + this.root; + + /** + * @type {module:echarts/data/List} + * @readOnly + */ + this.data; + + /** + * Index of each item is the same as the raw index of coresponding list item. + * @private + * @type {Array.} treeOptions.levels + * @param {Array.} treeOptions.leaves + * @return module:echarts/data/Tree + */ +Tree.createTree = function (dataRoot, hostModel, treeOptions) { + + var tree = new Tree(hostModel, treeOptions.levels, treeOptions.leaves); + var listData = []; + var dimMax = 1; + + buildHierarchy(dataRoot); + + function buildHierarchy(dataNode, parentNode) { + var value = dataNode.value; + dimMax = Math.max(dimMax, isArray(value) ? value.length : 1); + + listData.push(dataNode); + + var node = new TreeNode(dataNode.name, tree); + parentNode + ? addChild(node, parentNode) + : (tree.root = node); + + tree._nodes.push(node); + + var children = dataNode.children; + if (children) { + for (var i = 0; i < children.length; i++) { + buildHierarchy(children[i], node); + } + } + } + + tree.root.updateDepthAndHeight(0); + + var dimensionsInfo = createDimensions(listData, { + coordDimensions: ['value'], + dimensionsCount: dimMax + }); + + var list = new List(dimensionsInfo, hostModel); + list.initData(listData); + + linkList({ + mainData: list, + struct: tree, + structAttr: 'tree' + }); + + tree.update(); + + return tree; +}; + +/** + * It is needed to consider the mess of 'list', 'hostModel' when creating a TreeNote, + * so this function is not ready and not necessary to be public. + * + * @param {(module:echarts/data/Tree~TreeNode|Object)} child + */ +function addChild(child, node) { + var children = node.children; + if (child.parentNode === node) { + return; + } + + children.push(child); + child.parentNode = node; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +SeriesModel.extend({ + + type: 'series.tree', + + layoutInfo: null, + + // can support the position parameters 'left', 'top','right','bottom', 'width', + // 'height' in the setOption() with 'merge' mode normal. + layoutMode: 'box', + + /** + * Init a tree data structure from data in option series + * @param {Object} option the object used to config echarts view + * @return {module:echarts/data/List} storage initial data + */ + getInitialData: function (option) { + + //create an virtual root + var root = {name: option.name, children: option.data}; + + var leaves = option.leaves || {}; + + var treeOption = {}; + + treeOption.leaves = leaves; + + var tree = Tree.createTree(root, this, treeOption); + + var treeDepth = 0; + + tree.eachNode('preorder', function (node) { + if (node.depth > treeDepth) { + treeDepth = node.depth; + } + }); + + var expandAndCollapse = option.expandAndCollapse; + var expandTreeDepth = (expandAndCollapse && option.initialTreeDepth >= 0) + ? option.initialTreeDepth : treeDepth; + + tree.root.eachNode('preorder', function (node) { + var item = node.hostTree.data.getRawDataItem(node.dataIndex); + // Add item.collapsed != null, because users can collapse node original in the series.data. + node.isExpand = (item && item.collapsed != null) + ? !item.collapsed + : node.depth <= expandTreeDepth; + }); + + return tree.data; + }, + + /** + * Make the configuration 'orient' backward compatibly, with 'horizontal = LR', 'vertical = TB'. + * @returns {string} orient + */ + getOrient: function () { + var orient = this.get('orient'); + if (orient === 'horizontal') { + orient = 'LR'; + } + else if (orient === 'vertical') { + orient = 'TB'; + } + return orient; + }, + + setZoom: function (zoom) { + this.option.zoom = zoom; + }, + + setCenter: function (center) { + this.option.center = center; + }, + + /** + * @override + * @param {number} dataIndex + */ + formatTooltip: function (dataIndex) { + var tree = this.getData().tree; + var realRoot = tree.root.children[0]; + var node = tree.getNodeByDataIndex(dataIndex); + var value = node.getValue(); + var name = node.name; + while (node && (node !== realRoot)) { + name = node.parentNode.name + '.' + name; + node = node.parentNode; + } + return encodeHTML(name + ( + (isNaN(value) || value == null) ? '' : ' : ' + value + )); + }, + + defaultOption: { + zlevel: 0, + z: 2, + coordinateSystem: 'view', + + // the position of the whole view + left: '12%', + top: '12%', + right: '12%', + bottom: '12%', + + // the layout of the tree, two value can be selected, 'orthogonal' or 'radial' + layout: 'orthogonal', + + roam: false, // true | false | 'move' | 'scale', see module:component/helper/RoamController. + // Symbol size scale ratio in roam + nodeScaleRatio: 0.4, + + // Default on center of graph + center: null, + + zoom: 1, + + // The orient of orthoginal layout, can be setted to 'LR', 'TB', 'RL', 'BT'. + // and the backward compatibility configuration 'horizontal = LR', 'vertical = TB'. + orient: 'LR', + + symbol: 'emptyCircle', + + symbolSize: 7, + + expandAndCollapse: true, + + initialTreeDepth: 2, + + lineStyle: { + color: '#ccc', + width: 1.5, + curveness: 0.5 + }, + + itemStyle: { + color: 'lightsteelblue', + borderColor: '#c23531', + borderWidth: 1.5 + }, + + label: { + show: true, + color: '#555' + }, + + leaves: { + label: { + show: true + } + }, + + animationEasing: 'linear', + + animationDuration: 700, + + animationDurationUpdate: 1000 + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* A third-party license is embeded for some of the code in this file: +* The tree layoutHelper implementation was originally copied from +* "d3.js"(https://github.com/d3/d3-hierarchy) with +* some modifications made for this project. +* (see more details in the comment of the specific method below.) +* The use of the source code of this file is also subject to the terms +* and consitions of the licence of "d3.js" (BSD-3Clause, see +* ). +*/ + +/** + * @file The layout algorithm of node-link tree diagrams. Here we using Reingold-Tilford algorithm to drawing + * the tree. + */ + +/** + * Initialize all computational message for following algorithm. + * + * @param {module:echarts/data/Tree~TreeNode} root The virtual root of the tree. + */ +function init$2(root) { + root.hierNode = { + defaultAncestor: null, + ancestor: root, + prelim: 0, + modifier: 0, + change: 0, + shift: 0, + i: 0, + thread: null + }; + + var nodes = [root]; + var node; + var children; + + while (node = nodes.pop()) { // jshint ignore:line + children = node.children; + if (node.isExpand && children.length) { + var n = children.length; + for (var i = n - 1; i >= 0; i--) { + var child = children[i]; + child.hierNode = { + defaultAncestor: null, + ancestor: child, + prelim: 0, + modifier: 0, + change: 0, + shift: 0, + i: i, + thread: null + }; + nodes.push(child); + } + } + } +} + +/** + * The implementation of this function was originally copied from "d3.js" + * + * with some modifications made for this program. + * See the license statement at the head of this file. + * + * Computes a preliminary x coordinate for node. Before that, this function is + * applied recursively to the children of node, as well as the function + * apportion(). After spacing out the children by calling executeShifts(), the + * node is placed to the midpoint of its outermost children. + * + * @param {module:echarts/data/Tree~TreeNode} node + * @param {Function} separation + */ +function firstWalk(node, separation) { + var children = node.isExpand ? node.children : []; + var siblings = node.parentNode.children; + var subtreeW = node.hierNode.i ? siblings[node.hierNode.i - 1] : null; + if (children.length) { + executeShifts(node); + var midPoint = (children[0].hierNode.prelim + children[children.length - 1].hierNode.prelim) / 2; + if (subtreeW) { + node.hierNode.prelim = subtreeW.hierNode.prelim + separation(node, subtreeW); + node.hierNode.modifier = node.hierNode.prelim - midPoint; + } + else { + node.hierNode.prelim = midPoint; + } + } + else if (subtreeW) { + node.hierNode.prelim = subtreeW.hierNode.prelim + separation(node, subtreeW); + } + node.parentNode.hierNode.defaultAncestor = apportion( + node, + subtreeW, + node.parentNode.hierNode.defaultAncestor || siblings[0], + separation + ); +} + + +/** + * The implementation of this function was originally copied from "d3.js" + * + * with some modifications made for this program. + * See the license statement at the head of this file. + * + * Computes all real x-coordinates by summing up the modifiers recursively. + * + * @param {module:echarts/data/Tree~TreeNode} node + */ +function secondWalk(node) { + var nodeX = node.hierNode.prelim + node.parentNode.hierNode.modifier; + node.setLayout({x: nodeX}, true); + node.hierNode.modifier += node.parentNode.hierNode.modifier; +} + + +function separation(cb) { + return arguments.length ? cb : defaultSeparation; +} + +/** + * Transform the common coordinate to radial coordinate. + * + * @param {number} x + * @param {number} y + * @return {Object} + */ +function radialCoordinate(x, y) { + var radialCoor = {}; + x -= Math.PI / 2; + radialCoor.x = y * Math.cos(x); + radialCoor.y = y * Math.sin(x); + return radialCoor; +} + +/** + * Get the layout position of the whole view. + * + * @param {module:echarts/model/Series} seriesModel the model object of sankey series + * @param {module:echarts/ExtensionAPI} api provide the API list that the developer can call + * @return {module:zrender/core/BoundingRect} size of rect to draw the sankey view + */ +function getViewRect(seriesModel, api) { + return getLayoutRect( + seriesModel.getBoxLayoutParams(), { + width: api.getWidth(), + height: api.getHeight() + } + ); +} + +/** + * All other shifts, applied to the smaller subtrees between w- and w+, are + * performed by this function. + * + * The implementation of this function was originally copied from "d3.js" + * + * with some modifications made for this program. + * See the license statement at the head of this file. + * + * @param {module:echarts/data/Tree~TreeNode} node + */ +function executeShifts(node) { + var children = node.children; + var n = children.length; + var shift = 0; + var change = 0; + while (--n >= 0) { + var child = children[n]; + child.hierNode.prelim += shift; + child.hierNode.modifier += shift; + change += child.hierNode.change; + shift += child.hierNode.shift + change; + } +} + +/** + * The implementation of this function was originally copied from "d3.js" + * + * with some modifications made for this program. + * See the license statement at the head of this file. + * + * The core of the algorithm. Here, a new subtree is combined with the + * previous subtrees. Threads are used to traverse the inside and outside + * contours of the left and right subtree up to the highest common level. + * Whenever two nodes of the inside contours conflict, we compute the left + * one of the greatest uncommon ancestors using the function nextAncestor() + * and call moveSubtree() to shift the subtree and prepare the shifts of + * smaller subtrees. Finally, we add a new thread (if necessary). + * + * @param {module:echarts/data/Tree~TreeNode} subtreeV + * @param {module:echarts/data/Tree~TreeNode} subtreeW + * @param {module:echarts/data/Tree~TreeNode} ancestor + * @param {Function} separation + * @return {module:echarts/data/Tree~TreeNode} + */ +function apportion(subtreeV, subtreeW, ancestor, separation) { + + if (subtreeW) { + var nodeOutRight = subtreeV; + var nodeInRight = subtreeV; + var nodeOutLeft = nodeInRight.parentNode.children[0]; + var nodeInLeft = subtreeW; + + var sumOutRight = nodeOutRight.hierNode.modifier; + var sumInRight = nodeInRight.hierNode.modifier; + var sumOutLeft = nodeOutLeft.hierNode.modifier; + var sumInLeft = nodeInLeft.hierNode.modifier; + + while (nodeInLeft = nextRight(nodeInLeft), nodeInRight = nextLeft(nodeInRight), nodeInLeft && nodeInRight) { + nodeOutRight = nextRight(nodeOutRight); + nodeOutLeft = nextLeft(nodeOutLeft); + nodeOutRight.hierNode.ancestor = subtreeV; + var shift = nodeInLeft.hierNode.prelim + sumInLeft - nodeInRight.hierNode.prelim + - sumInRight + separation(nodeInLeft, nodeInRight); + if (shift > 0) { + moveSubtree(nextAncestor(nodeInLeft, subtreeV, ancestor), subtreeV, shift); + sumInRight += shift; + sumOutRight += shift; + } + sumInLeft += nodeInLeft.hierNode.modifier; + sumInRight += nodeInRight.hierNode.modifier; + sumOutRight += nodeOutRight.hierNode.modifier; + sumOutLeft += nodeOutLeft.hierNode.modifier; + } + if (nodeInLeft && !nextRight(nodeOutRight)) { + nodeOutRight.hierNode.thread = nodeInLeft; + nodeOutRight.hierNode.modifier += sumInLeft - sumOutRight; + + } + if (nodeInRight && !nextLeft(nodeOutLeft)) { + nodeOutLeft.hierNode.thread = nodeInRight; + nodeOutLeft.hierNode.modifier += sumInRight - sumOutLeft; + ancestor = subtreeV; + } + } + return ancestor; +} + +/** + * This function is used to traverse the right contour of a subtree. + * It returns the rightmost child of node or the thread of node. The function + * returns null if and only if node is on the highest depth of its subtree. + * + * @param {module:echarts/data/Tree~TreeNode} node + * @return {module:echarts/data/Tree~TreeNode} + */ +function nextRight(node) { + var children = node.children; + return children.length && node.isExpand ? children[children.length - 1] : node.hierNode.thread; +} + +/** + * This function is used to traverse the left contour of a subtree (or a subforest). + * It returns the leftmost child of node or the thread of node. The function + * returns null if and only if node is on the highest depth of its subtree. + * + * @param {module:echarts/data/Tree~TreeNode} node + * @return {module:echarts/data/Tree~TreeNode} + */ +function nextLeft(node) { + var children = node.children; + return children.length && node.isExpand ? children[0] : node.hierNode.thread; +} + +/** + * If nodeInLeft’s ancestor is a sibling of node, returns nodeInLeft’s ancestor. + * Otherwise, returns the specified ancestor. + * + * @param {module:echarts/data/Tree~TreeNode} nodeInLeft + * @param {module:echarts/data/Tree~TreeNode} node + * @param {module:echarts/data/Tree~TreeNode} ancestor + * @return {module:echarts/data/Tree~TreeNode} + */ +function nextAncestor(nodeInLeft, node, ancestor) { + return nodeInLeft.hierNode.ancestor.parentNode === node.parentNode + ? nodeInLeft.hierNode.ancestor : ancestor; +} + +/** + * The implementation of this function was originally copied from "d3.js" + * + * with some modifications made for this program. + * See the license statement at the head of this file. + * + * Shifts the current subtree rooted at wr. + * This is done by increasing prelim(w+) and modifier(w+) by shift. + * + * @param {module:echarts/data/Tree~TreeNode} wl + * @param {module:echarts/data/Tree~TreeNode} wr + * @param {number} shift [description] + */ +function moveSubtree(wl, wr, shift) { + var change = shift / (wr.hierNode.i - wl.hierNode.i); + wr.hierNode.change -= change; + wr.hierNode.shift += shift; + wr.hierNode.modifier += shift; + wr.hierNode.prelim += shift; + wl.hierNode.change += change; +} + +/** + * The implementation of this function was originally copied from "d3.js" + * + * with some modifications made for this program. + * See the license statement at the head of this file. + */ +function defaultSeparation(node1, node2) { + return node1.parentNode === node2.parentNode ? 1 : 2; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +extendChartView({ + + type: 'tree', + + /** + * Init the chart + * @override + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + */ + init: function (ecModel, api) { + + /** + * @private + * @type {module:echarts/data/Tree} + */ + this._oldTree; + + /** + * @private + * @type {module:zrender/container/Group} + */ + this._mainGroup = new Group(); + + /** + * @private + * @type {module:echarts/componet/helper/RoamController} + */ + this._controller = new RoamController(api.getZr()); + + this._controllerHost = {target: this.group}; + + this.group.add(this._mainGroup); + }, + + render: function (seriesModel, ecModel, api, payload) { + var data = seriesModel.getData(); + + var layoutInfo = seriesModel.layoutInfo; + + var group = this._mainGroup; + + var layout = seriesModel.get('layout'); + + if (layout === 'radial') { + group.attr('position', [layoutInfo.x + layoutInfo.width / 2, layoutInfo.y + layoutInfo.height / 2]); + } + else { + group.attr('position', [layoutInfo.x, layoutInfo.y]); + } + + this._updateViewCoordSys(seriesModel); + this._updateController(seriesModel, ecModel, api); + + var oldData = this._data; + + var seriesScope = { + expandAndCollapse: seriesModel.get('expandAndCollapse'), + layout: layout, + orient: seriesModel.getOrient(), + curvature: seriesModel.get('lineStyle.curveness'), + symbolRotate: seriesModel.get('symbolRotate'), + symbolOffset: seriesModel.get('symbolOffset'), + hoverAnimation: seriesModel.get('hoverAnimation'), + useNameLabel: true, + fadeIn: true + }; + + data.diff(oldData) + .add(function (newIdx) { + if (symbolNeedsDraw$1(data, newIdx)) { + // Create node and edge + updateNode(data, newIdx, null, group, seriesModel, seriesScope); + } + }) + .update(function (newIdx, oldIdx) { + var symbolEl = oldData.getItemGraphicEl(oldIdx); + if (!symbolNeedsDraw$1(data, newIdx)) { + symbolEl && removeNode(oldData, oldIdx, symbolEl, group, seriesModel, seriesScope); + return; + } + // Update node and edge + updateNode(data, newIdx, symbolEl, group, seriesModel, seriesScope); + }) + .remove(function (oldIdx) { + var symbolEl = oldData.getItemGraphicEl(oldIdx); + // When remove a collapsed node of subtree, since the collapsed + // node haven't been initialized with a symbol element, + // you can't found it's symbol element through index. + // so if we want to remove the symbol element we should insure + // that the symbol element is not null. + if (symbolEl) { + removeNode(oldData, oldIdx, symbolEl, group, seriesModel, seriesScope); + } + }) + .execute(); + + this._nodeScaleRatio = seriesModel.get('nodeScaleRatio'); + + this._updateNodeAndLinkScale(seriesModel); + + if (seriesScope.expandAndCollapse === true) { + data.eachItemGraphicEl(function (el, dataIndex) { + el.off('click').on('click', function () { + api.dispatchAction({ + type: 'treeExpandAndCollapse', + seriesId: seriesModel.id, + dataIndex: dataIndex + }); + }); + }); + } + this._data = data; + }, + + _updateViewCoordSys: function (seriesModel) { + var data = seriesModel.getData(); + var points = []; + data.each(function (idx) { + var layout = data.getItemLayout(idx); + if (layout && !isNaN(layout.x) && !isNaN(layout.y)) { + points.push([+layout.x, +layout.y]); + } + }); + var min = []; + var max = []; + fromPoints(points, min, max); + // If width or height is 0 + if (max[0] - min[0] === 0) { + max[0] += 1; + min[0] -= 1; + } + if (max[1] - min[1] === 0) { + max[1] += 1; + min[1] -= 1; + } + + var viewCoordSys = seriesModel.coordinateSystem = new View(); + viewCoordSys.zoomLimit = seriesModel.get('scaleLimit'); + + viewCoordSys.setBoundingRect(min[0], min[1], max[0] - min[0], max[1] - min[1]); + + viewCoordSys.setCenter(seriesModel.get('center')); + viewCoordSys.setZoom(seriesModel.get('zoom')); + + // Here we use viewCoordSys just for computing the 'position' and 'scale' of the group + this.group.attr({ + position: viewCoordSys.position, + scale: viewCoordSys.scale + }); + + this._viewCoordSys = viewCoordSys; + }, + + _updateController: function (seriesModel, ecModel, api) { + var controller = this._controller; + var controllerHost = this._controllerHost; + var group = this.group; + controller.setPointerChecker(function (e, x, y) { + var rect = group.getBoundingRect(); + rect.applyTransform(group.transform); + return rect.contain(x, y) + && !onIrrelevantElement(e, api, seriesModel); + }); + + controller.enable(seriesModel.get('roam')); + controllerHost.zoomLimit = seriesModel.get('scaleLimit'); + controllerHost.zoom = seriesModel.coordinateSystem.getZoom(); + + controller + .off('pan') + .off('zoom') + .on('pan', function (e) { + updateViewOnPan(controllerHost, e.dx, e.dy); + api.dispatchAction({ + seriesId: seriesModel.id, + type: 'treeRoam', + dx: e.dx, + dy: e.dy + }); + }, this) + .on('zoom', function (e) { + updateViewOnZoom(controllerHost, e.scale, e.originX, e.originY); + api.dispatchAction({ + seriesId: seriesModel.id, + type: 'treeRoam', + zoom: e.scale, + originX: e.originX, + originY: e.originY + }); + this._updateNodeAndLinkScale(seriesModel); + }, this); + }, + + _updateNodeAndLinkScale: function (seriesModel) { + var data = seriesModel.getData(); + + var nodeScale = this._getNodeGlobalScale(seriesModel); + var invScale = [nodeScale, nodeScale]; + + data.eachItemGraphicEl(function (el, idx) { + el.attr('scale', invScale); + }); + }, + + _getNodeGlobalScale: function (seriesModel) { + var coordSys = seriesModel.coordinateSystem; + if (coordSys.type !== 'view') { + return 1; + } + + var nodeScaleRatio = this._nodeScaleRatio; + + var groupScale = coordSys.scale; + var groupZoom = (groupScale && groupScale[0]) || 1; + // Scale node when zoom changes + var roamZoom = coordSys.getZoom(); + var nodeScale = (roamZoom - 1) * nodeScaleRatio + 1; + + return nodeScale / groupZoom; + }, + + dispose: function () { + this._controller && this._controller.dispose(); + this._controllerHost = {}; + }, + + remove: function () { + this._mainGroup.removeAll(); + this._data = null; + } + +}); + +function symbolNeedsDraw$1(data, dataIndex) { + var layout = data.getItemLayout(dataIndex); + + return layout + && !isNaN(layout.x) && !isNaN(layout.y) + && data.getItemVisual(dataIndex, 'symbol') !== 'none'; +} + +function getTreeNodeStyle(node, itemModel, seriesScope) { + seriesScope.itemModel = itemModel; + seriesScope.itemStyle = itemModel.getModel('itemStyle').getItemStyle(); + seriesScope.hoverItemStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle(); + seriesScope.lineStyle = itemModel.getModel('lineStyle').getLineStyle(); + seriesScope.labelModel = itemModel.getModel('label'); + seriesScope.hoverLabelModel = itemModel.getModel('emphasis.label'); + + if (node.isExpand === false && node.children.length !== 0) { + seriesScope.symbolInnerColor = seriesScope.itemStyle.fill; + } + else { + seriesScope.symbolInnerColor = '#fff'; + } + + return seriesScope; +} + +function updateNode(data, dataIndex, symbolEl, group, seriesModel, seriesScope) { + var isInit = !symbolEl; + var node = data.tree.getNodeByDataIndex(dataIndex); + var itemModel = node.getModel(); + var seriesScope = getTreeNodeStyle(node, itemModel, seriesScope); + var virtualRoot = data.tree.root; + + var source = node.parentNode === virtualRoot ? node : node.parentNode || node; + var sourceSymbolEl = data.getItemGraphicEl(source.dataIndex); + var sourceLayout = source.getLayout(); + var sourceOldLayout = sourceSymbolEl + ? { + x: sourceSymbolEl.position[0], + y: sourceSymbolEl.position[1], + rawX: sourceSymbolEl.__radialOldRawX, + rawY: sourceSymbolEl.__radialOldRawY + } + : sourceLayout; + var targetLayout = node.getLayout(); + + if (isInit) { + symbolEl = new SymbolClz$1(data, dataIndex, seriesScope); + symbolEl.attr('position', [sourceOldLayout.x, sourceOldLayout.y]); + } + else { + symbolEl.updateData(data, dataIndex, seriesScope); + } + + symbolEl.__radialOldRawX = symbolEl.__radialRawX; + symbolEl.__radialOldRawY = symbolEl.__radialRawY; + symbolEl.__radialRawX = targetLayout.rawX; + symbolEl.__radialRawY = targetLayout.rawY; + + group.add(symbolEl); + data.setItemGraphicEl(dataIndex, symbolEl); + updateProps(symbolEl, { + position: [targetLayout.x, targetLayout.y] + }, seriesModel); + + var symbolPath = symbolEl.getSymbolPath(); + + if (seriesScope.layout === 'radial') { + var realRoot = virtualRoot.children[0]; + var rootLayout = realRoot.getLayout(); + var length = realRoot.children.length; + var rad; + var isLeft; + + if (targetLayout.x === rootLayout.x && node.isExpand === true) { + var center = {}; + center.x = (realRoot.children[0].getLayout().x + realRoot.children[length - 1].getLayout().x) / 2; + center.y = (realRoot.children[0].getLayout().y + realRoot.children[length - 1].getLayout().y) / 2; + rad = Math.atan2(center.y - rootLayout.y, center.x - rootLayout.x); + if (rad < 0) { + rad = Math.PI * 2 + rad; + } + isLeft = center.x < rootLayout.x; + if (isLeft) { + rad = rad - Math.PI; + } + } + else { + rad = Math.atan2(targetLayout.y - rootLayout.y, targetLayout.x - rootLayout.x); + if (rad < 0) { + rad = Math.PI * 2 + rad; + } + if (node.children.length === 0 || (node.children.length !== 0 && node.isExpand === false)) { + isLeft = targetLayout.x < rootLayout.x; + if (isLeft) { + rad = rad - Math.PI; + } + } + else { + isLeft = targetLayout.x > rootLayout.x; + if (!isLeft) { + rad = rad - Math.PI; + } + } + } + + var textPosition = isLeft ? 'left' : 'right'; + symbolPath.setStyle({ + textPosition: textPosition, + textRotation: -rad, + textOrigin: 'center', + verticalAlign: 'middle' + }); + } + + if (node.parentNode && node.parentNode !== virtualRoot) { + var edge = symbolEl.__edge; + if (!edge) { + edge = symbolEl.__edge = new BezierCurve({ + shape: getEdgeShape(seriesScope, sourceOldLayout, sourceOldLayout), + style: defaults({opacity: 0, strokeNoScale: true}, seriesScope.lineStyle) + }); + } + + updateProps(edge, { + shape: getEdgeShape(seriesScope, sourceLayout, targetLayout), + style: {opacity: 1} + }, seriesModel); + + group.add(edge); + } +} + +function removeNode(data, dataIndex, symbolEl, group, seriesModel, seriesScope) { + var node = data.tree.getNodeByDataIndex(dataIndex); + var virtualRoot = data.tree.root; + var itemModel = node.getModel(); + var seriesScope = getTreeNodeStyle(node, itemModel, seriesScope); + + var source = node.parentNode === virtualRoot ? node : node.parentNode || node; + var sourceLayout; + while (sourceLayout = source.getLayout(), sourceLayout == null) { + source = source.parentNode === virtualRoot ? source : source.parentNode || source; + } + + updateProps(symbolEl, { + position: [sourceLayout.x + 1, sourceLayout.y + 1] + }, seriesModel, function () { + group.remove(symbolEl); + data.setItemGraphicEl(dataIndex, null); + }); + + symbolEl.fadeOut(null, {keepLabel: true}); + + var edge = symbolEl.__edge; + if (edge) { + updateProps(edge, { + shape: getEdgeShape(seriesScope, sourceLayout, sourceLayout), + style: { + opacity: 0 + } + }, seriesModel, function () { + group.remove(edge); + }); + } +} + +function getEdgeShape(seriesScope, sourceLayout, targetLayout) { + var cpx1; + var cpy1; + var cpx2; + var cpy2; + var orient = seriesScope.orient; + var x1; + var x2; + var y1; + var y2; + + if (seriesScope.layout === 'radial') { + x1 = sourceLayout.rawX; + y1 = sourceLayout.rawY; + x2 = targetLayout.rawX; + y2 = targetLayout.rawY; + + var radialCoor1 = radialCoordinate(x1, y1); + var radialCoor2 = radialCoordinate(x1, y1 + (y2 - y1) * seriesScope.curvature); + var radialCoor3 = radialCoordinate(x2, y2 + (y1 - y2) * seriesScope.curvature); + var radialCoor4 = radialCoordinate(x2, y2); + + return { + x1: radialCoor1.x, + y1: radialCoor1.y, + x2: radialCoor4.x, + y2: radialCoor4.y, + cpx1: radialCoor2.x, + cpy1: radialCoor2.y, + cpx2: radialCoor3.x, + cpy2: radialCoor3.y + }; + } + else { + x1 = sourceLayout.x; + y1 = sourceLayout.y; + x2 = targetLayout.x; + y2 = targetLayout.y; + + if (orient === 'LR' || orient === 'RL') { + cpx1 = x1 + (x2 - x1) * seriesScope.curvature; + cpy1 = y1; + cpx2 = x2 + (x1 - x2) * seriesScope.curvature; + cpy2 = y2; + } + if (orient === 'TB' || orient === 'BT') { + cpx1 = x1; + cpy1 = y1 + (y2 - y1) * seriesScope.curvature; + cpx2 = x2; + cpy2 = y2 + (y1 - y2) * seriesScope.curvature; + } + } + + return { + x1: x1, + y1: y1, + x2: x2, + y2: y2, + cpx1: cpx1, + cpy1: cpy1, + cpx2: cpx2, + cpy2: cpy2 + }; + +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerAction({ + type: 'treeExpandAndCollapse', + event: 'treeExpandAndCollapse', + update: 'update' +}, function (payload, ecModel) { + ecModel.eachComponent({mainType: 'series', subType: 'tree', query: payload}, function (seriesModel) { + var dataIndex = payload.dataIndex; + var tree = seriesModel.getData().tree; + var node = tree.getNodeByDataIndex(dataIndex); + node.isExpand = !node.isExpand; + + }); +}); + +registerAction({ + type: 'treeRoam', + event: 'treeRoam', + // Here we set 'none' instead of 'update', because roam action + // just need to update the transform matrix without having to recalculate + // the layout. So don't need to go through the whole update process, such + // as 'dataPrcocess', 'coordSystemUpdate', 'layout' and so on. + update: 'none' +}, function (payload, ecModel) { + ecModel.eachComponent({mainType: 'series', subType: 'tree', query: payload}, function (seriesModel) { + var coordSys = seriesModel.coordinateSystem; + var res = updateCenterAndZoom(coordSys, payload); + + seriesModel.setCenter + && seriesModel.setCenter(res.center); + + seriesModel.setZoom + && seriesModel.setZoom(res.zoom); + }); +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +/** + * Traverse the tree from bottom to top and do something + * @param {module:echarts/data/Tree~TreeNode} root The real root of the tree + * @param {Function} callback + */ +function eachAfter(root, callback, separation) { + var nodes = [root]; + var next = []; + var node; + + while (node = nodes.pop()) { // jshint ignore:line + next.push(node); + if (node.isExpand) { + var children = node.children; + if (children.length) { + for (var i = 0; i < children.length; i++) { + nodes.push(children[i]); + } + } + } + } + + while (node = next.pop()) { // jshint ignore:line + callback(node, separation); + } +} + +/** + * Traverse the tree from top to bottom and do something + * @param {module:echarts/data/Tree~TreeNode} root The real root of the tree + * @param {Function} callback + */ +function eachBefore(root, callback) { + var nodes = [root]; + var node; + while (node = nodes.pop()) { // jshint ignore:line + callback(node); + if (node.isExpand) { + var children = node.children; + if (children.length) { + for (var i = children.length - 1; i >= 0; i--) { + nodes.push(children[i]); + } + } + } + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var treeLayout = function (ecModel, api) { + ecModel.eachSeriesByType('tree', function (seriesModel) { + commonLayout(seriesModel, api); + }); +}; + +function commonLayout(seriesModel, api) { + var layoutInfo = getViewRect(seriesModel, api); + seriesModel.layoutInfo = layoutInfo; + var layout = seriesModel.get('layout'); + var width = 0; + var height = 0; + var separation$$1 = null; + + if (layout === 'radial') { + width = 2 * Math.PI; + height = Math.min(layoutInfo.height, layoutInfo.width) / 2; + separation$$1 = separation(function (node1, node2) { + return (node1.parentNode === node2.parentNode ? 1 : 2) / node1.depth; + }); + } + else { + width = layoutInfo.width; + height = layoutInfo.height; + separation$$1 = separation(); + } + + var virtualRoot = seriesModel.getData().tree.root; + var realRoot = virtualRoot.children[0]; + + if (realRoot) { + init$2(virtualRoot); + eachAfter(realRoot, firstWalk, separation$$1); + virtualRoot.hierNode.modifier = -realRoot.hierNode.prelim; + eachBefore(realRoot, secondWalk); + + var left = realRoot; + var right = realRoot; + var bottom = realRoot; + eachBefore(realRoot, function (node) { + var x = node.getLayout().x; + if (x < left.getLayout().x) { + left = node; + } + if (x > right.getLayout().x) { + right = node; + } + if (node.depth > bottom.depth) { + bottom = node; + } + }); + + var delta = left === right ? 1 : separation$$1(left, right) / 2; + var tx = delta - left.getLayout().x; + var kx = 0; + var ky = 0; + var coorX = 0; + var coorY = 0; + if (layout === 'radial') { + kx = width / (right.getLayout().x + delta + tx); + // here we use (node.depth - 1), bucause the real root's depth is 1 + ky = height / ((bottom.depth - 1) || 1); + eachBefore(realRoot, function (node) { + coorX = (node.getLayout().x + tx) * kx; + coorY = (node.depth - 1) * ky; + var finalCoor = radialCoordinate(coorX, coorY); + node.setLayout({x: finalCoor.x, y: finalCoor.y, rawX: coorX, rawY: coorY}, true); + }); + } + else { + var orient = seriesModel.getOrient(); + if (orient === 'RL' || orient === 'LR') { + ky = height / (right.getLayout().x + delta + tx); + kx = width / ((bottom.depth - 1) || 1); + eachBefore(realRoot, function (node) { + coorY = (node.getLayout().x + tx) * ky; + coorX = orient === 'LR' + ? (node.depth - 1) * kx + : width - (node.depth - 1) * kx; + node.setLayout({x: coorX, y: coorY}, true); + }); + } + else if (orient === 'TB' || orient === 'BT') { + kx = width / (right.getLayout().x + delta + tx); + ky = height / ((bottom.depth - 1) || 1); + eachBefore(realRoot, function (node) { + coorX = (node.getLayout().x + tx) * kx; + coorY = orient === 'TB' + ? (node.depth - 1) * ky + : height - (node.depth - 1) * ky; + node.setLayout({x: coorX, y: coorY}, true); + }); + } + } + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerVisual(visualSymbol('tree', 'circle')); +registerLayout(treeLayout); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function retrieveTargetInfo(payload, validPayloadTypes, seriesModel) { + if (payload && indexOf(validPayloadTypes, payload.type) >= 0) { + var root = seriesModel.getData().tree.root; + var targetNode = payload.targetNode; + + if (typeof targetNode === 'string') { + targetNode = root.getNodeById(targetNode); + } + + if (targetNode && root.contains(targetNode)) { + return {node: targetNode}; + } + + var targetNodeId = payload.targetNodeId; + if (targetNodeId != null && (targetNode = root.getNodeById(targetNodeId))) { + return {node: targetNode}; + } + } +} + +// Not includes the given node at the last item. +function getPathToRoot(node) { + var path = []; + while (node) { + node = node.parentNode; + node && path.push(node); + } + return path.reverse(); +} + +function aboveViewRoot(viewRoot, node) { + var viewPath = getPathToRoot(viewRoot); + return indexOf(viewPath, node) >= 0; +} + +// From root to the input node (the input node will be included). +function wrapTreePathInfo(node, seriesModel) { + var treePathInfo = []; + + while (node) { + var nodeDataIndex = node.dataIndex; + treePathInfo.push({ + name: node.name, + dataIndex: nodeDataIndex, + value: seriesModel.getRawValue(nodeDataIndex) + }); + node = node.parentNode; + } + + treePathInfo.reverse(); + + return treePathInfo; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +SeriesModel.extend({ + + type: 'series.treemap', + + layoutMode: 'box', + + dependencies: ['grid', 'polar'], + + preventUsingHoverLayer: true, + + /** + * @type {module:echarts/data/Tree~Node} + */ + _viewRoot: null, + + defaultOption: { + // Disable progressive rendering + progressive: 0, + // center: ['50%', '50%'], // not supported in ec3. + // size: ['80%', '80%'], // deprecated, compatible with ec2. + left: 'center', + top: 'middle', + right: null, + bottom: null, + width: '80%', + height: '80%', + sort: true, // Can be null or false or true + // (order by desc default, asc not supported yet (strange effect)) + clipWindow: 'origin', // Size of clipped window when zooming. 'origin' or 'fullscreen' + squareRatio: 0.5 * (1 + Math.sqrt(5)), // golden ratio + leafDepth: null, // Nodes on depth from root are regarded as leaves. + // Count from zero (zero represents only view root). + drillDownIcon: '▶', // Use html character temporarily because it is complicated + // to align specialized icon. ▷▶❒❐▼✚ + + zoomToNodeRatio: 0.32 * 0.32, // Be effective when using zoomToNode. Specify the proportion of the + // target node area in the view area. + roam: true, // true, false, 'scale' or 'zoom', 'move'. + nodeClick: 'zoomToNode', // Leaf node click behaviour: 'zoomToNode', 'link', false. + // If leafDepth is set and clicking a node which has children but + // be on left depth, the behaviour would be changing root. Otherwise + // use behavious defined above. + animation: true, + animationDurationUpdate: 900, + animationEasing: 'quinticInOut', + breadcrumb: { + show: true, + height: 22, + left: 'center', + top: 'bottom', + // right + // bottom + emptyItemWidth: 25, // Width of empty node. + itemStyle: { + color: 'rgba(0,0,0,0.7)', //'#5793f3', + borderColor: 'rgba(255,255,255,0.7)', + borderWidth: 1, + shadowColor: 'rgba(150,150,150,1)', + shadowBlur: 3, + shadowOffsetX: 0, + shadowOffsetY: 0, + textStyle: { + color: '#fff' + } + }, + emphasis: { + textStyle: {} + } + }, + label: { + show: true, + // Do not use textDistance, for ellipsis rect just the same as treemap node rect. + distance: 0, + padding: 5, + position: 'inside', // Can be [5, '5%'] or position stirng like 'insideTopLeft', ... + // formatter: null, + color: '#fff', + ellipsis: true + // align + // verticalAlign + }, + upperLabel: { // Label when node is parent. + show: false, + position: [0, '50%'], + height: 20, + // formatter: null, + color: '#fff', + ellipsis: true, + // align: null, + verticalAlign: 'middle' + }, + itemStyle: { + color: null, // Can be 'none' if not necessary. + colorAlpha: null, // Can be 'none' if not necessary. + colorSaturation: null, // Can be 'none' if not necessary. + borderWidth: 0, + gapWidth: 0, + borderColor: '#fff', + borderColorSaturation: null // If specified, borderColor will be ineffective, and the + // border color is evaluated by color of current node and + // borderColorSaturation. + }, + emphasis: { + upperLabel: { + show: true, + position: [0, '50%'], + color: '#fff', + ellipsis: true, + verticalAlign: 'middle' + } + }, + + visualDimension: 0, // Can be 0, 1, 2, 3. + visualMin: null, + visualMax: null, + + color: [], // + treemapSeries.color should not be modified. Please only modified + // level[n].color (if necessary). + // + Specify color list of each level. level[0].color would be global + // color list if not specified. (see method `setDefault`). + // + But set as a empty array to forbid fetch color from global palette + // when using nodeModel.get('color'), otherwise nodes on deep level + // will always has color palette set and are not able to inherit color + // from parent node. + // + TreemapSeries.color can not be set as 'none', otherwise effect + // legend color fetching (see seriesColor.js). + colorAlpha: null, // Array. Specify color alpha range of each level, like [0.2, 0.8] + colorSaturation: null, // Array. Specify color saturation of each level, like [0.2, 0.5] + colorMappingBy: 'index', // 'value' or 'index' or 'id'. + visibleMin: 10, // If area less than this threshold (unit: pixel^2), node will not + // be rendered. Only works when sort is 'asc' or 'desc'. + childrenVisibleMin: null, // If area of a node less than this threshold (unit: pixel^2), + // grandchildren will not show. + // Why grandchildren? If not grandchildren but children, + // some siblings show children and some not, + // the appearance may be mess and not consistent, + levels: [] // Each item: { + // visibleMin, itemStyle, visualDimension, label + // } + // data: { + // value: [], + // children: [], + // link: 'http://xxx.xxx.xxx', + // target: 'blank' or 'self' + // } + }, + + /** + * @override + */ + getInitialData: function (option, ecModel) { + // Create a virtual root. + var root = {name: option.name, children: option.data}; + + completeTreeValue(root); + + var levels = option.levels || []; + + levels = option.levels = setDefault(levels, ecModel); + + var treeOption = {}; + + treeOption.levels = levels; + + // Make sure always a new tree is created when setOption, + // in TreemapView, we check whether oldTree === newTree + // to choose mappings approach among old shapes and new shapes. + return Tree.createTree(root, this, treeOption).data; + }, + + optionUpdated: function () { + this.resetViewRoot(); + }, + + /** + * @override + * @param {number} dataIndex + * @param {boolean} [mutipleSeries=false] + */ + formatTooltip: function (dataIndex) { + var data = this.getData(); + var value = this.getRawValue(dataIndex); + var formattedValue = isArray(value) + ? addCommas(value[0]) : addCommas(value); + var name = data.getName(dataIndex); + + return encodeHTML(name + ': ' + formattedValue); + }, + + /** + * Add tree path to tooltip param + * + * @override + * @param {number} dataIndex + * @return {Object} + */ + getDataParams: function (dataIndex) { + var params = SeriesModel.prototype.getDataParams.apply(this, arguments); + + var node = this.getData().tree.getNodeByDataIndex(dataIndex); + params.treePathInfo = wrapTreePathInfo(node, this); + + return params; + }, + + /** + * @public + * @param {Object} layoutInfo { + * x: containerGroup x + * y: containerGroup y + * width: containerGroup width + * height: containerGroup height + * } + */ + setLayoutInfo: function (layoutInfo) { + /** + * @readOnly + * @type {Object} + */ + this.layoutInfo = this.layoutInfo || {}; + extend(this.layoutInfo, layoutInfo); + }, + + /** + * @param {string} id + * @return {number} index + */ + mapIdToIndex: function (id) { + // A feature is implemented: + // index is monotone increasing with the sequence of + // input id at the first time. + // This feature can make sure that each data item and its + // mapped color have the same index between data list and + // color list at the beginning, which is useful for user + // to adjust data-color mapping. + + /** + * @private + * @type {Object} + */ + var idIndexMap = this._idIndexMap; + + if (!idIndexMap) { + idIndexMap = this._idIndexMap = createHashMap(); + /** + * @private + * @type {number} + */ + this._idIndexMapCount = 0; + } + + var index = idIndexMap.get(id); + if (index == null) { + idIndexMap.set(id, index = this._idIndexMapCount++); + } + + return index; + }, + + getViewRoot: function () { + return this._viewRoot; + }, + + /** + * @param {module:echarts/data/Tree~Node} [viewRoot] + */ + resetViewRoot: function (viewRoot) { + viewRoot + ? (this._viewRoot = viewRoot) + : (viewRoot = this._viewRoot); + + var root = this.getRawData().tree.root; + + if (!viewRoot + || (viewRoot !== root && !root.contains(viewRoot)) + ) { + this._viewRoot = root; + } + } +}); + +/** + * @param {Object} dataNode + */ +function completeTreeValue(dataNode) { + // Postorder travel tree. + // If value of none-leaf node is not set, + // calculate it by suming up the value of all children. + var sum = 0; + + each$1(dataNode.children, function (child) { + + completeTreeValue(child); + + var childValue = child.value; + isArray(childValue) && (childValue = childValue[0]); + + sum += childValue; + }); + + var thisValue = dataNode.value; + if (isArray(thisValue)) { + thisValue = thisValue[0]; + } + + if (thisValue == null || isNaN(thisValue)) { + thisValue = sum; + } + // Value should not less than 0. + if (thisValue < 0) { + thisValue = 0; + } + + isArray(dataNode.value) + ? (dataNode.value[0] = thisValue) + : (dataNode.value = thisValue); +} + +/** + * set default to level configuration + */ +function setDefault(levels, ecModel) { + var globalColorList = ecModel.get('color'); + + if (!globalColorList) { + return; + } + + levels = levels || []; + var hasColorDefine; + each$1(levels, function (levelDefine) { + var model = new Model(levelDefine); + var modelColor = model.get('color'); + + if (model.get('itemStyle.color') + || (modelColor && modelColor !== 'none') + ) { + hasColorDefine = true; + } + }); + + if (!hasColorDefine) { + var level0 = levels[0] || (levels[0] = {}); + level0.color = globalColorList.slice(); + } + + return levels; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var TEXT_PADDING = 8; +var ITEM_GAP = 8; +var ARRAY_LENGTH = 5; + +function Breadcrumb(containerGroup) { + /** + * @private + * @type {module:zrender/container/Group} + */ + this.group = new Group(); + + containerGroup.add(this.group); +} + +Breadcrumb.prototype = { + + constructor: Breadcrumb, + + render: function (seriesModel, api, targetNode, onSelect) { + var model = seriesModel.getModel('breadcrumb'); + var thisGroup = this.group; + + thisGroup.removeAll(); + + if (!model.get('show') || !targetNode) { + return; + } + + var normalStyleModel = model.getModel('itemStyle'); + // var emphasisStyleModel = model.getModel('emphasis.itemStyle'); + var textStyleModel = normalStyleModel.getModel('textStyle'); + + var layoutParam = { + pos: { + left: model.get('left'), + right: model.get('right'), + top: model.get('top'), + bottom: model.get('bottom') + }, + box: { + width: api.getWidth(), + height: api.getHeight() + }, + emptyItemWidth: model.get('emptyItemWidth'), + totalWidth: 0, + renderList: [] + }; + + this._prepare(targetNode, layoutParam, textStyleModel); + this._renderContent(seriesModel, layoutParam, normalStyleModel, textStyleModel, onSelect); + + positionElement(thisGroup, layoutParam.pos, layoutParam.box); + }, + + /** + * Prepare render list and total width + * @private + */ + _prepare: function (targetNode, layoutParam, textStyleModel) { + for (var node = targetNode; node; node = node.parentNode) { + var text = node.getModel().get('name'); + var textRect = textStyleModel.getTextRect(text); + var itemWidth = Math.max( + textRect.width + TEXT_PADDING * 2, + layoutParam.emptyItemWidth + ); + layoutParam.totalWidth += itemWidth + ITEM_GAP; + layoutParam.renderList.push({node: node, text: text, width: itemWidth}); + } + }, + + /** + * @private + */ + _renderContent: function ( + seriesModel, layoutParam, normalStyleModel, textStyleModel, onSelect + ) { + // Start rendering. + var lastX = 0; + var emptyItemWidth = layoutParam.emptyItemWidth; + var height = seriesModel.get('breadcrumb.height'); + var availableSize = getAvailableSize(layoutParam.pos, layoutParam.box); + var totalWidth = layoutParam.totalWidth; + var renderList = layoutParam.renderList; + + for (var i = renderList.length - 1; i >= 0; i--) { + var item = renderList[i]; + var itemNode = item.node; + var itemWidth = item.width; + var text = item.text; + + // Hdie text and shorten width if necessary. + if (totalWidth > availableSize.width) { + totalWidth -= itemWidth - emptyItemWidth; + itemWidth = emptyItemWidth; + text = null; + } + + var el = new Polygon({ + shape: { + points: makeItemPoints( + lastX, 0, itemWidth, height, + i === renderList.length - 1, i === 0 + ) + }, + style: defaults( + normalStyleModel.getItemStyle(), + { + lineJoin: 'bevel', + text: text, + textFill: textStyleModel.getTextColor(), + textFont: textStyleModel.getFont() + } + ), + z: 10, + onclick: curry(onSelect, itemNode) + }); + this.group.add(el); + + packEventData(el, seriesModel, itemNode); + + lastX += itemWidth + ITEM_GAP; + } + }, + + /** + * @override + */ + remove: function () { + this.group.removeAll(); + } +}; + +function makeItemPoints(x, y, itemWidth, itemHeight, head, tail) { + var points = [ + [head ? x : x - ARRAY_LENGTH, y], + [x + itemWidth, y], + [x + itemWidth, y + itemHeight], + [head ? x : x - ARRAY_LENGTH, y + itemHeight] + ]; + !tail && points.splice(2, 0, [x + itemWidth + ARRAY_LENGTH, y + itemHeight / 2]); + !head && points.push([x, y + itemHeight / 2]); + return points; +} + +// Package custom mouse event. +function packEventData(el, seriesModel, itemNode) { + el.eventData = { + componentType: 'series', + componentSubType: 'treemap', + componentIndex: seriesModel.componentIndex, + seriesIndex: seriesModel.componentIndex, + seriesName: seriesModel.name, + seriesType: 'treemap', + selfType: 'breadcrumb', // Distinguish with click event on treemap node. + nodeData: { + dataIndex: itemNode && itemNode.dataIndex, + name: itemNode && itemNode.name + }, + treePathInfo: itemNode && wrapTreePathInfo(itemNode, seriesModel) + }; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @param {number} [time=500] Time in ms + * @param {string} [easing='linear'] + * @param {number} [delay=0] + * @param {Function} [callback] + * + * @example + * // Animate position + * animation + * .createWrap() + * .add(el1, {position: [10, 10]}) + * .add(el2, {shape: {width: 500}, style: {fill: 'red'}}, 400) + * .done(function () { // done }) + * .start('cubicOut'); + */ +function createWrap() { + + var storage = []; + var elExistsMap = {}; + var doneCallback; + + return { + + /** + * Caution: a el can only be added once, otherwise 'done' + * might not be called. This method checks this (by el.id), + * suppresses adding and returns false when existing el found. + * + * @param {modele:zrender/Element} el + * @param {Object} target + * @param {number} [time=500] + * @param {number} [delay=0] + * @param {string} [easing='linear'] + * @return {boolean} Whether adding succeeded. + * + * @example + * add(el, target, time, delay, easing); + * add(el, target, time, easing); + * add(el, target, time); + * add(el, target); + */ + add: function (el, target, time, delay, easing) { + if (isString(delay)) { + easing = delay; + delay = 0; + } + + if (elExistsMap[el.id]) { + return false; + } + elExistsMap[el.id] = 1; + + storage.push( + {el: el, target: target, time: time, delay: delay, easing: easing} + ); + + return true; + }, + + /** + * Only execute when animation finished. Will not execute when any + * of 'stop' or 'stopAnimation' called. + * + * @param {Function} callback + */ + done: function (callback) { + doneCallback = callback; + return this; + }, + + /** + * Will stop exist animation firstly. + */ + start: function () { + var count = storage.length; + + for (var i = 0, len = storage.length; i < len; i++) { + var item = storage[i]; + item.el.animateTo(item.target, item.time, item.delay, item.easing, done); + } + + return this; + + function done() { + count--; + if (!count) { + storage.length = 0; + elExistsMap = {}; + doneCallback && doneCallback(); + } + } + } + }; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var bind$1 = bind; +var Group$2 = Group; +var Rect$1 = Rect; +var each$8 = each$1; + +var DRAG_THRESHOLD = 3; +var PATH_LABEL_NOAMAL = ['label']; +var PATH_LABEL_EMPHASIS = ['emphasis', 'label']; +var PATH_UPPERLABEL_NORMAL = ['upperLabel']; +var PATH_UPPERLABEL_EMPHASIS = ['emphasis', 'upperLabel']; +var Z_BASE = 10; // Should bigger than every z. +var Z_BG = 1; +var Z_CONTENT = 2; + +var getItemStyleEmphasis = makeStyleMapper([ + ['fill', 'color'], + // `borderColor` and `borderWidth` has been occupied, + // so use `stroke` to indicate the stroke of the rect. + ['stroke', 'strokeColor'], + ['lineWidth', 'strokeWidth'], + ['shadowBlur'], + ['shadowOffsetX'], + ['shadowOffsetY'], + ['shadowColor'] +]); +var getItemStyleNormal = function (model) { + // Normal style props should include emphasis style props. + var itemStyle = getItemStyleEmphasis(model); + // Clear styles set by emphasis. + itemStyle.stroke = itemStyle.fill = itemStyle.lineWidth = null; + return itemStyle; +}; + +extendChartView({ + + type: 'treemap', + + /** + * @override + */ + init: function (o, api) { + + /** + * @private + * @type {module:zrender/container/Group} + */ + this._containerGroup; + + /** + * @private + * @type {Object.>} + */ + this._storage = createStorage(); + + /** + * @private + * @type {module:echarts/data/Tree} + */ + this._oldTree; + + /** + * @private + * @type {module:echarts/chart/treemap/Breadcrumb} + */ + this._breadcrumb; + + /** + * @private + * @type {module:echarts/component/helper/RoamController} + */ + this._controller; + + /** + * 'ready', 'animating' + * @private + */ + this._state = 'ready'; + }, + + /** + * @override + */ + render: function (seriesModel, ecModel, api, payload) { + + var models = ecModel.findComponents({ + mainType: 'series', subType: 'treemap', query: payload + }); + if (indexOf(models, seriesModel) < 0) { + return; + } + + this.seriesModel = seriesModel; + this.api = api; + this.ecModel = ecModel; + + var types = ['treemapZoomToNode', 'treemapRootToNode']; + var targetInfo = retrieveTargetInfo(payload, types, seriesModel); + var payloadType = payload && payload.type; + var layoutInfo = seriesModel.layoutInfo; + var isInit = !this._oldTree; + var thisStorage = this._storage; + + // Mark new root when action is treemapRootToNode. + var reRoot = (payloadType === 'treemapRootToNode' && targetInfo && thisStorage) + ? { + rootNodeGroup: thisStorage.nodeGroup[targetInfo.node.getRawIndex()], + direction: payload.direction + } + : null; + + var containerGroup = this._giveContainerGroup(layoutInfo); + + var renderResult = this._doRender(containerGroup, seriesModel, reRoot); + ( + !isInit && ( + !payloadType + || payloadType === 'treemapZoomToNode' + || payloadType === 'treemapRootToNode' + ) + ) + ? this._doAnimation(containerGroup, renderResult, seriesModel, reRoot) + : renderResult.renderFinally(); + + this._resetController(api); + + this._renderBreadcrumb(seriesModel, api, targetInfo); + }, + + /** + * @private + */ + _giveContainerGroup: function (layoutInfo) { + var containerGroup = this._containerGroup; + if (!containerGroup) { + // FIXME + // 加一层containerGroup是为了clip,但是现在clip功能并没有实现。 + containerGroup = this._containerGroup = new Group$2(); + this._initEvents(containerGroup); + this.group.add(containerGroup); + } + containerGroup.attr('position', [layoutInfo.x, layoutInfo.y]); + + return containerGroup; + }, + + /** + * @private + */ + _doRender: function (containerGroup, seriesModel, reRoot) { + var thisTree = seriesModel.getData().tree; + var oldTree = this._oldTree; + + // Clear last shape records. + var lastsForAnimation = createStorage(); + var thisStorage = createStorage(); + var oldStorage = this._storage; + var willInvisibleEls = []; + var doRenderNode = curry( + renderNode, seriesModel, + thisStorage, oldStorage, reRoot, + lastsForAnimation, willInvisibleEls + ); + + // Notice: when thisTree and oldTree are the same tree (see list.cloneShallow), + // the oldTree is actually losted, so we can not find all of the old graphic + // elements from tree. So we use this stragegy: make element storage, move + // from old storage to new storage, clear old storage. + + dualTravel( + thisTree.root ? [thisTree.root] : [], + (oldTree && oldTree.root) ? [oldTree.root] : [], + containerGroup, + thisTree === oldTree || !oldTree, + 0 + ); + + // Process all removing. + var willDeleteEls = clearStorage(oldStorage); + + this._oldTree = thisTree; + this._storage = thisStorage; + + return { + lastsForAnimation: lastsForAnimation, + willDeleteEls: willDeleteEls, + renderFinally: renderFinally + }; + + function dualTravel(thisViewChildren, oldViewChildren, parentGroup, sameTree, depth) { + // When 'render' is triggered by action, + // 'this' and 'old' may be the same tree, + // we use rawIndex in that case. + if (sameTree) { + oldViewChildren = thisViewChildren; + each$8(thisViewChildren, function (child, index) { + !child.isRemoved() && processNode(index, index); + }); + } + // Diff hierarchically (diff only in each subtree, but not whole). + // because, consistency of view is important. + else { + (new DataDiffer(oldViewChildren, thisViewChildren, getKey, getKey)) + .add(processNode) + .update(processNode) + .remove(curry(processNode, null)) + .execute(); + } + + function getKey(node) { + // Identify by name or raw index. + return node.getId(); + } + + function processNode(newIndex, oldIndex) { + var thisNode = newIndex != null ? thisViewChildren[newIndex] : null; + var oldNode = oldIndex != null ? oldViewChildren[oldIndex] : null; + + var group = doRenderNode(thisNode, oldNode, parentGroup, depth); + + group && dualTravel( + thisNode && thisNode.viewChildren || [], + oldNode && oldNode.viewChildren || [], + group, + sameTree, + depth + 1 + ); + } + } + + function clearStorage(storage) { + var willDeleteEls = createStorage(); + storage && each$8(storage, function (store, storageName) { + var delEls = willDeleteEls[storageName]; + each$8(store, function (el) { + el && (delEls.push(el), el.__tmWillDelete = 1); + }); + }); + return willDeleteEls; + } + + function renderFinally() { + each$8(willDeleteEls, function (els) { + each$8(els, function (el) { + el.parent && el.parent.remove(el); + }); + }); + each$8(willInvisibleEls, function (el) { + el.invisible = true; + // Setting invisible is for optimizing, so no need to set dirty, + // just mark as invisible. + el.dirty(); + }); + } + }, + + /** + * @private + */ + _doAnimation: function (containerGroup, renderResult, seriesModel, reRoot) { + if (!seriesModel.get('animation')) { + return; + } + + var duration = seriesModel.get('animationDurationUpdate'); + var easing = seriesModel.get('animationEasing'); + var animationWrap = createWrap(); + + // Make delete animations. + each$8(renderResult.willDeleteEls, function (store, storageName) { + each$8(store, function (el, rawIndex) { + if (el.invisible) { + return; + } + + var parent = el.parent; // Always has parent, and parent is nodeGroup. + var target; + + if (reRoot && reRoot.direction === 'drillDown') { + target = parent === reRoot.rootNodeGroup + // This is the content element of view root. + // Only `content` will enter this branch, because + // `background` and `nodeGroup` will not be deleted. + ? { + shape: { + x: 0, + y: 0, + width: parent.__tmNodeWidth, + height: parent.__tmNodeHeight + }, + style: { + opacity: 0 + } + } + // Others. + : {style: {opacity: 0}}; + } + else { + var targetX = 0; + var targetY = 0; + + if (!parent.__tmWillDelete) { + // Let node animate to right-bottom corner, cooperating with fadeout, + // which is appropriate for user understanding. + // Divided by 2 for reRoot rolling up effect. + targetX = parent.__tmNodeWidth / 2; + targetY = parent.__tmNodeHeight / 2; + } + + target = storageName === 'nodeGroup' + ? {position: [targetX, targetY], style: {opacity: 0}} + : { + shape: {x: targetX, y: targetY, width: 0, height: 0}, + style: {opacity: 0} + }; + } + + target && animationWrap.add(el, target, duration, easing); + }); + }); + + // Make other animations + each$8(this._storage, function (store, storageName) { + each$8(store, function (el, rawIndex) { + var last = renderResult.lastsForAnimation[storageName][rawIndex]; + var target = {}; + + if (!last) { + return; + } + + if (storageName === 'nodeGroup') { + if (last.old) { + target.position = el.position.slice(); + el.attr('position', last.old); + } + } + else { + if (last.old) { + target.shape = extend({}, el.shape); + el.setShape(last.old); + } + + if (last.fadein) { + el.setStyle('opacity', 0); + target.style = {opacity: 1}; + } + // When animation is stopped for succedent animation starting, + // el.style.opacity might not be 1 + else if (el.style.opacity !== 1) { + target.style = {opacity: 1}; + } + } + + animationWrap.add(el, target, duration, easing); + }); + }, this); + + this._state = 'animating'; + + animationWrap + .done(bind$1(function () { + this._state = 'ready'; + renderResult.renderFinally(); + }, this)) + .start(); + }, + + /** + * @private + */ + _resetController: function (api) { + var controller = this._controller; + + // Init controller. + if (!controller) { + controller = this._controller = new RoamController(api.getZr()); + controller.enable(this.seriesModel.get('roam')); + controller.on('pan', bind$1(this._onPan, this)); + controller.on('zoom', bind$1(this._onZoom, this)); + } + + var rect = new BoundingRect(0, 0, api.getWidth(), api.getHeight()); + controller.setPointerChecker(function (e, x, y) { + return rect.contain(x, y); + }); + }, + + /** + * @private + */ + _clearController: function () { + var controller = this._controller; + if (controller) { + controller.dispose(); + controller = null; + } + }, + + /** + * @private + */ + _onPan: function (e) { + if (this._state !== 'animating' + && (Math.abs(e.dx) > DRAG_THRESHOLD || Math.abs(e.dy) > DRAG_THRESHOLD) + ) { + // These param must not be cached. + var root = this.seriesModel.getData().tree.root; + + if (!root) { + return; + } + + var rootLayout = root.getLayout(); + + if (!rootLayout) { + return; + } + + this.api.dispatchAction({ + type: 'treemapMove', + from: this.uid, + seriesId: this.seriesModel.id, + rootRect: { + x: rootLayout.x + e.dx, y: rootLayout.y + e.dy, + width: rootLayout.width, height: rootLayout.height + } + }); + } + }, + + /** + * @private + */ + _onZoom: function (e) { + var mouseX = e.originX; + var mouseY = e.originY; + + if (this._state !== 'animating') { + // These param must not be cached. + var root = this.seriesModel.getData().tree.root; + + if (!root) { + return; + } + + var rootLayout = root.getLayout(); + + if (!rootLayout) { + return; + } + + var rect = new BoundingRect( + rootLayout.x, rootLayout.y, rootLayout.width, rootLayout.height + ); + var layoutInfo = this.seriesModel.layoutInfo; + + // Transform mouse coord from global to containerGroup. + mouseX -= layoutInfo.x; + mouseY -= layoutInfo.y; + + // Scale root bounding rect. + var m = create$1(); + translate(m, m, [-mouseX, -mouseY]); + scale$1(m, m, [e.scale, e.scale]); + translate(m, m, [mouseX, mouseY]); + + rect.applyTransform(m); + + this.api.dispatchAction({ + type: 'treemapRender', + from: this.uid, + seriesId: this.seriesModel.id, + rootRect: { + x: rect.x, y: rect.y, + width: rect.width, height: rect.height + } + }); + } + }, + + /** + * @private + */ + _initEvents: function (containerGroup) { + containerGroup.on('click', function (e) { + if (this._state !== 'ready') { + return; + } + + var nodeClick = this.seriesModel.get('nodeClick', true); + + if (!nodeClick) { + return; + } + + var targetInfo = this.findTarget(e.offsetX, e.offsetY); + + if (!targetInfo) { + return; + } + + var node = targetInfo.node; + if (node.getLayout().isLeafRoot) { + this._rootToNode(targetInfo); + } + else { + if (nodeClick === 'zoomToNode') { + this._zoomToNode(targetInfo); + } + else if (nodeClick === 'link') { + var itemModel = node.hostTree.data.getItemModel(node.dataIndex); + var link = itemModel.get('link', true); + var linkTarget = itemModel.get('target', true) || 'blank'; + link && window.open(link, linkTarget); + } + } + + }, this); + }, + + /** + * @private + */ + _renderBreadcrumb: function (seriesModel, api, targetInfo) { + if (!targetInfo) { + targetInfo = seriesModel.get('leafDepth', true) != null + ? {node: seriesModel.getViewRoot()} + // FIXME + // better way? + // Find breadcrumb tail on center of containerGroup. + : this.findTarget(api.getWidth() / 2, api.getHeight() / 2); + + if (!targetInfo) { + targetInfo = {node: seriesModel.getData().tree.root}; + } + } + + (this._breadcrumb || (this._breadcrumb = new Breadcrumb(this.group))) + .render(seriesModel, api, targetInfo.node, bind$1(onSelect, this)); + + function onSelect(node) { + if (this._state !== 'animating') { + aboveViewRoot(seriesModel.getViewRoot(), node) + ? this._rootToNode({node: node}) + : this._zoomToNode({node: node}); + } + } + }, + + /** + * @override + */ + remove: function () { + this._clearController(); + this._containerGroup && this._containerGroup.removeAll(); + this._storage = createStorage(); + this._state = 'ready'; + this._breadcrumb && this._breadcrumb.remove(); + }, + + dispose: function () { + this._clearController(); + }, + + /** + * @private + */ + _zoomToNode: function (targetInfo) { + this.api.dispatchAction({ + type: 'treemapZoomToNode', + from: this.uid, + seriesId: this.seriesModel.id, + targetNode: targetInfo.node + }); + }, + + /** + * @private + */ + _rootToNode: function (targetInfo) { + this.api.dispatchAction({ + type: 'treemapRootToNode', + from: this.uid, + seriesId: this.seriesModel.id, + targetNode: targetInfo.node + }); + }, + + /** + * @public + * @param {number} x Global coord x. + * @param {number} y Global coord y. + * @return {Object} info If not found, return undefined; + * @return {number} info.node Target node. + * @return {number} info.offsetX x refer to target node. + * @return {number} info.offsetY y refer to target node. + */ + findTarget: function (x, y) { + var targetInfo; + var viewRoot = this.seriesModel.getViewRoot(); + + viewRoot.eachNode({attr: 'viewChildren', order: 'preorder'}, function (node) { + var bgEl = this._storage.background[node.getRawIndex()]; + // If invisible, there might be no element. + if (bgEl) { + var point = bgEl.transformCoordToLocal(x, y); + var shape = bgEl.shape; + + // For performance consideration, dont use 'getBoundingRect'. + if (shape.x <= point[0] + && point[0] <= shape.x + shape.width + && shape.y <= point[1] + && point[1] <= shape.y + shape.height + ) { + targetInfo = {node: node, offsetX: point[0], offsetY: point[1]}; + } + else { + return false; // Suppress visit subtree. + } + } + }, this); + + return targetInfo; + } + +}); + +/** + * @inner + */ +function createStorage() { + return {nodeGroup: [], background: [], content: []}; +} + +/** + * @inner + * @return Return undefined means do not travel further. + */ +function renderNode( + seriesModel, thisStorage, oldStorage, reRoot, + lastsForAnimation, willInvisibleEls, + thisNode, oldNode, parentGroup, depth +) { + // Whether under viewRoot. + if (!thisNode) { + // Deleting nodes will be performed finally. This method just find + // element from old storage, or create new element, set them to new + // storage, and set styles. + return; + } + + // ------------------------------------------------------------------- + // Start of closure variables available in "Procedures in renderNode". + + var thisLayout = thisNode.getLayout(); + + if (!thisLayout || !thisLayout.isInView) { + return; + } + + var thisWidth = thisLayout.width; + var thisHeight = thisLayout.height; + var borderWidth = thisLayout.borderWidth; + var thisInvisible = thisLayout.invisible; + + var thisRawIndex = thisNode.getRawIndex(); + var oldRawIndex = oldNode && oldNode.getRawIndex(); + + var thisViewChildren = thisNode.viewChildren; + var upperHeight = thisLayout.upperHeight; + var isParent = thisViewChildren && thisViewChildren.length; + var itemStyleNormalModel = thisNode.getModel('itemStyle'); + var itemStyleEmphasisModel = thisNode.getModel('emphasis.itemStyle'); + + // End of closure ariables available in "Procedures in renderNode". + // ----------------------------------------------------------------- + + // Node group + var group = giveGraphic('nodeGroup', Group$2); + + if (!group) { + return; + } + + parentGroup.add(group); + // x,y are not set when el is above view root. + group.attr('position', [thisLayout.x || 0, thisLayout.y || 0]); + group.__tmNodeWidth = thisWidth; + group.__tmNodeHeight = thisHeight; + + if (thisLayout.isAboveViewRoot) { + return group; + } + + // Background + var bg = giveGraphic('background', Rect$1, depth, Z_BG); + bg && renderBackground(group, bg, isParent && thisLayout.upperHeight); + + // No children, render content. + if (!isParent) { + var content = giveGraphic('content', Rect$1, depth, Z_CONTENT); + content && renderContent(group, content); + } + + return group; + + // ---------------------------- + // | Procedures in renderNode | + // ---------------------------- + + function renderBackground(group, bg, useUpperLabel) { + // For tooltip. + bg.dataIndex = thisNode.dataIndex; + bg.seriesIndex = seriesModel.seriesIndex; + + bg.setShape({x: 0, y: 0, width: thisWidth, height: thisHeight}); + var visualBorderColor = thisNode.getVisual('borderColor', true); + var emphasisBorderColor = itemStyleEmphasisModel.get('borderColor'); + + updateStyle(bg, function () { + var normalStyle = getItemStyleNormal(itemStyleNormalModel); + normalStyle.fill = visualBorderColor; + var emphasisStyle = getItemStyleEmphasis(itemStyleEmphasisModel); + emphasisStyle.fill = emphasisBorderColor; + + if (useUpperLabel) { + var upperLabelWidth = thisWidth - 2 * borderWidth; + + prepareText( + normalStyle, emphasisStyle, visualBorderColor, upperLabelWidth, upperHeight, + {x: borderWidth, y: 0, width: upperLabelWidth, height: upperHeight} + ); + } + // For old bg. + else { + normalStyle.text = emphasisStyle.text = null; + } + + bg.setStyle(normalStyle); + setHoverStyle(bg, emphasisStyle); + }); + + group.add(bg); + } + + function renderContent(group, content) { + // For tooltip. + content.dataIndex = thisNode.dataIndex; + content.seriesIndex = seriesModel.seriesIndex; + + var contentWidth = Math.max(thisWidth - 2 * borderWidth, 0); + var contentHeight = Math.max(thisHeight - 2 * borderWidth, 0); + + content.culling = true; + content.setShape({ + x: borderWidth, + y: borderWidth, + width: contentWidth, + height: contentHeight + }); + + var visualColor = thisNode.getVisual('color', true); + updateStyle(content, function () { + var normalStyle = getItemStyleNormal(itemStyleNormalModel); + normalStyle.fill = visualColor; + var emphasisStyle = getItemStyleEmphasis(itemStyleEmphasisModel); + + prepareText(normalStyle, emphasisStyle, visualColor, contentWidth, contentHeight); + + content.setStyle(normalStyle); + setHoverStyle(content, emphasisStyle); + }); + + group.add(content); + } + + function updateStyle(element, cb) { + if (!thisInvisible) { + // If invisible, do not set visual, otherwise the element will + // change immediately before animation. We think it is OK to + // remain its origin color when moving out of the view window. + cb(); + + if (!element.__tmWillVisible) { + element.invisible = false; + } + } + else { + // Delay invisible setting utill animation finished, + // avoid element vanish suddenly before animation. + !element.invisible && willInvisibleEls.push(element); + } + } + + function prepareText(normalStyle, emphasisStyle, visualColor, width, height, upperLabelRect) { + var nodeModel = thisNode.getModel(); + var text = retrieve( + seriesModel.getFormattedLabel( + thisNode.dataIndex, 'normal', null, null, upperLabelRect ? 'upperLabel' : 'label' + ), + nodeModel.get('name') + ); + if (!upperLabelRect && thisLayout.isLeafRoot) { + var iconChar = seriesModel.get('drillDownIcon', true); + text = iconChar ? iconChar + ' ' + text : text; + } + + var normalLabelModel = nodeModel.getModel( + upperLabelRect ? PATH_UPPERLABEL_NORMAL : PATH_LABEL_NOAMAL + ); + var emphasisLabelModel = nodeModel.getModel( + upperLabelRect ? PATH_UPPERLABEL_EMPHASIS : PATH_LABEL_EMPHASIS + ); + + var isShow = normalLabelModel.getShallow('show'); + + setLabelStyle( + normalStyle, emphasisStyle, normalLabelModel, emphasisLabelModel, + { + defaultText: isShow ? text : null, + autoColor: visualColor, + isRectText: true + } + ); + + upperLabelRect && (normalStyle.textRect = clone(upperLabelRect)); + + normalStyle.truncate = (isShow && normalLabelModel.get('ellipsis')) + ? { + outerWidth: width, + outerHeight: height, + minChar: 2 + } + : null; + } + + function giveGraphic(storageName, Ctor, depth, z) { + var element = oldRawIndex != null && oldStorage[storageName][oldRawIndex]; + var lasts = lastsForAnimation[storageName]; + + if (element) { + // Remove from oldStorage + oldStorage[storageName][oldRawIndex] = null; + prepareAnimationWhenHasOld(lasts, element, storageName); + } + // If invisible and no old element, do not create new element (for optimizing). + else if (!thisInvisible) { + element = new Ctor({z: calculateZ(depth, z)}); + element.__tmDepth = depth; + element.__tmStorageName = storageName; + prepareAnimationWhenNoOld(lasts, element, storageName); + } + + // Set to thisStorage + return (thisStorage[storageName][thisRawIndex] = element); + } + + function prepareAnimationWhenHasOld(lasts, element, storageName) { + var lastCfg = lasts[thisRawIndex] = {}; + lastCfg.old = storageName === 'nodeGroup' + ? element.position.slice() + : extend({}, element.shape); + } + + // If a element is new, we need to find the animation start point carefully, + // otherwise it will looks strange when 'zoomToNode'. + function prepareAnimationWhenNoOld(lasts, element, storageName) { + var lastCfg = lasts[thisRawIndex] = {}; + var parentNode = thisNode.parentNode; + + if (parentNode && (!reRoot || reRoot.direction === 'drillDown')) { + var parentOldX = 0; + var parentOldY = 0; + + // New nodes appear from right-bottom corner in 'zoomToNode' animation. + // For convenience, get old bounding rect from background. + var parentOldBg = lastsForAnimation.background[parentNode.getRawIndex()]; + if (!reRoot && parentOldBg && parentOldBg.old) { + parentOldX = parentOldBg.old.width; + parentOldY = parentOldBg.old.height; + } + + // When no parent old shape found, its parent is new too, + // so we can just use {x:0, y:0}. + lastCfg.old = storageName === 'nodeGroup' + ? [0, parentOldY] + : {x: parentOldX, y: parentOldY, width: 0, height: 0}; + } + + // Fade in, user can be aware that these nodes are new. + lastCfg.fadein = storageName !== 'nodeGroup'; + } +} + +// We can not set all backgroud with the same z, Because the behaviour of +// drill down and roll up differ background creation sequence from tree +// hierarchy sequence, which cause that lowser background element overlap +// upper ones. So we calculate z based on depth. +// Moreover, we try to shrink down z interval to [0, 1] to avoid that +// treemap with large z overlaps other components. +function calculateZ(depth, zInLevel) { + var zb = depth * Z_BASE + zInLevel; + return (zb - 1) / zb; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @file Treemap action + */ + +var noop$1 = function () {}; + +var actionTypes = [ + 'treemapZoomToNode', + 'treemapRender', + 'treemapMove' +]; + +for (var i$2 = 0; i$2 < actionTypes.length; i$2++) { + registerAction({type: actionTypes[i$2], update: 'updateView'}, noop$1); +} + +registerAction( + {type: 'treemapRootToNode', update: 'updateView'}, + function (payload, ecModel) { + + ecModel.eachComponent( + {mainType: 'series', subType: 'treemap', query: payload}, + handleRootToNode + ); + + function handleRootToNode(model, index) { + var types = ['treemapZoomToNode', 'treemapRootToNode']; + var targetInfo = retrieveTargetInfo(payload, types, model); + + if (targetInfo) { + var originViewRoot = model.getViewRoot(); + if (originViewRoot) { + payload.direction = aboveViewRoot(originViewRoot, targetInfo.node) + ? 'rollUp' : 'drillDown'; + } + model.resetViewRoot(targetInfo.node); + } + } + } +); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var each$9 = each$1; +var isObject$5 = isObject$1; + +var CATEGORY_DEFAULT_VISUAL_INDEX = -1; + +/** + * @param {Object} option + * @param {string} [option.type] See visualHandlers. + * @param {string} [option.mappingMethod] 'linear' or 'piecewise' or 'category' or 'fixed' + * @param {Array.=} [option.dataExtent] [minExtent, maxExtent], + * required when mappingMethod is 'linear' + * @param {Array.=} [option.pieceList] [ + * {value: someValue}, + * {interval: [min1, max1], visual: {...}}, + * {interval: [min2, max2]} + * ], + * required when mappingMethod is 'piecewise'. + * Visual for only each piece can be specified. + * @param {Array.=} [option.categories] ['cate1', 'cate2'] + * required when mappingMethod is 'category'. + * If no option.categories, categories is set + * as [0, 1, 2, ...]. + * @param {boolean} [option.loop=false] Whether loop mapping when mappingMethod is 'category'. + * @param {(Array|Object|*)} [option.visual] Visual data. + * when mappingMethod is 'category', + * visual data can be array or object + * (like: {cate1: '#222', none: '#fff'}) + * or primary types (which represents + * defualt category visual), otherwise visual + * can be array or primary (which will be + * normalized to array). + * + */ +var VisualMapping = function (option) { + var mappingMethod = option.mappingMethod; + var visualType = option.type; + + /** + * @readOnly + * @type {Object} + */ + var thisOption = this.option = clone(option); + + /** + * @readOnly + * @type {string} + */ + this.type = visualType; + + /** + * @readOnly + * @type {string} + */ + this.mappingMethod = mappingMethod; + + /** + * @private + * @type {Function} + */ + this._normalizeData = normalizers[mappingMethod]; + + var visualHandler = visualHandlers[visualType]; + + /** + * @public + * @type {Function} + */ + this.applyVisual = visualHandler.applyVisual; + + /** + * @public + * @type {Function} + */ + this.getColorMapper = visualHandler.getColorMapper; + + /** + * @private + * @type {Function} + */ + this._doMap = visualHandler._doMap[mappingMethod]; + + if (mappingMethod === 'piecewise') { + normalizeVisualRange(thisOption); + preprocessForPiecewise(thisOption); + } + else if (mappingMethod === 'category') { + thisOption.categories + ? preprocessForSpecifiedCategory(thisOption) + // categories is ordinal when thisOption.categories not specified, + // which need no more preprocess except normalize visual. + : normalizeVisualRange(thisOption, true); + } + else { // mappingMethod === 'linear' or 'fixed' + assert$1(mappingMethod !== 'linear' || thisOption.dataExtent); + normalizeVisualRange(thisOption); + } +}; + +VisualMapping.prototype = { + + constructor: VisualMapping, + + mapValueToVisual: function (value) { + var normalized = this._normalizeData(value); + return this._doMap(normalized, value); + }, + + getNormalizer: function () { + return bind(this._normalizeData, this); + } +}; + +var visualHandlers = VisualMapping.visualHandlers = { + + color: { + + applyVisual: makeApplyVisual('color'), + + /** + * Create a mapper function + * @return {Function} + */ + getColorMapper: function () { + var thisOption = this.option; + + return bind( + thisOption.mappingMethod === 'category' + ? function (value, isNormalized) { + !isNormalized && (value = this._normalizeData(value)); + return doMapCategory.call(this, value); + } + : function (value, isNormalized, out) { + // If output rgb array + // which will be much faster and useful in pixel manipulation + var returnRGBArray = !!out; + !isNormalized && (value = this._normalizeData(value)); + out = fastLerp(value, thisOption.parsedVisual, out); + return returnRGBArray ? out : stringify(out, 'rgba'); + }, + this + ); + }, + + _doMap: { + linear: function (normalized) { + return stringify( + fastLerp(normalized, this.option.parsedVisual), + 'rgba' + ); + }, + category: doMapCategory, + piecewise: function (normalized, value) { + var result = getSpecifiedVisual.call(this, value); + if (result == null) { + result = stringify( + fastLerp(normalized, this.option.parsedVisual), + 'rgba' + ); + } + return result; + }, + fixed: doMapFixed + } + }, + + colorHue: makePartialColorVisualHandler(function (color, value) { + return modifyHSL(color, value); + }), + + colorSaturation: makePartialColorVisualHandler(function (color, value) { + return modifyHSL(color, null, value); + }), + + colorLightness: makePartialColorVisualHandler(function (color, value) { + return modifyHSL(color, null, null, value); + }), + + colorAlpha: makePartialColorVisualHandler(function (color, value) { + return modifyAlpha(color, value); + }), + + opacity: { + applyVisual: makeApplyVisual('opacity'), + _doMap: makeDoMap([0, 1]) + }, + + liftZ: { + applyVisual: makeApplyVisual('liftZ'), + _doMap: { + linear: doMapFixed, + category: doMapFixed, + piecewise: doMapFixed, + fixed: doMapFixed + } + }, + + symbol: { + applyVisual: function (value, getter, setter) { + var symbolCfg = this.mapValueToVisual(value); + if (isString(symbolCfg)) { + setter('symbol', symbolCfg); + } + else if (isObject$5(symbolCfg)) { + for (var name in symbolCfg) { + if (symbolCfg.hasOwnProperty(name)) { + setter(name, symbolCfg[name]); + } + } + } + }, + _doMap: { + linear: doMapToArray, + category: doMapCategory, + piecewise: function (normalized, value) { + var result = getSpecifiedVisual.call(this, value); + if (result == null) { + result = doMapToArray.call(this, normalized); + } + return result; + }, + fixed: doMapFixed + } + }, + + symbolSize: { + applyVisual: makeApplyVisual('symbolSize'), + _doMap: makeDoMap([0, 1]) + } +}; + + +function preprocessForPiecewise(thisOption) { + var pieceList = thisOption.pieceList; + thisOption.hasSpecialVisual = false; + + each$1(pieceList, function (piece, index) { + piece.originIndex = index; + // piece.visual is "result visual value" but not + // a visual range, so it does not need to be normalized. + if (piece.visual != null) { + thisOption.hasSpecialVisual = true; + } + }); +} + +function preprocessForSpecifiedCategory(thisOption) { + // Hash categories. + var categories = thisOption.categories; + var visual = thisOption.visual; + + var categoryMap = thisOption.categoryMap = {}; + each$9(categories, function (cate, index) { + categoryMap[cate] = index; + }); + + // Process visual map input. + if (!isArray(visual)) { + var visualArr = []; + + if (isObject$1(visual)) { + each$9(visual, function (v, cate) { + var index = categoryMap[cate]; + visualArr[index != null ? index : CATEGORY_DEFAULT_VISUAL_INDEX] = v; + }); + } + else { // Is primary type, represents default visual. + visualArr[CATEGORY_DEFAULT_VISUAL_INDEX] = visual; + } + + visual = setVisualToOption(thisOption, visualArr); + } + + // Remove categories that has no visual, + // then we can mapping them to CATEGORY_DEFAULT_VISUAL_INDEX. + for (var i = categories.length - 1; i >= 0; i--) { + if (visual[i] == null) { + delete categoryMap[categories[i]]; + categories.pop(); + } + } +} + +function normalizeVisualRange(thisOption, isCategory) { + var visual = thisOption.visual; + var visualArr = []; + + if (isObject$1(visual)) { + each$9(visual, function (v) { + visualArr.push(v); + }); + } + else if (visual != null) { + visualArr.push(visual); + } + + var doNotNeedPair = {color: 1, symbol: 1}; + + if (!isCategory + && visualArr.length === 1 + && !doNotNeedPair.hasOwnProperty(thisOption.type) + ) { + // Do not care visualArr.length === 0, which is illegal. + visualArr[1] = visualArr[0]; + } + + setVisualToOption(thisOption, visualArr); +} + +function makePartialColorVisualHandler(applyValue) { + return { + applyVisual: function (value, getter, setter) { + value = this.mapValueToVisual(value); + // Must not be array value + setter('color', applyValue(getter('color'), value)); + }, + _doMap: makeDoMap([0, 1]) + }; +} + +function doMapToArray(normalized) { + var visual = this.option.visual; + return visual[ + Math.round(linearMap(normalized, [0, 1], [0, visual.length - 1], true)) + ] || {}; +} + +function makeApplyVisual(visualType) { + return function (value, getter, setter) { + setter(visualType, this.mapValueToVisual(value)); + }; +} + +function doMapCategory(normalized) { + var visual = this.option.visual; + return visual[ + (this.option.loop && normalized !== CATEGORY_DEFAULT_VISUAL_INDEX) + ? normalized % visual.length + : normalized + ]; +} + +function doMapFixed() { + return this.option.visual[0]; +} + +function makeDoMap(sourceExtent) { + return { + linear: function (normalized) { + return linearMap(normalized, sourceExtent, this.option.visual, true); + }, + category: doMapCategory, + piecewise: function (normalized, value) { + var result = getSpecifiedVisual.call(this, value); + if (result == null) { + result = linearMap(normalized, sourceExtent, this.option.visual, true); + } + return result; + }, + fixed: doMapFixed + }; +} + +function getSpecifiedVisual(value) { + var thisOption = this.option; + var pieceList = thisOption.pieceList; + if (thisOption.hasSpecialVisual) { + var pieceIndex = VisualMapping.findPieceIndex(value, pieceList); + var piece = pieceList[pieceIndex]; + if (piece && piece.visual) { + return piece.visual[this.type]; + } + } +} + +function setVisualToOption(thisOption, visualArr) { + thisOption.visual = visualArr; + if (thisOption.type === 'color') { + thisOption.parsedVisual = map(visualArr, function (item) { + return parse(item); + }); + } + return visualArr; +} + + +/** + * Normalizers by mapping methods. + */ +var normalizers = { + + linear: function (value) { + return linearMap(value, this.option.dataExtent, [0, 1], true); + }, + + piecewise: function (value) { + var pieceList = this.option.pieceList; + var pieceIndex = VisualMapping.findPieceIndex(value, pieceList, true); + if (pieceIndex != null) { + return linearMap(pieceIndex, [0, pieceList.length - 1], [0, 1], true); + } + }, + + category: function (value) { + var index = this.option.categories + ? this.option.categoryMap[value] + : value; // ordinal + return index == null ? CATEGORY_DEFAULT_VISUAL_INDEX : index; + }, + + fixed: noop +}; + + + +/** + * List available visual types. + * + * @public + * @return {Array.} + */ +VisualMapping.listVisualTypes = function () { + var visualTypes = []; + each$1(visualHandlers, function (handler, key) { + visualTypes.push(key); + }); + return visualTypes; +}; + +/** + * @public + */ +VisualMapping.addVisualHandler = function (name, handler) { + visualHandlers[name] = handler; +}; + +/** + * @public + */ +VisualMapping.isValidType = function (visualType) { + return visualHandlers.hasOwnProperty(visualType); +}; + +/** + * Convinent method. + * Visual can be Object or Array or primary type. + * + * @public + */ +VisualMapping.eachVisual = function (visual, callback, context) { + if (isObject$1(visual)) { + each$1(visual, callback, context); + } + else { + callback.call(context, visual); + } +}; + +VisualMapping.mapVisual = function (visual, callback, context) { + var isPrimary; + var newVisual = isArray(visual) + ? [] + : isObject$1(visual) + ? {} + : (isPrimary = true, null); + + VisualMapping.eachVisual(visual, function (v, key) { + var newVal = callback.call(context, v, key); + isPrimary ? (newVisual = newVal) : (newVisual[key] = newVal); + }); + return newVisual; +}; + +/** + * @public + * @param {Object} obj + * @return {Object} new object containers visual values. + * If no visuals, return null. + */ +VisualMapping.retrieveVisuals = function (obj) { + var ret = {}; + var hasVisual; + + obj && each$9(visualHandlers, function (h, visualType) { + if (obj.hasOwnProperty(visualType)) { + ret[visualType] = obj[visualType]; + hasVisual = true; + } + }); + + return hasVisual ? ret : null; +}; + +/** + * Give order to visual types, considering colorSaturation, colorAlpha depends on color. + * + * @public + * @param {(Object|Array)} visualTypes If Object, like: {color: ..., colorSaturation: ...} + * IF Array, like: ['color', 'symbol', 'colorSaturation'] + * @return {Array.} Sorted visual types. + */ +VisualMapping.prepareVisualTypes = function (visualTypes) { + if (isObject$5(visualTypes)) { + var types = []; + each$9(visualTypes, function (item, type) { + types.push(type); + }); + visualTypes = types; + } + else if (isArray(visualTypes)) { + visualTypes = visualTypes.slice(); + } + else { + return []; + } + + visualTypes.sort(function (type1, type2) { + // color should be front of colorSaturation, colorAlpha, ... + // symbol and symbolSize do not matter. + return (type2 === 'color' && type1 !== 'color' && type1.indexOf('color') === 0) + ? 1 : -1; + }); + + return visualTypes; +}; + +/** + * 'color', 'colorSaturation', 'colorAlpha', ... are depends on 'color'. + * Other visuals are only depends on themself. + * + * @public + * @param {string} visualType1 + * @param {string} visualType2 + * @return {boolean} + */ +VisualMapping.dependsOn = function (visualType1, visualType2) { + return visualType2 === 'color' + ? !!(visualType1 && visualType1.indexOf(visualType2) === 0) + : visualType1 === visualType2; +}; + +/** + * @param {number} value + * @param {Array.} pieceList [{value: ..., interval: [min, max]}, ...] + * Always from small to big. + * @param {boolean} [findClosestWhenOutside=false] + * @return {number} index + */ +VisualMapping.findPieceIndex = function (value, pieceList, findClosestWhenOutside) { + var possibleI; + var abs = Infinity; + + // value has the higher priority. + for (var i = 0, len = pieceList.length; i < len; i++) { + var pieceValue = pieceList[i].value; + if (pieceValue != null) { + if (pieceValue === value + // FIXME + // It is supposed to compare value according to value type of dimension, + // but currently value type can exactly be string or number. + // Compromise for numeric-like string (like '12'), especially + // in the case that visualMap.categories is ['22', '33']. + || (typeof pieceValue === 'string' && pieceValue === value + '') + ) { + return i; + } + findClosestWhenOutside && updatePossible(pieceValue, i); + } + } + + for (var i = 0, len = pieceList.length; i < len; i++) { + var piece = pieceList[i]; + var interval = piece.interval; + var close = piece.close; + + if (interval) { + if (interval[0] === -Infinity) { + if (littleThan(close[1], value, interval[1])) { + return i; + } + } + else if (interval[1] === Infinity) { + if (littleThan(close[0], interval[0], value)) { + return i; + } + } + else if ( + littleThan(close[0], interval[0], value) + && littleThan(close[1], value, interval[1]) + ) { + return i; + } + findClosestWhenOutside && updatePossible(interval[0], i); + findClosestWhenOutside && updatePossible(interval[1], i); + } + } + + if (findClosestWhenOutside) { + return value === Infinity + ? pieceList.length - 1 + : value === -Infinity + ? 0 + : possibleI; + } + + function updatePossible(val, index) { + var newAbs = Math.abs(val - value); + if (newAbs < abs) { + abs = newAbs; + possibleI = index; + } + } + +}; + +function littleThan(close, a, b) { + return close ? a <= b : a < b; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var isArray$2 = isArray; + +var ITEM_STYLE_NORMAL = 'itemStyle'; + +var treemapVisual = { + seriesType: 'treemap', + reset: function (seriesModel, ecModel, api, payload) { + var tree = seriesModel.getData().tree; + var root = tree.root; + var seriesItemStyleModel = seriesModel.getModel(ITEM_STYLE_NORMAL); + + if (root.isRemoved()) { + return; + } + + var levelItemStyles = map(tree.levelModels, function (levelModel) { + return levelModel ? levelModel.get(ITEM_STYLE_NORMAL) : null; + }); + + travelTree( + root, // Visual should calculate from tree root but not view root. + {}, + levelItemStyles, + seriesItemStyleModel, + seriesModel.getViewRoot().getAncestors(), + seriesModel + ); + } +}; + +function travelTree( + node, designatedVisual, levelItemStyles, seriesItemStyleModel, + viewRootAncestors, seriesModel +) { + var nodeModel = node.getModel(); + var nodeLayout = node.getLayout(); + + // Optimize + if (!nodeLayout || nodeLayout.invisible || !nodeLayout.isInView) { + return; + } + + var nodeItemStyleModel = node.getModel(ITEM_STYLE_NORMAL); + var levelItemStyle = levelItemStyles[node.depth]; + var visuals = buildVisuals( + nodeItemStyleModel, designatedVisual, levelItemStyle, seriesItemStyleModel + ); + + // calculate border color + var borderColor = nodeItemStyleModel.get('borderColor'); + var borderColorSaturation = nodeItemStyleModel.get('borderColorSaturation'); + var thisNodeColor; + if (borderColorSaturation != null) { + // For performance, do not always execute 'calculateColor'. + thisNodeColor = calculateColor(visuals, node); + borderColor = calculateBorderColor(borderColorSaturation, thisNodeColor); + } + node.setVisual('borderColor', borderColor); + + var viewChildren = node.viewChildren; + if (!viewChildren || !viewChildren.length) { + thisNodeColor = calculateColor(visuals, node); + // Apply visual to this node. + node.setVisual('color', thisNodeColor); + } + else { + var mapping = buildVisualMapping( + node, nodeModel, nodeLayout, nodeItemStyleModel, visuals, viewChildren + ); + + // Designate visual to children. + each$1(viewChildren, function (child, index) { + // If higher than viewRoot, only ancestors of viewRoot is needed to visit. + if (child.depth >= viewRootAncestors.length + || child === viewRootAncestors[child.depth] + ) { + var childVisual = mapVisual$1( + nodeModel, visuals, child, index, mapping, seriesModel + ); + travelTree( + child, childVisual, levelItemStyles, seriesItemStyleModel, + viewRootAncestors, seriesModel + ); + } + }); + } +} + +function buildVisuals( + nodeItemStyleModel, designatedVisual, levelItemStyle, seriesItemStyleModel +) { + var visuals = extend({}, designatedVisual); + + each$1(['color', 'colorAlpha', 'colorSaturation'], function (visualName) { + // Priority: thisNode > thisLevel > parentNodeDesignated > seriesModel + var val = nodeItemStyleModel.get(visualName, true); // Ignore parent + val == null && levelItemStyle && (val = levelItemStyle[visualName]); + val == null && (val = designatedVisual[visualName]); + val == null && (val = seriesItemStyleModel.get(visualName)); + + val != null && (visuals[visualName] = val); + }); + + return visuals; +} + +function calculateColor(visuals) { + var color = getValueVisualDefine(visuals, 'color'); + + if (color) { + var colorAlpha = getValueVisualDefine(visuals, 'colorAlpha'); + var colorSaturation = getValueVisualDefine(visuals, 'colorSaturation'); + if (colorSaturation) { + color = modifyHSL(color, null, null, colorSaturation); + } + if (colorAlpha) { + color = modifyAlpha(color, colorAlpha); + } + + return color; + } +} + +function calculateBorderColor(borderColorSaturation, thisNodeColor) { + return thisNodeColor != null + ? modifyHSL(thisNodeColor, null, null, borderColorSaturation) + : null; +} + +function getValueVisualDefine(visuals, name) { + var value = visuals[name]; + if (value != null && value !== 'none') { + return value; + } +} + +function buildVisualMapping( + node, nodeModel, nodeLayout, nodeItemStyleModel, visuals, viewChildren +) { + if (!viewChildren || !viewChildren.length) { + return; + } + + var rangeVisual = getRangeVisual(nodeModel, 'color') + || ( + visuals.color != null + && visuals.color !== 'none' + && ( + getRangeVisual(nodeModel, 'colorAlpha') + || getRangeVisual(nodeModel, 'colorSaturation') + ) + ); + + if (!rangeVisual) { + return; + } + + var visualMin = nodeModel.get('visualMin'); + var visualMax = nodeModel.get('visualMax'); + var dataExtent = nodeLayout.dataExtent.slice(); + visualMin != null && visualMin < dataExtent[0] && (dataExtent[0] = visualMin); + visualMax != null && visualMax > dataExtent[1] && (dataExtent[1] = visualMax); + + var colorMappingBy = nodeModel.get('colorMappingBy'); + var opt = { + type: rangeVisual.name, + dataExtent: dataExtent, + visual: rangeVisual.range + }; + if (opt.type === 'color' + && (colorMappingBy === 'index' || colorMappingBy === 'id') + ) { + opt.mappingMethod = 'category'; + opt.loop = true; + // categories is ordinal, so do not set opt.categories. + } + else { + opt.mappingMethod = 'linear'; + } + + var mapping = new VisualMapping(opt); + mapping.__drColorMappingBy = colorMappingBy; + + return mapping; +} + +// Notice: If we dont have the attribute 'colorRange', but only use +// attribute 'color' to represent both concepts of 'colorRange' and 'color', +// (It means 'colorRange' when 'color' is Array, means 'color' when not array), +// this problem will be encountered: +// If a level-1 node dont have children, and its siblings has children, +// and colorRange is set on level-1, then the node can not be colored. +// So we separate 'colorRange' and 'color' to different attributes. +function getRangeVisual(nodeModel, name) { + // 'colorRange', 'colorARange', 'colorSRange'. + // If not exsits on this node, fetch from levels and series. + var range = nodeModel.get(name); + return (isArray$2(range) && range.length) ? {name: name, range: range} : null; +} + +function mapVisual$1(nodeModel, visuals, child, index, mapping, seriesModel) { + var childVisuals = extend({}, visuals); + + if (mapping) { + var mappingType = mapping.type; + var colorMappingBy = mappingType === 'color' && mapping.__drColorMappingBy; + var value = colorMappingBy === 'index' + ? index + : colorMappingBy === 'id' + ? seriesModel.mapIdToIndex(child.getId()) + : child.getValue(nodeModel.get('visualDimension')); + + childVisuals[mappingType] = mapping.mapValueToVisual(value); + } + + return childVisuals; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* A third-party license is embeded for some of the code in this file: +* The treemap layout implementation was originally copied from +* "d3.js" with some modifications made for this project. +* (See more details in the comment of the method "squarify" below.) +* The use of the source code of this file is also subject to the terms +* and consitions of the license of "d3.js" (BSD-3Clause, see +* ). +*/ + +var mathMax$4 = Math.max; +var mathMin$4 = Math.min; +var retrieveValue = retrieve; +var each$10 = each$1; + +var PATH_BORDER_WIDTH = ['itemStyle', 'borderWidth']; +var PATH_GAP_WIDTH = ['itemStyle', 'gapWidth']; +var PATH_UPPER_LABEL_SHOW = ['upperLabel', 'show']; +var PATH_UPPER_LABEL_HEIGHT = ['upperLabel', 'height']; + +/** + * @public + */ +var treemapLayout = { + seriesType: 'treemap', + reset: function (seriesModel, ecModel, api, payload) { + // Layout result in each node: + // {x, y, width, height, area, borderWidth} + var ecWidth = api.getWidth(); + var ecHeight = api.getHeight(); + var seriesOption = seriesModel.option; + + var layoutInfo = getLayoutRect( + seriesModel.getBoxLayoutParams(), + { + width: api.getWidth(), + height: api.getHeight() + } + ); + + var size = seriesOption.size || []; // Compatible with ec2. + var containerWidth = parsePercent$1( + retrieveValue(layoutInfo.width, size[0]), + ecWidth + ); + var containerHeight = parsePercent$1( + retrieveValue(layoutInfo.height, size[1]), + ecHeight + ); + + // Fetch payload info. + var payloadType = payload && payload.type; + var types = ['treemapZoomToNode', 'treemapRootToNode']; + var targetInfo = retrieveTargetInfo(payload, types, seriesModel); + var rootRect = (payloadType === 'treemapRender' || payloadType === 'treemapMove') + ? payload.rootRect : null; + var viewRoot = seriesModel.getViewRoot(); + var viewAbovePath = getPathToRoot(viewRoot); + + if (payloadType !== 'treemapMove') { + var rootSize = payloadType === 'treemapZoomToNode' + ? estimateRootSize( + seriesModel, targetInfo, viewRoot, containerWidth, containerHeight + ) + : rootRect + ? [rootRect.width, rootRect.height] + : [containerWidth, containerHeight]; + + var sort = seriesOption.sort; + if (sort && sort !== 'asc' && sort !== 'desc') { + sort = 'desc'; + } + var options = { + squareRatio: seriesOption.squareRatio, + sort: sort, + leafDepth: seriesOption.leafDepth + }; + + // layout should be cleared because using updateView but not update. + viewRoot.hostTree.clearLayouts(); + + // TODO + // optimize: if out of view clip, do not layout. + // But take care that if do not render node out of view clip, + // how to calculate start po + + var viewRootLayout = { + x: 0, y: 0, + width: rootSize[0], height: rootSize[1], + area: rootSize[0] * rootSize[1] + }; + viewRoot.setLayout(viewRootLayout); + + squarify(viewRoot, options, false, 0); + // Supplement layout. + var viewRootLayout = viewRoot.getLayout(); + each$10(viewAbovePath, function (node, index) { + var childValue = (viewAbovePath[index + 1] || viewRoot).getValue(); + node.setLayout(extend( + {dataExtent: [childValue, childValue], borderWidth: 0, upperHeight: 0}, + viewRootLayout + )); + }); + } + + var treeRoot = seriesModel.getData().tree.root; + + treeRoot.setLayout( + calculateRootPosition(layoutInfo, rootRect, targetInfo), + true + ); + + seriesModel.setLayoutInfo(layoutInfo); + + // FIXME + // 现在没有clip功能,暂时取ec高宽。 + prunning( + treeRoot, + // Transform to base element coordinate system. + new BoundingRect(-layoutInfo.x, -layoutInfo.y, ecWidth, ecHeight), + viewAbovePath, + viewRoot, + 0 + ); + } +}; + +/** + * Layout treemap with squarify algorithm. + * The original presentation of this algorithm + * was made by Mark Bruls, Kees Huizing, and Jarke J. van Wijk + * . + * The implementation of this algorithm was originally copied from "d3.js" + * + * with some modifications made for this program. + * See the license statement at the head of this file. + * + * @protected + * @param {module:echarts/data/Tree~TreeNode} node + * @param {Object} options + * @param {string} options.sort 'asc' or 'desc' + * @param {number} options.squareRatio + * @param {boolean} hideChildren + * @param {number} depth + */ +function squarify(node, options, hideChildren, depth) { + var width; + var height; + + if (node.isRemoved()) { + return; + } + + var thisLayout = node.getLayout(); + width = thisLayout.width; + height = thisLayout.height; + + // Considering border and gap + var nodeModel = node.getModel(); + var borderWidth = nodeModel.get(PATH_BORDER_WIDTH); + var halfGapWidth = nodeModel.get(PATH_GAP_WIDTH) / 2; + var upperLabelHeight = getUpperLabelHeight(nodeModel); + var upperHeight = Math.max(borderWidth, upperLabelHeight); + var layoutOffset = borderWidth - halfGapWidth; + var layoutOffsetUpper = upperHeight - halfGapWidth; + var nodeModel = node.getModel(); + + node.setLayout({ + borderWidth: borderWidth, + upperHeight: upperHeight, + upperLabelHeight: upperLabelHeight + }, true); + + width = mathMax$4(width - 2 * layoutOffset, 0); + height = mathMax$4(height - layoutOffset - layoutOffsetUpper, 0); + + var totalArea = width * height; + var viewChildren = initChildren( + node, nodeModel, totalArea, options, hideChildren, depth + ); + + if (!viewChildren.length) { + return; + } + + var rect = {x: layoutOffset, y: layoutOffsetUpper, width: width, height: height}; + var rowFixedLength = mathMin$4(width, height); + var best = Infinity; // the best row score so far + var row = []; + row.area = 0; + + for (var i = 0, len = viewChildren.length; i < len;) { + var child = viewChildren[i]; + + row.push(child); + row.area += child.getLayout().area; + var score = worst(row, rowFixedLength, options.squareRatio); + + // continue with this orientation + if (score <= best) { + i++; + best = score; + } + // abort, and try a different orientation + else { + row.area -= row.pop().getLayout().area; + position(row, rowFixedLength, rect, halfGapWidth, false); + rowFixedLength = mathMin$4(rect.width, rect.height); + row.length = row.area = 0; + best = Infinity; + } + } + + if (row.length) { + position(row, rowFixedLength, rect, halfGapWidth, true); + } + + if (!hideChildren) { + var childrenVisibleMin = nodeModel.get('childrenVisibleMin'); + if (childrenVisibleMin != null && totalArea < childrenVisibleMin) { + hideChildren = true; + } + } + + for (var i = 0, len = viewChildren.length; i < len; i++) { + squarify(viewChildren[i], options, hideChildren, depth + 1); + } +} + +/** + * Set area to each child, and calculate data extent for visual coding. + */ +function initChildren(node, nodeModel, totalArea, options, hideChildren, depth) { + var viewChildren = node.children || []; + var orderBy = options.sort; + orderBy !== 'asc' && orderBy !== 'desc' && (orderBy = null); + + var overLeafDepth = options.leafDepth != null && options.leafDepth <= depth; + + // leafDepth has higher priority. + if (hideChildren && !overLeafDepth) { + return (node.viewChildren = []); + } + + // Sort children, order by desc. + viewChildren = filter(viewChildren, function (child) { + return !child.isRemoved(); + }); + + sort$1(viewChildren, orderBy); + + var info = statistic(nodeModel, viewChildren, orderBy); + + if (info.sum === 0) { + return (node.viewChildren = []); + } + + info.sum = filterByThreshold(nodeModel, totalArea, info.sum, orderBy, viewChildren); + + if (info.sum === 0) { + return (node.viewChildren = []); + } + + // Set area to each child. + for (var i = 0, len = viewChildren.length; i < len; i++) { + var area = viewChildren[i].getValue() / info.sum * totalArea; + // Do not use setLayout({...}, true), because it is needed to clear last layout. + viewChildren[i].setLayout({area: area}); + } + + if (overLeafDepth) { + viewChildren.length && node.setLayout({isLeafRoot: true}, true); + viewChildren.length = 0; + } + + node.viewChildren = viewChildren; + node.setLayout({dataExtent: info.dataExtent}, true); + + return viewChildren; +} + +/** + * Consider 'visibleMin'. Modify viewChildren and get new sum. + */ +function filterByThreshold(nodeModel, totalArea, sum, orderBy, orderedChildren) { + + // visibleMin is not supported yet when no option.sort. + if (!orderBy) { + return sum; + } + + var visibleMin = nodeModel.get('visibleMin'); + var len = orderedChildren.length; + var deletePoint = len; + + // Always travel from little value to big value. + for (var i = len - 1; i >= 0; i--) { + var value = orderedChildren[ + orderBy === 'asc' ? len - i - 1 : i + ].getValue(); + + if (value / sum * totalArea < visibleMin) { + deletePoint = i; + sum -= value; + } + } + + orderBy === 'asc' + ? orderedChildren.splice(0, len - deletePoint) + : orderedChildren.splice(deletePoint, len - deletePoint); + + return sum; +} + +/** + * Sort + */ +function sort$1(viewChildren, orderBy) { + if (orderBy) { + viewChildren.sort(function (a, b) { + var diff = orderBy === 'asc' + ? a.getValue() - b.getValue() : b.getValue() - a.getValue(); + return diff === 0 + ? (orderBy === 'asc' + ? a.dataIndex - b.dataIndex : b.dataIndex - a.dataIndex + ) + : diff; + }); + } + return viewChildren; +} + +/** + * Statistic + */ +function statistic(nodeModel, children, orderBy) { + // Calculate sum. + var sum = 0; + for (var i = 0, len = children.length; i < len; i++) { + sum += children[i].getValue(); + } + + // Statistic data extent for latter visual coding. + // Notice: data extent should be calculate based on raw children + // but not filtered view children, otherwise visual mapping will not + // be stable when zoom (where children is filtered by visibleMin). + + var dimension = nodeModel.get('visualDimension'); + var dataExtent; + + // The same as area dimension. + if (!children || !children.length) { + dataExtent = [NaN, NaN]; + } + else if (dimension === 'value' && orderBy) { + dataExtent = [ + children[children.length - 1].getValue(), + children[0].getValue() + ]; + orderBy === 'asc' && dataExtent.reverse(); + } + // Other dimension. + else { + var dataExtent = [Infinity, -Infinity]; + each$10(children, function (child) { + var value = child.getValue(dimension); + value < dataExtent[0] && (dataExtent[0] = value); + value > dataExtent[1] && (dataExtent[1] = value); + }); + } + + return {sum: sum, dataExtent: dataExtent}; +} + +/** + * Computes the score for the specified row, + * as the worst aspect ratio. + */ +function worst(row, rowFixedLength, ratio) { + var areaMax = 0; + var areaMin = Infinity; + + for (var i = 0, area, len = row.length; i < len; i++) { + area = row[i].getLayout().area; + if (area) { + area < areaMin && (areaMin = area); + area > areaMax && (areaMax = area); + } + } + + var squareArea = row.area * row.area; + var f = rowFixedLength * rowFixedLength * ratio; + + return squareArea + ? mathMax$4( + (f * areaMax) / squareArea, + squareArea / (f * areaMin) + ) + : Infinity; +} + +/** + * Positions the specified row of nodes. Modifies `rect`. + */ +function position(row, rowFixedLength, rect, halfGapWidth, flush) { + // When rowFixedLength === rect.width, + // it is horizontal subdivision, + // rowFixedLength is the width of the subdivision, + // rowOtherLength is the height of the subdivision, + // and nodes will be positioned from left to right. + + // wh[idx0WhenH] means: when horizontal, + // wh[idx0WhenH] => wh[0] => 'width'. + // xy[idx1WhenH] => xy[1] => 'y'. + var idx0WhenH = rowFixedLength === rect.width ? 0 : 1; + var idx1WhenH = 1 - idx0WhenH; + var xy = ['x', 'y']; + var wh = ['width', 'height']; + + var last = rect[xy[idx0WhenH]]; + var rowOtherLength = rowFixedLength + ? row.area / rowFixedLength : 0; + + if (flush || rowOtherLength > rect[wh[idx1WhenH]]) { + rowOtherLength = rect[wh[idx1WhenH]]; // over+underflow + } + for (var i = 0, rowLen = row.length; i < rowLen; i++) { + var node = row[i]; + var nodeLayout = {}; + var step = rowOtherLength + ? node.getLayout().area / rowOtherLength : 0; + + var wh1 = nodeLayout[wh[idx1WhenH]] = mathMax$4(rowOtherLength - 2 * halfGapWidth, 0); + + // We use Math.max/min to avoid negative width/height when considering gap width. + var remain = rect[xy[idx0WhenH]] + rect[wh[idx0WhenH]] - last; + var modWH = (i === rowLen - 1 || remain < step) ? remain : step; + var wh0 = nodeLayout[wh[idx0WhenH]] = mathMax$4(modWH - 2 * halfGapWidth, 0); + + nodeLayout[xy[idx1WhenH]] = rect[xy[idx1WhenH]] + mathMin$4(halfGapWidth, wh1 / 2); + nodeLayout[xy[idx0WhenH]] = last + mathMin$4(halfGapWidth, wh0 / 2); + + last += modWH; + node.setLayout(nodeLayout, true); + } + + rect[xy[idx1WhenH]] += rowOtherLength; + rect[wh[idx1WhenH]] -= rowOtherLength; +} + +// Return [containerWidth, containerHeight] as defualt. +function estimateRootSize(seriesModel, targetInfo, viewRoot, containerWidth, containerHeight) { + // If targetInfo.node exists, we zoom to the node, + // so estimate whold width and heigth by target node. + var currNode = (targetInfo || {}).node; + var defaultSize = [containerWidth, containerHeight]; + + if (!currNode || currNode === viewRoot) { + return defaultSize; + } + + var parent; + var viewArea = containerWidth * containerHeight; + var area = viewArea * seriesModel.option.zoomToNodeRatio; + + while (parent = currNode.parentNode) { // jshint ignore:line + var sum = 0; + var siblings = parent.children; + + for (var i = 0, len = siblings.length; i < len; i++) { + sum += siblings[i].getValue(); + } + var currNodeValue = currNode.getValue(); + if (currNodeValue === 0) { + return defaultSize; + } + area *= sum / currNodeValue; + + // Considering border, suppose aspect ratio is 1. + var parentModel = parent.getModel(); + var borderWidth = parentModel.get(PATH_BORDER_WIDTH); + var upperHeight = Math.max(borderWidth, getUpperLabelHeight(parentModel, borderWidth)); + area += 4 * borderWidth * borderWidth + + (3 * borderWidth + upperHeight) * Math.pow(area, 0.5); + + area > MAX_SAFE_INTEGER && (area = MAX_SAFE_INTEGER); + + currNode = parent; + } + + area < viewArea && (area = viewArea); + var scale = Math.pow(area / viewArea, 0.5); + + return [containerWidth * scale, containerHeight * scale]; +} + +// Root postion base on coord of containerGroup +function calculateRootPosition(layoutInfo, rootRect, targetInfo) { + if (rootRect) { + return {x: rootRect.x, y: rootRect.y}; + } + + var defaultPosition = {x: 0, y: 0}; + if (!targetInfo) { + return defaultPosition; + } + + // If targetInfo is fetched by 'retrieveTargetInfo', + // old tree and new tree are the same tree, + // so the node still exists and we can visit it. + + var targetNode = targetInfo.node; + var layout = targetNode.getLayout(); + + if (!layout) { + return defaultPosition; + } + + // Transform coord from local to container. + var targetCenter = [layout.width / 2, layout.height / 2]; + var node = targetNode; + while (node) { + var nodeLayout = node.getLayout(); + targetCenter[0] += nodeLayout.x; + targetCenter[1] += nodeLayout.y; + node = node.parentNode; + } + + return { + x: layoutInfo.width / 2 - targetCenter[0], + y: layoutInfo.height / 2 - targetCenter[1] + }; +} + +// Mark nodes visible for prunning when visual coding and rendering. +// Prunning depends on layout and root position, so we have to do it after layout. +function prunning(node, clipRect, viewAbovePath, viewRoot, depth) { + var nodeLayout = node.getLayout(); + var nodeInViewAbovePath = viewAbovePath[depth]; + var isAboveViewRoot = nodeInViewAbovePath && nodeInViewAbovePath === node; + + if ( + (nodeInViewAbovePath && !isAboveViewRoot) + || (depth === viewAbovePath.length && node !== viewRoot) + ) { + return; + } + + node.setLayout({ + // isInView means: viewRoot sub tree + viewAbovePath + isInView: true, + // invisible only means: outside view clip so that the node can not + // see but still layout for animation preparation but not render. + invisible: !isAboveViewRoot && !clipRect.intersect(nodeLayout), + isAboveViewRoot: isAboveViewRoot + }, true); + + // Transform to child coordinate. + var childClipRect = new BoundingRect( + clipRect.x - nodeLayout.x, + clipRect.y - nodeLayout.y, + clipRect.width, + clipRect.height + ); + + each$10(node.viewChildren || [], function (child) { + prunning(child, childClipRect, viewAbovePath, viewRoot, depth + 1); + }); +} + +function getUpperLabelHeight(model) { + return model.get(PATH_UPPER_LABEL_SHOW) ? model.get(PATH_UPPER_LABEL_HEIGHT) : 0; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerVisual(treemapVisual); +registerLayout(treemapLayout); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// id may be function name of Object, add a prefix to avoid this problem. +function generateNodeKey(id) { + return '_EC_' + id; +} +/** + * @alias module:echarts/data/Graph + * @constructor + * @param {boolean} directed + */ +var Graph = function (directed) { + /** + * 是否是有向图 + * @type {boolean} + * @private + */ + this._directed = directed || false; + + /** + * @type {Array.} + * @readOnly + */ + this.nodes = []; + + /** + * @type {Array.} + * @readOnly + */ + this.edges = []; + + /** + * @type {Object.} + * @private + */ + this._nodesMap = {}; + /** + * @type {Object.} + * @private + */ + this._edgesMap = {}; + + /** + * @type {module:echarts/data/List} + * @readOnly + */ + this.data; + + /** + * @type {module:echarts/data/List} + * @readOnly + */ + this.edgeData; +}; + +var graphProto = Graph.prototype; +/** + * @type {string} + */ +graphProto.type = 'graph'; + +/** + * If is directed graph + * @return {boolean} + */ +graphProto.isDirected = function () { + return this._directed; +}; + +/** + * Add a new node + * @param {string} id + * @param {number} [dataIndex] + */ +graphProto.addNode = function (id, dataIndex) { + id = id == null ? ('' + dataIndex) : ('' + id); + + var nodesMap = this._nodesMap; + + if (nodesMap[generateNodeKey(id)]) { + if (__DEV__) { + console.error('Graph nodes have duplicate name or id'); + } + return; + } + + var node = new Node(id, dataIndex); + node.hostGraph = this; + + this.nodes.push(node); + + nodesMap[generateNodeKey(id)] = node; + return node; +}; + +/** + * Get node by data index + * @param {number} dataIndex + * @return {module:echarts/data/Graph~Node} + */ +graphProto.getNodeByIndex = function (dataIndex) { + var rawIdx = this.data.getRawIndex(dataIndex); + return this.nodes[rawIdx]; +}; +/** + * Get node by id + * @param {string} id + * @return {module:echarts/data/Graph.Node} + */ +graphProto.getNodeById = function (id) { + return this._nodesMap[generateNodeKey(id)]; +}; + +/** + * Add a new edge + * @param {number|string|module:echarts/data/Graph.Node} n1 + * @param {number|string|module:echarts/data/Graph.Node} n2 + * @param {number} [dataIndex=-1] + * @return {module:echarts/data/Graph.Edge} + */ +graphProto.addEdge = function (n1, n2, dataIndex) { + var nodesMap = this._nodesMap; + var edgesMap = this._edgesMap; + + // PNEDING + if (typeof n1 === 'number') { + n1 = this.nodes[n1]; + } + if (typeof n2 === 'number') { + n2 = this.nodes[n2]; + } + + if (!Node.isInstance(n1)) { + n1 = nodesMap[generateNodeKey(n1)]; + } + if (!Node.isInstance(n2)) { + n2 = nodesMap[generateNodeKey(n2)]; + } + if (!n1 || !n2) { + return; + } + + var key = n1.id + '-' + n2.id; + // PENDING + if (edgesMap[key]) { + return; + } + + var edge = new Edge(n1, n2, dataIndex); + edge.hostGraph = this; + + if (this._directed) { + n1.outEdges.push(edge); + n2.inEdges.push(edge); + } + n1.edges.push(edge); + if (n1 !== n2) { + n2.edges.push(edge); + } + + this.edges.push(edge); + edgesMap[key] = edge; + + return edge; +}; + +/** + * Get edge by data index + * @param {number} dataIndex + * @return {module:echarts/data/Graph~Node} + */ +graphProto.getEdgeByIndex = function (dataIndex) { + var rawIdx = this.edgeData.getRawIndex(dataIndex); + return this.edges[rawIdx]; +}; +/** + * Get edge by two linked nodes + * @param {module:echarts/data/Graph.Node|string} n1 + * @param {module:echarts/data/Graph.Node|string} n2 + * @return {module:echarts/data/Graph.Edge} + */ +graphProto.getEdge = function (n1, n2) { + if (Node.isInstance(n1)) { + n1 = n1.id; + } + if (Node.isInstance(n2)) { + n2 = n2.id; + } + + var edgesMap = this._edgesMap; + + if (this._directed) { + return edgesMap[n1 + '-' + n2]; + } + else { + return edgesMap[n1 + '-' + n2] + || edgesMap[n2 + '-' + n1]; + } +}; + +/** + * Iterate all nodes + * @param {Function} cb + * @param {*} [context] + */ +graphProto.eachNode = function (cb, context) { + var nodes = this.nodes; + var len = nodes.length; + for (var i = 0; i < len; i++) { + if (nodes[i].dataIndex >= 0) { + cb.call(context, nodes[i], i); + } + } +}; + +/** + * Iterate all edges + * @param {Function} cb + * @param {*} [context] + */ +graphProto.eachEdge = function (cb, context) { + var edges = this.edges; + var len = edges.length; + for (var i = 0; i < len; i++) { + if (edges[i].dataIndex >= 0 + && edges[i].node1.dataIndex >= 0 + && edges[i].node2.dataIndex >= 0 + ) { + cb.call(context, edges[i], i); + } + } +}; + +/** + * Breadth first traverse + * @param {Function} cb + * @param {module:echarts/data/Graph.Node} startNode + * @param {string} [direction='none'] 'none'|'in'|'out' + * @param {*} [context] + */ +graphProto.breadthFirstTraverse = function ( + cb, startNode, direction, context +) { + if (!Node.isInstance(startNode)) { + startNode = this._nodesMap[generateNodeKey(startNode)]; + } + if (!startNode) { + return; + } + + var edgeType = direction === 'out' + ? 'outEdges' : (direction === 'in' ? 'inEdges' : 'edges'); + + for (var i = 0; i < this.nodes.length; i++) { + this.nodes[i].__visited = false; + } + + if (cb.call(context, startNode, null)) { + return; + } + + var queue = [startNode]; + while (queue.length) { + var currentNode = queue.shift(); + var edges = currentNode[edgeType]; + + for (var i = 0; i < edges.length; i++) { + var e = edges[i]; + var otherNode = e.node1 === currentNode + ? e.node2 : e.node1; + if (!otherNode.__visited) { + if (cb.call(context, otherNode, currentNode)) { + // Stop traversing + return; + } + queue.push(otherNode); + otherNode.__visited = true; + } + } + } +}; + +// TODO +// graphProto.depthFirstTraverse = function ( +// cb, startNode, direction, context +// ) { + +// }; + +// Filter update +graphProto.update = function () { + var data = this.data; + var edgeData = this.edgeData; + var nodes = this.nodes; + var edges = this.edges; + + for (var i = 0, len = nodes.length; i < len; i++) { + nodes[i].dataIndex = -1; + } + for (var i = 0, len = data.count(); i < len; i++) { + nodes[data.getRawIndex(i)].dataIndex = i; + } + + edgeData.filterSelf(function (idx) { + var edge = edges[edgeData.getRawIndex(idx)]; + return edge.node1.dataIndex >= 0 && edge.node2.dataIndex >= 0; + }); + + // Update edge + for (var i = 0, len = edges.length; i < len; i++) { + edges[i].dataIndex = -1; + } + for (var i = 0, len = edgeData.count(); i < len; i++) { + edges[edgeData.getRawIndex(i)].dataIndex = i; + } +}; + +/** + * @return {module:echarts/data/Graph} + */ +graphProto.clone = function () { + var graph = new Graph(this._directed); + var nodes = this.nodes; + var edges = this.edges; + for (var i = 0; i < nodes.length; i++) { + graph.addNode(nodes[i].id, nodes[i].dataIndex); + } + for (var i = 0; i < edges.length; i++) { + var e = edges[i]; + graph.addEdge(e.node1.id, e.node2.id, e.dataIndex); + } + return graph; +}; + + +/** + * @alias module:echarts/data/Graph.Node + */ +function Node(id, dataIndex) { + /** + * @type {string} + */ + this.id = id == null ? '' : id; + + /** + * @type {Array.} + */ + this.inEdges = []; + /** + * @type {Array.} + */ + this.outEdges = []; + /** + * @type {Array.} + */ + this.edges = []; + /** + * @type {module:echarts/data/Graph} + */ + this.hostGraph; + + /** + * @type {number} + */ + this.dataIndex = dataIndex == null ? -1 : dataIndex; +} + +Node.prototype = { + + constructor: Node, + + /** + * @return {number} + */ + degree: function () { + return this.edges.length; + }, + + /** + * @return {number} + */ + inDegree: function () { + return this.inEdges.length; + }, + + /** + * @return {number} + */ + outDegree: function () { + return this.outEdges.length; + }, + + /** + * @param {string} [path] + * @return {module:echarts/model/Model} + */ + getModel: function (path) { + if (this.dataIndex < 0) { + return; + } + var graph = this.hostGraph; + var itemModel = graph.data.getItemModel(this.dataIndex); + + return itemModel.getModel(path); + } +}; + +/** + * 图边 + * @alias module:echarts/data/Graph.Edge + * @param {module:echarts/data/Graph.Node} n1 + * @param {module:echarts/data/Graph.Node} n2 + * @param {number} [dataIndex=-1] + */ +function Edge(n1, n2, dataIndex) { + + /** + * 节点1,如果是有向图则为源节点 + * @type {module:echarts/data/Graph.Node} + */ + this.node1 = n1; + + /** + * 节点2,如果是有向图则为目标节点 + * @type {module:echarts/data/Graph.Node} + */ + this.node2 = n2; + + this.dataIndex = dataIndex == null ? -1 : dataIndex; +} + +/** + * @param {string} [path] + * @return {module:echarts/model/Model} + */ +Edge.prototype.getModel = function (path) { + if (this.dataIndex < 0) { + return; + } + var graph = this.hostGraph; + var itemModel = graph.edgeData.getItemModel(this.dataIndex); + + return itemModel.getModel(path); +}; + +var createGraphDataProxyMixin = function (hostName, dataName) { + return { + /** + * @param {string=} [dimension='value'] Default 'value'. can be 'a', 'b', 'c', 'd', 'e'. + * @return {number} + */ + getValue: function (dimension) { + var data = this[hostName][dataName]; + return data.get(data.getDimension(dimension || 'value'), this.dataIndex); + }, + + /** + * @param {Object|string} key + * @param {*} [value] + */ + setVisual: function (key, value) { + this.dataIndex >= 0 + && this[hostName][dataName].setItemVisual(this.dataIndex, key, value); + }, + + /** + * @param {string} key + * @return {boolean} + */ + getVisual: function (key, ignoreParent) { + return this[hostName][dataName].getItemVisual(this.dataIndex, key, ignoreParent); + }, + + /** + * @param {Object} layout + * @return {boolean} [merge=false] + */ + setLayout: function (layout, merge$$1) { + this.dataIndex >= 0 + && this[hostName][dataName].setItemLayout(this.dataIndex, layout, merge$$1); + }, + + /** + * @return {Object} + */ + getLayout: function () { + return this[hostName][dataName].getItemLayout(this.dataIndex); + }, + + /** + * @return {module:zrender/Element} + */ + getGraphicEl: function () { + return this[hostName][dataName].getItemGraphicEl(this.dataIndex); + }, + + /** + * @return {number} + */ + getRawIndex: function () { + return this[hostName][dataName].getRawIndex(this.dataIndex); + } + }; +}; + +mixin(Node, createGraphDataProxyMixin('hostGraph', 'data')); +mixin(Edge, createGraphDataProxyMixin('hostGraph', 'edgeData')); + +Graph.Node = Node; +Graph.Edge = Edge; + +enableClassCheck(Node); +enableClassCheck(Edge); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var createGraphFromNodeEdge = function (nodes, edges, seriesModel, directed, beforeLink) { + // ??? TODO + // support dataset? + var graph = new Graph(directed); + for (var i = 0; i < nodes.length; i++) { + graph.addNode(retrieve( + // Id, name, dataIndex + nodes[i].id, nodes[i].name, i + ), i); + } + + var linkNameList = []; + var validEdges = []; + var linkCount = 0; + for (var i = 0; i < edges.length; i++) { + var link = edges[i]; + var source = link.source; + var target = link.target; + // addEdge may fail when source or target not exists + if (graph.addEdge(source, target, linkCount)) { + validEdges.push(link); + linkNameList.push(retrieve(link.id, source + ' > ' + target)); + linkCount++; + } + } + + var coordSys = seriesModel.get('coordinateSystem'); + var nodeData; + if (coordSys === 'cartesian2d' || coordSys === 'polar') { + nodeData = createListFromArray(nodes, seriesModel); + } + else { + var coordSysCtor = CoordinateSystemManager.get(coordSys); + var coordDimensions = (coordSysCtor && coordSysCtor.type !== 'view') + ? (coordSysCtor.dimensions || []) : []; + // FIXME: Some geo do not need `value` dimenson, whereas `calendar` needs + // `value` dimension, but graph need `value` dimension. It's better to + // uniform this behavior. + if (indexOf(coordDimensions, 'value') < 0) { + coordDimensions.concat(['value']); + } + + var dimensionNames = createDimensions(nodes, { + coordDimensions: coordDimensions + }); + nodeData = new List(dimensionNames, seriesModel); + nodeData.initData(nodes); + } + + var edgeData = new List(['value'], seriesModel); + edgeData.initData(validEdges, linkNameList); + + beforeLink && beforeLink(nodeData, edgeData); + + linkList({ + mainData: nodeData, + struct: graph, + structAttr: 'graph', + datas: {node: nodeData, edge: edgeData}, + datasAttr: {node: 'data', edge: 'edgeData'} + }); + + // Update dataIndex of nodes and edges because invalid edge may be removed + graph.update(); + + return graph; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var GraphSeries = extendSeriesModel({ + + type: 'series.graph', + + init: function (option) { + GraphSeries.superApply(this, 'init', arguments); + + // Provide data for legend select + this.legendDataProvider = function () { + return this._categoriesData; + }; + + this.fillDataTextStyle(option.edges || option.links); + + this._updateCategoriesData(); + }, + + mergeOption: function (option) { + GraphSeries.superApply(this, 'mergeOption', arguments); + + this.fillDataTextStyle(option.edges || option.links); + + this._updateCategoriesData(); + }, + + mergeDefaultAndTheme: function (option) { + GraphSeries.superApply(this, 'mergeDefaultAndTheme', arguments); + defaultEmphasis(option, ['edgeLabel'], ['show']); + }, + + getInitialData: function (option, ecModel) { + var edges = option.edges || option.links || []; + var nodes = option.data || option.nodes || []; + var self = this; + + if (nodes && edges) { + return createGraphFromNodeEdge(nodes, edges, this, true, beforeLink).data; + } + + function beforeLink(nodeData, edgeData) { + // Overwrite nodeData.getItemModel to + nodeData.wrapMethod('getItemModel', function (model) { + var categoriesModels = self._categoriesModels; + var categoryIdx = model.getShallow('category'); + var categoryModel = categoriesModels[categoryIdx]; + if (categoryModel) { + categoryModel.parentModel = model.parentModel; + model.parentModel = categoryModel; + } + return model; + }); + + var edgeLabelModel = self.getModel('edgeLabel'); + // For option `edgeLabel` can be found by label.xxx.xxx on item mode. + var fakeSeriesModel = new Model( + {label: edgeLabelModel.option}, + edgeLabelModel.parentModel, + ecModel + ); + var emphasisEdgeLabelModel = self.getModel('emphasis.edgeLabel'); + var emphasisFakeSeriesModel = new Model( + {emphasis: {label: emphasisEdgeLabelModel.option}}, + emphasisEdgeLabelModel.parentModel, + ecModel + ); + + edgeData.wrapMethod('getItemModel', function (model) { + model.customizeGetParent(edgeGetParent); + return model; + }); + + function edgeGetParent(path) { + path = this.parsePath(path); + return (path && path[0] === 'label') + ? fakeSeriesModel + : (path && path[0] === 'emphasis' && path[1] === 'label') + ? emphasisFakeSeriesModel + : this.parentModel; + } + } + }, + + /** + * @return {module:echarts/data/Graph} + */ + getGraph: function () { + return this.getData().graph; + }, + + /** + * @return {module:echarts/data/List} + */ + getEdgeData: function () { + return this.getGraph().edgeData; + }, + + /** + * @return {module:echarts/data/List} + */ + getCategoriesData: function () { + return this._categoriesData; + }, + + /** + * @override + */ + formatTooltip: function (dataIndex, multipleSeries, dataType) { + if (dataType === 'edge') { + var nodeData = this.getData(); + var params = this.getDataParams(dataIndex, dataType); + var edge = nodeData.graph.getEdgeByIndex(dataIndex); + var sourceName = nodeData.getName(edge.node1.dataIndex); + var targetName = nodeData.getName(edge.node2.dataIndex); + + var html = []; + sourceName != null && html.push(sourceName); + targetName != null && html.push(targetName); + html = encodeHTML(html.join(' > ')); + + if (params.value) { + html += ' : ' + encodeHTML(params.value); + } + return html; + } + else { // dataType === 'node' or empty + return GraphSeries.superApply(this, 'formatTooltip', arguments); + } + }, + + _updateCategoriesData: function () { + var categories = map(this.option.categories || [], function (category) { + // Data must has value + return category.value != null ? category : extend({ + value: 0 + }, category); + }); + var categoriesData = new List(['value'], this); + categoriesData.initData(categories); + + this._categoriesData = categoriesData; + + this._categoriesModels = categoriesData.mapArray(function (idx) { + return categoriesData.getItemModel(idx, true); + }); + }, + + setZoom: function (zoom) { + this.option.zoom = zoom; + }, + + setCenter: function (center) { + this.option.center = center; + }, + + isAnimationEnabled: function () { + return GraphSeries.superCall(this, 'isAnimationEnabled') + // Not enable animation when do force layout + && !(this.get('layout') === 'force' && this.get('force.layoutAnimation')); + }, + + defaultOption: { + zlevel: 0, + z: 2, + + coordinateSystem: 'view', + + // Default option for all coordinate systems + // xAxisIndex: 0, + // yAxisIndex: 0, + // polarIndex: 0, + // geoIndex: 0, + + legendHoverLink: true, + + hoverAnimation: true, + + layout: null, + + focusNodeAdjacency: false, + + // Configuration of circular layout + circular: { + rotateLabel: false + }, + // Configuration of force directed layout + force: { + initLayout: null, + // Node repulsion. Can be an array to represent range. + repulsion: [0, 50], + gravity: 0.1, + + // Edge length. Can be an array to represent range. + edgeLength: 30, + + layoutAnimation: true + }, + + left: 'center', + top: 'center', + // right: null, + // bottom: null, + // width: '80%', + // height: '80%', + + symbol: 'circle', + symbolSize: 10, + + edgeSymbol: ['none', 'none'], + edgeSymbolSize: 10, + edgeLabel: { + position: 'middle' + }, + + draggable: false, + + roam: false, + + // Default on center of graph + center: null, + + zoom: 1, + // Symbol size scale ratio in roam + nodeScaleRatio: 0.6, + // cursor: null, + + // categories: [], + + // data: [] + // Or + // nodes: [] + // + // links: [] + // Or + // edges: [] + + label: { + show: false, + formatter: '{b}' + }, + + itemStyle: {}, + + lineStyle: { + color: '#aaa', + width: 1, + curveness: 0, + opacity: 0.5 + }, + emphasis: { + label: { + show: true + } + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Line path for bezier and straight line draw + */ + +var straightLineProto = Line.prototype; +var bezierCurveProto = BezierCurve.prototype; + +function isLine(shape) { + return isNaN(+shape.cpx1) || isNaN(+shape.cpy1); +} + +var LinePath = extendShape({ + + type: 'ec-line', + + style: { + stroke: '#000', + fill: null + }, + + shape: { + x1: 0, + y1: 0, + x2: 0, + y2: 0, + percent: 1, + cpx1: null, + cpy1: null + }, + + buildPath: function (ctx, shape) { + this[isLine(shape) ? '_buildPathLine' : '_buildPathCurve'](ctx, shape); + }, + _buildPathLine: straightLineProto.buildPath, + _buildPathCurve: bezierCurveProto.buildPath, + + pointAt: function (t) { + return this[isLine(this.shape) ? '_pointAtLine' : '_pointAtCurve'](t); + }, + _pointAtLine: straightLineProto.pointAt, + _pointAtCurve: bezierCurveProto.pointAt, + + tangentAt: function (t) { + var shape = this.shape; + var p = isLine(shape) + ? [shape.x2 - shape.x1, shape.y2 - shape.y1] + : this._tangentAtCurve(t); + return normalize(p, p); + }, + _tangentAtCurve: bezierCurveProto.tangentAt + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @module echarts/chart/helper/Line + */ + +var SYMBOL_CATEGORIES = ['fromSymbol', 'toSymbol']; + +function makeSymbolTypeKey(symbolCategory) { + return '_' + symbolCategory + 'Type'; +} +/** + * @inner + */ +function createSymbol$1(name, lineData, idx) { + var color = lineData.getItemVisual(idx, 'color'); + var symbolType = lineData.getItemVisual(idx, name); + var symbolSize = lineData.getItemVisual(idx, name + 'Size'); + + if (!symbolType || symbolType === 'none') { + return; + } + + if (!isArray(symbolSize)) { + symbolSize = [symbolSize, symbolSize]; + } + var symbolPath = createSymbol( + symbolType, -symbolSize[0] / 2, -symbolSize[1] / 2, + symbolSize[0], symbolSize[1], color + ); + + symbolPath.name = name; + + return symbolPath; +} + +function createLine(points) { + var line = new LinePath({ + name: 'line', + subPixelOptimize: true + }); + setLinePoints(line.shape, points); + return line; +} + +function setLinePoints(targetShape, points) { + targetShape.x1 = points[0][0]; + targetShape.y1 = points[0][1]; + targetShape.x2 = points[1][0]; + targetShape.y2 = points[1][1]; + targetShape.percent = 1; + + var cp1 = points[2]; + if (cp1) { + targetShape.cpx1 = cp1[0]; + targetShape.cpy1 = cp1[1]; + } + else { + targetShape.cpx1 = NaN; + targetShape.cpy1 = NaN; + } +} + +function updateSymbolAndLabelBeforeLineUpdate() { + var lineGroup = this; + var symbolFrom = lineGroup.childOfName('fromSymbol'); + var symbolTo = lineGroup.childOfName('toSymbol'); + var label = lineGroup.childOfName('label'); + // Quick reject + if (!symbolFrom && !symbolTo && label.ignore) { + return; + } + + var invScale = 1; + var parentNode = this.parent; + while (parentNode) { + if (parentNode.scale) { + invScale /= parentNode.scale[0]; + } + parentNode = parentNode.parent; + } + + var line = lineGroup.childOfName('line'); + // If line not changed + // FIXME Parent scale changed + if (!this.__dirty && !line.__dirty) { + return; + } + + var percent = line.shape.percent; + var fromPos = line.pointAt(0); + var toPos = line.pointAt(percent); + + var d = sub([], toPos, fromPos); + normalize(d, d); + + if (symbolFrom) { + symbolFrom.attr('position', fromPos); + var tangent = line.tangentAt(0); + symbolFrom.attr('rotation', Math.PI / 2 - Math.atan2( + tangent[1], tangent[0] + )); + symbolFrom.attr('scale', [invScale * percent, invScale * percent]); + } + if (symbolTo) { + symbolTo.attr('position', toPos); + var tangent = line.tangentAt(1); + symbolTo.attr('rotation', -Math.PI / 2 - Math.atan2( + tangent[1], tangent[0] + )); + symbolTo.attr('scale', [invScale * percent, invScale * percent]); + } + + if (!label.ignore) { + label.attr('position', toPos); + + var textPosition; + var textAlign; + var textVerticalAlign; + + var distance$$1 = 5 * invScale; + // End + if (label.__position === 'end') { + textPosition = [d[0] * distance$$1 + toPos[0], d[1] * distance$$1 + toPos[1]]; + textAlign = d[0] > 0.8 ? 'left' : (d[0] < -0.8 ? 'right' : 'center'); + textVerticalAlign = d[1] > 0.8 ? 'top' : (d[1] < -0.8 ? 'bottom' : 'middle'); + } + // Middle + else if (label.__position === 'middle') { + var halfPercent = percent / 2; + var tangent = line.tangentAt(halfPercent); + var n = [tangent[1], -tangent[0]]; + var cp = line.pointAt(halfPercent); + if (n[1] > 0) { + n[0] = -n[0]; + n[1] = -n[1]; + } + textPosition = [cp[0] + n[0] * distance$$1, cp[1] + n[1] * distance$$1]; + textAlign = 'center'; + textVerticalAlign = 'bottom'; + var rotation = -Math.atan2(tangent[1], tangent[0]); + if (toPos[0] < fromPos[0]) { + rotation = Math.PI + rotation; + } + label.attr('rotation', rotation); + } + // Start + else { + textPosition = [-d[0] * distance$$1 + fromPos[0], -d[1] * distance$$1 + fromPos[1]]; + textAlign = d[0] > 0.8 ? 'right' : (d[0] < -0.8 ? 'left' : 'center'); + textVerticalAlign = d[1] > 0.8 ? 'bottom' : (d[1] < -0.8 ? 'top' : 'middle'); + } + label.attr({ + style: { + // Use the user specified text align and baseline first + textVerticalAlign: label.__verticalAlign || textVerticalAlign, + textAlign: label.__textAlign || textAlign + }, + position: textPosition, + scale: [invScale, invScale] + }); + } +} + +/** + * @constructor + * @extends {module:zrender/graphic/Group} + * @alias {module:echarts/chart/helper/Line} + */ +function Line$1(lineData, idx, seriesScope) { + Group.call(this); + + this._createLine(lineData, idx, seriesScope); +} + +var lineProto = Line$1.prototype; + +// Update symbol position and rotation +lineProto.beforeUpdate = updateSymbolAndLabelBeforeLineUpdate; + +lineProto._createLine = function (lineData, idx, seriesScope) { + var seriesModel = lineData.hostModel; + var linePoints = lineData.getItemLayout(idx); + var line = createLine(linePoints); + line.shape.percent = 0; + initProps(line, { + shape: { + percent: 1 + } + }, seriesModel, idx); + + this.add(line); + + var label = new Text({ + name: 'label', + // FIXME + // Temporary solution for `focusNodeAdjacency`. + // line label do not use the opacity of lineStyle. + lineLabelOriginalOpacity: 1 + }); + this.add(label); + + each$1(SYMBOL_CATEGORIES, function (symbolCategory) { + var symbol = createSymbol$1(symbolCategory, lineData, idx); + // symbols must added after line to make sure + // it will be updated after line#update. + // Or symbol position and rotation update in line#beforeUpdate will be one frame slow + this.add(symbol); + this[makeSymbolTypeKey(symbolCategory)] = lineData.getItemVisual(idx, symbolCategory); + }, this); + + this._updateCommonStl(lineData, idx, seriesScope); +}; + +lineProto.updateData = function (lineData, idx, seriesScope) { + var seriesModel = lineData.hostModel; + + var line = this.childOfName('line'); + var linePoints = lineData.getItemLayout(idx); + var target = { + shape: {} + }; + + setLinePoints(target.shape, linePoints); + updateProps(line, target, seriesModel, idx); + + each$1(SYMBOL_CATEGORIES, function (symbolCategory) { + var symbolType = lineData.getItemVisual(idx, symbolCategory); + var key = makeSymbolTypeKey(symbolCategory); + // Symbol changed + if (this[key] !== symbolType) { + this.remove(this.childOfName(symbolCategory)); + var symbol = createSymbol$1(symbolCategory, lineData, idx); + this.add(symbol); + } + this[key] = symbolType; + }, this); + + this._updateCommonStl(lineData, idx, seriesScope); +}; + +lineProto._updateCommonStl = function (lineData, idx, seriesScope) { + var seriesModel = lineData.hostModel; + + var line = this.childOfName('line'); + + var lineStyle = seriesScope && seriesScope.lineStyle; + var hoverLineStyle = seriesScope && seriesScope.hoverLineStyle; + var labelModel = seriesScope && seriesScope.labelModel; + var hoverLabelModel = seriesScope && seriesScope.hoverLabelModel; + + // Optimization for large dataset + if (!seriesScope || lineData.hasItemOption) { + var itemModel = lineData.getItemModel(idx); + + lineStyle = itemModel.getModel('lineStyle').getLineStyle(); + hoverLineStyle = itemModel.getModel('emphasis.lineStyle').getLineStyle(); + + labelModel = itemModel.getModel('label'); + hoverLabelModel = itemModel.getModel('emphasis.label'); + } + + var visualColor = lineData.getItemVisual(idx, 'color'); + var visualOpacity = retrieve3( + lineData.getItemVisual(idx, 'opacity'), + lineStyle.opacity, + 1 + ); + + line.useStyle(defaults( + { + strokeNoScale: true, + fill: 'none', + stroke: visualColor, + opacity: visualOpacity + }, + lineStyle + )); + line.hoverStyle = hoverLineStyle; + + // Update symbol + each$1(SYMBOL_CATEGORIES, function (symbolCategory) { + var symbol = this.childOfName(symbolCategory); + if (symbol) { + symbol.setColor(visualColor); + symbol.setStyle({ + opacity: visualOpacity + }); + } + }, this); + + var showLabel = labelModel.getShallow('show'); + var hoverShowLabel = hoverLabelModel.getShallow('show'); + + var label = this.childOfName('label'); + var defaultLabelColor; + var baseText; + + // FIXME: the logic below probably should be merged to `graphic.setLabelStyle`. + if (showLabel || hoverShowLabel) { + defaultLabelColor = visualColor || '#000'; + + baseText = seriesModel.getFormattedLabel(idx, 'normal', lineData.dataType); + if (baseText == null) { + var rawVal = seriesModel.getRawValue(idx); + baseText = rawVal == null + ? lineData.getName(idx) + : isFinite(rawVal) + ? round$1(rawVal) + : rawVal; + } + } + var normalText = showLabel ? baseText : null; + var emphasisText = hoverShowLabel + ? retrieve2( + seriesModel.getFormattedLabel(idx, 'emphasis', lineData.dataType), + baseText + ) + : null; + + var labelStyle = label.style; + + // Always set `textStyle` even if `normalStyle.text` is null, because default + // values have to be set on `normalStyle`. + if (normalText != null || emphasisText != null) { + setTextStyle(label.style, labelModel, { + text: normalText + }, { + autoColor: defaultLabelColor + }); + + label.__textAlign = labelStyle.textAlign; + label.__verticalAlign = labelStyle.textVerticalAlign; + // 'start', 'middle', 'end' + label.__position = labelModel.get('position') || 'middle'; + } + + if (emphasisText != null) { + // Only these properties supported in this emphasis style here. + label.hoverStyle = { + text: emphasisText, + textFill: hoverLabelModel.getTextColor(true), + // For merging hover style to normal style, do not use + // `hoverLabelModel.getFont()` here. + fontStyle: hoverLabelModel.getShallow('fontStyle'), + fontWeight: hoverLabelModel.getShallow('fontWeight'), + fontSize: hoverLabelModel.getShallow('fontSize'), + fontFamily: hoverLabelModel.getShallow('fontFamily') + }; + } + else { + label.hoverStyle = { + text: null + }; + } + + label.ignore = !showLabel && !hoverShowLabel; + + setHoverStyle(this); +}; + +lineProto.highlight = function () { + this.trigger('emphasis'); +}; + +lineProto.downplay = function () { + this.trigger('normal'); +}; + +lineProto.updateLayout = function (lineData, idx) { + this.setLinePoints(lineData.getItemLayout(idx)); +}; + +lineProto.setLinePoints = function (points) { + var linePath = this.childOfName('line'); + setLinePoints(linePath.shape, points); + linePath.dirty(); +}; + +inherits(Line$1, Group); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @module echarts/chart/helper/LineDraw + */ + +// import IncrementalDisplayable from 'zrender/src/graphic/IncrementalDisplayable'; + +/** + * @alias module:echarts/component/marker/LineDraw + * @constructor + */ +function LineDraw(ctor) { + this._ctor = ctor || Line$1; + + this.group = new Group(); +} + +var lineDrawProto = LineDraw.prototype; + +lineDrawProto.isPersistent = function () { + return true; +}; + +/** + * @param {module:echarts/data/List} lineData + */ +lineDrawProto.updateData = function (lineData) { + var lineDraw = this; + var group = lineDraw.group; + + var oldLineData = lineDraw._lineData; + lineDraw._lineData = lineData; + + // There is no oldLineData only when first rendering or switching from + // stream mode to normal mode, where previous elements should be removed. + if (!oldLineData) { + group.removeAll(); + } + + var seriesScope = makeSeriesScope$1(lineData); + + lineData.diff(oldLineData) + .add(function (idx) { + doAdd(lineDraw, lineData, idx, seriesScope); + }) + .update(function (newIdx, oldIdx) { + doUpdate(lineDraw, oldLineData, lineData, oldIdx, newIdx, seriesScope); + }) + .remove(function (idx) { + group.remove(oldLineData.getItemGraphicEl(idx)); + }) + .execute(); +}; + +function doAdd(lineDraw, lineData, idx, seriesScope) { + var itemLayout = lineData.getItemLayout(idx); + + if (!lineNeedsDraw(itemLayout)) { + return; + } + + var el = new lineDraw._ctor(lineData, idx, seriesScope); + lineData.setItemGraphicEl(idx, el); + lineDraw.group.add(el); +} + +function doUpdate(lineDraw, oldLineData, newLineData, oldIdx, newIdx, seriesScope) { + var itemEl = oldLineData.getItemGraphicEl(oldIdx); + + if (!lineNeedsDraw(newLineData.getItemLayout(newIdx))) { + lineDraw.group.remove(itemEl); + return; + } + + if (!itemEl) { + itemEl = new lineDraw._ctor(newLineData, newIdx, seriesScope); + } + else { + itemEl.updateData(newLineData, newIdx, seriesScope); + } + + newLineData.setItemGraphicEl(newIdx, itemEl); + + lineDraw.group.add(itemEl); +} + +lineDrawProto.updateLayout = function () { + var lineData = this._lineData; + + // Do not support update layout in incremental mode. + if (!lineData) { + return; + } + + lineData.eachItemGraphicEl(function (el, idx) { + el.updateLayout(lineData, idx); + }, this); +}; + +lineDrawProto.incrementalPrepareUpdate = function (lineData) { + this._seriesScope = makeSeriesScope$1(lineData); + this._lineData = null; + this.group.removeAll(); +}; + +lineDrawProto.incrementalUpdate = function (taskParams, lineData) { + function updateIncrementalAndHover(el) { + if (!el.isGroup) { + el.incremental = el.useHoverLayer = true; + } + } + + for (var idx = taskParams.start; idx < taskParams.end; idx++) { + var itemLayout = lineData.getItemLayout(idx); + + if (lineNeedsDraw(itemLayout)) { + var el = new this._ctor(lineData, idx, this._seriesScope); + el.traverse(updateIncrementalAndHover); + + this.group.add(el); + lineData.setItemGraphicEl(idx, el); + } + } +}; + +function makeSeriesScope$1(lineData) { + var hostModel = lineData.hostModel; + return { + lineStyle: hostModel.getModel('lineStyle').getLineStyle(), + hoverLineStyle: hostModel.getModel('emphasis.lineStyle').getLineStyle(), + labelModel: hostModel.getModel('label'), + hoverLabelModel: hostModel.getModel('emphasis.label') + }; +} + +lineDrawProto.remove = function () { + this._clearIncremental(); + this._incremental = null; + this.group.removeAll(); +}; + +lineDrawProto._clearIncremental = function () { + var incremental = this._incremental; + if (incremental) { + incremental.clearDisplaybles(); + } +}; + +function isPointNaN(pt) { + return isNaN(pt[0]) || isNaN(pt[1]); +} + +function lineNeedsDraw(pts) { + return !isPointNaN(pts[0]) && !isPointNaN(pts[1]); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function getNodeGlobalScale(seriesModel) { + var coordSys = seriesModel.coordinateSystem; + if (coordSys.type !== 'view') { + return 1; + } + + var nodeScaleRatio = seriesModel.option.nodeScaleRatio; + + var groupScale = coordSys.scale; + var groupZoom = (groupScale && groupScale[0]) || 1; + // Scale node when zoom changes + var roamZoom = coordSys.getZoom(); + var nodeScale = (roamZoom - 1) * nodeScaleRatio + 1; + + return nodeScale / groupZoom; +} + +function getSymbolSize$1(node) { + var symbolSize = node.getVisual('symbolSize'); + if (symbolSize instanceof Array) { + symbolSize = (symbolSize[0] + symbolSize[1]) / 2; + } + return +symbolSize; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var v1 = []; +var v2 = []; +var v3 = []; +var quadraticAt$1 = quadraticAt; +var v2DistSquare = distSquare; +var mathAbs$1 = Math.abs; +function intersectCurveCircle(curvePoints, center, radius) { + var p0 = curvePoints[0]; + var p1 = curvePoints[1]; + var p2 = curvePoints[2]; + + var d = Infinity; + var t; + var radiusSquare = radius * radius; + var interval = 0.1; + + for (var _t = 0.1; _t <= 0.9; _t += 0.1) { + v1[0] = quadraticAt$1(p0[0], p1[0], p2[0], _t); + v1[1] = quadraticAt$1(p0[1], p1[1], p2[1], _t); + var diff = mathAbs$1(v2DistSquare(v1, center) - radiusSquare); + if (diff < d) { + d = diff; + t = _t; + } + } + + // Assume the segment is monotone,Find root through Bisection method + // At most 32 iteration + for (var i = 0; i < 32; i++) { + // var prev = t - interval; + var next = t + interval; + // v1[0] = quadraticAt(p0[0], p1[0], p2[0], prev); + // v1[1] = quadraticAt(p0[1], p1[1], p2[1], prev); + v2[0] = quadraticAt$1(p0[0], p1[0], p2[0], t); + v2[1] = quadraticAt$1(p0[1], p1[1], p2[1], t); + v3[0] = quadraticAt$1(p0[0], p1[0], p2[0], next); + v3[1] = quadraticAt$1(p0[1], p1[1], p2[1], next); + + var diff = v2DistSquare(v2, center) - radiusSquare; + if (mathAbs$1(diff) < 1e-2) { + break; + } + + // var prevDiff = v2DistSquare(v1, center) - radiusSquare; + var nextDiff = v2DistSquare(v3, center) - radiusSquare; + + interval /= 2; + if (diff < 0) { + if (nextDiff >= 0) { + t = t + interval; + } + else { + t = t - interval; + } + } + else { + if (nextDiff >= 0) { + t = t - interval; + } + else { + t = t + interval; + } + } + } + + return t; +} + +// Adjust edge to avoid +var adjustEdge = function (graph, scale$$1) { + var tmp0 = []; + var quadraticSubdivide$$1 = quadraticSubdivide; + var pts = [[], [], []]; + var pts2 = [[], []]; + var v = []; + scale$$1 /= 2; + + graph.eachEdge(function (edge, idx) { + var linePoints = edge.getLayout(); + var fromSymbol = edge.getVisual('fromSymbol'); + var toSymbol = edge.getVisual('toSymbol'); + + if (!linePoints.__original) { + linePoints.__original = [ + clone$1(linePoints[0]), + clone$1(linePoints[1]) + ]; + if (linePoints[2]) { + linePoints.__original.push(clone$1(linePoints[2])); + } + } + var originalPoints = linePoints.__original; + // Quadratic curve + if (linePoints[2] != null) { + copy(pts[0], originalPoints[0]); + copy(pts[1], originalPoints[2]); + copy(pts[2], originalPoints[1]); + if (fromSymbol && fromSymbol !== 'none') { + var symbolSize = getSymbolSize$1(edge.node1); + + var t = intersectCurveCircle(pts, originalPoints[0], symbolSize * scale$$1); + // Subdivide and get the second + quadraticSubdivide$$1(pts[0][0], pts[1][0], pts[2][0], t, tmp0); + pts[0][0] = tmp0[3]; + pts[1][0] = tmp0[4]; + quadraticSubdivide$$1(pts[0][1], pts[1][1], pts[2][1], t, tmp0); + pts[0][1] = tmp0[3]; + pts[1][1] = tmp0[4]; + } + if (toSymbol && toSymbol !== 'none') { + var symbolSize = getSymbolSize$1(edge.node2); + + var t = intersectCurveCircle(pts, originalPoints[1], symbolSize * scale$$1); + // Subdivide and get the first + quadraticSubdivide$$1(pts[0][0], pts[1][0], pts[2][0], t, tmp0); + pts[1][0] = tmp0[1]; + pts[2][0] = tmp0[2]; + quadraticSubdivide$$1(pts[0][1], pts[1][1], pts[2][1], t, tmp0); + pts[1][1] = tmp0[1]; + pts[2][1] = tmp0[2]; + } + // Copy back to layout + copy(linePoints[0], pts[0]); + copy(linePoints[1], pts[2]); + copy(linePoints[2], pts[1]); + } + // Line + else { + copy(pts2[0], originalPoints[0]); + copy(pts2[1], originalPoints[1]); + + sub(v, pts2[1], pts2[0]); + normalize(v, v); + if (fromSymbol && fromSymbol !== 'none') { + + var symbolSize = getSymbolSize$1(edge.node1); + + scaleAndAdd(pts2[0], pts2[0], v, symbolSize * scale$$1); + } + if (toSymbol && toSymbol !== 'none') { + var symbolSize = getSymbolSize$1(edge.node2); + + scaleAndAdd(pts2[1], pts2[1], v, -symbolSize * scale$$1); + } + copy(linePoints[0], pts2[0]); + copy(linePoints[1], pts2[1]); + } + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var FOCUS_ADJACENCY = '__focusNodeAdjacency'; +var UNFOCUS_ADJACENCY = '__unfocusNodeAdjacency'; + +var nodeOpacityPath = ['itemStyle', 'opacity']; +var lineOpacityPath = ['lineStyle', 'opacity']; + +function getItemOpacity(item, opacityPath) { + var opacity = item.getVisual('opacity'); + return opacity != null ? opacity : item.getModel().get(opacityPath); +} + +function fadeOutItem(item, opacityPath, opacityRatio) { + var el = item.getGraphicEl(); + var opacity = getItemOpacity(item, opacityPath); + + if (opacityRatio != null) { + opacity == null && (opacity = 1); + opacity *= opacityRatio; + } + + el.downplay && el.downplay(); + el.traverse(function (child) { + if (!child.isGroup) { + var opct = child.lineLabelOriginalOpacity; + if (opct == null || opacityRatio != null) { + opct = opacity; + } + child.setStyle('opacity', opct); + } + }); +} + +function fadeInItem(item, opacityPath) { + var opacity = getItemOpacity(item, opacityPath); + var el = item.getGraphicEl(); + // Should go back to normal opacity first, consider hoverLayer, + // where current state is copied to elMirror, and support + // emphasis opacity here. + el.traverse(function (child) { + !child.isGroup && child.setStyle('opacity', opacity); + }); + el.highlight && el.highlight(); +} + +extendChartView({ + + type: 'graph', + + init: function (ecModel, api) { + var symbolDraw = new SymbolDraw(); + var lineDraw = new LineDraw(); + var group = this.group; + + this._controller = new RoamController(api.getZr()); + this._controllerHost = {target: group}; + + group.add(symbolDraw.group); + group.add(lineDraw.group); + + this._symbolDraw = symbolDraw; + this._lineDraw = lineDraw; + + this._firstRender = true; + }, + + render: function (seriesModel, ecModel, api) { + var coordSys = seriesModel.coordinateSystem; + + this._model = seriesModel; + + var symbolDraw = this._symbolDraw; + var lineDraw = this._lineDraw; + + var group = this.group; + + if (coordSys.type === 'view') { + var groupNewProp = { + position: coordSys.position, + scale: coordSys.scale + }; + if (this._firstRender) { + group.attr(groupNewProp); + } + else { + updateProps(group, groupNewProp, seriesModel); + } + } + // Fix edge contact point with node + adjustEdge(seriesModel.getGraph(), getNodeGlobalScale(seriesModel)); + + var data = seriesModel.getData(); + symbolDraw.updateData(data); + + var edgeData = seriesModel.getEdgeData(); + lineDraw.updateData(edgeData); + + this._updateNodeAndLinkScale(); + + this._updateController(seriesModel, ecModel, api); + + clearTimeout(this._layoutTimeout); + var forceLayout = seriesModel.forceLayout; + var layoutAnimation = seriesModel.get('force.layoutAnimation'); + if (forceLayout) { + this._startForceLayoutIteration(forceLayout, layoutAnimation); + } + + data.eachItemGraphicEl(function (el, idx) { + var itemModel = data.getItemModel(idx); + // Update draggable + el.off('drag').off('dragend'); + var draggable = itemModel.get('draggable'); + if (draggable) { + el.on('drag', function () { + if (forceLayout) { + forceLayout.warmUp(); + !this._layouting + && this._startForceLayoutIteration(forceLayout, layoutAnimation); + forceLayout.setFixed(idx); + // Write position back to layout + data.setItemLayout(idx, el.position); + } + }, this).on('dragend', function () { + if (forceLayout) { + forceLayout.setUnfixed(idx); + } + }, this); + } + el.setDraggable(draggable && forceLayout); + + el[FOCUS_ADJACENCY] && el.off('mouseover', el[FOCUS_ADJACENCY]); + el[UNFOCUS_ADJACENCY] && el.off('mouseout', el[UNFOCUS_ADJACENCY]); + + if (itemModel.get('focusNodeAdjacency')) { + el.on('mouseover', el[FOCUS_ADJACENCY] = function () { + api.dispatchAction({ + type: 'focusNodeAdjacency', + seriesId: seriesModel.id, + dataIndex: el.dataIndex + }); + }); + el.on('mouseout', el[UNFOCUS_ADJACENCY] = function () { + api.dispatchAction({ + type: 'unfocusNodeAdjacency', + seriesId: seriesModel.id + }); + }); + } + + }, this); + + data.graph.eachEdge(function (edge) { + var el = edge.getGraphicEl(); + + el[FOCUS_ADJACENCY] && el.off('mouseover', el[FOCUS_ADJACENCY]); + el[UNFOCUS_ADJACENCY] && el.off('mouseout', el[UNFOCUS_ADJACENCY]); + + if (edge.getModel().get('focusNodeAdjacency')) { + el.on('mouseover', el[FOCUS_ADJACENCY] = function () { + api.dispatchAction({ + type: 'focusNodeAdjacency', + seriesId: seriesModel.id, + edgeDataIndex: edge.dataIndex + }); + }); + el.on('mouseout', el[UNFOCUS_ADJACENCY] = function () { + api.dispatchAction({ + type: 'unfocusNodeAdjacency', + seriesId: seriesModel.id + }); + }); + } + }); + + var circularRotateLabel = seriesModel.get('layout') === 'circular' + && seriesModel.get('circular.rotateLabel'); + var cx = data.getLayout('cx'); + var cy = data.getLayout('cy'); + data.eachItemGraphicEl(function (el, idx) { + var itemModel = data.getItemModel(idx); + var labelRotate = itemModel.get('label.rotate') || 0; + var symbolPath = el.getSymbolPath(); + if (circularRotateLabel) { + var pos = data.getItemLayout(idx); + var rad = Math.atan2(pos[1] - cy, pos[0] - cx); + if (rad < 0) { + rad = Math.PI * 2 + rad; + } + var isLeft = pos[0] < cx; + if (isLeft) { + rad = rad - Math.PI; + } + var textPosition = isLeft ? 'left' : 'right'; + modifyLabelStyle( + symbolPath, + { + textRotation: -rad, + textPosition: textPosition, + textOrigin: 'center' + }, + { + textPosition: textPosition + } + ); + } + else { + modifyLabelStyle( + symbolPath, + { + textRotation: labelRotate *= Math.PI / 180 + } + ); + } + }); + + this._firstRender = false; + }, + + dispose: function () { + this._controller && this._controller.dispose(); + this._controllerHost = {}; + }, + + focusNodeAdjacency: function (seriesModel, ecModel, api, payload) { + var data = this._model.getData(); + var graph = data.graph; + var dataIndex = payload.dataIndex; + var edgeDataIndex = payload.edgeDataIndex; + + var node = graph.getNodeByIndex(dataIndex); + var edge = graph.getEdgeByIndex(edgeDataIndex); + + if (!node && !edge) { + return; + } + + graph.eachNode(function (node) { + fadeOutItem(node, nodeOpacityPath, 0.1); + }); + graph.eachEdge(function (edge) { + fadeOutItem(edge, lineOpacityPath, 0.1); + }); + + if (node) { + fadeInItem(node, nodeOpacityPath); + each$1(node.edges, function (adjacentEdge) { + if (adjacentEdge.dataIndex < 0) { + return; + } + fadeInItem(adjacentEdge, lineOpacityPath); + fadeInItem(adjacentEdge.node1, nodeOpacityPath); + fadeInItem(adjacentEdge.node2, nodeOpacityPath); + }); + } + if (edge) { + fadeInItem(edge, lineOpacityPath); + fadeInItem(edge.node1, nodeOpacityPath); + fadeInItem(edge.node2, nodeOpacityPath); + } + }, + + unfocusNodeAdjacency: function (seriesModel, ecModel, api, payload) { + var graph = this._model.getData().graph; + + graph.eachNode(function (node) { + fadeOutItem(node, nodeOpacityPath); + }); + graph.eachEdge(function (edge) { + fadeOutItem(edge, lineOpacityPath); + }); + }, + + _startForceLayoutIteration: function (forceLayout, layoutAnimation) { + var self = this; + (function step() { + forceLayout.step(function (stopped) { + self.updateLayout(self._model); + (self._layouting = !stopped) && ( + layoutAnimation + ? (self._layoutTimeout = setTimeout(step, 16)) + : step() + ); + }); + })(); + }, + + _updateController: function (seriesModel, ecModel, api) { + var controller = this._controller; + var controllerHost = this._controllerHost; + var group = this.group; + + controller.setPointerChecker(function (e, x, y) { + var rect = group.getBoundingRect(); + rect.applyTransform(group.transform); + return rect.contain(x, y) + && !onIrrelevantElement(e, api, seriesModel); + }); + + if (seriesModel.coordinateSystem.type !== 'view') { + controller.disable(); + return; + } + controller.enable(seriesModel.get('roam')); + controllerHost.zoomLimit = seriesModel.get('scaleLimit'); + controllerHost.zoom = seriesModel.coordinateSystem.getZoom(); + + controller + .off('pan') + .off('zoom') + .on('pan', function (e) { + updateViewOnPan(controllerHost, e.dx, e.dy); + api.dispatchAction({ + seriesId: seriesModel.id, + type: 'graphRoam', + dx: e.dx, + dy: e.dy + }); + }) + .on('zoom', function (e) { + updateViewOnZoom(controllerHost, e.scale, e.originX, e.originY); + api.dispatchAction({ + seriesId: seriesModel.id, + type: 'graphRoam', + zoom: e.scale, + originX: e.originX, + originY: e.originY + }); + this._updateNodeAndLinkScale(); + adjustEdge(seriesModel.getGraph(), getNodeGlobalScale(seriesModel)); + this._lineDraw.updateLayout(); + }, this); + }, + + _updateNodeAndLinkScale: function () { + var seriesModel = this._model; + var data = seriesModel.getData(); + + var nodeScale = getNodeGlobalScale(seriesModel); + var invScale = [nodeScale, nodeScale]; + + data.eachItemGraphicEl(function (el, idx) { + el.attr('scale', invScale); + }); + }, + + updateLayout: function (seriesModel) { + adjustEdge(seriesModel.getGraph(), getNodeGlobalScale(seriesModel)); + + this._symbolDraw.updateLayout(); + this._lineDraw.updateLayout(); + }, + + remove: function (ecModel, api) { + this._symbolDraw && this._symbolDraw.remove(); + this._lineDraw && this._lineDraw.remove(); + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @payload + * @property {number} [seriesIndex] + * @property {string} [seriesId] + * @property {string} [seriesName] + * @property {number} [dataIndex] + */ +registerAction({ + type: 'focusNodeAdjacency', + event: 'focusNodeAdjacency', + update: 'series:focusNodeAdjacency' +}, function () {}); + +/** + * @payload + * @property {number} [seriesIndex] + * @property {string} [seriesId] + * @property {string} [seriesName] + */ +registerAction({ + type: 'unfocusNodeAdjacency', + event: 'unfocusNodeAdjacency', + update: 'series:unfocusNodeAdjacency' +}, function () {}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var actionInfo = { + type: 'graphRoam', + event: 'graphRoam', + update: 'none' +}; + +/** + * @payload + * @property {string} name Series name + * @property {number} [dx] + * @property {number} [dy] + * @property {number} [zoom] + * @property {number} [originX] + * @property {number} [originY] + */ +registerAction(actionInfo, function (payload, ecModel) { + ecModel.eachComponent({mainType: 'series', query: payload}, function (seriesModel) { + var coordSys = seriesModel.coordinateSystem; + + var res = updateCenterAndZoom(coordSys, payload); + + seriesModel.setCenter + && seriesModel.setCenter(res.center); + + seriesModel.setZoom + && seriesModel.setZoom(res.zoom); + }); +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var categoryFilter = function (ecModel) { + var legendModels = ecModel.findComponents({ + mainType: 'legend' + }); + if (!legendModels || !legendModels.length) { + return; + } + ecModel.eachSeriesByType('graph', function (graphSeries) { + var categoriesData = graphSeries.getCategoriesData(); + var graph = graphSeries.getGraph(); + var data = graph.data; + + var categoryNames = categoriesData.mapArray(categoriesData.getName); + + data.filterSelf(function (idx) { + var model = data.getItemModel(idx); + var category = model.getShallow('category'); + if (category != null) { + if (typeof category === 'number') { + category = categoryNames[category]; + } + // If in any legend component the status is not selected. + for (var i = 0; i < legendModels.length; i++) { + if (!legendModels[i].isSelected(category)) { + return false; + } + } + } + return true; + }); + }, this); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var categoryVisual = function (ecModel) { + + var paletteScope = {}; + ecModel.eachSeriesByType('graph', function (seriesModel) { + var categoriesData = seriesModel.getCategoriesData(); + var data = seriesModel.getData(); + + var categoryNameIdxMap = {}; + + categoriesData.each(function (idx) { + var name = categoriesData.getName(idx); + // Add prefix to avoid conflict with Object.prototype. + categoryNameIdxMap['ec-' + name] = idx; + var itemModel = categoriesData.getItemModel(idx); + + var color = itemModel.get('itemStyle.color') + || seriesModel.getColorFromPalette(name, paletteScope); + categoriesData.setItemVisual(idx, 'color', color); + + var itemStyleList = ['opacity', 'symbol', 'symbolSize', 'symbolKeepAspect']; + for (var i = 0; i < itemStyleList.length; i++) { + var itemStyle = itemModel.getShallow(itemStyleList[i], true); + if (itemStyle != null) { + categoriesData.setItemVisual(idx, itemStyleList[i], itemStyle); + } + } + }); + + // Assign category color to visual + if (categoriesData.count()) { + data.each(function (idx) { + var model = data.getItemModel(idx); + var category = model.getShallow('category'); + if (category != null) { + if (typeof category === 'string') { + category = categoryNameIdxMap['ec-' + category]; + } + + var itemStyleList = ['color', 'opacity', 'symbol', 'symbolSize', 'symbolKeepAspect']; + + for (var i = 0; i < itemStyleList.length; i++) { + if (data.getItemVisual(idx, itemStyleList[i], true) == null) { + data.setItemVisual( + idx, itemStyleList[i], + categoriesData.getItemVisual(category, itemStyleList[i]) + ); + } + } + } + }); + } + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +function normalize$1(a) { + if (!(a instanceof Array)) { + a = [a, a]; + } + return a; +} + +var edgeVisual = function (ecModel) { + ecModel.eachSeriesByType('graph', function (seriesModel) { + var graph = seriesModel.getGraph(); + var edgeData = seriesModel.getEdgeData(); + var symbolType = normalize$1(seriesModel.get('edgeSymbol')); + var symbolSize = normalize$1(seriesModel.get('edgeSymbolSize')); + + var colorQuery = 'lineStyle.color'.split('.'); + var opacityQuery = 'lineStyle.opacity'.split('.'); + + edgeData.setVisual('fromSymbol', symbolType && symbolType[0]); + edgeData.setVisual('toSymbol', symbolType && symbolType[1]); + edgeData.setVisual('fromSymbolSize', symbolSize && symbolSize[0]); + edgeData.setVisual('toSymbolSize', symbolSize && symbolSize[1]); + edgeData.setVisual('color', seriesModel.get(colorQuery)); + edgeData.setVisual('opacity', seriesModel.get(opacityQuery)); + + edgeData.each(function (idx) { + var itemModel = edgeData.getItemModel(idx); + var edge = graph.getEdgeByIndex(idx); + var symbolType = normalize$1(itemModel.getShallow('symbol', true)); + var symbolSize = normalize$1(itemModel.getShallow('symbolSize', true)); + // Edge visual must after node visual + var color = itemModel.get(colorQuery); + var opacity = itemModel.get(opacityQuery); + switch (color) { + case 'source': + color = edge.node1.getVisual('color'); + break; + case 'target': + color = edge.node2.getVisual('color'); + break; + } + + symbolType[0] && edge.setVisual('fromSymbol', symbolType[0]); + symbolType[1] && edge.setVisual('toSymbol', symbolType[1]); + symbolSize[0] && edge.setVisual('fromSymbolSize', symbolSize[0]); + symbolSize[1] && edge.setVisual('toSymbolSize', symbolSize[1]); + + edge.setVisual('color', color); + edge.setVisual('opacity', opacity); + }); + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function simpleLayout$1(seriesModel) { + var coordSys = seriesModel.coordinateSystem; + if (coordSys && coordSys.type !== 'view') { + return; + } + var graph = seriesModel.getGraph(); + + graph.eachNode(function (node) { + var model = node.getModel(); + node.setLayout([+model.get('x'), +model.get('y')]); + }); + + simpleLayoutEdge(graph); +} + +function simpleLayoutEdge(graph) { + graph.eachEdge(function (edge) { + var curveness = edge.getModel().get('lineStyle.curveness') || 0; + var p1 = clone$1(edge.node1.getLayout()); + var p2 = clone$1(edge.node2.getLayout()); + var points = [p1, p2]; + if (+curveness) { + points.push([ + (p1[0] + p2[0]) / 2 - (p1[1] - p2[1]) * curveness, + (p1[1] + p2[1]) / 2 - (p2[0] - p1[0]) * curveness + ]); + } + edge.setLayout(points); + }); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var simpleLayout = function (ecModel, api) { + ecModel.eachSeriesByType('graph', function (seriesModel) { + var layout = seriesModel.get('layout'); + var coordSys = seriesModel.coordinateSystem; + if (coordSys && coordSys.type !== 'view') { + var data = seriesModel.getData(); + + var dimensions = []; + each$1(coordSys.dimensions, function (coordDim) { + dimensions = dimensions.concat(data.mapDimension(coordDim, true)); + }); + + for (var dataIndex = 0; dataIndex < data.count(); dataIndex++) { + var value = []; + var hasValue = false; + for (var i = 0; i < dimensions.length; i++) { + var val = data.get(dimensions[i], dataIndex); + if (!isNaN(val)) { + hasValue = true; + } + value.push(val); + } + if (hasValue) { + data.setItemLayout(dataIndex, coordSys.dataToPoint(value)); + } + else { + // Also {Array.}, not undefined to avoid if...else... statement + data.setItemLayout(dataIndex, [NaN, NaN]); + } + } + + simpleLayoutEdge(data.graph); + } + else if (!layout || layout === 'none') { + simpleLayout$1(seriesModel); + } + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var PI$3 = Math.PI; + +var _symbolRadiansHalf = []; + +/** + * `basedOn` can be: + * 'value': + * This layout is not accurate and have same bad case. For example, + * if the min value is very smaller than the max value, the nodes + * with the min value probably overlap even though there is enough + * space to layout them. So we only use this approach in the as the + * init layout of the force layout. + * FIXME + * Probably we do not need this method any more but use + * `basedOn: 'symbolSize'` in force layout if + * delay its init operations to GraphView. + * 'symbolSize': + * This approach work only if all of the symbol size calculated. + * That is, the progressive rendering is not applied to graph. + * FIXME + * If progressive rendering is applied to graph some day, + * probably we have to use `basedOn: 'value'`. + * + * @param {module:echarts/src/model/Series} seriesModel + * @param {string} basedOn 'value' or 'symbolSize' + */ +function circularLayout$1(seriesModel, basedOn) { + var coordSys = seriesModel.coordinateSystem; + if (coordSys && coordSys.type !== 'view') { + return; + } + + var rect = coordSys.getBoundingRect(); + + var nodeData = seriesModel.getData(); + var graph = nodeData.graph; + + var cx = rect.width / 2 + rect.x; + var cy = rect.height / 2 + rect.y; + var r = Math.min(rect.width, rect.height) / 2; + var count = nodeData.count(); + + nodeData.setLayout({ + cx: cx, + cy: cy + }); + + if (!count) { + return; + } + + _layoutNodesBasedOn[basedOn](seriesModel, coordSys, graph, nodeData, r, cx, cy, count); + + graph.eachEdge(function (edge) { + var curveness = edge.getModel().get('lineStyle.curveness') || 0; + var p1 = clone$1(edge.node1.getLayout()); + var p2 = clone$1(edge.node2.getLayout()); + var cp1; + var x12 = (p1[0] + p2[0]) / 2; + var y12 = (p1[1] + p2[1]) / 2; + if (+curveness) { + curveness *= 3; + cp1 = [ + cx * curveness + x12 * (1 - curveness), + cy * curveness + y12 * (1 - curveness) + ]; + } + edge.setLayout([p1, p2, cp1]); + }); +} + +var _layoutNodesBasedOn = { + + value: function (seriesModel, coordSys, graph, nodeData, r, cx, cy, count) { + var angle = 0; + var sum = nodeData.getSum('value'); + var unitAngle = Math.PI * 2 / (sum || count); + + graph.eachNode(function (node) { + var value = node.getValue('value'); + var radianHalf = unitAngle * (sum ? value : 1) / 2; + + angle += radianHalf; + node.setLayout([ + r * Math.cos(angle) + cx, + r * Math.sin(angle) + cy + ]); + angle += radianHalf; + }); + }, + + symbolSize: function (seriesModel, coordSys, graph, nodeData, r, cx, cy, count) { + var sumRadian = 0; + _symbolRadiansHalf.length = count; + + var nodeScale = getNodeGlobalScale(seriesModel); + + graph.eachNode(function (node) { + var symbolSize = getSymbolSize$1(node); + + // Normally this case will not happen, but we still add + // some the defensive code (2px is an arbitrary value). + isNaN(symbolSize) && (symbolSize = 2); + symbolSize < 0 && (symbolSize = 0); + + symbolSize *= nodeScale; + + var symbolRadianHalf = Math.asin(symbolSize / 2 / r); + // when `symbolSize / 2` is bigger than `r`. + isNaN(symbolRadianHalf) && (symbolRadianHalf = PI$3 / 2); + _symbolRadiansHalf[node.dataIndex] = symbolRadianHalf; + sumRadian += symbolRadianHalf * 2; + }); + + var halfRemainRadian = (2 * PI$3 - sumRadian) / count / 2; + + var angle = 0; + graph.eachNode(function (node) { + var radianHalf = halfRemainRadian + _symbolRadiansHalf[node.dataIndex]; + + angle += radianHalf; + node.setLayout([ + r * Math.cos(angle) + cx, + r * Math.sin(angle) + cy + ]); + angle += radianHalf; + }); + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var circularLayout = function (ecModel) { + ecModel.eachSeriesByType('graph', function (seriesModel) { + if (seriesModel.get('layout') === 'circular') { + circularLayout$1(seriesModel, 'symbolSize'); + } + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* A third-party license is embeded for some of the code in this file: +* Some formulas were originally copied from "d3.js" with some +* modifications made for this project. +* (See more details in the comment of the method "step" below.) +* The use of the source code of this file is also subject to the terms +* and consitions of the license of "d3.js" (BSD-3Clause, see +* ). +*/ + +var scaleAndAdd$2 = scaleAndAdd; + +// function adjacentNode(n, e) { +// return e.n1 === n ? e.n2 : e.n1; +// } + +function forceLayout$1(nodes, edges, opts) { + var rect = opts.rect; + var width = rect.width; + var height = rect.height; + var center = [rect.x + width / 2, rect.y + height / 2]; + // var scale = opts.scale || 1; + var gravity = opts.gravity == null ? 0.1 : opts.gravity; + + // for (var i = 0; i < edges.length; i++) { + // var e = edges[i]; + // var n1 = e.n1; + // var n2 = e.n2; + // n1.edges = n1.edges || []; + // n2.edges = n2.edges || []; + // n1.edges.push(e); + // n2.edges.push(e); + // } + // Init position + for (var i = 0; i < nodes.length; i++) { + var n = nodes[i]; + if (!n.p) { + n.p = create( + width * (Math.random() - 0.5) + center[0], + height * (Math.random() - 0.5) + center[1] + ); + } + n.pp = clone$1(n.p); + n.edges = null; + } + + // Formula in 'Graph Drawing by Force-directed Placement' + // var k = scale * Math.sqrt(width * height / nodes.length); + // var k2 = k * k; + + var friction = 0.6; + + return { + warmUp: function () { + friction = 0.5; + }, + + setFixed: function (idx) { + nodes[idx].fixed = true; + }, + + setUnfixed: function (idx) { + nodes[idx].fixed = false; + }, + + /** + * Some formulas were originally copied from "d3.js" + * https://github.com/d3/d3/blob/b516d77fb8566b576088e73410437494717ada26/src/layout/force.js + * with some modifications made for this project. + * See the license statement at the head of this file. + */ + step: function (cb) { + var v12 = []; + var nLen = nodes.length; + for (var i = 0; i < edges.length; i++) { + var e = edges[i]; + var n1 = e.n1; + var n2 = e.n2; + + sub(v12, n2.p, n1.p); + var d = len(v12) - e.d; + var w = n2.w / (n1.w + n2.w); + + if (isNaN(w)) { + w = 0; + } + + normalize(v12, v12); + + !n1.fixed && scaleAndAdd$2(n1.p, n1.p, v12, w * d * friction); + !n2.fixed && scaleAndAdd$2(n2.p, n2.p, v12, -(1 - w) * d * friction); + } + // Gravity + for (var i = 0; i < nLen; i++) { + var n = nodes[i]; + if (!n.fixed) { + sub(v12, center, n.p); + // var d = vec2.len(v12); + // vec2.scale(v12, v12, 1 / d); + // var gravityFactor = gravity; + scaleAndAdd$2(n.p, n.p, v12, gravity * friction); + } + } + + // Repulsive + // PENDING + for (var i = 0; i < nLen; i++) { + var n1 = nodes[i]; + for (var j = i + 1; j < nLen; j++) { + var n2 = nodes[j]; + sub(v12, n2.p, n1.p); + var d = len(v12); + if (d === 0) { + // Random repulse + set(v12, Math.random() - 0.5, Math.random() - 0.5); + d = 1; + } + var repFact = (n1.rep + n2.rep) / d / d; + !n1.fixed && scaleAndAdd$2(n1.pp, n1.pp, v12, repFact); + !n2.fixed && scaleAndAdd$2(n2.pp, n2.pp, v12, -repFact); + } + } + var v = []; + for (var i = 0; i < nLen; i++) { + var n = nodes[i]; + if (!n.fixed) { + sub(v, n.p, n.pp); + scaleAndAdd$2(n.p, n.p, v, friction); + copy(n.pp, n.p); + } + } + + friction = friction * 0.992; + + cb && cb(nodes, edges, friction < 0.01); + } + }; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var forceLayout = function (ecModel) { + ecModel.eachSeriesByType('graph', function (graphSeries) { + var coordSys = graphSeries.coordinateSystem; + if (coordSys && coordSys.type !== 'view') { + return; + } + if (graphSeries.get('layout') === 'force') { + var preservedPoints = graphSeries.preservedPoints || {}; + var graph = graphSeries.getGraph(); + var nodeData = graph.data; + var edgeData = graph.edgeData; + var forceModel = graphSeries.getModel('force'); + var initLayout = forceModel.get('initLayout'); + if (graphSeries.preservedPoints) { + nodeData.each(function (idx) { + var id = nodeData.getId(idx); + nodeData.setItemLayout(idx, preservedPoints[id] || [NaN, NaN]); + }); + } + else if (!initLayout || initLayout === 'none') { + simpleLayout$1(graphSeries); + } + else if (initLayout === 'circular') { + circularLayout$1(graphSeries, 'value'); + } + + var nodeDataExtent = nodeData.getDataExtent('value'); + var edgeDataExtent = edgeData.getDataExtent('value'); + // var edgeDataExtent = edgeData.getDataExtent('value'); + var repulsion = forceModel.get('repulsion'); + var edgeLength = forceModel.get('edgeLength'); + if (!isArray(repulsion)) { + repulsion = [repulsion, repulsion]; + } + if (!isArray(edgeLength)) { + edgeLength = [edgeLength, edgeLength]; + } + // Larger value has smaller length + edgeLength = [edgeLength[1], edgeLength[0]]; + + var nodes = nodeData.mapArray('value', function (value, idx) { + var point = nodeData.getItemLayout(idx); + var rep = linearMap(value, nodeDataExtent, repulsion); + if (isNaN(rep)) { + rep = (repulsion[0] + repulsion[1]) / 2; + } + return { + w: rep, + rep: rep, + fixed: nodeData.getItemModel(idx).get('fixed'), + p: (!point || isNaN(point[0]) || isNaN(point[1])) ? null : point + }; + }); + var edges = edgeData.mapArray('value', function (value, idx) { + var edge = graph.getEdgeByIndex(idx); + var d = linearMap(value, edgeDataExtent, edgeLength); + if (isNaN(d)) { + d = (edgeLength[0] + edgeLength[1]) / 2; + } + return { + n1: nodes[edge.node1.dataIndex], + n2: nodes[edge.node2.dataIndex], + d: d, + curveness: edge.getModel().get('lineStyle.curveness') || 0 + }; + }); + + var coordSys = graphSeries.coordinateSystem; + var rect = coordSys.getBoundingRect(); + var forceInstance = forceLayout$1(nodes, edges, { + rect: rect, + gravity: forceModel.get('gravity') + }); + var oldStep = forceInstance.step; + forceInstance.step = function (cb) { + for (var i = 0, l = nodes.length; i < l; i++) { + if (nodes[i].fixed) { + // Write back to layout instance + copy(nodes[i].p, graph.getNodeByIndex(i).getLayout()); + } + } + oldStep(function (nodes, edges, stopped) { + for (var i = 0, l = nodes.length; i < l; i++) { + if (!nodes[i].fixed) { + graph.getNodeByIndex(i).setLayout(nodes[i].p); + } + preservedPoints[nodeData.getId(i)] = nodes[i].p; + } + for (var i = 0, l = edges.length; i < l; i++) { + var e = edges[i]; + var edge = graph.getEdgeByIndex(i); + var p1 = e.n1.p; + var p2 = e.n2.p; + var points = edge.getLayout(); + points = points ? points.slice() : []; + points[0] = points[0] || []; + points[1] = points[1] || []; + copy(points[0], p1); + copy(points[1], p2); + if (+e.curveness) { + points[2] = [ + (p1[0] + p2[0]) / 2 - (p1[1] - p2[1]) * e.curveness, + (p1[1] + p2[1]) / 2 - (p2[0] - p1[0]) * e.curveness + ]; + } + edge.setLayout(points); + } + // Update layout + + cb && cb(stopped); + }); + }; + graphSeries.forceLayout = forceInstance; + graphSeries.preservedPoints = preservedPoints; + + // Step to get the layout + forceInstance.step(); + } + else { + // Remove prev injected forceLayout instance + graphSeries.forceLayout = null; + } + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// FIXME Where to create the simple view coordinate system +function getViewRect$1(seriesModel, api, aspect) { + var option = seriesModel.getBoxLayoutParams(); + option.aspect = aspect; + return getLayoutRect(option, { + width: api.getWidth(), + height: api.getHeight() + }); +} + +var createView = function (ecModel, api) { + var viewList = []; + ecModel.eachSeriesByType('graph', function (seriesModel) { + var coordSysType = seriesModel.get('coordinateSystem'); + if (!coordSysType || coordSysType === 'view') { + + var data = seriesModel.getData(); + var positions = data.mapArray(function (idx) { + var itemModel = data.getItemModel(idx); + return [+itemModel.get('x'), +itemModel.get('y')]; + }); + + var min = []; + var max = []; + + fromPoints(positions, min, max); + + // If width or height is 0 + if (max[0] - min[0] === 0) { + max[0] += 1; + min[0] -= 1; + } + if (max[1] - min[1] === 0) { + max[1] += 1; + min[1] -= 1; + } + var aspect = (max[0] - min[0]) / (max[1] - min[1]); + // FIXME If get view rect after data processed? + var viewRect = getViewRect$1(seriesModel, api, aspect); + // Position may be NaN, use view rect instead + if (isNaN(aspect)) { + min = [viewRect.x, viewRect.y]; + max = [viewRect.x + viewRect.width, viewRect.y + viewRect.height]; + } + + var bbWidth = max[0] - min[0]; + var bbHeight = max[1] - min[1]; + + var viewWidth = viewRect.width; + var viewHeight = viewRect.height; + + var viewCoordSys = seriesModel.coordinateSystem = new View(); + viewCoordSys.zoomLimit = seriesModel.get('scaleLimit'); + + viewCoordSys.setBoundingRect( + min[0], min[1], bbWidth, bbHeight + ); + viewCoordSys.setViewRect( + viewRect.x, viewRect.y, viewWidth, viewHeight + ); + + // Update roam info + viewCoordSys.setCenter(seriesModel.get('center')); + viewCoordSys.setZoom(seriesModel.get('zoom')); + + viewList.push(viewCoordSys); + } + }); + + return viewList; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerProcessor(categoryFilter); + +registerVisual(visualSymbol('graph', 'circle', null)); +registerVisual(categoryVisual); +registerVisual(edgeVisual); + +registerLayout(simpleLayout); +registerLayout(PRIORITY.VISUAL.POST_CHART_LAYOUT, circularLayout); +registerLayout(forceLayout); + +// Graph view coordinate system +registerCoordinateSystem('graphView', { + create: createView +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var GaugeSeries = SeriesModel.extend({ + + type: 'series.gauge', + + getInitialData: function (option, ecModel) { + var dataOpt = option.data || []; + if (!isArray(dataOpt)) { + dataOpt = [dataOpt]; + } + option.data = dataOpt; + return createListSimply(this, ['value']); + }, + + defaultOption: { + zlevel: 0, + z: 2, + // 默认全局居中 + center: ['50%', '50%'], + legendHoverLink: true, + radius: '75%', + startAngle: 225, + endAngle: -45, + clockwise: true, + // 最小值 + min: 0, + // 最大值 + max: 100, + // 分割段数,默认为10 + splitNumber: 10, + // 坐标轴线 + axisLine: { + // 默认显示,属性show控制显示与否 + show: true, + lineStyle: { // 属性lineStyle控制线条样式 + color: [[0.2, '#91c7ae'], [0.8, '#63869e'], [1, '#c23531']], + width: 30 + } + }, + // 分隔线 + splitLine: { + // 默认显示,属性show控制显示与否 + show: true, + // 属性length控制线长 + length: 30, + // 属性lineStyle(详见lineStyle)控制线条样式 + lineStyle: { + color: '#eee', + width: 2, + type: 'solid' + } + }, + // 坐标轴小标记 + axisTick: { + // 属性show控制显示与否,默认不显示 + show: true, + // 每份split细分多少段 + splitNumber: 5, + // 属性length控制线长 + length: 8, + // 属性lineStyle控制线条样式 + lineStyle: { + color: '#eee', + width: 1, + type: 'solid' + } + }, + axisLabel: { + show: true, + distance: 5, + // formatter: null, + color: 'auto' + }, + pointer: { + show: true, + length: '80%', + width: 8 + }, + itemStyle: { + color: 'auto' + }, + title: { + show: true, + // x, y,单位px + offsetCenter: [0, '-40%'], + // 其余属性默认使用全局文本样式,详见TEXTSTYLE + color: '#333', + fontSize: 15 + }, + detail: { + show: true, + backgroundColor: 'rgba(0,0,0,0)', + borderWidth: 0, + borderColor: '#ccc', + width: 100, + height: null, // self-adaption + padding: [5, 10], + // x, y,单位px + offsetCenter: [0, '40%'], + // formatter: null, + // 其余属性默认使用全局文本样式,详见TEXTSTYLE + color: 'auto', + fontSize: 30 + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var PointerPath = Path.extend({ + + type: 'echartsGaugePointer', + + shape: { + angle: 0, + + width: 10, + + r: 10, + + x: 0, + + y: 0 + }, + + buildPath: function (ctx, shape) { + var mathCos = Math.cos; + var mathSin = Math.sin; + + var r = shape.r; + var width = shape.width; + var angle = shape.angle; + var x = shape.x - mathCos(angle) * width * (width >= r / 3 ? 1 : 2); + var y = shape.y - mathSin(angle) * width * (width >= r / 3 ? 1 : 2); + + angle = shape.angle - Math.PI / 2; + ctx.moveTo(x, y); + ctx.lineTo( + shape.x + mathCos(angle) * width, + shape.y + mathSin(angle) * width + ); + ctx.lineTo( + shape.x + mathCos(shape.angle) * r, + shape.y + mathSin(shape.angle) * r + ); + ctx.lineTo( + shape.x - mathCos(angle) * width, + shape.y - mathSin(angle) * width + ); + ctx.lineTo(x, y); + return; + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function parsePosition(seriesModel, api) { + var center = seriesModel.get('center'); + var width = api.getWidth(); + var height = api.getHeight(); + var size = Math.min(width, height); + var cx = parsePercent$1(center[0], api.getWidth()); + var cy = parsePercent$1(center[1], api.getHeight()); + var r = parsePercent$1(seriesModel.get('radius'), size / 2); + + return { + cx: cx, + cy: cy, + r: r + }; +} + +function formatLabel(label, labelFormatter) { + if (labelFormatter) { + if (typeof labelFormatter === 'string') { + label = labelFormatter.replace('{value}', label != null ? label : ''); + } + else if (typeof labelFormatter === 'function') { + label = labelFormatter(label); + } + } + + return label; +} + +var PI2$5 = Math.PI * 2; + +var GaugeView = Chart.extend({ + + type: 'gauge', + + render: function (seriesModel, ecModel, api) { + + this.group.removeAll(); + + var colorList = seriesModel.get('axisLine.lineStyle.color'); + var posInfo = parsePosition(seriesModel, api); + + this._renderMain( + seriesModel, ecModel, api, colorList, posInfo + ); + }, + + dispose: function () {}, + + _renderMain: function (seriesModel, ecModel, api, colorList, posInfo) { + var group = this.group; + + var axisLineModel = seriesModel.getModel('axisLine'); + var lineStyleModel = axisLineModel.getModel('lineStyle'); + + var clockwise = seriesModel.get('clockwise'); + var startAngle = -seriesModel.get('startAngle') / 180 * Math.PI; + var endAngle = -seriesModel.get('endAngle') / 180 * Math.PI; + + var angleRangeSpan = (endAngle - startAngle) % PI2$5; + + var prevEndAngle = startAngle; + var axisLineWidth = lineStyleModel.get('width'); + var showAxis = axisLineModel.get('show'); + + for (var i = 0; showAxis && i < colorList.length; i++) { + // Clamp + var percent = Math.min(Math.max(colorList[i][0], 0), 1); + var endAngle = startAngle + angleRangeSpan * percent; + var sector = new Sector({ + shape: { + startAngle: prevEndAngle, + endAngle: endAngle, + cx: posInfo.cx, + cy: posInfo.cy, + clockwise: clockwise, + r0: posInfo.r - axisLineWidth, + r: posInfo.r + }, + silent: true + }); + + sector.setStyle({ + fill: colorList[i][1] + }); + + sector.setStyle(lineStyleModel.getLineStyle( + // Because we use sector to simulate arc + // so the properties for stroking are useless + ['color', 'borderWidth', 'borderColor'] + )); + + group.add(sector); + + prevEndAngle = endAngle; + } + + var getColor = function (percent) { + // Less than 0 + if (percent <= 0) { + return colorList[0][1]; + } + for (var i = 0; i < colorList.length; i++) { + if (colorList[i][0] >= percent + && (i === 0 ? 0 : colorList[i - 1][0]) < percent + ) { + return colorList[i][1]; + } + } + // More than 1 + return colorList[i - 1][1]; + }; + + if (!clockwise) { + var tmp = startAngle; + startAngle = endAngle; + endAngle = tmp; + } + + this._renderTicks( + seriesModel, ecModel, api, getColor, posInfo, + startAngle, endAngle, clockwise + ); + + this._renderPointer( + seriesModel, ecModel, api, getColor, posInfo, + startAngle, endAngle, clockwise + ); + + this._renderTitle( + seriesModel, ecModel, api, getColor, posInfo + ); + this._renderDetail( + seriesModel, ecModel, api, getColor, posInfo + ); + }, + + _renderTicks: function ( + seriesModel, ecModel, api, getColor, posInfo, + startAngle, endAngle, clockwise + ) { + var group = this.group; + var cx = posInfo.cx; + var cy = posInfo.cy; + var r = posInfo.r; + + var minVal = +seriesModel.get('min'); + var maxVal = +seriesModel.get('max'); + + var splitLineModel = seriesModel.getModel('splitLine'); + var tickModel = seriesModel.getModel('axisTick'); + var labelModel = seriesModel.getModel('axisLabel'); + + var splitNumber = seriesModel.get('splitNumber'); + var subSplitNumber = tickModel.get('splitNumber'); + + var splitLineLen = parsePercent$1( + splitLineModel.get('length'), r + ); + var tickLen = parsePercent$1( + tickModel.get('length'), r + ); + + var angle = startAngle; + var step = (endAngle - startAngle) / splitNumber; + var subStep = step / subSplitNumber; + + var splitLineStyle = splitLineModel.getModel('lineStyle').getLineStyle(); + var tickLineStyle = tickModel.getModel('lineStyle').getLineStyle(); + + for (var i = 0; i <= splitNumber; i++) { + var unitX = Math.cos(angle); + var unitY = Math.sin(angle); + // Split line + if (splitLineModel.get('show')) { + var splitLine = new Line({ + shape: { + x1: unitX * r + cx, + y1: unitY * r + cy, + x2: unitX * (r - splitLineLen) + cx, + y2: unitY * (r - splitLineLen) + cy + }, + style: splitLineStyle, + silent: true + }); + if (splitLineStyle.stroke === 'auto') { + splitLine.setStyle({ + stroke: getColor(i / splitNumber) + }); + } + + group.add(splitLine); + } + + // Label + if (labelModel.get('show')) { + var label = formatLabel( + round$1(i / splitNumber * (maxVal - minVal) + minVal), + labelModel.get('formatter') + ); + var distance = labelModel.get('distance'); + var autoColor = getColor(i / splitNumber); + + group.add(new Text({ + style: setTextStyle({}, labelModel, { + text: label, + x: unitX * (r - splitLineLen - distance) + cx, + y: unitY * (r - splitLineLen - distance) + cy, + textVerticalAlign: unitY < -0.4 ? 'top' : (unitY > 0.4 ? 'bottom' : 'middle'), + textAlign: unitX < -0.4 ? 'left' : (unitX > 0.4 ? 'right' : 'center') + }, {autoColor: autoColor}), + silent: true + })); + } + + // Axis tick + if (tickModel.get('show') && i !== splitNumber) { + for (var j = 0; j <= subSplitNumber; j++) { + var unitX = Math.cos(angle); + var unitY = Math.sin(angle); + var tickLine = new Line({ + shape: { + x1: unitX * r + cx, + y1: unitY * r + cy, + x2: unitX * (r - tickLen) + cx, + y2: unitY * (r - tickLen) + cy + }, + silent: true, + style: tickLineStyle + }); + + if (tickLineStyle.stroke === 'auto') { + tickLine.setStyle({ + stroke: getColor((i + j / subSplitNumber) / splitNumber) + }); + } + + group.add(tickLine); + angle += subStep; + } + angle -= subStep; + } + else { + angle += step; + } + } + }, + + _renderPointer: function ( + seriesModel, ecModel, api, getColor, posInfo, + startAngle, endAngle, clockwise + ) { + + var group = this.group; + var oldData = this._data; + + if (!seriesModel.get('pointer.show')) { + // Remove old element + oldData && oldData.eachItemGraphicEl(function (el) { + group.remove(el); + }); + return; + } + + var valueExtent = [+seriesModel.get('min'), +seriesModel.get('max')]; + var angleExtent = [startAngle, endAngle]; + + var data = seriesModel.getData(); + var valueDim = data.mapDimension('value'); + + data.diff(oldData) + .add(function (idx) { + var pointer = new PointerPath({ + shape: { + angle: startAngle + } + }); + + initProps(pointer, { + shape: { + angle: linearMap(data.get(valueDim, idx), valueExtent, angleExtent, true) + } + }, seriesModel); + + group.add(pointer); + data.setItemGraphicEl(idx, pointer); + }) + .update(function (newIdx, oldIdx) { + var pointer = oldData.getItemGraphicEl(oldIdx); + + updateProps(pointer, { + shape: { + angle: linearMap(data.get(valueDim, newIdx), valueExtent, angleExtent, true) + } + }, seriesModel); + + group.add(pointer); + data.setItemGraphicEl(newIdx, pointer); + }) + .remove(function (idx) { + var pointer = oldData.getItemGraphicEl(idx); + group.remove(pointer); + }) + .execute(); + + data.eachItemGraphicEl(function (pointer, idx) { + var itemModel = data.getItemModel(idx); + var pointerModel = itemModel.getModel('pointer'); + + pointer.setShape({ + x: posInfo.cx, + y: posInfo.cy, + width: parsePercent$1( + pointerModel.get('width'), posInfo.r + ), + r: parsePercent$1(pointerModel.get('length'), posInfo.r) + }); + + pointer.useStyle(itemModel.getModel('itemStyle').getItemStyle()); + + if (pointer.style.fill === 'auto') { + pointer.setStyle('fill', getColor( + linearMap(data.get(valueDim, idx), valueExtent, [0, 1], true) + )); + } + + setHoverStyle( + pointer, itemModel.getModel('emphasis.itemStyle').getItemStyle() + ); + }); + + this._data = data; + }, + + _renderTitle: function ( + seriesModel, ecModel, api, getColor, posInfo + ) { + var data = seriesModel.getData(); + var valueDim = data.mapDimension('value'); + var titleModel = seriesModel.getModel('title'); + if (titleModel.get('show')) { + var offsetCenter = titleModel.get('offsetCenter'); + var x = posInfo.cx + parsePercent$1(offsetCenter[0], posInfo.r); + var y = posInfo.cy + parsePercent$1(offsetCenter[1], posInfo.r); + + var minVal = +seriesModel.get('min'); + var maxVal = +seriesModel.get('max'); + var value = seriesModel.getData().get(valueDim, 0); + var autoColor = getColor( + linearMap(value, [minVal, maxVal], [0, 1], true) + ); + + this.group.add(new Text({ + silent: true, + style: setTextStyle({}, titleModel, { + x: x, + y: y, + // FIXME First data name ? + text: data.getName(0), + textAlign: 'center', + textVerticalAlign: 'middle' + }, {autoColor: autoColor, forceRich: true}) + })); + } + }, + + _renderDetail: function ( + seriesModel, ecModel, api, getColor, posInfo + ) { + var detailModel = seriesModel.getModel('detail'); + var minVal = +seriesModel.get('min'); + var maxVal = +seriesModel.get('max'); + if (detailModel.get('show')) { + var offsetCenter = detailModel.get('offsetCenter'); + var x = posInfo.cx + parsePercent$1(offsetCenter[0], posInfo.r); + var y = posInfo.cy + parsePercent$1(offsetCenter[1], posInfo.r); + var width = parsePercent$1(detailModel.get('width'), posInfo.r); + var height = parsePercent$1(detailModel.get('height'), posInfo.r); + var data = seriesModel.getData(); + var value = data.get(data.mapDimension('value'), 0); + var autoColor = getColor( + linearMap(value, [minVal, maxVal], [0, 1], true) + ); + + this.group.add(new Text({ + silent: true, + style: setTextStyle({}, detailModel, { + x: x, + y: y, + text: formatLabel( + // FIXME First data name ? + value, detailModel.get('formatter') + ), + textWidth: isNaN(width) ? null : width, + textHeight: isNaN(height) ? null : height, + textAlign: 'center', + textVerticalAlign: 'middle' + }, {autoColor: autoColor, forceRich: true}) + })); + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var FunnelSeries = extendSeriesModel({ + + type: 'series.funnel', + + init: function (option) { + FunnelSeries.superApply(this, 'init', arguments); + + // Enable legend selection for each data item + // Use a function instead of direct access because data reference may changed + this.legendDataProvider = function () { + return this.getRawData(); + }; + // Extend labelLine emphasis + this._defaultLabelLine(option); + }, + + getInitialData: function (option, ecModel) { + return createListSimply(this, ['value']); + }, + + _defaultLabelLine: function (option) { + // Extend labelLine emphasis + defaultEmphasis(option, 'labelLine', ['show']); + + var labelLineNormalOpt = option.labelLine; + var labelLineEmphasisOpt = option.emphasis.labelLine; + // Not show label line if `label.normal.show = false` + labelLineNormalOpt.show = labelLineNormalOpt.show + && option.label.show; + labelLineEmphasisOpt.show = labelLineEmphasisOpt.show + && option.emphasis.label.show; + }, + + // Overwrite + getDataParams: function (dataIndex) { + var data = this.getData(); + var params = FunnelSeries.superCall(this, 'getDataParams', dataIndex); + var valueDim = data.mapDimension('value'); + var sum = data.getSum(valueDim); + // Percent is 0 if sum is 0 + params.percent = !sum ? 0 : +(data.get(valueDim, dataIndex) / sum * 100).toFixed(2); + + params.$vars.push('percent'); + return params; + }, + + defaultOption: { + zlevel: 0, // 一级层叠 + z: 2, // 二级层叠 + legendHoverLink: true, + left: 80, + top: 60, + right: 80, + bottom: 60, + // width: {totalWidth} - left - right, + // height: {totalHeight} - top - bottom, + + // 默认取数据最小最大值 + // min: 0, + // max: 100, + minSize: '0%', + maxSize: '100%', + sort: 'descending', // 'ascending', 'descending' + gap: 0, + funnelAlign: 'center', + label: { + show: true, + position: 'outer' + // formatter: 标签文本格式器,同Tooltip.formatter,不支持异步回调 + }, + labelLine: { + show: true, + length: 20, + lineStyle: { + // color: 各异, + width: 1, + type: 'solid' + } + }, + itemStyle: { + // color: 各异, + borderColor: '#fff', + borderWidth: 1 + }, + emphasis: { + label: { + show: true + } + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Piece of pie including Sector, Label, LabelLine + * @constructor + * @extends {module:zrender/graphic/Group} + */ +function FunnelPiece(data, idx) { + + Group.call(this); + + var polygon = new Polygon(); + var labelLine = new Polyline(); + var text = new Text(); + this.add(polygon); + this.add(labelLine); + this.add(text); + + this.highDownOnUpdate = function (fromState, toState) { + if (toState === 'emphasis') { + labelLine.ignore = labelLine.hoverIgnore; + text.ignore = text.hoverIgnore; + } + else { + labelLine.ignore = labelLine.normalIgnore; + text.ignore = text.normalIgnore; + } + }; + + this.updateData(data, idx, true); +} + +var funnelPieceProto = FunnelPiece.prototype; + +var opacityAccessPath = ['itemStyle', 'opacity']; +funnelPieceProto.updateData = function (data, idx, firstCreate) { + + var polygon = this.childAt(0); + + var seriesModel = data.hostModel; + var itemModel = data.getItemModel(idx); + var layout = data.getItemLayout(idx); + var opacity = data.getItemModel(idx).get(opacityAccessPath); + opacity = opacity == null ? 1 : opacity; + + // Reset style + polygon.useStyle({}); + + if (firstCreate) { + polygon.setShape({ + points: layout.points + }); + polygon.setStyle({opacity: 0}); + initProps(polygon, { + style: { + opacity: opacity + } + }, seriesModel, idx); + } + else { + updateProps(polygon, { + style: { + opacity: opacity + }, + shape: { + points: layout.points + } + }, seriesModel, idx); + } + + // Update common style + var itemStyleModel = itemModel.getModel('itemStyle'); + var visualColor = data.getItemVisual(idx, 'color'); + + polygon.setStyle( + defaults( + { + lineJoin: 'round', + fill: visualColor + }, + itemStyleModel.getItemStyle(['opacity']) + ) + ); + polygon.hoverStyle = itemStyleModel.getModel('emphasis').getItemStyle(); + + this._updateLabel(data, idx); + + setHoverStyle(this); +}; + +funnelPieceProto._updateLabel = function (data, idx) { + + var labelLine = this.childAt(1); + var labelText = this.childAt(2); + + var seriesModel = data.hostModel; + var itemModel = data.getItemModel(idx); + var layout = data.getItemLayout(idx); + var labelLayout = layout.label; + var visualColor = data.getItemVisual(idx, 'color'); + + updateProps(labelLine, { + shape: { + points: labelLayout.linePoints || labelLayout.linePoints + } + }, seriesModel, idx); + + updateProps(labelText, { + style: { + x: labelLayout.x, + y: labelLayout.y + } + }, seriesModel, idx); + labelText.attr({ + rotation: labelLayout.rotation, + origin: [labelLayout.x, labelLayout.y], + z2: 10 + }); + + var labelModel = itemModel.getModel('label'); + var labelHoverModel = itemModel.getModel('emphasis.label'); + var labelLineModel = itemModel.getModel('labelLine'); + var labelLineHoverModel = itemModel.getModel('emphasis.labelLine'); + var visualColor = data.getItemVisual(idx, 'color'); + + setLabelStyle( + labelText.style, labelText.hoverStyle = {}, labelModel, labelHoverModel, + { + labelFetcher: data.hostModel, + labelDataIndex: idx, + defaultText: data.getName(idx), + autoColor: visualColor, + useInsideStyle: !!labelLayout.inside + }, + { + textAlign: labelLayout.textAlign, + textVerticalAlign: labelLayout.verticalAlign + } + ); + + labelText.ignore = labelText.normalIgnore = !labelModel.get('show'); + labelText.hoverIgnore = !labelHoverModel.get('show'); + + labelLine.ignore = labelLine.normalIgnore = !labelLineModel.get('show'); + labelLine.hoverIgnore = !labelLineHoverModel.get('show'); + + // Default use item visual color + labelLine.setStyle({ + stroke: visualColor + }); + labelLine.setStyle(labelLineModel.getModel('lineStyle').getLineStyle()); + + labelLine.hoverStyle = labelLineHoverModel.getModel('lineStyle').getLineStyle(); +}; + +inherits(FunnelPiece, Group); + + +var FunnelView = Chart.extend({ + + type: 'funnel', + + render: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + var oldData = this._data; + + var group = this.group; + + data.diff(oldData) + .add(function (idx) { + var funnelPiece = new FunnelPiece(data, idx); + + data.setItemGraphicEl(idx, funnelPiece); + + group.add(funnelPiece); + }) + .update(function (newIdx, oldIdx) { + var piePiece = oldData.getItemGraphicEl(oldIdx); + + piePiece.updateData(data, newIdx); + + group.add(piePiece); + data.setItemGraphicEl(newIdx, piePiece); + }) + .remove(function (idx) { + var piePiece = oldData.getItemGraphicEl(idx); + group.remove(piePiece); + }) + .execute(); + + this._data = data; + }, + + remove: function () { + this.group.removeAll(); + this._data = null; + }, + + dispose: function () {} +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function getViewRect$2(seriesModel, api) { + return getLayoutRect( + seriesModel.getBoxLayoutParams(), { + width: api.getWidth(), + height: api.getHeight() + } + ); +} + +function getSortedIndices(data, sort) { + var valueDim = data.mapDimension('value'); + var valueArr = data.mapArray(valueDim, function (val) { + return val; + }); + var indices = []; + var isAscending = sort === 'ascending'; + for (var i = 0, len = data.count(); i < len; i++) { + indices[i] = i; + } + + // Add custom sortable function & none sortable opetion by "options.sort" + if (typeof sort === 'function') { + indices.sort(sort); + } + else if (sort !== 'none') { + indices.sort(function (a, b) { + return isAscending ? valueArr[a] - valueArr[b] : valueArr[b] - valueArr[a]; + }); + } + return indices; +} + +function labelLayout$1(data) { + data.each(function (idx) { + var itemModel = data.getItemModel(idx); + var labelModel = itemModel.getModel('label'); + var labelPosition = labelModel.get('position'); + + var labelLineModel = itemModel.getModel('labelLine'); + + var layout = data.getItemLayout(idx); + var points = layout.points; + + var isLabelInside = labelPosition === 'inner' + || labelPosition === 'inside' || labelPosition === 'center' + || labelPosition === 'insideLeft' || labelPosition === 'insideRight'; + + var textAlign; + var textX; + var textY; + var linePoints; + + if (isLabelInside) { + if (labelPosition === 'insideLeft') { + textX = (points[0][0] + points[3][0]) / 2 + 5; + textY = (points[0][1] + points[3][1]) / 2; + textAlign = 'left'; + } + else if (labelPosition === 'insideRight') { + textX = (points[1][0] + points[2][0]) / 2 - 5; + textY = (points[1][1] + points[2][1]) / 2; + textAlign = 'right'; + } + else { + textX = (points[0][0] + points[1][0] + points[2][0] + points[3][0]) / 4; + textY = (points[0][1] + points[1][1] + points[2][1] + points[3][1]) / 4; + textAlign = 'center'; + } + linePoints = [ + [textX, textY], [textX, textY] + ]; + } + else { + var x1; + var y1; + var x2; + var labelLineLen = labelLineModel.get('length'); + if (labelPosition === 'left') { + // Left side + x1 = (points[3][0] + points[0][0]) / 2; + y1 = (points[3][1] + points[0][1]) / 2; + x2 = x1 - labelLineLen; + textX = x2 - 5; + textAlign = 'right'; + } + else if (labelPosition === 'right') { + // Right side + x1 = (points[1][0] + points[2][0]) / 2; + y1 = (points[1][1] + points[2][1]) / 2; + x2 = x1 + labelLineLen; + textX = x2 + 5; + textAlign = 'left'; + } + else if (labelPosition === 'rightTop') { + // RightTop side + x1 = points[1][0]; + y1 = points[1][1]; + x2 = x1 + labelLineLen; + textX = x2 + 5; + textAlign = 'top'; + } + else if (labelPosition === 'rightBottom') { + // RightBottom side + x1 = points[2][0]; + y1 = points[2][1]; + x2 = x1 + labelLineLen; + textX = x2 + 5; + textAlign = 'bottom'; + } + else if (labelPosition === 'leftTop') { + // LeftTop side + x1 = points[0][0]; + y1 = points[1][1]; + x2 = x1 - labelLineLen; + textX = x2 - 5; + textAlign = 'right'; + } + else if (labelPosition === 'leftBottom') { + // LeftBottom side + x1 = points[3][0]; + y1 = points[2][1]; + x2 = x1 - labelLineLen; + textX = x2 - 5; + textAlign = 'right'; + } + else { + // Right side + x1 = (points[1][0] + points[2][0]) / 2; + y1 = (points[1][1] + points[2][1]) / 2; + x2 = x1 + labelLineLen; + textX = x2 + 5; + textAlign = 'left'; + } + var y2 = y1; + + linePoints = [[x1, y1], [x2, y2]]; + textY = y2; + } + + layout.label = { + linePoints: linePoints, + x: textX, + y: textY, + verticalAlign: 'middle', + textAlign: textAlign, + inside: isLabelInside + }; + }); +} + +var funnelLayout = function (ecModel, api, payload) { + ecModel.eachSeriesByType('funnel', function (seriesModel) { + var data = seriesModel.getData(); + var valueDim = data.mapDimension('value'); + var sort = seriesModel.get('sort'); + var viewRect = getViewRect$2(seriesModel, api); + var indices = getSortedIndices(data, sort); + + var sizeExtent = [ + parsePercent$1(seriesModel.get('minSize'), viewRect.width), + parsePercent$1(seriesModel.get('maxSize'), viewRect.width) + ]; + var dataExtent = data.getDataExtent(valueDim); + var min = seriesModel.get('min'); + var max = seriesModel.get('max'); + if (min == null) { + min = Math.min(dataExtent[0], 0); + } + if (max == null) { + max = dataExtent[1]; + } + + var funnelAlign = seriesModel.get('funnelAlign'); + var gap = seriesModel.get('gap'); + var itemHeight = (viewRect.height - gap * (data.count() - 1)) / data.count(); + + var y = viewRect.y; + + var getLinePoints = function (idx, offY) { + // End point index is data.count() and we assign it 0 + var val = data.get(valueDim, idx) || 0; + var itemWidth = linearMap(val, [min, max], sizeExtent, true); + var x0; + switch (funnelAlign) { + case 'left': + x0 = viewRect.x; + break; + case 'center': + x0 = viewRect.x + (viewRect.width - itemWidth) / 2; + break; + case 'right': + x0 = viewRect.x + viewRect.width - itemWidth; + break; + } + return [ + [x0, offY], + [x0 + itemWidth, offY] + ]; + }; + + if (sort === 'ascending') { + // From bottom to top + itemHeight = -itemHeight; + gap = -gap; + y += viewRect.height; + indices = indices.reverse(); + } + + for (var i = 0; i < indices.length; i++) { + var idx = indices[i]; + var nextIdx = indices[i + 1]; + + var itemModel = data.getItemModel(idx); + var height = itemModel.get('itemStyle.height'); + if (height == null) { + height = itemHeight; + } + else { + height = parsePercent$1(height, viewRect.height); + if (sort === 'ascending') { + height = -height; + } + } + + var start = getLinePoints(idx, y); + var end = getLinePoints(nextIdx, y + height); + + y += height + gap; + + data.setItemLayout(idx, { + points: start.concat(end.slice().reverse()) + }); + } + + labelLayout$1(data); + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerVisual(dataColor('funnel')); +registerLayout(funnelLayout); +registerProcessor(dataFilter('funnel')); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var parallelPreprocessor = function (option) { + createParallelIfNeeded(option); + mergeAxisOptionFromParallel(option); +}; + +/** + * Create a parallel coordinate if not exists. + * @inner + */ +function createParallelIfNeeded(option) { + if (option.parallel) { + return; + } + + var hasParallelSeries = false; + + each$1(option.series, function (seriesOpt) { + if (seriesOpt && seriesOpt.type === 'parallel') { + hasParallelSeries = true; + } + }); + + if (hasParallelSeries) { + option.parallel = [{}]; + } +} + +/** + * Merge aixs definition from parallel option (if exists) to axis option. + * @inner + */ +function mergeAxisOptionFromParallel(option) { + var axes = normalizeToArray(option.parallelAxis); + + each$1(axes, function (axisOption) { + if (!isObject$1(axisOption)) { + return; + } + + var parallelIndex = axisOption.parallelIndex || 0; + var parallelOption = normalizeToArray(option.parallel)[parallelIndex]; + + if (parallelOption && parallelOption.parallelAxisDefault) { + merge(axisOption, parallelOption.parallelAxisDefault, false); + } + }); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @constructor module:echarts/coord/parallel/ParallelAxis + * @extends {module:echarts/coord/Axis} + * @param {string} dim + * @param {*} scale + * @param {Array.} coordExtent + * @param {string} axisType + */ +var ParallelAxis = function (dim, scale, coordExtent, axisType, axisIndex) { + + Axis.call(this, dim, scale, coordExtent); + + /** + * Axis type + * - 'category' + * - 'value' + * - 'time' + * - 'log' + * @type {string} + */ + this.type = axisType || 'value'; + + /** + * @type {number} + * @readOnly + */ + this.axisIndex = axisIndex; +}; + +ParallelAxis.prototype = { + + constructor: ParallelAxis, + + /** + * Axis model + * @param {module:echarts/coord/parallel/AxisModel} + */ + model: null, + + /** + * @override + */ + isHorizontal: function () { + return this.coordinateSystem.getModel().get('layout') !== 'horizontal'; + } + +}; + +inherits(ParallelAxis, Axis); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Calculate slider move result. + * Usage: + * (1) If both handle0 and handle1 are needed to be moved, set minSpan the same as + * maxSpan and the same as `Math.abs(handleEnd[1] - handleEnds[0])`. + * (2) If handle0 is forbidden to cross handle1, set minSpan as `0`. + * + * @param {number} delta Move length. + * @param {Array.} handleEnds handleEnds[0] can be bigger then handleEnds[1]. + * handleEnds will be modified in this method. + * @param {Array.} extent handleEnds is restricted by extent. + * extent[0] should less or equals than extent[1]. + * @param {number|string} handleIndex Can be 'all', means that both move the two handleEnds. + * @param {number} [minSpan] The range of dataZoom can not be smaller than that. + * If not set, handle0 and cross handle1. If set as a non-negative + * number (including `0`), handles will push each other when reaching + * the minSpan. + * @param {number} [maxSpan] The range of dataZoom can not be larger than that. + * @return {Array.} The input handleEnds. + */ +var sliderMove = function (delta, handleEnds, extent, handleIndex, minSpan, maxSpan) { + + delta = delta || 0; + + var extentSpan = extent[1] - extent[0]; + + // Notice maxSpan and minSpan can be null/undefined. + if (minSpan != null) { + minSpan = restrict$1(minSpan, [0, extentSpan]); + } + if (maxSpan != null) { + maxSpan = Math.max(maxSpan, minSpan != null ? minSpan : 0); + } + if (handleIndex === 'all') { + var handleSpan = Math.abs(handleEnds[1] - handleEnds[0]); + handleSpan = restrict$1(handleSpan, [0, extentSpan]); + minSpan = maxSpan = restrict$1(handleSpan, [minSpan, maxSpan]); + handleIndex = 0; + } + + handleEnds[0] = restrict$1(handleEnds[0], extent); + handleEnds[1] = restrict$1(handleEnds[1], extent); + + var originalDistSign = getSpanSign(handleEnds, handleIndex); + + handleEnds[handleIndex] += delta; + + // Restrict in extent. + var extentMinSpan = minSpan || 0; + var realExtent = extent.slice(); + originalDistSign.sign < 0 ? (realExtent[0] += extentMinSpan) : (realExtent[1] -= extentMinSpan); + handleEnds[handleIndex] = restrict$1(handleEnds[handleIndex], realExtent); + + // Expand span. + var currDistSign = getSpanSign(handleEnds, handleIndex); + if (minSpan != null && ( + currDistSign.sign !== originalDistSign.sign || currDistSign.span < minSpan + )) { + // If minSpan exists, 'cross' is forbidden. + handleEnds[1 - handleIndex] = handleEnds[handleIndex] + originalDistSign.sign * minSpan; + } + + // Shrink span. + var currDistSign = getSpanSign(handleEnds, handleIndex); + if (maxSpan != null && currDistSign.span > maxSpan) { + handleEnds[1 - handleIndex] = handleEnds[handleIndex] + currDistSign.sign * maxSpan; + } + + return handleEnds; +}; + +function getSpanSign(handleEnds, handleIndex) { + var dist = handleEnds[handleIndex] - handleEnds[1 - handleIndex]; + // If `handleEnds[0] === handleEnds[1]`, always believe that handleEnd[0] + // is at left of handleEnds[1] for non-cross case. + return {span: Math.abs(dist), sign: dist > 0 ? -1 : dist < 0 ? 1 : handleIndex ? -1 : 1}; +} + +function restrict$1(value, extend) { + return Math.min( + extend[1] != null ? extend[1] : Infinity, + Math.max(extend[0] != null ? extend[0] : -Infinity, value) + ); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Parallel Coordinates + * + */ + +var each$11 = each$1; +var mathMin$5 = Math.min; +var mathMax$5 = Math.max; +var mathFloor$2 = Math.floor; +var mathCeil$2 = Math.ceil; +var round$2 = round$1; + +var PI$4 = Math.PI; + +function Parallel(parallelModel, ecModel, api) { + + /** + * key: dimension + * @type {Object.} + * @private + */ + this._axesMap = createHashMap(); + + /** + * key: dimension + * value: {position: [], rotation, } + * @type {Object.} + * @private + */ + this._axesLayout = {}; + + /** + * Always follow axis order. + * @type {Array.} + * @readOnly + */ + this.dimensions = parallelModel.dimensions; + + /** + * @type {module:zrender/core/BoundingRect} + */ + this._rect; + + /** + * @type {module:echarts/coord/parallel/ParallelModel} + */ + this._model = parallelModel; + + this._init(parallelModel, ecModel, api); +} + +Parallel.prototype = { + + type: 'parallel', + + constructor: Parallel, + + /** + * Initialize cartesian coordinate systems + * @private + */ + _init: function (parallelModel, ecModel, api) { + + var dimensions = parallelModel.dimensions; + var parallelAxisIndex = parallelModel.parallelAxisIndex; + + each$11(dimensions, function (dim, idx) { + + var axisIndex = parallelAxisIndex[idx]; + var axisModel = ecModel.getComponent('parallelAxis', axisIndex); + + var axis = this._axesMap.set(dim, new ParallelAxis( + dim, + createScaleByModel(axisModel), + [0, 0], + axisModel.get('type'), + axisIndex + )); + + var isCategory = axis.type === 'category'; + axis.onBand = isCategory && axisModel.get('boundaryGap'); + axis.inverse = axisModel.get('inverse'); + + // Injection + axisModel.axis = axis; + axis.model = axisModel; + axis.coordinateSystem = axisModel.coordinateSystem = this; + + }, this); + }, + + /** + * Update axis scale after data processed + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + */ + update: function (ecModel, api) { + this._updateAxesFromSeries(this._model, ecModel); + }, + + /** + * @override + */ + containPoint: function (point) { + var layoutInfo = this._makeLayoutInfo(); + var axisBase = layoutInfo.axisBase; + var layoutBase = layoutInfo.layoutBase; + var pixelDimIndex = layoutInfo.pixelDimIndex; + var pAxis = point[1 - pixelDimIndex]; + var pLayout = point[pixelDimIndex]; + + return pAxis >= axisBase + && pAxis <= axisBase + layoutInfo.axisLength + && pLayout >= layoutBase + && pLayout <= layoutBase + layoutInfo.layoutLength; + }, + + getModel: function () { + return this._model; + }, + + /** + * Update properties from series + * @private + */ + _updateAxesFromSeries: function (parallelModel, ecModel) { + ecModel.eachSeries(function (seriesModel) { + + if (!parallelModel.contains(seriesModel, ecModel)) { + return; + } + + var data = seriesModel.getData(); + + each$11(this.dimensions, function (dim) { + var axis = this._axesMap.get(dim); + axis.scale.unionExtentFromData(data, data.mapDimension(dim)); + niceScaleExtent(axis.scale, axis.model); + }, this); + }, this); + }, + + /** + * Resize the parallel coordinate system. + * @param {module:echarts/coord/parallel/ParallelModel} parallelModel + * @param {module:echarts/ExtensionAPI} api + */ + resize: function (parallelModel, api) { + this._rect = getLayoutRect( + parallelModel.getBoxLayoutParams(), + { + width: api.getWidth(), + height: api.getHeight() + } + ); + + this._layoutAxes(); + }, + + /** + * @return {module:zrender/core/BoundingRect} + */ + getRect: function () { + return this._rect; + }, + + /** + * @private + */ + _makeLayoutInfo: function () { + var parallelModel = this._model; + var rect = this._rect; + var xy = ['x', 'y']; + var wh = ['width', 'height']; + var layout = parallelModel.get('layout'); + var pixelDimIndex = layout === 'horizontal' ? 0 : 1; + var layoutLength = rect[wh[pixelDimIndex]]; + var layoutExtent = [0, layoutLength]; + var axisCount = this.dimensions.length; + + var axisExpandWidth = restrict(parallelModel.get('axisExpandWidth'), layoutExtent); + var axisExpandCount = restrict(parallelModel.get('axisExpandCount') || 0, [0, axisCount]); + var axisExpandable = parallelModel.get('axisExpandable') + && axisCount > 3 + && axisCount > axisExpandCount + && axisExpandCount > 1 + && axisExpandWidth > 0 + && layoutLength > 0; + + // `axisExpandWindow` is According to the coordinates of [0, axisExpandLength], + // for sake of consider the case that axisCollapseWidth is 0 (when screen is narrow), + // where collapsed axes should be overlapped. + var axisExpandWindow = parallelModel.get('axisExpandWindow'); + var winSize; + if (!axisExpandWindow) { + winSize = restrict(axisExpandWidth * (axisExpandCount - 1), layoutExtent); + var axisExpandCenter = parallelModel.get('axisExpandCenter') || mathFloor$2(axisCount / 2); + axisExpandWindow = [axisExpandWidth * axisExpandCenter - winSize / 2]; + axisExpandWindow[1] = axisExpandWindow[0] + winSize; + } + else { + winSize = restrict(axisExpandWindow[1] - axisExpandWindow[0], layoutExtent); + axisExpandWindow[1] = axisExpandWindow[0] + winSize; + } + + var axisCollapseWidth = (layoutLength - winSize) / (axisCount - axisExpandCount); + // Avoid axisCollapseWidth is too small. + axisCollapseWidth < 3 && (axisCollapseWidth = 0); + + // Find the first and last indices > ewin[0] and < ewin[1]. + var winInnerIndices = [ + mathFloor$2(round$2(axisExpandWindow[0] / axisExpandWidth, 1)) + 1, + mathCeil$2(round$2(axisExpandWindow[1] / axisExpandWidth, 1)) - 1 + ]; + + // Pos in ec coordinates. + var axisExpandWindow0Pos = axisCollapseWidth / axisExpandWidth * axisExpandWindow[0]; + + return { + layout: layout, + pixelDimIndex: pixelDimIndex, + layoutBase: rect[xy[pixelDimIndex]], + layoutLength: layoutLength, + axisBase: rect[xy[1 - pixelDimIndex]], + axisLength: rect[wh[1 - pixelDimIndex]], + axisExpandable: axisExpandable, + axisExpandWidth: axisExpandWidth, + axisCollapseWidth: axisCollapseWidth, + axisExpandWindow: axisExpandWindow, + axisCount: axisCount, + winInnerIndices: winInnerIndices, + axisExpandWindow0Pos: axisExpandWindow0Pos + }; + }, + + /** + * @private + */ + _layoutAxes: function () { + var rect = this._rect; + var axes = this._axesMap; + var dimensions = this.dimensions; + var layoutInfo = this._makeLayoutInfo(); + var layout = layoutInfo.layout; + + axes.each(function (axis) { + var axisExtent = [0, layoutInfo.axisLength]; + var idx = axis.inverse ? 1 : 0; + axis.setExtent(axisExtent[idx], axisExtent[1 - idx]); + }); + + each$11(dimensions, function (dim, idx) { + var posInfo = (layoutInfo.axisExpandable + ? layoutAxisWithExpand : layoutAxisWithoutExpand + )(idx, layoutInfo); + + var positionTable = { + horizontal: { + x: posInfo.position, + y: layoutInfo.axisLength + }, + vertical: { + x: 0, + y: posInfo.position + } + }; + var rotationTable = { + horizontal: PI$4 / 2, + vertical: 0 + }; + + var position = [ + positionTable[layout].x + rect.x, + positionTable[layout].y + rect.y + ]; + + var rotation = rotationTable[layout]; + var transform = create$1(); + rotate(transform, transform, rotation); + translate(transform, transform, position); + + // TODO + // tick等排布信息。 + + // TODO + // 根据axis order 更新 dimensions顺序。 + + this._axesLayout[dim] = { + position: position, + rotation: rotation, + transform: transform, + axisNameAvailableWidth: posInfo.axisNameAvailableWidth, + axisLabelShow: posInfo.axisLabelShow, + nameTruncateMaxWidth: posInfo.nameTruncateMaxWidth, + tickDirection: 1, + labelDirection: 1 + }; + }, this); + }, + + /** + * Get axis by dim. + * @param {string} dim + * @return {module:echarts/coord/parallel/ParallelAxis} [description] + */ + getAxis: function (dim) { + return this._axesMap.get(dim); + }, + + /** + * Convert a dim value of a single item of series data to Point. + * @param {*} value + * @param {string} dim + * @return {Array} + */ + dataToPoint: function (value, dim) { + return this.axisCoordToPoint( + this._axesMap.get(dim).dataToCoord(value), + dim + ); + }, + + /** + * Travel data for one time, get activeState of each data item. + * @param {module:echarts/data/List} data + * @param {Functio} cb param: {string} activeState 'active' or 'inactive' or 'normal' + * {number} dataIndex + * @param {number} [start=0] the start dataIndex that travel from. + * @param {number} [end=data.count()] the next dataIndex of the last dataIndex will be travel. + */ + eachActiveState: function (data, callback, start, end) { + start == null && (start = 0); + end == null && (end = data.count()); + + var axesMap = this._axesMap; + var dimensions = this.dimensions; + var dataDimensions = []; + var axisModels = []; + + each$1(dimensions, function (axisDim) { + dataDimensions.push(data.mapDimension(axisDim)); + axisModels.push(axesMap.get(axisDim).model); + }); + + var hasActiveSet = this.hasAxisBrushed(); + + for (var dataIndex = start; dataIndex < end; dataIndex++) { + var activeState; + + if (!hasActiveSet) { + activeState = 'normal'; + } + else { + activeState = 'active'; + var values = data.getValues(dataDimensions, dataIndex); + for (var j = 0, lenj = dimensions.length; j < lenj; j++) { + var state = axisModels[j].getActiveState(values[j]); + + if (state === 'inactive') { + activeState = 'inactive'; + break; + } + } + } + + callback(activeState, dataIndex); + } + }, + + /** + * Whether has any activeSet. + * @return {boolean} + */ + hasAxisBrushed: function () { + var dimensions = this.dimensions; + var axesMap = this._axesMap; + var hasActiveSet = false; + + for (var j = 0, lenj = dimensions.length; j < lenj; j++) { + if (axesMap.get(dimensions[j]).model.getActiveState() !== 'normal') { + hasActiveSet = true; + } + } + + return hasActiveSet; + }, + + /** + * Convert coords of each axis to Point. + * Return point. For example: [10, 20] + * @param {Array.} coords + * @param {string} dim + * @return {Array.} + */ + axisCoordToPoint: function (coord, dim) { + var axisLayout = this._axesLayout[dim]; + return applyTransform$1([coord, 0], axisLayout.transform); + }, + + /** + * Get axis layout. + */ + getAxisLayout: function (dim) { + return clone(this._axesLayout[dim]); + }, + + /** + * @param {Array.} point + * @return {Object} {axisExpandWindow, delta, behavior: 'jump' | 'slide' | 'none'}. + */ + getSlidedAxisExpandWindow: function (point) { + var layoutInfo = this._makeLayoutInfo(); + var pixelDimIndex = layoutInfo.pixelDimIndex; + var axisExpandWindow = layoutInfo.axisExpandWindow.slice(); + var winSize = axisExpandWindow[1] - axisExpandWindow[0]; + var extent = [0, layoutInfo.axisExpandWidth * (layoutInfo.axisCount - 1)]; + + // Out of the area of coordinate system. + if (!this.containPoint(point)) { + return {behavior: 'none', axisExpandWindow: axisExpandWindow}; + } + + // Conver the point from global to expand coordinates. + var pointCoord = point[pixelDimIndex] - layoutInfo.layoutBase - layoutInfo.axisExpandWindow0Pos; + + // For dragging operation convenience, the window should not be + // slided when mouse is the center area of the window. + var delta; + var behavior = 'slide'; + var axisCollapseWidth = layoutInfo.axisCollapseWidth; + var triggerArea = this._model.get('axisExpandSlideTriggerArea'); + // But consider touch device, jump is necessary. + var useJump = triggerArea[0] != null; + + if (axisCollapseWidth) { + if (useJump && axisCollapseWidth && pointCoord < winSize * triggerArea[0]) { + behavior = 'jump'; + delta = pointCoord - winSize * triggerArea[2]; + } + else if (useJump && axisCollapseWidth && pointCoord > winSize * (1 - triggerArea[0])) { + behavior = 'jump'; + delta = pointCoord - winSize * (1 - triggerArea[2]); + } + else { + (delta = pointCoord - winSize * triggerArea[1]) >= 0 + && (delta = pointCoord - winSize * (1 - triggerArea[1])) <= 0 + && (delta = 0); + } + delta *= layoutInfo.axisExpandWidth / axisCollapseWidth; + delta + ? sliderMove(delta, axisExpandWindow, extent, 'all') + // Avoid nonsense triger on mousemove. + : (behavior = 'none'); + } + // When screen is too narrow, make it visible and slidable, although it is hard to interact. + else { + var winSize = axisExpandWindow[1] - axisExpandWindow[0]; + var pos = extent[1] * pointCoord / winSize; + axisExpandWindow = [mathMax$5(0, pos - winSize / 2)]; + axisExpandWindow[1] = mathMin$5(extent[1], axisExpandWindow[0] + winSize); + axisExpandWindow[0] = axisExpandWindow[1] - winSize; + } + + return { + axisExpandWindow: axisExpandWindow, + behavior: behavior + }; + } +}; + +function restrict(len, extent) { + return mathMin$5(mathMax$5(len, extent[0]), extent[1]); +} + +function layoutAxisWithoutExpand(axisIndex, layoutInfo) { + var step = layoutInfo.layoutLength / (layoutInfo.axisCount - 1); + return { + position: step * axisIndex, + axisNameAvailableWidth: step, + axisLabelShow: true + }; +} + +function layoutAxisWithExpand(axisIndex, layoutInfo) { + var layoutLength = layoutInfo.layoutLength; + var axisExpandWidth = layoutInfo.axisExpandWidth; + var axisCount = layoutInfo.axisCount; + var axisCollapseWidth = layoutInfo.axisCollapseWidth; + var winInnerIndices = layoutInfo.winInnerIndices; + + var position; + var axisNameAvailableWidth = axisCollapseWidth; + var axisLabelShow = false; + var nameTruncateMaxWidth; + + if (axisIndex < winInnerIndices[0]) { + position = axisIndex * axisCollapseWidth; + nameTruncateMaxWidth = axisCollapseWidth; + } + else if (axisIndex <= winInnerIndices[1]) { + position = layoutInfo.axisExpandWindow0Pos + + axisIndex * axisExpandWidth - layoutInfo.axisExpandWindow[0]; + axisNameAvailableWidth = axisExpandWidth; + axisLabelShow = true; + } + else { + position = layoutLength - (axisCount - 1 - axisIndex) * axisCollapseWidth; + nameTruncateMaxWidth = axisCollapseWidth; + } + + return { + position: position, + axisNameAvailableWidth: axisNameAvailableWidth, + axisLabelShow: axisLabelShow, + nameTruncateMaxWidth: nameTruncateMaxWidth + }; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Parallel coordinate system creater. + */ + +function create$2(ecModel, api) { + var coordSysList = []; + + ecModel.eachComponent('parallel', function (parallelModel, idx) { + var coordSys = new Parallel(parallelModel, ecModel, api); + + coordSys.name = 'parallel_' + idx; + coordSys.resize(parallelModel, api); + + parallelModel.coordinateSystem = coordSys; + coordSys.model = parallelModel; + + coordSysList.push(coordSys); + }); + + // Inject the coordinateSystems into seriesModel + ecModel.eachSeries(function (seriesModel) { + if (seriesModel.get('coordinateSystem') === 'parallel') { + var parallelModel = ecModel.queryComponents({ + mainType: 'parallel', + index: seriesModel.get('parallelIndex'), + id: seriesModel.get('parallelId') + })[0]; + seriesModel.coordinateSystem = parallelModel.coordinateSystem; + } + }); + + return coordSysList; +} + +CoordinateSystemManager.register('parallel', {create: create$2}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var AxisModel$2 = ComponentModel.extend({ + + type: 'baseParallelAxis', + + /** + * @type {module:echarts/coord/parallel/Axis} + */ + axis: null, + + /** + * @type {Array.} + * @readOnly + */ + activeIntervals: [], + + /** + * @return {Object} + */ + getAreaSelectStyle: function () { + return makeStyleMapper( + [ + ['fill', 'color'], + ['lineWidth', 'borderWidth'], + ['stroke', 'borderColor'], + ['width', 'width'], + ['opacity', 'opacity'] + ] + )(this.getModel('areaSelectStyle')); + }, + + /** + * The code of this feature is put on AxisModel but not ParallelAxis, + * because axisModel can be alive after echarts updating but instance of + * ParallelAxis having been disposed. this._activeInterval should be kept + * when action dispatched (i.e. legend click). + * + * @param {Array.>} intervals interval.length === 0 + * means set all active. + * @public + */ + setActiveIntervals: function (intervals) { + var activeIntervals = this.activeIntervals = clone(intervals); + + // Normalize + if (activeIntervals) { + for (var i = activeIntervals.length - 1; i >= 0; i--) { + asc(activeIntervals[i]); + } + } + }, + + /** + * @param {number|string} [value] When attempting to detect 'no activeIntervals set', + * value can not be input. + * @return {string} 'normal': no activeIntervals set, + * 'active', + * 'inactive'. + * @public + */ + getActiveState: function (value) { + var activeIntervals = this.activeIntervals; + + if (!activeIntervals.length) { + return 'normal'; + } + + if (value == null || isNaN(value)) { + return 'inactive'; + } + + // Simple optimization + if (activeIntervals.length === 1) { + var interval = activeIntervals[0]; + if (interval[0] <= value && value <= interval[1]) { + return 'active'; + } + } + else { + for (var i = 0, len = activeIntervals.length; i < len; i++) { + if (activeIntervals[i][0] <= value && value <= activeIntervals[i][1]) { + return 'active'; + } + } + } + + return 'inactive'; + } + +}); + +var defaultOption$1 = { + + type: 'value', + + /** + * @type {Array.} + */ + dim: null, // 0, 1, 2, ... + + // parallelIndex: null, + + areaSelectStyle: { + width: 20, + borderWidth: 1, + borderColor: 'rgba(160,197,232)', + color: 'rgba(160,197,232)', + opacity: 0.3 + }, + + realtime: true, // Whether realtime update view when select. + + z: 10 +}; + +merge(AxisModel$2.prototype, axisModelCommonMixin); + +function getAxisType$1(axisName, option) { + return option.type || (option.data ? 'category' : 'value'); +} + +axisModelCreator('parallel', AxisModel$2, getAxisType$1, defaultOption$1); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +ComponentModel.extend({ + + type: 'parallel', + + dependencies: ['parallelAxis'], + + /** + * @type {module:echarts/coord/parallel/Parallel} + */ + coordinateSystem: null, + + /** + * Each item like: 'dim0', 'dim1', 'dim2', ... + * @type {Array.} + * @readOnly + */ + dimensions: null, + + /** + * Coresponding to dimensions. + * @type {Array.} + * @readOnly + */ + parallelAxisIndex: null, + + layoutMode: 'box', + + defaultOption: { + zlevel: 0, + z: 0, + left: 80, + top: 60, + right: 80, + bottom: 60, + // width: {totalWidth} - left - right, + // height: {totalHeight} - top - bottom, + + layout: 'horizontal', // 'horizontal' or 'vertical' + + // FIXME + // naming? + axisExpandable: false, + axisExpandCenter: null, + axisExpandCount: 0, + axisExpandWidth: 50, // FIXME '10%' ? + axisExpandRate: 17, + axisExpandDebounce: 50, + // [out, in, jumpTarget]. In percentage. If use [null, 0.05], null means full. + // Do not doc to user until necessary. + axisExpandSlideTriggerArea: [-0.15, 0.05, 0.4], + axisExpandTriggerOn: 'click', // 'mousemove' or 'click' + + parallelAxisDefault: null + }, + + /** + * @override + */ + init: function () { + ComponentModel.prototype.init.apply(this, arguments); + + this.mergeOption({}); + }, + + /** + * @override + */ + mergeOption: function (newOption) { + var thisOption = this.option; + + newOption && merge(thisOption, newOption, true); + + this._initDimensions(); + }, + + /** + * Whether series or axis is in this coordinate system. + * @param {module:echarts/model/Series|module:echarts/coord/parallel/AxisModel} model + * @param {module:echarts/model/Global} ecModel + */ + contains: function (model, ecModel) { + var parallelIndex = model.get('parallelIndex'); + return parallelIndex != null + && ecModel.getComponent('parallel', parallelIndex) === this; + }, + + setAxisExpand: function (opt) { + each$1( + ['axisExpandable', 'axisExpandCenter', 'axisExpandCount', 'axisExpandWidth', 'axisExpandWindow'], + function (name) { + if (opt.hasOwnProperty(name)) { + this.option[name] = opt[name]; + } + }, + this + ); + }, + + /** + * @private + */ + _initDimensions: function () { + var dimensions = this.dimensions = []; + var parallelAxisIndex = this.parallelAxisIndex = []; + + var axisModels = filter(this.dependentModels.parallelAxis, function (axisModel) { + // Can not use this.contains here, because + // initialization has not been completed yet. + return (axisModel.get('parallelIndex') || 0) === this.componentIndex; + }, this); + + each$1(axisModels, function (axisModel) { + dimensions.push('dim' + axisModel.get('dim')); + parallelAxisIndex.push(axisModel.componentIndex); + }); + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @payload + * @property {string} parallelAxisId + * @property {Array.>} intervals + */ +var actionInfo$1 = { + type: 'axisAreaSelect', + event: 'axisAreaSelected' + // update: 'updateVisual' +}; + +registerAction(actionInfo$1, function (payload, ecModel) { + ecModel.eachComponent( + {mainType: 'parallelAxis', query: payload}, + function (parallelAxisModel) { + parallelAxisModel.axis.model.setActiveIntervals(payload.intervals); + } + ); +}); + +/** + * @payload + */ +registerAction('parallelAxisExpand', function (payload, ecModel) { + ecModel.eachComponent( + {mainType: 'parallel', query: payload}, + function (parallelModel) { + parallelModel.setAxisExpand(payload); + } + ); + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var curry$2 = curry; +var each$12 = each$1; +var map$2 = map; +var mathMin$6 = Math.min; +var mathMax$6 = Math.max; +var mathPow$2 = Math.pow; + +var COVER_Z = 10000; +var UNSELECT_THRESHOLD = 6; +var MIN_RESIZE_LINE_WIDTH = 6; +var MUTEX_RESOURCE_KEY = 'globalPan'; + +var DIRECTION_MAP = { + w: [0, 0], + e: [0, 1], + n: [1, 0], + s: [1, 1] +}; +var CURSOR_MAP = { + w: 'ew', + e: 'ew', + n: 'ns', + s: 'ns', + ne: 'nesw', + sw: 'nesw', + nw: 'nwse', + se: 'nwse' +}; +var DEFAULT_BRUSH_OPT = { + brushStyle: { + lineWidth: 2, + stroke: 'rgba(0,0,0,0.3)', + fill: 'rgba(0,0,0,0.1)' + }, + transformable: true, + brushMode: 'single', + removeOnClick: false +}; + +var baseUID = 0; + +/** + * @alias module:echarts/component/helper/BrushController + * @constructor + * @mixin {module:zrender/mixin/Eventful} + * @event module:echarts/component/helper/BrushController#brush + * params: + * areas: Array., coord relates to container group, + * If no container specified, to global. + * opt { + * isEnd: boolean, + * removeOnClick: boolean + * } + * + * @param {module:zrender/zrender~ZRender} zr + */ +function BrushController(zr) { + + if (__DEV__) { + assert$1(zr); + } + + Eventful.call(this); + + /** + * @type {module:zrender/zrender~ZRender} + * @private + */ + this._zr = zr; + + /** + * @type {module:zrender/container/Group} + * @readOnly + */ + this.group = new Group(); + + /** + * Only for drawing (after enabledBrush). + * 'line', 'rect', 'polygon' or false + * If passing false/null/undefined, disable brush. + * If passing 'auto', determined by panel.defaultBrushType + * @private + * @type {string} + */ + this._brushType; + + /** + * Only for drawing (after enabledBrush). + * + * @private + * @type {Object} + */ + this._brushOption; + + /** + * @private + * @type {Object} + */ + this._panels; + + /** + * @private + * @type {Array.} + */ + this._track = []; + + /** + * @private + * @type {boolean} + */ + this._dragging; + + /** + * @private + * @type {Array} + */ + this._covers = []; + + /** + * @private + * @type {moudule:zrender/container/Group} + */ + this._creatingCover; + + /** + * `true` means global panel + * @private + * @type {module:zrender/container/Group|boolean} + */ + this._creatingPanel; + + /** + * @private + * @type {boolean} + */ + this._enableGlobalPan; + + /** + * @private + * @type {boolean} + */ + if (__DEV__) { + this._mounted; + } + + /** + * @private + * @type {string} + */ + this._uid = 'brushController_' + baseUID++; + + /** + * @private + * @type {Object} + */ + this._handlers = {}; + each$12(mouseHandlers, function (handler, eventName) { + this._handlers[eventName] = bind(handler, this); + }, this); +} + +BrushController.prototype = { + + constructor: BrushController, + + /** + * If set to null/undefined/false, select disabled. + * @param {Object} brushOption + * @param {string|boolean} brushOption.brushType 'line', 'rect', 'polygon' or false + * If passing false/null/undefined, disable brush. + * If passing 'auto', determined by panel.defaultBrushType. + * ('auto' can not be used in global panel) + * @param {number} [brushOption.brushMode='single'] 'single' or 'multiple' + * @param {boolean} [brushOption.transformable=true] + * @param {boolean} [brushOption.removeOnClick=false] + * @param {Object} [brushOption.brushStyle] + * @param {number} [brushOption.brushStyle.width] + * @param {number} [brushOption.brushStyle.lineWidth] + * @param {string} [brushOption.brushStyle.stroke] + * @param {string} [brushOption.brushStyle.fill] + * @param {number} [brushOption.z] + */ + enableBrush: function (brushOption) { + if (__DEV__) { + assert$1(this._mounted); + } + + this._brushType && doDisableBrush(this); + brushOption.brushType && doEnableBrush(this, brushOption); + + return this; + }, + + /** + * @param {Array.} panelOpts If not pass, it is global brush. + * Each items: { + * panelId, // mandatory. + * clipPath, // mandatory. function. + * isTargetByCursor, // mandatory. function. + * defaultBrushType, // optional, only used when brushType is 'auto'. + * getLinearBrushOtherExtent, // optional. function. + * } + */ + setPanels: function (panelOpts) { + if (panelOpts && panelOpts.length) { + var panels = this._panels = {}; + each$1(panelOpts, function (panelOpts) { + panels[panelOpts.panelId] = clone(panelOpts); + }); + } + else { + this._panels = null; + } + return this; + }, + + /** + * @param {Object} [opt] + * @return {boolean} [opt.enableGlobalPan=false] + */ + mount: function (opt) { + opt = opt || {}; + + if (__DEV__) { + this._mounted = true; // should be at first. + } + + this._enableGlobalPan = opt.enableGlobalPan; + + var thisGroup = this.group; + this._zr.add(thisGroup); + + thisGroup.attr({ + position: opt.position || [0, 0], + rotation: opt.rotation || 0, + scale: opt.scale || [1, 1] + }); + this._transform = thisGroup.getLocalTransform(); + + return this; + }, + + eachCover: function (cb, context) { + each$12(this._covers, cb, context); + }, + + /** + * Update covers. + * @param {Array.} brushOptionList Like: + * [ + * {id: 'xx', brushType: 'line', range: [23, 44], brushStyle, transformable}, + * {id: 'yy', brushType: 'rect', range: [[23, 44], [23, 54]]}, + * ... + * ] + * `brushType` is required in each cover info. (can not be 'auto') + * `id` is not mandatory. + * `brushStyle`, `transformable` is not mandatory, use DEFAULT_BRUSH_OPT by default. + * If brushOptionList is null/undefined, all covers removed. + */ + updateCovers: function (brushOptionList) { + if (__DEV__) { + assert$1(this._mounted); + } + + brushOptionList = map(brushOptionList, function (brushOption) { + return merge(clone(DEFAULT_BRUSH_OPT), brushOption, true); + }); + + var tmpIdPrefix = '\0-brush-index-'; + var oldCovers = this._covers; + var newCovers = this._covers = []; + var controller = this; + var creatingCover = this._creatingCover; + + (new DataDiffer(oldCovers, brushOptionList, oldGetKey, getKey)) + .add(addOrUpdate) + .update(addOrUpdate) + .remove(remove) + .execute(); + + return this; + + function getKey(brushOption, index) { + return (brushOption.id != null ? brushOption.id : tmpIdPrefix + index) + + '-' + brushOption.brushType; + } + + function oldGetKey(cover, index) { + return getKey(cover.__brushOption, index); + } + + function addOrUpdate(newIndex, oldIndex) { + var newBrushOption = brushOptionList[newIndex]; + // Consider setOption in event listener of brushSelect, + // where updating cover when creating should be forbiden. + if (oldIndex != null && oldCovers[oldIndex] === creatingCover) { + newCovers[newIndex] = oldCovers[oldIndex]; + } + else { + var cover = newCovers[newIndex] = oldIndex != null + ? ( + oldCovers[oldIndex].__brushOption = newBrushOption, + oldCovers[oldIndex] + ) + : endCreating(controller, createCover(controller, newBrushOption)); + updateCoverAfterCreation(controller, cover); + } + } + + function remove(oldIndex) { + if (oldCovers[oldIndex] !== creatingCover) { + controller.group.remove(oldCovers[oldIndex]); + } + } + }, + + unmount: function () { + if (__DEV__) { + if (!this._mounted) { + return; + } + } + + this.enableBrush(false); + + // container may 'removeAll' outside. + clearCovers(this); + this._zr.remove(this.group); + + if (__DEV__) { + this._mounted = false; // should be at last. + } + + return this; + }, + + dispose: function () { + this.unmount(); + this.off(); + } +}; + +mixin(BrushController, Eventful); + +function doEnableBrush(controller, brushOption) { + var zr = controller._zr; + + // Consider roam, which takes globalPan too. + if (!controller._enableGlobalPan) { + take(zr, MUTEX_RESOURCE_KEY, controller._uid); + } + + each$12(controller._handlers, function (handler, eventName) { + zr.on(eventName, handler); + }); + + controller._brushType = brushOption.brushType; + controller._brushOption = merge(clone(DEFAULT_BRUSH_OPT), brushOption, true); +} + +function doDisableBrush(controller) { + var zr = controller._zr; + + release(zr, MUTEX_RESOURCE_KEY, controller._uid); + + each$12(controller._handlers, function (handler, eventName) { + zr.off(eventName, handler); + }); + + controller._brushType = controller._brushOption = null; +} + +function createCover(controller, brushOption) { + var cover = coverRenderers[brushOption.brushType].createCover(controller, brushOption); + cover.__brushOption = brushOption; + updateZ$1(cover, brushOption); + controller.group.add(cover); + return cover; +} + +function endCreating(controller, creatingCover) { + var coverRenderer = getCoverRenderer(creatingCover); + if (coverRenderer.endCreating) { + coverRenderer.endCreating(controller, creatingCover); + updateZ$1(creatingCover, creatingCover.__brushOption); + } + return creatingCover; +} + +function updateCoverShape(controller, cover) { + var brushOption = cover.__brushOption; + getCoverRenderer(cover).updateCoverShape( + controller, cover, brushOption.range, brushOption + ); +} + +function updateZ$1(cover, brushOption) { + var z = brushOption.z; + z == null && (z = COVER_Z); + cover.traverse(function (el) { + el.z = z; + el.z2 = z; // Consider in given container. + }); +} + +function updateCoverAfterCreation(controller, cover) { + getCoverRenderer(cover).updateCommon(controller, cover); + updateCoverShape(controller, cover); +} + +function getCoverRenderer(cover) { + return coverRenderers[cover.__brushOption.brushType]; +} + +// return target panel or `true` (means global panel) +function getPanelByPoint(controller, e, localCursorPoint) { + var panels = controller._panels; + if (!panels) { + return true; // Global panel + } + var panel; + var transform = controller._transform; + each$12(panels, function (pn) { + pn.isTargetByCursor(e, localCursorPoint, transform) && (panel = pn); + }); + return panel; +} + +// Return a panel or true +function getPanelByCover(controller, cover) { + var panels = controller._panels; + if (!panels) { + return true; // Global panel + } + var panelId = cover.__brushOption.panelId; + // User may give cover without coord sys info, + // which is then treated as global panel. + return panelId != null ? panels[panelId] : true; +} + +function clearCovers(controller) { + var covers = controller._covers; + var originalLength = covers.length; + each$12(covers, function (cover) { + controller.group.remove(cover); + }, controller); + covers.length = 0; + + return !!originalLength; +} + +function trigger$1(controller, opt) { + var areas = map$2(controller._covers, function (cover) { + var brushOption = cover.__brushOption; + var range = clone(brushOption.range); + return { + brushType: brushOption.brushType, + panelId: brushOption.panelId, + range: range + }; + }); + + controller.trigger('brush', areas, { + isEnd: !!opt.isEnd, + removeOnClick: !!opt.removeOnClick + }); +} + +function shouldShowCover(controller) { + var track = controller._track; + + if (!track.length) { + return false; + } + + var p2 = track[track.length - 1]; + var p1 = track[0]; + var dx = p2[0] - p1[0]; + var dy = p2[1] - p1[1]; + var dist = mathPow$2(dx * dx + dy * dy, 0.5); + + return dist > UNSELECT_THRESHOLD; +} + +function getTrackEnds(track) { + var tail = track.length - 1; + tail < 0 && (tail = 0); + return [track[0], track[tail]]; +} + +function createBaseRectCover(doDrift, controller, brushOption, edgeNames) { + var cover = new Group(); + + cover.add(new Rect({ + name: 'main', + style: makeStyle(brushOption), + silent: true, + draggable: true, + cursor: 'move', + drift: curry$2(doDrift, controller, cover, 'nswe'), + ondragend: curry$2(trigger$1, controller, {isEnd: true}) + })); + + each$12( + edgeNames, + function (name) { + cover.add(new Rect({ + name: name, + style: {opacity: 0}, + draggable: true, + silent: true, + invisible: true, + drift: curry$2(doDrift, controller, cover, name), + ondragend: curry$2(trigger$1, controller, {isEnd: true}) + })); + } + ); + + return cover; +} + +function updateBaseRect(controller, cover, localRange, brushOption) { + var lineWidth = brushOption.brushStyle.lineWidth || 0; + var handleSize = mathMax$6(lineWidth, MIN_RESIZE_LINE_WIDTH); + var x = localRange[0][0]; + var y = localRange[1][0]; + var xa = x - lineWidth / 2; + var ya = y - lineWidth / 2; + var x2 = localRange[0][1]; + var y2 = localRange[1][1]; + var x2a = x2 - handleSize + lineWidth / 2; + var y2a = y2 - handleSize + lineWidth / 2; + var width = x2 - x; + var height = y2 - y; + var widtha = width + lineWidth; + var heighta = height + lineWidth; + + updateRectShape(controller, cover, 'main', x, y, width, height); + + if (brushOption.transformable) { + updateRectShape(controller, cover, 'w', xa, ya, handleSize, heighta); + updateRectShape(controller, cover, 'e', x2a, ya, handleSize, heighta); + updateRectShape(controller, cover, 'n', xa, ya, widtha, handleSize); + updateRectShape(controller, cover, 's', xa, y2a, widtha, handleSize); + + updateRectShape(controller, cover, 'nw', xa, ya, handleSize, handleSize); + updateRectShape(controller, cover, 'ne', x2a, ya, handleSize, handleSize); + updateRectShape(controller, cover, 'sw', xa, y2a, handleSize, handleSize); + updateRectShape(controller, cover, 'se', x2a, y2a, handleSize, handleSize); + } +} + +function updateCommon(controller, cover) { + var brushOption = cover.__brushOption; + var transformable = brushOption.transformable; + + var mainEl = cover.childAt(0); + mainEl.useStyle(makeStyle(brushOption)); + mainEl.attr({ + silent: !transformable, + cursor: transformable ? 'move' : 'default' + }); + + each$12( + ['w', 'e', 'n', 's', 'se', 'sw', 'ne', 'nw'], + function (name) { + var el = cover.childOfName(name); + var globalDir = getGlobalDirection(controller, name); + + el && el.attr({ + silent: !transformable, + invisible: !transformable, + cursor: transformable ? CURSOR_MAP[globalDir] + '-resize' : null + }); + } + ); +} + +function updateRectShape(controller, cover, name, x, y, w, h) { + var el = cover.childOfName(name); + el && el.setShape(pointsToRect( + clipByPanel(controller, cover, [[x, y], [x + w, y + h]]) + )); +} + +function makeStyle(brushOption) { + return defaults({strokeNoScale: true}, brushOption.brushStyle); +} + +function formatRectRange(x, y, x2, y2) { + var min = [mathMin$6(x, x2), mathMin$6(y, y2)]; + var max = [mathMax$6(x, x2), mathMax$6(y, y2)]; + + return [ + [min[0], max[0]], // x range + [min[1], max[1]] // y range + ]; +} + +function getTransform$1(controller) { + return getTransform(controller.group); +} + +function getGlobalDirection(controller, localDirection) { + if (localDirection.length > 1) { + localDirection = localDirection.split(''); + var globalDir = [ + getGlobalDirection(controller, localDirection[0]), + getGlobalDirection(controller, localDirection[1]) + ]; + (globalDir[0] === 'e' || globalDir[0] === 'w') && globalDir.reverse(); + return globalDir.join(''); + } + else { + var map$$1 = {w: 'left', e: 'right', n: 'top', s: 'bottom'}; + var inverseMap = {left: 'w', right: 'e', top: 'n', bottom: 's'}; + var globalDir = transformDirection( + map$$1[localDirection], getTransform$1(controller) + ); + return inverseMap[globalDir]; + } +} + +function driftRect(toRectRange, fromRectRange, controller, cover, name, dx, dy, e) { + var brushOption = cover.__brushOption; + var rectRange = toRectRange(brushOption.range); + var localDelta = toLocalDelta(controller, dx, dy); + + each$12(name.split(''), function (namePart) { + var ind = DIRECTION_MAP[namePart]; + rectRange[ind[0]][ind[1]] += localDelta[ind[0]]; + }); + + brushOption.range = fromRectRange(formatRectRange( + rectRange[0][0], rectRange[1][0], rectRange[0][1], rectRange[1][1] + )); + + updateCoverAfterCreation(controller, cover); + trigger$1(controller, {isEnd: false}); +} + +function driftPolygon(controller, cover, dx, dy, e) { + var range = cover.__brushOption.range; + var localDelta = toLocalDelta(controller, dx, dy); + + each$12(range, function (point) { + point[0] += localDelta[0]; + point[1] += localDelta[1]; + }); + + updateCoverAfterCreation(controller, cover); + trigger$1(controller, {isEnd: false}); +} + +function toLocalDelta(controller, dx, dy) { + var thisGroup = controller.group; + var localD = thisGroup.transformCoordToLocal(dx, dy); + var localZero = thisGroup.transformCoordToLocal(0, 0); + + return [localD[0] - localZero[0], localD[1] - localZero[1]]; +} + +function clipByPanel(controller, cover, data) { + var panel = getPanelByCover(controller, cover); + + return (panel && panel !== true) + ? panel.clipPath(data, controller._transform) + : clone(data); +} + +function pointsToRect(points) { + var xmin = mathMin$6(points[0][0], points[1][0]); + var ymin = mathMin$6(points[0][1], points[1][1]); + var xmax = mathMax$6(points[0][0], points[1][0]); + var ymax = mathMax$6(points[0][1], points[1][1]); + + return { + x: xmin, + y: ymin, + width: xmax - xmin, + height: ymax - ymin + }; +} + +function resetCursor(controller, e, localCursorPoint) { + // Check active + if (!controller._brushType) { + return; + } + + var zr = controller._zr; + var covers = controller._covers; + var currPanel = getPanelByPoint(controller, e, localCursorPoint); + + // Check whether in covers. + if (!controller._dragging) { + for (var i = 0; i < covers.length; i++) { + var brushOption = covers[i].__brushOption; + if (currPanel + && (currPanel === true || brushOption.panelId === currPanel.panelId) + && coverRenderers[brushOption.brushType].contain( + covers[i], localCursorPoint[0], localCursorPoint[1] + ) + ) { + // Use cursor style set on cover. + return; + } + } + } + + currPanel && zr.setCursorStyle('crosshair'); +} + +function preventDefault(e) { + var rawE = e.event; + rawE.preventDefault && rawE.preventDefault(); +} + +function mainShapeContain(cover, x, y) { + return cover.childOfName('main').contain(x, y); +} + +function updateCoverByMouse(controller, e, localCursorPoint, isEnd) { + var creatingCover = controller._creatingCover; + var panel = controller._creatingPanel; + var thisBrushOption = controller._brushOption; + var eventParams; + + controller._track.push(localCursorPoint.slice()); + + if (shouldShowCover(controller) || creatingCover) { + + if (panel && !creatingCover) { + thisBrushOption.brushMode === 'single' && clearCovers(controller); + var brushOption = clone(thisBrushOption); + brushOption.brushType = determineBrushType(brushOption.brushType, panel); + brushOption.panelId = panel === true ? null : panel.panelId; + creatingCover = controller._creatingCover = createCover(controller, brushOption); + controller._covers.push(creatingCover); + } + + if (creatingCover) { + var coverRenderer = coverRenderers[determineBrushType(controller._brushType, panel)]; + var coverBrushOption = creatingCover.__brushOption; + + coverBrushOption.range = coverRenderer.getCreatingRange( + clipByPanel(controller, creatingCover, controller._track) + ); + + if (isEnd) { + endCreating(controller, creatingCover); + coverRenderer.updateCommon(controller, creatingCover); + } + + updateCoverShape(controller, creatingCover); + + eventParams = {isEnd: isEnd}; + } + } + else if ( + isEnd + && thisBrushOption.brushMode === 'single' + && thisBrushOption.removeOnClick + ) { + // Help user to remove covers easily, only by a tiny drag, in 'single' mode. + // But a single click do not clear covers, because user may have casual + // clicks (for example, click on other component and do not expect covers + // disappear). + // Only some cover removed, trigger action, but not every click trigger action. + if (getPanelByPoint(controller, e, localCursorPoint) && clearCovers(controller)) { + eventParams = {isEnd: isEnd, removeOnClick: true}; + } + } + + return eventParams; +} + +function determineBrushType(brushType, panel) { + if (brushType === 'auto') { + if (__DEV__) { + assert$1( + panel && panel.defaultBrushType, + 'MUST have defaultBrushType when brushType is "atuo"' + ); + } + return panel.defaultBrushType; + } + return brushType; +} + +var mouseHandlers = { + + mousedown: function (e) { + if (this._dragging) { + // In case some browser do not support globalOut, + // and release mose out side the browser. + handleDragEnd.call(this, e); + } + else if (!e.target || !e.target.draggable) { + + preventDefault(e); + + var localCursorPoint = this.group.transformCoordToLocal(e.offsetX, e.offsetY); + + this._creatingCover = null; + var panel = this._creatingPanel = getPanelByPoint(this, e, localCursorPoint); + + if (panel) { + this._dragging = true; + this._track = [localCursorPoint.slice()]; + } + } + }, + + mousemove: function (e) { + var localCursorPoint = this.group.transformCoordToLocal(e.offsetX, e.offsetY); + + resetCursor(this, e, localCursorPoint); + + if (this._dragging) { + + preventDefault(e); + + var eventParams = updateCoverByMouse(this, e, localCursorPoint, false); + + eventParams && trigger$1(this, eventParams); + } + }, + + mouseup: handleDragEnd //, + + // FIXME + // in tooltip, globalout should not be triggered. + // globalout: handleDragEnd +}; + +function handleDragEnd(e) { + if (this._dragging) { + + preventDefault(e); + + var localCursorPoint = this.group.transformCoordToLocal(e.offsetX, e.offsetY); + var eventParams = updateCoverByMouse(this, e, localCursorPoint, true); + + this._dragging = false; + this._track = []; + this._creatingCover = null; + + // trigger event shoule be at final, after procedure will be nested. + eventParams && trigger$1(this, eventParams); + } +} + +/** + * key: brushType + * @type {Object} + */ +var coverRenderers = { + + lineX: getLineRenderer(0), + + lineY: getLineRenderer(1), + + rect: { + createCover: function (controller, brushOption) { + return createBaseRectCover( + curry$2( + driftRect, + function (range) { + return range; + }, + function (range) { + return range; + } + ), + controller, + brushOption, + ['w', 'e', 'n', 's', 'se', 'sw', 'ne', 'nw'] + ); + }, + getCreatingRange: function (localTrack) { + var ends = getTrackEnds(localTrack); + return formatRectRange(ends[1][0], ends[1][1], ends[0][0], ends[0][1]); + }, + updateCoverShape: function (controller, cover, localRange, brushOption) { + updateBaseRect(controller, cover, localRange, brushOption); + }, + updateCommon: updateCommon, + contain: mainShapeContain + }, + + polygon: { + createCover: function (controller, brushOption) { + var cover = new Group(); + + // Do not use graphic.Polygon because graphic.Polyline do not close the + // border of the shape when drawing, which is a better experience for user. + cover.add(new Polyline({ + name: 'main', + style: makeStyle(brushOption), + silent: true + })); + + return cover; + }, + getCreatingRange: function (localTrack) { + return localTrack; + }, + endCreating: function (controller, cover) { + cover.remove(cover.childAt(0)); + // Use graphic.Polygon close the shape. + cover.add(new Polygon({ + name: 'main', + draggable: true, + drift: curry$2(driftPolygon, controller, cover), + ondragend: curry$2(trigger$1, controller, {isEnd: true}) + })); + }, + updateCoverShape: function (controller, cover, localRange, brushOption) { + cover.childAt(0).setShape({ + points: clipByPanel(controller, cover, localRange) + }); + }, + updateCommon: updateCommon, + contain: mainShapeContain + } +}; + +function getLineRenderer(xyIndex) { + return { + createCover: function (controller, brushOption) { + return createBaseRectCover( + curry$2( + driftRect, + function (range) { + var rectRange = [range, [0, 100]]; + xyIndex && rectRange.reverse(); + return rectRange; + }, + function (rectRange) { + return rectRange[xyIndex]; + } + ), + controller, + brushOption, + [['w', 'e'], ['n', 's']][xyIndex] + ); + }, + getCreatingRange: function (localTrack) { + var ends = getTrackEnds(localTrack); + var min = mathMin$6(ends[0][xyIndex], ends[1][xyIndex]); + var max = mathMax$6(ends[0][xyIndex], ends[1][xyIndex]); + + return [min, max]; + }, + updateCoverShape: function (controller, cover, localRange, brushOption) { + var otherExtent; + // If brushWidth not specified, fit the panel. + var panel = getPanelByCover(controller, cover); + if (panel !== true && panel.getLinearBrushOtherExtent) { + otherExtent = panel.getLinearBrushOtherExtent( + xyIndex, controller._transform + ); + } + else { + var zr = controller._zr; + otherExtent = [0, [zr.getWidth(), zr.getHeight()][1 - xyIndex]]; + } + var rectRange = [localRange, otherExtent]; + xyIndex && rectRange.reverse(); + + updateBaseRect(controller, cover, rectRange, brushOption); + }, + updateCommon: updateCommon, + contain: mainShapeContain + }; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function makeRectPanelClipPath(rect) { + rect = normalizeRect(rect); + return function (localPoints, transform) { + return clipPointsByRect(localPoints, rect); + }; +} + +function makeLinearBrushOtherExtent(rect, specifiedXYIndex) { + rect = normalizeRect(rect); + return function (xyIndex) { + var idx = specifiedXYIndex != null ? specifiedXYIndex : xyIndex; + var brushWidth = idx ? rect.width : rect.height; + var base = idx ? rect.x : rect.y; + return [base, base + (brushWidth || 0)]; + }; +} + +function makeRectIsTargetByCursor(rect, api, targetModel) { + rect = normalizeRect(rect); + return function (e, localCursorPoint, transform) { + return rect.contain(localCursorPoint[0], localCursorPoint[1]) + && !onIrrelevantElement(e, api, targetModel); + }; +} + +// Consider width/height is negative. +function normalizeRect(rect) { + return BoundingRect.create(rect); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var elementList = ['axisLine', 'axisTickLabel', 'axisName']; + +var AxisView$2 = extendComponentView({ + + type: 'parallelAxis', + + /** + * @override + */ + init: function (ecModel, api) { + AxisView$2.superApply(this, 'init', arguments); + + /** + * @type {module:echarts/component/helper/BrushController} + */ + (this._brushController = new BrushController(api.getZr())) + .on('brush', bind(this._onBrush, this)); + }, + + /** + * @override + */ + render: function (axisModel, ecModel, api, payload) { + if (fromAxisAreaSelect(axisModel, ecModel, payload)) { + return; + } + + this.axisModel = axisModel; + this.api = api; + + this.group.removeAll(); + + var oldAxisGroup = this._axisGroup; + this._axisGroup = new Group(); + this.group.add(this._axisGroup); + + if (!axisModel.get('show')) { + return; + } + + var coordSysModel = getCoordSysModel(axisModel, ecModel); + var coordSys = coordSysModel.coordinateSystem; + + var areaSelectStyle = axisModel.getAreaSelectStyle(); + var areaWidth = areaSelectStyle.width; + + var dim = axisModel.axis.dim; + var axisLayout = coordSys.getAxisLayout(dim); + + var builderOpt = extend( + {strokeContainThreshold: areaWidth}, + axisLayout + ); + + var axisBuilder = new AxisBuilder(axisModel, builderOpt); + + each$1(elementList, axisBuilder.add, axisBuilder); + + this._axisGroup.add(axisBuilder.getGroup()); + + this._refreshBrushController( + builderOpt, areaSelectStyle, axisModel, coordSysModel, areaWidth, api + ); + + var animationModel = (payload && payload.animation === false) ? null : axisModel; + groupTransition(oldAxisGroup, this._axisGroup, animationModel); + }, + + // /** + // * @override + // */ + // updateVisual: function (axisModel, ecModel, api, payload) { + // this._brushController && this._brushController + // .updateCovers(getCoverInfoList(axisModel)); + // }, + + _refreshBrushController: function ( + builderOpt, areaSelectStyle, axisModel, coordSysModel, areaWidth, api + ) { + // After filtering, axis may change, select area needs to be update. + var extent = axisModel.axis.getExtent(); + var extentLen = extent[1] - extent[0]; + var extra = Math.min(30, Math.abs(extentLen) * 0.1); // Arbitrary value. + + // width/height might be negative, which will be + // normalized in BoundingRect. + var rect = BoundingRect.create({ + x: extent[0], + y: -areaWidth / 2, + width: extentLen, + height: areaWidth + }); + rect.x -= extra; + rect.width += 2 * extra; + + this._brushController + .mount({ + enableGlobalPan: true, + rotation: builderOpt.rotation, + position: builderOpt.position + }) + .setPanels([{ + panelId: 'pl', + clipPath: makeRectPanelClipPath(rect), + isTargetByCursor: makeRectIsTargetByCursor(rect, api, coordSysModel), + getLinearBrushOtherExtent: makeLinearBrushOtherExtent(rect, 0) + }]) + .enableBrush({ + brushType: 'lineX', + brushStyle: areaSelectStyle, + removeOnClick: true + }) + .updateCovers(getCoverInfoList(axisModel)); + }, + + _onBrush: function (coverInfoList, opt) { + // Do not cache these object, because the mey be changed. + var axisModel = this.axisModel; + var axis = axisModel.axis; + var intervals = map(coverInfoList, function (coverInfo) { + return [ + axis.coordToData(coverInfo.range[0], true), + axis.coordToData(coverInfo.range[1], true) + ]; + }); + + // If realtime is true, action is not dispatched on drag end, because + // the drag end emits the same params with the last drag move event, + // and may have some delay when using touch pad. + if (!axisModel.option.realtime === opt.isEnd || opt.removeOnClick) { // jshint ignore:line + this.api.dispatchAction({ + type: 'axisAreaSelect', + parallelAxisId: axisModel.id, + intervals: intervals + }); + } + }, + + /** + * @override + */ + dispose: function () { + this._brushController.dispose(); + } +}); + +function fromAxisAreaSelect(axisModel, ecModel, payload) { + return payload + && payload.type === 'axisAreaSelect' + && ecModel.findComponents( + {mainType: 'parallelAxis', query: payload} + )[0] === axisModel; +} + +function getCoverInfoList(axisModel) { + var axis = axisModel.axis; + return map(axisModel.activeIntervals, function (interval) { + return { + brushType: 'lineX', + panelId: 'pl', + range: [ + axis.dataToCoord(interval[0], true), + axis.dataToCoord(interval[1], true) + ] + }; + }); +} + +function getCoordSysModel(axisModel, ecModel) { + return ecModel.getComponent( + 'parallel', axisModel.get('parallelIndex') + ); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var CLICK_THRESHOLD = 5; // > 4 + +// Parallel view +extendComponentView({ + type: 'parallel', + + render: function (parallelModel, ecModel, api) { + this._model = parallelModel; + this._api = api; + + if (!this._handlers) { + this._handlers = {}; + each$1(handlers, function (handler, eventName) { + api.getZr().on(eventName, this._handlers[eventName] = bind(handler, this)); + }, this); + } + + createOrUpdate( + this, + '_throttledDispatchExpand', + parallelModel.get('axisExpandRate'), + 'fixRate' + ); + }, + + dispose: function (ecModel, api) { + each$1(this._handlers, function (handler, eventName) { + api.getZr().off(eventName, handler); + }); + this._handlers = null; + }, + + /** + * @param {Object} [opt] If null, cancle the last action triggering for debounce. + */ + _throttledDispatchExpand: function (opt) { + this._dispatchExpand(opt); + }, + + _dispatchExpand: function (opt) { + opt && this._api.dispatchAction( + extend({type: 'parallelAxisExpand'}, opt) + ); + } + +}); + +var handlers = { + + mousedown: function (e) { + if (checkTrigger(this, 'click')) { + this._mouseDownPoint = [e.offsetX, e.offsetY]; + } + }, + + mouseup: function (e) { + var mouseDownPoint = this._mouseDownPoint; + + if (checkTrigger(this, 'click') && mouseDownPoint) { + var point = [e.offsetX, e.offsetY]; + var dist = Math.pow(mouseDownPoint[0] - point[0], 2) + + Math.pow(mouseDownPoint[1] - point[1], 2); + + if (dist > CLICK_THRESHOLD) { + return; + } + + var result = this._model.coordinateSystem.getSlidedAxisExpandWindow( + [e.offsetX, e.offsetY] + ); + + result.behavior !== 'none' && this._dispatchExpand({ + axisExpandWindow: result.axisExpandWindow + }); + } + + this._mouseDownPoint = null; + }, + + mousemove: function (e) { + // Should do nothing when brushing. + if (this._mouseDownPoint || !checkTrigger(this, 'mousemove')) { + return; + } + var model = this._model; + var result = model.coordinateSystem.getSlidedAxisExpandWindow( + [e.offsetX, e.offsetY] + ); + + var behavior = result.behavior; + behavior === 'jump' && this._throttledDispatchExpand.debounceNextCall(model.get('axisExpandDebounce')); + this._throttledDispatchExpand( + behavior === 'none' + ? null // Cancle the last trigger, in case that mouse slide out of the area quickly. + : { + axisExpandWindow: result.axisExpandWindow, + // Jumping uses animation, and sliding suppresses animation. + animation: behavior === 'jump' ? null : false + } + ); + } +}; + +function checkTrigger(view, triggerOn) { + var model = view._model; + return model.get('axisExpandable') && model.get('axisExpandTriggerOn') === triggerOn; +} + +registerPreprocessor(parallelPreprocessor); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +SeriesModel.extend({ + + type: 'series.parallel', + + dependencies: ['parallel'], + + visualColorAccessPath: 'lineStyle.color', + + getInitialData: function (option, ecModel) { + var source = this.getSource(); + + setEncodeAndDimensions(source, this); + + return createListFromArray(source, this); + }, + + /** + * User can get data raw indices on 'axisAreaSelected' event received. + * + * @public + * @param {string} activeState 'active' or 'inactive' or 'normal' + * @return {Array.} Raw indices + */ + getRawIndicesByActiveState: function (activeState) { + var coordSys = this.coordinateSystem; + var data = this.getData(); + var indices = []; + + coordSys.eachActiveState(data, function (theActiveState, dataIndex) { + if (activeState === theActiveState) { + indices.push(data.getRawIndex(dataIndex)); + } + }); + + return indices; + }, + + defaultOption: { + zlevel: 0, // 一级层叠 + z: 2, // 二级层叠 + + coordinateSystem: 'parallel', + parallelIndex: 0, + + label: { + show: false + }, + + inactiveOpacity: 0.05, + activeOpacity: 1, + + lineStyle: { + width: 1, + opacity: 0.45, + type: 'solid' + }, + emphasis: { + label: { + show: false + } + }, + + progressive: 500, + smooth: false, // true | false | number + + animationEasing: 'linear' + } +}); + +function setEncodeAndDimensions(source, seriesModel) { + // The mapping of parallelAxis dimension to data dimension can + // be specified in parallelAxis.option.dim. For example, if + // parallelAxis.option.dim is 'dim3', it mapping to the third + // dimension of data. But `data.encode` has higher priority. + // Moreover, parallelModel.dimension should not be regarded as data + // dimensions. Consider dimensions = ['dim4', 'dim2', 'dim6']; + + if (source.encodeDefine) { + return; + } + + var parallelModel = seriesModel.ecModel.getComponent( + 'parallel', seriesModel.get('parallelIndex') + ); + if (!parallelModel) { + return; + } + + var encodeDefine = source.encodeDefine = createHashMap(); + each$1(parallelModel.dimensions, function (axisDim) { + var dataDimIndex = convertDimNameToNumber(axisDim); + encodeDefine.set(axisDim, dataDimIndex); + }); +} + +function convertDimNameToNumber(dimName) { + return +dimName.replace('dim', ''); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var DEFAULT_SMOOTH = 0.3; + +var ParallelView = Chart.extend({ + + type: 'parallel', + + init: function () { + + /** + * @type {module:zrender/container/Group} + * @private + */ + this._dataGroup = new Group(); + + this.group.add(this._dataGroup); + + /** + * @type {module:echarts/data/List} + */ + this._data; + + /** + * @type {boolean} + */ + this._initialized; + }, + + /** + * @override + */ + render: function (seriesModel, ecModel, api, payload) { + var dataGroup = this._dataGroup; + var data = seriesModel.getData(); + var oldData = this._data; + var coordSys = seriesModel.coordinateSystem; + var dimensions = coordSys.dimensions; + var seriesScope = makeSeriesScope$2(seriesModel); + + data.diff(oldData) + .add(add) + .update(update) + .remove(remove) + .execute(); + + function add(newDataIndex) { + var line = addEl(data, dataGroup, newDataIndex, dimensions, coordSys); + updateElCommon(line, data, newDataIndex, seriesScope); + } + + function update(newDataIndex, oldDataIndex) { + var line = oldData.getItemGraphicEl(oldDataIndex); + var points = createLinePoints(data, newDataIndex, dimensions, coordSys); + data.setItemGraphicEl(newDataIndex, line); + var animationModel = (payload && payload.animation === false) ? null : seriesModel; + updateProps(line, {shape: {points: points}}, animationModel, newDataIndex); + + updateElCommon(line, data, newDataIndex, seriesScope); + } + + function remove(oldDataIndex) { + var line = oldData.getItemGraphicEl(oldDataIndex); + dataGroup.remove(line); + } + + // First create + if (!this._initialized) { + this._initialized = true; + var clipPath = createGridClipShape$1( + coordSys, seriesModel, function () { + // Callback will be invoked immediately if there is no animation + setTimeout(function () { + dataGroup.removeClipPath(); + }); + } + ); + dataGroup.setClipPath(clipPath); + } + + this._data = data; + }, + + incrementalPrepareRender: function (seriesModel, ecModel, api) { + this._initialized = true; + this._data = null; + this._dataGroup.removeAll(); + }, + + incrementalRender: function (taskParams, seriesModel, ecModel) { + var data = seriesModel.getData(); + var coordSys = seriesModel.coordinateSystem; + var dimensions = coordSys.dimensions; + var seriesScope = makeSeriesScope$2(seriesModel); + + for (var dataIndex = taskParams.start; dataIndex < taskParams.end; dataIndex++) { + var line = addEl(data, this._dataGroup, dataIndex, dimensions, coordSys); + line.incremental = true; + updateElCommon(line, data, dataIndex, seriesScope); + } + }, + + dispose: function () {}, + + // _renderForProgressive: function (seriesModel) { + // var dataGroup = this._dataGroup; + // var data = seriesModel.getData(); + // var oldData = this._data; + // var coordSys = seriesModel.coordinateSystem; + // var dimensions = coordSys.dimensions; + // var option = seriesModel.option; + // var progressive = option.progressive; + // var smooth = option.smooth ? SMOOTH : null; + + // // In progressive animation is disabled, so use simple data diff, + // // which effects performance less. + // // (Typically performance for data with length 7000+ like: + // // simpleDiff: 60ms, addEl: 184ms, + // // in RMBP 2.4GHz intel i7, OSX 10.9 chrome 50.0.2661.102 (64-bit)) + // if (simpleDiff(oldData, data, dimensions)) { + // dataGroup.removeAll(); + // data.each(function (dataIndex) { + // addEl(data, dataGroup, dataIndex, dimensions, coordSys); + // }); + // } + + // updateElCommon(data, progressive, smooth); + + // // Consider switch between progressive and not. + // data.__plProgressive = true; + // this._data = data; + // }, + + /** + * @override + */ + remove: function () { + this._dataGroup && this._dataGroup.removeAll(); + this._data = null; + } +}); + +function createGridClipShape$1(coordSys, seriesModel, cb) { + var parallelModel = coordSys.model; + var rect = coordSys.getRect(); + var rectEl = new Rect({ + shape: { + x: rect.x, + y: rect.y, + width: rect.width, + height: rect.height + } + }); + + var dim = parallelModel.get('layout') === 'horizontal' ? 'width' : 'height'; + rectEl.setShape(dim, 0); + initProps(rectEl, { + shape: { + width: rect.width, + height: rect.height + } + }, seriesModel, cb); + return rectEl; +} + +function createLinePoints(data, dataIndex, dimensions, coordSys) { + var points = []; + for (var i = 0; i < dimensions.length; i++) { + var dimName = dimensions[i]; + var value = data.get(data.mapDimension(dimName), dataIndex); + if (!isEmptyValue(value, coordSys.getAxis(dimName).type)) { + points.push(coordSys.dataToPoint(value, dimName)); + } + } + return points; +} + +function addEl(data, dataGroup, dataIndex, dimensions, coordSys) { + var points = createLinePoints(data, dataIndex, dimensions, coordSys); + var line = new Polyline({ + shape: {points: points}, + silent: true, + z2: 10 + }); + dataGroup.add(line); + data.setItemGraphicEl(dataIndex, line); + return line; +} + +function makeSeriesScope$2(seriesModel) { + var smooth = seriesModel.get('smooth', true); + smooth === true && (smooth = DEFAULT_SMOOTH); + return { + lineStyle: seriesModel.getModel('lineStyle').getLineStyle(), + smooth: smooth != null ? smooth : DEFAULT_SMOOTH + }; +} + +function updateElCommon(el, data, dataIndex, seriesScope) { + var lineStyle = seriesScope.lineStyle; + + if (data.hasItemOption) { + var lineStyleModel = data.getItemModel(dataIndex).getModel('lineStyle'); + lineStyle = lineStyleModel.getLineStyle(); + } + + el.useStyle(lineStyle); + + var elStyle = el.style; + elStyle.fill = null; + // lineStyle.color have been set to itemVisual in module:echarts/visual/seriesColor. + elStyle.stroke = data.getItemVisual(dataIndex, 'color'); + // lineStyle.opacity have been set to itemVisual in parallelVisual. + elStyle.opacity = data.getItemVisual(dataIndex, 'opacity'); + + seriesScope.smooth && (el.shape.smooth = seriesScope.smooth); +} + +// function simpleDiff(oldData, newData, dimensions) { +// var oldLen; +// if (!oldData +// || !oldData.__plProgressive +// || (oldLen = oldData.count()) !== newData.count() +// ) { +// return true; +// } + +// var dimLen = dimensions.length; +// for (var i = 0; i < oldLen; i++) { +// for (var j = 0; j < dimLen; j++) { +// if (oldData.get(dimensions[j], i) !== newData.get(dimensions[j], i)) { +// return true; +// } +// } +// } + +// return false; +// } + +// FIXME +// 公用方法? +function isEmptyValue(val, axisType) { + return axisType === 'category' + ? val == null + : (val == null || isNaN(val)); // axisType === 'value' +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var opacityAccessPath$1 = ['lineStyle', 'normal', 'opacity']; + +var parallelVisual = { + + seriesType: 'parallel', + + reset: function (seriesModel, ecModel, api) { + + var itemStyleModel = seriesModel.getModel('itemStyle'); + var lineStyleModel = seriesModel.getModel('lineStyle'); + var globalColors = ecModel.get('color'); + + var color = lineStyleModel.get('color') + || itemStyleModel.get('color') + || globalColors[seriesModel.seriesIndex % globalColors.length]; + var inactiveOpacity = seriesModel.get('inactiveOpacity'); + var activeOpacity = seriesModel.get('activeOpacity'); + var lineStyle = seriesModel.getModel('lineStyle').getLineStyle(); + + var coordSys = seriesModel.coordinateSystem; + var data = seriesModel.getData(); + + var opacityMap = { + normal: lineStyle.opacity, + active: activeOpacity, + inactive: inactiveOpacity + }; + + data.setVisual('color', color); + + function progress(params, data) { + coordSys.eachActiveState(data, function (activeState, dataIndex) { + var opacity = opacityMap[activeState]; + if (activeState === 'normal' && data.hasItemOption) { + var itemOpacity = data.getItemModel(dataIndex).get(opacityAccessPath$1, true); + itemOpacity != null && (opacity = itemOpacity); + } + data.setItemVisual(dataIndex, 'opacity', opacity); + }, params.start, params.end); + } + + return {progress: progress}; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerVisual(parallelVisual); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var SankeySeries = SeriesModel.extend({ + + type: 'series.sankey', + + layoutInfo: null, + + levelModels: null, + + /** + * Init a graph data structure from data in option series + * + * @param {Object} option the object used to config echarts view + * @return {module:echarts/data/List} storage initial data + */ + getInitialData: function (option, ecModel) { + var links = option.edges || option.links; + var nodes = option.data || option.nodes; + var levels = option.levels; + var levelModels = this.levelModels = {}; + + for (var i = 0; i < levels.length; i++) { + if (levels[i].depth != null && levels[i].depth >= 0) { + levelModels[levels[i].depth] = new Model(levels[i], this, ecModel); + } + else { + if (__DEV__) { + throw new Error('levels[i].depth is mandatory and should be natural number'); + } + } + } + if (nodes && links) { + var graph = createGraphFromNodeEdge(nodes, links, this, true, beforeLink); + return graph.data; + } + function beforeLink(nodeData, edgeData) { + nodeData.wrapMethod('getItemModel', function (model, idx) { + model.customizeGetParent(function (path) { + var parentModel = this.parentModel; + var nodeDepth = parentModel.getData().getItemLayout(idx).depth; + var levelModel = parentModel.levelModels[nodeDepth]; + return levelModel || this.parentModel; + }); + return model; + }); + + edgeData.wrapMethod('getItemModel', function (model, idx) { + model.customizeGetParent(function (path) { + var parentModel = this.parentModel; + var edge = parentModel.getGraph().getEdgeByIndex(idx); + var depth = edge.node1.getLayout().depth; + var levelModel = parentModel.levelModels[depth]; + return levelModel || this.parentModel; + }); + return model; + }); + } + }, + + setNodePosition: function (dataIndex, localPosition) { + var dataItem = this.option.data[dataIndex]; + dataItem.localX = localPosition[0]; + dataItem.localY = localPosition[1]; + }, + + /** + * Return the graphic data structure + * + * @return {module:echarts/data/Graph} graphic data structure + */ + getGraph: function () { + return this.getData().graph; + }, + + /** + * Get edge data of graphic data structure + * + * @return {module:echarts/data/List} data structure of list + */ + getEdgeData: function () { + return this.getGraph().edgeData; + }, + + /** + * @override + */ + formatTooltip: function (dataIndex, multipleSeries, dataType) { + // dataType === 'node' or empty do not show tooltip by default + if (dataType === 'edge') { + var params = this.getDataParams(dataIndex, dataType); + var rawDataOpt = params.data; + var html = rawDataOpt.source + ' -- ' + rawDataOpt.target; + if (params.value) { + html += ' : ' + params.value; + } + return encodeHTML(html); + } + else if (dataType === 'node') { + var node = this.getGraph().getNodeByIndex(dataIndex); + var value = node.getLayout().value; + var name = this.getDataParams(dataIndex, dataType).data.name; + if (value) { + var html = name + ' : ' + value; + } + return encodeHTML(html); + } + return SankeySeries.superCall(this, 'formatTooltip', dataIndex, multipleSeries); + }, + + optionUpdated: function () { + var option = this.option; + if (option.focusNodeAdjacency === true) { + option.focusNodeAdjacency = 'allEdges'; + } + }, + + defaultOption: { + zlevel: 0, + z: 2, + + coordinateSystem: 'view', + + layout: null, + + // The position of the whole view + left: '5%', + top: '5%', + right: '20%', + bottom: '5%', + + // Value can be 'vertical' + orient: 'horizontal', + + // The dx of the node + nodeWidth: 20, + + // The vertical distance between two nodes + nodeGap: 8, + + // Control if the node can move or not + draggable: true, + + // Value can be 'inEdges', 'outEdges', 'allEdges', true (the same as 'allEdges'). + focusNodeAdjacency: false, + + // The number of iterations to change the position of the node + layoutIterations: 32, + + label: { + show: true, + position: 'right', + color: '#000', + fontSize: 12 + }, + + levels: [], + + // Value can be 'left' or 'right' + nodeAlign: 'justify', + + itemStyle: { + borderWidth: 1, + borderColor: '#333' + }, + + lineStyle: { + color: '#314656', + opacity: 0.2, + curveness: 0.5 + }, + + emphasis: { + label: { + show: true + }, + lineStyle: { + opacity: 0.6 + } + }, + + animationEasing: 'linear', + + animationDuration: 1000 + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var nodeOpacityPath$1 = ['itemStyle', 'opacity']; +var lineOpacityPath$1 = ['lineStyle', 'opacity']; + +function getItemOpacity$1(item, opacityPath) { + return item.getVisual('opacity') || item.getModel().get(opacityPath); +} + +function fadeOutItem$1(item, opacityPath, opacityRatio) { + var el = item.getGraphicEl(); + + var opacity = getItemOpacity$1(item, opacityPath); + if (opacityRatio != null) { + opacity == null && (opacity = 1); + opacity *= opacityRatio; + } + + el.downplay && el.downplay(); + el.traverse(function (child) { + if (child.type !== 'group') { + child.setStyle('opacity', opacity); + } + }); +} + +function fadeInItem$1(item, opacityPath) { + var opacity = getItemOpacity$1(item, opacityPath); + var el = item.getGraphicEl(); + + el.highlight && el.highlight(); + el.traverse(function (child) { + if (child.type !== 'group') { + child.setStyle('opacity', opacity); + } + }); +} + +var SankeyShape = extendShape({ + shape: { + x1: 0, y1: 0, + x2: 0, y2: 0, + cpx1: 0, cpy1: 0, + cpx2: 0, cpy2: 0, + extent: 0, + orient: '' + }, + + buildPath: function (ctx, shape) { + var extent = shape.extent; + ctx.moveTo(shape.x1, shape.y1); + ctx.bezierCurveTo( + shape.cpx1, shape.cpy1, + shape.cpx2, shape.cpy2, + shape.x2, shape.y2 + ); + if (shape.orient === 'vertical') { + ctx.lineTo(shape.x2 + extent, shape.y2); + ctx.bezierCurveTo( + shape.cpx2 + extent, shape.cpy2, + shape.cpx1 + extent, shape.cpy1, + shape.x1 + extent, shape.y1 + ); + } + else { + ctx.lineTo(shape.x2, shape.y2 + extent); + ctx.bezierCurveTo( + shape.cpx2, shape.cpy2 + extent, + shape.cpx1, shape.cpy1 + extent, + shape.x1, shape.y1 + extent + ); + } + ctx.closePath(); + } +}); + +extendChartView({ + + type: 'sankey', + + /** + * @private + * @type {module:echarts/chart/sankey/SankeySeries} + */ + _model: null, + + /** + * @private + * @type {boolean} + */ + _focusAdjacencyDisabled: false, + + render: function (seriesModel, ecModel, api) { + var sankeyView = this; + var graph = seriesModel.getGraph(); + var group = this.group; + var layoutInfo = seriesModel.layoutInfo; + // view width + var width = layoutInfo.width; + // view height + var height = layoutInfo.height; + var nodeData = seriesModel.getData(); + var edgeData = seriesModel.getData('edge'); + var orient = seriesModel.get('orient'); + + this._model = seriesModel; + + group.removeAll(); + + group.attr('position', [layoutInfo.x, layoutInfo.y]); + + // generate a bezire Curve for each edge + graph.eachEdge(function (edge) { + var curve = new SankeyShape(); + curve.dataIndex = edge.dataIndex; + curve.seriesIndex = seriesModel.seriesIndex; + curve.dataType = 'edge'; + var lineStyleModel = edge.getModel('lineStyle'); + var curvature = lineStyleModel.get('curveness'); + var n1Layout = edge.node1.getLayout(); + var node1Model = edge.node1.getModel(); + var dragX1 = node1Model.get('localX'); + var dragY1 = node1Model.get('localY'); + var n2Layout = edge.node2.getLayout(); + var node2Model = edge.node2.getModel(); + var dragX2 = node2Model.get('localX'); + var dragY2 = node2Model.get('localY'); + var edgeLayout = edge.getLayout(); + var x1; + var y1; + var x2; + var y2; + var cpx1; + var cpy1; + var cpx2; + var cpy2; + + curve.shape.extent = Math.max(1, edgeLayout.dy); + curve.shape.orient = orient; + + if (orient === 'vertical') { + x1 = (dragX1 != null ? dragX1 * width : n1Layout.x) + edgeLayout.sy; + y1 = (dragY1 != null ? dragY1 * height : n1Layout.y) + n1Layout.dy; + x2 = (dragX2 != null ? dragX2 * width : n2Layout.x) + edgeLayout.ty; + y2 = dragY2 != null ? dragY2 * height : n2Layout.y; + cpx1 = x1; + cpy1 = y1 * (1 - curvature) + y2 * curvature; + cpx2 = x2; + cpy2 = y1 * curvature + y2 * (1 - curvature); + } + else { + x1 = (dragX1 != null ? dragX1 * width : n1Layout.x) + n1Layout.dx; + y1 = (dragY1 != null ? dragY1 * height : n1Layout.y) + edgeLayout.sy; + x2 = dragX2 != null ? dragX2 * width : n2Layout.x; + y2 = (dragY2 != null ? dragY2 * height : n2Layout.y) + edgeLayout.ty; + cpx1 = x1 * (1 - curvature) + x2 * curvature; + cpy1 = y1; + cpx2 = x1 * curvature + x2 * (1 - curvature); + cpy2 = y2; + } + + curve.setShape({ + x1: x1, + y1: y1, + x2: x2, + y2: y2, + cpx1: cpx1, + cpy1: cpy1, + cpx2: cpx2, + cpy2: cpy2 + }); + + curve.setStyle(lineStyleModel.getItemStyle()); + // Special color, use source node color or target node color + switch (curve.style.fill) { + case 'source': + curve.style.fill = edge.node1.getVisual('color'); + break; + case 'target': + curve.style.fill = edge.node2.getVisual('color'); + break; + } + + setHoverStyle(curve, edge.getModel('emphasis.lineStyle').getItemStyle()); + + group.add(curve); + + edgeData.setItemGraphicEl(edge.dataIndex, curve); + }); + + // Generate a rect for each node + graph.eachNode(function (node) { + var layout = node.getLayout(); + var itemModel = node.getModel(); + var dragX = itemModel.get('localX'); + var dragY = itemModel.get('localY'); + var labelModel = itemModel.getModel('label'); + var labelHoverModel = itemModel.getModel('emphasis.label'); + + var rect = new Rect({ + shape: { + x: dragX != null ? dragX * width : layout.x, + y: dragY != null ? dragY * height : layout.y, + width: layout.dx, + height: layout.dy + }, + style: itemModel.getModel('itemStyle').getItemStyle() + }); + + var hoverStyle = node.getModel('emphasis.itemStyle').getItemStyle(); + + setLabelStyle( + rect.style, hoverStyle, labelModel, labelHoverModel, + { + labelFetcher: seriesModel, + labelDataIndex: node.dataIndex, + defaultText: node.id, + isRectText: true + } + ); + + rect.setStyle('fill', node.getVisual('color')); + + setHoverStyle(rect, hoverStyle); + + group.add(rect); + + nodeData.setItemGraphicEl(node.dataIndex, rect); + + rect.dataType = 'node'; + }); + + nodeData.eachItemGraphicEl(function (el, dataIndex) { + var itemModel = nodeData.getItemModel(dataIndex); + if (itemModel.get('draggable')) { + el.drift = function (dx, dy) { + sankeyView._focusAdjacencyDisabled = true; + this.shape.x += dx; + this.shape.y += dy; + this.dirty(); + api.dispatchAction({ + type: 'dragNode', + seriesId: seriesModel.id, + dataIndex: nodeData.getRawIndex(dataIndex), + localX: this.shape.x / width, + localY: this.shape.y / height + }); + }; + el.ondragend = function () { + sankeyView._focusAdjacencyDisabled = false; + }; + el.draggable = true; + el.cursor = 'move'; + } + + if (itemModel.get('focusNodeAdjacency')) { + el.off('mouseover').on('mouseover', function () { + if (!sankeyView._focusAdjacencyDisabled) { + api.dispatchAction({ + type: 'focusNodeAdjacency', + seriesId: seriesModel.id, + dataIndex: el.dataIndex + }); + } + }); + el.off('mouseout').on('mouseout', function () { + if (!sankeyView._focusAdjacencyDisabled) { + api.dispatchAction({ + type: 'unfocusNodeAdjacency', + seriesId: seriesModel.id + }); + } + }); + } + }); + + edgeData.eachItemGraphicEl(function (el, dataIndex) { + var edgeModel = edgeData.getItemModel(dataIndex); + if (edgeModel.get('focusNodeAdjacency')) { + el.off('mouseover').on('mouseover', function () { + if (!sankeyView._focusAdjacencyDisabled) { + api.dispatchAction({ + type: 'focusNodeAdjacency', + seriesId: seriesModel.id, + edgeDataIndex: el.dataIndex + }); + } + }); + el.off('mouseout').on('mouseout', function () { + if (!sankeyView._focusAdjacencyDisabled) { + api.dispatchAction({ + type: 'unfocusNodeAdjacency', + seriesId: seriesModel.id + }); + } + }); + } + }); + + if (!this._data && seriesModel.get('animation')) { + group.setClipPath(createGridClipShape$2(group.getBoundingRect(), seriesModel, function () { + group.removeClipPath(); + })); + } + + this._data = seriesModel.getData(); + }, + + dispose: function () {}, + + focusNodeAdjacency: function (seriesModel, ecModel, api, payload) { + var data = this._model.getData(); + var graph = data.graph; + var dataIndex = payload.dataIndex; + var itemModel = data.getItemModel(dataIndex); + var edgeDataIndex = payload.edgeDataIndex; + + if (dataIndex == null && edgeDataIndex == null) { + return; + } + var node = graph.getNodeByIndex(dataIndex); + var edge = graph.getEdgeByIndex(edgeDataIndex); + + graph.eachNode(function (node) { + fadeOutItem$1(node, nodeOpacityPath$1, 0.1); + }); + graph.eachEdge(function (edge) { + fadeOutItem$1(edge, lineOpacityPath$1, 0.1); + }); + + if (node) { + fadeInItem$1(node, nodeOpacityPath$1); + var focusNodeAdj = itemModel.get('focusNodeAdjacency'); + if (focusNodeAdj === 'outEdges') { + each$1(node.outEdges, function (edge) { + if (edge.dataIndex < 0) { + return; + } + fadeInItem$1(edge, lineOpacityPath$1); + fadeInItem$1(edge.node2, nodeOpacityPath$1); + }); + } + else if (focusNodeAdj === 'inEdges') { + each$1(node.inEdges, function (edge) { + if (edge.dataIndex < 0) { + return; + } + fadeInItem$1(edge, lineOpacityPath$1); + fadeInItem$1(edge.node1, nodeOpacityPath$1); + }); + } + else if (focusNodeAdj === 'allEdges') { + each$1(node.edges, function (edge) { + if (edge.dataIndex < 0) { + return; + } + fadeInItem$1(edge, lineOpacityPath$1); + fadeInItem$1(edge.node1, nodeOpacityPath$1); + fadeInItem$1(edge.node2, nodeOpacityPath$1); + }); + } + } + if (edge) { + fadeInItem$1(edge, lineOpacityPath$1); + fadeInItem$1(edge.node1, nodeOpacityPath$1); + fadeInItem$1(edge.node2, nodeOpacityPath$1); + } + }, + + unfocusNodeAdjacency: function (seriesModel, ecModel, api, payload) { + var graph = this._model.getGraph(); + + graph.eachNode(function (node) { + fadeOutItem$1(node, nodeOpacityPath$1); + }); + graph.eachEdge(function (edge) { + fadeOutItem$1(edge, lineOpacityPath$1); + }); + } +}); + +// Add animation to the view +function createGridClipShape$2(rect, seriesModel, cb) { + var rectEl = new Rect({ + shape: { + x: rect.x - 10, + y: rect.y - 10, + width: 0, + height: rect.height + 20 + } + }); + initProps(rectEl, { + shape: { + width: rect.width + 20, + height: rect.height + 20 + } + }, seriesModel, cb); + + return rectEl; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerAction({ + type: 'dragNode', + event: 'dragNode', + // here can only use 'update' now, other value is not support in echarts. + update: 'update' +}, function (payload, ecModel) { + ecModel.eachComponent({mainType: 'series', subType: 'sankey', query: payload}, function (seriesModel) { + seriesModel.setNodePosition(payload.dataIndex, [payload.localX, payload.localY]); + }); +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var sankeyLayout = function (ecModel, api, payload) { + + ecModel.eachSeriesByType('sankey', function (seriesModel) { + + var nodeWidth = seriesModel.get('nodeWidth'); + var nodeGap = seriesModel.get('nodeGap'); + + var layoutInfo = getViewRect$3(seriesModel, api); + + seriesModel.layoutInfo = layoutInfo; + + var width = layoutInfo.width; + var height = layoutInfo.height; + + var graph = seriesModel.getGraph(); + + var nodes = graph.nodes; + var edges = graph.edges; + + computeNodeValues(nodes); + + var filteredNodes = filter(nodes, function (node) { + return node.getLayout().value === 0; + }); + + var iterations = filteredNodes.length !== 0 ? 0 : seriesModel.get('layoutIterations'); + + var orient = seriesModel.get('orient'); + + var nodeAlign = seriesModel.get('nodeAlign'); + + layoutSankey(nodes, edges, nodeWidth, nodeGap, width, height, iterations, orient, nodeAlign); + }); +}; + +/** + * Get the layout position of the whole view + * + * @param {module:echarts/model/Series} seriesModel the model object of sankey series + * @param {module:echarts/ExtensionAPI} api provide the API list that the developer can call + * @return {module:zrender/core/BoundingRect} size of rect to draw the sankey view + */ +function getViewRect$3(seriesModel, api) { + return getLayoutRect( + seriesModel.getBoxLayoutParams(), { + width: api.getWidth(), + height: api.getHeight() + } + ); +} + +function layoutSankey(nodes, edges, nodeWidth, nodeGap, width, height, iterations, orient, nodeAlign) { + computeNodeBreadths(nodes, edges, nodeWidth, width, height, orient, nodeAlign); + computeNodeDepths(nodes, edges, height, width, nodeGap, iterations, orient); + computeEdgeDepths(nodes, orient); +} + +/** + * Compute the value of each node by summing the associated edge's value + * + * @param {module:echarts/data/Graph~Node} nodes node of sankey view + */ +function computeNodeValues(nodes) { + each$1(nodes, function (node) { + var value1 = sum(node.outEdges, getEdgeValue); + var value2 = sum(node.inEdges, getEdgeValue); + var value = Math.max(value1, value2); + node.setLayout({value: value}, true); + }); +} + +/** + * Compute the x-position for each node. + * + * Here we use Kahn algorithm to detect cycle when we traverse + * the node to computer the initial x position. + * + * @param {module:echarts/data/Graph~Node} nodes node of sankey view + * @param {number} nodeWidth the dx of the node + * @param {number} width the whole width of the area to draw the view + */ +function computeNodeBreadths(nodes, edges, nodeWidth, width, height, orient, nodeAlign) { + // Used to mark whether the edge is deleted. if it is deleted, + // the value is 0, otherwise it is 1. + var remainEdges = []; + // Storage each node's indegree. + var indegreeArr = []; + //Used to storage the node with indegree is equal to 0. + var zeroIndegrees = []; + var nextTargetNode = []; + var x = 0; + var kx = 0; + + for (var i = 0; i < edges.length; i++) { + remainEdges[i] = 1; + } + for (i = 0; i < nodes.length; i++) { + indegreeArr[i] = nodes[i].inEdges.length; + if (indegreeArr[i] === 0) { + zeroIndegrees.push(nodes[i]); + } + } + var maxNodeDepth = -1; + // Traversing nodes using topological sorting to calculate the + // horizontal(if orient === 'horizontal') or vertical(if orient === 'vertical') + // position of the nodes. + while (zeroIndegrees.length) { + for (var idx = 0; idx < zeroIndegrees.length; idx++) { + var node = zeroIndegrees[idx]; + var item = node.hostGraph.data.getRawDataItem(node.dataIndex); + var isItemDepth = item.depth != null && item.depth >= 0; + if (isItemDepth && item.depth > maxNodeDepth) { + maxNodeDepth = item.depth; + } + node.setLayout({depth: isItemDepth ? item.depth : x}, true); + orient === 'vertical' + ? node.setLayout({dy: nodeWidth}, true) + : node.setLayout({dx: nodeWidth}, true); + + for (var edgeIdx = 0; edgeIdx < node.outEdges.length; edgeIdx++) { + var edge = node.outEdges[edgeIdx]; + var indexEdge = edges.indexOf(edge); + remainEdges[indexEdge] = 0; + var targetNode = edge.node2; + var nodeIndex = nodes.indexOf(targetNode); + if (--indegreeArr[nodeIndex] === 0 && nextTargetNode.indexOf(targetNode) < 0) { + nextTargetNode.push(targetNode); + } + } + } + ++x; + zeroIndegrees = nextTargetNode; + nextTargetNode = []; + } + + for (i = 0; i < remainEdges.length; i++) { + if (remainEdges[i] === 1) { + throw new Error('Sankey is a DAG, the original data has cycle!'); + } + } + + var maxDepth = maxNodeDepth > x - 1 ? maxNodeDepth : x - 1; + if (nodeAlign && nodeAlign !== 'left') { + adjustNodeWithNodeAlign(nodes, nodeAlign, orient, maxDepth); + } + var kx = orient === 'vertical' + ? (height - nodeWidth) / maxDepth + : (width - nodeWidth) / maxDepth; + + scaleNodeBreadths(nodes, kx, orient); +} + +function isNodeDepth(node) { + var item = node.hostGraph.data.getRawDataItem(node.dataIndex); + return item.depth != null && item.depth >= 0; +} + +function adjustNodeWithNodeAlign(nodes, nodeAlign, orient, maxDepth) { + if (nodeAlign === 'right') { + var nextSourceNode = []; + var remainNodes = nodes; + var nodeHeight = 0; + while (remainNodes.length) { + for (var i = 0; i < remainNodes.length; i++) { + var node = remainNodes[i]; + node.setLayout({skNodeHeight: nodeHeight}, true); + for (var j = 0; j < node.inEdges.length; j++) { + var edge = node.inEdges[j]; + if (nextSourceNode.indexOf(edge.node1) < 0) { + nextSourceNode.push(edge.node1); + } + } + } + remainNodes = nextSourceNode; + nextSourceNode = []; + ++nodeHeight; + } + + each$1(nodes, function (node) { + if (!isNodeDepth(node)) { + node.setLayout({depth: Math.max(0, maxDepth - node.getLayout().skNodeHeight)}, true); + } + }); + } + else if (nodeAlign === 'justify') { + moveSinksRight(nodes, maxDepth); + } +} + +/** + * All the node without outEgdes are assigned maximum x-position and + * be aligned in the last column. + * + * @param {module:echarts/data/Graph~Node} nodes. node of sankey view. + * @param {number} maxDepth. use to assign to node without outEdges as x-position. + */ +function moveSinksRight(nodes, maxDepth) { + each$1(nodes, function (node) { + if (!isNodeDepth(node) && !node.outEdges.length) { + node.setLayout({depth: maxDepth}, true); + } + }); +} + +/** + * Scale node x-position to the width + * + * @param {module:echarts/data/Graph~Node} nodes node of sankey view + * @param {number} kx multiple used to scale nodes + */ +function scaleNodeBreadths(nodes, kx, orient) { + each$1(nodes, function (node) { + var nodeDepth = node.getLayout().depth * kx; + orient === 'vertical' + ? node.setLayout({y: nodeDepth}, true) + : node.setLayout({x: nodeDepth}, true); + }); +} + +/** + * Using Gauss-Seidel iterations method to compute the node depth(y-position) + * + * @param {module:echarts/data/Graph~Node} nodes node of sankey view + * @param {module:echarts/data/Graph~Edge} edges edge of sankey view + * @param {number} height the whole height of the area to draw the view + * @param {number} nodeGap the vertical distance between two nodes + * in the same column. + * @param {number} iterations the number of iterations for the algorithm + */ +function computeNodeDepths(nodes, edges, height, width, nodeGap, iterations, orient) { + var nodesByBreadth = prepareNodesByBreadth(nodes, orient); + + initializeNodeDepth(nodesByBreadth, edges, height, width, nodeGap, orient); + resolveCollisions(nodesByBreadth, nodeGap, height, width, orient); + + for (var alpha = 1; iterations > 0; iterations--) { + // 0.99 is a experience parameter, ensure that each iterations of + // changes as small as possible. + alpha *= 0.99; + relaxRightToLeft(nodesByBreadth, alpha, orient); + resolveCollisions(nodesByBreadth, nodeGap, height, width, orient); + relaxLeftToRight(nodesByBreadth, alpha, orient); + resolveCollisions(nodesByBreadth, nodeGap, height, width, orient); + } +} + +function prepareNodesByBreadth(nodes, orient) { + var nodesByBreadth = []; + var keyAttr = orient === 'vertical' ? 'y' : 'x'; + + var groupResult = groupData(nodes, function (node) { + return node.getLayout()[keyAttr]; + }); + groupResult.keys.sort(function (a, b) { + return a - b; + }); + each$1(groupResult.keys, function (key) { + nodesByBreadth.push(groupResult.buckets.get(key)); + }); + + return nodesByBreadth; +} + +/** + * Compute the original y-position for each node + * + * @param {module:echarts/data/Graph~Node} nodes node of sankey view + * @param {Array.>} nodesByBreadth + * group by the array of all sankey nodes based on the nodes x-position. + * @param {module:echarts/data/Graph~Edge} edges edge of sankey view + * @param {number} height the whole height of the area to draw the view + * @param {number} nodeGap the vertical distance between two nodes + */ +function initializeNodeDepth(nodesByBreadth, edges, height, width, nodeGap, orient) { + var minKy = Infinity; + each$1(nodesByBreadth, function (nodes) { + var n = nodes.length; + var sum = 0; + each$1(nodes, function (node) { + sum += node.getLayout().value; + }); + var ky = orient === 'vertical' + ? (width - (n - 1) * nodeGap) / sum + : (height - (n - 1) * nodeGap) / sum; + + if (ky < minKy) { + minKy = ky; + } + }); + + each$1(nodesByBreadth, function (nodes) { + each$1(nodes, function (node, i) { + var nodeDy = node.getLayout().value * minKy; + if (orient === 'vertical') { + node.setLayout({x: i}, true); + node.setLayout({dx: nodeDy}, true); + } + else { + node.setLayout({y: i}, true); + node.setLayout({dy: nodeDy}, true); + } + }); + }); + + each$1(edges, function (edge) { + var edgeDy = +edge.getValue() * minKy; + edge.setLayout({dy: edgeDy}, true); + }); +} + +/** + * Resolve the collision of initialized depth (y-position) + * + * @param {Array.>} nodesByBreadth + * group by the array of all sankey nodes based on the nodes x-position. + * @param {number} nodeGap the vertical distance between two nodes + * @param {number} height the whole height of the area to draw the view + */ +function resolveCollisions(nodesByBreadth, nodeGap, height, width, orient) { + var keyAttr = orient === 'vertical' ? 'x' : 'y'; + each$1(nodesByBreadth, function (nodes) { + nodes.sort(function (a, b) { + return a.getLayout()[keyAttr] - b.getLayout()[keyAttr]; + }); + var nodeX; + var node; + var dy; + var y0 = 0; + var n = nodes.length; + var nodeDyAttr = orient === 'vertical' ? 'dx' : 'dy'; + for (var i = 0; i < n; i++) { + node = nodes[i]; + dy = y0 - node.getLayout()[keyAttr]; + if (dy > 0) { + nodeX = node.getLayout()[keyAttr] + dy; + orient === 'vertical' + ? node.setLayout({x: nodeX}, true) + : node.setLayout({y: nodeX}, true); + } + y0 = node.getLayout()[keyAttr] + node.getLayout()[nodeDyAttr] + nodeGap; + } + var viewWidth = orient === 'vertical' ? width : height; + // If the bottommost node goes outside the bounds, push it back up + dy = y0 - nodeGap - viewWidth; + if (dy > 0) { + nodeX = node.getLayout()[keyAttr] - dy; + orient === 'vertical' + ? node.setLayout({x: nodeX}, true) + : node.setLayout({y: nodeX}, true); + + y0 = nodeX; + for (i = n - 2; i >= 0; --i) { + node = nodes[i]; + dy = node.getLayout()[keyAttr] + node.getLayout()[nodeDyAttr] + nodeGap - y0; + if (dy > 0) { + nodeX = node.getLayout()[keyAttr] - dy; + orient === 'vertical' + ? node.setLayout({x: nodeX}, true) + : node.setLayout({y: nodeX}, true); + } + y0 = node.getLayout()[keyAttr]; + } + } + }); +} + +/** + * Change the y-position of the nodes, except most the right side nodes + * + * @param {Array.>} nodesByBreadth + * group by the array of all sankey nodes based on the node x-position. + * @param {number} alpha parameter used to adjust the nodes y-position + */ +function relaxRightToLeft(nodesByBreadth, alpha, orient) { + each$1(nodesByBreadth.slice().reverse(), function (nodes) { + each$1(nodes, function (node) { + if (node.outEdges.length) { + var y = sum(node.outEdges, weightedTarget, orient) + / sum(node.outEdges, getEdgeValue, orient); + if (orient === 'vertical') { + var nodeX = node.getLayout().x + (y - center$1(node, orient)) * alpha; + node.setLayout({x: nodeX}, true); + } + else { + var nodeY = node.getLayout().y + (y - center$1(node, orient)) * alpha; + node.setLayout({y: nodeY}, true); + } + } + }); + }); +} + +function weightedTarget(edge, orient) { + return center$1(edge.node2, orient) * edge.getValue(); +} + +function weightedSource(edge, orient) { + return center$1(edge.node1, orient) * edge.getValue(); +} + +function center$1(node, orient) { + return orient === 'vertical' + ? node.getLayout().x + node.getLayout().dx / 2 + : node.getLayout().y + node.getLayout().dy / 2; +} + +function getEdgeValue(edge) { + return edge.getValue(); +} + +function sum(array, f, orient) { + var sum = 0; + var len = array.length; + var i = -1; + while (++i < len) { + var value = +f.call(array, array[i], orient); + if (!isNaN(value)) { + sum += value; + } + } + return sum; +} + +/** + * Change the y-position of the nodes, except most the left side nodes + * + * @param {Array.>} nodesByBreadth + * group by the array of all sankey nodes based on the node x-position. + * @param {number} alpha parameter used to adjust the nodes y-position + */ +function relaxLeftToRight(nodesByBreadth, alpha, orient) { + each$1(nodesByBreadth, function (nodes) { + each$1(nodes, function (node) { + if (node.inEdges.length) { + var y = sum(node.inEdges, weightedSource, orient) + / sum(node.inEdges, getEdgeValue, orient); + if (orient === 'vertical') { + var nodeX = node.getLayout().x + (y - center$1(node, orient)) * alpha; + node.setLayout({x: nodeX}, true); + } + else { + var nodeY = node.getLayout().y + (y - center$1(node, orient)) * alpha; + node.setLayout({y: nodeY}, true); + } + } + }); + }); +} + +/** + * Compute the depth(y-position) of each edge + * + * @param {module:echarts/data/Graph~Node} nodes node of sankey view + */ +function computeEdgeDepths(nodes, orient) { + var keyAttr = orient === 'vertical' ? 'x' : 'y'; + each$1(nodes, function (node) { + node.outEdges.sort(function (a, b) { + return a.node2.getLayout()[keyAttr] - b.node2.getLayout()[keyAttr]; + }); + node.inEdges.sort(function (a, b) { + return a.node1.getLayout()[keyAttr] - b.node1.getLayout()[keyAttr]; + }); + }); + each$1(nodes, function (node) { + var sy = 0; + var ty = 0; + each$1(node.outEdges, function (edge) { + edge.setLayout({sy: sy}, true); + sy += edge.getLayout().dy; + }); + each$1(node.inEdges, function (edge) { + edge.setLayout({ty: ty}, true); + ty += edge.getLayout().dy; + }); + }); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var sankeyVisual = function (ecModel, payload) { + ecModel.eachSeriesByType('sankey', function (seriesModel) { + var graph = seriesModel.getGraph(); + var nodes = graph.nodes; + if (nodes.length) { + var minValue = Infinity; + var maxValue = -Infinity; + each$1(nodes, function (node) { + var nodeValue = node.getLayout().value; + if (nodeValue < minValue) { + minValue = nodeValue; + } + if (nodeValue > maxValue) { + maxValue = nodeValue; + } + }); + + each$1(nodes, function (node) { + var mapping = new VisualMapping({ + type: 'color', + mappingMethod: 'linear', + dataExtent: [minValue, maxValue], + visual: seriesModel.get('color') + }); + + var mapValueToColor = mapping.mapValueToVisual(node.getLayout().value); + var customColor = node.getModel().get('itemStyle.color'); + customColor != null + ? node.setVisual('color', customColor) + : node.setVisual('color', mapValueToColor); + }); + } + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerLayout(sankeyLayout); +registerVisual(sankeyVisual); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var seriesModelMixin = { + + /** + * @private + * @type {string} + */ + _baseAxisDim: null, + + /** + * @override + */ + getInitialData: function (option, ecModel) { + // When both types of xAxis and yAxis are 'value', layout is + // needed to be specified by user. Otherwise, layout can be + // judged by which axis is category. + + var ordinalMeta; + + var xAxisModel = ecModel.getComponent('xAxis', this.get('xAxisIndex')); + var yAxisModel = ecModel.getComponent('yAxis', this.get('yAxisIndex')); + var xAxisType = xAxisModel.get('type'); + var yAxisType = yAxisModel.get('type'); + var addOrdinal; + + // FIXME + // 考虑时间轴 + + if (xAxisType === 'category') { + option.layout = 'horizontal'; + ordinalMeta = xAxisModel.getOrdinalMeta(); + addOrdinal = true; + } + else if (yAxisType === 'category') { + option.layout = 'vertical'; + ordinalMeta = yAxisModel.getOrdinalMeta(); + addOrdinal = true; + } + else { + option.layout = option.layout || 'horizontal'; + } + + var coordDims = ['x', 'y']; + var baseAxisDimIndex = option.layout === 'horizontal' ? 0 : 1; + var baseAxisDim = this._baseAxisDim = coordDims[baseAxisDimIndex]; + var otherAxisDim = coordDims[1 - baseAxisDimIndex]; + var axisModels = [xAxisModel, yAxisModel]; + var baseAxisType = axisModels[baseAxisDimIndex].get('type'); + var otherAxisType = axisModels[1 - baseAxisDimIndex].get('type'); + var data = option.data; + + // ??? FIXME make a stage to perform data transfrom. + // MUST create a new data, consider setOption({}) again. + if (data && addOrdinal) { + var newOptionData = []; + each$1(data, function (item, index) { + var newItem; + if (item.value && isArray(item.value)) { + newItem = item.value.slice(); + item.value.unshift(index); + } + else if (isArray(item)) { + newItem = item.slice(); + item.unshift(index); + } + else { + newItem = item; + } + newOptionData.push(newItem); + }); + option.data = newOptionData; + } + + var defaultValueDimensions = this.defaultValueDimensions; + + return createListSimply( + this, + { + coordDimensions: [{ + name: baseAxisDim, + type: getDimensionTypeByAxis(baseAxisType), + ordinalMeta: ordinalMeta, + otherDims: { + tooltip: false, + itemName: 0 + }, + dimsDef: ['base'] + }, { + name: otherAxisDim, + type: getDimensionTypeByAxis(otherAxisType), + dimsDef: defaultValueDimensions.slice() + }], + dimensionsCount: defaultValueDimensions.length + 1 + } + ); + }, + + /** + * If horizontal, base axis is x, otherwise y. + * @override + */ + getBaseAxis: function () { + var dim = this._baseAxisDim; + return this.ecModel.getComponent(dim + 'Axis', this.get(dim + 'AxisIndex')).axis; + } + +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var BoxplotSeries = SeriesModel.extend({ + + type: 'series.boxplot', + + dependencies: ['xAxis', 'yAxis', 'grid'], + + // TODO + // box width represents group size, so dimension should have 'size'. + + /** + * @see + * The meanings of 'min' and 'max' depend on user, + * and echarts do not need to know it. + * @readOnly + */ + defaultValueDimensions: [ + {name: 'min', defaultTooltip: true}, + {name: 'Q1', defaultTooltip: true}, + {name: 'median', defaultTooltip: true}, + {name: 'Q3', defaultTooltip: true}, + {name: 'max', defaultTooltip: true} + ], + + /** + * @type {Array.} + * @readOnly + */ + dimensions: null, + + /** + * @override + */ + defaultOption: { + zlevel: 0, // 一级层叠 + z: 2, // 二级层叠 + coordinateSystem: 'cartesian2d', + legendHoverLink: true, + + hoverAnimation: true, + + // xAxisIndex: 0, + // yAxisIndex: 0, + + layout: null, // 'horizontal' or 'vertical' + boxWidth: [7, 50], // [min, max] can be percent of band width. + + itemStyle: { + color: '#fff', + borderWidth: 1 + }, + + emphasis: { + itemStyle: { + borderWidth: 2, + shadowBlur: 5, + shadowOffsetX: 2, + shadowOffsetY: 2, + shadowColor: 'rgba(0,0,0,0.4)' + } + }, + + animationEasing: 'elasticOut', + animationDuration: 800 + } +}); + +mixin(BoxplotSeries, seriesModelMixin, true); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Update common properties +var NORMAL_ITEM_STYLE_PATH = ['itemStyle']; +var EMPHASIS_ITEM_STYLE_PATH = ['emphasis', 'itemStyle']; + +var BoxplotView = Chart.extend({ + + type: 'boxplot', + + render: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + var group = this.group; + var oldData = this._data; + + // There is no old data only when first rendering or switching from + // stream mode to normal mode, where previous elements should be removed. + if (!this._data) { + group.removeAll(); + } + + var constDim = seriesModel.get('layout') === 'horizontal' ? 1 : 0; + + data.diff(oldData) + .add(function (newIdx) { + if (data.hasValue(newIdx)) { + var itemLayout = data.getItemLayout(newIdx); + var symbolEl = createNormalBox(itemLayout, data, newIdx, constDim, true); + data.setItemGraphicEl(newIdx, symbolEl); + group.add(symbolEl); + } + }) + .update(function (newIdx, oldIdx) { + var symbolEl = oldData.getItemGraphicEl(oldIdx); + + // Empty data + if (!data.hasValue(newIdx)) { + group.remove(symbolEl); + return; + } + + var itemLayout = data.getItemLayout(newIdx); + if (!symbolEl) { + symbolEl = createNormalBox(itemLayout, data, newIdx, constDim); + } + else { + updateNormalBoxData(itemLayout, symbolEl, data, newIdx); + } + + group.add(symbolEl); + + data.setItemGraphicEl(newIdx, symbolEl); + }) + .remove(function (oldIdx) { + var el = oldData.getItemGraphicEl(oldIdx); + el && group.remove(el); + }) + .execute(); + + this._data = data; + }, + + remove: function (ecModel) { + var group = this.group; + var data = this._data; + this._data = null; + data && data.eachItemGraphicEl(function (el) { + el && group.remove(el); + }); + }, + + dispose: noop + +}); + + +var BoxPath = Path.extend({ + + type: 'boxplotBoxPath', + + shape: {}, + + buildPath: function (ctx, shape) { + var ends = shape.points; + + var i = 0; + ctx.moveTo(ends[i][0], ends[i][1]); + i++; + for (; i < 4; i++) { + ctx.lineTo(ends[i][0], ends[i][1]); + } + ctx.closePath(); + + for (; i < ends.length; i++) { + ctx.moveTo(ends[i][0], ends[i][1]); + i++; + ctx.lineTo(ends[i][0], ends[i][1]); + } + } +}); + + +function createNormalBox(itemLayout, data, dataIndex, constDim, isInit) { + var ends = itemLayout.ends; + + var el = new BoxPath({ + shape: { + points: isInit + ? transInit(ends, constDim, itemLayout) + : ends + } + }); + + updateNormalBoxData(itemLayout, el, data, dataIndex, isInit); + + return el; +} + +function updateNormalBoxData(itemLayout, el, data, dataIndex, isInit) { + var seriesModel = data.hostModel; + var updateMethod = graphic[isInit ? 'initProps' : 'updateProps']; + + updateMethod( + el, + {shape: {points: itemLayout.ends}}, + seriesModel, + dataIndex + ); + + var itemModel = data.getItemModel(dataIndex); + var normalItemStyleModel = itemModel.getModel(NORMAL_ITEM_STYLE_PATH); + var borderColor = data.getItemVisual(dataIndex, 'color'); + + // Exclude borderColor. + var itemStyle = normalItemStyleModel.getItemStyle(['borderColor']); + itemStyle.stroke = borderColor; + itemStyle.strokeNoScale = true; + el.useStyle(itemStyle); + + el.z2 = 100; + + var hoverStyle = itemModel.getModel(EMPHASIS_ITEM_STYLE_PATH).getItemStyle(); + setHoverStyle(el, hoverStyle); +} + +function transInit(points, dim, itemLayout) { + return map(points, function (point) { + point = point.slice(); + point[dim] = itemLayout.initBaseline; + return point; + }); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var borderColorQuery = ['itemStyle', 'borderColor']; + +var boxplotVisual = function (ecModel, api) { + + var globalColors = ecModel.get('color'); + + ecModel.eachRawSeriesByType('boxplot', function (seriesModel) { + + var defaulColor = globalColors[seriesModel.seriesIndex % globalColors.length]; + var data = seriesModel.getData(); + + data.setVisual({ + legendSymbol: 'roundRect', + // Use name 'color' but not 'borderColor' for legend usage and + // visual coding from other component like dataRange. + color: seriesModel.get(borderColorQuery) || defaulColor + }); + + // Only visible series has each data be visual encoded + if (!ecModel.isSeriesFiltered(seriesModel)) { + data.each(function (idx) { + var itemModel = data.getItemModel(idx); + data.setItemVisual( + idx, + {color: itemModel.get(borderColorQuery, true)} + ); + }); + } + }); + +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var each$13 = each$1; + +var boxplotLayout = function (ecModel) { + + var groupResult = groupSeriesByAxis(ecModel); + + each$13(groupResult, function (groupItem) { + var seriesModels = groupItem.seriesModels; + + if (!seriesModels.length) { + return; + } + + calculateBase(groupItem); + + each$13(seriesModels, function (seriesModel, idx) { + layoutSingleSeries( + seriesModel, + groupItem.boxOffsetList[idx], + groupItem.boxWidthList[idx] + ); + }); + }); +}; + +/** + * Group series by axis. + */ +function groupSeriesByAxis(ecModel) { + var result = []; + var axisList = []; + + ecModel.eachSeriesByType('boxplot', function (seriesModel) { + var baseAxis = seriesModel.getBaseAxis(); + var idx = indexOf(axisList, baseAxis); + + if (idx < 0) { + idx = axisList.length; + axisList[idx] = baseAxis; + result[idx] = {axis: baseAxis, seriesModels: []}; + } + + result[idx].seriesModels.push(seriesModel); + }); + + return result; +} + +/** + * Calculate offset and box width for each series. + */ +function calculateBase(groupItem) { + var extent; + var baseAxis = groupItem.axis; + var seriesModels = groupItem.seriesModels; + var seriesCount = seriesModels.length; + + var boxWidthList = groupItem.boxWidthList = []; + var boxOffsetList = groupItem.boxOffsetList = []; + var boundList = []; + + var bandWidth; + if (baseAxis.type === 'category') { + bandWidth = baseAxis.getBandWidth(); + } + else { + var maxDataCount = 0; + each$13(seriesModels, function (seriesModel) { + maxDataCount = Math.max(maxDataCount, seriesModel.getData().count()); + }); + extent = baseAxis.getExtent(), + Math.abs(extent[1] - extent[0]) / maxDataCount; + } + + each$13(seriesModels, function (seriesModel) { + var boxWidthBound = seriesModel.get('boxWidth'); + if (!isArray(boxWidthBound)) { + boxWidthBound = [boxWidthBound, boxWidthBound]; + } + boundList.push([ + parsePercent$1(boxWidthBound[0], bandWidth) || 0, + parsePercent$1(boxWidthBound[1], bandWidth) || 0 + ]); + }); + + var availableWidth = bandWidth * 0.8 - 2; + var boxGap = availableWidth / seriesCount * 0.3; + var boxWidth = (availableWidth - boxGap * (seriesCount - 1)) / seriesCount; + var base = boxWidth / 2 - availableWidth / 2; + + each$13(seriesModels, function (seriesModel, idx) { + boxOffsetList.push(base); + base += boxGap + boxWidth; + + boxWidthList.push( + Math.min(Math.max(boxWidth, boundList[idx][0]), boundList[idx][1]) + ); + }); +} + +/** + * Calculate points location for each series. + */ +function layoutSingleSeries(seriesModel, offset, boxWidth) { + var coordSys = seriesModel.coordinateSystem; + var data = seriesModel.getData(); + var halfWidth = boxWidth / 2; + var cDimIdx = seriesModel.get('layout') === 'horizontal' ? 0 : 1; + var vDimIdx = 1 - cDimIdx; + var coordDims = ['x', 'y']; + var cDim = data.mapDimension(coordDims[cDimIdx]); + var vDims = data.mapDimension(coordDims[vDimIdx], true); + + if (cDim == null || vDims.length < 5) { + return; + } + + for (var dataIndex = 0; dataIndex < data.count(); dataIndex++) { + var axisDimVal = data.get(cDim, dataIndex); + + var median = getPoint(axisDimVal, vDims[2], dataIndex); + var end1 = getPoint(axisDimVal, vDims[0], dataIndex); + var end2 = getPoint(axisDimVal, vDims[1], dataIndex); + var end4 = getPoint(axisDimVal, vDims[3], dataIndex); + var end5 = getPoint(axisDimVal, vDims[4], dataIndex); + + var ends = []; + addBodyEnd(ends, end2, 0); + addBodyEnd(ends, end4, 1); + + ends.push(end1, end2, end5, end4); + layEndLine(ends, end1); + layEndLine(ends, end5); + layEndLine(ends, median); + + data.setItemLayout(dataIndex, { + initBaseline: median[vDimIdx], + ends: ends + }); + } + + function getPoint(axisDimVal, dimIdx, dataIndex) { + var val = data.get(dimIdx, dataIndex); + var p = []; + p[cDimIdx] = axisDimVal; + p[vDimIdx] = val; + var point; + if (isNaN(axisDimVal) || isNaN(val)) { + point = [NaN, NaN]; + } + else { + point = coordSys.dataToPoint(p); + point[cDimIdx] += offset; + } + return point; + } + + function addBodyEnd(ends, point, start) { + var point1 = point.slice(); + var point2 = point.slice(); + point1[cDimIdx] += halfWidth; + point2[cDimIdx] -= halfWidth; + start + ? ends.push(point1, point2) + : ends.push(point2, point1); + } + + function layEndLine(ends, endCenter) { + var from = endCenter.slice(); + var to = endCenter.slice(); + from[cDimIdx] -= halfWidth; + to[cDimIdx] += halfWidth; + ends.push(from, to); + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerVisual(boxplotVisual); +registerLayout(boxplotLayout); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var CandlestickSeries = SeriesModel.extend({ + + type: 'series.candlestick', + + dependencies: ['xAxis', 'yAxis', 'grid'], + + /** + * @readOnly + */ + defaultValueDimensions: [ + {name: 'open', defaultTooltip: true}, + {name: 'close', defaultTooltip: true}, + {name: 'lowest', defaultTooltip: true}, + {name: 'highest', defaultTooltip: true} + ], + + /** + * @type {Array.} + * @readOnly + */ + dimensions: null, + + /** + * @override + */ + defaultOption: { + zlevel: 0, + z: 2, + coordinateSystem: 'cartesian2d', + legendHoverLink: true, + + hoverAnimation: true, + + // xAxisIndex: 0, + // yAxisIndex: 0, + + layout: null, // 'horizontal' or 'vertical' + + itemStyle: { + color: '#c23531', // 阳线 positive + color0: '#314656', // 阴线 negative '#c23531', '#314656' + borderWidth: 1, + // FIXME + // ec2中使用的是lineStyle.color 和 lineStyle.color0 + borderColor: '#c23531', + borderColor0: '#314656' + }, + + emphasis: { + itemStyle: { + borderWidth: 2 + } + }, + + barMaxWidth: null, + barMinWidth: null, + barWidth: null, + + large: true, + largeThreshold: 600, + + progressive: 3e3, + progressiveThreshold: 1e4, + progressiveChunkMode: 'mod', + + animationUpdate: false, + animationEasing: 'linear', + animationDuration: 300 + }, + + /** + * Get dimension for shadow in dataZoom + * @return {string} dimension name + */ + getShadowDim: function () { + return 'open'; + }, + + brushSelector: function (dataIndex, data, selectors) { + var itemLayout = data.getItemLayout(dataIndex); + return itemLayout && selectors.rect(itemLayout.brushRect); + } + +}); + +mixin(CandlestickSeries, seriesModelMixin, true); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var NORMAL_ITEM_STYLE_PATH$1 = ['itemStyle']; +var EMPHASIS_ITEM_STYLE_PATH$1 = ['emphasis', 'itemStyle']; +var SKIP_PROPS = ['color', 'color0', 'borderColor', 'borderColor0']; + + +var CandlestickView = Chart.extend({ + + type: 'candlestick', + + render: function (seriesModel, ecModel, api) { + this._updateDrawMode(seriesModel); + + this._isLargeDraw + ? this._renderLarge(seriesModel) + : this._renderNormal(seriesModel); + }, + + incrementalPrepareRender: function (seriesModel, ecModel, api) { + this._clear(); + this._updateDrawMode(seriesModel); + }, + + incrementalRender: function (params, seriesModel, ecModel, api) { + this._isLargeDraw + ? this._incrementalRenderLarge(params, seriesModel) + : this._incrementalRenderNormal(params, seriesModel); + }, + + _updateDrawMode: function (seriesModel) { + var isLargeDraw = seriesModel.pipelineContext.large; + if (this._isLargeDraw == null || isLargeDraw ^ this._isLargeDraw) { + this._isLargeDraw = isLargeDraw; + this._clear(); + } + }, + + _renderNormal: function (seriesModel) { + var data = seriesModel.getData(); + var oldData = this._data; + var group = this.group; + var isSimpleBox = data.getLayout('isSimpleBox'); + + // There is no old data only when first rendering or switching from + // stream mode to normal mode, where previous elements should be removed. + if (!this._data) { + group.removeAll(); + } + + data.diff(oldData) + .add(function (newIdx) { + if (data.hasValue(newIdx)) { + var el; + + var itemLayout = data.getItemLayout(newIdx); + el = createNormalBox$1(itemLayout, newIdx, true); + initProps(el, {shape: {points: itemLayout.ends}}, seriesModel, newIdx); + + setBoxCommon(el, data, newIdx, isSimpleBox); + + group.add(el); + data.setItemGraphicEl(newIdx, el); + } + }) + .update(function (newIdx, oldIdx) { + var el = oldData.getItemGraphicEl(oldIdx); + + // Empty data + if (!data.hasValue(newIdx)) { + group.remove(el); + return; + } + + var itemLayout = data.getItemLayout(newIdx); + if (!el) { + el = createNormalBox$1(itemLayout, newIdx); + } + else { + updateProps(el, {shape: {points: itemLayout.ends}}, seriesModel, newIdx); + } + + setBoxCommon(el, data, newIdx, isSimpleBox); + + group.add(el); + data.setItemGraphicEl(newIdx, el); + }) + .remove(function (oldIdx) { + var el = oldData.getItemGraphicEl(oldIdx); + el && group.remove(el); + }) + .execute(); + + this._data = data; + }, + + _renderLarge: function (seriesModel) { + this._clear(); + createLarge$1(seriesModel, this.group); + }, + + _incrementalRenderNormal: function (params, seriesModel) { + var data = seriesModel.getData(); + var isSimpleBox = data.getLayout('isSimpleBox'); + + var dataIndex; + while ((dataIndex = params.next()) != null) { + var el; + + var itemLayout = data.getItemLayout(dataIndex); + el = createNormalBox$1(itemLayout, dataIndex); + setBoxCommon(el, data, dataIndex, isSimpleBox); + + el.incremental = true; + this.group.add(el); + } + }, + + _incrementalRenderLarge: function (params, seriesModel) { + createLarge$1(seriesModel, this.group, true); + }, + + remove: function (ecModel) { + this._clear(); + }, + + _clear: function () { + this.group.removeAll(); + this._data = null; + }, + + dispose: noop + +}); + + +var NormalBoxPath = Path.extend({ + + type: 'normalCandlestickBox', + + shape: {}, + + buildPath: function (ctx, shape) { + var ends = shape.points; + + if (this.__simpleBox) { + ctx.moveTo(ends[4][0], ends[4][1]); + ctx.lineTo(ends[6][0], ends[6][1]); + } + else { + ctx.moveTo(ends[0][0], ends[0][1]); + ctx.lineTo(ends[1][0], ends[1][1]); + ctx.lineTo(ends[2][0], ends[2][1]); + ctx.lineTo(ends[3][0], ends[3][1]); + ctx.closePath(); + + ctx.moveTo(ends[4][0], ends[4][1]); + ctx.lineTo(ends[5][0], ends[5][1]); + ctx.moveTo(ends[6][0], ends[6][1]); + ctx.lineTo(ends[7][0], ends[7][1]); + } + } +}); + +function createNormalBox$1(itemLayout, dataIndex, isInit) { + var ends = itemLayout.ends; + return new NormalBoxPath({ + shape: { + points: isInit + ? transInit$1(ends, itemLayout) + : ends + }, + z2: 100 + }); +} + +function setBoxCommon(el, data, dataIndex, isSimpleBox) { + var itemModel = data.getItemModel(dataIndex); + var normalItemStyleModel = itemModel.getModel(NORMAL_ITEM_STYLE_PATH$1); + var color = data.getItemVisual(dataIndex, 'color'); + var borderColor = data.getItemVisual(dataIndex, 'borderColor') || color; + + // Color must be excluded. + // Because symbol provide setColor individually to set fill and stroke + var itemStyle = normalItemStyleModel.getItemStyle(SKIP_PROPS); + + el.useStyle(itemStyle); + el.style.strokeNoScale = true; + el.style.fill = color; + el.style.stroke = borderColor; + + el.__simpleBox = isSimpleBox; + + var hoverStyle = itemModel.getModel(EMPHASIS_ITEM_STYLE_PATH$1).getItemStyle(); + setHoverStyle(el, hoverStyle); +} + +function transInit$1(points, itemLayout) { + return map(points, function (point) { + point = point.slice(); + point[1] = itemLayout.initBaseline; + return point; + }); +} + + + +var LargeBoxPath = Path.extend({ + + type: 'largeCandlestickBox', + + shape: {}, + + buildPath: function (ctx, shape) { + // Drawing lines is more efficient than drawing + // a whole line or drawing rects. + var points = shape.points; + for (var i = 0; i < points.length;) { + if (this.__sign === points[i++]) { + var x = points[i++]; + ctx.moveTo(x, points[i++]); + ctx.lineTo(x, points[i++]); + } + else { + i += 3; + } + } + } +}); + +function createLarge$1(seriesModel, group, incremental) { + var data = seriesModel.getData(); + var largePoints = data.getLayout('largePoints'); + + var elP = new LargeBoxPath({ + shape: {points: largePoints}, + __sign: 1 + }); + group.add(elP); + var elN = new LargeBoxPath({ + shape: {points: largePoints}, + __sign: -1 + }); + group.add(elN); + + setLargeStyle$1(1, elP, seriesModel, data); + setLargeStyle$1(-1, elN, seriesModel, data); + + if (incremental) { + elP.incremental = true; + elN.incremental = true; + } +} + +function setLargeStyle$1(sign, el, seriesModel, data) { + var suffix = sign > 0 ? 'P' : 'N'; + var borderColor = data.getVisual('borderColor' + suffix) + || data.getVisual('color' + suffix); + + // Color must be excluded. + // Because symbol provide setColor individually to set fill and stroke + var itemStyle = seriesModel.getModel(NORMAL_ITEM_STYLE_PATH$1).getItemStyle(SKIP_PROPS); + + el.useStyle(itemStyle); + el.style.fill = null; + el.style.stroke = borderColor; + // No different + // el.style.lineWidth = .5; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var preprocessor = function (option) { + if (!option || !isArray(option.series)) { + return; + } + + // Translate 'k' to 'candlestick'. + each$1(option.series, function (seriesItem) { + if (isObject$1(seriesItem) && seriesItem.type === 'k') { + seriesItem.type = 'candlestick'; + } + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var positiveBorderColorQuery = ['itemStyle', 'borderColor']; +var negativeBorderColorQuery = ['itemStyle', 'borderColor0']; +var positiveColorQuery = ['itemStyle', 'color']; +var negativeColorQuery = ['itemStyle', 'color0']; + +var candlestickVisual = { + + seriesType: 'candlestick', + + plan: createRenderPlanner(), + + // For legend. + performRawSeries: true, + + reset: function (seriesModel, ecModel) { + + var data = seriesModel.getData(); + var isLargeRender = seriesModel.pipelineContext.large; + + data.setVisual({ + legendSymbol: 'roundRect', + colorP: getColor(1, seriesModel), + colorN: getColor(-1, seriesModel), + borderColorP: getBorderColor(1, seriesModel), + borderColorN: getBorderColor(-1, seriesModel) + }); + + // Only visible series has each data be visual encoded + if (ecModel.isSeriesFiltered(seriesModel)) { + return; + } + + return !isLargeRender && {progress: progress}; + + + function progress(params, data) { + var dataIndex; + while ((dataIndex = params.next()) != null) { + var itemModel = data.getItemModel(dataIndex); + var sign = data.getItemLayout(dataIndex).sign; + + data.setItemVisual( + dataIndex, + { + color: getColor(sign, itemModel), + borderColor: getBorderColor(sign, itemModel) + } + ); + } + } + + function getColor(sign, model) { + return model.get( + sign > 0 ? positiveColorQuery : negativeColorQuery + ); + } + + function getBorderColor(sign, model) { + return model.get( + sign > 0 ? positiveBorderColorQuery : negativeBorderColorQuery + ); + } + + } + +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* global Float32Array */ + +var LargeArr$1 = typeof Float32Array !== 'undefined' ? Float32Array : Array; + +var candlestickLayout = { + + seriesType: 'candlestick', + + plan: createRenderPlanner(), + + reset: function (seriesModel) { + + var coordSys = seriesModel.coordinateSystem; + var data = seriesModel.getData(); + var candleWidth = calculateCandleWidth(seriesModel, data); + var cDimIdx = 0; + var vDimIdx = 1; + var coordDims = ['x', 'y']; + var cDim = data.mapDimension(coordDims[cDimIdx]); + var vDims = data.mapDimension(coordDims[vDimIdx], true); + var openDim = vDims[0]; + var closeDim = vDims[1]; + var lowestDim = vDims[2]; + var highestDim = vDims[3]; + + data.setLayout({ + candleWidth: candleWidth, + // The value is experimented visually. + isSimpleBox: candleWidth <= 1.3 + }); + + if (cDim == null || vDims.length < 4) { + return; + } + + return { + progress: seriesModel.pipelineContext.large + ? largeProgress : normalProgress + }; + + function normalProgress(params, data) { + var dataIndex; + while ((dataIndex = params.next()) != null) { + + var axisDimVal = data.get(cDim, dataIndex); + var openVal = data.get(openDim, dataIndex); + var closeVal = data.get(closeDim, dataIndex); + var lowestVal = data.get(lowestDim, dataIndex); + var highestVal = data.get(highestDim, dataIndex); + + var ocLow = Math.min(openVal, closeVal); + var ocHigh = Math.max(openVal, closeVal); + + var ocLowPoint = getPoint(ocLow, axisDimVal); + var ocHighPoint = getPoint(ocHigh, axisDimVal); + var lowestPoint = getPoint(lowestVal, axisDimVal); + var highestPoint = getPoint(highestVal, axisDimVal); + + var ends = []; + addBodyEnd(ends, ocHighPoint, 0); + addBodyEnd(ends, ocLowPoint, 1); + + ends.push( + subPixelOptimizePoint(highestPoint), + subPixelOptimizePoint(ocHighPoint), + subPixelOptimizePoint(lowestPoint), + subPixelOptimizePoint(ocLowPoint) + ); + + data.setItemLayout(dataIndex, { + sign: getSign(data, dataIndex, openVal, closeVal, closeDim), + initBaseline: openVal > closeVal + ? ocHighPoint[vDimIdx] : ocLowPoint[vDimIdx], // open point. + ends: ends, + brushRect: makeBrushRect(lowestVal, highestVal, axisDimVal) + }); + } + + function getPoint(val, axisDimVal) { + var p = []; + p[cDimIdx] = axisDimVal; + p[vDimIdx] = val; + return (isNaN(axisDimVal) || isNaN(val)) + ? [NaN, NaN] + : coordSys.dataToPoint(p); + } + + function addBodyEnd(ends, point, start) { + var point1 = point.slice(); + var point2 = point.slice(); + + point1[cDimIdx] = subPixelOptimize( + point1[cDimIdx] + candleWidth / 2, 1, false + ); + point2[cDimIdx] = subPixelOptimize( + point2[cDimIdx] - candleWidth / 2, 1, true + ); + + start + ? ends.push(point1, point2) + : ends.push(point2, point1); + } + + function makeBrushRect(lowestVal, highestVal, axisDimVal) { + var pmin = getPoint(lowestVal, axisDimVal); + var pmax = getPoint(highestVal, axisDimVal); + + pmin[cDimIdx] -= candleWidth / 2; + pmax[cDimIdx] -= candleWidth / 2; + + return { + x: pmin[0], + y: pmin[1], + width: vDimIdx ? candleWidth : pmax[0] - pmin[0], + height: vDimIdx ? pmax[1] - pmin[1] : candleWidth + }; + } + + function subPixelOptimizePoint(point) { + point[cDimIdx] = subPixelOptimize(point[cDimIdx], 1); + return point; + } + } + + function largeProgress(params, data) { + // Structure: [sign, x, yhigh, ylow, sign, x, yhigh, ylow, ...] + var points = new LargeArr$1(params.count * 5); + var offset = 0; + var point; + var tmpIn = []; + var tmpOut = []; + var dataIndex; + + while ((dataIndex = params.next()) != null) { + var axisDimVal = data.get(cDim, dataIndex); + var openVal = data.get(openDim, dataIndex); + var closeVal = data.get(closeDim, dataIndex); + var lowestVal = data.get(lowestDim, dataIndex); + var highestVal = data.get(highestDim, dataIndex); + + if (isNaN(axisDimVal) || isNaN(lowestVal) || isNaN(highestVal)) { + points[offset++] = NaN; + offset += 4; + continue; + } + + points[offset++] = getSign(data, dataIndex, openVal, closeVal, closeDim); + + tmpIn[cDimIdx] = axisDimVal; + + tmpIn[vDimIdx] = lowestVal; + point = coordSys.dataToPoint(tmpIn, null, tmpOut); + points[offset++] = point ? point[0] : NaN; + points[offset++] = point ? point[1] : NaN; + tmpIn[vDimIdx] = highestVal; + point = coordSys.dataToPoint(tmpIn, null, tmpOut); + points[offset++] = point ? point[1] : NaN; + } + + data.setLayout('largePoints', points); + } + } +}; + +function getSign(data, dataIndex, openVal, closeVal, closeDim) { + var sign; + if (openVal > closeVal) { + sign = -1; + } + else if (openVal < closeVal) { + sign = 1; + } + else { + sign = dataIndex > 0 + // If close === open, compare with close of last record + ? (data.get(closeDim, dataIndex - 1) <= closeVal ? 1 : -1) + // No record of previous, set to be positive + : 1; + } + + return sign; +} + +function calculateCandleWidth(seriesModel, data) { + var baseAxis = seriesModel.getBaseAxis(); + var extent; + + var bandWidth = baseAxis.type === 'category' + ? baseAxis.getBandWidth() + : ( + extent = baseAxis.getExtent(), + Math.abs(extent[1] - extent[0]) / data.count() + ); + + var barMaxWidth = parsePercent$1( + retrieve2(seriesModel.get('barMaxWidth'), bandWidth), + bandWidth + ); + var barMinWidth = parsePercent$1( + retrieve2(seriesModel.get('barMinWidth'), 1), + bandWidth + ); + var barWidth = seriesModel.get('barWidth'); + + return barWidth != null + ? parsePercent$1(barWidth, bandWidth) + // Put max outer to ensure bar visible in spite of overlap. + : Math.max(Math.min(bandWidth / 2, barMaxWidth), barMinWidth); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerPreprocessor(preprocessor); +registerVisual(candlestickVisual); +registerLayout(candlestickLayout); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +SeriesModel.extend({ + + type: 'series.effectScatter', + + dependencies: ['grid', 'polar'], + + getInitialData: function (option, ecModel) { + return createListFromArray(this.getSource(), this); + }, + + brushSelector: 'point', + + defaultOption: { + coordinateSystem: 'cartesian2d', + zlevel: 0, + z: 2, + legendHoverLink: true, + + effectType: 'ripple', + + progressive: 0, + + // When to show the effect, option: 'render'|'emphasis' + showEffectOn: 'render', + + // Ripple effect config + rippleEffect: { + period: 4, + // Scale of ripple + scale: 2.5, + // Brush type can be fill or stroke + brushType: 'fill' + }, + + // Cartesian coordinate system + // xAxisIndex: 0, + // yAxisIndex: 0, + + // Polar coordinate system + // polarIndex: 0, + + // Geo coordinate system + // geoIndex: 0, + + // symbol: null, // 图形类型 + symbolSize: 10 // 图形大小,半宽(半径)参数,当图形为方向或菱形则总宽度为symbolSize * 2 + // symbolRotate: null, // 图形旋转控制 + + // large: false, + // Available when large is true + // largeThreshold: 2000, + + // itemStyle: { + // opacity: 1 + // } + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Symbol with ripple effect + * @module echarts/chart/helper/EffectSymbol + */ + +var EFFECT_RIPPLE_NUMBER = 3; + +function normalizeSymbolSize$1(symbolSize) { + if (!isArray(symbolSize)) { + symbolSize = [+symbolSize, +symbolSize]; + } + return symbolSize; +} + +function updateRipplePath(rippleGroup, effectCfg) { + rippleGroup.eachChild(function (ripplePath) { + ripplePath.attr({ + z: effectCfg.z, + zlevel: effectCfg.zlevel, + style: { + stroke: effectCfg.brushType === 'stroke' ? effectCfg.color : null, + fill: effectCfg.brushType === 'fill' ? effectCfg.color : null + } + }); + }); +} +/** + * @constructor + * @param {module:echarts/data/List} data + * @param {number} idx + * @extends {module:zrender/graphic/Group} + */ +function EffectSymbol(data, idx) { + Group.call(this); + + var symbol = new SymbolClz$1(data, idx); + var rippleGroup = new Group(); + this.add(symbol); + this.add(rippleGroup); + + rippleGroup.beforeUpdate = function () { + this.attr(symbol.getScale()); + }; + this.updateData(data, idx); +} + +var effectSymbolProto = EffectSymbol.prototype; + +effectSymbolProto.stopEffectAnimation = function () { + this.childAt(1).removeAll(); +}; + +effectSymbolProto.startEffectAnimation = function (effectCfg) { + var symbolType = effectCfg.symbolType; + var color = effectCfg.color; + var rippleGroup = this.childAt(1); + + for (var i = 0; i < EFFECT_RIPPLE_NUMBER; i++) { + // var ripplePath = createSymbol( + // symbolType, -0.5, -0.5, 1, 1, color + // ); + // If width/height are set too small (e.g., set to 1) on ios10 + // and macOS Sierra, a circle stroke become a rect, no matter what + // the scale is set. So we set width/height as 2. See #4136. + var ripplePath = createSymbol( + symbolType, -1, -1, 2, 2, color + ); + ripplePath.attr({ + style: { + strokeNoScale: true + }, + z2: 99, + silent: true, + scale: [0.5, 0.5] + }); + + var delay = -i / EFFECT_RIPPLE_NUMBER * effectCfg.period + effectCfg.effectOffset; + // TODO Configurable effectCfg.period + ripplePath.animate('', true) + .when(effectCfg.period, { + scale: [effectCfg.rippleScale / 2, effectCfg.rippleScale / 2] + }) + .delay(delay) + .start(); + ripplePath.animateStyle(true) + .when(effectCfg.period, { + opacity: 0 + }) + .delay(delay) + .start(); + + rippleGroup.add(ripplePath); + } + + updateRipplePath(rippleGroup, effectCfg); +}; + +/** + * Update effect symbol + */ +effectSymbolProto.updateEffectAnimation = function (effectCfg) { + var oldEffectCfg = this._effectCfg; + var rippleGroup = this.childAt(1); + + // Must reinitialize effect if following configuration changed + var DIFFICULT_PROPS = ['symbolType', 'period', 'rippleScale']; + for (var i = 0; i < DIFFICULT_PROPS.length; i++) { + var propName = DIFFICULT_PROPS[i]; + if (oldEffectCfg[propName] !== effectCfg[propName]) { + this.stopEffectAnimation(); + this.startEffectAnimation(effectCfg); + return; + } + } + + updateRipplePath(rippleGroup, effectCfg); +}; + +/** + * Highlight symbol + */ +effectSymbolProto.highlight = function () { + this.trigger('emphasis'); +}; + +/** + * Downplay symbol + */ +effectSymbolProto.downplay = function () { + this.trigger('normal'); +}; + +/** + * Update symbol properties + * @param {module:echarts/data/List} data + * @param {number} idx + */ +effectSymbolProto.updateData = function (data, idx) { + var seriesModel = data.hostModel; + + this.childAt(0).updateData(data, idx); + + var rippleGroup = this.childAt(1); + var itemModel = data.getItemModel(idx); + var symbolType = data.getItemVisual(idx, 'symbol'); + var symbolSize = normalizeSymbolSize$1(data.getItemVisual(idx, 'symbolSize')); + var color = data.getItemVisual(idx, 'color'); + + rippleGroup.attr('scale', symbolSize); + + rippleGroup.traverse(function (ripplePath) { + ripplePath.attr({ + fill: color + }); + }); + + var symbolOffset = itemModel.getShallow('symbolOffset'); + if (symbolOffset) { + var pos = rippleGroup.position; + pos[0] = parsePercent$1(symbolOffset[0], symbolSize[0]); + pos[1] = parsePercent$1(symbolOffset[1], symbolSize[1]); + } + rippleGroup.rotation = (itemModel.getShallow('symbolRotate') || 0) * Math.PI / 180 || 0; + + var effectCfg = {}; + + effectCfg.showEffectOn = seriesModel.get('showEffectOn'); + effectCfg.rippleScale = itemModel.get('rippleEffect.scale'); + effectCfg.brushType = itemModel.get('rippleEffect.brushType'); + effectCfg.period = itemModel.get('rippleEffect.period') * 1000; + effectCfg.effectOffset = idx / data.count(); + effectCfg.z = itemModel.getShallow('z') || 0; + effectCfg.zlevel = itemModel.getShallow('zlevel') || 0; + effectCfg.symbolType = symbolType; + effectCfg.color = color; + + this.off('mouseover').off('mouseout').off('emphasis').off('normal'); + + if (effectCfg.showEffectOn === 'render') { + this._effectCfg + ? this.updateEffectAnimation(effectCfg) + : this.startEffectAnimation(effectCfg); + + this._effectCfg = effectCfg; + } + else { + // Not keep old effect config + this._effectCfg = null; + + this.stopEffectAnimation(); + var symbol = this.childAt(0); + var onEmphasis = function () { + symbol.highlight(); + if (effectCfg.showEffectOn !== 'render') { + this.startEffectAnimation(effectCfg); + } + }; + var onNormal = function () { + symbol.downplay(); + if (effectCfg.showEffectOn !== 'render') { + this.stopEffectAnimation(); + } + }; + this.on('mouseover', onEmphasis, this) + .on('mouseout', onNormal, this) + .on('emphasis', onEmphasis, this) + .on('normal', onNormal, this); + } + + this._effectCfg = effectCfg; +}; + +effectSymbolProto.fadeOut = function (cb) { + this.off('mouseover').off('mouseout').off('emphasis').off('normal'); + cb && cb(); +}; + +inherits(EffectSymbol, Group); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +extendChartView({ + + type: 'effectScatter', + + init: function () { + this._symbolDraw = new SymbolDraw(EffectSymbol); + }, + + render: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + var effectSymbolDraw = this._symbolDraw; + effectSymbolDraw.updateData(data); + this.group.add(effectSymbolDraw.group); + }, + + updateTransform: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + + this.group.dirty(); + + var res = pointsLayout().reset(seriesModel); + if (res.progress) { + res.progress({ start: 0, end: data.count() }, data); + } + + this._symbolDraw.updateLayout(data); + }, + + _updateGroupTransform: function (seriesModel) { + var coordSys = seriesModel.coordinateSystem; + if (coordSys && coordSys.getRoamTransform) { + this.group.transform = clone$2(coordSys.getRoamTransform()); + this.group.decomposeTransform(); + } + }, + + remove: function (ecModel, api) { + this._symbolDraw && this._symbolDraw.remove(api); + }, + + dispose: function () {} +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerVisual(visualSymbol('effectScatter', 'circle')); +registerLayout(pointsLayout('effectScatter')); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* global Uint32Array, Float64Array, Float32Array */ + +var Uint32Arr = typeof Uint32Array === 'undefined' ? Array : Uint32Array; +var Float64Arr = typeof Float64Array === 'undefined' ? Array : Float64Array; + +function compatEc2(seriesOpt) { + var data = seriesOpt.data; + if (data && data[0] && data[0][0] && data[0][0].coord) { + if (__DEV__) { + console.warn('Lines data configuration has been changed to' + + ' { coords:[[1,2],[2,3]] }'); + } + seriesOpt.data = map(data, function (itemOpt) { + var coords = [ + itemOpt[0].coord, itemOpt[1].coord + ]; + var target = { + coords: coords + }; + if (itemOpt[0].name) { + target.fromName = itemOpt[0].name; + } + if (itemOpt[1].name) { + target.toName = itemOpt[1].name; + } + return mergeAll([target, itemOpt[0], itemOpt[1]]); + }); + } +} + +var LinesSeries = SeriesModel.extend({ + + type: 'series.lines', + + dependencies: ['grid', 'polar'], + + visualColorAccessPath: 'lineStyle.color', + + init: function (option) { + // The input data may be null/undefined. + option.data = option.data || []; + + // Not using preprocessor because mergeOption may not have series.type + compatEc2(option); + + var result = this._processFlatCoordsArray(option.data); + this._flatCoords = result.flatCoords; + this._flatCoordsOffset = result.flatCoordsOffset; + if (result.flatCoords) { + option.data = new Float32Array(result.count); + } + + LinesSeries.superApply(this, 'init', arguments); + }, + + mergeOption: function (option) { + // The input data may be null/undefined. + option.data = option.data || []; + + compatEc2(option); + + if (option.data) { + // Only update when have option data to merge. + var result = this._processFlatCoordsArray(option.data); + this._flatCoords = result.flatCoords; + this._flatCoordsOffset = result.flatCoordsOffset; + if (result.flatCoords) { + option.data = new Float32Array(result.count); + } + } + + LinesSeries.superApply(this, 'mergeOption', arguments); + }, + + appendData: function (params) { + var result = this._processFlatCoordsArray(params.data); + if (result.flatCoords) { + if (!this._flatCoords) { + this._flatCoords = result.flatCoords; + this._flatCoordsOffset = result.flatCoordsOffset; + } + else { + this._flatCoords = concatArray(this._flatCoords, result.flatCoords); + this._flatCoordsOffset = concatArray(this._flatCoordsOffset, result.flatCoordsOffset); + } + params.data = new Float32Array(result.count); + } + + this.getRawData().appendData(params.data); + }, + + _getCoordsFromItemModel: function (idx) { + var itemModel = this.getData().getItemModel(idx); + var coords = (itemModel.option instanceof Array) + ? itemModel.option : itemModel.getShallow('coords'); + + if (__DEV__) { + if (!(coords instanceof Array && coords.length > 0 && coords[0] instanceof Array)) { + throw new Error( + 'Invalid coords ' + JSON.stringify(coords) + '. Lines must have 2d coords array in data item.' + ); + } + } + return coords; + }, + + getLineCoordsCount: function (idx) { + if (this._flatCoordsOffset) { + return this._flatCoordsOffset[idx * 2 + 1]; + } + else { + return this._getCoordsFromItemModel(idx).length; + } + }, + + getLineCoords: function (idx, out) { + if (this._flatCoordsOffset) { + var offset = this._flatCoordsOffset[idx * 2]; + var len = this._flatCoordsOffset[idx * 2 + 1]; + for (var i = 0; i < len; i++) { + out[i] = out[i] || []; + out[i][0] = this._flatCoords[offset + i * 2]; + out[i][1] = this._flatCoords[offset + i * 2 + 1]; + } + return len; + } + else { + var coords = this._getCoordsFromItemModel(idx); + for (var i = 0; i < coords.length; i++) { + out[i] = out[i] || []; + out[i][0] = coords[i][0]; + out[i][1] = coords[i][1]; + } + return coords.length; + } + }, + + _processFlatCoordsArray: function (data) { + var startOffset = 0; + if (this._flatCoords) { + startOffset = this._flatCoords.length; + } + // Stored as a typed array. In format + // Points Count(2) | x | y | x | y | Points Count(3) | x | y | x | y | x | y | + if (typeof data[0] === 'number') { + var len = data.length; + // Store offset and len of each segment + var coordsOffsetAndLenStorage = new Uint32Arr(len); + var coordsStorage = new Float64Arr(len); + var coordsCursor = 0; + var offsetCursor = 0; + var dataCount = 0; + for (var i = 0; i < len;) { + dataCount++; + var count = data[i++]; + // Offset + coordsOffsetAndLenStorage[offsetCursor++] = coordsCursor + startOffset; + // Len + coordsOffsetAndLenStorage[offsetCursor++] = count; + for (var k = 0; k < count; k++) { + var x = data[i++]; + var y = data[i++]; + coordsStorage[coordsCursor++] = x; + coordsStorage[coordsCursor++] = y; + + if (i > len) { + if (__DEV__) { + throw new Error('Invalid data format.'); + } + } + } + } + + return { + flatCoordsOffset: new Uint32Array(coordsOffsetAndLenStorage.buffer, 0, offsetCursor), + flatCoords: coordsStorage, + count: dataCount + }; + } + + return { + flatCoordsOffset: null, + flatCoords: null, + count: data.length + }; + }, + + getInitialData: function (option, ecModel) { + if (__DEV__) { + var CoordSys = CoordinateSystemManager.get(option.coordinateSystem); + if (!CoordSys) { + throw new Error('Unkown coordinate system ' + option.coordinateSystem); + } + } + + var lineData = new List(['value'], this); + lineData.hasItemOption = false; + + lineData.initData(option.data, [], function (dataItem, dimName, dataIndex, dimIndex) { + // dataItem is simply coords + if (dataItem instanceof Array) { + return NaN; + } + else { + lineData.hasItemOption = true; + var value = dataItem.value; + if (value != null) { + return value instanceof Array ? value[dimIndex] : value; + } + } + }); + + return lineData; + }, + + formatTooltip: function (dataIndex) { + var data = this.getData(); + var itemModel = data.getItemModel(dataIndex); + var name = itemModel.get('name'); + if (name) { + return name; + } + var fromName = itemModel.get('fromName'); + var toName = itemModel.get('toName'); + var html = []; + fromName != null && html.push(fromName); + toName != null && html.push(toName); + + return encodeHTML(html.join(' > ')); + }, + + preventIncremental: function () { + return !!this.get('effect.show'); + }, + + getProgressive: function () { + var progressive = this.option.progressive; + if (progressive == null) { + return this.option.large ? 1e4 : this.get('progressive'); + } + return progressive; + }, + + getProgressiveThreshold: function () { + var progressiveThreshold = this.option.progressiveThreshold; + if (progressiveThreshold == null) { + return this.option.large ? 2e4 : this.get('progressiveThreshold'); + } + return progressiveThreshold; + }, + + defaultOption: { + coordinateSystem: 'geo', + zlevel: 0, + z: 2, + legendHoverLink: true, + + hoverAnimation: true, + // Cartesian coordinate system + xAxisIndex: 0, + yAxisIndex: 0, + + symbol: ['none', 'none'], + symbolSize: [10, 10], + // Geo coordinate system + geoIndex: 0, + + effect: { + show: false, + period: 4, + // Animation delay. support callback + // delay: 0, + // If move with constant speed px/sec + // period will be ignored if this property is > 0, + constantSpeed: 0, + symbol: 'circle', + symbolSize: 3, + loop: true, + // Length of trail, 0 - 1 + trailLength: 0.2 + // Same with lineStyle.color + // color + }, + + large: false, + // Available when large is true + largeThreshold: 2000, + + // If lines are polyline + // polyline not support curveness, label, animation + polyline: false, + + label: { + show: false, + position: 'end' + // distance: 5, + // formatter: 标签文本格式器,同Tooltip.formatter,不支持异步回调 + }, + + lineStyle: { + opacity: 0.5 + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Provide effect for line + * @module echarts/chart/helper/EffectLine + */ + +/** + * @constructor + * @extends {module:zrender/graphic/Group} + * @alias {module:echarts/chart/helper/Line} + */ +function EffectLine(lineData, idx, seriesScope) { + Group.call(this); + + this.add(this.createLine(lineData, idx, seriesScope)); + + this._updateEffectSymbol(lineData, idx); +} + +var effectLineProto = EffectLine.prototype; + +effectLineProto.createLine = function (lineData, idx, seriesScope) { + return new Line$1(lineData, idx, seriesScope); +}; + +effectLineProto._updateEffectSymbol = function (lineData, idx) { + var itemModel = lineData.getItemModel(idx); + var effectModel = itemModel.getModel('effect'); + var size = effectModel.get('symbolSize'); + var symbolType = effectModel.get('symbol'); + if (!isArray(size)) { + size = [size, size]; + } + var color = effectModel.get('color') || lineData.getItemVisual(idx, 'color'); + var symbol = this.childAt(1); + + if (this._symbolType !== symbolType) { + // Remove previous + this.remove(symbol); + + symbol = createSymbol( + symbolType, -0.5, -0.5, 1, 1, color + ); + symbol.z2 = 100; + symbol.culling = true; + + this.add(symbol); + } + + // Symbol may be removed if loop is false + if (!symbol) { + return; + } + + // Shadow color is same with color in default + symbol.setStyle('shadowColor', color); + symbol.setStyle(effectModel.getItemStyle(['color'])); + + symbol.attr('scale', size); + + symbol.setColor(color); + symbol.attr('scale', size); + + this._symbolType = symbolType; + + this._updateEffectAnimation(lineData, effectModel, idx); +}; + +effectLineProto._updateEffectAnimation = function (lineData, effectModel, idx) { + + var symbol = this.childAt(1); + if (!symbol) { + return; + } + + var self = this; + + var points = lineData.getItemLayout(idx); + + var period = effectModel.get('period') * 1000; + var loop = effectModel.get('loop'); + var constantSpeed = effectModel.get('constantSpeed'); + var delayExpr = retrieve(effectModel.get('delay'), function (idx) { + return idx / lineData.count() * period / 3; + }); + var isDelayFunc = typeof delayExpr === 'function'; + + // Ignore when updating + symbol.ignore = true; + + this.updateAnimationPoints(symbol, points); + + if (constantSpeed > 0) { + period = this.getLineLength(symbol) / constantSpeed * 1000; + } + + if (period !== this._period || loop !== this._loop) { + + symbol.stopAnimation(); + + var delay = delayExpr; + if (isDelayFunc) { + delay = delayExpr(idx); + } + if (symbol.__t > 0) { + delay = -period * symbol.__t; + } + symbol.__t = 0; + var animator = symbol.animate('', loop) + .when(period, { + __t: 1 + }) + .delay(delay) + .during(function () { + self.updateSymbolPosition(symbol); + }); + if (!loop) { + animator.done(function () { + self.remove(symbol); + }); + } + animator.start(); + } + + this._period = period; + this._loop = loop; +}; + +effectLineProto.getLineLength = function (symbol) { + // Not so accurate + return (dist(symbol.__p1, symbol.__cp1) + + dist(symbol.__cp1, symbol.__p2)); +}; + +effectLineProto.updateAnimationPoints = function (symbol, points) { + symbol.__p1 = points[0]; + symbol.__p2 = points[1]; + symbol.__cp1 = points[2] || [ + (points[0][0] + points[1][0]) / 2, + (points[0][1] + points[1][1]) / 2 + ]; +}; + +effectLineProto.updateData = function (lineData, idx, seriesScope) { + this.childAt(0).updateData(lineData, idx, seriesScope); + this._updateEffectSymbol(lineData, idx); +}; + +effectLineProto.updateSymbolPosition = function (symbol) { + var p1 = symbol.__p1; + var p2 = symbol.__p2; + var cp1 = symbol.__cp1; + var t = symbol.__t; + var pos = symbol.position; + var quadraticAt$$1 = quadraticAt; + var quadraticDerivativeAt$$1 = quadraticDerivativeAt; + pos[0] = quadraticAt$$1(p1[0], cp1[0], p2[0], t); + pos[1] = quadraticAt$$1(p1[1], cp1[1], p2[1], t); + + // Tangent + var tx = quadraticDerivativeAt$$1(p1[0], cp1[0], p2[0], t); + var ty = quadraticDerivativeAt$$1(p1[1], cp1[1], p2[1], t); + + symbol.rotation = -Math.atan2(ty, tx) - Math.PI / 2; + + symbol.ignore = false; +}; + + +effectLineProto.updateLayout = function (lineData, idx) { + this.childAt(0).updateLayout(lineData, idx); + + var effectModel = lineData.getItemModel(idx).getModel('effect'); + this._updateEffectAnimation(lineData, effectModel, idx); +}; + +inherits(EffectLine, Group); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @module echarts/chart/helper/Line + */ + +/** + * @constructor + * @extends {module:zrender/graphic/Group} + * @alias {module:echarts/chart/helper/Polyline} + */ +function Polyline$2(lineData, idx, seriesScope) { + Group.call(this); + + this._createPolyline(lineData, idx, seriesScope); +} + +var polylineProto = Polyline$2.prototype; + +polylineProto._createPolyline = function (lineData, idx, seriesScope) { + // var seriesModel = lineData.hostModel; + var points = lineData.getItemLayout(idx); + + var line = new Polyline({ + shape: { + points: points + } + }); + + this.add(line); + + this._updateCommonStl(lineData, idx, seriesScope); +}; + +polylineProto.updateData = function (lineData, idx, seriesScope) { + var seriesModel = lineData.hostModel; + + var line = this.childAt(0); + var target = { + shape: { + points: lineData.getItemLayout(idx) + } + }; + updateProps(line, target, seriesModel, idx); + + this._updateCommonStl(lineData, idx, seriesScope); +}; + +polylineProto._updateCommonStl = function (lineData, idx, seriesScope) { + var line = this.childAt(0); + var itemModel = lineData.getItemModel(idx); + + var visualColor = lineData.getItemVisual(idx, 'color'); + + var lineStyle = seriesScope && seriesScope.lineStyle; + var hoverLineStyle = seriesScope && seriesScope.hoverLineStyle; + + if (!seriesScope || lineData.hasItemOption) { + lineStyle = itemModel.getModel('lineStyle').getLineStyle(); + hoverLineStyle = itemModel.getModel('emphasis.lineStyle').getLineStyle(); + } + line.useStyle(defaults( + { + strokeNoScale: true, + fill: 'none', + stroke: visualColor + }, + lineStyle + )); + line.hoverStyle = hoverLineStyle; + + setHoverStyle(this); +}; + +polylineProto.updateLayout = function (lineData, idx) { + var polyline = this.childAt(0); + polyline.setShape('points', lineData.getItemLayout(idx)); +}; + +inherits(Polyline$2, Group); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Provide effect for line + * @module echarts/chart/helper/EffectLine + */ + +/** + * @constructor + * @extends {module:echarts/chart/helper/EffectLine} + * @alias {module:echarts/chart/helper/Polyline} + */ +function EffectPolyline(lineData, idx, seriesScope) { + EffectLine.call(this, lineData, idx, seriesScope); + this._lastFrame = 0; + this._lastFramePercent = 0; +} + +var effectPolylineProto = EffectPolyline.prototype; + +// Overwrite +effectPolylineProto.createLine = function (lineData, idx, seriesScope) { + return new Polyline$2(lineData, idx, seriesScope); +}; + +// Overwrite +effectPolylineProto.updateAnimationPoints = function (symbol, points) { + this._points = points; + var accLenArr = [0]; + var len$$1 = 0; + for (var i = 1; i < points.length; i++) { + var p1 = points[i - 1]; + var p2 = points[i]; + len$$1 += dist(p1, p2); + accLenArr.push(len$$1); + } + if (len$$1 === 0) { + return; + } + + for (var i = 0; i < accLenArr.length; i++) { + accLenArr[i] /= len$$1; + } + this._offsets = accLenArr; + this._length = len$$1; +}; + +// Overwrite +effectPolylineProto.getLineLength = function (symbol) { + return this._length; +}; + +// Overwrite +effectPolylineProto.updateSymbolPosition = function (symbol) { + var t = symbol.__t; + var points = this._points; + var offsets = this._offsets; + var len$$1 = points.length; + + if (!offsets) { + // Has length 0 + return; + } + + var lastFrame = this._lastFrame; + var frame; + + if (t < this._lastFramePercent) { + // Start from the next frame + // PENDING start from lastFrame ? + var start = Math.min(lastFrame + 1, len$$1 - 1); + for (frame = start; frame >= 0; frame--) { + if (offsets[frame] <= t) { + break; + } + } + // PENDING really need to do this ? + frame = Math.min(frame, len$$1 - 2); + } + else { + for (var frame = lastFrame; frame < len$$1; frame++) { + if (offsets[frame] > t) { + break; + } + } + frame = Math.min(frame - 1, len$$1 - 2); + } + + lerp( + symbol.position, points[frame], points[frame + 1], + (t - offsets[frame]) / (offsets[frame + 1] - offsets[frame]) + ); + + var tx = points[frame + 1][0] - points[frame][0]; + var ty = points[frame + 1][1] - points[frame][1]; + symbol.rotation = -Math.atan2(ty, tx) - Math.PI / 2; + + this._lastFrame = frame; + this._lastFramePercent = t; + + symbol.ignore = false; +}; + +inherits(EffectPolyline, EffectLine); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// TODO Batch by color + +var LargeLineShape = extendShape({ + + shape: { + polyline: false, + curveness: 0, + segs: [] + }, + + buildPath: function (path, shape) { + var segs = shape.segs; + var curveness = shape.curveness; + + if (shape.polyline) { + for (var i = 0; i < segs.length;) { + var count = segs[i++]; + if (count > 0) { + path.moveTo(segs[i++], segs[i++]); + for (var k = 1; k < count; k++) { + path.lineTo(segs[i++], segs[i++]); + } + } + } + } + else { + for (var i = 0; i < segs.length;) { + var x0 = segs[i++]; + var y0 = segs[i++]; + var x1 = segs[i++]; + var y1 = segs[i++]; + path.moveTo(x0, y0); + if (curveness > 0) { + var x2 = (x0 + x1) / 2 - (y0 - y1) * curveness; + var y2 = (y0 + y1) / 2 - (x1 - x0) * curveness; + path.quadraticCurveTo(x2, y2, x1, y1); + } + else { + path.lineTo(x1, y1); + } + } + } + }, + + findDataIndex: function (x, y) { + + var shape = this.shape; + var segs = shape.segs; + var curveness = shape.curveness; + + if (shape.polyline) { + var dataIndex = 0; + for (var i = 0; i < segs.length;) { + var count = segs[i++]; + if (count > 0) { + var x0 = segs[i++]; + var y0 = segs[i++]; + for (var k = 1; k < count; k++) { + var x1 = segs[i++]; + var y1 = segs[i++]; + if (containStroke$1(x0, y0, x1, y1)) { + return dataIndex; + } + } + } + + dataIndex++; + } + } + else { + var dataIndex = 0; + for (var i = 0; i < segs.length;) { + var x0 = segs[i++]; + var y0 = segs[i++]; + var x1 = segs[i++]; + var y1 = segs[i++]; + if (curveness > 0) { + var x2 = (x0 + x1) / 2 - (y0 - y1) * curveness; + var y2 = (y0 + y1) / 2 - (x1 - x0) * curveness; + + if (containStroke$3(x0, y0, x2, y2, x1, y1)) { + return dataIndex; + } + } + else { + if (containStroke$1(x0, y0, x1, y1)) { + return dataIndex; + } + } + + dataIndex++; + } + } + + return -1; + } +}); + +function LargeLineDraw() { + this.group = new Group(); +} + +var largeLineProto = LargeLineDraw.prototype; + +largeLineProto.isPersistent = function () { + return !this._incremental; +}; + +/** + * Update symbols draw by new data + * @param {module:echarts/data/List} data + */ +largeLineProto.updateData = function (data) { + this.group.removeAll(); + + var lineEl = new LargeLineShape({ + rectHover: true, + cursor: 'default' + }); + lineEl.setShape({ + segs: data.getLayout('linesPoints') + }); + + this._setCommon(lineEl, data); + + // Add back + this.group.add(lineEl); + + this._incremental = null; +}; + +/** + * @override + */ +largeLineProto.incrementalPrepareUpdate = function (data) { + this.group.removeAll(); + + this._clearIncremental(); + + if (data.count() > 5e5) { + if (!this._incremental) { + this._incremental = new IncrementalDisplayble({ + silent: true + }); + } + this.group.add(this._incremental); + } + else { + this._incremental = null; + } +}; + +/** + * @override + */ +largeLineProto.incrementalUpdate = function (taskParams, data) { + var lineEl = new LargeLineShape(); + lineEl.setShape({ + segs: data.getLayout('linesPoints') + }); + + this._setCommon(lineEl, data, !!this._incremental); + + if (!this._incremental) { + lineEl.rectHover = true; + lineEl.cursor = 'default'; + lineEl.__startIndex = taskParams.start; + this.group.add(lineEl); + } + else { + this._incremental.addDisplayable(lineEl, true); + } +}; + +/** + * @override + */ +largeLineProto.remove = function () { + this._clearIncremental(); + this._incremental = null; + this.group.removeAll(); +}; + +largeLineProto._setCommon = function (lineEl, data, isIncremental) { + var hostModel = data.hostModel; + + lineEl.setShape({ + polyline: hostModel.get('polyline'), + curveness: hostModel.get('lineStyle.curveness') + }); + + lineEl.useStyle( + hostModel.getModel('lineStyle').getLineStyle() + ); + lineEl.style.strokeNoScale = true; + + var visualColor = data.getVisual('color'); + if (visualColor) { + lineEl.setStyle('stroke', visualColor); + } + lineEl.setStyle('fill'); + + if (!isIncremental) { + // Enable tooltip + // PENDING May have performance issue when path is extremely large + lineEl.seriesIndex = hostModel.seriesIndex; + lineEl.on('mousemove', function (e) { + lineEl.dataIndex = null; + var dataIndex = lineEl.findDataIndex(e.offsetX, e.offsetY); + if (dataIndex > 0) { + // Provide dataIndex for tooltip + lineEl.dataIndex = dataIndex + lineEl.__startIndex; + } + }); + } +}; + +largeLineProto._clearIncremental = function () { + var incremental = this._incremental; + if (incremental) { + incremental.clearDisplaybles(); + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* global Float32Array */ + +var linesLayout = { + seriesType: 'lines', + + plan: createRenderPlanner(), + + reset: function (seriesModel) { + var coordSys = seriesModel.coordinateSystem; + var isPolyline = seriesModel.get('polyline'); + var isLarge = seriesModel.pipelineContext.large; + + function progress(params, lineData) { + var lineCoords = []; + if (isLarge) { + var points; + var segCount = params.end - params.start; + if (isPolyline) { + var totalCoordsCount = 0; + for (var i = params.start; i < params.end; i++) { + totalCoordsCount += seriesModel.getLineCoordsCount(i); + } + points = new Float32Array(segCount + totalCoordsCount * 2); + } + else { + points = new Float32Array(segCount * 4); + } + + var offset = 0; + var pt = []; + for (var i = params.start; i < params.end; i++) { + var len = seriesModel.getLineCoords(i, lineCoords); + if (isPolyline) { + points[offset++] = len; + } + for (var k = 0; k < len; k++) { + pt = coordSys.dataToPoint(lineCoords[k], false, pt); + points[offset++] = pt[0]; + points[offset++] = pt[1]; + } + } + + lineData.setLayout('linesPoints', points); + } + else { + for (var i = params.start; i < params.end; i++) { + var itemModel = lineData.getItemModel(i); + var len = seriesModel.getLineCoords(i, lineCoords); + + var pts = []; + if (isPolyline) { + for (var j = 0; j < len; j++) { + pts.push(coordSys.dataToPoint(lineCoords[j])); + } + } + else { + pts[0] = coordSys.dataToPoint(lineCoords[0]); + pts[1] = coordSys.dataToPoint(lineCoords[1]); + + var curveness = itemModel.get('lineStyle.curveness'); + if (+curveness) { + pts[2] = [ + (pts[0][0] + pts[1][0]) / 2 - (pts[0][1] - pts[1][1]) * curveness, + (pts[0][1] + pts[1][1]) / 2 - (pts[1][0] - pts[0][0]) * curveness + ]; + } + } + lineData.setItemLayout(i, pts); + } + } + } + + return { progress: progress }; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +extendChartView({ + + type: 'lines', + + init: function () {}, + + render: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + + var lineDraw = this._updateLineDraw(data, seriesModel); + + var zlevel = seriesModel.get('zlevel'); + var trailLength = seriesModel.get('effect.trailLength'); + + var zr = api.getZr(); + // Avoid the drag cause ghost shadow + // FIXME Better way ? + // SVG doesn't support + var isSvg = zr.painter.getType() === 'svg'; + if (!isSvg) { + zr.painter.getLayer(zlevel).clear(true); + } + // Config layer with motion blur + if (this._lastZlevel != null && !isSvg) { + zr.configLayer(this._lastZlevel, { + motionBlur: false + }); + } + if (this._showEffect(seriesModel) && trailLength) { + if (__DEV__) { + var notInIndividual = false; + ecModel.eachSeries(function (otherSeriesModel) { + if (otherSeriesModel !== seriesModel && otherSeriesModel.get('zlevel') === zlevel) { + notInIndividual = true; + } + }); + notInIndividual && console.warn('Lines with trail effect should have an individual zlevel'); + } + + if (!isSvg) { + zr.configLayer(zlevel, { + motionBlur: true, + lastFrameAlpha: Math.max(Math.min(trailLength / 10 + 0.9, 1), 0) + }); + } + } + + lineDraw.updateData(data); + + this._lastZlevel = zlevel; + + this._finished = true; + }, + + incrementalPrepareRender: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + + var lineDraw = this._updateLineDraw(data, seriesModel); + + lineDraw.incrementalPrepareUpdate(data); + + this._clearLayer(api); + + this._finished = false; + }, + + incrementalRender: function (taskParams, seriesModel, ecModel) { + this._lineDraw.incrementalUpdate(taskParams, seriesModel.getData()); + + this._finished = taskParams.end === seriesModel.getData().count(); + }, + + updateTransform: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + var pipelineContext = seriesModel.pipelineContext; + + if (!this._finished || pipelineContext.large || pipelineContext.progressiveRender) { + // TODO Don't have to do update in large mode. Only do it when there are millions of data. + return { + update: true + }; + } + else { + // TODO Use same logic with ScatterView. + // Manually update layout + var res = linesLayout.reset(seriesModel); + if (res.progress) { + res.progress({ start: 0, end: data.count() }, data); + } + this._lineDraw.updateLayout(); + this._clearLayer(api); + } + }, + + _updateLineDraw: function (data, seriesModel) { + var lineDraw = this._lineDraw; + var hasEffect = this._showEffect(seriesModel); + var isPolyline = !!seriesModel.get('polyline'); + var pipelineContext = seriesModel.pipelineContext; + var isLargeDraw = pipelineContext.large; + + if (__DEV__) { + if (hasEffect && isLargeDraw) { + console.warn('Large lines not support effect'); + } + } + if (!lineDraw + || hasEffect !== this._hasEffet + || isPolyline !== this._isPolyline + || isLargeDraw !== this._isLargeDraw + ) { + if (lineDraw) { + lineDraw.remove(); + } + lineDraw = this._lineDraw = isLargeDraw + ? new LargeLineDraw() + : new LineDraw( + isPolyline + ? (hasEffect ? EffectPolyline : Polyline$2) + : (hasEffect ? EffectLine : Line$1) + ); + this._hasEffet = hasEffect; + this._isPolyline = isPolyline; + this._isLargeDraw = isLargeDraw; + this.group.removeAll(); + } + + this.group.add(lineDraw.group); + + return lineDraw; + }, + + _showEffect: function (seriesModel) { + return !!seriesModel.get('effect.show'); + }, + + _clearLayer: function (api) { + // Not use motion when dragging or zooming + var zr = api.getZr(); + var isSvg = zr.painter.getType() === 'svg'; + if (!isSvg && this._lastZlevel != null) { + zr.painter.getLayer(this._lastZlevel).clear(true); + } + }, + + remove: function (ecModel, api) { + this._lineDraw && this._lineDraw.remove(); + this._lineDraw = null; + // Clear motion when lineDraw is removed + this._clearLayer(api); + }, + + dispose: function () {} +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +function normalize$2(a) { + if (!(a instanceof Array)) { + a = [a, a]; + } + return a; +} + +var opacityQuery = 'lineStyle.opacity'.split('.'); + +var linesVisual = { + seriesType: 'lines', + reset: function (seriesModel, ecModel, api) { + var symbolType = normalize$2(seriesModel.get('symbol')); + var symbolSize = normalize$2(seriesModel.get('symbolSize')); + var data = seriesModel.getData(); + + data.setVisual('fromSymbol', symbolType && symbolType[0]); + data.setVisual('toSymbol', symbolType && symbolType[1]); + data.setVisual('fromSymbolSize', symbolSize && symbolSize[0]); + data.setVisual('toSymbolSize', symbolSize && symbolSize[1]); + data.setVisual('opacity', seriesModel.get(opacityQuery)); + + function dataEach(data, idx) { + var itemModel = data.getItemModel(idx); + var symbolType = normalize$2(itemModel.getShallow('symbol', true)); + var symbolSize = normalize$2(itemModel.getShallow('symbolSize', true)); + var opacity = itemModel.get(opacityQuery); + + symbolType[0] && data.setItemVisual(idx, 'fromSymbol', symbolType[0]); + symbolType[1] && data.setItemVisual(idx, 'toSymbol', symbolType[1]); + symbolSize[0] && data.setItemVisual(idx, 'fromSymbolSize', symbolSize[0]); + symbolSize[1] && data.setItemVisual(idx, 'toSymbolSize', symbolSize[1]); + + data.setItemVisual(idx, 'opacity', opacity); + } + + return {dataEach: data.hasItemOption ? dataEach : null}; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerLayout(linesLayout); +registerVisual(linesVisual); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +SeriesModel.extend({ + type: 'series.heatmap', + + getInitialData: function (option, ecModel) { + return createListFromArray(this.getSource(), this, { + generateCoord: 'value' + }); + }, + + preventIncremental: function () { + var coordSysCreator = CoordinateSystemManager.get(this.get('coordinateSystem')); + if (coordSysCreator && coordSysCreator.dimensions) { + return coordSysCreator.dimensions[0] === 'lng' && coordSysCreator.dimensions[1] === 'lat'; + } + }, + + defaultOption: { + + // Cartesian2D or geo + coordinateSystem: 'cartesian2d', + + zlevel: 0, + + z: 2, + + // Cartesian coordinate system + // xAxisIndex: 0, + // yAxisIndex: 0, + + // Geo coordinate system + geoIndex: 0, + + blurSize: 30, + + pointSize: 20, + + maxOpacity: 1, + + minOpacity: 0 + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* global Uint8ClampedArray */ + +var GRADIENT_LEVELS = 256; + +/** + * Heatmap Chart + * + * @class + */ +function Heatmap() { + var canvas = createCanvas(); + this.canvas = canvas; + + this.blurSize = 30; + this.pointSize = 20; + + this.maxOpacity = 1; + this.minOpacity = 0; + + this._gradientPixels = {}; +} + +Heatmap.prototype = { + /** + * Renders Heatmap and returns the rendered canvas + * @param {Array} data array of data, each has x, y, value + * @param {number} width canvas width + * @param {number} height canvas height + */ + update: function (data, width, height, normalize, colorFunc, isInRange) { + var brush = this._getBrush(); + var gradientInRange = this._getGradient(data, colorFunc, 'inRange'); + var gradientOutOfRange = this._getGradient(data, colorFunc, 'outOfRange'); + var r = this.pointSize + this.blurSize; + + var canvas = this.canvas; + var ctx = canvas.getContext('2d'); + var len = data.length; + canvas.width = width; + canvas.height = height; + for (var i = 0; i < len; ++i) { + var p = data[i]; + var x = p[0]; + var y = p[1]; + var value = p[2]; + + // calculate alpha using value + var alpha = normalize(value); + + // draw with the circle brush with alpha + ctx.globalAlpha = alpha; + ctx.drawImage(brush, x - r, y - r); + } + + if (!canvas.width || !canvas.height) { + // Avoid "Uncaught DOMException: Failed to execute 'getImageData' on + // 'CanvasRenderingContext2D': The source height is 0." + return canvas; + } + + // colorize the canvas using alpha value and set with gradient + var imageData = ctx.getImageData(0, 0, canvas.width, canvas.height); + + var pixels = imageData.data; + var offset = 0; + var pixelLen = pixels.length; + var minOpacity = this.minOpacity; + var maxOpacity = this.maxOpacity; + var diffOpacity = maxOpacity - minOpacity; + + while (offset < pixelLen) { + var alpha = pixels[offset + 3] / 256; + var gradientOffset = Math.floor(alpha * (GRADIENT_LEVELS - 1)) * 4; + // Simple optimize to ignore the empty data + if (alpha > 0) { + var gradient = isInRange(alpha) ? gradientInRange : gradientOutOfRange; + // Any alpha > 0 will be mapped to [minOpacity, maxOpacity] + alpha > 0 && (alpha = alpha * diffOpacity + minOpacity); + pixels[offset++] = gradient[gradientOffset]; + pixels[offset++] = gradient[gradientOffset + 1]; + pixels[offset++] = gradient[gradientOffset + 2]; + pixels[offset++] = gradient[gradientOffset + 3] * alpha * 256; + } + else { + offset += 4; + } + } + ctx.putImageData(imageData, 0, 0); + + return canvas; + }, + + /** + * get canvas of a black circle brush used for canvas to draw later + * @private + * @returns {Object} circle brush canvas + */ + _getBrush: function () { + var brushCanvas = this._brushCanvas || (this._brushCanvas = createCanvas()); + // set brush size + var r = this.pointSize + this.blurSize; + var d = r * 2; + brushCanvas.width = d; + brushCanvas.height = d; + + var ctx = brushCanvas.getContext('2d'); + ctx.clearRect(0, 0, d, d); + + // in order to render shadow without the distinct circle, + // draw the distinct circle in an invisible place, + // and use shadowOffset to draw shadow in the center of the canvas + ctx.shadowOffsetX = d; + ctx.shadowBlur = this.blurSize; + // draw the shadow in black, and use alpha and shadow blur to generate + // color in color map + ctx.shadowColor = '#000'; + + // draw circle in the left to the canvas + ctx.beginPath(); + ctx.arc(-r, r, this.pointSize, 0, Math.PI * 2, true); + ctx.closePath(); + ctx.fill(); + return brushCanvas; + }, + + /** + * get gradient color map + * @private + */ + _getGradient: function (data, colorFunc, state) { + var gradientPixels = this._gradientPixels; + var pixelsSingleState = gradientPixels[state] || (gradientPixels[state] = new Uint8ClampedArray(256 * 4)); + var color = [0, 0, 0, 0]; + var off = 0; + for (var i = 0; i < 256; i++) { + colorFunc[state](i / 255, true, color); + pixelsSingleState[off++] = color[0]; + pixelsSingleState[off++] = color[1]; + pixelsSingleState[off++] = color[2]; + pixelsSingleState[off++] = color[3]; + } + return pixelsSingleState; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function getIsInPiecewiseRange(dataExtent, pieceList, selected) { + var dataSpan = dataExtent[1] - dataExtent[0]; + pieceList = map(pieceList, function (piece) { + return { + interval: [ + (piece.interval[0] - dataExtent[0]) / dataSpan, + (piece.interval[1] - dataExtent[0]) / dataSpan + ] + }; + }); + var len = pieceList.length; + var lastIndex = 0; + + return function (val) { + // Try to find in the location of the last found + for (var i = lastIndex; i < len; i++) { + var interval = pieceList[i].interval; + if (interval[0] <= val && val <= interval[1]) { + lastIndex = i; + break; + } + } + if (i === len) { // Not found, back interation + for (var i = lastIndex - 1; i >= 0; i--) { + var interval = pieceList[i].interval; + if (interval[0] <= val && val <= interval[1]) { + lastIndex = i; + break; + } + } + } + return i >= 0 && i < len && selected[i]; + }; +} + +function getIsInContinuousRange(dataExtent, range) { + var dataSpan = dataExtent[1] - dataExtent[0]; + range = [ + (range[0] - dataExtent[0]) / dataSpan, + (range[1] - dataExtent[0]) / dataSpan + ]; + return function (val) { + return val >= range[0] && val <= range[1]; + }; +} + +function isGeoCoordSys(coordSys) { + var dimensions = coordSys.dimensions; + // Not use coorSys.type === 'geo' because coordSys maybe extended + return dimensions[0] === 'lng' && dimensions[1] === 'lat'; +} + +extendChartView({ + + type: 'heatmap', + + render: function (seriesModel, ecModel, api) { + var visualMapOfThisSeries; + ecModel.eachComponent('visualMap', function (visualMap) { + visualMap.eachTargetSeries(function (targetSeries) { + if (targetSeries === seriesModel) { + visualMapOfThisSeries = visualMap; + } + }); + }); + + if (__DEV__) { + if (!visualMapOfThisSeries) { + throw new Error('Heatmap must use with visualMap'); + } + } + + this.group.removeAll(); + + this._incrementalDisplayable = null; + + var coordSys = seriesModel.coordinateSystem; + if (coordSys.type === 'cartesian2d' || coordSys.type === 'calendar') { + this._renderOnCartesianAndCalendar(seriesModel, api, 0, seriesModel.getData().count()); + } + else if (isGeoCoordSys(coordSys)) { + this._renderOnGeo( + coordSys, seriesModel, visualMapOfThisSeries, api + ); + } + }, + + incrementalPrepareRender: function (seriesModel, ecModel, api) { + this.group.removeAll(); + }, + + incrementalRender: function (params, seriesModel, ecModel, api) { + var coordSys = seriesModel.coordinateSystem; + if (coordSys) { + this._renderOnCartesianAndCalendar(seriesModel, api, params.start, params.end, true); + } + }, + + _renderOnCartesianAndCalendar: function (seriesModel, api, start, end, incremental) { + + var coordSys = seriesModel.coordinateSystem; + var width; + var height; + + if (coordSys.type === 'cartesian2d') { + var xAxis = coordSys.getAxis('x'); + var yAxis = coordSys.getAxis('y'); + + if (__DEV__) { + if (!(xAxis.type === 'category' && yAxis.type === 'category')) { + throw new Error('Heatmap on cartesian must have two category axes'); + } + if (!(xAxis.onBand && yAxis.onBand)) { + throw new Error('Heatmap on cartesian must have two axes with boundaryGap true'); + } + } + + width = xAxis.getBandWidth(); + height = yAxis.getBandWidth(); + } + + var group = this.group; + var data = seriesModel.getData(); + + var itemStyleQuery = 'itemStyle'; + var hoverItemStyleQuery = 'emphasis.itemStyle'; + var labelQuery = 'label'; + var hoverLabelQuery = 'emphasis.label'; + var style = seriesModel.getModel(itemStyleQuery).getItemStyle(['color']); + var hoverStl = seriesModel.getModel(hoverItemStyleQuery).getItemStyle(); + var labelModel = seriesModel.getModel(labelQuery); + var hoverLabelModel = seriesModel.getModel(hoverLabelQuery); + var coordSysType = coordSys.type; + + + var dataDims = coordSysType === 'cartesian2d' + ? [ + data.mapDimension('x'), + data.mapDimension('y'), + data.mapDimension('value') + ] + : [ + data.mapDimension('time'), + data.mapDimension('value') + ]; + + for (var idx = start; idx < end; idx++) { + var rect; + + if (coordSysType === 'cartesian2d') { + // Ignore empty data + if (isNaN(data.get(dataDims[2], idx))) { + continue; + } + + var point = coordSys.dataToPoint([ + data.get(dataDims[0], idx), + data.get(dataDims[1], idx) + ]); + + rect = new Rect({ + shape: { + x: point[0] - width / 2, + y: point[1] - height / 2, + width: width, + height: height + }, + style: { + fill: data.getItemVisual(idx, 'color'), + opacity: data.getItemVisual(idx, 'opacity') + } + }); + } + else { + // Ignore empty data + if (isNaN(data.get(dataDims[1], idx))) { + continue; + } + + rect = new Rect({ + z2: 1, + shape: coordSys.dataToRect([data.get(dataDims[0], idx)]).contentShape, + style: { + fill: data.getItemVisual(idx, 'color'), + opacity: data.getItemVisual(idx, 'opacity') + } + }); + } + + var itemModel = data.getItemModel(idx); + + // Optimization for large datset + if (data.hasItemOption) { + style = itemModel.getModel(itemStyleQuery).getItemStyle(['color']); + hoverStl = itemModel.getModel(hoverItemStyleQuery).getItemStyle(); + labelModel = itemModel.getModel(labelQuery); + hoverLabelModel = itemModel.getModel(hoverLabelQuery); + } + + var rawValue = seriesModel.getRawValue(idx); + var defaultText = '-'; + if (rawValue && rawValue[2] != null) { + defaultText = rawValue[2]; + } + + setLabelStyle( + style, hoverStl, labelModel, hoverLabelModel, + { + labelFetcher: seriesModel, + labelDataIndex: idx, + defaultText: defaultText, + isRectText: true + } + ); + + rect.setStyle(style); + setHoverStyle(rect, data.hasItemOption ? hoverStl : extend({}, hoverStl)); + + rect.incremental = incremental; + // PENDING + if (incremental) { + // Rect must use hover layer if it's incremental. + rect.useHoverLayer = true; + } + + group.add(rect); + data.setItemGraphicEl(idx, rect); + } + }, + + _renderOnGeo: function (geo, seriesModel, visualMapModel, api) { + var inRangeVisuals = visualMapModel.targetVisuals.inRange; + var outOfRangeVisuals = visualMapModel.targetVisuals.outOfRange; + // if (!visualMapping) { + // throw new Error('Data range must have color visuals'); + // } + + var data = seriesModel.getData(); + var hmLayer = this._hmLayer || (this._hmLayer || new Heatmap()); + hmLayer.blurSize = seriesModel.get('blurSize'); + hmLayer.pointSize = seriesModel.get('pointSize'); + hmLayer.minOpacity = seriesModel.get('minOpacity'); + hmLayer.maxOpacity = seriesModel.get('maxOpacity'); + + var rect = geo.getViewRect().clone(); + var roamTransform = geo.getRoamTransform(); + rect.applyTransform(roamTransform); + + // Clamp on viewport + var x = Math.max(rect.x, 0); + var y = Math.max(rect.y, 0); + var x2 = Math.min(rect.width + rect.x, api.getWidth()); + var y2 = Math.min(rect.height + rect.y, api.getHeight()); + var width = x2 - x; + var height = y2 - y; + + var dims = [ + data.mapDimension('lng'), + data.mapDimension('lat'), + data.mapDimension('value') + ]; + + var points = data.mapArray(dims, function (lng, lat, value) { + var pt = geo.dataToPoint([lng, lat]); + pt[0] -= x; + pt[1] -= y; + pt.push(value); + return pt; + }); + + var dataExtent = visualMapModel.getExtent(); + var isInRange = visualMapModel.type === 'visualMap.continuous' + ? getIsInContinuousRange(dataExtent, visualMapModel.option.range) + : getIsInPiecewiseRange( + dataExtent, visualMapModel.getPieceList(), visualMapModel.option.selected + ); + + hmLayer.update( + points, width, height, + inRangeVisuals.color.getNormalizer(), + { + inRange: inRangeVisuals.color.getColorMapper(), + outOfRange: outOfRangeVisuals.color.getColorMapper() + }, + isInRange + ); + var img = new ZImage({ + style: { + width: width, + height: height, + x: x, + y: y, + image: hmLayer.canvas + }, + silent: true + }); + this.group.add(img); + }, + + dispose: function () {} +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var PictorialBarSeries = BaseBarSeries.extend({ + + type: 'series.pictorialBar', + + dependencies: ['grid'], + + defaultOption: { + symbol: 'circle', // Customized bar shape + symbolSize: null, // Can be ['100%', '100%'], null means auto. + symbolRotate: null, + + symbolPosition: null, // 'start' or 'end' or 'center', null means auto. + symbolOffset: null, + symbolMargin: null, // start margin and end margin. Can be a number or a percent string. + // Auto margin by defualt. + symbolRepeat: false, // false/null/undefined, means no repeat. + // Can be true, means auto calculate repeat times and cut by data. + // Can be a number, specifies repeat times, and do not cut by data. + // Can be 'fixed', means auto calculate repeat times but do not cut by data. + symbolRepeatDirection: 'end', // 'end' means from 'start' to 'end'. + + symbolClip: false, + symbolBoundingData: null, // Can be 60 or -40 or [-40, 60] + symbolPatternSize: 400, // 400 * 400 px + + barGap: '-100%', // In most case, overlap is needed. + + // z can be set in data item, which is z2 actually. + + // Disable progressive + progressive: 0, + hoverAnimation: false // Open only when needed. + }, + + getInitialData: function (option) { + // Disable stack. + option.stack = null; + return PictorialBarSeries.superApply(this, 'getInitialData', arguments); + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var BAR_BORDER_WIDTH_QUERY$1 = ['itemStyle', 'borderWidth']; + +// index: +isHorizontal +var LAYOUT_ATTRS = [ + {xy: 'x', wh: 'width', index: 0, posDesc: ['left', 'right']}, + {xy: 'y', wh: 'height', index: 1, posDesc: ['top', 'bottom']} +]; + +var pathForLineWidth = new Circle(); + +var BarView$1 = extendChartView({ + + type: 'pictorialBar', + + render: function (seriesModel, ecModel, api) { + var group = this.group; + var data = seriesModel.getData(); + var oldData = this._data; + + var cartesian = seriesModel.coordinateSystem; + var baseAxis = cartesian.getBaseAxis(); + var isHorizontal = !!baseAxis.isHorizontal(); + var coordSysRect = cartesian.grid.getRect(); + + var opt = { + ecSize: {width: api.getWidth(), height: api.getHeight()}, + seriesModel: seriesModel, + coordSys: cartesian, + coordSysExtent: [ + [coordSysRect.x, coordSysRect.x + coordSysRect.width], + [coordSysRect.y, coordSysRect.y + coordSysRect.height] + ], + isHorizontal: isHorizontal, + valueDim: LAYOUT_ATTRS[+isHorizontal], + categoryDim: LAYOUT_ATTRS[1 - isHorizontal] + }; + + data.diff(oldData) + .add(function (dataIndex) { + if (!data.hasValue(dataIndex)) { + return; + } + + var itemModel = getItemModel(data, dataIndex); + var symbolMeta = getSymbolMeta(data, dataIndex, itemModel, opt); + + var bar = createBar(data, opt, symbolMeta); + + data.setItemGraphicEl(dataIndex, bar); + group.add(bar); + + updateCommon$1(bar, opt, symbolMeta); + }) + .update(function (newIndex, oldIndex) { + var bar = oldData.getItemGraphicEl(oldIndex); + + if (!data.hasValue(newIndex)) { + group.remove(bar); + return; + } + + var itemModel = getItemModel(data, newIndex); + var symbolMeta = getSymbolMeta(data, newIndex, itemModel, opt); + + var pictorialShapeStr = getShapeStr(data, symbolMeta); + if (bar && pictorialShapeStr !== bar.__pictorialShapeStr) { + group.remove(bar); + data.setItemGraphicEl(newIndex, null); + bar = null; + } + + if (bar) { + updateBar(bar, opt, symbolMeta); + } + else { + bar = createBar(data, opt, symbolMeta, true); + } + + data.setItemGraphicEl(newIndex, bar); + bar.__pictorialSymbolMeta = symbolMeta; + // Add back + group.add(bar); + + updateCommon$1(bar, opt, symbolMeta); + }) + .remove(function (dataIndex) { + var bar = oldData.getItemGraphicEl(dataIndex); + bar && removeBar(oldData, dataIndex, bar.__pictorialSymbolMeta.animationModel, bar); + }) + .execute(); + + this._data = data; + + return this.group; + }, + + dispose: noop, + + remove: function (ecModel, api) { + var group = this.group; + var data = this._data; + if (ecModel.get('animation')) { + if (data) { + data.eachItemGraphicEl(function (bar) { + removeBar(data, bar.dataIndex, ecModel, bar); + }); + } + } + else { + group.removeAll(); + } + } +}); + + +// Set or calculate default value about symbol, and calculate layout info. +function getSymbolMeta(data, dataIndex, itemModel, opt) { + var layout = data.getItemLayout(dataIndex); + var symbolRepeat = itemModel.get('symbolRepeat'); + var symbolClip = itemModel.get('symbolClip'); + var symbolPosition = itemModel.get('symbolPosition') || 'start'; + var symbolRotate = itemModel.get('symbolRotate'); + var rotation = (symbolRotate || 0) * Math.PI / 180 || 0; + var symbolPatternSize = itemModel.get('symbolPatternSize') || 2; + var isAnimationEnabled = itemModel.isAnimationEnabled(); + + var symbolMeta = { + dataIndex: dataIndex, + layout: layout, + itemModel: itemModel, + symbolType: data.getItemVisual(dataIndex, 'symbol') || 'circle', + color: data.getItemVisual(dataIndex, 'color'), + symbolClip: symbolClip, + symbolRepeat: symbolRepeat, + symbolRepeatDirection: itemModel.get('symbolRepeatDirection'), + symbolPatternSize: symbolPatternSize, + rotation: rotation, + animationModel: isAnimationEnabled ? itemModel : null, + hoverAnimation: isAnimationEnabled && itemModel.get('hoverAnimation'), + z2: itemModel.getShallow('z', true) || 0 + }; + + prepareBarLength(itemModel, symbolRepeat, layout, opt, symbolMeta); + + prepareSymbolSize( + data, dataIndex, layout, symbolRepeat, symbolClip, symbolMeta.boundingLength, + symbolMeta.pxSign, symbolPatternSize, opt, symbolMeta + ); + + prepareLineWidth(itemModel, symbolMeta.symbolScale, rotation, opt, symbolMeta); + + var symbolSize = symbolMeta.symbolSize; + var symbolOffset = itemModel.get('symbolOffset'); + if (isArray(symbolOffset)) { + symbolOffset = [ + parsePercent$1(symbolOffset[0], symbolSize[0]), + parsePercent$1(symbolOffset[1], symbolSize[1]) + ]; + } + + prepareLayoutInfo( + itemModel, symbolSize, layout, symbolRepeat, symbolClip, symbolOffset, + symbolPosition, symbolMeta.valueLineWidth, symbolMeta.boundingLength, symbolMeta.repeatCutLength, + opt, symbolMeta + ); + + return symbolMeta; +} + +// bar length can be negative. +function prepareBarLength(itemModel, symbolRepeat, layout, opt, output) { + var valueDim = opt.valueDim; + var symbolBoundingData = itemModel.get('symbolBoundingData'); + var valueAxis = opt.coordSys.getOtherAxis(opt.coordSys.getBaseAxis()); + var zeroPx = valueAxis.toGlobalCoord(valueAxis.dataToCoord(0)); + var pxSignIdx = 1 - +(layout[valueDim.wh] <= 0); + var boundingLength; + + if (isArray(symbolBoundingData)) { + var symbolBoundingExtent = [ + convertToCoordOnAxis(valueAxis, symbolBoundingData[0]) - zeroPx, + convertToCoordOnAxis(valueAxis, symbolBoundingData[1]) - zeroPx + ]; + symbolBoundingExtent[1] < symbolBoundingExtent[0] && (symbolBoundingExtent.reverse()); + boundingLength = symbolBoundingExtent[pxSignIdx]; + } + else if (symbolBoundingData != null) { + boundingLength = convertToCoordOnAxis(valueAxis, symbolBoundingData) - zeroPx; + } + else if (symbolRepeat) { + boundingLength = opt.coordSysExtent[valueDim.index][pxSignIdx] - zeroPx; + } + else { + boundingLength = layout[valueDim.wh]; + } + + output.boundingLength = boundingLength; + + if (symbolRepeat) { + output.repeatCutLength = layout[valueDim.wh]; + } + + output.pxSign = boundingLength > 0 ? 1 : boundingLength < 0 ? -1 : 0; +} + +function convertToCoordOnAxis(axis, value) { + return axis.toGlobalCoord(axis.dataToCoord(axis.scale.parse(value))); +} + +// Support ['100%', '100%'] +function prepareSymbolSize( + data, dataIndex, layout, symbolRepeat, symbolClip, boundingLength, + pxSign, symbolPatternSize, opt, output +) { + var valueDim = opt.valueDim; + var categoryDim = opt.categoryDim; + var categorySize = Math.abs(layout[categoryDim.wh]); + + var symbolSize = data.getItemVisual(dataIndex, 'symbolSize'); + if (isArray(symbolSize)) { + symbolSize = symbolSize.slice(); + } + else { + if (symbolSize == null) { + symbolSize = '100%'; + } + symbolSize = [symbolSize, symbolSize]; + } + + // Note: percentage symbolSize (like '100%') do not consider lineWidth, because it is + // to complicated to calculate real percent value if considering scaled lineWidth. + // So the actual size will bigger than layout size if lineWidth is bigger than zero, + // which can be tolerated in pictorial chart. + + symbolSize[categoryDim.index] = parsePercent$1( + symbolSize[categoryDim.index], + categorySize + ); + symbolSize[valueDim.index] = parsePercent$1( + symbolSize[valueDim.index], + symbolRepeat ? categorySize : Math.abs(boundingLength) + ); + + output.symbolSize = symbolSize; + + // If x or y is less than zero, show reversed shape. + var symbolScale = output.symbolScale = [ + symbolSize[0] / symbolPatternSize, + symbolSize[1] / symbolPatternSize + ]; + // Follow convention, 'right' and 'top' is the normal scale. + symbolScale[valueDim.index] *= (opt.isHorizontal ? -1 : 1) * pxSign; +} + +function prepareLineWidth(itemModel, symbolScale, rotation, opt, output) { + // In symbols are drawn with scale, so do not need to care about the case that width + // or height are too small. But symbol use strokeNoScale, where acture lineWidth should + // be calculated. + var valueLineWidth = itemModel.get(BAR_BORDER_WIDTH_QUERY$1) || 0; + + if (valueLineWidth) { + pathForLineWidth.attr({ + scale: symbolScale.slice(), + rotation: rotation + }); + pathForLineWidth.updateTransform(); + valueLineWidth /= pathForLineWidth.getLineScale(); + valueLineWidth *= symbolScale[opt.valueDim.index]; + } + + output.valueLineWidth = valueLineWidth; +} + +function prepareLayoutInfo( + itemModel, symbolSize, layout, symbolRepeat, symbolClip, symbolOffset, + symbolPosition, valueLineWidth, boundingLength, repeatCutLength, opt, output +) { + var categoryDim = opt.categoryDim; + var valueDim = opt.valueDim; + var pxSign = output.pxSign; + + var unitLength = Math.max(symbolSize[valueDim.index] + valueLineWidth, 0); + var pathLen = unitLength; + + // Note: rotation will not effect the layout of symbols, because user may + // want symbols to rotate on its center, which should not be translated + // when rotating. + + if (symbolRepeat) { + var absBoundingLength = Math.abs(boundingLength); + + var symbolMargin = retrieve(itemModel.get('symbolMargin'), '15%') + ''; + var hasEndGap = false; + if (symbolMargin.lastIndexOf('!') === symbolMargin.length - 1) { + hasEndGap = true; + symbolMargin = symbolMargin.slice(0, symbolMargin.length - 1); + } + symbolMargin = parsePercent$1(symbolMargin, symbolSize[valueDim.index]); + + var uLenWithMargin = Math.max(unitLength + symbolMargin * 2, 0); + + // When symbol margin is less than 0, margin at both ends will be subtracted + // to ensure that all of the symbols will not be overflow the given area. + var endFix = hasEndGap ? 0 : symbolMargin * 2; + + // Both final repeatTimes and final symbolMargin area calculated based on + // boundingLength. + var repeatSpecified = isNumeric(symbolRepeat); + var repeatTimes = repeatSpecified + ? symbolRepeat + : toIntTimes((absBoundingLength + endFix) / uLenWithMargin); + + // Adjust calculate margin, to ensure each symbol is displayed + // entirely in the given layout area. + var mDiff = absBoundingLength - repeatTimes * unitLength; + symbolMargin = mDiff / 2 / (hasEndGap ? repeatTimes : repeatTimes - 1); + uLenWithMargin = unitLength + symbolMargin * 2; + endFix = hasEndGap ? 0 : symbolMargin * 2; + + // Update repeatTimes when not all symbol will be shown. + if (!repeatSpecified && symbolRepeat !== 'fixed') { + repeatTimes = repeatCutLength + ? toIntTimes((Math.abs(repeatCutLength) + endFix) / uLenWithMargin) + : 0; + } + + pathLen = repeatTimes * uLenWithMargin - endFix; + output.repeatTimes = repeatTimes; + output.symbolMargin = symbolMargin; + } + + var sizeFix = pxSign * (pathLen / 2); + var pathPosition = output.pathPosition = []; + pathPosition[categoryDim.index] = layout[categoryDim.wh] / 2; + pathPosition[valueDim.index] = symbolPosition === 'start' + ? sizeFix + : symbolPosition === 'end' + ? boundingLength - sizeFix + : boundingLength / 2; // 'center' + if (symbolOffset) { + pathPosition[0] += symbolOffset[0]; + pathPosition[1] += symbolOffset[1]; + } + + var bundlePosition = output.bundlePosition = []; + bundlePosition[categoryDim.index] = layout[categoryDim.xy]; + bundlePosition[valueDim.index] = layout[valueDim.xy]; + + var barRectShape = output.barRectShape = extend({}, layout); + barRectShape[valueDim.wh] = pxSign * Math.max( + Math.abs(layout[valueDim.wh]), Math.abs(pathPosition[valueDim.index] + sizeFix) + ); + barRectShape[categoryDim.wh] = layout[categoryDim.wh]; + + var clipShape = output.clipShape = {}; + // Consider that symbol may be overflow layout rect. + clipShape[categoryDim.xy] = -layout[categoryDim.xy]; + clipShape[categoryDim.wh] = opt.ecSize[categoryDim.wh]; + clipShape[valueDim.xy] = 0; + clipShape[valueDim.wh] = layout[valueDim.wh]; +} + +function createPath(symbolMeta) { + var symbolPatternSize = symbolMeta.symbolPatternSize; + var path = createSymbol( + // Consider texture img, make a big size. + symbolMeta.symbolType, + -symbolPatternSize / 2, + -symbolPatternSize / 2, + symbolPatternSize, + symbolPatternSize, + symbolMeta.color + ); + path.attr({ + culling: true + }); + path.type !== 'image' && path.setStyle({ + strokeNoScale: true + }); + + return path; +} + +function createOrUpdateRepeatSymbols(bar, opt, symbolMeta, isUpdate) { + var bundle = bar.__pictorialBundle; + var symbolSize = symbolMeta.symbolSize; + var valueLineWidth = symbolMeta.valueLineWidth; + var pathPosition = symbolMeta.pathPosition; + var valueDim = opt.valueDim; + var repeatTimes = symbolMeta.repeatTimes || 0; + + var index = 0; + var unit = symbolSize[opt.valueDim.index] + valueLineWidth + symbolMeta.symbolMargin * 2; + + eachPath(bar, function (path) { + path.__pictorialAnimationIndex = index; + path.__pictorialRepeatTimes = repeatTimes; + if (index < repeatTimes) { + updateAttr(path, null, makeTarget(index), symbolMeta, isUpdate); + } + else { + updateAttr(path, null, {scale: [0, 0]}, symbolMeta, isUpdate, function () { + bundle.remove(path); + }); + } + + updateHoverAnimation(path, symbolMeta); + + index++; + }); + + for (; index < repeatTimes; index++) { + var path = createPath(symbolMeta); + path.__pictorialAnimationIndex = index; + path.__pictorialRepeatTimes = repeatTimes; + bundle.add(path); + + var target = makeTarget(index); + + updateAttr( + path, + { + position: target.position, + scale: [0, 0] + }, + { + scale: target.scale, + rotation: target.rotation + }, + symbolMeta, + isUpdate + ); + + // FIXME + // If all emphasis/normal through action. + path + .on('mouseover', onMouseOver) + .on('mouseout', onMouseOut); + + updateHoverAnimation(path, symbolMeta); + } + + function makeTarget(index) { + var position = pathPosition.slice(); + // (start && pxSign > 0) || (end && pxSign < 0): i = repeatTimes - index + // Otherwise: i = index; + var pxSign = symbolMeta.pxSign; + var i = index; + if (symbolMeta.symbolRepeatDirection === 'start' ? pxSign > 0 : pxSign < 0) { + i = repeatTimes - 1 - index; + } + position[valueDim.index] = unit * (i - repeatTimes / 2 + 0.5) + pathPosition[valueDim.index]; + + return { + position: position, + scale: symbolMeta.symbolScale.slice(), + rotation: symbolMeta.rotation + }; + } + + function onMouseOver() { + eachPath(bar, function (path) { + path.trigger('emphasis'); + }); + } + + function onMouseOut() { + eachPath(bar, function (path) { + path.trigger('normal'); + }); + } +} + +function createOrUpdateSingleSymbol(bar, opt, symbolMeta, isUpdate) { + var bundle = bar.__pictorialBundle; + var mainPath = bar.__pictorialMainPath; + + if (!mainPath) { + mainPath = bar.__pictorialMainPath = createPath(symbolMeta); + bundle.add(mainPath); + + updateAttr( + mainPath, + { + position: symbolMeta.pathPosition.slice(), + scale: [0, 0], + rotation: symbolMeta.rotation + }, + { + scale: symbolMeta.symbolScale.slice() + }, + symbolMeta, + isUpdate + ); + + mainPath + .on('mouseover', onMouseOver) + .on('mouseout', onMouseOut); + } + else { + updateAttr( + mainPath, + null, + { + position: symbolMeta.pathPosition.slice(), + scale: symbolMeta.symbolScale.slice(), + rotation: symbolMeta.rotation + }, + symbolMeta, + isUpdate + ); + } + + updateHoverAnimation(mainPath, symbolMeta); + + function onMouseOver() { + this.trigger('emphasis'); + } + + function onMouseOut() { + this.trigger('normal'); + } +} + +// bar rect is used for label. +function createOrUpdateBarRect(bar, symbolMeta, isUpdate) { + var rectShape = extend({}, symbolMeta.barRectShape); + + var barRect = bar.__pictorialBarRect; + if (!barRect) { + barRect = bar.__pictorialBarRect = new Rect({ + z2: 2, + shape: rectShape, + silent: true, + style: { + stroke: 'transparent', + fill: 'transparent', + lineWidth: 0 + } + }); + + bar.add(barRect); + } + else { + updateAttr(barRect, null, {shape: rectShape}, symbolMeta, isUpdate); + } +} + +function createOrUpdateClip(bar, opt, symbolMeta, isUpdate) { + // If not clip, symbol will be remove and rebuilt. + if (symbolMeta.symbolClip) { + var clipPath = bar.__pictorialClipPath; + var clipShape = extend({}, symbolMeta.clipShape); + var valueDim = opt.valueDim; + var animationModel = symbolMeta.animationModel; + var dataIndex = symbolMeta.dataIndex; + + if (clipPath) { + updateProps( + clipPath, {shape: clipShape}, animationModel, dataIndex + ); + } + else { + clipShape[valueDim.wh] = 0; + clipPath = new Rect({shape: clipShape}); + bar.__pictorialBundle.setClipPath(clipPath); + bar.__pictorialClipPath = clipPath; + + var target = {}; + target[valueDim.wh] = symbolMeta.clipShape[valueDim.wh]; + + graphic[isUpdate ? 'updateProps' : 'initProps']( + clipPath, {shape: target}, animationModel, dataIndex + ); + } + } +} + +function getItemModel(data, dataIndex) { + var itemModel = data.getItemModel(dataIndex); + itemModel.getAnimationDelayParams = getAnimationDelayParams; + itemModel.isAnimationEnabled = isAnimationEnabled; + return itemModel; +} + +function getAnimationDelayParams(path) { + // The order is the same as the z-order, see `symbolRepeatDiretion`. + return { + index: path.__pictorialAnimationIndex, + count: path.__pictorialRepeatTimes + }; +} + +function isAnimationEnabled() { + // `animation` prop can be set on itemModel in pictorial bar chart. + return this.parentModel.isAnimationEnabled() && !!this.getShallow('animation'); +} + +function updateHoverAnimation(path, symbolMeta) { + path.off('emphasis').off('normal'); + + var scale = symbolMeta.symbolScale.slice(); + + symbolMeta.hoverAnimation && path + .on('emphasis', function () { + this.animateTo({ + scale: [scale[0] * 1.1, scale[1] * 1.1] + }, 400, 'elasticOut'); + }) + .on('normal', function () { + this.animateTo({ + scale: scale.slice() + }, 400, 'elasticOut'); + }); +} + +function createBar(data, opt, symbolMeta, isUpdate) { + // bar is the main element for each data. + var bar = new Group(); + // bundle is used for location and clip. + var bundle = new Group(); + bar.add(bundle); + bar.__pictorialBundle = bundle; + bundle.attr('position', symbolMeta.bundlePosition.slice()); + + if (symbolMeta.symbolRepeat) { + createOrUpdateRepeatSymbols(bar, opt, symbolMeta); + } + else { + createOrUpdateSingleSymbol(bar, opt, symbolMeta); + } + + createOrUpdateBarRect(bar, symbolMeta, isUpdate); + + createOrUpdateClip(bar, opt, symbolMeta, isUpdate); + + bar.__pictorialShapeStr = getShapeStr(data, symbolMeta); + bar.__pictorialSymbolMeta = symbolMeta; + + return bar; +} + +function updateBar(bar, opt, symbolMeta) { + var animationModel = symbolMeta.animationModel; + var dataIndex = symbolMeta.dataIndex; + var bundle = bar.__pictorialBundle; + + updateProps( + bundle, {position: symbolMeta.bundlePosition.slice()}, animationModel, dataIndex + ); + + if (symbolMeta.symbolRepeat) { + createOrUpdateRepeatSymbols(bar, opt, symbolMeta, true); + } + else { + createOrUpdateSingleSymbol(bar, opt, symbolMeta, true); + } + + createOrUpdateBarRect(bar, symbolMeta, true); + + createOrUpdateClip(bar, opt, symbolMeta, true); +} + +function removeBar(data, dataIndex, animationModel, bar) { + // Not show text when animating + var labelRect = bar.__pictorialBarRect; + labelRect && (labelRect.style.text = null); + + var pathes = []; + eachPath(bar, function (path) { + pathes.push(path); + }); + bar.__pictorialMainPath && pathes.push(bar.__pictorialMainPath); + + // I do not find proper remove animation for clip yet. + bar.__pictorialClipPath && (animationModel = null); + + each$1(pathes, function (path) { + updateProps( + path, {scale: [0, 0]}, animationModel, dataIndex, + function () { + bar.parent && bar.parent.remove(bar); + } + ); + }); + + data.setItemGraphicEl(dataIndex, null); +} + +function getShapeStr(data, symbolMeta) { + return [ + data.getItemVisual(symbolMeta.dataIndex, 'symbol') || 'none', + !!symbolMeta.symbolRepeat, + !!symbolMeta.symbolClip + ].join(':'); +} + +function eachPath(bar, cb, context) { + // Do not use Group#eachChild, because it do not support remove. + each$1(bar.__pictorialBundle.children(), function (el) { + el !== bar.__pictorialBarRect && cb.call(context, el); + }); +} + +function updateAttr(el, immediateAttrs, animationAttrs, symbolMeta, isUpdate, cb) { + immediateAttrs && el.attr(immediateAttrs); + // when symbolCip used, only clip path has init animation, otherwise it would be weird effect. + if (symbolMeta.symbolClip && !isUpdate) { + animationAttrs && el.attr(animationAttrs); + } + else { + animationAttrs && graphic[isUpdate ? 'updateProps' : 'initProps']( + el, animationAttrs, symbolMeta.animationModel, symbolMeta.dataIndex, cb + ); + } +} + +function updateCommon$1(bar, opt, symbolMeta) { + var color = symbolMeta.color; + var dataIndex = symbolMeta.dataIndex; + var itemModel = symbolMeta.itemModel; + // Color must be excluded. + // Because symbol provide setColor individually to set fill and stroke + var normalStyle = itemModel.getModel('itemStyle').getItemStyle(['color']); + var hoverStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle(); + var cursorStyle = itemModel.getShallow('cursor'); + + eachPath(bar, function (path) { + // PENDING setColor should be before setStyle!!! + path.setColor(color); + path.setStyle(defaults( + { + fill: color, + opacity: symbolMeta.opacity + }, + normalStyle + )); + setHoverStyle(path, hoverStyle); + + cursorStyle && (path.cursor = cursorStyle); + path.z2 = symbolMeta.z2; + }); + + var barRectHoverStyle = {}; + var barPositionOutside = opt.valueDim.posDesc[+(symbolMeta.boundingLength > 0)]; + var barRect = bar.__pictorialBarRect; + + setLabel( + barRect.style, barRectHoverStyle, itemModel, + color, opt.seriesModel, dataIndex, barPositionOutside + ); + + setHoverStyle(barRect, barRectHoverStyle); +} + +function toIntTimes(times) { + var roundedTimes = Math.round(times); + // Escapse accurate error + return Math.abs(times - roundedTimes) < 1e-4 + ? roundedTimes + : Math.ceil(times); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// In case developer forget to include grid component +registerLayout(curry( + layout, 'pictorialBar' +)); +registerVisual(visualSymbol('pictorialBar', 'roundRect')); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @constructor module:echarts/coord/single/SingleAxis + * @extends {module:echarts/coord/Axis} + * @param {string} dim + * @param {*} scale + * @param {Array.} coordExtent + * @param {string} axisType + * @param {string} position + */ +var SingleAxis = function (dim, scale, coordExtent, axisType, position) { + + Axis.call(this, dim, scale, coordExtent); + + /** + * Axis type + * - 'category' + * - 'value' + * - 'time' + * - 'log' + * @type {string} + */ + this.type = axisType || 'value'; + + /** + * Axis position + * - 'top' + * - 'bottom' + * - 'left' + * - 'right' + * @type {string} + */ + this.position = position || 'bottom'; + + /** + * Axis orient + * - 'horizontal' + * - 'vertical' + * @type {[type]} + */ + this.orient = null; + +}; + +SingleAxis.prototype = { + + constructor: SingleAxis, + + /** + * Axis model + * @type {module:echarts/coord/single/AxisModel} + */ + model: null, + + /** + * Judge the orient of the axis. + * @return {boolean} + */ + isHorizontal: function () { + var position = this.position; + return position === 'top' || position === 'bottom'; + + }, + + /** + * @override + */ + pointToData: function (point, clamp) { + return this.coordinateSystem.pointToData(point, clamp)[0]; + }, + + /** + * Convert the local coord(processed by dataToCoord()) + * to global coord(concrete pixel coord). + * designated by module:echarts/coord/single/Single. + * @type {Function} + */ + toGlobalCoord: null, + + /** + * Convert the global coord to local coord. + * designated by module:echarts/coord/single/Single. + * @type {Function} + */ + toLocalCoord: null + +}; + +inherits(SingleAxis, Axis); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Single coordinates system. + */ + +/** + * Create a single coordinates system. + * + * @param {module:echarts/coord/single/AxisModel} axisModel + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + */ +function Single(axisModel, ecModel, api) { + + /** + * @type {string} + * @readOnly + */ + this.dimension = 'single'; + + /** + * Add it just for draw tooltip. + * + * @type {Array.} + * @readOnly + */ + this.dimensions = ['single']; + + /** + * @private + * @type {module:echarts/coord/single/SingleAxis}. + */ + this._axis = null; + + /** + * @private + * @type {module:zrender/core/BoundingRect} + */ + this._rect; + + this._init(axisModel, ecModel, api); + + /** + * @type {module:echarts/coord/single/AxisModel} + */ + this.model = axisModel; +} + +Single.prototype = { + + type: 'singleAxis', + + axisPointerEnabled: true, + + constructor: Single, + + /** + * Initialize single coordinate system. + * + * @param {module:echarts/coord/single/AxisModel} axisModel + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + * @private + */ + _init: function (axisModel, ecModel, api) { + + var dim = this.dimension; + + var axis = new SingleAxis( + dim, + createScaleByModel(axisModel), + [0, 0], + axisModel.get('type'), + axisModel.get('position') + ); + + var isCategory = axis.type === 'category'; + axis.onBand = isCategory && axisModel.get('boundaryGap'); + axis.inverse = axisModel.get('inverse'); + axis.orient = axisModel.get('orient'); + + axisModel.axis = axis; + axis.model = axisModel; + axis.coordinateSystem = this; + this._axis = axis; + }, + + /** + * Update axis scale after data processed + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + */ + update: function (ecModel, api) { + ecModel.eachSeries(function (seriesModel) { + if (seriesModel.coordinateSystem === this) { + var data = seriesModel.getData(); + each$1(data.mapDimension(this.dimension, true), function (dim) { + this._axis.scale.unionExtentFromData(data, dim); + }, this); + niceScaleExtent(this._axis.scale, this._axis.model); + } + }, this); + }, + + /** + * Resize the single coordinate system. + * + * @param {module:echarts/coord/single/AxisModel} axisModel + * @param {module:echarts/ExtensionAPI} api + */ + resize: function (axisModel, api) { + this._rect = getLayoutRect( + { + left: axisModel.get('left'), + top: axisModel.get('top'), + right: axisModel.get('right'), + bottom: axisModel.get('bottom'), + width: axisModel.get('width'), + height: axisModel.get('height') + }, + { + width: api.getWidth(), + height: api.getHeight() + } + ); + + this._adjustAxis(); + }, + + /** + * @return {module:zrender/core/BoundingRect} + */ + getRect: function () { + return this._rect; + }, + + /** + * @private + */ + _adjustAxis: function () { + + var rect = this._rect; + var axis = this._axis; + + var isHorizontal = axis.isHorizontal(); + var extent = isHorizontal ? [0, rect.width] : [0, rect.height]; + var idx = axis.reverse ? 1 : 0; + + axis.setExtent(extent[idx], extent[1 - idx]); + + this._updateAxisTransform(axis, isHorizontal ? rect.x : rect.y); + + }, + + /** + * @param {module:echarts/coord/single/SingleAxis} axis + * @param {number} coordBase + */ + _updateAxisTransform: function (axis, coordBase) { + + var axisExtent = axis.getExtent(); + var extentSum = axisExtent[0] + axisExtent[1]; + var isHorizontal = axis.isHorizontal(); + + axis.toGlobalCoord = isHorizontal + ? function (coord) { + return coord + coordBase; + } + : function (coord) { + return extentSum - coord + coordBase; + }; + + axis.toLocalCoord = isHorizontal + ? function (coord) { + return coord - coordBase; + } + : function (coord) { + return extentSum - coord + coordBase; + }; + }, + + /** + * Get axis. + * + * @return {module:echarts/coord/single/SingleAxis} + */ + getAxis: function () { + return this._axis; + }, + + /** + * Get axis, add it just for draw tooltip. + * + * @return {[type]} [description] + */ + getBaseAxis: function () { + return this._axis; + }, + + /** + * @return {Array.} + */ + getAxes: function () { + return [this._axis]; + }, + + /** + * @return {Object} {baseAxes: [], otherAxes: []} + */ + getTooltipAxes: function () { + return {baseAxes: [this.getAxis()]}; + }, + + /** + * If contain point. + * + * @param {Array.} point + * @return {boolean} + */ + containPoint: function (point) { + var rect = this.getRect(); + var axis = this.getAxis(); + var orient = axis.orient; + if (orient === 'horizontal') { + return axis.contain(axis.toLocalCoord(point[0])) + && (point[1] >= rect.y && point[1] <= (rect.y + rect.height)); + } + else { + return axis.contain(axis.toLocalCoord(point[1])) + && (point[0] >= rect.y && point[0] <= (rect.y + rect.height)); + } + }, + + /** + * @param {Array.} point + * @return {Array.} + */ + pointToData: function (point) { + var axis = this.getAxis(); + return [axis.coordToData(axis.toLocalCoord( + point[axis.orient === 'horizontal' ? 0 : 1] + ))]; + }, + + /** + * Convert the series data to concrete point. + * + * @param {number|Array.} val + * @return {Array.} + */ + dataToPoint: function (val) { + var axis = this.getAxis(); + var rect = this.getRect(); + var pt = []; + var idx = axis.orient === 'horizontal' ? 0 : 1; + + if (val instanceof Array) { + val = val[0]; + } + + pt[idx] = axis.toGlobalCoord(axis.dataToCoord(+val)); + pt[1 - idx] = idx === 0 ? (rect.y + rect.height / 2) : (rect.x + rect.width / 2); + return pt; + } + +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Single coordinate system creator. + */ + +/** + * Create single coordinate system and inject it into seriesModel. + * + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + * @return {Array.} + */ +function create$3(ecModel, api) { + var singles = []; + + ecModel.eachComponent('singleAxis', function (axisModel, idx) { + + var single = new Single(axisModel, ecModel, api); + single.name = 'single_' + idx; + single.resize(axisModel, api); + axisModel.coordinateSystem = single; + singles.push(single); + + }); + + ecModel.eachSeries(function (seriesModel) { + if (seriesModel.get('coordinateSystem') === 'singleAxis') { + var singleAxisModel = ecModel.queryComponents({ + mainType: 'singleAxis', + index: seriesModel.get('singleAxisIndex'), + id: seriesModel.get('singleAxisId') + })[0]; + seriesModel.coordinateSystem = singleAxisModel && singleAxisModel.coordinateSystem; + } + }); + + return singles; +} + +CoordinateSystemManager.register('single', { + create: create$3, + dimensions: Single.prototype.dimensions +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @param {Object} opt {labelInside} + * @return {Object} { + * position, rotation, labelDirection, labelOffset, + * tickDirection, labelRotate, z2 + * } + */ +function layout$2(axisModel, opt) { + opt = opt || {}; + var single = axisModel.coordinateSystem; + var axis = axisModel.axis; + var layout = {}; + + var axisPosition = axis.position; + var orient = axis.orient; + + var rect = single.getRect(); + var rectBound = [rect.x, rect.x + rect.width, rect.y, rect.y + rect.height]; + + var positionMap = { + horizontal: {top: rectBound[2], bottom: rectBound[3]}, + vertical: {left: rectBound[0], right: rectBound[1]} + }; + + layout.position = [ + orient === 'vertical' + ? positionMap.vertical[axisPosition] + : rectBound[0], + orient === 'horizontal' + ? positionMap.horizontal[axisPosition] + : rectBound[3] + ]; + + var r = {horizontal: 0, vertical: 1}; + layout.rotation = Math.PI / 2 * r[orient]; + + var directionMap = {top: -1, bottom: 1, right: 1, left: -1}; + + layout.labelDirection = layout.tickDirection + = layout.nameDirection + = directionMap[axisPosition]; + + if (axisModel.get('axisTick.inside')) { + layout.tickDirection = -layout.tickDirection; + } + + if (retrieve(opt.labelInside, axisModel.get('axisLabel.inside'))) { + layout.labelDirection = -layout.labelDirection; + } + + var labelRotation = opt.rotate; + labelRotation == null && (labelRotation = axisModel.get('axisLabel.rotate')); + layout.labelRotation = axisPosition === 'top' ? -labelRotation : labelRotation; + + layout.z2 = 1; + + return layout; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var axisBuilderAttrs$2 = [ + 'axisLine', 'axisTickLabel', 'axisName' +]; + +var selfBuilderAttr = 'splitLine'; + +var SingleAxisView = AxisView.extend({ + + type: 'singleAxis', + + axisPointerClass: 'SingleAxisPointer', + + render: function (axisModel, ecModel, api, payload) { + + var group = this.group; + + group.removeAll(); + + var layout = layout$2(axisModel); + + var axisBuilder = new AxisBuilder(axisModel, layout); + + each$1(axisBuilderAttrs$2, axisBuilder.add, axisBuilder); + + group.add(axisBuilder.getGroup()); + + if (axisModel.get(selfBuilderAttr + '.show')) { + this['_' + selfBuilderAttr](axisModel); + } + + SingleAxisView.superCall(this, 'render', axisModel, ecModel, api, payload); + }, + + _splitLine: function (axisModel) { + var axis = axisModel.axis; + + if (axis.scale.isBlank()) { + return; + } + + var splitLineModel = axisModel.getModel('splitLine'); + var lineStyleModel = splitLineModel.getModel('lineStyle'); + var lineWidth = lineStyleModel.get('width'); + var lineColors = lineStyleModel.get('color'); + + lineColors = lineColors instanceof Array ? lineColors : [lineColors]; + + var gridRect = axisModel.coordinateSystem.getRect(); + var isHorizontal = axis.isHorizontal(); + + var splitLines = []; + var lineCount = 0; + + var ticksCoords = axis.getTicksCoords({ + tickModel: splitLineModel + }); + + var p1 = []; + var p2 = []; + + for (var i = 0; i < ticksCoords.length; ++i) { + var tickCoord = axis.toGlobalCoord(ticksCoords[i].coord); + if (isHorizontal) { + p1[0] = tickCoord; + p1[1] = gridRect.y; + p2[0] = tickCoord; + p2[1] = gridRect.y + gridRect.height; + } + else { + p1[0] = gridRect.x; + p1[1] = tickCoord; + p2[0] = gridRect.x + gridRect.width; + p2[1] = tickCoord; + } + var colorIndex = (lineCount++) % lineColors.length; + splitLines[colorIndex] = splitLines[colorIndex] || []; + splitLines[colorIndex].push(new Line({ + subPixelOptimize: true, + shape: { + x1: p1[0], + y1: p1[1], + x2: p2[0], + y2: p2[1] + }, + style: { + lineWidth: lineWidth + }, + silent: true + })); + } + + for (var i = 0; i < splitLines.length; ++i) { + this.group.add(mergePath(splitLines[i], { + style: { + stroke: lineColors[i % lineColors.length], + lineDash: lineStyleModel.getLineDash(lineWidth), + lineWidth: lineWidth + }, + silent: true + })); + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var AxisModel$4 = ComponentModel.extend({ + + type: 'singleAxis', + + layoutMode: 'box', + + /** + * @type {module:echarts/coord/single/SingleAxis} + */ + axis: null, + + /** + * @type {module:echarts/coord/single/Single} + */ + coordinateSystem: null, + + /** + * @override + */ + getCoordSysModel: function () { + return this; + } + +}); + +var defaultOption$2 = { + + left: '5%', + top: '5%', + right: '5%', + bottom: '5%', + + type: 'value', + + position: 'bottom', + + orient: 'horizontal', + + axisLine: { + show: true, + lineStyle: { + width: 1, + type: 'solid' + } + }, + + // Single coordinate system and single axis is the, + // which is used as the parent tooltip model. + // same model, so we set default tooltip show as true. + tooltip: { + show: true + }, + + axisTick: { + show: true, + length: 6, + lineStyle: { + width: 1 + } + }, + + axisLabel: { + show: true, + interval: 'auto' + }, + + splitLine: { + show: true, + lineStyle: { + type: 'dashed', + opacity: 0.2 + } + } +}; + +function getAxisType$2(axisName, option) { + return option.type || (option.data ? 'category' : 'value'); +} + +merge(AxisModel$4.prototype, axisModelCommonMixin); + +axisModelCreator('single', AxisModel$4, getAxisType$2, defaultOption$2); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @param {Object} finder contains {seriesIndex, dataIndex, dataIndexInside} + * @param {module:echarts/model/Global} ecModel + * @return {Object} {point: [x, y], el: ...} point Will not be null. + */ +var findPointFromSeries = function (finder, ecModel) { + var point = []; + var seriesIndex = finder.seriesIndex; + var seriesModel; + if (seriesIndex == null || !( + seriesModel = ecModel.getSeriesByIndex(seriesIndex) + )) { + return {point: []}; + } + + var data = seriesModel.getData(); + var dataIndex = queryDataIndex(data, finder); + if (dataIndex == null || dataIndex < 0 || isArray(dataIndex)) { + return {point: []}; + } + + var el = data.getItemGraphicEl(dataIndex); + var coordSys = seriesModel.coordinateSystem; + + if (seriesModel.getTooltipPosition) { + point = seriesModel.getTooltipPosition(dataIndex) || []; + } + else if (coordSys && coordSys.dataToPoint) { + point = coordSys.dataToPoint( + data.getValues( + map(coordSys.dimensions, function (dim) { + return data.mapDimension(dim); + }), dataIndex, true + ) + ) || []; + } + else if (el) { + // Use graphic bounding rect + var rect = el.getBoundingRect().clone(); + rect.applyTransform(el.transform); + point = [ + rect.x + rect.width / 2, + rect.y + rect.height / 2 + ]; + } + + return {point: point, el: el}; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var each$14 = each$1; +var curry$3 = curry; +var inner$9 = makeInner(); + +/** + * Basic logic: check all axis, if they do not demand show/highlight, + * then hide/downplay them. + * + * @param {Object} coordSysAxesInfo + * @param {Object} payload + * @param {string} [payload.currTrigger] 'click' | 'mousemove' | 'leave' + * @param {Array.} [payload.x] x and y, which are mandatory, specify a point to + * trigger axisPointer and tooltip. + * @param {Array.} [payload.y] x and y, which are mandatory, specify a point to + * trigger axisPointer and tooltip. + * @param {Object} [payload.seriesIndex] finder, optional, restrict target axes. + * @param {Object} [payload.dataIndex] finder, restrict target axes. + * @param {Object} [payload.axesInfo] finder, restrict target axes. + * [{ + * axisDim: 'x'|'y'|'angle'|..., + * axisIndex: ..., + * value: ... + * }, ...] + * @param {Function} [payload.dispatchAction] + * @param {Object} [payload.tooltipOption] + * @param {Object|Array.|Function} [payload.position] Tooltip position, + * which can be specified in dispatchAction + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + * @return {Object} content of event obj for echarts.connect. + */ +var axisTrigger = function (payload, ecModel, api) { + var currTrigger = payload.currTrigger; + var point = [payload.x, payload.y]; + var finder = payload; + var dispatchAction = payload.dispatchAction || bind(api.dispatchAction, api); + var coordSysAxesInfo = ecModel.getComponent('axisPointer').coordSysAxesInfo; + + // Pending + // See #6121. But we are not able to reproduce it yet. + if (!coordSysAxesInfo) { + return; + } + + if (illegalPoint(point)) { + // Used in the default behavior of `connection`: use the sample seriesIndex + // and dataIndex. And also used in the tooltipView trigger. + point = findPointFromSeries({ + seriesIndex: finder.seriesIndex, + // Do not use dataIndexInside from other ec instance. + // FIXME: auto detect it? + dataIndex: finder.dataIndex + }, ecModel).point; + } + var isIllegalPoint = illegalPoint(point); + + // Axis and value can be specified when calling dispatchAction({type: 'updateAxisPointer'}). + // Notice: In this case, it is difficult to get the `point` (which is necessary to show + // tooltip, so if point is not given, we just use the point found by sample seriesIndex + // and dataIndex. + var inputAxesInfo = finder.axesInfo; + + var axesInfo = coordSysAxesInfo.axesInfo; + var shouldHide = currTrigger === 'leave' || illegalPoint(point); + var outputFinder = {}; + + var showValueMap = {}; + var dataByCoordSys = {list: [], map: {}}; + var updaters = { + showPointer: curry$3(showPointer, showValueMap), + showTooltip: curry$3(showTooltip, dataByCoordSys) + }; + + // Process for triggered axes. + each$14(coordSysAxesInfo.coordSysMap, function (coordSys, coordSysKey) { + // If a point given, it must be contained by the coordinate system. + var coordSysContainsPoint = isIllegalPoint || coordSys.containPoint(point); + + each$14(coordSysAxesInfo.coordSysAxesInfo[coordSysKey], function (axisInfo, key) { + var axis = axisInfo.axis; + var inputAxisInfo = findInputAxisInfo(inputAxesInfo, axisInfo); + // If no inputAxesInfo, no axis is restricted. + if (!shouldHide && coordSysContainsPoint && (!inputAxesInfo || inputAxisInfo)) { + var val = inputAxisInfo && inputAxisInfo.value; + if (val == null && !isIllegalPoint) { + val = axis.pointToData(point); + } + val != null && processOnAxis(axisInfo, val, updaters, false, outputFinder); + } + }); + }); + + // Process for linked axes. + var linkTriggers = {}; + each$14(axesInfo, function (tarAxisInfo, tarKey) { + var linkGroup = tarAxisInfo.linkGroup; + + // If axis has been triggered in the previous stage, it should not be triggered by link. + if (linkGroup && !showValueMap[tarKey]) { + each$14(linkGroup.axesInfo, function (srcAxisInfo, srcKey) { + var srcValItem = showValueMap[srcKey]; + // If srcValItem exist, source axis is triggered, so link to target axis. + if (srcAxisInfo !== tarAxisInfo && srcValItem) { + var val = srcValItem.value; + linkGroup.mapper && (val = tarAxisInfo.axis.scale.parse(linkGroup.mapper( + val, makeMapperParam(srcAxisInfo), makeMapperParam(tarAxisInfo) + ))); + linkTriggers[tarAxisInfo.key] = val; + } + }); + } + }); + each$14(linkTriggers, function (val, tarKey) { + processOnAxis(axesInfo[tarKey], val, updaters, true, outputFinder); + }); + + updateModelActually(showValueMap, axesInfo, outputFinder); + dispatchTooltipActually(dataByCoordSys, point, payload, dispatchAction); + dispatchHighDownActually(axesInfo, dispatchAction, api); + + return outputFinder; +}; + +function processOnAxis(axisInfo, newValue, updaters, dontSnap, outputFinder) { + var axis = axisInfo.axis; + + if (axis.scale.isBlank() || !axis.containData(newValue)) { + return; + } + + if (!axisInfo.involveSeries) { + updaters.showPointer(axisInfo, newValue); + return; + } + + // Heavy calculation. So put it after axis.containData checking. + var payloadInfo = buildPayloadsBySeries(newValue, axisInfo); + var payloadBatch = payloadInfo.payloadBatch; + var snapToValue = payloadInfo.snapToValue; + + // Fill content of event obj for echarts.connect. + // By defualt use the first involved series data as a sample to connect. + if (payloadBatch[0] && outputFinder.seriesIndex == null) { + extend(outputFinder, payloadBatch[0]); + } + + // If no linkSource input, this process is for collecting link + // target, where snap should not be accepted. + if (!dontSnap && axisInfo.snap) { + if (axis.containData(snapToValue) && snapToValue != null) { + newValue = snapToValue; + } + } + + updaters.showPointer(axisInfo, newValue, payloadBatch, outputFinder); + // Tooltip should always be snapToValue, otherwise there will be + // incorrect "axis value ~ series value" mapping displayed in tooltip. + updaters.showTooltip(axisInfo, payloadInfo, snapToValue); +} + +function buildPayloadsBySeries(value, axisInfo) { + var axis = axisInfo.axis; + var dim = axis.dim; + var snapToValue = value; + var payloadBatch = []; + var minDist = Number.MAX_VALUE; + var minDiff = -1; + + each$14(axisInfo.seriesModels, function (series, idx) { + var dataDim = series.getData().mapDimension(dim, true); + var seriesNestestValue; + var dataIndices; + + if (series.getAxisTooltipData) { + var result = series.getAxisTooltipData(dataDim, value, axis); + dataIndices = result.dataIndices; + seriesNestestValue = result.nestestValue; + } + else { + dataIndices = series.getData().indicesOfNearest( + dataDim[0], + value, + // Add a threshold to avoid find the wrong dataIndex + // when data length is not same. + // false, + axis.type === 'category' ? 0.5 : null + ); + if (!dataIndices.length) { + return; + } + seriesNestestValue = series.getData().get(dataDim[0], dataIndices[0]); + } + + if (seriesNestestValue == null || !isFinite(seriesNestestValue)) { + return; + } + + var diff = value - seriesNestestValue; + var dist = Math.abs(diff); + // Consider category case + if (dist <= minDist) { + if (dist < minDist || (diff >= 0 && minDiff < 0)) { + minDist = dist; + minDiff = diff; + snapToValue = seriesNestestValue; + payloadBatch.length = 0; + } + each$14(dataIndices, function (dataIndex) { + payloadBatch.push({ + seriesIndex: series.seriesIndex, + dataIndexInside: dataIndex, + dataIndex: series.getData().getRawIndex(dataIndex) + }); + }); + } + }); + + return { + payloadBatch: payloadBatch, + snapToValue: snapToValue + }; +} + +function showPointer(showValueMap, axisInfo, value, payloadBatch) { + showValueMap[axisInfo.key] = {value: value, payloadBatch: payloadBatch}; +} + +function showTooltip(dataByCoordSys, axisInfo, payloadInfo, value) { + var payloadBatch = payloadInfo.payloadBatch; + var axis = axisInfo.axis; + var axisModel = axis.model; + var axisPointerModel = axisInfo.axisPointerModel; + + // If no data, do not create anything in dataByCoordSys, + // whose length will be used to judge whether dispatch action. + if (!axisInfo.triggerTooltip || !payloadBatch.length) { + return; + } + + var coordSysModel = axisInfo.coordSys.model; + var coordSysKey = makeKey(coordSysModel); + var coordSysItem = dataByCoordSys.map[coordSysKey]; + if (!coordSysItem) { + coordSysItem = dataByCoordSys.map[coordSysKey] = { + coordSysId: coordSysModel.id, + coordSysIndex: coordSysModel.componentIndex, + coordSysType: coordSysModel.type, + coordSysMainType: coordSysModel.mainType, + dataByAxis: [] + }; + dataByCoordSys.list.push(coordSysItem); + } + + coordSysItem.dataByAxis.push({ + axisDim: axis.dim, + axisIndex: axisModel.componentIndex, + axisType: axisModel.type, + axisId: axisModel.id, + value: value, + // Caustion: viewHelper.getValueLabel is actually on "view stage", which + // depends that all models have been updated. So it should not be performed + // here. Considering axisPointerModel used here is volatile, which is hard + // to be retrieve in TooltipView, we prepare parameters here. + valueLabelOpt: { + precision: axisPointerModel.get('label.precision'), + formatter: axisPointerModel.get('label.formatter') + }, + seriesDataIndices: payloadBatch.slice() + }); +} + +function updateModelActually(showValueMap, axesInfo, outputFinder) { + var outputAxesInfo = outputFinder.axesInfo = []; + // Basic logic: If no 'show' required, 'hide' this axisPointer. + each$14(axesInfo, function (axisInfo, key) { + var option = axisInfo.axisPointerModel.option; + var valItem = showValueMap[key]; + + if (valItem) { + !axisInfo.useHandle && (option.status = 'show'); + option.value = valItem.value; + // For label formatter param and highlight. + option.seriesDataIndices = (valItem.payloadBatch || []).slice(); + } + // When always show (e.g., handle used), remain + // original value and status. + else { + // If hide, value still need to be set, consider + // click legend to toggle axis blank. + !axisInfo.useHandle && (option.status = 'hide'); + } + + // If status is 'hide', should be no info in payload. + option.status === 'show' && outputAxesInfo.push({ + axisDim: axisInfo.axis.dim, + axisIndex: axisInfo.axis.model.componentIndex, + value: option.value + }); + }); +} + +function dispatchTooltipActually(dataByCoordSys, point, payload, dispatchAction) { + // Basic logic: If no showTip required, hideTip will be dispatched. + if (illegalPoint(point) || !dataByCoordSys.list.length) { + dispatchAction({type: 'hideTip'}); + return; + } + + // In most case only one axis (or event one series is used). It is + // convinient to fetch payload.seriesIndex and payload.dataIndex + // dirtectly. So put the first seriesIndex and dataIndex of the first + // axis on the payload. + var sampleItem = ((dataByCoordSys.list[0].dataByAxis[0] || {}).seriesDataIndices || [])[0] || {}; + + dispatchAction({ + type: 'showTip', + escapeConnect: true, + x: point[0], + y: point[1], + tooltipOption: payload.tooltipOption, + position: payload.position, + dataIndexInside: sampleItem.dataIndexInside, + dataIndex: sampleItem.dataIndex, + seriesIndex: sampleItem.seriesIndex, + dataByCoordSys: dataByCoordSys.list + }); +} + +function dispatchHighDownActually(axesInfo, dispatchAction, api) { + // FIXME + // highlight status modification shoule be a stage of main process? + // (Consider confilct (e.g., legend and axisPointer) and setOption) + + var zr = api.getZr(); + var highDownKey = 'axisPointerLastHighlights'; + var lastHighlights = inner$9(zr)[highDownKey] || {}; + var newHighlights = inner$9(zr)[highDownKey] = {}; + + // Update highlight/downplay status according to axisPointer model. + // Build hash map and remove duplicate incidentally. + each$14(axesInfo, function (axisInfo, key) { + var option = axisInfo.axisPointerModel.option; + option.status === 'show' && each$14(option.seriesDataIndices, function (batchItem) { + var key = batchItem.seriesIndex + ' | ' + batchItem.dataIndex; + newHighlights[key] = batchItem; + }); + }); + + // Diff. + var toHighlight = []; + var toDownplay = []; + each$1(lastHighlights, function (batchItem, key) { + !newHighlights[key] && toDownplay.push(batchItem); + }); + each$1(newHighlights, function (batchItem, key) { + !lastHighlights[key] && toHighlight.push(batchItem); + }); + + toDownplay.length && api.dispatchAction({ + type: 'downplay', escapeConnect: true, batch: toDownplay + }); + toHighlight.length && api.dispatchAction({ + type: 'highlight', escapeConnect: true, batch: toHighlight + }); +} + +function findInputAxisInfo(inputAxesInfo, axisInfo) { + for (var i = 0; i < (inputAxesInfo || []).length; i++) { + var inputAxisInfo = inputAxesInfo[i]; + if (axisInfo.axis.dim === inputAxisInfo.axisDim + && axisInfo.axis.model.componentIndex === inputAxisInfo.axisIndex + ) { + return inputAxisInfo; + } + } +} + +function makeMapperParam(axisInfo) { + var axisModel = axisInfo.axis.model; + var item = {}; + var dim = item.axisDim = axisInfo.axis.dim; + item.axisIndex = item[dim + 'AxisIndex'] = axisModel.componentIndex; + item.axisName = item[dim + 'AxisName'] = axisModel.name; + item.axisId = item[dim + 'AxisId'] = axisModel.id; + return item; +} + +function illegalPoint(point) { + return !point || point[0] == null || isNaN(point[0]) || point[1] == null || isNaN(point[1]); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var AxisPointerModel = extendComponentModel({ + + type: 'axisPointer', + + coordSysAxesInfo: null, + + defaultOption: { + // 'auto' means that show when triggered by tooltip or handle. + show: 'auto', + // 'click' | 'mousemove' | 'none' + triggerOn: null, // set default in AxisPonterView.js + + zlevel: 0, + z: 50, + + type: 'line', // 'line' 'shadow' 'cross' 'none'. + // axispointer triggered by tootip determine snap automatically, + // see `modelHelper`. + snap: false, + triggerTooltip: true, + + value: null, + status: null, // Init value depends on whether handle is used. + + // [group0, group1, ...] + // Each group can be: { + // mapper: function () {}, + // singleTooltip: 'multiple', // 'multiple' or 'single' + // xAxisId: ..., + // yAxisName: ..., + // angleAxisIndex: ... + // } + // mapper: can be ignored. + // input: {axisInfo, value} + // output: {axisInfo, value} + link: [], + + // Do not set 'auto' here, otherwise global animation: false + // will not effect at this axispointer. + animation: null, + animationDurationUpdate: 200, + + lineStyle: { + color: '#aaa', + width: 1, + type: 'solid' + }, + + shadowStyle: { + color: 'rgba(150,150,150,0.3)' + }, + + label: { + show: true, + formatter: null, // string | Function + precision: 'auto', // Or a number like 0, 1, 2 ... + margin: 3, + color: '#fff', + padding: [5, 7, 5, 7], + backgroundColor: 'auto', // default: axis line color + borderColor: null, + borderWidth: 0, + shadowBlur: 3, + shadowColor: '#aaa' + // Considering applicability, common style should + // better not have shadowOffset. + // shadowOffsetX: 0, + // shadowOffsetY: 2 + }, + + handle: { + show: false, + /* eslint-disable */ + icon: 'M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z', // jshint ignore:line + /* eslint-enable */ + size: 45, + // handle margin is from symbol center to axis, which is stable when circular move. + margin: 50, + // color: '#1b8bbd' + // color: '#2f4554' + color: '#333', + shadowBlur: 3, + shadowColor: '#aaa', + shadowOffsetX: 0, + shadowOffsetY: 2, + + // For mobile performance + throttle: 40 + } + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var inner$10 = makeInner(); +var each$15 = each$1; + +/** + * @param {string} key + * @param {module:echarts/ExtensionAPI} api + * @param {Function} handler + * param: {string} currTrigger + * param: {Array.} point + */ +function register(key, api, handler) { + if (env$1.node) { + return; + } + + var zr = api.getZr(); + inner$10(zr).records || (inner$10(zr).records = {}); + + initGlobalListeners(zr, api); + + var record = inner$10(zr).records[key] || (inner$10(zr).records[key] = {}); + record.handler = handler; +} + +function initGlobalListeners(zr, api) { + if (inner$10(zr).initialized) { + return; + } + + inner$10(zr).initialized = true; + + useHandler('click', curry(doEnter, 'click')); + useHandler('mousemove', curry(doEnter, 'mousemove')); + // useHandler('mouseout', onLeave); + useHandler('globalout', onLeave); + + function useHandler(eventType, cb) { + zr.on(eventType, function (e) { + var dis = makeDispatchAction(api); + + each$15(inner$10(zr).records, function (record) { + record && cb(record, e, dis.dispatchAction); + }); + + dispatchTooltipFinally(dis.pendings, api); + }); + } +} + +function dispatchTooltipFinally(pendings, api) { + var showLen = pendings.showTip.length; + var hideLen = pendings.hideTip.length; + + var actuallyPayload; + if (showLen) { + actuallyPayload = pendings.showTip[showLen - 1]; + } + else if (hideLen) { + actuallyPayload = pendings.hideTip[hideLen - 1]; + } + if (actuallyPayload) { + actuallyPayload.dispatchAction = null; + api.dispatchAction(actuallyPayload); + } +} + +function onLeave(record, e, dispatchAction) { + record.handler('leave', null, dispatchAction); +} + +function doEnter(currTrigger, record, e, dispatchAction) { + record.handler(currTrigger, e, dispatchAction); +} + +function makeDispatchAction(api) { + var pendings = { + showTip: [], + hideTip: [] + }; + // FIXME + // better approach? + // 'showTip' and 'hideTip' can be triggered by axisPointer and tooltip, + // which may be conflict, (axisPointer call showTip but tooltip call hideTip); + // So we have to add "final stage" to merge those dispatched actions. + var dispatchAction = function (payload) { + var pendingList = pendings[payload.type]; + if (pendingList) { + pendingList.push(payload); + } + else { + payload.dispatchAction = dispatchAction; + api.dispatchAction(payload); + } + }; + + return { + dispatchAction: dispatchAction, + pendings: pendings + }; +} + +/** + * @param {string} key + * @param {module:echarts/ExtensionAPI} api + */ +function unregister(key, api) { + if (env$1.node) { + return; + } + var zr = api.getZr(); + var record = (inner$10(zr).records || {})[key]; + if (record) { + inner$10(zr).records[key] = null; + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var AxisPointerView = extendComponentView({ + + type: 'axisPointer', + + render: function (globalAxisPointerModel, ecModel, api) { + var globalTooltipModel = ecModel.getComponent('tooltip'); + var triggerOn = globalAxisPointerModel.get('triggerOn') + || (globalTooltipModel && globalTooltipModel.get('triggerOn') || 'mousemove|click'); + + // Register global listener in AxisPointerView to enable + // AxisPointerView to be independent to Tooltip. + register( + 'axisPointer', + api, + function (currTrigger, e, dispatchAction) { + // If 'none', it is not controlled by mouse totally. + if (triggerOn !== 'none' + && (currTrigger === 'leave' || triggerOn.indexOf(currTrigger) >= 0) + ) { + dispatchAction({ + type: 'updateAxisPointer', + currTrigger: currTrigger, + x: e && e.offsetX, + y: e && e.offsetY + }); + } + } + ); + }, + + /** + * @override + */ + remove: function (ecModel, api) { + unregister(api.getZr(), 'axisPointer'); + AxisPointerView.superApply(this._model, 'remove', arguments); + }, + + /** + * @override + */ + dispose: function (ecModel, api) { + unregister('axisPointer', api); + AxisPointerView.superApply(this._model, 'dispose', arguments); + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var inner$11 = makeInner(); +var clone$4 = clone; +var bind$2 = bind; + +/** + * Base axis pointer class in 2D. + * Implemenents {module:echarts/component/axis/IAxisPointer}. + */ +function BaseAxisPointer() { +} + +BaseAxisPointer.prototype = { + + /** + * @private + */ + _group: null, + + /** + * @private + */ + _lastGraphicKey: null, + + /** + * @private + */ + _handle: null, + + /** + * @private + */ + _dragging: false, + + /** + * @private + */ + _lastValue: null, + + /** + * @private + */ + _lastStatus: null, + + /** + * @private + */ + _payloadInfo: null, + + /** + * In px, arbitrary value. Do not set too small, + * no animation is ok for most cases. + * @protected + */ + animationThreshold: 15, + + /** + * @implement + */ + render: function (axisModel, axisPointerModel, api, forceRender) { + var value = axisPointerModel.get('value'); + var status = axisPointerModel.get('status'); + + // Bind them to `this`, not in closure, otherwise they will not + // be replaced when user calling setOption in not merge mode. + this._axisModel = axisModel; + this._axisPointerModel = axisPointerModel; + this._api = api; + + // Optimize: `render` will be called repeatly during mouse move. + // So it is power consuming if performing `render` each time, + // especially on mobile device. + if (!forceRender + && this._lastValue === value + && this._lastStatus === status + ) { + return; + } + this._lastValue = value; + this._lastStatus = status; + + var group = this._group; + var handle = this._handle; + + if (!status || status === 'hide') { + // Do not clear here, for animation better. + group && group.hide(); + handle && handle.hide(); + return; + } + group && group.show(); + handle && handle.show(); + + // Otherwise status is 'show' + var elOption = {}; + this.makeElOption(elOption, value, axisModel, axisPointerModel, api); + + // Enable change axis pointer type. + var graphicKey = elOption.graphicKey; + if (graphicKey !== this._lastGraphicKey) { + this.clear(api); + } + this._lastGraphicKey = graphicKey; + + var moveAnimation = this._moveAnimation + = this.determineAnimation(axisModel, axisPointerModel); + + if (!group) { + group = this._group = new Group(); + this.createPointerEl(group, elOption, axisModel, axisPointerModel); + this.createLabelEl(group, elOption, axisModel, axisPointerModel); + api.getZr().add(group); + } + else { + var doUpdateProps = curry(updateProps$1, axisPointerModel, moveAnimation); + this.updatePointerEl(group, elOption, doUpdateProps, axisPointerModel); + this.updateLabelEl(group, elOption, doUpdateProps, axisPointerModel); + } + + updateMandatoryProps(group, axisPointerModel, true); + + this._renderHandle(value); + }, + + /** + * @implement + */ + remove: function (api) { + this.clear(api); + }, + + /** + * @implement + */ + dispose: function (api) { + this.clear(api); + }, + + /** + * @protected + */ + determineAnimation: function (axisModel, axisPointerModel) { + var animation = axisPointerModel.get('animation'); + var axis = axisModel.axis; + var isCategoryAxis = axis.type === 'category'; + var useSnap = axisPointerModel.get('snap'); + + // Value axis without snap always do not snap. + if (!useSnap && !isCategoryAxis) { + return false; + } + + if (animation === 'auto' || animation == null) { + var animationThreshold = this.animationThreshold; + if (isCategoryAxis && axis.getBandWidth() > animationThreshold) { + return true; + } + + // It is important to auto animation when snap used. Consider if there is + // a dataZoom, animation will be disabled when too many points exist, while + // it will be enabled for better visual effect when little points exist. + if (useSnap) { + var seriesDataCount = getAxisInfo(axisModel).seriesDataCount; + var axisExtent = axis.getExtent(); + // Approximate band width + return Math.abs(axisExtent[0] - axisExtent[1]) / seriesDataCount > animationThreshold; + } + + return false; + } + + return animation === true; + }, + + /** + * add {pointer, label, graphicKey} to elOption + * @protected + */ + makeElOption: function (elOption, value, axisModel, axisPointerModel, api) { + // Shoule be implemenented by sub-class. + }, + + /** + * @protected + */ + createPointerEl: function (group, elOption, axisModel, axisPointerModel) { + var pointerOption = elOption.pointer; + if (pointerOption) { + var pointerEl = inner$11(group).pointerEl = new graphic[pointerOption.type]( + clone$4(elOption.pointer) + ); + group.add(pointerEl); + } + }, + + /** + * @protected + */ + createLabelEl: function (group, elOption, axisModel, axisPointerModel) { + if (elOption.label) { + var labelEl = inner$11(group).labelEl = new Rect( + clone$4(elOption.label) + ); + + group.add(labelEl); + updateLabelShowHide(labelEl, axisPointerModel); + } + }, + + /** + * @protected + */ + updatePointerEl: function (group, elOption, updateProps$$1) { + var pointerEl = inner$11(group).pointerEl; + if (pointerEl && elOption.pointer) { + pointerEl.setStyle(elOption.pointer.style); + updateProps$$1(pointerEl, {shape: elOption.pointer.shape}); + } + }, + + /** + * @protected + */ + updateLabelEl: function (group, elOption, updateProps$$1, axisPointerModel) { + var labelEl = inner$11(group).labelEl; + if (labelEl) { + labelEl.setStyle(elOption.label.style); + updateProps$$1(labelEl, { + // Consider text length change in vertical axis, animation should + // be used on shape, otherwise the effect will be weird. + shape: elOption.label.shape, + position: elOption.label.position + }); + + updateLabelShowHide(labelEl, axisPointerModel); + } + }, + + /** + * @private + */ + _renderHandle: function (value) { + if (this._dragging || !this.updateHandleTransform) { + return; + } + + var axisPointerModel = this._axisPointerModel; + var zr = this._api.getZr(); + var handle = this._handle; + var handleModel = axisPointerModel.getModel('handle'); + + var status = axisPointerModel.get('status'); + if (!handleModel.get('show') || !status || status === 'hide') { + handle && zr.remove(handle); + this._handle = null; + return; + } + + var isInit; + if (!this._handle) { + isInit = true; + handle = this._handle = createIcon( + handleModel.get('icon'), + { + cursor: 'move', + draggable: true, + onmousemove: function (e) { + // Fot mobile devicem, prevent screen slider on the button. + stop(e.event); + }, + onmousedown: bind$2(this._onHandleDragMove, this, 0, 0), + drift: bind$2(this._onHandleDragMove, this), + ondragend: bind$2(this._onHandleDragEnd, this) + } + ); + zr.add(handle); + } + + updateMandatoryProps(handle, axisPointerModel, false); + + // update style + var includeStyles = [ + 'color', 'borderColor', 'borderWidth', 'opacity', + 'shadowColor', 'shadowBlur', 'shadowOffsetX', 'shadowOffsetY' + ]; + handle.setStyle(handleModel.getItemStyle(null, includeStyles)); + + // update position + var handleSize = handleModel.get('size'); + if (!isArray(handleSize)) { + handleSize = [handleSize, handleSize]; + } + handle.attr('scale', [handleSize[0] / 2, handleSize[1] / 2]); + + createOrUpdate( + this, + '_doDispatchAxisPointer', + handleModel.get('throttle') || 0, + 'fixRate' + ); + + this._moveHandleToValue(value, isInit); + }, + + /** + * @private + */ + _moveHandleToValue: function (value, isInit) { + updateProps$1( + this._axisPointerModel, + !isInit && this._moveAnimation, + this._handle, + getHandleTransProps(this.getHandleTransform( + value, this._axisModel, this._axisPointerModel + )) + ); + }, + + /** + * @private + */ + _onHandleDragMove: function (dx, dy) { + var handle = this._handle; + if (!handle) { + return; + } + + this._dragging = true; + + // Persistent for throttle. + var trans = this.updateHandleTransform( + getHandleTransProps(handle), + [dx, dy], + this._axisModel, + this._axisPointerModel + ); + this._payloadInfo = trans; + + handle.stopAnimation(); + handle.attr(getHandleTransProps(trans)); + inner$11(handle).lastProp = null; + + this._doDispatchAxisPointer(); + }, + + /** + * Throttled method. + * @private + */ + _doDispatchAxisPointer: function () { + var handle = this._handle; + if (!handle) { + return; + } + + var payloadInfo = this._payloadInfo; + var axisModel = this._axisModel; + this._api.dispatchAction({ + type: 'updateAxisPointer', + x: payloadInfo.cursorPoint[0], + y: payloadInfo.cursorPoint[1], + tooltipOption: payloadInfo.tooltipOption, + axesInfo: [{ + axisDim: axisModel.axis.dim, + axisIndex: axisModel.componentIndex + }] + }); + }, + + /** + * @private + */ + _onHandleDragEnd: function (moveAnimation) { + this._dragging = false; + var handle = this._handle; + if (!handle) { + return; + } + + var value = this._axisPointerModel.get('value'); + // Consider snap or categroy axis, handle may be not consistent with + // axisPointer. So move handle to align the exact value position when + // drag ended. + this._moveHandleToValue(value); + + // For the effect: tooltip will be shown when finger holding on handle + // button, and will be hidden after finger left handle button. + this._api.dispatchAction({ + type: 'hideTip' + }); + }, + + /** + * Should be implemenented by sub-class if support `handle`. + * @protected + * @param {number} value + * @param {module:echarts/model/Model} axisModel + * @param {module:echarts/model/Model} axisPointerModel + * @return {Object} {position: [x, y], rotation: 0} + */ + getHandleTransform: null, + + /** + * * Should be implemenented by sub-class if support `handle`. + * @protected + * @param {Object} transform {position, rotation} + * @param {Array.} delta [dx, dy] + * @param {module:echarts/model/Model} axisModel + * @param {module:echarts/model/Model} axisPointerModel + * @return {Object} {position: [x, y], rotation: 0, cursorPoint: [x, y]} + */ + updateHandleTransform: null, + + /** + * @private + */ + clear: function (api) { + this._lastValue = null; + this._lastStatus = null; + + var zr = api.getZr(); + var group = this._group; + var handle = this._handle; + if (zr && group) { + this._lastGraphicKey = null; + group && zr.remove(group); + handle && zr.remove(handle); + this._group = null; + this._handle = null; + this._payloadInfo = null; + } + }, + + /** + * @protected + */ + doClear: function () { + // Implemented by sub-class if necessary. + }, + + /** + * @protected + * @param {Array.} xy + * @param {Array.} wh + * @param {number} [xDimIndex=0] or 1 + */ + buildLabel: function (xy, wh, xDimIndex) { + xDimIndex = xDimIndex || 0; + return { + x: xy[xDimIndex], + y: xy[1 - xDimIndex], + width: wh[xDimIndex], + height: wh[1 - xDimIndex] + }; + } +}; + +BaseAxisPointer.prototype.constructor = BaseAxisPointer; + + +function updateProps$1(animationModel, moveAnimation, el, props) { + // Animation optimize. + if (!propsEqual(inner$11(el).lastProp, props)) { + inner$11(el).lastProp = props; + moveAnimation + ? updateProps(el, props, animationModel) + : (el.stopAnimation(), el.attr(props)); + } +} + +function propsEqual(lastProps, newProps) { + if (isObject$1(lastProps) && isObject$1(newProps)) { + var equals = true; + each$1(newProps, function (item, key) { + equals = equals && propsEqual(lastProps[key], item); + }); + return !!equals; + } + else { + return lastProps === newProps; + } +} + +function updateLabelShowHide(labelEl, axisPointerModel) { + labelEl[axisPointerModel.get('label.show') ? 'show' : 'hide'](); +} + +function getHandleTransProps(trans) { + return { + position: trans.position.slice(), + rotation: trans.rotation || 0 + }; +} + +function updateMandatoryProps(group, axisPointerModel, silent) { + var z = axisPointerModel.get('z'); + var zlevel = axisPointerModel.get('zlevel'); + + group && group.traverse(function (el) { + if (el.type !== 'group') { + z != null && (el.z = z); + zlevel != null && (el.zlevel = zlevel); + el.silent = silent; + } + }); +} + +enableClassExtend(BaseAxisPointer); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @param {module:echarts/model/Model} axisPointerModel + */ +function buildElStyle(axisPointerModel) { + var axisPointerType = axisPointerModel.get('type'); + var styleModel = axisPointerModel.getModel(axisPointerType + 'Style'); + var style; + if (axisPointerType === 'line') { + style = styleModel.getLineStyle(); + style.fill = null; + } + else if (axisPointerType === 'shadow') { + style = styleModel.getAreaStyle(); + style.stroke = null; + } + return style; +} + +/** + * @param {Function} labelPos {align, verticalAlign, position} + */ +function buildLabelElOption( + elOption, axisModel, axisPointerModel, api, labelPos +) { + var value = axisPointerModel.get('value'); + var text = getValueLabel( + value, axisModel.axis, axisModel.ecModel, + axisPointerModel.get('seriesDataIndices'), + { + precision: axisPointerModel.get('label.precision'), + formatter: axisPointerModel.get('label.formatter') + } + ); + var labelModel = axisPointerModel.getModel('label'); + var paddings = normalizeCssArray$1(labelModel.get('padding') || 0); + + var font = labelModel.getFont(); + var textRect = getBoundingRect(text, font); + + var position = labelPos.position; + var width = textRect.width + paddings[1] + paddings[3]; + var height = textRect.height + paddings[0] + paddings[2]; + + // Adjust by align. + var align = labelPos.align; + align === 'right' && (position[0] -= width); + align === 'center' && (position[0] -= width / 2); + var verticalAlign = labelPos.verticalAlign; + verticalAlign === 'bottom' && (position[1] -= height); + verticalAlign === 'middle' && (position[1] -= height / 2); + + // Not overflow ec container + confineInContainer(position, width, height, api); + + var bgColor = labelModel.get('backgroundColor'); + if (!bgColor || bgColor === 'auto') { + bgColor = axisModel.get('axisLine.lineStyle.color'); + } + + elOption.label = { + shape: {x: 0, y: 0, width: width, height: height, r: labelModel.get('borderRadius')}, + position: position.slice(), + // TODO: rich + style: { + text: text, + textFont: font, + textFill: labelModel.getTextColor(), + textPosition: 'inside', + textPadding: paddings, + fill: bgColor, + stroke: labelModel.get('borderColor') || 'transparent', + lineWidth: labelModel.get('borderWidth') || 0, + shadowBlur: labelModel.get('shadowBlur'), + shadowColor: labelModel.get('shadowColor'), + shadowOffsetX: labelModel.get('shadowOffsetX'), + shadowOffsetY: labelModel.get('shadowOffsetY') + }, + // Lable should be over axisPointer. + z2: 10 + }; +} + +// Do not overflow ec container +function confineInContainer(position, width, height, api) { + var viewWidth = api.getWidth(); + var viewHeight = api.getHeight(); + position[0] = Math.min(position[0] + width, viewWidth) - width; + position[1] = Math.min(position[1] + height, viewHeight) - height; + position[0] = Math.max(position[0], 0); + position[1] = Math.max(position[1], 0); +} + +/** + * @param {number} value + * @param {module:echarts/coord/Axis} axis + * @param {module:echarts/model/Global} ecModel + * @param {Object} opt + * @param {Array.} seriesDataIndices + * @param {number|string} opt.precision 'auto' or a number + * @param {string|Function} opt.formatter label formatter + */ +function getValueLabel(value, axis, ecModel, seriesDataIndices, opt) { + value = axis.scale.parse(value); + var text = axis.scale.getLabel( + // If `precision` is set, width can be fixed (like '12.00500'), which + // helps to debounce when when moving label. + value, {precision: opt.precision} + ); + var formatter = opt.formatter; + + if (formatter) { + var params = { + value: getAxisRawValue(axis, value), + axisDimension: axis.dim, + axisIndex: axis.index, + seriesData: [] + }; + each$1(seriesDataIndices, function (idxItem) { + var series = ecModel.getSeriesByIndex(idxItem.seriesIndex); + var dataIndex = idxItem.dataIndexInside; + var dataParams = series && series.getDataParams(dataIndex); + dataParams && params.seriesData.push(dataParams); + }); + + if (isString(formatter)) { + text = formatter.replace('{value}', text); + } + else if (isFunction$1(formatter)) { + text = formatter(params); + } + } + + return text; +} + +/** + * @param {module:echarts/coord/Axis} axis + * @param {number} value + * @param {Object} layoutInfo { + * rotation, position, labelOffset, labelDirection, labelMargin + * } + */ +function getTransformedPosition(axis, value, layoutInfo) { + var transform = create$1(); + rotate(transform, transform, layoutInfo.rotation); + translate(transform, transform, layoutInfo.position); + + return applyTransform$1([ + axis.dataToCoord(value), + (layoutInfo.labelOffset || 0) + + (layoutInfo.labelDirection || 1) * (layoutInfo.labelMargin || 0) + ], transform); +} + +function buildCartesianSingleLabelElOption( + value, elOption, layoutInfo, axisModel, axisPointerModel, api +) { + var textLayout = AxisBuilder.innerTextLayout( + layoutInfo.rotation, 0, layoutInfo.labelDirection + ); + layoutInfo.labelMargin = axisPointerModel.get('label.margin'); + buildLabelElOption(elOption, axisModel, axisPointerModel, api, { + position: getTransformedPosition(axisModel.axis, value, layoutInfo), + align: textLayout.textAlign, + verticalAlign: textLayout.textVerticalAlign + }); +} + +/** + * @param {Array.} p1 + * @param {Array.} p2 + * @param {number} [xDimIndex=0] or 1 + */ +function makeLineShape(p1, p2, xDimIndex) { + xDimIndex = xDimIndex || 0; + return { + x1: p1[xDimIndex], + y1: p1[1 - xDimIndex], + x2: p2[xDimIndex], + y2: p2[1 - xDimIndex] + }; +} + +/** + * @param {Array.} xy + * @param {Array.} wh + * @param {number} [xDimIndex=0] or 1 + */ +function makeRectShape(xy, wh, xDimIndex) { + xDimIndex = xDimIndex || 0; + return { + x: xy[xDimIndex], + y: xy[1 - xDimIndex], + width: wh[xDimIndex], + height: wh[1 - xDimIndex] + }; +} + +function makeSectorShape(cx, cy, r0, r, startAngle, endAngle) { + return { + cx: cx, + cy: cy, + r0: r0, + r: r, + startAngle: startAngle, + endAngle: endAngle, + clockwise: true + }; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var CartesianAxisPointer = BaseAxisPointer.extend({ + + /** + * @override + */ + makeElOption: function (elOption, value, axisModel, axisPointerModel, api) { + var axis = axisModel.axis; + var grid = axis.grid; + var axisPointerType = axisPointerModel.get('type'); + var otherExtent = getCartesian(grid, axis).getOtherAxis(axis).getGlobalExtent(); + var pixelValue = axis.toGlobalCoord(axis.dataToCoord(value, true)); + + if (axisPointerType && axisPointerType !== 'none') { + var elStyle = buildElStyle(axisPointerModel); + var pointerOption = pointerShapeBuilder[axisPointerType]( + axis, pixelValue, otherExtent + ); + pointerOption.style = elStyle; + elOption.graphicKey = pointerOption.type; + elOption.pointer = pointerOption; + } + + var layoutInfo = layout$1(grid.model, axisModel); + buildCartesianSingleLabelElOption( + value, elOption, layoutInfo, axisModel, axisPointerModel, api + ); + }, + + /** + * @override + */ + getHandleTransform: function (value, axisModel, axisPointerModel) { + var layoutInfo = layout$1(axisModel.axis.grid.model, axisModel, { + labelInside: false + }); + layoutInfo.labelMargin = axisPointerModel.get('handle.margin'); + return { + position: getTransformedPosition(axisModel.axis, value, layoutInfo), + rotation: layoutInfo.rotation + (layoutInfo.labelDirection < 0 ? Math.PI : 0) + }; + }, + + /** + * @override + */ + updateHandleTransform: function (transform, delta, axisModel, axisPointerModel) { + var axis = axisModel.axis; + var grid = axis.grid; + var axisExtent = axis.getGlobalExtent(true); + var otherExtent = getCartesian(grid, axis).getOtherAxis(axis).getGlobalExtent(); + var dimIndex = axis.dim === 'x' ? 0 : 1; + + var currPosition = transform.position; + currPosition[dimIndex] += delta[dimIndex]; + currPosition[dimIndex] = Math.min(axisExtent[1], currPosition[dimIndex]); + currPosition[dimIndex] = Math.max(axisExtent[0], currPosition[dimIndex]); + + var cursorOtherValue = (otherExtent[1] + otherExtent[0]) / 2; + var cursorPoint = [cursorOtherValue, cursorOtherValue]; + cursorPoint[dimIndex] = currPosition[dimIndex]; + + // Make tooltip do not overlap axisPointer and in the middle of the grid. + var tooltipOptions = [{verticalAlign: 'middle'}, {align: 'center'}]; + + return { + position: currPosition, + rotation: transform.rotation, + cursorPoint: cursorPoint, + tooltipOption: tooltipOptions[dimIndex] + }; + } + +}); + +function getCartesian(grid, axis) { + var opt = {}; + opt[axis.dim + 'AxisIndex'] = axis.index; + return grid.getCartesian(opt); +} + +var pointerShapeBuilder = { + + line: function (axis, pixelValue, otherExtent) { + var targetShape = makeLineShape( + [pixelValue, otherExtent[0]], + [pixelValue, otherExtent[1]], + getAxisDimIndex(axis) + ); + return { + type: 'Line', + subPixelOptimize: true, + shape: targetShape + }; + }, + + shadow: function (axis, pixelValue, otherExtent) { + var bandWidth = Math.max(1, axis.getBandWidth()); + var span = otherExtent[1] - otherExtent[0]; + return { + type: 'Rect', + shape: makeRectShape( + [pixelValue - bandWidth / 2, otherExtent[0]], + [bandWidth, span], + getAxisDimIndex(axis) + ) + }; + } +}; + +function getAxisDimIndex(axis) { + return axis.dim === 'x' ? 0 : 1; +} + +AxisView.registerAxisPointerClass('CartesianAxisPointer', CartesianAxisPointer); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// CartesianAxisPointer is not supposed to be required here. But consider +// echarts.simple.js and online build tooltip, which only require gridSimple, +// CartesianAxisPointer should be able to required somewhere. +registerPreprocessor(function (option) { + // Always has a global axisPointerModel for default setting. + if (option) { + (!option.axisPointer || option.axisPointer.length === 0) + && (option.axisPointer = {}); + + var link = option.axisPointer.link; + // Normalize to array to avoid object mergin. But if link + // is not set, remain null/undefined, otherwise it will + // override existent link setting. + if (link && !isArray(link)) { + option.axisPointer.link = [link]; + } + } +}); + +// This process should proformed after coordinate systems created +// and series data processed. So put it on statistic processing stage. +registerProcessor(PRIORITY.PROCESSOR.STATISTIC, function (ecModel, api) { + // Build axisPointerModel, mergin tooltip.axisPointer model for each axis. + // allAxesInfo should be updated when setOption performed. + ecModel.getComponent('axisPointer').coordSysAxesInfo + = collect(ecModel, api); +}); + +// Broadcast to all views. +registerAction({ + type: 'updateAxisPointer', + event: 'updateAxisPointer', + update: ':updateAxisPointer' +}, axisTrigger); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var XY = ['x', 'y']; +var WH = ['width', 'height']; + +var SingleAxisPointer = BaseAxisPointer.extend({ + + /** + * @override + */ + makeElOption: function (elOption, value, axisModel, axisPointerModel, api) { + var axis = axisModel.axis; + var coordSys = axis.coordinateSystem; + var otherExtent = getGlobalExtent(coordSys, 1 - getPointDimIndex(axis)); + var pixelValue = coordSys.dataToPoint(value)[0]; + + var axisPointerType = axisPointerModel.get('type'); + if (axisPointerType && axisPointerType !== 'none') { + var elStyle = buildElStyle(axisPointerModel); + var pointerOption = pointerShapeBuilder$1[axisPointerType]( + axis, pixelValue, otherExtent + ); + pointerOption.style = elStyle; + + elOption.graphicKey = pointerOption.type; + elOption.pointer = pointerOption; + } + + var layoutInfo = layout$2(axisModel); + buildCartesianSingleLabelElOption( + value, elOption, layoutInfo, axisModel, axisPointerModel, api + ); + }, + + /** + * @override + */ + getHandleTransform: function (value, axisModel, axisPointerModel) { + var layoutInfo = layout$2(axisModel, {labelInside: false}); + layoutInfo.labelMargin = axisPointerModel.get('handle.margin'); + return { + position: getTransformedPosition(axisModel.axis, value, layoutInfo), + rotation: layoutInfo.rotation + (layoutInfo.labelDirection < 0 ? Math.PI : 0) + }; + }, + + /** + * @override + */ + updateHandleTransform: function (transform, delta, axisModel, axisPointerModel) { + var axis = axisModel.axis; + var coordSys = axis.coordinateSystem; + var dimIndex = getPointDimIndex(axis); + var axisExtent = getGlobalExtent(coordSys, dimIndex); + var currPosition = transform.position; + currPosition[dimIndex] += delta[dimIndex]; + currPosition[dimIndex] = Math.min(axisExtent[1], currPosition[dimIndex]); + currPosition[dimIndex] = Math.max(axisExtent[0], currPosition[dimIndex]); + var otherExtent = getGlobalExtent(coordSys, 1 - dimIndex); + var cursorOtherValue = (otherExtent[1] + otherExtent[0]) / 2; + var cursorPoint = [cursorOtherValue, cursorOtherValue]; + cursorPoint[dimIndex] = currPosition[dimIndex]; + + return { + position: currPosition, + rotation: transform.rotation, + cursorPoint: cursorPoint, + tooltipOption: { + verticalAlign: 'middle' + } + }; + } +}); + +var pointerShapeBuilder$1 = { + + line: function (axis, pixelValue, otherExtent) { + var targetShape = makeLineShape( + [pixelValue, otherExtent[0]], + [pixelValue, otherExtent[1]], + getPointDimIndex(axis) + ); + return { + type: 'Line', + subPixelOptimize: true, + shape: targetShape + }; + }, + + shadow: function (axis, pixelValue, otherExtent) { + var bandWidth = axis.getBandWidth(); + var span = otherExtent[1] - otherExtent[0]; + return { + type: 'Rect', + shape: makeRectShape( + [pixelValue - bandWidth / 2, otherExtent[0]], + [bandWidth, span], + getPointDimIndex(axis) + ) + }; + } +}; + +function getPointDimIndex(axis) { + return axis.isHorizontal() ? 0 : 1; +} + +function getGlobalExtent(coordSys, dimIndex) { + var rect = coordSys.getRect(); + return [rect[XY[dimIndex]], rect[XY[dimIndex]] + rect[WH[dimIndex]]]; +} + +AxisView.registerAxisPointerClass('SingleAxisPointer', SingleAxisPointer); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +extendComponentView({ + type: 'single' +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var DATA_NAME_INDEX = 2; + +var ThemeRiverSeries = SeriesModel.extend({ + + type: 'series.themeRiver', + + dependencies: ['singleAxis'], + + /** + * @readOnly + * @type {module:zrender/core/util#HashMap} + */ + nameMap: null, + + /** + * @override + */ + init: function (option) { + // eslint-disable-next-line + ThemeRiverSeries.superApply(this, 'init', arguments); + + // Put this function here is for the sake of consistency of code style. + // Enable legend selection for each data item + // Use a function instead of direct access because data reference may changed + this.legendDataProvider = function () { + return this.getRawData(); + }; + }, + + /** + * If there is no value of a certain point in the time for some event,set it value to 0. + * + * @param {Array} data initial data in the option + * @return {Array} + */ + fixData: function (data) { + var rawDataLength = data.length; + + // grouped data by name + var groupResult = groupData(data, function (item) { + return item[2]; + }); + var layData = []; + groupResult.buckets.each(function (items, key) { + layData.push({name: key, dataList: items}); + }); + + var layerNum = layData.length; + var largestLayer = -1; + var index = -1; + for (var i = 0; i < layerNum; ++i) { + var len = layData[i].dataList.length; + if (len > largestLayer) { + largestLayer = len; + index = i; + } + } + + for (var k = 0; k < layerNum; ++k) { + if (k === index) { + continue; + } + var name = layData[k].name; + for (var j = 0; j < largestLayer; ++j) { + var timeValue = layData[index].dataList[j][0]; + var length = layData[k].dataList.length; + var keyIndex = -1; + for (var l = 0; l < length; ++l) { + var value = layData[k].dataList[l][0]; + if (value === timeValue) { + keyIndex = l; + break; + } + } + if (keyIndex === -1) { + data[rawDataLength] = []; + data[rawDataLength][0] = timeValue; + data[rawDataLength][1] = 0; + data[rawDataLength][2] = name; + rawDataLength++; + + } + } + } + return data; + }, + + /** + * @override + * @param {Object} option the initial option that user gived + * @param {module:echarts/model/Model} ecModel the model object for themeRiver option + * @return {module:echarts/data/List} + */ + getInitialData: function (option, ecModel) { + + var singleAxisModel = ecModel.queryComponents({ + mainType: 'singleAxis', + index: this.get('singleAxisIndex'), + id: this.get('singleAxisId') + })[0]; + + var axisType = singleAxisModel.get('type'); + + // filter the data item with the value of label is undefined + var filterData = filter(option.data, function (dataItem) { + return dataItem[2] !== undefined; + }); + + // ??? TODO design a stage to transfer data for themeRiver and lines? + var data = this.fixData(filterData || []); + var nameList = []; + var nameMap = this.nameMap = createHashMap(); + var count = 0; + + for (var i = 0; i < data.length; ++i) { + nameList.push(data[i][DATA_NAME_INDEX]); + if (!nameMap.get(data[i][DATA_NAME_INDEX])) { + nameMap.set(data[i][DATA_NAME_INDEX], count); + count++; + } + } + + var dimensionsInfo = createDimensions(data, { + coordDimensions: ['single'], + dimensionsDefine: [ + { + name: 'time', + type: getDimensionTypeByAxis(axisType) + }, + { + name: 'value', + type: 'float' + }, + { + name: 'name', + type: 'ordinal' + } + ], + encodeDefine: { + single: 0, + value: 1, + itemName: 2 + } + }); + + var list = new List(dimensionsInfo, this); + list.initData(data); + + return list; + }, + + /** + * The raw data is divided into multiple layers and each layer + * has same name. + * + * @return {Array.>} + */ + getLayerSeries: function () { + var data = this.getData(); + var lenCount = data.count(); + var indexArr = []; + + for (var i = 0; i < lenCount; ++i) { + indexArr[i] = i; + } + + var timeDim = data.mapDimension('single'); + + // data group by name + var groupResult = groupData(indexArr, function (index) { + return data.get('name', index); + }); + var layerSeries = []; + groupResult.buckets.each(function (items, key) { + items.sort(function (index1, index2) { + return data.get(timeDim, index1) - data.get(timeDim, index2); + }); + layerSeries.push({name: key, indices: items}); + }); + + return layerSeries; + }, + + /** + * Get data indices for show tooltip content + + * @param {Array.|string} dim single coordinate dimension + * @param {number} value axis value + * @param {module:echarts/coord/single/SingleAxis} baseAxis single Axis used + * the themeRiver. + * @return {Object} {dataIndices, nestestValue} + */ + getAxisTooltipData: function (dim, value, baseAxis) { + if (!isArray(dim)) { + dim = dim ? [dim] : []; + } + + var data = this.getData(); + var layerSeries = this.getLayerSeries(); + var indices = []; + var layerNum = layerSeries.length; + var nestestValue; + + for (var i = 0; i < layerNum; ++i) { + var minDist = Number.MAX_VALUE; + var nearestIdx = -1; + var pointNum = layerSeries[i].indices.length; + for (var j = 0; j < pointNum; ++j) { + var theValue = data.get(dim[0], layerSeries[i].indices[j]); + var dist = Math.abs(theValue - value); + if (dist <= minDist) { + nestestValue = theValue; + minDist = dist; + nearestIdx = layerSeries[i].indices[j]; + } + } + indices.push(nearestIdx); + } + + return {dataIndices: indices, nestestValue: nestestValue}; + }, + + /** + * @override + * @param {number} dataIndex index of data + */ + formatTooltip: function (dataIndex) { + var data = this.getData(); + var htmlName = data.getName(dataIndex); + var htmlValue = data.get(data.mapDimension('value'), dataIndex); + if (isNaN(htmlValue) || htmlValue == null) { + htmlValue = '-'; + } + return encodeHTML(htmlName + ' : ' + htmlValue); + }, + + defaultOption: { + zlevel: 0, + z: 2, + + coordinateSystem: 'singleAxis', + + // gap in axis's orthogonal orientation + boundaryGap: ['10%', '10%'], + + // legendHoverLink: true, + + singleAxisIndex: 0, + + animationEasing: 'linear', + + label: { + margin: 4, + show: true, + position: 'left', + color: '#000', + fontSize: 11 + }, + + emphasis: { + label: { + show: true + } + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +extendChartView({ + + type: 'themeRiver', + + init: function () { + this._layers = []; + }, + + render: function (seriesModel, ecModel, api) { + var data = seriesModel.getData(); + + var group = this.group; + + var layerSeries = seriesModel.getLayerSeries(); + + var layoutInfo = data.getLayout('layoutInfo'); + var rect = layoutInfo.rect; + var boundaryGap = layoutInfo.boundaryGap; + + group.attr('position', [0, rect.y + boundaryGap[0]]); + + function keyGetter(item) { + return item.name; + } + var dataDiffer = new DataDiffer( + this._layersSeries || [], layerSeries, + keyGetter, keyGetter + ); + + var newLayersGroups = {}; + + dataDiffer + .add(bind(process, this, 'add')) + .update(bind(process, this, 'update')) + .remove(bind(process, this, 'remove')) + .execute(); + + function process(status, idx, oldIdx) { + var oldLayersGroups = this._layers; + if (status === 'remove') { + group.remove(oldLayersGroups[idx]); + return; + } + var points0 = []; + var points1 = []; + var color; + var indices = layerSeries[idx].indices; + for (var j = 0; j < indices.length; j++) { + var layout = data.getItemLayout(indices[j]); + var x = layout.x; + var y0 = layout.y0; + var y = layout.y; + + points0.push([x, y0]); + points1.push([x, y0 + y]); + + color = data.getItemVisual(indices[j], 'color'); + } + + var polygon; + var text; + var textLayout = data.getItemLayout(indices[0]); + var itemModel = data.getItemModel(indices[j - 1]); + var labelModel = itemModel.getModel('label'); + var margin = labelModel.get('margin'); + if (status === 'add') { + var layerGroup = newLayersGroups[idx] = new Group(); + polygon = new Polygon$1({ + shape: { + points: points0, + stackedOnPoints: points1, + smooth: 0.4, + stackedOnSmooth: 0.4, + smoothConstraint: false + }, + z2: 0 + }); + text = new Text({ + style: { + x: textLayout.x - margin, + y: textLayout.y0 + textLayout.y / 2 + } + }); + layerGroup.add(polygon); + layerGroup.add(text); + group.add(layerGroup); + + polygon.setClipPath(createGridClipShape$3(polygon.getBoundingRect(), seriesModel, function () { + polygon.removeClipPath(); + })); + } + else { + var layerGroup = oldLayersGroups[oldIdx]; + polygon = layerGroup.childAt(0); + text = layerGroup.childAt(1); + group.add(layerGroup); + + newLayersGroups[idx] = layerGroup; + + updateProps(polygon, { + shape: { + points: points0, + stackedOnPoints: points1 + } + }, seriesModel); + + updateProps(text, { + style: { + x: textLayout.x - margin, + y: textLayout.y0 + textLayout.y / 2 + } + }, seriesModel); + } + + var hoverItemStyleModel = itemModel.getModel('emphasis.itemStyle'); + var itemStyleModel = itemModel.getModel('itemStyle'); + + setTextStyle(text.style, labelModel, { + text: labelModel.get('show') + ? seriesModel.getFormattedLabel(indices[j - 1], 'normal') + || data.getName(indices[j - 1]) + : null, + textVerticalAlign: 'middle' + }); + + polygon.setStyle(extend({ + fill: color + }, itemStyleModel.getItemStyle(['color']))); + + setHoverStyle(polygon, hoverItemStyleModel.getItemStyle()); + } + + this._layersSeries = layerSeries; + this._layers = newLayersGroups; + }, + + dispose: function () {} +}); + +// add animation to the view +function createGridClipShape$3(rect, seriesModel, cb) { + var rectEl = new Rect({ + shape: { + x: rect.x - 10, + y: rect.y - 10, + width: 0, + height: rect.height + 20 + } + }); + initProps(rectEl, { + shape: { + width: rect.width + 20, + height: rect.height + 20 + } + }, seriesModel, cb); + + return rectEl; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var themeRiverLayout = function (ecModel, api) { + + ecModel.eachSeriesByType('themeRiver', function (seriesModel) { + + var data = seriesModel.getData(); + + var single = seriesModel.coordinateSystem; + + var layoutInfo = {}; + + // use the axis boundingRect for view + var rect = single.getRect(); + + layoutInfo.rect = rect; + + var boundaryGap = seriesModel.get('boundaryGap'); + + var axis = single.getAxis(); + + layoutInfo.boundaryGap = boundaryGap; + + if (axis.orient === 'horizontal') { + boundaryGap[0] = parsePercent$1(boundaryGap[0], rect.height); + boundaryGap[1] = parsePercent$1(boundaryGap[1], rect.height); + var height = rect.height - boundaryGap[0] - boundaryGap[1]; + themeRiverLayout$1(data, seriesModel, height); + } + else { + boundaryGap[0] = parsePercent$1(boundaryGap[0], rect.width); + boundaryGap[1] = parsePercent$1(boundaryGap[1], rect.width); + var width = rect.width - boundaryGap[0] - boundaryGap[1]; + themeRiverLayout$1(data, seriesModel, width); + } + + data.setLayout('layoutInfo', layoutInfo); + }); +}; + +/** + * The layout information about themeriver + * + * @param {module:echarts/data/List} data data in the series + * @param {module:echarts/model/Series} seriesModel the model object of themeRiver series + * @param {number} height value used to compute every series height + */ +function themeRiverLayout$1(data, seriesModel, height) { + if (!data.count()) { + return; + } + var coordSys = seriesModel.coordinateSystem; + // the data in each layer are organized into a series. + var layerSeries = seriesModel.getLayerSeries(); + + // the points in each layer. + var timeDim = data.mapDimension('single'); + var valueDim = data.mapDimension('value'); + var layerPoints = map(layerSeries, function (singleLayer) { + return map(singleLayer.indices, function (idx) { + var pt = coordSys.dataToPoint(data.get(timeDim, idx)); + pt[1] = data.get(valueDim, idx); + return pt; + }); + }); + + var base = computeBaseline(layerPoints); + var baseLine = base.y0; + var ky = height / base.max; + + // set layout information for each item. + var n = layerSeries.length; + var m = layerSeries[0].indices.length; + var baseY0; + for (var j = 0; j < m; ++j) { + baseY0 = baseLine[j] * ky; + data.setItemLayout(layerSeries[0].indices[j], { + layerIndex: 0, + x: layerPoints[0][j][0], + y0: baseY0, + y: layerPoints[0][j][1] * ky + }); + for (var i = 1; i < n; ++i) { + baseY0 += layerPoints[i - 1][j][1] * ky; + data.setItemLayout(layerSeries[i].indices[j], { + layerIndex: i, + x: layerPoints[i][j][0], + y0: baseY0, + y: layerPoints[i][j][1] * ky + }); + } + } +} + +/** + * Compute the baseLine of the rawdata + * Inspired by Lee Byron's paper Stacked Graphs - Geometry & Aesthetics + * + * @param {Array.} data the points in each layer + * @return {Object} + */ +function computeBaseline(data) { + var layerNum = data.length; + var pointNum = data[0].length; + var sums = []; + var y0 = []; + var max = 0; + var temp; + var base = {}; + + for (var i = 0; i < pointNum; ++i) { + for (var j = 0, temp = 0; j < layerNum; ++j) { + temp += data[j][i][1]; + } + if (temp > max) { + max = temp; + } + sums.push(temp); + } + + for (var k = 0; k < pointNum; ++k) { + y0[k] = (max - sums[k]) / 2; + } + max = 0; + + for (var l = 0; l < pointNum; ++l) { + var sum = sums[l] + y0[l]; + if (sum > max) { + max = sum; + } + } + base.y0 = y0; + base.max = max; + + return base; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var themeRiverVisual = function (ecModel) { + ecModel.eachSeriesByType('themeRiver', function (seriesModel) { + var data = seriesModel.getData(); + var rawData = seriesModel.getRawData(); + var colorList = seriesModel.get('color'); + var idxMap = createHashMap(); + + data.each(function (idx) { + idxMap.set(data.getRawIndex(idx), idx); + }); + + rawData.each(function (rawIndex) { + var name = rawData.getName(rawIndex); + var color = colorList[(seriesModel.nameMap.get(name) - 1) % colorList.length]; + + rawData.setItemVisual(rawIndex, 'color', color); + + var idx = idxMap.get(rawIndex); + + if (idx != null) { + data.setItemVisual(idx, 'color', color); + } + }); + }); +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerLayout(themeRiverLayout); +registerVisual(themeRiverVisual); +registerProcessor(dataFilter('themeRiver')); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +SeriesModel.extend({ + + type: 'series.sunburst', + + /** + * @type {module:echarts/data/Tree~Node} + */ + _viewRoot: null, + + getInitialData: function (option, ecModel) { + // Create a virtual root. + var root = { name: option.name, children: option.data }; + + completeTreeValue$1(root); + + var levels = option.levels || []; + + // levels = option.levels = setDefault(levels, ecModel); + + var treeOption = {}; + + treeOption.levels = levels; + + // Make sure always a new tree is created when setOption, + // in TreemapView, we check whether oldTree === newTree + // to choose mappings approach among old shapes and new shapes. + return Tree.createTree(root, this, treeOption).data; + }, + + optionUpdated: function () { + this.resetViewRoot(); + }, + + /* + * @override + */ + getDataParams: function (dataIndex) { + var params = SeriesModel.prototype.getDataParams.apply(this, arguments); + + var node = this.getData().tree.getNodeByDataIndex(dataIndex); + params.treePathInfo = wrapTreePathInfo(node, this); + + return params; + }, + + defaultOption: { + zlevel: 0, + z: 2, + + // 默认全局居中 + center: ['50%', '50%'], + radius: [0, '75%'], + // 默认顺时针 + clockwise: true, + startAngle: 90, + // 最小角度改为0 + minAngle: 0, + + percentPrecision: 2, + + // If still show when all data zero. + stillShowZeroSum: true, + + // Policy of highlighting pieces when hover on one + // Valid values: 'none' (for not downplay others), 'descendant', + // 'ancestor', 'self' + highlightPolicy: 'descendant', + + // 'rootToNode', 'link', or false + nodeClick: 'rootToNode', + + renderLabelForZeroData: false, + + label: { + // could be: 'radial', 'tangential', or 'none' + rotate: 'radial', + show: true, + opacity: 1, + // 'left' is for inner side of inside, and 'right' is for outter + // side for inside + align: 'center', + position: 'inside', + distance: 5, + silent: true, + emphasis: {} + }, + itemStyle: { + borderWidth: 1, + borderColor: 'white', + borderType: 'solid', + shadowBlur: 0, + shadowColor: 'rgba(0, 0, 0, 0.2)', + shadowOffsetX: 0, + shadowOffsetY: 0, + opacity: 1, + emphasis: {}, + highlight: { + opacity: 1 + }, + downplay: { + opacity: 0.9 + } + }, + + // Animation type canbe expansion, scale + animationType: 'expansion', + animationDuration: 1000, + animationDurationUpdate: 500, + animationEasing: 'cubicOut', + + data: [], + + levels: [], + + /** + * Sort order. + * + * Valid values: 'desc', 'asc', null, or callback function. + * 'desc' and 'asc' for descend and ascendant order; + * null for not sorting; + * example of callback function: + * function(nodeA, nodeB) { + * return nodeA.getValue() - nodeB.getValue(); + * } + */ + sort: 'desc' + }, + + getViewRoot: function () { + return this._viewRoot; + }, + + /** + * @param {module:echarts/data/Tree~Node} [viewRoot] + */ + resetViewRoot: function (viewRoot) { + viewRoot + ? (this._viewRoot = viewRoot) + : (viewRoot = this._viewRoot); + + var root = this.getRawData().tree.root; + + if (!viewRoot + || (viewRoot !== root && !root.contains(viewRoot)) + ) { + this._viewRoot = root; + } + } +}); + + + +/** + * @param {Object} dataNode + */ +function completeTreeValue$1(dataNode) { + // Postorder travel tree. + // If value of none-leaf node is not set, + // calculate it by suming up the value of all children. + var sum = 0; + + each$1(dataNode.children, function (child) { + + completeTreeValue$1(child); + + var childValue = child.value; + isArray(childValue) && (childValue = childValue[0]); + + sum += childValue; + }); + + var thisValue = dataNode.value; + if (isArray(thisValue)) { + thisValue = thisValue[0]; + } + + if (thisValue == null || isNaN(thisValue)) { + thisValue = sum; + } + // Value should not less than 0. + if (thisValue < 0) { + thisValue = 0; + } + + isArray(dataNode.value) + ? (dataNode.value[0] = thisValue) + : (dataNode.value = thisValue); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var NodeHighlightPolicy = { + NONE: 'none', // not downplay others + DESCENDANT: 'descendant', + ANCESTOR: 'ancestor', + SELF: 'self' +}; + +var DEFAULT_SECTOR_Z = 2; +var DEFAULT_TEXT_Z = 4; + +/** + * Sunburstce of Sunburst including Sector, Label, LabelLine + * @constructor + * @extends {module:zrender/graphic/Group} + */ +function SunburstPiece(node, seriesModel, ecModel) { + + Group.call(this); + + var sector = new Sector({ + z2: DEFAULT_SECTOR_Z + }); + sector.seriesIndex = seriesModel.seriesIndex; + + var text = new Text({ + z2: DEFAULT_TEXT_Z, + silent: node.getModel('label').get('silent') + }); + this.add(sector); + this.add(text); + + this.updateData(true, node, 'normal', seriesModel, ecModel); + + // Hover to change label and labelLine + function onEmphasis() { + text.ignore = text.hoverIgnore; + } + function onNormal() { + text.ignore = text.normalIgnore; + } + this.on('emphasis', onEmphasis) + .on('normal', onNormal) + .on('mouseover', onEmphasis) + .on('mouseout', onNormal); +} + +var SunburstPieceProto = SunburstPiece.prototype; + +SunburstPieceProto.updateData = function ( + firstCreate, + node, + state, + seriesModel, + ecModel +) { + this.node = node; + node.piece = this; + + seriesModel = seriesModel || this._seriesModel; + ecModel = ecModel || this._ecModel; + + var sector = this.childAt(0); + sector.dataIndex = node.dataIndex; + + var itemModel = node.getModel(); + var layout = node.getLayout(); + // if (!layout) { + // console.log(node.getLayout()); + // } + var sectorShape = extend({}, layout); + sectorShape.label = null; + + var visualColor = getNodeColor(node, seriesModel, ecModel); + + fillDefaultColor(node, seriesModel, visualColor); + + var normalStyle = itemModel.getModel('itemStyle').getItemStyle(); + var style; + if (state === 'normal') { + style = normalStyle; + } + else { + var stateStyle = itemModel.getModel(state + '.itemStyle') + .getItemStyle(); + style = merge(stateStyle, normalStyle); + } + style = defaults( + { + lineJoin: 'bevel', + fill: style.fill || visualColor + }, + style + ); + + if (firstCreate) { + sector.setShape(sectorShape); + sector.shape.r = layout.r0; + updateProps( + sector, + { + shape: { + r: layout.r + } + }, + seriesModel, + node.dataIndex + ); + sector.useStyle(style); + } + else if (typeof style.fill === 'object' && style.fill.type + || typeof sector.style.fill === 'object' && sector.style.fill.type + ) { + // Disable animation for gradient since no interpolation method + // is supported for gradient + updateProps(sector, { + shape: sectorShape + }, seriesModel); + sector.useStyle(style); + } + else { + updateProps(sector, { + shape: sectorShape, + style: style + }, seriesModel); + } + + this._updateLabel(seriesModel, visualColor, state); + + var cursorStyle = itemModel.getShallow('cursor'); + cursorStyle && sector.attr('cursor', cursorStyle); + + if (firstCreate) { + var highlightPolicy = seriesModel.getShallow('highlightPolicy'); + this._initEvents(sector, node, seriesModel, highlightPolicy); + } + + this._seriesModel = seriesModel || this._seriesModel; + this._ecModel = ecModel || this._ecModel; +}; + +SunburstPieceProto.onEmphasis = function (highlightPolicy) { + var that = this; + this.node.hostTree.root.eachNode(function (n) { + if (n.piece) { + if (that.node === n) { + n.piece.updateData(false, n, 'emphasis'); + } + else if (isNodeHighlighted(n, that.node, highlightPolicy)) { + n.piece.childAt(0).trigger('highlight'); + } + else if (highlightPolicy !== NodeHighlightPolicy.NONE) { + n.piece.childAt(0).trigger('downplay'); + } + } + }); +}; + +SunburstPieceProto.onNormal = function () { + this.node.hostTree.root.eachNode(function (n) { + if (n.piece) { + n.piece.updateData(false, n, 'normal'); + } + }); +}; + +SunburstPieceProto.onHighlight = function () { + this.updateData(false, this.node, 'highlight'); +}; + +SunburstPieceProto.onDownplay = function () { + this.updateData(false, this.node, 'downplay'); +}; + +SunburstPieceProto._updateLabel = function (seriesModel, visualColor, state) { + var itemModel = this.node.getModel(); + var normalModel = itemModel.getModel('label'); + var labelModel = state === 'normal' || state === 'emphasis' + ? normalModel + : itemModel.getModel(state + '.label'); + var labelHoverModel = itemModel.getModel('emphasis.label'); + + var text = retrieve( + seriesModel.getFormattedLabel( + this.node.dataIndex, state, null, null, 'label' + ), + this.node.name + ); + if (getLabelAttr('show') === false) { + text = ''; + } + + var layout = this.node.getLayout(); + var labelMinAngle = labelModel.get('minAngle'); + if (labelMinAngle == null) { + labelMinAngle = normalModel.get('minAngle'); + } + labelMinAngle = labelMinAngle / 180 * Math.PI; + var angle = layout.endAngle - layout.startAngle; + if (labelMinAngle != null && Math.abs(angle) < labelMinAngle) { + // Not displaying text when angle is too small + text = ''; + } + + var label = this.childAt(1); + + setLabelStyle( + label.style, label.hoverStyle || {}, normalModel, labelHoverModel, + { + defaultText: labelModel.getShallow('show') ? text : null, + autoColor: visualColor, + useInsideStyle: true + } + ); + + var midAngle = (layout.startAngle + layout.endAngle) / 2; + var dx = Math.cos(midAngle); + var dy = Math.sin(midAngle); + + var r; + var labelPosition = getLabelAttr('position'); + var labelPadding = getLabelAttr('distance') || 0; + var textAlign = getLabelAttr('align'); + if (labelPosition === 'outside') { + r = layout.r + labelPadding; + textAlign = midAngle > Math.PI / 2 ? 'right' : 'left'; + } + else { + if (!textAlign || textAlign === 'center') { + r = (layout.r + layout.r0) / 2; + textAlign = 'center'; + } + else if (textAlign === 'left') { + r = layout.r0 + labelPadding; + if (midAngle > Math.PI / 2) { + textAlign = 'right'; + } + } + else if (textAlign === 'right') { + r = layout.r - labelPadding; + if (midAngle > Math.PI / 2) { + textAlign = 'left'; + } + } + } + + label.attr('style', { + text: text, + textAlign: textAlign, + textVerticalAlign: getLabelAttr('verticalAlign') || 'middle', + opacity: getLabelAttr('opacity') + }); + + var textX = r * dx + layout.cx; + var textY = r * dy + layout.cy; + label.attr('position', [textX, textY]); + + var rotateType = getLabelAttr('rotate'); + var rotate = 0; + if (rotateType === 'radial') { + rotate = -midAngle; + if (rotate < -Math.PI / 2) { + rotate += Math.PI; + } + } + else if (rotateType === 'tangential') { + rotate = Math.PI / 2 - midAngle; + if (rotate > Math.PI / 2) { + rotate -= Math.PI; + } + else if (rotate < -Math.PI / 2) { + rotate += Math.PI; + } + } else if (typeof rotateType === 'number') { + rotate = rotateType * Math.PI / 180; + } + label.attr('rotation', rotate); + + function getLabelAttr(name) { + var stateAttr = labelModel.get(name); + if (stateAttr == null) { + return normalModel.get(name); + } + else { + return stateAttr; + } + } +}; + +SunburstPieceProto._initEvents = function ( + sector, + node, + seriesModel, + highlightPolicy +) { + sector.off('mouseover').off('mouseout').off('emphasis').off('normal'); + + var that = this; + var onEmphasis = function () { + that.onEmphasis(highlightPolicy); + }; + var onNormal = function () { + that.onNormal(); + }; + var onDownplay = function () { + that.onDownplay(); + }; + var onHighlight = function () { + that.onHighlight(); + }; + + if (seriesModel.isAnimationEnabled()) { + sector + .on('mouseover', onEmphasis) + .on('mouseout', onNormal) + .on('emphasis', onEmphasis) + .on('normal', onNormal) + .on('downplay', onDownplay) + .on('highlight', onHighlight); + } +}; + +inherits(SunburstPiece, Group); + +/** + * Get node color + * + * @param {TreeNode} node the node to get color + * @param {module:echarts/model/Series} seriesModel series + * @param {module:echarts/model/Global} ecModel echarts defaults + */ +function getNodeColor(node, seriesModel, ecModel) { + // Color from visualMap + var visualColor = node.getVisual('color'); + var visualMetaList = node.getVisual('visualMeta'); + if (!visualMetaList || visualMetaList.length === 0) { + // Use first-generation color if has no visualMap + visualColor = null; + } + + // Self color or level color + var color = node.getModel('itemStyle').get('color'); + if (color) { + return color; + } + else if (visualColor) { + // Color mapping + return visualColor; + } + else if (node.depth === 0) { + // Virtual root node + return ecModel.option.color[0]; + } + else { + // First-generation color + var length = ecModel.option.color.length; + color = ecModel.option.color[getRootId(node) % length]; + } + return color; +} + +/** + * Get index of root in sorted order + * + * @param {TreeNode} node current node + * @return {number} index in root + */ +function getRootId(node) { + var ancestor = node; + while (ancestor.depth > 1) { + ancestor = ancestor.parentNode; + } + + var virtualRoot = node.getAncestors()[0]; + return indexOf(virtualRoot.children, ancestor); +} + +function isNodeHighlighted(node, activeNode, policy) { + if (policy === NodeHighlightPolicy.NONE) { + return false; + } + else if (policy === NodeHighlightPolicy.SELF) { + return node === activeNode; + } + else if (policy === NodeHighlightPolicy.ANCESTOR) { + return node === activeNode || node.isAncestorOf(activeNode); + } + else { + return node === activeNode || node.isDescendantOf(activeNode); + } +} + +// Fix tooltip callback function params.color incorrect when pick a default color +function fillDefaultColor(node, seriesModel, color) { + var data = seriesModel.getData(); + data.setItemVisual(node.dataIndex, 'color', color); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var ROOT_TO_NODE_ACTION = 'sunburstRootToNode'; + +var SunburstView = Chart.extend({ + + type: 'sunburst', + + init: function () { + }, + + render: function (seriesModel, ecModel, api, payload) { + var that = this; + + this.seriesModel = seriesModel; + this.api = api; + this.ecModel = ecModel; + + var data = seriesModel.getData(); + var virtualRoot = data.tree.root; + + var newRoot = seriesModel.getViewRoot(); + + var group = this.group; + + var renderLabelForZeroData = seriesModel.get('renderLabelForZeroData'); + + var newChildren = []; + newRoot.eachNode(function (node) { + newChildren.push(node); + }); + var oldChildren = this._oldChildren || []; + + dualTravel(newChildren, oldChildren); + + renderRollUp(virtualRoot, newRoot); + + if (payload && payload.highlight && payload.highlight.piece) { + var highlightPolicy = seriesModel.getShallow('highlightPolicy'); + payload.highlight.piece.onEmphasis(highlightPolicy); + } + else if (payload && payload.unhighlight) { + var piece = this.virtualPiece; + if (!piece && virtualRoot.children.length) { + piece = virtualRoot.children[0].piece; + } + if (piece) { + piece.onNormal(); + } + } + + this._initEvents(); + + this._oldChildren = newChildren; + + function dualTravel(newChildren, oldChildren) { + if (newChildren.length === 0 && oldChildren.length === 0) { + return; + } + + new DataDiffer(oldChildren, newChildren, getKey, getKey) + .add(processNode) + .update(processNode) + .remove(curry(processNode, null)) + .execute(); + + function getKey(node) { + return node.getId(); + } + + function processNode(newId, oldId) { + var newNode = newId == null ? null : newChildren[newId]; + var oldNode = oldId == null ? null : oldChildren[oldId]; + + doRenderNode(newNode, oldNode); + } + } + + function doRenderNode(newNode, oldNode) { + if (!renderLabelForZeroData && newNode && !newNode.getValue()) { + // Not render data with value 0 + newNode = null; + } + + if (newNode !== virtualRoot && oldNode !== virtualRoot) { + if (oldNode && oldNode.piece) { + if (newNode) { + // Update + oldNode.piece.updateData( + false, newNode, 'normal', seriesModel, ecModel); + + // For tooltip + data.setItemGraphicEl(newNode.dataIndex, oldNode.piece); + } + else { + // Remove + removeNode(oldNode); + } + } + else if (newNode) { + // Add + var piece = new SunburstPiece( + newNode, + seriesModel, + ecModel + ); + group.add(piece); + + // For tooltip + data.setItemGraphicEl(newNode.dataIndex, piece); + } + } + } + + function removeNode(node) { + if (!node) { + return; + } + + if (node.piece) { + group.remove(node.piece); + node.piece = null; + } + } + + function renderRollUp(virtualRoot, viewRoot) { + if (viewRoot.depth > 0) { + // Render + if (that.virtualPiece) { + // Update + that.virtualPiece.updateData( + false, virtualRoot, 'normal', seriesModel, ecModel); + } + else { + // Add + that.virtualPiece = new SunburstPiece( + virtualRoot, + seriesModel, + ecModel + ); + group.add(that.virtualPiece); + } + + if (viewRoot.piece._onclickEvent) { + viewRoot.piece.off('click', viewRoot.piece._onclickEvent); + } + var event = function (e) { + that._rootToNode(viewRoot.parentNode); + }; + viewRoot.piece._onclickEvent = event; + that.virtualPiece.on('click', event); + } + else if (that.virtualPiece) { + // Remove + group.remove(that.virtualPiece); + that.virtualPiece = null; + } + } + }, + + dispose: function () { + }, + + /** + * @private + */ + _initEvents: function () { + var that = this; + + var event = function (e) { + var targetFound = false; + var viewRoot = that.seriesModel.getViewRoot(); + viewRoot.eachNode(function (node) { + if (!targetFound + && node.piece && node.piece.childAt(0) === e.target + ) { + var nodeClick = node.getModel().get('nodeClick'); + if (nodeClick === 'rootToNode') { + that._rootToNode(node); + } + else if (nodeClick === 'link') { + var itemModel = node.getModel(); + var link = itemModel.get('link'); + if (link) { + var linkTarget = itemModel.get('target', true) + || '_blank'; + window.open(link, linkTarget); + } + } + targetFound = true; + } + }); + }; + + if (this.group._onclickEvent) { + this.group.off('click', this.group._onclickEvent); + } + this.group.on('click', event); + this.group._onclickEvent = event; + }, + + /** + * @private + */ + _rootToNode: function (node) { + if (node !== this.seriesModel.getViewRoot()) { + this.api.dispatchAction({ + type: ROOT_TO_NODE_ACTION, + from: this.uid, + seriesId: this.seriesModel.id, + targetNode: node + }); + } + }, + + /** + * @implement + */ + containPoint: function (point, seriesModel) { + var treeRoot = seriesModel.getData(); + var itemLayout = treeRoot.getItemLayout(0); + if (itemLayout) { + var dx = point[0] - itemLayout.cx; + var dy = point[1] - itemLayout.cy; + var radius = Math.sqrt(dx * dx + dy * dy); + return radius <= itemLayout.r && radius >= itemLayout.r0; + } + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @file Sunburst action + */ + +var ROOT_TO_NODE_ACTION$1 = 'sunburstRootToNode'; + +registerAction( + {type: ROOT_TO_NODE_ACTION$1, update: 'updateView'}, + function (payload, ecModel) { + + ecModel.eachComponent( + {mainType: 'series', subType: 'sunburst', query: payload}, + handleRootToNode + ); + + function handleRootToNode(model, index) { + var targetInfo = retrieveTargetInfo(payload, [ROOT_TO_NODE_ACTION$1], model); + + if (targetInfo) { + var originViewRoot = model.getViewRoot(); + if (originViewRoot) { + payload.direction = aboveViewRoot(originViewRoot, targetInfo.node) + ? 'rollUp' : 'drillDown'; + } + model.resetViewRoot(targetInfo.node); + } + } + } +); + + +var HIGHLIGHT_ACTION = 'sunburstHighlight'; + +registerAction( + {type: HIGHLIGHT_ACTION, update: 'updateView'}, + function (payload, ecModel) { + + ecModel.eachComponent( + {mainType: 'series', subType: 'sunburst', query: payload}, + handleHighlight + ); + + function handleHighlight(model, index) { + var targetInfo = retrieveTargetInfo(payload, [HIGHLIGHT_ACTION], model); + + if (targetInfo) { + payload.highlight = targetInfo.node; + } + } + } +); + + +var UNHIGHLIGHT_ACTION = 'sunburstUnhighlight'; + +registerAction( + {type: UNHIGHLIGHT_ACTION, update: 'updateView'}, + function (payload, ecModel) { + + ecModel.eachComponent( + {mainType: 'series', subType: 'sunburst', query: payload}, + handleUnhighlight + ); + + function handleUnhighlight(model, index) { + payload.unhighlight = true; + } + } +); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var RADIAN$2 = Math.PI / 180; + +var sunburstLayout = function (seriesType, ecModel, api, payload) { + ecModel.eachSeriesByType(seriesType, function (seriesModel) { + var center = seriesModel.get('center'); + var radius = seriesModel.get('radius'); + + if (!isArray(radius)) { + radius = [0, radius]; + } + if (!isArray(center)) { + center = [center, center]; + } + + var width = api.getWidth(); + var height = api.getHeight(); + var size = Math.min(width, height); + var cx = parsePercent$1(center[0], width); + var cy = parsePercent$1(center[1], height); + var r0 = parsePercent$1(radius[0], size / 2); + var r = parsePercent$1(radius[1], size / 2); + + var startAngle = -seriesModel.get('startAngle') * RADIAN$2; + var minAngle = seriesModel.get('minAngle') * RADIAN$2; + + var virtualRoot = seriesModel.getData().tree.root; + var treeRoot = seriesModel.getViewRoot(); + var rootDepth = treeRoot.depth; + + var sort = seriesModel.get('sort'); + if (sort != null) { + initChildren$1(treeRoot, sort); + } + + var validDataCount = 0; + each$1(treeRoot.children, function (child) { + !isNaN(child.getValue()) && validDataCount++; + }); + + var sum = treeRoot.getValue(); + // Sum may be 0 + var unitRadian = Math.PI / (sum || validDataCount) * 2; + + var renderRollupNode = treeRoot.depth > 0; + var levels = treeRoot.height - (renderRollupNode ? -1 : 1); + var rPerLevel = (r - r0) / (levels || 1); + + var clockwise = seriesModel.get('clockwise'); + + var stillShowZeroSum = seriesModel.get('stillShowZeroSum'); + + // In the case some sector angle is smaller than minAngle + var dir = clockwise ? 1 : -1; + + /** + * Render a tree + * @return increased angle + */ + var renderNode = function (node, startAngle) { + if (!node) { + return; + } + + var endAngle = startAngle; + + // Render self + if (node !== virtualRoot) { + // Tree node is virtual, so it doesn't need to be drawn + var value = node.getValue(); + + var angle = (sum === 0 && stillShowZeroSum) + ? unitRadian : (value * unitRadian); + if (angle < minAngle) { + angle = minAngle; + + } + else { + + } + + endAngle = startAngle + dir * angle; + + var depth = node.depth - rootDepth + - (renderRollupNode ? -1 : 1); + var rStart = r0 + rPerLevel * depth; + var rEnd = r0 + rPerLevel * (depth + 1); + + var itemModel = node.getModel(); + if (itemModel.get('r0') != null) { + rStart = parsePercent$1(itemModel.get('r0'), size / 2); + } + if (itemModel.get('r') != null) { + rEnd = parsePercent$1(itemModel.get('r'), size / 2); + } + + node.setLayout({ + angle: angle, + startAngle: startAngle, + endAngle: endAngle, + clockwise: clockwise, + cx: cx, + cy: cy, + r0: rStart, + r: rEnd + }); + } + + // Render children + if (node.children && node.children.length) { + // currentAngle = startAngle; + var siblingAngle = 0; + each$1(node.children, function (node) { + siblingAngle += renderNode(node, startAngle + siblingAngle); + }); + } + + return endAngle - startAngle; + }; + + // Virtual root node for roll up + if (renderRollupNode) { + var rStart = r0; + var rEnd = r0 + rPerLevel; + + var angle = Math.PI * 2; + virtualRoot.setLayout({ + angle: angle, + startAngle: startAngle, + endAngle: startAngle + angle, + clockwise: clockwise, + cx: cx, + cy: cy, + r0: rStart, + r: rEnd + }); + } + + renderNode(treeRoot, startAngle); + }); +}; + +/** + * Init node children by order and update visual + * + * @param {TreeNode} node root node + * @param {boolean} isAsc if is in ascendant order + */ +function initChildren$1(node, isAsc) { + var children = node.children || []; + + node.children = sort$2(children, isAsc); + + // Init children recursively + if (children.length) { + each$1(node.children, function (child) { + initChildren$1(child, isAsc); + }); + } +} + +/** + * Sort children nodes + * + * @param {TreeNode[]} children children of node to be sorted + * @param {string | function | null} sort sort method + * See SunburstSeries.js for details. + */ +function sort$2(children, sortOrder) { + if (typeof sortOrder === 'function') { + return children.sort(sortOrder); + } + else { + var isAsc = sortOrder === 'asc'; + return children.sort(function (a, b) { + var diff = (a.getValue() - b.getValue()) * (isAsc ? 1 : -1); + return diff === 0 + ? (a.dataIndex - b.dataIndex) * (isAsc ? -1 : 1) + : diff; + }); + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerVisual(curry(dataColor, 'sunburst')); +registerLayout(curry(sunburstLayout, 'sunburst')); +registerProcessor(curry(dataFilter, 'sunburst')); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function dataToCoordSize(dataSize, dataItem) { + // dataItem is necessary in log axis. + dataItem = dataItem || [0, 0]; + return map(['x', 'y'], function (dim, dimIdx) { + var axis = this.getAxis(dim); + var val = dataItem[dimIdx]; + var halfSize = dataSize[dimIdx] / 2; + return axis.type === 'category' + ? axis.getBandWidth() + : Math.abs(axis.dataToCoord(val - halfSize) - axis.dataToCoord(val + halfSize)); + }, this); +} + +var prepareCartesian2d = function (coordSys) { + var rect = coordSys.grid.getRect(); + return { + coordSys: { + // The name exposed to user is always 'cartesian2d' but not 'grid'. + type: 'cartesian2d', + x: rect.x, + y: rect.y, + width: rect.width, + height: rect.height + }, + api: { + coord: function (data) { + // do not provide "out" param + return coordSys.dataToPoint(data); + }, + size: bind(dataToCoordSize, coordSys) + } + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function dataToCoordSize$1(dataSize, dataItem) { + dataItem = dataItem || [0, 0]; + return map([0, 1], function (dimIdx) { + var val = dataItem[dimIdx]; + var halfSize = dataSize[dimIdx] / 2; + var p1 = []; + var p2 = []; + p1[dimIdx] = val - halfSize; + p2[dimIdx] = val + halfSize; + p1[1 - dimIdx] = p2[1 - dimIdx] = dataItem[1 - dimIdx]; + return Math.abs(this.dataToPoint(p1)[dimIdx] - this.dataToPoint(p2)[dimIdx]); + }, this); +} + +var prepareGeo = function (coordSys) { + var rect = coordSys.getBoundingRect(); + return { + coordSys: { + type: 'geo', + x: rect.x, + y: rect.y, + width: rect.width, + height: rect.height, + zoom: coordSys.getZoom() + }, + api: { + coord: function (data) { + // do not provide "out" and noRoam param, + // Compatible with this usage: + // echarts.util.map(item.points, api.coord) + return coordSys.dataToPoint(data); + }, + size: bind(dataToCoordSize$1, coordSys) + } + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function dataToCoordSize$2(dataSize, dataItem) { + // dataItem is necessary in log axis. + var axis = this.getAxis(); + var val = dataItem instanceof Array ? dataItem[0] : dataItem; + var halfSize = (dataSize instanceof Array ? dataSize[0] : dataSize) / 2; + return axis.type === 'category' + ? axis.getBandWidth() + : Math.abs(axis.dataToCoord(val - halfSize) - axis.dataToCoord(val + halfSize)); +} + +var prepareSingleAxis = function (coordSys) { + var rect = coordSys.getRect(); + + return { + coordSys: { + type: 'singleAxis', + x: rect.x, + y: rect.y, + width: rect.width, + height: rect.height + }, + api: { + coord: function (val) { + // do not provide "out" param + return coordSys.dataToPoint(val); + }, + size: bind(dataToCoordSize$2, coordSys) + } + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function dataToCoordSize$3(dataSize, dataItem) { + // dataItem is necessary in log axis. + return map(['Radius', 'Angle'], function (dim, dimIdx) { + var axis = this['get' + dim + 'Axis'](); + var val = dataItem[dimIdx]; + var halfSize = dataSize[dimIdx] / 2; + var method = 'dataTo' + dim; + + var result = axis.type === 'category' + ? axis.getBandWidth() + : Math.abs(axis[method](val - halfSize) - axis[method](val + halfSize)); + + if (dim === 'Angle') { + result = result * Math.PI / 180; + } + + return result; + + }, this); +} + +var preparePolar = function (coordSys) { + var radiusAxis = coordSys.getRadiusAxis(); + var angleAxis = coordSys.getAngleAxis(); + var radius = radiusAxis.getExtent(); + radius[0] > radius[1] && radius.reverse(); + + return { + coordSys: { + type: 'polar', + cx: coordSys.cx, + cy: coordSys.cy, + r: radius[1], + r0: radius[0] + }, + api: { + coord: bind(function (data) { + var radius = radiusAxis.dataToRadius(data[0]); + var angle = angleAxis.dataToAngle(data[1]); + var coord = coordSys.coordToPoint([radius, angle]); + coord.push(radius, angle * Math.PI / 180); + return coord; + }), + size: bind(dataToCoordSize$3, coordSys) + } + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var prepareCalendar = function (coordSys) { + var rect = coordSys.getRect(); + var rangeInfo = coordSys.getRangeInfo(); + + return { + coordSys: { + type: 'calendar', + x: rect.x, + y: rect.y, + width: rect.width, + height: rect.height, + cellWidth: coordSys.getCellWidth(), + cellHeight: coordSys.getCellHeight(), + rangeInfo: { + start: rangeInfo.start, + end: rangeInfo.end, + weeks: rangeInfo.weeks, + dayCount: rangeInfo.allDay + } + }, + api: { + coord: function (data, clamp) { + return coordSys.dataToPoint(data, clamp); + } + } + }; +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var CACHED_LABEL_STYLE_PROPERTIES$1 = CACHED_LABEL_STYLE_PROPERTIES; +var ITEM_STYLE_NORMAL_PATH = ['itemStyle']; +var ITEM_STYLE_EMPHASIS_PATH = ['emphasis', 'itemStyle']; +var LABEL_NORMAL = ['label']; +var LABEL_EMPHASIS = ['emphasis', 'label']; +// Use prefix to avoid index to be the same as el.name, +// which will cause weird udpate animation. +var GROUP_DIFF_PREFIX = 'e\0\0'; + + +/** + * To reduce total package size of each coordinate systems, the modules `prepareCustom` + * of each coordinate systems are not required by each coordinate systems directly, but + * required by the module `custom`. + * + * prepareInfoForCustomSeries {Function}: optional + * @return {Object} {coordSys: {...}, api: { + * coord: function (data, clamp) {}, // return point in global. + * size: function (dataSize, dataItem) {} // return size of each axis in coordSys. + * }} + */ +var prepareCustoms = { + cartesian2d: prepareCartesian2d, + geo: prepareGeo, + singleAxis: prepareSingleAxis, + polar: preparePolar, + calendar: prepareCalendar +}; + + +// ------ +// Model +// ------ + +SeriesModel.extend({ + + type: 'series.custom', + + dependencies: ['grid', 'polar', 'geo', 'singleAxis', 'calendar'], + + defaultOption: { + coordinateSystem: 'cartesian2d', // Can be set as 'none' + zlevel: 0, + z: 2, + legendHoverLink: true, + + useTransform: true + + // Cartesian coordinate system + // xAxisIndex: 0, + // yAxisIndex: 0, + + // Polar coordinate system + // polarIndex: 0, + + // Geo coordinate system + // geoIndex: 0, + + // label: {} + // itemStyle: {} + }, + + /** + * @override + */ + getInitialData: function (option, ecModel) { + return createListFromArray(this.getSource(), this); + }, + + /** + * @override + */ + getDataParams: function (dataIndex, dataType, el) { + var params = SeriesModel.prototype.getDataParams.apply(this, arguments); + el && (params.info = el.info); + return params; + } +}); + +// ----- +// View +// ----- + +Chart.extend({ + + type: 'custom', + + /** + * @private + * @type {module:echarts/data/List} + */ + _data: null, + + /** + * @override + */ + render: function (customSeries, ecModel, api, payload) { + var oldData = this._data; + var data = customSeries.getData(); + var group = this.group; + var renderItem = makeRenderItem(customSeries, data, ecModel, api); + + // By default, merge mode is applied. In most cases, custom series is + // used in the scenario that data amount is not large but graphic elements + // is complicated, where merge mode is probably necessary for optimization. + // For example, reuse graphic elements and only update the transform when + // roam or data zoom according to `actionType`. + data.diff(oldData) + .add(function (newIdx) { + createOrUpdate$1( + null, newIdx, renderItem(newIdx, payload), customSeries, group, data + ); + }) + .update(function (newIdx, oldIdx) { + var el = oldData.getItemGraphicEl(oldIdx); + createOrUpdate$1( + el, newIdx, renderItem(newIdx, payload), customSeries, group, data + ); + }) + .remove(function (oldIdx) { + var el = oldData.getItemGraphicEl(oldIdx); + el && group.remove(el); + }) + .execute(); + + this._data = data; + }, + + incrementalPrepareRender: function (customSeries, ecModel, api) { + this.group.removeAll(); + this._data = null; + }, + + incrementalRender: function (params, customSeries, ecModel, api, payload) { + var data = customSeries.getData(); + var renderItem = makeRenderItem(customSeries, data, ecModel, api); + function setIncrementalAndHoverLayer(el) { + if (!el.isGroup) { + el.incremental = true; + el.useHoverLayer = true; + } + } + for (var idx = params.start; idx < params.end; idx++) { + var el = createOrUpdate$1(null, idx, renderItem(idx, payload), customSeries, this.group, data); + el.traverse(setIncrementalAndHoverLayer); + } + }, + + /** + * @override + */ + dispose: noop, + + /** + * @override + */ + filterForExposedEvent: function (eventType, query, targetEl, packedEvent) { + var elementName = query.element; + if (elementName == null || targetEl.name === elementName) { + return true; + } + + // Enable to give a name on a group made by `renderItem`, and listen + // events that triggerd by its descendents. + while ((targetEl = targetEl.parent) && targetEl !== this.group) { + if (targetEl.name === elementName) { + return true; + } + } + + return false; + } +}); + + +function createEl(elOption) { + var graphicType = elOption.type; + var el; + + if (graphicType === 'path') { + var shape = elOption.shape; + // Using pathRect brings convenience to users sacle svg path. + var pathRect = (shape.width != null && shape.height != null) + ? { + x: shape.x || 0, + y: shape.y || 0, + width: shape.width, + height: shape.height + } + : null; + var pathData = getPathData(shape); + // Path is also used for icon, so layout 'center' by default. + el = makePath(pathData, null, pathRect, shape.layout || 'center'); + el.__customPathData = pathData; + } + else if (graphicType === 'image') { + el = new ZImage({}); + el.__customImagePath = elOption.style.image; + } + else if (graphicType === 'text') { + el = new Text({}); + el.__customText = elOption.style.text; + } + else { + var Clz = graphic[graphicType.charAt(0).toUpperCase() + graphicType.slice(1)]; + + if (__DEV__) { + assert$1(Clz, 'graphic type "' + graphicType + '" can not be found.'); + } + + el = new Clz(); + } + + el.__customGraphicType = graphicType; + el.name = elOption.name; + + return el; +} + +function updateEl(el, dataIndex, elOption, animatableModel, data, isInit, isRoot) { + var transitionProps = {}; + var elOptionStyle = elOption.style || {}; + + elOption.shape && (transitionProps.shape = clone(elOption.shape)); + elOption.position && (transitionProps.position = elOption.position.slice()); + elOption.scale && (transitionProps.scale = elOption.scale.slice()); + elOption.origin && (transitionProps.origin = elOption.origin.slice()); + elOption.rotation && (transitionProps.rotation = elOption.rotation); + + if (el.type === 'image' && elOption.style) { + var targetStyle = transitionProps.style = {}; + each$1(['x', 'y', 'width', 'height'], function (prop) { + prepareStyleTransition(prop, targetStyle, elOptionStyle, el.style, isInit); + }); + } + + if (el.type === 'text' && elOption.style) { + var targetStyle = transitionProps.style = {}; + each$1(['x', 'y'], function (prop) { + prepareStyleTransition(prop, targetStyle, elOptionStyle, el.style, isInit); + }); + // Compatible with previous: both support + // textFill and fill, textStroke and stroke in 'text' element. + !elOptionStyle.hasOwnProperty('textFill') && elOptionStyle.fill && ( + elOptionStyle.textFill = elOptionStyle.fill + ); + !elOptionStyle.hasOwnProperty('textStroke') && elOptionStyle.stroke && ( + elOptionStyle.textStroke = elOptionStyle.stroke + ); + } + + if (el.type !== 'group') { + el.useStyle(elOptionStyle); + + // Init animation. + if (isInit) { + el.style.opacity = 0; + var targetOpacity = elOptionStyle.opacity; + targetOpacity == null && (targetOpacity = 1); + initProps(el, {style: {opacity: targetOpacity}}, animatableModel, dataIndex); + } + } + + if (isInit) { + el.attr(transitionProps); + } + else { + updateProps(el, transitionProps, animatableModel, dataIndex); + } + + // Merge by default. + // z2 must not be null/undefined, otherwise sort error may occur. + elOption.hasOwnProperty('z2') && el.attr('z2', elOption.z2 || 0); + elOption.hasOwnProperty('silent') && el.attr('silent', elOption.silent); + elOption.hasOwnProperty('invisible') && el.attr('invisible', elOption.invisible); + elOption.hasOwnProperty('ignore') && el.attr('ignore', elOption.ignore); + // `elOption.info` enables user to mount some info on + // elements and use them in event handlers. + // Update them only when user specified, otherwise, remain. + elOption.hasOwnProperty('info') && el.attr('info', elOption.info); + + // If `elOption.styleEmphasis` is `false`, remove hover style. The + // logic is ensured by `graphicUtil.setElementHoverStyle`. + var styleEmphasis = elOption.styleEmphasis; + var disableStyleEmphasis = styleEmphasis === false; + if (!( + // Try to escapse setting hover style for performance. + (el.__cusHasEmphStl && styleEmphasis == null) + || (!el.__cusHasEmphStl && disableStyleEmphasis) + )) { + // Should not use graphicUtil.setHoverStyle, since the styleEmphasis + // should not be share by group and its descendants. + setElementHoverStyle(el, styleEmphasis); + el.__cusHasEmphStl = !disableStyleEmphasis; + } + if (isRoot) { + setAsHighDownDispatcher(el, !disableStyleEmphasis); + } +} + +function prepareStyleTransition(prop, targetStyle, elOptionStyle, oldElStyle, isInit) { + if (elOptionStyle[prop] != null && !isInit) { + targetStyle[prop] = elOptionStyle[prop]; + elOptionStyle[prop] = oldElStyle[prop]; + } +} + +function makeRenderItem(customSeries, data, ecModel, api) { + var renderItem = customSeries.get('renderItem'); + var coordSys = customSeries.coordinateSystem; + var prepareResult = {}; + + if (coordSys) { + if (__DEV__) { + assert$1(renderItem, 'series.render is required.'); + assert$1( + coordSys.prepareCustoms || prepareCustoms[coordSys.type], + 'This coordSys does not support custom series.' + ); + } + + prepareResult = coordSys.prepareCustoms + ? coordSys.prepareCustoms() + : prepareCustoms[coordSys.type](coordSys); + } + + var userAPI = defaults({ + getWidth: api.getWidth, + getHeight: api.getHeight, + getZr: api.getZr, + getDevicePixelRatio: api.getDevicePixelRatio, + value: value, + style: style, + styleEmphasis: styleEmphasis, + visual: visual, + barLayout: barLayout, + currentSeriesIndices: currentSeriesIndices, + font: font + }, prepareResult.api || {}); + + var userParams = { + // The life cycle of context: current round of rendering. + // The global life cycle is probably not necessary, because + // user can store global status by themselves. + context: {}, + seriesId: customSeries.id, + seriesName: customSeries.name, + seriesIndex: customSeries.seriesIndex, + coordSys: prepareResult.coordSys, + dataInsideLength: data.count(), + encode: wrapEncodeDef(customSeries.getData()) + }; + + // Do not support call `api` asynchronously without dataIndexInside input. + var currDataIndexInside; + var currDirty = true; + var currItemModel; + var currLabelNormalModel; + var currLabelEmphasisModel; + var currVisualColor; + + return function (dataIndexInside, payload) { + currDataIndexInside = dataIndexInside; + currDirty = true; + + return renderItem && renderItem( + defaults({ + dataIndexInside: dataIndexInside, + dataIndex: data.getRawIndex(dataIndexInside), + // Can be used for optimization when zoom or roam. + actionType: payload ? payload.type : null + }, userParams), + userAPI + ); + }; + + // Do not update cache until api called. + function updateCache(dataIndexInside) { + dataIndexInside == null && (dataIndexInside = currDataIndexInside); + if (currDirty) { + currItemModel = data.getItemModel(dataIndexInside); + currLabelNormalModel = currItemModel.getModel(LABEL_NORMAL); + currLabelEmphasisModel = currItemModel.getModel(LABEL_EMPHASIS); + currVisualColor = data.getItemVisual(dataIndexInside, 'color'); + + currDirty = false; + } + } + + /** + * @public + * @param {number|string} dim + * @param {number} [dataIndexInside=currDataIndexInside] + * @return {number|string} value + */ + function value(dim, dataIndexInside) { + dataIndexInside == null && (dataIndexInside = currDataIndexInside); + return data.get(data.getDimension(dim || 0), dataIndexInside); + } + + /** + * By default, `visual` is applied to style (to support visualMap). + * `visual.color` is applied at `fill`. If user want apply visual.color on `stroke`, + * it can be implemented as: + * `api.style({stroke: api.visual('color'), fill: null})`; + * @public + * @param {Object} [extra] + * @param {number} [dataIndexInside=currDataIndexInside] + */ + function style(extra, dataIndexInside) { + dataIndexInside == null && (dataIndexInside = currDataIndexInside); + updateCache(dataIndexInside); + + var itemStyle = currItemModel.getModel(ITEM_STYLE_NORMAL_PATH).getItemStyle(); + + currVisualColor != null && (itemStyle.fill = currVisualColor); + var opacity = data.getItemVisual(dataIndexInside, 'opacity'); + opacity != null && (itemStyle.opacity = opacity); + + var labelModel = extra + ? applyExtraBefore(extra, currLabelNormalModel) + : currLabelNormalModel; + + setTextStyle(itemStyle, labelModel, null, { + autoColor: currVisualColor, + isRectText: true + }); + + itemStyle.text = labelModel.getShallow('show') + ? retrieve2( + customSeries.getFormattedLabel(dataIndexInside, 'normal'), + getDefaultLabel(data, dataIndexInside) + ) + : null; + + extra && applyExtraAfter(itemStyle, extra); + + return itemStyle; + } + + /** + * @public + * @param {Object} [extra] + * @param {number} [dataIndexInside=currDataIndexInside] + */ + function styleEmphasis(extra, dataIndexInside) { + dataIndexInside == null && (dataIndexInside = currDataIndexInside); + updateCache(dataIndexInside); + + var itemStyle = currItemModel.getModel(ITEM_STYLE_EMPHASIS_PATH).getItemStyle(); + + var labelModel = extra + ? applyExtraBefore(extra, currLabelEmphasisModel) + : currLabelEmphasisModel; + + setTextStyle(itemStyle, labelModel, null, { + isRectText: true + }, true); + + itemStyle.text = labelModel.getShallow('show') + ? retrieve3( + customSeries.getFormattedLabel(dataIndexInside, 'emphasis'), + customSeries.getFormattedLabel(dataIndexInside, 'normal'), + getDefaultLabel(data, dataIndexInside) + ) + : null; + + extra && applyExtraAfter(itemStyle, extra); + + return itemStyle; + } + + /** + * @public + * @param {string} visualType + * @param {number} [dataIndexInside=currDataIndexInside] + */ + function visual(visualType, dataIndexInside) { + dataIndexInside == null && (dataIndexInside = currDataIndexInside); + return data.getItemVisual(dataIndexInside, visualType); + } + + /** + * @public + * @param {number} opt.count Positive interger. + * @param {number} [opt.barWidth] + * @param {number} [opt.barMaxWidth] + * @param {number} [opt.barGap] + * @param {number} [opt.barCategoryGap] + * @return {Object} {width, offset, offsetCenter} is not support, return undefined. + */ + function barLayout(opt) { + if (coordSys.getBaseAxis) { + var baseAxis = coordSys.getBaseAxis(); + return getLayoutOnAxis(defaults({axis: baseAxis}, opt), api); + } + } + + /** + * @public + * @return {Array.} + */ + function currentSeriesIndices() { + return ecModel.getCurrentSeriesIndices(); + } + + /** + * @public + * @param {Object} opt + * @param {string} [opt.fontStyle] + * @param {number} [opt.fontWeight] + * @param {number} [opt.fontSize] + * @param {string} [opt.fontFamily] + * @return {string} font string + */ + function font(opt) { + return getFont(opt, ecModel); + } +} + +function wrapEncodeDef(data) { + var encodeDef = {}; + each$1(data.dimensions, function (dimName, dataDimIndex) { + var dimInfo = data.getDimensionInfo(dimName); + if (!dimInfo.isExtraCoord) { + var coordDim = dimInfo.coordDim; + var dataDims = encodeDef[coordDim] = encodeDef[coordDim] || []; + dataDims[dimInfo.coordDimIndex] = dataDimIndex; + } + }); + return encodeDef; +} + +function createOrUpdate$1(el, dataIndex, elOption, animatableModel, group, data) { + el = doCreateOrUpdate(el, dataIndex, elOption, animatableModel, group, data, true); + el && data.setItemGraphicEl(dataIndex, el); + + return el; +} + +function doCreateOrUpdate(el, dataIndex, elOption, animatableModel, group, data, isRoot) { + + // [Rule] + // By default, follow merge mode. + // (It probably brings benifit for performance in some cases of large data, where + // user program can be optimized to that only updated props needed to be re-calculated, + // or according to `actionType` some calculation can be skipped.) + // If `renderItem` returns `null`/`undefined`/`false`, remove the previous el if existing. + // (It seems that violate the "merge" principle, but most of users probably intuitively + // regard "return;" as "show nothing element whatever", so make a exception to meet the + // most cases.) + + var simplyRemove = !elOption; // `null`/`undefined`/`false` + elOption = elOption || {}; + var elOptionType = elOption.type; + var elOptionShape = elOption.shape; + var elOptionStyle = elOption.style; + + if (el && ( + simplyRemove + // || elOption.$merge === false + // If `elOptionType` is `null`, follow the merge principle. + || (elOptionType != null + && elOptionType !== el.__customGraphicType + ) + || (elOptionType === 'path' + && hasOwnPathData(elOptionShape) && getPathData(elOptionShape) !== el.__customPathData + ) + || (elOptionType === 'image' + && hasOwn(elOptionStyle, 'image') && elOptionStyle.image !== el.__customImagePath + ) + // FIXME test and remove this restriction? + || (elOptionType === 'text' + && hasOwn(elOptionShape, 'text') && elOptionStyle.text !== el.__customText + ) + )) { + group.remove(el); + el = null; + } + + // `elOption.type` is undefined when `renderItem` returns nothing. + if (simplyRemove) { + return; + } + + var isInit = !el; + !el && (el = createEl(elOption)); + updateEl(el, dataIndex, elOption, animatableModel, data, isInit, isRoot); + + if (elOptionType === 'group') { + mergeChildren(el, dataIndex, elOption, animatableModel, data); + } + + // Always add whatever already added to ensure sequence. + group.add(el); + + return el; +} + +// Usage: +// (1) By default, `elOption.$mergeChildren` is `'byIndex'`, which indicates that +// the existing children will not be removed, and enables the feature that +// update some of the props of some of the children simply by construct +// the returned children of `renderItem` like: +// `var children = group.children = []; children[3] = {opacity: 0.5};` +// (2) If `elOption.$mergeChildren` is `'byName'`, add/update/remove children +// by child.name. But that might be lower performance. +// (3) If `elOption.$mergeChildren` is `false`, the existing children will be +// replaced totally. +// (4) If `!elOption.children`, following the "merge" principle, nothing will happen. +// +// For implementation simpleness, do not provide a direct way to remove sinlge +// child (otherwise the total indicies of the children array have to be modified). +// User can remove a single child by set its `ignore` as `true` or replace +// it by another element, where its `$merge` can be set as `true` if necessary. +function mergeChildren(el, dataIndex, elOption, animatableModel, data) { + var newChildren = elOption.children; + var newLen = newChildren ? newChildren.length : 0; + var mergeChildren = elOption.$mergeChildren; + // `diffChildrenByName` has been deprecated. + var byName = mergeChildren === 'byName' || elOption.diffChildrenByName; + var notMerge = mergeChildren === false; + + // For better performance on roam update, only enter if necessary. + if (!newLen && !byName && !notMerge) { + return; + } + + if (byName) { + diffGroupChildren({ + oldChildren: el.children() || [], + newChildren: newChildren || [], + dataIndex: dataIndex, + animatableModel: animatableModel, + group: el, + data: data + }); + return; + } + + notMerge && el.removeAll(); + + // Mapping children of a group simply by index, which + // might be better performance. + var index = 0; + for (; index < newLen; index++) { + newChildren[index] && doCreateOrUpdate( + el.childAt(index), + dataIndex, + newChildren[index], + animatableModel, + el, + data + ); + } + if (__DEV__) { + assert$1( + !notMerge || el.childCount() === index, + 'MUST NOT contain empty item in children array when `group.$mergeChildren` is `false`.' + ); + } +} + +function diffGroupChildren(context) { + (new DataDiffer( + context.oldChildren, + context.newChildren, + getKey, + getKey, + context + )) + .add(processAddUpdate) + .update(processAddUpdate) + .remove(processRemove) + .execute(); +} + +function getKey(item, idx) { + var name = item && item.name; + return name != null ? name : GROUP_DIFF_PREFIX + idx; +} + +function processAddUpdate(newIndex, oldIndex) { + var context = this.context; + var childOption = newIndex != null ? context.newChildren[newIndex] : null; + var child = oldIndex != null ? context.oldChildren[oldIndex] : null; + + doCreateOrUpdate( + child, + context.dataIndex, + childOption, + context.animatableModel, + context.group, + context.data + ); +} + +// `graphic#applyDefaultTextStyle` will cache +// textFill, textStroke, textStrokeWidth. +// We have to do this trick. +function applyExtraBefore(extra, model) { + var dummyModel = new Model({}, model); + each$1(CACHED_LABEL_STYLE_PROPERTIES$1, function (stylePropName, modelPropName) { + if (extra.hasOwnProperty(stylePropName)) { + dummyModel.option[modelPropName] = extra[stylePropName]; + } + }); + return dummyModel; +} + +function applyExtraAfter(itemStyle, extra) { + for (var key in extra) { + if (extra.hasOwnProperty(key) + || !CACHED_LABEL_STYLE_PROPERTIES$1.hasOwnProperty(key) + ) { + itemStyle[key] = extra[key]; + } + } +} + +function processRemove(oldIndex) { + var context = this.context; + var child = context.oldChildren[oldIndex]; + child && context.group.remove(child); +} + +function getPathData(shape) { + // "d" follows the SVG convention. + return shape && (shape.pathData || shape.d); +} + +function hasOwnPathData(shape) { + return shape && (shape.hasOwnProperty('pathData') || shape.hasOwnProperty('d')); +} + +function hasOwn(host, prop) { + return host && host.hasOwnProperty(prop); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function getSeriesStackId$1(seriesModel) { + return seriesModel.get('stack') + || '__ec_stack_' + seriesModel.seriesIndex; +} + +function getAxisKey$1(polar, axis) { + return axis.dim + polar.model.componentIndex; +} + +/** + * @param {string} seriesType + * @param {module:echarts/model/Global} ecModel + * @param {module:echarts/ExtensionAPI} api + */ +function barLayoutPolar(seriesType, ecModel, api) { + + var lastStackCoords = {}; + + var barWidthAndOffset = calRadialBar( + filter( + ecModel.getSeriesByType(seriesType), + function (seriesModel) { + return !ecModel.isSeriesFiltered(seriesModel) + && seriesModel.coordinateSystem + && seriesModel.coordinateSystem.type === 'polar'; + } + ) + ); + + ecModel.eachSeriesByType(seriesType, function (seriesModel) { + + // Check series coordinate, do layout for polar only + if (seriesModel.coordinateSystem.type !== 'polar') { + return; + } + + var data = seriesModel.getData(); + var polar = seriesModel.coordinateSystem; + var baseAxis = polar.getBaseAxis(); + var axisKey = getAxisKey$1(polar, baseAxis); + + var stackId = getSeriesStackId$1(seriesModel); + var columnLayoutInfo + = barWidthAndOffset[axisKey][stackId]; + var columnOffset = columnLayoutInfo.offset; + var columnWidth = columnLayoutInfo.width; + var valueAxis = polar.getOtherAxis(baseAxis); + + var cx = seriesModel.coordinateSystem.cx; + var cy = seriesModel.coordinateSystem.cy; + + var barMinHeight = seriesModel.get('barMinHeight') || 0; + var barMinAngle = seriesModel.get('barMinAngle') || 0; + + lastStackCoords[stackId] = lastStackCoords[stackId] || []; + + var valueDim = data.mapDimension(valueAxis.dim); + var baseDim = data.mapDimension(baseAxis.dim); + var stacked = isDimensionStacked(data, valueDim /*, baseDim*/); + + var valueAxisStart = valueAxis.getExtent()[0]; + + for (var idx = 0, len = data.count(); idx < len; idx++) { + var value = data.get(valueDim, idx); + var baseValue = data.get(baseDim, idx); + + if (isNaN(value)) { + continue; + } + + var sign = value >= 0 ? 'p' : 'n'; + var baseCoord = valueAxisStart; + + // Because of the barMinHeight, we can not use the value in + // stackResultDimension directly. + // Only ordinal axis can be stacked. + if (stacked) { + if (!lastStackCoords[stackId][baseValue]) { + lastStackCoords[stackId][baseValue] = { + p: valueAxisStart, // Positive stack + n: valueAxisStart // Negative stack + }; + } + // Should also consider #4243 + baseCoord = lastStackCoords[stackId][baseValue][sign]; + } + + var r0; + var r; + var startAngle; + var endAngle; + + // radial sector + if (valueAxis.dim === 'radius') { + var radiusSpan = valueAxis.dataToRadius(value) - valueAxisStart; + var angle = baseAxis.dataToAngle(baseValue); + + if (Math.abs(radiusSpan) < barMinHeight) { + radiusSpan = (radiusSpan < 0 ? -1 : 1) * barMinHeight; + } + + r0 = baseCoord; + r = baseCoord + radiusSpan; + startAngle = angle - columnOffset; + endAngle = startAngle - columnWidth; + + stacked && (lastStackCoords[stackId][baseValue][sign] = r); + } + // tangential sector + else { + // angleAxis must be clamped. + var angleSpan = valueAxis.dataToAngle(value, true) - valueAxisStart; + var radius = baseAxis.dataToRadius(baseValue); + + if (Math.abs(angleSpan) < barMinAngle) { + angleSpan = (angleSpan < 0 ? -1 : 1) * barMinAngle; + } + + r0 = radius + columnOffset; + r = r0 + columnWidth; + startAngle = baseCoord; + endAngle = baseCoord + angleSpan; + + // if the previous stack is at the end of the ring, + // add a round to differentiate it from origin + // var extent = angleAxis.getExtent(); + // var stackCoord = angle; + // if (stackCoord === extent[0] && value > 0) { + // stackCoord = extent[1]; + // } + // else if (stackCoord === extent[1] && value < 0) { + // stackCoord = extent[0]; + // } + stacked && (lastStackCoords[stackId][baseValue][sign] = endAngle); + } + + data.setItemLayout(idx, { + cx: cx, + cy: cy, + r0: r0, + r: r, + // Consider that positive angle is anti-clockwise, + // while positive radian of sector is clockwise + startAngle: -startAngle * Math.PI / 180, + endAngle: -endAngle * Math.PI / 180 + }); + + } + + }, this); + +} + +/** + * Calculate bar width and offset for radial bar charts + */ +function calRadialBar(barSeries, api) { + // Columns info on each category axis. Key is polar name + var columnsMap = {}; + + each$1(barSeries, function (seriesModel, idx) { + var data = seriesModel.getData(); + var polar = seriesModel.coordinateSystem; + + var baseAxis = polar.getBaseAxis(); + var axisKey = getAxisKey$1(polar, baseAxis); + + var axisExtent = baseAxis.getExtent(); + var bandWidth = baseAxis.type === 'category' + ? baseAxis.getBandWidth() + : (Math.abs(axisExtent[1] - axisExtent[0]) / data.count()); + + var columnsOnAxis = columnsMap[axisKey] || { + bandWidth: bandWidth, + remainedWidth: bandWidth, + autoWidthCount: 0, + categoryGap: '20%', + gap: '30%', + stacks: {} + }; + var stacks = columnsOnAxis.stacks; + columnsMap[axisKey] = columnsOnAxis; + + var stackId = getSeriesStackId$1(seriesModel); + + if (!stacks[stackId]) { + columnsOnAxis.autoWidthCount++; + } + stacks[stackId] = stacks[stackId] || { + width: 0, + maxWidth: 0 + }; + + var barWidth = parsePercent$1( + seriesModel.get('barWidth'), + bandWidth + ); + var barMaxWidth = parsePercent$1( + seriesModel.get('barMaxWidth'), + bandWidth + ); + var barGap = seriesModel.get('barGap'); + var barCategoryGap = seriesModel.get('barCategoryGap'); + + if (barWidth && !stacks[stackId].width) { + barWidth = Math.min(columnsOnAxis.remainedWidth, barWidth); + stacks[stackId].width = barWidth; + columnsOnAxis.remainedWidth -= barWidth; + } + + barMaxWidth && (stacks[stackId].maxWidth = barMaxWidth); + (barGap != null) && (columnsOnAxis.gap = barGap); + (barCategoryGap != null) && (columnsOnAxis.categoryGap = barCategoryGap); + }); + + + var result = {}; + + each$1(columnsMap, function (columnsOnAxis, coordSysName) { + + result[coordSysName] = {}; + + var stacks = columnsOnAxis.stacks; + var bandWidth = columnsOnAxis.bandWidth; + var categoryGap = parsePercent$1(columnsOnAxis.categoryGap, bandWidth); + var barGapPercent = parsePercent$1(columnsOnAxis.gap, 1); + + var remainedWidth = columnsOnAxis.remainedWidth; + var autoWidthCount = columnsOnAxis.autoWidthCount; + var autoWidth = (remainedWidth - categoryGap) + / (autoWidthCount + (autoWidthCount - 1) * barGapPercent); + autoWidth = Math.max(autoWidth, 0); + + // Find if any auto calculated bar exceeded maxBarWidth + each$1(stacks, function (column, stack) { + var maxWidth = column.maxWidth; + if (maxWidth && maxWidth < autoWidth) { + maxWidth = Math.min(maxWidth, remainedWidth); + if (column.width) { + maxWidth = Math.min(maxWidth, column.width); + } + remainedWidth -= maxWidth; + column.width = maxWidth; + autoWidthCount--; + } + }); + + // Recalculate width again + autoWidth = (remainedWidth - categoryGap) + / (autoWidthCount + (autoWidthCount - 1) * barGapPercent); + autoWidth = Math.max(autoWidth, 0); + + var widthSum = 0; + var lastColumn; + each$1(stacks, function (column, idx) { + if (!column.width) { + column.width = autoWidth; + } + lastColumn = column; + widthSum += column.width * (1 + barGapPercent); + }); + if (lastColumn) { + widthSum -= lastColumn.width * barGapPercent; + } + + var offset = -widthSum / 2; + each$1(stacks, function (column, stackId) { + result[coordSysName][stackId] = result[coordSysName][stackId] || { + offset: offset, + width: column.width + }; + + offset += column.width * (1 + barGapPercent); + }); + }); + + return result; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function RadiusAxis(scale, radiusExtent) { + + Axis.call(this, 'radius', scale, radiusExtent); + + /** + * Axis type + * - 'category' + * - 'value' + * - 'time' + * - 'log' + * @type {string} + */ + this.type = 'category'; +} + +RadiusAxis.prototype = { + + constructor: RadiusAxis, + + /** + * @override + */ + pointToData: function (point, clamp) { + return this.polar.pointToData(point, clamp)[this.dim === 'radius' ? 0 : 1]; + }, + + dataToRadius: Axis.prototype.dataToCoord, + + radiusToData: Axis.prototype.coordToData +}; + +inherits(RadiusAxis, Axis); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var inner$12 = makeInner(); + +function AngleAxis(scale, angleExtent) { + + angleExtent = angleExtent || [0, 360]; + + Axis.call(this, 'angle', scale, angleExtent); + + /** + * Axis type + * - 'category' + * - 'value' + * - 'time' + * - 'log' + * @type {string} + */ + this.type = 'category'; +} + +AngleAxis.prototype = { + + constructor: AngleAxis, + + /** + * @override + */ + pointToData: function (point, clamp) { + return this.polar.pointToData(point, clamp)[this.dim === 'radius' ? 0 : 1]; + }, + + dataToAngle: Axis.prototype.dataToCoord, + + angleToData: Axis.prototype.coordToData, + + /** + * Only be called in category axis. + * Angle axis uses text height to decide interval + * + * @override + * @return {number} Auto interval for cateogry axis tick and label + */ + calculateCategoryInterval: function () { + var axis = this; + var labelModel = axis.getLabelModel(); + + var ordinalScale = axis.scale; + var ordinalExtent = ordinalScale.getExtent(); + // Providing this method is for optimization: + // avoid generating a long array by `getTicks` + // in large category data case. + var tickCount = ordinalScale.count(); + + if (ordinalExtent[1] - ordinalExtent[0] < 1) { + return 0; + } + + var tickValue = ordinalExtent[0]; + var unitSpan = axis.dataToCoord(tickValue + 1) - axis.dataToCoord(tickValue); + var unitH = Math.abs(unitSpan); + + // Not precise, just use height as text width + // and each distance from axis line yet. + var rect = getBoundingRect( + tickValue, labelModel.getFont(), 'center', 'top' + ); + var maxH = Math.max(rect.height, 7); + + var dh = maxH / unitH; + // 0/0 is NaN, 1/0 is Infinity. + isNaN(dh) && (dh = Infinity); + var interval = Math.max(0, Math.floor(dh)); + + var cache = inner$12(axis.model); + var lastAutoInterval = cache.lastAutoInterval; + var lastTickCount = cache.lastTickCount; + + // Use cache to keep interval stable while moving zoom window, + // otherwise the calculated interval might jitter when the zoom + // window size is close to the interval-changing size. + if (lastAutoInterval != null + && lastTickCount != null + && Math.abs(lastAutoInterval - interval) <= 1 + && Math.abs(lastTickCount - tickCount) <= 1 + // Always choose the bigger one, otherwise the critical + // point is not the same when zooming in or zooming out. + && lastAutoInterval > interval + ) { + interval = lastAutoInterval; + } + // Only update cache if cache not used, otherwise the + // changing of interval is too insensitive. + else { + cache.lastTickCount = tickCount; + cache.lastAutoInterval = interval; + } + + return interval; + } +}; + +inherits(AngleAxis, Axis); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @module echarts/coord/polar/Polar + */ + +/** + * @alias {module:echarts/coord/polar/Polar} + * @constructor + * @param {string} name + */ +var Polar = function (name) { + + /** + * @type {string} + */ + this.name = name || ''; + + /** + * x of polar center + * @type {number} + */ + this.cx = 0; + + /** + * y of polar center + * @type {number} + */ + this.cy = 0; + + /** + * @type {module:echarts/coord/polar/RadiusAxis} + * @private + */ + this._radiusAxis = new RadiusAxis(); + + /** + * @type {module:echarts/coord/polar/AngleAxis} + * @private + */ + this._angleAxis = new AngleAxis(); + + this._radiusAxis.polar = this._angleAxis.polar = this; +}; + +Polar.prototype = { + + type: 'polar', + + axisPointerEnabled: true, + + constructor: Polar, + + /** + * @param {Array.} + * @readOnly + */ + dimensions: ['radius', 'angle'], + + /** + * @type {module:echarts/coord/PolarModel} + */ + model: null, + + /** + * If contain coord + * @param {Array.} point + * @return {boolean} + */ + containPoint: function (point) { + var coord = this.pointToCoord(point); + return this._radiusAxis.contain(coord[0]) + && this._angleAxis.contain(coord[1]); + }, + + /** + * If contain data + * @param {Array.} data + * @return {boolean} + */ + containData: function (data) { + return this._radiusAxis.containData(data[0]) + && this._angleAxis.containData(data[1]); + }, + + /** + * @param {string} dim + * @return {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis} + */ + getAxis: function (dim) { + return this['_' + dim + 'Axis']; + }, + + /** + * @return {Array.} + */ + getAxes: function () { + return [this._radiusAxis, this._angleAxis]; + }, + + /** + * Get axes by type of scale + * @param {string} scaleType + * @return {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis} + */ + getAxesByScale: function (scaleType) { + var axes = []; + var angleAxis = this._angleAxis; + var radiusAxis = this._radiusAxis; + angleAxis.scale.type === scaleType && axes.push(angleAxis); + radiusAxis.scale.type === scaleType && axes.push(radiusAxis); + + return axes; + }, + + /** + * @return {module:echarts/coord/polar/AngleAxis} + */ + getAngleAxis: function () { + return this._angleAxis; + }, + + /** + * @return {module:echarts/coord/polar/RadiusAxis} + */ + getRadiusAxis: function () { + return this._radiusAxis; + }, + + /** + * @param {module:echarts/coord/polar/Axis} + * @return {module:echarts/coord/polar/Axis} + */ + getOtherAxis: function (axis) { + var angleAxis = this._angleAxis; + return axis === angleAxis ? this._radiusAxis : angleAxis; + }, + + /** + * Base axis will be used on stacking. + * + * @return {module:echarts/coord/polar/Axis} + */ + getBaseAxis: function () { + return this.getAxesByScale('ordinal')[0] + || this.getAxesByScale('time')[0] + || this.getAngleAxis(); + }, + + /** + * @param {string} [dim] 'radius' or 'angle' or 'auto' or null/undefined + * @return {Object} {baseAxes: [], otherAxes: []} + */ + getTooltipAxes: function (dim) { + var baseAxis = (dim != null && dim !== 'auto') + ? this.getAxis(dim) : this.getBaseAxis(); + return { + baseAxes: [baseAxis], + otherAxes: [this.getOtherAxis(baseAxis)] + }; + }, + + /** + * Convert a single data item to (x, y) point. + * Parameter data is an array which the first element is radius and the second is angle + * @param {Array.} data + * @param {boolean} [clamp=false] + * @return {Array.} + */ + dataToPoint: function (data, clamp) { + return this.coordToPoint([ + this._radiusAxis.dataToRadius(data[0], clamp), + this._angleAxis.dataToAngle(data[1], clamp) + ]); + }, + + /** + * Convert a (x, y) point to data + * @param {Array.} point + * @param {boolean} [clamp=false] + * @return {Array.} + */ + pointToData: function (point, clamp) { + var coord = this.pointToCoord(point); + return [ + this._radiusAxis.radiusToData(coord[0], clamp), + this._angleAxis.angleToData(coord[1], clamp) + ]; + }, + + /** + * Convert a (x, y) point to (radius, angle) coord + * @param {Array.} point + * @return {Array.} + */ + pointToCoord: function (point) { + var dx = point[0] - this.cx; + var dy = point[1] - this.cy; + var angleAxis = this.getAngleAxis(); + var extent = angleAxis.getExtent(); + var minAngle = Math.min(extent[0], extent[1]); + var maxAngle = Math.max(extent[0], extent[1]); + // Fix fixed extent in polarCreator + // FIXME + angleAxis.inverse + ? (minAngle = maxAngle - 360) + : (maxAngle = minAngle + 360); + + var radius = Math.sqrt(dx * dx + dy * dy); + dx /= radius; + dy /= radius; + + var radian = Math.atan2(-dy, dx) / Math.PI * 180; + + // move to angleExtent + var dir = radian < minAngle ? 1 : -1; + while (radian < minAngle || radian > maxAngle) { + radian += dir * 360; + } + + return [radius, radian]; + }, + + /** + * Convert a (radius, angle) coord to (x, y) point + * @param {Array.} coord + * @return {Array.} + */ + coordToPoint: function (coord) { + var radius = coord[0]; + var radian = coord[1] / 180 * Math.PI; + var x = Math.cos(radian) * radius + this.cx; + // Inverse the y + var y = -Math.sin(radian) * radius + this.cy; + + return [x, y]; + } + +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var PolarAxisModel = ComponentModel.extend({ + + type: 'polarAxis', + + /** + * @type {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis} + */ + axis: null, + + /** + * @override + */ + getCoordSysModel: function () { + return this.ecModel.queryComponents({ + mainType: 'polar', + index: this.option.polarIndex, + id: this.option.polarId + })[0]; + } + +}); + +merge(PolarAxisModel.prototype, axisModelCommonMixin); + +var polarAxisDefaultExtendedOption = { + angle: { + // polarIndex: 0, + // polarId: '', + + startAngle: 90, + + clockwise: true, + + splitNumber: 12, + + axisLabel: { + rotate: false + } + }, + radius: { + // polarIndex: 0, + // polarId: '', + + splitNumber: 5 + } +}; + +function getAxisType$3(axisDim, option) { + // Default axis with data is category axis + return option.type || (option.data ? 'category' : 'value'); +} + +axisModelCreator('angle', PolarAxisModel, getAxisType$3, polarAxisDefaultExtendedOption.angle); +axisModelCreator('radius', PolarAxisModel, getAxisType$3, polarAxisDefaultExtendedOption.radius); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +extendComponentModel({ + + type: 'polar', + + dependencies: ['polarAxis', 'angleAxis'], + + /** + * @type {module:echarts/coord/polar/Polar} + */ + coordinateSystem: null, + + /** + * @param {string} axisType + * @return {module:echarts/coord/polar/AxisModel} + */ + findAxisModel: function (axisType) { + var foundAxisModel; + var ecModel = this.ecModel; + + ecModel.eachComponent(axisType, function (axisModel) { + if (axisModel.getCoordSysModel() === this) { + foundAxisModel = axisModel; + } + }, this); + return foundAxisModel; + }, + + defaultOption: { + + zlevel: 0, + + z: 0, + + center: ['50%', '50%'], + + radius: '80%' + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// TODO Axis scale + +/** + * Resize method bound to the polar + * @param {module:echarts/coord/polar/PolarModel} polarModel + * @param {module:echarts/ExtensionAPI} api + */ +function resizePolar(polar, polarModel, api) { + var center = polarModel.get('center'); + var width = api.getWidth(); + var height = api.getHeight(); + + polar.cx = parsePercent$1(center[0], width); + polar.cy = parsePercent$1(center[1], height); + + var radiusAxis = polar.getRadiusAxis(); + var size = Math.min(width, height) / 2; + var radius = parsePercent$1(polarModel.get('radius'), size); + radiusAxis.inverse + ? radiusAxis.setExtent(radius, 0) + : radiusAxis.setExtent(0, radius); +} + +/** + * Update polar + */ +function updatePolarScale(ecModel, api) { + var polar = this; + var angleAxis = polar.getAngleAxis(); + var radiusAxis = polar.getRadiusAxis(); + // Reset scale + angleAxis.scale.setExtent(Infinity, -Infinity); + radiusAxis.scale.setExtent(Infinity, -Infinity); + + ecModel.eachSeries(function (seriesModel) { + if (seriesModel.coordinateSystem === polar) { + var data = seriesModel.getData(); + each$1(data.mapDimension('radius', true), function (dim) { + radiusAxis.scale.unionExtentFromData( + data, getStackedDimension(data, dim) + ); + }); + each$1(data.mapDimension('angle', true), function (dim) { + angleAxis.scale.unionExtentFromData( + data, getStackedDimension(data, dim) + ); + }); + } + }); + + niceScaleExtent(angleAxis.scale, angleAxis.model); + niceScaleExtent(radiusAxis.scale, radiusAxis.model); + + // Fix extent of category angle axis + if (angleAxis.type === 'category' && !angleAxis.onBand) { + var extent = angleAxis.getExtent(); + var diff = 360 / angleAxis.scale.count(); + angleAxis.inverse ? (extent[1] += diff) : (extent[1] -= diff); + angleAxis.setExtent(extent[0], extent[1]); + } +} + +/** + * Set common axis properties + * @param {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis} + * @param {module:echarts/coord/polar/AxisModel} + * @inner + */ +function setAxis(axis, axisModel) { + axis.type = axisModel.get('type'); + axis.scale = createScaleByModel(axisModel); + axis.onBand = axisModel.get('boundaryGap') && axis.type === 'category'; + axis.inverse = axisModel.get('inverse'); + + if (axisModel.mainType === 'angleAxis') { + axis.inverse ^= axisModel.get('clockwise'); + var startAngle = axisModel.get('startAngle'); + axis.setExtent(startAngle, startAngle + (axis.inverse ? -360 : 360)); + } + + // Inject axis instance + axisModel.axis = axis; + axis.model = axisModel; +} + + +var polarCreator = { + + dimensions: Polar.prototype.dimensions, + + create: function (ecModel, api) { + var polarList = []; + ecModel.eachComponent('polar', function (polarModel, idx) { + var polar = new Polar(idx); + // Inject resize and update method + polar.update = updatePolarScale; + + var radiusAxis = polar.getRadiusAxis(); + var angleAxis = polar.getAngleAxis(); + + var radiusAxisModel = polarModel.findAxisModel('radiusAxis'); + var angleAxisModel = polarModel.findAxisModel('angleAxis'); + + setAxis(radiusAxis, radiusAxisModel); + setAxis(angleAxis, angleAxisModel); + + resizePolar(polar, polarModel, api); + + polarList.push(polar); + + polarModel.coordinateSystem = polar; + polar.model = polarModel; + }); + // Inject coordinateSystem to series + ecModel.eachSeries(function (seriesModel) { + if (seriesModel.get('coordinateSystem') === 'polar') { + var polarModel = ecModel.queryComponents({ + mainType: 'polar', + index: seriesModel.get('polarIndex'), + id: seriesModel.get('polarId') + })[0]; + + if (__DEV__) { + if (!polarModel) { + throw new Error( + 'Polar "' + retrieve( + seriesModel.get('polarIndex'), + seriesModel.get('polarId'), + 0 + ) + '" not found' + ); + } + } + seriesModel.coordinateSystem = polarModel.coordinateSystem; + } + }); + + return polarList; + } +}; + +CoordinateSystemManager.register('polar', polarCreator); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var elementList$1 = ['axisLine', 'axisLabel', 'axisTick', 'splitLine', 'splitArea']; + +function getAxisLineShape(polar, rExtent, angle) { + rExtent[1] > rExtent[0] && (rExtent = rExtent.slice().reverse()); + var start = polar.coordToPoint([rExtent[0], angle]); + var end = polar.coordToPoint([rExtent[1], angle]); + + return { + x1: start[0], + y1: start[1], + x2: end[0], + y2: end[1] + }; +} + +function getRadiusIdx(polar) { + var radiusAxis = polar.getRadiusAxis(); + return radiusAxis.inverse ? 0 : 1; +} + +// Remove the last tick which will overlap the first tick +function fixAngleOverlap(list) { + var firstItem = list[0]; + var lastItem = list[list.length - 1]; + if (firstItem + && lastItem + && Math.abs(Math.abs(firstItem.coord - lastItem.coord) - 360) < 1e-4 + ) { + list.pop(); + } +} + +AxisView.extend({ + + type: 'angleAxis', + + axisPointerClass: 'PolarAxisPointer', + + render: function (angleAxisModel, ecModel) { + this.group.removeAll(); + if (!angleAxisModel.get('show')) { + return; + } + + var angleAxis = angleAxisModel.axis; + var polar = angleAxis.polar; + var radiusExtent = polar.getRadiusAxis().getExtent(); + + var ticksAngles = angleAxis.getTicksCoords(); + var labels = map(angleAxis.getViewLabels(), function (labelItem) { + var labelItem = clone(labelItem); + labelItem.coord = angleAxis.dataToCoord(labelItem.tickValue); + return labelItem; + }); + + fixAngleOverlap(labels); + fixAngleOverlap(ticksAngles); + + each$1(elementList$1, function (name) { + if (angleAxisModel.get(name + '.show') + && (!angleAxis.scale.isBlank() || name === 'axisLine') + ) { + this['_' + name](angleAxisModel, polar, ticksAngles, radiusExtent, labels); + } + }, this); + }, + + /** + * @private + */ + _axisLine: function (angleAxisModel, polar, ticksAngles, radiusExtent) { + var lineStyleModel = angleAxisModel.getModel('axisLine.lineStyle'); + + var circle = new Circle({ + shape: { + cx: polar.cx, + cy: polar.cy, + r: radiusExtent[getRadiusIdx(polar)] + }, + style: lineStyleModel.getLineStyle(), + z2: 1, + silent: true + }); + circle.style.fill = null; + + this.group.add(circle); + }, + + /** + * @private + */ + _axisTick: function (angleAxisModel, polar, ticksAngles, radiusExtent) { + var tickModel = angleAxisModel.getModel('axisTick'); + + var tickLen = (tickModel.get('inside') ? -1 : 1) * tickModel.get('length'); + var radius = radiusExtent[getRadiusIdx(polar)]; + + var lines = map(ticksAngles, function (tickAngleItem) { + return new Line({ + shape: getAxisLineShape(polar, [radius, radius + tickLen], tickAngleItem.coord) + }); + }); + this.group.add(mergePath( + lines, { + style: defaults( + tickModel.getModel('lineStyle').getLineStyle(), + { + stroke: angleAxisModel.get('axisLine.lineStyle.color') + } + ) + } + )); + }, + + /** + * @private + */ + _axisLabel: function (angleAxisModel, polar, ticksAngles, radiusExtent, labels) { + var rawCategoryData = angleAxisModel.getCategories(true); + + var commonLabelModel = angleAxisModel.getModel('axisLabel'); + + var labelMargin = commonLabelModel.get('margin'); + var triggerEvent = angleAxisModel.get('triggerEvent'); + + // Use length of ticksAngles because it may remove the last tick to avoid overlapping + each$1(labels, function (labelItem, idx) { + var labelModel = commonLabelModel; + var tickValue = labelItem.tickValue; + + var r = radiusExtent[getRadiusIdx(polar)]; + var p = polar.coordToPoint([r + labelMargin, labelItem.coord]); + var cx = polar.cx; + var cy = polar.cy; + + var labelTextAlign = Math.abs(p[0] - cx) / r < 0.3 + ? 'center' : (p[0] > cx ? 'left' : 'right'); + var labelTextVerticalAlign = Math.abs(p[1] - cy) / r < 0.3 + ? 'middle' : (p[1] > cy ? 'top' : 'bottom'); + + if (rawCategoryData && rawCategoryData[tickValue] && rawCategoryData[tickValue].textStyle) { + labelModel = new Model( + rawCategoryData[tickValue].textStyle, commonLabelModel, commonLabelModel.ecModel + ); + } + + var textEl = new Text({ + silent: AxisBuilder.isLabelSilent(angleAxisModel) + }); + this.group.add(textEl); + setTextStyle(textEl.style, labelModel, { + x: p[0], + y: p[1], + textFill: labelModel.getTextColor() || angleAxisModel.get('axisLine.lineStyle.color'), + text: labelItem.formattedLabel, + textAlign: labelTextAlign, + textVerticalAlign: labelTextVerticalAlign + }); + + // Pack data for mouse event + if (triggerEvent) { + textEl.eventData = AxisBuilder.makeAxisEventDataBase(angleAxisModel); + textEl.eventData.targetType = 'axisLabel'; + textEl.eventData.value = labelItem.rawLabel; + } + + }, this); + }, + + /** + * @private + */ + _splitLine: function (angleAxisModel, polar, ticksAngles, radiusExtent) { + var splitLineModel = angleAxisModel.getModel('splitLine'); + var lineStyleModel = splitLineModel.getModel('lineStyle'); + var lineColors = lineStyleModel.get('color'); + var lineCount = 0; + + lineColors = lineColors instanceof Array ? lineColors : [lineColors]; + + var splitLines = []; + + for (var i = 0; i < ticksAngles.length; i++) { + var colorIndex = (lineCount++) % lineColors.length; + splitLines[colorIndex] = splitLines[colorIndex] || []; + splitLines[colorIndex].push(new Line({ + shape: getAxisLineShape(polar, radiusExtent, ticksAngles[i].coord) + })); + } + + // Simple optimization + // Batching the lines if color are the same + for (var i = 0; i < splitLines.length; i++) { + this.group.add(mergePath(splitLines[i], { + style: defaults({ + stroke: lineColors[i % lineColors.length] + }, lineStyleModel.getLineStyle()), + silent: true, + z: angleAxisModel.get('z') + })); + } + }, + + /** + * @private + */ + _splitArea: function (angleAxisModel, polar, ticksAngles, radiusExtent) { + if (!ticksAngles.length) { + return; + } + + var splitAreaModel = angleAxisModel.getModel('splitArea'); + var areaStyleModel = splitAreaModel.getModel('areaStyle'); + var areaColors = areaStyleModel.get('color'); + var lineCount = 0; + + areaColors = areaColors instanceof Array ? areaColors : [areaColors]; + + var splitAreas = []; + + var RADIAN = Math.PI / 180; + var prevAngle = -ticksAngles[0].coord * RADIAN; + var r0 = Math.min(radiusExtent[0], radiusExtent[1]); + var r1 = Math.max(radiusExtent[0], radiusExtent[1]); + + var clockwise = angleAxisModel.get('clockwise'); + + for (var i = 1; i < ticksAngles.length; i++) { + var colorIndex = (lineCount++) % areaColors.length; + splitAreas[colorIndex] = splitAreas[colorIndex] || []; + splitAreas[colorIndex].push(new Sector({ + shape: { + cx: polar.cx, + cy: polar.cy, + r0: r0, + r: r1, + startAngle: prevAngle, + endAngle: -ticksAngles[i].coord * RADIAN, + clockwise: clockwise + }, + silent: true + })); + prevAngle = -ticksAngles[i].coord * RADIAN; + } + + // Simple optimization + // Batching the lines if color are the same + for (var i = 0; i < splitAreas.length; i++) { + this.group.add(mergePath(splitAreas[i], { + style: defaults({ + fill: areaColors[i % areaColors.length] + }, areaStyleModel.getAreaStyle()), + silent: true + })); + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var axisBuilderAttrs$3 = [ + 'axisLine', 'axisTickLabel', 'axisName' +]; +var selfBuilderAttrs$1 = [ + 'splitLine', 'splitArea' +]; + +AxisView.extend({ + + type: 'radiusAxis', + + axisPointerClass: 'PolarAxisPointer', + + render: function (radiusAxisModel, ecModel) { + this.group.removeAll(); + if (!radiusAxisModel.get('show')) { + return; + } + var radiusAxis = radiusAxisModel.axis; + var polar = radiusAxis.polar; + var angleAxis = polar.getAngleAxis(); + var ticksCoords = radiusAxis.getTicksCoords(); + var axisAngle = angleAxis.getExtent()[0]; + var radiusExtent = radiusAxis.getExtent(); + + var layout = layoutAxis(polar, radiusAxisModel, axisAngle); + var axisBuilder = new AxisBuilder(radiusAxisModel, layout); + each$1(axisBuilderAttrs$3, axisBuilder.add, axisBuilder); + this.group.add(axisBuilder.getGroup()); + + each$1(selfBuilderAttrs$1, function (name) { + if (radiusAxisModel.get(name + '.show') && !radiusAxis.scale.isBlank()) { + this['_' + name](radiusAxisModel, polar, axisAngle, radiusExtent, ticksCoords); + } + }, this); + }, + + /** + * @private + */ + _splitLine: function (radiusAxisModel, polar, axisAngle, radiusExtent, ticksCoords) { + var splitLineModel = radiusAxisModel.getModel('splitLine'); + var lineStyleModel = splitLineModel.getModel('lineStyle'); + var lineColors = lineStyleModel.get('color'); + var lineCount = 0; + + lineColors = lineColors instanceof Array ? lineColors : [lineColors]; + + var splitLines = []; + + for (var i = 0; i < ticksCoords.length; i++) { + var colorIndex = (lineCount++) % lineColors.length; + splitLines[colorIndex] = splitLines[colorIndex] || []; + splitLines[colorIndex].push(new Circle({ + shape: { + cx: polar.cx, + cy: polar.cy, + r: ticksCoords[i].coord + }, + silent: true + })); + } + + // Simple optimization + // Batching the lines if color are the same + for (var i = 0; i < splitLines.length; i++) { + this.group.add(mergePath(splitLines[i], { + style: defaults({ + stroke: lineColors[i % lineColors.length], + fill: null + }, lineStyleModel.getLineStyle()), + silent: true + })); + } + }, + + /** + * @private + */ + _splitArea: function (radiusAxisModel, polar, axisAngle, radiusExtent, ticksCoords) { + if (!ticksCoords.length) { + return; + } + + var splitAreaModel = radiusAxisModel.getModel('splitArea'); + var areaStyleModel = splitAreaModel.getModel('areaStyle'); + var areaColors = areaStyleModel.get('color'); + var lineCount = 0; + + areaColors = areaColors instanceof Array ? areaColors : [areaColors]; + + var splitAreas = []; + + var prevRadius = ticksCoords[0].coord; + for (var i = 1; i < ticksCoords.length; i++) { + var colorIndex = (lineCount++) % areaColors.length; + splitAreas[colorIndex] = splitAreas[colorIndex] || []; + splitAreas[colorIndex].push(new Sector({ + shape: { + cx: polar.cx, + cy: polar.cy, + r0: prevRadius, + r: ticksCoords[i].coord, + startAngle: 0, + endAngle: Math.PI * 2 + }, + silent: true + })); + prevRadius = ticksCoords[i].coord; + } + + // Simple optimization + // Batching the lines if color are the same + for (var i = 0; i < splitAreas.length; i++) { + this.group.add(mergePath(splitAreas[i], { + style: defaults({ + fill: areaColors[i % areaColors.length] + }, areaStyleModel.getAreaStyle()), + silent: true + })); + } + } +}); + +/** + * @inner + */ +function layoutAxis(polar, radiusAxisModel, axisAngle) { + return { + position: [polar.cx, polar.cy], + rotation: axisAngle / 180 * Math.PI, + labelDirection: -1, + tickDirection: -1, + nameDirection: 1, + labelRotate: radiusAxisModel.getModel('axisLabel').get('rotate'), + // Over splitLine and splitArea + z2: 1 + }; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var PolarAxisPointer = BaseAxisPointer.extend({ + + /** + * @override + */ + makeElOption: function (elOption, value, axisModel, axisPointerModel, api) { + var axis = axisModel.axis; + + if (axis.dim === 'angle') { + this.animationThreshold = Math.PI / 18; + } + + var polar = axis.polar; + var otherAxis = polar.getOtherAxis(axis); + var otherExtent = otherAxis.getExtent(); + + var coordValue; + coordValue = axis['dataTo' + capitalFirst(axis.dim)](value); + + var axisPointerType = axisPointerModel.get('type'); + if (axisPointerType && axisPointerType !== 'none') { + var elStyle = buildElStyle(axisPointerModel); + var pointerOption = pointerShapeBuilder$2[axisPointerType]( + axis, polar, coordValue, otherExtent, elStyle + ); + pointerOption.style = elStyle; + elOption.graphicKey = pointerOption.type; + elOption.pointer = pointerOption; + } + + var labelMargin = axisPointerModel.get('label.margin'); + var labelPos = getLabelPosition(value, axisModel, axisPointerModel, polar, labelMargin); + buildLabelElOption(elOption, axisModel, axisPointerModel, api, labelPos); + } + + // Do not support handle, utill any user requires it. + +}); + +function getLabelPosition(value, axisModel, axisPointerModel, polar, labelMargin) { + var axis = axisModel.axis; + var coord = axis.dataToCoord(value); + var axisAngle = polar.getAngleAxis().getExtent()[0]; + axisAngle = axisAngle / 180 * Math.PI; + var radiusExtent = polar.getRadiusAxis().getExtent(); + var position; + var align; + var verticalAlign; + + if (axis.dim === 'radius') { + var transform = create$1(); + rotate(transform, transform, axisAngle); + translate(transform, transform, [polar.cx, polar.cy]); + position = applyTransform$1([coord, -labelMargin], transform); + + var labelRotation = axisModel.getModel('axisLabel').get('rotate') || 0; + var labelLayout = AxisBuilder.innerTextLayout( + axisAngle, labelRotation * Math.PI / 180, -1 + ); + align = labelLayout.textAlign; + verticalAlign = labelLayout.textVerticalAlign; + } + else { // angle axis + var r = radiusExtent[1]; + position = polar.coordToPoint([r + labelMargin, coord]); + var cx = polar.cx; + var cy = polar.cy; + align = Math.abs(position[0] - cx) / r < 0.3 + ? 'center' : (position[0] > cx ? 'left' : 'right'); + verticalAlign = Math.abs(position[1] - cy) / r < 0.3 + ? 'middle' : (position[1] > cy ? 'top' : 'bottom'); + } + + return { + position: position, + align: align, + verticalAlign: verticalAlign + }; +} + + +var pointerShapeBuilder$2 = { + + line: function (axis, polar, coordValue, otherExtent, elStyle) { + return axis.dim === 'angle' + ? { + type: 'Line', + shape: makeLineShape( + polar.coordToPoint([otherExtent[0], coordValue]), + polar.coordToPoint([otherExtent[1], coordValue]) + ) + } + : { + type: 'Circle', + shape: { + cx: polar.cx, + cy: polar.cy, + r: coordValue + } + }; + }, + + shadow: function (axis, polar, coordValue, otherExtent, elStyle) { + var bandWidth = Math.max(1, axis.getBandWidth()); + var radian = Math.PI / 180; + + return axis.dim === 'angle' + ? { + type: 'Sector', + shape: makeSectorShape( + polar.cx, polar.cy, + otherExtent[0], otherExtent[1], + // In ECharts y is negative if angle is positive + (-coordValue - bandWidth / 2) * radian, + (-coordValue + bandWidth / 2) * radian + ) + } + : { + type: 'Sector', + shape: makeSectorShape( + polar.cx, polar.cy, + coordValue - bandWidth / 2, + coordValue + bandWidth / 2, + 0, Math.PI * 2 + ) + }; + } +}; + +AxisView.registerAxisPointerClass('PolarAxisPointer', PolarAxisPointer); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// For reducing size of echarts.min, barLayoutPolar is required by polar. +registerLayout(curry(barLayoutPolar, 'bar')); + +// Polar view +extendComponentView({ + type: 'polar' +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var GeoModel = ComponentModel.extend({ + + type: 'geo', + + /** + * @type {module:echarts/coord/geo/Geo} + */ + coordinateSystem: null, + + layoutMode: 'box', + + init: function (option) { + ComponentModel.prototype.init.apply(this, arguments); + + // Default label emphasis `show` + defaultEmphasis(option, 'label', ['show']); + }, + + optionUpdated: function () { + var option = this.option; + var self = this; + + option.regions = geoCreator.getFilledRegions(option.regions, option.map, option.nameMap); + + this._optionModelMap = reduce(option.regions || [], function (optionModelMap, regionOpt) { + if (regionOpt.name) { + optionModelMap.set(regionOpt.name, new Model(regionOpt, self)); + } + return optionModelMap; + }, createHashMap()); + + this.updateSelectedMap(option.regions); + }, + + defaultOption: { + + zlevel: 0, + + z: 0, + + show: true, + + left: 'center', + + top: 'center', + + + // width:, + // height:, + // right + // bottom + + // Aspect is width / height. Inited to be geoJson bbox aspect + // This parameter is used for scale this aspect + // If svg used, aspectScale is 1 by default. + // aspectScale: 0.75, + aspectScale: null, + + ///// Layout with center and size + // If you wan't to put map in a fixed size box with right aspect ratio + // This two properties may more conveninet + // layoutCenter: [50%, 50%] + // layoutSize: 100 + + silent: false, + + // Map type + map: '', + + // Define left-top, right-bottom coords to control view + // For example, [ [180, 90], [-180, -90] ] + boundingCoords: null, + + // Default on center of map + center: null, + + zoom: 1, + + scaleLimit: null, + + // selectedMode: false + + label: { + show: false, + color: '#000' + }, + + itemStyle: { + // color: 各异, + borderWidth: 0.5, + borderColor: '#444', + color: '#eee' + }, + + emphasis: { + label: { + show: true, + color: 'rgb(100,0,0)' + }, + itemStyle: { + color: 'rgba(255,215,0,0.8)' + } + }, + + regions: [] + }, + + /** + * Get model of region + * @param {string} name + * @return {module:echarts/model/Model} + */ + getRegionModel: function (name) { + return this._optionModelMap.get(name) || new Model(null, this, this.ecModel); + }, + + /** + * Format label + * @param {string} name Region name + * @param {string} [status='normal'] 'normal' or 'emphasis' + * @return {string} + */ + getFormattedLabel: function (name, status) { + var regionModel = this.getRegionModel(name); + var formatter = regionModel.get('label.' + status + '.formatter'); + var params = { + name: name + }; + if (typeof formatter === 'function') { + params.status = status; + return formatter(params); + } + else if (typeof formatter === 'string') { + return formatter.replace('{a}', name != null ? name : ''); + } + }, + + setZoom: function (zoom) { + this.option.zoom = zoom; + }, + + setCenter: function (center) { + this.option.center = center; + } +}); + +mixin(GeoModel, selectableMixin); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +extendComponentView({ + + type: 'geo', + + init: function (ecModel, api) { + var mapDraw = new MapDraw(api, true); + this._mapDraw = mapDraw; + + this.group.add(mapDraw.group); + }, + + render: function (geoModel, ecModel, api, payload) { + // Not render if it is an toggleSelect action from self + if (payload && payload.type === 'geoToggleSelect' + && payload.from === this.uid + ) { + return; + } + + var mapDraw = this._mapDraw; + if (geoModel.get('show')) { + mapDraw.draw(geoModel, ecModel, api, this, payload); + } + else { + this._mapDraw.group.removeAll(); + } + + this.group.silent = geoModel.get('silent'); + }, + + dispose: function () { + this._mapDraw && this._mapDraw.remove(); + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function makeAction(method, actionInfo) { + actionInfo.update = 'updateView'; + registerAction(actionInfo, function (payload, ecModel) { + var selected = {}; + + ecModel.eachComponent( + { mainType: 'geo', query: payload}, + function (geoModel) { + geoModel[method](payload.name); + var geo = geoModel.coordinateSystem; + each$1(geo.regions, function (region) { + selected[region.name] = geoModel.isSelected(region.name) || false; + }); + } + ); + + return { + selected: selected, + name: payload.name + }; + }); +} + +makeAction('toggleSelected', { + type: 'geoToggleSelect', + event: 'geoselectchanged' +}); +makeAction('select', { + type: 'geoSelect', + event: 'geoselected' +}); +makeAction('unSelect', { + type: 'geoUnSelect', + event: 'geounselected' +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// (24*60*60*1000) +var PROXIMATE_ONE_DAY = 86400000; + +/** + * Calendar + * + * @constructor + * + * @param {Object} calendarModel calendarModel + * @param {Object} ecModel ecModel + * @param {Object} api api + */ +function Calendar(calendarModel, ecModel, api) { + this._model = calendarModel; +} + +Calendar.prototype = { + + constructor: Calendar, + + type: 'calendar', + + dimensions: ['time', 'value'], + + // Required in createListFromData + getDimensionsInfo: function () { + return [{name: 'time', type: 'time'}, 'value']; + }, + + getRangeInfo: function () { + return this._rangeInfo; + }, + + getModel: function () { + return this._model; + }, + + getRect: function () { + return this._rect; + }, + + getCellWidth: function () { + return this._sw; + }, + + getCellHeight: function () { + return this._sh; + }, + + getOrient: function () { + return this._orient; + }, + + /** + * getFirstDayOfWeek + * + * @example + * 0 : start at Sunday + * 1 : start at Monday + * + * @return {number} + */ + getFirstDayOfWeek: function () { + return this._firstDayOfWeek; + }, + + /** + * get date info + * + * @param {string|number} date date + * @return {Object} + * { + * y: string, local full year, eg., '1940', + * m: string, local month, from '01' ot '12', + * d: string, local date, from '01' to '31' (if exists), + * day: It is not date.getDay(). It is the location of the cell in a week, from 0 to 6, + * time: timestamp, + * formatedDate: string, yyyy-MM-dd, + * date: original date object. + * } + */ + getDateInfo: function (date) { + + date = parseDate(date); + + var y = date.getFullYear(); + + var m = date.getMonth() + 1; + m = m < 10 ? '0' + m : m; + + var d = date.getDate(); + d = d < 10 ? '0' + d : d; + + var day = date.getDay(); + + day = Math.abs((day + 7 - this.getFirstDayOfWeek()) % 7); + + return { + y: y, + m: m, + d: d, + day: day, + time: date.getTime(), + formatedDate: y + '-' + m + '-' + d, + date: date + }; + }, + + getNextNDay: function (date, n) { + n = n || 0; + if (n === 0) { + return this.getDateInfo(date); + } + + date = new Date(this.getDateInfo(date).time); + date.setDate(date.getDate() + n); + + return this.getDateInfo(date); + }, + + update: function (ecModel, api) { + + this._firstDayOfWeek = +this._model.getModel('dayLabel').get('firstDay'); + this._orient = this._model.get('orient'); + this._lineWidth = this._model.getModel('itemStyle').getItemStyle().lineWidth || 0; + + + this._rangeInfo = this._getRangeInfo(this._initRangeOption()); + var weeks = this._rangeInfo.weeks || 1; + var whNames = ['width', 'height']; + var cellSize = this._model.get('cellSize').slice(); + var layoutParams = this._model.getBoxLayoutParams(); + var cellNumbers = this._orient === 'horizontal' ? [weeks, 7] : [7, weeks]; + + each$1([0, 1], function (idx) { + if (cellSizeSpecified(cellSize, idx)) { + layoutParams[whNames[idx]] = cellSize[idx] * cellNumbers[idx]; + } + }); + + var whGlobal = { + width: api.getWidth(), + height: api.getHeight() + }; + var calendarRect = this._rect = getLayoutRect(layoutParams, whGlobal); + + each$1([0, 1], function (idx) { + if (!cellSizeSpecified(cellSize, idx)) { + cellSize[idx] = calendarRect[whNames[idx]] / cellNumbers[idx]; + } + }); + + function cellSizeSpecified(cellSize, idx) { + return cellSize[idx] != null && cellSize[idx] !== 'auto'; + } + + this._sw = cellSize[0]; + this._sh = cellSize[1]; + }, + + + /** + * Convert a time data(time, value) item to (x, y) point. + * + * @override + * @param {Array|number} data data + * @param {boolean} [clamp=true] out of range + * @return {Array} point + */ + dataToPoint: function (data, clamp) { + isArray(data) && (data = data[0]); + clamp == null && (clamp = true); + + var dayInfo = this.getDateInfo(data); + var range = this._rangeInfo; + var date = dayInfo.formatedDate; + + // if not in range return [NaN, NaN] + if (clamp && !( + dayInfo.time >= range.start.time + && dayInfo.time < range.end.time + PROXIMATE_ONE_DAY + )) { + return [NaN, NaN]; + } + + var week = dayInfo.day; + var nthWeek = this._getRangeInfo([range.start.time, date]).nthWeek; + + if (this._orient === 'vertical') { + return [ + this._rect.x + week * this._sw + this._sw / 2, + this._rect.y + nthWeek * this._sh + this._sh / 2 + ]; + + } + + return [ + this._rect.x + nthWeek * this._sw + this._sw / 2, + this._rect.y + week * this._sh + this._sh / 2 + ]; + + }, + + /** + * Convert a (x, y) point to time data + * + * @override + * @param {string} point point + * @return {string} data + */ + pointToData: function (point) { + + var date = this.pointToDate(point); + + return date && date.time; + }, + + /** + * Convert a time date item to (x, y) four point. + * + * @param {Array} data date[0] is date + * @param {boolean} [clamp=true] out of range + * @return {Object} point + */ + dataToRect: function (data, clamp) { + var point = this.dataToPoint(data, clamp); + + return { + contentShape: { + x: point[0] - (this._sw - this._lineWidth) / 2, + y: point[1] - (this._sh - this._lineWidth) / 2, + width: this._sw - this._lineWidth, + height: this._sh - this._lineWidth + }, + + center: point, + + tl: [ + point[0] - this._sw / 2, + point[1] - this._sh / 2 + ], + + tr: [ + point[0] + this._sw / 2, + point[1] - this._sh / 2 + ], + + br: [ + point[0] + this._sw / 2, + point[1] + this._sh / 2 + ], + + bl: [ + point[0] - this._sw / 2, + point[1] + this._sh / 2 + ] + + }; + }, + + /** + * Convert a (x, y) point to time date + * + * @param {Array} point point + * @return {Object} date + */ + pointToDate: function (point) { + var nthX = Math.floor((point[0] - this._rect.x) / this._sw) + 1; + var nthY = Math.floor((point[1] - this._rect.y) / this._sh) + 1; + var range = this._rangeInfo.range; + + if (this._orient === 'vertical') { + return this._getDateByWeeksAndDay(nthY, nthX - 1, range); + } + + return this._getDateByWeeksAndDay(nthX, nthY - 1, range); + }, + + /** + * @inheritDoc + */ + convertToPixel: curry(doConvert$2, 'dataToPoint'), + + /** + * @inheritDoc + */ + convertFromPixel: curry(doConvert$2, 'pointToData'), + + /** + * initRange + * + * @private + * @return {Array} [start, end] + */ + _initRangeOption: function () { + var range = this._model.get('range'); + + var rg = range; + + if (isArray(rg) && rg.length === 1) { + rg = rg[0]; + } + + if (/^\d{4}$/.test(rg)) { + range = [rg + '-01-01', rg + '-12-31']; + } + + if (/^\d{4}[\/|-]\d{1,2}$/.test(rg)) { + + var start = this.getDateInfo(rg); + var firstDay = start.date; + firstDay.setMonth(firstDay.getMonth() + 1); + + var end = this.getNextNDay(firstDay, -1); + range = [start.formatedDate, end.formatedDate]; + } + + if (/^\d{4}[\/|-]\d{1,2}[\/|-]\d{1,2}$/.test(rg)) { + range = [rg, rg]; + } + + var tmp = this._getRangeInfo(range); + + if (tmp.start.time > tmp.end.time) { + range.reverse(); + } + + return range; + }, + + /** + * range info + * + * @private + * @param {Array} range range ['2017-01-01', '2017-07-08'] + * If range[0] > range[1], they will not be reversed. + * @return {Object} obj + */ + _getRangeInfo: function (range) { + range = [ + this.getDateInfo(range[0]), + this.getDateInfo(range[1]) + ]; + + var reversed; + if (range[0].time > range[1].time) { + reversed = true; + range.reverse(); + } + + var allDay = Math.floor(range[1].time / PROXIMATE_ONE_DAY) + - Math.floor(range[0].time / PROXIMATE_ONE_DAY) + 1; + + // Consider case: + // Firstly set system timezone as "Time Zone: America/Toronto", + // ``` + // var first = new Date(1478412000000 - 3600 * 1000 * 2.5); + // var second = new Date(1478412000000); + // var allDays = Math.floor(second / ONE_DAY) - Math.floor(first / ONE_DAY) + 1; + // ``` + // will get wrong result because of DST. So we should fix it. + var date = new Date(range[0].time); + var startDateNum = date.getDate(); + var endDateNum = range[1].date.getDate(); + date.setDate(startDateNum + allDay - 1); + // The bias can not over a month, so just compare date. + if (date.getDate() !== endDateNum) { + var sign = date.getTime() - range[1].time > 0 ? 1 : -1; + while (date.getDate() !== endDateNum && (date.getTime() - range[1].time) * sign > 0) { + allDay -= sign; + date.setDate(startDateNum + allDay - 1); + } + } + + var weeks = Math.floor((allDay + range[0].day + 6) / 7); + var nthWeek = reversed ? -weeks + 1 : weeks - 1; + + reversed && range.reverse(); + + return { + range: [range[0].formatedDate, range[1].formatedDate], + start: range[0], + end: range[1], + allDay: allDay, + weeks: weeks, + // From 0. + nthWeek: nthWeek, + fweek: range[0].day, + lweek: range[1].day + }; + }, + + /** + * get date by nthWeeks and week day in range + * + * @private + * @param {number} nthWeek the week + * @param {number} day the week day + * @param {Array} range [d1, d2] + * @return {Object} + */ + _getDateByWeeksAndDay: function (nthWeek, day, range) { + var rangeInfo = this._getRangeInfo(range); + + if (nthWeek > rangeInfo.weeks + || (nthWeek === 0 && day < rangeInfo.fweek) + || (nthWeek === rangeInfo.weeks && day > rangeInfo.lweek) + ) { + return false; + } + + var nthDay = (nthWeek - 1) * 7 - rangeInfo.fweek + day; + var date = new Date(rangeInfo.start.time); + date.setDate(rangeInfo.start.d + nthDay); + + return this.getDateInfo(date); + } +}; + +Calendar.dimensions = Calendar.prototype.dimensions; + +Calendar.getDimensionsInfo = Calendar.prototype.getDimensionsInfo; + +Calendar.create = function (ecModel, api) { + var calendarList = []; + + ecModel.eachComponent('calendar', function (calendarModel) { + var calendar = new Calendar(calendarModel, ecModel, api); + calendarList.push(calendar); + calendarModel.coordinateSystem = calendar; + }); + + ecModel.eachSeries(function (calendarSeries) { + if (calendarSeries.get('coordinateSystem') === 'calendar') { + // Inject coordinate system + calendarSeries.coordinateSystem = calendarList[calendarSeries.get('calendarIndex') || 0]; + } + }); + return calendarList; +}; + +function doConvert$2(methodName, ecModel, finder, value) { + var calendarModel = finder.calendarModel; + var seriesModel = finder.seriesModel; + + var coordSys = calendarModel + ? calendarModel.coordinateSystem + : seriesModel + ? seriesModel.coordinateSystem + : null; + + return coordSys === this ? coordSys[methodName](value) : null; +} + +CoordinateSystemManager.register('calendar', Calendar); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var CalendarModel = ComponentModel.extend({ + + type: 'calendar', + + /** + * @type {module:echarts/coord/calendar/Calendar} + */ + coordinateSystem: null, + + defaultOption: { + zlevel: 0, + z: 2, + left: 80, + top: 60, + + cellSize: 20, + + // horizontal vertical + orient: 'horizontal', + + // month separate line style + splitLine: { + show: true, + lineStyle: { + color: '#000', + width: 1, + type: 'solid' + } + }, + + // rect style temporarily unused emphasis + itemStyle: { + color: '#fff', + borderWidth: 1, + borderColor: '#ccc' + }, + + // week text style + dayLabel: { + show: true, + + // a week first day + firstDay: 0, + + // start end + position: 'start', + margin: '50%', // 50% of cellSize + nameMap: 'en', + color: '#000' + }, + + // month text style + monthLabel: { + show: true, + + // start end + position: 'start', + margin: 5, + + // center or left + align: 'center', + + // cn en [] + nameMap: 'en', + formatter: null, + color: '#000' + }, + + // year text style + yearLabel: { + show: true, + + // top bottom left right + position: null, + margin: 30, + formatter: null, + color: '#ccc', + fontFamily: 'sans-serif', + fontWeight: 'bolder', + fontSize: 20 + } + }, + + /** + * @override + */ + init: function (option, parentModel, ecModel, extraOpt) { + var inputPositionParams = getLayoutParams(option); + + CalendarModel.superApply(this, 'init', arguments); + + mergeAndNormalizeLayoutParams(option, inputPositionParams); + }, + + /** + * @override + */ + mergeOption: function (option, extraOpt) { + CalendarModel.superApply(this, 'mergeOption', arguments); + + mergeAndNormalizeLayoutParams(this.option, option); + } +}); + +function mergeAndNormalizeLayoutParams(target, raw) { + // Normalize cellSize + var cellSize = target.cellSize; + + if (!isArray(cellSize)) { + cellSize = target.cellSize = [cellSize, cellSize]; + } + else if (cellSize.length === 1) { + cellSize[1] = cellSize[0]; + } + + var ignoreSize = map([0, 1], function (hvIdx) { + // If user have set `width` or both `left` and `right`, cellSize + // will be automatically set to 'auto', otherwise the default + // setting of cellSize will make `width` setting not work. + if (sizeCalculable(raw, hvIdx)) { + cellSize[hvIdx] = 'auto'; + } + return cellSize[hvIdx] != null && cellSize[hvIdx] !== 'auto'; + }); + + mergeLayoutParam(target, raw, { + type: 'box', ignoreSize: ignoreSize + }); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var MONTH_TEXT = { + EN: [ + 'Jan', 'Feb', 'Mar', + 'Apr', 'May', 'Jun', + 'Jul', 'Aug', 'Sep', + 'Oct', 'Nov', 'Dec' + ], + CN: [ + '一月', '二月', '三月', + '四月', '五月', '六月', + '七月', '八月', '九月', + '十月', '十一月', '十二月' + ] +}; + +var WEEK_TEXT = { + EN: ['S', 'M', 'T', 'W', 'T', 'F', 'S'], + CN: ['日', '一', '二', '三', '四', '五', '六'] +}; + +extendComponentView({ + + type: 'calendar', + + /** + * top/left line points + * @private + */ + _tlpoints: null, + + /** + * bottom/right line points + * @private + */ + _blpoints: null, + + /** + * first day of month + * @private + */ + _firstDayOfMonth: null, + + /** + * first day point of month + * @private + */ + _firstDayPoints: null, + + render: function (calendarModel, ecModel, api) { + + var group = this.group; + + group.removeAll(); + + var coordSys = calendarModel.coordinateSystem; + + // range info + var rangeData = coordSys.getRangeInfo(); + var orient = coordSys.getOrient(); + + this._renderDayRect(calendarModel, rangeData, group); + + // _renderLines must be called prior to following function + this._renderLines(calendarModel, rangeData, orient, group); + + this._renderYearText(calendarModel, rangeData, orient, group); + + this._renderMonthText(calendarModel, orient, group); + + this._renderWeekText(calendarModel, rangeData, orient, group); + }, + + // render day rect + _renderDayRect: function (calendarModel, rangeData, group) { + var coordSys = calendarModel.coordinateSystem; + var itemRectStyleModel = calendarModel.getModel('itemStyle').getItemStyle(); + var sw = coordSys.getCellWidth(); + var sh = coordSys.getCellHeight(); + + for (var i = rangeData.start.time; + i <= rangeData.end.time; + i = coordSys.getNextNDay(i, 1).time + ) { + + var point = coordSys.dataToRect([i], false).tl; + + // every rect + var rect = new Rect({ + shape: { + x: point[0], + y: point[1], + width: sw, + height: sh + }, + cursor: 'default', + style: itemRectStyleModel + }); + + group.add(rect); + } + + }, + + // render separate line + _renderLines: function (calendarModel, rangeData, orient, group) { + + var self = this; + + var coordSys = calendarModel.coordinateSystem; + + var lineStyleModel = calendarModel.getModel('splitLine.lineStyle').getLineStyle(); + var show = calendarModel.get('splitLine.show'); + + var lineWidth = lineStyleModel.lineWidth; + + this._tlpoints = []; + this._blpoints = []; + this._firstDayOfMonth = []; + this._firstDayPoints = []; + + + var firstDay = rangeData.start; + + for (var i = 0; firstDay.time <= rangeData.end.time; i++) { + addPoints(firstDay.formatedDate); + + if (i === 0) { + firstDay = coordSys.getDateInfo(rangeData.start.y + '-' + rangeData.start.m); + } + + var date = firstDay.date; + date.setMonth(date.getMonth() + 1); + firstDay = coordSys.getDateInfo(date); + } + + addPoints(coordSys.getNextNDay(rangeData.end.time, 1).formatedDate); + + function addPoints(date) { + + self._firstDayOfMonth.push(coordSys.getDateInfo(date)); + self._firstDayPoints.push(coordSys.dataToRect([date], false).tl); + + var points = self._getLinePointsOfOneWeek(calendarModel, date, orient); + + self._tlpoints.push(points[0]); + self._blpoints.push(points[points.length - 1]); + + show && self._drawSplitline(points, lineStyleModel, group); + } + + + // render top/left line + show && this._drawSplitline(self._getEdgesPoints(self._tlpoints, lineWidth, orient), lineStyleModel, group); + + // render bottom/right line + show && this._drawSplitline(self._getEdgesPoints(self._blpoints, lineWidth, orient), lineStyleModel, group); + + }, + + // get points at both ends + _getEdgesPoints: function (points, lineWidth, orient) { + var rs = [points[0].slice(), points[points.length - 1].slice()]; + var idx = orient === 'horizontal' ? 0 : 1; + + // both ends of the line are extend half lineWidth + rs[0][idx] = rs[0][idx] - lineWidth / 2; + rs[1][idx] = rs[1][idx] + lineWidth / 2; + + return rs; + }, + + // render split line + _drawSplitline: function (points, lineStyleModel, group) { + + var poyline = new Polyline({ + z2: 20, + shape: { + points: points + }, + style: lineStyleModel + }); + + group.add(poyline); + }, + + // render month line of one week points + _getLinePointsOfOneWeek: function (calendarModel, date, orient) { + + var coordSys = calendarModel.coordinateSystem; + date = coordSys.getDateInfo(date); + + var points = []; + + for (var i = 0; i < 7; i++) { + + var tmpD = coordSys.getNextNDay(date.time, i); + var point = coordSys.dataToRect([tmpD.time], false); + + points[2 * tmpD.day] = point.tl; + points[2 * tmpD.day + 1] = point[orient === 'horizontal' ? 'bl' : 'tr']; + } + + return points; + + }, + + _formatterLabel: function (formatter, params) { + + if (typeof formatter === 'string' && formatter) { + return formatTplSimple(formatter, params); + } + + if (typeof formatter === 'function') { + return formatter(params); + } + + return params.nameMap; + + }, + + _yearTextPositionControl: function (textEl, point, orient, position, margin) { + + point = point.slice(); + var aligns = ['center', 'bottom']; + + if (position === 'bottom') { + point[1] += margin; + aligns = ['center', 'top']; + } + else if (position === 'left') { + point[0] -= margin; + } + else if (position === 'right') { + point[0] += margin; + aligns = ['center', 'top']; + } + else { // top + point[1] -= margin; + } + + var rotate = 0; + if (position === 'left' || position === 'right') { + rotate = Math.PI / 2; + } + + return { + rotation: rotate, + position: point, + style: { + textAlign: aligns[0], + textVerticalAlign: aligns[1] + } + }; + }, + + // render year + _renderYearText: function (calendarModel, rangeData, orient, group) { + var yearLabel = calendarModel.getModel('yearLabel'); + + if (!yearLabel.get('show')) { + return; + } + + var margin = yearLabel.get('margin'); + var pos = yearLabel.get('position'); + + if (!pos) { + pos = orient !== 'horizontal' ? 'top' : 'left'; + } + + var points = [this._tlpoints[this._tlpoints.length - 1], this._blpoints[0]]; + var xc = (points[0][0] + points[1][0]) / 2; + var yc = (points[0][1] + points[1][1]) / 2; + + var idx = orient === 'horizontal' ? 0 : 1; + + var posPoints = { + top: [xc, points[idx][1]], + bottom: [xc, points[1 - idx][1]], + left: [points[1 - idx][0], yc], + right: [points[idx][0], yc] + }; + + var name = rangeData.start.y; + + if (+rangeData.end.y > +rangeData.start.y) { + name = name + '-' + rangeData.end.y; + } + + var formatter = yearLabel.get('formatter'); + + var params = { + start: rangeData.start.y, + end: rangeData.end.y, + nameMap: name + }; + + var content = this._formatterLabel(formatter, params); + + var yearText = new Text({z2: 30}); + setTextStyle(yearText.style, yearLabel, {text: content}), + yearText.attr(this._yearTextPositionControl(yearText, posPoints[pos], orient, pos, margin)); + + group.add(yearText); + }, + + _monthTextPositionControl: function (point, isCenter, orient, position, margin) { + var align = 'left'; + var vAlign = 'top'; + var x = point[0]; + var y = point[1]; + + if (orient === 'horizontal') { + y = y + margin; + + if (isCenter) { + align = 'center'; + } + + if (position === 'start') { + vAlign = 'bottom'; + } + } + else { + x = x + margin; + + if (isCenter) { + vAlign = 'middle'; + } + + if (position === 'start') { + align = 'right'; + } + } + + return { + x: x, + y: y, + textAlign: align, + textVerticalAlign: vAlign + }; + }, + + // render month and year text + _renderMonthText: function (calendarModel, orient, group) { + var monthLabel = calendarModel.getModel('monthLabel'); + + if (!monthLabel.get('show')) { + return; + } + + var nameMap = monthLabel.get('nameMap'); + var margin = monthLabel.get('margin'); + var pos = monthLabel.get('position'); + var align = monthLabel.get('align'); + + var termPoints = [this._tlpoints, this._blpoints]; + + if (isString(nameMap)) { + nameMap = MONTH_TEXT[nameMap.toUpperCase()] || []; + } + + var idx = pos === 'start' ? 0 : 1; + var axis = orient === 'horizontal' ? 0 : 1; + margin = pos === 'start' ? -margin : margin; + var isCenter = (align === 'center'); + + for (var i = 0; i < termPoints[idx].length - 1; i++) { + + var tmp = termPoints[idx][i].slice(); + var firstDay = this._firstDayOfMonth[i]; + + if (isCenter) { + var firstDayPoints = this._firstDayPoints[i]; + tmp[axis] = (firstDayPoints[axis] + termPoints[0][i + 1][axis]) / 2; + } + + var formatter = monthLabel.get('formatter'); + var name = nameMap[+firstDay.m - 1]; + var params = { + yyyy: firstDay.y, + yy: (firstDay.y + '').slice(2), + MM: firstDay.m, + M: +firstDay.m, + nameMap: name + }; + + var content = this._formatterLabel(formatter, params); + + var monthText = new Text({z2: 30}); + extend( + setTextStyle(monthText.style, monthLabel, {text: content}), + this._monthTextPositionControl(tmp, isCenter, orient, pos, margin) + ); + + group.add(monthText); + } + }, + + _weekTextPositionControl: function (point, orient, position, margin, cellSize) { + var align = 'center'; + var vAlign = 'middle'; + var x = point[0]; + var y = point[1]; + var isStart = position === 'start'; + + if (orient === 'horizontal') { + x = x + margin + (isStart ? 1 : -1) * cellSize[0] / 2; + align = isStart ? 'right' : 'left'; + } + else { + y = y + margin + (isStart ? 1 : -1) * cellSize[1] / 2; + vAlign = isStart ? 'bottom' : 'top'; + } + + return { + x: x, + y: y, + textAlign: align, + textVerticalAlign: vAlign + }; + }, + + // render weeks + _renderWeekText: function (calendarModel, rangeData, orient, group) { + var dayLabel = calendarModel.getModel('dayLabel'); + + if (!dayLabel.get('show')) { + return; + } + + var coordSys = calendarModel.coordinateSystem; + var pos = dayLabel.get('position'); + var nameMap = dayLabel.get('nameMap'); + var margin = dayLabel.get('margin'); + var firstDayOfWeek = coordSys.getFirstDayOfWeek(); + + if (isString(nameMap)) { + nameMap = WEEK_TEXT[nameMap.toUpperCase()] || []; + } + + var start = coordSys.getNextNDay( + rangeData.end.time, (7 - rangeData.lweek) + ).time; + + var cellSize = [coordSys.getCellWidth(), coordSys.getCellHeight()]; + margin = parsePercent$1(margin, cellSize[orient === 'horizontal' ? 0 : 1]); + + if (pos === 'start') { + start = coordSys.getNextNDay( + rangeData.start.time, -(7 + rangeData.fweek) + ).time; + margin = -margin; + } + + for (var i = 0; i < 7; i++) { + + var tmpD = coordSys.getNextNDay(start, i); + var point = coordSys.dataToRect([tmpD.time], false).center; + var day = i; + day = Math.abs((i + firstDayOfWeek) % 7); + var weekText = new Text({z2: 30}); + + extend( + setTextStyle(weekText.style, dayLabel, {text: nameMap[day]}), + this._weekTextPositionControl(point, orient, pos, margin, cellSize) + ); + group.add(weekText); + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// ------------- +// Preprocessor +// ------------- + +registerPreprocessor(function (option) { + var graphicOption = option.graphic; + + // Convert + // {graphic: [{left: 10, type: 'circle'}, ...]} + // or + // {graphic: {left: 10, type: 'circle'}} + // to + // {graphic: [{elements: [{left: 10, type: 'circle'}, ...]}]} + if (isArray(graphicOption)) { + if (!graphicOption[0] || !graphicOption[0].elements) { + option.graphic = [{elements: graphicOption}]; + } + else { + // Only one graphic instance can be instantiated. (We dont + // want that too many views are created in echarts._viewMap) + option.graphic = [option.graphic[0]]; + } + } + else if (graphicOption && !graphicOption.elements) { + option.graphic = [{elements: [graphicOption]}]; + } +}); + +// ------ +// Model +// ------ + +var GraphicModel = extendComponentModel({ + + type: 'graphic', + + defaultOption: { + + // Extra properties for each elements: + // + // left/right/top/bottom: (like 12, '22%', 'center', default undefined) + // If left/rigth is set, shape.x/shape.cx/position will not be used. + // If top/bottom is set, shape.y/shape.cy/position will not be used. + // This mechanism is useful when you want to position a group/element + // against the right side or the center of this container. + // + // width/height: (can only be pixel value, default 0) + // Only be used to specify contianer(group) size, if needed. And + // can not be percentage value (like '33%'). See the reason in the + // layout algorithm below. + // + // bounding: (enum: 'all' (default) | 'raw') + // Specify how to calculate boundingRect when locating. + // 'all': Get uioned and transformed boundingRect + // from both itself and its descendants. + // This mode simplies confining a group of elements in the bounding + // of their ancester container (e.g., using 'right: 0'). + // 'raw': Only use the boundingRect of itself and before transformed. + // This mode is similar to css behavior, which is useful when you + // want an element to be able to overflow its container. (Consider + // a rotated circle needs to be located in a corner.) + // info: custom info. enables user to mount some info on elements and use them + // in event handlers. Update them only when user specified, otherwise, remain. + + // Note: elements is always behind its ancestors in this elements array. + elements: [], + parentId: null + }, + + /** + * Save el options for the sake of the performance (only update modified graphics). + * The order is the same as those in option. (ancesters -> descendants) + * + * @private + * @type {Array.} + */ + _elOptionsToUpdate: null, + + /** + * @override + */ + mergeOption: function (option) { + // Prevent default merge to elements + var elements = this.option.elements; + this.option.elements = null; + + GraphicModel.superApply(this, 'mergeOption', arguments); + + this.option.elements = elements; + }, + + /** + * @override + */ + optionUpdated: function (newOption, isInit) { + var thisOption = this.option; + var newList = (isInit ? thisOption : newOption).elements; + var existList = thisOption.elements = isInit ? [] : thisOption.elements; + + var flattenedList = []; + this._flatten(newList, flattenedList); + + var mappingResult = mappingToExists(existList, flattenedList); + makeIdAndName(mappingResult); + + // Clear elOptionsToUpdate + var elOptionsToUpdate = this._elOptionsToUpdate = []; + + each$1(mappingResult, function (resultItem, index) { + var newElOption = resultItem.option; + + if (__DEV__) { + assert$1( + isObject$1(newElOption) || resultItem.exist, + 'Empty graphic option definition' + ); + } + + if (!newElOption) { + return; + } + + elOptionsToUpdate.push(newElOption); + + setKeyInfoToNewElOption(resultItem, newElOption); + + mergeNewElOptionToExist(existList, index, newElOption); + + setLayoutInfoToExist(existList[index], newElOption); + + }, this); + + // Clean + for (var i = existList.length - 1; i >= 0; i--) { + if (existList[i] == null) { + existList.splice(i, 1); + } + else { + // $action should be volatile, otherwise option gotten from + // `getOption` will contain unexpected $action. + delete existList[i].$action; + } + } + }, + + /** + * Convert + * [{ + * type: 'group', + * id: 'xx', + * children: [{type: 'circle'}, {type: 'polygon'}] + * }] + * to + * [ + * {type: 'group', id: 'xx'}, + * {type: 'circle', parentId: 'xx'}, + * {type: 'polygon', parentId: 'xx'} + * ] + * + * @private + * @param {Array.} optionList option list + * @param {Array.} result result of flatten + * @param {Object} parentOption parent option + */ + _flatten: function (optionList, result, parentOption) { + each$1(optionList, function (option) { + if (!option) { + return; + } + + if (parentOption) { + option.parentOption = parentOption; + } + + result.push(option); + + var children = option.children; + if (option.type === 'group' && children) { + this._flatten(children, result, option); + } + // Deleting for JSON output, and for not affecting group creation. + delete option.children; + }, this); + }, + + // FIXME + // Pass to view using payload? setOption has a payload? + useElOptionsToUpdate: function () { + var els = this._elOptionsToUpdate; + // Clear to avoid render duplicately when zooming. + this._elOptionsToUpdate = null; + return els; + } +}); + +// ----- +// View +// ----- + +extendComponentView({ + + type: 'graphic', + + /** + * @override + */ + init: function (ecModel, api) { + + /** + * @private + * @type {module:zrender/core/util.HashMap} + */ + this._elMap = createHashMap(); + + /** + * @private + * @type {module:echarts/graphic/GraphicModel} + */ + this._lastGraphicModel; + }, + + /** + * @override + */ + render: function (graphicModel, ecModel, api) { + + // Having leveraged between use cases and algorithm complexity, a very + // simple layout mechanism is used: + // The size(width/height) can be determined by itself or its parent (not + // implemented yet), but can not by its children. (Top-down travel) + // The location(x/y) can be determined by the bounding rect of itself + // (can including its descendants or not) and the size of its parent. + // (Bottom-up travel) + + // When `chart.clear()` or `chart.setOption({...}, true)` with the same id, + // view will be reused. + if (graphicModel !== this._lastGraphicModel) { + this._clear(); + } + this._lastGraphicModel = graphicModel; + + this._updateElements(graphicModel); + this._relocate(graphicModel, api); + }, + + /** + * Update graphic elements. + * + * @private + * @param {Object} graphicModel graphic model + */ + _updateElements: function (graphicModel) { + var elOptionsToUpdate = graphicModel.useElOptionsToUpdate(); + + if (!elOptionsToUpdate) { + return; + } + + var elMap = this._elMap; + var rootGroup = this.group; + + // Top-down tranverse to assign graphic settings to each elements. + each$1(elOptionsToUpdate, function (elOption) { + var $action = elOption.$action; + var id = elOption.id; + var existEl = elMap.get(id); + var parentId = elOption.parentId; + var targetElParent = parentId != null ? elMap.get(parentId) : rootGroup; + + var elOptionStyle = elOption.style; + if (elOption.type === 'text' && elOptionStyle) { + // In top/bottom mode, textVerticalAlign should not be used, which cause + // inaccurately locating. + if (elOption.hv && elOption.hv[1]) { + elOptionStyle.textVerticalAlign = elOptionStyle.textBaseline = null; + } + + // Compatible with previous setting: both support fill and textFill, + // stroke and textStroke. + !elOptionStyle.hasOwnProperty('textFill') && elOptionStyle.fill && ( + elOptionStyle.textFill = elOptionStyle.fill + ); + !elOptionStyle.hasOwnProperty('textStroke') && elOptionStyle.stroke && ( + elOptionStyle.textStroke = elOptionStyle.stroke + ); + } + + // Remove unnecessary props to avoid potential problems. + var elOptionCleaned = getCleanedElOption(elOption); + + // For simple, do not support parent change, otherwise reorder is needed. + if (__DEV__) { + existEl && assert$1( + targetElParent === existEl.parent, + 'Changing parent is not supported.' + ); + } + + if (!$action || $action === 'merge') { + existEl + ? existEl.attr(elOptionCleaned) + : createEl$1(id, targetElParent, elOptionCleaned, elMap); + } + else if ($action === 'replace') { + removeEl(existEl, elMap); + createEl$1(id, targetElParent, elOptionCleaned, elMap); + } + else if ($action === 'remove') { + removeEl(existEl, elMap); + } + + var el = elMap.get(id); + if (el) { + el.__ecGraphicWidth = elOption.width; + el.__ecGraphicHeight = elOption.height; + setEventData(el, graphicModel, elOption); + } + }); + }, + + /** + * Locate graphic elements. + * + * @private + * @param {Object} graphicModel graphic model + * @param {module:echarts/ExtensionAPI} api extension API + */ + _relocate: function (graphicModel, api) { + var elOptions = graphicModel.option.elements; + var rootGroup = this.group; + var elMap = this._elMap; + + // Bottom-up tranvese all elements (consider ec resize) to locate elements. + for (var i = elOptions.length - 1; i >= 0; i--) { + var elOption = elOptions[i]; + var el = elMap.get(elOption.id); + + if (!el) { + continue; + } + + var parentEl = el.parent; + var containerInfo = parentEl === rootGroup + ? { + width: api.getWidth(), + height: api.getHeight() + } + : { // Like 'position:absolut' in css, default 0. + width: parentEl.__ecGraphicWidth || 0, + height: parentEl.__ecGraphicHeight || 0 + }; + + positionElement( + el, elOption, containerInfo, null, + {hv: elOption.hv, boundingMode: elOption.bounding} + ); + } + }, + + /** + * Clear all elements. + * + * @private + */ + _clear: function () { + var elMap = this._elMap; + elMap.each(function (el) { + removeEl(el, elMap); + }); + this._elMap = createHashMap(); + }, + + /** + * @override + */ + dispose: function () { + this._clear(); + } +}); + +function createEl$1(id, targetElParent, elOption, elMap) { + var graphicType = elOption.type; + + if (__DEV__) { + assert$1(graphicType, 'graphic type MUST be set'); + } + + var Clz = graphic[graphicType.charAt(0).toUpperCase() + graphicType.slice(1)]; + + if (__DEV__) { + assert$1(Clz, 'graphic type can not be found'); + } + + var el = new Clz(elOption); + targetElParent.add(el); + elMap.set(id, el); + el.__ecGraphicId = id; +} + +function removeEl(existEl, elMap) { + var existElParent = existEl && existEl.parent; + if (existElParent) { + existEl.type === 'group' && existEl.traverse(function (el) { + removeEl(el, elMap); + }); + elMap.removeKey(existEl.__ecGraphicId); + existElParent.remove(existEl); + } +} + +// Remove unnecessary props to avoid potential problems. +function getCleanedElOption(elOption) { + elOption = extend({}, elOption); + each$1( + ['id', 'parentId', '$action', 'hv', 'bounding'].concat(LOCATION_PARAMS), + function (name) { + delete elOption[name]; + } + ); + return elOption; +} + +function isSetLoc(obj, props) { + var isSet; + each$1(props, function (prop) { + obj[prop] != null && obj[prop] !== 'auto' && (isSet = true); + }); + return isSet; +} + +function setKeyInfoToNewElOption(resultItem, newElOption) { + var existElOption = resultItem.exist; + + // Set id and type after id assigned. + newElOption.id = resultItem.keyInfo.id; + !newElOption.type && existElOption && (newElOption.type = existElOption.type); + + // Set parent id if not specified + if (newElOption.parentId == null) { + var newElParentOption = newElOption.parentOption; + if (newElParentOption) { + newElOption.parentId = newElParentOption.id; + } + else if (existElOption) { + newElOption.parentId = existElOption.parentId; + } + } + + // Clear + newElOption.parentOption = null; +} + +function mergeNewElOptionToExist(existList, index, newElOption) { + // Update existing options, for `getOption` feature. + var newElOptCopy = extend({}, newElOption); + var existElOption = existList[index]; + + var $action = newElOption.$action || 'merge'; + if ($action === 'merge') { + if (existElOption) { + + if (__DEV__) { + var newType = newElOption.type; + assert$1( + !newType || existElOption.type === newType, + 'Please set $action: "replace" to change `type`' + ); + } + + // We can ensure that newElOptCopy and existElOption are not + // the same object, so `merge` will not change newElOptCopy. + merge(existElOption, newElOptCopy, true); + // Rigid body, use ignoreSize. + mergeLayoutParam(existElOption, newElOptCopy, {ignoreSize: true}); + // Will be used in render. + copyLayoutParams(newElOption, existElOption); + } + else { + existList[index] = newElOptCopy; + } + } + else if ($action === 'replace') { + existList[index] = newElOptCopy; + } + else if ($action === 'remove') { + // null will be cleaned later. + existElOption && (existList[index] = null); + } +} + +function setLayoutInfoToExist(existItem, newElOption) { + if (!existItem) { + return; + } + existItem.hv = newElOption.hv = [ + // Rigid body, dont care `width`. + isSetLoc(newElOption, ['left', 'right']), + // Rigid body, dont care `height`. + isSetLoc(newElOption, ['top', 'bottom']) + ]; + // Give default group size. Otherwise layout error may occur. + if (existItem.type === 'group') { + existItem.width == null && (existItem.width = newElOption.width = 0); + existItem.height == null && (existItem.height = newElOption.height = 0); + } +} + +function setEventData(el, graphicModel, elOption) { + var eventData = el.eventData; + // Simple optimize for large amount of elements that no need event. + if (!el.silent && !el.ignore && !eventData) { + eventData = el.eventData = { + componentType: 'graphic', + componentIndex: graphicModel.componentIndex, + name: el.name + }; + } + + // `elOption.info` enables user to mount some info on + // elements and use them in event handlers. + if (eventData) { + eventData.info = el.info; + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +var features = {}; + +function register$1(name, ctor) { + features[name] = ctor; +} + +function get$1(name) { + return features[name]; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var ToolboxModel = extendComponentModel({ + + type: 'toolbox', + + layoutMode: { + type: 'box', + ignoreSize: true + }, + + optionUpdated: function () { + ToolboxModel.superApply(this, 'optionUpdated', arguments); + + each$1(this.option.feature, function (featureOpt, featureName) { + var Feature = get$1(featureName); + Feature && merge(featureOpt, Feature.defaultOption); + }); + }, + + defaultOption: { + + show: true, + + z: 6, + + zlevel: 0, + + orient: 'horizontal', + + left: 'right', + + top: 'top', + + // right + // bottom + + backgroundColor: 'transparent', + + borderColor: '#ccc', + + borderRadius: 0, + + borderWidth: 0, + + padding: 5, + + itemSize: 15, + + itemGap: 8, + + showTitle: true, + + iconStyle: { + borderColor: '#666', + color: 'none' + }, + emphasis: { + iconStyle: { + borderColor: '#3E98C5' + } + }, + // textStyle: {}, + + // feature + + tooltip: { + show: false + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Layout list like component. + * It will box layout each items in group of component and then position the whole group in the viewport + * @param {module:zrender/group/Group} group + * @param {module:echarts/model/Component} componentModel + * @param {module:echarts/ExtensionAPI} + */ +function layout$3(group, componentModel, api) { + var boxLayoutParams = componentModel.getBoxLayoutParams(); + var padding = componentModel.get('padding'); + var viewportSize = {width: api.getWidth(), height: api.getHeight()}; + + var rect = getLayoutRect( + boxLayoutParams, + viewportSize, + padding + ); + + box( + componentModel.get('orient'), + group, + componentModel.get('itemGap'), + rect.width, + rect.height + ); + + positionElement( + group, + boxLayoutParams, + viewportSize, + padding + ); +} + +function makeBackground(rect, componentModel) { + var padding = normalizeCssArray$1( + componentModel.get('padding') + ); + var style = componentModel.getItemStyle(['color', 'opacity']); + style.fill = componentModel.get('backgroundColor'); + var rect = new Rect({ + shape: { + x: rect.x - padding[3], + y: rect.y - padding[0], + width: rect.width + padding[1] + padding[3], + height: rect.height + padding[0] + padding[2], + r: componentModel.get('borderRadius') + }, + style: style, + silent: true, + z2: -1 + }); + // FIXME + // `subPixelOptimizeRect` may bring some gap between edge of viewpart + // and background rect when setting like `left: 0`, `top: 0`. + // graphic.subPixelOptimizeRect(rect); + + return rect; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +extendComponentView({ + + type: 'toolbox', + + render: function (toolboxModel, ecModel, api, payload) { + var group = this.group; + group.removeAll(); + + if (!toolboxModel.get('show')) { + return; + } + + var itemSize = +toolboxModel.get('itemSize'); + var featureOpts = toolboxModel.get('feature') || {}; + var features = this._features || (this._features = {}); + + var featureNames = []; + each$1(featureOpts, function (opt, name) { + featureNames.push(name); + }); + + (new DataDiffer(this._featureNames || [], featureNames)) + .add(processFeature) + .update(processFeature) + .remove(curry(processFeature, null)) + .execute(); + + // Keep for diff. + this._featureNames = featureNames; + + function processFeature(newIndex, oldIndex) { + var featureName = featureNames[newIndex]; + var oldName = featureNames[oldIndex]; + var featureOpt = featureOpts[featureName]; + var featureModel = new Model(featureOpt, toolboxModel, toolboxModel.ecModel); + var feature; + + if (featureName && !oldName) { // Create + if (isUserFeatureName(featureName)) { + feature = { + model: featureModel, + onclick: featureModel.option.onclick, + featureName: featureName + }; + } + else { + var Feature = get$1(featureName); + if (!Feature) { + return; + } + feature = new Feature(featureModel, ecModel, api); + } + features[featureName] = feature; + } + else { + feature = features[oldName]; + // If feature does not exsit. + if (!feature) { + return; + } + feature.model = featureModel; + feature.ecModel = ecModel; + feature.api = api; + } + + if (!featureName && oldName) { + feature.dispose && feature.dispose(ecModel, api); + return; + } + + if (!featureModel.get('show') || feature.unusable) { + feature.remove && feature.remove(ecModel, api); + return; + } + + createIconPaths(featureModel, feature, featureName); + + featureModel.setIconStatus = function (iconName, status) { + var option = this.option; + var iconPaths = this.iconPaths; + option.iconStatus = option.iconStatus || {}; + option.iconStatus[iconName] = status; + // FIXME + iconPaths[iconName] && iconPaths[iconName].trigger(status); + }; + + if (feature.render) { + feature.render(featureModel, ecModel, api, payload); + } + } + + function createIconPaths(featureModel, feature, featureName) { + var iconStyleModel = featureModel.getModel('iconStyle'); + var iconStyleEmphasisModel = featureModel.getModel('emphasis.iconStyle'); + + // If one feature has mutiple icon. they are orginaized as + // { + // icon: { + // foo: '', + // bar: '' + // }, + // title: { + // foo: '', + // bar: '' + // } + // } + var icons = feature.getIcons ? feature.getIcons() : featureModel.get('icon'); + var titles = featureModel.get('title') || {}; + if (typeof icons === 'string') { + var icon = icons; + var title = titles; + icons = {}; + titles = {}; + icons[featureName] = icon; + titles[featureName] = title; + } + var iconPaths = featureModel.iconPaths = {}; + each$1(icons, function (iconStr, iconName) { + var path = createIcon( + iconStr, + {}, + { + x: -itemSize / 2, + y: -itemSize / 2, + width: itemSize, + height: itemSize + } + ); + path.setStyle(iconStyleModel.getItemStyle()); + path.hoverStyle = iconStyleEmphasisModel.getItemStyle(); + + var tooltipModel = toolboxModel.getModel('tooltip'); + if (tooltipModel && tooltipModel.get('show')) { + path.attr('tooltip', extend({ + content: titles[iconName], + formatter: tooltipModel.get('formatter', true) + || function () { + return titles[iconName]; + }, + formatterParams: { + componentType: 'toolbox', + name: iconName, + title: titles[iconName], + $vars: ['name', 'title'] + }, + position: tooltipModel.get('position', true) || 'bottom' + }, tooltipModel.option)); + } + + setHoverStyle(path); + + if (toolboxModel.get('showTitle')) { + path.__title = titles[iconName]; + path.on('mouseover', function () { + // Should not reuse above hoverStyle, which might be modified. + var hoverStyle = iconStyleEmphasisModel.getItemStyle(); + path.setStyle({ + text: titles[iconName], + textPosition: iconStyleEmphasisModel.get('textPosition') || 'bottom', + textFill: iconStyleEmphasisModel.get('textFill') || hoverStyle.fill || hoverStyle.stroke || '#000', + textAlign: iconStyleEmphasisModel.get('textAlign') || 'center', + textBackgroundColor: iconStyleEmphasisModel.get('textBackgroundColor'), + textBorderRadius: iconStyleEmphasisModel.get('textBorderRadius'), + textPadding: iconStyleEmphasisModel.get('textPadding') + }); + }) + .on('mouseout', function () { + path.setStyle({ + textFill: null, + textBackgroundColor: null + }); + }); + } + path.trigger(featureModel.get('iconStatus.' + iconName) || 'normal'); + + group.add(path); + path.on('click', bind( + feature.onclick, feature, ecModel, api, iconName + )); + + iconPaths[iconName] = path; + }); + } + + layout$3(group, toolboxModel, api); + // Render background after group is layout + // FIXME + group.add(makeBackground(group.getBoundingRect(), toolboxModel)); + + // Adjust icon title positions to avoid them out of screen + group.eachChild(function (icon) { + var titleText = icon.__title; + var hoverStyle = icon.hoverStyle; + // May be background element + if (hoverStyle && titleText) { + var rect = getBoundingRect( + titleText, makeFont(hoverStyle) + ); + var offsetX = icon.position[0] + group.position[0]; + var offsetY = icon.position[1] + group.position[1] + itemSize; + + var needPutOnTop = false; + if (offsetY + rect.height > api.getHeight()) { + hoverStyle.textPosition = 'top'; + needPutOnTop = true; + } + var topOffset = needPutOnTop ? (-5 - rect.height) : (itemSize + 8); + if (offsetX + rect.width / 2 > api.getWidth()) { + hoverStyle.textPosition = ['100%', topOffset]; + hoverStyle.textAlign = 'right'; + } + else if (offsetX - rect.width / 2 < 0) { + hoverStyle.textPosition = [0, topOffset]; + hoverStyle.textAlign = 'left'; + } + } + }); + }, + + updateView: function (toolboxModel, ecModel, api, payload) { + each$1(this._features, function (feature) { + feature.updateView && feature.updateView(feature.model, ecModel, api, payload); + }); + }, + + // updateLayout: function (toolboxModel, ecModel, api, payload) { + // zrUtil.each(this._features, function (feature) { + // feature.updateLayout && feature.updateLayout(feature.model, ecModel, api, payload); + // }); + // }, + + remove: function (ecModel, api) { + each$1(this._features, function (feature) { + feature.remove && feature.remove(ecModel, api); + }); + this.group.removeAll(); + }, + + dispose: function (ecModel, api) { + each$1(this._features, function (feature) { + feature.dispose && feature.dispose(ecModel, api); + }); + } +}); + +function isUserFeatureName(featureName) { + return featureName.indexOf('my') === 0; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* global Uint8Array */ + +var saveAsImageLang = lang.toolbox.saveAsImage; + +function SaveAsImage(model) { + this.model = model; +} + +SaveAsImage.defaultOption = { + show: true, + icon: 'M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0', + title: saveAsImageLang.title, + type: 'png', + // Default use option.backgroundColor + // backgroundColor: '#fff', + connectedBackgroundColor: '#fff', + name: '', + excludeComponents: ['toolbox'], + pixelRatio: 1, + lang: saveAsImageLang.lang.slice() +}; + +SaveAsImage.prototype.unusable = !env$1.canvasSupported; + +var proto$2 = SaveAsImage.prototype; + +proto$2.onclick = function (ecModel, api) { + var model = this.model; + var title = model.get('name') || ecModel.get('title.0.text') || 'echarts'; + var type = model.get('type', true) || 'png'; + var url = api.getConnectedDataURL({ + type: type, + backgroundColor: model.get('backgroundColor', true) + || ecModel.get('backgroundColor') || '#fff', + connectedBackgroundColor: model.get('connectedBackgroundColor'), + excludeComponents: model.get('excludeComponents'), + pixelRatio: model.get('pixelRatio') + }); + // Chrome and Firefox + if (typeof MouseEvent === 'function' && !env$1.browser.ie && !env$1.browser.edge) { + var $a = document.createElement('a'); + $a.download = title + '.' + type; + $a.target = '_blank'; + $a.href = url; + var evt = new MouseEvent('click', { + view: window, + bubbles: true, + cancelable: false + }); + $a.dispatchEvent(evt); + } + // IE + else { + if (window.navigator.msSaveOrOpenBlob) { + var bstr = atob(url.split(',')[1]); + var n = bstr.length; + var u8arr = new Uint8Array(n); + while (n--) { + u8arr[n] = bstr.charCodeAt(n); + } + var blob = new Blob([u8arr]); + window.navigator.msSaveOrOpenBlob(blob, title + '.' + type); + } + else { + var lang$$1 = model.get('lang'); + var html = '' + + '' + + '' + + ''; + var tab = window.open(); + tab.document.write(html); + } + } +}; + +register$1( + 'saveAsImage', SaveAsImage +); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var magicTypeLang = lang.toolbox.magicType; + +function MagicType(model) { + this.model = model; +} + +MagicType.defaultOption = { + show: true, + type: [], + // Icon group + icon: { + /* eslint-disable */ + line: 'M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4', + bar: 'M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7', + stack: 'M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z', // jshint ignore:line + tiled: 'M2.3,2.2h22.8V25H2.3V2.2z M35,2.2h22.8V25H35V2.2zM2.3,35h22.8v22.8H2.3V35z M35,35h22.8v22.8H35V35z' + /* eslint-enable */ + }, + // `line`, `bar`, `stack`, `tiled` + title: clone(magicTypeLang.title), + option: {}, + seriesIndex: {} +}; + +var proto$3 = MagicType.prototype; + +proto$3.getIcons = function () { + var model = this.model; + var availableIcons = model.get('icon'); + var icons = {}; + each$1(model.get('type'), function (type) { + if (availableIcons[type]) { + icons[type] = availableIcons[type]; + } + }); + return icons; +}; + +var seriesOptGenreator = { + 'line': function (seriesType, seriesId, seriesModel, model) { + if (seriesType === 'bar') { + return merge({ + id: seriesId, + type: 'line', + // Preserve data related option + data: seriesModel.get('data'), + stack: seriesModel.get('stack'), + markPoint: seriesModel.get('markPoint'), + markLine: seriesModel.get('markLine') + }, model.get('option.line') || {}, true); + } + }, + 'bar': function (seriesType, seriesId, seriesModel, model) { + if (seriesType === 'line') { + return merge({ + id: seriesId, + type: 'bar', + // Preserve data related option + data: seriesModel.get('data'), + stack: seriesModel.get('stack'), + markPoint: seriesModel.get('markPoint'), + markLine: seriesModel.get('markLine') + }, model.get('option.bar') || {}, true); + } + }, + 'stack': function (seriesType, seriesId, seriesModel, model) { + if (seriesType === 'line' || seriesType === 'bar') { + return merge({ + id: seriesId, + stack: '__ec_magicType_stack__' + }, model.get('option.stack') || {}, true); + } + }, + 'tiled': function (seriesType, seriesId, seriesModel, model) { + if (seriesType === 'line' || seriesType === 'bar') { + return merge({ + id: seriesId, + stack: '' + }, model.get('option.tiled') || {}, true); + } + } +}; + +var radioTypes = [ + ['line', 'bar'], + ['stack', 'tiled'] +]; + +proto$3.onclick = function (ecModel, api, type) { + var model = this.model; + var seriesIndex = model.get('seriesIndex.' + type); + // Not supported magicType + if (!seriesOptGenreator[type]) { + return; + } + var newOption = { + series: [] + }; + var generateNewSeriesTypes = function (seriesModel) { + var seriesType = seriesModel.subType; + var seriesId = seriesModel.id; + var newSeriesOpt = seriesOptGenreator[type]( + seriesType, seriesId, seriesModel, model + ); + if (newSeriesOpt) { + // PENDING If merge original option? + defaults(newSeriesOpt, seriesModel.option); + newOption.series.push(newSeriesOpt); + } + // Modify boundaryGap + var coordSys = seriesModel.coordinateSystem; + if (coordSys && coordSys.type === 'cartesian2d' && (type === 'line' || type === 'bar')) { + var categoryAxis = coordSys.getAxesByScale('ordinal')[0]; + if (categoryAxis) { + var axisDim = categoryAxis.dim; + var axisType = axisDim + 'Axis'; + var axisModel = ecModel.queryComponents({ + mainType: axisType, + index: seriesModel.get(name + 'Index'), + id: seriesModel.get(name + 'Id') + })[0]; + var axisIndex = axisModel.componentIndex; + + newOption[axisType] = newOption[axisType] || []; + for (var i = 0; i <= axisIndex; i++) { + newOption[axisType][axisIndex] = newOption[axisType][axisIndex] || {}; + } + newOption[axisType][axisIndex].boundaryGap = type === 'bar'; + } + } + }; + + each$1(radioTypes, function (radio) { + if (indexOf(radio, type) >= 0) { + each$1(radio, function (item) { + model.setIconStatus(item, 'normal'); + }); + } + }); + + model.setIconStatus(type, 'emphasis'); + + ecModel.eachComponent( + { + mainType: 'series', + query: seriesIndex == null ? null : { + seriesIndex: seriesIndex + } + }, generateNewSeriesTypes + ); + api.dispatchAction({ + type: 'changeMagicType', + currentType: type, + newOption: newOption + }); +}; + +registerAction({ + type: 'changeMagicType', + event: 'magicTypeChanged', + update: 'prepareAndUpdate' +}, function (payload, ecModel) { + ecModel.mergeOption(payload.newOption); +}); + +register$1('magicType', MagicType); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var dataViewLang = lang.toolbox.dataView; + +var BLOCK_SPLITER = new Array(60).join('-'); +var ITEM_SPLITER = '\t'; +/** + * Group series into two types + * 1. on category axis, like line, bar + * 2. others, like scatter, pie + * @param {module:echarts/model/Global} ecModel + * @return {Object} + * @inner + */ +function groupSeries(ecModel) { + var seriesGroupByCategoryAxis = {}; + var otherSeries = []; + var meta = []; + ecModel.eachRawSeries(function (seriesModel) { + var coordSys = seriesModel.coordinateSystem; + + if (coordSys && (coordSys.type === 'cartesian2d' || coordSys.type === 'polar')) { + var baseAxis = coordSys.getBaseAxis(); + if (baseAxis.type === 'category') { + var key = baseAxis.dim + '_' + baseAxis.index; + if (!seriesGroupByCategoryAxis[key]) { + seriesGroupByCategoryAxis[key] = { + categoryAxis: baseAxis, + valueAxis: coordSys.getOtherAxis(baseAxis), + series: [] + }; + meta.push({ + axisDim: baseAxis.dim, + axisIndex: baseAxis.index + }); + } + seriesGroupByCategoryAxis[key].series.push(seriesModel); + } + else { + otherSeries.push(seriesModel); + } + } + else { + otherSeries.push(seriesModel); + } + }); + + return { + seriesGroupByCategoryAxis: seriesGroupByCategoryAxis, + other: otherSeries, + meta: meta + }; +} + +/** + * Assemble content of series on cateogory axis + * @param {Array.} series + * @return {string} + * @inner + */ +function assembleSeriesWithCategoryAxis(series) { + var tables = []; + each$1(series, function (group, key) { + var categoryAxis = group.categoryAxis; + var valueAxis = group.valueAxis; + var valueAxisDim = valueAxis.dim; + + var headers = [' '].concat(map(group.series, function (series) { + return series.name; + })); + var columns = [categoryAxis.model.getCategories()]; + each$1(group.series, function (series) { + columns.push(series.getRawData().mapArray(valueAxisDim, function (val) { + return val; + })); + }); + // Assemble table content + var lines = [headers.join(ITEM_SPLITER)]; + for (var i = 0; i < columns[0].length; i++) { + var items = []; + for (var j = 0; j < columns.length; j++) { + items.push(columns[j][i]); + } + lines.push(items.join(ITEM_SPLITER)); + } + tables.push(lines.join('\n')); + }); + return tables.join('\n\n' + BLOCK_SPLITER + '\n\n'); +} + +/** + * Assemble content of other series + * @param {Array.} series + * @return {string} + * @inner + */ +function assembleOtherSeries(series) { + return map(series, function (series) { + var data = series.getRawData(); + var lines = [series.name]; + var vals = []; + data.each(data.dimensions, function () { + var argLen = arguments.length; + var dataIndex = arguments[argLen - 1]; + var name = data.getName(dataIndex); + for (var i = 0; i < argLen - 1; i++) { + vals[i] = arguments[i]; + } + lines.push((name ? (name + ITEM_SPLITER) : '') + vals.join(ITEM_SPLITER)); + }); + return lines.join('\n'); + }).join('\n\n' + BLOCK_SPLITER + '\n\n'); +} + +/** + * @param {module:echarts/model/Global} + * @return {Object} + * @inner + */ +function getContentFromModel(ecModel) { + + var result = groupSeries(ecModel); + + return { + value: filter([ + assembleSeriesWithCategoryAxis(result.seriesGroupByCategoryAxis), + assembleOtherSeries(result.other) + ], function (str) { + return str.replace(/[\n\t\s]/g, ''); + }).join('\n\n' + BLOCK_SPLITER + '\n\n'), + + meta: result.meta + }; +} + + +function trim$1(str) { + return str.replace(/^\s\s*/, '').replace(/\s\s*$/, ''); +} +/** + * If a block is tsv format + */ +function isTSVFormat(block) { + // Simple method to find out if a block is tsv format + var firstLine = block.slice(0, block.indexOf('\n')); + if (firstLine.indexOf(ITEM_SPLITER) >= 0) { + return true; + } +} + +var itemSplitRegex = new RegExp('[' + ITEM_SPLITER + ']+', 'g'); +/** + * @param {string} tsv + * @return {Object} + */ +function parseTSVContents(tsv) { + var tsvLines = tsv.split(/\n+/g); + var headers = trim$1(tsvLines.shift()).split(itemSplitRegex); + + var categories = []; + var series = map(headers, function (header) { + return { + name: header, + data: [] + }; + }); + for (var i = 0; i < tsvLines.length; i++) { + var items = trim$1(tsvLines[i]).split(itemSplitRegex); + categories.push(items.shift()); + for (var j = 0; j < items.length; j++) { + series[j] && (series[j].data[i] = items[j]); + } + } + return { + series: series, + categories: categories + }; +} + +/** + * @param {string} str + * @return {Array.} + * @inner + */ +function parseListContents(str) { + var lines = str.split(/\n+/g); + var seriesName = trim$1(lines.shift()); + + var data = []; + for (var i = 0; i < lines.length; i++) { + var items = trim$1(lines[i]).split(itemSplitRegex); + var name = ''; + var value; + var hasName = false; + if (isNaN(items[0])) { // First item is name + hasName = true; + name = items[0]; + items = items.slice(1); + data[i] = { + name: name, + value: [] + }; + value = data[i].value; + } + else { + value = data[i] = []; + } + for (var j = 0; j < items.length; j++) { + value.push(+items[j]); + } + if (value.length === 1) { + hasName ? (data[i].value = value[0]) : (data[i] = value[0]); + } + } + + return { + name: seriesName, + data: data + }; +} + +/** + * @param {string} str + * @param {Array.} blockMetaList + * @return {Object} + * @inner + */ +function parseContents(str, blockMetaList) { + var blocks = str.split(new RegExp('\n*' + BLOCK_SPLITER + '\n*', 'g')); + var newOption = { + series: [] + }; + each$1(blocks, function (block, idx) { + if (isTSVFormat(block)) { + var result = parseTSVContents(block); + var blockMeta = blockMetaList[idx]; + var axisKey = blockMeta.axisDim + 'Axis'; + + if (blockMeta) { + newOption[axisKey] = newOption[axisKey] || []; + newOption[axisKey][blockMeta.axisIndex] = { + data: result.categories + }; + newOption.series = newOption.series.concat(result.series); + } + } + else { + var result = parseListContents(block); + newOption.series.push(result); + } + }); + return newOption; +} + +/** + * @alias {module:echarts/component/toolbox/feature/DataView} + * @constructor + * @param {module:echarts/model/Model} model + */ +function DataView(model) { + + this._dom = null; + + this.model = model; +} + +DataView.defaultOption = { + show: true, + readOnly: false, + optionToContent: null, + contentToOption: null, + + icon: 'M17.5,17.3H33 M17.5,17.3H33 M45.4,29.5h-28 M11.5,2v56H51V14.8L38.4,2H11.5z M38.4,2.2v12.7H51 M45.4,41.7h-28', + title: clone(dataViewLang.title), + lang: clone(dataViewLang.lang), + backgroundColor: '#fff', + textColor: '#000', + textareaColor: '#fff', + textareaBorderColor: '#333', + buttonColor: '#c23531', + buttonTextColor: '#fff' +}; + +DataView.prototype.onclick = function (ecModel, api) { + var container = api.getDom(); + var model = this.model; + if (this._dom) { + container.removeChild(this._dom); + } + var root = document.createElement('div'); + root.style.cssText = 'position:absolute;left:5px;top:5px;bottom:5px;right:5px;'; + root.style.backgroundColor = model.get('backgroundColor') || '#fff'; + + // Create elements + var header = document.createElement('h4'); + var lang$$1 = model.get('lang') || []; + header.innerHTML = lang$$1[0] || model.get('title'); + header.style.cssText = 'margin: 10px 20px;'; + header.style.color = model.get('textColor'); + + var viewMain = document.createElement('div'); + var textarea = document.createElement('textarea'); + viewMain.style.cssText = 'display:block;width:100%;overflow:auto;'; + + var optionToContent = model.get('optionToContent'); + var contentToOption = model.get('contentToOption'); + var result = getContentFromModel(ecModel); + if (typeof optionToContent === 'function') { + var htmlOrDom = optionToContent(api.getOption()); + if (typeof htmlOrDom === 'string') { + viewMain.innerHTML = htmlOrDom; + } + else if (isDom(htmlOrDom)) { + viewMain.appendChild(htmlOrDom); + } + } + else { + // Use default textarea + viewMain.appendChild(textarea); + textarea.readOnly = model.get('readOnly'); + textarea.style.cssText = 'width:100%;height:100%;font-family:monospace;font-size:14px;line-height:1.6rem;'; + textarea.style.color = model.get('textColor'); + textarea.style.borderColor = model.get('textareaBorderColor'); + textarea.style.backgroundColor = model.get('textareaColor'); + textarea.value = result.value; + } + + var blockMetaList = result.meta; + + var buttonContainer = document.createElement('div'); + buttonContainer.style.cssText = 'position:absolute;bottom:0;left:0;right:0;'; + + var buttonStyle = 'float:right;margin-right:20px;border:none;' + + 'cursor:pointer;padding:2px 5px;font-size:12px;border-radius:3px'; + var closeButton = document.createElement('div'); + var refreshButton = document.createElement('div'); + + buttonStyle += ';background-color:' + model.get('buttonColor'); + buttonStyle += ';color:' + model.get('buttonTextColor'); + + var self = this; + + function close() { + container.removeChild(root); + self._dom = null; + } + addEventListener(closeButton, 'click', close); + + addEventListener(refreshButton, 'click', function () { + var newOption; + try { + if (typeof contentToOption === 'function') { + newOption = contentToOption(viewMain, api.getOption()); + } + else { + newOption = parseContents(textarea.value, blockMetaList); + } + } + catch (e) { + close(); + throw new Error('Data view format error ' + e); + } + if (newOption) { + api.dispatchAction({ + type: 'changeDataView', + newOption: newOption + }); + } + + close(); + }); + + closeButton.innerHTML = lang$$1[1]; + refreshButton.innerHTML = lang$$1[2]; + refreshButton.style.cssText = buttonStyle; + closeButton.style.cssText = buttonStyle; + + !model.get('readOnly') && buttonContainer.appendChild(refreshButton); + buttonContainer.appendChild(closeButton); + + root.appendChild(header); + root.appendChild(viewMain); + root.appendChild(buttonContainer); + + viewMain.style.height = (container.clientHeight - 80) + 'px'; + + container.appendChild(root); + this._dom = root; +}; + +DataView.prototype.remove = function (ecModel, api) { + this._dom && api.getDom().removeChild(this._dom); +}; + +DataView.prototype.dispose = function (ecModel, api) { + this.remove(ecModel, api); +}; + +/** + * @inner + */ +function tryMergeDataOption(newData, originalData) { + return map(newData, function (newVal, idx) { + var original = originalData && originalData[idx]; + if (isObject$1(original) && !isArray(original)) { + if (isObject$1(newVal) && !isArray(newVal)) { + newVal = newVal.value; + } + // Original data has option + return defaults({ + value: newVal + }, original); + } + else { + return newVal; + } + }); +} + +register$1('dataView', DataView); + +registerAction({ + type: 'changeDataView', + event: 'dataViewChanged', + update: 'prepareAndUpdate' +}, function (payload, ecModel) { + var newSeriesOptList = []; + each$1(payload.newOption.series, function (seriesOpt) { + var seriesModel = ecModel.getSeriesByName(seriesOpt.name)[0]; + if (!seriesModel) { + // New created series + // Geuss the series type + newSeriesOptList.push(extend({ + // Default is scatter + type: 'scatter' + }, seriesOpt)); + } + else { + var originalData = seriesModel.get('data'); + newSeriesOptList.push({ + name: seriesOpt.name, + data: tryMergeDataOption(seriesOpt.data, originalData) + }); + } + }); + + ecModel.mergeOption(defaults({ + series: newSeriesOptList + }, payload.newOption)); +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var each$17 = each$1; +var indexOf$1 = indexOf; +var curry$4 = curry; + +var COORD_CONVERTS = ['dataToPoint', 'pointToData']; + +// FIXME +// how to genarialize to more coordinate systems. +var INCLUDE_FINDER_MAIN_TYPES = [ + 'grid', 'xAxis', 'yAxis', 'geo', 'graph', + 'polar', 'radiusAxis', 'angleAxis', 'bmap' +]; + +/** + * [option in constructor]: + * { + * Index/Id/Name of geo, xAxis, yAxis, grid: See util/model#parseFinder. + * } + * + * + * [targetInfo]: + * + * There can be multiple axes in a single targetInfo. Consider the case + * of `grid` component, a targetInfo represents a grid which contains one or more + * cartesian and one or more axes. And consider the case of parallel system, + * which has multiple axes in a coordinate system. + * Can be { + * panelId: ..., + * coordSys: , + * coordSyses: all cartesians. + * gridModel: + * xAxes: correspond to coordSyses on index + * yAxes: correspond to coordSyses on index + * } + * or { + * panelId: ..., + * coordSys: + * coordSyses: [] + * geoModel: + * } + * + * + * [panelOpt]: + * + * Make from targetInfo. Input to BrushController. + * { + * panelId: ..., + * rect: ... + * } + * + * + * [area]: + * + * Generated by BrushController or user input. + * { + * panelId: Used to locate coordInfo directly. If user inpput, no panelId. + * brushType: determine how to convert to/from coord('rect' or 'polygon' or 'lineX/Y'). + * Index/Id/Name of geo, xAxis, yAxis, grid: See util/model#parseFinder. + * range: pixel range. + * coordRange: representitive coord range (the first one of coordRanges). + * coordRanges: coord ranges, used in multiple cartesian in one grid. + * } + */ + +/** + * @param {Object} option contains Index/Id/Name of xAxis/yAxis/geo/grid + * Each can be {number|Array.}. like: {xAxisIndex: [3, 4]} + * @param {module:echarts/model/Global} ecModel + * @param {Object} [opt] + * @param {Array.} [opt.include] include coordinate system types. + */ +function BrushTargetManager(option, ecModel, opt) { + /** + * @private + * @type {Array.} + */ + var targetInfoList = this._targetInfoList = []; + var info = {}; + var foundCpts = parseFinder$1(ecModel, option); + + each$17(targetInfoBuilders, function (builder, type) { + if (!opt || !opt.include || indexOf$1(opt.include, type) >= 0) { + builder(foundCpts, targetInfoList, info); + } + }); +} + +var proto$5 = BrushTargetManager.prototype; + +proto$5.setOutputRanges = function (areas, ecModel) { + this.matchOutputRanges(areas, ecModel, function (area, coordRange, coordSys) { + (area.coordRanges || (area.coordRanges = [])).push(coordRange); + // area.coordRange is the first of area.coordRanges + if (!area.coordRange) { + area.coordRange = coordRange; + // In 'category' axis, coord to pixel is not reversible, so we can not + // rebuild range by coordRange accrately, which may bring trouble when + // brushing only one item. So we use __rangeOffset to rebuilding range + // by coordRange. And this it only used in brush component so it is no + // need to be adapted to coordRanges. + var result = coordConvert[area.brushType](0, coordSys, coordRange); + area.__rangeOffset = { + offset: diffProcessor[area.brushType](result.values, area.range, [1, 1]), + xyMinMax: result.xyMinMax + }; + } + }); +}; + +proto$5.matchOutputRanges = function (areas, ecModel, cb) { + each$17(areas, function (area) { + var targetInfo = this.findTargetInfo(area, ecModel); + + if (targetInfo && targetInfo !== true) { + each$1( + targetInfo.coordSyses, + function (coordSys) { + var result = coordConvert[area.brushType](1, coordSys, area.range); + cb(area, result.values, coordSys, ecModel); + } + ); + } + }, this); +}; + +proto$5.setInputRanges = function (areas, ecModel) { + each$17(areas, function (area) { + var targetInfo = this.findTargetInfo(area, ecModel); + + if (__DEV__) { + assert$1( + !targetInfo || targetInfo === true || area.coordRange, + 'coordRange must be specified when coord index specified.' + ); + assert$1( + !targetInfo || targetInfo !== true || area.range, + 'range must be specified in global brush.' + ); + } + + area.range = area.range || []; + + // convert coordRange to global range and set panelId. + if (targetInfo && targetInfo !== true) { + area.panelId = targetInfo.panelId; + // (1) area.range shoule always be calculate from coordRange but does + // not keep its original value, for the sake of the dataZoom scenario, + // where area.coordRange remains unchanged but area.range may be changed. + // (2) Only support converting one coordRange to pixel range in brush + // component. So do not consider `coordRanges`. + // (3) About __rangeOffset, see comment above. + var result = coordConvert[area.brushType](0, targetInfo.coordSys, area.coordRange); + var rangeOffset = area.__rangeOffset; + area.range = rangeOffset + ? diffProcessor[area.brushType]( + result.values, + rangeOffset.offset, + getScales(result.xyMinMax, rangeOffset.xyMinMax) + ) + : result.values; + } + }, this); +}; + +proto$5.makePanelOpts = function (api, getDefaultBrushType) { + return map(this._targetInfoList, function (targetInfo) { + var rect = targetInfo.getPanelRect(); + return { + panelId: targetInfo.panelId, + defaultBrushType: getDefaultBrushType && getDefaultBrushType(targetInfo), + clipPath: makeRectPanelClipPath(rect), + isTargetByCursor: makeRectIsTargetByCursor( + rect, api, targetInfo.coordSysModel + ), + getLinearBrushOtherExtent: makeLinearBrushOtherExtent(rect) + }; + }); +}; + +proto$5.controlSeries = function (area, seriesModel, ecModel) { + // Check whether area is bound in coord, and series do not belong to that coord. + // If do not do this check, some brush (like lineX) will controll all axes. + var targetInfo = this.findTargetInfo(area, ecModel); + return targetInfo === true || ( + targetInfo && indexOf$1(targetInfo.coordSyses, seriesModel.coordinateSystem) >= 0 + ); +}; + +/** + * If return Object, a coord found. + * If reutrn true, global found. + * Otherwise nothing found. + * + * @param {Object} area + * @param {Array} targetInfoList + * @return {Object|boolean} + */ +proto$5.findTargetInfo = function (area, ecModel) { + var targetInfoList = this._targetInfoList; + var foundCpts = parseFinder$1(ecModel, area); + + for (var i = 0; i < targetInfoList.length; i++) { + var targetInfo = targetInfoList[i]; + var areaPanelId = area.panelId; + if (areaPanelId) { + if (targetInfo.panelId === areaPanelId) { + return targetInfo; + } + } + else { + for (var i = 0; i < targetInfoMatchers.length; i++) { + if (targetInfoMatchers[i](foundCpts, targetInfo)) { + return targetInfo; + } + } + } + } + + return true; +}; + +function formatMinMax(minMax) { + minMax[0] > minMax[1] && minMax.reverse(); + return minMax; +} + +function parseFinder$1(ecModel, option) { + return parseFinder( + ecModel, option, {includeMainTypes: INCLUDE_FINDER_MAIN_TYPES} + ); +} + +var targetInfoBuilders = { + + grid: function (foundCpts, targetInfoList) { + var xAxisModels = foundCpts.xAxisModels; + var yAxisModels = foundCpts.yAxisModels; + var gridModels = foundCpts.gridModels; + // Remove duplicated. + var gridModelMap = createHashMap(); + var xAxesHas = {}; + var yAxesHas = {}; + + if (!xAxisModels && !yAxisModels && !gridModels) { + return; + } + + each$17(xAxisModels, function (axisModel) { + var gridModel = axisModel.axis.grid.model; + gridModelMap.set(gridModel.id, gridModel); + xAxesHas[gridModel.id] = true; + }); + each$17(yAxisModels, function (axisModel) { + var gridModel = axisModel.axis.grid.model; + gridModelMap.set(gridModel.id, gridModel); + yAxesHas[gridModel.id] = true; + }); + each$17(gridModels, function (gridModel) { + gridModelMap.set(gridModel.id, gridModel); + xAxesHas[gridModel.id] = true; + yAxesHas[gridModel.id] = true; + }); + + gridModelMap.each(function (gridModel) { + var grid = gridModel.coordinateSystem; + var cartesians = []; + + each$17(grid.getCartesians(), function (cartesian, index) { + if (indexOf$1(xAxisModels, cartesian.getAxis('x').model) >= 0 + || indexOf$1(yAxisModels, cartesian.getAxis('y').model) >= 0 + ) { + cartesians.push(cartesian); + } + }); + targetInfoList.push({ + panelId: 'grid--' + gridModel.id, + gridModel: gridModel, + coordSysModel: gridModel, + // Use the first one as the representitive coordSys. + coordSys: cartesians[0], + coordSyses: cartesians, + getPanelRect: panelRectBuilder.grid, + xAxisDeclared: xAxesHas[gridModel.id], + yAxisDeclared: yAxesHas[gridModel.id] + }); + }); + }, + + geo: function (foundCpts, targetInfoList) { + each$17(foundCpts.geoModels, function (geoModel) { + var coordSys = geoModel.coordinateSystem; + targetInfoList.push({ + panelId: 'geo--' + geoModel.id, + geoModel: geoModel, + coordSysModel: geoModel, + coordSys: coordSys, + coordSyses: [coordSys], + getPanelRect: panelRectBuilder.geo + }); + }); + } +}; + +var targetInfoMatchers = [ + + // grid + function (foundCpts, targetInfo) { + var xAxisModel = foundCpts.xAxisModel; + var yAxisModel = foundCpts.yAxisModel; + var gridModel = foundCpts.gridModel; + + !gridModel && xAxisModel && (gridModel = xAxisModel.axis.grid.model); + !gridModel && yAxisModel && (gridModel = yAxisModel.axis.grid.model); + + return gridModel && gridModel === targetInfo.gridModel; + }, + + // geo + function (foundCpts, targetInfo) { + var geoModel = foundCpts.geoModel; + return geoModel && geoModel === targetInfo.geoModel; + } +]; + +var panelRectBuilder = { + + grid: function () { + // grid is not Transformable. + return this.coordSys.grid.getRect().clone(); + }, + + geo: function () { + var coordSys = this.coordSys; + var rect = coordSys.getBoundingRect().clone(); + // geo roam and zoom transform + rect.applyTransform(getTransform(coordSys)); + return rect; + } +}; + +var coordConvert = { + + lineX: curry$4(axisConvert, 0), + + lineY: curry$4(axisConvert, 1), + + rect: function (to, coordSys, rangeOrCoordRange) { + var xminymin = coordSys[COORD_CONVERTS[to]]([rangeOrCoordRange[0][0], rangeOrCoordRange[1][0]]); + var xmaxymax = coordSys[COORD_CONVERTS[to]]([rangeOrCoordRange[0][1], rangeOrCoordRange[1][1]]); + var values = [ + formatMinMax([xminymin[0], xmaxymax[0]]), + formatMinMax([xminymin[1], xmaxymax[1]]) + ]; + return {values: values, xyMinMax: values}; + }, + + polygon: function (to, coordSys, rangeOrCoordRange) { + var xyMinMax = [[Infinity, -Infinity], [Infinity, -Infinity]]; + var values = map(rangeOrCoordRange, function (item) { + var p = coordSys[COORD_CONVERTS[to]](item); + xyMinMax[0][0] = Math.min(xyMinMax[0][0], p[0]); + xyMinMax[1][0] = Math.min(xyMinMax[1][0], p[1]); + xyMinMax[0][1] = Math.max(xyMinMax[0][1], p[0]); + xyMinMax[1][1] = Math.max(xyMinMax[1][1], p[1]); + return p; + }); + return {values: values, xyMinMax: xyMinMax}; + } +}; + +function axisConvert(axisNameIndex, to, coordSys, rangeOrCoordRange) { + if (__DEV__) { + assert$1( + coordSys.type === 'cartesian2d', + 'lineX/lineY brush is available only in cartesian2d.' + ); + } + + var axis = coordSys.getAxis(['x', 'y'][axisNameIndex]); + var values = formatMinMax(map([0, 1], function (i) { + return to + ? axis.coordToData(axis.toLocalCoord(rangeOrCoordRange[i])) + : axis.toGlobalCoord(axis.dataToCoord(rangeOrCoordRange[i])); + })); + var xyMinMax = []; + xyMinMax[axisNameIndex] = values; + xyMinMax[1 - axisNameIndex] = [NaN, NaN]; + + return {values: values, xyMinMax: xyMinMax}; +} + +var diffProcessor = { + lineX: curry$4(axisDiffProcessor, 0), + + lineY: curry$4(axisDiffProcessor, 1), + + rect: function (values, refer, scales) { + return [ + [values[0][0] - scales[0] * refer[0][0], values[0][1] - scales[0] * refer[0][1]], + [values[1][0] - scales[1] * refer[1][0], values[1][1] - scales[1] * refer[1][1]] + ]; + }, + + polygon: function (values, refer, scales) { + return map(values, function (item, idx) { + return [item[0] - scales[0] * refer[idx][0], item[1] - scales[1] * refer[idx][1]]; + }); + } +}; + +function axisDiffProcessor(axisNameIndex, values, refer, scales) { + return [ + values[0] - scales[axisNameIndex] * refer[0], + values[1] - scales[axisNameIndex] * refer[1] + ]; +} + +// We have to process scale caused by dataZoom manually, +// although it might be not accurate. +function getScales(xyMinMaxCurr, xyMinMaxOrigin) { + var sizeCurr = getSize(xyMinMaxCurr); + var sizeOrigin = getSize(xyMinMaxOrigin); + var scales = [sizeCurr[0] / sizeOrigin[0], sizeCurr[1] / sizeOrigin[1]]; + isNaN(scales[0]) && (scales[0] = 1); + isNaN(scales[1]) && (scales[1] = 1); + return scales; +} + +function getSize(xyMinMax) { + return xyMinMax + ? [xyMinMax[0][1] - xyMinMax[0][0], xyMinMax[1][1] - xyMinMax[1][0]] + : [NaN, NaN]; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var each$18 = each$1; + +var ATTR$1 = '\0_ec_hist_store'; + +/** + * @param {module:echarts/model/Global} ecModel + * @param {Object} newSnapshot {dataZoomId, batch: [payloadInfo, ...]} + */ +function push(ecModel, newSnapshot) { + var store = giveStore(ecModel); + + // If previous dataZoom can not be found, + // complete an range with current range. + each$18(newSnapshot, function (batchItem, dataZoomId) { + var i = store.length - 1; + for (; i >= 0; i--) { + var snapshot = store[i]; + if (snapshot[dataZoomId]) { + break; + } + } + if (i < 0) { + // No origin range set, create one by current range. + var dataZoomModel = ecModel.queryComponents( + {mainType: 'dataZoom', subType: 'select', id: dataZoomId} + )[0]; + if (dataZoomModel) { + var percentRange = dataZoomModel.getPercentRange(); + store[0][dataZoomId] = { + dataZoomId: dataZoomId, + start: percentRange[0], + end: percentRange[1] + }; + } + } + }); + + store.push(newSnapshot); +} + +/** + * @param {module:echarts/model/Global} ecModel + * @return {Object} snapshot + */ +function pop(ecModel) { + var store = giveStore(ecModel); + var head = store[store.length - 1]; + store.length > 1 && store.pop(); + + // Find top for all dataZoom. + var snapshot = {}; + each$18(head, function (batchItem, dataZoomId) { + for (var i = store.length - 1; i >= 0; i--) { + var batchItem = store[i][dataZoomId]; + if (batchItem) { + snapshot[dataZoomId] = batchItem; + break; + } + } + }); + + return snapshot; +} + +/** + * @param {module:echarts/model/Global} ecModel + */ +function clear$1(ecModel) { + ecModel[ATTR$1] = null; +} + +/** + * @param {module:echarts/model/Global} ecModel + * @return {number} records. always >= 1. + */ +function count(ecModel) { + return giveStore(ecModel).length; +} + +/** + * [{key: dataZoomId, value: {dataZoomId, range}}, ...] + * History length of each dataZoom may be different. + * this._history[0] is used to store origin range. + * @type {Array.} + */ +function giveStore(ecModel) { + var store = ecModel[ATTR$1]; + if (!store) { + store = ecModel[ATTR$1] = [{}]; + } + return store; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +ComponentModel.registerSubTypeDefaulter('dataZoom', function () { + // Default 'slider' when no type specified. + return 'slider'; +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var AXIS_DIMS = ['x', 'y', 'z', 'radius', 'angle', 'single']; +// Supported coords. +var COORDS = ['cartesian2d', 'polar', 'singleAxis']; + +/** + * @param {string} coordType + * @return {boolean} + */ +function isCoordSupported(coordType) { + return indexOf(COORDS, coordType) >= 0; +} + +/** + * Create "each" method to iterate names. + * + * @pubilc + * @param {Array.} names + * @param {Array.=} attrs + * @return {Function} + */ +function createNameEach(names, attrs) { + names = names.slice(); + var capitalNames = map(names, capitalFirst); + attrs = (attrs || []).slice(); + var capitalAttrs = map(attrs, capitalFirst); + + return function (callback, context) { + each$1(names, function (name, index) { + var nameObj = {name: name, capital: capitalNames[index]}; + + for (var j = 0; j < attrs.length; j++) { + nameObj[attrs[j]] = name + capitalAttrs[j]; + } + + callback.call(context, nameObj); + }); + }; +} + +/** + * Iterate each dimension name. + * + * @public + * @param {Function} callback The parameter is like: + * { + * name: 'angle', + * capital: 'Angle', + * axis: 'angleAxis', + * axisIndex: 'angleAixs', + * index: 'angleIndex' + * } + * @param {Object} context + */ +var eachAxisDim$1 = createNameEach(AXIS_DIMS, ['axisIndex', 'axis', 'index', 'id']); + +/** + * If tow dataZoomModels has the same axis controlled, we say that they are 'linked'. + * dataZoomModels and 'links' make up one or more graphics. + * This function finds the graphic where the source dataZoomModel is in. + * + * @public + * @param {Function} forEachNode Node iterator. + * @param {Function} forEachEdgeType edgeType iterator + * @param {Function} edgeIdGetter Giving node and edgeType, return an array of edge id. + * @return {Function} Input: sourceNode, Output: Like {nodes: [], dims: {}} + */ +function createLinkedNodesFinder(forEachNode, forEachEdgeType, edgeIdGetter) { + + return function (sourceNode) { + var result = { + nodes: [], + records: {} // key: edgeType.name, value: Object (key: edge id, value: boolean). + }; + + forEachEdgeType(function (edgeType) { + result.records[edgeType.name] = {}; + }); + + if (!sourceNode) { + return result; + } + + absorb(sourceNode, result); + + var existsLink; + do { + existsLink = false; + forEachNode(processSingleNode); + } + while (existsLink); + + function processSingleNode(node) { + if (!isNodeAbsorded(node, result) && isLinked(node, result)) { + absorb(node, result); + existsLink = true; + } + } + + return result; + }; + + function isNodeAbsorded(node, result) { + return indexOf(result.nodes, node) >= 0; + } + + function isLinked(node, result) { + var hasLink = false; + forEachEdgeType(function (edgeType) { + each$1(edgeIdGetter(node, edgeType) || [], function (edgeId) { + result.records[edgeType.name][edgeId] && (hasLink = true); + }); + }); + return hasLink; + } + + function absorb(node, result) { + result.nodes.push(node); + forEachEdgeType(function (edgeType) { + each$1(edgeIdGetter(node, edgeType) || [], function (edgeId) { + result.records[edgeType.name][edgeId] = true; + }); + }); + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var each$20 = each$1; +var asc$1 = asc; + +/** + * Operate single axis. + * One axis can only operated by one axis operator. + * Different dataZoomModels may be defined to operate the same axis. + * (i.e. 'inside' data zoom and 'slider' data zoom components) + * So dataZoomModels share one axisProxy in that case. + * + * @class + */ +var AxisProxy = function (dimName, axisIndex, dataZoomModel, ecModel) { + + /** + * @private + * @type {string} + */ + this._dimName = dimName; + + /** + * @private + */ + this._axisIndex = axisIndex; + + /** + * @private + * @type {Array.} + */ + this._valueWindow; + + /** + * @private + * @type {Array.} + */ + this._percentWindow; + + /** + * @private + * @type {Array.} + */ + this._dataExtent; + + /** + * {minSpan, maxSpan, minValueSpan, maxValueSpan} + * @private + * @type {Object} + */ + this._minMaxSpan; + + /** + * @readOnly + * @type {module: echarts/model/Global} + */ + this.ecModel = ecModel; + + /** + * @private + * @type {module: echarts/component/dataZoom/DataZoomModel} + */ + this._dataZoomModel = dataZoomModel; + + // /** + // * @readOnly + // * @private + // */ + // this.hasSeriesStacked; +}; + +AxisProxy.prototype = { + + constructor: AxisProxy, + + /** + * Whether the axisProxy is hosted by dataZoomModel. + * + * @public + * @param {module: echarts/component/dataZoom/DataZoomModel} dataZoomModel + * @return {boolean} + */ + hostedBy: function (dataZoomModel) { + return this._dataZoomModel === dataZoomModel; + }, + + /** + * @return {Array.} Value can only be NaN or finite value. + */ + getDataValueWindow: function () { + return this._valueWindow.slice(); + }, + + /** + * @return {Array.} + */ + getDataPercentWindow: function () { + return this._percentWindow.slice(); + }, + + /** + * @public + * @param {number} axisIndex + * @return {Array} seriesModels + */ + getTargetSeriesModels: function () { + var seriesModels = []; + var ecModel = this.ecModel; + + ecModel.eachSeries(function (seriesModel) { + if (isCoordSupported(seriesModel.get('coordinateSystem'))) { + var dimName = this._dimName; + var axisModel = ecModel.queryComponents({ + mainType: dimName + 'Axis', + index: seriesModel.get(dimName + 'AxisIndex'), + id: seriesModel.get(dimName + 'AxisId') + })[0]; + if (this._axisIndex === (axisModel && axisModel.componentIndex)) { + seriesModels.push(seriesModel); + } + } + }, this); + + return seriesModels; + }, + + getAxisModel: function () { + return this.ecModel.getComponent(this._dimName + 'Axis', this._axisIndex); + }, + + getOtherAxisModel: function () { + var axisDim = this._dimName; + var ecModel = this.ecModel; + var axisModel = this.getAxisModel(); + var isCartesian = axisDim === 'x' || axisDim === 'y'; + var otherAxisDim; + var coordSysIndexName; + if (isCartesian) { + coordSysIndexName = 'gridIndex'; + otherAxisDim = axisDim === 'x' ? 'y' : 'x'; + } + else { + coordSysIndexName = 'polarIndex'; + otherAxisDim = axisDim === 'angle' ? 'radius' : 'angle'; + } + var foundOtherAxisModel; + ecModel.eachComponent(otherAxisDim + 'Axis', function (otherAxisModel) { + if ((otherAxisModel.get(coordSysIndexName) || 0) + === (axisModel.get(coordSysIndexName) || 0) + ) { + foundOtherAxisModel = otherAxisModel; + } + }); + return foundOtherAxisModel; + }, + + getMinMaxSpan: function () { + return clone(this._minMaxSpan); + }, + + /** + * Only calculate by given range and this._dataExtent, do not change anything. + * + * @param {Object} opt + * @param {number} [opt.start] + * @param {number} [opt.end] + * @param {number} [opt.startValue] + * @param {number} [opt.endValue] + */ + calculateDataWindow: function (opt) { + var dataExtent = this._dataExtent; + var axisModel = this.getAxisModel(); + var scale = axisModel.axis.scale; + var rangePropMode = this._dataZoomModel.getRangePropMode(); + var percentExtent = [0, 100]; + var percentWindow = []; + var valueWindow = []; + var hasPropModeValue; + + each$20(['start', 'end'], function (prop, idx) { + var boundPercent = opt[prop]; + var boundValue = opt[prop + 'Value']; + + // Notice: dataZoom is based either on `percentProp` ('start', 'end') or + // on `valueProp` ('startValue', 'endValue'). (They are based on the data extent + // but not min/max of axis, which will be calculated by data window then). + // The former one is suitable for cases that a dataZoom component controls multiple + // axes with different unit or extent, and the latter one is suitable for accurate + // zoom by pixel (e.g., in dataZoomSelect). + // we use `getRangePropMode()` to mark which prop is used. `rangePropMode` is updated + // only when setOption or dispatchAction, otherwise it remains its original value. + // (Why not only record `percentProp` and always map to `valueProp`? Because + // the map `valueProp` -> `percentProp` -> `valueProp` probably not the original + // `valueProp`. consider two axes constrolled by one dataZoom. They have different + // data extent. All of values that are overflow the `dataExtent` will be calculated + // to percent '100%'). + + if (rangePropMode[idx] === 'percent') { + boundPercent == null && (boundPercent = percentExtent[idx]); + // Use scale.parse to math round for category or time axis. + boundValue = scale.parse(linearMap( + boundPercent, percentExtent, dataExtent + )); + } + else { + hasPropModeValue = true; + boundValue = boundValue == null ? dataExtent[idx] : scale.parse(boundValue); + // Calculating `percent` from `value` may be not accurate, because + // This calculation can not be inversed, because all of values that + // are overflow the `dataExtent` will be calculated to percent '100%' + boundPercent = linearMap( + boundValue, dataExtent, percentExtent + ); + } + + // valueWindow[idx] = round(boundValue); + // percentWindow[idx] = round(boundPercent); + valueWindow[idx] = boundValue; + percentWindow[idx] = boundPercent; + }); + + asc$1(valueWindow); + asc$1(percentWindow); + + // The windows from user calling of `dispatchAction` might be out of the extent, + // or do not obey the `min/maxSpan`, `min/maxValueSpan`. But we dont restrict window + // by `zoomLock` here, because we see `zoomLock` just as a interaction constraint, + // where API is able to initialize/modify the window size even though `zoomLock` + // specified. + var spans = this._minMaxSpan; + hasPropModeValue + ? restrictSet(valueWindow, percentWindow, dataExtent, percentExtent, false) + : restrictSet(percentWindow, valueWindow, percentExtent, dataExtent, true); + + function restrictSet(fromWindow, toWindow, fromExtent, toExtent, toValue) { + var suffix = toValue ? 'Span' : 'ValueSpan'; + sliderMove(0, fromWindow, fromExtent, 'all', spans['min' + suffix], spans['max' + suffix]); + for (var i = 0; i < 2; i++) { + toWindow[i] = linearMap(fromWindow[i], fromExtent, toExtent, true); + toValue && (toWindow[i] = scale.parse(toWindow[i])); + } + } + + return { + valueWindow: valueWindow, + percentWindow: percentWindow + }; + }, + + /** + * Notice: reset should not be called before series.restoreData() called, + * so it is recommanded to be called in "process stage" but not "model init + * stage". + * + * @param {module: echarts/component/dataZoom/DataZoomModel} dataZoomModel + */ + reset: function (dataZoomModel) { + if (dataZoomModel !== this._dataZoomModel) { + return; + } + + var targetSeries = this.getTargetSeriesModels(); + // Culculate data window and data extent, and record them. + this._dataExtent = calculateDataExtent(this, this._dimName, targetSeries); + + // this.hasSeriesStacked = false; + // each(targetSeries, function (series) { + // var data = series.getData(); + // var dataDim = data.mapDimension(this._dimName); + // var stackedDimension = data.getCalculationInfo('stackedDimension'); + // if (stackedDimension && stackedDimension === dataDim) { + // this.hasSeriesStacked = true; + // } + // }, this); + + // `calculateDataWindow` uses min/maxSpan. + setMinMaxSpan(this); + + var dataWindow = this.calculateDataWindow(dataZoomModel.option); + + this._valueWindow = dataWindow.valueWindow; + this._percentWindow = dataWindow.percentWindow; + + // Update axis setting then. + setAxisModel(this); + }, + + /** + * @param {module: echarts/component/dataZoom/DataZoomModel} dataZoomModel + */ + restore: function (dataZoomModel) { + if (dataZoomModel !== this._dataZoomModel) { + return; + } + + this._valueWindow = this._percentWindow = null; + setAxisModel(this, true); + }, + + /** + * @param {module: echarts/component/dataZoom/DataZoomModel} dataZoomModel + */ + filterData: function (dataZoomModel, api) { + if (dataZoomModel !== this._dataZoomModel) { + return; + } + + var axisDim = this._dimName; + var seriesModels = this.getTargetSeriesModels(); + var filterMode = dataZoomModel.get('filterMode'); + var valueWindow = this._valueWindow; + + if (filterMode === 'none') { + return; + } + + // FIXME + // Toolbox may has dataZoom injected. And if there are stacked bar chart + // with NaN data, NaN will be filtered and stack will be wrong. + // So we need to force the mode to be set empty. + // In fect, it is not a big deal that do not support filterMode-'filter' + // when using toolbox#dataZoom, utill tooltip#dataZoom support "single axis + // selection" some day, which might need "adapt to data extent on the + // otherAxis", which is disabled by filterMode-'empty'. + // But currently, stack has been fixed to based on value but not index, + // so this is not an issue any more. + // var otherAxisModel = this.getOtherAxisModel(); + // if (dataZoomModel.get('$fromToolbox') + // && otherAxisModel + // && otherAxisModel.hasSeriesStacked + // ) { + // filterMode = 'empty'; + // } + + // TODO + // filterMode 'weakFilter' and 'empty' is not optimized for huge data yet. + + each$20(seriesModels, function (seriesModel) { + var seriesData = seriesModel.getData(); + var dataDims = seriesData.mapDimension(axisDim, true); + + if (!dataDims.length) { + return; + } + + if (filterMode === 'weakFilter') { + seriesData.filterSelf(function (dataIndex) { + var leftOut; + var rightOut; + var hasValue; + for (var i = 0; i < dataDims.length; i++) { + var value = seriesData.get(dataDims[i], dataIndex); + var thisHasValue = !isNaN(value); + var thisLeftOut = value < valueWindow[0]; + var thisRightOut = value > valueWindow[1]; + if (thisHasValue && !thisLeftOut && !thisRightOut) { + return true; + } + thisHasValue && (hasValue = true); + thisLeftOut && (leftOut = true); + thisRightOut && (rightOut = true); + } + // If both left out and right out, do not filter. + return hasValue && leftOut && rightOut; + }); + } + else { + each$20(dataDims, function (dim) { + if (filterMode === 'empty') { + seriesModel.setData( + seriesData = seriesData.map(dim, function (value) { + return !isInWindow(value) ? NaN : value; + }) + ); + } + else { + var range = {}; + range[dim] = valueWindow; + + // console.time('select'); + seriesData.selectRange(range); + // console.timeEnd('select'); + } + }); + } + + each$20(dataDims, function (dim) { + seriesData.setApproximateExtent(valueWindow, dim); + }); + }); + + function isInWindow(value) { + return value >= valueWindow[0] && value <= valueWindow[1]; + } + } +}; + +function calculateDataExtent(axisProxy, axisDim, seriesModels) { + var dataExtent = [Infinity, -Infinity]; + + each$20(seriesModels, function (seriesModel) { + var seriesData = seriesModel.getData(); + if (seriesData) { + each$20(seriesData.mapDimension(axisDim, true), function (dim) { + var seriesExtent = seriesData.getApproximateExtent(dim); + seriesExtent[0] < dataExtent[0] && (dataExtent[0] = seriesExtent[0]); + seriesExtent[1] > dataExtent[1] && (dataExtent[1] = seriesExtent[1]); + }); + } + }); + + if (dataExtent[1] < dataExtent[0]) { + dataExtent = [NaN, NaN]; + } + + // It is important to get "consistent" extent when more then one axes is + // controlled by a `dataZoom`, otherwise those axes will not be synchronized + // when zooming. But it is difficult to know what is "consistent", considering + // axes have different type or even different meanings (For example, two + // time axes are used to compare data of the same date in different years). + // So basically dataZoom just obtains extent by series.data (in category axis + // extent can be obtained from axis.data). + // Nevertheless, user can set min/max/scale on axes to make extent of axes + // consistent. + fixExtentByAxis(axisProxy, dataExtent); + + return dataExtent; +} + +function fixExtentByAxis(axisProxy, dataExtent) { + var axisModel = axisProxy.getAxisModel(); + var min = axisModel.getMin(true); + + // For category axis, if min/max/scale are not set, extent is determined + // by axis.data by default. + var isCategoryAxis = axisModel.get('type') === 'category'; + var axisDataLen = isCategoryAxis && axisModel.getCategories().length; + + if (min != null && min !== 'dataMin' && typeof min !== 'function') { + dataExtent[0] = min; + } + else if (isCategoryAxis) { + dataExtent[0] = axisDataLen > 0 ? 0 : NaN; + } + + var max = axisModel.getMax(true); + if (max != null && max !== 'dataMax' && typeof max !== 'function') { + dataExtent[1] = max; + } + else if (isCategoryAxis) { + dataExtent[1] = axisDataLen > 0 ? axisDataLen - 1 : NaN; + } + + if (!axisModel.get('scale', true)) { + dataExtent[0] > 0 && (dataExtent[0] = 0); + dataExtent[1] < 0 && (dataExtent[1] = 0); + } + + // For value axis, if min/max/scale are not set, we just use the extent obtained + // by series data, which may be a little different from the extent calculated by + // `axisHelper.getScaleExtent`. But the different just affects the experience a + // little when zooming. So it will not be fixed until some users require it strongly. + + return dataExtent; +} + +function setAxisModel(axisProxy, isRestore) { + var axisModel = axisProxy.getAxisModel(); + + var percentWindow = axisProxy._percentWindow; + var valueWindow = axisProxy._valueWindow; + + if (!percentWindow) { + return; + } + + // [0, 500]: arbitrary value, guess axis extent. + var precision = getPixelPrecision(valueWindow, [0, 500]); + precision = Math.min(precision, 20); + // isRestore or isFull + var useOrigin = isRestore || (percentWindow[0] === 0 && percentWindow[1] === 100); + + axisModel.setRange( + useOrigin ? null : +valueWindow[0].toFixed(precision), + useOrigin ? null : +valueWindow[1].toFixed(precision) + ); +} + +function setMinMaxSpan(axisProxy) { + var minMaxSpan = axisProxy._minMaxSpan = {}; + var dataZoomModel = axisProxy._dataZoomModel; + var dataExtent = axisProxy._dataExtent; + + each$20(['min', 'max'], function (minMax) { + var percentSpan = dataZoomModel.get(minMax + 'Span'); + var valueSpan = dataZoomModel.get(minMax + 'ValueSpan'); + valueSpan != null && (valueSpan = axisProxy.getAxisModel().axis.scale.parse(valueSpan)); + + // minValueSpan and maxValueSpan has higher priority than minSpan and maxSpan + if (valueSpan != null) { + percentSpan = linearMap( + dataExtent[0] + valueSpan, dataExtent, [0, 100], true + ); + } + else if (percentSpan != null) { + valueSpan = linearMap( + percentSpan, [0, 100], dataExtent, true + ) - dataExtent[0]; + } + + minMaxSpan[minMax + 'Span'] = percentSpan; + minMaxSpan[minMax + 'ValueSpan'] = valueSpan; + }); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var each$19 = each$1; +var eachAxisDim = eachAxisDim$1; + +var DataZoomModel = extendComponentModel({ + + type: 'dataZoom', + + dependencies: [ + 'xAxis', 'yAxis', 'zAxis', 'radiusAxis', 'angleAxis', 'singleAxis', 'series' + ], + + /** + * @protected + */ + defaultOption: { + zlevel: 0, + z: 4, // Higher than normal component (z: 2). + orient: null, // Default auto by axisIndex. Possible value: 'horizontal', 'vertical'. + xAxisIndex: null, // Default the first horizontal category axis. + yAxisIndex: null, // Default the first vertical category axis. + + filterMode: 'filter', // Possible values: 'filter' or 'empty' or 'weakFilter'. + // 'filter': data items which are out of window will be removed. This option is + // applicable when filtering outliers. For each data item, it will be + // filtered if one of the relevant dimensions is out of the window. + // 'weakFilter': data items which are out of window will be removed. This option + // is applicable when filtering outliers. For each data item, it will be + // filtered only if all of the relevant dimensions are out of the same + // side of the window. + // 'empty': data items which are out of window will be set to empty. + // This option is applicable when user should not neglect + // that there are some data items out of window. + // 'none': Do not filter. + // Taking line chart as an example, line will be broken in + // the filtered points when filterModel is set to 'empty', but + // be connected when set to 'filter'. + + throttle: null, // Dispatch action by the fixed rate, avoid frequency. + // default 100. Do not throttle when use null/undefined. + // If animation === true and animationDurationUpdate > 0, + // default value is 100, otherwise 20. + start: 0, // Start percent. 0 ~ 100 + end: 100, // End percent. 0 ~ 100 + startValue: null, // Start value. If startValue specified, start is ignored. + endValue: null, // End value. If endValue specified, end is ignored. + minSpan: null, // 0 ~ 100 + maxSpan: null, // 0 ~ 100 + minValueSpan: null, // The range of dataZoom can not be smaller than that. + maxValueSpan: null, // The range of dataZoom can not be larger than that. + rangeMode: null // Array, can be 'value' or 'percent'. + }, + + /** + * @override + */ + init: function (option, parentModel, ecModel) { + + /** + * key like x_0, y_1 + * @private + * @type {Object} + */ + this._dataIntervalByAxis = {}; + + /** + * @private + */ + this._dataInfo = {}; + + /** + * key like x_0, y_1 + * @private + */ + this._axisProxies = {}; + + /** + * @readOnly + */ + this.textStyleModel; + + /** + * @private + */ + this._autoThrottle = true; + + /** + * 'percent' or 'value' + * @private + */ + this._rangePropMode = ['percent', 'percent']; + + var rawOption = retrieveRaw(option); + + this.mergeDefaultAndTheme(option, ecModel); + + this.doInit(rawOption); + }, + + /** + * @override + */ + mergeOption: function (newOption) { + var rawOption = retrieveRaw(newOption); + + //FIX #2591 + merge(this.option, newOption, true); + + this.doInit(rawOption); + }, + + /** + * @protected + */ + doInit: function (rawOption) { + var thisOption = this.option; + + // Disable realtime view update if canvas is not supported. + if (!env$1.canvasSupported) { + thisOption.realtime = false; + } + + this._setDefaultThrottle(rawOption); + + updateRangeUse(this, rawOption); + + each$19([['start', 'startValue'], ['end', 'endValue']], function (names, index) { + // start/end has higher priority over startValue/endValue if they + // both set, but we should make chart.setOption({endValue: 1000}) + // effective, rather than chart.setOption({endValue: 1000, end: null}). + if (this._rangePropMode[index] === 'value') { + thisOption[names[0]] = null; + } + // Otherwise do nothing and use the merge result. + }, this); + + this.textStyleModel = this.getModel('textStyle'); + + this._resetTarget(); + + this._giveAxisProxies(); + }, + + /** + * @private + */ + _giveAxisProxies: function () { + var axisProxies = this._axisProxies; + + this.eachTargetAxis(function (dimNames, axisIndex, dataZoomModel, ecModel) { + var axisModel = this.dependentModels[dimNames.axis][axisIndex]; + + // If exists, share axisProxy with other dataZoomModels. + var axisProxy = axisModel.__dzAxisProxy || ( + // Use the first dataZoomModel as the main model of axisProxy. + axisModel.__dzAxisProxy = new AxisProxy( + dimNames.name, axisIndex, this, ecModel + ) + ); + // FIXME + // dispose __dzAxisProxy + + axisProxies[dimNames.name + '_' + axisIndex] = axisProxy; + }, this); + }, + + /** + * @private + */ + _resetTarget: function () { + var thisOption = this.option; + + var autoMode = this._judgeAutoMode(); + + eachAxisDim(function (dimNames) { + var axisIndexName = dimNames.axisIndex; + thisOption[axisIndexName] = normalizeToArray( + thisOption[axisIndexName] + ); + }, this); + + if (autoMode === 'axisIndex') { + this._autoSetAxisIndex(); + } + else if (autoMode === 'orient') { + this._autoSetOrient(); + } + }, + + /** + * @private + */ + _judgeAutoMode: function () { + // Auto set only works for setOption at the first time. + // The following is user's reponsibility. So using merged + // option is OK. + var thisOption = this.option; + + var hasIndexSpecified = false; + eachAxisDim(function (dimNames) { + // When user set axisIndex as a empty array, we think that user specify axisIndex + // but do not want use auto mode. Because empty array may be encountered when + // some error occured. + if (thisOption[dimNames.axisIndex] != null) { + hasIndexSpecified = true; + } + }, this); + + var orient = thisOption.orient; + + if (orient == null && hasIndexSpecified) { + return 'orient'; + } + else if (!hasIndexSpecified) { + if (orient == null) { + thisOption.orient = 'horizontal'; + } + return 'axisIndex'; + } + }, + + /** + * @private + */ + _autoSetAxisIndex: function () { + var autoAxisIndex = true; + var orient = this.get('orient', true); + var thisOption = this.option; + var dependentModels = this.dependentModels; + + if (autoAxisIndex) { + // Find axis that parallel to dataZoom as default. + var dimName = orient === 'vertical' ? 'y' : 'x'; + + if (dependentModels[dimName + 'Axis'].length) { + thisOption[dimName + 'AxisIndex'] = [0]; + autoAxisIndex = false; + } + else { + each$19(dependentModels.singleAxis, function (singleAxisModel) { + if (autoAxisIndex && singleAxisModel.get('orient', true) === orient) { + thisOption.singleAxisIndex = [singleAxisModel.componentIndex]; + autoAxisIndex = false; + } + }); + } + } + + if (autoAxisIndex) { + // Find the first category axis as default. (consider polar) + eachAxisDim(function (dimNames) { + if (!autoAxisIndex) { + return; + } + var axisIndices = []; + var axisModels = this.dependentModels[dimNames.axis]; + if (axisModels.length && !axisIndices.length) { + for (var i = 0, len = axisModels.length; i < len; i++) { + if (axisModels[i].get('type') === 'category') { + axisIndices.push(i); + } + } + } + thisOption[dimNames.axisIndex] = axisIndices; + if (axisIndices.length) { + autoAxisIndex = false; + } + }, this); + } + + if (autoAxisIndex) { + // FIXME + // 这里是兼容ec2的写法(没指定xAxisIndex和yAxisIndex时把scatter和双数值轴折柱纳入dataZoom控制), + // 但是实际是否需要Grid.js#getScaleByOption来判断(考虑time,log等axis type)? + + // If both dataZoom.xAxisIndex and dataZoom.yAxisIndex is not specified, + // dataZoom component auto adopts series that reference to + // both xAxis and yAxis which type is 'value'. + this.ecModel.eachSeries(function (seriesModel) { + if (this._isSeriesHasAllAxesTypeOf(seriesModel, 'value')) { + eachAxisDim(function (dimNames) { + var axisIndices = thisOption[dimNames.axisIndex]; + + var axisIndex = seriesModel.get(dimNames.axisIndex); + var axisId = seriesModel.get(dimNames.axisId); + + var axisModel = seriesModel.ecModel.queryComponents({ + mainType: dimNames.axis, + index: axisIndex, + id: axisId + })[0]; + + if (__DEV__) { + if (!axisModel) { + throw new Error( + dimNames.axis + ' "' + retrieve( + axisIndex, + axisId, + 0 + ) + '" not found' + ); + } + } + axisIndex = axisModel.componentIndex; + + if (indexOf(axisIndices, axisIndex) < 0) { + axisIndices.push(axisIndex); + } + }); + } + }, this); + } + }, + + /** + * @private + */ + _autoSetOrient: function () { + var dim; + + // Find the first axis + this.eachTargetAxis(function (dimNames) { + !dim && (dim = dimNames.name); + }, this); + + this.option.orient = dim === 'y' ? 'vertical' : 'horizontal'; + }, + + /** + * @private + */ + _isSeriesHasAllAxesTypeOf: function (seriesModel, axisType) { + // FIXME + // 需要series的xAxisIndex和yAxisIndex都首先自动设置上。 + // 例如series.type === scatter时。 + + var is = true; + eachAxisDim(function (dimNames) { + var seriesAxisIndex = seriesModel.get(dimNames.axisIndex); + var axisModel = this.dependentModels[dimNames.axis][seriesAxisIndex]; + + if (!axisModel || axisModel.get('type') !== axisType) { + is = false; + } + }, this); + return is; + }, + + /** + * @private + */ + _setDefaultThrottle: function (rawOption) { + // When first time user set throttle, auto throttle ends. + if (rawOption.hasOwnProperty('throttle')) { + this._autoThrottle = false; + } + if (this._autoThrottle) { + var globalOption = this.ecModel.option; + this.option.throttle + = (globalOption.animation && globalOption.animationDurationUpdate > 0) + ? 100 : 20; + } + }, + + /** + * @public + */ + getFirstTargetAxisModel: function () { + var firstAxisModel; + eachAxisDim(function (dimNames) { + if (firstAxisModel == null) { + var indices = this.get(dimNames.axisIndex); + if (indices.length) { + firstAxisModel = this.dependentModels[dimNames.axis][indices[0]]; + } + } + }, this); + + return firstAxisModel; + }, + + /** + * @public + * @param {Function} callback param: axisModel, dimNames, axisIndex, dataZoomModel, ecModel + */ + eachTargetAxis: function (callback, context) { + var ecModel = this.ecModel; + eachAxisDim(function (dimNames) { + each$19( + this.get(dimNames.axisIndex), + function (axisIndex) { + callback.call(context, dimNames, axisIndex, this, ecModel); + }, + this + ); + }, this); + }, + + /** + * @param {string} dimName + * @param {number} axisIndex + * @return {module:echarts/component/dataZoom/AxisProxy} If not found, return null/undefined. + */ + getAxisProxy: function (dimName, axisIndex) { + return this._axisProxies[dimName + '_' + axisIndex]; + }, + + /** + * @param {string} dimName + * @param {number} axisIndex + * @return {module:echarts/model/Model} If not found, return null/undefined. + */ + getAxisModel: function (dimName, axisIndex) { + var axisProxy = this.getAxisProxy(dimName, axisIndex); + return axisProxy && axisProxy.getAxisModel(); + }, + + /** + * If not specified, set to undefined. + * + * @public + * @param {Object} opt + * @param {number} [opt.start] + * @param {number} [opt.end] + * @param {number} [opt.startValue] + * @param {number} [opt.endValue] + * @param {boolean} [ignoreUpdateRangeUsg=false] + */ + setRawRange: function (opt, ignoreUpdateRangeUsg) { + var option = this.option; + each$19([['start', 'startValue'], ['end', 'endValue']], function (names) { + // If only one of 'start' and 'startValue' is not null/undefined, the other + // should be cleared, which enable clear the option. + // If both of them are not set, keep option with the original value, which + // enable use only set start but not set end when calling `dispatchAction`. + // The same as 'end' and 'endValue'. + if (opt[names[0]] != null || opt[names[1]] != null) { + option[names[0]] = opt[names[0]]; + option[names[1]] = opt[names[1]]; + } + }, this); + + !ignoreUpdateRangeUsg && updateRangeUse(this, opt); + }, + + /** + * @public + * @return {Array.} [startPercent, endPercent] + */ + getPercentRange: function () { + var axisProxy = this.findRepresentativeAxisProxy(); + if (axisProxy) { + return axisProxy.getDataPercentWindow(); + } + }, + + /** + * @public + * For example, chart.getModel().getComponent('dataZoom').getValueRange('y', 0); + * + * @param {string} [axisDimName] + * @param {number} [axisIndex] + * @return {Array.} [startValue, endValue] value can only be '-' or finite number. + */ + getValueRange: function (axisDimName, axisIndex) { + if (axisDimName == null && axisIndex == null) { + var axisProxy = this.findRepresentativeAxisProxy(); + if (axisProxy) { + return axisProxy.getDataValueWindow(); + } + } + else { + return this.getAxisProxy(axisDimName, axisIndex).getDataValueWindow(); + } + }, + + /** + * @public + * @param {module:echarts/model/Model} [axisModel] If axisModel given, find axisProxy + * corresponding to the axisModel + * @return {module:echarts/component/dataZoom/AxisProxy} + */ + findRepresentativeAxisProxy: function (axisModel) { + if (axisModel) { + return axisModel.__dzAxisProxy; + } + + // Find the first hosted axisProxy + var axisProxies = this._axisProxies; + for (var key in axisProxies) { + if (axisProxies.hasOwnProperty(key) && axisProxies[key].hostedBy(this)) { + return axisProxies[key]; + } + } + + // If no hosted axis find not hosted axisProxy. + // Consider this case: dataZoomModel1 and dataZoomModel2 control the same axis, + // and the option.start or option.end settings are different. The percentRange + // should follow axisProxy. + // (We encounter this problem in toolbox data zoom.) + for (var key in axisProxies) { + if (axisProxies.hasOwnProperty(key) && !axisProxies[key].hostedBy(this)) { + return axisProxies[key]; + } + } + }, + + /** + * @return {Array.} + */ + getRangePropMode: function () { + return this._rangePropMode.slice(); + } + +}); + +function retrieveRaw(option) { + var ret = {}; + each$19( + ['start', 'end', 'startValue', 'endValue', 'throttle'], + function (name) { + option.hasOwnProperty(name) && (ret[name] = option[name]); + } + ); + return ret; +} + +function updateRangeUse(dataZoomModel, rawOption) { + var rangePropMode = dataZoomModel._rangePropMode; + var rangeModeInOption = dataZoomModel.get('rangeMode'); + + each$19([['start', 'startValue'], ['end', 'endValue']], function (names, index) { + var percentSpecified = rawOption[names[0]] != null; + var valueSpecified = rawOption[names[1]] != null; + if (percentSpecified && !valueSpecified) { + rangePropMode[index] = 'percent'; + } + else if (!percentSpecified && valueSpecified) { + rangePropMode[index] = 'value'; + } + else if (rangeModeInOption) { + rangePropMode[index] = rangeModeInOption[index]; + } + else if (percentSpecified) { // percentSpecified && valueSpecified + rangePropMode[index] = 'percent'; + } + // else remain its original setting. + }); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var DataZoomView = Component$1.extend({ + + type: 'dataZoom', + + render: function (dataZoomModel, ecModel, api, payload) { + this.dataZoomModel = dataZoomModel; + this.ecModel = ecModel; + this.api = api; + }, + + /** + * Find the first target coordinate system. + * + * @protected + * @return {Object} { + * grid: [ + * {model: coord0, axisModels: [axis1, axis3], coordIndex: 1}, + * {model: coord1, axisModels: [axis0, axis2], coordIndex: 0}, + * ... + * ], // cartesians must not be null/undefined. + * polar: [ + * {model: coord0, axisModels: [axis4], coordIndex: 0}, + * ... + * ], // polars must not be null/undefined. + * singleAxis: [ + * {model: coord0, axisModels: [], coordIndex: 0} + * ] + */ + getTargetCoordInfo: function () { + var dataZoomModel = this.dataZoomModel; + var ecModel = this.ecModel; + var coordSysLists = {}; + + dataZoomModel.eachTargetAxis(function (dimNames, axisIndex) { + var axisModel = ecModel.getComponent(dimNames.axis, axisIndex); + if (axisModel) { + var coordModel = axisModel.getCoordSysModel(); + coordModel && save( + coordModel, + axisModel, + coordSysLists[coordModel.mainType] || (coordSysLists[coordModel.mainType] = []), + coordModel.componentIndex + ); + } + }, this); + + function save(coordModel, axisModel, store, coordIndex) { + var item; + for (var i = 0; i < store.length; i++) { + if (store[i].model === coordModel) { + item = store[i]; + break; + } + } + if (!item) { + store.push(item = { + model: coordModel, axisModels: [], coordIndex: coordIndex + }); + } + item.axisModels.push(axisModel); + } + + return coordSysLists; + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +DataZoomModel.extend({ + type: 'dataZoom.select' +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +DataZoomView.extend({ + type: 'dataZoom.select' +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerProcessor({ + + // `dataZoomProcessor` will only be performed in needed series. Consider if + // there is a line series and a pie series, it is better not to update the + // line series if only pie series is needed to be updated. + getTargetSeries: function (ecModel) { + var seriesModelMap = createHashMap(); + + ecModel.eachComponent('dataZoom', function (dataZoomModel) { + dataZoomModel.eachTargetAxis(function (dimNames, axisIndex, dataZoomModel) { + var axisProxy = dataZoomModel.getAxisProxy(dimNames.name, axisIndex); + each$1(axisProxy.getTargetSeriesModels(), function (seriesModel) { + seriesModelMap.set(seriesModel.uid, seriesModel); + }); + }); + }); + + return seriesModelMap; + }, + + modifyOutputEnd: true, + + // Consider appendData, where filter should be performed. Because data process is + // in block mode currently, it is not need to worry about that the overallProgress + // execute every frame. + overallReset: function (ecModel, api) { + + ecModel.eachComponent('dataZoom', function (dataZoomModel) { + // We calculate window and reset axis here but not in model + // init stage and not after action dispatch handler, because + // reset should be called after seriesData.restoreData. + dataZoomModel.eachTargetAxis(function (dimNames, axisIndex, dataZoomModel) { + dataZoomModel.getAxisProxy(dimNames.name, axisIndex).reset(dataZoomModel, api); + }); + + // Caution: data zoom filtering is order sensitive when using + // percent range and no min/max/scale set on axis. + // For example, we have dataZoom definition: + // [ + // {xAxisIndex: 0, start: 30, end: 70}, + // {yAxisIndex: 0, start: 20, end: 80} + // ] + // In this case, [20, 80] of y-dataZoom should be based on data + // that have filtered by x-dataZoom using range of [30, 70], + // but should not be based on full raw data. Thus sliding + // x-dataZoom will change both ranges of xAxis and yAxis, + // while sliding y-dataZoom will only change the range of yAxis. + // So we should filter x-axis after reset x-axis immediately, + // and then reset y-axis and filter y-axis. + dataZoomModel.eachTargetAxis(function (dimNames, axisIndex, dataZoomModel) { + dataZoomModel.getAxisProxy(dimNames.name, axisIndex).filterData(dataZoomModel, api); + }); + }); + + ecModel.eachComponent('dataZoom', function (dataZoomModel) { + // Fullfill all of the range props so that user + // is able to get them from chart.getOption(). + var axisProxy = dataZoomModel.findRepresentativeAxisProxy(); + var percentRange = axisProxy.getDataPercentWindow(); + var valueRange = axisProxy.getDataValueWindow(); + + dataZoomModel.setRawRange({ + start: percentRange[0], + end: percentRange[1], + startValue: valueRange[0], + endValue: valueRange[1] + }, true); + }); + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerAction('dataZoom', function (payload, ecModel) { + + var linkedNodesFinder = createLinkedNodesFinder( + bind(ecModel.eachComponent, ecModel, 'dataZoom'), + eachAxisDim$1, + function (model, dimNames) { + return model.get(dimNames.axisIndex); + } + ); + + var effectedModels = []; + + ecModel.eachComponent( + {mainType: 'dataZoom', query: payload}, + function (model, index) { + effectedModels.push.apply( + effectedModels, linkedNodesFinder(model).nodes + ); + } + ); + + each$1(effectedModels, function (dataZoomModel, index) { + dataZoomModel.setRawRange({ + start: payload.start, + end: payload.end, + startValue: payload.startValue, + endValue: payload.endValue + }); + }); + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Only work for toolbox dataZoom. User + * MUST NOT import this module directly. + */ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Use dataZoomSelect +var dataZoomLang = lang.toolbox.dataZoom; +var each$16 = each$1; + +// Spectial component id start with \0ec\0, see echarts/model/Global.js~hasInnerId +var DATA_ZOOM_ID_BASE = '\0_ec_\0toolbox-dataZoom_'; + +function DataZoom(model, ecModel, api) { + + /** + * @private + * @type {module:echarts/component/helper/BrushController} + */ + (this._brushController = new BrushController(api.getZr())) + .on('brush', bind(this._onBrush, this)) + .mount(); + + /** + * @private + * @type {boolean} + */ + this._isZoomActive; +} + +DataZoom.defaultOption = { + show: true, + // Icon group + icon: { + zoom: 'M0,13.5h26.9 M13.5,26.9V0 M32.1,13.5H58V58H13.5 V32.1', + back: 'M22,1.4L9.9,13.5l12.3,12.3 M10.3,13.5H54.9v44.6 H10.3v-26' + }, + // `zoom`, `back` + title: clone(dataZoomLang.title) +}; + +var proto$4 = DataZoom.prototype; + +proto$4.render = function (featureModel, ecModel, api, payload) { + this.model = featureModel; + this.ecModel = ecModel; + this.api = api; + + updateZoomBtnStatus(featureModel, ecModel, this, payload, api); + updateBackBtnStatus(featureModel, ecModel); +}; + +proto$4.onclick = function (ecModel, api, type) { + handlers$1[type].call(this); +}; + +proto$4.remove = function (ecModel, api) { + this._brushController.unmount(); +}; + +proto$4.dispose = function (ecModel, api) { + this._brushController.dispose(); +}; + +/** + * @private + */ +var handlers$1 = { + + zoom: function () { + var nextActive = !this._isZoomActive; + + this.api.dispatchAction({ + type: 'takeGlobalCursor', + key: 'dataZoomSelect', + dataZoomSelectActive: nextActive + }); + }, + + back: function () { + this._dispatchZoomAction(pop(this.ecModel)); + } +}; + +/** + * @private + */ +proto$4._onBrush = function (areas, opt) { + if (!opt.isEnd || !areas.length) { + return; + } + var snapshot = {}; + var ecModel = this.ecModel; + + this._brushController.updateCovers([]); // remove cover + + var brushTargetManager = new BrushTargetManager( + retrieveAxisSetting(this.model.option), ecModel, {include: ['grid']} + ); + brushTargetManager.matchOutputRanges(areas, ecModel, function (area, coordRange, coordSys) { + if (coordSys.type !== 'cartesian2d') { + return; + } + + var brushType = area.brushType; + if (brushType === 'rect') { + setBatch('x', coordSys, coordRange[0]); + setBatch('y', coordSys, coordRange[1]); + } + else { + setBatch(({lineX: 'x', lineY: 'y'})[brushType], coordSys, coordRange); + } + }); + + push(ecModel, snapshot); + + this._dispatchZoomAction(snapshot); + + function setBatch(dimName, coordSys, minMax) { + var axis = coordSys.getAxis(dimName); + var axisModel = axis.model; + var dataZoomModel = findDataZoom(dimName, axisModel, ecModel); + + // Restrict range. + var minMaxSpan = dataZoomModel.findRepresentativeAxisProxy(axisModel).getMinMaxSpan(); + if (minMaxSpan.minValueSpan != null || minMaxSpan.maxValueSpan != null) { + minMax = sliderMove( + 0, minMax.slice(), axis.scale.getExtent(), 0, + minMaxSpan.minValueSpan, minMaxSpan.maxValueSpan + ); + } + + dataZoomModel && (snapshot[dataZoomModel.id] = { + dataZoomId: dataZoomModel.id, + startValue: minMax[0], + endValue: minMax[1] + }); + } + + function findDataZoom(dimName, axisModel, ecModel) { + var found; + ecModel.eachComponent({mainType: 'dataZoom', subType: 'select'}, function (dzModel) { + var has = dzModel.getAxisModel(dimName, axisModel.componentIndex); + has && (found = dzModel); + }); + return found; + } +}; + +/** + * @private + */ +proto$4._dispatchZoomAction = function (snapshot) { + var batch = []; + + // Convert from hash map to array. + each$16(snapshot, function (batchItem, dataZoomId) { + batch.push(clone(batchItem)); + }); + + batch.length && this.api.dispatchAction({ + type: 'dataZoom', + from: this.uid, + batch: batch + }); +}; + +function retrieveAxisSetting(option) { + var setting = {}; + // Compatible with previous setting: null => all axis, false => no axis. + each$1(['xAxisIndex', 'yAxisIndex'], function (name) { + setting[name] = option[name]; + setting[name] == null && (setting[name] = 'all'); + (setting[name] === false || setting[name] === 'none') && (setting[name] = []); + }); + return setting; +} + +function updateBackBtnStatus(featureModel, ecModel) { + featureModel.setIconStatus( + 'back', + count(ecModel) > 1 ? 'emphasis' : 'normal' + ); +} + +function updateZoomBtnStatus(featureModel, ecModel, view, payload, api) { + var zoomActive = view._isZoomActive; + + if (payload && payload.type === 'takeGlobalCursor') { + zoomActive = payload.key === 'dataZoomSelect' + ? payload.dataZoomSelectActive : false; + } + + view._isZoomActive = zoomActive; + + featureModel.setIconStatus('zoom', zoomActive ? 'emphasis' : 'normal'); + + var brushTargetManager = new BrushTargetManager( + retrieveAxisSetting(featureModel.option), ecModel, {include: ['grid']} + ); + + view._brushController + .setPanels(brushTargetManager.makePanelOpts(api, function (targetInfo) { + return (targetInfo.xAxisDeclared && !targetInfo.yAxisDeclared) + ? 'lineX' + : (!targetInfo.xAxisDeclared && targetInfo.yAxisDeclared) + ? 'lineY' + : 'rect'; + })) + .enableBrush( + zoomActive + ? { + brushType: 'auto', + brushStyle: { + // FIXME user customized? + lineWidth: 0, + fill: 'rgba(0,0,0,0.2)' + } + } + : false + ); +} + + +register$1('dataZoom', DataZoom); + + +// Create special dataZoom option for select +// FIXME consider the case of merge option, where axes options are not exists. +registerPreprocessor(function (option) { + if (!option) { + return; + } + + var dataZoomOpts = option.dataZoom || (option.dataZoom = []); + if (!isArray(dataZoomOpts)) { + option.dataZoom = dataZoomOpts = [dataZoomOpts]; + } + + var toolboxOpt = option.toolbox; + if (toolboxOpt) { + // Assume there is only one toolbox + if (isArray(toolboxOpt)) { + toolboxOpt = toolboxOpt[0]; + } + + if (toolboxOpt && toolboxOpt.feature) { + var dataZoomOpt = toolboxOpt.feature.dataZoom; + // FIXME: If add dataZoom when setOption in merge mode, + // no axis info to be added. See `test/dataZoom-extreme.html` + addForAxis('xAxis', dataZoomOpt); + addForAxis('yAxis', dataZoomOpt); + } + } + + function addForAxis(axisName, dataZoomOpt) { + if (!dataZoomOpt) { + return; + } + + // Try not to modify model, because it is not merged yet. + var axisIndicesName = axisName + 'Index'; + var givenAxisIndices = dataZoomOpt[axisIndicesName]; + if (givenAxisIndices != null + && givenAxisIndices !== 'all' + && !isArray(givenAxisIndices) + ) { + givenAxisIndices = (givenAxisIndices === false || givenAxisIndices === 'none') ? [] : [givenAxisIndices]; + } + + forEachComponent(axisName, function (axisOpt, axisIndex) { + if (givenAxisIndices != null + && givenAxisIndices !== 'all' + && indexOf(givenAxisIndices, axisIndex) === -1 + ) { + return; + } + var newOpt = { + type: 'select', + $fromToolbox: true, + // Id for merge mapping. + id: DATA_ZOOM_ID_BASE + axisName + axisIndex + }; + // FIXME + // Only support one axis now. + newOpt[axisIndicesName] = axisIndex; + dataZoomOpts.push(newOpt); + }); + } + + function forEachComponent(mainType, cb) { + var opts = option[mainType]; + if (!isArray(opts)) { + opts = opts ? [opts] : []; + } + each$16(opts, cb); + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var restoreLang = lang.toolbox.restore; + +function Restore(model) { + this.model = model; +} + +Restore.defaultOption = { + show: true, + /* eslint-disable */ + icon: 'M3.8,33.4 M47,18.9h9.8V8.7 M56.3,20.1 C52.1,9,40.5,0.6,26.8,2.1C12.6,3.7,1.6,16.2,2.1,30.6 M13,41.1H3.1v10.2 M3.7,39.9c4.2,11.1,15.8,19.5,29.5,18 c14.2-1.6,25.2-14.1,24.7-28.5', + /* eslint-enable */ + title: restoreLang.title +}; + +var proto$6 = Restore.prototype; + +proto$6.onclick = function (ecModel, api, type) { + clear$1(ecModel); + + api.dispatchAction({ + type: 'restore', + from: this.uid + }); +}; + +register$1('restore', Restore); + +registerAction( + {type: 'restore', event: 'restore', update: 'prepareAndUpdate'}, + function (payload, ecModel) { + ecModel.resetOption('recreate'); + } +); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +extendComponentModel({ + + type: 'tooltip', + + dependencies: ['axisPointer'], + + defaultOption: { + zlevel: 0, + + z: 60, + + show: true, + + // tooltip主体内容 + showContent: true, + + // 'trigger' only works on coordinate system. + // 'item' | 'axis' | 'none' + trigger: 'item', + + // 'click' | 'mousemove' | 'none' + triggerOn: 'mousemove|click', + + alwaysShowContent: false, + + displayMode: 'single', // 'single' | 'multipleByCoordSys' + + renderMode: 'auto', // 'auto' | 'html' | 'richText' + // 'auto': use html by default, and use non-html if `document` is not defined + // 'html': use html for tooltip + // 'richText': use canvas, svg, and etc. for tooltip + + // 位置 {Array} | {Function} + // position: null + // Consider triggered from axisPointer handle, verticalAlign should be 'middle' + // align: null, + // verticalAlign: null, + + // 是否约束 content 在 viewRect 中。默认 false 是为了兼容以前版本。 + confine: false, + + // 内容格式器:{string}(Template) ¦ {Function} + // formatter: null + + showDelay: 0, + + // 隐藏延迟,单位ms + hideDelay: 100, + + // 动画变换时间,单位s + transitionDuration: 0.4, + + enterable: false, + + // 提示背景颜色,默认为透明度为0.7的黑色 + backgroundColor: 'rgba(50,50,50,0.7)', + + // 提示边框颜色 + borderColor: '#333', + + // 提示边框圆角,单位px,默认为4 + borderRadius: 4, + + // 提示边框线宽,单位px,默认为0(无边框) + borderWidth: 0, + + // 提示内边距,单位px,默认各方向内边距为5, + // 接受数组分别设定上右下左边距,同css + padding: 5, + + // Extra css text + extraCssText: '', + + // 坐标轴指示器,坐标轴触发有效 + axisPointer: { + // 默认为直线 + // 可选为:'line' | 'shadow' | 'cross' + type: 'line', + + // type 为 line 的时候有效,指定 tooltip line 所在的轴,可选 + // 可选 'x' | 'y' | 'angle' | 'radius' | 'auto' + // 默认 'auto',会选择类型为 category 的轴,对于双数值轴,笛卡尔坐标系会默认选择 x 轴 + // 极坐标系会默认选择 angle 轴 + axis: 'auto', + + animation: 'auto', + animationDurationUpdate: 200, + animationEasingUpdate: 'exponentialOut', + + crossStyle: { + color: '#999', + width: 1, + type: 'dashed', + + // TODO formatter + textStyle: {} + } + + // lineStyle and shadowStyle should not be specified here, + // otherwise it will always override those styles on option.axisPointer. + }, + textStyle: { + color: '#fff', + fontSize: 14 + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var each$22 = each$1; +var toCamelCase$1 = toCamelCase; + +var vendors = ['', '-webkit-', '-moz-', '-o-']; + +var gCssText = 'position:absolute;display:block;border-style:solid;white-space:nowrap;z-index:9999999;'; + +/** + * @param {number} duration + * @return {string} + * @inner + */ +function assembleTransition(duration) { + var transitionCurve = 'cubic-bezier(0.23, 1, 0.32, 1)'; + var transitionText = 'left ' + duration + 's ' + transitionCurve + ',' + + 'top ' + duration + 's ' + transitionCurve; + return map(vendors, function (vendorPrefix) { + return vendorPrefix + 'transition:' + transitionText; + }).join(';'); +} + +/** + * @param {Object} textStyle + * @return {string} + * @inner + */ +function assembleFont(textStyleModel) { + var cssText = []; + + var fontSize = textStyleModel.get('fontSize'); + var color = textStyleModel.getTextColor(); + + color && cssText.push('color:' + color); + + cssText.push('font:' + textStyleModel.getFont()); + + fontSize + && cssText.push('line-height:' + Math.round(fontSize * 3 / 2) + 'px'); + + each$22(['decoration', 'align'], function (name) { + var val = textStyleModel.get(name); + val && cssText.push('text-' + name + ':' + val); + }); + + return cssText.join(';'); +} + +/** + * @param {Object} tooltipModel + * @return {string} + * @inner + */ +function assembleCssText(tooltipModel) { + + var cssText = []; + + var transitionDuration = tooltipModel.get('transitionDuration'); + var backgroundColor = tooltipModel.get('backgroundColor'); + var textStyleModel = tooltipModel.getModel('textStyle'); + var padding = tooltipModel.get('padding'); + + // Animation transition. Do not animate when transitionDuration is 0. + transitionDuration + && cssText.push(assembleTransition(transitionDuration)); + + if (backgroundColor) { + if (env$1.canvasSupported) { + cssText.push('background-Color:' + backgroundColor); + } + else { + // for ie + cssText.push( + 'background-Color:#' + toHex(backgroundColor) + ); + cssText.push('filter:alpha(opacity=70)'); + } + } + + // Border style + each$22(['width', 'color', 'radius'], function (name) { + var borderName = 'border-' + name; + var camelCase = toCamelCase$1(borderName); + var val = tooltipModel.get(camelCase); + val != null + && cssText.push(borderName + ':' + val + (name === 'color' ? '' : 'px')); + }); + + // Text style + cssText.push(assembleFont(textStyleModel)); + + // Padding + if (padding != null) { + cssText.push('padding:' + normalizeCssArray$1(padding).join('px ') + 'px'); + } + + return cssText.join(';') + ';'; +} + +/** + * @alias module:echarts/component/tooltip/TooltipContent + * @constructor + */ +function TooltipContent(container, api) { + if (env$1.wxa) { + return null; + } + + var el = document.createElement('div'); + var zr = this._zr = api.getZr(); + + this.el = el; + + this._x = api.getWidth() / 2; + this._y = api.getHeight() / 2; + + container.appendChild(el); + + this._container = container; + + this._show = false; + + /** + * @private + */ + this._hideTimeout; + + // FIXME + // Is it needed to trigger zr event manually if + // the browser do not support `pointer-events: none`. + + var self = this; + el.onmouseenter = function () { + // clear the timeout in hideLater and keep showing tooltip + if (self._enterable) { + clearTimeout(self._hideTimeout); + self._show = true; + } + self._inContent = true; + }; + el.onmousemove = function (e) { + e = e || window.event; + if (!self._enterable) { + // `pointer-events: none` is set to tooltip content div + // if `enterable` is set as `false`, and `el.onmousemove` + // can not be triggered. But in browser that do not + // support `pointer-events`, we need to do this: + // Try trigger zrender event to avoid mouse + // in and out shape too frequently + var handler = zr.handler; + normalizeEvent(container, e, true); + handler.dispatch('mousemove', e); + } + }; + el.onmouseleave = function () { + if (self._enterable) { + if (self._show) { + self.hideLater(self._hideDelay); + } + } + self._inContent = false; + }; +} + +TooltipContent.prototype = { + + constructor: TooltipContent, + + /** + * @private + * @type {boolean} + */ + _enterable: true, + + /** + * Update when tooltip is rendered + */ + update: function () { + // FIXME + // Move this logic to ec main? + var container = this._container; + var stl = container.currentStyle + || document.defaultView.getComputedStyle(container); + var domStyle = container.style; + if (domStyle.position !== 'absolute' && stl.position !== 'absolute') { + domStyle.position = 'relative'; + } + // Hide the tooltip + // PENDING + // this.hide(); + }, + + show: function (tooltipModel) { + clearTimeout(this._hideTimeout); + var el = this.el; + + el.style.cssText = gCssText + assembleCssText(tooltipModel) + // Because of the reason described in: + // http://stackoverflow.com/questions/21125587/css3-transition-not-working-in-chrome-anymore + // we should set initial value to `left` and `top`. + + ';left:' + this._x + 'px;top:' + this._y + 'px;' + + (tooltipModel.get('extraCssText') || ''); + + el.style.display = el.innerHTML ? 'block' : 'none'; + + // If mouse occsionally move over the tooltip, a mouseout event will be + // triggered by canvas, and cuase some unexpectable result like dragging + // stop, "unfocusAdjacency". Here `pointer-events: none` is used to solve + // it. Although it is not suppored by IE8~IE10, fortunately it is a rare + // scenario. + el.style.pointerEvents = this._enterable ? 'auto' : 'none'; + + this._show = true; + }, + + setContent: function (content) { + this.el.innerHTML = content == null ? '' : content; + }, + + setEnterable: function (enterable) { + this._enterable = enterable; + }, + + getSize: function () { + var el = this.el; + return [el.clientWidth, el.clientHeight]; + }, + + moveTo: function (x, y) { + // xy should be based on canvas root. But tooltipContent is + // the sibling of canvas root. So padding of ec container + // should be considered here. + var zr = this._zr; + var viewportRootOffset; + if (zr && zr.painter && (viewportRootOffset = zr.painter.getViewportRootOffset())) { + x += viewportRootOffset.offsetLeft; + y += viewportRootOffset.offsetTop; + } + + var style = this.el.style; + style.left = x + 'px'; + style.top = y + 'px'; + + this._x = x; + this._y = y; + }, + + hide: function () { + this.el.style.display = 'none'; + this._show = false; + }, + + hideLater: function (time) { + if (this._show && !(this._inContent && this._enterable)) { + if (time) { + this._hideDelay = time; + // Set show false to avoid invoke hideLater mutiple times + this._show = false; + this._hideTimeout = setTimeout(bind(this.hide, this), time); + } + else { + this.hide(); + } + } + }, + + isShow: function () { + return this._show; + }, + + getOuterSize: function () { + var width = this.el.clientWidth; + var height = this.el.clientHeight; + + // Consider browser compatibility. + // IE8 does not support getComputedStyle. + if (document.defaultView && document.defaultView.getComputedStyle) { + var stl = document.defaultView.getComputedStyle(this.el); + if (stl) { + width += parseInt(stl.borderLeftWidth, 10) + parseInt(stl.borderRightWidth, 10); + height += parseInt(stl.borderTopWidth, 10) + parseInt(stl.borderBottomWidth, 10); + } + } + + return {width: width, height: height}; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// import Group from 'zrender/src/container/Group'; +/** + * @alias module:echarts/component/tooltip/TooltipRichContent + * @constructor + */ +function TooltipRichContent(api) { + + this._zr = api.getZr(); + + this._show = false; + + /** + * @private + */ + this._hideTimeout; +} + +TooltipRichContent.prototype = { + + constructor: TooltipRichContent, + + /** + * @private + * @type {boolean} + */ + _enterable: true, + + /** + * Update when tooltip is rendered + */ + update: function () { + // noop + }, + + show: function (tooltipModel) { + if (this._hideTimeout) { + clearTimeout(this._hideTimeout); + } + + this.el.attr('show', true); + this._show = true; + }, + + /** + * Set tooltip content + * + * @param {string} content rich text string of content + * @param {Object} markerRich rich text style + * @param {Object} tooltipModel tooltip model + */ + setContent: function (content, markerRich, tooltipModel) { + if (this.el) { + this._zr.remove(this.el); + } + + var markers = {}; + var text = content; + var prefix = '{marker'; + var suffix = '|}'; + var startId = text.indexOf(prefix); + while (startId >= 0) { + var endId = text.indexOf(suffix); + var name = text.substr(startId + prefix.length, endId - startId - prefix.length); + if (name.indexOf('sub') > -1) { + markers['marker' + name] = { + textWidth: 4, + textHeight: 4, + textBorderRadius: 2, + textBackgroundColor: markerRich[name], + // TODO: textOffset is not implemented for rich text + textOffset: [3, 0] + }; + } + else { + markers['marker' + name] = { + textWidth: 10, + textHeight: 10, + textBorderRadius: 5, + textBackgroundColor: markerRich[name] + }; + } + + text = text.substr(endId + 1); + startId = text.indexOf('{marker'); + } + + this.el = new Text({ + style: { + rich: markers, + text: content, + textLineHeight: 20, + textBackgroundColor: tooltipModel.get('backgroundColor'), + textBorderRadius: tooltipModel.get('borderRadius'), + textFill: tooltipModel.get('textStyle.color'), + textPadding: tooltipModel.get('padding') + }, + z: tooltipModel.get('z') + }); + this._zr.add(this.el); + + var self = this; + this.el.on('mouseover', function () { + // clear the timeout in hideLater and keep showing tooltip + if (self._enterable) { + clearTimeout(self._hideTimeout); + self._show = true; + } + self._inContent = true; + }); + this.el.on('mouseout', function () { + if (self._enterable) { + if (self._show) { + self.hideLater(self._hideDelay); + } + } + self._inContent = false; + }); + }, + + setEnterable: function (enterable) { + this._enterable = enterable; + }, + + getSize: function () { + var bounding = this.el.getBoundingRect(); + return [bounding.width, bounding.height]; + }, + + moveTo: function (x, y) { + if (this.el) { + this.el.attr('position', [x, y]); + } + }, + + hide: function () { + if (this.el) { + this.el.hide(); + } + this._show = false; + }, + + hideLater: function (time) { + if (this._show && !(this._inContent && this._enterable)) { + if (time) { + this._hideDelay = time; + // Set show false to avoid invoke hideLater mutiple times + this._show = false; + this._hideTimeout = setTimeout(bind(this.hide, this), time); + } + else { + this.hide(); + } + } + }, + + isShow: function () { + return this._show; + }, + + getOuterSize: function () { + var size = this.getSize(); + return { + width: size[0], + height: size[1] + }; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var bind$3 = bind; +var each$21 = each$1; +var parsePercent$2 = parsePercent$1; + +var proxyRect = new Rect({ + shape: {x: -1, y: -1, width: 2, height: 2} +}); + +extendComponentView({ + + type: 'tooltip', + + init: function (ecModel, api) { + if (env$1.node) { + return; + } + + var tooltipModel = ecModel.getComponent('tooltip'); + var renderMode = tooltipModel.get('renderMode'); + this._renderMode = getTooltipRenderMode(renderMode); + + var tooltipContent; + if (this._renderMode === 'html') { + tooltipContent = new TooltipContent(api.getDom(), api); + this._newLine = '
    '; + } + else { + tooltipContent = new TooltipRichContent(api); + this._newLine = '\n'; + } + + this._tooltipContent = tooltipContent; + }, + + render: function (tooltipModel, ecModel, api) { + if (env$1.node) { + return; + } + + // Reset + this.group.removeAll(); + + /** + * @private + * @type {module:echarts/component/tooltip/TooltipModel} + */ + this._tooltipModel = tooltipModel; + + /** + * @private + * @type {module:echarts/model/Global} + */ + this._ecModel = ecModel; + + /** + * @private + * @type {module:echarts/ExtensionAPI} + */ + this._api = api; + + /** + * Should be cleaned when render. + * @private + * @type {Array.>} + */ + this._lastDataByCoordSys = null; + + /** + * @private + * @type {boolean} + */ + this._alwaysShowContent = tooltipModel.get('alwaysShowContent'); + + var tooltipContent = this._tooltipContent; + tooltipContent.update(); + tooltipContent.setEnterable(tooltipModel.get('enterable')); + + this._initGlobalListener(); + + this._keepShow(); + }, + + _initGlobalListener: function () { + var tooltipModel = this._tooltipModel; + var triggerOn = tooltipModel.get('triggerOn'); + + register( + 'itemTooltip', + this._api, + bind$3(function (currTrigger, e, dispatchAction) { + // If 'none', it is not controlled by mouse totally. + if (triggerOn !== 'none') { + if (triggerOn.indexOf(currTrigger) >= 0) { + this._tryShow(e, dispatchAction); + } + else if (currTrigger === 'leave') { + this._hide(dispatchAction); + } + } + }, this) + ); + }, + + _keepShow: function () { + var tooltipModel = this._tooltipModel; + var ecModel = this._ecModel; + var api = this._api; + + // Try to keep the tooltip show when refreshing + if (this._lastX != null + && this._lastY != null + // When user is willing to control tooltip totally using API, + // self.manuallyShowTip({x, y}) might cause tooltip hide, + // which is not expected. + && tooltipModel.get('triggerOn') !== 'none' + ) { + var self = this; + clearTimeout(this._refreshUpdateTimeout); + this._refreshUpdateTimeout = setTimeout(function () { + // Show tip next tick after other charts are rendered + // In case highlight action has wrong result + // FIXME + !api.isDisposed() && self.manuallyShowTip(tooltipModel, ecModel, api, { + x: self._lastX, + y: self._lastY + }); + }); + } + }, + + /** + * Show tip manually by + * dispatchAction({ + * type: 'showTip', + * x: 10, + * y: 10 + * }); + * Or + * dispatchAction({ + * type: 'showTip', + * seriesIndex: 0, + * dataIndex or dataIndexInside or name + * }); + * + * TODO Batch + */ + manuallyShowTip: function (tooltipModel, ecModel, api, payload) { + if (payload.from === this.uid || env$1.node) { + return; + } + + var dispatchAction = makeDispatchAction$1(payload, api); + + // Reset ticket + this._ticket = ''; + + // When triggered from axisPointer. + var dataByCoordSys = payload.dataByCoordSys; + + if (payload.tooltip && payload.x != null && payload.y != null) { + var el = proxyRect; + el.position = [payload.x, payload.y]; + el.update(); + el.tooltip = payload.tooltip; + // Manually show tooltip while view is not using zrender elements. + this._tryShow({ + offsetX: payload.x, + offsetY: payload.y, + target: el + }, dispatchAction); + } + else if (dataByCoordSys) { + this._tryShow({ + offsetX: payload.x, + offsetY: payload.y, + position: payload.position, + event: {}, + dataByCoordSys: payload.dataByCoordSys, + tooltipOption: payload.tooltipOption + }, dispatchAction); + } + else if (payload.seriesIndex != null) { + + if (this._manuallyAxisShowTip(tooltipModel, ecModel, api, payload)) { + return; + } + + var pointInfo = findPointFromSeries(payload, ecModel); + var cx = pointInfo.point[0]; + var cy = pointInfo.point[1]; + if (cx != null && cy != null) { + this._tryShow({ + offsetX: cx, + offsetY: cy, + position: payload.position, + target: pointInfo.el, + event: {} + }, dispatchAction); + } + } + else if (payload.x != null && payload.y != null) { + // FIXME + // should wrap dispatchAction like `axisPointer/globalListener` ? + api.dispatchAction({ + type: 'updateAxisPointer', + x: payload.x, + y: payload.y + }); + + this._tryShow({ + offsetX: payload.x, + offsetY: payload.y, + position: payload.position, + target: api.getZr().findHover(payload.x, payload.y).target, + event: {} + }, dispatchAction); + } + }, + + manuallyHideTip: function (tooltipModel, ecModel, api, payload) { + var tooltipContent = this._tooltipContent; + + if (!this._alwaysShowContent && this._tooltipModel) { + tooltipContent.hideLater(this._tooltipModel.get('hideDelay')); + } + + this._lastX = this._lastY = null; + + if (payload.from !== this.uid) { + this._hide(makeDispatchAction$1(payload, api)); + } + }, + + // Be compatible with previous design, that is, when tooltip.type is 'axis' and + // dispatchAction 'showTip' with seriesIndex and dataIndex will trigger axis pointer + // and tooltip. + _manuallyAxisShowTip: function (tooltipModel, ecModel, api, payload) { + var seriesIndex = payload.seriesIndex; + var dataIndex = payload.dataIndex; + var coordSysAxesInfo = ecModel.getComponent('axisPointer').coordSysAxesInfo; + + if (seriesIndex == null || dataIndex == null || coordSysAxesInfo == null) { + return; + } + + var seriesModel = ecModel.getSeriesByIndex(seriesIndex); + if (!seriesModel) { + return; + } + + var data = seriesModel.getData(); + var tooltipModel = buildTooltipModel([ + data.getItemModel(dataIndex), + seriesModel, + (seriesModel.coordinateSystem || {}).model, + tooltipModel + ]); + + if (tooltipModel.get('trigger') !== 'axis') { + return; + } + + api.dispatchAction({ + type: 'updateAxisPointer', + seriesIndex: seriesIndex, + dataIndex: dataIndex, + position: payload.position + }); + + return true; + }, + + _tryShow: function (e, dispatchAction) { + var el = e.target; + var tooltipModel = this._tooltipModel; + + if (!tooltipModel) { + return; + } + + // Save mouse x, mouse y. So we can try to keep showing the tip if chart is refreshed + this._lastX = e.offsetX; + this._lastY = e.offsetY; + + var dataByCoordSys = e.dataByCoordSys; + if (dataByCoordSys && dataByCoordSys.length) { + this._showAxisTooltip(dataByCoordSys, e); + } + // Always show item tooltip if mouse is on the element with dataIndex + else if (el && el.dataIndex != null) { + this._lastDataByCoordSys = null; + this._showSeriesItemTooltip(e, el, dispatchAction); + } + // Tooltip provided directly. Like legend. + else if (el && el.tooltip) { + this._lastDataByCoordSys = null; + this._showComponentItemTooltip(e, el, dispatchAction); + } + else { + this._lastDataByCoordSys = null; + this._hide(dispatchAction); + } + }, + + _showOrMove: function (tooltipModel, cb) { + // showDelay is used in this case: tooltip.enterable is set + // as true. User intent to move mouse into tooltip and click + // something. `showDelay` makes it easyer to enter the content + // but tooltip do not move immediately. + var delay = tooltipModel.get('showDelay'); + cb = bind(cb, this); + clearTimeout(this._showTimout); + delay > 0 + ? (this._showTimout = setTimeout(cb, delay)) + : cb(); + }, + + _showAxisTooltip: function (dataByCoordSys, e) { + var ecModel = this._ecModel; + var globalTooltipModel = this._tooltipModel; + var point = [e.offsetX, e.offsetY]; + var singleDefaultHTML = []; + var singleParamsList = []; + var singleTooltipModel = buildTooltipModel([ + e.tooltipOption, + globalTooltipModel + ]); + + var renderMode = this._renderMode; + var newLine = this._newLine; + + var markers = {}; + + each$21(dataByCoordSys, function (itemCoordSys) { + // var coordParamList = []; + // var coordDefaultHTML = []; + // var coordTooltipModel = buildTooltipModel([ + // e.tooltipOption, + // itemCoordSys.tooltipOption, + // ecModel.getComponent(itemCoordSys.coordSysMainType, itemCoordSys.coordSysIndex), + // globalTooltipModel + // ]); + // var displayMode = coordTooltipModel.get('displayMode'); + // var paramsList = displayMode === 'single' ? singleParamsList : []; + + each$21(itemCoordSys.dataByAxis, function (item) { + var axisModel = ecModel.getComponent(item.axisDim + 'Axis', item.axisIndex); + var axisValue = item.value; + var seriesDefaultHTML = []; + + if (!axisModel || axisValue == null) { + return; + } + + var valueLabel = getValueLabel( + axisValue, axisModel.axis, ecModel, + item.seriesDataIndices, + item.valueLabelOpt + ); + + each$1(item.seriesDataIndices, function (idxItem) { + var series = ecModel.getSeriesByIndex(idxItem.seriesIndex); + var dataIndex = idxItem.dataIndexInside; + var dataParams = series && series.getDataParams(dataIndex); + dataParams.axisDim = item.axisDim; + dataParams.axisIndex = item.axisIndex; + dataParams.axisType = item.axisType; + dataParams.axisId = item.axisId; + dataParams.axisValue = getAxisRawValue(axisModel.axis, axisValue); + dataParams.axisValueLabel = valueLabel; + + if (dataParams) { + singleParamsList.push(dataParams); + var seriesTooltip = series.formatTooltip(dataIndex, true, null, renderMode); + + var html; + if (isObject$1(seriesTooltip)) { + html = seriesTooltip.html; + var newMarkers = seriesTooltip.markers; + merge(markers, newMarkers); + } + else { + html = seriesTooltip; + } + seriesDefaultHTML.push(html); + } + }); + + // Default tooltip content + // FIXME + // (1) shold be the first data which has name? + // (2) themeRiver, firstDataIndex is array, and first line is unnecessary. + var firstLine = valueLabel; + if (renderMode !== 'html') { + singleDefaultHTML.push(seriesDefaultHTML.join(newLine)); + } + else { + singleDefaultHTML.push( + (firstLine ? encodeHTML(firstLine) + newLine : '') + + seriesDefaultHTML.join(newLine) + ); + } + }); + }, this); + + // In most case, the second axis is shown upper than the first one. + singleDefaultHTML.reverse(); + singleDefaultHTML = singleDefaultHTML.join(this._newLine + this._newLine); + + var positionExpr = e.position; + this._showOrMove(singleTooltipModel, function () { + if (this._updateContentNotChangedOnAxis(dataByCoordSys)) { + this._updatePosition( + singleTooltipModel, + positionExpr, + point[0], point[1], + this._tooltipContent, + singleParamsList + ); + } + else { + this._showTooltipContent( + singleTooltipModel, singleDefaultHTML, singleParamsList, Math.random(), + point[0], point[1], positionExpr, undefined, markers + ); + } + }); + + // Do not trigger events here, because this branch only be entered + // from dispatchAction. + }, + + _showSeriesItemTooltip: function (e, el, dispatchAction) { + var ecModel = this._ecModel; + // Use dataModel in element if possible + // Used when mouseover on a element like markPoint or edge + // In which case, the data is not main data in series. + var seriesIndex = el.seriesIndex; + var seriesModel = ecModel.getSeriesByIndex(seriesIndex); + + // For example, graph link. + var dataModel = el.dataModel || seriesModel; + var dataIndex = el.dataIndex; + var dataType = el.dataType; + var data = dataModel.getData(); + + var tooltipModel = buildTooltipModel([ + data.getItemModel(dataIndex), + dataModel, + seriesModel && (seriesModel.coordinateSystem || {}).model, + this._tooltipModel + ]); + + var tooltipTrigger = tooltipModel.get('trigger'); + if (tooltipTrigger != null && tooltipTrigger !== 'item') { + return; + } + + var params = dataModel.getDataParams(dataIndex, dataType); + var seriesTooltip = dataModel.formatTooltip(dataIndex, false, dataType, this._renderMode); + var defaultHtml; + var markers; + if (isObject$1(seriesTooltip)) { + defaultHtml = seriesTooltip.html; + markers = seriesTooltip.markers; + } + else { + defaultHtml = seriesTooltip; + markers = null; + } + + var asyncTicket = 'item_' + dataModel.name + '_' + dataIndex; + + this._showOrMove(tooltipModel, function () { + this._showTooltipContent( + tooltipModel, defaultHtml, params, asyncTicket, + e.offsetX, e.offsetY, e.position, e.target, markers + ); + }); + + // FIXME + // duplicated showtip if manuallyShowTip is called from dispatchAction. + dispatchAction({ + type: 'showTip', + dataIndexInside: dataIndex, + dataIndex: data.getRawIndex(dataIndex), + seriesIndex: seriesIndex, + from: this.uid + }); + }, + + _showComponentItemTooltip: function (e, el, dispatchAction) { + var tooltipOpt = el.tooltip; + if (typeof tooltipOpt === 'string') { + var content = tooltipOpt; + tooltipOpt = { + content: content, + // Fixed formatter + formatter: content + }; + } + var subTooltipModel = new Model(tooltipOpt, this._tooltipModel, this._ecModel); + var defaultHtml = subTooltipModel.get('content'); + var asyncTicket = Math.random(); + + // Do not check whether `trigger` is 'none' here, because `trigger` + // only works on cooridinate system. In fact, we have not found case + // that requires setting `trigger` nothing on component yet. + + this._showOrMove(subTooltipModel, function () { + this._showTooltipContent( + subTooltipModel, defaultHtml, subTooltipModel.get('formatterParams') || {}, + asyncTicket, e.offsetX, e.offsetY, e.position, el + ); + }); + + // If not dispatch showTip, tip may be hide triggered by axis. + dispatchAction({ + type: 'showTip', + from: this.uid + }); + }, + + _showTooltipContent: function ( + tooltipModel, defaultHtml, params, asyncTicket, x, y, positionExpr, el, markers + ) { + // Reset ticket + this._ticket = ''; + + if (!tooltipModel.get('showContent') || !tooltipModel.get('show')) { + return; + } + + var tooltipContent = this._tooltipContent; + + var formatter = tooltipModel.get('formatter'); + positionExpr = positionExpr || tooltipModel.get('position'); + var html = defaultHtml; + + if (formatter && typeof formatter === 'string') { + html = formatTpl(formatter, params, true); + } + else if (typeof formatter === 'function') { + var callback = bind$3(function (cbTicket, html) { + if (cbTicket === this._ticket) { + tooltipContent.setContent(html, markers, tooltipModel); + this._updatePosition( + tooltipModel, positionExpr, x, y, tooltipContent, params, el + ); + } + }, this); + this._ticket = asyncTicket; + html = formatter(params, asyncTicket, callback); + } + + tooltipContent.setContent(html, markers, tooltipModel); + tooltipContent.show(tooltipModel); + + this._updatePosition( + tooltipModel, positionExpr, x, y, tooltipContent, params, el + ); + }, + + /** + * @param {string|Function|Array.|Object} positionExpr + * @param {number} x Mouse x + * @param {number} y Mouse y + * @param {boolean} confine Whether confine tooltip content in view rect. + * @param {Object|} params + * @param {module:zrender/Element} el target element + * @param {module:echarts/ExtensionAPI} api + * @return {Array.} + */ + _updatePosition: function (tooltipModel, positionExpr, x, y, content, params, el) { + var viewWidth = this._api.getWidth(); + var viewHeight = this._api.getHeight(); + positionExpr = positionExpr || tooltipModel.get('position'); + + var contentSize = content.getSize(); + var align = tooltipModel.get('align'); + var vAlign = tooltipModel.get('verticalAlign'); + var rect = el && el.getBoundingRect().clone(); + el && rect.applyTransform(el.transform); + + if (typeof positionExpr === 'function') { + // Callback of position can be an array or a string specify the position + positionExpr = positionExpr([x, y], params, content.el, rect, { + viewSize: [viewWidth, viewHeight], + contentSize: contentSize.slice() + }); + } + + if (isArray(positionExpr)) { + x = parsePercent$2(positionExpr[0], viewWidth); + y = parsePercent$2(positionExpr[1], viewHeight); + } + else if (isObject$1(positionExpr)) { + positionExpr.width = contentSize[0]; + positionExpr.height = contentSize[1]; + var layoutRect = getLayoutRect( + positionExpr, {width: viewWidth, height: viewHeight} + ); + x = layoutRect.x; + y = layoutRect.y; + align = null; + // When positionExpr is left/top/right/bottom, + // align and verticalAlign will not work. + vAlign = null; + } + // Specify tooltip position by string 'top' 'bottom' 'left' 'right' around graphic element + else if (typeof positionExpr === 'string' && el) { + var pos = calcTooltipPosition( + positionExpr, rect, contentSize + ); + x = pos[0]; + y = pos[1]; + } + else { + var pos = refixTooltipPosition( + x, y, content, viewWidth, viewHeight, align ? null : 20, vAlign ? null : 20 + ); + x = pos[0]; + y = pos[1]; + } + + align && (x -= isCenterAlign(align) ? contentSize[0] / 2 : align === 'right' ? contentSize[0] : 0); + vAlign && (y -= isCenterAlign(vAlign) ? contentSize[1] / 2 : vAlign === 'bottom' ? contentSize[1] : 0); + + if (tooltipModel.get('confine')) { + var pos = confineTooltipPosition( + x, y, content, viewWidth, viewHeight + ); + x = pos[0]; + y = pos[1]; + } + + content.moveTo(x, y); + }, + + // FIXME + // Should we remove this but leave this to user? + _updateContentNotChangedOnAxis: function (dataByCoordSys) { + var lastCoordSys = this._lastDataByCoordSys; + var contentNotChanged = !!lastCoordSys + && lastCoordSys.length === dataByCoordSys.length; + + contentNotChanged && each$21(lastCoordSys, function (lastItemCoordSys, indexCoordSys) { + var lastDataByAxis = lastItemCoordSys.dataByAxis || {}; + var thisItemCoordSys = dataByCoordSys[indexCoordSys] || {}; + var thisDataByAxis = thisItemCoordSys.dataByAxis || []; + contentNotChanged &= lastDataByAxis.length === thisDataByAxis.length; + + contentNotChanged && each$21(lastDataByAxis, function (lastItem, indexAxis) { + var thisItem = thisDataByAxis[indexAxis] || {}; + var lastIndices = lastItem.seriesDataIndices || []; + var newIndices = thisItem.seriesDataIndices || []; + + contentNotChanged + &= lastItem.value === thisItem.value + && lastItem.axisType === thisItem.axisType + && lastItem.axisId === thisItem.axisId + && lastIndices.length === newIndices.length; + + contentNotChanged && each$21(lastIndices, function (lastIdxItem, j) { + var newIdxItem = newIndices[j]; + contentNotChanged + &= lastIdxItem.seriesIndex === newIdxItem.seriesIndex + && lastIdxItem.dataIndex === newIdxItem.dataIndex; + }); + }); + }); + + this._lastDataByCoordSys = dataByCoordSys; + + return !!contentNotChanged; + }, + + _hide: function (dispatchAction) { + // Do not directly hideLater here, because this behavior may be prevented + // in dispatchAction when showTip is dispatched. + + // FIXME + // duplicated hideTip if manuallyHideTip is called from dispatchAction. + this._lastDataByCoordSys = null; + dispatchAction({ + type: 'hideTip', + from: this.uid + }); + }, + + dispose: function (ecModel, api) { + if (env$1.node) { + return; + } + this._tooltipContent.hide(); + unregister('itemTooltip', api); + } +}); + + +/** + * @param {Array.} modelCascade + * From top to bottom. (the last one should be globalTooltipModel); + */ +function buildTooltipModel(modelCascade) { + var resultModel = modelCascade.pop(); + while (modelCascade.length) { + var tooltipOpt = modelCascade.pop(); + if (tooltipOpt) { + if (Model.isInstance(tooltipOpt)) { + tooltipOpt = tooltipOpt.get('tooltip', true); + } + // In each data item tooltip can be simply write: + // { + // value: 10, + // tooltip: 'Something you need to know' + // } + if (typeof tooltipOpt === 'string') { + tooltipOpt = {formatter: tooltipOpt}; + } + resultModel = new Model(tooltipOpt, resultModel, resultModel.ecModel); + } + } + return resultModel; +} + +function makeDispatchAction$1(payload, api) { + return payload.dispatchAction || bind(api.dispatchAction, api); +} + +function refixTooltipPosition(x, y, content, viewWidth, viewHeight, gapH, gapV) { + var size = content.getOuterSize(); + var width = size.width; + var height = size.height; + + if (gapH != null) { + if (x + width + gapH > viewWidth) { + x -= width + gapH; + } + else { + x += gapH; + } + } + if (gapV != null) { + if (y + height + gapV > viewHeight) { + y -= height + gapV; + } + else { + y += gapV; + } + } + return [x, y]; +} + +function confineTooltipPosition(x, y, content, viewWidth, viewHeight) { + var size = content.getOuterSize(); + var width = size.width; + var height = size.height; + + x = Math.min(x + width, viewWidth) - width; + y = Math.min(y + height, viewHeight) - height; + x = Math.max(x, 0); + y = Math.max(y, 0); + + return [x, y]; +} + +function calcTooltipPosition(position, rect, contentSize) { + var domWidth = contentSize[0]; + var domHeight = contentSize[1]; + var gap = 5; + var x = 0; + var y = 0; + var rectWidth = rect.width; + var rectHeight = rect.height; + switch (position) { + case 'inside': + x = rect.x + rectWidth / 2 - domWidth / 2; + y = rect.y + rectHeight / 2 - domHeight / 2; + break; + case 'top': + x = rect.x + rectWidth / 2 - domWidth / 2; + y = rect.y - domHeight - gap; + break; + case 'bottom': + x = rect.x + rectWidth / 2 - domWidth / 2; + y = rect.y + rectHeight + gap; + break; + case 'left': + x = rect.x - domWidth - gap; + y = rect.y + rectHeight / 2 - domHeight / 2; + break; + case 'right': + x = rect.x + rectWidth + gap; + y = rect.y + rectHeight / 2 - domHeight / 2; + } + return [x, y]; +} + +function isCenterAlign(align) { + return align === 'center' || align === 'middle'; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// FIXME Better way to pack data in graphic element + +/** + * @action + * @property {string} type + * @property {number} seriesIndex + * @property {number} dataIndex + * @property {number} [x] + * @property {number} [y] + */ +registerAction( + { + type: 'showTip', + event: 'showTip', + update: 'tooltip:manuallyShowTip' + }, + // noop + function () {} +); + +registerAction( + { + type: 'hideTip', + event: 'hideTip', + update: 'tooltip:manuallyHideTip' + }, + // noop + function () {} +); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var DEFAULT_TOOLBOX_BTNS = ['rect', 'polygon', 'keep', 'clear']; + +var preprocessor$1 = function (option, isNew) { + var brushComponents = option && option.brush; + if (!isArray(brushComponents)) { + brushComponents = brushComponents ? [brushComponents] : []; + } + + if (!brushComponents.length) { + return; + } + + var brushComponentSpecifiedBtns = []; + + each$1(brushComponents, function (brushOpt) { + var tbs = brushOpt.hasOwnProperty('toolbox') + ? brushOpt.toolbox : []; + + if (tbs instanceof Array) { + brushComponentSpecifiedBtns = brushComponentSpecifiedBtns.concat(tbs); + } + }); + + var toolbox = option && option.toolbox; + + if (isArray(toolbox)) { + toolbox = toolbox[0]; + } + if (!toolbox) { + toolbox = {feature: {}}; + option.toolbox = [toolbox]; + } + + var toolboxFeature = (toolbox.feature || (toolbox.feature = {})); + var toolboxBrush = toolboxFeature.brush || (toolboxFeature.brush = {}); + var brushTypes = toolboxBrush.type || (toolboxBrush.type = []); + + brushTypes.push.apply(brushTypes, brushComponentSpecifiedBtns); + + removeDuplicate(brushTypes); + + if (isNew && !brushTypes.length) { + brushTypes.push.apply(brushTypes, DEFAULT_TOOLBOX_BTNS); + } +}; + +function removeDuplicate(arr) { + var map$$1 = {}; + each$1(arr, function (val) { + map$$1[val] = 1; + }); + arr.length = 0; + each$1(map$$1, function (flag, val) { + arr.push(val); + }); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @file Visual solution, for consistent option specification. + */ + +var each$23 = each$1; + +function hasKeys(obj) { + if (obj) { + for (var name in obj) { + if (obj.hasOwnProperty(name)) { + return true; + } + } + } +} + +/** + * @param {Object} option + * @param {Array.} stateList + * @param {Function} [supplementVisualOption] + * @return {Object} visualMappings > + */ +function createVisualMappings(option, stateList, supplementVisualOption) { + var visualMappings = {}; + + each$23(stateList, function (state) { + var mappings = visualMappings[state] = createMappings(); + + each$23(option[state], function (visualData, visualType) { + if (!VisualMapping.isValidType(visualType)) { + return; + } + var mappingOption = { + type: visualType, + visual: visualData + }; + supplementVisualOption && supplementVisualOption(mappingOption, state); + mappings[visualType] = new VisualMapping(mappingOption); + + // Prepare a alpha for opacity, for some case that opacity + // is not supported, such as rendering using gradient color. + if (visualType === 'opacity') { + mappingOption = clone(mappingOption); + mappingOption.type = 'colorAlpha'; + mappings.__hidden.__alphaForOpacity = new VisualMapping(mappingOption); + } + }); + }); + + return visualMappings; + + function createMappings() { + var Creater = function () {}; + // Make sure hidden fields will not be visited by + // object iteration (with hasOwnProperty checking). + Creater.prototype.__hidden = Creater.prototype; + var obj = new Creater(); + return obj; + } +} + +/** + * @param {Object} thisOption + * @param {Object} newOption + * @param {Array.} keys + */ +function replaceVisualOption(thisOption, newOption, keys) { + // Visual attributes merge is not supported, otherwise it + // brings overcomplicated merge logic. See #2853. So if + // newOption has anyone of these keys, all of these keys + // will be reset. Otherwise, all keys remain. + var has; + each$1(keys, function (key) { + if (newOption.hasOwnProperty(key) && hasKeys(newOption[key])) { + has = true; + } + }); + has && each$1(keys, function (key) { + if (newOption.hasOwnProperty(key) && hasKeys(newOption[key])) { + thisOption[key] = clone(newOption[key]); + } + else { + delete thisOption[key]; + } + }); +} + +/** + * @param {Array.} stateList + * @param {Object} visualMappings > + * @param {module:echarts/data/List} list + * @param {Function} getValueState param: valueOrIndex, return: state. + * @param {object} [scope] Scope for getValueState + * @param {string} [dimension] Concrete dimension, if used. + */ +// ???! handle brush? +function applyVisual(stateList, visualMappings, data, getValueState, scope, dimension) { + var visualTypesMap = {}; + each$1(stateList, function (state) { + var visualTypes = VisualMapping.prepareVisualTypes(visualMappings[state]); + visualTypesMap[state] = visualTypes; + }); + + var dataIndex; + + function getVisual(key) { + return data.getItemVisual(dataIndex, key); + } + + function setVisual(key, value) { + data.setItemVisual(dataIndex, key, value); + } + + if (dimension == null) { + data.each(eachItem); + } + else { + data.each([dimension], eachItem); + } + + function eachItem(valueOrIndex, index) { + dataIndex = dimension == null ? valueOrIndex : index; + + var rawDataItem = data.getRawDataItem(dataIndex); + // Consider performance + if (rawDataItem && rawDataItem.visualMap === false) { + return; + } + + var valueState = getValueState.call(scope, valueOrIndex); + var mappings = visualMappings[valueState]; + var visualTypes = visualTypesMap[valueState]; + + for (var i = 0, len = visualTypes.length; i < len; i++) { + var type = visualTypes[i]; + mappings[type] && mappings[type].applyVisual( + valueOrIndex, getVisual, setVisual + ); + } + } +} + +/** + * @param {module:echarts/data/List} data + * @param {Array.} stateList + * @param {Object} visualMappings > + * @param {Function} getValueState param: valueOrIndex, return: state. + * @param {number} [dim] dimension or dimension index. + */ +function incrementalApplyVisual(stateList, visualMappings, getValueState, dim) { + var visualTypesMap = {}; + each$1(stateList, function (state) { + var visualTypes = VisualMapping.prepareVisualTypes(visualMappings[state]); + visualTypesMap[state] = visualTypes; + }); + + function progress(params, data) { + if (dim != null) { + dim = data.getDimension(dim); + } + + function getVisual(key) { + return data.getItemVisual(dataIndex, key); + } + + function setVisual(key, value) { + data.setItemVisual(dataIndex, key, value); + } + + var dataIndex; + while ((dataIndex = params.next()) != null) { + var rawDataItem = data.getRawDataItem(dataIndex); + + // Consider performance + if (rawDataItem && rawDataItem.visualMap === false) { + continue; + } + + var value = dim != null + ? data.get(dim, dataIndex, true) + : dataIndex; + + var valueState = getValueState(value); + var mappings = visualMappings[valueState]; + var visualTypes = visualTypesMap[valueState]; + + for (var i = 0, len = visualTypes.length; i < len; i++) { + var type = visualTypes[i]; + mappings[type] && mappings[type].applyVisual(value, getVisual, setVisual); + } + } + } + + return {progress: progress}; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Key of the first level is brushType: `line`, `rect`, `polygon`. +// Key of the second level is chart element type: `point`, `rect`. +// See moudule:echarts/component/helper/BrushController +// function param: +// {Object} itemLayout fetch from data.getItemLayout(dataIndex) +// {Object} selectors {point: selector, rect: selector, ...} +// {Object} area {range: [[], [], ..], boudingRect} +// function return: +// {boolean} Whether in the given brush. +var selector = { + lineX: getLineSelectors(0), + lineY: getLineSelectors(1), + rect: { + point: function (itemLayout, selectors, area) { + return itemLayout && area.boundingRect.contain(itemLayout[0], itemLayout[1]); + }, + rect: function (itemLayout, selectors, area) { + return itemLayout && area.boundingRect.intersect(itemLayout); + } + }, + polygon: { + point: function (itemLayout, selectors, area) { + return itemLayout + && area.boundingRect.contain(itemLayout[0], itemLayout[1]) + && contain$1(area.range, itemLayout[0], itemLayout[1]); + }, + rect: function (itemLayout, selectors, area) { + var points = area.range; + + if (!itemLayout || points.length <= 1) { + return false; + } + + var x = itemLayout.x; + var y = itemLayout.y; + var width = itemLayout.width; + var height = itemLayout.height; + var p = points[0]; + + if (contain$1(points, x, y) + || contain$1(points, x + width, y) + || contain$1(points, x, y + height) + || contain$1(points, x + width, y + height) + || BoundingRect.create(itemLayout).contain(p[0], p[1]) + || linePolygonIntersect(x, y, x + width, y, points) + || linePolygonIntersect(x, y, x, y + height, points) + || linePolygonIntersect(x + width, y, x + width, y + height, points) + || linePolygonIntersect(x, y + height, x + width, y + height, points) + ) { + return true; + } + } + } +}; + +function getLineSelectors(xyIndex) { + var xy = ['x', 'y']; + var wh = ['width', 'height']; + + return { + point: function (itemLayout, selectors, area) { + if (itemLayout) { + var range = area.range; + var p = itemLayout[xyIndex]; + return inLineRange(p, range); + } + }, + rect: function (itemLayout, selectors, area) { + if (itemLayout) { + var range = area.range; + var layoutRange = [ + itemLayout[xy[xyIndex]], + itemLayout[xy[xyIndex]] + itemLayout[wh[xyIndex]] + ]; + layoutRange[1] < layoutRange[0] && layoutRange.reverse(); + return inLineRange(layoutRange[0], range) + || inLineRange(layoutRange[1], range) + || inLineRange(range[0], layoutRange) + || inLineRange(range[1], layoutRange); + } + } + }; +} + +function inLineRange(p, range) { + return range[0] <= p && p <= range[1]; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var STATE_LIST = ['inBrush', 'outOfBrush']; +var DISPATCH_METHOD = '__ecBrushSelect'; +var DISPATCH_FLAG = '__ecInBrushSelectEvent'; +var PRIORITY_BRUSH = PRIORITY.VISUAL.BRUSH; + +/** + * Layout for visual, the priority higher than other layout, and before brush visual. + */ +registerLayout(PRIORITY_BRUSH, function (ecModel, api, payload) { + ecModel.eachComponent({mainType: 'brush'}, function (brushModel) { + + payload && payload.type === 'takeGlobalCursor' && brushModel.setBrushOption( + payload.key === 'brush' ? payload.brushOption : {brushType: false} + ); + + var brushTargetManager = brushModel.brushTargetManager = new BrushTargetManager(brushModel.option, ecModel); + + brushTargetManager.setInputRanges(brushModel.areas, ecModel); + }); +}); + +/** + * Register the visual encoding if this modules required. + */ +registerVisual(PRIORITY_BRUSH, function (ecModel, api, payload) { + + var brushSelected = []; + var throttleType; + var throttleDelay; + + ecModel.eachComponent({mainType: 'brush'}, function (brushModel, brushIndex) { + + var thisBrushSelected = { + brushId: brushModel.id, + brushIndex: brushIndex, + brushName: brushModel.name, + areas: clone(brushModel.areas), + selected: [] + }; + // Every brush component exists in event params, convenient + // for user to find by index. + brushSelected.push(thisBrushSelected); + + var brushOption = brushModel.option; + var brushLink = brushOption.brushLink; + var linkedSeriesMap = []; + var selectedDataIndexForLink = []; + var rangeInfoBySeries = []; + var hasBrushExists = 0; + + if (!brushIndex) { // Only the first throttle setting works. + throttleType = brushOption.throttleType; + throttleDelay = brushOption.throttleDelay; + } + + // Add boundingRect and selectors to range. + var areas = map(brushModel.areas, function (area) { + return bindSelector( + defaults( + {boundingRect: boundingRectBuilders[area.brushType](area)}, + area + ) + ); + }); + + var visualMappings = createVisualMappings( + brushModel.option, STATE_LIST, function (mappingOption) { + mappingOption.mappingMethod = 'fixed'; + } + ); + + isArray(brushLink) && each$1(brushLink, function (seriesIndex) { + linkedSeriesMap[seriesIndex] = 1; + }); + + function linkOthers(seriesIndex) { + return brushLink === 'all' || linkedSeriesMap[seriesIndex]; + } + + // If no supported brush or no brush on the series, + // all visuals should be in original state. + function brushed(rangeInfoList) { + return !!rangeInfoList.length; + } + + /** + * Logic for each series: (If the logic has to be modified one day, do it carefully!) + * + * ( brushed ┬ && ┬hasBrushExist ┬ && linkOthers ) => StepA: ┬record, ┬ StepB: ┬visualByRecord. + * !brushed┘ ├hasBrushExist ┤ └nothing,┘ ├visualByRecord. + * └!hasBrushExist┘ └nothing. + * ( !brushed && ┬hasBrushExist ┬ && linkOthers ) => StepA: nothing, StepB: ┬visualByRecord. + * └!hasBrushExist┘ └nothing. + * ( brushed ┬ && !linkOthers ) => StepA: nothing, StepB: ┬visualByCheck. + * !brushed┘ └nothing. + * ( !brushed && !linkOthers ) => StepA: nothing, StepB: nothing. + */ + + // Step A + ecModel.eachSeries(function (seriesModel, seriesIndex) { + var rangeInfoList = rangeInfoBySeries[seriesIndex] = []; + + seriesModel.subType === 'parallel' + ? stepAParallel(seriesModel, seriesIndex, rangeInfoList) + : stepAOthers(seriesModel, seriesIndex, rangeInfoList); + }); + + function stepAParallel(seriesModel, seriesIndex) { + var coordSys = seriesModel.coordinateSystem; + hasBrushExists |= coordSys.hasAxisBrushed(); + + linkOthers(seriesIndex) && coordSys.eachActiveState( + seriesModel.getData(), + function (activeState, dataIndex) { + activeState === 'active' && (selectedDataIndexForLink[dataIndex] = 1); + } + ); + } + + function stepAOthers(seriesModel, seriesIndex, rangeInfoList) { + var selectorsByBrushType = getSelectorsByBrushType(seriesModel); + if (!selectorsByBrushType || brushModelNotControll(brushModel, seriesIndex)) { + return; + } + + each$1(areas, function (area) { + selectorsByBrushType[area.brushType] + && brushModel.brushTargetManager.controlSeries(area, seriesModel, ecModel) + && rangeInfoList.push(area); + hasBrushExists |= brushed(rangeInfoList); + }); + + if (linkOthers(seriesIndex) && brushed(rangeInfoList)) { + var data = seriesModel.getData(); + data.each(function (dataIndex) { + if (checkInRange(selectorsByBrushType, rangeInfoList, data, dataIndex)) { + selectedDataIndexForLink[dataIndex] = 1; + } + }); + } + } + + // Step B + ecModel.eachSeries(function (seriesModel, seriesIndex) { + var seriesBrushSelected = { + seriesId: seriesModel.id, + seriesIndex: seriesIndex, + seriesName: seriesModel.name, + dataIndex: [] + }; + // Every series exists in event params, convenient + // for user to find series by seriesIndex. + thisBrushSelected.selected.push(seriesBrushSelected); + + var selectorsByBrushType = getSelectorsByBrushType(seriesModel); + var rangeInfoList = rangeInfoBySeries[seriesIndex]; + + var data = seriesModel.getData(); + var getValueState = linkOthers(seriesIndex) + ? function (dataIndex) { + return selectedDataIndexForLink[dataIndex] + ? (seriesBrushSelected.dataIndex.push(data.getRawIndex(dataIndex)), 'inBrush') + : 'outOfBrush'; + } + : function (dataIndex) { + return checkInRange(selectorsByBrushType, rangeInfoList, data, dataIndex) + ? (seriesBrushSelected.dataIndex.push(data.getRawIndex(dataIndex)), 'inBrush') + : 'outOfBrush'; + }; + + // If no supported brush or no brush, all visuals are in original state. + (linkOthers(seriesIndex) ? hasBrushExists : brushed(rangeInfoList)) + && applyVisual( + STATE_LIST, visualMappings, data, getValueState + ); + }); + + }); + + dispatchAction(api, throttleType, throttleDelay, brushSelected, payload); +}); + +function dispatchAction(api, throttleType, throttleDelay, brushSelected, payload) { + // This event will not be triggered when `setOpion`, otherwise dead lock may + // triggered when do `setOption` in event listener, which we do not find + // satisfactory way to solve yet. Some considered resolutions: + // (a) Diff with prevoius selected data ant only trigger event when changed. + // But store previous data and diff precisely (i.e., not only by dataIndex, but + // also detect value changes in selected data) might bring complexity or fragility. + // (b) Use spectial param like `silent` to suppress event triggering. + // But such kind of volatile param may be weird in `setOption`. + if (!payload) { + return; + } + + var zr = api.getZr(); + if (zr[DISPATCH_FLAG]) { + return; + } + + if (!zr[DISPATCH_METHOD]) { + zr[DISPATCH_METHOD] = doDispatch; + } + + var fn = createOrUpdate(zr, DISPATCH_METHOD, throttleDelay, throttleType); + + fn(api, brushSelected); +} + +function doDispatch(api, brushSelected) { + if (!api.isDisposed()) { + var zr = api.getZr(); + zr[DISPATCH_FLAG] = true; + api.dispatchAction({ + type: 'brushSelect', + batch: brushSelected + }); + zr[DISPATCH_FLAG] = false; + } +} + +function checkInRange(selectorsByBrushType, rangeInfoList, data, dataIndex) { + for (var i = 0, len = rangeInfoList.length; i < len; i++) { + var area = rangeInfoList[i]; + if (selectorsByBrushType[area.brushType]( + dataIndex, data, area.selectors, area + )) { + return true; + } + } +} + +function getSelectorsByBrushType(seriesModel) { + var brushSelector = seriesModel.brushSelector; + if (isString(brushSelector)) { + var sels = []; + each$1(selector, function (selectorsByElementType, brushType) { + sels[brushType] = function (dataIndex, data, selectors, area) { + var itemLayout = data.getItemLayout(dataIndex); + return selectorsByElementType[brushSelector](itemLayout, selectors, area); + }; + }); + return sels; + } + else if (isFunction$1(brushSelector)) { + var bSelector = {}; + each$1(selector, function (sel, brushType) { + bSelector[brushType] = brushSelector; + }); + return bSelector; + } + return brushSelector; +} + +function brushModelNotControll(brushModel, seriesIndex) { + var seriesIndices = brushModel.option.seriesIndex; + return seriesIndices != null + && seriesIndices !== 'all' + && ( + isArray(seriesIndices) + ? indexOf(seriesIndices, seriesIndex) < 0 + : seriesIndex !== seriesIndices + ); +} + +function bindSelector(area) { + var selectors = area.selectors = {}; + each$1(selector[area.brushType], function (selFn, elType) { + // Do not use function binding or curry for performance. + selectors[elType] = function (itemLayout) { + return selFn(itemLayout, selectors, area); + }; + }); + return area; +} + +var boundingRectBuilders = { + + lineX: noop, + + lineY: noop, + + rect: function (area) { + return getBoundingRectFromMinMax(area.range); + }, + + polygon: function (area) { + var minMax; + var range = area.range; + + for (var i = 0, len = range.length; i < len; i++) { + minMax = minMax || [[Infinity, -Infinity], [Infinity, -Infinity]]; + var rg = range[i]; + rg[0] < minMax[0][0] && (minMax[0][0] = rg[0]); + rg[0] > minMax[0][1] && (minMax[0][1] = rg[0]); + rg[1] < minMax[1][0] && (minMax[1][0] = rg[1]); + rg[1] > minMax[1][1] && (minMax[1][1] = rg[1]); + } + + return minMax && getBoundingRectFromMinMax(minMax); + } +}; + +function getBoundingRectFromMinMax(minMax) { + return new BoundingRect( + minMax[0][0], + minMax[1][0], + minMax[0][1] - minMax[0][0], + minMax[1][1] - minMax[1][0] + ); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var DEFAULT_OUT_OF_BRUSH_COLOR = ['#ddd']; + +var BrushModel = extendComponentModel({ + + type: 'brush', + + dependencies: ['geo', 'grid', 'xAxis', 'yAxis', 'parallel', 'series'], + + /** + * @protected + */ + defaultOption: { + // inBrush: null, + // outOfBrush: null, + toolbox: null, // Default value see preprocessor. + brushLink: null, // Series indices array, broadcast using dataIndex. + // or 'all', which means all series. 'none' or null means no series. + seriesIndex: 'all', // seriesIndex array, specify series controlled by this brush component. + geoIndex: null, // + xAxisIndex: null, + yAxisIndex: null, + + brushType: 'rect', // Default brushType, see BrushController. + brushMode: 'single', // Default brushMode, 'single' or 'multiple' + transformable: true, // Default transformable. + brushStyle: { // Default brushStyle + borderWidth: 1, + color: 'rgba(120,140,180,0.3)', + borderColor: 'rgba(120,140,180,0.8)' + }, + + throttleType: 'fixRate', // Throttle in brushSelected event. 'fixRate' or 'debounce'. + // If null, no throttle. Valid only in the first brush component + throttleDelay: 0, // Unit: ms, 0 means every event will be triggered. + + // FIXME + // 试验效果 + removeOnClick: true, + + z: 10000 + }, + + /** + * @readOnly + * @type {Array.} + */ + areas: [], + + /** + * Current activated brush type. + * If null, brush is inactived. + * see module:echarts/component/helper/BrushController + * @readOnly + * @type {string} + */ + brushType: null, + + /** + * Current brush opt. + * see module:echarts/component/helper/BrushController + * @readOnly + * @type {Object} + */ + brushOption: {}, + + /** + * @readOnly + * @type {Array.} + */ + coordInfoList: [], + + optionUpdated: function (newOption, isInit) { + var thisOption = this.option; + + !isInit && replaceVisualOption( + thisOption, newOption, ['inBrush', 'outOfBrush'] + ); + + var inBrush = thisOption.inBrush = thisOption.inBrush || {}; + // Always give default visual, consider setOption at the second time. + thisOption.outOfBrush = thisOption.outOfBrush || {color: DEFAULT_OUT_OF_BRUSH_COLOR}; + + if (!inBrush.hasOwnProperty('liftZ')) { + // Bigger than the highlight z lift, otherwise it will + // be effected by the highlight z when brush. + inBrush.liftZ = 5; + } + }, + + /** + * If ranges is null/undefined, range state remain. + * + * @param {Array.} [ranges] + */ + setAreas: function (areas) { + if (__DEV__) { + assert$1(isArray(areas)); + each$1(areas, function (area) { + assert$1(area.brushType, 'Illegal areas'); + }); + } + + // If ranges is null/undefined, range state remain. + // This helps user to dispatchAction({type: 'brush'}) with no areas + // set but just want to get the current brush select info from a `brush` event. + if (!areas) { + return; + } + + this.areas = map(areas, function (area) { + return generateBrushOption(this.option, area); + }, this); + }, + + /** + * see module:echarts/component/helper/BrushController + * @param {Object} brushOption + */ + setBrushOption: function (brushOption) { + this.brushOption = generateBrushOption(this.option, brushOption); + this.brushType = this.brushOption.brushType; + } + +}); + +function generateBrushOption(option, brushOption) { + return merge( + { + brushType: option.brushType, + brushMode: option.brushMode, + transformable: option.transformable, + brushStyle: new Model(option.brushStyle).getItemStyle(), + removeOnClick: option.removeOnClick, + z: option.z + }, + brushOption, + true + ); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +extendComponentView({ + + type: 'brush', + + init: function (ecModel, api) { + + /** + * @readOnly + * @type {module:echarts/model/Global} + */ + this.ecModel = ecModel; + + /** + * @readOnly + * @type {module:echarts/ExtensionAPI} + */ + this.api = api; + + /** + * @readOnly + * @type {module:echarts/component/brush/BrushModel} + */ + this.model; + + /** + * @private + * @type {module:echarts/component/helper/BrushController} + */ + (this._brushController = new BrushController(api.getZr())) + .on('brush', bind(this._onBrush, this)) + .mount(); + }, + + /** + * @override + */ + render: function (brushModel) { + this.model = brushModel; + return updateController.apply(this, arguments); + }, + + /** + * @override + */ + updateTransform: updateController, + + /** + * @override + */ + updateView: updateController, + + // /** + // * @override + // */ + // updateLayout: updateController, + + // /** + // * @override + // */ + // updateVisual: updateController, + + /** + * @override + */ + dispose: function () { + this._brushController.dispose(); + }, + + /** + * @private + */ + _onBrush: function (areas, opt) { + var modelId = this.model.id; + + this.model.brushTargetManager.setOutputRanges(areas, this.ecModel); + + // Action is not dispatched on drag end, because the drag end + // emits the same params with the last drag move event, and + // may have some delay when using touch pad, which makes + // animation not smooth (when using debounce). + (!opt.isEnd || opt.removeOnClick) && this.api.dispatchAction({ + type: 'brush', + brushId: modelId, + areas: clone(areas), + $from: modelId + }); + } + +}); + +function updateController(brushModel, ecModel, api, payload) { + // Do not update controller when drawing. + (!payload || payload.$from !== brushModel.id) && this._brushController + .setPanels(brushModel.brushTargetManager.makePanelOpts(api)) + .enableBrush(brushModel.brushOption) + .updateCovers(brushModel.areas.slice()); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * payload: { + * brushIndex: number, or, + * brushId: string, or, + * brushName: string, + * globalRanges: Array + * } + */ +registerAction( + {type: 'brush', event: 'brush' /*, update: 'updateView' */}, + function (payload, ecModel) { + ecModel.eachComponent({mainType: 'brush', query: payload}, function (brushModel) { + brushModel.setAreas(payload.areas); + }); + } +); + +/** + * payload: { + * brushComponents: [ + * { + * brushId, + * brushIndex, + * brushName, + * series: [ + * { + * seriesId, + * seriesIndex, + * seriesName, + * rawIndices: [21, 34, ...] + * }, + * ... + * ] + * }, + * ... + * ] + * } + */ +registerAction( + {type: 'brushSelect', event: 'brushSelected', update: 'none'}, + function () {} +); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var brushLang = lang.toolbox.brush; + +function Brush(model, ecModel, api) { + this.model = model; + this.ecModel = ecModel; + this.api = api; + + /** + * @private + * @type {string} + */ + this._brushType; + + /** + * @private + * @type {string} + */ + this._brushMode; +} + +Brush.defaultOption = { + show: true, + type: ['rect', 'polygon', 'lineX', 'lineY', 'keep', 'clear'], + icon: { + /* eslint-disable */ + rect: 'M7.3,34.7 M0.4,10V-0.2h9.8 M89.6,10V-0.2h-9.8 M0.4,60v10.2h9.8 M89.6,60v10.2h-9.8 M12.3,22.4V10.5h13.1 M33.6,10.5h7.8 M49.1,10.5h7.8 M77.5,22.4V10.5h-13 M12.3,31.1v8.2 M77.7,31.1v8.2 M12.3,47.6v11.9h13.1 M33.6,59.5h7.6 M49.1,59.5 h7.7 M77.5,47.6v11.9h-13', // jshint ignore:line + polygon: 'M55.2,34.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1 s-3.1-1.4-3.1-3.1S53.5,34.9,55.2,34.9z M50.4,51c1.7,0,3.1,1.4,3.1,3.1c0,1.7-1.4,3.1-3.1,3.1c-1.7,0-3.1-1.4-3.1-3.1 C47.3,52.4,48.7,51,50.4,51z M55.6,37.1l1.5-7.8 M60.1,13.5l1.6-8.7l-7.8,4 M59,19l-1,5.3 M24,16.1l6.4,4.9l6.4-3.3 M48.5,11.6 l-5.9,3.1 M19.1,12.8L9.7,5.1l1.1,7.7 M13.4,29.8l1,7.3l6.6,1.6 M11.6,18.4l1,6.1 M32.8,41.9 M26.6,40.4 M27.3,40.2l6.1,1.6 M49.9,52.1l-5.6-7.6l-4.9-1.2', // jshint ignore:line + lineX: 'M15.2,30 M19.7,15.6V1.9H29 M34.8,1.9H40.4 M55.3,15.6V1.9H45.9 M19.7,44.4V58.1H29 M34.8,58.1H40.4 M55.3,44.4 V58.1H45.9 M12.5,20.3l-9.4,9.6l9.6,9.8 M3.1,29.9h16.5 M62.5,20.3l9.4,9.6L62.3,39.7 M71.9,29.9H55.4', // jshint ignore:line + lineY: 'M38.8,7.7 M52.7,12h13.2v9 M65.9,26.6V32 M52.7,46.3h13.2v-9 M24.9,12H11.8v9 M11.8,26.6V32 M24.9,46.3H11.8v-9 M48.2,5.1l-9.3-9l-9.4,9.2 M38.9-3.9V12 M48.2,53.3l-9.3,9l-9.4-9.2 M38.9,62.3V46.4', // jshint ignore:line + keep: 'M4,10.5V1h10.3 M20.7,1h6.1 M33,1h6.1 M55.4,10.5V1H45.2 M4,17.3v6.6 M55.6,17.3v6.6 M4,30.5V40h10.3 M20.7,40 h6.1 M33,40h6.1 M55.4,30.5V40H45.2 M21,18.9h62.9v48.6H21V18.9z', // jshint ignore:line + clear: 'M22,14.7l30.9,31 M52.9,14.7L22,45.7 M4.7,16.8V4.2h13.1 M26,4.2h7.8 M41.6,4.2h7.8 M70.3,16.8V4.2H57.2 M4.7,25.9v8.6 M70.3,25.9v8.6 M4.7,43.2v12.6h13.1 M26,55.8h7.8 M41.6,55.8h7.8 M70.3,43.2v12.6H57.2' // jshint ignore:line + /* eslint-enable */ + }, + // `rect`, `polygon`, `lineX`, `lineY`, `keep`, `clear` + title: clone(brushLang.title) +}; + +var proto$7 = Brush.prototype; + +// proto.updateLayout = function (featureModel, ecModel, api) { +/* eslint-disable */ +proto$7.render = +/* eslint-enable */ +proto$7.updateView = function (featureModel, ecModel, api) { + var brushType; + var brushMode; + var isBrushed; + + ecModel.eachComponent({mainType: 'brush'}, function (brushModel) { + brushType = brushModel.brushType; + brushMode = brushModel.brushOption.brushMode || 'single'; + isBrushed |= brushModel.areas.length; + }); + this._brushType = brushType; + this._brushMode = brushMode; + + each$1(featureModel.get('type', true), function (type) { + featureModel.setIconStatus( + type, + ( + type === 'keep' + ? brushMode === 'multiple' + : type === 'clear' + ? isBrushed + : type === brushType + ) ? 'emphasis' : 'normal' + ); + }); +}; + +proto$7.getIcons = function () { + var model = this.model; + var availableIcons = model.get('icon', true); + var icons = {}; + each$1(model.get('type', true), function (type) { + if (availableIcons[type]) { + icons[type] = availableIcons[type]; + } + }); + return icons; +}; + +proto$7.onclick = function (ecModel, api, type) { + var brushType = this._brushType; + var brushMode = this._brushMode; + + if (type === 'clear') { + // Trigger parallel action firstly + api.dispatchAction({ + type: 'axisAreaSelect', + intervals: [] + }); + + api.dispatchAction({ + type: 'brush', + command: 'clear', + // Clear all areas of all brush components. + areas: [] + }); + } + else { + api.dispatchAction({ + type: 'takeGlobalCursor', + key: 'brush', + brushOption: { + brushType: type === 'keep' + ? brushType + : (brushType === type ? false : type), + brushMode: type === 'keep' + ? (brushMode === 'multiple' ? 'single' : 'multiple') + : brushMode + } + }); + } +}; + +register$1('brush', Brush); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Brush component entry + */ + +registerPreprocessor(preprocessor$1); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Model +extendComponentModel({ + + type: 'title', + + layoutMode: {type: 'box', ignoreSize: true}, + + defaultOption: { + // 一级层叠 + zlevel: 0, + // 二级层叠 + z: 6, + show: true, + + text: '', + // 超链接跳转 + // link: null, + // 仅支持self | blank + target: 'blank', + subtext: '', + + // 超链接跳转 + // sublink: null, + // 仅支持self | blank + subtarget: 'blank', + + // 'center' ¦ 'left' ¦ 'right' + // ¦ {number}(x坐标,单位px) + left: 0, + // 'top' ¦ 'bottom' ¦ 'center' + // ¦ {number}(y坐标,单位px) + top: 0, + + // 水平对齐 + // 'auto' | 'left' | 'right' | 'center' + // 默认根据 left 的位置判断是左对齐还是右对齐 + // textAlign: null + // + // 垂直对齐 + // 'auto' | 'top' | 'bottom' | 'middle' + // 默认根据 top 位置判断是上对齐还是下对齐 + // textVerticalAlign: null + // textBaseline: null // The same as textVerticalAlign. + + backgroundColor: 'rgba(0,0,0,0)', + + // 标题边框颜色 + borderColor: '#ccc', + + // 标题边框线宽,单位px,默认为0(无边框) + borderWidth: 0, + + // 标题内边距,单位px,默认各方向内边距为5, + // 接受数组分别设定上右下左边距,同css + padding: 5, + + // 主副标题纵向间隔,单位px,默认为10, + itemGap: 10, + textStyle: { + fontSize: 18, + fontWeight: 'bolder', + color: '#333' + }, + subtextStyle: { + color: '#aaa' + } + } +}); + +// View +extendComponentView({ + + type: 'title', + + render: function (titleModel, ecModel, api) { + this.group.removeAll(); + + if (!titleModel.get('show')) { + return; + } + + var group = this.group; + + var textStyleModel = titleModel.getModel('textStyle'); + var subtextStyleModel = titleModel.getModel('subtextStyle'); + + var textAlign = titleModel.get('textAlign'); + var textVerticalAlign = retrieve2( + titleModel.get('textBaseline'), titleModel.get('textVerticalAlign') + ); + + var textEl = new Text({ + style: setTextStyle({}, textStyleModel, { + text: titleModel.get('text'), + textFill: textStyleModel.getTextColor() + }, {disableBox: true}), + z2: 10 + }); + + var textRect = textEl.getBoundingRect(); + + var subText = titleModel.get('subtext'); + var subTextEl = new Text({ + style: setTextStyle({}, subtextStyleModel, { + text: subText, + textFill: subtextStyleModel.getTextColor(), + y: textRect.height + titleModel.get('itemGap'), + textVerticalAlign: 'top' + }, {disableBox: true}), + z2: 10 + }); + + var link = titleModel.get('link'); + var sublink = titleModel.get('sublink'); + var triggerEvent = titleModel.get('triggerEvent', true); + + textEl.silent = !link && !triggerEvent; + subTextEl.silent = !sublink && !triggerEvent; + + if (link) { + textEl.on('click', function () { + window.open(link, '_' + titleModel.get('target')); + }); + } + if (sublink) { + subTextEl.on('click', function () { + window.open(sublink, '_' + titleModel.get('subtarget')); + }); + } + + textEl.eventData = subTextEl.eventData = triggerEvent + ? { + componentType: 'title', + componentIndex: titleModel.componentIndex + } + : null; + + group.add(textEl); + subText && group.add(subTextEl); + // If no subText, but add subTextEl, there will be an empty line. + + var groupRect = group.getBoundingRect(); + var layoutOption = titleModel.getBoxLayoutParams(); + layoutOption.width = groupRect.width; + layoutOption.height = groupRect.height; + var layoutRect = getLayoutRect( + layoutOption, { + width: api.getWidth(), + height: api.getHeight() + }, titleModel.get('padding') + ); + // Adjust text align based on position + if (!textAlign) { + // Align left if title is on the left. center and right is same + textAlign = titleModel.get('left') || titleModel.get('right'); + if (textAlign === 'middle') { + textAlign = 'center'; + } + // Adjust layout by text align + if (textAlign === 'right') { + layoutRect.x += layoutRect.width; + } + else if (textAlign === 'center') { + layoutRect.x += layoutRect.width / 2; + } + } + if (!textVerticalAlign) { + textVerticalAlign = titleModel.get('top') || titleModel.get('bottom'); + if (textVerticalAlign === 'center') { + textVerticalAlign = 'middle'; + } + if (textVerticalAlign === 'bottom') { + layoutRect.y += layoutRect.height; + } + else if (textVerticalAlign === 'middle') { + layoutRect.y += layoutRect.height / 2; + } + + textVerticalAlign = textVerticalAlign || 'top'; + } + + group.attr('position', [layoutRect.x, layoutRect.y]); + var alignStyle = { + textAlign: textAlign, + textVerticalAlign: textVerticalAlign + }; + textEl.setStyle(alignStyle); + subTextEl.setStyle(alignStyle); + + // Render background + // Get groupRect again because textAlign has been changed + groupRect = group.getBoundingRect(); + var padding = layoutRect.margin; + var style = titleModel.getItemStyle(['color', 'opacity']); + style.fill = titleModel.get('backgroundColor'); + var rect = new Rect({ + shape: { + x: groupRect.x - padding[3], + y: groupRect.y - padding[0], + width: groupRect.width + padding[1] + padding[3], + height: groupRect.height + padding[0] + padding[2], + r: titleModel.get('borderRadius') + }, + style: style, + subPixelOptimize: true, + silent: true + }); + + group.add(rect); + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var preprocessor$2 = function (option) { + var timelineOpt = option && option.timeline; + + if (!isArray(timelineOpt)) { + timelineOpt = timelineOpt ? [timelineOpt] : []; + } + + each$1(timelineOpt, function (opt) { + if (!opt) { + return; + } + + compatibleEC2(opt); + }); +}; + +function compatibleEC2(opt) { + var type = opt.type; + + var ec2Types = {'number': 'value', 'time': 'time'}; + + // Compatible with ec2 + if (ec2Types[type]) { + opt.axisType = ec2Types[type]; + delete opt.type; + } + + transferItem(opt); + + if (has$1(opt, 'controlPosition')) { + var controlStyle = opt.controlStyle || (opt.controlStyle = {}); + if (!has$1(controlStyle, 'position')) { + controlStyle.position = opt.controlPosition; + } + if (controlStyle.position === 'none' && !has$1(controlStyle, 'show')) { + controlStyle.show = false; + delete controlStyle.position; + } + delete opt.controlPosition; + } + + each$1(opt.data || [], function (dataItem) { + if (isObject$1(dataItem) && !isArray(dataItem)) { + if (!has$1(dataItem, 'value') && has$1(dataItem, 'name')) { + // In ec2, using name as value. + dataItem.value = dataItem.name; + } + transferItem(dataItem); + } + }); +} + +function transferItem(opt) { + var itemStyle = opt.itemStyle || (opt.itemStyle = {}); + + var itemStyleEmphasis = itemStyle.emphasis || (itemStyle.emphasis = {}); + + // Transfer label out + var label = opt.label || (opt.label || {}); + var labelNormal = label.normal || (label.normal = {}); + var excludeLabelAttr = {normal: 1, emphasis: 1}; + + each$1(label, function (value, name) { + if (!excludeLabelAttr[name] && !has$1(labelNormal, name)) { + labelNormal[name] = value; + } + }); + + if (itemStyleEmphasis.label && !has$1(label, 'emphasis')) { + label.emphasis = itemStyleEmphasis.label; + delete itemStyleEmphasis.label; + } +} + +function has$1(obj, attr) { + return obj.hasOwnProperty(attr); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +ComponentModel.registerSubTypeDefaulter('timeline', function () { + // Only slider now. + return 'slider'; +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerAction( + + {type: 'timelineChange', event: 'timelineChanged', update: 'prepareAndUpdate'}, + + function (payload, ecModel) { + + var timelineModel = ecModel.getComponent('timeline'); + if (timelineModel && payload.currentIndex != null) { + timelineModel.setCurrentIndex(payload.currentIndex); + + if (!timelineModel.get('loop', true) && timelineModel.isIndexMax()) { + timelineModel.setPlayState(false); + } + } + + // Set normalized currentIndex to payload. + ecModel.resetOption('timeline'); + + return defaults({ + currentIndex: timelineModel.option.currentIndex + }, payload); + } +); + +registerAction( + + {type: 'timelinePlayChange', event: 'timelinePlayChanged', update: 'update'}, + + function (payload, ecModel) { + var timelineModel = ecModel.getComponent('timeline'); + if (timelineModel && payload.playState != null) { + timelineModel.setPlayState(payload.playState); + } + } +); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var TimelineModel = ComponentModel.extend({ + + type: 'timeline', + + layoutMode: 'box', + + /** + * @protected + */ + defaultOption: { + + zlevel: 0, // 一级层叠 + z: 4, // 二级层叠 + show: true, + + axisType: 'time', // 模式是时间类型,支持 value, category + + realtime: true, + + left: '20%', + top: null, + right: '20%', + bottom: 0, + width: null, + height: 40, + padding: 5, + + controlPosition: 'left', // 'left' 'right' 'top' 'bottom' 'none' + autoPlay: false, + rewind: false, // 反向播放 + loop: true, + playInterval: 2000, // 播放时间间隔,单位ms + + currentIndex: 0, + + itemStyle: {}, + label: { + color: '#000' + }, + + data: [] + }, + + /** + * @override + */ + init: function (option, parentModel, ecModel) { + + /** + * @private + * @type {module:echarts/data/List} + */ + this._data; + + /** + * @private + * @type {Array.} + */ + this._names; + + this.mergeDefaultAndTheme(option, ecModel); + this._initData(); + }, + + /** + * @override + */ + mergeOption: function (option) { + TimelineModel.superApply(this, 'mergeOption', arguments); + this._initData(); + }, + + /** + * @param {number} [currentIndex] + */ + setCurrentIndex: function (currentIndex) { + if (currentIndex == null) { + currentIndex = this.option.currentIndex; + } + var count = this._data.count(); + + if (this.option.loop) { + currentIndex = (currentIndex % count + count) % count; + } + else { + currentIndex >= count && (currentIndex = count - 1); + currentIndex < 0 && (currentIndex = 0); + } + + this.option.currentIndex = currentIndex; + }, + + /** + * @return {number} currentIndex + */ + getCurrentIndex: function () { + return this.option.currentIndex; + }, + + /** + * @return {boolean} + */ + isIndexMax: function () { + return this.getCurrentIndex() >= this._data.count() - 1; + }, + + /** + * @param {boolean} state true: play, false: stop + */ + setPlayState: function (state) { + this.option.autoPlay = !!state; + }, + + /** + * @return {boolean} true: play, false: stop + */ + getPlayState: function () { + return !!this.option.autoPlay; + }, + + /** + * @private + */ + _initData: function () { + var thisOption = this.option; + var dataArr = thisOption.data || []; + var axisType = thisOption.axisType; + var names = this._names = []; + + if (axisType === 'category') { + var idxArr = []; + each$1(dataArr, function (item, index) { + var value = getDataItemValue(item); + var newItem; + + if (isObject$1(item)) { + newItem = clone(item); + newItem.value = index; + } + else { + newItem = index; + } + + idxArr.push(newItem); + + if (!isString(value) && (value == null || isNaN(value))) { + value = ''; + } + + names.push(value + ''); + }); + dataArr = idxArr; + } + + var dimType = ({category: 'ordinal', time: 'time'})[axisType] || 'number'; + + var data = this._data = new List([{name: 'value', type: dimType}], this); + + data.initData(dataArr, names); + }, + + getData: function () { + return this._data; + }, + + /** + * @public + * @return {Array.} categoreis + */ + getCategories: function () { + if (this.get('axisType') === 'category') { + return this._names.slice(); + } + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var SliderTimelineModel = TimelineModel.extend({ + + type: 'timeline.slider', + + /** + * @protected + */ + defaultOption: { + + backgroundColor: 'rgba(0,0,0,0)', // 时间轴背景颜色 + borderColor: '#ccc', // 时间轴边框颜色 + borderWidth: 0, // 时间轴边框线宽,单位px,默认为0(无边框) + + orient: 'horizontal', // 'vertical' + inverse: false, + + tooltip: { // boolean or Object + trigger: 'item' // data item may also have tootip attr. + }, + + symbol: 'emptyCircle', + symbolSize: 10, + + lineStyle: { + show: true, + width: 2, + color: '#304654' + }, + label: { // 文本标签 + position: 'auto', // auto left right top bottom + // When using number, label position is not + // restricted by viewRect. + // positive: right/bottom, negative: left/top + show: true, + interval: 'auto', + rotate: 0, + // formatter: null, + // 其余属性默认使用全局文本样式,详见TEXTSTYLE + color: '#304654' + }, + itemStyle: { + color: '#304654', + borderWidth: 1 + }, + + checkpointStyle: { + symbol: 'circle', + symbolSize: 13, + color: '#c23531', + borderWidth: 5, + borderColor: 'rgba(194,53,49, 0.5)', + animation: true, + animationDuration: 300, + animationEasing: 'quinticInOut' + }, + + controlStyle: { + show: true, + showPlayBtn: true, + showPrevBtn: true, + showNextBtn: true, + itemSize: 22, + itemGap: 12, + position: 'left', // 'left' 'right' 'top' 'bottom' + playIcon: 'path://M31.6,53C17.5,53,6,41.5,6,27.4S17.5,1.8,31.6,1.8C45.7,1.8,57.2,13.3,57.2,27.4S45.7,53,31.6,53z M31.6,3.3 C18.4,3.3,7.5,14.1,7.5,27.4c0,13.3,10.8,24.1,24.1,24.1C44.9,51.5,55.7,40.7,55.7,27.4C55.7,14.1,44.9,3.3,31.6,3.3z M24.9,21.3 c0-2.2,1.6-3.1,3.5-2l10.5,6.1c1.899,1.1,1.899,2.9,0,4l-10.5,6.1c-1.9,1.1-3.5,0.2-3.5-2V21.3z', // jshint ignore:line + stopIcon: 'path://M30.9,53.2C16.8,53.2,5.3,41.7,5.3,27.6S16.8,2,30.9,2C45,2,56.4,13.5,56.4,27.6S45,53.2,30.9,53.2z M30.9,3.5C17.6,3.5,6.8,14.4,6.8,27.6c0,13.3,10.8,24.1,24.101,24.1C44.2,51.7,55,40.9,55,27.6C54.9,14.4,44.1,3.5,30.9,3.5z M36.9,35.8c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H36c0.5,0,0.9,0.4,0.9,1V35.8z M27.8,35.8 c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H27c0.5,0,0.9,0.4,0.9,1L27.8,35.8L27.8,35.8z', // jshint ignore:line + nextIcon: 'path://M18.6,50.8l22.5-22.5c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7L18.7,4.4c-0.1-0.1-0.2-0.3-0.2-0.5 c0-0.4,0.3-0.8,0.8-0.8c0.2,0,0.5,0.1,0.6,0.3l23.5,23.5l0,0c0.2,0.2,0.3,0.4,0.3,0.7c0,0.3-0.1,0.5-0.3,0.7l-0.1,0.1L19.7,52 c-0.1,0.1-0.3,0.2-0.5,0.2c-0.4,0-0.8-0.3-0.8-0.8C18.4,51.2,18.5,51,18.6,50.8z', // jshint ignore:line + prevIcon: 'path://M43,52.8L20.4,30.3c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.3,0.1-0.5,0.3-0.7L42.9,6.4c0.1-0.1,0.2-0.3,0.2-0.5 c0-0.4-0.3-0.8-0.8-0.8c-0.2,0-0.5,0.1-0.6,0.3L18.3,28.8l0,0c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.3,0.1,0.5,0.3,0.7l0.1,0.1L41.9,54 c0.1,0.1,0.3,0.2,0.5,0.2c0.4,0,0.8-0.3,0.8-0.8C43.2,53.2,43.1,53,43,52.8z', // jshint ignore:line + + color: '#304654', + borderColor: '#304654', + borderWidth: 1 + }, + + emphasis: { + label: { + show: true, + // 其余属性默认使用全局文本样式,详见TEXTSTYLE + color: '#c23531' + }, + + itemStyle: { + color: '#c23531' + }, + + controlStyle: { + color: '#c23531', + borderColor: '#c23531', + borderWidth: 2 + } + }, + data: [] + } + +}); + +mixin(SliderTimelineModel, dataFormatMixin); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var TimelineView = Component$1.extend({ + type: 'timeline' +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Extend axis 2d + * @constructor module:echarts/coord/cartesian/Axis2D + * @extends {module:echarts/coord/cartesian/Axis} + * @param {string} dim + * @param {*} scale + * @param {Array.} coordExtent + * @param {string} axisType + * @param {string} position + */ +var TimelineAxis = function (dim, scale, coordExtent, axisType) { + + Axis.call(this, dim, scale, coordExtent); + + /** + * Axis type + * - 'category' + * - 'value' + * - 'time' + * - 'log' + * @type {string} + */ + this.type = axisType || 'value'; + + /** + * Axis model + * @param {module:echarts/component/TimelineModel} + */ + this.model = null; +}; + +TimelineAxis.prototype = { + + constructor: TimelineAxis, + + /** + * @override + */ + getLabelModel: function () { + return this.model.getModel('label'); + }, + + /** + * @override + */ + isHorizontal: function () { + return this.model.get('orient') === 'horizontal'; + } + +}; + +inherits(TimelineAxis, Axis); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var bind$4 = bind; +var each$24 = each$1; + +var PI$5 = Math.PI; + +TimelineView.extend({ + + type: 'timeline.slider', + + init: function (ecModel, api) { + + this.api = api; + + /** + * @private + * @type {module:echarts/component/timeline/TimelineAxis} + */ + this._axis; + + /** + * @private + * @type {module:zrender/core/BoundingRect} + */ + this._viewRect; + + /** + * @type {number} + */ + this._timer; + + /** + * @type {module:zrender/Element} + */ + this._currentPointer; + + /** + * @type {module:zrender/container/Group} + */ + this._mainGroup; + + /** + * @type {module:zrender/container/Group} + */ + this._labelGroup; + }, + + /** + * @override + */ + render: function (timelineModel, ecModel, api, payload) { + this.model = timelineModel; + this.api = api; + this.ecModel = ecModel; + + this.group.removeAll(); + + if (timelineModel.get('show', true)) { + + var layoutInfo = this._layout(timelineModel, api); + var mainGroup = this._createGroup('mainGroup'); + var labelGroup = this._createGroup('labelGroup'); + + /** + * @private + * @type {module:echarts/component/timeline/TimelineAxis} + */ + var axis = this._axis = this._createAxis(layoutInfo, timelineModel); + + timelineModel.formatTooltip = function (dataIndex) { + return encodeHTML(axis.scale.getLabel(dataIndex)); + }; + + each$24( + ['AxisLine', 'AxisTick', 'Control', 'CurrentPointer'], + function (name) { + this['_render' + name](layoutInfo, mainGroup, axis, timelineModel); + }, + this + ); + + this._renderAxisLabel(layoutInfo, labelGroup, axis, timelineModel); + this._position(layoutInfo, timelineModel); + } + + this._doPlayStop(); + }, + + /** + * @override + */ + remove: function () { + this._clearTimer(); + this.group.removeAll(); + }, + + /** + * @override + */ + dispose: function () { + this._clearTimer(); + }, + + _layout: function (timelineModel, api) { + var labelPosOpt = timelineModel.get('label.position'); + var orient = timelineModel.get('orient'); + var viewRect = getViewRect$4(timelineModel, api); + // Auto label offset. + if (labelPosOpt == null || labelPosOpt === 'auto') { + labelPosOpt = orient === 'horizontal' + ? ((viewRect.y + viewRect.height / 2) < api.getHeight() / 2 ? '-' : '+') + : ((viewRect.x + viewRect.width / 2) < api.getWidth() / 2 ? '+' : '-'); + } + else if (isNaN(labelPosOpt)) { + labelPosOpt = ({ + horizontal: {top: '-', bottom: '+'}, + vertical: {left: '-', right: '+'} + })[orient][labelPosOpt]; + } + + var labelAlignMap = { + horizontal: 'center', + vertical: (labelPosOpt >= 0 || labelPosOpt === '+') ? 'left' : 'right' + }; + + var labelBaselineMap = { + horizontal: (labelPosOpt >= 0 || labelPosOpt === '+') ? 'top' : 'bottom', + vertical: 'middle' + }; + var rotationMap = { + horizontal: 0, + vertical: PI$5 / 2 + }; + + // Position + var mainLength = orient === 'vertical' ? viewRect.height : viewRect.width; + + var controlModel = timelineModel.getModel('controlStyle'); + var showControl = controlModel.get('show', true); + var controlSize = showControl ? controlModel.get('itemSize') : 0; + var controlGap = showControl ? controlModel.get('itemGap') : 0; + var sizePlusGap = controlSize + controlGap; + + // Special label rotate. + var labelRotation = timelineModel.get('label.rotate') || 0; + labelRotation = labelRotation * PI$5 / 180; // To radian. + + var playPosition; + var prevBtnPosition; + var nextBtnPosition; + var axisExtent; + var controlPosition = controlModel.get('position', true); + var showPlayBtn = showControl && controlModel.get('showPlayBtn', true); + var showPrevBtn = showControl && controlModel.get('showPrevBtn', true); + var showNextBtn = showControl && controlModel.get('showNextBtn', true); + var xLeft = 0; + var xRight = mainLength; + + // position[0] means left, position[1] means middle. + if (controlPosition === 'left' || controlPosition === 'bottom') { + showPlayBtn && (playPosition = [0, 0], xLeft += sizePlusGap); + showPrevBtn && (prevBtnPosition = [xLeft, 0], xLeft += sizePlusGap); + showNextBtn && (nextBtnPosition = [xRight - controlSize, 0], xRight -= sizePlusGap); + } + else { // 'top' 'right' + showPlayBtn && (playPosition = [xRight - controlSize, 0], xRight -= sizePlusGap); + showPrevBtn && (prevBtnPosition = [0, 0], xLeft += sizePlusGap); + showNextBtn && (nextBtnPosition = [xRight - controlSize, 0], xRight -= sizePlusGap); + } + axisExtent = [xLeft, xRight]; + + if (timelineModel.get('inverse')) { + axisExtent.reverse(); + } + + return { + viewRect: viewRect, + mainLength: mainLength, + orient: orient, + + rotation: rotationMap[orient], + labelRotation: labelRotation, + labelPosOpt: labelPosOpt, + labelAlign: timelineModel.get('label.align') || labelAlignMap[orient], + labelBaseline: timelineModel.get('label.verticalAlign') + || timelineModel.get('label.baseline') + || labelBaselineMap[orient], + + // Based on mainGroup. + playPosition: playPosition, + prevBtnPosition: prevBtnPosition, + nextBtnPosition: nextBtnPosition, + axisExtent: axisExtent, + + controlSize: controlSize, + controlGap: controlGap + }; + }, + + _position: function (layoutInfo, timelineModel) { + // Position is be called finally, because bounding rect is needed for + // adapt content to fill viewRect (auto adapt offset). + + // Timeline may be not all in the viewRect when 'offset' is specified + // as a number, because it is more appropriate that label aligns at + // 'offset' but not the other edge defined by viewRect. + + var mainGroup = this._mainGroup; + var labelGroup = this._labelGroup; + + var viewRect = layoutInfo.viewRect; + if (layoutInfo.orient === 'vertical') { + // transform to horizontal, inverse rotate by left-top point. + var m = create$1(); + var rotateOriginX = viewRect.x; + var rotateOriginY = viewRect.y + viewRect.height; + translate(m, m, [-rotateOriginX, -rotateOriginY]); + rotate(m, m, -PI$5 / 2); + translate(m, m, [rotateOriginX, rotateOriginY]); + viewRect = viewRect.clone(); + viewRect.applyTransform(m); + } + + var viewBound = getBound(viewRect); + var mainBound = getBound(mainGroup.getBoundingRect()); + var labelBound = getBound(labelGroup.getBoundingRect()); + + var mainPosition = mainGroup.position; + var labelsPosition = labelGroup.position; + + labelsPosition[0] = mainPosition[0] = viewBound[0][0]; + + var labelPosOpt = layoutInfo.labelPosOpt; + + if (isNaN(labelPosOpt)) { // '+' or '-' + var mainBoundIdx = labelPosOpt === '+' ? 0 : 1; + toBound(mainPosition, mainBound, viewBound, 1, mainBoundIdx); + toBound(labelsPosition, labelBound, viewBound, 1, 1 - mainBoundIdx); + } + else { + var mainBoundIdx = labelPosOpt >= 0 ? 0 : 1; + toBound(mainPosition, mainBound, viewBound, 1, mainBoundIdx); + labelsPosition[1] = mainPosition[1] + labelPosOpt; + } + + mainGroup.attr('position', mainPosition); + labelGroup.attr('position', labelsPosition); + mainGroup.rotation = labelGroup.rotation = layoutInfo.rotation; + + setOrigin(mainGroup); + setOrigin(labelGroup); + + function setOrigin(targetGroup) { + var pos = targetGroup.position; + targetGroup.origin = [ + viewBound[0][0] - pos[0], + viewBound[1][0] - pos[1] + ]; + } + + function getBound(rect) { + // [[xmin, xmax], [ymin, ymax]] + return [ + [rect.x, rect.x + rect.width], + [rect.y, rect.y + rect.height] + ]; + } + + function toBound(fromPos, from, to, dimIdx, boundIdx) { + fromPos[dimIdx] += to[dimIdx][boundIdx] - from[dimIdx][boundIdx]; + } + }, + + _createAxis: function (layoutInfo, timelineModel) { + var data = timelineModel.getData(); + var axisType = timelineModel.get('axisType'); + + var scale = createScaleByModel(timelineModel, axisType); + + // Customize scale. The `tickValue` is `dataIndex`. + scale.getTicks = function () { + return data.mapArray(['value'], function (value) { + return value; + }); + }; + + var dataExtent = data.getDataExtent('value'); + scale.setExtent(dataExtent[0], dataExtent[1]); + scale.niceTicks(); + + var axis = new TimelineAxis('value', scale, layoutInfo.axisExtent, axisType); + axis.model = timelineModel; + + return axis; + }, + + _createGroup: function (name) { + var newGroup = this['_' + name] = new Group(); + this.group.add(newGroup); + return newGroup; + }, + + _renderAxisLine: function (layoutInfo, group, axis, timelineModel) { + var axisExtent = axis.getExtent(); + + if (!timelineModel.get('lineStyle.show')) { + return; + } + + group.add(new Line({ + shape: { + x1: axisExtent[0], y1: 0, + x2: axisExtent[1], y2: 0 + }, + style: extend( + {lineCap: 'round'}, + timelineModel.getModel('lineStyle').getLineStyle() + ), + silent: true, + z2: 1 + })); + }, + + /** + * @private + */ + _renderAxisTick: function (layoutInfo, group, axis, timelineModel) { + var data = timelineModel.getData(); + // Show all ticks, despite ignoring strategy. + var ticks = axis.scale.getTicks(); + + // The value is dataIndex, see the costomized scale. + each$24(ticks, function (value) { + var tickCoord = axis.dataToCoord(value); + var itemModel = data.getItemModel(value); + var itemStyleModel = itemModel.getModel('itemStyle'); + var hoverStyleModel = itemModel.getModel('emphasis.itemStyle'); + var symbolOpt = { + position: [tickCoord, 0], + onclick: bind$4(this._changeTimeline, this, value) + }; + var el = giveSymbol(itemModel, itemStyleModel, group, symbolOpt); + setHoverStyle(el, hoverStyleModel.getItemStyle()); + + if (itemModel.get('tooltip')) { + el.dataIndex = value; + el.dataModel = timelineModel; + } + else { + el.dataIndex = el.dataModel = null; + } + + }, this); + }, + + /** + * @private + */ + _renderAxisLabel: function (layoutInfo, group, axis, timelineModel) { + var labelModel = axis.getLabelModel(); + + if (!labelModel.get('show')) { + return; + } + + var data = timelineModel.getData(); + var labels = axis.getViewLabels(); + + each$24(labels, function (labelItem) { + // The tickValue is dataIndex, see the costomized scale. + var dataIndex = labelItem.tickValue; + + var itemModel = data.getItemModel(dataIndex); + var normalLabelModel = itemModel.getModel('label'); + var hoverLabelModel = itemModel.getModel('emphasis.label'); + var tickCoord = axis.dataToCoord(labelItem.tickValue); + var textEl = new Text({ + position: [tickCoord, 0], + rotation: layoutInfo.labelRotation - layoutInfo.rotation, + onclick: bind$4(this._changeTimeline, this, dataIndex), + silent: false + }); + setTextStyle(textEl.style, normalLabelModel, { + text: labelItem.formattedLabel, + textAlign: layoutInfo.labelAlign, + textVerticalAlign: layoutInfo.labelBaseline + }); + + group.add(textEl); + setHoverStyle( + textEl, setTextStyle({}, hoverLabelModel) + ); + + }, this); + }, + + /** + * @private + */ + _renderControl: function (layoutInfo, group, axis, timelineModel) { + var controlSize = layoutInfo.controlSize; + var rotation = layoutInfo.rotation; + + var itemStyle = timelineModel.getModel('controlStyle').getItemStyle(); + var hoverStyle = timelineModel.getModel('emphasis.controlStyle').getItemStyle(); + var rect = [0, -controlSize / 2, controlSize, controlSize]; + var playState = timelineModel.getPlayState(); + var inverse = timelineModel.get('inverse', true); + + makeBtn( + layoutInfo.nextBtnPosition, + 'controlStyle.nextIcon', + bind$4(this._changeTimeline, this, inverse ? '-' : '+') + ); + makeBtn( + layoutInfo.prevBtnPosition, + 'controlStyle.prevIcon', + bind$4(this._changeTimeline, this, inverse ? '+' : '-') + ); + makeBtn( + layoutInfo.playPosition, + 'controlStyle.' + (playState ? 'stopIcon' : 'playIcon'), + bind$4(this._handlePlayClick, this, !playState), + true + ); + + function makeBtn(position, iconPath, onclick, willRotate) { + if (!position) { + return; + } + var opt = { + position: position, + origin: [controlSize / 2, 0], + rotation: willRotate ? -rotation : 0, + rectHover: true, + style: itemStyle, + onclick: onclick + }; + var btn = makeIcon(timelineModel, iconPath, rect, opt); + group.add(btn); + setHoverStyle(btn, hoverStyle); + } + }, + + _renderCurrentPointer: function (layoutInfo, group, axis, timelineModel) { + var data = timelineModel.getData(); + var currentIndex = timelineModel.getCurrentIndex(); + var pointerModel = data.getItemModel(currentIndex).getModel('checkpointStyle'); + var me = this; + + var callback = { + onCreate: function (pointer) { + pointer.draggable = true; + pointer.drift = bind$4(me._handlePointerDrag, me); + pointer.ondragend = bind$4(me._handlePointerDragend, me); + pointerMoveTo(pointer, currentIndex, axis, timelineModel, true); + }, + onUpdate: function (pointer) { + pointerMoveTo(pointer, currentIndex, axis, timelineModel); + } + }; + + // Reuse when exists, for animation and drag. + this._currentPointer = giveSymbol( + pointerModel, pointerModel, this._mainGroup, {}, this._currentPointer, callback + ); + }, + + _handlePlayClick: function (nextState) { + this._clearTimer(); + this.api.dispatchAction({ + type: 'timelinePlayChange', + playState: nextState, + from: this.uid + }); + }, + + _handlePointerDrag: function (dx, dy, e) { + this._clearTimer(); + this._pointerChangeTimeline([e.offsetX, e.offsetY]); + }, + + _handlePointerDragend: function (e) { + this._pointerChangeTimeline([e.offsetX, e.offsetY], true); + }, + + _pointerChangeTimeline: function (mousePos, trigger) { + var toCoord = this._toAxisCoord(mousePos)[0]; + + var axis = this._axis; + var axisExtent = asc(axis.getExtent().slice()); + + toCoord > axisExtent[1] && (toCoord = axisExtent[1]); + toCoord < axisExtent[0] && (toCoord = axisExtent[0]); + + this._currentPointer.position[0] = toCoord; + this._currentPointer.dirty(); + + var targetDataIndex = this._findNearestTick(toCoord); + var timelineModel = this.model; + + if (trigger || ( + targetDataIndex !== timelineModel.getCurrentIndex() + && timelineModel.get('realtime') + )) { + this._changeTimeline(targetDataIndex); + } + }, + + _doPlayStop: function () { + this._clearTimer(); + + if (this.model.getPlayState()) { + this._timer = setTimeout( + bind$4(handleFrame, this), + this.model.get('playInterval') + ); + } + + function handleFrame() { + // Do not cache + var timelineModel = this.model; + this._changeTimeline( + timelineModel.getCurrentIndex() + + (timelineModel.get('rewind', true) ? -1 : 1) + ); + } + }, + + _toAxisCoord: function (vertex) { + var trans = this._mainGroup.getLocalTransform(); + return applyTransform$1(vertex, trans, true); + }, + + _findNearestTick: function (axisCoord) { + var data = this.model.getData(); + var dist = Infinity; + var targetDataIndex; + var axis = this._axis; + + data.each(['value'], function (value, dataIndex) { + var coord = axis.dataToCoord(value); + var d = Math.abs(coord - axisCoord); + if (d < dist) { + dist = d; + targetDataIndex = dataIndex; + } + }); + + return targetDataIndex; + }, + + _clearTimer: function () { + if (this._timer) { + clearTimeout(this._timer); + this._timer = null; + } + }, + + _changeTimeline: function (nextIndex) { + var currentIndex = this.model.getCurrentIndex(); + + if (nextIndex === '+') { + nextIndex = currentIndex + 1; + } + else if (nextIndex === '-') { + nextIndex = currentIndex - 1; + } + + this.api.dispatchAction({ + type: 'timelineChange', + currentIndex: nextIndex, + from: this.uid + }); + } + +}); + +function getViewRect$4(model, api) { + return getLayoutRect( + model.getBoxLayoutParams(), + { + width: api.getWidth(), + height: api.getHeight() + }, + model.get('padding') + ); +} + +function makeIcon(timelineModel, objPath, rect, opts) { + var icon = makePath( + timelineModel.get(objPath).replace(/^path:\/\//, ''), + clone(opts || {}), + new BoundingRect(rect[0], rect[1], rect[2], rect[3]), + 'center' + ); + + return icon; +} + +/** + * Create symbol or update symbol + * opt: basic position and event handlers + */ +function giveSymbol(hostModel, itemStyleModel, group, opt, symbol, callback) { + var color = itemStyleModel.get('color'); + + if (!symbol) { + var symbolType = hostModel.get('symbol'); + symbol = createSymbol(symbolType, -1, -1, 2, 2, color); + symbol.setStyle('strokeNoScale', true); + group.add(symbol); + callback && callback.onCreate(symbol); + } + else { + symbol.setColor(color); + group.add(symbol); // Group may be new, also need to add. + callback && callback.onUpdate(symbol); + } + + // Style + var itemStyle = itemStyleModel.getItemStyle(['color', 'symbol', 'symbolSize']); + symbol.setStyle(itemStyle); + + // Transform and events. + opt = merge({ + rectHover: true, + z2: 100 + }, opt, true); + + var symbolSize = hostModel.get('symbolSize'); + symbolSize = symbolSize instanceof Array + ? symbolSize.slice() + : [+symbolSize, +symbolSize]; + symbolSize[0] /= 2; + symbolSize[1] /= 2; + opt.scale = symbolSize; + + var symbolOffset = hostModel.get('symbolOffset'); + if (symbolOffset) { + var pos = opt.position = opt.position || [0, 0]; + pos[0] += parsePercent$1(symbolOffset[0], symbolSize[0]); + pos[1] += parsePercent$1(symbolOffset[1], symbolSize[1]); + } + + var symbolRotate = hostModel.get('symbolRotate'); + opt.rotation = (symbolRotate || 0) * Math.PI / 180 || 0; + + symbol.attr(opt); + + // FIXME + // (1) When symbol.style.strokeNoScale is true and updateTransform is not performed, + // getBoundingRect will return wrong result. + // (This is supposed to be resolved in zrender, but it is a little difficult to + // leverage performance and auto updateTransform) + // (2) All of ancesters of symbol do not scale, so we can just updateTransform symbol. + symbol.updateTransform(); + + return symbol; +} + +function pointerMoveTo(pointer, dataIndex, axis, timelineModel, noAnimation) { + if (pointer.dragging) { + return; + } + + var pointerModel = timelineModel.getModel('checkpointStyle'); + var toCoord = axis.dataToCoord(timelineModel.getData().get(['value'], dataIndex)); + + if (noAnimation || !pointerModel.get('animation', true)) { + pointer.attr({position: [toCoord, 0]}); + } + else { + pointer.stopAnimation(true); + pointer.animateTo( + {position: [toCoord, 0]}, + pointerModel.get('animationDuration', true), + pointerModel.get('animationEasing', true) + ); + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * DataZoom component entry + */ + +registerPreprocessor(preprocessor$2); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var addCommas$1 = addCommas; +var encodeHTML$1 = encodeHTML; + +function fillLabel(opt) { + defaultEmphasis(opt, 'label', ['show']); +} +var MarkerModel = extendComponentModel({ + + type: 'marker', + + dependencies: ['series', 'grid', 'polar', 'geo'], + + /** + * @overrite + */ + init: function (option, parentModel, ecModel, extraOpt) { + + if (__DEV__) { + if (this.type === 'marker') { + throw new Error('Marker component is abstract component. Use markLine, markPoint, markArea instead.'); + } + } + this.mergeDefaultAndTheme(option, ecModel); + this.mergeOption(option, ecModel, extraOpt.createdBySelf, true); + }, + + /** + * @return {boolean} + */ + isAnimationEnabled: function () { + if (env$1.node) { + return false; + } + + var hostSeries = this.__hostSeries; + return this.getShallow('animation') && hostSeries && hostSeries.isAnimationEnabled(); + }, + + mergeOption: function (newOpt, ecModel, createdBySelf, isInit) { + var MarkerModel = this.constructor; + var modelPropName = this.mainType + 'Model'; + if (!createdBySelf) { + ecModel.eachSeries(function (seriesModel) { + + var markerOpt = seriesModel.get(this.mainType, true); + + var markerModel = seriesModel[modelPropName]; + if (!markerOpt || !markerOpt.data) { + seriesModel[modelPropName] = null; + return; + } + if (!markerModel) { + if (isInit) { + // Default label emphasis `position` and `show` + fillLabel(markerOpt); + } + each$1(markerOpt.data, function (item) { + // FIXME Overwrite fillLabel method ? + if (item instanceof Array) { + fillLabel(item[0]); + fillLabel(item[1]); + } + else { + fillLabel(item); + } + }); + + markerModel = new MarkerModel( + markerOpt, this, ecModel + ); + + extend(markerModel, { + mainType: this.mainType, + // Use the same series index and name + seriesIndex: seriesModel.seriesIndex, + name: seriesModel.name, + createdBySelf: true + }); + + markerModel.__hostSeries = seriesModel; + } + else { + markerModel.mergeOption(markerOpt, ecModel, true); + } + seriesModel[modelPropName] = markerModel; + }, this); + } + }, + + formatTooltip: function (dataIndex) { + var data = this.getData(); + var value = this.getRawValue(dataIndex); + var formattedValue = isArray(value) + ? map(value, addCommas$1).join(', ') : addCommas$1(value); + var name = data.getName(dataIndex); + var html = encodeHTML$1(this.name); + if (value != null || name) { + html += '
    '; + } + if (name) { + html += encodeHTML$1(name); + if (value != null) { + html += ' : '; + } + } + if (value != null) { + html += encodeHTML$1(formattedValue); + } + return html; + }, + + getData: function () { + return this._data; + }, + + setData: function (data) { + this._data = data; + } +}); + +mixin(MarkerModel, dataFormatMixin); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +MarkerModel.extend({ + + type: 'markPoint', + + defaultOption: { + zlevel: 0, + z: 5, + symbol: 'pin', + symbolSize: 50, + //symbolRotate: 0, + //symbolOffset: [0, 0] + tooltip: { + trigger: 'item' + }, + label: { + show: true, + position: 'inside' + }, + itemStyle: { + borderWidth: 2 + }, + emphasis: { + label: { + show: true + } + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var indexOf$2 = indexOf; + +function hasXOrY(item) { + return !(isNaN(parseFloat(item.x)) && isNaN(parseFloat(item.y))); +} + +function hasXAndY(item) { + return !isNaN(parseFloat(item.x)) && !isNaN(parseFloat(item.y)); +} + +// Make it simple, do not visit all stacked value to count precision. +// function getPrecision(data, valueAxisDim, dataIndex) { +// var precision = -1; +// var stackedDim = data.mapDimension(valueAxisDim); +// do { +// precision = Math.max( +// numberUtil.getPrecision(data.get(stackedDim, dataIndex)), +// precision +// ); +// var stackedOnSeries = data.getCalculationInfo('stackedOnSeries'); +// if (stackedOnSeries) { +// var byValue = data.get(data.getCalculationInfo('stackedByDimension'), dataIndex); +// data = stackedOnSeries.getData(); +// dataIndex = data.indexOf(data.getCalculationInfo('stackedByDimension'), byValue); +// stackedDim = data.getCalculationInfo('stackedDimension'); +// } +// else { +// data = null; +// } +// } while (data); + +// return precision; +// } + +function markerTypeCalculatorWithExtent( + mlType, data, otherDataDim, targetDataDim, otherCoordIndex, targetCoordIndex +) { + var coordArr = []; + + var stacked = isDimensionStacked(data, targetDataDim /*, otherDataDim*/); + var calcDataDim = stacked + ? data.getCalculationInfo('stackResultDimension') + : targetDataDim; + + var value = numCalculate(data, calcDataDim, mlType); + + var dataIndex = data.indicesOfNearest(calcDataDim, value)[0]; + coordArr[otherCoordIndex] = data.get(otherDataDim, dataIndex); + coordArr[targetCoordIndex] = data.get(targetDataDim, dataIndex); + + // Make it simple, do not visit all stacked value to count precision. + var precision = getPrecision(data.get(targetDataDim, dataIndex)); + precision = Math.min(precision, 20); + if (precision >= 0) { + coordArr[targetCoordIndex] = +coordArr[targetCoordIndex].toFixed(precision); + } + + return coordArr; +} + +var curry$5 = curry; +// TODO Specified percent +var markerTypeCalculator = { + /** + * @method + * @param {module:echarts/data/List} data + * @param {string} baseAxisDim + * @param {string} valueAxisDim + */ + min: curry$5(markerTypeCalculatorWithExtent, 'min'), + /** + * @method + * @param {module:echarts/data/List} data + * @param {string} baseAxisDim + * @param {string} valueAxisDim + */ + max: curry$5(markerTypeCalculatorWithExtent, 'max'), + + /** + * @method + * @param {module:echarts/data/List} data + * @param {string} baseAxisDim + * @param {string} valueAxisDim + */ + average: curry$5(markerTypeCalculatorWithExtent, 'average') +}; + +/** + * Transform markPoint data item to format used in List by do the following + * 1. Calculate statistic like `max`, `min`, `average` + * 2. Convert `item.xAxis`, `item.yAxis` to `item.coord` array + * @param {module:echarts/model/Series} seriesModel + * @param {module:echarts/coord/*} [coordSys] + * @param {Object} item + * @return {Object} + */ +function dataTransform(seriesModel, item) { + var data = seriesModel.getData(); + var coordSys = seriesModel.coordinateSystem; + + // 1. If not specify the position with pixel directly + // 2. If `coord` is not a data array. Which uses `xAxis`, + // `yAxis` to specify the coord on each dimension + + // parseFloat first because item.x and item.y can be percent string like '20%' + if (item && !hasXAndY(item) && !isArray(item.coord) && coordSys) { + var dims = coordSys.dimensions; + var axisInfo = getAxisInfo$1(item, data, coordSys, seriesModel); + + // Clone the option + // Transform the properties xAxis, yAxis, radiusAxis, angleAxis, geoCoord to value + item = clone(item); + + if (item.type + && markerTypeCalculator[item.type] + && axisInfo.baseAxis && axisInfo.valueAxis + ) { + var otherCoordIndex = indexOf$2(dims, axisInfo.baseAxis.dim); + var targetCoordIndex = indexOf$2(dims, axisInfo.valueAxis.dim); + + item.coord = markerTypeCalculator[item.type]( + data, axisInfo.baseDataDim, axisInfo.valueDataDim, + otherCoordIndex, targetCoordIndex + ); + // Force to use the value of calculated value. + item.value = item.coord[targetCoordIndex]; + } + else { + // FIXME Only has one of xAxis and yAxis. + var coord = [ + item.xAxis != null ? item.xAxis : item.radiusAxis, + item.yAxis != null ? item.yAxis : item.angleAxis + ]; + // Each coord support max, min, average + for (var i = 0; i < 2; i++) { + if (markerTypeCalculator[coord[i]]) { + coord[i] = numCalculate(data, data.mapDimension(dims[i]), coord[i]); + } + } + item.coord = coord; + } + } + return item; +} + +function getAxisInfo$1(item, data, coordSys, seriesModel) { + var ret = {}; + + if (item.valueIndex != null || item.valueDim != null) { + ret.valueDataDim = item.valueIndex != null + ? data.getDimension(item.valueIndex) : item.valueDim; + ret.valueAxis = coordSys.getAxis(dataDimToCoordDim(seriesModel, ret.valueDataDim)); + ret.baseAxis = coordSys.getOtherAxis(ret.valueAxis); + ret.baseDataDim = data.mapDimension(ret.baseAxis.dim); + } + else { + ret.baseAxis = seriesModel.getBaseAxis(); + ret.valueAxis = coordSys.getOtherAxis(ret.baseAxis); + ret.baseDataDim = data.mapDimension(ret.baseAxis.dim); + ret.valueDataDim = data.mapDimension(ret.valueAxis.dim); + } + + return ret; +} + +function dataDimToCoordDim(seriesModel, dataDim) { + var data = seriesModel.getData(); + var dimensions = data.dimensions; + dataDim = data.getDimension(dataDim); + for (var i = 0; i < dimensions.length; i++) { + var dimItem = data.getDimensionInfo(dimensions[i]); + if (dimItem.name === dataDim) { + return dimItem.coordDim; + } + } +} + +/** + * Filter data which is out of coordinateSystem range + * [dataFilter description] + * @param {module:echarts/coord/*} [coordSys] + * @param {Object} item + * @return {boolean} + */ +function dataFilter$1(coordSys, item) { + // Alwalys return true if there is no coordSys + return (coordSys && coordSys.containData && item.coord && !hasXOrY(item)) + ? coordSys.containData(item.coord) : true; +} + +function dimValueGetter(item, dimName, dataIndex, dimIndex) { + // x, y, radius, angle + if (dimIndex < 2) { + return item.coord && item.coord[dimIndex]; + } + return item.value; +} + +function numCalculate(data, valueDataDim, type) { + if (type === 'average') { + var sum = 0; + var count = 0; + data.each(valueDataDim, function (val, idx) { + if (!isNaN(val)) { + sum += val; + count++; + } + }); + return sum / count; + } + else if (type === 'median') { + return data.getMedian(valueDataDim); + } + else { + // max & min + return data.getDataExtent(valueDataDim, true)[type === 'max' ? 1 : 0]; + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var MarkerView = extendComponentView({ + + type: 'marker', + + init: function () { + /** + * Markline grouped by series + * @private + * @type {module:zrender/core/util.HashMap} + */ + this.markerGroupMap = createHashMap(); + }, + + render: function (markerModel, ecModel, api) { + var markerGroupMap = this.markerGroupMap; + markerGroupMap.each(function (item) { + item.__keep = false; + }); + + var markerModelKey = this.type + 'Model'; + ecModel.eachSeries(function (seriesModel) { + var markerModel = seriesModel[markerModelKey]; + markerModel && this.renderSeries(seriesModel, markerModel, ecModel, api); + }, this); + + markerGroupMap.each(function (item) { + !item.__keep && this.group.remove(item.group); + }, this); + }, + + renderSeries: function () {} +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function updateMarkerLayout(mpData, seriesModel, api) { + var coordSys = seriesModel.coordinateSystem; + mpData.each(function (idx) { + var itemModel = mpData.getItemModel(idx); + var point; + var xPx = parsePercent$1(itemModel.get('x'), api.getWidth()); + var yPx = parsePercent$1(itemModel.get('y'), api.getHeight()); + if (!isNaN(xPx) && !isNaN(yPx)) { + point = [xPx, yPx]; + } + // Chart like bar may have there own marker positioning logic + else if (seriesModel.getMarkerPosition) { + // Use the getMarkerPoisition + point = seriesModel.getMarkerPosition( + mpData.getValues(mpData.dimensions, idx) + ); + } + else if (coordSys) { + var x = mpData.get(coordSys.dimensions[0], idx); + var y = mpData.get(coordSys.dimensions[1], idx); + point = coordSys.dataToPoint([x, y]); + + } + + // Use x, y if has any + if (!isNaN(xPx)) { + point[0] = xPx; + } + if (!isNaN(yPx)) { + point[1] = yPx; + } + + mpData.setItemLayout(idx, point); + }); +} + +MarkerView.extend({ + + type: 'markPoint', + + // updateLayout: function (markPointModel, ecModel, api) { + // ecModel.eachSeries(function (seriesModel) { + // var mpModel = seriesModel.markPointModel; + // if (mpModel) { + // updateMarkerLayout(mpModel.getData(), seriesModel, api); + // this.markerGroupMap.get(seriesModel.id).updateLayout(mpModel); + // } + // }, this); + // }, + + updateTransform: function (markPointModel, ecModel, api) { + ecModel.eachSeries(function (seriesModel) { + var mpModel = seriesModel.markPointModel; + if (mpModel) { + updateMarkerLayout(mpModel.getData(), seriesModel, api); + this.markerGroupMap.get(seriesModel.id).updateLayout(mpModel); + } + }, this); + }, + + renderSeries: function (seriesModel, mpModel, ecModel, api) { + var coordSys = seriesModel.coordinateSystem; + var seriesId = seriesModel.id; + var seriesData = seriesModel.getData(); + + var symbolDrawMap = this.markerGroupMap; + var symbolDraw = symbolDrawMap.get(seriesId) + || symbolDrawMap.set(seriesId, new SymbolDraw()); + + var mpData = createList$1(coordSys, seriesModel, mpModel); + + // FIXME + mpModel.setData(mpData); + + updateMarkerLayout(mpModel.getData(), seriesModel, api); + + mpData.each(function (idx) { + var itemModel = mpData.getItemModel(idx); + var symbol = itemModel.getShallow('symbol'); + var symbolSize = itemModel.getShallow('symbolSize'); + var isFnSymbol = isFunction$1(symbol); + var isFnSymbolSize = isFunction$1(symbolSize); + + if (isFnSymbol || isFnSymbolSize) { + var rawIdx = mpModel.getRawValue(idx); + var dataParams = mpModel.getDataParams(idx); + if (isFnSymbol) { + symbol = symbol(rawIdx, dataParams); + } + if (isFnSymbolSize) { + // FIXME 这里不兼容 ECharts 2.x,2.x 貌似参数是整个数据? + symbolSize = symbolSize(rawIdx, dataParams); + } + } + + mpData.setItemVisual(idx, { + symbol: symbol, + symbolSize: symbolSize, + color: itemModel.get('itemStyle.color') + || seriesData.getVisual('color') + }); + }); + + // TODO Text are wrong + symbolDraw.updateData(mpData); + this.group.add(symbolDraw.group); + + // Set host model for tooltip + // FIXME + mpData.eachItemGraphicEl(function (el) { + el.traverse(function (child) { + child.dataModel = mpModel; + }); + }); + + symbolDraw.__keep = true; + + symbolDraw.group.silent = mpModel.get('silent') || seriesModel.get('silent'); + } +}); + +/** + * @inner + * @param {module:echarts/coord/*} [coordSys] + * @param {module:echarts/model/Series} seriesModel + * @param {module:echarts/model/Model} mpModel + */ +function createList$1(coordSys, seriesModel, mpModel) { + var coordDimsInfos; + if (coordSys) { + coordDimsInfos = map(coordSys && coordSys.dimensions, function (coordDim) { + var info = seriesModel.getData().getDimensionInfo( + seriesModel.getData().mapDimension(coordDim) + ) || {}; + // In map series data don't have lng and lat dimension. Fallback to same with coordSys + return defaults({name: coordDim}, info); + }); + } + else { + coordDimsInfos = [{ + name: 'value', + type: 'float' + }]; + } + + var mpData = new List(coordDimsInfos, mpModel); + var dataOpt = map(mpModel.get('data'), curry( + dataTransform, seriesModel + )); + if (coordSys) { + dataOpt = filter( + dataOpt, curry(dataFilter$1, coordSys) + ); + } + + mpData.initData(dataOpt, null, + coordSys ? dimValueGetter : function (item) { + return item.value; + } + ); + + return mpData; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// HINT Markpoint can't be used too much +registerPreprocessor(function (opt) { + // Make sure markPoint component is enabled + opt.markPoint = opt.markPoint || {}; +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +MarkerModel.extend({ + + type: 'markLine', + + defaultOption: { + zlevel: 0, + z: 5, + + symbol: ['circle', 'arrow'], + symbolSize: [8, 16], + + //symbolRotate: 0, + + precision: 2, + tooltip: { + trigger: 'item' + }, + label: { + show: true, + position: 'end' + }, + lineStyle: { + type: 'dashed' + }, + emphasis: { + label: { + show: true + }, + lineStyle: { + width: 3 + } + }, + animationEasing: 'linear' + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var markLineTransform = function (seriesModel, coordSys, mlModel, item) { + var data = seriesModel.getData(); + // Special type markLine like 'min', 'max', 'average', 'median' + var mlType = item.type; + + if (!isArray(item) + && ( + mlType === 'min' || mlType === 'max' || mlType === 'average' || mlType === 'median' + // In case + // data: [{ + // yAxis: 10 + // }] + || (item.xAxis != null || item.yAxis != null) + ) + ) { + var valueAxis; + var value; + + if (item.yAxis != null || item.xAxis != null) { + valueAxis = coordSys.getAxis(item.yAxis != null ? 'y' : 'x'); + value = retrieve(item.yAxis, item.xAxis); + } + else { + var axisInfo = getAxisInfo$1(item, data, coordSys, seriesModel); + valueAxis = axisInfo.valueAxis; + var valueDataDim = getStackedDimension(data, axisInfo.valueDataDim); + value = numCalculate(data, valueDataDim, mlType); + } + var valueIndex = valueAxis.dim === 'x' ? 0 : 1; + var baseIndex = 1 - valueIndex; + + var mlFrom = clone(item); + var mlTo = {}; + + mlFrom.type = null; + + mlFrom.coord = []; + mlTo.coord = []; + mlFrom.coord[baseIndex] = -Infinity; + mlTo.coord[baseIndex] = Infinity; + + var precision = mlModel.get('precision'); + if (precision >= 0 && typeof value === 'number') { + value = +value.toFixed(Math.min(precision, 20)); + } + + mlFrom.coord[valueIndex] = mlTo.coord[valueIndex] = value; + + item = [mlFrom, mlTo, { // Extra option for tooltip and label + type: mlType, + valueIndex: item.valueIndex, + // Force to use the value of calculated value. + value: value + }]; + } + + item = [ + dataTransform(seriesModel, item[0]), + dataTransform(seriesModel, item[1]), + extend({}, item[2]) + ]; + + // Avoid line data type is extended by from(to) data type + item[2].type = item[2].type || ''; + + // Merge from option and to option into line option + merge(item[2], item[0]); + merge(item[2], item[1]); + + return item; +}; + +function isInifinity(val) { + return !isNaN(val) && !isFinite(val); +} + +// If a markLine has one dim +function ifMarkLineHasOnlyDim(dimIndex, fromCoord, toCoord, coordSys) { + var otherDimIndex = 1 - dimIndex; + var dimName = coordSys.dimensions[dimIndex]; + return isInifinity(fromCoord[otherDimIndex]) && isInifinity(toCoord[otherDimIndex]) + && fromCoord[dimIndex] === toCoord[dimIndex] && coordSys.getAxis(dimName).containData(fromCoord[dimIndex]); +} + +function markLineFilter(coordSys, item) { + if (coordSys.type === 'cartesian2d') { + var fromCoord = item[0].coord; + var toCoord = item[1].coord; + // In case + // { + // markLine: { + // data: [{ yAxis: 2 }] + // } + // } + if ( + fromCoord && toCoord + && (ifMarkLineHasOnlyDim(1, fromCoord, toCoord, coordSys) + || ifMarkLineHasOnlyDim(0, fromCoord, toCoord, coordSys)) + ) { + return true; + } + } + return dataFilter$1(coordSys, item[0]) + && dataFilter$1(coordSys, item[1]); +} + +function updateSingleMarkerEndLayout( + data, idx, isFrom, seriesModel, api +) { + var coordSys = seriesModel.coordinateSystem; + var itemModel = data.getItemModel(idx); + + var point; + var xPx = parsePercent$1(itemModel.get('x'), api.getWidth()); + var yPx = parsePercent$1(itemModel.get('y'), api.getHeight()); + if (!isNaN(xPx) && !isNaN(yPx)) { + point = [xPx, yPx]; + } + else { + // Chart like bar may have there own marker positioning logic + if (seriesModel.getMarkerPosition) { + // Use the getMarkerPoisition + point = seriesModel.getMarkerPosition( + data.getValues(data.dimensions, idx) + ); + } + else { + var dims = coordSys.dimensions; + var x = data.get(dims[0], idx); + var y = data.get(dims[1], idx); + point = coordSys.dataToPoint([x, y]); + } + // Expand line to the edge of grid if value on one axis is Inifnity + // In case + // markLine: { + // data: [{ + // yAxis: 2 + // // or + // type: 'average' + // }] + // } + if (coordSys.type === 'cartesian2d') { + var xAxis = coordSys.getAxis('x'); + var yAxis = coordSys.getAxis('y'); + var dims = coordSys.dimensions; + if (isInifinity(data.get(dims[0], idx))) { + point[0] = xAxis.toGlobalCoord(xAxis.getExtent()[isFrom ? 0 : 1]); + } + else if (isInifinity(data.get(dims[1], idx))) { + point[1] = yAxis.toGlobalCoord(yAxis.getExtent()[isFrom ? 0 : 1]); + } + } + + // Use x, y if has any + if (!isNaN(xPx)) { + point[0] = xPx; + } + if (!isNaN(yPx)) { + point[1] = yPx; + } + } + + data.setItemLayout(idx, point); +} + +MarkerView.extend({ + + type: 'markLine', + + // updateLayout: function (markLineModel, ecModel, api) { + // ecModel.eachSeries(function (seriesModel) { + // var mlModel = seriesModel.markLineModel; + // if (mlModel) { + // var mlData = mlModel.getData(); + // var fromData = mlModel.__from; + // var toData = mlModel.__to; + // // Update visual and layout of from symbol and to symbol + // fromData.each(function (idx) { + // updateSingleMarkerEndLayout(fromData, idx, true, seriesModel, api); + // updateSingleMarkerEndLayout(toData, idx, false, seriesModel, api); + // }); + // // Update layout of line + // mlData.each(function (idx) { + // mlData.setItemLayout(idx, [ + // fromData.getItemLayout(idx), + // toData.getItemLayout(idx) + // ]); + // }); + + // this.markerGroupMap.get(seriesModel.id).updateLayout(); + + // } + // }, this); + // }, + + updateTransform: function (markLineModel, ecModel, api) { + ecModel.eachSeries(function (seriesModel) { + var mlModel = seriesModel.markLineModel; + if (mlModel) { + var mlData = mlModel.getData(); + var fromData = mlModel.__from; + var toData = mlModel.__to; + // Update visual and layout of from symbol and to symbol + fromData.each(function (idx) { + updateSingleMarkerEndLayout(fromData, idx, true, seriesModel, api); + updateSingleMarkerEndLayout(toData, idx, false, seriesModel, api); + }); + // Update layout of line + mlData.each(function (idx) { + mlData.setItemLayout(idx, [ + fromData.getItemLayout(idx), + toData.getItemLayout(idx) + ]); + }); + + this.markerGroupMap.get(seriesModel.id).updateLayout(); + + } + }, this); + }, + + renderSeries: function (seriesModel, mlModel, ecModel, api) { + var coordSys = seriesModel.coordinateSystem; + var seriesId = seriesModel.id; + var seriesData = seriesModel.getData(); + + var lineDrawMap = this.markerGroupMap; + var lineDraw = lineDrawMap.get(seriesId) + || lineDrawMap.set(seriesId, new LineDraw()); + this.group.add(lineDraw.group); + + var mlData = createList$2(coordSys, seriesModel, mlModel); + + var fromData = mlData.from; + var toData = mlData.to; + var lineData = mlData.line; + + mlModel.__from = fromData; + mlModel.__to = toData; + // Line data for tooltip and formatter + mlModel.setData(lineData); + + var symbolType = mlModel.get('symbol'); + var symbolSize = mlModel.get('symbolSize'); + if (!isArray(symbolType)) { + symbolType = [symbolType, symbolType]; + } + if (typeof symbolSize === 'number') { + symbolSize = [symbolSize, symbolSize]; + } + + // Update visual and layout of from symbol and to symbol + mlData.from.each(function (idx) { + updateDataVisualAndLayout(fromData, idx, true); + updateDataVisualAndLayout(toData, idx, false); + }); + + // Update visual and layout of line + lineData.each(function (idx) { + var lineColor = lineData.getItemModel(idx).get('lineStyle.color'); + lineData.setItemVisual(idx, { + color: lineColor || fromData.getItemVisual(idx, 'color') + }); + lineData.setItemLayout(idx, [ + fromData.getItemLayout(idx), + toData.getItemLayout(idx) + ]); + + lineData.setItemVisual(idx, { + 'fromSymbolSize': fromData.getItemVisual(idx, 'symbolSize'), + 'fromSymbol': fromData.getItemVisual(idx, 'symbol'), + 'toSymbolSize': toData.getItemVisual(idx, 'symbolSize'), + 'toSymbol': toData.getItemVisual(idx, 'symbol') + }); + }); + + lineDraw.updateData(lineData); + + // Set host model for tooltip + // FIXME + mlData.line.eachItemGraphicEl(function (el, idx) { + el.traverse(function (child) { + child.dataModel = mlModel; + }); + }); + + function updateDataVisualAndLayout(data, idx, isFrom) { + var itemModel = data.getItemModel(idx); + + updateSingleMarkerEndLayout( + data, idx, isFrom, seriesModel, api + ); + + data.setItemVisual(idx, { + symbolSize: itemModel.get('symbolSize') || symbolSize[isFrom ? 0 : 1], + symbol: itemModel.get('symbol', true) || symbolType[isFrom ? 0 : 1], + color: itemModel.get('itemStyle.color') || seriesData.getVisual('color') + }); + } + + lineDraw.__keep = true; + + lineDraw.group.silent = mlModel.get('silent') || seriesModel.get('silent'); + } +}); + +/** + * @inner + * @param {module:echarts/coord/*} coordSys + * @param {module:echarts/model/Series} seriesModel + * @param {module:echarts/model/Model} mpModel + */ +function createList$2(coordSys, seriesModel, mlModel) { + + var coordDimsInfos; + if (coordSys) { + coordDimsInfos = map(coordSys && coordSys.dimensions, function (coordDim) { + var info = seriesModel.getData().getDimensionInfo( + seriesModel.getData().mapDimension(coordDim) + ) || {}; + // In map series data don't have lng and lat dimension. Fallback to same with coordSys + return defaults({name: coordDim}, info); + }); + } + else { + coordDimsInfos = [{ + name: 'value', + type: 'float' + }]; + } + + var fromData = new List(coordDimsInfos, mlModel); + var toData = new List(coordDimsInfos, mlModel); + // No dimensions + var lineData = new List([], mlModel); + + var optData = map(mlModel.get('data'), curry( + markLineTransform, seriesModel, coordSys, mlModel + )); + if (coordSys) { + optData = filter( + optData, curry(markLineFilter, coordSys) + ); + } + var dimValueGetter$$1 = coordSys ? dimValueGetter : function (item) { + return item.value; + }; + fromData.initData( + map(optData, function (item) { + return item[0]; + }), + null, + dimValueGetter$$1 + ); + toData.initData( + map(optData, function (item) { + return item[1]; + }), + null, + dimValueGetter$$1 + ); + lineData.initData( + map(optData, function (item) { + return item[2]; + }) + ); + lineData.hasItemOption = true; + + return { + from: fromData, + to: toData, + line: lineData + }; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerPreprocessor(function (opt) { + // Make sure markLine component is enabled + opt.markLine = opt.markLine || {}; +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +MarkerModel.extend({ + + type: 'markArea', + + defaultOption: { + zlevel: 0, + // PENDING + z: 1, + tooltip: { + trigger: 'item' + }, + // markArea should fixed on the coordinate system + animation: false, + label: { + show: true, + position: 'top' + }, + itemStyle: { + // color and borderColor default to use color from series + // color: 'auto' + // borderColor: 'auto' + borderWidth: 0 + }, + + emphasis: { + label: { + show: true, + position: 'top' + } + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// TODO Better on polar + +var markAreaTransform = function (seriesModel, coordSys, maModel, item) { + var lt = dataTransform(seriesModel, item[0]); + var rb = dataTransform(seriesModel, item[1]); + var retrieve$$1 = retrieve; + + // FIXME make sure lt is less than rb + var ltCoord = lt.coord; + var rbCoord = rb.coord; + ltCoord[0] = retrieve$$1(ltCoord[0], -Infinity); + ltCoord[1] = retrieve$$1(ltCoord[1], -Infinity); + + rbCoord[0] = retrieve$$1(rbCoord[0], Infinity); + rbCoord[1] = retrieve$$1(rbCoord[1], Infinity); + + // Merge option into one + var result = mergeAll([{}, lt, rb]); + + result.coord = [ + lt.coord, rb.coord + ]; + result.x0 = lt.x; + result.y0 = lt.y; + result.x1 = rb.x; + result.y1 = rb.y; + return result; +}; + +function isInifinity$1(val) { + return !isNaN(val) && !isFinite(val); +} + +// If a markArea has one dim +function ifMarkLineHasOnlyDim$1(dimIndex, fromCoord, toCoord, coordSys) { + var otherDimIndex = 1 - dimIndex; + return isInifinity$1(fromCoord[otherDimIndex]) && isInifinity$1(toCoord[otherDimIndex]); +} + +function markAreaFilter(coordSys, item) { + var fromCoord = item.coord[0]; + var toCoord = item.coord[1]; + if (coordSys.type === 'cartesian2d') { + // In case + // { + // markArea: { + // data: [{ yAxis: 2 }] + // } + // } + if ( + fromCoord && toCoord + && (ifMarkLineHasOnlyDim$1(1, fromCoord, toCoord, coordSys) + || ifMarkLineHasOnlyDim$1(0, fromCoord, toCoord, coordSys)) + ) { + return true; + } + } + return dataFilter$1(coordSys, { + coord: fromCoord, + x: item.x0, + y: item.y0 + }) + || dataFilter$1(coordSys, { + coord: toCoord, + x: item.x1, + y: item.y1 + }); +} + +// dims can be ['x0', 'y0'], ['x1', 'y1'], ['x0', 'y1'], ['x1', 'y0'] +function getSingleMarkerEndPoint(data, idx, dims, seriesModel, api) { + var coordSys = seriesModel.coordinateSystem; + var itemModel = data.getItemModel(idx); + + var point; + var xPx = parsePercent$1(itemModel.get(dims[0]), api.getWidth()); + var yPx = parsePercent$1(itemModel.get(dims[1]), api.getHeight()); + if (!isNaN(xPx) && !isNaN(yPx)) { + point = [xPx, yPx]; + } + else { + // Chart like bar may have there own marker positioning logic + if (seriesModel.getMarkerPosition) { + // Use the getMarkerPoisition + point = seriesModel.getMarkerPosition( + data.getValues(dims, idx) + ); + } + else { + var x = data.get(dims[0], idx); + var y = data.get(dims[1], idx); + var pt = [x, y]; + coordSys.clampData && coordSys.clampData(pt, pt); + point = coordSys.dataToPoint(pt, true); + } + if (coordSys.type === 'cartesian2d') { + var xAxis = coordSys.getAxis('x'); + var yAxis = coordSys.getAxis('y'); + var x = data.get(dims[0], idx); + var y = data.get(dims[1], idx); + if (isInifinity$1(x)) { + point[0] = xAxis.toGlobalCoord(xAxis.getExtent()[dims[0] === 'x0' ? 0 : 1]); + } + else if (isInifinity$1(y)) { + point[1] = yAxis.toGlobalCoord(yAxis.getExtent()[dims[1] === 'y0' ? 0 : 1]); + } + } + + // Use x, y if has any + if (!isNaN(xPx)) { + point[0] = xPx; + } + if (!isNaN(yPx)) { + point[1] = yPx; + } + } + + return point; +} + +var dimPermutations = [['x0', 'y0'], ['x1', 'y0'], ['x1', 'y1'], ['x0', 'y1']]; + +MarkerView.extend({ + + type: 'markArea', + + // updateLayout: function (markAreaModel, ecModel, api) { + // ecModel.eachSeries(function (seriesModel) { + // var maModel = seriesModel.markAreaModel; + // if (maModel) { + // var areaData = maModel.getData(); + // areaData.each(function (idx) { + // var points = zrUtil.map(dimPermutations, function (dim) { + // return getSingleMarkerEndPoint(areaData, idx, dim, seriesModel, api); + // }); + // // Layout + // areaData.setItemLayout(idx, points); + // var el = areaData.getItemGraphicEl(idx); + // el.setShape('points', points); + // }); + // } + // }, this); + // }, + + updateTransform: function (markAreaModel, ecModel, api) { + ecModel.eachSeries(function (seriesModel) { + var maModel = seriesModel.markAreaModel; + if (maModel) { + var areaData = maModel.getData(); + areaData.each(function (idx) { + var points = map(dimPermutations, function (dim) { + return getSingleMarkerEndPoint(areaData, idx, dim, seriesModel, api); + }); + // Layout + areaData.setItemLayout(idx, points); + var el = areaData.getItemGraphicEl(idx); + el.setShape('points', points); + }); + } + }, this); + }, + + renderSeries: function (seriesModel, maModel, ecModel, api) { + var coordSys = seriesModel.coordinateSystem; + var seriesId = seriesModel.id; + var seriesData = seriesModel.getData(); + + var areaGroupMap = this.markerGroupMap; + var polygonGroup = areaGroupMap.get(seriesId) + || areaGroupMap.set(seriesId, {group: new Group()}); + + this.group.add(polygonGroup.group); + polygonGroup.__keep = true; + + var areaData = createList$3(coordSys, seriesModel, maModel); + + // Line data for tooltip and formatter + maModel.setData(areaData); + + // Update visual and layout of line + areaData.each(function (idx) { + // Layout + areaData.setItemLayout(idx, map(dimPermutations, function (dim) { + return getSingleMarkerEndPoint(areaData, idx, dim, seriesModel, api); + })); + + // Visual + areaData.setItemVisual(idx, { + color: seriesData.getVisual('color') + }); + }); + + + areaData.diff(polygonGroup.__data) + .add(function (idx) { + var polygon = new Polygon({ + shape: { + points: areaData.getItemLayout(idx) + } + }); + areaData.setItemGraphicEl(idx, polygon); + polygonGroup.group.add(polygon); + }) + .update(function (newIdx, oldIdx) { + var polygon = polygonGroup.__data.getItemGraphicEl(oldIdx); + updateProps(polygon, { + shape: { + points: areaData.getItemLayout(newIdx) + } + }, maModel, newIdx); + polygonGroup.group.add(polygon); + areaData.setItemGraphicEl(newIdx, polygon); + }) + .remove(function (idx) { + var polygon = polygonGroup.__data.getItemGraphicEl(idx); + polygonGroup.group.remove(polygon); + }) + .execute(); + + areaData.eachItemGraphicEl(function (polygon, idx) { + var itemModel = areaData.getItemModel(idx); + var labelModel = itemModel.getModel('label'); + var labelHoverModel = itemModel.getModel('emphasis.label'); + var color = areaData.getItemVisual(idx, 'color'); + polygon.useStyle( + defaults( + itemModel.getModel('itemStyle').getItemStyle(), + { + fill: modifyAlpha(color, 0.4), + stroke: color + } + ) + ); + + polygon.hoverStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle(); + + setLabelStyle( + polygon.style, polygon.hoverStyle, labelModel, labelHoverModel, + { + labelFetcher: maModel, + labelDataIndex: idx, + defaultText: areaData.getName(idx) || '', + isRectText: true, + autoColor: color + } + ); + + setHoverStyle(polygon, {}); + + polygon.dataModel = maModel; + }); + + polygonGroup.__data = areaData; + + polygonGroup.group.silent = maModel.get('silent') || seriesModel.get('silent'); + } +}); + +/** + * @inner + * @param {module:echarts/coord/*} coordSys + * @param {module:echarts/model/Series} seriesModel + * @param {module:echarts/model/Model} mpModel + */ +function createList$3(coordSys, seriesModel, maModel) { + + var coordDimsInfos; + var areaData; + var dims = ['x0', 'y0', 'x1', 'y1']; + if (coordSys) { + coordDimsInfos = map(coordSys && coordSys.dimensions, function (coordDim) { + var data = seriesModel.getData(); + var info = data.getDimensionInfo( + data.mapDimension(coordDim) + ) || {}; + // In map series data don't have lng and lat dimension. Fallback to same with coordSys + return defaults({name: coordDim}, info); + }); + areaData = new List(map(dims, function (dim, idx) { + return { + name: dim, + type: coordDimsInfos[idx % 2].type + }; + }), maModel); + } + else { + coordDimsInfos = [{ + name: 'value', + type: 'float' + }]; + areaData = new List(coordDimsInfos, maModel); + } + + var optData = map(maModel.get('data'), curry( + markAreaTransform, seriesModel, coordSys, maModel + )); + if (coordSys) { + optData = filter( + optData, curry(markAreaFilter, coordSys) + ); + } + + var dimValueGetter$$1 = coordSys ? function (item, dimName, dataIndex, dimIndex) { + return item.coord[Math.floor(dimIndex / 2)][dimIndex % 2]; + } : function (item) { + return item.value; + }; + areaData.initData(optData, null, dimValueGetter$$1); + areaData.hasItemOption = true; + return areaData; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +registerPreprocessor(function (opt) { + // Make sure markArea component is enabled + opt.markArea = opt.markArea || {}; +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var LegendModel = extendComponentModel({ + + type: 'legend.plain', + + dependencies: ['series'], + + layoutMode: { + type: 'box', + // legend.width/height are maxWidth/maxHeight actually, + // whereas realy width/height is calculated by its content. + // (Setting {left: 10, right: 10} does not make sense). + // So consider the case: + // `setOption({legend: {left: 10});` + // then `setOption({legend: {right: 10});` + // The previous `left` should be cleared by setting `ignoreSize`. + ignoreSize: true + }, + + init: function (option, parentModel, ecModel) { + this.mergeDefaultAndTheme(option, ecModel); + + option.selected = option.selected || {}; + }, + + mergeOption: function (option) { + LegendModel.superCall(this, 'mergeOption', option); + }, + + optionUpdated: function () { + this._updateData(this.ecModel); + + var legendData = this._data; + + // If selectedMode is single, try to select one + if (legendData[0] && this.get('selectedMode') === 'single') { + var hasSelected = false; + // If has any selected in option.selected + for (var i = 0; i < legendData.length; i++) { + var name = legendData[i].get('name'); + if (this.isSelected(name)) { + // Force to unselect others + this.select(name); + hasSelected = true; + break; + } + } + // Try select the first if selectedMode is single + !hasSelected && this.select(legendData[0].get('name')); + } + }, + + _updateData: function (ecModel) { + var potentialData = []; + var availableNames = []; + + ecModel.eachRawSeries(function (seriesModel) { + var seriesName = seriesModel.name; + availableNames.push(seriesName); + var isPotential; + + if (seriesModel.legendDataProvider) { + var data = seriesModel.legendDataProvider(); + var names = data.mapArray(data.getName); + + if (!ecModel.isSeriesFiltered(seriesModel)) { + availableNames = availableNames.concat(names); + } + + if (names.length) { + potentialData = potentialData.concat(names); + } + else { + isPotential = true; + } + } + else { + isPotential = true; + } + + if (isPotential && isNameSpecified(seriesModel)) { + potentialData.push(seriesModel.name); + } + }); + + /** + * @type {Array.} + * @private + */ + this._availableNames = availableNames; + + // If legend.data not specified in option, use availableNames as data, + // which is convinient for user preparing option. + var rawData = this.get('data') || potentialData; + + var legendData = map(rawData, function (dataItem) { + // Can be string or number + if (typeof dataItem === 'string' || typeof dataItem === 'number') { + dataItem = { + name: dataItem + }; + } + return new Model(dataItem, this, this.ecModel); + }, this); + + /** + * @type {Array.} + * @private + */ + this._data = legendData; + }, + + /** + * @return {Array.} + */ + getData: function () { + return this._data; + }, + + /** + * @param {string} name + */ + select: function (name) { + var selected = this.option.selected; + var selectedMode = this.get('selectedMode'); + if (selectedMode === 'single') { + var data = this._data; + each$1(data, function (dataItem) { + selected[dataItem.get('name')] = false; + }); + } + selected[name] = true; + }, + + /** + * @param {string} name + */ + unSelect: function (name) { + if (this.get('selectedMode') !== 'single') { + this.option.selected[name] = false; + } + }, + + /** + * @param {string} name + */ + toggleSelected: function (name) { + var selected = this.option.selected; + // Default is true + if (!selected.hasOwnProperty(name)) { + selected[name] = true; + } + this[selected[name] ? 'unSelect' : 'select'](name); + }, + + /** + * @param {string} name + */ + isSelected: function (name) { + var selected = this.option.selected; + return !(selected.hasOwnProperty(name) && !selected[name]) + && indexOf(this._availableNames, name) >= 0; + }, + + defaultOption: { + // 一级层叠 + zlevel: 0, + // 二级层叠 + z: 4, + show: true, + + // 布局方式,默认为水平布局,可选为: + // 'horizontal' | 'vertical' + orient: 'horizontal', + + left: 'center', + // right: 'center', + + top: 0, + // bottom: null, + + // 水平对齐 + // 'auto' | 'left' | 'right' + // 默认为 'auto', 根据 x 的位置判断是左对齐还是右对齐 + align: 'auto', + + backgroundColor: 'rgba(0,0,0,0)', + // 图例边框颜色 + borderColor: '#ccc', + borderRadius: 0, + // 图例边框线宽,单位px,默认为0(无边框) + borderWidth: 0, + // 图例内边距,单位px,默认各方向内边距为5, + // 接受数组分别设定上右下左边距,同css + padding: 5, + // 各个item之间的间隔,单位px,默认为10, + // 横向布局时为水平间隔,纵向布局时为纵向间隔 + itemGap: 10, + // 图例图形宽度 + itemWidth: 25, + // 图例图形高度 + itemHeight: 14, + + // 图例关闭时候的颜色 + inactiveColor: '#ccc', + + textStyle: { + // 图例文字颜色 + color: '#333' + }, + // formatter: '', + // 选择模式,默认开启图例开关 + selectedMode: true, + // 配置默认选中状态,可配合LEGEND.SELECTED事件做动态数据载入 + // selected: null, + // 图例内容(详见legend.data,数组中每一项代表一个item + // data: [], + + // Tooltip 相关配置 + tooltip: { + show: false + } + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +function legendSelectActionHandler(methodName, payload, ecModel) { + var selectedMap = {}; + var isToggleSelect = methodName === 'toggleSelected'; + var isSelected; + // Update all legend components + ecModel.eachComponent('legend', function (legendModel) { + if (isToggleSelect && isSelected != null) { + // Force other legend has same selected status + // Or the first is toggled to true and other are toggled to false + // In the case one legend has some item unSelected in option. And if other legend + // doesn't has the item, they will assume it is selected. + legendModel[isSelected ? 'select' : 'unSelect'](payload.name); + } + else { + legendModel[methodName](payload.name); + isSelected = legendModel.isSelected(payload.name); + } + var legendData = legendModel.getData(); + each$1(legendData, function (model) { + var name = model.get('name'); + // Wrap element + if (name === '\n' || name === '') { + return; + } + var isItemSelected = legendModel.isSelected(name); + if (selectedMap.hasOwnProperty(name)) { + // Unselected if any legend is unselected + selectedMap[name] = selectedMap[name] && isItemSelected; + } + else { + selectedMap[name] = isItemSelected; + } + }); + }); + // Return the event explicitly + return { + name: payload.name, + selected: selectedMap + }; +} +/** + * @event legendToggleSelect + * @type {Object} + * @property {string} type 'legendToggleSelect' + * @property {string} [from] + * @property {string} name Series name or data item name + */ +registerAction( + 'legendToggleSelect', 'legendselectchanged', + curry(legendSelectActionHandler, 'toggleSelected') +); + +/** + * @event legendSelect + * @type {Object} + * @property {string} type 'legendSelect' + * @property {string} name Series name or data item name + */ +registerAction( + 'legendSelect', 'legendselected', + curry(legendSelectActionHandler, 'select') +); + +/** + * @event legendUnSelect + * @type {Object} + * @property {string} type 'legendUnSelect' + * @property {string} name Series name or data item name + */ +registerAction( + 'legendUnSelect', 'legendunselected', + curry(legendSelectActionHandler, 'unSelect') +); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var curry$6 = curry; +var each$25 = each$1; +var Group$3 = Group; + +var LegendView = extendComponentView({ + + type: 'legend.plain', + + newlineDisabled: false, + + /** + * @override + */ + init: function () { + + /** + * @private + * @type {module:zrender/container/Group} + */ + this.group.add(this._contentGroup = new Group$3()); + + /** + * @private + * @type {module:zrender/Element} + */ + this._backgroundEl; + + /** + * If first rendering, `contentGroup.position` is [0, 0], which + * does not make sense and may cause unexepcted animation if adopted. + * @private + * @type {boolean} + */ + this._isFirstRender = true; + }, + + /** + * @protected + */ + getContentGroup: function () { + return this._contentGroup; + }, + + /** + * @override + */ + render: function (legendModel, ecModel, api) { + var isFirstRender = this._isFirstRender; + this._isFirstRender = false; + + this.resetInner(); + + if (!legendModel.get('show', true)) { + return; + } + + var itemAlign = legendModel.get('align'); + if (!itemAlign || itemAlign === 'auto') { + itemAlign = ( + legendModel.get('left') === 'right' + && legendModel.get('orient') === 'vertical' + ) ? 'right' : 'left'; + } + + this.renderInner(itemAlign, legendModel, ecModel, api); + + // Perform layout. + var positionInfo = legendModel.getBoxLayoutParams(); + var viewportSize = {width: api.getWidth(), height: api.getHeight()}; + var padding = legendModel.get('padding'); + + var maxSize = getLayoutRect(positionInfo, viewportSize, padding); + + var mainRect = this.layoutInner(legendModel, itemAlign, maxSize, isFirstRender); + + // Place mainGroup, based on the calculated `mainRect`. + var layoutRect = getLayoutRect( + defaults({width: mainRect.width, height: mainRect.height}, positionInfo), + viewportSize, + padding + ); + this.group.attr('position', [layoutRect.x - mainRect.x, layoutRect.y - mainRect.y]); + + // Render background after group is layout. + this.group.add( + this._backgroundEl = makeBackground(mainRect, legendModel) + ); + }, + + /** + * @protected + */ + resetInner: function () { + this.getContentGroup().removeAll(); + this._backgroundEl && this.group.remove(this._backgroundEl); + }, + + /** + * @protected + */ + renderInner: function (itemAlign, legendModel, ecModel, api) { + var contentGroup = this.getContentGroup(); + var legendDrawnMap = createHashMap(); + var selectMode = legendModel.get('selectedMode'); + + var excludeSeriesId = []; + ecModel.eachRawSeries(function (seriesModel) { + !seriesModel.get('legendHoverLink') && excludeSeriesId.push(seriesModel.id); + }); + + each$25(legendModel.getData(), function (itemModel, dataIndex) { + var name = itemModel.get('name'); + + // Use empty string or \n as a newline string + if (!this.newlineDisabled && (name === '' || name === '\n')) { + contentGroup.add(new Group$3({ + newline: true + })); + return; + } + + // Representitive series. + var seriesModel = ecModel.getSeriesByName(name)[0]; + + if (legendDrawnMap.get(name)) { + // Have been drawed + return; + } + + // Series legend + if (seriesModel) { + var data = seriesModel.getData(); + var color = data.getVisual('color'); + + // If color is a callback function + if (typeof color === 'function') { + // Use the first data + color = color(seriesModel.getDataParams(0)); + } + + // Using rect symbol defaultly + var legendSymbolType = data.getVisual('legendSymbol') || 'roundRect'; + var symbolType = data.getVisual('symbol'); + + var itemGroup = this._createItem( + name, dataIndex, itemModel, legendModel, + legendSymbolType, symbolType, + itemAlign, color, + selectMode + ); + + itemGroup.on('click', curry$6(dispatchSelectAction, name, api)) + .on('mouseover', curry$6(dispatchHighlightAction, seriesModel.name, null, api, excludeSeriesId)) + .on('mouseout', curry$6(dispatchDownplayAction, seriesModel.name, null, api, excludeSeriesId)); + + legendDrawnMap.set(name, true); + } + else { + // Data legend of pie, funnel + ecModel.eachRawSeries(function (seriesModel) { + // In case multiple series has same data name + if (legendDrawnMap.get(name)) { + return; + } + + if (seriesModel.legendDataProvider) { + var data = seriesModel.legendDataProvider(); + var idx = data.indexOfName(name); + if (idx < 0) { + return; + } + + var color = data.getItemVisual(idx, 'color'); + + var legendSymbolType = 'roundRect'; + + var itemGroup = this._createItem( + name, dataIndex, itemModel, legendModel, + legendSymbolType, null, + itemAlign, color, + selectMode + ); + + // FIXME: consider different series has items with the same name. + itemGroup.on('click', curry$6(dispatchSelectAction, name, api)) + // Should not specify the series name, consider legend controls + // more than one pie series. + .on('mouseover', curry$6(dispatchHighlightAction, null, name, api, excludeSeriesId)) + .on('mouseout', curry$6(dispatchDownplayAction, null, name, api, excludeSeriesId)); + + legendDrawnMap.set(name, true); + } + + }, this); + } + + if (__DEV__) { + if (!legendDrawnMap.get(name)) { + console.warn( + name + ' series not exists. Legend data should be same with series name or data name.' + ); + } + } + }, this); + }, + + _createItem: function ( + name, dataIndex, itemModel, legendModel, + legendSymbolType, symbolType, + itemAlign, color, selectMode + ) { + var itemWidth = legendModel.get('itemWidth'); + var itemHeight = legendModel.get('itemHeight'); + var inactiveColor = legendModel.get('inactiveColor'); + var symbolKeepAspect = legendModel.get('symbolKeepAspect'); + + var isSelected = legendModel.isSelected(name); + var itemGroup = new Group$3(); + + var textStyleModel = itemModel.getModel('textStyle'); + + var itemIcon = itemModel.get('icon'); + + var tooltipModel = itemModel.getModel('tooltip'); + var legendGlobalTooltipModel = tooltipModel.parentModel; + + // Use user given icon first + legendSymbolType = itemIcon || legendSymbolType; + itemGroup.add(createSymbol( + legendSymbolType, + 0, + 0, + itemWidth, + itemHeight, + isSelected ? color : inactiveColor, + // symbolKeepAspect default true for legend + symbolKeepAspect == null ? true : symbolKeepAspect + )); + + // Compose symbols + // PENDING + if (!itemIcon && symbolType + // At least show one symbol, can't be all none + && ((symbolType !== legendSymbolType) || symbolType === 'none') + ) { + var size = itemHeight * 0.8; + if (symbolType === 'none') { + symbolType = 'circle'; + } + // Put symbol in the center + itemGroup.add(createSymbol( + symbolType, + (itemWidth - size) / 2, + (itemHeight - size) / 2, + size, + size, + isSelected ? color : inactiveColor, + // symbolKeepAspect default true for legend + symbolKeepAspect == null ? true : symbolKeepAspect + )); + } + + var textX = itemAlign === 'left' ? itemWidth + 5 : -5; + var textAlign = itemAlign; + + var formatter = legendModel.get('formatter'); + var content = name; + if (typeof formatter === 'string' && formatter) { + content = formatter.replace('{name}', name != null ? name : ''); + } + else if (typeof formatter === 'function') { + content = formatter(name); + } + + itemGroup.add(new Text({ + style: setTextStyle({}, textStyleModel, { + text: content, + x: textX, + y: itemHeight / 2, + textFill: isSelected ? textStyleModel.getTextColor() : inactiveColor, + textAlign: textAlign, + textVerticalAlign: 'middle' + }) + })); + + // Add a invisible rect to increase the area of mouse hover + var hitRect = new Rect({ + shape: itemGroup.getBoundingRect(), + invisible: true, + tooltip: tooltipModel.get('show') ? extend({ + content: name, + // Defaul formatter + formatter: legendGlobalTooltipModel.get('formatter', true) || function () { + return name; + }, + formatterParams: { + componentType: 'legend', + legendIndex: legendModel.componentIndex, + name: name, + $vars: ['name'] + } + }, tooltipModel.option) : null + }); + itemGroup.add(hitRect); + + itemGroup.eachChild(function (child) { + child.silent = true; + }); + + hitRect.silent = !selectMode; + + this.getContentGroup().add(itemGroup); + + setHoverStyle(itemGroup); + + itemGroup.__legendDataIndex = dataIndex; + + return itemGroup; + }, + + /** + * @protected + */ + layoutInner: function (legendModel, itemAlign, maxSize) { + var contentGroup = this.getContentGroup(); + + // Place items in contentGroup. + box( + legendModel.get('orient'), + contentGroup, + legendModel.get('itemGap'), + maxSize.width, + maxSize.height + ); + + var contentRect = contentGroup.getBoundingRect(); + contentGroup.attr('position', [-contentRect.x, -contentRect.y]); + + return this.group.getBoundingRect(); + }, + + /** + * @protected + */ + remove: function () { + this.getContentGroup().removeAll(); + this._isFirstRender = true; + } + +}); + +function dispatchSelectAction(name, api) { + api.dispatchAction({ + type: 'legendToggleSelect', + name: name + }); +} + +function dispatchHighlightAction(seriesName, dataName, api, excludeSeriesId) { + // If element hover will move to a hoverLayer. + var el = api.getZr().storage.getDisplayList()[0]; + if (!(el && el.useHoverLayer)) { + api.dispatchAction({ + type: 'highlight', + seriesName: seriesName, + name: dataName, + excludeSeriesId: excludeSeriesId + }); + } +} + +function dispatchDownplayAction(seriesName, dataName, api, excludeSeriesId) { + // If element hover will move to a hoverLayer. + var el = api.getZr().storage.getDisplayList()[0]; + if (!(el && el.useHoverLayer)) { + api.dispatchAction({ + type: 'downplay', + seriesName: seriesName, + name: dataName, + excludeSeriesId: excludeSeriesId + }); + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var legendFilter = function (ecModel) { + + var legendModels = ecModel.findComponents({ + mainType: 'legend' + }); + if (legendModels && legendModels.length) { + ecModel.filterSeries(function (series) { + // If in any legend component the status is not selected. + // Because in legend series is assumed selected when it is not in the legend data. + for (var i = 0; i < legendModels.length; i++) { + if (!legendModels[i].isSelected(series.name)) { + return false; + } + } + return true; + }); + } + +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +// Do not contain scrollable legend, for sake of file size. + +// Series Filter +registerProcessor(legendFilter); + +ComponentModel.registerSubTypeDefaulter('legend', function () { + // Default 'plain' when no type specified. + return 'plain'; +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var ScrollableLegendModel = LegendModel.extend({ + + type: 'legend.scroll', + + /** + * @param {number} scrollDataIndex + */ + setScrollDataIndex: function (scrollDataIndex) { + this.option.scrollDataIndex = scrollDataIndex; + }, + + defaultOption: { + scrollDataIndex: 0, + pageButtonItemGap: 5, + pageButtonGap: null, + pageButtonPosition: 'end', // 'start' or 'end' + pageFormatter: '{current}/{total}', // If null/undefined, do not show page. + pageIcons: { + horizontal: ['M0,0L12,-10L12,10z', 'M0,0L-12,-10L-12,10z'], + vertical: ['M0,0L20,0L10,-20z', 'M0,0L20,0L10,20z'] + }, + pageIconColor: '#2f4554', + pageIconInactiveColor: '#aaa', + pageIconSize: 15, // Can be [10, 3], which represents [width, height] + pageTextStyle: { + color: '#333' + }, + + animationDurationUpdate: 800 + }, + + /** + * @override + */ + init: function (option, parentModel, ecModel, extraOpt) { + var inputPositionParams = getLayoutParams(option); + + ScrollableLegendModel.superCall(this, 'init', option, parentModel, ecModel, extraOpt); + + mergeAndNormalizeLayoutParams$1(this, option, inputPositionParams); + }, + + /** + * @override + */ + mergeOption: function (option, extraOpt) { + ScrollableLegendModel.superCall(this, 'mergeOption', option, extraOpt); + + mergeAndNormalizeLayoutParams$1(this, this.option, option); + }, + + getOrient: function () { + return this.get('orient') === 'vertical' + ? {index: 1, name: 'vertical'} + : {index: 0, name: 'horizontal'}; + } + +}); + +// Do not `ignoreSize` to enable setting {left: 10, right: 10}. +function mergeAndNormalizeLayoutParams$1(legendModel, target, raw) { + var orient = legendModel.getOrient(); + var ignoreSize = [1, 1]; + ignoreSize[orient.index] = 0; + mergeLayoutParam(target, raw, { + type: 'box', ignoreSize: ignoreSize + }); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Separate legend and scrollable legend to reduce package size. + */ + +var Group$4 = Group; + +var WH$1 = ['width', 'height']; +var XY$1 = ['x', 'y']; + +var ScrollableLegendView = LegendView.extend({ + + type: 'legend.scroll', + + newlineDisabled: true, + + init: function () { + + ScrollableLegendView.superCall(this, 'init'); + + /** + * @private + * @type {number} For `scroll`. + */ + this._currentIndex = 0; + + /** + * @private + * @type {module:zrender/container/Group} + */ + this.group.add(this._containerGroup = new Group$4()); + this._containerGroup.add(this.getContentGroup()); + + /** + * @private + * @type {module:zrender/container/Group} + */ + this.group.add(this._controllerGroup = new Group$4()); + + /** + * + * @private + */ + this._showController; + }, + + /** + * @override + */ + resetInner: function () { + ScrollableLegendView.superCall(this, 'resetInner'); + + this._controllerGroup.removeAll(); + this._containerGroup.removeClipPath(); + this._containerGroup.__rectSize = null; + }, + + /** + * @override + */ + renderInner: function (itemAlign, legendModel, ecModel, api) { + var me = this; + + // Render content items. + ScrollableLegendView.superCall(this, 'renderInner', itemAlign, legendModel, ecModel, api); + + var controllerGroup = this._controllerGroup; + + // FIXME: support be 'auto' adapt to size number text length, + // e.g., '3/12345' should not overlap with the control arrow button. + var pageIconSize = legendModel.get('pageIconSize', true); + if (!isArray(pageIconSize)) { + pageIconSize = [pageIconSize, pageIconSize]; + } + + createPageButton('pagePrev', 0); + + var pageTextStyleModel = legendModel.getModel('pageTextStyle'); + controllerGroup.add(new Text({ + name: 'pageText', + style: { + textFill: pageTextStyleModel.getTextColor(), + font: pageTextStyleModel.getFont(), + textVerticalAlign: 'middle', + textAlign: 'center' + }, + silent: true + })); + + createPageButton('pageNext', 1); + + function createPageButton(name, iconIdx) { + var pageDataIndexName = name + 'DataIndex'; + var icon = createIcon( + legendModel.get('pageIcons', true)[legendModel.getOrient().name][iconIdx], + { + // Buttons will be created in each render, so we do not need + // to worry about avoiding using legendModel kept in scope. + onclick: bind( + me._pageGo, me, pageDataIndexName, legendModel, api + ) + }, + { + x: -pageIconSize[0] / 2, + y: -pageIconSize[1] / 2, + width: pageIconSize[0], + height: pageIconSize[1] + } + ); + icon.name = name; + controllerGroup.add(icon); + } + }, + + /** + * @override + */ + layoutInner: function (legendModel, itemAlign, maxSize, isFirstRender) { + var contentGroup = this.getContentGroup(); + var containerGroup = this._containerGroup; + var controllerGroup = this._controllerGroup; + + var orientIdx = legendModel.getOrient().index; + var wh = WH$1[orientIdx]; + var hw = WH$1[1 - orientIdx]; + var yx = XY$1[1 - orientIdx]; + + // Place items in contentGroup. + box( + legendModel.get('orient'), + contentGroup, + legendModel.get('itemGap'), + !orientIdx ? null : maxSize.width, + orientIdx ? null : maxSize.height + ); + + box( + // Buttons in controller are layout always horizontally. + 'horizontal', + controllerGroup, + legendModel.get('pageButtonItemGap', true) + ); + + var contentRect = contentGroup.getBoundingRect(); + var controllerRect = controllerGroup.getBoundingRect(); + var showController = this._showController = contentRect[wh] > maxSize[wh]; + + var contentPos = [-contentRect.x, -contentRect.y]; + // Remain contentPos when scroll animation perfroming. + // If first rendering, `contentGroup.position` is [0, 0], which + // does not make sense and may cause unexepcted animation if adopted. + if (!isFirstRender) { + contentPos[orientIdx] = contentGroup.position[orientIdx]; + } + + // Layout container group based on 0. + var containerPos = [0, 0]; + var controllerPos = [-controllerRect.x, -controllerRect.y]; + var pageButtonGap = retrieve2( + legendModel.get('pageButtonGap', true), legendModel.get('itemGap', true) + ); + + // Place containerGroup and controllerGroup and contentGroup. + if (showController) { + var pageButtonPosition = legendModel.get('pageButtonPosition', true); + // controller is on the right / bottom. + if (pageButtonPosition === 'end') { + controllerPos[orientIdx] += maxSize[wh] - controllerRect[wh]; + } + // controller is on the left / top. + else { + containerPos[orientIdx] += controllerRect[wh] + pageButtonGap; + } + } + + // Always align controller to content as 'middle'. + controllerPos[1 - orientIdx] += contentRect[hw] / 2 - controllerRect[hw] / 2; + + contentGroup.attr('position', contentPos); + containerGroup.attr('position', containerPos); + controllerGroup.attr('position', controllerPos); + + // Calculate `mainRect` and set `clipPath`. + // mainRect should not be calculated by `this.group.getBoundingRect()` + // for sake of the overflow. + var mainRect = this.group.getBoundingRect(); + var mainRect = {x: 0, y: 0}; + // Consider content may be overflow (should be clipped). + mainRect[wh] = showController ? maxSize[wh] : contentRect[wh]; + mainRect[hw] = Math.max(contentRect[hw], controllerRect[hw]); + // `containerRect[yx] + containerPos[1 - orientIdx]` is 0. + mainRect[yx] = Math.min(0, controllerRect[yx] + controllerPos[1 - orientIdx]); + + containerGroup.__rectSize = maxSize[wh]; + if (showController) { + var clipShape = {x: 0, y: 0}; + clipShape[wh] = Math.max(maxSize[wh] - controllerRect[wh] - pageButtonGap, 0); + clipShape[hw] = mainRect[hw]; + containerGroup.setClipPath(new Rect({shape: clipShape})); + // Consider content may be larger than container, container rect + // can not be obtained from `containerGroup.getBoundingRect()`. + containerGroup.__rectSize = clipShape[wh]; + } + else { + // Do not remove or ignore controller. Keep them set as place holders. + controllerGroup.eachChild(function (child) { + child.attr({invisible: true, silent: true}); + }); + } + + // Content translate animation. + var pageInfo = this._getPageInfo(legendModel); + pageInfo.pageIndex != null && updateProps( + contentGroup, + {position: pageInfo.contentPosition}, + // When switch from "show controller" to "not show controller", view should be + // updated immediately without animation, otherwise causes weird efffect. + showController ? legendModel : false + ); + + this._updatePageInfoView(legendModel, pageInfo); + + return mainRect; + }, + + _pageGo: function (to, legendModel, api) { + var scrollDataIndex = this._getPageInfo(legendModel)[to]; + + scrollDataIndex != null && api.dispatchAction({ + type: 'legendScroll', + scrollDataIndex: scrollDataIndex, + legendId: legendModel.id + }); + }, + + _updatePageInfoView: function (legendModel, pageInfo) { + var controllerGroup = this._controllerGroup; + + each$1(['pagePrev', 'pageNext'], function (name) { + var canJump = pageInfo[name + 'DataIndex'] != null; + var icon = controllerGroup.childOfName(name); + if (icon) { + icon.setStyle( + 'fill', + canJump + ? legendModel.get('pageIconColor', true) + : legendModel.get('pageIconInactiveColor', true) + ); + icon.cursor = canJump ? 'pointer' : 'default'; + } + }); + + var pageText = controllerGroup.childOfName('pageText'); + var pageFormatter = legendModel.get('pageFormatter'); + var pageIndex = pageInfo.pageIndex; + var current = pageIndex != null ? pageIndex + 1 : 0; + var total = pageInfo.pageCount; + + pageText && pageFormatter && pageText.setStyle( + 'text', + isString(pageFormatter) + ? pageFormatter.replace('{current}', current).replace('{total}', total) + : pageFormatter({current: current, total: total}) + ); + }, + + /** + * @param {module:echarts/model/Model} legendModel + * @return {Object} { + * contentPosition: Array., null when data item not found. + * pageIndex: number, null when data item not found. + * pageCount: number, always be a number, can be 0. + * pagePrevDataIndex: number, null when no next page. + * pageNextDataIndex: number, null when no previous page. + * } + */ + _getPageInfo: function (legendModel) { + var scrollDataIndex = legendModel.get('scrollDataIndex', true); + var contentGroup = this.getContentGroup(); + var containerRectSize = this._containerGroup.__rectSize; + var orientIdx = legendModel.getOrient().index; + var wh = WH$1[orientIdx]; + var xy = XY$1[orientIdx]; + + var targetItemIndex = this._findTargetItemIndex(scrollDataIndex); + var children = contentGroup.children(); + var targetItem = children[targetItemIndex]; + var itemCount = children.length; + var pCount = !itemCount ? 0 : 1; + + var result = { + contentPosition: contentGroup.position.slice(), + pageCount: pCount, + pageIndex: pCount - 1, + pagePrevDataIndex: null, + pageNextDataIndex: null + }; + + if (!targetItem) { + return result; + } + + var targetItemInfo = getItemInfo(targetItem); + result.contentPosition[orientIdx] = -targetItemInfo.s; + + // Strategy: + // (1) Always align based on the left/top most item. + // (2) It is user-friendly that the last item shown in the + // current window is shown at the begining of next window. + // Otherwise if half of the last item is cut by the window, + // it will have no chance to display entirely. + // (3) Consider that item size probably be different, we + // have calculate pageIndex by size rather than item index, + // and we can not get page index directly by division. + // (4) The window is to narrow to contain more than + // one item, we should make sure that the page can be fliped. + + for (var i = targetItemIndex + 1, + winStartItemInfo = targetItemInfo, + winEndItemInfo = targetItemInfo, + currItemInfo = null; + i <= itemCount; + ++i + ) { + currItemInfo = getItemInfo(children[i]); + if ( + // Half of the last item is out of the window. + (!currItemInfo && winEndItemInfo.e > winStartItemInfo.s + containerRectSize) + // If the current item does not intersect with the window, the new page + // can be started at the current item or the last item. + || (currItemInfo && !intersect(currItemInfo, winStartItemInfo.s)) + ) { + if (winEndItemInfo.i > winStartItemInfo.i) { + winStartItemInfo = winEndItemInfo; + } + else { // e.g., when page size is smaller than item size. + winStartItemInfo = currItemInfo; + } + if (winStartItemInfo) { + if (result.pageNextDataIndex == null) { + result.pageNextDataIndex = winStartItemInfo.i; + } + ++result.pageCount; + } + } + winEndItemInfo = currItemInfo; + } + + for (var i = targetItemIndex - 1, + winStartItemInfo = targetItemInfo, + winEndItemInfo = targetItemInfo, + currItemInfo = null; + i >= -1; + --i + ) { + currItemInfo = getItemInfo(children[i]); + if ( + // If the the end item does not intersect with the window started + // from the current item, a page can be settled. + (!currItemInfo || !intersect(winEndItemInfo, currItemInfo.s)) + // e.g., when page size is smaller than item size. + && winStartItemInfo.i < winEndItemInfo.i + ) { + winEndItemInfo = winStartItemInfo; + if (result.pagePrevDataIndex == null) { + result.pagePrevDataIndex = winStartItemInfo.i; + } + ++result.pageCount; + ++result.pageIndex; + } + winStartItemInfo = currItemInfo; + } + + return result; + + function getItemInfo(el) { + if (el) { + var itemRect = el.getBoundingRect(); + var start = itemRect[xy] + el.position[orientIdx]; + return { + s: start, + e: start + itemRect[wh], + i: el.__legendDataIndex + }; + } + } + + function intersect(itemInfo, winStart) { + return itemInfo.e >= winStart && itemInfo.s <= winStart + containerRectSize; + } + }, + + _findTargetItemIndex: function (targetDataIndex) { + var index; + var contentGroup = this.getContentGroup(); + var defaultIndex; + + if (this._showController) { + contentGroup.eachChild(function (child, idx) { + var legendDataIdx = child.__legendDataIndex; + // FIXME + // If the given targetDataIndex (from model) is illegal, + // we use defualtIndex. But the index on the legend model and + // action payload is still illegal. That case will not be + // changed until some scenario requires. + if (defaultIndex == null && legendDataIdx != null) { + defaultIndex = idx; + } + if (legendDataIdx === targetDataIndex) { + index = idx; + } + }); + } + + return index != null ? index : defaultIndex; + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @event legendScroll + * @type {Object} + * @property {string} type 'legendScroll' + * @property {string} scrollDataIndex + */ +registerAction( + 'legendScroll', 'legendscroll', + function (payload, ecModel) { + var scrollDataIndex = payload.scrollDataIndex; + + scrollDataIndex != null && ecModel.eachComponent( + {mainType: 'legend', subType: 'scroll', query: payload}, + function (legendModel) { + legendModel.setScrollDataIndex(scrollDataIndex); + } + ); + } +); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * Legend component entry file8 + */ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var SliderZoomModel = DataZoomModel.extend({ + + type: 'dataZoom.slider', + + layoutMode: 'box', + + /** + * @protected + */ + defaultOption: { + show: true, + + // ph => placeholder. Using placehoder here because + // deault value can only be drived in view stage. + right: 'ph', // Default align to grid rect. + top: 'ph', // Default align to grid rect. + width: 'ph', // Default align to grid rect. + height: 'ph', // Default align to grid rect. + left: null, // Default align to grid rect. + bottom: null, // Default align to grid rect. + + backgroundColor: 'rgba(47,69,84,0)', // Background of slider zoom component. + // dataBackgroundColor: '#ddd', // Background coor of data shadow and border of box, + // highest priority, remain for compatibility of + // previous version, but not recommended any more. + dataBackground: { + lineStyle: { + color: '#2f4554', + width: 0.5, + opacity: 0.3 + }, + areaStyle: { + color: 'rgba(47,69,84,0.3)', + opacity: 0.3 + } + }, + borderColor: '#ddd', // border color of the box. For compatibility, + // if dataBackgroundColor is set, borderColor + // is ignored. + + fillerColor: 'rgba(167,183,204,0.4)', // Color of selected area. + // handleColor: 'rgba(89,170,216,0.95)', // Color of handle. + // handleIcon: 'path://M4.9,17.8c0-1.4,4.5-10.5,5.5-12.4c0-0.1,0.6-1.1,0.9-1.1c0.4,0,0.9,1,0.9,1.1c1.1,2.2,5.4,11,5.4,12.4v17.8c0,1.5-0.6,2.1-1.3,2.1H6.1c-0.7,0-1.3-0.6-1.3-2.1V17.8z', + /* eslint-disable */ + handleIcon: 'M8.2,13.6V3.9H6.3v9.7H3.1v14.9h3.3v9.7h1.8v-9.7h3.3V13.6H8.2z M9.7,24.4H4.8v-1.4h4.9V24.4z M9.7,19.1H4.8v-1.4h4.9V19.1z', + /* eslint-enable */ + // Percent of the slider height + handleSize: '100%', + + handleStyle: { + color: '#a7b7cc' + }, + + labelPrecision: null, + labelFormatter: null, + showDetail: true, + showDataShadow: 'auto', // Default auto decision. + realtime: true, + zoomLock: false, // Whether disable zoom. + textStyle: { + color: '#333' + } + } + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var Rect$2 = Rect; +var linearMap$1 = linearMap; +var asc$2 = asc; +var bind$5 = bind; +var each$26 = each$1; + +// Constants +var DEFAULT_LOCATION_EDGE_GAP = 7; +var DEFAULT_FRAME_BORDER_WIDTH = 1; +var DEFAULT_FILLER_SIZE = 30; +var HORIZONTAL = 'horizontal'; +var VERTICAL = 'vertical'; +var LABEL_GAP = 5; +var SHOW_DATA_SHADOW_SERIES_TYPE = ['line', 'bar', 'candlestick', 'scatter']; + +var SliderZoomView = DataZoomView.extend({ + + type: 'dataZoom.slider', + + init: function (ecModel, api) { + + /** + * @private + * @type {Object} + */ + this._displayables = {}; + + /** + * @private + * @type {string} + */ + this._orient; + + /** + * [0, 100] + * @private + */ + this._range; + + /** + * [coord of the first handle, coord of the second handle] + * @private + */ + this._handleEnds; + + /** + * [length, thick] + * @private + * @type {Array.} + */ + this._size; + + /** + * @private + * @type {number} + */ + this._handleWidth; + + /** + * @private + * @type {number} + */ + this._handleHeight; + + /** + * @private + */ + this._location; + + /** + * @private + */ + this._dragging; + + /** + * @private + */ + this._dataShadowInfo; + + this.api = api; + }, + + /** + * @override + */ + render: function (dataZoomModel, ecModel, api, payload) { + SliderZoomView.superApply(this, 'render', arguments); + + createOrUpdate( + this, + '_dispatchZoomAction', + this.dataZoomModel.get('throttle'), + 'fixRate' + ); + + this._orient = dataZoomModel.get('orient'); + + if (this.dataZoomModel.get('show') === false) { + this.group.removeAll(); + return; + } + + // Notice: this._resetInterval() should not be executed when payload.type + // is 'dataZoom', origin this._range should be maintained, otherwise 'pan' + // or 'zoom' info will be missed because of 'throttle' of this.dispatchAction, + if (!payload || payload.type !== 'dataZoom' || payload.from !== this.uid) { + this._buildView(); + } + + this._updateView(); + }, + + /** + * @override + */ + remove: function () { + SliderZoomView.superApply(this, 'remove', arguments); + clear(this, '_dispatchZoomAction'); + }, + + /** + * @override + */ + dispose: function () { + SliderZoomView.superApply(this, 'dispose', arguments); + clear(this, '_dispatchZoomAction'); + }, + + _buildView: function () { + var thisGroup = this.group; + + thisGroup.removeAll(); + + this._resetLocation(); + this._resetInterval(); + + var barGroup = this._displayables.barGroup = new Group(); + + this._renderBackground(); + + this._renderHandle(); + + this._renderDataShadow(); + + thisGroup.add(barGroup); + + this._positionGroup(); + }, + + /** + * @private + */ + _resetLocation: function () { + var dataZoomModel = this.dataZoomModel; + var api = this.api; + + // If some of x/y/width/height are not specified, + // auto-adapt according to target grid. + var coordRect = this._findCoordRect(); + var ecSize = {width: api.getWidth(), height: api.getHeight()}; + // Default align by coordinate system rect. + var positionInfo = this._orient === HORIZONTAL + ? { + // Why using 'right', because right should be used in vertical, + // and it is better to be consistent for dealing with position param merge. + right: ecSize.width - coordRect.x - coordRect.width, + top: (ecSize.height - DEFAULT_FILLER_SIZE - DEFAULT_LOCATION_EDGE_GAP), + width: coordRect.width, + height: DEFAULT_FILLER_SIZE + } + : { // vertical + right: DEFAULT_LOCATION_EDGE_GAP, + top: coordRect.y, + width: DEFAULT_FILLER_SIZE, + height: coordRect.height + }; + + // Do not write back to option and replace value 'ph', because + // the 'ph' value should be recalculated when resize. + var layoutParams = getLayoutParams(dataZoomModel.option); + + // Replace the placeholder value. + each$1(['right', 'top', 'width', 'height'], function (name) { + if (layoutParams[name] === 'ph') { + layoutParams[name] = positionInfo[name]; + } + }); + + var layoutRect = getLayoutRect( + layoutParams, + ecSize, + dataZoomModel.padding + ); + + this._location = {x: layoutRect.x, y: layoutRect.y}; + this._size = [layoutRect.width, layoutRect.height]; + this._orient === VERTICAL && this._size.reverse(); + }, + + /** + * @private + */ + _positionGroup: function () { + var thisGroup = this.group; + var location = this._location; + var orient = this._orient; + + // Just use the first axis to determine mapping. + var targetAxisModel = this.dataZoomModel.getFirstTargetAxisModel(); + var inverse = targetAxisModel && targetAxisModel.get('inverse'); + + var barGroup = this._displayables.barGroup; + var otherAxisInverse = (this._dataShadowInfo || {}).otherAxisInverse; + + // Transform barGroup. + barGroup.attr( + (orient === HORIZONTAL && !inverse) + ? {scale: otherAxisInverse ? [1, 1] : [1, -1]} + : (orient === HORIZONTAL && inverse) + ? {scale: otherAxisInverse ? [-1, 1] : [-1, -1]} + : (orient === VERTICAL && !inverse) + ? {scale: otherAxisInverse ? [1, -1] : [1, 1], rotation: Math.PI / 2} + // Dont use Math.PI, considering shadow direction. + : {scale: otherAxisInverse ? [-1, -1] : [-1, 1], rotation: Math.PI / 2} + ); + + // Position barGroup + var rect = thisGroup.getBoundingRect([barGroup]); + thisGroup.attr('position', [location.x - rect.x, location.y - rect.y]); + }, + + /** + * @private + */ + _getViewExtent: function () { + return [0, this._size[0]]; + }, + + _renderBackground: function () { + var dataZoomModel = this.dataZoomModel; + var size = this._size; + var barGroup = this._displayables.barGroup; + + barGroup.add(new Rect$2({ + silent: true, + shape: { + x: 0, y: 0, width: size[0], height: size[1] + }, + style: { + fill: dataZoomModel.get('backgroundColor') + }, + z2: -40 + })); + + // Click panel, over shadow, below handles. + barGroup.add(new Rect$2({ + shape: { + x: 0, y: 0, width: size[0], height: size[1] + }, + style: { + fill: 'transparent' + }, + z2: 0, + onclick: bind(this._onClickPanelClick, this) + })); + }, + + _renderDataShadow: function () { + var info = this._dataShadowInfo = this._prepareDataShadowInfo(); + + if (!info) { + return; + } + + var size = this._size; + var seriesModel = info.series; + var data = seriesModel.getRawData(); + + var otherDim = seriesModel.getShadowDim + ? seriesModel.getShadowDim() // @see candlestick + : info.otherDim; + + if (otherDim == null) { + return; + } + + var otherDataExtent = data.getDataExtent(otherDim); + // Nice extent. + var otherOffset = (otherDataExtent[1] - otherDataExtent[0]) * 0.3; + otherDataExtent = [ + otherDataExtent[0] - otherOffset, + otherDataExtent[1] + otherOffset + ]; + var otherShadowExtent = [0, size[1]]; + + var thisShadowExtent = [0, size[0]]; + + var areaPoints = [[size[0], 0], [0, 0]]; + var linePoints = []; + var step = thisShadowExtent[1] / (data.count() - 1); + var thisCoord = 0; + + // Optimize for large data shadow + var stride = Math.round(data.count() / size[0]); + var lastIsEmpty; + data.each([otherDim], function (value, index) { + if (stride > 0 && (index % stride)) { + thisCoord += step; + return; + } + + // FIXME + // Should consider axis.min/axis.max when drawing dataShadow. + + // FIXME + // 应该使用统一的空判断?还是在list里进行空判断? + var isEmpty = value == null || isNaN(value) || value === ''; + // See #4235. + var otherCoord = isEmpty + ? 0 : linearMap$1(value, otherDataExtent, otherShadowExtent, true); + + // Attempt to draw data shadow precisely when there are empty value. + if (isEmpty && !lastIsEmpty && index) { + areaPoints.push([areaPoints[areaPoints.length - 1][0], 0]); + linePoints.push([linePoints[linePoints.length - 1][0], 0]); + } + else if (!isEmpty && lastIsEmpty) { + areaPoints.push([thisCoord, 0]); + linePoints.push([thisCoord, 0]); + } + + areaPoints.push([thisCoord, otherCoord]); + linePoints.push([thisCoord, otherCoord]); + + thisCoord += step; + lastIsEmpty = isEmpty; + }); + + var dataZoomModel = this.dataZoomModel; + // var dataBackgroundModel = dataZoomModel.getModel('dataBackground'); + this._displayables.barGroup.add(new Polygon({ + shape: {points: areaPoints}, + style: defaults( + {fill: dataZoomModel.get('dataBackgroundColor')}, + dataZoomModel.getModel('dataBackground.areaStyle').getAreaStyle() + ), + silent: true, + z2: -20 + })); + this._displayables.barGroup.add(new Polyline({ + shape: {points: linePoints}, + style: dataZoomModel.getModel('dataBackground.lineStyle').getLineStyle(), + silent: true, + z2: -19 + })); + }, + + _prepareDataShadowInfo: function () { + var dataZoomModel = this.dataZoomModel; + var showDataShadow = dataZoomModel.get('showDataShadow'); + + if (showDataShadow === false) { + return; + } + + // Find a representative series. + var result; + var ecModel = this.ecModel; + + dataZoomModel.eachTargetAxis(function (dimNames, axisIndex) { + var seriesModels = dataZoomModel + .getAxisProxy(dimNames.name, axisIndex) + .getTargetSeriesModels(); + + each$1(seriesModels, function (seriesModel) { + if (result) { + return; + } + + if (showDataShadow !== true && indexOf( + SHOW_DATA_SHADOW_SERIES_TYPE, seriesModel.get('type') + ) < 0 + ) { + return; + } + + var thisAxis = ecModel.getComponent(dimNames.axis, axisIndex).axis; + var otherDim = getOtherDim(dimNames.name); + var otherAxisInverse; + var coordSys = seriesModel.coordinateSystem; + + if (otherDim != null && coordSys.getOtherAxis) { + otherAxisInverse = coordSys.getOtherAxis(thisAxis).inverse; + } + + otherDim = seriesModel.getData().mapDimension(otherDim); + + result = { + thisAxis: thisAxis, + series: seriesModel, + thisDim: dimNames.name, + otherDim: otherDim, + otherAxisInverse: otherAxisInverse + }; + + }, this); + + }, this); + + return result; + }, + + _renderHandle: function () { + var displaybles = this._displayables; + var handles = displaybles.handles = []; + var handleLabels = displaybles.handleLabels = []; + var barGroup = this._displayables.barGroup; + var size = this._size; + var dataZoomModel = this.dataZoomModel; + + barGroup.add(displaybles.filler = new Rect$2({ + draggable: true, + cursor: getCursor(this._orient), + drift: bind$5(this._onDragMove, this, 'all'), + onmousemove: function (e) { + // Fot mobile devicem, prevent screen slider on the button. + stop(e.event); + }, + ondragstart: bind$5(this._showDataInfo, this, true), + ondragend: bind$5(this._onDragEnd, this), + onmouseover: bind$5(this._showDataInfo, this, true), + onmouseout: bind$5(this._showDataInfo, this, false), + style: { + fill: dataZoomModel.get('fillerColor'), + textPosition: 'inside' + } + })); + + // Frame border. + barGroup.add(new Rect$2({ + silent: true, + subPixelOptimize: true, + shape: { + x: 0, + y: 0, + width: size[0], + height: size[1] + }, + style: { + stroke: dataZoomModel.get('dataBackgroundColor') + || dataZoomModel.get('borderColor'), + lineWidth: DEFAULT_FRAME_BORDER_WIDTH, + fill: 'rgba(0,0,0,0)' + } + })); + + each$26([0, 1], function (handleIndex) { + var path = createIcon( + dataZoomModel.get('handleIcon'), + { + cursor: getCursor(this._orient), + draggable: true, + drift: bind$5(this._onDragMove, this, handleIndex), + onmousemove: function (e) { + // Fot mobile devicem, prevent screen slider on the button. + stop(e.event); + }, + ondragend: bind$5(this._onDragEnd, this), + onmouseover: bind$5(this._showDataInfo, this, true), + onmouseout: bind$5(this._showDataInfo, this, false) + }, + {x: -1, y: 0, width: 2, height: 2} + ); + + var bRect = path.getBoundingRect(); + this._handleHeight = parsePercent$1(dataZoomModel.get('handleSize'), this._size[1]); + this._handleWidth = bRect.width / bRect.height * this._handleHeight; + + path.setStyle(dataZoomModel.getModel('handleStyle').getItemStyle()); + var handleColor = dataZoomModel.get('handleColor'); + // Compatitable with previous version + if (handleColor != null) { + path.style.fill = handleColor; + } + + barGroup.add(handles[handleIndex] = path); + + var textStyleModel = dataZoomModel.textStyleModel; + + this.group.add( + handleLabels[handleIndex] = new Text({ + silent: true, + invisible: true, + style: { + x: 0, y: 0, text: '', + textVerticalAlign: 'middle', + textAlign: 'center', + textFill: textStyleModel.getTextColor(), + textFont: textStyleModel.getFont() + }, + z2: 10 + })); + + }, this); + }, + + /** + * @private + */ + _resetInterval: function () { + var range = this._range = this.dataZoomModel.getPercentRange(); + var viewExtent = this._getViewExtent(); + + this._handleEnds = [ + linearMap$1(range[0], [0, 100], viewExtent, true), + linearMap$1(range[1], [0, 100], viewExtent, true) + ]; + }, + + /** + * @private + * @param {(number|string)} handleIndex 0 or 1 or 'all' + * @param {number} delta + * @return {boolean} changed + */ + _updateInterval: function (handleIndex, delta) { + var dataZoomModel = this.dataZoomModel; + var handleEnds = this._handleEnds; + var viewExtend = this._getViewExtent(); + var minMaxSpan = dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan(); + var percentExtent = [0, 100]; + + sliderMove( + delta, + handleEnds, + viewExtend, + dataZoomModel.get('zoomLock') ? 'all' : handleIndex, + minMaxSpan.minSpan != null + ? linearMap$1(minMaxSpan.minSpan, percentExtent, viewExtend, true) : null, + minMaxSpan.maxSpan != null + ? linearMap$1(minMaxSpan.maxSpan, percentExtent, viewExtend, true) : null + ); + + var lastRange = this._range; + var range = this._range = asc$2([ + linearMap$1(handleEnds[0], viewExtend, percentExtent, true), + linearMap$1(handleEnds[1], viewExtend, percentExtent, true) + ]); + + return !lastRange || lastRange[0] !== range[0] || lastRange[1] !== range[1]; + }, + + /** + * @private + */ + _updateView: function (nonRealtime) { + var displaybles = this._displayables; + var handleEnds = this._handleEnds; + var handleInterval = asc$2(handleEnds.slice()); + var size = this._size; + + each$26([0, 1], function (handleIndex) { + // Handles + var handle = displaybles.handles[handleIndex]; + var handleHeight = this._handleHeight; + handle.attr({ + scale: [handleHeight / 2, handleHeight / 2], + position: [handleEnds[handleIndex], size[1] / 2 - handleHeight / 2] + }); + }, this); + + // Filler + displaybles.filler.setShape({ + x: handleInterval[0], + y: 0, + width: handleInterval[1] - handleInterval[0], + height: size[1] + }); + + this._updateDataInfo(nonRealtime); + }, + + /** + * @private + */ + _updateDataInfo: function (nonRealtime) { + var dataZoomModel = this.dataZoomModel; + var displaybles = this._displayables; + var handleLabels = displaybles.handleLabels; + var orient = this._orient; + var labelTexts = ['', '']; + + // FIXME + // date型,支持formatter,autoformatter(ec2 date.getAutoFormatter) + if (dataZoomModel.get('showDetail')) { + var axisProxy = dataZoomModel.findRepresentativeAxisProxy(); + + if (axisProxy) { + var axis = axisProxy.getAxisModel().axis; + var range = this._range; + + var dataInterval = nonRealtime + // See #4434, data and axis are not processed and reset yet in non-realtime mode. + ? axisProxy.calculateDataWindow({ + start: range[0], end: range[1] + }).valueWindow + : axisProxy.getDataValueWindow(); + + labelTexts = [ + this._formatLabel(dataInterval[0], axis), + this._formatLabel(dataInterval[1], axis) + ]; + } + } + + var orderedHandleEnds = asc$2(this._handleEnds.slice()); + + setLabel.call(this, 0); + setLabel.call(this, 1); + + function setLabel(handleIndex) { + // Label + // Text should not transform by barGroup. + // Ignore handlers transform + var barTransform = getTransform( + displaybles.handles[handleIndex].parent, this.group + ); + var direction = transformDirection( + handleIndex === 0 ? 'right' : 'left', barTransform + ); + var offset = this._handleWidth / 2 + LABEL_GAP; + var textPoint = applyTransform$1( + [ + orderedHandleEnds[handleIndex] + (handleIndex === 0 ? -offset : offset), + this._size[1] / 2 + ], + barTransform + ); + handleLabels[handleIndex].setStyle({ + x: textPoint[0], + y: textPoint[1], + textVerticalAlign: orient === HORIZONTAL ? 'middle' : direction, + textAlign: orient === HORIZONTAL ? direction : 'center', + text: labelTexts[handleIndex] + }); + } + }, + + /** + * @private + */ + _formatLabel: function (value, axis) { + var dataZoomModel = this.dataZoomModel; + var labelFormatter = dataZoomModel.get('labelFormatter'); + + var labelPrecision = dataZoomModel.get('labelPrecision'); + if (labelPrecision == null || labelPrecision === 'auto') { + labelPrecision = axis.getPixelPrecision(); + } + + var valueStr = (value == null || isNaN(value)) + ? '' + // FIXME Glue code + : (axis.type === 'category' || axis.type === 'time') + ? axis.scale.getLabel(Math.round(value)) + // param of toFixed should less then 20. + : value.toFixed(Math.min(labelPrecision, 20)); + + return isFunction$1(labelFormatter) + ? labelFormatter(value, valueStr) + : isString(labelFormatter) + ? labelFormatter.replace('{value}', valueStr) + : valueStr; + }, + + /** + * @private + * @param {boolean} showOrHide true: show, false: hide + */ + _showDataInfo: function (showOrHide) { + // Always show when drgging. + showOrHide = this._dragging || showOrHide; + + var handleLabels = this._displayables.handleLabels; + handleLabels[0].attr('invisible', !showOrHide); + handleLabels[1].attr('invisible', !showOrHide); + }, + + _onDragMove: function (handleIndex, dx, dy) { + this._dragging = true; + + // Transform dx, dy to bar coordination. + var barTransform = this._displayables.barGroup.getLocalTransform(); + var vertex = applyTransform$1([dx, dy], barTransform, true); + + var changed = this._updateInterval(handleIndex, vertex[0]); + + var realtime = this.dataZoomModel.get('realtime'); + + this._updateView(!realtime); + + // Avoid dispatch dataZoom repeatly but range not changed, + // which cause bad visual effect when progressive enabled. + changed && realtime && this._dispatchZoomAction(); + }, + + _onDragEnd: function () { + this._dragging = false; + this._showDataInfo(false); + + // While in realtime mode and stream mode, dispatch action when + // drag end will cause the whole view rerender, which is unnecessary. + var realtime = this.dataZoomModel.get('realtime'); + !realtime && this._dispatchZoomAction(); + }, + + _onClickPanelClick: function (e) { + var size = this._size; + var localPoint = this._displayables.barGroup.transformCoordToLocal(e.offsetX, e.offsetY); + + if (localPoint[0] < 0 || localPoint[0] > size[0] + || localPoint[1] < 0 || localPoint[1] > size[1] + ) { + return; + } + + var handleEnds = this._handleEnds; + var center = (handleEnds[0] + handleEnds[1]) / 2; + + var changed = this._updateInterval('all', localPoint[0] - center); + this._updateView(); + changed && this._dispatchZoomAction(); + }, + + /** + * This action will be throttled. + * @private + */ + _dispatchZoomAction: function () { + var range = this._range; + + this.api.dispatchAction({ + type: 'dataZoom', + from: this.uid, + dataZoomId: this.dataZoomModel.id, + start: range[0], + end: range[1] + }); + }, + + /** + * @private + */ + _findCoordRect: function () { + // Find the grid coresponding to the first axis referred by dataZoom. + var rect; + each$26(this.getTargetCoordInfo(), function (coordInfoList) { + if (!rect && coordInfoList.length) { + var coordSys = coordInfoList[0].model.coordinateSystem; + rect = coordSys.getRect && coordSys.getRect(); + } + }); + if (!rect) { + var width = this.api.getWidth(); + var height = this.api.getHeight(); + rect = { + x: width * 0.2, + y: height * 0.2, + width: width * 0.6, + height: height * 0.6 + }; + } + + return rect; + } + +}); + +function getOtherDim(thisDim) { + // FIXME + // 这个逻辑和getOtherAxis里一致,但是写在这里是否不好 + var map$$1 = {x: 'y', y: 'x', radius: 'angle', angle: 'radius'}; + return map$$1[thisDim]; +} + +function getCursor(orient) { + return orient === 'vertical' ? 'ns-resize' : 'ew-resize'; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +DataZoomModel.extend({ + + type: 'dataZoom.inside', + + /** + * @protected + */ + defaultOption: { + disabled: false, // Whether disable this inside zoom. + zoomLock: false, // Whether disable zoom but only pan. + zoomOnMouseWheel: true, // Can be: true / false / 'shift' / 'ctrl' / 'alt'. + moveOnMouseMove: true, // Can be: true / false / 'shift' / 'ctrl' / 'alt'. + moveOnMouseWheel: false, // Can be: true / false / 'shift' / 'ctrl' / 'alt'. + preventDefaultMouseMove: true + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Only create one roam controller for each coordinate system. +// one roam controller might be refered by two inside data zoom +// components (for example, one for x and one for y). When user +// pan or zoom, only dispatch one action for those data zoom +// components. + +var ATTR$2 = '\0_ec_dataZoom_roams'; + + +/** + * @public + * @param {module:echarts/ExtensionAPI} api + * @param {Object} dataZoomInfo + * @param {string} dataZoomInfo.coordId + * @param {Function} dataZoomInfo.containsPoint + * @param {Array.} dataZoomInfo.allCoordIds + * @param {string} dataZoomInfo.dataZoomId + * @param {Object} dataZoomInfo.getRange + * @param {Function} dataZoomInfo.getRange.pan + * @param {Function} dataZoomInfo.getRange.zoom + * @param {Function} dataZoomInfo.getRange.scrollMove + * @param {boolean} dataZoomInfo.dataZoomModel + */ +function register$2(api, dataZoomInfo) { + var store = giveStore$1(api); + var theDataZoomId = dataZoomInfo.dataZoomId; + var theCoordId = dataZoomInfo.coordId; + + // Do clean when a dataZoom changes its target coordnate system. + // Avoid memory leak, dispose all not-used-registered. + each$1(store, function (record, coordId) { + var dataZoomInfos = record.dataZoomInfos; + if (dataZoomInfos[theDataZoomId] + && indexOf(dataZoomInfo.allCoordIds, theCoordId) < 0 + ) { + delete dataZoomInfos[theDataZoomId]; + record.count--; + } + }); + + cleanStore(store); + + var record = store[theCoordId]; + // Create if needed. + if (!record) { + record = store[theCoordId] = { + coordId: theCoordId, + dataZoomInfos: {}, + count: 0 + }; + record.controller = createController(api, record); + record.dispatchAction = curry(dispatchAction$1, api); + } + + // Update reference of dataZoom. + !(record.dataZoomInfos[theDataZoomId]) && record.count++; + record.dataZoomInfos[theDataZoomId] = dataZoomInfo; + + var controllerParams = mergeControllerParams(record.dataZoomInfos); + record.controller.enable(controllerParams.controlType, controllerParams.opt); + + // Consider resize, area should be always updated. + record.controller.setPointerChecker(dataZoomInfo.containsPoint); + + // Update throttle. + createOrUpdate( + record, + 'dispatchAction', + dataZoomInfo.dataZoomModel.get('throttle', true), + 'fixRate' + ); +} + +/** + * @public + * @param {module:echarts/ExtensionAPI} api + * @param {string} dataZoomId + */ +function unregister$1(api, dataZoomId) { + var store = giveStore$1(api); + + each$1(store, function (record) { + record.controller.dispose(); + var dataZoomInfos = record.dataZoomInfos; + if (dataZoomInfos[dataZoomId]) { + delete dataZoomInfos[dataZoomId]; + record.count--; + } + }); + + cleanStore(store); +} + +/** + * @public + */ +function generateCoordId(coordModel) { + return coordModel.type + '\0_' + coordModel.id; +} + +/** + * Key: coordId, value: {dataZoomInfos: [], count, controller} + * @type {Array.} + */ +function giveStore$1(api) { + // Mount store on zrender instance, so that we do not + // need to worry about dispose. + var zr = api.getZr(); + return zr[ATTR$2] || (zr[ATTR$2] = {}); +} + +function createController(api, newRecord) { + var controller = new RoamController(api.getZr()); + + each$1(['pan', 'zoom', 'scrollMove'], function (eventName) { + controller.on(eventName, function (event) { + var batch = []; + + each$1(newRecord.dataZoomInfos, function (info) { + // Check whether the behaviors (zoomOnMouseWheel, moveOnMouseMove, + // moveOnMouseWheel, ...) enabled. + if (!event.isAvailableBehavior(info.dataZoomModel.option)) { + return; + } + + var method = (info.getRange || {})[eventName]; + var range = method && method(newRecord.controller, event); + + !info.dataZoomModel.get('disabled', true) && range && batch.push({ + dataZoomId: info.dataZoomId, + start: range[0], + end: range[1] + }); + }); + + batch.length && newRecord.dispatchAction(batch); + }); + }); + + return controller; +} + +function cleanStore(store) { + each$1(store, function (record, coordId) { + if (!record.count) { + record.controller.dispose(); + delete store[coordId]; + } + }); +} + +/** + * This action will be throttled. + */ +function dispatchAction$1(api, batch) { + api.dispatchAction({ + type: 'dataZoom', + batch: batch + }); +} + +/** + * Merge roamController settings when multiple dataZooms share one roamController. + */ +function mergeControllerParams(dataZoomInfos) { + var controlType; + // DO NOT use reserved word (true, false, undefined) as key literally. Even if encapsulated + // as string, it is probably revert to reserved word by compress tool. See #7411. + var prefix = 'type_'; + var typePriority = { + 'type_true': 2, + 'type_move': 1, + 'type_false': 0, + 'type_undefined': -1 + }; + var preventDefaultMouseMove = true; + + each$1(dataZoomInfos, function (dataZoomInfo) { + var dataZoomModel = dataZoomInfo.dataZoomModel; + var oneType = dataZoomModel.get('disabled', true) + ? false + : dataZoomModel.get('zoomLock', true) + ? 'move' + : true; + if (typePriority[prefix + oneType] > typePriority[prefix + controlType]) { + controlType = oneType; + } + + // Prevent default move event by default. If one false, do not prevent. Otherwise + // users may be confused why it does not work when multiple insideZooms exist. + preventDefaultMouseMove &= dataZoomModel.get('preventDefaultMouseMove', true); + }); + + return { + controlType: controlType, + opt: { + // RoamController will enable all of these functionalities, + // and the final behavior is determined by its event listener + // provided by each inside zoom. + zoomOnMouseWheel: true, + moveOnMouseMove: true, + moveOnMouseWheel: true, + preventDefaultMouseMove: !!preventDefaultMouseMove + } + }; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var bind$6 = bind; + +var InsideZoomView = DataZoomView.extend({ + + type: 'dataZoom.inside', + + /** + * @override + */ + init: function (ecModel, api) { + /** + * 'throttle' is used in this.dispatchAction, so we save range + * to avoid missing some 'pan' info. + * @private + * @type {Array.} + */ + this._range; + }, + + /** + * @override + */ + render: function (dataZoomModel, ecModel, api, payload) { + InsideZoomView.superApply(this, 'render', arguments); + + // Hence the `throttle` util ensures to preserve command order, + // here simply updating range all the time will not cause missing + // any of the the roam change. + this._range = dataZoomModel.getPercentRange(); + + // Reset controllers. + each$1(this.getTargetCoordInfo(), function (coordInfoList, coordSysName) { + + var allCoordIds = map(coordInfoList, function (coordInfo) { + return generateCoordId(coordInfo.model); + }); + + each$1(coordInfoList, function (coordInfo) { + var coordModel = coordInfo.model; + + var getRange = {}; + each$1(['pan', 'zoom', 'scrollMove'], function (eventName) { + getRange[eventName] = bind$6(roamHandlers[eventName], this, coordInfo, coordSysName); + }, this); + + register$2( + api, + { + coordId: generateCoordId(coordModel), + allCoordIds: allCoordIds, + containsPoint: function (e, x, y) { + return coordModel.coordinateSystem.containPoint([x, y]); + }, + dataZoomId: dataZoomModel.id, + dataZoomModel: dataZoomModel, + getRange: getRange + } + ); + }, this); + + }, this); + }, + + /** + * @override + */ + dispose: function () { + unregister$1(this.api, this.dataZoomModel.id); + InsideZoomView.superApply(this, 'dispose', arguments); + this._range = null; + } + +}); + +var roamHandlers = { + + /** + * @this {module:echarts/component/dataZoom/InsideZoomView} + */ + zoom: function (coordInfo, coordSysName, controller, e) { + var lastRange = this._range; + var range = lastRange.slice(); + + // Calculate transform by the first axis. + var axisModel = coordInfo.axisModels[0]; + if (!axisModel) { + return; + } + + var directionInfo = getDirectionInfo[coordSysName]( + null, [e.originX, e.originY], axisModel, controller, coordInfo + ); + var percentPoint = ( + directionInfo.signal > 0 + ? (directionInfo.pixelStart + directionInfo.pixelLength - directionInfo.pixel) + : (directionInfo.pixel - directionInfo.pixelStart) + ) / directionInfo.pixelLength * (range[1] - range[0]) + range[0]; + + var scale = Math.max(1 / e.scale, 0); + range[0] = (range[0] - percentPoint) * scale + percentPoint; + range[1] = (range[1] - percentPoint) * scale + percentPoint; + + // Restrict range. + var minMaxSpan = this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan(); + + sliderMove(0, range, [0, 100], 0, minMaxSpan.minSpan, minMaxSpan.maxSpan); + + this._range = range; + + if (lastRange[0] !== range[0] || lastRange[1] !== range[1]) { + return range; + } + }, + + /** + * @this {module:echarts/component/dataZoom/InsideZoomView} + */ + pan: makeMover(function (range, axisModel, coordInfo, coordSysName, controller, e) { + var directionInfo = getDirectionInfo[coordSysName]( + [e.oldX, e.oldY], [e.newX, e.newY], axisModel, controller, coordInfo + ); + + return directionInfo.signal + * (range[1] - range[0]) + * directionInfo.pixel / directionInfo.pixelLength; + }), + + /** + * @this {module:echarts/component/dataZoom/InsideZoomView} + */ + scrollMove: makeMover(function (range, axisModel, coordInfo, coordSysName, controller, e) { + var directionInfo = getDirectionInfo[coordSysName]( + [0, 0], [e.scrollDelta, e.scrollDelta], axisModel, controller, coordInfo + ); + return directionInfo.signal * (range[1] - range[0]) * e.scrollDelta; + }) +}; + +function makeMover(getPercentDelta) { + return function (coordInfo, coordSysName, controller, e) { + var lastRange = this._range; + var range = lastRange.slice(); + + // Calculate transform by the first axis. + var axisModel = coordInfo.axisModels[0]; + if (!axisModel) { + return; + } + + var percentDelta = getPercentDelta( + range, axisModel, coordInfo, coordSysName, controller, e + ); + + sliderMove(percentDelta, range, [0, 100], 'all'); + + this._range = range; + + if (lastRange[0] !== range[0] || lastRange[1] !== range[1]) { + return range; + } + }; +} + +var getDirectionInfo = { + + grid: function (oldPoint, newPoint, axisModel, controller, coordInfo) { + var axis = axisModel.axis; + var ret = {}; + var rect = coordInfo.model.coordinateSystem.getRect(); + oldPoint = oldPoint || [0, 0]; + + if (axis.dim === 'x') { + ret.pixel = newPoint[0] - oldPoint[0]; + ret.pixelLength = rect.width; + ret.pixelStart = rect.x; + ret.signal = axis.inverse ? 1 : -1; + } + else { // axis.dim === 'y' + ret.pixel = newPoint[1] - oldPoint[1]; + ret.pixelLength = rect.height; + ret.pixelStart = rect.y; + ret.signal = axis.inverse ? -1 : 1; + } + + return ret; + }, + + polar: function (oldPoint, newPoint, axisModel, controller, coordInfo) { + var axis = axisModel.axis; + var ret = {}; + var polar = coordInfo.model.coordinateSystem; + var radiusExtent = polar.getRadiusAxis().getExtent(); + var angleExtent = polar.getAngleAxis().getExtent(); + + oldPoint = oldPoint ? polar.pointToCoord(oldPoint) : [0, 0]; + newPoint = polar.pointToCoord(newPoint); + + if (axisModel.mainType === 'radiusAxis') { + ret.pixel = newPoint[0] - oldPoint[0]; + // ret.pixelLength = Math.abs(radiusExtent[1] - radiusExtent[0]); + // ret.pixelStart = Math.min(radiusExtent[0], radiusExtent[1]); + ret.pixelLength = radiusExtent[1] - radiusExtent[0]; + ret.pixelStart = radiusExtent[0]; + ret.signal = axis.inverse ? 1 : -1; + } + else { // 'angleAxis' + ret.pixel = newPoint[1] - oldPoint[1]; + // ret.pixelLength = Math.abs(angleExtent[1] - angleExtent[0]); + // ret.pixelStart = Math.min(angleExtent[0], angleExtent[1]); + ret.pixelLength = angleExtent[1] - angleExtent[0]; + ret.pixelStart = angleExtent[0]; + ret.signal = axis.inverse ? -1 : 1; + } + + return ret; + }, + + singleAxis: function (oldPoint, newPoint, axisModel, controller, coordInfo) { + var axis = axisModel.axis; + var rect = coordInfo.model.coordinateSystem.getRect(); + var ret = {}; + + oldPoint = oldPoint || [0, 0]; + + if (axis.orient === 'horizontal') { + ret.pixel = newPoint[0] - oldPoint[0]; + ret.pixelLength = rect.width; + ret.pixelStart = rect.x; + ret.signal = axis.inverse ? 1 : -1; + } + else { // 'vertical' + ret.pixel = newPoint[1] - oldPoint[1]; + ret.pixelLength = rect.height; + ret.pixelStart = rect.y; + ret.signal = axis.inverse ? -1 : 1; + } + + return ret; + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + + +// Do not include './dataZoomSelect', +// since it only work for toolbox dataZoom. + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var each$27 = each$1; + +var preprocessor$3 = function (option) { + var visualMap = option && option.visualMap; + + if (!isArray(visualMap)) { + visualMap = visualMap ? [visualMap] : []; + } + + each$27(visualMap, function (opt) { + if (!opt) { + return; + } + + // rename splitList to pieces + if (has$2(opt, 'splitList') && !has$2(opt, 'pieces')) { + opt.pieces = opt.splitList; + delete opt.splitList; + } + + var pieces = opt.pieces; + if (pieces && isArray(pieces)) { + each$27(pieces, function (piece) { + if (isObject$1(piece)) { + if (has$2(piece, 'start') && !has$2(piece, 'min')) { + piece.min = piece.start; + } + if (has$2(piece, 'end') && !has$2(piece, 'max')) { + piece.max = piece.end; + } + } + }); + } + }); +}; + +function has$2(obj, name) { + return obj && obj.hasOwnProperty && obj.hasOwnProperty(name); +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +ComponentModel.registerSubTypeDefaulter('visualMap', function (option) { + // Compatible with ec2, when splitNumber === 0, continuous visualMap will be used. + return ( + !option.categories + && ( + !( + option.pieces + ? option.pieces.length > 0 + : option.splitNumber > 0 + ) + || option.calculable + ) + ) + ? 'continuous' : 'piecewise'; +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var VISUAL_PRIORITY = PRIORITY.VISUAL.COMPONENT; + +registerVisual(VISUAL_PRIORITY, { + createOnAllSeries: true, + reset: function (seriesModel, ecModel) { + var resetDefines = []; + ecModel.eachComponent('visualMap', function (visualMapModel) { + var pipelineContext = seriesModel.pipelineContext; + if (!visualMapModel.isTargetSeries(seriesModel) + || (pipelineContext && pipelineContext.large) + ) { + return; + } + + resetDefines.push(incrementalApplyVisual( + visualMapModel.stateList, + visualMapModel.targetVisuals, + bind(visualMapModel.getValueState, visualMapModel), + visualMapModel.getDataDimension(seriesModel.getData()) + )); + }); + + return resetDefines; + } +}); + +// Only support color. +registerVisual(VISUAL_PRIORITY, { + createOnAllSeries: true, + reset: function (seriesModel, ecModel) { + var data = seriesModel.getData(); + var visualMetaList = []; + + ecModel.eachComponent('visualMap', function (visualMapModel) { + if (visualMapModel.isTargetSeries(seriesModel)) { + var visualMeta = visualMapModel.getVisualMeta( + bind(getColorVisual, null, seriesModel, visualMapModel) + ) || {stops: [], outerColors: []}; + + var concreteDim = visualMapModel.getDataDimension(data); + var dimInfo = data.getDimensionInfo(concreteDim); + if (dimInfo != null) { + // visualMeta.dimension should be dimension index, but not concrete dimension. + visualMeta.dimension = dimInfo.index; + visualMetaList.push(visualMeta); + } + } + }); + + // console.log(JSON.stringify(visualMetaList.map(a => a.stops))); + seriesModel.getData().setVisual('visualMeta', visualMetaList); + } +}); + +// FIXME +// performance and export for heatmap? +// value can be Infinity or -Infinity +function getColorVisual(seriesModel, visualMapModel, value, valueState) { + var mappings = visualMapModel.targetVisuals[valueState]; + var visualTypes = VisualMapping.prepareVisualTypes(mappings); + var resultVisual = { + color: seriesModel.getData().getVisual('color') // default color. + }; + + for (var i = 0, len = visualTypes.length; i < len; i++) { + var type = visualTypes[i]; + var mapping = mappings[ + type === 'opacity' ? '__alphaForOpacity' : type + ]; + mapping && mapping.applyVisual(value, getVisual, setVisual); + } + + return resultVisual.color; + + function getVisual(key) { + return resultVisual[key]; + } + + function setVisual(key, value) { + resultVisual[key] = value; + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @file Visual mapping. + */ + +var visualDefault = { + + /** + * @public + */ + get: function (visualType, key, isCategory) { + var value = clone( + (defaultOption$3[visualType] || {})[key] + ); + + return isCategory + ? (isArray(value) ? value[value.length - 1] : value) + : value; + } + +}; + +var defaultOption$3 = { + + color: { + active: ['#006edd', '#e0ffff'], + inactive: ['rgba(0,0,0,0)'] + }, + + colorHue: { + active: [0, 360], + inactive: [0, 0] + }, + + colorSaturation: { + active: [0.3, 1], + inactive: [0, 0] + }, + + colorLightness: { + active: [0.9, 0.5], + inactive: [0, 0] + }, + + colorAlpha: { + active: [0.3, 1], + inactive: [0, 0] + }, + + opacity: { + active: [0.3, 1], + inactive: [0, 0] + }, + + symbol: { + active: ['circle', 'roundRect', 'diamond'], + inactive: ['none'] + }, + + symbolSize: { + active: [10, 50], + inactive: [0, 0] + } +}; + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var mapVisual$2 = VisualMapping.mapVisual; +var eachVisual = VisualMapping.eachVisual; +var isArray$3 = isArray; +var each$28 = each$1; +var asc$3 = asc; +var linearMap$2 = linearMap; +var noop$2 = noop; + +var VisualMapModel = extendComponentModel({ + + type: 'visualMap', + + dependencies: ['series'], + + /** + * @readOnly + * @type {Array.} + */ + stateList: ['inRange', 'outOfRange'], + + /** + * @readOnly + * @type {Array.} + */ + replacableOptionKeys: [ + 'inRange', 'outOfRange', 'target', 'controller', 'color' + ], + + /** + * [lowerBound, upperBound] + * + * @readOnly + * @type {Array.} + */ + dataBound: [-Infinity, Infinity], + + /** + * @readOnly + * @type {string|Object} + */ + layoutMode: {type: 'box', ignoreSize: true}, + + /** + * @protected + */ + defaultOption: { + show: true, + + zlevel: 0, + z: 4, + + seriesIndex: 'all', // 'all' or null/undefined: all series. + // A number or an array of number: the specified series. + + // set min: 0, max: 200, only for campatible with ec2. + // In fact min max should not have default value. + min: 0, // min value, must specified if pieces is not specified. + max: 200, // max value, must specified if pieces is not specified. + + dimension: null, + inRange: null, // 'color', 'colorHue', 'colorSaturation', 'colorLightness', 'colorAlpha', + // 'symbol', 'symbolSize' + outOfRange: null, // 'color', 'colorHue', 'colorSaturation', + // 'colorLightness', 'colorAlpha', + // 'symbol', 'symbolSize' + + left: 0, // 'center' ¦ 'left' ¦ 'right' ¦ {number} (px) + right: null, // The same as left. + top: null, // 'top' ¦ 'bottom' ¦ 'center' ¦ {number} (px) + bottom: 0, // The same as top. + + itemWidth: null, + itemHeight: null, + inverse: false, + orient: 'vertical', // 'horizontal' ¦ 'vertical' + + backgroundColor: 'rgba(0,0,0,0)', + borderColor: '#ccc', // 值域边框颜色 + contentColor: '#5793f3', + inactiveColor: '#aaa', + borderWidth: 0, // 值域边框线宽,单位px,默认为0(无边框) + padding: 5, // 值域内边距,单位px,默认各方向内边距为5, + // 接受数组分别设定上右下左边距,同css + textGap: 10, // + precision: 0, // 小数精度,默认为0,无小数点 + color: null, //颜色(deprecated,兼容ec2,顺序同pieces,不同于inRange/outOfRange) + + formatter: null, + text: null, // 文本,如['高', '低'],兼容ec2,text[0]对应高值,text[1]对应低值 + textStyle: { + color: '#333' // 值域文字颜色 + } + }, + + /** + * @protected + */ + init: function (option, parentModel, ecModel) { + + /** + * @private + * @type {Array.} + */ + this._dataExtent; + + /** + * @readOnly + */ + this.targetVisuals = {}; + + /** + * @readOnly + */ + this.controllerVisuals = {}; + + /** + * @readOnly + */ + this.textStyleModel; + + /** + * [width, height] + * @readOnly + * @type {Array.} + */ + this.itemSize; + + this.mergeDefaultAndTheme(option, ecModel); + }, + + /** + * @protected + */ + optionUpdated: function (newOption, isInit) { + var thisOption = this.option; + + // FIXME + // necessary? + // Disable realtime view update if canvas is not supported. + if (!env$1.canvasSupported) { + thisOption.realtime = false; + } + + !isInit && replaceVisualOption( + thisOption, newOption, this.replacableOptionKeys + ); + + this.textStyleModel = this.getModel('textStyle'); + + this.resetItemSize(); + + this.completeVisualOption(); + }, + + /** + * @protected + */ + resetVisual: function (supplementVisualOption) { + var stateList = this.stateList; + supplementVisualOption = bind(supplementVisualOption, this); + + this.controllerVisuals = createVisualMappings( + this.option.controller, stateList, supplementVisualOption + ); + this.targetVisuals = createVisualMappings( + this.option.target, stateList, supplementVisualOption + ); + }, + + /** + * @protected + * @return {Array.} An array of series indices. + */ + getTargetSeriesIndices: function () { + var optionSeriesIndex = this.option.seriesIndex; + var seriesIndices = []; + + if (optionSeriesIndex == null || optionSeriesIndex === 'all') { + this.ecModel.eachSeries(function (seriesModel, index) { + seriesIndices.push(index); + }); + } + else { + seriesIndices = normalizeToArray(optionSeriesIndex); + } + + return seriesIndices; + }, + + /** + * @public + */ + eachTargetSeries: function (callback, context) { + each$1(this.getTargetSeriesIndices(), function (seriesIndex) { + callback.call(context, this.ecModel.getSeriesByIndex(seriesIndex)); + }, this); + }, + + /** + * @pubilc + */ + isTargetSeries: function (seriesModel) { + var is = false; + this.eachTargetSeries(function (model) { + model === seriesModel && (is = true); + }); + return is; + }, + + /** + * @example + * this.formatValueText(someVal); // format single numeric value to text. + * this.formatValueText(someVal, true); // format single category value to text. + * this.formatValueText([min, max]); // format numeric min-max to text. + * this.formatValueText([this.dataBound[0], max]); // using data lower bound. + * this.formatValueText([min, this.dataBound[1]]); // using data upper bound. + * + * @param {number|Array.} value Real value, or this.dataBound[0 or 1]. + * @param {boolean} [isCategory=false] Only available when value is number. + * @param {Array.} edgeSymbols Open-close symbol when value is interval. + * @return {string} + * @protected + */ + formatValueText: function (value, isCategory, edgeSymbols) { + var option = this.option; + var precision = option.precision; + var dataBound = this.dataBound; + var formatter = option.formatter; + var isMinMax; + var textValue; + edgeSymbols = edgeSymbols || ['<', '>']; + + if (isArray(value)) { + value = value.slice(); + isMinMax = true; + } + + textValue = isCategory + ? value + : (isMinMax + ? [toFixed(value[0]), toFixed(value[1])] + : toFixed(value) + ); + + if (isString(formatter)) { + return formatter + .replace('{value}', isMinMax ? textValue[0] : textValue) + .replace('{value2}', isMinMax ? textValue[1] : textValue); + } + else if (isFunction$1(formatter)) { + return isMinMax + ? formatter(value[0], value[1]) + : formatter(value); + } + + if (isMinMax) { + if (value[0] === dataBound[0]) { + return edgeSymbols[0] + ' ' + textValue[1]; + } + else if (value[1] === dataBound[1]) { + return edgeSymbols[1] + ' ' + textValue[0]; + } + else { + return textValue[0] + ' - ' + textValue[1]; + } + } + else { // Format single value (includes category case). + return textValue; + } + + function toFixed(val) { + return val === dataBound[0] + ? 'min' + : val === dataBound[1] + ? 'max' + : (+val).toFixed(Math.min(precision, 20)); + } + }, + + /** + * @protected + */ + resetExtent: function () { + var thisOption = this.option; + + // Can not calculate data extent by data here. + // Because series and data may be modified in processing stage. + // So we do not support the feature "auto min/max". + + var extent = asc$3([thisOption.min, thisOption.max]); + + this._dataExtent = extent; + }, + + /** + * @public + * @param {module:echarts/data/List} list + * @return {string} Concrete dimention. If return null/undefined, + * no dimension used. + */ + getDataDimension: function (list) { + var optDim = this.option.dimension; + var listDimensions = list.dimensions; + if (optDim == null && !listDimensions.length) { + return; + } + + if (optDim != null) { + return list.getDimension(optDim); + } + + var dimNames = list.dimensions; + for (var i = dimNames.length - 1; i >= 0; i--) { + var dimName = dimNames[i]; + var dimInfo = list.getDimensionInfo(dimName); + if (!dimInfo.isCalculationCoord) { + return dimName; + } + } + }, + + /** + * @public + * @override + */ + getExtent: function () { + return this._dataExtent.slice(); + }, + + /** + * @protected + */ + completeVisualOption: function () { + var ecModel = this.ecModel; + var thisOption = this.option; + var base = {inRange: thisOption.inRange, outOfRange: thisOption.outOfRange}; + + var target = thisOption.target || (thisOption.target = {}); + var controller = thisOption.controller || (thisOption.controller = {}); + + merge(target, base); // Do not override + merge(controller, base); // Do not override + + var isCategory = this.isCategory(); + + completeSingle.call(this, target); + completeSingle.call(this, controller); + completeInactive.call(this, target, 'inRange', 'outOfRange'); + // completeInactive.call(this, target, 'outOfRange', 'inRange'); + completeController.call(this, controller); + + function completeSingle(base) { + // Compatible with ec2 dataRange.color. + // The mapping order of dataRange.color is: [high value, ..., low value] + // whereas inRange.color and outOfRange.color is [low value, ..., high value] + // Notice: ec2 has no inverse. + if (isArray$3(thisOption.color) + // If there has been inRange: {symbol: ...}, adding color is a mistake. + // So adding color only when no inRange defined. + && !base.inRange + ) { + base.inRange = {color: thisOption.color.slice().reverse()}; + } + + // Compatible with previous logic, always give a defautl color, otherwise + // simple config with no inRange and outOfRange will not work. + // Originally we use visualMap.color as the default color, but setOption at + // the second time the default color will be erased. So we change to use + // constant DEFAULT_COLOR. + // If user do not want the defualt color, set inRange: {color: null}. + base.inRange = base.inRange || {color: ecModel.get('gradientColor')}; + + // If using shortcut like: {inRange: 'symbol'}, complete default value. + each$28(this.stateList, function (state) { + var visualType = base[state]; + + if (isString(visualType)) { + var defa = visualDefault.get(visualType, 'active', isCategory); + if (defa) { + base[state] = {}; + base[state][visualType] = defa; + } + else { + // Mark as not specified. + delete base[state]; + } + } + }, this); + } + + function completeInactive(base, stateExist, stateAbsent) { + var optExist = base[stateExist]; + var optAbsent = base[stateAbsent]; + + if (optExist && !optAbsent) { + optAbsent = base[stateAbsent] = {}; + each$28(optExist, function (visualData, visualType) { + if (!VisualMapping.isValidType(visualType)) { + return; + } + + var defa = visualDefault.get(visualType, 'inactive', isCategory); + + if (defa != null) { + optAbsent[visualType] = defa; + + // Compatibable with ec2: + // Only inactive color to rgba(0,0,0,0) can not + // make label transparent, so use opacity also. + if (visualType === 'color' + && !optAbsent.hasOwnProperty('opacity') + && !optAbsent.hasOwnProperty('colorAlpha') + ) { + optAbsent.opacity = [0, 0]; + } + } + }); + } + } + + function completeController(controller) { + var symbolExists = (controller.inRange || {}).symbol + || (controller.outOfRange || {}).symbol; + var symbolSizeExists = (controller.inRange || {}).symbolSize + || (controller.outOfRange || {}).symbolSize; + var inactiveColor = this.get('inactiveColor'); + + each$28(this.stateList, function (state) { + + var itemSize = this.itemSize; + var visuals = controller[state]; + + // Set inactive color for controller if no other color + // attr (like colorAlpha) specified. + if (!visuals) { + visuals = controller[state] = { + color: isCategory ? inactiveColor : [inactiveColor] + }; + } + + // Consistent symbol and symbolSize if not specified. + if (visuals.symbol == null) { + visuals.symbol = symbolExists + && clone(symbolExists) + || (isCategory ? 'roundRect' : ['roundRect']); + } + if (visuals.symbolSize == null) { + visuals.symbolSize = symbolSizeExists + && clone(symbolSizeExists) + || (isCategory ? itemSize[0] : [itemSize[0], itemSize[0]]); + } + + // Filter square and none. + visuals.symbol = mapVisual$2(visuals.symbol, function (symbol) { + return (symbol === 'none' || symbol === 'square') ? 'roundRect' : symbol; + }); + + // Normalize symbolSize + var symbolSize = visuals.symbolSize; + + if (symbolSize != null) { + var max = -Infinity; + // symbolSize can be object when categories defined. + eachVisual(symbolSize, function (value) { + value > max && (max = value); + }); + visuals.symbolSize = mapVisual$2(symbolSize, function (value) { + return linearMap$2(value, [0, max], [0, itemSize[0]], true); + }); + } + + }, this); + } + }, + + /** + * @protected + */ + resetItemSize: function () { + this.itemSize = [ + parseFloat(this.get('itemWidth')), + parseFloat(this.get('itemHeight')) + ]; + }, + + /** + * @public + */ + isCategory: function () { + return !!this.option.categories; + }, + + /** + * @public + * @abstract + */ + setSelected: noop$2, + + /** + * @public + * @abstract + * @param {*|module:echarts/data/List} valueOrData + * @param {number} dataIndex + * @return {string} state See this.stateList + */ + getValueState: noop$2, + + /** + * FIXME + * Do not publish to thirt-part-dev temporarily + * util the interface is stable. (Should it return + * a function but not visual meta?) + * + * @pubilc + * @abstract + * @param {Function} getColorVisual + * params: value, valueState + * return: color + * @return {Object} visualMeta + * should includes {stops, outerColors} + * outerColor means [colorBeyondMinValue, colorBeyondMaxValue] + */ + getVisualMeta: noop$2 + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// Constant +var DEFAULT_BAR_BOUND = [20, 140]; + +var ContinuousModel = VisualMapModel.extend({ + + type: 'visualMap.continuous', + + /** + * @protected + */ + defaultOption: { + align: 'auto', // 'auto', 'left', 'right', 'top', 'bottom' + calculable: false, // This prop effect default component type determine, + // See echarts/component/visualMap/typeDefaulter. + range: null, // selected range. In default case `range` is [min, max] + // and can auto change along with modification of min max, + // util use specifid a range. + realtime: true, // Whether realtime update. + itemHeight: null, // The length of the range control edge. + itemWidth: null, // The length of the other side. + hoverLink: true, // Enable hover highlight. + hoverLinkDataSize: null, // The size of hovered data. + hoverLinkOnHandle: null // Whether trigger hoverLink when hover handle. + // If not specified, follow the value of `realtime`. + }, + + /** + * @override + */ + optionUpdated: function (newOption, isInit) { + ContinuousModel.superApply(this, 'optionUpdated', arguments); + + this.resetExtent(); + + this.resetVisual(function (mappingOption) { + mappingOption.mappingMethod = 'linear'; + mappingOption.dataExtent = this.getExtent(); + }); + + this._resetRange(); + }, + + /** + * @protected + * @override + */ + resetItemSize: function () { + ContinuousModel.superApply(this, 'resetItemSize', arguments); + + var itemSize = this.itemSize; + + this._orient === 'horizontal' && itemSize.reverse(); + + (itemSize[0] == null || isNaN(itemSize[0])) && (itemSize[0] = DEFAULT_BAR_BOUND[0]); + (itemSize[1] == null || isNaN(itemSize[1])) && (itemSize[1] = DEFAULT_BAR_BOUND[1]); + }, + + /** + * @private + */ + _resetRange: function () { + var dataExtent = this.getExtent(); + var range = this.option.range; + + if (!range || range.auto) { + // `range` should always be array (so we dont use other + // value like 'auto') for user-friend. (consider getOption). + dataExtent.auto = 1; + this.option.range = dataExtent; + } + else if (isArray(range)) { + if (range[0] > range[1]) { + range.reverse(); + } + range[0] = Math.max(range[0], dataExtent[0]); + range[1] = Math.min(range[1], dataExtent[1]); + } + }, + + /** + * @protected + * @override + */ + completeVisualOption: function () { + VisualMapModel.prototype.completeVisualOption.apply(this, arguments); + + each$1(this.stateList, function (state) { + var symbolSize = this.option.controller[state].symbolSize; + if (symbolSize && symbolSize[0] !== symbolSize[1]) { + symbolSize[0] = 0; // For good looking. + } + }, this); + }, + + /** + * @override + */ + setSelected: function (selected) { + this.option.range = selected.slice(); + this._resetRange(); + }, + + /** + * @public + */ + getSelected: function () { + var dataExtent = this.getExtent(); + + var dataInterval = asc( + (this.get('range') || []).slice() + ); + + // Clamp + dataInterval[0] > dataExtent[1] && (dataInterval[0] = dataExtent[1]); + dataInterval[1] > dataExtent[1] && (dataInterval[1] = dataExtent[1]); + dataInterval[0] < dataExtent[0] && (dataInterval[0] = dataExtent[0]); + dataInterval[1] < dataExtent[0] && (dataInterval[1] = dataExtent[0]); + + return dataInterval; + }, + + /** + * @override + */ + getValueState: function (value) { + var range = this.option.range; + var dataExtent = this.getExtent(); + + // When range[0] === dataExtent[0], any value larger than dataExtent[0] maps to 'inRange'. + // range[1] is processed likewise. + return ( + (range[0] <= dataExtent[0] || range[0] <= value) + && (range[1] >= dataExtent[1] || value <= range[1]) + ) ? 'inRange' : 'outOfRange'; + }, + + /** + * @params {Array.} range target value: range[0] <= value && value <= range[1] + * @return {Array.} [{seriesId, dataIndices: >}, ...] + */ + findTargetDataIndices: function (range) { + var result = []; + + this.eachTargetSeries(function (seriesModel) { + var dataIndices = []; + var data = seriesModel.getData(); + + data.each(this.getDataDimension(data), function (value, dataIndex) { + range[0] <= value && value <= range[1] && dataIndices.push(dataIndex); + }, this); + + result.push({seriesId: seriesModel.id, dataIndex: dataIndices}); + }, this); + + return result; + }, + + /** + * @implement + */ + getVisualMeta: function (getColorVisual) { + var oVals = getColorStopValues(this, 'outOfRange', this.getExtent()); + var iVals = getColorStopValues(this, 'inRange', this.option.range.slice()); + var stops = []; + + function setStop(value, valueState) { + stops.push({ + value: value, + color: getColorVisual(value, valueState) + }); + } + + // Format to: outOfRange -- inRange -- outOfRange. + var iIdx = 0; + var oIdx = 0; + var iLen = iVals.length; + var oLen = oVals.length; + + for (; oIdx < oLen && (!iVals.length || oVals[oIdx] <= iVals[0]); oIdx++) { + // If oVal[oIdx] === iVals[iIdx], oVal[oIdx] should be ignored. + if (oVals[oIdx] < iVals[iIdx]) { + setStop(oVals[oIdx], 'outOfRange'); + } + } + for (var first = 1; iIdx < iLen; iIdx++, first = 0) { + // If range is full, value beyond min, max will be clamped. + // make a singularity + first && stops.length && setStop(iVals[iIdx], 'outOfRange'); + setStop(iVals[iIdx], 'inRange'); + } + for (var first = 1; oIdx < oLen; oIdx++) { + if (!iVals.length || iVals[iVals.length - 1] < oVals[oIdx]) { + // make a singularity + if (first) { + stops.length && setStop(stops[stops.length - 1].value, 'outOfRange'); + first = 0; + } + setStop(oVals[oIdx], 'outOfRange'); + } + } + + var stopsLen = stops.length; + + return { + stops: stops, + outerColors: [ + stopsLen ? stops[0].color : 'transparent', + stopsLen ? stops[stopsLen - 1].color : 'transparent' + ] + }; + } + +}); + +function getColorStopValues(visualMapModel, valueState, dataExtent) { + if (dataExtent[0] === dataExtent[1]) { + return dataExtent.slice(); + } + + // When using colorHue mapping, it is not linear color any more. + // Moreover, canvas gradient seems not to be accurate linear. + // FIXME + // Should be arbitrary value 100? or based on pixel size? + var count = 200; + var step = (dataExtent[1] - dataExtent[0]) / count; + + var value = dataExtent[0]; + var stopValues = []; + for (var i = 0; i <= count && value < dataExtent[1]; i++) { + stopValues.push(value); + value += step; + } + stopValues.push(dataExtent[1]); + + return stopValues; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var VisualMapView = extendComponentView({ + + type: 'visualMap', + + /** + * @readOnly + * @type {Object} + */ + autoPositionValues: {left: 1, right: 1, top: 1, bottom: 1}, + + init: function (ecModel, api) { + /** + * @readOnly + * @type {module:echarts/model/Global} + */ + this.ecModel = ecModel; + + /** + * @readOnly + * @type {module:echarts/ExtensionAPI} + */ + this.api = api; + + /** + * @readOnly + * @type {module:echarts/component/visualMap/visualMapModel} + */ + this.visualMapModel; + }, + + /** + * @protected + */ + render: function (visualMapModel, ecModel, api, payload) { + this.visualMapModel = visualMapModel; + + if (visualMapModel.get('show') === false) { + this.group.removeAll(); + return; + } + + this.doRender.apply(this, arguments); + }, + + /** + * @protected + */ + renderBackground: function (group) { + var visualMapModel = this.visualMapModel; + var padding = normalizeCssArray$1(visualMapModel.get('padding') || 0); + var rect = group.getBoundingRect(); + + group.add(new Rect({ + z2: -1, // Lay background rect on the lowest layer. + silent: true, + shape: { + x: rect.x - padding[3], + y: rect.y - padding[0], + width: rect.width + padding[3] + padding[1], + height: rect.height + padding[0] + padding[2] + }, + style: { + fill: visualMapModel.get('backgroundColor'), + stroke: visualMapModel.get('borderColor'), + lineWidth: visualMapModel.get('borderWidth') + } + })); + }, + + /** + * @protected + * @param {number} targetValue can be Infinity or -Infinity + * @param {string=} visualCluster Only can be 'color' 'opacity' 'symbol' 'symbolSize' + * @param {Object} [opts] + * @param {string=} [opts.forceState] Specify state, instead of using getValueState method. + * @param {string=} [opts.convertOpacityToAlpha=false] For color gradient in controller widget. + * @return {*} Visual value. + */ + getControllerVisual: function (targetValue, visualCluster, opts) { + opts = opts || {}; + + var forceState = opts.forceState; + var visualMapModel = this.visualMapModel; + var visualObj = {}; + + // Default values. + if (visualCluster === 'symbol') { + visualObj.symbol = visualMapModel.get('itemSymbol'); + } + if (visualCluster === 'color') { + var defaultColor = visualMapModel.get('contentColor'); + visualObj.color = defaultColor; + } + + function getter(key) { + return visualObj[key]; + } + + function setter(key, value) { + visualObj[key] = value; + } + + var mappings = visualMapModel.controllerVisuals[ + forceState || visualMapModel.getValueState(targetValue) + ]; + var visualTypes = VisualMapping.prepareVisualTypes(mappings); + + each$1(visualTypes, function (type) { + var visualMapping = mappings[type]; + if (opts.convertOpacityToAlpha && type === 'opacity') { + type = 'colorAlpha'; + visualMapping = mappings.__alphaForOpacity; + } + if (VisualMapping.dependsOn(type, visualCluster)) { + visualMapping && visualMapping.applyVisual( + targetValue, getter, setter + ); + } + }); + + return visualObj[visualCluster]; + }, + + /** + * @protected + */ + positionGroup: function (group) { + var model = this.visualMapModel; + var api = this.api; + + positionElement( + group, + model.getBoxLayoutParams(), + {width: api.getWidth(), height: api.getHeight()} + ); + }, + + /** + * @protected + * @abstract + */ + doRender: noop + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * @param {module:echarts/component/visualMap/VisualMapModel} visualMapModel\ + * @param {module:echarts/ExtensionAPI} api + * @param {Array.} itemSize always [short, long] + * @return {string} 'left' or 'right' or 'top' or 'bottom' + */ +function getItemAlign(visualMapModel, api, itemSize) { + var modelOption = visualMapModel.option; + var itemAlign = modelOption.align; + + if (itemAlign != null && itemAlign !== 'auto') { + return itemAlign; + } + + // Auto decision align. + var ecSize = {width: api.getWidth(), height: api.getHeight()}; + var realIndex = modelOption.orient === 'horizontal' ? 1 : 0; + + var paramsSet = [ + ['left', 'right', 'width'], + ['top', 'bottom', 'height'] + ]; + var reals = paramsSet[realIndex]; + var fakeValue = [0, null, 10]; + + var layoutInput = {}; + for (var i = 0; i < 3; i++) { + layoutInput[paramsSet[1 - realIndex][i]] = fakeValue[i]; + layoutInput[reals[i]] = i === 2 ? itemSize[0] : modelOption[reals[i]]; + } + + var rParam = [['x', 'width', 3], ['y', 'height', 0]][realIndex]; + var rect = getLayoutRect(layoutInput, ecSize, modelOption.padding); + + return reals[ + (rect.margin[rParam[2]] || 0) + rect[rParam[0]] + rect[rParam[1]] * 0.5 + < ecSize[rParam[1]] * 0.5 ? 0 : 1 + ]; +} + +/** + * Prepare dataIndex for outside usage, where dataIndex means rawIndex, and + * dataIndexInside means filtered index. + */ +function makeHighDownBatch(batch, visualMapModel) { + each$1(batch || [], function (batchItem) { + if (batchItem.dataIndex != null) { + batchItem.dataIndexInside = batchItem.dataIndex; + batchItem.dataIndex = null; + } + batchItem.highlightKey = 'visualMap' + (visualMapModel ? visualMapModel.componentIndex : ''); + }); + return batch; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var linearMap$3 = linearMap; +var each$29 = each$1; +var mathMin$7 = Math.min; +var mathMax$7 = Math.max; + +// Arbitrary value +var HOVER_LINK_SIZE = 12; +var HOVER_LINK_OUT = 6; + +// Notice: +// Any "interval" should be by the order of [low, high]. +// "handle0" (handleIndex === 0) maps to +// low data value: this._dataInterval[0] and has low coord. +// "handle1" (handleIndex === 1) maps to +// high data value: this._dataInterval[1] and has high coord. +// The logic of transform is implemented in this._createBarGroup. + +var ContinuousView = VisualMapView.extend({ + + type: 'visualMap.continuous', + + /** + * @override + */ + init: function () { + + ContinuousView.superApply(this, 'init', arguments); + + /** + * @private + */ + this._shapes = {}; + + /** + * @private + */ + this._dataInterval = []; + + /** + * @private + */ + this._handleEnds = []; + + /** + * @private + */ + this._orient; + + /** + * @private + */ + this._useHandle; + + /** + * @private + */ + this._hoverLinkDataIndices = []; + + /** + * @private + */ + this._dragging; + + /** + * @private + */ + this._hovering; + }, + + /** + * @protected + * @override + */ + doRender: function (visualMapModel, ecModel, api, payload) { + if (!payload || payload.type !== 'selectDataRange' || payload.from !== this.uid) { + this._buildView(); + } + }, + + /** + * @private + */ + _buildView: function () { + this.group.removeAll(); + + var visualMapModel = this.visualMapModel; + var thisGroup = this.group; + + this._orient = visualMapModel.get('orient'); + this._useHandle = visualMapModel.get('calculable'); + + this._resetInterval(); + + this._renderBar(thisGroup); + + var dataRangeText = visualMapModel.get('text'); + this._renderEndsText(thisGroup, dataRangeText, 0); + this._renderEndsText(thisGroup, dataRangeText, 1); + + // Do this for background size calculation. + this._updateView(true); + + // After updating view, inner shapes is built completely, + // and then background can be rendered. + this.renderBackground(thisGroup); + + // Real update view + this._updateView(); + + this._enableHoverLinkToSeries(); + this._enableHoverLinkFromSeries(); + + this.positionGroup(thisGroup); + }, + + /** + * @private + */ + _renderEndsText: function (group, dataRangeText, endsIndex) { + if (!dataRangeText) { + return; + } + + // Compatible with ec2, text[0] map to high value, text[1] map low value. + var text = dataRangeText[1 - endsIndex]; + text = text != null ? text + '' : ''; + + var visualMapModel = this.visualMapModel; + var textGap = visualMapModel.get('textGap'); + var itemSize = visualMapModel.itemSize; + + var barGroup = this._shapes.barGroup; + var position = this._applyTransform( + [ + itemSize[0] / 2, + endsIndex === 0 ? -textGap : itemSize[1] + textGap + ], + barGroup + ); + var align = this._applyTransform( + endsIndex === 0 ? 'bottom' : 'top', + barGroup + ); + var orient = this._orient; + var textStyleModel = this.visualMapModel.textStyleModel; + + this.group.add(new Text({ + style: { + x: position[0], + y: position[1], + textVerticalAlign: orient === 'horizontal' ? 'middle' : align, + textAlign: orient === 'horizontal' ? align : 'center', + text: text, + textFont: textStyleModel.getFont(), + textFill: textStyleModel.getTextColor() + } + })); + }, + + /** + * @private + */ + _renderBar: function (targetGroup) { + var visualMapModel = this.visualMapModel; + var shapes = this._shapes; + var itemSize = visualMapModel.itemSize; + var orient = this._orient; + var useHandle = this._useHandle; + var itemAlign = getItemAlign(visualMapModel, this.api, itemSize); + var barGroup = shapes.barGroup = this._createBarGroup(itemAlign); + + // Bar + barGroup.add(shapes.outOfRange = createPolygon()); + barGroup.add(shapes.inRange = createPolygon( + null, + useHandle ? getCursor$1(this._orient) : null, + bind(this._dragHandle, this, 'all', false), + bind(this._dragHandle, this, 'all', true) + )); + + var textRect = visualMapModel.textStyleModel.getTextRect('国'); + var textSize = mathMax$7(textRect.width, textRect.height); + + // Handle + if (useHandle) { + shapes.handleThumbs = []; + shapes.handleLabels = []; + shapes.handleLabelPoints = []; + + this._createHandle(barGroup, 0, itemSize, textSize, orient, itemAlign); + this._createHandle(barGroup, 1, itemSize, textSize, orient, itemAlign); + } + + this._createIndicator(barGroup, itemSize, textSize, orient); + + targetGroup.add(barGroup); + }, + + /** + * @private + */ + _createHandle: function (barGroup, handleIndex, itemSize, textSize, orient) { + var onDrift = bind(this._dragHandle, this, handleIndex, false); + var onDragEnd = bind(this._dragHandle, this, handleIndex, true); + var handleThumb = createPolygon( + createHandlePoints(handleIndex, textSize), + getCursor$1(this._orient), + onDrift, + onDragEnd + ); + handleThumb.position[0] = itemSize[0]; + barGroup.add(handleThumb); + + // Text is always horizontal layout but should not be effected by + // transform (orient/inverse). So label is built separately but not + // use zrender/graphic/helper/RectText, and is located based on view + // group (according to handleLabelPoint) but not barGroup. + var textStyleModel = this.visualMapModel.textStyleModel; + var handleLabel = new Text({ + draggable: true, + drift: onDrift, + onmousemove: function (e) { + // Fot mobile devicem, prevent screen slider on the button. + stop(e.event); + }, + ondragend: onDragEnd, + style: { + x: 0, y: 0, text: '', + textFont: textStyleModel.getFont(), + textFill: textStyleModel.getTextColor() + } + }); + this.group.add(handleLabel); + + var handleLabelPoint = [ + orient === 'horizontal' + ? textSize / 2 + : textSize * 1.5, + orient === 'horizontal' + ? (handleIndex === 0 ? -(textSize * 1.5) : (textSize * 1.5)) + : (handleIndex === 0 ? -textSize / 2 : textSize / 2) + ]; + + var shapes = this._shapes; + shapes.handleThumbs[handleIndex] = handleThumb; + shapes.handleLabelPoints[handleIndex] = handleLabelPoint; + shapes.handleLabels[handleIndex] = handleLabel; + }, + + /** + * @private + */ + _createIndicator: function (barGroup, itemSize, textSize, orient) { + var indicator = createPolygon([[0, 0]], 'move'); + indicator.position[0] = itemSize[0]; + indicator.attr({invisible: true, silent: true}); + barGroup.add(indicator); + + var textStyleModel = this.visualMapModel.textStyleModel; + var indicatorLabel = new Text({ + silent: true, + invisible: true, + style: { + x: 0, y: 0, text: '', + textFont: textStyleModel.getFont(), + textFill: textStyleModel.getTextColor() + } + }); + this.group.add(indicatorLabel); + + var indicatorLabelPoint = [ + orient === 'horizontal' ? textSize / 2 : HOVER_LINK_OUT + 3, + 0 + ]; + + var shapes = this._shapes; + shapes.indicator = indicator; + shapes.indicatorLabel = indicatorLabel; + shapes.indicatorLabelPoint = indicatorLabelPoint; + }, + + /** + * @private + */ + _dragHandle: function (handleIndex, isEnd, dx, dy) { + if (!this._useHandle) { + return; + } + + this._dragging = !isEnd; + + if (!isEnd) { + // Transform dx, dy to bar coordination. + var vertex = this._applyTransform([dx, dy], this._shapes.barGroup, true); + this._updateInterval(handleIndex, vertex[1]); + + // Considering realtime, update view should be executed + // before dispatch action. + this._updateView(); + } + + // dragEnd do not dispatch action when realtime. + if (isEnd === !this.visualMapModel.get('realtime')) { // jshint ignore:line + this.api.dispatchAction({ + type: 'selectDataRange', + from: this.uid, + visualMapId: this.visualMapModel.id, + selected: this._dataInterval.slice() + }); + } + + if (isEnd) { + !this._hovering && this._clearHoverLinkToSeries(); + } + else if (useHoverLinkOnHandle(this.visualMapModel)) { + this._doHoverLinkToSeries(this._handleEnds[handleIndex], false); + } + }, + + /** + * @private + */ + _resetInterval: function () { + var visualMapModel = this.visualMapModel; + + var dataInterval = this._dataInterval = visualMapModel.getSelected(); + var dataExtent = visualMapModel.getExtent(); + var sizeExtent = [0, visualMapModel.itemSize[1]]; + + this._handleEnds = [ + linearMap$3(dataInterval[0], dataExtent, sizeExtent, true), + linearMap$3(dataInterval[1], dataExtent, sizeExtent, true) + ]; + }, + + /** + * @private + * @param {(number|string)} handleIndex 0 or 1 or 'all' + * @param {number} dx + * @param {number} dy + */ + _updateInterval: function (handleIndex, delta) { + delta = delta || 0; + var visualMapModel = this.visualMapModel; + var handleEnds = this._handleEnds; + var sizeExtent = [0, visualMapModel.itemSize[1]]; + + sliderMove( + delta, + handleEnds, + sizeExtent, + handleIndex, + // cross is forbiden + 0 + ); + + var dataExtent = visualMapModel.getExtent(); + // Update data interval. + this._dataInterval = [ + linearMap$3(handleEnds[0], sizeExtent, dataExtent, true), + linearMap$3(handleEnds[1], sizeExtent, dataExtent, true) + ]; + }, + + /** + * @private + */ + _updateView: function (forSketch) { + var visualMapModel = this.visualMapModel; + var dataExtent = visualMapModel.getExtent(); + var shapes = this._shapes; + + var outOfRangeHandleEnds = [0, visualMapModel.itemSize[1]]; + var inRangeHandleEnds = forSketch ? outOfRangeHandleEnds : this._handleEnds; + + var visualInRange = this._createBarVisual( + this._dataInterval, dataExtent, inRangeHandleEnds, 'inRange' + ); + var visualOutOfRange = this._createBarVisual( + dataExtent, dataExtent, outOfRangeHandleEnds, 'outOfRange' + ); + + shapes.inRange + .setStyle({ + fill: visualInRange.barColor, + opacity: visualInRange.opacity + }) + .setShape('points', visualInRange.barPoints); + shapes.outOfRange + .setStyle({ + fill: visualOutOfRange.barColor, + opacity: visualOutOfRange.opacity + }) + .setShape('points', visualOutOfRange.barPoints); + + this._updateHandle(inRangeHandleEnds, visualInRange); + }, + + /** + * @private + */ + _createBarVisual: function (dataInterval, dataExtent, handleEnds, forceState) { + var opts = { + forceState: forceState, + convertOpacityToAlpha: true + }; + var colorStops = this._makeColorGradient(dataInterval, opts); + + var symbolSizes = [ + this.getControllerVisual(dataInterval[0], 'symbolSize', opts), + this.getControllerVisual(dataInterval[1], 'symbolSize', opts) + ]; + var barPoints = this._createBarPoints(handleEnds, symbolSizes); + + return { + barColor: new LinearGradient(0, 0, 0, 1, colorStops), + barPoints: barPoints, + handlesColor: [ + colorStops[0].color, + colorStops[colorStops.length - 1].color + ] + }; + }, + + /** + * @private + */ + _makeColorGradient: function (dataInterval, opts) { + // Considering colorHue, which is not linear, so we have to sample + // to calculate gradient color stops, but not only caculate head + // and tail. + var sampleNumber = 100; // Arbitrary value. + var colorStops = []; + var step = (dataInterval[1] - dataInterval[0]) / sampleNumber; + + colorStops.push({ + color: this.getControllerVisual(dataInterval[0], 'color', opts), + offset: 0 + }); + + for (var i = 1; i < sampleNumber; i++) { + var currValue = dataInterval[0] + step * i; + if (currValue > dataInterval[1]) { + break; + } + colorStops.push({ + color: this.getControllerVisual(currValue, 'color', opts), + offset: i / sampleNumber + }); + } + + colorStops.push({ + color: this.getControllerVisual(dataInterval[1], 'color', opts), + offset: 1 + }); + + return colorStops; + }, + + /** + * @private + */ + _createBarPoints: function (handleEnds, symbolSizes) { + var itemSize = this.visualMapModel.itemSize; + + return [ + [itemSize[0] - symbolSizes[0], handleEnds[0]], + [itemSize[0], handleEnds[0]], + [itemSize[0], handleEnds[1]], + [itemSize[0] - symbolSizes[1], handleEnds[1]] + ]; + }, + + /** + * @private + */ + _createBarGroup: function (itemAlign) { + var orient = this._orient; + var inverse = this.visualMapModel.get('inverse'); + + return new Group( + (orient === 'horizontal' && !inverse) + ? {scale: itemAlign === 'bottom' ? [1, 1] : [-1, 1], rotation: Math.PI / 2} + : (orient === 'horizontal' && inverse) + ? {scale: itemAlign === 'bottom' ? [-1, 1] : [1, 1], rotation: -Math.PI / 2} + : (orient === 'vertical' && !inverse) + ? {scale: itemAlign === 'left' ? [1, -1] : [-1, -1]} + : {scale: itemAlign === 'left' ? [1, 1] : [-1, 1]} + ); + }, + + /** + * @private + */ + _updateHandle: function (handleEnds, visualInRange) { + if (!this._useHandle) { + return; + } + + var shapes = this._shapes; + var visualMapModel = this.visualMapModel; + var handleThumbs = shapes.handleThumbs; + var handleLabels = shapes.handleLabels; + + each$29([0, 1], function (handleIndex) { + var handleThumb = handleThumbs[handleIndex]; + handleThumb.setStyle('fill', visualInRange.handlesColor[handleIndex]); + handleThumb.position[1] = handleEnds[handleIndex]; + + // Update handle label position. + var textPoint = applyTransform$1( + shapes.handleLabelPoints[handleIndex], + getTransform(handleThumb, this.group) + ); + handleLabels[handleIndex].setStyle({ + x: textPoint[0], + y: textPoint[1], + text: visualMapModel.formatValueText(this._dataInterval[handleIndex]), + textVerticalAlign: 'middle', + textAlign: this._applyTransform( + this._orient === 'horizontal' + ? (handleIndex === 0 ? 'bottom' : 'top') + : 'left', + shapes.barGroup + ) + }); + }, this); + }, + + /** + * @private + * @param {number} cursorValue + * @param {number} textValue + * @param {string} [rangeSymbol] + * @param {number} [halfHoverLinkSize] + */ + _showIndicator: function (cursorValue, textValue, rangeSymbol, halfHoverLinkSize) { + var visualMapModel = this.visualMapModel; + var dataExtent = visualMapModel.getExtent(); + var itemSize = visualMapModel.itemSize; + var sizeExtent = [0, itemSize[1]]; + var pos = linearMap$3(cursorValue, dataExtent, sizeExtent, true); + + var shapes = this._shapes; + var indicator = shapes.indicator; + if (!indicator) { + return; + } + + indicator.position[1] = pos; + indicator.attr('invisible', false); + indicator.setShape('points', createIndicatorPoints( + !!rangeSymbol, halfHoverLinkSize, pos, itemSize[1] + )); + + var opts = {convertOpacityToAlpha: true}; + var color = this.getControllerVisual(cursorValue, 'color', opts); + indicator.setStyle('fill', color); + + // Update handle label position. + var textPoint = applyTransform$1( + shapes.indicatorLabelPoint, + getTransform(indicator, this.group) + ); + + var indicatorLabel = shapes.indicatorLabel; + indicatorLabel.attr('invisible', false); + var align = this._applyTransform('left', shapes.barGroup); + var orient = this._orient; + indicatorLabel.setStyle({ + text: (rangeSymbol ? rangeSymbol : '') + visualMapModel.formatValueText(textValue), + textVerticalAlign: orient === 'horizontal' ? align : 'middle', + textAlign: orient === 'horizontal' ? 'center' : align, + x: textPoint[0], + y: textPoint[1] + }); + }, + + /** + * @private + */ + _enableHoverLinkToSeries: function () { + var self = this; + this._shapes.barGroup + + .on('mousemove', function (e) { + self._hovering = true; + + if (!self._dragging) { + var itemSize = self.visualMapModel.itemSize; + var pos = self._applyTransform( + [e.offsetX, e.offsetY], self._shapes.barGroup, true, true + ); + // For hover link show when hover handle, which might be + // below or upper than sizeExtent. + pos[1] = mathMin$7(mathMax$7(0, pos[1]), itemSize[1]); + self._doHoverLinkToSeries( + pos[1], + 0 <= pos[0] && pos[0] <= itemSize[0] + ); + } + }) + + .on('mouseout', function () { + // When mouse is out of handle, hoverLink still need + // to be displayed when realtime is set as false. + self._hovering = false; + !self._dragging && self._clearHoverLinkToSeries(); + }); + }, + + /** + * @private + */ + _enableHoverLinkFromSeries: function () { + var zr = this.api.getZr(); + + if (this.visualMapModel.option.hoverLink) { + zr.on('mouseover', this._hoverLinkFromSeriesMouseOver, this); + zr.on('mouseout', this._hideIndicator, this); + } + else { + this._clearHoverLinkFromSeries(); + } + }, + + /** + * @private + */ + _doHoverLinkToSeries: function (cursorPos, hoverOnBar) { + var visualMapModel = this.visualMapModel; + var itemSize = visualMapModel.itemSize; + + if (!visualMapModel.option.hoverLink) { + return; + } + + var sizeExtent = [0, itemSize[1]]; + var dataExtent = visualMapModel.getExtent(); + + // For hover link show when hover handle, which might be below or upper than sizeExtent. + cursorPos = mathMin$7(mathMax$7(sizeExtent[0], cursorPos), sizeExtent[1]); + + var halfHoverLinkSize = getHalfHoverLinkSize(visualMapModel, dataExtent, sizeExtent); + var hoverRange = [cursorPos - halfHoverLinkSize, cursorPos + halfHoverLinkSize]; + var cursorValue = linearMap$3(cursorPos, sizeExtent, dataExtent, true); + var valueRange = [ + linearMap$3(hoverRange[0], sizeExtent, dataExtent, true), + linearMap$3(hoverRange[1], sizeExtent, dataExtent, true) + ]; + // Consider data range is out of visualMap range, see test/visualMap-continuous.html, + // where china and india has very large population. + hoverRange[0] < sizeExtent[0] && (valueRange[0] = -Infinity); + hoverRange[1] > sizeExtent[1] && (valueRange[1] = Infinity); + + // Do not show indicator when mouse is over handle, + // otherwise labels overlap, especially when dragging. + if (hoverOnBar) { + if (valueRange[0] === -Infinity) { + this._showIndicator(cursorValue, valueRange[1], '< ', halfHoverLinkSize); + } + else if (valueRange[1] === Infinity) { + this._showIndicator(cursorValue, valueRange[0], '> ', halfHoverLinkSize); + } + else { + this._showIndicator(cursorValue, cursorValue, '≈ ', halfHoverLinkSize); + } + } + + // When realtime is set as false, handles, which are in barGroup, + // also trigger hoverLink, which help user to realize where they + // focus on when dragging. (see test/heatmap-large.html) + // When realtime is set as true, highlight will not show when hover + // handle, because the label on handle, which displays a exact value + // but not range, might mislead users. + var oldBatch = this._hoverLinkDataIndices; + var newBatch = []; + if (hoverOnBar || useHoverLinkOnHandle(visualMapModel)) { + newBatch = this._hoverLinkDataIndices = visualMapModel.findTargetDataIndices(valueRange); + } + + var resultBatches = compressBatches(oldBatch, newBatch); + + this._dispatchHighDown('downplay', makeHighDownBatch(resultBatches[0], visualMapModel)); + this._dispatchHighDown('highlight', makeHighDownBatch(resultBatches[1], visualMapModel)); + }, + + /** + * @private + */ + _hoverLinkFromSeriesMouseOver: function (e) { + var el = e.target; + var visualMapModel = this.visualMapModel; + + if (!el || el.dataIndex == null) { + return; + } + + var dataModel = this.ecModel.getSeriesByIndex(el.seriesIndex); + + if (!visualMapModel.isTargetSeries(dataModel)) { + return; + } + + var data = dataModel.getData(el.dataType); + var value = data.get(visualMapModel.getDataDimension(data), el.dataIndex, true); + + if (!isNaN(value)) { + this._showIndicator(value, value); + } + }, + + /** + * @private + */ + _hideIndicator: function () { + var shapes = this._shapes; + shapes.indicator && shapes.indicator.attr('invisible', true); + shapes.indicatorLabel && shapes.indicatorLabel.attr('invisible', true); + }, + + /** + * @private + */ + _clearHoverLinkToSeries: function () { + this._hideIndicator(); + + var indices = this._hoverLinkDataIndices; + this._dispatchHighDown('downplay', makeHighDownBatch(indices, this.visualMapModel)); + + indices.length = 0; + }, + + /** + * @private + */ + _clearHoverLinkFromSeries: function () { + this._hideIndicator(); + + var zr = this.api.getZr(); + zr.off('mouseover', this._hoverLinkFromSeriesMouseOver); + zr.off('mouseout', this._hideIndicator); + }, + + /** + * @private + */ + _applyTransform: function (vertex, element, inverse, global) { + var transform = getTransform(element, global ? null : this.group); + + return graphic[ + isArray(vertex) ? 'applyTransform' : 'transformDirection' + ](vertex, transform, inverse); + }, + + /** + * @private + */ + _dispatchHighDown: function (type, batch) { + batch && batch.length && this.api.dispatchAction({ + type: type, + batch: batch + }); + }, + + /** + * @override + */ + dispose: function () { + this._clearHoverLinkFromSeries(); + this._clearHoverLinkToSeries(); + }, + + /** + * @override + */ + remove: function () { + this._clearHoverLinkFromSeries(); + this._clearHoverLinkToSeries(); + } + +}); + +function createPolygon(points, cursor, onDrift, onDragEnd) { + return new Polygon({ + shape: {points: points}, + draggable: !!onDrift, + cursor: cursor, + drift: onDrift, + onmousemove: function (e) { + // Fot mobile devicem, prevent screen slider on the button. + stop(e.event); + }, + ondragend: onDragEnd + }); +} + +function createHandlePoints(handleIndex, textSize) { + return handleIndex === 0 + ? [[0, 0], [textSize, 0], [textSize, -textSize]] + : [[0, 0], [textSize, 0], [textSize, textSize]]; +} + +function createIndicatorPoints(isRange, halfHoverLinkSize, pos, extentMax) { + return isRange + ? [ // indicate range + [0, -mathMin$7(halfHoverLinkSize, mathMax$7(pos, 0))], + [HOVER_LINK_OUT, 0], + [0, mathMin$7(halfHoverLinkSize, mathMax$7(extentMax - pos, 0))] + ] + : [ // indicate single value + [0, 0], [5, -5], [5, 5] + ]; +} + +function getHalfHoverLinkSize(visualMapModel, dataExtent, sizeExtent) { + var halfHoverLinkSize = HOVER_LINK_SIZE / 2; + var hoverLinkDataSize = visualMapModel.get('hoverLinkDataSize'); + if (hoverLinkDataSize) { + halfHoverLinkSize = linearMap$3(hoverLinkDataSize, dataExtent, sizeExtent, true) / 2; + } + return halfHoverLinkSize; +} + +function useHoverLinkOnHandle(visualMapModel) { + var hoverLinkOnHandle = visualMapModel.get('hoverLinkOnHandle'); + return !!(hoverLinkOnHandle == null ? visualMapModel.get('realtime') : hoverLinkOnHandle); +} + +function getCursor$1(orient) { + return orient === 'vertical' ? 'ns-resize' : 'ew-resize'; +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var actionInfo$2 = { + type: 'selectDataRange', + event: 'dataRangeSelected', + // FIXME use updateView appears wrong + update: 'update' +}; + +registerAction(actionInfo$2, function (payload, ecModel) { + + ecModel.eachComponent({mainType: 'visualMap', query: payload}, function (model) { + model.setSelected(payload.selected); + }); + +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * DataZoom component entry + */ + +registerPreprocessor(preprocessor$3); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var PiecewiseModel = VisualMapModel.extend({ + + type: 'visualMap.piecewise', + + /** + * Order Rule: + * + * option.categories / option.pieces / option.text / option.selected: + * If !option.inverse, + * Order when vertical: ['top', ..., 'bottom']. + * Order when horizontal: ['left', ..., 'right']. + * If option.inverse, the meaning of + * the order should be reversed. + * + * this._pieceList: + * The order is always [low, ..., high]. + * + * Mapping from location to low-high: + * If !option.inverse + * When vertical, top is high. + * When horizontal, right is high. + * If option.inverse, reverse. + */ + + /** + * @protected + */ + defaultOption: { + selected: null, // Object. If not specified, means selected. + // When pieces and splitNumber: {'0': true, '5': true} + // When categories: {'cate1': false, 'cate3': true} + // When selected === false, means all unselected. + + minOpen: false, // Whether include values that smaller than `min`. + maxOpen: false, // Whether include values that bigger than `max`. + + align: 'auto', // 'auto', 'left', 'right' + itemWidth: 20, // When put the controller vertically, it is the length of + // horizontal side of each item. Otherwise, vertical side. + itemHeight: 14, // When put the controller vertically, it is the length of + // vertical side of each item. Otherwise, horizontal side. + itemSymbol: 'roundRect', + pieceList: null, // Each item is Object, with some of those attrs: + // {min, max, lt, gt, lte, gte, value, + // color, colorSaturation, colorAlpha, opacity, + // symbol, symbolSize}, which customize the range or visual + // coding of the certain piece. Besides, see "Order Rule". + categories: null, // category names, like: ['some1', 'some2', 'some3']. + // Attr min/max are ignored when categories set. See "Order Rule" + splitNumber: 5, // If set to 5, auto split five pieces equally. + // If set to 0 and component type not set, component type will be + // determined as "continuous". (It is less reasonable but for ec2 + // compatibility, see echarts/component/visualMap/typeDefaulter) + selectedMode: 'multiple', // Can be 'multiple' or 'single'. + itemGap: 10, // The gap between two items, in px. + hoverLink: true, // Enable hover highlight. + + showLabel: null // By default, when text is used, label will hide (the logic + // is remained for compatibility reason) + }, + + /** + * @override + */ + optionUpdated: function (newOption, isInit) { + PiecewiseModel.superApply(this, 'optionUpdated', arguments); + + /** + * The order is always [low, ..., high]. + * [{text: string, interval: Array.}, ...] + * @private + * @type {Array.} + */ + this._pieceList = []; + + this.resetExtent(); + + /** + * 'pieces', 'categories', 'splitNumber' + * @type {string} + */ + var mode = this._mode = this._determineMode(); + + resetMethods[this._mode].call(this); + + this._resetSelected(newOption, isInit); + + var categories = this.option.categories; + + this.resetVisual(function (mappingOption, state) { + if (mode === 'categories') { + mappingOption.mappingMethod = 'category'; + mappingOption.categories = clone(categories); + } + else { + mappingOption.dataExtent = this.getExtent(); + mappingOption.mappingMethod = 'piecewise'; + mappingOption.pieceList = map(this._pieceList, function (piece) { + var piece = clone(piece); + if (state !== 'inRange') { + // FIXME + // outOfRange do not support special visual in pieces. + piece.visual = null; + } + return piece; + }); + } + }); + }, + + /** + * @protected + * @override + */ + completeVisualOption: function () { + // Consider this case: + // visualMap: { + // pieces: [{symbol: 'circle', lt: 0}, {symbol: 'rect', gte: 0}] + // } + // where no inRange/outOfRange set but only pieces. So we should make + // default inRange/outOfRange for this case, otherwise visuals that only + // appear in `pieces` will not be taken into account in visual encoding. + + var option = this.option; + var visualTypesInPieces = {}; + var visualTypes = VisualMapping.listVisualTypes(); + var isCategory = this.isCategory(); + + each$1(option.pieces, function (piece) { + each$1(visualTypes, function (visualType) { + if (piece.hasOwnProperty(visualType)) { + visualTypesInPieces[visualType] = 1; + } + }); + }); + + each$1(visualTypesInPieces, function (v, visualType) { + var exists = 0; + each$1(this.stateList, function (state) { + exists |= has(option, state, visualType) + || has(option.target, state, visualType); + }, this); + + !exists && each$1(this.stateList, function (state) { + (option[state] || (option[state] = {}))[visualType] = visualDefault.get( + visualType, state === 'inRange' ? 'active' : 'inactive', isCategory + ); + }); + }, this); + + function has(obj, state, visualType) { + return obj && obj[state] && ( + isObject$1(obj[state]) + ? obj[state].hasOwnProperty(visualType) + : obj[state] === visualType // e.g., inRange: 'symbol' + ); + } + + VisualMapModel.prototype.completeVisualOption.apply(this, arguments); + }, + + _resetSelected: function (newOption, isInit) { + var thisOption = this.option; + var pieceList = this._pieceList; + + // Selected do not merge but all override. + var selected = (isInit ? thisOption : newOption).selected || {}; + thisOption.selected = selected; + + // Consider 'not specified' means true. + each$1(pieceList, function (piece, index) { + var key = this.getSelectedMapKey(piece); + if (!selected.hasOwnProperty(key)) { + selected[key] = true; + } + }, this); + + if (thisOption.selectedMode === 'single') { + // Ensure there is only one selected. + var hasSel = false; + + each$1(pieceList, function (piece, index) { + var key = this.getSelectedMapKey(piece); + if (selected[key]) { + hasSel + ? (selected[key] = false) + : (hasSel = true); + } + }, this); + } + // thisOption.selectedMode === 'multiple', default: all selected. + }, + + /** + * @public + */ + getSelectedMapKey: function (piece) { + return this._mode === 'categories' + ? piece.value + '' : piece.index + ''; + }, + + /** + * @public + */ + getPieceList: function () { + return this._pieceList; + }, + + /** + * @private + * @return {string} + */ + _determineMode: function () { + var option = this.option; + + return option.pieces && option.pieces.length > 0 + ? 'pieces' + : this.option.categories + ? 'categories' + : 'splitNumber'; + }, + + /** + * @public + * @override + */ + setSelected: function (selected) { + this.option.selected = clone(selected); + }, + + /** + * @public + * @override + */ + getValueState: function (value) { + var index = VisualMapping.findPieceIndex(value, this._pieceList); + + return index != null + ? (this.option.selected[this.getSelectedMapKey(this._pieceList[index])] + ? 'inRange' : 'outOfRange' + ) + : 'outOfRange'; + }, + + /** + * @public + * @params {number} pieceIndex piece index in visualMapModel.getPieceList() + * @return {Array.} [{seriesId, dataIndex: >}, ...] + */ + findTargetDataIndices: function (pieceIndex) { + var result = []; + + this.eachTargetSeries(function (seriesModel) { + var dataIndices = []; + var data = seriesModel.getData(); + + data.each(this.getDataDimension(data), function (value, dataIndex) { + // Should always base on model pieceList, because it is order sensitive. + var pIdx = VisualMapping.findPieceIndex(value, this._pieceList); + pIdx === pieceIndex && dataIndices.push(dataIndex); + }, this); + + result.push({seriesId: seriesModel.id, dataIndex: dataIndices}); + }, this); + + return result; + }, + + /** + * @private + * @param {Object} piece piece.value or piece.interval is required. + * @return {number} Can be Infinity or -Infinity + */ + getRepresentValue: function (piece) { + var representValue; + if (this.isCategory()) { + representValue = piece.value; + } + else { + if (piece.value != null) { + representValue = piece.value; + } + else { + var pieceInterval = piece.interval || []; + representValue = (pieceInterval[0] === -Infinity && pieceInterval[1] === Infinity) + ? 0 + : (pieceInterval[0] + pieceInterval[1]) / 2; + } + } + return representValue; + }, + + getVisualMeta: function (getColorVisual) { + // Do not support category. (category axis is ordinal, numerical) + if (this.isCategory()) { + return; + } + + var stops = []; + var outerColors = []; + var visualMapModel = this; + + function setStop(interval, valueState) { + var representValue = visualMapModel.getRepresentValue({interval: interval}); + if (!valueState) { + valueState = visualMapModel.getValueState(representValue); + } + var color = getColorVisual(representValue, valueState); + if (interval[0] === -Infinity) { + outerColors[0] = color; + } + else if (interval[1] === Infinity) { + outerColors[1] = color; + } + else { + stops.push( + {value: interval[0], color: color}, + {value: interval[1], color: color} + ); + } + } + + // Suplement + var pieceList = this._pieceList.slice(); + if (!pieceList.length) { + pieceList.push({interval: [-Infinity, Infinity]}); + } + else { + var edge = pieceList[0].interval[0]; + edge !== -Infinity && pieceList.unshift({interval: [-Infinity, edge]}); + edge = pieceList[pieceList.length - 1].interval[1]; + edge !== Infinity && pieceList.push({interval: [edge, Infinity]}); + } + + var curr = -Infinity; + each$1(pieceList, function (piece) { + var interval = piece.interval; + if (interval) { + // Fulfill gap. + interval[0] > curr && setStop([curr, interval[0]], 'outOfRange'); + setStop(interval.slice()); + curr = interval[1]; + } + }, this); + + return {stops: stops, outerColors: outerColors}; + } + +}); + +/** + * Key is this._mode + * @type {Object} + * @this {module:echarts/component/viusalMap/PiecewiseMode} + */ +var resetMethods = { + + splitNumber: function () { + var thisOption = this.option; + var pieceList = this._pieceList; + var precision = Math.min(thisOption.precision, 20); + var dataExtent = this.getExtent(); + var splitNumber = thisOption.splitNumber; + splitNumber = Math.max(parseInt(splitNumber, 10), 1); + thisOption.splitNumber = splitNumber; + + var splitStep = (dataExtent[1] - dataExtent[0]) / splitNumber; + // Precision auto-adaption + while (+splitStep.toFixed(precision) !== splitStep && precision < 5) { + precision++; + } + thisOption.precision = precision; + splitStep = +splitStep.toFixed(precision); + + var index = 0; + + if (thisOption.minOpen) { + pieceList.push({ + index: index++, + interval: [-Infinity, dataExtent[0]], + close: [0, 0] + }); + } + + for ( + var curr = dataExtent[0], len = index + splitNumber; + index < len; + curr += splitStep + ) { + var max = index === splitNumber - 1 ? dataExtent[1] : (curr + splitStep); + + pieceList.push({ + index: index++, + interval: [curr, max], + close: [1, 1] + }); + } + + if (thisOption.maxOpen) { + pieceList.push({ + index: index++, + interval: [dataExtent[1], Infinity], + close: [0, 0] + }); + } + + reformIntervals(pieceList); + + each$1(pieceList, function (piece) { + piece.text = this.formatValueText(piece.interval); + }, this); + }, + + categories: function () { + var thisOption = this.option; + each$1(thisOption.categories, function (cate) { + // FIXME category模式也使用pieceList,但在visualMapping中不是使用pieceList。 + // 是否改一致。 + this._pieceList.push({ + text: this.formatValueText(cate, true), + value: cate + }); + }, this); + + // See "Order Rule". + normalizeReverse(thisOption, this._pieceList); + }, + + pieces: function () { + var thisOption = this.option; + var pieceList = this._pieceList; + + each$1(thisOption.pieces, function (pieceListItem, index) { + + if (!isObject$1(pieceListItem)) { + pieceListItem = {value: pieceListItem}; + } + + var item = {text: '', index: index}; + + if (pieceListItem.label != null) { + item.text = pieceListItem.label; + } + + if (pieceListItem.hasOwnProperty('value')) { + var value = item.value = pieceListItem.value; + item.interval = [value, value]; + item.close = [1, 1]; + } + else { + // `min` `max` is legacy option. + // `lt` `gt` `lte` `gte` is recommanded. + var interval = item.interval = []; + var close = item.close = [0, 0]; + + var closeList = [1, 0, 1]; + var infinityList = [-Infinity, Infinity]; + + var useMinMax = []; + for (var lg = 0; lg < 2; lg++) { + var names = [['gte', 'gt', 'min'], ['lte', 'lt', 'max']][lg]; + for (var i = 0; i < 3 && interval[lg] == null; i++) { + interval[lg] = pieceListItem[names[i]]; + close[lg] = closeList[i]; + useMinMax[lg] = i === 2; + } + interval[lg] == null && (interval[lg] = infinityList[lg]); + } + useMinMax[0] && interval[1] === Infinity && (close[0] = 0); + useMinMax[1] && interval[0] === -Infinity && (close[1] = 0); + + if (__DEV__) { + if (interval[0] > interval[1]) { + console.warn( + 'Piece ' + index + 'is illegal: ' + interval + + ' lower bound should not greater then uppper bound.' + ); + } + } + + if (interval[0] === interval[1] && close[0] && close[1]) { + // Consider: [{min: 5, max: 5, visual: {...}}, {min: 0, max: 5}], + // we use value to lift the priority when min === max + item.value = interval[0]; + } + } + + item.visual = VisualMapping.retrieveVisuals(pieceListItem); + + pieceList.push(item); + + }, this); + + // See "Order Rule". + normalizeReverse(thisOption, pieceList); + // Only pieces + reformIntervals(pieceList); + + each$1(pieceList, function (piece) { + var close = piece.close; + var edgeSymbols = [['<', '≤'][close[1]], ['>', '≥'][close[0]]]; + piece.text = piece.text || this.formatValueText( + piece.value != null ? piece.value : piece.interval, + false, + edgeSymbols + ); + }, this); + } +}; + +function normalizeReverse(thisOption, pieceList) { + var inverse = thisOption.inverse; + if (thisOption.orient === 'vertical' ? !inverse : inverse) { + pieceList.reverse(); + } +} + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +var PiecewiseVisualMapView = VisualMapView.extend({ + + type: 'visualMap.piecewise', + + /** + * @protected + * @override + */ + doRender: function () { + var thisGroup = this.group; + + thisGroup.removeAll(); + + var visualMapModel = this.visualMapModel; + var textGap = visualMapModel.get('textGap'); + var textStyleModel = visualMapModel.textStyleModel; + var textFont = textStyleModel.getFont(); + var textFill = textStyleModel.getTextColor(); + var itemAlign = this._getItemAlign(); + var itemSize = visualMapModel.itemSize; + var viewData = this._getViewData(); + var endsText = viewData.endsText; + var showLabel = retrieve(visualMapModel.get('showLabel', true), !endsText); + + endsText && this._renderEndsText( + thisGroup, endsText[0], itemSize, showLabel, itemAlign + ); + + each$1(viewData.viewPieceList, renderItem, this); + + endsText && this._renderEndsText( + thisGroup, endsText[1], itemSize, showLabel, itemAlign + ); + + box( + visualMapModel.get('orient'), thisGroup, visualMapModel.get('itemGap') + ); + + this.renderBackground(thisGroup); + + this.positionGroup(thisGroup); + + function renderItem(item) { + var piece = item.piece; + + var itemGroup = new Group(); + itemGroup.onclick = bind(this._onItemClick, this, piece); + + this._enableHoverLink(itemGroup, item.indexInModelPieceList); + + var representValue = visualMapModel.getRepresentValue(piece); + + this._createItemSymbol( + itemGroup, representValue, [0, 0, itemSize[0], itemSize[1]] + ); + + if (showLabel) { + var visualState = this.visualMapModel.getValueState(representValue); + + itemGroup.add(new Text({ + style: { + x: itemAlign === 'right' ? -textGap : itemSize[0] + textGap, + y: itemSize[1] / 2, + text: piece.text, + textVerticalAlign: 'middle', + textAlign: itemAlign, + textFont: textFont, + textFill: textFill, + opacity: visualState === 'outOfRange' ? 0.5 : 1 + } + })); + } + + thisGroup.add(itemGroup); + } + }, + + /** + * @private + */ + _enableHoverLink: function (itemGroup, pieceIndex) { + itemGroup + .on('mouseover', bind(onHoverLink, this, 'highlight')) + .on('mouseout', bind(onHoverLink, this, 'downplay')); + + function onHoverLink(method) { + var visualMapModel = this.visualMapModel; + + visualMapModel.option.hoverLink && this.api.dispatchAction({ + type: method, + batch: makeHighDownBatch( + visualMapModel.findTargetDataIndices(pieceIndex), + visualMapModel + ) + }); + } + }, + + /** + * @private + */ + _getItemAlign: function () { + var visualMapModel = this.visualMapModel; + var modelOption = visualMapModel.option; + + if (modelOption.orient === 'vertical') { + return getItemAlign( + visualMapModel, this.api, visualMapModel.itemSize + ); + } + else { // horizontal, most case left unless specifying right. + var align = modelOption.align; + if (!align || align === 'auto') { + align = 'left'; + } + return align; + } + }, + + /** + * @private + */ + _renderEndsText: function (group, text, itemSize, showLabel, itemAlign) { + if (!text) { + return; + } + + var itemGroup = new Group(); + var textStyleModel = this.visualMapModel.textStyleModel; + + itemGroup.add(new Text({ + style: { + x: showLabel ? (itemAlign === 'right' ? itemSize[0] : 0) : itemSize[0] / 2, + y: itemSize[1] / 2, + textVerticalAlign: 'middle', + textAlign: showLabel ? itemAlign : 'center', + text: text, + textFont: textStyleModel.getFont(), + textFill: textStyleModel.getTextColor() + } + })); + + group.add(itemGroup); + }, + + /** + * @private + * @return {Object} {peiceList, endsText} The order is the same as screen pixel order. + */ + _getViewData: function () { + var visualMapModel = this.visualMapModel; + + var viewPieceList = map(visualMapModel.getPieceList(), function (piece, index) { + return {piece: piece, indexInModelPieceList: index}; + }); + var endsText = visualMapModel.get('text'); + + // Consider orient and inverse. + var orient = visualMapModel.get('orient'); + var inverse = visualMapModel.get('inverse'); + + // Order of model pieceList is always [low, ..., high] + if (orient === 'horizontal' ? inverse : !inverse) { + viewPieceList.reverse(); + } + // Origin order of endsText is [high, low] + else if (endsText) { + endsText = endsText.slice().reverse(); + } + + return {viewPieceList: viewPieceList, endsText: endsText}; + }, + + /** + * @private + */ + _createItemSymbol: function (group, representValue, shapeParam) { + group.add(createSymbol( + this.getControllerVisual(representValue, 'symbol'), + shapeParam[0], shapeParam[1], shapeParam[2], shapeParam[3], + this.getControllerVisual(representValue, 'color') + )); + }, + + /** + * @private + */ + _onItemClick: function (piece) { + var visualMapModel = this.visualMapModel; + var option = visualMapModel.option; + var selected = clone(option.selected); + var newKey = visualMapModel.getSelectedMapKey(piece); + + if (option.selectedMode === 'single') { + selected[newKey] = true; + each$1(selected, function (o, key) { + selected[key] = key === newKey; + }); + } + else { + selected[newKey] = !selected[newKey]; + } + + this.api.dispatchAction({ + type: 'selectDataRange', + from: this.uid, + visualMapId: this.visualMapModel.id, + selected: selected + }); + } +}); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * DataZoom component entry + */ + +registerPreprocessor(preprocessor$3); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +/** + * visualMap component entry + */ + +var urn = 'urn:schemas-microsoft-com:vml'; +var win = typeof window === 'undefined' ? null : window; + +var vmlInited = false; + +var doc = win && win.document; + +function createNode(tagName) { + return doCreateNode(tagName); +} + +// Avoid assign to an exported variable, for transforming to cjs. +var doCreateNode; + +if (doc && !env$1.canvasSupported) { + try { + !doc.namespaces.zrvml && doc.namespaces.add('zrvml', urn); + doCreateNode = function (tagName) { + return doc.createElement(''); + }; + } + catch (e) { + doCreateNode = function (tagName) { + return doc.createElement('<' + tagName + ' xmlns="' + urn + '" class="zrvml">'); + }; + } +} + +// From raphael +function initVML() { + if (vmlInited || !doc) { + return; + } + vmlInited = true; + + var styleSheets = doc.styleSheets; + if (styleSheets.length < 31) { + doc.createStyleSheet().addRule('.zrvml', 'behavior:url(#default#VML)'); + } + else { + // http://msdn.microsoft.com/en-us/library/ms531194%28VS.85%29.aspx + styleSheets[0].addRule('.zrvml', 'behavior:url(#default#VML)'); + } +} + +// http://www.w3.org/TR/NOTE-VML +// TODO Use proxy like svg instead of overwrite brush methods + +var CMD$3 = PathProxy.CMD; +var round$3 = Math.round; +var sqrt = Math.sqrt; +var abs$1 = Math.abs; +var cos = Math.cos; +var sin = Math.sin; +var mathMax$8 = Math.max; + +if (!env$1.canvasSupported) { + + var comma = ','; + var imageTransformPrefix = 'progid:DXImageTransform.Microsoft'; + + var Z = 21600; + var Z2 = Z / 2; + + var ZLEVEL_BASE = 100000; + var Z_BASE$1 = 1000; + + var initRootElStyle = function (el) { + el.style.cssText = 'position:absolute;left:0;top:0;width:1px;height:1px;'; + el.coordsize = Z + ',' + Z; + el.coordorigin = '0,0'; + }; + + var encodeHtmlAttribute = function (s) { + return String(s).replace(/&/g, '&').replace(/"/g, '"'); + }; + + var rgb2Str = function (r, g, b) { + return 'rgb(' + [r, g, b].join(',') + ')'; + }; + + var append = function (parent, child) { + if (child && parent && child.parentNode !== parent) { + parent.appendChild(child); + } + }; + + var remove = function (parent, child) { + if (child && parent && child.parentNode === parent) { + parent.removeChild(child); + } + }; + + var getZIndex = function (zlevel, z, z2) { + // z 的取值范围为 [0, 1000] + return (parseFloat(zlevel) || 0) * ZLEVEL_BASE + (parseFloat(z) || 0) * Z_BASE$1 + z2; + }; + + var parsePercent$3 = function (value, maxValue) { + if (typeof value === 'string') { + if (value.lastIndexOf('%') >= 0) { + return parseFloat(value) / 100 * maxValue; + } + return parseFloat(value); + } + return value; + }; + + /*************************************************** + * PATH + **************************************************/ + + var setColorAndOpacity = function (el, color, opacity) { + var colorArr = parse(color); + opacity = +opacity; + if (isNaN(opacity)) { + opacity = 1; + } + if (colorArr) { + el.color = rgb2Str(colorArr[0], colorArr[1], colorArr[2]); + el.opacity = opacity * colorArr[3]; + } + }; + + var getColorAndAlpha = function (color) { + var colorArr = parse(color); + return [ + rgb2Str(colorArr[0], colorArr[1], colorArr[2]), + colorArr[3] + ]; + }; + + var updateFillNode = function (el, style, zrEl) { + // TODO pattern + var fill = style.fill; + if (fill != null) { + // Modified from excanvas + if (fill instanceof Gradient) { + var gradientType; + var angle = 0; + var focus = [0, 0]; + // additional offset + var shift = 0; + // scale factor for offset + var expansion = 1; + var rect = zrEl.getBoundingRect(); + var rectWidth = rect.width; + var rectHeight = rect.height; + if (fill.type === 'linear') { + gradientType = 'gradient'; + var transform = zrEl.transform; + var p0 = [fill.x * rectWidth, fill.y * rectHeight]; + var p1 = [fill.x2 * rectWidth, fill.y2 * rectHeight]; + if (transform) { + applyTransform(p0, p0, transform); + applyTransform(p1, p1, transform); + } + var dx = p1[0] - p0[0]; + var dy = p1[1] - p0[1]; + angle = Math.atan2(dx, dy) * 180 / Math.PI; + // The angle should be a non-negative number. + if (angle < 0) { + angle += 360; + } + + // Very small angles produce an unexpected result because they are + // converted to a scientific notation string. + if (angle < 1e-6) { + angle = 0; + } + } + else { + gradientType = 'gradientradial'; + var p0 = [fill.x * rectWidth, fill.y * rectHeight]; + var transform = zrEl.transform; + var scale$$1 = zrEl.scale; + var width = rectWidth; + var height = rectHeight; + focus = [ + // Percent in bounding rect + (p0[0] - rect.x) / width, + (p0[1] - rect.y) / height + ]; + if (transform) { + applyTransform(p0, p0, transform); + } + + width /= scale$$1[0] * Z; + height /= scale$$1[1] * Z; + var dimension = mathMax$8(width, height); + shift = 2 * 0 / dimension; + expansion = 2 * fill.r / dimension - shift; + } + + // We need to sort the color stops in ascending order by offset, + // otherwise IE won't interpret it correctly. + var stops = fill.colorStops.slice(); + stops.sort(function (cs1, cs2) { + return cs1.offset - cs2.offset; + }); + + var length$$1 = stops.length; + // Color and alpha list of first and last stop + var colorAndAlphaList = []; + var colors = []; + for (var i = 0; i < length$$1; i++) { + var stop = stops[i]; + var colorAndAlpha = getColorAndAlpha(stop.color); + colors.push(stop.offset * expansion + shift + ' ' + colorAndAlpha[0]); + if (i === 0 || i === length$$1 - 1) { + colorAndAlphaList.push(colorAndAlpha); + } + } + + if (length$$1 >= 2) { + var color1 = colorAndAlphaList[0][0]; + var color2 = colorAndAlphaList[1][0]; + var opacity1 = colorAndAlphaList[0][1] * style.opacity; + var opacity2 = colorAndAlphaList[1][1] * style.opacity; + + el.type = gradientType; + el.method = 'none'; + el.focus = '100%'; + el.angle = angle; + el.color = color1; + el.color2 = color2; + el.colors = colors.join(','); + // When colors attribute is used, the meanings of opacity and o:opacity2 + // are reversed. + el.opacity = opacity2; + // FIXME g_o_:opacity ? + el.opacity2 = opacity1; + } + if (gradientType === 'radial') { + el.focusposition = focus.join(','); + } + } + else { + // FIXME Change from Gradient fill to color fill + setColorAndOpacity(el, fill, style.opacity); + } + } + }; + + var updateStrokeNode = function (el, style) { + // if (style.lineJoin != null) { + // el.joinstyle = style.lineJoin; + // } + // if (style.miterLimit != null) { + // el.miterlimit = style.miterLimit * Z; + // } + // if (style.lineCap != null) { + // el.endcap = style.lineCap; + // } + if (style.lineDash) { + el.dashstyle = style.lineDash.join(' '); + } + if (style.stroke != null && !(style.stroke instanceof Gradient)) { + setColorAndOpacity(el, style.stroke, style.opacity); + } + }; + + var updateFillAndStroke = function (vmlEl, type, style, zrEl) { + var isFill = type === 'fill'; + var el = vmlEl.getElementsByTagName(type)[0]; + // Stroke must have lineWidth + if (style[type] != null && style[type] !== 'none' && (isFill || (!isFill && style.lineWidth))) { + vmlEl[isFill ? 'filled' : 'stroked'] = 'true'; + // FIXME Remove before updating, or set `colors` will throw error + if (style[type] instanceof Gradient) { + remove(vmlEl, el); + } + if (!el) { + el = createNode(type); + } + + isFill ? updateFillNode(el, style, zrEl) : updateStrokeNode(el, style); + append(vmlEl, el); + } + else { + vmlEl[isFill ? 'filled' : 'stroked'] = 'false'; + remove(vmlEl, el); + } + }; + + var points$3 = [[], [], []]; + var pathDataToString = function (path, m) { + var M = CMD$3.M; + var C = CMD$3.C; + var L = CMD$3.L; + var A = CMD$3.A; + var Q = CMD$3.Q; + + var str = []; + var nPoint; + var cmdStr; + var cmd; + var i; + var xi; + var yi; + var data = path.data; + var dataLength = path.len(); + for (i = 0; i < dataLength;) { + cmd = data[i++]; + cmdStr = ''; + nPoint = 0; + switch (cmd) { + case M: + cmdStr = ' m '; + nPoint = 1; + xi = data[i++]; + yi = data[i++]; + points$3[0][0] = xi; + points$3[0][1] = yi; + break; + case L: + cmdStr = ' l '; + nPoint = 1; + xi = data[i++]; + yi = data[i++]; + points$3[0][0] = xi; + points$3[0][1] = yi; + break; + case Q: + case C: + cmdStr = ' c '; + nPoint = 3; + var x1 = data[i++]; + var y1 = data[i++]; + var x2 = data[i++]; + var y2 = data[i++]; + var x3; + var y3; + if (cmd === Q) { + // Convert quadratic to cubic using degree elevation + x3 = x2; + y3 = y2; + x2 = (x2 + 2 * x1) / 3; + y2 = (y2 + 2 * y1) / 3; + x1 = (xi + 2 * x1) / 3; + y1 = (yi + 2 * y1) / 3; + } + else { + x3 = data[i++]; + y3 = data[i++]; + } + points$3[0][0] = x1; + points$3[0][1] = y1; + points$3[1][0] = x2; + points$3[1][1] = y2; + points$3[2][0] = x3; + points$3[2][1] = y3; + + xi = x3; + yi = y3; + break; + case A: + var x = 0; + var y = 0; + var sx = 1; + var sy = 1; + var angle = 0; + if (m) { + // Extract SRT from matrix + x = m[4]; + y = m[5]; + sx = sqrt(m[0] * m[0] + m[1] * m[1]); + sy = sqrt(m[2] * m[2] + m[3] * m[3]); + angle = Math.atan2(-m[1] / sy, m[0] / sx); + } + + var cx = data[i++]; + var cy = data[i++]; + var rx = data[i++]; + var ry = data[i++]; + var startAngle = data[i++] + angle; + var endAngle = data[i++] + startAngle + angle; + // FIXME + // var psi = data[i++]; + i++; + var clockwise = data[i++]; + + var x0 = cx + cos(startAngle) * rx; + var y0 = cy + sin(startAngle) * ry; + + var x1 = cx + cos(endAngle) * rx; + var y1 = cy + sin(endAngle) * ry; + + var type = clockwise ? ' wa ' : ' at '; + if (Math.abs(x0 - x1) < 1e-4) { + // IE won't render arches drawn counter clockwise if x0 == x1. + if (Math.abs(endAngle - startAngle) > 1e-2) { + // Offset x0 by 1/80 of a pixel. Use something + // that can be represented in binary + if (clockwise) { + x0 += 270 / Z; + } + } + else { + // Avoid case draw full circle + if (Math.abs(y0 - cy) < 1e-4) { + if ((clockwise && x0 < cx) || (!clockwise && x0 > cx)) { + y1 -= 270 / Z; + } + else { + y1 += 270 / Z; + } + } + else if ((clockwise && y0 < cy) || (!clockwise && y0 > cy)) { + x1 += 270 / Z; + } + else { + x1 -= 270 / Z; + } + } + } + str.push( + type, + round$3(((cx - rx) * sx + x) * Z - Z2), comma, + round$3(((cy - ry) * sy + y) * Z - Z2), comma, + round$3(((cx + rx) * sx + x) * Z - Z2), comma, + round$3(((cy + ry) * sy + y) * Z - Z2), comma, + round$3((x0 * sx + x) * Z - Z2), comma, + round$3((y0 * sy + y) * Z - Z2), comma, + round$3((x1 * sx + x) * Z - Z2), comma, + round$3((y1 * sy + y) * Z - Z2) + ); + + xi = x1; + yi = y1; + break; + case CMD$3.R: + var p0 = points$3[0]; + var p1 = points$3[1]; + // x0, y0 + p0[0] = data[i++]; + p0[1] = data[i++]; + // x1, y1 + p1[0] = p0[0] + data[i++]; + p1[1] = p0[1] + data[i++]; + + if (m) { + applyTransform(p0, p0, m); + applyTransform(p1, p1, m); + } + + p0[0] = round$3(p0[0] * Z - Z2); + p1[0] = round$3(p1[0] * Z - Z2); + p0[1] = round$3(p0[1] * Z - Z2); + p1[1] = round$3(p1[1] * Z - Z2); + str.push( + // x0, y0 + ' m ', p0[0], comma, p0[1], + // x1, y0 + ' l ', p1[0], comma, p0[1], + // x1, y1 + ' l ', p1[0], comma, p1[1], + // x0, y1 + ' l ', p0[0], comma, p1[1] + ); + break; + case CMD$3.Z: + // FIXME Update xi, yi + str.push(' x '); + } + + if (nPoint > 0) { + str.push(cmdStr); + for (var k = 0; k < nPoint; k++) { + var p = points$3[k]; + + m && applyTransform(p, p, m); + // 不 round 会非常慢 + str.push( + round$3(p[0] * Z - Z2), comma, round$3(p[1] * Z - Z2), + k < nPoint - 1 ? comma : '' + ); + } + } + } + + return str.join(''); + }; + + // Rewrite the original path method + Path.prototype.brushVML = function (vmlRoot) { + var style = this.style; + + var vmlEl = this._vmlEl; + if (!vmlEl) { + vmlEl = createNode('shape'); + initRootElStyle(vmlEl); + + this._vmlEl = vmlEl; + } + + updateFillAndStroke(vmlEl, 'fill', style, this); + updateFillAndStroke(vmlEl, 'stroke', style, this); + + var m = this.transform; + var needTransform = m != null; + var strokeEl = vmlEl.getElementsByTagName('stroke')[0]; + if (strokeEl) { + var lineWidth = style.lineWidth; + // Get the line scale. + // Determinant of this.m_ means how much the area is enlarged by the + // transformation. So its square root can be used as a scale factor + // for width. + if (needTransform && !style.strokeNoScale) { + var det = m[0] * m[3] - m[1] * m[2]; + lineWidth *= sqrt(abs$1(det)); + } + strokeEl.weight = lineWidth + 'px'; + } + + var path = this.path || (this.path = new PathProxy()); + if (this.__dirtyPath) { + path.beginPath(); + path.subPixelOptimize = false; + this.buildPath(path, this.shape); + path.toStatic(); + this.__dirtyPath = false; + } + + vmlEl.path = pathDataToString(path, this.transform); + + vmlEl.style.zIndex = getZIndex(this.zlevel, this.z, this.z2); + + // Append to root + append(vmlRoot, vmlEl); + + // Text + if (style.text != null) { + this.drawRectText(vmlRoot, this.getBoundingRect()); + } + else { + this.removeRectText(vmlRoot); + } + }; + + Path.prototype.onRemove = function (vmlRoot) { + remove(vmlRoot, this._vmlEl); + this.removeRectText(vmlRoot); + }; + + Path.prototype.onAdd = function (vmlRoot) { + append(vmlRoot, this._vmlEl); + this.appendRectText(vmlRoot); + }; + + /*************************************************** + * IMAGE + **************************************************/ + var isImage = function (img) { + // FIXME img instanceof Image 如果 img 是一个字符串的时候,IE8 下会报错 + return (typeof img === 'object') && img.tagName && img.tagName.toUpperCase() === 'IMG'; + // return img instanceof Image; + }; + + // Rewrite the original path method + ZImage.prototype.brushVML = function (vmlRoot) { + var style = this.style; + var image = style.image; + + // Image original width, height + var ow; + var oh; + + if (isImage(image)) { + var src = image.src; + if (src === this._imageSrc) { + ow = this._imageWidth; + oh = this._imageHeight; + } + else { + var imageRuntimeStyle = image.runtimeStyle; + var oldRuntimeWidth = imageRuntimeStyle.width; + var oldRuntimeHeight = imageRuntimeStyle.height; + imageRuntimeStyle.width = 'auto'; + imageRuntimeStyle.height = 'auto'; + + // get the original size + ow = image.width; + oh = image.height; + + // and remove overides + imageRuntimeStyle.width = oldRuntimeWidth; + imageRuntimeStyle.height = oldRuntimeHeight; + + // Caching image original width, height and src + this._imageSrc = src; + this._imageWidth = ow; + this._imageHeight = oh; + } + image = src; + } + else { + if (image === this._imageSrc) { + ow = this._imageWidth; + oh = this._imageHeight; + } + } + if (!image) { + return; + } + + var x = style.x || 0; + var y = style.y || 0; + + var dw = style.width; + var dh = style.height; + + var sw = style.sWidth; + var sh = style.sHeight; + var sx = style.sx || 0; + var sy = style.sy || 0; + + var hasCrop = sw && sh; + + var vmlEl = this._vmlEl; + if (!vmlEl) { + // FIXME 使用 group 在 left, top 都不是 0 的时候就无法显示了。 + // vmlEl = vmlCore.createNode('group'); + vmlEl = doc.createElement('div'); + initRootElStyle(vmlEl); + + this._vmlEl = vmlEl; + } + + var vmlElStyle = vmlEl.style; + var hasRotation = false; + var m; + var scaleX = 1; + var scaleY = 1; + if (this.transform) { + m = this.transform; + scaleX = sqrt(m[0] * m[0] + m[1] * m[1]); + scaleY = sqrt(m[2] * m[2] + m[3] * m[3]); + + hasRotation = m[1] || m[2]; + } + if (hasRotation) { + // If filters are necessary (rotation exists), create them + // filters are bog-slow, so only create them if abbsolutely necessary + // The following check doesn't account for skews (which don't exist + // in the canvas spec (yet) anyway. + // From excanvas + var p0 = [x, y]; + var p1 = [x + dw, y]; + var p2 = [x, y + dh]; + var p3 = [x + dw, y + dh]; + applyTransform(p0, p0, m); + applyTransform(p1, p1, m); + applyTransform(p2, p2, m); + applyTransform(p3, p3, m); + + var maxX = mathMax$8(p0[0], p1[0], p2[0], p3[0]); + var maxY = mathMax$8(p0[1], p1[1], p2[1], p3[1]); + + var transformFilter = []; + transformFilter.push('M11=', m[0] / scaleX, comma, + 'M12=', m[2] / scaleY, comma, + 'M21=', m[1] / scaleX, comma, + 'M22=', m[3] / scaleY, comma, + 'Dx=', round$3(x * scaleX + m[4]), comma, + 'Dy=', round$3(y * scaleY + m[5])); + + vmlElStyle.padding = '0 ' + round$3(maxX) + 'px ' + round$3(maxY) + 'px 0'; + // FIXME DXImageTransform 在 IE11 的兼容模式下不起作用 + vmlElStyle.filter = imageTransformPrefix + '.Matrix(' + + transformFilter.join('') + ', SizingMethod=clip)'; + + } + else { + if (m) { + x = x * scaleX + m[4]; + y = y * scaleY + m[5]; + } + vmlElStyle.filter = ''; + vmlElStyle.left = round$3(x) + 'px'; + vmlElStyle.top = round$3(y) + 'px'; + } + + var imageEl = this._imageEl; + var cropEl = this._cropEl; + + if (!imageEl) { + imageEl = doc.createElement('div'); + this._imageEl = imageEl; + } + var imageELStyle = imageEl.style; + if (hasCrop) { + // Needs know image original width and height + if (!(ow && oh)) { + var tmpImage = new Image(); + var self = this; + tmpImage.onload = function () { + tmpImage.onload = null; + ow = tmpImage.width; + oh = tmpImage.height; + // Adjust image width and height to fit the ratio destinationSize / sourceSize + imageELStyle.width = round$3(scaleX * ow * dw / sw) + 'px'; + imageELStyle.height = round$3(scaleY * oh * dh / sh) + 'px'; + + // Caching image original width, height and src + self._imageWidth = ow; + self._imageHeight = oh; + self._imageSrc = image; + }; + tmpImage.src = image; + } + else { + imageELStyle.width = round$3(scaleX * ow * dw / sw) + 'px'; + imageELStyle.height = round$3(scaleY * oh * dh / sh) + 'px'; + } + + if (!cropEl) { + cropEl = doc.createElement('div'); + cropEl.style.overflow = 'hidden'; + this._cropEl = cropEl; + } + var cropElStyle = cropEl.style; + cropElStyle.width = round$3((dw + sx * dw / sw) * scaleX); + cropElStyle.height = round$3((dh + sy * dh / sh) * scaleY); + cropElStyle.filter = imageTransformPrefix + '.Matrix(Dx=' + + (-sx * dw / sw * scaleX) + ',Dy=' + (-sy * dh / sh * scaleY) + ')'; + + if (!cropEl.parentNode) { + vmlEl.appendChild(cropEl); + } + if (imageEl.parentNode !== cropEl) { + cropEl.appendChild(imageEl); + } + } + else { + imageELStyle.width = round$3(scaleX * dw) + 'px'; + imageELStyle.height = round$3(scaleY * dh) + 'px'; + + vmlEl.appendChild(imageEl); + + if (cropEl && cropEl.parentNode) { + vmlEl.removeChild(cropEl); + this._cropEl = null; + } + } + + var filterStr = ''; + var alpha = style.opacity; + if (alpha < 1) { + filterStr += '.Alpha(opacity=' + round$3(alpha * 100) + ') '; + } + filterStr += imageTransformPrefix + '.AlphaImageLoader(src=' + image + ', SizingMethod=scale)'; + + imageELStyle.filter = filterStr; + + vmlEl.style.zIndex = getZIndex(this.zlevel, this.z, this.z2); + + // Append to root + append(vmlRoot, vmlEl); + + // Text + if (style.text != null) { + this.drawRectText(vmlRoot, this.getBoundingRect()); + } + }; + + ZImage.prototype.onRemove = function (vmlRoot) { + remove(vmlRoot, this._vmlEl); + + this._vmlEl = null; + this._cropEl = null; + this._imageEl = null; + + this.removeRectText(vmlRoot); + }; + + ZImage.prototype.onAdd = function (vmlRoot) { + append(vmlRoot, this._vmlEl); + this.appendRectText(vmlRoot); + }; + + + /*************************************************** + * TEXT + **************************************************/ + + var DEFAULT_STYLE_NORMAL = 'normal'; + + var fontStyleCache = {}; + var fontStyleCacheCount = 0; + var MAX_FONT_CACHE_SIZE = 100; + var fontEl = document.createElement('div'); + + var getFontStyle = function (fontString) { + var fontStyle = fontStyleCache[fontString]; + if (!fontStyle) { + // Clear cache + if (fontStyleCacheCount > MAX_FONT_CACHE_SIZE) { + fontStyleCacheCount = 0; + fontStyleCache = {}; + } + + var style = fontEl.style; + var fontFamily; + try { + style.font = fontString; + fontFamily = style.fontFamily.split(',')[0]; + } + catch (e) { + } + + fontStyle = { + style: style.fontStyle || DEFAULT_STYLE_NORMAL, + variant: style.fontVariant || DEFAULT_STYLE_NORMAL, + weight: style.fontWeight || DEFAULT_STYLE_NORMAL, + size: parseFloat(style.fontSize || 12) | 0, + family: fontFamily || 'Microsoft YaHei' + }; + + fontStyleCache[fontString] = fontStyle; + fontStyleCacheCount++; + } + return fontStyle; + }; + + var textMeasureEl; + // Overwrite measure text method + $override$1('measureText', function (text, textFont) { + var doc$$1 = doc; + if (!textMeasureEl) { + textMeasureEl = doc$$1.createElement('div'); + textMeasureEl.style.cssText = 'position:absolute;top:-20000px;left:0;' + + 'padding:0;margin:0;border:none;white-space:pre;'; + doc.body.appendChild(textMeasureEl); + } + + try { + textMeasureEl.style.font = textFont; + } + catch (ex) { + // Ignore failures to set to invalid font. + } + textMeasureEl.innerHTML = ''; + // Don't use innerHTML or innerText because they allow markup/whitespace. + textMeasureEl.appendChild(doc$$1.createTextNode(text)); + return { + width: textMeasureEl.offsetWidth + }; + }); + + var tmpRect$2 = new BoundingRect(); + + var drawRectText = function (vmlRoot, rect, textRect, fromTextEl) { + + var style = this.style; + + // Optimize, avoid normalize every time. + this.__dirty && normalizeTextStyle(style, true); + + var text = style.text; + // Convert to string + text != null && (text += ''); + if (!text) { + return; + } + + // Convert rich text to plain text. Rich text is not supported in + // IE8-, but tags in rich text template will be removed. + if (style.rich) { + var contentBlock = parseRichText(text, style); + text = []; + for (var i = 0; i < contentBlock.lines.length; i++) { + var tokens = contentBlock.lines[i].tokens; + var textLine = []; + for (var j = 0; j < tokens.length; j++) { + textLine.push(tokens[j].text); + } + text.push(textLine.join('')); + } + text = text.join('\n'); + } + + var x; + var y; + var align = style.textAlign; + var verticalAlign = style.textVerticalAlign; + + var fontStyle = getFontStyle(style.font); + // FIXME encodeHtmlAttribute ? + var font = fontStyle.style + ' ' + fontStyle.variant + ' ' + fontStyle.weight + ' ' + + fontStyle.size + 'px "' + fontStyle.family + '"'; + + textRect = textRect || getBoundingRect( + text, font, align, verticalAlign, style.textPadding, style.textLineHeight + ); + + // Transform rect to view space + var m = this.transform; + // Ignore transform for text in other element + if (m && !fromTextEl) { + tmpRect$2.copy(rect); + tmpRect$2.applyTransform(m); + rect = tmpRect$2; + } + + if (!fromTextEl) { + var textPosition = style.textPosition; + // Text position represented by coord + if (textPosition instanceof Array) { + x = rect.x + parsePercent$3(textPosition[0], rect.width); + y = rect.y + parsePercent$3(textPosition[1], rect.height); + + align = align || 'left'; + } + else { + var res = this.calculateTextPosition + ? this.calculateTextPosition({}, style, rect) + : calculateTextPosition({}, style, rect); + x = res.x; + y = res.y; + + // Default align and baseline when has textPosition + align = align || res.textAlign; + verticalAlign = verticalAlign || res.textVerticalAlign; + } + } + else { + x = rect.x; + y = rect.y; + } + + x = adjustTextX(x, textRect.width, align); + y = adjustTextY(y, textRect.height, verticalAlign); + + // Force baseline 'middle' + y += textRect.height / 2; + + // var fontSize = fontStyle.size; + // 1.75 is an arbitrary number, as there is no info about the text baseline + // switch (baseline) { + // case 'hanging': + // case 'top': + // y += fontSize / 1.75; + // break; + // case 'middle': + // break; + // default: + // // case null: + // // case 'alphabetic': + // // case 'ideographic': + // // case 'bottom': + // y -= fontSize / 2.25; + // break; + // } + + // switch (align) { + // case 'left': + // break; + // case 'center': + // x -= textRect.width / 2; + // break; + // case 'right': + // x -= textRect.width; + // break; + // case 'end': + // align = elementStyle.direction == 'ltr' ? 'right' : 'left'; + // break; + // case 'start': + // align = elementStyle.direction == 'rtl' ? 'right' : 'left'; + // break; + // default: + // align = 'left'; + // } + + var createNode$$1 = createNode; + + var textVmlEl = this._textVmlEl; + var pathEl; + var textPathEl; + var skewEl; + if (!textVmlEl) { + textVmlEl = createNode$$1('line'); + pathEl = createNode$$1('path'); + textPathEl = createNode$$1('textpath'); + skewEl = createNode$$1('skew'); + + // FIXME Why here is not cammel case + // Align 'center' seems wrong + textPathEl.style['v-text-align'] = 'left'; + + initRootElStyle(textVmlEl); + + pathEl.textpathok = true; + textPathEl.on = true; + + textVmlEl.from = '0 0'; + textVmlEl.to = '1000 0.05'; + + append(textVmlEl, skewEl); + append(textVmlEl, pathEl); + append(textVmlEl, textPathEl); + + this._textVmlEl = textVmlEl; + } + else { + // 这里是在前面 appendChild 保证顺序的前提下 + skewEl = textVmlEl.firstChild; + pathEl = skewEl.nextSibling; + textPathEl = pathEl.nextSibling; + } + + var coords = [x, y]; + var textVmlElStyle = textVmlEl.style; + // Ignore transform for text in other element + if (m && fromTextEl) { + applyTransform(coords, coords, m); + + skewEl.on = true; + + skewEl.matrix = m[0].toFixed(3) + comma + m[2].toFixed(3) + comma + + m[1].toFixed(3) + comma + m[3].toFixed(3) + ',0,0'; + + // Text position + skewEl.offset = (round$3(coords[0]) || 0) + ',' + (round$3(coords[1]) || 0); + // Left top point as origin + skewEl.origin = '0 0'; + + textVmlElStyle.left = '0px'; + textVmlElStyle.top = '0px'; + } + else { + skewEl.on = false; + textVmlElStyle.left = round$3(x) + 'px'; + textVmlElStyle.top = round$3(y) + 'px'; + } + + textPathEl.string = encodeHtmlAttribute(text); + // TODO + try { + textPathEl.style.font = font; + } + // Error font format + catch (e) {} + + updateFillAndStroke(textVmlEl, 'fill', { + fill: style.textFill, + opacity: style.opacity + }, this); + updateFillAndStroke(textVmlEl, 'stroke', { + stroke: style.textStroke, + opacity: style.opacity, + lineDash: style.lineDash || null // style.lineDash can be `false`. + }, this); + + textVmlEl.style.zIndex = getZIndex(this.zlevel, this.z, this.z2); + + // Attached to root + append(vmlRoot, textVmlEl); + }; + + var removeRectText = function (vmlRoot) { + remove(vmlRoot, this._textVmlEl); + this._textVmlEl = null; + }; + + var appendRectText = function (vmlRoot) { + append(vmlRoot, this._textVmlEl); + }; + + var list = [RectText, Displayable, ZImage, Path, Text]; + + // In case Displayable has been mixed in RectText + for (var i$3 = 0; i$3 < list.length; i$3++) { + var proto$8 = list[i$3].prototype; + proto$8.drawRectText = drawRectText; + proto$8.removeRectText = removeRectText; + proto$8.appendRectText = appendRectText; + } + + Text.prototype.brushVML = function (vmlRoot) { + var style = this.style; + if (style.text != null) { + this.drawRectText(vmlRoot, { + x: style.x || 0, y: style.y || 0, + width: 0, height: 0 + }, this.getBoundingRect(), true); + } + else { + this.removeRectText(vmlRoot); + } + }; + + Text.prototype.onRemove = function (vmlRoot) { + this.removeRectText(vmlRoot); + }; + + Text.prototype.onAdd = function (vmlRoot) { + this.appendRectText(vmlRoot); + }; +} + +/** + * VML Painter. + * + * @module zrender/vml/Painter + */ + +function parseInt10$1(val) { + return parseInt(val, 10); +} + +/** + * @alias module:zrender/vml/Painter + */ +function VMLPainter(root, storage) { + + initVML(); + + this.root = root; + + this.storage = storage; + + var vmlViewport = document.createElement('div'); + + var vmlRoot = document.createElement('div'); + + vmlViewport.style.cssText = 'display:inline-block;overflow:hidden;position:relative;width:300px;height:150px;'; + + vmlRoot.style.cssText = 'position:absolute;left:0;top:0;'; + + root.appendChild(vmlViewport); + + this._vmlRoot = vmlRoot; + this._vmlViewport = vmlViewport; + + this.resize(); + + // Modify storage + var oldDelFromStorage = storage.delFromStorage; + var oldAddToStorage = storage.addToStorage; + storage.delFromStorage = function (el) { + oldDelFromStorage.call(storage, el); + + if (el) { + el.onRemove && el.onRemove(vmlRoot); + } + }; + + storage.addToStorage = function (el) { + // Displayable already has a vml node + el.onAdd && el.onAdd(vmlRoot); + + oldAddToStorage.call(storage, el); + }; + + this._firstPaint = true; +} + +VMLPainter.prototype = { + + constructor: VMLPainter, + + getType: function () { + return 'vml'; + }, + + /** + * @return {HTMLDivElement} + */ + getViewportRoot: function () { + return this._vmlViewport; + }, + + getViewportRootOffset: function () { + var viewportRoot = this.getViewportRoot(); + if (viewportRoot) { + return { + offsetLeft: viewportRoot.offsetLeft || 0, + offsetTop: viewportRoot.offsetTop || 0 + }; + } + }, + + /** + * 刷新 + */ + refresh: function () { + + var list = this.storage.getDisplayList(true, true); + + this._paintList(list); + }, + + _paintList: function (list) { + var vmlRoot = this._vmlRoot; + for (var i = 0; i < list.length; i++) { + var el = list[i]; + if (el.invisible || el.ignore) { + if (!el.__alreadyNotVisible) { + el.onRemove(vmlRoot); + } + // Set as already invisible + el.__alreadyNotVisible = true; + } + else { + if (el.__alreadyNotVisible) { + el.onAdd(vmlRoot); + } + el.__alreadyNotVisible = false; + if (el.__dirty) { + el.beforeBrush && el.beforeBrush(); + (el.brushVML || el.brush).call(el, vmlRoot); + el.afterBrush && el.afterBrush(); + } + } + el.__dirty = false; + } + + if (this._firstPaint) { + // Detached from document at first time + // to avoid page refreshing too many times + + // FIXME 如果每次都先 removeChild 可能会导致一些填充和描边的效果改变 + this._vmlViewport.appendChild(vmlRoot); + this._firstPaint = false; + } + }, + + resize: function (width, height) { + var width = width == null ? this._getWidth() : width; + var height = height == null ? this._getHeight() : height; + + if (this._width !== width || this._height !== height) { + this._width = width; + this._height = height; + + var vmlViewportStyle = this._vmlViewport.style; + vmlViewportStyle.width = width + 'px'; + vmlViewportStyle.height = height + 'px'; + } + }, + + dispose: function () { + this.root.innerHTML = ''; + + this._vmlRoot = + this._vmlViewport = + this.storage = null; + }, + + getWidth: function () { + return this._width; + }, + + getHeight: function () { + return this._height; + }, + + clear: function () { + if (this._vmlViewport) { + this.root.removeChild(this._vmlViewport); + } + }, + + _getWidth: function () { + var root = this.root; + var stl = root.currentStyle; + + return ((root.clientWidth || parseInt10$1(stl.width)) + - parseInt10$1(stl.paddingLeft) + - parseInt10$1(stl.paddingRight)) | 0; + }, + + _getHeight: function () { + var root = this.root; + var stl = root.currentStyle; + + return ((root.clientHeight || parseInt10$1(stl.height)) + - parseInt10$1(stl.paddingTop) + - parseInt10$1(stl.paddingBottom)) | 0; + } +}; + +// Not supported methods +function createMethodNotSupport(method) { + return function () { + zrLog('In IE8.0 VML mode painter not support method "' + method + '"'); + }; +} + +// Unsupported methods +each$1([ + 'getLayer', 'insertLayer', 'eachLayer', 'eachBuiltinLayer', 'eachOtherLayer', 'getLayers', + 'modLayer', 'delLayer', 'clearLayer', 'toDataURL', 'pathToImage' +], function (name) { + VMLPainter.prototype[name] = createMethodNotSupport(name); +}); + +registerPainter('vml', VMLPainter); + +var svgURI = 'http://www.w3.org/2000/svg'; + +function createElement(name) { + return document.createElementNS(svgURI, name); +} + +// TODO +// 1. shadow +// 2. Image: sx, sy, sw, sh + +var CMD$4 = PathProxy.CMD; +var arrayJoin = Array.prototype.join; + +var NONE = 'none'; +var mathRound = Math.round; +var mathSin$3 = Math.sin; +var mathCos$3 = Math.cos; +var PI$6 = Math.PI; +var PI2$7 = Math.PI * 2; +var degree = 180 / PI$6; + +var EPSILON$4 = 1e-4; + +function round4(val) { + return mathRound(val * 1e4) / 1e4; +} + +function isAroundZero$1(val) { + return val < EPSILON$4 && val > -EPSILON$4; +} + +function pathHasFill(style, isText) { + var fill = isText ? style.textFill : style.fill; + return fill != null && fill !== NONE; +} + +function pathHasStroke(style, isText) { + var stroke = isText ? style.textStroke : style.stroke; + return stroke != null && stroke !== NONE; +} + +function setTransform(svgEl, m) { + if (m) { + attr(svgEl, 'transform', 'matrix(' + arrayJoin.call(m, ',') + ')'); + } +} + +function attr(el, key, val) { + if (!val || val.type !== 'linear' && val.type !== 'radial') { + // Don't set attribute for gradient, since it need new dom nodes + el.setAttribute(key, val); + } +} + +function attrXLink(el, key, val) { + el.setAttributeNS('http://www.w3.org/1999/xlink', key, val); +} + +function bindStyle(svgEl, style, isText, el) { + if (pathHasFill(style, isText)) { + var fill = isText ? style.textFill : style.fill; + fill = fill === 'transparent' ? NONE : fill; + attr(svgEl, 'fill', fill); + attr(svgEl, 'fill-opacity', style.fillOpacity != null ? style.fillOpacity * style.opacity : style.opacity); + } + else { + attr(svgEl, 'fill', NONE); + } + + if (pathHasStroke(style, isText)) { + var stroke = isText ? style.textStroke : style.stroke; + stroke = stroke === 'transparent' ? NONE : stroke; + attr(svgEl, 'stroke', stroke); + var strokeWidth = isText + ? style.textStrokeWidth + : style.lineWidth; + var strokeScale = !isText && style.strokeNoScale + ? el.getLineScale() + : 1; + attr(svgEl, 'stroke-width', strokeWidth / strokeScale); + // stroke then fill for text; fill then stroke for others + attr(svgEl, 'paint-order', isText ? 'stroke' : 'fill'); + attr(svgEl, 'stroke-opacity', style.strokeOpacity != null ? style.strokeOpacity : style.opacity); + var lineDash = style.lineDash; + if (lineDash) { + attr(svgEl, 'stroke-dasharray', style.lineDash.join(',')); + attr(svgEl, 'stroke-dashoffset', mathRound(style.lineDashOffset || 0)); + } + else { + attr(svgEl, 'stroke-dasharray', ''); + } + + // PENDING + style.lineCap && attr(svgEl, 'stroke-linecap', style.lineCap); + style.lineJoin && attr(svgEl, 'stroke-linejoin', style.lineJoin); + style.miterLimit && attr(svgEl, 'stroke-miterlimit', style.miterLimit); + } + else { + attr(svgEl, 'stroke', NONE); + } +} + +/*************************************************** + * PATH + **************************************************/ +function pathDataToString$1(path) { + var str = []; + var data = path.data; + var dataLength = path.len(); + for (var i = 0; i < dataLength;) { + var cmd = data[i++]; + var cmdStr = ''; + var nData = 0; + switch (cmd) { + case CMD$4.M: + cmdStr = 'M'; + nData = 2; + break; + case CMD$4.L: + cmdStr = 'L'; + nData = 2; + break; + case CMD$4.Q: + cmdStr = 'Q'; + nData = 4; + break; + case CMD$4.C: + cmdStr = 'C'; + nData = 6; + break; + case CMD$4.A: + var cx = data[i++]; + var cy = data[i++]; + var rx = data[i++]; + var ry = data[i++]; + var theta = data[i++]; + var dTheta = data[i++]; + var psi = data[i++]; + var clockwise = data[i++]; + + var dThetaPositive = Math.abs(dTheta); + var isCircle = isAroundZero$1(dThetaPositive - PI2$7) + && !isAroundZero$1(dThetaPositive); + + var large = false; + if (dThetaPositive >= PI2$7) { + large = true; + } + else if (isAroundZero$1(dThetaPositive)) { + large = false; + } + else { + large = (dTheta > -PI$6 && dTheta < 0 || dTheta > PI$6) + === !!clockwise; + } + + var x0 = round4(cx + rx * mathCos$3(theta)); + var y0 = round4(cy + ry * mathSin$3(theta)); + + // It will not draw if start point and end point are exactly the same + // We need to shift the end point with a small value + // FIXME A better way to draw circle ? + if (isCircle) { + if (clockwise) { + dTheta = PI2$7 - 1e-4; + } + else { + dTheta = -PI2$7 + 1e-4; + } + + large = true; + + if (i === 9) { + // Move to (x0, y0) only when CMD.A comes at the + // first position of a shape. + // For instance, when drawing a ring, CMD.A comes + // after CMD.M, so it's unnecessary to move to + // (x0, y0). + str.push('M', x0, y0); + } + } + + var x = round4(cx + rx * mathCos$3(theta + dTheta)); + var y = round4(cy + ry * mathSin$3(theta + dTheta)); + + // FIXME Ellipse + str.push('A', round4(rx), round4(ry), + mathRound(psi * degree), +large, +clockwise, x, y); + break; + case CMD$4.Z: + cmdStr = 'Z'; + break; + case CMD$4.R: + var x = round4(data[i++]); + var y = round4(data[i++]); + var w = round4(data[i++]); + var h = round4(data[i++]); + str.push( + 'M', x, y, + 'L', x + w, y, + 'L', x + w, y + h, + 'L', x, y + h, + 'L', x, y + ); + break; + } + cmdStr && str.push(cmdStr); + for (var j = 0; j < nData; j++) { + // PENDING With scale + str.push(round4(data[i++])); + } + } + return str.join(' '); +} + +var svgPath = {}; +svgPath.brush = function (el) { + var style = el.style; + + var svgEl = el.__svgEl; + if (!svgEl) { + svgEl = createElement('path'); + el.__svgEl = svgEl; + } + + if (!el.path) { + el.createPathProxy(); + } + var path = el.path; + + if (el.__dirtyPath) { + path.beginPath(); + path.subPixelOptimize = false; + el.buildPath(path, el.shape); + el.__dirtyPath = false; + + var pathStr = pathDataToString$1(path); + if (pathStr.indexOf('NaN') < 0) { + // Ignore illegal path, which may happen such in out-of-range + // data in Calendar series. + attr(svgEl, 'd', pathStr); + } + } + + bindStyle(svgEl, style, false, el); + setTransform(svgEl, el.transform); + + if (style.text != null) { + svgTextDrawRectText(el, el.getBoundingRect()); + } +}; + +/*************************************************** + * IMAGE + **************************************************/ +var svgImage = {}; +svgImage.brush = function (el) { + var style = el.style; + var image = style.image; + + if (image instanceof HTMLImageElement) { + var src = image.src; + image = src; + } + if (!image) { + return; + } + + var x = style.x || 0; + var y = style.y || 0; + + var dw = style.width; + var dh = style.height; + + var svgEl = el.__svgEl; + if (!svgEl) { + svgEl = createElement('image'); + el.__svgEl = svgEl; + } + + if (image !== el.__imageSrc) { + attrXLink(svgEl, 'href', image); + // Caching image src + el.__imageSrc = image; + } + + attr(svgEl, 'width', dw); + attr(svgEl, 'height', dh); + + attr(svgEl, 'x', x); + attr(svgEl, 'y', y); + + setTransform(svgEl, el.transform); + + if (style.text != null) { + svgTextDrawRectText(el, el.getBoundingRect()); + } +}; + +/*************************************************** + * TEXT + **************************************************/ +var svgText = {}; +var tmpRect$3 = new BoundingRect(); +var tmpTextPositionResult = {}; + +var svgTextDrawRectText = function (el, rect, textRect) { + var style = el.style; + + el.__dirty && normalizeTextStyle(style, true); + + var text = style.text; + // Convert to string + if (text == null) { + // Draw no text only when text is set to null, but not '' + return; + } + else { + text += ''; + } + + var textSvgEl = el.__textSvgEl; + if (!textSvgEl) { + textSvgEl = createElement('text'); + el.__textSvgEl = textSvgEl; + } + + var x; + var y; + var textPosition = style.textPosition; + var align = style.textAlign || 'left'; + + if (typeof style.fontSize === 'number') { + style.fontSize += 'px'; + } + var font = style.font + || [ + style.fontStyle || '', + style.fontWeight || '', + style.fontSize || '', + style.fontFamily || '' + ].join(' ') + || DEFAULT_FONT$1; + + var verticalAlign = style.textVerticalAlign; + + textRect = getBoundingRect( + text, font, align, + verticalAlign, style.textPadding, style.textLineHeight + ); + + var lineHeight = textRect.lineHeight; + // Text position represented by coord + if (textPosition instanceof Array) { + x = rect.x + textPosition[0]; + y = rect.y + textPosition[1]; + } + else { + var newPos = el.calculateTextPosition + ? el.calculateTextPosition(tmpTextPositionResult, style, rect) + : calculateTextPosition(tmpTextPositionResult, style, rect); + x = newPos.x; + y = newPos.y; + verticalAlign = newPos.textVerticalAlign; + align = newPos.textAlign; + } + + setVerticalAlign(textSvgEl, verticalAlign); + + if (font) { + textSvgEl.style.font = font; + } + + var textPadding = style.textPadding; + + // Make baseline top + attr(textSvgEl, 'x', x); + attr(textSvgEl, 'y', y); + + bindStyle(textSvgEl, style, true, el); + if (el instanceof Text || el.style.transformText) { + // Transform text with element + setTransform(textSvgEl, el.transform); + } + else { + if (el.transform) { + tmpRect$3.copy(rect); + tmpRect$3.applyTransform(el.transform); + rect = tmpRect$3; + } + else { + var pos = el.transformCoordToGlobal(rect.x, rect.y); + rect.x = pos[0]; + rect.y = pos[1]; + el.transform = identity(create$1()); + } + + // Text rotation, but no element transform + var origin = style.textOrigin; + if (origin === 'center') { + x = textRect.width / 2 + x; + y = textRect.height / 2 + y; + } + else if (origin) { + x = origin[0] + x; + y = origin[1] + y; + } + var rotate$$1 = -style.textRotation || 0; + var transform = create$1(); + // Apply textRotate to element matrix + rotate(transform, transform, rotate$$1); + + var pos = [el.transform[4], el.transform[5]]; + translate(transform, transform, pos); + setTransform(textSvgEl, transform); + } + + var textLines = text.split('\n'); + var nTextLines = textLines.length; + var textAnchor = align; + // PENDING + if (textAnchor === 'left') { + textAnchor = 'start'; + textPadding && (x += textPadding[3]); + } + else if (textAnchor === 'right') { + textAnchor = 'end'; + textPadding && (x -= textPadding[1]); + } + else if (textAnchor === 'center') { + textAnchor = 'middle'; + textPadding && (x += (textPadding[3] - textPadding[1]) / 2); + } + + var dy = 0; + if (verticalAlign === 'bottom') { + dy = -textRect.height + lineHeight; + textPadding && (dy -= textPadding[2]); + } + else if (verticalAlign === 'middle') { + dy = (-textRect.height + lineHeight) / 2; + textPadding && (y += (textPadding[0] - textPadding[2]) / 2); + } + else { + textPadding && (dy += textPadding[0]); + } + + // Font may affect position of each tspan elements + if (el.__text !== text || el.__textFont !== font) { + var tspanList = el.__tspanList || []; + el.__tspanList = tspanList; + for (var i = 0; i < nTextLines; i++) { + // Using cached tspan elements + var tspan = tspanList[i]; + if (!tspan) { + tspan = tspanList[i] = createElement('tspan'); + textSvgEl.appendChild(tspan); + setVerticalAlign(tspan, verticalAlign); + attr(tspan, 'text-anchor', textAnchor); + } + else { + tspan.innerHTML = ''; + } + attr(tspan, 'x', x); + attr(tspan, 'y', y + i * lineHeight + dy); + tspan.appendChild(document.createTextNode(textLines[i])); + } + // Remove unsed tspan elements + for (; i < tspanList.length; i++) { + textSvgEl.removeChild(tspanList[i]); + } + tspanList.length = nTextLines; + + el.__text = text; + el.__textFont = font; + } + else if (el.__tspanList.length) { + // Update span x and y + var len = el.__tspanList.length; + for (var i = 0; i < len; ++i) { + var tspan = el.__tspanList[i]; + if (tspan) { + attr(tspan, 'x', x); + attr(tspan, 'y', y + i * lineHeight + dy); + } + } + } +}; + +function setVerticalAlign(textSvgEl, verticalAlign) { + switch (verticalAlign) { + case 'middle': + attr(textSvgEl, 'dominant-baseline', 'middle'); + attr(textSvgEl, 'alignment-baseline', 'middle'); + break; + + case 'bottom': + attr(textSvgEl, 'dominant-baseline', 'ideographic'); + attr(textSvgEl, 'alignment-baseline', 'ideographic'); + break; + + default: + attr(textSvgEl, 'dominant-baseline', 'hanging'); + attr(textSvgEl, 'alignment-baseline', 'hanging'); + } +} + +svgText.drawRectText = svgTextDrawRectText; + +svgText.brush = function (el) { + var style = el.style; + if (style.text != null) { + // 强制设置 textPosition + style.textPosition = [0, 0]; + svgTextDrawRectText(el, { + x: style.x || 0, y: style.y || 0, + width: 0, height: 0 + }, el.getBoundingRect()); + } +}; + +// Myers' Diff Algorithm +// Modified from https://github.com/kpdecker/jsdiff/blob/master/src/diff/base.js + +function Diff() {} + +Diff.prototype = { + diff: function (oldArr, newArr, equals) { + if (!equals) { + equals = function (a, b) { + return a === b; + }; + } + this.equals = equals; + + var self = this; + + oldArr = oldArr.slice(); + newArr = newArr.slice(); + // Allow subclasses to massage the input prior to running + var newLen = newArr.length; + var oldLen = oldArr.length; + var editLength = 1; + var maxEditLength = newLen + oldLen; + var bestPath = [{ newPos: -1, components: [] }]; + + // Seed editLength = 0, i.e. the content starts with the same values + var oldPos = this.extractCommon(bestPath[0], newArr, oldArr, 0); + if (bestPath[0].newPos + 1 >= newLen && oldPos + 1 >= oldLen) { + var indices = []; + for (var i = 0; i < newArr.length; i++) { + indices.push(i); + } + // Identity per the equality and tokenizer + return [{ + indices: indices, count: newArr.length + }]; + } + + // Main worker method. checks all permutations of a given edit length for acceptance. + function execEditLength() { + for (var diagonalPath = -1 * editLength; diagonalPath <= editLength; diagonalPath += 2) { + var basePath; + var addPath = bestPath[diagonalPath - 1]; + var removePath = bestPath[diagonalPath + 1]; + var oldPos = (removePath ? removePath.newPos : 0) - diagonalPath; + if (addPath) { + // No one else is going to attempt to use this value, clear it + bestPath[diagonalPath - 1] = undefined; + } + + var canAdd = addPath && addPath.newPos + 1 < newLen; + var canRemove = removePath && 0 <= oldPos && oldPos < oldLen; + if (!canAdd && !canRemove) { + // If this path is a terminal then prune + bestPath[diagonalPath] = undefined; + continue; + } + + // Select the diagonal that we want to branch from. We select the prior + // path whose position in the new string is the farthest from the origin + // and does not pass the bounds of the diff graph + if (!canAdd || (canRemove && addPath.newPos < removePath.newPos)) { + basePath = clonePath(removePath); + self.pushComponent(basePath.components, undefined, true); + } + else { + basePath = addPath; // No need to clone, we've pulled it from the list + basePath.newPos++; + self.pushComponent(basePath.components, true, undefined); + } + + oldPos = self.extractCommon(basePath, newArr, oldArr, diagonalPath); + + // If we have hit the end of both strings, then we are done + if (basePath.newPos + 1 >= newLen && oldPos + 1 >= oldLen) { + return buildValues(self, basePath.components, newArr, oldArr); + } + else { + // Otherwise track this path as a potential candidate and continue. + bestPath[diagonalPath] = basePath; + } + } + + editLength++; + } + + while (editLength <= maxEditLength) { + var ret = execEditLength(); + if (ret) { + return ret; + } + } + }, + + pushComponent: function (components, added, removed) { + var last = components[components.length - 1]; + if (last && last.added === added && last.removed === removed) { + // We need to clone here as the component clone operation is just + // as shallow array clone + components[components.length - 1] = {count: last.count + 1, added: added, removed: removed }; + } + else { + components.push({count: 1, added: added, removed: removed }); + } + }, + extractCommon: function (basePath, newArr, oldArr, diagonalPath) { + var newLen = newArr.length; + var oldLen = oldArr.length; + var newPos = basePath.newPos; + var oldPos = newPos - diagonalPath; + var commonCount = 0; + + while (newPos + 1 < newLen && oldPos + 1 < oldLen && this.equals(newArr[newPos + 1], oldArr[oldPos + 1])) { + newPos++; + oldPos++; + commonCount++; + } + + if (commonCount) { + basePath.components.push({count: commonCount}); + } + + basePath.newPos = newPos; + return oldPos; + }, + tokenize: function (value) { + return value.slice(); + }, + join: function (value) { + return value.slice(); + } +}; + +function buildValues(diff, components, newArr, oldArr) { + var componentPos = 0; + var componentLen = components.length; + var newPos = 0; + var oldPos = 0; + + for (; componentPos < componentLen; componentPos++) { + var component = components[componentPos]; + if (!component.removed) { + var indices = []; + for (var i = newPos; i < newPos + component.count; i++) { + indices.push(i); + } + component.indices = indices; + newPos += component.count; + // Common case + if (!component.added) { + oldPos += component.count; + } + } + else { + var indices = []; + for (var i = oldPos; i < oldPos + component.count; i++) { + indices.push(i); + } + component.indices = indices; + oldPos += component.count; + } + } + + return components; +} + +function clonePath(path) { + return { newPos: path.newPos, components: path.components.slice(0) }; +} + +var arrayDiff = new Diff(); + +var arrayDiff$1 = function (oldArr, newArr, callback) { + return arrayDiff.diff(oldArr, newArr, callback); +}; + +/** + * @file Manages elements that can be defined in in SVG, + * e.g., gradients, clip path, etc. + * @author Zhang Wenli + */ + +var MARK_UNUSED = '0'; +var MARK_USED = '1'; + +/** + * Manages elements that can be defined in in SVG, + * e.g., gradients, clip path, etc. + * + * @class + * @param {number} zrId zrender instance id + * @param {SVGElement} svgRoot root of SVG document + * @param {string|string[]} tagNames possible tag names + * @param {string} markLabel label name to make if the element + * is used + */ +function Definable( + zrId, + svgRoot, + tagNames, + markLabel, + domName +) { + this._zrId = zrId; + this._svgRoot = svgRoot; + this._tagNames = typeof tagNames === 'string' ? [tagNames] : tagNames; + this._markLabel = markLabel; + this._domName = domName || '_dom'; + + this.nextId = 0; +} + + +Definable.prototype.createElement = createElement; + + +/** + * Get the tag for svgRoot; optionally creates one if not exists. + * + * @param {boolean} isForceCreating if need to create when not exists + * @return {SVGDefsElement} SVG element, null if it doesn't + * exist and isForceCreating is false + */ +Definable.prototype.getDefs = function (isForceCreating) { + var svgRoot = this._svgRoot; + var defs = this._svgRoot.getElementsByTagName('defs'); + if (defs.length === 0) { + // Not exist + if (isForceCreating) { + defs = svgRoot.insertBefore( + this.createElement('defs'), // Create new tag + svgRoot.firstChild // Insert in the front of svg + ); + if (!defs.contains) { + // IE doesn't support contains method + defs.contains = function (el) { + var children = defs.children; + if (!children) { + return false; + } + for (var i = children.length - 1; i >= 0; --i) { + if (children[i] === el) { + return true; + } + } + return false; + }; + } + return defs; + } + else { + return null; + } + } + else { + return defs[0]; + } +}; + + +/** + * Update DOM element if necessary. + * + * @param {Object|string} element style element. e.g., for gradient, + * it may be '#ccc' or {type: 'linear', ...} + * @param {Function|undefined} onUpdate update callback + */ +Definable.prototype.update = function (element, onUpdate) { + if (!element) { + return; + } + + var defs = this.getDefs(false); + if (element[this._domName] && defs.contains(element[this._domName])) { + // Update DOM + if (typeof onUpdate === 'function') { + onUpdate(element); + } + } + else { + // No previous dom, create new + var dom = this.add(element); + if (dom) { + element[this._domName] = dom; + } + } +}; + + +/** + * Add gradient dom to defs + * + * @param {SVGElement} dom DOM to be added to + */ +Definable.prototype.addDom = function (dom) { + var defs = this.getDefs(true); + defs.appendChild(dom); +}; + + +/** + * Remove DOM of a given element. + * + * @param {SVGElement} element element to remove dom + */ +Definable.prototype.removeDom = function (element) { + var defs = this.getDefs(false); + if (defs && element[this._domName]) { + defs.removeChild(element[this._domName]); + element[this._domName] = null; + } +}; + + +/** + * Get DOMs of this element. + * + * @return {HTMLDomElement} doms of this defineable elements in + */ +Definable.prototype.getDoms = function () { + var defs = this.getDefs(false); + if (!defs) { + // No dom when defs is not defined + return []; + } + + var doms = []; + each$1(this._tagNames, function (tagName) { + var tags = defs.getElementsByTagName(tagName); + // Note that tags is HTMLCollection, which is array-like + // rather than real array. + // So `doms.concat(tags)` add tags as one object. + doms = doms.concat([].slice.call(tags)); + }); + + return doms; +}; + + +/** + * Mark DOMs to be unused before painting, and clear unused ones at the end + * of the painting. + */ +Definable.prototype.markAllUnused = function () { + var doms = this.getDoms(); + var that = this; + each$1(doms, function (dom) { + dom[that._markLabel] = MARK_UNUSED; + }); +}; + + +/** + * Mark a single DOM to be used. + * + * @param {SVGElement} dom DOM to mark + */ +Definable.prototype.markUsed = function (dom) { + if (dom) { + dom[this._markLabel] = MARK_USED; + } +}; + + +/** + * Remove unused DOMs defined in + */ +Definable.prototype.removeUnused = function () { + var defs = this.getDefs(false); + if (!defs) { + // Nothing to remove + return; + } + + var doms = this.getDoms(); + var that = this; + each$1(doms, function (dom) { + if (dom[that._markLabel] !== MARK_USED) { + // Remove gradient + defs.removeChild(dom); + } + }); +}; + + +/** + * Get SVG proxy. + * + * @param {Displayable} displayable displayable element + * @return {Path|Image|Text} svg proxy of given element + */ +Definable.prototype.getSvgProxy = function (displayable) { + if (displayable instanceof Path) { + return svgPath; + } + else if (displayable instanceof ZImage) { + return svgImage; + } + else if (displayable instanceof Text) { + return svgText; + } + else { + return svgPath; + } +}; + + +/** + * Get text SVG element. + * + * @param {Displayable} displayable displayable element + * @return {SVGElement} SVG element of text + */ +Definable.prototype.getTextSvgElement = function (displayable) { + return displayable.__textSvgEl; +}; + + +/** + * Get SVG element. + * + * @param {Displayable} displayable displayable element + * @return {SVGElement} SVG element + */ +Definable.prototype.getSvgElement = function (displayable) { + return displayable.__svgEl; +}; + +/** + * @file Manages SVG gradient elements. + * @author Zhang Wenli + */ + +/** + * Manages SVG gradient elements. + * + * @class + * @extends Definable + * @param {number} zrId zrender instance id + * @param {SVGElement} svgRoot root of SVG document + */ +function GradientManager(zrId, svgRoot) { + Definable.call( + this, + zrId, + svgRoot, + ['linearGradient', 'radialGradient'], + '__gradient_in_use__' + ); +} + + +inherits(GradientManager, Definable); + + +/** + * Create new gradient DOM for fill or stroke if not exist, + * but will not update gradient if exists. + * + * @param {SvgElement} svgElement SVG element to paint + * @param {Displayable} displayable zrender displayable element + */ +GradientManager.prototype.addWithoutUpdate = function ( + svgElement, + displayable +) { + if (displayable && displayable.style) { + var that = this; + each$1(['fill', 'stroke'], function (fillOrStroke) { + if (displayable.style[fillOrStroke] + && (displayable.style[fillOrStroke].type === 'linear' + || displayable.style[fillOrStroke].type === 'radial') + ) { + var gradient = displayable.style[fillOrStroke]; + var defs = that.getDefs(true); + + // Create dom in if not exists + var dom; + if (gradient._dom) { + // Gradient exists + dom = gradient._dom; + if (!defs.contains(gradient._dom)) { + // _dom is no longer in defs, recreate + that.addDom(dom); + } + } + else { + // New dom + dom = that.add(gradient); + } + + that.markUsed(displayable); + + var id = dom.getAttribute('id'); + svgElement.setAttribute(fillOrStroke, 'url(#' + id + ')'); + } + }); + } +}; + + +/** + * Add a new gradient tag in + * + * @param {Gradient} gradient zr gradient instance + * @return {SVGLinearGradientElement | SVGRadialGradientElement} + * created DOM + */ +GradientManager.prototype.add = function (gradient) { + var dom; + if (gradient.type === 'linear') { + dom = this.createElement('linearGradient'); + } + else if (gradient.type === 'radial') { + dom = this.createElement('radialGradient'); + } + else { + zrLog('Illegal gradient type.'); + return null; + } + + // Set dom id with gradient id, since each gradient instance + // will have no more than one dom element. + // id may exists before for those dirty elements, in which case + // id should remain the same, and other attributes should be + // updated. + gradient.id = gradient.id || this.nextId++; + dom.setAttribute('id', 'zr' + this._zrId + + '-gradient-' + gradient.id); + + this.updateDom(gradient, dom); + this.addDom(dom); + + return dom; +}; + + +/** + * Update gradient. + * + * @param {Gradient} gradient zr gradient instance + */ +GradientManager.prototype.update = function (gradient) { + var that = this; + Definable.prototype.update.call(this, gradient, function () { + var type = gradient.type; + var tagName = gradient._dom.tagName; + if (type === 'linear' && tagName === 'linearGradient' + || type === 'radial' && tagName === 'radialGradient' + ) { + // Gradient type is not changed, update gradient + that.updateDom(gradient, gradient._dom); + } + else { + // Remove and re-create if type is changed + that.removeDom(gradient); + that.add(gradient); + } + }); +}; + + +/** + * Update gradient dom + * + * @param {Gradient} gradient zr gradient instance + * @param {SVGLinearGradientElement | SVGRadialGradientElement} dom + * DOM to update + */ +GradientManager.prototype.updateDom = function (gradient, dom) { + if (gradient.type === 'linear') { + dom.setAttribute('x1', gradient.x); + dom.setAttribute('y1', gradient.y); + dom.setAttribute('x2', gradient.x2); + dom.setAttribute('y2', gradient.y2); + } + else if (gradient.type === 'radial') { + dom.setAttribute('cx', gradient.x); + dom.setAttribute('cy', gradient.y); + dom.setAttribute('r', gradient.r); + } + else { + zrLog('Illegal gradient type.'); + return; + } + + if (gradient.global) { + // x1, x2, y1, y2 in range of 0 to canvas width or height + dom.setAttribute('gradientUnits', 'userSpaceOnUse'); + } + else { + // x1, x2, y1, y2 in range of 0 to 1 + dom.setAttribute('gradientUnits', 'objectBoundingBox'); + } + + // Remove color stops if exists + dom.innerHTML = ''; + + // Add color stops + var colors = gradient.colorStops; + for (var i = 0, len = colors.length; i < len; ++i) { + var stop = this.createElement('stop'); + stop.setAttribute('offset', colors[i].offset * 100 + '%'); + + var color = colors[i].color; + if (color.indexOf('rgba' > -1)) { + // Fix Safari bug that stop-color not recognizing alpha #9014 + var opacity = parse(color)[3]; + var hex = toHex(color); + + // stop-color cannot be color, since: + // The opacity value used for the gradient calculation is the + // *product* of the value of stop-opacity and the opacity of the + // value of stop-color. + // See https://www.w3.org/TR/SVG2/pservers.html#StopOpacityProperty + stop.setAttribute('stop-color', '#' + hex); + stop.setAttribute('stop-opacity', opacity); + } + else { + stop.setAttribute('stop-color', colors[i].color); + } + + dom.appendChild(stop); + } + + // Store dom element in gradient, to avoid creating multiple + // dom instances for the same gradient element + gradient._dom = dom; +}; + +/** + * Mark a single gradient to be used + * + * @param {Displayable} displayable displayable element + */ +GradientManager.prototype.markUsed = function (displayable) { + if (displayable.style) { + var gradient = displayable.style.fill; + if (gradient && gradient._dom) { + Definable.prototype.markUsed.call(this, gradient._dom); + } + + gradient = displayable.style.stroke; + if (gradient && gradient._dom) { + Definable.prototype.markUsed.call(this, gradient._dom); + } + } +}; + +/** + * @file Manages SVG clipPath elements. + * @author Zhang Wenli + */ + +/** + * Manages SVG clipPath elements. + * + * @class + * @extends Definable + * @param {number} zrId zrender instance id + * @param {SVGElement} svgRoot root of SVG document + */ +function ClippathManager(zrId, svgRoot) { + Definable.call(this, zrId, svgRoot, 'clipPath', '__clippath_in_use__'); +} + + +inherits(ClippathManager, Definable); + + +/** + * Update clipPath. + * + * @param {Displayable} displayable displayable element + */ +ClippathManager.prototype.update = function (displayable) { + var svgEl = this.getSvgElement(displayable); + if (svgEl) { + this.updateDom(svgEl, displayable.__clipPaths, false); + } + + var textEl = this.getTextSvgElement(displayable); + if (textEl) { + // Make another clipPath for text, since it's transform + // matrix is not the same with svgElement + this.updateDom(textEl, displayable.__clipPaths, true); + } + + this.markUsed(displayable); +}; + + +/** + * Create an SVGElement of displayable and create a of its + * clipPath + * + * @param {Displayable} parentEl parent element + * @param {ClipPath[]} clipPaths clipPaths of parent element + * @param {boolean} isText if parent element is Text + */ +ClippathManager.prototype.updateDom = function ( + parentEl, + clipPaths, + isText +) { + if (clipPaths && clipPaths.length > 0) { + // Has clipPath, create with the first clipPath + var defs = this.getDefs(true); + var clipPath = clipPaths[0]; + var clipPathEl; + var id; + + var dom = isText ? '_textDom' : '_dom'; + + if (clipPath[dom]) { + // Use a dom that is already in + id = clipPath[dom].getAttribute('id'); + clipPathEl = clipPath[dom]; + + // Use a dom that is already in + if (!defs.contains(clipPathEl)) { + // This happens when set old clipPath that has + // been previously removed + defs.appendChild(clipPathEl); + } + } + else { + // New + id = 'zr' + this._zrId + '-clip-' + this.nextId; + ++this.nextId; + clipPathEl = this.createElement('clipPath'); + clipPathEl.setAttribute('id', id); + defs.appendChild(clipPathEl); + + clipPath[dom] = clipPathEl; + } + + // Build path and add to + var svgProxy = this.getSvgProxy(clipPath); + if (clipPath.transform + && clipPath.parent.invTransform + && !isText + ) { + /** + * If a clipPath has a parent with transform, the transform + * of parent should not be considered when setting transform + * of clipPath. So we need to transform back from parent's + * transform, which is done by multiplying parent's inverse + * transform. + */ + // Store old transform + var transform = Array.prototype.slice.call( + clipPath.transform + ); + + // Transform back from parent, and brush path + mul$1( + clipPath.transform, + clipPath.parent.invTransform, + clipPath.transform + ); + svgProxy.brush(clipPath); + + // Set back transform of clipPath + clipPath.transform = transform; + } + else { + svgProxy.brush(clipPath); + } + + var pathEl = this.getSvgElement(clipPath); + + clipPathEl.innerHTML = ''; + /** + * Use `cloneNode()` here to appendChild to multiple parents, + * which may happend when Text and other shapes are using the same + * clipPath. Since Text will create an extra clipPath DOM due to + * different transform rules. + */ + clipPathEl.appendChild(pathEl.cloneNode()); + + parentEl.setAttribute('clip-path', 'url(#' + id + ')'); + + if (clipPaths.length > 1) { + // Make the other clipPaths recursively + this.updateDom(clipPathEl, clipPaths.slice(1), isText); + } + } + else { + // No clipPath + if (parentEl) { + parentEl.setAttribute('clip-path', 'none'); + } + } +}; + +/** + * Mark a single clipPath to be used + * + * @param {Displayable} displayable displayable element + */ +ClippathManager.prototype.markUsed = function (displayable) { + var that = this; + // displayable.__clipPaths can only be `null`/`undefined` or an non-empty array. + if (displayable.__clipPaths) { + each$1(displayable.__clipPaths, function (clipPath) { + if (clipPath._dom) { + Definable.prototype.markUsed.call(that, clipPath._dom); + } + if (clipPath._textDom) { + Definable.prototype.markUsed.call(that, clipPath._textDom); + } + }); + } +}; + +/** + * @file Manages SVG shadow elements. + * @author Zhang Wenli + */ + +/** + * Manages SVG shadow elements. + * + * @class + * @extends Definable + * @param {number} zrId zrender instance id + * @param {SVGElement} svgRoot root of SVG document + */ +function ShadowManager(zrId, svgRoot) { + Definable.call( + this, + zrId, + svgRoot, + ['filter'], + '__filter_in_use__', + '_shadowDom' + ); +} + + +inherits(ShadowManager, Definable); + + +/** + * Create new shadow DOM for fill or stroke if not exist, + * but will not update shadow if exists. + * + * @param {SvgElement} svgElement SVG element to paint + * @param {Displayable} displayable zrender displayable element + */ +ShadowManager.prototype.addWithoutUpdate = function ( + svgElement, + displayable +) { + if (displayable && hasShadow(displayable.style)) { + var style = displayable.style; + + // Create dom in if not exists + var dom; + if (style._shadowDom) { + // Gradient exists + dom = style._shadowDom; + + var defs = this.getDefs(true); + if (!defs.contains(style._shadowDom)) { + // _shadowDom is no longer in defs, recreate + this.addDom(dom); + } + } + else { + // New dom + dom = this.add(displayable); + } + + this.markUsed(displayable); + + var id = dom.getAttribute('id'); + svgElement.style.filter = 'url(#' + id + ')'; + } +}; + + +/** + * Add a new shadow tag in + * + * @param {Displayable} displayable zrender displayable element + * @return {SVGFilterElement} created DOM + */ +ShadowManager.prototype.add = function (displayable) { + var dom = this.createElement('filter'); + var style = displayable.style; + + // Set dom id with shadow id, since each shadow instance + // will have no more than one dom element. + // id may exists before for those dirty elements, in which case + // id should remain the same, and other attributes should be + // updated. + style._shadowDomId = style._shadowDomId || this.nextId++; + dom.setAttribute('id', 'zr' + this._zrId + + '-shadow-' + style._shadowDomId); + + this.updateDom(displayable, dom); + this.addDom(dom); + + return dom; +}; + + +/** + * Update shadow. + * + * @param {Displayable} displayable zrender displayable element + */ +ShadowManager.prototype.update = function (svgElement, displayable) { + var style = displayable.style; + if (hasShadow(style)) { + var that = this; + Definable.prototype.update.call(this, displayable, function (style) { + that.updateDom(displayable, style._shadowDom); + }); + } + else { + // Remove shadow + this.remove(svgElement, style); + } +}; + + +/** + * Remove DOM and clear parent filter + */ +ShadowManager.prototype.remove = function (svgElement, style) { + if (style._shadowDomId != null) { + this.removeDom(style); + svgElement.style.filter = ''; + } +}; + + +/** + * Update shadow dom + * + * @param {Displayable} displayable zrender displayable element + * @param {SVGFilterElement} dom DOM to update + */ +ShadowManager.prototype.updateDom = function (displayable, dom) { + var domChild = dom.getElementsByTagName('feDropShadow'); + if (domChild.length === 0) { + domChild = this.createElement('feDropShadow'); + } + else { + domChild = domChild[0]; + } + + var style = displayable.style; + var scaleX = displayable.scale ? (displayable.scale[0] || 1) : 1; + var scaleY = displayable.scale ? (displayable.scale[1] || 1) : 1; + + // TODO: textBoxShadowBlur is not supported yet + var offsetX, offsetY, blur, color; + if (style.shadowBlur || style.shadowOffsetX || style.shadowOffsetY) { + offsetX = style.shadowOffsetX || 0; + offsetY = style.shadowOffsetY || 0; + blur = style.shadowBlur; + color = style.shadowColor; + } + else if (style.textShadowBlur) { + offsetX = style.textShadowOffsetX || 0; + offsetY = style.textShadowOffsetY || 0; + blur = style.textShadowBlur; + color = style.textShadowColor; + } + else { + // Remove shadow + this.removeDom(dom, style); + return; + } + + domChild.setAttribute('dx', offsetX / scaleX); + domChild.setAttribute('dy', offsetY / scaleY); + domChild.setAttribute('flood-color', color); + + // Divide by two here so that it looks the same as in canvas + // See: https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-shadowblur + var stdDx = blur / 2 / scaleX; + var stdDy = blur / 2 / scaleY; + var stdDeviation = stdDx + ' ' + stdDy; + domChild.setAttribute('stdDeviation', stdDeviation); + + // Fix filter clipping problem + dom.setAttribute('x', '-100%'); + dom.setAttribute('y', '-100%'); + dom.setAttribute('width', Math.ceil(blur / 2 * 200) + '%'); + dom.setAttribute('height', Math.ceil(blur / 2 * 200) + '%'); + + dom.appendChild(domChild); + + // Store dom element in shadow, to avoid creating multiple + // dom instances for the same shadow element + style._shadowDom = dom; +}; + +/** + * Mark a single shadow to be used + * + * @param {Displayable} displayable displayable element + */ +ShadowManager.prototype.markUsed = function (displayable) { + var style = displayable.style; + if (style && style._shadowDom) { + Definable.prototype.markUsed.call(this, style._shadowDom); + } +}; + +function hasShadow(style) { + // TODO: textBoxShadowBlur is not supported yet + return style + && (style.shadowBlur || style.shadowOffsetX || style.shadowOffsetY + || style.textShadowBlur || style.textShadowOffsetX + || style.textShadowOffsetY); +} + +/** + * SVG Painter + * @module zrender/svg/Painter + */ + +function parseInt10$2(val) { + return parseInt(val, 10); +} + +function getSvgProxy(el) { + if (el instanceof Path) { + return svgPath; + } + else if (el instanceof ZImage) { + return svgImage; + } + else if (el instanceof Text) { + return svgText; + } + else { + return svgPath; + } +} + +function checkParentAvailable(parent, child) { + return child && parent && child.parentNode !== parent; +} + +function insertAfter(parent, child, prevSibling) { + if (checkParentAvailable(parent, child) && prevSibling) { + var nextSibling = prevSibling.nextSibling; + nextSibling ? parent.insertBefore(child, nextSibling) + : parent.appendChild(child); + } +} + +function prepend(parent, child) { + if (checkParentAvailable(parent, child)) { + var firstChild = parent.firstChild; + firstChild ? parent.insertBefore(child, firstChild) + : parent.appendChild(child); + } +} + +function remove$1(parent, child) { + if (child && parent && child.parentNode === parent) { + parent.removeChild(child); + } +} + +function getTextSvgElement(displayable) { + return displayable.__textSvgEl; +} + +function getSvgElement(displayable) { + return displayable.__svgEl; +} + +/** + * @alias module:zrender/svg/Painter + * @constructor + * @param {HTMLElement} root 绘图容器 + * @param {module:zrender/Storage} storage + * @param {Object} opts + */ +var SVGPainter = function (root, storage, opts, zrId) { + + this.root = root; + this.storage = storage; + this._opts = opts = extend({}, opts || {}); + + var svgRoot = createElement('svg'); + svgRoot.setAttribute('xmlns', 'http://www.w3.org/2000/svg'); + svgRoot.setAttribute('version', '1.1'); + svgRoot.setAttribute('baseProfile', 'full'); + svgRoot.style.cssText = 'user-select:none;position:absolute;left:0;top:0;'; + + this.gradientManager = new GradientManager(zrId, svgRoot); + this.clipPathManager = new ClippathManager(zrId, svgRoot); + this.shadowManager = new ShadowManager(zrId, svgRoot); + + var viewport = document.createElement('div'); + viewport.style.cssText = 'overflow:hidden;position:relative'; + + this._svgRoot = svgRoot; + this._viewport = viewport; + + root.appendChild(viewport); + viewport.appendChild(svgRoot); + + this.resize(opts.width, opts.height); + + this._visibleList = []; +}; + +SVGPainter.prototype = { + + constructor: SVGPainter, + + getType: function () { + return 'svg'; + }, + + getViewportRoot: function () { + return this._viewport; + }, + + getViewportRootOffset: function () { + var viewportRoot = this.getViewportRoot(); + if (viewportRoot) { + return { + offsetLeft: viewportRoot.offsetLeft || 0, + offsetTop: viewportRoot.offsetTop || 0 + }; + } + }, + + refresh: function () { + + var list = this.storage.getDisplayList(true); + + this._paintList(list); + }, + + setBackgroundColor: function (backgroundColor) { + // TODO gradient + this._viewport.style.background = backgroundColor; + }, + + _paintList: function (list) { + this.gradientManager.markAllUnused(); + this.clipPathManager.markAllUnused(); + this.shadowManager.markAllUnused(); + + var svgRoot = this._svgRoot; + var visibleList = this._visibleList; + var listLen = list.length; + + var newVisibleList = []; + var i; + for (i = 0; i < listLen; i++) { + var displayable = list[i]; + var svgProxy = getSvgProxy(displayable); + var svgElement = getSvgElement(displayable) + || getTextSvgElement(displayable); + if (!displayable.invisible) { + if (displayable.__dirty) { + svgProxy && svgProxy.brush(displayable); + + // Update clipPath + this.clipPathManager.update(displayable); + + // Update gradient and shadow + if (displayable.style) { + this.gradientManager + .update(displayable.style.fill); + this.gradientManager + .update(displayable.style.stroke); + + this.shadowManager + .update(svgElement, displayable); + } + + displayable.__dirty = false; + } + newVisibleList.push(displayable); + } + } + + var diff = arrayDiff$1(visibleList, newVisibleList); + var prevSvgElement; + + // First do remove, in case element moved to the head and do remove + // after add + for (i = 0; i < diff.length; i++) { + var item = diff[i]; + if (item.removed) { + for (var k = 0; k < item.count; k++) { + var displayable = visibleList[item.indices[k]]; + var svgElement = getSvgElement(displayable); + var textSvgElement = getTextSvgElement(displayable); + remove$1(svgRoot, svgElement); + remove$1(svgRoot, textSvgElement); + } + } + } + for (i = 0; i < diff.length; i++) { + var item = diff[i]; + if (item.added) { + for (var k = 0; k < item.count; k++) { + var displayable = newVisibleList[item.indices[k]]; + var svgElement = getSvgElement(displayable); + var textSvgElement = getTextSvgElement(displayable); + prevSvgElement + ? insertAfter(svgRoot, svgElement, prevSvgElement) + : prepend(svgRoot, svgElement); + if (svgElement) { + insertAfter(svgRoot, textSvgElement, svgElement); + } + else if (prevSvgElement) { + insertAfter( + svgRoot, textSvgElement, prevSvgElement + ); + } + else { + prepend(svgRoot, textSvgElement); + } + // Insert text + insertAfter(svgRoot, textSvgElement, svgElement); + prevSvgElement = textSvgElement || svgElement + || prevSvgElement; + + this.gradientManager + .addWithoutUpdate(svgElement, displayable); + this.shadowManager + .addWithoutUpdate(prevSvgElement, displayable); + this.clipPathManager.markUsed(displayable); + } + } + else if (!item.removed) { + for (var k = 0; k < item.count; k++) { + var displayable = newVisibleList[item.indices[k]]; + prevSvgElement = + svgElement = + getTextSvgElement(displayable) + || getSvgElement(displayable) + || prevSvgElement; + + this.gradientManager.markUsed(displayable); + this.gradientManager + .addWithoutUpdate(svgElement, displayable); + + this.shadowManager.markUsed(displayable); + this.shadowManager + .addWithoutUpdate(svgElement, displayable); + + this.clipPathManager.markUsed(displayable); + } + } + } + + this.gradientManager.removeUnused(); + this.clipPathManager.removeUnused(); + this.shadowManager.removeUnused(); + + this._visibleList = newVisibleList; + }, + + _getDefs: function (isForceCreating) { + var svgRoot = this._svgRoot; + var defs = this._svgRoot.getElementsByTagName('defs'); + if (defs.length === 0) { + // Not exist + if (isForceCreating) { + var defs = svgRoot.insertBefore( + createElement('defs'), // Create new tag + svgRoot.firstChild // Insert in the front of svg + ); + if (!defs.contains) { + // IE doesn't support contains method + defs.contains = function (el) { + var children = defs.children; + if (!children) { + return false; + } + for (var i = children.length - 1; i >= 0; --i) { + if (children[i] === el) { + return true; + } + } + return false; + }; + } + return defs; + } + else { + return null; + } + } + else { + return defs[0]; + } + }, + + resize: function (width, height) { + var viewport = this._viewport; + // FIXME Why ? + viewport.style.display = 'none'; + + // Save input w/h + var opts = this._opts; + width != null && (opts.width = width); + height != null && (opts.height = height); + + width = this._getSize(0); + height = this._getSize(1); + + viewport.style.display = ''; + + if (this._width !== width || this._height !== height) { + this._width = width; + this._height = height; + + var viewportStyle = viewport.style; + viewportStyle.width = width + 'px'; + viewportStyle.height = height + 'px'; + + var svgRoot = this._svgRoot; + // Set width by 'svgRoot.width = width' is invalid + svgRoot.setAttribute('width', width); + svgRoot.setAttribute('height', height); + } + }, + + /** + * 获取绘图区域宽度 + */ + getWidth: function () { + return this._width; + }, + + /** + * 获取绘图区域高度 + */ + getHeight: function () { + return this._height; + }, + + _getSize: function (whIdx) { + var opts = this._opts; + var wh = ['width', 'height'][whIdx]; + var cwh = ['clientWidth', 'clientHeight'][whIdx]; + var plt = ['paddingLeft', 'paddingTop'][whIdx]; + var prb = ['paddingRight', 'paddingBottom'][whIdx]; + + if (opts[wh] != null && opts[wh] !== 'auto') { + return parseFloat(opts[wh]); + } + + var root = this.root; + // IE8 does not support getComputedStyle, but it use VML. + var stl = document.defaultView.getComputedStyle(root); + + return ( + (root[cwh] || parseInt10$2(stl[wh]) || parseInt10$2(root.style[wh])) + - (parseInt10$2(stl[plt]) || 0) + - (parseInt10$2(stl[prb]) || 0) + ) | 0; + }, + + dispose: function () { + this.root.innerHTML = ''; + + this._svgRoot = + this._viewport = + this.storage = + null; + }, + + clear: function () { + if (this._viewport) { + this.root.removeChild(this._viewport); + } + }, + + pathToDataUrl: function () { + this.refresh(); + var html = this._svgRoot.outerHTML; + return 'data:image/svg+xml;charset=UTF-8,' + html; + } +}; + +// Not supported methods +function createMethodNotSupport$1(method) { + return function () { + zrLog('In SVG mode painter not support method "' + method + '"'); + }; +} + +// Unsuppoted methods +each$1([ + 'getLayer', 'insertLayer', 'eachLayer', 'eachBuiltinLayer', + 'eachOtherLayer', 'getLayers', 'modLayer', 'delLayer', 'clearLayer', + 'toDataURL', 'pathToImage' +], function (name) { + SVGPainter.prototype[name] = createMethodNotSupport$1(name); +}); + +registerPainter('svg', SVGPainter); + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +// ---------------------------------------------- +// All of the modules that are allowed to be +// imported are listed below. +// +// Users MUST NOT import other modules that are +// not included in this list. +// ---------------------------------------------- + + + +// ---------------- +// Charts (series) +// ---------------- + + + +// All of the series types, for example: +// chart.setOption({ +// series: [{ +// type: 'line' // or 'bar', 'pie', ... +// }] +// }); + +// ------------------- +// Coordinate systems +// ------------------- + + + +// All of the axis modules have been included in the +// coordinate system module below, do not need to +// make extra import. + +// `cartesian` coordinate system. For some historical +// reasons, it is named as grid, for example: +// chart.setOption({ +// grid: {...}, +// xAxis: {...}, +// yAxis: {...}, +// series: [{...}] +// }); +// `polar` coordinate system, for example: +// chart.setOption({ +// polar: {...}, +// radiusAxis: {...}, +// angleAxis: {...}, +// series: [{ +// coordinateSystem: 'polar' +// }] +// }); +// `geo` coordinate system, for example: +// chart.setOption({ +// geo: {...}, +// series: [{ +// coordinateSystem: 'geo' +// }] +// }); +// `singleAxis` coordinate system (notice, it is a coordinate system +// with only one axis, work for chart like theme river), for example: +// chart.setOption({ +// singleAxis: {...} +// series: [{type: 'themeRiver', ...}] +// }); +// `parallel` coordinate system, only work for parallel series, for example: +// chart.setOption({ +// parallel: {...}, +// parallelAxis: [{...}, ...], +// series: [{ +// type: 'parallel' +// }] +// }); +// `calendar` coordinate system. for example, +// chart.setOptionp({ +// calendar: {...}, +// series: [{ +// coordinateSystem: 'calendar' +// }] +// ); +// ------------------ +// Other components +// ------------------ + + + +// `grapchic` component, for example: +// chart.setOption({ +// graphic: {...} +// }); +// `toolbox` component, for example: +// chart.setOption({ +// toolbox: {...} +// }); +// `tooltip` component, for example: +// chart.setOption({ +// tooltip: {...} +// }); +// `axisPointer` component, for example: +// chart.setOption({ +// tooltip: {axisPointer: {...}, ...} +// }); +// Or +// chart.setOption({ +// axisPointer: {...} +// }); +// `brush` component, for example: +// chart.setOption({ +// brush: {...} +// }); +// Or +// chart.setOption({ +// tooltip: {feature: {brush: {...}} +// }) +// `title` component, for example: +// chart.setOption({ +// title: {...} +// }); +// `timeline` component, for example: +// chart.setOption({ +// timeline: {...} +// }); +// `markPoint` component, for example: +// chart.setOption({ +// series: [{markPoint: {...}}] +// }); +// `markLine` component, for example: +// chart.setOption({ +// series: [{markLine: {...}}] +// }); +// `markArea` component, for example: +// chart.setOption({ +// series: [{markArea: {...}}] +// }); +// `legend` component scrollable, for example: +// chart.setOption({ +// legend: {type: 'scroll'} +// }); +// `legend` component not scrollable. for example: +// chart.setOption({ +// legend: {...} +// }); +// `dataZoom` component including both `dataZoomInside` and `dataZoomSlider`. +// `dataZoom` component providing drag, pinch, wheel behaviors +// inside coodinate system, for example: +// chart.setOption({ +// dataZoom: {type: 'inside'} +// }); +// `dataZoom` component providing a slider bar, for example: +// chart.setOption({ +// dataZoom: {type: 'slider'} +// }); +// `dataZoom` component including both `visualMapContinuous` and `visualMapPiecewise`. +// `visualMap` component providing continuous bar, for example: +// chart.setOption({ +// visualMap: {type: 'continuous'} +// }); +// `visualMap` component providing pieces bar, for example: +// chart.setOption({ +// visualMap: {type: 'piecewise'} +// }); +// ----------------- +// Render engines +// ----------------- + + + +// Provide IE 6,7,8 compatibility. +// Render via SVG rather than canvas. + +exports.version = version; +exports.dependencies = dependencies; +exports.PRIORITY = PRIORITY; +exports.init = init; +exports.connect = connect; +exports.disConnect = disConnect; +exports.disconnect = disconnect; +exports.dispose = dispose; +exports.getInstanceByDom = getInstanceByDom; +exports.getInstanceById = getInstanceById; +exports.registerTheme = registerTheme; +exports.registerPreprocessor = registerPreprocessor; +exports.registerProcessor = registerProcessor; +exports.registerPostUpdate = registerPostUpdate; +exports.registerAction = registerAction; +exports.registerCoordinateSystem = registerCoordinateSystem; +exports.getCoordinateSystemDimensions = getCoordinateSystemDimensions; +exports.registerLayout = registerLayout; +exports.registerVisual = registerVisual; +exports.registerLoading = registerLoading; +exports.extendComponentModel = extendComponentModel; +exports.extendComponentView = extendComponentView; +exports.extendSeriesModel = extendSeriesModel; +exports.extendChartView = extendChartView; +exports.setCanvasCreator = setCanvasCreator; +exports.registerMap = registerMap; +exports.getMap = getMap; +exports.dataTool = dataTool; +exports.zrender = zrender; +exports.number = number; +exports.format = format; +exports.throttle = throttle; +exports.helper = helper; +exports.matrix = matrix; +exports.vector = vector; +exports.color = color; +exports.parseGeoJSON = parseGeoJson$1; +exports.parseGeoJson = parseGeoJson; +exports.util = ecUtil; +exports.graphic = graphic$1; +exports.List = List; +exports.Model = Model; +exports.Axis = Axis; +exports.env = env$1; + +}))); +//# sourceMappingURL=echarts.js.map diff --git a/assets/vendors/js/charts/echarts/echarts.min.js b/assets/vendors/js/charts/echarts/echarts.min.js new file mode 100644 index 0000000..a2d3b2a --- /dev/null +++ b/assets/vendors/js/charts/echarts/echarts.min.js @@ -0,0 +1,21 @@ +/* Version : 4.3.0 +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + + +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e(t.echarts={})}(this,function(t){"use strict";var e=2311,n=function(){return e++},v="object"==typeof wx&&"function"==typeof wx.getSystemInfoSync?{browser:{},os:{},node:!1,wxa:!0,canvasSupported:!0,svgSupported:!1,touchEventsSupported:!0,domSupported:!1}:"undefined"==typeof document&&"undefined"!=typeof self?{browser:{},os:{},node:!1,worker:!0,canvasSupported:!0,domSupported:!1}:"undefined"==typeof navigator?{browser:{},os:{},node:!0,worker:!1,canvasSupported:!0,svgSupported:!0,domSupported:!1}:function(t){var e={},i=t.match(/Firefox\/([\d.]+)/),n=t.match(/MSIE\s([\d.]+)/)||t.match(/Trident\/.+?rv:(([\d.]+))/),a=t.match(/Edge\/([\d.]+)/),o=/micromessenger/i.test(t);i&&(e.firefox=!0,e.version=i[1]);n&&(e.ie=!0,e.version=n[1]);a&&(e.edge=!0,e.version=a[1]);o&&(e.weChat=!0);return{browser:e,os:{},node:!1,canvasSupported:!!document.createElement("canvas").getContext,svgSupported:"undefined"!=typeof SVGRect,touchEventsSupported:"ontouchstart"in window&&!e.ie&&!e.edge,pointerEventsSupported:"onpointerdown"in window&&(e.edge||e.ie&&11<=e.version),domSupported:"undefined"!=typeof document}}(navigator.userAgent);var s={"[object Function]":1,"[object RegExp]":1,"[object Date]":1,"[object Error]":1,"[object CanvasGradient]":1,"[object CanvasPattern]":1,"[object Image]":1,"[object Canvas]":1},l={"[object Int8Array]":1,"[object Uint8Array]":1,"[object Uint8ClampedArray]":1,"[object Int16Array]":1,"[object Uint16Array]":1,"[object Int32Array]":1,"[object Uint32Array]":1,"[object Float32Array]":1,"[object Float64Array]":1},u=Object.prototype.toString,i=Array.prototype,r=i.forEach,h=i.filter,a=i.slice,c=i.map,d=i.reduce,o={};function f(t,e){"createCanvas"===t&&(y=null),o[t]=e}function D(t){if(null==t||"object"!=typeof t)return t;var e=t,i=u.call(t);if("[object Array]"===i){if(!$(t)){e=[];for(var n=0,a=t.length;n>1)%2;s.cssText=["position:absolute","visibility: hidden","padding: 0","margin: 0","border-width: 0","width:0","height:0",n[l]+":0",a[u]+":0",n[1-l]+":auto",a[1-u]+":auto",""].join("!important;"),t.appendChild(r),i.push(r)}return i}(t,r),r);if(s)return s(Rt,n,a),i.zrX=Rt[0],void(i.zrY=Rt[1])}i.zrX=i.zrY=0}function Vt(t,e,i){if(null!=(e=e||window.event).zrX)return e;var n=e.type;if(n&&0<=n.indexOf("touch")){var a="touchend"!==n?e.targetTouches[0]:e.changedTouches[0];a&&Et(t,a,e,i)}else Et(t,e,e,i),e.zrDelta=e.wheelDelta?e.wheelDelta/120:-(e.detail||0)/3;var o=e.button;return null==e.which&&void 0!==o&&Ot.test(e.type)&&(e.which=1&o?1:2&o?3:4&o?2:0),e}function Gt(t,e,i){Nt?t.addEventListener(e,i):t.attachEvent("on"+e,i)}var Ft=Nt?function(t){t.preventDefault(),t.stopPropagation(),t.cancelBubble=!0}:function(t){t.returnValue=!1,t.cancelBubble=!0};function Wt(t){return 2===t.which||3===t.which}function Ht(){this._track=[]}function Zt(t){var e=t[1][0]-t[0][0],i=t[1][1]-t[0][1];return Math.sqrt(e*e+i*i)}Ht.prototype={constructor:Ht,recognize:function(t,e,i){return this._doTrack(t,e,i),this._recognize(t)},clear:function(){return this._track.length=0,this},_doTrack:function(t,e,i){var n=t.touches;if(n){for(var a={points:[],touches:[],target:e,event:t},o=0,r=n.length;o=this._maxSize&&0>4|(3840&n)>>8,240&n|(240&n)>>4,15&n|(15&n)<<4,1),Oe(t,e),e):void Le(e,0,0,0,1):7===a.length?0<=(n=parseInt(a.substr(1),16))&&n<=16777215?(Le(e,(16711680&n)>>16,(65280&n)>>8,255&n,1),Oe(t,e),e):void Le(e,0,0,0,1):void 0;var o=a.indexOf("("),r=a.indexOf(")");if(-1!==o&&r+1===a.length){var s=a.substr(0,o),l=a.substr(o+1,r-(o+1)).split(","),u=1;switch(s){case"rgba":if(4!==l.length)return void Le(e,0,0,0,1);u=Te(l.pop());case"rgb":return 3!==l.length?void Le(e,0,0,0,1):(Le(e,Ae(l[0]),Ae(l[1]),Ae(l[2]),u),Oe(t,e),e);case"hsla":return 4!==l.length?void Le(e,0,0,0,1):(l[3]=Te(l[3]),Re(l,e),Oe(t,e),e);case"hsl":return 3!==l.length?void Le(e,0,0,0,1):(Re(l,e),Oe(t,e),e);default:return}}Le(e,0,0,0,1)}}function Re(t,e){var i=(parseFloat(t[0])%360+360)%360/360,n=Te(t[1]),a=Te(t[2]),o=a<=.5?a*(n+1):a+n-a*n,r=2*a-o;return Le(e=e||[],Me(255*De(r,o,i+1/3)),Me(255*De(r,o,i)),Me(255*De(r,o,i-1/3)),1),4===t.length&&(e[3]=t[3]),e}function Ee(t,e){var i=ze(t);if(i){for(var n=0;n<3;n++)i[n]=e<0?i[n]*(1-e)|0:(255-i[n])*e+i[n]|0,255e);i++);i=Math.min(i-1,u-2)}C=e;var n=g[(D=i)+1]-g[i];if(0!=n)if(S=(e-g[i])/n,l)if(I=m[i],M=m[0===i?i:i-1],A=m[u-2=i.x&&t<=i.x+i.width&&e>=i.y&&e<=i.y+i.height},clone:function(){return new bi(this.x,this.y,this.width,this.height)},copy:function(t){this.x=t.x,this.y=t.y,this.width=t.width,this.height=t.height},plain:function(){return{x:this.x,y:this.y,width:this.width,height:this.height}}},bi.create=function(t){return new bi(t.x,t.y,t.width,t.height)};var Si=function(t){for(var e in t=t||{},pi.call(this,t),t)t.hasOwnProperty(e)&&(this[e]=t[e]);this._children=[],this.__storage=null,this.__dirty=!0};Si.prototype={constructor:Si,isGroup:!0,type:"group",silent:!1,children:function(){return this._children.slice()},childAt:function(t){return this._children[t]},childOfName:function(t){for(var e=this._children,i=0;i>>1])<0?l=o:s=1+o;var u=n-s;switch(u){case 3:t[s+3]=t[s+2];case 2:t[s+2]=t[s+1];case 1:t[s+1]=t[s];break;default:for(;0>>1);0>>1);o(t,e[i+h])<0?l=h:r=h+1}return l}function Li(p,g){var r,s,m=Ii,l=0,v=[];function e(t){var e=r[t],i=s[t],n=r[t+1],a=s[t+1];s[t]=i+a,t===l-3&&(r[t+1]=r[t+2],s[t+1]=s[t+2]),l--;var o=Ci(p[n],p,e,i,0,g);e+=o,0!==(i-=o)&&0!==(a=Di(p[e+i-1],p,n,a,a-1,g))&&(i<=a?function(t,e,i,n){var a=0;for(a=0;as[t+1])break;e(t)}},this.forceMergeRuns=function(){for(;1>=1;return t+e}(a);do{if((o=Ai(t,i,n,e))=e.maxIterations){t+=e.ellipsis;break}var s=0===r?mn(t,a,e.ascCharWidth,e.cnCharWidth):0f)return{lines:[],width:0,height:0};C.textWidth=ln(C.text,w);var S=x.textWidth,M=null==S||"auto"===S;if("string"==typeof S&&"%"===S.charAt(S.length-1))C.percentWidth=S,u.push(C),S=0;else{if(M){S=C.textWidth;var I=x.textBackgroundColor,A=I&&I.image;A&&tn(A=$i(A))&&(S=Math.max(S,A.width*b/A.height))}var T=_?_[1]+_[3]:0;S+=T;var D=null!=d?d-v:null;null!=D&&Dn[0]){for(r=0;rt);r++);o=i[n[r]]}if(n.splice(r+1,0,t),!(i[t]=e).virtual)if(o){var l=o.dom;l.nextSibling?s.insertBefore(e.dom,l.nextSibling):s.appendChild(e.dom)}else s.firstChild?s.insertBefore(e.dom,s.firstChild):s.appendChild(e.dom)}else ci("Layer of zlevel "+t+" is not valid")},eachLayer:function(t,e){var i,n,a=this._zlevelList;for(n=0;n=o.length&&o.push({option:t})}}),o}function Aa(t){var r=Q();va(t,function(t,e){var i=t.exist;i&&r.set(i.id,t)}),va(t,function(t,e){var i=t.option;Y(!i||null==i.id||!r.get(i.id)||r.get(i.id)===t,"id duplicates: "+(i&&i.id)),i&&null!=i.id&&r.set(i.id,t),t.keyInfo||(t.keyInfo={})}),va(t,function(t,e){var i=t.exist,n=t.option,a=t.keyInfo;if(ya(n)){if(a.name=null!=n.name?n.name+"":i?i.name:_a+e,i)a.id=i.id;else if(null!=n.id)a.id=n.id+"";else for(var o=0;a.id="\0"+a.name+"\0"+o++,r.get(a.id););r.set(a.id,t)}})}function Ta(t){var e=t.name;return!(!e||!e.indexOf(_a))}function Da(t){return ya(t)&&t.id&&0===(t.id+"").indexOf("\0_ec_\0")}function Ca(e,t){return null!=t.dataIndexInside?t.dataIndexInside:null!=t.dataIndex?O(t.dataIndex)?k(t.dataIndex,function(t){return e.indexOfRawIndex(t)}):e.indexOfRawIndex(t.dataIndex):null!=t.name?O(t.name)?k(t.name,function(t){return e.indexOfName(t)}):e.indexOfName(t.name):void 0}function La(){var e="__\0ec_inner_"+ka+++"_"+Math.random().toFixed(5);return function(t){return t[e]||(t[e]={})}}var ka=0;function Pa(s,l,u){if(R(l)){var t={};t[l+"Index"]=0,l=t}var e=u&&u.defaultMainType;!e||Na(l,e+"Index")||Na(l,e+"Id")||Na(l,e+"Name")||(l[e+"Index"]=0);var h={};return va(l,function(t,e){t=l[e];if("dataIndex"!==e&&"dataIndexInside"!==e){var i=e.match(/^(\w+)(Index|Id|Name)$/)||[],n=i[1],a=(i[2]||"").toLowerCase();if(!(!n||!a||null==t||"index"===a&&"none"===t||u&&u.includeMainTypes&&_(u.includeMainTypes,n)<0)){var o={mainType:n};"index"===a&&"all"===t||(o[a]=t);var r=s.queryComponents(o);h[n+"Models"]=r,h[n+"Model"]=r[0]}}else h[e]=t}),h}function Na(t,e){return t&&t.hasOwnProperty(e)}function Oa(t,e,i){t.setAttribute?t.setAttribute(e,i):t[e]=i}function za(t){return"auto"===t?v.domSupported?"html":"richText":t||"html"}function Ra(t,i){var n=Q(),a=[];return L(t,function(t){var e=i(t);(n.get(e)||(a.push(e),n.set(e,[]))).push(t)}),{keys:a,buckets:n}}var Ea=".",Ba="___EC__COMPONENT__CONTAINER___";function Va(t){var e={main:"",sub:""};return t&&(t=t.split(Ea),e.main=t[0]||"",e.sub=t[1]||""),e}function Ga(t){(t.$constructor=t).extend=function(t){function e(){t.$constructor?t.$constructor.apply(this,arguments):i.apply(this,arguments)}var i=this;return C(e.prototype,t),e.extend=this.extend,e.superCall=Ha,e.superApply=Za,w(e,this),e.superClass=i,e}}var Fa=0;function Wa(t){var e=["__\0is_clz",Fa++,Math.random().toFixed(3)].join("_");t.prototype[e]=!0,t.isInstance=function(t){return!(!t||!t[e])}}function Ha(t,e){var i=U(arguments,2);return this.superClass.prototype[e].apply(t,i)}function Za(t,e,i){return this.superClass.prototype[e].apply(t,i)}function Ua(i,t){t=t||{};var a={};if(i.registerClass=function(t,e){if(e)if(function(t){Y(/^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(t),'componentType "'+t+'" illegal')}(e),(e=Va(e)).sub){if(e.sub!==Ba){(function(t){var e=a[t.main];e&&e[Ba]||((e=a[t.main]={})[Ba]=!0);return e})(e)[e.sub]=t}}else a[e.main]=t;return t},i.getClass=function(t,e,i){var n=a[t];if(n&&n[Ba]&&(n=e?n[e]:null),i&&!n)throw new Error(e?"Component "+t+"."+(e||"")+" not exists. Load it first.":t+".type should be specified.");return n},i.getClassesByMainType=function(t){t=Va(t);var i=[],e=a[t.main];return e&&e[Ba]?L(e,function(t,e){e!==Ba&&i.push(t)}):i.push(e),i},i.hasClass=function(t){return t=Va(t),!!a[t.main]},i.getAllClassMainTypes=function(){var i=[];return L(a,function(t,e){i.push(e)}),i},i.hasSubTypes=function(t){t=Va(t);var e=a[t.main];return e&&e[Ba]},i.parseClassType=Va,t.registerWhenExtend){var n=i.extend;n&&(i.extend=function(t){var e=n.call(this,t);return i.registerClass(e,t.type)})}return i}function Xa(s){for(var t=0;tthis._ux||Fo(e-this._yi)>this._uy||this._len<5;return this.addData(ko.L,t,e),this._ctx&&i&&(this._needsDash()?this._dashedLineTo(t,e):this._ctx.lineTo(t,e)),i&&(this._xi=t,this._yi=e),this},bezierCurveTo:function(t,e,i,n,a,o){return this.addData(ko.C,t,e,i,n,a,o),this._ctx&&(this._needsDash()?this._dashedBezierTo(t,e,i,n,a,o):this._ctx.bezierCurveTo(t,e,i,n,a,o)),this._xi=a,this._yi=o,this},quadraticCurveTo:function(t,e,i,n){return this.addData(ko.Q,t,e,i,n),this._ctx&&(this._needsDash()?this._dashedQuadraticTo(t,e,i,n):this._ctx.quadraticCurveTo(t,e,i,n)),this._xi=i,this._yi=n,this},arc:function(t,e,i,n,a,o){return this.addData(ko.A,t,e,i,i,n,a-n,0,o?0:1),this._ctx&&this._ctx.arc(t,e,i,n,a,o),this._xi=Bo(a)*i+t,this._yi=Vo(a)*i+e,this},arcTo:function(t,e,i,n,a){return this._ctx&&this._ctx.arcTo(t,e,i,n,a),this},rect:function(t,e,i,n){return this._ctx&&this._ctx.rect(t,e,i,n),this.addData(ko.R,t,e,i,n),this},closePath:function(){this.addData(ko.Z);var t=this._ctx,e=this._x0,i=this._y0;return t&&(this._needsDash()&&this._dashedLineTo(e,i),t.closePath()),this._xi=e,this._yi=i,this},fill:function(t){t&&t.fill(),this.toStatic()},stroke:function(t){t&&t.stroke(),this.toStatic()},setLineDash:function(t){if(t instanceof Array){this._lineDash=t;for(var e=this._dashIdx=0,i=0;ie.length&&(this._expandData(),e=this.data);for(var i=0;il||Fo(r-a)>u||c===h-1)&&(t.lineTo(o,r),n=o,a=r);break;case ko.C:t.bezierCurveTo(s[c++],s[c++],s[c++],s[c++],s[c++],s[c++]),n=s[c-2],a=s[c-1];break;case ko.Q:t.quadraticCurveTo(s[c++],s[c++],s[c++],s[c++]),n=s[c-2],a=s[c-1];break;case ko.A:var f=s[c++],p=s[c++],g=s[c++],m=s[c++],v=s[c++],y=s[c++],x=s[c++],_=s[c++],w=m=er[n=0]+t&&r<=er[1]+t?h:0}if(o){l=n;n=jo(a),a=jo(l)}else n=jo(n),a=jo(a);aMath.PI/2&&p<1.5*Math.PI&&(h=-h),c+=h)}}return c}function rr(t,e,i,n,a){for(var o=0,r=0,s=0,l=0,u=0,h=0;hMath.abs(o[1])?0=e[1])return i[1]}else{if(t>=e[0])return i[0];if(t<=e[1])return i[1]}else{if(t===e[0])return i[0];if(t===e[1])return i[1]}return(t-e[0])/a*o+i[0]}function ml(t,e){switch(t){case"center":case"middle":t="50%";break;case"left":case"top":t="0%";break;case"right":case"bottom":t="100%"}return"string"==typeof t?function(t){return t.replace(/^\s+/,"").replace(/\s+$/,"")}(t).match(/%$/)?parseFloat(t)/100*e:parseFloat(t):null==t?NaN:+t}function vl(t,e,i){return null==e&&(e=10),e=Math.min(Math.max(0,e),20),t=(+t).toFixed(e),i?t:+t}function yl(t){return t.sort(function(t,e){return t-e}),t}function xl(t){if(t=+t,isNaN(t))return 0;for(var e=1,i=0;Math.round(t*e)/e!==t;)e*=10,i++;return i}function _l(t){var e=t.toString(),i=e.indexOf("e");if(0h&&(h=u[d],c=d);++s[c],u[c]=0,++l}return s[e]/a}var Sl=9007199254740991;function Ml(t){var e=2*Math.PI;return(t%e+e)%e}function Il(t){return-pl"'])/g,Bl={"&":"&","<":"<",">":">",'"':""","'":"'"};function Vl(t){return null==t?"":(t+"").replace(El,function(t,e){return Bl[e]})}function Gl(t,e){return"{"+t+(null==e?"":e)+"}"}var Fl=["a","b","c","d","e","f","g"];function Wl(t,e,i){O(e)||(e=[e]);var n=e.length;if(!n)return"";for(var a=e[0].$vars||[],o=0;o':'':{renderMode:a,content:"{marker"+o+"|} ",style:{color:i}}:""}function Ul(t,e){return"0000".substr(0,e-(t+="").length)+t}function Xl(t,e,i){"week"!==t&&"month"!==t&&"quarter"!==t&&"half-year"!==t&&"year"!==t||(t="MM-dd\nyyyy");var n=Tl(e),a=i?"UTC":"",o=n["get"+a+"FullYear"](),r=n["get"+a+"Month"]()+1,s=n["get"+a+"Date"](),l=n["get"+a+"Hours"](),u=n["get"+a+"Minutes"](),h=n["get"+a+"Seconds"](),c=n["get"+a+"Milliseconds"]();return t=t.replace("MM",Ul(r,2)).replace("M",r).replace("yyyy",o).replace("yy",o%100).replace("dd",Ul(s,2)).replace("d",s).replace("hh",Ul(l,2)).replace("h",l).replace("mm",Ul(u,2)).replace("m",u).replace("ss",Ul(h,2)).replace("s",h).replace("SSS",Ul(c,3))}function Yl(t){return t?t.charAt(0).toUpperCase()+t.substr(1):t}var jl=fn;var ql=(Object.freeze||Object)({addCommas:Ol,toCamelCase:zl,normalizeCssArray:Rl,encodeHTML:Vl,formatTpl:Wl,formatTplSimple:Hl,getTooltipMarker:Zl,formatTime:Xl,capitalFirst:Yl,truncateText:jl,getTextBoundingRect:function(t){return un(t.text,t.font,t.textAlign,t.textVerticalAlign,t.textPadding,t.textLineHeight,t.rich,t.truncate)},getTextRect:function(t,e,i,n,a,o,r,s){return un(t,e,i,n,a,s,o,r)}}),Kl=L,$l=["left","right","top","bottom","width","height"],Jl=[["width","left","right"],["height","top","bottom"]];function Ql(h,c,d,f,p){var g=0,m=0;null==f&&(f=1/0),null==p&&(p=1/0);var v=0;c.eachChild(function(t,e){var i,n,a=t.position,o=t.getBoundingRect(),r=c.childAt(e+1),s=r&&r.getBoundingRect();if("horizontal"===h){var l=o.width+(s?-s.x+o.x:0);v=f<(i=g+l)||t.newline?(g=0,i=l,m+=v+d,o.height):Math.max(v,o.height)}else{var u=o.height+(s?-s.y+o.y:0);v=p<(n=m+u)||t.newline?(g+=v+d,m=0,n=u,o.width):Math.max(v,o.width)}t.newline||(a[0]=g,a[1]=m,"horizontal"===h?g=i+d:m=n+d)})}var tu=Ql;A(Ql,"vertical"),A(Ql,"horizontal");function eu(t,e,i){i=Rl(i||0);var n=e.width,a=e.height,o=ml(t.left,n),r=ml(t.top,a),s=ml(t.right,n),l=ml(t.bottom,a),u=ml(t.width,n),h=ml(t.height,a),c=i[2]+i[0],d=i[1]+i[3],f=t.aspect;switch(isNaN(u)&&(u=n-s-d-o),isNaN(h)&&(h=a-l-c-r),null!=f&&(isNaN(u)&&isNaN(h)&&(n/ae)return t[n];return t[i-1]}(s,i):r;if((l=l||r)&&l.length){var u=l[a];return t&&(o[t]=u),n.colorIdx=(a+1)%l.length,u}}};function mu(t){var e=t.get("coordinateSystem"),i={coordSysName:e,coordSysDims:[],axisMap:Q(),categoryAxisMap:Q()},n=vu[e];if(n)return n(t,i,i.axisMap,i.categoryAxisMap),i}var vu={cartesian2d:function(t,e,i,n){var a=t.getReferringComponents("xAxis")[0],o=t.getReferringComponents("yAxis")[0];e.coordSysDims=["x","y"],i.set("x",a),i.set("y",o),yu(a)&&(n.set("x",a),e.firstCategoryDimIndex=0),yu(o)&&(n.set("y",o),e.firstCategoryDimIndex=1)},singleAxis:function(t,e,i,n){var a=t.getReferringComponents("singleAxis")[0];e.coordSysDims=["single"],i.set("single",a),yu(a)&&(n.set("single",a),e.firstCategoryDimIndex=0)},polar:function(t,e,i,n){var a=t.getReferringComponents("polar")[0],o=a.findAxisModel("radiusAxis"),r=a.findAxisModel("angleAxis");e.coordSysDims=["radius","angle"],i.set("radius",o),i.set("angle",r),yu(o)&&(n.set("radius",o),e.firstCategoryDimIndex=0),yu(r)&&(n.set("angle",r),e.firstCategoryDimIndex=1)},geo:function(t,e,i,n){e.coordSysDims=["lng","lat"]},parallel:function(t,a,o,r){var s=t.ecModel,e=s.getComponent("parallel",t.get("parallelIndex")),l=a.coordSysDims=e.dimensions.slice();L(e.parallelAxisIndex,function(t,e){var i=s.getComponent("parallelAxis",t),n=l[e];o.set(n,i),yu(i)&&null==a.firstCategoryDimIndex&&(r.set(n,i),a.firstCategoryDimIndex=e)})}};function yu(t){return"category"===t.get("type")}var xu="original",_u="arrayRows",wu="objectRows",bu="keyedColumns",Su="unknown",Mu="typedArray",Iu="column",Au="row";function Tu(t){this.fromDataset=t.fromDataset,this.data=t.data||(t.sourceFormat===bu?{}:[]),this.sourceFormat=t.sourceFormat||Su,this.seriesLayoutBy=t.seriesLayoutBy||Iu,this.dimensionsDefine=t.dimensionsDefine,this.encodeDefine=t.encodeDefine&&Q(t.encodeDefine),this.startIndex=t.startIndex||0,this.dimensionsDetectCount=t.dimensionsDetectCount}Tu.seriesDataToSource=function(t){return new Tu({data:t,sourceFormat:V(t)?Mu:xu,fromDataset:!1})},Wa(Tu);var Du=La();function Cu(t){var e=t.option,i=e.data,n=V(i)?Mu:xu,a=!1,o=e.seriesLayoutBy,r=e.sourceHeader,s=e.dimensions,l=function(t){var e=t.option;if(!e.data)return t.ecModel.getComponent("dataset",e.datasetIndex||0)}(t);if(l){var u=l.option;i=u.source,n=Du(l).sourceFormat,a=!0,o=o||u.seriesLayoutBy,null==r&&(r=u.sourceHeader),s=s||u.dimensions}var h=function(t,e,i,n,a){if(!t)return{dimensionsDefine:Lu(a)};var o,r,s,l;if(e===_u)"auto"===n||null==n?ku(function(t){null!=t&&"-"!==t&&(R(t)?null==r&&(r=1):r=0)},i,t,10):r=n?1:0,a||1!==r||(a=[],ku(function(t,e){a[e]=null!=t?t:""},i,t)),o=a?a.length:i===Au?t.length:t[0]?t[0].length:null;else if(e===wu)a||(a=function(t){var e,i=0;for(;i":"\n",f="richText"===c,p={},g=0;function i(t){return{renderMode:c,content:Vl(Ol(t)),style:p}}var m=this.getData(),o=m.mapDimension("defaultedTooltip",!0),n=o.length,r=this.getRawValue(a),s=O(r),v=m.getItemVisual(a,"color");E(v)&&v.colorStops&&(v=(v.colorStops[0]||{}).color),v=v||"transparent";var l=(1":"",n=i+u.join(i||", ");return{renderMode:c,content:n,style:p}}(r):i(n?wh(m,a,o[0]):s?r[0]:r)).content,u=d.seriesIndex+"at"+g,y=Zl({color:v,type:"item",renderMode:c,markerId:u});p[u]=v,++g;var x=m.getName(a),_=this.name;Ta(this)||(_=""),_=_?Vl(_)+(h?": ":e):"";var w="string"==typeof y?y:y.content;return{html:h?w+_+l:_+w+(x?Vl(x)+": "+l:l),markers:p}},isAnimationEnabled:function(){if(v.node)return!1;var t=this.getShallow("animation");return t&&this.getData().count()>this.getShallow("animationThreshold")&&(t=!1),t},restoreData:function(){this.dataTask.dirty()},getColorFromPalette:function(t,e,i){var n=this.ecModel,a=gu.getColorFromPalette.call(this,t,e,i);return a=a||n.getColorFromPalette(t,e,i)},coordDimToDataDim:function(t){return this.getRawData().mapDimension(t,!0)},getProgressive:function(){return this.get("progressive")},getProgressiveThreshold:function(){return this.get("progressiveThreshold")},getAxisTooltipData:null,getTooltipPosition:null,pipeTask:null,preventIncremental:null,pipelineContext:null});function Gh(t){var e=t.name;Ta(t)||(t.name=function(t){var i=t.getRawData(),e=i.mapDimension("seriesName",!0),n=[];return L(e,function(t){var e=i.getDimensionInfo(t);e.displayName&&n.push(e.displayName)}),n.join(" ")}(t)||e)}function Fh(t){return t.model.getRawData().count()}function Wh(t){var e=t.model;return e.setData(e.getRawData().cloneShallow()),Hh}function Hh(t,e){t.end>e.outputData.count()&&e.model.getRawData().cloneShallow(e.outputData)}function Zh(e,i){L(e.CHANGABLE_METHODS,function(t){e.wrapMethod(t,A(Uh,i))})}function Uh(t){var e=Xh(t);e&&e.setOutputEnd(this.count())}function Xh(t){var e=(t.ecModel||{}).scheduler,i=e&&e.getPipeline(t.uid);if(i){var n=i.currentTask;if(n){var a=n.agentStubMap;a&&(n=a.get(t.uid))}return n}}b(Vh,Mh),b(Vh,gu);var Yh=function(){this.group=new Si,this.uid=fl("viewComponent")};Yh.prototype={constructor:Yh,init:function(t,e){},render:function(t,e,i,n){},dispose:function(){},filterForExposedEvent:null};var jh=Yh.prototype;jh.updateView=jh.updateLayout=jh.updateVisual=function(t,e,i,n){},Ga(Yh),Ua(Yh,{registerWhenExtend:!0});function qh(){var s=La();return function(t){var e=s(t),i=t.pipelineContext,n=e.large,a=e.progressiveRender,o=e.large=i.large,r=e.progressiveRender=i.progressiveRender;return!!(n^o||a^r)&&"reset"}}var Kh=La(),$h=qh();function Jh(){this.group=new Si,this.uid=fl("viewChart"),this.renderTask=Ih({plan:ic,reset:nc}),this.renderTask.context={view:this}}var Qh=Jh.prototype={type:"chart",init:function(t,e){},render:function(t,e,i,n){},highlight:function(t,e,i,n){ec(t.getData(),n,"emphasis")},downplay:function(t,e,i,n){ec(t.getData(),n,"normal")},remove:function(t,e){this.group.removeAll()},dispose:function(){},incrementalPrepareRender:null,incrementalRender:null,updateTransform:null,filterForExposedEvent:null};function tc(t,e,i){if(t&&(t.trigger(e,i),t.isGroup&&!Ns(t)))for(var n=0,a=t.childCount();nc?i+=p(g("data.partialData"),{displayCnt:c}):i+=g("data.allData");for(var r=[],s=0;si.blockIndex?i.step:null,o=n&&n.modDataCount;return{step:a,modBy:null!=o?Math.ceil(o/a):null,modDataCount:o}}},mc.getPipeline=function(t){return this._pipelineMap.get(t)},mc.updateStreamModes=function(t,e){var i=this._pipelineMap.get(t.uid),n=t.getData().count(),a=i.progressiveEnabled&&e.incrementalPrepareRender&&n>=i.threshold,o=t.get("large")&&n>=t.get("largeThreshold"),r="mod"===t.get("progressiveChunkMode")?n:null;t.pipelineContext=i.context={progressiveRender:a,modDataCount:r,large:o}},mc.restorePipelines=function(t){var n=this,a=n._pipelineMap=Q();t.eachSeries(function(t){var e=t.getProgressive(),i=t.uid;a.set(i,{id:i,head:null,tail:null,threshold:t.getProgressiveThreshold(),progressiveEnabled:e&&!(t.preventIncremental&&t.preventIncremental()),blockIndex:-1,step:Math.round(e||700),count:0}),Dc(n,t,t.dataTask)})},mc.prepareStageTasks=function(){var i=this._stageTaskMap,n=this.ecInstance.getModel(),a=this.api;L(this._allHandlers,function(t){var e=i.get(t.uid)||i.set(t.uid,[]);t.reset&&function(n,a,t,o,r){var s=t.seriesTaskMap||(t.seriesTaskMap=Q()),e=a.seriesType,i=a.getTargetSeries;a.createOnAllSeries?o.eachRawSeries(l):e?o.eachRawSeriesByType(e,l):i&&i(o,r).each(l);function l(t){var e=t.uid,i=s.get(e)||s.set(e,Ih({plan:Sc,reset:Mc,count:Tc}));i.context={model:t,ecModel:o,api:r,useClearVisual:a.isVisual&&!a.isLayout,plan:a.plan,reset:a.reset,scheduler:n},Dc(n,t,i)}var u=n._pipelineMap;s.each(function(t,e){u.get(e)||(t.dispose(),s.removeKey(e))})}(this,t,e,n,a),t.overallReset&&function(n,t,e,i,a){var o=e.overallTask=e.overallTask||Ih({reset:xc});o.context={ecModel:i,api:a,overallReset:t.overallReset,scheduler:n};var r=o.agentStubMap=o.agentStubMap||Q(),s=t.seriesType,l=t.getTargetSeries,u=!0,h=t.modifyOutputEnd;s?i.eachRawSeriesByType(s,c):l?l(i,a).each(c):(u=!1,L(i.getSeries(),c));function c(t){var e=t.uid,i=r.get(e);i||(i=r.set(e,Ih({reset:_c,onDirty:bc})),o.dirty()),i.context={model:t,overallProgress:u,modifyOutputEnd:h},i.agent=o,i.__block=u,Dc(n,t,i)}var d=n._pipelineMap;r.each(function(t,e){d.get(e)||(t.dispose(),o.dirty(),r.removeKey(e))})}(this,t,e,n,a)},this)},mc.prepareView=function(t,e,i,n){var a=t.renderTask,o=a.context;o.model=e,o.ecModel=i,o.api=n,a.__block=!t.incrementalPrepareRender,Dc(this,e,a)},mc.performDataProcessorTasks=function(t,e){vc(this,this._dataProcessorHandlers,t,e,{block:!0})},mc.performVisualTasks=function(t,e,i){vc(this,this._visualHandlers,t,e,i)},mc.performSeriesTasks=function(t){var e;t.eachSeries(function(t){e|=t.dataTask.perform()}),this.unfinished|=e},mc.plan=function(){this._pipelineMap.each(function(t){var e=t.tail;do{if(e.__block){t.blockIndex=e.__idxInPipeline;break}e=e.getUpstream()}while(e)})};var yc=mc.updatePayload=function(t,e){"remain"!==e&&(t.context.payload=e)};function xc(t){t.overallReset(t.ecModel,t.api,t.payload)}function _c(t,e){return t.overallProgress&&wc}function wc(){this.agent.dirty(),this.getDownstream().dirty()}function bc(){this.agent&&this.agent.dirty()}function Sc(t){return t.plan&&t.plan(t.model,t.ecModel,t.api,t.payload)}function Mc(t){t.useClearVisual&&t.data.clearAllVisual();var e=t.resetDefines=wa(t.reset(t.model,t.ecModel,t.api,t.payload));return 1t.get("hoverLayerThreshold")&&!v.node&&t.eachSeries(function(t){if(!t.preventUsingHoverLayer){var e=i._chartsMap[t.__viewId];e.__alive&&e.group.traverse(function(t){t.useHoverLayer=!0})}})}(n,t),fc(n._zr.dom,t)}function Dd(e,i){ad(Rd,function(t){t(e,i)})}gd.resize=function(t){this._zr.resize(t);var e=this._model;if(this._loadingFX&&this._loadingFX.resize(),e){var i=e.resetOption("media"),n=t&&t.silent;this[ud]=!0,i&&yd(this),vd.update.call(this),this[ud]=!1,bd.call(this,n),Sd.call(this,n)}},gd.showLoading=function(t,e){if(rd(t)&&(e=t,t=""),t=t||"default",this.hideLoading(),Vd[t]){var i=Vd[t](this._api,e),n=this._zr;this._loadingFX=i,n.add(i)}},gd.hideLoading=function(){this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null},gd.makeActionFromEvent=function(t){var e=C({},t);return e.type=Nd[t.type],e},gd.dispatchAction=function(t,e){rd(e)||(e={silent:!!e}),Pd[t.type]&&this._model&&(this[ud]?this._pendingActions.push(t):(wd.call(this,t,e.silent),e.flush?this._zr.flush(!0):!1!==e.flush&&v.browser.weChat&&this._throttledZrFlush(),bd.call(this,e.silent),Sd.call(this,e.silent)))},gd.appendData=function(t){var e=t.seriesIndex;this.getModel().getSeriesByIndex(e).appendData(t),this._scheduler.unfinished=!0},gd.on=dd("on"),gd.off=dd("off"),gd.one=dd("one");var Cd=["click","dblclick","mouseover","mouseout","mousemove","mousedown","mouseup","globalout","contextmenu"];function Ld(t,e){var i=t.get("z"),n=t.get("zlevel");e.group.traverse(function(t){"group"!==t.type&&(null!=i&&(t.z=i),null!=n&&(t.zlevel=n))})}function kd(){this.eventInfo}gd._initEvents=function(){ad(Cd,function(u){function t(t){var e,i=this.getModel(),n=t.target;if("globalout"===u)e={};else if(n&&null!=n.dataIndex){var a=n.dataModel||i.getSeriesByIndex(n.seriesIndex);e=a&&a.getDataParams(n.dataIndex,n.dataType,n)||{}}else n&&n.eventData&&(e=C({},n.eventData));if(e){var o=e.componentType,r=e.componentIndex;"markLine"!==o&&"markPoint"!==o&&"markArea"!==o||(o="series",r=e.seriesIndex);var s=o&&null!=r&&i.getComponent(o,r),l=s&&this["series"===s.mainType?"_chartsMap":"_componentsMap"][s.__viewId];e.event=t,e.type=u,this._ecEventProcessor.eventInfo={targetEl:n,packedEvent:e,model:s,view:l},this.trigger(u,e)}}t.zrEventfulCallAtLast=!0,this._zr.on(u,t,this)},this),ad(Nd,function(t,e){this._messageCenter.on(e,function(t){this.trigger(e,t)},this)},this)},gd.isDisposed=function(){return this._disposed},gd.clear=function(){this.setOption({series:[]},!0)},gd.dispose=function(){if(!this._disposed){this._disposed=!0,Oa(this.getDom(),Zd,"");var e=this._api,i=this._model;ad(this._componentsViews,function(t){t.dispose(i,e)}),ad(this._chartsViews,function(t){t.dispose(i,e)}),this._zr.dispose(),delete Gd[this.id]}},b(pd,Ct),kd.prototype={constructor:kd,normalizeQuery:function(t){var s={},l={},u={};if(R(t)){var e=sd(t);s.mainType=e.main||null,s.subType=e.sub||null}else{var h=["Index","Name","Id"],c={name:1,dataIndex:1,dataType:1};L(t,function(t,e){for(var i=!1,n=0;nx[1]&&(x[1]=y)}e&&(this._nameList[d]=e[f])}this._rawCount=this._count=l,this._extent={},Tf(this)},If._initDataFromProvider=function(t,e){if(!(e<=t)){for(var i,n=this._chunkSize,a=this._rawData,o=this._storage,r=this.dimensions,s=r.length,l=this._dimensionInfos,u=this._nameList,h=this._idList,c=this._rawExtent,d=this._nameRepeatCount={},f=this._chunkCount,p=0;pM[1]&&(M[1]=S)}if(!a.pure){var I=u[v];if(m&&null==I)if(null!=m.name)u[v]=I=m.name;else if(null!=i){var A=r[i],T=o[A][y];if(T){I=T[x];var D=l[A].ordinalMeta;D&&D.categories.length&&(I=D.categories[I])}}var C=null==m?null:m.id;null==C&&null!=I&&(d[I]=d[I]||0,0=this._rawCount||t<0)return-1;var e=this._indices,i=e[t];if(null!=i&&it))return o;a=o-1}}return-1},If.indicesOfNearest=function(t,e,i){var n=[];if(!this._storage[t])return n;null==i&&(i=1/0);for(var a=Number.MAX_VALUE,o=-1,r=0,s=this.count();rt[I][1])&&(M=!1)}M&&(o[r++]=this.getRawIndex(m))}return rw[1]&&(w[1]=_)}}}return a},If.downSample=function(t,e,i,n){for(var a=Nf(this,[t]),o=a._storage,r=[],s=Math.floor(1/e),l=o[t],u=this.count(),h=this._chunkSize,c=a._rawExtent[t],d=new(_f(this))(u),f=0,p=0;pc[1]&&(c[1]=x),d[f++]=_}return a._count=f,a._indices=d,a.getRawIndex=Lf,a},If.getItemModel=function(t){var e=this.hostModel;return new ul(this.getRawDataItem(t),e,e&&e.ecModel)},If.diff=function(e){var i=this;return new uf(e?e.getIndices():[],this.getIndices(),function(t){return kf(e,t)},function(t){return kf(i,t)})},If.getVisual=function(t){var e=this._visual;return e&&e[t]},If.setVisual=function(t,e){if(pf(t))for(var i in t)t.hasOwnProperty(i)&&this.setVisual(i,t[i]);else this._visual=this._visual||{},this._visual[t]=e},If.setLayout=function(t,e){if(pf(t))for(var i in t)t.hasOwnProperty(i)&&this.setLayout(i,t[i]);else this._layout[t]=e},If.getLayout=function(t){return this._layout[t]},If.getItemLayout=function(t){return this._itemLayouts[t]},If.setItemLayout=function(t,e,i){this._itemLayouts[t]=i?C(this._itemLayouts[t]||{},e):e},If.clearItemLayouts=function(){this._itemLayouts.length=0},If.getItemVisual=function(t,e,i){var n=this._itemVisuals[t],a=n&&n[e];return null!=a||i?a:this.getVisual(e)},If.setItemVisual=function(t,e,i){var n=this._itemVisuals[t]||{},a=this.hasItemVisual;if(this._itemVisuals[t]=n,pf(e))for(var o in e)e.hasOwnProperty(o)&&(n[o]=e[o],a[o]=!0);else n[e]=i,a[e]=!0},If.clearAllVisual=function(){this._visual={},this._itemVisuals=[],this.hasItemVisual={}};function Rf(t){t.seriesIndex=this.seriesIndex,t.dataIndex=this.dataIndex,t.dataType=this.dataType}function Ef(t,e,i){Tu.isInstance(e)||(e=Tu.seriesDataToSource(e)),i=i||{},t=(t||[]).slice();for(var n=(i.dimsDef||[]).slice(),l=Q(i.encodeDef),a=Q(),o=Q(),u=[],r=function(t,e,i,n){var a=Math.max(t.dimensionsDetectCount||1,e.length,i.length,n||0);return L(e,function(t){var e=t.dimsDef;e&&(a=Math.max(a,e.length))}),a}(e,t,n,i.dimCount),s=0;s=e[0]&&t<=e[1]},Zf.prototype.normalize=function(t){var e=this._extent;return e[1]===e[0]?.5:(t-e[0])/(e[1]-e[0])},Zf.prototype.scale=function(t){var e=this._extent;return t*(e[1]-e[0])+e[0]},Zf.prototype.unionExtent=function(t){var e=this._extent;t[0]e[1]&&(e[1]=t[1])},Zf.prototype.unionExtentFromData=function(t,e){this.unionExtent(t.getApproximateExtent(e))},Zf.prototype.getExtent=function(){return this._extent.slice()},Zf.prototype.setExtent=function(t,e){var i=this._extent;isNaN(t)||(i[0]=t),isNaN(e)||(i[1]=e)},Zf.prototype.isBlank=function(){return this._isBlank},Zf.prototype.setBlank=function(t){this._isBlank=t},Zf.prototype.getLabel=null,Ga(Zf),Ua(Zf,{registerWhenExtend:!0}),Uf.createByAxisModel=function(t){var e=t.option,i=e.data,n=i&&k(i,jf);return new Uf({categories:n,needCollect:!n,deduplication:!1!==e.dedplication})};var Xf=Uf.prototype;function Yf(t){return t._map||(t._map=Q(t.categories))}function jf(t){return E(t)&&null!=t.value?t.value:t+""}Xf.getOrdinal=function(t){return Yf(this).get(t)},Xf.parseAndCollect=function(t){var e,i=this._needCollect;if("string"!=typeof t&&!i)return t;if(i&&!this._deduplication)return e=this.categories.length,this.categories[e]=t,e;var n=Yf(this);return null==(e=n.get(t))&&(i?(e=this.categories.length,this.categories[e]=t,n.set(t,e)):e=NaN),e};var qf=Zf.prototype,Kf=Zf.extend({type:"ordinal",init:function(t,e){t&&!O(t)||(t=new Uf({categories:t})),this._ordinalMeta=t,this._extent=e||[0,t.categories.length-1]},parse:function(t){return"string"==typeof t?this._ordinalMeta.getOrdinal(t):Math.round(t)},contain:function(t){return t=this.parse(t),qf.contain.call(this,t)&&null!=this._ordinalMeta.categories[t]},normalize:function(t){return qf.normalize.call(this,this.parse(t))},scale:function(t){return Math.round(qf.scale.call(this,t))},getTicks:function(){for(var t=[],e=this._extent,i=e[0];i<=e[1];)t.push(i),i++;return t},getLabel:function(t){if(!this.isBlank())return this._ordinalMeta.categories[t]},count:function(){return this._extent[1]-this._extent[0]+1},unionExtentFromData:function(t,e){this.unionExtent(t.getApproximateExtent(e))},getOrdinalMeta:function(){return this._ordinalMeta},niceTicks:et,niceExtent:et});Kf.create=function(){return new Kf};var $f=vl;function Jf(t){return _l(t)+2}function Qf(t,e,i){t[e]=Math.max(Math.min(t[e],i[1]),i[0])}function tp(t,e){isFinite(t[0])||(t[0]=e[0]),isFinite(t[1])||(t[1]=e[1]),Qf(t,0,e),Qf(t,1,e),t[0]>t[1]&&(t[0]=t[1])}var ep=vl,ip=Zf.extend({type:"interval",_interval:0,_intervalPrecision:2,setExtent:function(t,e){var i=this._extent;isNaN(t)||(i[0]=parseFloat(t)),isNaN(e)||(i[1]=parseFloat(e))},unionExtent:function(t){var e=this._extent;t[0]e[1]&&(e[1]=t[1]),ip.prototype.setExtent.call(this,e[0],e[1])},getInterval:function(){return this._interval},setInterval:function(t){this._interval=t,this._niceExtent=this._extent.slice(),this._intervalPrecision=Jf(t)},getTicks:function(){return function(t,e,i,n){var a=[];if(!t)return a;e[0](a.length?a[a.length-1]:i[1])&&a.push(e[1]),a}(this._interval,this._extent,this._niceExtent,this._intervalPrecision)},getLabel:function(t,e){if(null==t)return"";var i=e&&e.precision;return null==i?i=_l(t)||0:"auto"===i&&(i=this._intervalPrecision),Ol(t=ep(t,i,!0))},niceTicks:function(t,e,i){t=t||5;var n=this._extent,a=n[1]-n[0];if(isFinite(a)){a<0&&(a=-a,n.reverse());var o=function(t,e,i,n){var a={},o=t[1]-t[0],r=a.interval=Ll(o/e,!0);null!=i&&ra[1]?(i=a[1],a[0]):(i=a[0],a[1]);var o=e.toGlobalCoord(e.dataToCoord(0));return o>>1;t[a][1]>1^-(1&s),l=l>>1^-(1&l),a=s+=a,o=l+=o,n.push([s/i,l/i])}return n}eg.prototype={constructor:eg,properties:null,getBoundingRect:function(){var t=this._rect;if(t)return t;for(var e=Number.MAX_VALUE,i=[e,e],n=[-e,-e],a=[],o=[],r=this.geometries,s=0;ss[1];h(e[0].coord,s[0])&&(a?e[0].coord=s[0]:e.shift());a&&h(s[0],e[0].coord)&&e.unshift({coord:s[0]});h(s[1],r.coord)&&(a?r.coord=s[1]:e.pop());a&&h(r.coord,s[1])&&e.push({coord:s[1]});function h(t,e){return u?en[0]&&(n[0]=o[0]),o[1]>n[1]&&(n[1]=o[1])}return{min:e?i:n,max:e?n:i}}var Yg=hr.extend({type:"ec-polyline",shape:{points:[],smooth:0,smoothConstraint:!0,smoothMonotone:null,connectNulls:!1},style:{fill:null,stroke:"#000"},brush:Cr(hr.prototype.brush),buildPath:function(t,e){var i=e.points,n=0,a=i.length,o=Xg(i,e.smoothConstraint);if(e.connectNulls){for(;0e[0]?1:-1;e[0]+=n*i,e[1]-=n*i}return e}function Jg(t,e,i,n){return"polar"===t.type?function(t,e,i,n){var a=t.getAngleAxis(),o=t.getRadiusAxis().getExtent().slice();o[0]>o[1]&&o.reverse();var r=a.getExtent(),s=Math.PI/180;i&&(o[0]-=.5,o[1]+=.5);var l=new Pr({shape:{cx:vl(t.cx,1),cy:vl(t.cy,1),r0:vl(o[0],1),r:vl(o[1],1),startAngle:-r[0]*s,endAngle:-r[1]*s,clockwise:a.inverse}});return e&&(l.shape.endAngle=-r[0]*s,Xs(l,{shape:{endAngle:-r[1]*s}},n)),l}(t,e,i,n):function(t,e,i,n){var a=$g(t.getAxis("x")),o=$g(t.getAxis("y")),r=t.getBaseAxis().isHorizontal(),s=Math.min(a[0],a[1]),l=Math.min(o[0],o[1]),u=Math.max(a[0],a[1])-s,h=Math.max(o[0],o[1])-l;if(i)s-=.5,u+=.5,l-=.5,h+=.5;else{var c=n.get("lineStyle.width")||2,d=n.get("clipOverflow")?c/2:Math.max(u,h);r?(l-=d,h+=2*d):(s-=d,u+=2*d)}var f=new Hr({shape:{x:s,y:l,width:u,height:h}});return e&&(f.shape[r?"width":"height"]=0,Xs(f,{shape:{width:u,height:h}},n)),f}(t,e,i,n)}function Qg(t,e,i){for(var n=e.getBaseAxis(),a="x"===n.dim||"radius"===n.dim?0:1,o=[],r=0;rn)return!1;return!0}(o,e))){var r=e.mapDimension(o.dim),s={};return L(o.getViewLabels(),function(t){s[t.tickValue]=1}),function(t){return!s.hasOwnProperty(e.get(r,t))}}}}Jh.extend({type:"line",init:function(){var t=new Si,e=new Lg;this.group.add(e.group),this._symbolDraw=e,this._lineGroup=t},render:function(t,e,i){var n=t.coordinateSystem,a=this.group,o=t.getData(),r=t.getModel("lineStyle"),s=t.getModel("areaStyle"),l=o.mapArray(o.getItemLayout),u="polar"===n.type,h=this._coordSys,c=this._symbolDraw,d=this._polyline,f=this._polygon,p=this._lineGroup,g=t.get("animation"),m=!s.isEmpty(),v=s.get("origin"),y=function(t,e,i){if(!i.valueDim)return[];for(var n=[],a=0,o=e.count();ah[c-1].coord&&(h.reverse(),d.reverse());var f=h[0].coord-10,p=h[c-1].coord+10,g=p-f;if(g<.001)return"transparent";L(h,function(t){t.offset=(t.coord-f)/g}),h.push({offset:c?h[c-1].offset:.5,color:d[1]||"transparent"}),h.unshift({offset:c?h[0].offset:.5,color:d[0]||"transparent"});var m=new Jr(0,0,0,0,h,!0);return m[n]=f,m[n+"2"]=p,m}}}(o,n)||o.getVisual("color");d.useStyle(T(r.getLineStyle(),{fill:"none",stroke:S,lineJoin:"bevel"}));var M=t.get("smooth");if(M=Kg(t.get("smooth")),d.setShape({smooth:M,smoothMonotone:t.get("smoothMonotone"),connectNulls:t.get("connectNulls")}),f){var I=o.getCalculationInfo("stackedOnSeries"),A=0;f.useStyle(T(s.getAreaStyle(),{fill:S,opacity:.7,lineJoin:"bevel"})),I&&(A=Kg(I.get("smooth"))),f.setShape({smooth:M,stackedOnSmooth:A,smoothMonotone:t.get("smoothMonotone"),connectNulls:t.get("connectNulls")})}this._data=o,this._coordSys=n,this._stackedOnPoints=y,this._points=l,this._step=b,this._valueOrigin=v},dispose:function(){},highlight:function(t,e,i,n){var a=t.getData(),o=Ca(a,n);if(!(o instanceof Array)&&null!=o&&0<=o){var r=a.getItemGraphicEl(o);if(!r){var s=a.getItemLayout(o);if(!s)return;(r=new _g(a,o)).position=s,r.setZ(t.get("zlevel"),t.get("z")),r.ignore=isNaN(s[0])||isNaN(s[1]),r.__temp=!0,a.setItemGraphicEl(o,r),r.stopSymbolAnimation(!0),this.group.add(r)}r.highlight()}else Jh.prototype.highlight.call(this,t,e,i,n)},downplay:function(t,e,i,n){var a=t.getData(),o=Ca(a,n);if(null!=o&&0<=o){var r=a.getItemGraphicEl(o);r&&(r.__temp?(a.setItemGraphicEl(o,null),this.group.remove(r)):r.downplay())}else Jh.prototype.downplay.call(this,t,e,i,n)},_newPolyline:function(t){var e=this._polyline;return e&&this._lineGroup.remove(e),e=new Yg({shape:{points:t},silent:!0,z2:10}),this._lineGroup.add(e),this._polyline=e},_newPolygon:function(t,e){var i=this._polygon;return i&&this._lineGroup.remove(i),i=new jg({shape:{points:t,stackedOnPoints:e},silent:!0}),this._lineGroup.add(i),this._polygon=i},_updateAnimation:function(t,e,i,n,a,o){var r=this._polyline,s=this._polygon,l=t.hostModel,u=function(t,e,i,n,a,o,r,s){for(var l=function(t,e){var i=[];return e.diff(t).add(function(t){i.push({cmd:"+",idx:t})}).update(function(t,e){i.push({cmd:"=",idx:e,idx1:t})}).remove(function(t){i.push({cmd:"-",idx:t})}).execute(),i}(t,e),u=[],h=[],c=[],d=[],f=[],p=[],g=[],m=zg(a,e,r),v=zg(o,t,s),y=0;ye&&(e=t[i]);return isFinite(e)?e:NaN},min:function(t){for(var e=1/0,i=0;ie[1]&&e.reverse(),e},getOtherAxis:function(){this.grid.getOtherAxis()},pointToData:function(t,e){return this.coordToData(this.toLocalCoord(t["x"===this.dim?0:1]),e)},toLocalCoord:null,toGlobalCoord:null},w(lm,pg);var um={show:!0,zlevel:0,z:0,inverse:!1,name:"",nameLocation:"end",nameRotate:null,nameTruncate:{maxWidth:null,ellipsis:"...",placeholder:"."},nameTextStyle:{},nameGap:15,silent:!1,triggerEvent:!1,tooltip:{show:!1},axisPointer:{},axisLine:{show:!0,onZero:!0,onZeroAxisIndex:null,lineStyle:{color:"#333",width:1,type:"solid"},symbol:["none","none"],symbolSize:[10,15]},axisTick:{show:!0,inside:!1,length:5,lineStyle:{width:1}},axisLabel:{show:!0,inside:!1,rotate:0,showMinLabel:null,showMaxLabel:null,margin:8,fontSize:12},splitLine:{show:!0,lineStyle:{color:["#ccc"],width:1,type:"solid"}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.3)","rgba(200,200,200,0.3)"]}}},hm={};hm.categoryAxis=m({boundaryGap:!0,deduplication:null,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:"auto"},axisLabel:{interval:"auto"}},um),hm.valueAxis=m({boundaryGap:[0,0],splitNumber:5},um),hm.timeAxis=T({scale:!0,min:"dataMin",max:"dataMax"},hm.valueAxis),hm.logAxis=T({scale:!0,logBase:10},hm.valueAxis);function cm(o,t,r,e){L(dm,function(a){t.extend({type:o+"Axis."+a,mergeDefaultAndTheme:function(t,e){var i=this.layoutMode,n=i?au(t):{};m(t,e.getTheme().get(a+"Axis")),m(t,this.getDefaultOption()),t.type=r(o,t),i&&nu(t,n,i)},optionUpdated:function(){"category"===this.option.type&&(this.__ordinalMeta=Uf.createByAxisModel(this))},getCategories:function(t){var e=this.option;if("category"===e.type)return t?e.data:this.__ordinalMeta.categories},getOrdinalMeta:function(){return this.__ordinalMeta},defaultOption:p([{},hm[a+"Axis"],e],!0)})}),hu.registerSubTypeDefaulter(o+"Axis",A(r,o))}var dm=["value","category","time","log"],fm=hu.extend({type:"cartesian2dAxis",axis:null,init:function(){fm.superApply(this,"init",arguments),this.resetRange()},mergeOption:function(){fm.superApply(this,"mergeOption",arguments),this.resetRange()},restoreData:function(){fm.superApply(this,"restoreData",arguments),this.resetRange()},getCoordSysModel:function(){return this.ecModel.queryComponents({mainType:"grid",index:this.option.gridIndex,id:this.option.gridId})[0]}});function pm(t,e){return e.type||(e.data?"category":"value")}m(fm.prototype,Gp);var gm={offset:0};function mm(t,e){return t.getCoordSysModel()===e}function vm(t,e,i){this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this._initCartesian(t,e,i),this.model=t}cm("x",fm,pm,gm),cm("y",fm,pm,gm),hu.extend({type:"grid",dependencies:["xAxis","yAxis"],layoutMode:"box",coordinateSystem:null,defaultOption:{show:!1,zlevel:0,z:0,left:"10%",top:60,right:"10%",bottom:60,containLabel:!1,backgroundColor:"rgba(0,0,0,0)",borderWidth:1,borderColor:"#ccc"}});var ym=vm.prototype;function xm(t,e,i,n){i.getAxesOnZeroOf=function(){return a?[a]:[]};var a,o=t[e],r=i.model,s=r.get("axisLine.onZero"),l=r.get("axisLine.onZeroAxisIndex");if(s){if(null!=l)_m(o[l])&&(a=o[l]);else for(var u in o)if(o.hasOwnProperty(u)&&_m(o[u])&&!n[h(o[u])]){a=o[u];break}a&&(n[h(a)]=!0)}function h(t){return t.dim+"_"+t.index}}function _m(t){return t&&"category"!==t.type&&"time"!==t.type&&function(t){var e=t.scale.getExtent(),i=e[0],n=e[1];return!(0u[1]?-1:1,c=["start"===o?u[0]-h*l:"end"===o?u[1]+h*l:(u[0]+u[1])/2,Pm(o)?t.labelOffset+r*l:0],d=e.get("nameRotate");null!=d&&(d=d*Im/180),Pm(o)?n=Dm(t.rotation,null!=d?d:t.rotation,r):(n=function(t,e,i,n){var a,o,r=Ml(i-t.rotation),s=n[0]>n[1],l="start"===e&&!s||"start"!==e&&s;a=Il(r-Im/2)?(o=l?"bottom":"top","center"):Il(r-1.5*Im)?(o=l?"top":"bottom","center"):(o="middle",r<1.5*Im&&Im/2l[1]&&l.reverse(),(null==r||r>l[1])&&(r=l[1]),r=i.r0}}});var vv=Math.PI/180;function yv(a,t,e,i,n,o,r){function s(t,e,i){for(var n=t;na[n].y+a[n].height)return void l(n,i/2);l(e-1,i/2)}function l(t,e){for(var i=t;0<=i&&(a[i].y-=e,!(0a[i-1].y+a[i-1].height));i--);}function u(t,e,i,n,a,o){for(var r=e?Number.MAX_VALUE:0,s=0,l=t.length;s=e?p.push(a[g]):f.push(a[g]);u(f,!1,t,e,i,n),u(p,!0,t,e,i,n)}function xv(t){return"center"===t.position}function _v(I,A,t,e,i){var T,D,C=I.getData(),L=[],k=!1,P=(I.get("minShowLabelAngle")||0)*vv;C.each(function(t){var e=C.getItemLayout(t),i=C.getItemModel(t),n=i.getModel("label"),a=n.get("position")||i.get("emphasis.label.position"),o=i.getModel("labelLine"),r=o.get("length"),s=o.get("length2");if(!(e.anglei[0]&&isFinite(u)&&isFinite(i[0]););else{var h=a.getTicks().length-1;f"+k(t,function(t,e){var i=a.get(a.mapDimension(t.dim),n);return Vl(t.name+" : "+i)}).join("
    ")},defaultOption:{zlevel:0,z:2,coordinateSystem:"radar",legendHoverLink:!0,radarIndex:0,lineStyle:{width:2,type:"solid"},label:{position:"top"},symbol:"emptyCircle",symbolSize:4}});sf({type:"radar",render:function(l,t,e){var i=l.coordinateSystem,g=this.group,m=l.getData(),s=this._data;function u(t,e){var i=t.getItemVisual(e,"symbol")||"circle",n=t.getItemVisual(e,"color");if("none"!==i){var a=function(t){return O(t)||(t=[+t,+t]),t}(t.getItemVisual(e,"symbolSize")),o=qp(i,-1,-1,2,2,n);return o.attr({style:{strokeNoScale:!0},z2:100,scale:[a[0]/2,a[1]/2]}),o}}function h(t,e,i,n,a,o){i.removeAll();for(var r=0;r"+Vl(n+" : "+i)},getTooltipPosition:function(t){if(null!=t){var e=this.getData().getName(t),i=this.coordinateSystem,n=i.getRegion(e);return n&&i.dataToPoint(n.center)}},setZoom:function(t){this.option.zoom=t},setCenter:function(t){this.option.center=t},defaultOption:{zlevel:0,z:2,coordinateSystem:"geo",map:"",left:"center",top:"center",aspectScale:.75,showLegendSymbol:!0,dataRangeHoverLink:!0,boundingCoords:null,center:null,zoom:1,scaleLimit:null,label:{show:!1,color:"#000"},itemStyle:{borderWidth:.5,borderColor:"#444",areaColor:"#eee"},emphasis:{label:{show:!0,color:"rgb(100,0,0)"},itemStyle:{areaColor:"rgba(255,215,0,0.8)"}}}}),uv);var Kv="\0_ec_interaction_mutex";function $v(t,e){return!!Jv(t)[e]}function Jv(t){return t[Kv]||(t[Kv]={})}function Qv(i){this.pointerChecker,this._zr=i,this._opt={};var t=N,n=t(ty,this),a=t(ey,this),o=t(iy,this),r=t(ny,this),s=t(ay,this);Ct.call(this),this.setPointerChecker=function(t){this.pointerChecker=t},this.enable=function(t,e){this.disable(),this._opt=T(D(e)||{},{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}),null==t&&(t=!0),!0!==t&&"move"!==t&&"pan"!==t||(i.on("mousedown",n),i.on("mousemove",a),i.on("mouseup",o)),!0!==t&&"scale"!==t&&"zoom"!==t||(i.on("mousewheel",r),i.on("pinch",s))},this.disable=function(){i.off("mousedown",n),i.off("mousemove",a),i.off("mouseup",o),i.off("mousewheel",r),i.off("pinch",s)},this.dispose=this.disable,this.isDragging=function(){return this._dragging},this.isPinching=function(){return this._pinching}}function ty(t){if(!(Wt(t)||t.target&&t.target.draggable)){var e=t.offsetX,i=t.offsetY;this.pointerChecker&&this.pointerChecker(t,e,i)&&(this._x=e,this._y=i,this._dragging=!0)}}function ey(t){if(this._dragging&&sy("moveOnMouseMove",t,this._opt)&&"pinch"!==t.gestureEvent&&!$v(this._zr,"globalPan")){var e=t.offsetX,i=t.offsetY,n=this._x,a=this._y,o=e-n,r=i-a;this._x=e,this._y=i,this._opt.preventDefaultMouseMove&&Ft(t.event),ry(this,"pan","moveOnMouseMove",t,{dx:o,dy:r,oldX:n,oldY:a,newX:e,newY:i})}}function iy(t){Wt(t)||(this._dragging=!1)}function ny(t){var e=sy("zoomOnMouseWheel",t,this._opt),i=sy("moveOnMouseWheel",t,this._opt),n=t.wheelDelta,a=Math.abs(n),o=t.offsetX,r=t.offsetY;if(0!==n&&(e||i)){if(e){var s=3x.x)||(m-=Math.PI);var b=v?"left":"right";g.setStyle({textPosition:b,textRotation:-m,textOrigin:"center",verticalAlign:"middle"})}if(s.parentNode&&s.parentNode!==u){var S=i.__edge;Us(S=S||(i.__edge=new qr({shape:tx(o,f,f),style:T({opacity:0,strokeNoScale:!0},o.lineStyle)})),{shape:tx(o,d,p),style:{opacity:1}},a),n.add(S)}}function Qy(t,e,i,n,a,o){for(var r,s=t.tree.getNodeByDataIndex(e),l=t.tree.root,u=s.getModel(),h=(o=$y(s,u,o),s.parentNode===l?s:s.parentNode||s);null==(r=h.getLayout());)h=h.parentNode===l?h:h.parentNode||h;Us(i,{position:[r.x+1,r.y+1]},a,function(){n.remove(i),t.setItemGraphicEl(e,null)}),i.fadeOut(null,{keepLabel:!0});var c=i.__edge;c&&Us(c,{shape:tx(o,r,r),style:{opacity:0}},a,function(){n.remove(c)})}function tx(t,e,i){var n,a,o,r,s,l,u,h,c=t.orient;if("radial"!==t.layout)return s=e.x,u=e.y,l=i.x,h=i.y,"LR"!==c&&"RL"!==c||(n=s+(l-s)*t.curvature,a=u,o=l+(s-l)*t.curvature,r=h),"TB"!==c&&"BT"!==c||(n=s,a=u+(h-u)*t.curvature,o=l,r=h+(u-h)*t.curvature),{x1:s,y1:u,x2:l,y2:h,cpx1:n,cpy1:a,cpx2:o,cpy2:r};s=e.rawX,u=e.rawY,l=i.rawX,h=i.rawY;var d=Uy(s,u),f=Uy(s,u+(h-u)*t.curvature),p=Uy(l,h+(u-h)*t.curvature),g=Uy(l,h);return{x1:d.x,y1:d.y,x2:g.x,y2:g.y,cpx1:f.x,cpy1:f.y,cpx2:p.x,cpy2:p.y}}function ex(t,e){for(var i,n=[t];i=n.pop();)if(e(i),i.isExpand){var a=i.children;if(a.length)for(var o=a.length-1;0<=o;o--)n.push(a[o])}}Vy.prototype={constructor:Vy,isRemoved:function(){return this.dataIndex<0},eachNode:function(t,e,i){"function"==typeof t&&(i=e,e=t,t=null),R(t=t||{})&&(t={order:t});var n,a=t.order||"preorder",o=this[t.attr||"children"];"preorder"===a&&(n=e.call(i,this));for(var r=0;!n&&re&&(e=n.height)}this.height=e+1},getNodeById:function(t){if(this.getId()===t)return this;for(var e=0,i=this.children,n=i.length;eo&&(o=t.depth)});var r=t.expandAndCollapse&&0<=t.initialTreeDepth?t.initialTreeDepth:o;return a.root.eachNode("preorder",function(t){var e=t.hostTree.data.getRawDataItem(t.dataIndex);t.isExpand=e&&null!=e.collapsed?!e.collapsed:t.depth<=r}),a.data},getOrient:function(){var t=this.get("orient");return"horizontal"===t?t="LR":"vertical"===t&&(t="TB"),t},setZoom:function(t){this.option.zoom=t},setCenter:function(t){this.option.center=t},formatTooltip:function(t){for(var e=this.getData().tree,i=e.root.children[0],n=e.getNodeByDataIndex(t),a=n.getValue(),o=n.name;n&&n!==i;)o=n.parentNode.name+"."+o,n=n.parentNode;return Vl(o+(isNaN(a)||null==a?"":" : "+a))},defaultOption:{zlevel:0,z:2,coordinateSystem:"view",left:"12%",top:"12%",right:"12%",bottom:"12%",layout:"orthogonal",roam:!1,nodeScaleRatio:.4,center:null,zoom:1,orient:"LR",symbol:"emptyCircle",symbolSize:7,expandAndCollapse:!0,initialTreeDepth:2,lineStyle:{color:"#ccc",width:1.5,curveness:.5},itemStyle:{color:"lightsteelblue",borderColor:"#c23531",borderWidth:1.5},label:{show:!0,color:"#555"},leaves:{label:{show:!0}},animationEasing:"linear",animationDuration:700,animationDurationUpdate:1e3}}),sf({type:"tree",init:function(t,e){this._oldTree,this._mainGroup=new Si,this._controller=new Qv(e.getZr()),this._controllerHost={target:this.group},this.group.add(this._mainGroup)},render:function(n,t,i,e){var a=n.getData(),o=n.layoutInfo,r=this._mainGroup,s=n.get("layout");"radial"===s?r.attr("position",[o.x+o.width/2,o.y+o.height/2]):r.attr("position",[o.x,o.y]),this._updateViewCoordSys(n),this._updateController(n,t,i);var l=this._data,u={expandAndCollapse:n.get("expandAndCollapse"),layout:s,orient:n.getOrient(),curvature:n.get("lineStyle.curveness"),symbolRotate:n.get("symbolRotate"),symbolOffset:n.get("symbolOffset"),hoverAnimation:n.get("hoverAnimation"),useNameLabel:!0,fadeIn:!0};a.diff(l).add(function(t){Ky(a,t)&&Jy(a,t,null,r,n,u)}).update(function(t,e){var i=l.getItemGraphicEl(e);Ky(a,t)?Jy(a,t,i,r,n,u):i&&Qy(l,e,i,r,n,u)}).remove(function(t){var e=l.getItemGraphicEl(t);e&&Qy(l,t,e,r,n,u)}).execute(),this._nodeScaleRatio=n.get("nodeScaleRatio"),this._updateNodeAndLinkScale(n),!0===u.expandAndCollapse&&a.eachItemGraphicEl(function(t,e){t.off("click").on("click",function(){i.dispatchAction({type:"treeExpandAndCollapse",seriesId:n.id,dataIndex:e})})}),this._data=a},_updateViewCoordSys:function(t){var i=t.getData(),n=[];i.each(function(t){var e=i.getItemLayout(t);!e||isNaN(e.x)||isNaN(e.y)||n.push([+e.x,+e.y])});var e=[],a=[];Io(n,e,a),a[0]-e[0]==0&&(a[0]+=1,e[0]-=1),a[1]-e[1]==0&&(a[1]+=1,e[1]-=1);var o=t.coordinateSystem=new by;o.zoomLimit=t.get("scaleLimit"),o.setBoundingRect(e[0],e[1],a[0]-e[0],a[1]-e[1]),o.setCenter(t.get("center")),o.setZoom(t.get("zoom")),this.group.attr({position:o.position,scale:o.scale}),this._viewCoordSys=o},_updateController:function(a,t,o){var e=this._controller,i=this._controllerHost,r=this.group;e.setPointerChecker(function(t,e,i){var n=r.getBoundingRect();return n.applyTransform(r.transform),n.contain(e,i)&&!cy(t,o,a)}),e.enable(a.get("roam")),i.zoomLimit=a.get("scaleLimit"),i.zoom=a.coordinateSystem.getZoom(),e.off("pan").off("zoom").on("pan",function(t){ly(i,t.dx,t.dy),o.dispatchAction({seriesId:a.id,type:"treeRoam",dx:t.dx,dy:t.dy})},this).on("zoom",function(t){uy(i,t.scale,t.originX,t.originY),o.dispatchAction({seriesId:a.id,type:"treeRoam",zoom:t.scale,originX:t.originX,originY:t.originY}),this._updateNodeAndLinkScale(a)},this)},_updateNodeAndLinkScale:function(t){var e=t.getData(),i=this._getNodeGlobalScale(t),n=[i,i];e.eachItemGraphicEl(function(t,e){t.attr("scale",n)})},_getNodeGlobalScale:function(t){var e=t.coordinateSystem;if("view"!==e.type)return 1;var i=this._nodeScaleRatio,n=e.scale,a=n&&n[0]||1;return((e.getZoom()-1)*i+1)/a},dispose:function(){this._controller&&this._controller.dispose(),this._controllerHost={}},remove:function(){this._mainGroup.removeAll(),this._data=null}}),$d({type:"treeExpandAndCollapse",event:"treeExpandAndCollapse",update:"update"},function(n,t){t.eachComponent({mainType:"series",subType:"tree",query:n},function(t){var e=n.dataIndex,i=t.getData().tree.getNodeByDataIndex(e);i.isExpand=!i.isExpand})}),$d({type:"treeRoam",event:"treeRoam",update:"none"},function(i,t){t.eachComponent({mainType:"series",subType:"tree",query:i},function(t){var e=xy(t.coordinateSystem,i);t.setCenter&&t.setCenter(e.center),t.setZoom&&t.setZoom(e.zoom)})});function ix(t,e,i){if(t&&0<=_(e,t.type)){var n=i.getData().tree.root,a=t.targetNode;if("string"==typeof a&&(a=n.getNodeById(a)),a&&n.contains(a))return{node:a};var o=t.targetNodeId;if(null!=o&&(a=n.getNodeById(o)))return{node:a}}}function nx(t){for(var e=[];t;)(t=t.parentNode)&&e.push(t);return e.reverse()}function ax(t,e){return 0<=_(nx(t),e)}function ox(t,e){for(var i=[];t;){var n=t.dataIndex;i.push({name:t.name,dataIndex:n,value:e.getRawValue(n)}),t=t.parentNode}return i.reverse(),i}tf(em("tree","circle")),Qd(function(t,e){t.eachSeriesByType("tree",function(t){!function(t,e){var i=function(t,e){return eu(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}(t,e);t.layoutInfo=i;var n=t.get("layout"),a=0,o=0,r=null;r="radial"===n?(a=2*Math.PI,o=Math.min(i.height,i.width)/2,Zy(function(t,e){return(t.parentNode===e.parentNode?1:2)/t.depth})):(a=i.width,o=i.height,Zy());var s=t.getData().tree.root,l=s.children[0];if(l){!function(t){t.hierNode={defaultAncestor:null,ancestor:t,prelim:0,modifier:0,change:0,shift:0,i:0,thread:null};for(var e,i,n=[t];e=n.pop();)if(i=e.children,e.isExpand&&i.length)for(var a=i.length-1;0<=a;a--){var o=i[a];o.hierNode={defaultAncestor:null,ancestor:o,prelim:0,modifier:0,change:0,shift:0,i:a,thread:null},n.push(o)}}(s),function(t,e,i){for(var n,a=[t],o=[];n=a.pop();)if(o.push(n),n.isExpand){var r=n.children;if(r.length)for(var s=0;sh.getLayout().x&&(h=t),t.depth>c.depth&&(c=t)});var d=u===h?1:r(u,h)/2,f=d-u.getLayout().x,p=0,g=0,m=0,v=0;if("radial"===n)p=a/(h.getLayout().x+d+f),g=o/(c.depth-1||1),ex(l,function(t){m=(t.getLayout().x+f)*p,v=(t.depth-1)*g;var e=Uy(m,v);t.setLayout({x:e.x,y:e.y,rawX:m,rawY:v},!0)});else{var y=t.getOrient();"RL"===y||"LR"===y?(g=o/(h.getLayout().x+d+f),p=a/(c.depth-1||1),ex(l,function(t){v=(t.getLayout().x+f)*g,m="LR"===y?(t.depth-1)*p:a-(t.depth-1)*p,t.setLayout({x:m,y:v},!0)})):"TB"!==y&&"BT"!==y||(p=a/(h.getLayout().x+d+f),g=o/(c.depth-1||1),ex(l,function(t){m=(t.getLayout().x+f)*p,v="TB"===y?(t.depth-1)*g:o-(t.depth-1)*g,t.setLayout({x:m,y:v},!0)}))}}}(t,e)})}),Vh.extend({type:"series.treemap",layoutMode:"box",dependencies:["grid","polar"],preventUsingHoverLayer:!0,_viewRoot:null,defaultOption:{progressive:0,left:"center",top:"middle",right:null,bottom:null,width:"80%",height:"80%",sort:!0,clipWindow:"origin",squareRatio:.5*(1+Math.sqrt(5)),leafDepth:null,drillDownIcon:"▶",zoomToNodeRatio:.1024,roam:!0,nodeClick:"zoomToNode",animation:!0,animationDurationUpdate:900,animationEasing:"quinticInOut",breadcrumb:{show:!0,height:22,left:"center",top:"bottom",emptyItemWidth:25,itemStyle:{color:"rgba(0,0,0,0.7)",borderColor:"rgba(255,255,255,0.7)",borderWidth:1,shadowColor:"rgba(150,150,150,1)",shadowBlur:3,shadowOffsetX:0,shadowOffsetY:0,textStyle:{color:"#fff"}},emphasis:{textStyle:{}}},label:{show:!0,distance:0,padding:5,position:"inside",color:"#fff",ellipsis:!0},upperLabel:{show:!1,position:[0,"50%"],height:20,color:"#fff",ellipsis:!0,verticalAlign:"middle"},itemStyle:{color:null,colorAlpha:null,colorSaturation:null,borderWidth:0,gapWidth:0,borderColor:"#fff",borderColorSaturation:null},emphasis:{upperLabel:{show:!0,position:[0,"50%"],color:"#fff",ellipsis:!0,verticalAlign:"middle"}},visualDimension:0,visualMin:null,visualMax:null,color:[],colorAlpha:null,colorSaturation:null,colorMappingBy:"index",visibleMin:10,childrenVisibleMin:null,levels:[]},getInitialData:function(t,e){var i={name:t.name,children:t.data};!function i(t){var n=0;L(t.children,function(t){i(t);var e=t.value;O(e)&&(e=e[0]),n+=e});var e=t.value;O(e)&&(e=e[0]);null!=e&&!isNaN(e)||(e=n);e<0&&(e=0);O(t.value)?t.value[0]=e:t.value=e}(i);var n=t.levels||[];n=t.levels=function(t,e){var n,i=e.get("color");if(!i)return;if(L(t=t||[],function(t){var e=new ul(t),i=e.get("color");(e.get("itemStyle.color")||i&&"none"!==i)&&(n=!0)}),!n){(t[0]||(t[0]={})).color=i.slice()}return t}(n,e);var a={};return a.levels=n,Gy.createTree(i,this,a).data},optionUpdated:function(){this.resetViewRoot()},formatTooltip:function(t){var e=this.getData(),i=this.getRawValue(t),n=O(i)?Ol(i[0]):Ol(i);return Vl(e.getName(t)+": "+n)},getDataParams:function(t){var e=Vh.prototype.getDataParams.apply(this,arguments),i=this.getData().tree.getNodeByDataIndex(t);return e.treePathInfo=ox(i,this),e},setLayoutInfo:function(t){this.layoutInfo=this.layoutInfo||{},C(this.layoutInfo,t)},mapIdToIndex:function(t){var e=this._idIndexMap;e||(e=this._idIndexMap=Q(),this._idIndexMapCount=0);var i=e.get(t);return null==i&&e.set(t,i=this._idIndexMapCount++),i},getViewRoot:function(){return this._viewRoot},resetViewRoot:function(t){t?this._viewRoot=t:t=this._viewRoot;var e=this.getRawData().tree.root;t&&(t===e||e.contains(t))||(this._viewRoot=e)}});var rx=5;function sx(t){this.group=new Si,t.add(this.group)}function lx(t,e,i,n,a,o){var r=[[a?t:t-rx,e],[t+i,e],[t+i,e+n],[a?t:t-rx,e+n]];return o||r.splice(2,0,[t+i+rx,e+n/2]),a||r.push([t,e+n/2]),r}sx.prototype={constructor:sx,render:function(t,e,i,n){var a=t.getModel("breadcrumb"),o=this.group;if(o.removeAll(),a.get("show")&&i){var r=a.getModel("itemStyle"),s=r.getModel("textStyle"),l={pos:{left:a.get("left"),right:a.get("right"),top:a.get("top"),bottom:a.get("bottom")},box:{width:e.getWidth(),height:e.getHeight()},emptyItemWidth:a.get("emptyItemWidth"),totalWidth:0,renderList:[]};this._prepare(i,l,s),this._renderContent(t,l,r,s,n),iu(o,l.pos,l.box)}},_prepare:function(t,e,i){for(var n=t;n;n=n.parentNode){var a=n.getModel().get("name"),o=i.getTextRect(a),r=Math.max(o.width+16,e.emptyItemWidth);e.totalWidth+=r+8,e.renderList.push({node:n,text:a,width:r})}},_renderContent:function(t,e,i,n,a){for(var o,r,s=0,l=e.emptyItemWidth,u=t.get("breadcrumb.height"),h=function(t,e,i){var n=e.width,a=e.height,o=ml(t.x,n),r=ml(t.y,a),s=ml(t.x2,n),l=ml(t.y2,a);return(isNaN(o)||isNaN(parseFloat(t.x)))&&(o=0),(isNaN(s)||isNaN(parseFloat(t.x2)))&&(s=n),(isNaN(r)||isNaN(parseFloat(t.y)))&&(r=0),(isNaN(l)||isNaN(parseFloat(t.y2)))&&(l=a),i=Rl(i||0),{width:Math.max(s-o-i[1]-i[3],0),height:Math.max(l-r-i[0]-i[2],0)}}(e.pos,e.box),c=e.totalWidth,d=e.renderList,f=d.length-1;0<=f;f--){var p=d[f],g=p.node,m=p.width,v=p.text;c>h.width&&(c-=m-l,m=l,v=null);var y=new Rr({shape:{points:lx(s,0,m,u,f===d.length-1,0===f)},style:T(i.getItemStyle(),{lineJoin:"bevel",text:v,textFill:n.getTextColor(),textFont:n.getFont()}),z:10,onclick:A(a,g)});this.group.add(y),o=t,r=g,y.eventData={componentType:"series",componentSubType:"treemap",componentIndex:o.componentIndex,seriesIndex:o.componentIndex,seriesName:o.name,seriesType:"treemap",selfType:"breadcrumb",nodeData:{dataIndex:r&&r.dataIndex,name:r&&r.name},treePathInfo:r&&ox(r,o)},s+=m+8}},remove:function(){this.group.removeAll()}};function ux(t){var e=xx(t);return e.stroke=e.fill=e.lineWidth=null,e}var hx=N,cx=Si,dx=Hr,fx=L,px=["label"],gx=["emphasis","label"],mx=["upperLabel"],vx=["emphasis","upperLabel"],yx=10,xx=Xa([["fill","color"],["stroke","strokeColor"],["lineWidth","strokeWidth"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["shadowColor"]]);function _x(d,r,s,l,u,i,f,t,e,n){if(f){var p=f.getLayout();if(p&&p.isInView){var h=p.width,c=p.height,g=p.borderWidth,m=p.invisible,v=f.getRawIndex(),y=t&&t.getRawIndex(),a=f.viewChildren,x=p.upperHeight,o=a&&a.length,_=f.getModel("itemStyle"),w=f.getModel("emphasis.itemStyle"),b=T("nodeGroup",cx);if(b){if(e.add(b),b.attr("position",[p.x||0,p.y||0]),b.__tmNodeWidth=h,b.__tmNodeHeight=c,p.isAboveViewRoot)return b;var S=T("background",dx,n,1);if(S&&function(t,n,a){n.dataIndex=f.dataIndex,n.seriesIndex=d.seriesIndex,n.setShape({x:0,y:0,width:h,height:c});var o=f.getVisual("borderColor",!0),r=w.get("borderColor");I(n,function(){var t=ux(_);t.fill=o;var e=xx(w);if(e.fill=r,a){var i=h-2*g;A(t,e,o,i,x,{x:g,y:0,width:i,height:x})}else t.text=e.text=null;n.setStyle(t),ks(n,e)}),t.add(n)}(b,S,o&&p.upperHeight),!o){var M=T("content",dx,n,2);M&&function(t,i){i.dataIndex=f.dataIndex,i.seriesIndex=d.seriesIndex;var n=Math.max(h-2*g,0),a=Math.max(c-2*g,0);i.culling=!0,i.setShape({x:g,y:g,width:n,height:a});var o=f.getVisual("color",!0);I(i,function(){var t=ux(_);t.fill=o;var e=xx(w);A(t,e,o,n,a),i.setStyle(t),ks(i,e)}),t.add(i)}(b,M)}return b}}}function I(t,e){m?t.invisible||i.push(t):(e(),t.__tmWillVisible||(t.invisible=!1))}function A(t,e,i,n,a,o){var r=f.getModel(),s=W(d.getFormattedLabel(f.dataIndex,"normal",null,null,o?"upperLabel":"label"),r.get("name"));if(!o&&p.isLeafRoot){var l=d.get("drillDownIcon",!0);s=l?l+" "+s:s}var u=r.getModel(o?mx:px),h=r.getModel(o?vx:gx),c=u.getShallow("show");zs(t,e,u,h,{defaultText:c?s:null,autoColor:i,isRectText:!0}),o&&(t.textRect=D(o)),t.truncate=c&&u.get("ellipsis")?{outerWidth:n,outerHeight:a,minChar:2}:null}function T(t,e,i,n){var a=null!=y&&s[t][y],o=u[t];return a?(s[t][y]=null,function(t,e,i){(t[v]={}).old="nodeGroup"===i?e.position.slice():C({},e.shape)}(o,a,t)):m||((a=new e({z:function(t,e){var i=t*yx+e;return(i-1)/i}(i,n)})).__tmDepth=i,function(t,e,i){var n=t[v]={},a=f.parentNode;if(a&&(!l||"drillDown"===l.direction)){var o=0,r=0,s=u.background[a.getRawIndex()];!l&&s&&s.old&&(o=s.old.width,r=s.old.height),n.old="nodeGroup"===i?[0,r]:{x:o,y:r,width:0,height:0}}n.fadein="nodeGroup"!==i}(o,0,a.__tmStorageName=t)),r[t][v]=a}}sf({type:"treemap",init:function(t,e){this._containerGroup,this._storage={nodeGroup:[],background:[],content:[]},this._oldTree,this._breadcrumb,this._controller,this._state="ready"},render:function(t,e,i,n){if(!(_(e.findComponents({mainType:"series",subType:"treemap",query:n}),t)<0)){this.seriesModel=t,this.api=i,this.ecModel=e;var a=ix(n,["treemapZoomToNode","treemapRootToNode"],t),o=n&&n.type,r=t.layoutInfo,s=!this._oldTree,l=this._storage,u="treemapRootToNode"===o&&a&&l?{rootNodeGroup:l.nodeGroup[a.node.getRawIndex()],direction:n.direction}:null,h=this._giveContainerGroup(r),c=this._doRender(h,t,u);s||o&&"treemapZoomToNode"!==o&&"treemapRootToNode"!==o?c.renderFinally():this._doAnimation(h,c,t,u),this._resetController(i),this._renderBreadcrumb(t,i,a)}},_giveContainerGroup:function(t){var e=this._containerGroup;return e||(e=this._containerGroup=new cx,this._initEvents(e),this.group.add(e)),e.attr("position",[t.x,t.y]),e},_doRender:function(t,e,i){var n=e.getData().tree,a=this._oldTree,o={nodeGroup:[],background:[],content:[]},r={nodeGroup:[],background:[],content:[]},s=this._storage,l=[],c=A(_x,e,r,s,i,o,l);!function o(r,s,l,u,h){u?fx(s=r,function(t,e){t.isRemoved()||i(e,e)}):new uf(s,r,t,t).add(i).update(i).remove(A(i,null)).execute();function t(t){return t.getId()}function i(t,e){var i=null!=t?r[t]:null,n=null!=e?s[e]:null,a=c(i,n,l,h);a&&o(i&&i.viewChildren||[],n&&n.viewChildren||[],a,u,h+1)}}(n.root?[n.root]:[],a&&a.root?[a.root]:[],t,n===a||!a,0);var u,h,d=(h={nodeGroup:[],background:[],content:[]},(u=s)&&fx(u,function(t,e){var i=h[e];fx(t,function(t){t&&(i.push(t),t.__tmWillDelete=1)})}),h);return this._oldTree=n,this._storage=r,{lastsForAnimation:o,willDeleteEls:d,renderFinally:function(){fx(d,function(t){fx(t,function(t){t.parent&&t.parent.remove(t)})}),fx(l,function(t){t.invisible=!0,t.dirty()})}}},_doAnimation:function(t,o,e,s){if(e.get("animation")){var l=e.get("animationDurationUpdate"),u=e.get("animationEasing"),h=function(){var o,r=[],s={};return{add:function(t,e,i,n,a){return R(n)&&(a=n,n=0),!s[t.id]&&(s[t.id]=1,r.push({el:t,target:e,time:i,delay:n,easing:a}),!0)},done:function(t){return o=t,this},start:function(){for(var t=r.length,e=0,i=r.length;e=r.length||t===r[t.depth]){var i=qx(l,c,t,e,y,s);n(t,i,a,o,r,s)}})}else p=Ux(c),t.setVisual("color",p)}(o,{},k(a.levelModels,function(t){return t?t.get(Wx):null}),r,t.getViewRoot().getAncestors(),t)}};function Zx(i,n,a,o){var r=C({},n);return L(["color","colorAlpha","colorSaturation"],function(t){var e=i.get(t,!0);null==e&&a&&(e=a[t]),null==e&&(e=n[t]),null==e&&(e=o.get(t)),null!=e&&(r[t]=e)}),r}function Ux(t){var e=Xx(t,"color");if(e){var i=Xx(t,"colorAlpha"),n=Xx(t,"colorSaturation");return n&&(e=He(e,null,null,n)),i&&(e=Ze(e,i)),e}}function Xx(t,e){var i=t[e];if(null!=i&&"none"!==i)return i}function Yx(t,e,i,n,a,o){if(o&&o.length){var r=jx(e,"color")||null!=a.color&&"none"!==a.color&&(jx(e,"colorAlpha")||jx(e,"colorSaturation"));if(r){var s=e.get("visualMin"),l=e.get("visualMax"),u=i.dataExtent.slice();null!=s&&su[1]&&(u[1]=l);var h=e.get("colorMappingBy"),c={type:r.name,dataExtent:u,visual:r.range};"color"!==c.type||"index"!==h&&"id"!==h?c.mappingMethod="linear":(c.mappingMethod="category",c.loop=!0);var d=new Dx(c);return d.__drColorMappingBy=h,d}}}function jx(t,e){var i=t.get(e);return Fx(i)&&i.length?{name:e,range:i}:null}function qx(t,e,i,n,a,o){var r=C({},e);if(a){var s=a.type,l="color"===s&&a.__drColorMappingBy,u="index"===l?n:"id"===l?o.mapIdToIndex(i.getId()):i.getValue(t.get("visualDimension"));r[s]=a.mapValueToVisual(u)}return r}var Kx=Math.max,$x=Math.min,Jx=W,Qx=L,t_=["itemStyle","borderWidth"],e_=["itemStyle","gapWidth"],i_=["upperLabel","show"],n_=["upperLabel","height"],a_={seriesType:"treemap",reset:function(t,e,i,n){var a=i.getWidth(),o=i.getHeight(),r=t.option,s=eu(t.getBoxLayoutParams(),{width:i.getWidth(),height:i.getHeight()}),l=r.size||[],u=ml(Jx(s.width,l[0]),a),h=ml(Jx(s.height,l[1]),o),c=n&&n.type,d=ix(n,["treemapZoomToNode","treemapRootToNode"],t),f="treemapRender"===c||"treemapMove"===c?n.rootRect:null,p=t.getViewRoot(),g=nx(p);if("treemapMove"!==c){var m="treemapZoomToNode"===c?function(t,e,i,n,a){var o,r=(e||{}).node,s=[n,a];if(!r||r===i)return s;var l=n*a,u=l*t.option.zoomToNodeRatio;for(;o=r.parentNode;){for(var h=0,c=o.children,d=0,f=c.length;ds[1]&&(s[1]=e)})}else s=[NaN,NaN];return{sum:n,dataExtent:s}}(e,r,s);if(0===u.sum)return t.viewChildren=[];if(u.sum=function(t,e,i,n,a){if(!n)return i;for(var o=t.get("visibleMin"),r=a.length,s=r,l=r-1;0<=l;l--){var u=a["asc"===n?r-l-1:l].getValue();u/i*ei[l[r]])&&(h=i[l[r]]);for(var c=0,d=t.length;c "+d)),u++)}var f,p=i.get("coordinateSystem");if("cartesian2d"===p||"polar"===p)f=Hf(t,i);else{var g=Gu.get(p),m=g&&"view"!==g.type&&g.dimensions||[];_(m,"value")<0&&m.concat(["value"]);var v=Vf(t,{coordDimensions:m});(f=new Mf(v,i)).initData(t)}var y=new Mf(["value"],i);return y.initData(l,s),a&&a(f,y),Py({mainData:f,struct:o,structAttr:"graph",datas:{node:f,edge:y},datasAttr:{node:"data",edge:"edgeData"}}),o.update(),o}var m_=rf({type:"series.graph",init:function(t){m_.superApply(this,"init",arguments),this.legendDataProvider=function(){return this._categoriesData},this.fillDataTextStyle(t.edges||t.links),this._updateCategoriesData()},mergeOption:function(t){m_.superApply(this,"mergeOption",arguments),this.fillDataTextStyle(t.edges||t.links),this._updateCategoriesData()},mergeDefaultAndTheme:function(t){m_.superApply(this,"mergeDefaultAndTheme",arguments),ba(t,["edgeLabel"],["show"])},getInitialData:function(t,s){var e=t.edges||t.links||[],i=t.data||t.nodes||[],l=this;if(i&&e)return g_(i,e,this,!0,function(t,e){t.wrapMethod("getItemModel",function(t){var e=l._categoriesModels[t.getShallow("category")];return e&&(e.parentModel=t.parentModel,t.parentModel=e),t});var i=l.getModel("edgeLabel"),n=new ul({label:i.option},i.parentModel,s),a=l.getModel("emphasis.edgeLabel"),o=new ul({emphasis:{label:a.option}},a.parentModel,s);function r(t){return(t=this.parsePath(t))&&"label"===t[0]?n:t&&"emphasis"===t[0]&&"label"===t[1]?o:this.parentModel}e.wrapMethod("getItemModel",function(t){return t.customizeGetParent(r),t})}).data},getGraph:function(){return this.getData().graph},getEdgeData:function(){return this.getGraph().edgeData},getCategoriesData:function(){return this._categoriesData},formatTooltip:function(t,e,i){if("edge"!==i)return m_.superApply(this,"formatTooltip",arguments);var n=this.getData(),a=this.getDataParams(t,i),o=n.graph.getEdgeByIndex(t),r=n.getName(o.node1.dataIndex),s=n.getName(o.node2.dataIndex),l=[];return null!=r&&l.push(r),null!=s&&l.push(s),l=Vl(l.join(" > ")),a.value&&(l+=" : "+Vl(a.value)),l},_updateCategoriesData:function(){var t=k(this.option.categories||[],function(t){return null!=t.value?t:C({value:0},t)}),e=new Mf(["value"],this);e.initData(t),this._categoriesData=e,this._categoriesModels=e.mapArray(function(t){return e.getItemModel(t,!0)})},setZoom:function(t){this.option.zoom=t},setCenter:function(t){this.option.center=t},isAnimationEnabled:function(){return m_.superCall(this,"isAnimationEnabled")&&!("force"===this.get("layout")&&this.get("force.layoutAnimation"))},defaultOption:{zlevel:0,z:2,coordinateSystem:"view",legendHoverLink:!0,hoverAnimation:!0,layout:null,focusNodeAdjacency:!1,circular:{rotateLabel:!1},force:{initLayout:null,repulsion:[0,50],gravity:.1,edgeLength:30,layoutAnimation:!0},left:"center",top:"center",symbol:"circle",symbolSize:10,edgeSymbol:["none","none"],edgeSymbolSize:10,edgeLabel:{position:"middle"},draggable:!1,roam:!1,center:null,zoom:1,nodeScaleRatio:.6,label:{show:!1,formatter:"{b}"},itemStyle:{},lineStyle:{color:"#aaa",width:1,curveness:0,opacity:.5},emphasis:{label:{show:!0}}}}),v_=Ur.prototype,y_=qr.prototype;function x_(t){return isNaN(+t.cpx1)||isNaN(+t.cpy1)}var __=cs({type:"ec-line",style:{stroke:"#000",fill:null},shape:{x1:0,y1:0,x2:0,y2:0,percent:1,cpx1:null,cpy1:null},buildPath:function(t,e){this[x_(e)?"_buildPathLine":"_buildPathCurve"](t,e)},_buildPathLine:v_.buildPath,_buildPathCurve:y_.buildPath,pointAt:function(t){return this[x_(this.shape)?"_pointAtLine":"_pointAtCurve"](t)},_pointAtLine:v_.pointAt,_pointAtCurve:y_.pointAt,tangentAt:function(t){var e=this.shape,i=x_(e)?[e.x2-e.x1,e.y2-e.y1]:this._tangentAtCurve(t);return mt(i,i)},_tangentAtCurve:y_.tangentAt}),w_=["fromSymbol","toSymbol"];function b_(t){return"_"+t+"Type"}function S_(t,e,i){var n=e.getItemVisual(i,"color"),a=e.getItemVisual(i,t),o=e.getItemVisual(i,t+"Size");if(a&&"none"!==a){O(o)||(o=[o,o]);var r=qp(a,-o[0]/2,-o[1]/2,o[0],o[1],n);return r.name=t,r}}function M_(t,e){t.x1=e[0][0],t.y1=e[0][1],t.x2=e[1][0],t.y2=e[1][1],t.percent=1;var i=e[2];i?(t.cpx1=i[0],t.cpy1=i[1]):(t.cpx1=NaN,t.cpy1=NaN)}function I_(t,e,i){Si.call(this),this._createLine(t,e,i)}var A_=I_.prototype;function T_(t){this._ctor=t||I_,this.group=new Si}A_.beforeUpdate=function(){var t=this.childOfName("fromSymbol"),e=this.childOfName("toSymbol"),i=this.childOfName("label");if(t||e||!i.ignore){for(var n=1,a=this.parent;a;)a.scale&&(n/=a.scale[0]),a=a.parent;var o=this.childOfName("line");if(this.__dirty||o.__dirty){var r=o.shape.percent,s=o.pointAt(0),l=o.pointAt(r),u=ht([],l,s);if(mt(u,u),t){t.attr("position",s);var h=o.tangentAt(0);t.attr("rotation",Math.PI/2-Math.atan2(h[1],h[0])),t.attr("scale",[n*r,n*r])}if(e){e.attr("position",l);h=o.tangentAt(1);e.attr("rotation",-Math.PI/2-Math.atan2(h[1],h[0])),e.attr("scale",[n*r,n*r])}if(!i.ignore){var c,d,f;i.attr("position",l);var p=5*n;if("end"===i.__position)c=[u[0]*p+l[0],u[1]*p+l[1]],d=.8=t&&(0===e?0:n[e-1][0])o&&(e[1-n]=e[n]+c.sign*o),e}function dw(t,e){var i=t[e]-t[1-e];return{span:Math.abs(i),sign:0a*(1-h[0])?(l="jump",r=s-a*(1-h[2])):0<=(r=s-a*h[1])&&(r=s-a*(1-h[1]))<=0&&(r=0),(r*=e.axisExpandWidth/u)?cw(r,n,o,"all"):l="none";else{a=n[1]-n[0];(n=[mw(0,o[1]*s/a-a/2)])[1]=gw(o[1],n[0]+a),n[0]=n[1]-a}return{axisExpandWindow:n,behavior:l}}},Gu.register("parallel",{create:function(n,a){var o=[];return n.eachComponent("parallel",function(t,e){var i=new ww(t,n,a);i.name="parallel_"+e,i.resize(t,a),(t.coordinateSystem=i).model=t,o.push(i)}),n.eachSeries(function(t){if("parallel"===t.get("coordinateSystem")){var e=n.queryComponents({mainType:"parallel",index:t.get("parallelIndex"),id:t.get("parallelId")})[0];t.coordinateSystem=e.coordinateSystem}}),o}});var Sw=hu.extend({type:"baseParallelAxis",axis:null,activeIntervals:[],getAreaSelectStyle:function(){return Xa([["fill","color"],["lineWidth","borderWidth"],["stroke","borderColor"],["width","width"],["opacity","opacity"]])(this.getModel("areaSelectStyle"))},setActiveIntervals:function(t){var e=this.activeIntervals=D(t);if(e)for(var i=e.length-1;0<=i;i--)yl(e[i])},getActiveState:function(t){var e=this.activeIntervals;if(!e.length)return"normal";if(null==t||isNaN(t))return"inactive";if(1===e.length){var i=e[0];if(i[0]<=t&&t<=i[1])return"active"}else for(var n=0,a=e.length;nf&&(f=m.depth),g.setLayout({depth:v?m.depth:c},!0),"vertical"===o?g.setLayout({dy:i},!0):g.setLayout({dx:i},!0);for(var y=0;y "))},preventIncremental:function(){return!!this.get("effect.show")},getProgressive:function(){var t=this.option.progressive;return null==t?this.option.large?1e4:this.get("progressive"):t},getProgressiveThreshold:function(){var t=this.option.progressiveThreshold;return null==t?this.option.large?2e4:this.get("progressiveThreshold"):t},defaultOption:{coordinateSystem:"geo",zlevel:0,z:2,legendHoverLink:!0,hoverAnimation:!0,xAxisIndex:0,yAxisIndex:0,symbol:["none","none"],symbolSize:[10,10],geoIndex:0,effect:{show:!1,period:4,constantSpeed:0,symbol:"circle",symbolSize:3,loop:!0,trailLength:.2},large:!1,largeThreshold:2e3,polyline:!1,label:{show:!1,position:"end"},lineStyle:{opacity:.5}}});function wS(t,e,i){Si.call(this),this.add(this.createLine(t,e,i)),this._updateEffectSymbol(t,e)}var bS=wS.prototype;function SS(t,e,i){Si.call(this),this._createPolyline(t,e,i)}bS.createLine=function(t,e,i){return new I_(t,e,i)},bS._updateEffectSymbol=function(t,e){var i=t.getItemModel(e).getModel("effect"),n=i.get("symbolSize"),a=i.get("symbol");O(n)||(n=[n,n]);var o=i.get("color")||t.getItemVisual(e,"color"),r=this.childAt(1);this._symbolType!==a&&(this.remove(r),(r=qp(a,-.5,-.5,1,1,o)).z2=100,r.culling=!0,this.add(r)),r&&(r.setStyle("shadowColor",o),r.setStyle(i.getItemStyle(["color"])),r.attr("scale",n),r.setColor(o),r.attr("scale",n),this._symbolType=a,this._updateEffectAnimation(t,i,e))},bS._updateEffectAnimation=function(e,t,i){var n=this.childAt(1);if(n){var a=this,o=e.getItemLayout(i),r=1e3*t.get("period"),s=t.get("loop"),l=t.get("constantSpeed"),u=W(t.get("delay"),function(t){return t/e.count()*r/3}),h="function"==typeof u;if(n.ignore=!0,this.updateAnimationPoints(n,o),0e);r++);r=Math.min(r-1,a-2)}wt(t.position,i[r],i[r+1],(e-n[r])/(n[r+1]-n[r]));var s=i[r+1][0]-i[r][0],l=i[r+1][1]-i[r][1];t.rotation=-Math.atan2(l,s)-Math.PI/2,this._lastFrame=r,this._lastFramePercent=e,t.ignore=!1}},w(IS,wS);var TS=cs({shape:{polyline:!1,curveness:0,segs:[]},buildPath:function(t,e){var i=e.segs,n=e.curveness;if(e.polyline)for(var a=0;a=e[0]&&t<=e[1]}}(y,e.option.range):function(e,n,a){var i=e[1]-e[0],o=(n=k(n,function(t){return{interval:[(t.interval[0]-e[0])/i,(t.interval[1]-e[0])/i]}})).length,r=0;return function(t){for(var e=r;e=e.y&&t[1]<=e.y+e.height:i.contain(i.toLocalCoord(t[1]))&&t[0]>=e.y&&t[0]<=e.y+e.height},pointToData:function(t){var e=this.getAxis();return[e.coordToData(e.toLocalCoord(t["horizontal"===e.orient?0:1]))]},dataToPoint:function(t){var e=this.getAxis(),i=this.getRect(),n=[],a="horizontal"===e.orient?0:1;return t instanceof Array&&(t=t[0]),n[a]=e.toGlobalCoord(e.dataToCoord(+t)),n[1-a]=0==a?i.y+i.height/2:i.x+i.width/2,n}}).dimensions});var rM=["axisLine","axisTickLabel","axisName"],sM="splitLine",lM=Gm.extend({type:"singleAxis",axisPointerClass:"SingleAxisPointer",render:function(t,e,i,n){var a=this.group;a.removeAll();var o=oM(t),r=new Mm(t,o);L(rM,r.add,r),a.add(r.getGroup()),t.get(sM+".show")&&this["_"+sM](t),lM.superCall(this,"render",t,e,i,n)},_splitLine:function(t){var e=t.axis;if(!e.scale.isBlank()){var i=t.getModel("splitLine"),n=i.getModel("lineStyle"),a=n.get("width"),o=n.get("color");o=o instanceof Array?o:[o];for(var r=t.coordinateSystem.getRect(),s=e.isHorizontal(),l=[],u=0,h=e.getTicksCoords({tickModel:i}),c=[],d=[],f=0;fr)return!0;if(o){var s=Em(t).seriesDataCount,l=n.getExtent();return Math.abs(l[0]-l[1])/s>r}return!1},makeElOption:function(t,e,i,n,a){},createPointerEl:function(t,e,i,n){var a=e.pointer;if(a){var o=AM(t).pointerEl=new il[a.type](TM(e.pointer));t.add(o)}},createLabelEl:function(t,e,i,n){if(e.label){var a=AM(t).labelEl=new Hr(TM(e.label));t.add(a),kM(a,n)}},updatePointerEl:function(t,e,i){var n=AM(t).pointerEl;n&&e.pointer&&(n.setStyle(e.pointer.style),i(n,{shape:e.pointer.shape}))},updateLabelEl:function(t,e,i,n){var a=AM(t).labelEl;a&&(a.setStyle(e.label.style),i(a,{shape:e.label.shape,position:e.label.position}),kM(a,n))},_renderHandle:function(t){if(!this._dragging&&this.updateHandleTransform){var e,i=this._axisPointerModel,n=this._api.getZr(),a=this._handle,o=i.getModel("handle"),r=i.get("status");if(!o.get("show")||!r||"hide"===r)return a&&n.remove(a),void(this._handle=null);this._handle||(e=!0,a=this._handle=Js(o.get("icon"),{cursor:"move",draggable:!0,onmousemove:function(t){Ft(t.event)},onmousedown:DM(this._onHandleDragMove,this,0,0),drift:DM(this._onHandleDragMove,this),ondragend:DM(this._onHandleDragEnd,this)}),n.add(a)),NM(a,i,!1);a.setStyle(o.getItemStyle(null,["color","borderColor","borderWidth","opacity","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"]));var s=o.get("size");O(s)||(s=[s,s]),a.attr("scale",[s[0]/2,s[1]/2]),uc(this,"_doDispatchAxisPointer",o.get("throttle")||0,"fixRate"),this._moveHandleToValue(t,e)}},_moveHandleToValue:function(t,e){LM(this._axisPointerModel,!e&&this._moveAnimation,this._handle,PM(this.getHandleTransform(t,this._axisModel,this._axisPointerModel)))},_onHandleDragMove:function(t,e){var i=this._handle;if(i){this._dragging=!0;var n=this.updateHandleTransform(PM(i),[t,e],this._axisModel,this._axisPointerModel);this._payloadInfo=n,i.stopAnimation(),i.attr(PM(n)),AM(i).lastProp=null,this._doDispatchAxisPointer()}},_doDispatchAxisPointer:function(){if(this._handle){var t=this._payloadInfo,e=this._axisModel;this._api.dispatchAction({type:"updateAxisPointer",x:t.cursorPoint[0],y:t.cursorPoint[1],tooltipOption:t.tooltipOption,axesInfo:[{axisDim:e.axis.dim,axisIndex:e.componentIndex}]})}},_onHandleDragEnd:function(t){if(this._dragging=!1,this._handle){var e=this._axisPointerModel.get("value");this._moveHandleToValue(e),this._api.dispatchAction({type:"hideTip"})}},getHandleTransform:null,updateHandleTransform:null,clear:function(t){this._lastValue=null,this._lastStatus=null;var e=t.getZr(),i=this._group,n=this._handle;e&&i&&(this._lastGraphicKey=null,i&&e.remove(i),n&&e.remove(n),this._group=null,this._handle=null,this._payloadInfo=null)},doClear:function(){},buildLabel:function(t,e,i){return{x:t[i=i||0],y:t[1-i],width:e[i],height:e[1-i]}}}).constructor=CM);var WM=CM.extend({makeElOption:function(t,e,i,n,a){var o=i.axis,r=o.grid,s=n.get("type"),l=HM(r,o).getOtherAxis(o).getGlobalExtent(),u=o.toGlobalCoord(o.dataToCoord(e,!0));if(s&&"none"!==s){var h=OM(n),c=ZM[s](o,u,l);c.style=h,t.graphicKey=c.type,t.pointer=c}BM(e,t,Zm(r.model,i),i,n,a)},getHandleTransform:function(t,e,i){var n=Zm(e.axis.grid.model,e,{labelInside:!1});return n.labelMargin=i.get("handle.margin"),{position:EM(e.axis,t,n),rotation:n.rotation+(n.labelDirection<0?Math.PI:0)}},updateHandleTransform:function(t,e,i,n){var a=i.axis,o=a.grid,r=a.getGlobalExtent(!0),s=HM(o,a).getOtherAxis(a).getGlobalExtent(),l="x"===a.dim?0:1,u=t.position;u[l]+=e[l],u[l]=Math.min(r[1],u[l]),u[l]=Math.max(r[0],u[l]);var h=(s[1]+s[0])/2,c=[h,h];c[l]=u[l];return{position:u,rotation:t.rotation,cursorPoint:c,tooltipOption:[{verticalAlign:"middle"},{align:"center"}][l]}}});function HM(t,e){var i={};return i[e.dim+"AxisIndex"]=e.index,t.getCartesian(i)}var ZM={line:function(t,e,i){return{type:"Line",subPixelOptimize:!0,shape:VM([e,i[0]],[e,i[1]],UM(t))}},shadow:function(t,e,i){var n=Math.max(1,t.getBandWidth()),a=i[1]-i[0];return{type:"Rect",shape:GM([e-n/2,i[0]],[n,a],UM(t))}}};function UM(t){return"x"===t.dim?0:1}Gm.registerAxisPointerClass("CartesianAxisPointer",WM),qd(function(t){if(t){t.axisPointer&&0!==t.axisPointer.length||(t.axisPointer={});var e=t.axisPointer.link;e&&!O(e)&&(t.axisPointer.link=[e])}}),Kd(ld.PROCESSOR.STATISTIC,function(t,e){t.getComponent("axisPointer").coordSysAxesInfo=zm(t,e)}),$d({type:"updateAxisPointer",event:"updateAxisPointer",update:":updateAxisPointer"},function(t,e,i){var n=t.currTrigger,r=[t.x,t.y],a=t,o=t.dispatchAction||N(i.dispatchAction,i),s=e.getComponent("axisPointer").coordSysAxesInfo;if(s){yM(r)&&(r=hM({seriesIndex:a.seriesIndex,dataIndex:a.dataIndex},e).point);var l=yM(r),u=a.axesInfo,h=s.axesInfo,c="leave"===n||yM(r),d={},f={},p={list:[],map:{}},g={showPointer:dM(gM,f),showTooltip:dM(mM,p)};cM(s.coordSysMap,function(t,e){var o=l||t.containPoint(r);cM(s.coordSysAxesInfo[e],function(t,e){var i=t.axis,n=function(t,e){for(var i=0;i<(t||[]).length;i++){var n=t[i];if(e.axis.dim===n.axisDim&&e.axis.model.componentIndex===n.axisIndex)return n}}(u,t);if(!c&&o&&(!u||n)){var a=n&&n.value;null!=a||l||(a=i.pointToData(r)),null!=a&&pM(t,a,g,!1,d)}})});var m={};return cM(h,function(a,t){var o=a.linkGroup;o&&!f[t]&&cM(o.axesInfo,function(t,e){var i=f[e];if(t!==a&&i){var n=i.value;o.mapper&&(n=a.axis.scale.parse(o.mapper(n,vM(t),vM(a)))),m[a.key]=n}})}),cM(m,function(t,e){pM(h[e],t,g,!0,d)}),function(a,t,e){var o=e.axesInfo=[];cM(t,function(t,e){var i=t.axisPointerModel.option,n=a[e];n?(t.useHandle||(i.status="show"),i.value=n.value,i.seriesDataIndices=(n.payloadBatch||[]).slice()):t.useHandle||(i.status="hide"),"show"===i.status&&o.push({axisDim:t.axis.dim,axisIndex:t.axis.model.componentIndex,value:i.value})})}(f,h,d),function(t,e,i,n){if(yM(e)||!t.list.length)return n({type:"hideTip"});var a=((t.list[0].dataByAxis[0]||{}).seriesDataIndices||[])[0]||{};n({type:"showTip",escapeConnect:!0,x:e[0],y:e[1],tooltipOption:i.tooltipOption,position:i.position,dataIndexInside:a.dataIndexInside,dataIndex:a.dataIndex,seriesIndex:a.seriesIndex,dataByCoordSys:t.list})}(p,r,t,o),function(t,e,i){var n=i.getZr(),a="axisPointerLastHighlights",o=fM(n)[a]||{},r=fM(n)[a]={};cM(t,function(t,e){var i=t.axisPointerModel.option;"show"===i.status&&cM(i.seriesDataIndices,function(t){var e=t.seriesIndex+" | "+t.dataIndex;r[e]=t})});var s=[],l=[];L(o,function(t,e){r[e]||l.push(t)}),L(r,function(t,e){o[e]||s.push(t)}),l.length&&i.dispatchAction({type:"downplay",escapeConnect:!0,batch:l}),s.length&&i.dispatchAction({type:"highlight",escapeConnect:!0,batch:s})}(h,0,i),d}});var XM=["x","y"],YM=["width","height"],jM=CM.extend({makeElOption:function(t,e,i,n,a){var o=i.axis,r=o.coordinateSystem,s=$M(r,1-KM(o)),l=r.dataToPoint(e)[0],u=n.get("type");if(u&&"none"!==u){var h=OM(n),c=qM[u](o,l,s);c.style=h,t.graphicKey=c.type,t.pointer=c}BM(e,t,oM(i),i,n,a)},getHandleTransform:function(t,e,i){var n=oM(e,{labelInside:!1});return n.labelMargin=i.get("handle.margin"),{position:EM(e.axis,t,n),rotation:n.rotation+(n.labelDirection<0?Math.PI:0)}},updateHandleTransform:function(t,e,i,n){var a=i.axis,o=a.coordinateSystem,r=KM(a),s=$M(o,r),l=t.position;l[r]+=e[r],l[r]=Math.min(s[1],l[r]),l[r]=Math.max(s[0],l[r]);var u=$M(o,1-r),h=(u[1]+u[0])/2,c=[h,h];return c[r]=l[r],{position:l,rotation:t.rotation,cursorPoint:c,tooltipOption:{verticalAlign:"middle"}}}}),qM={line:function(t,e,i){return{type:"Line",subPixelOptimize:!0,shape:VM([e,i[0]],[e,i[1]],KM(t))}},shadow:function(t,e,i){var n=t.getBandWidth(),a=i[1]-i[0];return{type:"Rect",shape:GM([e-n/2,i[0]],[n,a],KM(t))}}};function KM(t){return t.isHorizontal()?0:1}function $M(t,e){var i=t.getRect();return[i[XM[e]],i[XM[e]]+i[YM[e]]]}Gm.registerAxisPointerClass("SingleAxisPointer",jM),of({type:"single"});var JM=Vh.extend({type:"series.themeRiver",dependencies:["singleAxis"],nameMap:null,init:function(t){JM.superApply(this,"init",arguments),this.legendDataProvider=function(){return this.getRawData()}},fixData:function(t){var e=t.length,i=Ra(t,function(t){return t[2]}),n=[];i.buckets.each(function(t,e){n.push({name:e,dataList:t})});for(var a=n.length,o=-1,r=-1,s=0;sMath.PI/2?"right":"left"):y&&"center"!==y?"left"===y?(d=l.r0+v,f>Math.PI/2&&(y="right")):"right"===y&&(d=l.r-v,f>Math.PI/2&&(y="left")):(d=(l.r+l.r0)/2,y="center"),c.attr("style",{text:s,textAlign:y,textVerticalAlign:S("verticalAlign")||"middle",opacity:S("opacity")});var x=d*p+l.cx,_=d*g+l.cy;c.attr("position",[x,_]);var w=S("rotate"),b=0;function S(t){var e=o.get(t);return null==e?a.get(t):e}"radial"===w?(b=-f)<-Math.PI/2&&(b+=Math.PI):"tangential"===w?(b=Math.PI/2-f)>Math.PI/2?b-=Math.PI:b<-Math.PI/2&&(b+=Math.PI):"number"==typeof w&&(b=w*Math.PI/180),c.attr("rotation",b)},rI._initEvents=function(t,e,i,n){t.off("mouseover").off("mouseout").off("emphasis").off("normal");function a(){r.onEmphasis(n)}function o(){r.onNormal()}var r=this;i.isAnimationEnabled()&&t.on("mouseover",a).on("mouseout",o).on("emphasis",a).on("normal",o).on("downplay",function(){r.onDownplay()}).on("highlight",function(){r.onHighlight()})},w(oI,Si);Jh.extend({type:"sunburst",init:function(){},render:function(a,o,t,e){var n=this;this.seriesModel=a,this.api=t,this.ecModel=o;var r=a.getData(),s=r.tree.root,i=a.getViewRoot(),l=this.group,u=a.get("renderLabelForZeroData"),h=[];i.eachNode(function(t){h.push(t)});var c=this._oldChildren||[];if(function(i,n){if(0===i.length&&0===n.length)return;function t(t){return t.getId()}function e(t,e){!function(t,e){u||!t||t.getValue()||(t=null);if(t!==s&&e!==s)if(e&&e.piece)t?(e.piece.updateData(!1,t,"normal",a,o),r.setItemGraphicEl(t.dataIndex,e.piece)):function(t){if(!t)return;t.piece&&(l.remove(t.piece),t.piece=null)}(e);else if(t){var i=new oI(t,a,o);l.add(i),r.setItemGraphicEl(t.dataIndex,i)}}(null==t?null:i[t],null==e?null:n[e])}new uf(n,i,t,t).add(e).update(e).remove(A(e,null)).execute()}(h,c),function(t,e){if(0=i.r0}}});var sI="sunburstRootToNode";$d({type:sI,update:"updateView"},function(a,t){t.eachComponent({mainType:"series",subType:"sunburst",query:a},function(t,e){var i=ix(a,[sI],t);if(i){var n=t.getViewRoot();n&&(a.direction=ax(n,i.node)?"rollUp":"drillDown"),t.resetViewRoot(i.node)}})});var lI="sunburstHighlight";$d({type:lI,update:"updateView"},function(n,t){t.eachComponent({mainType:"series",subType:"sunburst",query:n},function(t,e){var i=ix(n,[lI],t);i&&(n.highlight=i.node)})});$d({type:"sunburstUnhighlight",update:"updateView"},function(i,t){t.eachComponent({mainType:"series",subType:"sunburst",query:i},function(t,e){i.unhighlight=!0})});var uI=Math.PI/180;function hI(t,e){if("function"==typeof e)return t.sort(e);var n="asc"===e;return t.sort(function(t,e){var i=(t.getValue()-e.getValue())*(n?1:-1);return 0==i?(t.dataIndex-e.dataIndex)*(n?-1:1):i})}function cI(o,r){return r=r||[0,0],k(["x","y"],function(t,e){var i=this.getAxis(t),n=r[e],a=o[e]/2;return"category"===i.type?i.getBandWidth():Math.abs(i.dataToCoord(n-a)-i.dataToCoord(n+a))},this)}tf(A(mv,"sunburst")),Qd(A(function(t,e,C,i){e.eachSeriesByType(t,function(t){var e=t.get("center"),i=t.get("radius");O(i)||(i=[0,i]),O(e)||(e=[e,e]);var n=C.getWidth(),a=C.getHeight(),h=Math.min(n,a),c=ml(e[0],n),d=ml(e[1],a),f=ml(i[0],h/2),o=ml(i[1],h/2),r=-t.get("startAngle")*uI,p=t.get("minAngle")*uI,g=t.getData().tree.root,s=t.getViewRoot(),m=s.depth,l=t.get("sort");null!=l&&!function e(t,i){var n=t.children||[];t.children=hI(n,i);n.length&&L(t.children,function(t){e(t,i)})}(s,l);var u=0;L(s.children,function(t){isNaN(t.getValue())||u++});var v=s.getValue(),y=Math.PI/(v||u)*2,x=0t[1]&&t.reverse(),{coordSys:{type:"polar",cx:a.cx,cy:a.cy,r:t[1],r0:t[0]},api:{coord:N(function(t){var e=o.dataToRadius(t[0]),i=r.dataToAngle(t[1]),n=a.coordToPoint([e,i]);return n.push(e,i*Math.PI/180),n}),size:N(pI,a)}}},calendar:function(i){var t=i.getRect(),e=i.getRangeInfo();return{coordSys:{type:"calendar",x:t.x,y:t.y,width:t.width,height:t.height,cellWidth:i.getCellWidth(),cellHeight:i.getCellHeight(),rangeInfo:{start:e.start,end:e.end,weeks:e.weeks,dayCount:e.allDay}},api:{coord:function(t,e){return i.dataToPoint(t,e)}}}}};function bI(t,e,i,n,a){null==i[t]||a||(e[t]=i[t],i[t]=n[t])}function SI(o,r,e,t){var i=o.get("renderItem"),n=o.coordinateSystem,a={};n&&(a=n.prepareCustoms?n.prepareCustoms():wI[n.type](n));var s,l,u,h,c,d=T({getWidth:t.getWidth,getHeight:t.getHeight,getZr:t.getZr,getDevicePixelRatio:t.getDevicePixelRatio,value:function(t,e){return null==e&&(e=s),r.get(r.getDimension(t||0),e)},style:function(t,e){null==e&&(e=s),g(e);var i=l.getModel(mI).getItemStyle();null!=c&&(i.fill=c);var n=r.getItemVisual(e,"opacity");null!=n&&(i.opacity=n);var a=t?DI(t,u):u;return Es(i,a,null,{autoColor:c,isRectText:!0}),i.text=a.getShallow("show")?H(o.getFormattedLabel(e,"normal"),xg(r,e)):null,t&&CI(i,t),i},styleEmphasis:function(t,e){null==e&&(e=s),g(e);var i=l.getModel(vI).getItemStyle(),n=t?DI(t,h):h;return Es(i,n,null,{isRectText:!0},!0),i.text=n.getShallow("show")?Z(o.getFormattedLabel(e,"emphasis"),o.getFormattedLabel(e,"normal"),xg(r,e)):null,t&&CI(i,t),i},visual:function(t,e){return null==e&&(e=s),r.getItemVisual(e,t)},barLayout:function(t){if(n.getBaseAxis){return function(t){var e=[],i=t.axis;if("category"===i.type){for(var n=i.getBandWidth(),a=0;ae[0]&&(e=e.slice().reverse());var n=t.coordToPoint([e[0],i]),a=t.coordToPoint([e[1],i]);return{x1:n[0],y1:n[1],x2:a[0],y2:a[1]}}function XI(t){return t.getRadiusAxis().inverse?0:1}function YI(t){var e=t[0],i=t[t.length-1];e&&i&&Math.abs(Math.abs(e.coord-i.coord)-360)<1e-4&&t.pop()}Gm.extend({type:"angleAxis",axisPointerClass:"PolarAxisPointer",render:function(e,t){if(this.group.removeAll(),e.get("show")){var i=e.axis,n=i.polar,a=n.getRadiusAxis().getExtent(),o=i.getTicksCoords(),r=k(i.getViewLabels(),function(t){return(t=D(t)).coord=i.dataToCoord(t.tickValue),t});YI(r),YI(o),L(ZI,function(t){!e.get(t+".show")||i.scale.isBlank()&&"axisLine"!==t||this["_"+t](e,n,o,a,r)},this)}},_axisLine:function(t,e,i,n){var a=t.getModel("axisLine.lineStyle"),o=new Lr({shape:{cx:e.cx,cy:e.cy,r:n[XI(e)]},style:a.getLineStyle(),z2:1,silent:!0});o.style.fill=null,this.group.add(o)},_axisTick:function(t,e,i,n){var a=t.getModel("axisTick"),o=(a.get("inside")?-1:1)*a.get("length"),r=n[XI(e)],s=k(i,function(t){return new Ur({shape:UI(e,[r,r+o],t.coord)})});this.group.add(gs(s,{style:T(a.getModel("lineStyle").getLineStyle(),{stroke:t.get("axisLine.lineStyle.color")})}))},_axisLabel:function(c,d,t,f,e){var p=c.getCategories(!0),g=c.getModel("axisLabel"),m=g.get("margin"),v=c.get("triggerEvent");L(e,function(t,e){var i=g,n=t.tickValue,a=f[XI(d)],o=d.coordToPoint([a+m,t.coord]),r=d.cx,s=d.cy,l=Math.abs(o[0]-r)/a<.3?"center":o[0]>r?"left":"right",u=Math.abs(o[1]-s)/a<.3?"middle":o[1]>s?"top":"bottom";p&&p[n]&&p[n].textStyle&&(i=new ul(p[n].textStyle,g,g.ecModel));var h=new Dr({silent:Mm.isLabelSilent(c)});this.group.add(h),Es(h.style,i,{x:o[0],y:o[1],textFill:i.getTextColor()||c.get("axisLine.lineStyle.color"),text:t.formattedLabel,textAlign:l,textVerticalAlign:u}),v&&(h.eventData=Mm.makeAxisEventDataBase(c),h.eventData.targetType="axisLabel",h.eventData.value=t.rawLabel)},this)},_splitLine:function(t,e,i,n){var a=t.getModel("splitLine").getModel("lineStyle"),o=a.get("color"),r=0;o=o instanceof Array?o:[o];for(var s=[],l=0;lm?"left":"right",h=Math.abs(l[1]-v)/g<.3?"middle":l[1]>v?"top":"bottom"}return{position:l,align:u,verticalAlign:h}}(e,i,0,s,d))}});var $I={line:function(t,e,i,n,a){return"angle"===t.dim?{type:"Line",shape:VM(e.coordToPoint([n[0],i]),e.coordToPoint([n[1],i]))}:{type:"Circle",shape:{cx:e.cx,cy:e.cy,r:i}}},shadow:function(t,e,i,n,a){var o=Math.max(1,t.getBandWidth()),r=Math.PI/180;return"angle"===t.dim?{type:"Sector",shape:FM(e.cx,e.cy,n[0],n[1],(-i-o/2)*r,(o/2-i)*r)}:{type:"Sector",shape:FM(e.cx,e.cy,i-o/2,i+o/2,0,2*Math.PI)}}};function JI(n,t){t.update="updateView",$d(t,function(t,e){var i={};return e.eachComponent({mainType:"geo",query:t},function(e){e[n](t.name),L(e.coordinateSystem.regions,function(t){i[t.name]=e.isSelected(t.name)||!1})}),{selected:i,name:t.name}})}Gm.registerAxisPointerClass("PolarAxisPointer",KI),Qd(A(function(t,e,i){var P={},N=function(t){var g={};L(t,function(t,e){var i=t.getData(),n=t.coordinateSystem,a=n.getBaseAxis(),o=OI(n,a),r=a.getExtent(),s="category"===a.type?a.getBandWidth():Math.abs(r[1]-r[0])/i.count(),l=g[o]||{bandWidth:s,remainedWidth:s,autoWidthCount:0,categoryGap:"20%",gap:"30%",stacks:{}},u=l.stacks;g[o]=l;var h=NI(t);u[h]||l.autoWidthCount++,u[h]=u[h]||{width:0,maxWidth:0};var c=ml(t.get("barWidth"),s),d=ml(t.get("barMaxWidth"),s),f=t.get("barGap"),p=t.get("barCategoryGap");c&&!u[h].width&&(c=Math.min(l.remainedWidth,c),u[h].width=c,l.remainedWidth-=c),d&&(u[h].maxWidth=d),null!=f&&(l.gap=f),null!=p&&(l.categoryGap=p)});var d={};return L(g,function(t,i){d[i]={};var e=t.stacks,n=t.bandWidth,a=ml(t.categoryGap,n),o=ml(t.gap,1),r=t.remainedWidth,s=t.autoWidthCount,l=(r-a)/(s+(s-1)*o);l=Math.max(l,0),L(e,function(t,e){var i=t.maxWidth;i&&i=n.start.time&&i.timeo.end.time&&t.reverse(),t},_getRangeInfo:function(t){var e;(t=[this.getDateInfo(t[0]),this.getDateInfo(t[1])])[0].time>t[1].time&&(e=!0,t.reverse());var i=Math.floor(t[1].time/864e5)-Math.floor(t[0].time/864e5)+1,n=new Date(t[0].time),a=n.getDate(),o=t[1].date.getDate();if(n.setDate(a+i-1),n.getDate()!==o)for(var r=0n.weeks||0===t&&en.lweek)return!1;var a=7*(t-1)-n.fweek+e,o=new Date(n.start.time);return o.setDate(n.start.d+a),this.getDateInfo(o)}},QI.dimensions=QI.prototype.dimensions,QI.getDimensionsInfo=QI.prototype.getDimensionsInfo,QI.create=function(i,n){var a=[];return i.eachComponent("calendar",function(t){var e=new QI(t,i,n);a.push(e),t.coordinateSystem=e}),i.eachSeries(function(t){"calendar"===t.get("coordinateSystem")&&(t.coordinateSystem=a[t.get("calendarIndex")||0])}),a},Gu.register("calendar",QI);var eA=hu.extend({type:"calendar",coordinateSystem:null,defaultOption:{zlevel:0,z:2,left:80,top:60,cellSize:20,orient:"horizontal",splitLine:{show:!0,lineStyle:{color:"#000",width:1,type:"solid"}},itemStyle:{color:"#fff",borderWidth:1,borderColor:"#ccc"},dayLabel:{show:!0,firstDay:0,position:"start",margin:"50%",nameMap:"en",color:"#000"},monthLabel:{show:!0,position:"start",margin:5,align:"center",nameMap:"en",formatter:null,color:"#000"},yearLabel:{show:!0,position:null,margin:30,formatter:null,color:"#ccc",fontFamily:"sans-serif",fontWeight:"bolder",fontSize:20}},init:function(t,e,i,n){var a=au(t);eA.superApply(this,"init",arguments),iA(t,a)},mergeOption:function(t,e){eA.superApply(this,"mergeOption",arguments),iA(this.option,t)}});function iA(t,e){var i=t.cellSize;O(i)?1===i.length&&(i[1]=i[0]):i=t.cellSize=[i,i];var n=k([0,1],function(t){return function(t,e){return null!=t[Jl[e][0]]||null!=t[Jl[e][1]]&&null!=t[Jl[e][2]]}(e,t)&&(i[t]="auto"),null!=i[t]&&"auto"!==i[t]});nu(t,e,{type:"box",ignoreSize:n})}var nA={EN:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],CN:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"]},aA={EN:["S","M","T","W","T","F","S"],CN:["日","一","二","三","四","五","六"]};of({type:"calendar",_tlpoints:null,_blpoints:null,_firstDayOfMonth:null,_firstDayPoints:null,render:function(t,e,i){var n=this.group;n.removeAll();var a=t.coordinateSystem,o=a.getRangeInfo(),r=a.getOrient();this._renderDayRect(t,o,n),this._renderLines(t,o,r,n),this._renderYearText(t,o,r,n),this._renderMonthText(t,r,n),this._renderWeekText(t,o,r,n)},_renderDayRect:function(t,e,i){for(var n=t.coordinateSystem,a=t.getModel("itemStyle").getItemStyle(),o=n.getCellWidth(),r=n.getCellHeight(),s=e.start.time;s<=e.end.time;s=n.getNextNDay(s,1).time){var l=n.dataToRect([s],!1).tl,u=new Hr({shape:{x:l[0],y:l[1],width:o,height:r},cursor:"default",style:a});i.add(u)}},_renderLines:function(i,t,n,a){var o=this,r=i.coordinateSystem,s=i.getModel("splitLine.lineStyle").getLineStyle(),l=i.get("splitLine.show"),e=s.lineWidth;this._tlpoints=[],this._blpoints=[],this._firstDayOfMonth=[],this._firstDayPoints=[];for(var u=t.start,h=0;u.time<=t.end.time;h++){d(u.formatedDate),0===h&&(u=r.getDateInfo(t.start.y+"-"+t.start.m));var c=u.date;c.setMonth(c.getMonth()+1),u=r.getDateInfo(c)}function d(t){o._firstDayOfMonth.push(r.getDateInfo(t)),o._firstDayPoints.push(r.dataToRect([t],!1).tl);var e=o._getLinePointsOfOneWeek(i,t,n);o._tlpoints.push(e[0]),o._blpoints.push(e[e.length-1]),l&&o._drawSplitline(e,s,a)}d(r.getNextNDay(t.end.time,1).formatedDate),l&&this._drawSplitline(o._getEdgesPoints(o._tlpoints,e,n),s,a),l&&this._drawSplitline(o._getEdgesPoints(o._blpoints,e,n),s,a)},_getEdgesPoints:function(t,e,i){var n=[t[0].slice(),t[t.length-1].slice()],a="horizontal"===i?0:1;return n[0][a]=n[0][a]-e/2,n[1][a]=n[1][a]+e/2,n},_drawSplitline:function(t,e,i){var n=new Er({z2:20,shape:{points:t},style:e});i.add(n)},_getLinePointsOfOneWeek:function(t,e,i){var n=t.coordinateSystem;e=n.getDateInfo(e);for(var a=[],o=0;o<7;o++){var r=n.getNextNDay(e.time,o),s=n.dataToRect([r.time],!1);a[2*r.day]=s.tl,a[2*r.day+1]=s["horizontal"===i?"bl":"tr"]}return a},_formatterLabel:function(t,e){return"string"==typeof t&&t?Hl(t,e):"function"==typeof t?t(e):e.nameMap},_yearTextPositionControl:function(t,e,i,n,a){e=e.slice();var o=["center","bottom"];"bottom"===n?(e[1]+=a,o=["center","top"]):"left"===n?e[0]-=a:"right"===n?(e[0]+=a,o=["center","top"]):e[1]-=a;var r=0;return"left"!==n&&"right"!==n||(r=Math.PI/2),{rotation:r,position:e,style:{textAlign:o[0],textVerticalAlign:o[1]}}},_renderYearText:function(t,e,i,n){var a=t.getModel("yearLabel");if(a.get("show")){var o=a.get("margin"),r=a.get("position");r=r||("horizontal"!==i?"top":"left");var s=[this._tlpoints[this._tlpoints.length-1],this._blpoints[0]],l=(s[0][0]+s[1][0])/2,u=(s[0][1]+s[1][1])/2,h="horizontal"===i?0:1,c={top:[l,s[h][1]],bottom:[l,s[1-h][1]],left:[s[1-h][0],u],right:[s[h][0],u]},d=e.start.y;+e.end.y>+e.start.y&&(d=d+"-"+e.end.y);var f=a.get("formatter"),p={start:e.start.y,end:e.end.y,nameMap:d},g=this._formatterLabel(f,p),m=new Dr({z2:30});Es(m.style,a,{text:g}),m.attr(this._yearTextPositionControl(m,c[r],i,r,o)),n.add(m)}},_monthTextPositionControl:function(t,e,i,n,a){var o="left",r="top",s=t[0],l=t[1];return"horizontal"===i?(l+=a,e&&(o="center"),"start"===n&&(r="bottom")):(s+=a,e&&(r="middle"),"start"===n&&(o="right")),{x:s,y:l,textAlign:o,textVerticalAlign:r}},_renderMonthText:function(t,e,i){var n=t.getModel("monthLabel");if(n.get("show")){var a=n.get("nameMap"),o=n.get("margin"),r=n.get("position"),s=n.get("align"),l=[this._tlpoints,this._blpoints];R(a)&&(a=nA[a.toUpperCase()]||[]);var u="start"===r?0:1,h="horizontal"===e?0:1;o="start"===r?-o:o;for(var c="center"===s,d=0;dd.getHeight()&&(i.textPosition="top",o=!0);var r=o?-5-n.height:p+8;a+n.width/2>d.getWidth()?(i.textPosition=["100%",r],i.textAlign="right"):a-n.width/2<0&&(i.textPosition=[0,r],i.textAlign="left")}})}function t(t,e){var i,n=g[t],a=g[e],o=new ul(l[n],h,h.ecModel);if(n&&!a){if(function(t){return 0===t.indexOf("my")}(n))i={model:o,onclick:o.option.onclick,featureName:n};else{var r=cA(n);if(!r)return;i=new r(o,c,d)}u[n]=i}else{if(!(i=u[a]))return;i.model=o,i.ecModel=c,i.api=d}n||!a?o.get("show")&&!i.unusable?(function(a,o,t){var r=a.getModel("iconStyle"),s=a.getModel("emphasis.iconStyle"),e=o.getIcons?o.getIcons():a.get("icon"),l=a.get("title")||{};if("string"==typeof e){var i=e,n=l;l={},(e={})[t]=i,l[t]=n}var u=a.iconPaths={};L(e,function(t,e){var i=Js(t,{},{x:-p/2,y:-p/2,width:p,height:p});i.setStyle(r.getItemStyle()),i.hoverStyle=s.getItemStyle();var n=h.getModel("tooltip");n&&n.get("show")&&i.attr("tooltip",C({content:l[e],formatter:n.get("formatter",!0)||function(){return l[e]},formatterParams:{componentType:"toolbox",name:e,title:l[e],$vars:["name","title"]},position:n.get("position",!0)||"bottom"},n.option)),ks(i),h.get("showTitle")&&(i.__title=l[e],i.on("mouseover",function(){var t=s.getItemStyle();i.setStyle({text:l[e],textPosition:s.get("textPosition")||"bottom",textFill:s.get("textFill")||t.fill||t.stroke||"#000",textAlign:s.get("textAlign")||"center",textBackgroundColor:s.get("textBackgroundColor"),textBorderRadius:s.get("textBorderRadius"),textPadding:s.get("textPadding")})}).on("mouseout",function(){i.setStyle({textFill:null,textBackgroundColor:null})})),i.trigger(a.get("iconStatus."+e)||"normal"),f.add(i),i.on("click",N(o.onclick,o,c,d,e)),u[e]=i})}(o,i,n),o.setIconStatus=function(t,e){var i=this.option,n=this.iconPaths;i.iconStatus=i.iconStatus||{},i.iconStatus[t]=e,n[t]&&n[t].trigger(e)},i.render&&i.render(o,c,d,s)):i.remove&&i.remove(c,d):i.dispose&&i.dispose(c,d)}},updateView:function(t,e,i,n){L(this._features,function(t){t.updateView&&t.updateView(t.model,e,i,n)})},remove:function(e,i){L(this._features,function(t){t.remove&&t.remove(e,i)}),this.group.removeAll()},dispose:function(e,i){L(this._features,function(t){t.dispose&&t.dispose(e,i)})}});var pA=dc.toolbox.saveAsImage;function gA(t){this.model=t}gA.defaultOption={show:!0,icon:"M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0",title:pA.title,type:"png",connectedBackgroundColor:"#fff",name:"",excludeComponents:["toolbox"],pixelRatio:1,lang:pA.lang.slice()},gA.prototype.unusable=!v.canvasSupported,gA.prototype.onclick=function(t,e){var i=this.model,n=i.get("name")||t.get("title.0.text")||"echarts",a=i.get("type",!0)||"png",o=e.getConnectedDataURL({type:a,backgroundColor:i.get("backgroundColor",!0)||t.get("backgroundColor")||"#fff",connectedBackgroundColor:i.get("connectedBackgroundColor"),excludeComponents:i.get("excludeComponents"),pixelRatio:i.get("pixelRatio")});if("function"!=typeof MouseEvent||v.browser.ie||v.browser.edge)if(window.navigator.msSaveOrOpenBlob){for(var r=atob(o.split(",")[1]),s=r.length,l=new Uint8Array(s);s--;)l[s]=r.charCodeAt(s);var u=new Blob([l]);window.navigator.msSaveOrOpenBlob(u,n+"."+a)}else{var h=i.get("lang"),c='';window.open().document.write(c)}else{var d=document.createElement("a");d.download=n+"."+a,d.target="_blank",d.href=o;var f=new MouseEvent("click",{view:window,bubbles:!0,cancelable:!1});d.dispatchEvent(f)}},hA("saveAsImage",gA);var mA=dc.toolbox.magicType;function vA(t){this.model=t}vA.defaultOption={show:!0,type:[],icon:{line:"M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4",bar:"M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7",stack:"M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z",tiled:"M2.3,2.2h22.8V25H2.3V2.2z M35,2.2h22.8V25H35V2.2zM2.3,35h22.8v22.8H2.3V35z M35,35h22.8v22.8H35V35z"},title:D(mA.title),option:{},seriesIndex:{}};var yA=vA.prototype;yA.getIcons=function(){var t=this.model,e=t.get("icon"),i={};return L(t.get("type"),function(t){e[t]&&(i[t]=e[t])}),i};var xA={line:function(t,e,i,n){if("bar"===t)return m({id:e,type:"line",data:i.get("data"),stack:i.get("stack"),markPoint:i.get("markPoint"),markLine:i.get("markLine")},n.get("option.line")||{},!0)},bar:function(t,e,i,n){if("line"===t)return m({id:e,type:"bar",data:i.get("data"),stack:i.get("stack"),markPoint:i.get("markPoint"),markLine:i.get("markLine")},n.get("option.bar")||{},!0)},stack:function(t,e,i,n){if("line"===t||"bar"===t)return m({id:e,stack:"__ec_magicType_stack__"},n.get("option.stack")||{},!0)},tiled:function(t,e,i,n){if("line"===t||"bar"===t)return m({id:e,stack:""},n.get("option.tiled")||{},!0)}},_A=[["line","bar"],["stack","tiled"]];yA.onclick=function(u,t,h){var c=this.model,e=c.get("seriesIndex."+h);if(xA[h]){var d={series:[]};L(_A,function(t){0<=_(t,h)&&L(t,function(t){c.setIconStatus(t,"normal")})}),c.setIconStatus(h,"emphasis"),u.eachComponent({mainType:"series",query:null==e?null:{seriesIndex:e}},function(t){var e=t.subType,i=t.id,n=xA[h](e,i,t,c);n&&(T(n,t.option),d.series.push(n));var a=t.coordinateSystem;if(a&&"cartesian2d"===a.type&&("line"===h||"bar"===h)){var o=a.getAxesByScale("ordinal")[0];if(o){var r=o.dim+"Axis",s=u.queryComponents({mainType:r,index:t.get(name+"Index"),id:t.get(name+"Id")})[0].componentIndex;d[r]=d[r]||[];for(var l=0;l<=s;l++)d[r][s]=d[r][s]||{};d[r][s].boundaryGap="bar"===h}}}),t.dispatchAction({type:"changeMagicType",currentType:h,newOption:d})}},$d({type:"changeMagicType",event:"magicTypeChanged",update:"prepareAndUpdate"},function(t,e){e.mergeOption(t.newOption)}),hA("magicType",vA);var wA=dc.toolbox.dataView,bA=new Array(60).join("-"),SA="\t";function MA(t){var e=function(t){var a={},o=[],r=[];return t.eachRawSeries(function(t){var e=t.coordinateSystem;if(!e||"cartesian2d"!==e.type&&"polar"!==e.type)o.push(t);else{var i=e.getBaseAxis();if("category"===i.type){var n=i.dim+"_"+i.index;a[n]||(a[n]={categoryAxis:i,valueAxis:e.getOtherAxis(i),series:[]},r.push({axisDim:i.dim,axisIndex:i.index})),a[n].series.push(t)}else o.push(t)}}),{seriesGroupByCategoryAxis:a,other:o,meta:r}}(t);return{value:M([function(t){var h=[];return L(t,function(t,e){var i=t.categoryAxis,n=t.valueAxis.dim,a=[" "].concat(k(t.series,function(t){return t.name})),o=[i.model.getCategories()];L(t.series,function(t){o.push(t.getRawData().mapArray(n,function(t){return t}))});for(var r=[a.join(SA)],s=0;st[1]&&t.reverse(),t}function EA(t,e){return Pa(t,e,{includeMainTypes:NA})}zA.setOutputRanges=function(t,e){this.matchOutputRanges(t,e,function(t,e,i){if((t.coordRanges||(t.coordRanges=[])).push(e),!t.coordRange){t.coordRange=e;var n=FA[t.brushType](0,i,e);t.__rangeOffset={offset:HA[t.brushType](n.values,t.range,[1,1]),xyMinMax:n.xyMinMax}}})},zA.matchOutputRanges=function(t,n,a){CA(t,function(i){var t=this.findTargetInfo(i,n);t&&!0!==t&&L(t.coordSyses,function(t){var e=FA[i.brushType](1,t,i.range);a(i,e.values,t,n)})},this)},zA.setInputRanges=function(t,a){CA(t,function(t){var e=this.findTargetInfo(t,a);if(t.range=t.range||[],e&&!0!==e){t.panelId=e.panelId;var i=FA[t.brushType](0,e.coordSys,t.coordRange),n=t.__rangeOffset;t.range=n?HA[t.brushType](i.values,n.offset,function(t,e){var i=UA(t),n=UA(e),a=[i[0]/n[0],i[1]/n[1]];return isNaN(a[0])&&(a[0]=1),isNaN(a[1])&&(a[1]=1),a}(i.xyMinMax,n.xyMinMax)):i.values}},this)},zA.makePanelOpts=function(i,n){return k(this._targetInfoList,function(t){var e=t.getPanelRect();return{panelId:t.panelId,defaultBrushType:n&&n(t),clipPath:pb(e),isTargetByCursor:mb(e,i,t.coordSysModel),getLinearBrushOtherExtent:gb(e)}})},zA.controlSeries=function(t,e,i){var n=this.findTargetInfo(t,i);return!0===n||n&&0<=LA(n.coordSyses,e.coordinateSystem)},zA.findTargetInfo=function(t,e){for(var i=this._targetInfoList,n=EA(e,t),a=0;an[1]&&(n[1]=e[1])})}),n[1]c[1];if(r&&!s&&!l)return!0;r&&(n=!0),s&&(e=!0),l&&(i=!0)}return n&&e&&i}):nT(h,function(t){if("empty"===a)i.setData(u=u.map(t,function(t){return function(t){return t>=c[0]&&t<=c[1]}(t)?t:NaN}));else{var e={};e[t]=c,u.selectRange(e)}}),nT(h,function(t){u.setApproximateExtent(c,t)}))})}}};var rT=L,sT=tT,lT=af({type:"dataZoom",dependencies:["xAxis","yAxis","zAxis","radiusAxis","angleAxis","singleAxis","series"],defaultOption:{zlevel:0,z:4,orient:null,xAxisIndex:null,yAxisIndex:null,filterMode:"filter",throttle:null,start:0,end:100,startValue:null,endValue:null,minSpan:null,maxSpan:null,minValueSpan:null,maxValueSpan:null,rangeMode:null},init:function(t,e,i){this._dataIntervalByAxis={},this._dataInfo={},this._axisProxies={},this.textStyleModel,this._autoThrottle=!0,this._rangePropMode=["percent","percent"];var n=uT(t);this.mergeDefaultAndTheme(t,i),this.doInit(n)},mergeOption:function(t){var e=uT(t);m(this.option,t,!0),this.doInit(e)},doInit:function(t){var i=this.option;v.canvasSupported||(i.realtime=!1),this._setDefaultThrottle(t),hT(this,t),rT([["start","startValue"],["end","endValue"]],function(t,e){"value"===this._rangePropMode[e]&&(i[t[0]]=null)},this),this.textStyleModel=this.getModel("textStyle"),this._resetTarget(),this._giveAxisProxies()},_giveAxisProxies:function(){var r=this._axisProxies;this.eachTargetAxis(function(t,e,i,n){var a=this.dependentModels[t.axis][e],o=a.__dzAxisProxy||(a.__dzAxisProxy=new iT(t.name,e,this,n));r[t.name+"_"+e]=o},this)},_resetTarget:function(){var i=this.option,t=this._judgeAutoMode();sT(function(t){var e=t.axisIndex;i[e]=wa(i[e])},this),"axisIndex"===t?this._autoSetAxisIndex():"orient"===t&&this._autoSetOrient()},_judgeAutoMode:function(){var e=this.option,i=!1;sT(function(t){null!=e[t.axisIndex]&&(i=!0)},this);var t=e.orient;return null==t&&i?"orient":i?void 0:(null==t&&(e.orient="horizontal"),"axisIndex")},_autoSetAxisIndex:function(){var o=!0,e=this.get("orient",!0),r=this.option,t=this.dependentModels;if(o){var i="vertical"===e?"y":"x";t[i+"Axis"].length?(r[i+"AxisIndex"]=[0],o=!1):rT(t.singleAxis,function(t){o&&t.get("orient",!0)===e&&(r.singleAxisIndex=[t.componentIndex],o=!1)})}o&&sT(function(t){if(o){var e=[],i=this.dependentModels[t.axis];if(i.length&&!e.length)for(var n=0,a=i.length;ne[0][1]&&(e[0][1]=o[0]),o[1]e[1][1]&&(e[1][1]=o[1])}return e&&qT(e)}};function qT(t){return new bi(t[0][0],t[1][0],t[0][1]-t[0][0],t[1][1]-t[1][0])}var KT=["#ddd"];af({type:"brush",dependencies:["geo","grid","xAxis","yAxis","parallel","series"],defaultOption:{toolbox:null,brushLink:null,seriesIndex:"all",geoIndex:null,xAxisIndex:null,yAxisIndex:null,brushType:"rect",brushMode:"single",transformable:!0,brushStyle:{borderWidth:1,color:"rgba(120,140,180,0.3)",borderColor:"rgba(120,140,180,0.8)"},throttleType:"fixRate",throttleDelay:0,removeOnClick:!0,z:1e4},areas:[],brushType:null,brushOption:{},coordInfoList:[],optionUpdated:function(t,e){var i=this.option;e||ET(i,t,["inBrush","outOfBrush"]);var n=i.inBrush=i.inBrush||{};i.outOfBrush=i.outOfBrush||{color:KT},n.hasOwnProperty("liftZ")||(n.liftZ=5)},setAreas:function(t){t&&(this.areas=k(t,function(t){return $T(this.option,t)},this))},setBrushOption:function(t){this.brushOption=$T(this.option,t),this.brushType=this.brushOption.brushType}});function $T(t,e){return m({brushType:t.brushType,brushMode:t.brushMode,transformable:t.transformable,brushStyle:new ul(t.brushStyle).getItemStyle(),removeOnClick:t.removeOnClick,z:t.z},e,!0)}function JT(t,e,i,n){n&&n.$from===t.id||this._brushController.setPanels(t.brushTargetManager.makePanelOpts(i)).enableBrush(t.brushOption).updateCovers(t.areas.slice())}of({type:"brush",init:function(t,e){this.ecModel=t,this.api=e,this.model,(this._brushController=new Bw(e.getZr())).on("brush",N(this._onBrush,this)).mount()},render:function(t){return this.model=t,JT.apply(this,arguments)},updateTransform:JT,updateView:JT,dispose:function(){this._brushController.dispose()},_onBrush:function(t,e){var i=this.model.id;this.model.brushTargetManager.setOutputRanges(t,this.ecModel),e.isEnd&&!e.removeOnClick||this.api.dispatchAction({type:"brush",brushId:i,areas:D(t),$from:i})}}),$d({type:"brush",event:"brush"},function(e,t){t.eachComponent({mainType:"brush",query:e},function(t){t.setAreas(e.areas)})}),$d({type:"brushSelect",event:"brushSelected",update:"none"},function(){});var QT=dc.toolbox.brush;function tD(t,e,i){this.model=t,this.ecModel=e,this.api=i,this._brushType,this._brushMode}tD.defaultOption={show:!0,type:["rect","polygon","lineX","lineY","keep","clear"],icon:{rect:"M7.3,34.7 M0.4,10V-0.2h9.8 M89.6,10V-0.2h-9.8 M0.4,60v10.2h9.8 M89.6,60v10.2h-9.8 M12.3,22.4V10.5h13.1 M33.6,10.5h7.8 M49.1,10.5h7.8 M77.5,22.4V10.5h-13 M12.3,31.1v8.2 M77.7,31.1v8.2 M12.3,47.6v11.9h13.1 M33.6,59.5h7.6 M49.1,59.5 h7.7 M77.5,47.6v11.9h-13",polygon:"M55.2,34.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1 s-3.1-1.4-3.1-3.1S53.5,34.9,55.2,34.9z M50.4,51c1.7,0,3.1,1.4,3.1,3.1c0,1.7-1.4,3.1-3.1,3.1c-1.7,0-3.1-1.4-3.1-3.1 C47.3,52.4,48.7,51,50.4,51z M55.6,37.1l1.5-7.8 M60.1,13.5l1.6-8.7l-7.8,4 M59,19l-1,5.3 M24,16.1l6.4,4.9l6.4-3.3 M48.5,11.6 l-5.9,3.1 M19.1,12.8L9.7,5.1l1.1,7.7 M13.4,29.8l1,7.3l6.6,1.6 M11.6,18.4l1,6.1 M32.8,41.9 M26.6,40.4 M27.3,40.2l6.1,1.6 M49.9,52.1l-5.6-7.6l-4.9-1.2",lineX:"M15.2,30 M19.7,15.6V1.9H29 M34.8,1.9H40.4 M55.3,15.6V1.9H45.9 M19.7,44.4V58.1H29 M34.8,58.1H40.4 M55.3,44.4 V58.1H45.9 M12.5,20.3l-9.4,9.6l9.6,9.8 M3.1,29.9h16.5 M62.5,20.3l9.4,9.6L62.3,39.7 M71.9,29.9H55.4",lineY:"M38.8,7.7 M52.7,12h13.2v9 M65.9,26.6V32 M52.7,46.3h13.2v-9 M24.9,12H11.8v9 M11.8,26.6V32 M24.9,46.3H11.8v-9 M48.2,5.1l-9.3-9l-9.4,9.2 M38.9-3.9V12 M48.2,53.3l-9.3,9l-9.4-9.2 M38.9,62.3V46.4",keep:"M4,10.5V1h10.3 M20.7,1h6.1 M33,1h6.1 M55.4,10.5V1H45.2 M4,17.3v6.6 M55.6,17.3v6.6 M4,30.5V40h10.3 M20.7,40 h6.1 M33,40h6.1 M55.4,30.5V40H45.2 M21,18.9h62.9v48.6H21V18.9z",clear:"M22,14.7l30.9,31 M52.9,14.7L22,45.7 M4.7,16.8V4.2h13.1 M26,4.2h7.8 M41.6,4.2h7.8 M70.3,16.8V4.2H57.2 M4.7,25.9v8.6 M70.3,25.9v8.6 M4.7,43.2v12.6h13.1 M26,55.8h7.8 M41.6,55.8h7.8 M70.3,43.2v12.6H57.2"},title:D(QT.title)};var eD=tD.prototype;eD.render=eD.updateView=function(e,t,i){var n,a,o;t.eachComponent({mainType:"brush"},function(t){n=t.brushType,a=t.brushOption.brushMode||"single",o|=t.areas.length}),this._brushType=n,this._brushMode=a,L(e.get("type",!0),function(t){e.setIconStatus(t,("keep"===t?"multiple"===a:"clear"===t?o:t===n)?"emphasis":"normal")})},eD.getIcons=function(){var t=this.model,e=t.get("icon",!0),i={};return L(t.get("type",!0),function(t){e[t]&&(i[t]=e[t])}),i},eD.onclick=function(t,e,i){var n=this._brushType,a=this._brushMode;"clear"===i?(e.dispatchAction({type:"axisAreaSelect",intervals:[]}),e.dispatchAction({type:"brush",command:"clear",areas:[]})):e.dispatchAction({type:"takeGlobalCursor",key:"brush",brushOption:{brushType:"keep"===i?n:n!==i&&i,brushMode:"keep"===i?"multiple"===a?"single":"multiple":a}})},hA("brush",tD),qd(function(t,e){var i=t&&t.brush;if(O(i)||(i=i?[i]:[]),i.length){var n=[];L(i,function(t){var e=t.hasOwnProperty("toolbox")?t.toolbox:[];e instanceof Array&&(n=n.concat(e))});var a=t&&t.toolbox;O(a)&&(a=a[0]),a||(a={feature:{}},t.toolbox=[a]);var o=a.feature||(a.feature={}),r=o.brush||(o.brush={}),s=r.type||(r.type=[]);s.push.apply(s,n),function(i){var e={};L(i,function(t){e[t]=1}),i.length=0,L(e,function(t,e){i.push(e)})}(s),e&&!s.length&&s.push.apply(s,NT)}}),af({type:"title",layoutMode:{type:"box",ignoreSize:!0},defaultOption:{zlevel:0,z:6,show:!0,text:"",target:"blank",subtext:"",subtarget:"blank",left:0,top:0,backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderWidth:0,padding:5,itemGap:10,textStyle:{fontSize:18,fontWeight:"bolder",color:"#333"},subtextStyle:{color:"#aaa"}}}),of({type:"title",render:function(t,e,i){if(this.group.removeAll(),t.get("show")){var n=this.group,a=t.getModel("textStyle"),o=t.getModel("subtextStyle"),r=t.get("textAlign"),s=H(t.get("textBaseline"),t.get("textVerticalAlign")),l=new Dr({style:Es({},a,{text:t.get("text"),textFill:a.getTextColor()},{disableBox:!0}),z2:10}),u=l.getBoundingRect(),h=t.get("subtext"),c=new Dr({style:Es({},o,{text:h,textFill:o.getTextColor(),y:u.height+t.get("itemGap"),textVerticalAlign:"top"},{disableBox:!0}),z2:10}),d=t.get("link"),f=t.get("sublink"),p=t.get("triggerEvent",!0);l.silent=!d&&!p,c.silent=!f&&!p,d&&l.on("click",function(){window.open(d,"_"+t.get("target"))}),f&&c.on("click",function(){window.open(f,"_"+t.get("subtarget"))}),l.eventData=c.eventData=p?{componentType:"title",componentIndex:t.componentIndex}:null,n.add(l),h&&n.add(c);var g=n.getBoundingRect(),m=t.getBoxLayoutParams();m.width=g.width,m.height=g.height;var v=eu(m,{width:i.getWidth(),height:i.getHeight()},t.get("padding"));r||("middle"===(r=t.get("left")||t.get("right"))&&(r="center"),"right"===r?v.x+=v.width:"center"===r&&(v.x+=v.width/2)),s||("center"===(s=t.get("top")||t.get("bottom"))&&(s="middle"),"bottom"===s?v.y+=v.height:"middle"===s&&(v.y+=v.height/2),s=s||"top"),n.attr("position",[v.x,v.y]);var y={textAlign:r,textVerticalAlign:s};l.setStyle(y),c.setStyle(y),g=n.getBoundingRect();var x=v.margin,_=t.getItemStyle(["color","opacity"]);_.fill=t.get("backgroundColor");var w=new Hr({shape:{x:g.x-x[3],y:g.y-x[0],width:g.width+x[1]+x[3],height:g.height+x[0]+x[2],r:t.get("borderRadius")},style:_,subPixelOptimize:!0,silent:!0});n.add(w)}}});function iD(t){var e=t.itemStyle||(t.itemStyle={}),i=e.emphasis||(e.emphasis={}),n=t.label||t.label||{},a=n.normal||(n.normal={}),o={normal:1,emphasis:1};L(n,function(t,e){o[e]||nD(a,e)||(a[e]=t)}),i.label&&!nD(n,"emphasis")&&(n.emphasis=i.label,delete i.label)}function nD(t,e){return t.hasOwnProperty(e)}hu.registerSubTypeDefaulter("timeline",function(){return"slider"}),$d({type:"timelineChange",event:"timelineChanged",update:"prepareAndUpdate"},function(t,e){var i=e.getComponent("timeline");return i&&null!=t.currentIndex&&(i.setCurrentIndex(t.currentIndex),!i.get("loop",!0)&&i.isIndexMax()&&i.setPlayState(!1)),e.resetOption("timeline"),T({currentIndex:i.option.currentIndex},t)}),$d({type:"timelinePlayChange",event:"timelinePlayChanged",update:"update"},function(t,e){var i=e.getComponent("timeline");i&&null!=t.playState&&i.setPlayState(t.playState)});var aD=hu.extend({type:"timeline",layoutMode:"box",defaultOption:{zlevel:0,z:4,show:!0,axisType:"time",realtime:!0,left:"20%",top:null,right:"20%",bottom:0,width:null,height:40,padding:5,controlPosition:"left",autoPlay:!1,rewind:!1,loop:!0,playInterval:2e3,currentIndex:0,itemStyle:{},label:{color:"#000"},data:[]},init:function(t,e,i){this._data,this._names,this.mergeDefaultAndTheme(t,i),this._initData()},mergeOption:function(t){aD.superApply(this,"mergeOption",arguments),this._initData()},setCurrentIndex:function(t){null==t&&(t=this.option.currentIndex);var e=this._data.count();this.option.loop?t=(t%e+e)%e:(e<=t&&(t=e-1),t<0&&(t=0)),this.option.currentIndex=t},getCurrentIndex:function(){return this.option.currentIndex},isIndexMax:function(){return this.getCurrentIndex()>=this._data.count()-1},setPlayState:function(t){this.option.autoPlay=!!t},getPlayState:function(){return!!this.option.autoPlay},_initData:function(){var t=this.option,e=t.data||[],i=t.axisType,a=this._names=[];if("category"===i){var o=[];L(e,function(t,e){var i,n=Ma(t);E(t)?(i=D(t)).value=e:i=e,o.push(i),R(n)||null!=n&&!isNaN(n)||(n=""),a.push(n+"")}),e=o}var n={category:"ordinal",time:"time"}[i]||"number";(this._data=new Mf([{name:"value",type:n}],this)).initData(e,a)},getData:function(){return this._data},getCategories:function(){if("category"===this.get("axisType"))return this._names.slice()}});b(aD.extend({type:"timeline.slider",defaultOption:{backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderWidth:0,orient:"horizontal",inverse:!1,tooltip:{trigger:"item"},symbol:"emptyCircle",symbolSize:10,lineStyle:{show:!0,width:2,color:"#304654"},label:{position:"auto",show:!0,interval:"auto",rotate:0,color:"#304654"},itemStyle:{color:"#304654",borderWidth:1},checkpointStyle:{symbol:"circle",symbolSize:13,color:"#c23531",borderWidth:5,borderColor:"rgba(194,53,49, 0.5)",animation:!0,animationDuration:300,animationEasing:"quinticInOut"},controlStyle:{show:!0,showPlayBtn:!0,showPrevBtn:!0,showNextBtn:!0,itemSize:22,itemGap:12,position:"left",playIcon:"path://M31.6,53C17.5,53,6,41.5,6,27.4S17.5,1.8,31.6,1.8C45.7,1.8,57.2,13.3,57.2,27.4S45.7,53,31.6,53z M31.6,3.3 C18.4,3.3,7.5,14.1,7.5,27.4c0,13.3,10.8,24.1,24.1,24.1C44.9,51.5,55.7,40.7,55.7,27.4C55.7,14.1,44.9,3.3,31.6,3.3z M24.9,21.3 c0-2.2,1.6-3.1,3.5-2l10.5,6.1c1.899,1.1,1.899,2.9,0,4l-10.5,6.1c-1.9,1.1-3.5,0.2-3.5-2V21.3z",stopIcon:"path://M30.9,53.2C16.8,53.2,5.3,41.7,5.3,27.6S16.8,2,30.9,2C45,2,56.4,13.5,56.4,27.6S45,53.2,30.9,53.2z M30.9,3.5C17.6,3.5,6.8,14.4,6.8,27.6c0,13.3,10.8,24.1,24.101,24.1C44.2,51.7,55,40.9,55,27.6C54.9,14.4,44.1,3.5,30.9,3.5z M36.9,35.8c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H36c0.5,0,0.9,0.4,0.9,1V35.8z M27.8,35.8 c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H27c0.5,0,0.9,0.4,0.9,1L27.8,35.8L27.8,35.8z",nextIcon:"path://M18.6,50.8l22.5-22.5c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7L18.7,4.4c-0.1-0.1-0.2-0.3-0.2-0.5 c0-0.4,0.3-0.8,0.8-0.8c0.2,0,0.5,0.1,0.6,0.3l23.5,23.5l0,0c0.2,0.2,0.3,0.4,0.3,0.7c0,0.3-0.1,0.5-0.3,0.7l-0.1,0.1L19.7,52 c-0.1,0.1-0.3,0.2-0.5,0.2c-0.4,0-0.8-0.3-0.8-0.8C18.4,51.2,18.5,51,18.6,50.8z",prevIcon:"path://M43,52.8L20.4,30.3c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.3,0.1-0.5,0.3-0.7L42.9,6.4c0.1-0.1,0.2-0.3,0.2-0.5 c0-0.4-0.3-0.8-0.8-0.8c-0.2,0-0.5,0.1-0.6,0.3L18.3,28.8l0,0c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.3,0.1,0.5,0.3,0.7l0.1,0.1L41.9,54 c0.1,0.1,0.3,0.2,0.5,0.2c0.4,0,0.8-0.3,0.8-0.8C43.2,53.2,43.1,53,43,52.8z",color:"#304654",borderColor:"#304654",borderWidth:1},emphasis:{label:{show:!0,color:"#c23531"},itemStyle:{color:"#c23531"},controlStyle:{color:"#c23531",borderColor:"#c23531",borderWidth:2}},data:[]}}),Mh);function oD(t,e,i,n){pg.call(this,t,e,i),this.type=n||"value",this.model=null}var rD=Yh.extend({type:"timeline"});oD.prototype={constructor:oD,getLabelModel:function(){return this.model.getModel("label")},isHorizontal:function(){return"horizontal"===this.model.get("orient")}},w(oD,pg);var sD=N,lD=L,uD=Math.PI;function hD(t,e,i,n,a,o){var r=e.get("color");a?(a.setColor(r),i.add(a),o&&o.onUpdate(a)):((a=qp(t.get("symbol"),-1,-1,2,2,r)).setStyle("strokeNoScale",!0),i.add(a),o&&o.onCreate(a));var s=e.getItemStyle(["color","symbol","symbolSize"]);a.setStyle(s),n=m({rectHover:!0,z2:100},n,!0);var l=t.get("symbolSize");(l=l instanceof Array?l.slice():[+l,+l])[0]/=2,l[1]/=2,n.scale=l;var u=t.get("symbolOffset");if(u){var h=n.position=n.position||[0,0];h[0]+=ml(u[0],l[0]),h[1]+=ml(u[1],l[1])}var c=t.get("symbolRotate");return n.rotation=(c||0)*Math.PI/180||0,a.attr(n),a.updateTransform(),a}function cD(t,e,i,n,a){if(!t.dragging){var o=n.getModel("checkpointStyle"),r=i.dataToCoord(n.getData().get(["value"],e));a||!o.get("animation",!0)?t.attr({position:[r,0]}):(t.stopAnimation(!0),t.animateTo({position:[r,0]},o.get("animationDuration",!0),o.get("animationEasing",!0)))}}rD.extend({type:"timeline.slider",init:function(t,e){this.api=e,this._axis,this._viewRect,this._timer,this._currentPointer,this._mainGroup,this._labelGroup},render:function(e,t,i,n){if(this.model=e,this.api=i,this.ecModel=t,this.group.removeAll(),e.get("show",!0)){var a=this._layout(e,i),o=this._createGroup("mainGroup"),r=this._createGroup("labelGroup"),s=this._axis=this._createAxis(a,e);e.formatTooltip=function(t){return Vl(s.scale.getLabel(t))},lD(["AxisLine","AxisTick","Control","CurrentPointer"],function(t){this["_render"+t](a,o,s,e)},this),this._renderAxisLabel(a,r,s,e),this._position(a,e)}this._doPlayStop()},remove:function(){this._clearTimer(),this.group.removeAll()},dispose:function(){this._clearTimer()},_layout:function(t,e){var i=t.get("label.position"),n=t.get("orient"),a=function(t,e){return eu(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()},t.get("padding"))}(t,e);null==i||"auto"===i?i="horizontal"===n?a.y+a.height/2n[1]&&(i=n[1]),i"),a&&(o+=fD(a),null!=i&&(o+=" : ")),null!=i&&(o+=fD(n)),o},getData:function(){return this._data},setData:function(t){this._data=t}});b(gD,Mh),gD.extend({type:"markPoint",defaultOption:{zlevel:0,z:5,symbol:"pin",symbolSize:50,tooltip:{trigger:"item"},label:{show:!0,position:"inside"},itemStyle:{borderWidth:2},emphasis:{label:{show:!0}}}});var mD=_;function vD(t,e,i,n,a,o){var r=[],s=Ff(e,n)?e.getCalculationInfo("stackResultDimension"):n,l=MD(e,s,t),u=e.indicesOfNearest(s,l)[0];r[a]=e.get(i,u),r[o]=e.get(n,u);var h=xl(e.get(n,u));return 0<=(h=Math.min(h,20))&&(r[o]=+r[o].toFixed(h)),r}var yD=A,xD={min:yD(vD,"min"),max:yD(vD,"max"),average:yD(vD,"average")};function _D(t,e){var i=t.getData(),n=t.coordinateSystem;if(e&&!function(t){return!isNaN(parseFloat(t.x))&&!isNaN(parseFloat(t.y))}(e)&&!O(e.coord)&&n){var a=n.dimensions,o=wD(e,i,n,t);if((e=D(e)).type&&xD[e.type]&&o.baseAxis&&o.valueAxis){var r=mD(a,o.baseAxis.dim),s=mD(a,o.valueAxis.dim);e.coord=xD[e.type](i,o.baseDataDim,o.valueDataDim,r,s),e.value=e.coord[s]}else{for(var l=[null!=e.xAxis?e.xAxis:e.radiusAxis,null!=e.yAxis?e.yAxis:e.angleAxis],u=0;u<2;u++)xD[l[u]]&&(l[u]=MD(i,i.mapDimension(a[u]),l[u]));e.coord=l}}return e}function wD(t,e,i,n){var a={};return null!=t.valueIndex||null!=t.valueDim?(a.valueDataDim=null!=t.valueIndex?e.getDimension(t.valueIndex):t.valueDim,a.valueAxis=i.getAxis(function(t,e){var i=t.getData(),n=i.dimensions;e=i.getDimension(e);for(var a=0;ai[l],p=[-c.x,-c.y];n||(p[s]=a.position[s]);var g=[0,0],m=[-d.x,-d.y],v=H(t.get("pageButtonGap",!0),t.get("itemGap",!0));f&&("end"===t.get("pageButtonPosition",!0)?m[s]+=i[l]-d[l]:g[s]+=d[l]+v);m[1-s]+=c[u]/2-d[u]/2,a.attr("position",p),o.attr("position",g),r.attr("position",m);var y=this.group.getBoundingRect();if((y={x:0,y:0})[l]=f?i[l]:c[l],y[u]=Math.max(c[u],d[u]),y[h]=Math.min(0,d[h]+m[1-s]),o.__rectSize=i[l],f){var x={x:0,y:0};x[l]=Math.max(i[l]-d[l]-v,0),x[u]=y[u],o.setClipPath(new Hr({shape:x})),o.__rectSize=x[l]}else r.eachChild(function(t){t.attr({invisible:!0,silent:!0})});var _=this._getPageInfo(t);return null!=_.pageIndex&&Us(a,{position:_.contentPosition},f&&t),this._updatePageInfoView(t,_),y},_pageGo:function(t,e,i){var n=this._getPageInfo(e)[t];null!=n&&i.dispatchAction({type:"legendScroll",scrollDataIndex:n,legendId:e.id})},_updatePageInfoView:function(n,a){var o=this._controllerGroup;L(["pagePrev","pageNext"],function(t){var e=null!=a[t+"DataIndex"],i=o.childOfName(t);i&&(i.setStyle("fill",e?n.get("pageIconColor",!0):n.get("pageIconInactiveColor",!0)),i.cursor=e?"pointer":"default")});var t=o.childOfName("pageText"),e=n.get("pageFormatter"),i=a.pageIndex,r=null!=i?i+1:0,s=a.pageCount;t&&e&&t.setStyle("text",R(e)?e.replace("{current}",r).replace("{total}",s):e({current:r,total:s}))},_getPageInfo:function(t){var e=t.get("scrollDataIndex",!0),i=this.getContentGroup(),n=this._containerGroup.__rectSize,a=t.getOrient().index,o=KD[a],r=$D[a],s=this._findTargetItemIndex(e),l=i.children(),u=l[s],h=l.length,c=h?1:0,d={contentPosition:i.position.slice(),pageCount:c,pageIndex:c-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!u)return d;var f=y(u);d.contentPosition[a]=-f.s;for(var p=s+1,g=f,m=f,v=null;p<=h;++p)(!(v=y(l[p]))&&m.e>g.s+n||v&&!x(v,g.s))&&(g=m.i>g.i?m:v)&&(null==d.pageNextDataIndex&&(d.pageNextDataIndex=g.i),++d.pageCount),m=v;for(p=s-1,g=f,m=f,v=null;-1<=p;--p)(v=y(l[p]))&&x(m,v.s)||!(g.i=e&&t.s<=e+n}},_findTargetItemIndex:function(n){var a,o,t=this.getContentGroup();return this._showController&&t.eachChild(function(t,e){var i=t.__legendDataIndex;null==o&&null!=i&&(o=e),i===n&&(a=e)}),null!=a?a:o}});$d("legendScroll","legendscroll",function(t,e){var i=t.scrollDataIndex;null!=i&&e.eachComponent({mainType:"legend",subType:"scroll",query:t},function(t){t.setScrollDataIndex(i)})});lT.extend({type:"dataZoom.slider",layoutMode:"box",defaultOption:{show:!0,right:"ph",top:"ph",width:"ph",height:"ph",left:null,bottom:null,backgroundColor:"rgba(47,69,84,0)",dataBackground:{lineStyle:{color:"#2f4554",width:.5,opacity:.3},areaStyle:{color:"rgba(47,69,84,0.3)",opacity:.3}},borderColor:"#ddd",fillerColor:"rgba(167,183,204,0.4)",handleIcon:"M8.2,13.6V3.9H6.3v9.7H3.1v14.9h3.3v9.7h1.8v-9.7h3.3V13.6H8.2z M9.7,24.4H4.8v-1.4h4.9V24.4z M9.7,19.1H4.8v-1.4h4.9V19.1z",handleSize:"100%",handleStyle:{color:"#a7b7cc"},labelPrecision:null,labelFormatter:null,showDetail:!0,showDataShadow:"auto",realtime:!0,zoomLock:!1,textStyle:{color:"#333"}}});var QD=Hr,tC=gl,eC=yl,iC=N,nC=L,aC="horizontal",oC="vertical",rC=["line","bar","candlestick","scatter"],sC=cT.extend({type:"dataZoom.slider",init:function(t,e){this._displayables={},this._orient,this._range,this._handleEnds,this._size,this._handleWidth,this._handleHeight,this._location,this._dragging,this._dataShadowInfo,this.api=e},render:function(t,e,i,n){sC.superApply(this,"render",arguments),uc(this,"_dispatchZoomAction",this.dataZoomModel.get("throttle"),"fixRate"),this._orient=t.get("orient"),!1!==this.dataZoomModel.get("show")?(n&&"dataZoom"===n.type&&n.from===this.uid||this._buildView(),this._updateView()):this.group.removeAll()},remove:function(){sC.superApply(this,"remove",arguments),hc(this,"_dispatchZoomAction")},dispose:function(){sC.superApply(this,"dispose",arguments),hc(this,"_dispatchZoomAction")},_buildView:function(){var t=this.group;t.removeAll(),this._resetLocation(),this._resetInterval();var e=this._displayables.barGroup=new Si;this._renderBackground(),this._renderHandle(),this._renderDataShadow(),t.add(e),this._positionGroup()},_resetLocation:function(){var t=this.dataZoomModel,e=this.api,i=this._findCoordRect(),n={width:e.getWidth(),height:e.getHeight()},a=this._orient===aC?{right:n.width-i.x-i.width,top:n.height-30-7,width:i.width,height:30}:{right:7,top:i.y,width:30,height:i.height},o=au(t.option);L(["right","top","width","height"],function(t){"ph"===o[t]&&(o[t]=a[t])});var r=eu(o,n,t.padding);this._location={x:r.x,y:r.y},this._size=[r.width,r.height],this._orient===oC&&this._size.reverse()},_positionGroup:function(){var t=this.group,e=this._location,i=this._orient,n=this.dataZoomModel.getFirstTargetAxisModel(),a=n&&n.get("inverse"),o=this._displayables.barGroup,r=(this._dataShadowInfo||{}).otherAxisInverse;o.attr(i!==aC||a?i===aC&&a?{scale:r?[-1,1]:[-1,-1]}:i!==oC||a?{scale:r?[-1,-1]:[-1,1],rotation:Math.PI/2}:{scale:r?[1,-1]:[1,1],rotation:Math.PI/2}:{scale:r?[1,1]:[1,-1]});var s=t.getBoundingRect([o]);t.attr("position",[e.x-s.x,e.y-s.y])},_getViewExtent:function(){return[0,this._size[0]]},_renderBackground:function(){var t=this.dataZoomModel,e=this._size,i=this._displayables.barGroup;i.add(new QD({silent:!0,shape:{x:0,y:0,width:e[0],height:e[1]},style:{fill:t.get("backgroundColor")},z2:-40})),i.add(new QD({shape:{x:0,y:0,width:e[0],height:e[1]},style:{fill:"transparent"},z2:0,onclick:N(this._onClickPanelClick,this)}))},_renderDataShadow:function(){var t=this._dataShadowInfo=this._prepareDataShadowInfo();if(t){var e=this._size,i=t.series,n=i.getRawData(),a=i.getShadowDim?i.getShadowDim():t.otherDim;if(null!=a){var o=n.getDataExtent(a),r=.3*(o[1]-o[0]);o=[o[0]-r,o[1]+r];var s,l=[0,e[1]],u=[0,e[0]],h=[[e[0],0],[0,0]],c=[],d=u[1]/(n.count()-1),f=0,p=Math.round(n.count()/e[0]);n.each([a],function(t,e){if(0e[0]||i[1]<0||i[1]>e[1])){var n=this._handleEnds,a=(n[0]+n[1])/2,o=this._updateInterval("all",i[0]-a);this._updateView(),o&&this._dispatchZoomAction()}},_dispatchZoomAction:function(){var t=this._range;this.api.dispatchAction({type:"dataZoom",from:this.uid,dataZoomId:this.dataZoomModel.id,start:t[0],end:t[1]})},_findCoordRect:function(){var i;if(nC(this.getTargetCoordInfo(),function(t){if(!i&&t.length){var e=t[0].model.coordinateSystem;i=e.getRect&&e.getRect()}}),!i){var t=this.api.getWidth(),e=this.api.getHeight();i={x:.2*t,y:.2*e,width:.6*t,height:.6*e}}return i}});function lC(t){return"vertical"===t?"ns-resize":"ew-resize"}lT.extend({type:"dataZoom.inside",defaultOption:{disabled:!1,zoomLock:!1,zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}});var uC="\0_ec_dataZoom_roams";function hC(t,n){var e=dC(t),a=n.dataZoomId,o=n.coordId;L(e,function(t,e){var i=t.dataZoomInfos;i[a]&&_(n.allCoordIds,o)<0&&(delete i[a],t.count--)}),fC(e);var i=e[o];i||((i=e[o]={coordId:o,dataZoomInfos:{},count:0}).controller=function(t,r){var e=new Qv(t.getZr());return L(["pan","zoom","scrollMove"],function(o){e.on(o,function(n){var a=[];L(r.dataZoomInfos,function(t){if(n.isAvailableBehavior(t.dataZoomModel.option)){var e=(t.getRange||{})[o],i=e&&e(r.controller,n);!t.dataZoomModel.get("disabled",!0)&&i&&a.push({dataZoomId:t.dataZoomId,start:i[0],end:i[1]})}}),a.length&&r.dispatchAction(a)})}),e}(t,i),i.dispatchAction=A(pC,t)),i.dataZoomInfos[a]||i.count++,i.dataZoomInfos[a]=n;var r=function(t){var n,a={type_true:2,type_move:1,type_false:0,type_undefined:-1},o=!0;return L(t,function(t){var e=t.dataZoomModel,i=!e.get("disabled",!0)&&(!e.get("zoomLock",!0)||"move");a["type_"+n]"],O(t)&&(t=t.slice(),n=!0),a=e?t:n?[u(t[0]),u(t[1])]:u(t),R(l)?l.replace("{value}",n?a[0]:a).replace("{value2}",n?a[1]:a):z(l)?n?l(t[0],t[1]):l(t):n?t[0]===s[0]?i[0]+" "+a[1]:t[1]===s[1]?i[1]+" "+a[0]:a[0]+" - "+a[1]:a;function u(t){return t===s[0]?"min":t===s[1]?"max":(+t).toFixed(Math.min(r,20))}},resetExtent:function(){var t=this.option,e=kC([t.min,t.max]);this._dataExtent=e},getDataDimension:function(t){var e=this.option.dimension,i=t.dimensions;if(null!=e||i.length){if(null!=e)return t.getDimension(e);for(var n=t.dimensions,a=n.length-1;0<=a;a--){var o=n[a];if(!t.getDimensionInfo(o).isCalculationCoord)return o}}},getExtent:function(){return this._dataExtent.slice()},completeVisualOption:function(){var t=this.ecModel,e=this.option,i={inRange:e.inRange,outOfRange:e.outOfRange},n=e.target||(e.target={}),a=e.controller||(e.controller={});m(n,i),m(a,i);var u=this.isCategory();function o(n){CC(e.color)&&!n.inRange&&(n.inRange={color:e.color.slice().reverse()}),n.inRange=n.inRange||{color:t.get("gradientColor")},LC(this.stateList,function(t){var e=n[t];if(R(e)){var i=IC(e,"active",u);i?(n[t]={},n[t][e]=i):delete n[t]}},this)}o.call(this,n),o.call(this,a),function(t,e,i){var n=t[e],a=t[i];n&&!a&&(a=t[i]={},LC(n,function(t,e){if(Dx.isValidType(e)){var i=IC(e,"inactive",u);null!=i&&(a[e]=i,"color"!==e||a.hasOwnProperty("opacity")||a.hasOwnProperty("colorAlpha")||(a.opacity=[0,0]))}}))}.call(this,n,"inRange","outOfRange"),function(o){var r=(o.inRange||{}).symbol||(o.outOfRange||{}).symbol,s=(o.inRange||{}).symbolSize||(o.outOfRange||{}).symbolSize,l=this.get("inactiveColor");LC(this.stateList,function(t){var e=this.itemSize,i=o[t];null==(i=i||(o[t]={color:u?l:[l]})).symbol&&(i.symbol=r&&D(r)||(u?"roundRect":["roundRect"])),null==i.symbolSize&&(i.symbolSize=s&&D(s)||(u?e[0]:[e[0],e[0]])),i.symbol=TC(i.symbol,function(t){return"none"===t||"square"===t?"roundRect":t});var n=i.symbolSize;if(null!=n){var a=-1/0;DC(n,function(t){ae[1]&&e.reverse(),e[0]=Math.max(e[0],t[0]),e[1]=Math.min(e[1],t[1]))},completeVisualOption:function(){NC.prototype.completeVisualOption.apply(this,arguments),L(this.stateList,function(t){var e=this.option.controller[t].symbolSize;e&&e[0]!==e[1]&&(e[0]=0)},this)},setSelected:function(t){this.option.range=t.slice(),this._resetRange()},getSelected:function(){var t=this.getExtent(),e=yl((this.get("range")||[]).slice());return e[0]>t[1]&&(e[0]=t[1]),e[1]>t[1]&&(e[1]=t[1]),e[0]=i[1]||t<=e[1])?"inRange":"outOfRange"},findTargetDataIndices:function(n){var a=[];return this.eachTargetSeries(function(t){var i=[],e=t.getData();e.each(this.getDataDimension(e),function(t,e){n[0]<=t&&t<=n[1]&&i.push(e)},this),a.push({seriesId:t.id,dataIndex:i})},this),a},getVisualMeta:function(i){var t=RC(this,"outOfRange",this.getExtent()),e=RC(this,"inRange",this.option.range.slice()),n=[];function a(t,e){n.push({value:t,color:i(t,e)})}for(var o=0,r=0,s=e.length,l=t.length;rt[1])break;i.push({color:this.getControllerVisual(o,"color",e),offset:a/100})}return i.push({color:this.getControllerVisual(t[1],"color",e),offset:1}),i},_createBarPoints:function(t,e){var i=this.visualMapModel.itemSize;return[[i[0]-e[0],t[0]],[i[0],t[0]],[i[0],t[1]],[i[0]-e[1],t[1]]]},_createBarGroup:function(t){var e=this._orient,i=this.visualMapModel.get("inverse");return new Si("horizontal"!==e||i?"horizontal"===e&&i?{scale:"bottom"===t?[-1,1]:[1,1],rotation:-Math.PI/2}:"vertical"!==e||i?{scale:"left"===t?[1,1]:[-1,1]}:{scale:"left"===t?[1,-1]:[-1,-1]}:{scale:"bottom"===t?[1,1]:[-1,1],rotation:Math.PI/2})},_updateHandle:function(n,a){if(this._useHandle){var o=this._shapes,r=this.visualMapModel,s=o.handleThumbs,l=o.handleLabels;FC([0,1],function(t){var e=s[t];e.setStyle("fill",a.handlesColor[t]),e.position[1]=n[t];var i=js(o.handleLabelPoints[t],Ys(e,this.group));l[t].setStyle({x:i[0],y:i[1],text:r.formatValueText(this._dataInterval[t]),textVerticalAlign:"middle",textAlign:this._applyTransform("horizontal"===this._orient?0===t?"bottom":"top":"left",o.barGroup)})},this)}},_showIndicator:function(t,e,i,n){var a=this.visualMapModel,o=a.getExtent(),r=a.itemSize,s=[0,r[1]],l=GC(t,o,s,!0),u=this._shapes,h=u.indicator;if(h){h.position[1]=l,h.attr("invisible",!1),h.setShape("points",function(t,e,i,n){return t?[[0,-WC(e,HC(i,0))],[6,0],[0,WC(e,HC(n-i,0))]]:[[0,0],[5,-5],[5,5]]}(!!i,n,l,r[1]));var c=this.getControllerVisual(t,"color",{convertOpacityToAlpha:!0});h.setStyle("fill",c);var d=js(u.indicatorLabelPoint,Ys(h,this.group)),f=u.indicatorLabel;f.attr("invisible",!1);var p=this._applyTransform("left",u.barGroup),g=this._orient;f.setStyle({text:(i||"")+a.formatValueText(e),textVerticalAlign:"horizontal"===g?p:"middle",textAlign:"horizontal"===g?"center":p,x:d[0],y:d[1]})}},_enableHoverLinkToSeries:function(){var n=this;this._shapes.barGroup.on("mousemove",function(t){if(n._hovering=!0,!n._dragging){var e=n.visualMapModel.itemSize,i=n._applyTransform([t.offsetX,t.offsetY],n._shapes.barGroup,!0,!0);i[1]=WC(HC(0,i[1]),e[1]),n._doHoverLinkToSeries(i[1],0<=i[0]&&i[0]<=e[0])}}).on("mouseout",function(){n._hovering=!1,n._dragging||n._clearHoverLinkToSeries()})},_enableHoverLinkFromSeries:function(){var t=this.api.getZr();this.visualMapModel.option.hoverLink?(t.on("mouseover",this._hoverLinkFromSeriesMouseOver,this),t.on("mouseout",this._hideIndicator,this)):this._clearHoverLinkFromSeries()},_doHoverLinkToSeries:function(t,e){var i=this.visualMapModel,n=i.itemSize;if(i.option.hoverLink){var a=[0,n[1]],o=i.getExtent();t=WC(HC(a[0],t),a[1]);var r=function(t,e,i){var n=6,a=t.get("hoverLinkDataSize");a&&(n=GC(a,e,i,!0)/2);return n}(i,o,a),s=[t-r,t+r],l=GC(t,a,o,!0),u=[GC(s[0],a,o,!0),GC(s[1],a,o,!0)];s[0] ",r):this._showIndicator(l,l,"≈ ",r));var h=this._hoverLinkDataIndices,c=[];(e||XC(i))&&(c=this._hoverLinkDataIndices=i.findTargetDataIndices(u));var d=function(t,e){var i={},n={};return a(t||[],i),a(e||[],n,i),[o(i),o(n)];function a(t,e,i){for(var n=0,a=t.length;ni&&n([i,e[0]],"outOfRange"),n(e.slice()),i=e[1])},this),{stops:o,outerColors:r}}function n(t,e){var i=s.getRepresentValue({interval:t});e=e||s.getValueState(i);var n=a(i,e);t[0]===-1/0?r[0]=n:t[1]===1/0?r[1]=n:o.push({value:t[0],color:n},{value:t[1],color:n})}}}),qC={splitNumber:function(){var t=this.option,e=this._pieceList,i=Math.min(t.precision,20),n=this.getExtent(),a=t.splitNumber;a=Math.max(parseInt(a,10),1),t.splitNumber=a;for(var o=(n[1]-n[0])/a;+o.toFixed(i)!==o&&i<5;)i++;t.precision=i,o=+o.toFixed(i);var r=0;t.minOpen&&e.push({index:r++,interval:[-1/0,n[0]],close:[0,0]});for(var s=n[0],l=r+a;r","≥"][e[0]]];t.text=t.text||this.formatValueText(null!=t.value?t.value:t.interval,!1,i)},this)}};function KC(t,e){var i=t.inverse;("vertical"===t.orient?!i:i)&&e.reverse()}EC.extend({type:"visualMap.piecewise",doRender:function(){var o=this.group;o.removeAll();var r=this.visualMapModel,s=r.get("textGap"),t=r.textStyleModel,l=t.getFont(),u=t.getTextColor(),h=this._getItemAlign(),c=r.itemSize,e=this._getViewData(),i=e.endsText,d=W(r.get("showLabel",!0),!i);i&&this._renderEndsText(o,i[0],c,d,h),L(e.viewPieceList,function(t){var e=t.piece,i=new Si;i.onclick=N(this._onItemClick,this,e),this._enableHoverLink(i,t.indexInModelPieceList);var n=r.getRepresentValue(e);if(this._createItemSymbol(i,n,[0,0,c[0],c[1]]),d){var a=this.visualMapModel.getValueState(n);i.add(new Dr({style:{x:"right"===h?-s:c[0]+s,y:c[1]/2,text:e.text,textVerticalAlign:"middle",textAlign:h,textFont:l,textFill:u,opacity:"outOfRange"===a?.5:1}}))}o.add(i)},this),i&&this._renderEndsText(o,i[1],c,d,h),tu(r.get("orient"),o,r.get("itemGap")),this.renderBackground(o),this.positionGroup(o)},_enableHoverLink:function(t,i){function e(t){var e=this.visualMapModel;e.option.hoverLink&&this.api.dispatchAction({type:t,batch:VC(e.findTargetDataIndices(i),e)})}t.on("mouseover",N(e,this,"highlight")).on("mouseout",N(e,this,"downplay"))},_getItemAlign:function(){var t=this.visualMapModel,e=t.option;if("vertical"===e.orient)return BC(t,this.api,t.itemSize);var i=e.align;return i&&"auto"!==i||(i="left"),i},_renderEndsText:function(t,e,i,n,a){if(e){var o=new Si,r=this.visualMapModel.textStyleModel;o.add(new Dr({style:{x:n?"right"===a?i[0]:0:i[0]/2,y:i[1]/2,textVerticalAlign:"middle",textAlign:n?a:"center",text:e,textFont:r.getFont(),textFill:r.getTextColor()}})),t.add(o)}},_getViewData:function(){var t=this.visualMapModel,e=k(t.getPieceList(),function(t,e){return{piece:t,indexInModelPieceList:e}}),i=t.get("text"),n=t.get("orient"),a=t.get("inverse");return("horizontal"===n?a:!a)?e.reverse():i=i&&i.slice().reverse(),{viewPieceList:e,endsText:i}},_createItemSymbol:function(t,e,i){t.add(qp(this.getControllerVisual(e,"symbol"),i[0],i[1],i[2],i[3],this.getControllerVisual(e,"color")))},_onItemClick:function(t){var e=this.visualMapModel,i=e.option,n=D(i.selected),a=e.getSelectedMapKey(t);"single"===i.selectedMode?(n[a]=!0,L(n,function(t,e){n[e]=e===a})):n[a]=!n[a],this.api.dispatchAction({type:"selectDataRange",from:this.uid,visualMapId:this.visualMapModel.id,selected:n})}});qd(xC);var $C,JC="urn:schemas-microsoft-com:vml",QC="undefined"==typeof window?null:window,tL=!1,eL=QC&&QC.document;function iL(t){return $C(t)}if(eL&&!v.canvasSupported)try{eL.namespaces.zrvml||eL.namespaces.add("zrvml",JC),$C=function(t){return eL.createElement("')}}catch(t){$C=function(t){return eL.createElement("<"+t+' xmlns="'+JC+'" class="zrvml">')}}var nL,aL=Ho.CMD,oL=Math.round,rL=Math.sqrt,sL=Math.abs,lL=Math.cos,uL=Math.sin,hL=Math.max;if(!v.canvasSupported){var cL=",",dL="progid:DXImageTransform.Microsoft",fL=21600,pL=fL/2,gL=function(t){t.style.cssText="position:absolute;left:0;top:0;width:1px;height:1px;",t.coordsize=fL+","+fL,t.coordorigin="0,0"},mL=function(t,e,i){return"rgb("+[t,e,i].join(",")+")"},vL=function(t,e){e&&t&&e.parentNode!==t&&t.appendChild(e)},yL=function(t,e){e&&t&&e.parentNode===t&&t.removeChild(e)},xL=function(t,e,i){return 1e5*(parseFloat(t)||0)+1e3*(parseFloat(e)||0)+i},_L=function(t,e){return"string"==typeof t?0<=t.lastIndexOf("%")?parseFloat(t)/100*e:parseFloat(t):t},wL=function(t,e,i){var n=ze(e);i=+i,isNaN(i)&&(i=1),n&&(t.color=mL(n[0],n[1],n[2]),t.opacity=i*n[3])},bL=function(t,e,i,n){var a="fill"===e,o=t.getElementsByTagName(e)[0];null!=i[e]&&"none"!==i[e]&&(a||!a&&i.lineWidth)?(t[a?"filled":"stroked"]="true",i[e]instanceof jr&&yL(t,o),o=o||iL(e),a?function(t,e,i){var n,a,o=e.fill;if(null!=o)if(o instanceof jr){var r,s=0,l=[0,0],u=0,h=1,c=i.getBoundingRect(),d=c.width,f=c.height;if("linear"===o.type){r="gradient";var p=i.transform,g=[o.x*d,o.y*f],m=[o.x2*d,o.y2*f];p&&(bt(g,g,p),bt(m,m,p));var v=m[0]-g[0],y=m[1]-g[1];(s=180*Math.atan2(v,y)/Math.PI)<0&&(s+=360),s<1e-6&&(s=0)}else{r="gradientradial";g=[o.x*d,o.y*f],p=i.transform;var x=i.scale,_=d,w=f;l=[(g[0]-c.x)/_,(g[1]-c.y)/w],p&&bt(g,g,p),_/=x[0]*fL,w/=x[1]*fL;var b=hL(_,w);u=0/b,h=2*o.r/b-u}var S=o.colorStops.slice();S.sort(function(t,e){return t.offset-e.offset});for(var M=S.length,I=[],A=[],T=0;T=c&&d<=i+1){for(var n=[],a=0;a=c&&d<=a+1)return lk(h,e.components,u,l);p[t]=e}else p[t]=void 0}var s;f++}for(;f<=e;){var r=o();if(r)return r}},pushComponent:function(t,e,i){var n=t[t.length-1];n&&n.added===e&&n.removed===i?t[t.length-1]={count:n.count+1,added:e,removed:i}:t.push({count:1,added:e,removed:i})},extractCommon:function(t,e,i,n){for(var a=e.length,o=i.length,r=t.newPos,s=r-n,l=0;r+1c;c++)callback_params=d,callback_params.splice(0,0,a[c]),e.push(b.apply(this,callback_params));return e},c=function(a){var b,c=[];for(b=0;b0&&"object"==typeof a[c][0]?a[c]=f(a[c],b):a[c]=d(a[c],b));return a},g=function(a,b){var c,d=a.replace(".","");return c="jQuery"in this&&b?$("."+d,b)[0]:document.getElementsByClassName(d)[0]},h=function(a,b){var c,a=a.replace("#","");return c="jQuery"in window&&b?$("#"+a,b)[0]:document.getElementById(a)},i=function(a){var b=0,c=0;if(a.offsetParent)do b+=a.offsetLeft,c+=a.offsetTop;while(a=a.offsetParent);return[b,c]},j=function(b){var c=document,d=function(b){if("object"!=typeof window.google||!window.google.maps)return"object"==typeof window.console&&window.console.error&&console.error("Google Maps API is required. Please register the following JavaScript library https://maps.googleapis.com/maps/api/js."),function(){};if(!this)return new d(b);b.zoom=b.zoom||15,b.mapType=b.mapType||"roadmap";var e,f=function(a,b){return void 0===a?b:a},j=this,k=["bounds_changed","center_changed","click","dblclick","drag","dragend","dragstart","idle","maptypeid_changed","projection_changed","resize","tilesloaded","zoom_changed"],l=["mousemove","mouseout","mouseover"],m=["el","lat","lng","mapType","width","height","markerClusterer","enableNewStyle"],n=b.el||b.div,o=b.markerClusterer,p=google.maps.MapTypeId[b.mapType.toUpperCase()],q=new google.maps.LatLng(b.lat,b.lng),r=f(b.zoomControl,!0),s=b.zoomControlOpt||{style:"DEFAULT",position:"TOP_LEFT"},t=s.style||"DEFAULT",u=s.position||"TOP_LEFT",v=f(b.panControl,!0),w=f(b.mapTypeControl,!0),x=f(b.scaleControl,!0),y=f(b.streetViewControl,!0),z=f(z,!0),A={},B={zoom:this.zoom,center:q,mapTypeId:p},C={panControl:v,zoomControl:r,zoomControlOptions:{style:google.maps.ZoomControlStyle[t],position:google.maps.ControlPosition[u]},mapTypeControl:w,scaleControl:x,streetViewControl:y,overviewMapControl:z};if("string"==typeof b.el||"string"==typeof b.div?n.indexOf("#")>-1?this.el=h(n,b.context):this.el=g.apply(this,[n,b.context]):this.el=n,"undefined"==typeof this.el||null===this.el)throw"No element defined.";for(window.context_menu=window.context_menu||{},window.context_menu[j.el.id]={},this.controls=[],this.overlays=[],this.layers=[],this.singleLayers={},this.markers=[],this.polylines=[],this.routes=[],this.polygons=[],this.infoWindow=null,this.overlay_el=null,this.zoom=b.zoom,this.registered_events={},this.el.style.width=b.width||this.el.scrollWidth||this.el.offsetWidth,this.el.style.height=b.height||this.el.scrollHeight||this.el.offsetHeight,google.maps.visualRefresh=b.enableNewStyle,e=0;e'+f.title+""}if(h("gmaps_context_menu")){var g=h("gmaps_context_menu");g.innerHTML=c;var e,k=g.getElementsByTagName("a"),l=k.length;for(e=0;l>e;e++){var m=k[e],n=function(c){c.preventDefault(),d[this.id.replace(a+"_","")].action.apply(j,[b]),j.hideContextMenu()};google.maps.event.clearListeners(m,"click"),google.maps.event.addDomListenerOnce(m,"click",n,!1)}var o=i.apply(this,[j.el]),p=o[0]+b.pixel.x-15,q=o[1]+b.pixel.y-15;g.style.left=p+"px",g.style.top=q+"px"}};this.buildContextMenu=function(a,b){if("marker"===a){b.pixel={};var c=new google.maps.OverlayView;c.setMap(j.map),c.draw=function(){var d=c.getProjection(),e=b.marker.getPosition();b.pixel=d.fromLatLngToContainerPixel(e),D(a,b)}}else D(a,b);var d=h("gmaps_context_menu");setTimeout(function(){d.style.display="block"},0)},this.setContextMenu=function(a){window.context_menu[j.el.id][a.control]={};var b,d=c.createElement("ul");for(b in a.options)if(a.options.hasOwnProperty(b)){var e=a.options[b];window.context_menu[j.el.id][a.control][e.name]={title:e.title,action:e.action}}d.id="gmaps_context_menu",d.style.display="none",d.style.position="absolute",d.style.minWidth="100px",d.style.background="white",d.style.listStyle="none",d.style.padding="8px",d.style.boxShadow="2px 2px 6px #ccc",h("gmaps_context_menu")||c.body.appendChild(d);var f=h("gmaps_context_menu");google.maps.event.addDomListener(f,"mouseout",function(a){a.relatedTarget&&this.contains(a.relatedTarget)||window.setTimeout(function(){f.style.display="none"},400)},!1)},this.hideContextMenu=function(){var a=h("gmaps_context_menu");a&&(a.style.display="none")};var E=function(a,c){google.maps.event.addListener(a,c,function(a){void 0==a&&(a=this),b[c].apply(this,[a]),j.hideContextMenu()})};google.maps.event.addListener(this.map,"zoom_changed",this.hideContextMenu);for(var F=0;Fa;a++)"boolean"==typeof this.markers[a].visible&&this.markers[a].visible&&b.push(this.markers[a].getPosition());this.fitLatLngBounds(b)},this.fitLatLngBounds=function(a){var b,c=a.length,d=new google.maps.LatLngBounds;for(b=0;c>b;b++)d.extend(a[b]);this.map.fitBounds(d)},this.setCenter=function(a,b,c){this.map.panTo(new google.maps.LatLng(a,b)),c&&c()},this.getElement=function(){return this.el},this.zoomIn=function(a){a=a||1,this.zoom=this.map.getZoom()+a,this.map.setZoom(this.zoom)},this.zoomOut=function(a){a=a||1,this.zoom=this.map.getZoom()-a,this.map.setZoom(this.zoom)};var H,I=[];for(H in this.map)"function"!=typeof this.map[H]||this[H]||I.push(H);for(e=0;e-1){var d=this.markers[e];d.setMap(null),this.markerClusterer&&this.markerClusterer.removeMarker(d),j.fire("marker_removed",d,this)}}for(var c=0;c0&&d.paths[0].length>0&&(d.paths=c(b(d.paths,f,e)));for(var g=new google.maps.Polygon(d),h=["click","dblclick","mousedown","mousemove","mouseout","mouseover","mouseup","rightclick"],i=0;i0&&d.locations[0].length>0&&(d.locations=c(b([d.locations],f,!1)));var e=d.callback;delete d.callback;var g=new google.maps.ElevationService;if(d.path){var h={path:d.locations,samples:d.samples};g.getElevationAlongPath(h,function(a,b){e&&"function"==typeof e&&e(a,b)})}else delete d.path,delete d.samples,g.getElevationForLocations(d,function(a,b){e&&"function"==typeof e&&e(a,b)})},j.prototype.cleanRoute=j.prototype.removePolylines,j.prototype.renderRoute=function(b,c){var d,e="string"==typeof c.panel?document.getElementById(c.panel.replace("#","")):c.panel;c.panel=e,c=a({map:this.map},c),d=new google.maps.DirectionsRenderer(c),this.getRoutes({origin:b.origin,destination:b.destination,travelMode:b.travelMode,waypoints:b.waypoints,unitSystem:b.unitSystem,error:b.error,avoidHighways:b.avoidHighways,avoidTolls:b.avoidTolls,optimizeWaypoints:b.optimizeWaypoints,callback:function(a,b,c){c===google.maps.DirectionsStatus.OK&&d.setDirections(b)}})},j.prototype.drawRoute=function(a){var b=this;this.getRoutes({origin:a.origin,destination:a.destination,travelMode:a.travelMode,waypoints:a.waypoints,unitSystem:a.unitSystem,error:a.error,avoidHighways:a.avoidHighways,avoidTolls:a.avoidTolls,optimizeWaypoints:a.optimizeWaypoints,callback:function(c){if(c.length>0){var d={path:c[c.length-1].overview_path,strokeColor:a.strokeColor,strokeOpacity:a.strokeOpacity,strokeWeight:a.strokeWeight};a.hasOwnProperty("icons")&&(d.icons=a.icons),b.drawPolyline(d),a.callback&&a.callback(c[c.length-1])}}})},j.prototype.travelRoute=function(a){if(a.origin&&a.destination)this.getRoutes({origin:a.origin,destination:a.destination,travelMode:a.travelMode,waypoints:a.waypoints,unitSystem:a.unitSystem,error:a.error,callback:function(b){if(b.length>0&&a.start&&a.start(b[b.length-1]),b.length>0&&a.step){var c=b[b.length-1];if(c.legs.length>0)for(var d,e=c.legs[0].steps,f=0;d=e[f];f++)d.step_number=f,a.step(d,c.legs[0].steps.length-1)}b.length>0&&a.end&&a.end(b[b.length-1])}});else if(a.route&&a.route.legs.length>0)for(var b,c=a.route.legs[0].steps,d=0;b=c[d];d++)b.step_number=d,a.step(b)},j.prototype.drawSteppedRoute=function(a){var b=this;if(a.origin&&a.destination)this.getRoutes({origin:a.origin,destination:a.destination,travelMode:a.travelMode,waypoints:a.waypoints,error:a.error,callback:function(c){if(c.length>0&&a.start&&a.start(c[c.length-1]),c.length>0&&a.step){var d=c[c.length-1];if(d.legs.length>0)for(var e,f=d.legs[0].steps,g=0;e=f[g];g++){e.step_number=g;var h={path:e.path,strokeColor:a.strokeColor,strokeOpacity:a.strokeOpacity,strokeWeight:a.strokeWeight};a.hasOwnProperty("icons")&&(h.icons=a.icons),b.drawPolyline(h),a.step(e,d.legs[0].steps.length-1)}}c.length>0&&a.end&&a.end(c[c.length-1])}});else if(a.route&&a.route.legs.length>0)for(var c,d=a.route.legs[0].steps,e=0;c=d[e];e++){c.step_number=e;var f={path:c.path,strokeColor:a.strokeColor,strokeOpacity:a.strokeOpacity,strokeWeight:a.strokeWeight};a.hasOwnProperty("icons")&&(f.icons=a.icons),b.drawPolyline(f),a.step(c)}},j.Route=function(a){this.origin=a.origin,this.destination=a.destination,this.waypoints=a.waypoints,this.map=a.map,this.route=a.route,this.step_count=0,this.steps=this.route.legs[0].steps,this.steps_length=this.steps.length;var b={path:new google.maps.MVCArray,strokeColor:a.strokeColor,strokeOpacity:a.strokeOpacity,strokeWeight:a.strokeWeight};a.hasOwnProperty("icons")&&(b.icons=a.icons),this.polyline=this.map.drawPolyline(b).getPath()},j.Route.prototype.getRoute=function(a){var b=this;this.map.getRoutes({origin:this.origin,destination:this.destination,travelMode:a.travelMode,waypoints:this.waypoints||[],error:a.error,callback:function(){b.route=e[0],a.callback&&a.callback.call(b)}})},j.Route.prototype.back=function(){if(this.step_count>0){this.step_count--;var a=this.route.legs[0].steps[this.step_count].path;for(var b in a)a.hasOwnProperty(b)&&this.polyline.pop()}},j.Route.prototype.forward=function(){if(this.step_count0){b.markers=[];for(var c=0;c0){var d=this.polylines[0];b.polyline={},b.polyline.path=google.maps.geometry.encoding.encodePath(d.getPath()),b.polyline.strokeColor=d.strokeColor,b.polyline.strokeOpacity=d.strokeOpacity,b.polyline.strokeWeight=d.strokeWeight}return j.staticMapURL(b)},j.staticMapURL=function(a){function b(a,b){if("#"===a[0]&&(a=a.replace("#","0x"),b)){if(b=parseFloat(b),b=Math.min(1,Math.max(b,0)),0===b)return"0x00000000";b=(255*b).toString(16),1===b.length&&(b+=b),a=a.slice(0,8)+b}return a}var c,d=[],e=("file:"===location.protocol?"http:":location.protocol)+"//maps.googleapis.com/maps/api/staticmap";a.url&&(e=a.url,delete a.url),e+="?";var f=a.markers;delete a.markers,!f&&a.marker&&(f=[a.marker],delete a.marker);var g=a.styles;delete a.styles;var h=a.polyline;if(delete a.polyline,a.center)d.push("center="+a.center),delete a.center;else if(a.address)d.push("center="+a.address),delete a.address;else if(a.lat)d.push(["center=",a.lat,",",a.lng].join("")),delete a.lat,delete a.lng;else if(a.visible){var i=encodeURI(a.visible.join("|"));d.push("visible="+i)}var j=a.size;j?(j.join&&(j=j.join("x")),delete a.size):j="630x300",d.push("size="+j),a.zoom||a.zoom===!1||(a.zoom=15);var k=a.hasOwnProperty("sensor")?!!a.sensor:!0;delete a.sensor,d.push("sensor="+k);for(var l in a)a.hasOwnProperty(l)&&d.push(l+"="+a[l]);if(f)for(var m,n,o=0;c=f[o];o++){m=[],c.size&&"normal"!==c.size?(m.push("size:"+c.size),delete c.size):c.icon&&(m.push("icon:"+encodeURI(c.icon)),delete c.icon),c.color&&(m.push("color:"+c.color.replace("#","0x")),delete c.color),c.label&&(m.push("label:"+c.label[0].toUpperCase()),delete c.label),n=c.address?c.address:c.lat+","+c.lng,delete c.address,delete c.lat,delete c.lng;for(var l in c)c.hasOwnProperty(l)&&m.push(l+":"+c[l]);m.length||0===o?(m.push(n),m=m.join("|"),d.push("markers="+encodeURI(m))):(m=d.pop()+encodeURI("|"+n),d.push(m))}if(g)for(var o=0;oe;e++)for(var f=this.getPaths().getAt(e),g=f.getLength(),h=g-1,i=0;g>i;i++){var j=f.getAt(i),k=f.getAt(h);(j.lng()=a.lng()||k.lng()=a.lng())&&j.lat()+(a.lng()-j.lng())/(k.lng()-j.lng())*(k.lat()-j.lat())>>0;if(0===c)return-1;var d=0;if(arguments.length>1&&(d=Number(arguments[1]),d!=d?d=0:0!=d&&d!=1/0&&d!=-(1/0)&&(d=(d>0||-1)*Math.floor(Math.abs(d)))),d>=c)return-1;for(var e=d>=0?d:Math.max(c-Math.abs(d),0);c>e;e++)if(e in b&&b[e]===a)return e;return-1}),j}); +//# sourceMappingURL=gmaps.min.js.map \ No newline at end of file diff --git a/assets/vendors/js/coming-soon/jquery.countdown.js b/assets/vendors/js/coming-soon/jquery.countdown.js new file mode 100644 index 0000000..b5e5ed8 --- /dev/null +++ b/assets/vendors/js/coming-soon/jquery.countdown.js @@ -0,0 +1,246 @@ +/*! + * The Final Countdown for jQuery v2.2.0 (http://hilios.github.io/jQuery.countdown/) + * Copyright (c) 2016 Edson Hilios + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +(function(factory) { + "use strict"; + if (typeof define === "function" && define.amd) { + define([ "jquery" ], factory); + } else { + factory(jQuery); + } +})(function($) { + "use strict"; + var instances = [], matchers = [], defaultOptions = { + precision: 100, + elapse: false, + defer: false + }; + matchers.push(/^[0-9]*$/.source); + matchers.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source); + matchers.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source); + matchers = new RegExp(matchers.join("|")); + function parseDateString(dateString) { + if (dateString instanceof Date) { + return dateString; + } + if (String(dateString).match(matchers)) { + if (String(dateString).match(/^[0-9]*$/)) { + dateString = Number(dateString); + } + if (String(dateString).match(/\-/)) { + dateString = String(dateString).replace(/\-/g, "/"); + } + return new Date(dateString); + } else { + throw new Error("Couldn't cast `" + dateString + "` to a date object."); + } + } + var DIRECTIVE_KEY_MAP = { + 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" + }; + function escapedRegExp(str) { + var sanitize = str.toString().replace(/([.?*+^$[\]\\(){}|-])/g, "\\$1"); + return new RegExp(sanitize); + } + function strftime(offsetObject) { + return function(format) { + var directives = format.match(/%(-|!)?[A-Z]{1}(:[^;]+;)?/gi); + if (directives) { + for (var i = 0, len = directives.length; i < len; ++i) { + var directive = directives[i].match(/%(-|!)?([a-zA-Z]{1})(:[^;]+;)?/), regexp = escapedRegExp(directive[0]), modifier = directive[1] || "", plural = directive[3] || "", value = null; + directive = directive[2]; + if (DIRECTIVE_KEY_MAP.hasOwnProperty(directive)) { + value = DIRECTIVE_KEY_MAP[directive]; + value = Number(offsetObject[value]); + } + if (value !== null) { + if (modifier === "!") { + value = pluralize(plural, value); + } + if (modifier === "") { + if (value < 10) { + value = "0" + value.toString(); + } + } + format = format.replace(regexp, value.toString()); + } + } + } + format = format.replace(/%%/, "%"); + return format; + }; + } + function pluralize(format, count) { + var plural = "s", singular = ""; + if (format) { + format = format.replace(/(:|;|\s)/gi, "").split(/\,/); + if (format.length === 1) { + plural = format[0]; + } else { + singular = format[0]; + plural = format[1]; + } + } + if (Math.abs(count) > 1) { + return plural; + } else { + return singular; + } + } + var Countdown = function(el, finalDate, options) { + this.el = el; + this.$el = $(el); + this.interval = null; + this.offset = {}; + this.options = $.extend({}, defaultOptions); + this.instanceNumber = instances.length; + instances.push(this); + this.$el.data("countdown-instance", this.instanceNumber); + if (options) { + if (typeof options === "function") { + this.$el.on("update.countdown", options); + this.$el.on("stoped.countdown", options); + this.$el.on("finish.countdown", options); + } else { + this.options = $.extend({}, defaultOptions, options); + } + } + this.setFinalDate(finalDate); + if (this.options.defer === false) { + this.start(); + } + }; + $.extend(Countdown.prototype, { + start: function() { + if (this.interval !== null) { + clearInterval(this.interval); + } + var self = this; + this.update(); + this.interval = setInterval(function() { + self.update.call(self); + }, this.options.precision); + }, + stop: function() { + clearInterval(this.interval); + this.interval = null; + this.dispatchEvent("stoped"); + }, + toggle: function() { + if (this.interval) { + this.stop(); + } else { + this.start(); + } + }, + pause: function() { + this.stop(); + }, + resume: function() { + this.start(); + }, + remove: function() { + this.stop.call(this); + instances[this.instanceNumber] = null; + delete this.$el.data().countdownInstance; + }, + setFinalDate: function(value) { + this.finalDate = parseDateString(value); + }, + update: function() { + if (this.$el.closest("html").length === 0) { + this.remove(); + return; + } + var hasEventsAttached = $._data(this.el, "events") !== undefined, now = new Date(), newTotalSecsLeft; + newTotalSecsLeft = this.finalDate.getTime() - now.getTime(); + newTotalSecsLeft = Math.ceil(newTotalSecsLeft / 1e3); + newTotalSecsLeft = !this.options.elapse && newTotalSecsLeft < 0 ? 0 : Math.abs(newTotalSecsLeft); + if (this.totalSecsLeft === newTotalSecsLeft || !hasEventsAttached) { + return; + } else { + this.totalSecsLeft = newTotalSecsLeft; + } + this.elapsed = now >= 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() - now.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 + }; + if (!this.options.elapse && this.totalSecsLeft === 0) { + this.stop(); + this.dispatchEvent("finish"); + } else { + this.dispatchEvent("update"); + } + }, + dispatchEvent: function(eventName) { + var event = $.Event(eventName + ".countdown"); + event.finalDate = this.finalDate; + event.elapsed = this.elapsed; + event.offset = $.extend({}, this.offset); + event.strftime = strftime(this.offset); + this.$el.trigger(event); + } + }); + $.fn.countdown = function() { + var argumentsArray = Array.prototype.slice.call(arguments, 0); + return this.each(function() { + var instanceNumber = $(this).data("countdown-instance"); + if (instanceNumber !== undefined) { + var instance = instances[instanceNumber], method = argumentsArray[0]; + if (Countdown.prototype.hasOwnProperty(method)) { + instance[method].apply(instance, argumentsArray.slice(1)); + } else if (String(method).match(/^[$A-Z_][0-9A-Z_$]*$/i) === null) { + instance.setFinalDate.call(instance, method); + instance.start(); + } else { + $.error("Method %s does not exist on jQuery.countdown".replace(/\%s/gi, method)); + } + } else { + new Countdown(this, argumentsArray[0], argumentsArray[1]); + } + }); + }; +}); \ No newline at end of file diff --git a/assets/vendors/js/coming-soon/jquery.countdown.min.js b/assets/vendors/js/coming-soon/jquery.countdown.min.js new file mode 100644 index 0000000..70444d5 --- /dev/null +++ b/assets/vendors/js/coming-soon/jquery.countdown.min.js @@ -0,0 +1,22 @@ +/*! + * The Final Countdown for jQuery v2.2.0 (http://hilios.github.io/jQuery.countdown/) + * Copyright (c) 2016 Edson Hilios + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +!function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):a(jQuery)}(function(a){"use strict";function b(a){if(a instanceof Date)return a;if(String(a).match(g))return String(a).match(/^[0-9]*$/)&&(a=Number(a)),String(a).match(/\-/)&&(a=String(a).replace(/\-/g,"/")),new Date(a);throw new Error("Couldn't cast `"+a+"` to a date object.")}function c(a){var b=a.toString().replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1");return new RegExp(b)}function d(a){return function(b){var d=b.match(/%(-|!)?[A-Z]{1}(:[^;]+;)?/gi);if(d)for(var f=0,g=d.length;f1?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])})}}); \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/base.styl b/assets/vendors/js/editors/quill/assets/base.styl new file mode 100644 index 0000000..15d849c --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/base.styl @@ -0,0 +1,298 @@ +// Styles shared between snow and bubble + +controlHeight = 24px +inputPaddingWidth = 5px +inputPaddingHeight = 3px + +colorItemMargin = 2px +colorItemSize = 16px +colorItemsPerRow = 7 + + +.ql-{themeName}.ql-toolbar, .ql-{themeName} .ql-toolbar + &:after + clear: both + content: '' + display: table + + button + background: none + border: none + cursor: pointer + display: inline-block + float: left + height: controlHeight + outline: none + padding: inputPaddingHeight inputPaddingWidth + width: controlHeight + (inputPaddingWidth - inputPaddingHeight)*2 + + svg + float: left + height: 100% + + input.ql-image[type=file] + display: none + + button:hover, button.ql-active, + .ql-picker-label:hover, .ql-picker-label.ql-active, + .ql-picker-item:hover, .ql-picker-item.ql-selected + color: activeColor + .ql-fill, .ql-stroke.ql-fill + fill: activeColor + .ql-stroke, .ql-stroke-mitter + stroke: activeColor + + +.ql-{themeName} + box-sizing: border-box + * + box-sizing: border-box + + .ql-hidden + display: none + .ql-out-bottom, .ql-out-top + visibility: hidden + + .ql-tooltip + position: absolute + a + cursor: pointer + text-decoration: none + + .ql-formats + &:after + clear: both + content: '' + display: table + display: inline-block + vertical-align: middle + + .ql-toolbar.{themeName} + + .ql-stroke + fill: none + stroke: inactiveColor + stroke-linecap: round + stroke-linejoin: round + stroke-width: 2 + .ql-stroke-mitter + fill: none + stroke: inactiveColor + stroke-mitterlimit: 10 + stroke-width: 2 + + .ql-fill, .ql-stroke.ql-fill + fill: inactiveColor + + .ql-empty + fill: none + .ql-even + fill-rule: evenodd + .ql-thin, .ql-stroke.ql-thin + stroke-width: 1 + .ql-transparent + opacity: 0.4 + + .ql-direction + svg:last-child + display: none + .ql-direction.ql-active + svg:last-child + display: inline + svg:first-child + display: none + + .ql-editor + h1 + font-size: 2em + h2 + font-size: 1.5em + h3 + font-size: 1.17em + h4 + font-size: 1em + h5 + font-size: 0.83em + h6 + font-size: 0.67em + a + text-decoration: underline + blockquote + border-left: 4px solid #ccc + margin-bottom: 5px + margin-top: 5px + padding-left: 16px + code, pre + background-color: #f0f0f0 + border-radius: 3px + pre + white-space: pre-wrap + margin-bottom: 5px + margin-top: 5px + padding: 5px 10px + code + font-size: 85% + padding-bottom: 2px + padding-top: 2px + &:before, &:after + content: "\00a0" + letter-spacing: -2px + pre.ql-syntax + background-color: #23241f + color: #f8f8f2; + overflow: visible + img + max-width: 100% + + .ql-picker + color: inactiveColor + display: inline-block + float: left + font-size: 14px + font-weight: 500 + height: controlHeight + position: relative + vertical-align: middle + .ql-picker-label + cursor: pointer + display: inline-block + height: 100% + padding-left: 8px + padding-right: 2px + position: relative + width: 100% + &::before + display: inline-block + line-height: 22px + .ql-picker-options + background-color: backgroundColor + display: none + min-width: 100% + padding: 4px 8px + position: absolute + white-space: nowrap + .ql-picker-item + cursor: pointer + display: block + padding-bottom: 5px + padding-top: 5px + .ql-picker.ql-expanded + .ql-picker-label + color: borderColor + z-index: 2 + .ql-fill + fill: borderColor + .ql-stroke + stroke: borderColor + .ql-picker-options + display: block + margin-top: -1px + top: 100% + z-index: 1 + + .ql-color-picker, .ql-icon-picker + width: controlHeight + 4 + .ql-picker-label + padding: 2px 4px + svg + right: 4px + .ql-icon-picker + .ql-picker-options + padding: 4px 0px + .ql-picker-item + height: controlHeight + width: controlHeight + padding: 2px 4px + .ql-color-picker + .ql-picker-options + padding: inputPaddingHeight inputPaddingWidth + width: (colorItemSize + 2*colorItemMargin) * colorItemsPerRow + 2*inputPaddingWidth + 2 // +2 for the border + .ql-picker-item + border: 1px solid transparent + float: left + height: colorItemSize + margin: colorItemMargin + padding: 0px + width: colorItemSize + .ql-picker-item.ql-primary-color + margin-bottom: toolbarPadding + + .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) + svg + position: absolute + margin-top: -9px + right: 0 + top: 50% + width: 18px + + .ql-picker.ql-header, .ql-picker.ql-font, .ql-picker.ql-size + .ql-picker-label[data-label]:not([data-label='']), + .ql-picker-item[data-label]:not([data-label='']) + &::before + content: attr(data-label) + + .ql-picker.ql-header + width: 98px + .ql-picker-label::before, + .ql-picker-item::before + content: 'Normal' + for num in (1..6) + .ql-picker-label[data-value=\"{num}\"]::before, + .ql-picker-item[data-value=\"{num}\"]::before + content: 'Heading ' + num + .ql-picker-item[data-value="1"]::before + font-size: 2em + .ql-picker-item[data-value="2"]::before + font-size: 1.5em + .ql-picker-item[data-value="3"]::before + font-size: 1.17em + .ql-picker-item[data-value="4"]::before + font-size: 1em + .ql-picker-item[data-value="5"]::before + font-size: 0.83em + .ql-picker-item[data-value="6"]::before + font-size: 0.67em + + .ql-picker.ql-font + width: 108px + .ql-picker-label::before, + .ql-picker-item::before + content: 'Sans Serif' + .ql-picker-label[data-value=serif]::before, + .ql-picker-item[data-value=serif]::before + content: 'Serif' + .ql-picker-label[data-value=monospace]::before, + .ql-picker-item[data-value=monospace]::before + content: 'Monospace' + .ql-picker-item[data-value=serif]::before + font-family: Georgia, Times New Roman, serif; + .ql-picker-item[data-value=monospace]::before + font-family: Monaco, Courier New, monospace; + + .ql-picker.ql-size + width: 98px + .ql-picker-label::before, + .ql-picker-item::before + content: 'Normal' + .ql-picker-label[data-value=small]::before, + .ql-picker-item[data-value=small]::before + content: 'Small' + .ql-picker-label[data-value=large]::before, + .ql-picker-item[data-value=large]::before + content: 'Large' + .ql-picker-label[data-value=huge]::before, + .ql-picker-item[data-value=huge]::before + content: 'Huge' + .ql-picker-item[data-value=small]::before + font-size: 10px + .ql-picker-item[data-value=large]::before + font-size: 18px + .ql-picker-item[data-value=huge]::before + font-size: 32px + + .ql-color-picker.ql-background + .ql-picker-item + background-color: #fff; + .ql-color-picker.ql-color + .ql-picker-item + background-color: #000; diff --git a/assets/vendors/js/editors/quill/assets/bubble.styl b/assets/vendors/js/editors/quill/assets/bubble.styl new file mode 100644 index 0000000..b467450 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/bubble.styl @@ -0,0 +1,11 @@ +themeName = 'bubble' +activeColor = #fff +borderColor = #777 +backgroundColor = #444 +inactiveColor = #ccc +shadowColor = #ddd +textColor = #fff + +@import './core' +@import './base' +@import './bubble/*' diff --git a/assets/vendors/js/editors/quill/assets/bubble/toolbar.styl b/assets/vendors/js/editors/quill/assets/bubble/toolbar.styl new file mode 100644 index 0000000..2f80c3d --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/bubble/toolbar.styl @@ -0,0 +1,14 @@ +arrowWidth = 6px + +.ql-bubble + .ql-toolbar + .ql-formats + margin: 8px 12px 8px 0px + .ql-formats:first-child + margin-left: 12px + + .ql-color-picker + svg + margin: 1px + .ql-picker-item.ql-selected, .ql-picker-item:hover + border-color: activeColor diff --git a/assets/vendors/js/editors/quill/assets/bubble/tooltip.styl b/assets/vendors/js/editors/quill/assets/bubble/tooltip.styl new file mode 100644 index 0000000..d215055 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/bubble/tooltip.styl @@ -0,0 +1,46 @@ +arrowWidth = 6px + +.ql-bubble + .ql-tooltip + background-color: backgroundColor + border-radius: 25px + color: textColor + margin-top: 10px + .ql-tooltip-arrow + border-bottom: arrowWidth solid backgroundColor + border-left: arrowWidth solid transparent + border-right: arrowWidth solid transparent + content: " " + display: block + left: 50% + margin-left: -1 * arrowWidth + position: absolute + top: -1 * arrowWidth + + .ql-tooltip.ql-editing + .ql-tooltip-editor + display: block + .ql-formats + visibility: hidden + + .ql-tooltip-editor + display: none + input[type=text] + background: transparent + border: none + color: textColor + font-size: 13px + height: 100% + outline: none + padding: 10px 20px + position: absolute + width: 100% + a + &:before + color: inactiveColor + content: "\00D7" + font-size: 16px + font-weight: bold + top: 10px + position: absolute + right: 20px diff --git a/assets/vendors/js/editors/quill/assets/core.styl b/assets/vendors/js/editors/quill/assets/core.styl new file mode 100644 index 0000000..8954c46 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/core.styl @@ -0,0 +1,155 @@ +// Styles necessary for Quill + +LIST_STYLE = decimal lower-alpha lower-roman +LIST_STYLE_WIDTH = 1.2em +LIST_STYLE_MARGIN = 0.3em +LIST_STYLE_OUTER_WIDTH = LIST_STYLE_MARGIN + LIST_STYLE_WIDTH +MAX_INDENT = 9 + +resets(arr) + unquote('list-' + join(' list-', arr)) + +.ql-container + box-sizing: border-box + font-family: Helvetica, Arial, sans-serif + font-size: 13px + height: 100% + margin: 0px + position: relative + +.ql-clipboard + left: -100000px + height: 1px + overflow-y: hidden + position: absolute + top: 50% + p + margin: 0 + padding: 0 + +.ql-editor + box-sizing: border-box + cursor: text + line-height: 1.42 + height: 100% + outline: none + overflow-y: auto + padding: 12px 15px + tab-size: 4 + -moz-tab-size: 4 + text-align: left + white-space: pre-wrap + word-wrap: break-word + + p, ol, ul, pre, blockquote, h1, h2, h3, h4, h5, h6 + margin: 0 + padding: 0 + counter-reset: resets(1..MAX_INDENT) + ol, ul + padding-left: 1.5em + ol > li, ul > li + list-style-type: none + ul > li::before + content: '\25CF' + li::before + display: inline-block + margin-right: LIST_STYLE_MARGIN + text-align: right + white-space: nowrap + width: LIST_STYLE_WIDTH + li:not(.ql-direction-rtl)::before + margin-left: -1*LIST_STYLE_OUTER_WIDTH + ol, ul + li + padding-left: LIST_STYLE_OUTER_WIDTH + ol + li + counter-reset: resets(1..MAX_INDENT) + counter-increment: unquote('list-' + num) + &:before + content: unquote('counter(list-' + num + ', ' + LIST_STYLE[0] + ')') '. ' + for num in (1..MAX_INDENT) + li.ql-indent-{num} + counter-increment: unquote('list-' + num) + &:before + content: unquote('counter(list-' + num + ', ' + LIST_STYLE[num%3] + ')') '. ' + if (num < MAX_INDENT) + li.ql-indent-{num} + counter-reset: resets((num+1)..MAX_INDENT) + for num in (1..MAX_INDENT) + .ql-indent-{num}:not(.ql-direction-rtl) + padding-left: (3*num)em + li.ql-indent-{num}:not(.ql-direction-rtl) + padding-left: (3*num + LIST_STYLE_OUTER_WIDTH)em + .ql-indent-{num}.ql-direction-rtl.ql-align-right + padding-right: (3*num)em + li.ql-indent-{num}.ql-direction-rtl.ql-align-right + padding-right: (3*num + LIST_STYLE_OUTER_WIDTH)em + + .ql-video + display: block + max-width: 100% + .ql-video.ql-align-center + margin: 0 auto + .ql-video.ql-align-right + margin: 0 0 0 auto + + .ql-bg-black + background-color: rgb(0,0,0) + .ql-bg-red + background-color: rgb(230,0,0) + .ql-bg-orange + background-color: rgb(255,153,0) + .ql-bg-yellow + background-color: rgb(255,255,0) + .ql-bg-green + background-color: rgb(0,138,0) + .ql-bg-blue + background-color: rgb(0,102,204) + .ql-bg-purple + background-color: rgb(153,51,255) + + .ql-color-white + color: rgb(255,255,255) + .ql-color-red + color: rgb(230,0,0) + .ql-color-orange + color: rgb(255,153,0) + .ql-color-yellow + color: rgb(255,255,0) + .ql-color-green + color: rgb(0,138,0) + .ql-color-blue + color: rgb(0,102,204) + .ql-color-purple + color: rgb(153,51,255) + + .ql-font-serif + font-family: Georgia, Times New Roman, serif + .ql-font-monospace + font-family: Monaco, Courier New, monospace + + .ql-size-small + font-size: 0.75em + .ql-size-large + font-size: 1.5em + .ql-size-huge + font-size: 2.5em + + .ql-direction-rtl + direction: rtl + text-align: inherit + + .ql-align-center + text-align: center + .ql-align-justify + text-align: justify + .ql-align-right + text-align: right + +.ql-editor.ql-blank::before + color: rgba(0,0,0,0.6) + content: attr(data-placeholder) + font-style: italic + pointer-events: none + position: absolute diff --git a/assets/vendors/js/editors/quill/assets/favicon.png b/assets/vendors/js/editors/quill/assets/favicon.png new file mode 100644 index 0000000..f0f8cdb Binary files /dev/null and b/assets/vendors/js/editors/quill/assets/favicon.png differ diff --git a/assets/vendors/js/editors/quill/assets/icons/align-center.svg b/assets/vendors/js/editors/quill/assets/icons/align-center.svg new file mode 100644 index 0000000..2a345ff --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/align-center.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/align-justify.svg b/assets/vendors/js/editors/quill/assets/icons/align-justify.svg new file mode 100644 index 0000000..404a5a7 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/align-justify.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/align-left.svg b/assets/vendors/js/editors/quill/assets/icons/align-left.svg new file mode 100644 index 0000000..dd2fe81 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/align-left.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/align-right.svg b/assets/vendors/js/editors/quill/assets/icons/align-right.svg new file mode 100644 index 0000000..d9f5570 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/align-right.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/attachment.svg b/assets/vendors/js/editors/quill/assets/icons/attachment.svg new file mode 100644 index 0000000..b491b4d --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/attachment.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/audio.svg b/assets/vendors/js/editors/quill/assets/icons/audio.svg new file mode 100644 index 0000000..684888f --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/audio.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/authorship.svg b/assets/vendors/js/editors/quill/assets/icons/authorship.svg new file mode 100644 index 0000000..b9997ec --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/authorship.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/background.svg b/assets/vendors/js/editors/quill/assets/icons/background.svg new file mode 100644 index 0000000..0487104 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/background.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/blockquote.svg b/assets/vendors/js/editors/quill/assets/icons/blockquote.svg new file mode 100644 index 0000000..b408ade --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/blockquote.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/bold.svg b/assets/vendors/js/editors/quill/assets/icons/bold.svg new file mode 100644 index 0000000..48055c4 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/bold.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/clean.svg b/assets/vendors/js/editors/quill/assets/icons/clean.svg new file mode 100644 index 0000000..72cf882 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/clean.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/code.svg b/assets/vendors/js/editors/quill/assets/icons/code.svg new file mode 100644 index 0000000..2d151f9 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/code.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/color.svg b/assets/vendors/js/editors/quill/assets/icons/color.svg new file mode 100644 index 0000000..9f0df94 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/color.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/comment.svg b/assets/vendors/js/editors/quill/assets/icons/comment.svg new file mode 100644 index 0000000..8de5701 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/comment.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/direction-ltr.svg b/assets/vendors/js/editors/quill/assets/icons/direction-ltr.svg new file mode 100644 index 0000000..f3bad36 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/direction-ltr.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/direction-rtl.svg b/assets/vendors/js/editors/quill/assets/icons/direction-rtl.svg new file mode 100644 index 0000000..761519e --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/direction-rtl.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/dropdown.svg b/assets/vendors/js/editors/quill/assets/icons/dropdown.svg new file mode 100644 index 0000000..2cd51ff --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/dropdown.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/emoji.svg b/assets/vendors/js/editors/quill/assets/icons/emoji.svg new file mode 100644 index 0000000..c991566 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/emoji.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/float-center.svg b/assets/vendors/js/editors/quill/assets/icons/float-center.svg new file mode 100644 index 0000000..50838db --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/float-center.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/float-full.svg b/assets/vendors/js/editors/quill/assets/icons/float-full.svg new file mode 100644 index 0000000..b5982ed --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/float-full.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/float-left.svg b/assets/vendors/js/editors/quill/assets/icons/float-left.svg new file mode 100644 index 0000000..b2dbfea --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/float-left.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/float-right.svg b/assets/vendors/js/editors/quill/assets/icons/float-right.svg new file mode 100644 index 0000000..0cf8af5 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/float-right.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/font.svg b/assets/vendors/js/editors/quill/assets/icons/font.svg new file mode 100644 index 0000000..0ee8777 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/font.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/formula.svg b/assets/vendors/js/editors/quill/assets/icons/formula.svg new file mode 100644 index 0000000..b7126b4 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/formula.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/hashtag.svg b/assets/vendors/js/editors/quill/assets/icons/hashtag.svg new file mode 100644 index 0000000..4e688b2 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/hashtag.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/header-2.svg b/assets/vendors/js/editors/quill/assets/icons/header-2.svg new file mode 100644 index 0000000..759377b --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/header-2.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/header.svg b/assets/vendors/js/editors/quill/assets/icons/header.svg new file mode 100644 index 0000000..7f41130 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/header.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/image.svg b/assets/vendors/js/editors/quill/assets/icons/image.svg new file mode 100644 index 0000000..3341a24 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/image.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/indent.svg b/assets/vendors/js/editors/quill/assets/icons/indent.svg new file mode 100644 index 0000000..37bfe97 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/indent.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/italic.svg b/assets/vendors/js/editors/quill/assets/icons/italic.svg new file mode 100644 index 0000000..39e841c --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/italic.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/link.svg b/assets/vendors/js/editors/quill/assets/icons/link.svg new file mode 100644 index 0000000..1f5a81a --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/link.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/list-bullet.svg b/assets/vendors/js/editors/quill/assets/icons/list-bullet.svg new file mode 100644 index 0000000..ec158fa --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/list-bullet.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/list-check.svg b/assets/vendors/js/editors/quill/assets/icons/list-check.svg new file mode 100644 index 0000000..4539f45 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/list-check.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/list-ordered.svg b/assets/vendors/js/editors/quill/assets/icons/list-ordered.svg new file mode 100644 index 0000000..7e81b33 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/list-ordered.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/map.svg b/assets/vendors/js/editors/quill/assets/icons/map.svg new file mode 100644 index 0000000..3f429f1 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/map.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/mention.svg b/assets/vendors/js/editors/quill/assets/icons/mention.svg new file mode 100644 index 0000000..b2d44ac --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/mention.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/outdent.svg b/assets/vendors/js/editors/quill/assets/icons/outdent.svg new file mode 100644 index 0000000..8811e23 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/outdent.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/redo.svg b/assets/vendors/js/editors/quill/assets/icons/redo.svg new file mode 100644 index 0000000..1ea9179 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/redo.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/size-decrease.svg b/assets/vendors/js/editors/quill/assets/icons/size-decrease.svg new file mode 100644 index 0000000..e3c6bbf --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/size-decrease.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/size-increase.svg b/assets/vendors/js/editors/quill/assets/icons/size-increase.svg new file mode 100644 index 0000000..59fe541 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/size-increase.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/size.svg b/assets/vendors/js/editors/quill/assets/icons/size.svg new file mode 100644 index 0000000..dfadc1f --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/size.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/spacing.svg b/assets/vendors/js/editors/quill/assets/icons/spacing.svg new file mode 100644 index 0000000..c489969 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/spacing.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/speech.svg b/assets/vendors/js/editors/quill/assets/icons/speech.svg new file mode 100644 index 0000000..b35b4b9 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/speech.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/strike.svg b/assets/vendors/js/editors/quill/assets/icons/strike.svg new file mode 100644 index 0000000..e185d73 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/strike.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/subscript.svg b/assets/vendors/js/editors/quill/assets/icons/subscript.svg new file mode 100644 index 0000000..a2d5eae --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/subscript.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/superscript.svg b/assets/vendors/js/editors/quill/assets/icons/superscript.svg new file mode 100644 index 0000000..1254540 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/superscript.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-border-all.svg b/assets/vendors/js/editors/quill/assets/icons/table-border-all.svg new file mode 100644 index 0000000..578bdef --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-border-all.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-border-bottom.svg b/assets/vendors/js/editors/quill/assets/icons/table-border-bottom.svg new file mode 100644 index 0000000..cf2326b --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-border-bottom.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-border-left.svg b/assets/vendors/js/editors/quill/assets/icons/table-border-left.svg new file mode 100644 index 0000000..21efce7 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-border-left.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-border-none.svg b/assets/vendors/js/editors/quill/assets/icons/table-border-none.svg new file mode 100644 index 0000000..c96df12 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-border-none.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-border-outside.svg b/assets/vendors/js/editors/quill/assets/icons/table-border-outside.svg new file mode 100644 index 0000000..c4c5cee --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-border-outside.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-border-right.svg b/assets/vendors/js/editors/quill/assets/icons/table-border-right.svg new file mode 100644 index 0000000..cdb1863 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-border-right.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-border-top.svg b/assets/vendors/js/editors/quill/assets/icons/table-border-top.svg new file mode 100644 index 0000000..8b1af77 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-border-top.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-delete-cells.svg b/assets/vendors/js/editors/quill/assets/icons/table-delete-cells.svg new file mode 100644 index 0000000..405f43e --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-delete-cells.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-delete-columns.svg b/assets/vendors/js/editors/quill/assets/icons/table-delete-columns.svg new file mode 100644 index 0000000..c1c2567 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-delete-columns.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-delete-rows.svg b/assets/vendors/js/editors/quill/assets/icons/table-delete-rows.svg new file mode 100644 index 0000000..df216d8 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-delete-rows.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-insert-cells.svg b/assets/vendors/js/editors/quill/assets/icons/table-insert-cells.svg new file mode 100644 index 0000000..9a37601 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-insert-cells.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-insert-columns.svg b/assets/vendors/js/editors/quill/assets/icons/table-insert-columns.svg new file mode 100644 index 0000000..4374221 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-insert-columns.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-insert-rows.svg b/assets/vendors/js/editors/quill/assets/icons/table-insert-rows.svg new file mode 100644 index 0000000..76819c7 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-insert-rows.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-merge-cells.svg b/assets/vendors/js/editors/quill/assets/icons/table-merge-cells.svg new file mode 100644 index 0000000..71209af --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-merge-cells.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table-unmerge-cells.svg b/assets/vendors/js/editors/quill/assets/icons/table-unmerge-cells.svg new file mode 100644 index 0000000..24ec0b3 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table-unmerge-cells.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/table.svg b/assets/vendors/js/editors/quill/assets/icons/table.svg new file mode 100644 index 0000000..cf85df9 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/table.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/underline.svg b/assets/vendors/js/editors/quill/assets/icons/underline.svg new file mode 100644 index 0000000..b3c2a35 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/underline.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/undo.svg b/assets/vendors/js/editors/quill/assets/icons/undo.svg new file mode 100644 index 0000000..33fc0ff --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/undo.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/icons/video.svg b/assets/vendors/js/editors/quill/assets/icons/video.svg new file mode 100644 index 0000000..777c532 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/icons/video.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/assets/snow.styl b/assets/vendors/js/editors/quill/assets/snow.styl new file mode 100644 index 0000000..14f8ed3 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/snow.styl @@ -0,0 +1,18 @@ +themeName = 'snow' +activeColor = #06c +borderColor = #ccc +backgroundColor = #fff +inactiveColor = #444 +shadowColor = #ddd +textColor = #444 + +@import './core' +@import './base' +@import './snow/*' + +.ql-snow + a + color: activeColor + +.ql-container.ql-snow + border: 1px solid borderColor diff --git a/assets/vendors/js/editors/quill/assets/snow/toolbar.styl b/assets/vendors/js/editors/quill/assets/snow/toolbar.styl new file mode 100644 index 0000000..bac8701 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/snow/toolbar.styl @@ -0,0 +1,26 @@ +.ql-toolbar.ql-snow + border: 1px solid borderColor + box-sizing: border-box + font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif + padding: 8px + + .ql-formats + margin-right: 15px + + .ql-picker-label + border: 1px solid transparent + .ql-picker-options + border: 1px solid transparent + box-shadow: rgba(0,0,0,0.2) 0 2px 8px + .ql-picker.ql-expanded + .ql-picker-label + border-color: borderColor + .ql-picker-options + border-color: borderColor + + .ql-color-picker + .ql-picker-item.ql-selected, .ql-picker-item:hover + border-color: #000 + +.ql-toolbar.ql-snow + .ql-container.ql-snow + border-top: 0px; diff --git a/assets/vendors/js/editors/quill/assets/snow/tooltip.styl b/assets/vendors/js/editors/quill/assets/snow/tooltip.styl new file mode 100644 index 0000000..dd474c1 --- /dev/null +++ b/assets/vendors/js/editors/quill/assets/snow/tooltip.styl @@ -0,0 +1,54 @@ +tooltipMargin = 8px + +.ql-snow + .ql-tooltip + background-color: #fff + border: 1px solid borderColor + box-shadow: 0px 0px 5px shadowColor + color: textColor + margin-top: 10px + padding: 5px 12px + white-space: nowrap + &::before + content: "Visit URL:" + line-height: 26px + margin-right: tooltipMargin + input[type=text] + display: none + border: 1px solid borderColor + font-size: 13px + height: 26px + margin: 0px + padding: 3px 5px + width: 170px + a.ql-preview + display: inline-block + max-width: 200px + overflow-x: hidden + text-overflow: ellipsis + vertical-align: top + a.ql-action::after + border-right: 1px solid borderColor + content: 'Edit' + margin-left: tooltipMargin*2 + padding-right: tooltipMargin + a.ql-remove::before + content: 'Remove' + margin-left: tooltipMargin + a + line-height: 26px + .ql-tooltip.ql-editing + a.ql-preview, a.ql-remove + display: none + input[type=text] + display: inline-block + a.ql-action::after + border-right: 0px + content: 'Save' + padding-right: 0px + .ql-tooltip[data-mode=link]::before + content: "Enter link:" + .ql-tooltip[data-mode=formula]::before + content: "Enter formula:" + .ql-tooltip[data-mode=video]::before + content: "Enter video:" diff --git a/assets/vendors/js/editors/quill/highlight.min.js b/assets/vendors/js/editors/quill/highlight.min.js new file mode 100644 index 0000000..7b2172e --- /dev/null +++ b/assets/vendors/js/editors/quill/highlight.min.js @@ -0,0 +1,2 @@ +/*! highlight.js v9.15.10 | BSD3 License | git.io/hljslicense */ +!function(e){var t="object"==typeof window&&window||"object"==typeof self&&self;"undefined"==typeof exports||exports.nodeType?t&&(t.hljs=e({}),"function"==typeof define&&define.amd&&define([],function(){return t.hljs})):e(exports)}(function(n){var d=[],o=Object.keys,h={},c={},t=/^(no-?highlight|plain|text)$/i,l=/\blang(?:uage)?-([\w-]+)\b/i,r=/((^(<[^>]+>|\t|)+|(?:\n)))/gm,a={case_insensitive:"cI",lexemes:"l",contains:"c",keywords:"k",subLanguage:"sL",className:"cN",begin:"b",beginKeywords:"bK",end:"e",endsWithParent:"eW",illegal:"i",excludeBegin:"eB",excludeEnd:"eE",returnBegin:"rB",returnEnd:"rE",relevance:"r",variants:"v",IDENT_RE:"IR",UNDERSCORE_IDENT_RE:"UIR",NUMBER_RE:"NR",C_NUMBER_RE:"CNR",BINARY_NUMBER_RE:"BNR",RE_STARTERS_RE:"RSR",BACKSLASH_ESCAPE:"BE",APOS_STRING_MODE:"ASM",QUOTE_STRING_MODE:"QSM",PHRASAL_WORDS_MODE:"PWM",C_LINE_COMMENT_MODE:"CLCM",C_BLOCK_COMMENT_MODE:"CBCM",HASH_COMMENT_MODE:"HCM",NUMBER_MODE:"NM",C_NUMBER_MODE:"CNM",BINARY_NUMBER_MODE:"BNM",CSS_NUMBER_MODE:"CSSNM",REGEXP_MODE:"RM",TITLE_MODE:"TM",UNDERSCORE_TITLE_MODE:"UTM",COMMENT:"C",beginRe:"bR",endRe:"eR",illegalRe:"iR",lexemesRe:"lR",terminators:"t",terminator_end:"tE"},N="",v={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0};function y(e){return e.replace(/&/g,"&").replace(//g,">")}function b(e){return e.nodeName.toLowerCase()}function w(e,t){var r=e&&e.exec(t);return r&&0===r.index}function u(e){return t.test(e)}function p(e){var t,r={},a=Array.prototype.slice.call(arguments,1);for(t in e)r[t]=e[t];return a.forEach(function(e){for(t in e)r[t]=e[t]}),r}function m(e){var n=[];return function e(t,r){for(var a=t.firstChild;a;a=a.nextSibling)3===a.nodeType?r+=a.nodeValue.length:1===a.nodeType&&(n.push({event:"start",offset:r,node:a}),r=e(a,r),b(a).match(/br|hr|img|input/)||n.push({event:"stop",offset:r,node:a}));return r}(e,0),n}function i(e){if(a&&!e.langApiRestored){for(var t in e.langApiRestored=!0,a)e[t]&&(e[a[t]]=e[t]);(e.c||[]).concat(e.v||[]).forEach(i)}}function E(s){function l(e){return e&&e.source||e}function c(e,t){return new RegExp(l(e),"m"+(s.cI?"i":"")+(t?"g":""))}!function t(r,e){if(!r.compiled){if(r.compiled=!0,r.k=r.k||r.bK,r.k){function a(r,e){s.cI&&(e=e.toLowerCase()),e.split(" ").forEach(function(e){var t=e.split("|");n[t[0]]=[r,t[1]?Number(t[1]):1]})}var n={};"string"==typeof r.k?a("keyword",r.k):o(r.k).forEach(function(e){a(e,r.k[e])}),r.k=n}r.lR=c(r.l||/\w+/,!0),e&&(r.bK&&(r.b="\\b("+r.bK.split(" ").join("|")+")\\b"),r.b||(r.b=/\B|\b/),r.bR=c(r.b),r.endSameAsBegin&&(r.e=r.b),r.e||r.eW||(r.e=/\B|\b/),r.e&&(r.eR=c(r.e)),r.tE=l(r.e)||"",r.eW&&e.tE&&(r.tE+=(r.e?"|":"")+e.tE)),r.i&&(r.iR=c(r.i)),null==r.r&&(r.r=1),r.c||(r.c=[]),r.c=Array.prototype.concat.apply([],r.c.map(function(e){return function(t){return t.v&&!t.cached_variants&&(t.cached_variants=t.v.map(function(e){return p(t,{v:null},e)})),t.cached_variants||t.eW&&[p(t)]||[t]}("self"===e?r:e)})),r.c.forEach(function(e){t(e,r)}),r.starts&&t(r.starts,e);var i=r.c.map(function(e){return e.bK?"\\.?(?:"+e.b+")\\.?":e.b}).concat([r.tE,r.i]).map(l).filter(Boolean);r.t=i.length?c(function(e,t){for(var r=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./,a=0,n="",i=0;i')+t+(r?"":N):t}function s(){b+=null!=u.sL?function(){var e="string"==typeof u.sL;if(e&&!h[u.sL])return y(p);var t=e?k(u.sL,p,!0,d[u.sL]):x(p,u.sL.length?u.sL:void 0);return 0")+'"');return p+=t,t.length||1}var l=M(e);if(!l)throw new Error('Unknown language: "'+e+'"');E(l);var n,u=r||l,d={},b="";for(n=u;n!==l;n=n.parent)n.cN&&(b=c(n.cN,"",!0)+b);var p="",m=0;try{for(var f,g,_=0;u.t.lastIndex=_,f=u.t.exec(t);)g=a(t.substring(_,f.index),f[0]),_=f.index+g;for(a(t.substr(_)),n=u;n.parent;n=n.parent)n.cN&&(b+=N);return{r:m,value:b,language:e,top:u}}catch(e){if(e.message&&-1!==e.message.indexOf("Illegal"))return{r:0,value:y(t)};throw e}}function x(r,e){e=e||v.languages||o(h);var a={r:0,value:y(r)},n=a;return e.filter(M).filter(_).forEach(function(e){var t=k(e,r,!1);t.language=e,t.r>n.r&&(n=t),t.r>a.r&&(n=a,a=t)}),n.language&&(a.second_best=n),a}function f(e){return v.tabReplace||v.useBR?e.replace(r,function(e,t){return v.useBR&&"\n"===e?"
    ":v.tabReplace?t.replace(/\t/g,v.tabReplace):""}):e}function s(e){var t,r,a,n,i,s=function(e){var t,r,a,n,i=e.className+" ";if(i+=e.parentNode?e.parentNode.className:"",r=l.exec(i))return M(r[1])?r[1]:"no-highlight";for(t=0,a=(i=i.split(/\s+/)).length;t/g,"\n"):t=e,i=t.textContent,a=s?k(s,i,!0):x(i),(r=m(t)).length&&((n=document.createElementNS("http://www.w3.org/1999/xhtml","div")).innerHTML=a.value,a.value=function(e,t,r){var a=0,n="",i=[];function s(){return e.length&&t.length?e[0].offset!==t[0].offset?e[0].offset"}function o(e){n+=""}function l(e){("start"===e.event?c:o)(e.node)}for(;e.length||t.length;){var u=s();if(n+=y(r.substring(a,u[0].offset)),a=u[0].offset,u===e){for(i.reverse().forEach(o);l(u.splice(0,1)[0]),(u=s())===e&&u.length&&u[0].offset===a;);i.reverse().forEach(c)}else"start"===u[0].event?i.push(u[0].node):i.pop(),l(u.splice(0,1)[0])}return n+y(r.substr(a))}(r,m(n),i)),a.value=f(a.value),e.innerHTML=a.value,e.className=function(e,t,r){var a=t?c[t]:r,n=[e.trim()];return e.match(/\bhljs\b/)||n.push("hljs"),-1===e.indexOf(a)&&n.push(a),n.join(" ").trim()}(e.className,s,a.language),e.result={language:a.language,re:a.r},a.second_best&&(e.second_best={language:a.second_best.language,re:a.second_best.r}))}function g(){if(!g.called){g.called=!0;var e=document.querySelectorAll("pre code");d.forEach.call(e,s)}}function M(e){return e=(e||"").toLowerCase(),h[e]||h[c[e]]}function _(e){var t=M(e);return t&&!t.disableAutodetect}return n.highlight=k,n.highlightAuto=x,n.fixMarkup=f,n.highlightBlock=s,n.configure=function(e){v=p(v,e)},n.initHighlighting=g,n.initHighlightingOnLoad=function(){addEventListener("DOMContentLoaded",g,!1),addEventListener("load",g,!1)},n.registerLanguage=function(t,e){var r=h[t]=e(n);i(r),r.aliases&&r.aliases.forEach(function(e){c[e]=t})},n.listLanguages=function(){return o(h)},n.getLanguage=M,n.autoDetection=_,n.inherit=p,n.IR=n.IDENT_RE="[a-zA-Z]\\w*",n.UIR=n.UNDERSCORE_IDENT_RE="[a-zA-Z_]\\w*",n.NR=n.NUMBER_RE="\\b\\d+(\\.\\d+)?",n.CNR=n.C_NUMBER_RE="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",n.BNR=n.BINARY_NUMBER_RE="\\b(0b[01]+)",n.RSR=n.RE_STARTERS_RE="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",n.BE=n.BACKSLASH_ESCAPE={b:"\\\\[\\s\\S]",r:0},n.ASM=n.APOS_STRING_MODE={cN:"string",b:"'",e:"'",i:"\\n",c:[n.BE]},n.QSM=n.QUOTE_STRING_MODE={cN:"string",b:'"',e:'"',i:"\\n",c:[n.BE]},n.PWM=n.PHRASAL_WORDS_MODE={b:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},n.C=n.COMMENT=function(e,t,r){var a=n.inherit({cN:"comment",b:e,e:t,c:[]},r||{});return a.c.push(n.PWM),a.c.push({cN:"doctag",b:"(?:TODO|FIXME|NOTE|BUG|XXX):",r:0}),a},n.CLCM=n.C_LINE_COMMENT_MODE=n.C("//","$"),n.CBCM=n.C_BLOCK_COMMENT_MODE=n.C("/\\*","\\*/"),n.HCM=n.HASH_COMMENT_MODE=n.C("#","$"),n.NM=n.NUMBER_MODE={cN:"number",b:n.NR,r:0},n.CNM=n.C_NUMBER_MODE={cN:"number",b:n.CNR,r:0},n.BNM=n.BINARY_NUMBER_MODE={cN:"number",b:n.BNR,r:0},n.CSSNM=n.CSS_NUMBER_MODE={cN:"number",b:n.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},n.RM=n.REGEXP_MODE={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[n.BE,{b:/\[/,e:/\]/,r:0,c:[n.BE]}]},n.TM=n.TITLE_MODE={cN:"title",b:n.IR,r:0},n.UTM=n.UNDERSCORE_TITLE_MODE={cN:"title",b:n.UIR,r:0},n.METHOD_GUARD={b:"\\.\\s*"+n.UIR,r:0},n.registerLanguage("apache",function(e){var t={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"section",b:""},{cN:"attribute",b:/\w+/,r:0,k:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"meta",b:"\\s\\[",e:"\\]$"},{cN:"variable",b:"[\\$%]\\{",e:"\\}",c:["self",t]},t,e.QSM]}}],i:/\S/}}),n.registerLanguage("bash",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},r={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]};return{aliases:["sh","zsh"],l:/\b-?[a-z\._]+\b/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"meta",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,r,{cN:"",b:/\\"/},{cN:"string",b:/'/,e:/'/},t]}}),n.registerLanguage("coffeescript",function(e){var t={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super yield import export from as default await then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",built_in:"npm require console print module global window document"},r="[A-Za-z$_][0-9A-Za-z$_]*",a={cN:"subst",b:/#\{/,e:/}/,k:t},n=[e.BNM,e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,a]},{b:/"/,e:/"/,c:[e.BE,a]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[a,e.HCM]},{b:"//[gim]*",r:0},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{b:"@"+r},{sL:"javascript",eB:!0,eE:!0,v:[{b:"```",e:"```"},{b:"`",e:"`"}]}];a.c=n;var i=e.inherit(e.TM,{b:r}),s="(\\(.*\\))?\\s*\\B[-=]>",c={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(n)}]};return{aliases:["coffee","cson","iced"],k:t,i:/\/\*/,c:n.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+r+"\\s*=\\s*"+s,e:"[-=]>",rB:!0,c:[i,c]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:s,e:"[-=]>",rB:!0,c:[c]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[i]},i]},{b:r+":",e:":",rB:!0,rE:!0,r:0}])}}),n.registerLanguage("cpp",function(e){var t={cN:"keyword",b:"\\b[a-z\\d_]*_t\\b"},r={cN:"string",v:[{b:'(u8?|U|L)?"',e:'"',i:"\\n",c:[e.BE]},{b:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\((?:.|\n)*?\)\1"/},{b:"'\\\\?.",e:"'",i:"."}]},a={cN:"number",v:[{b:"\\b(0b[01']+)"},{b:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{b:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],r:0},n={cN:"meta",b:/#\s*[a-z]+\b/,e:/$/,k:{"meta-keyword":"if else elif endif define undef warning error line pragma ifdef ifndef include"},c:[{b:/\\\n/,r:0},e.inherit(r,{cN:"meta-string"}),{cN:"meta-string",b:/<[^\n>]*>/,e:/$/,i:"\\n"},e.CLCM,e.CBCM]},i=e.IR+"\\s*\\(",s={keyword:"int float while private char catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and or not",built_in:"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr",literal:"true false nullptr NULL"},c=[t,e.CLCM,e.CBCM,a,r];return{aliases:["c","cc","h","c++","h++","hpp","hh","hxx","cxx"],k:s,i:"",k:s,c:["self",t]},{b:e.IR+"::",k:s},{v:[{b:/=/,e:/;/},{b:/\(/,e:/\)/},{bK:"new throw return else",e:/;/}],k:s,c:c.concat([{b:/\(/,e:/\)/,k:s,c:c.concat(["self"]),r:0}]),r:0},{cN:"function",b:"("+e.IR+"[\\*&\\s]+)+"+i,rB:!0,e:/[{;=]/,eE:!0,k:s,i:/[^\w\s\*&]/,c:[{b:i,rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:s,r:0,c:[e.CLCM,e.CBCM,r,a,t,{b:/\(/,e:/\)/,k:s,r:0,c:["self",e.CLCM,e.CBCM,r,a,t]}]},e.CLCM,e.CBCM,n]},{cN:"class",bK:"class struct",e:/[{;:]/,c:[{b://,c:["self"]},e.TM]}]),exports:{preprocessor:n,strings:r,k:s}}}),n.registerLanguage("cs",function(e){var t={keyword:"abstract as base bool break byte case catch char checked const continue decimal default delegate do double enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long nameof object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while add alias ascending async await by descending dynamic equals from get global group into join let on orderby partial remove select set value var where yield",literal:"null false true"},r={cN:"number",v:[{b:"\\b(0b[01']+)"},{b:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{b:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],r:0},a={cN:"string",b:'@"',e:'"',c:[{b:'""'}]},n=e.inherit(a,{i:/\n/}),i={cN:"subst",b:"{",e:"}",k:t},s=e.inherit(i,{i:/\n/}),c={cN:"string",b:/\$"/,e:'"',i:/\n/,c:[{b:"{{"},{b:"}}"},e.BE,s]},o={cN:"string",b:/\$@"/,e:'"',c:[{b:"{{"},{b:"}}"},{b:'""'},i]},l=e.inherit(o,{i:/\n/,c:[{b:"{{"},{b:"}}"},{b:'""'},s]});i.c=[o,c,a,e.ASM,e.QSM,r,e.CBCM],s.c=[l,c,n,e.ASM,e.QSM,r,e.inherit(e.CBCM,{i:/\n/})];var u={v:[o,c,a,e.ASM,e.QSM]},d=e.IR+"(<"+e.IR+"(\\s*,\\s*"+e.IR+")*>)?(\\[\\])?";return{aliases:["csharp","c#"],k:t,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"doctag",v:[{b:"///",r:0},{b:"\x3c!--|--\x3e"},{b:""}]}]}),e.CLCM,e.CBCM,{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},u,r,{bK:"class interface",e:/[{;=]/,i:/[^\s:,]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"namespace",e:/[{;=]/,i:/[^\s:]/,c:[e.inherit(e.TM,{b:"[a-zA-Z](\\.?\\w)*"}),e.CLCM,e.CBCM]},{cN:"meta",b:"^\\s*\\[",eB:!0,e:"\\]",eE:!0,c:[{cN:"meta-string",b:/"/,e:/"/}]},{bK:"new return throw await else",r:0},{cN:"function",b:"("+d+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/\s*[{;=]/,eE:!0,k:t,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,r:0,c:[u,r,e.CBCM]},e.CLCM,e.CBCM]}]}}),n.registerLanguage("css",function(e){var t={b:/(?:[A-Z\_\.\-]+|--[a-zA-Z0-9_-]+)\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\w-]+\(/,rB:!0,c:[{cN:"built_in",b:/[\w-]+/},{b:/\(/,e:/\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"number",b:"#[0-9A-Fa-f]+"},{cN:"meta",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,{cN:"selector-id",b:/#[A-Za-z0-9_-]+/},{cN:"selector-class",b:/\.[A-Za-z0-9_-]+/},{cN:"selector-attr",b:/\[/,e:/\]/,i:"$"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{b:"@",e:"[{;]",i:/:/,c:[{cN:"keyword",b:/\w+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:"selector-tag",b:"[a-zA-Z-][a-zA-Z0-9_-]*",r:0},{b:"{",e:"}",i:/\S/,c:[e.CBCM,t]}]}}),n.registerLanguage("diff",function(e){return{aliases:["patch"],c:[{cN:"meta",r:10,v:[{b:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"comment",v:[{b:/Index: /,e:/$/},{b:/={3,}/,e:/$/},{b:/^\-{3}/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+{3}/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"addition",b:"^\\!",e:"$"}]}}),n.registerLanguage("http",function(e){var t="HTTP/[0-9\\.]+";return{aliases:["https"],i:"\\S",c:[{b:"^"+t,e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{b:"^[A-Z]+ (.*?) "+t+"$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0},{b:t},{cN:"keyword",b:"[A-Z]+"}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{e:"$",r:0}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}}),n.registerLanguage("ini",function(e){var t={cN:"string",c:[e.BE],v:[{b:"'''",e:"'''",r:10},{b:'"""',e:'"""',r:10},{b:'"',e:'"'},{b:"'",e:"'"}]};return{aliases:["toml"],cI:!0,i:/\S/,c:[e.C(";","$"),e.HCM,{cN:"section",b:/^\s*\[+/,e:/\]+/},{b:/^[a-z0-9\[\]_\.-]+\s*=\s*/,e:"$",rB:!0,c:[{cN:"attr",b:/[a-z0-9\[\]_\.-]+/},{b:/=/,eW:!0,r:0,c:[e.C(";","$"),e.HCM,{cN:"literal",b:/\bon|off|true|false|yes|no\b/},{cN:"variable",v:[{b:/\$[\w\d"][\w\d_]*/},{b:/\$\{(.*?)}/}]},t,{cN:"number",b:/([\+\-]+)?[\d]+_[\d_]+/},e.NM]}]}]}}),n.registerLanguage("java",function(e){var t="false synchronized int abstract float private char boolean var static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",r={cN:"number",b:"\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",r:0};return{aliases:["jsp"],k:t,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"([À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*(<[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*(\\s*,\\s*[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*)*>)?\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},r,{cN:"meta",b:"@[A-Za-z]+"}]}}),n.registerLanguage("javascript",function(e){var t="[A-Za-z$_][0-9A-Za-z$_]*",r={keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},a={cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},n={cN:"subst",b:"\\$\\{",e:"\\}",k:r,c:[]},i={b:"html`",e:"",starts:{e:"`",rE:!1,c:[e.BE,n],sL:"xml"}},s={b:"css`",e:"",starts:{e:"`",rE:!1,c:[e.BE,n],sL:"css"}},c={cN:"string",b:"`",e:"`",c:[e.BE,n]};n.c=[e.ASM,e.QSM,i,s,c,a,e.RM];var o=n.c.concat([e.CBCM,e.CLCM]);return{aliases:["js","jsx"],k:r,c:[{cN:"meta",r:10,b:/^\s*['"]use (strict|asm)['"]/},{cN:"meta",b:/^#!/,e:/$/},e.ASM,e.QSM,i,s,c,e.CLCM,e.CBCM,a,{b:/[{,]\s*/,r:0,c:[{b:t+"\\s*:",rB:!0,r:0,c:[{cN:"attr",b:t,r:0}]}]},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+t+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:t},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:o}]}]},{cN:"",b:/\s/,e:/\s*/,skip:!0},{b://,sL:"xml",c:[{b:/<[A-Za-z0-9\\._:-]+\s*\/>/,skip:!0},{b:/<[A-Za-z0-9\\._:-]+/,e:/(\/[A-Za-z0-9\\._:-]+|[A-Za-z0-9\\._:-]+\/)>/,skip:!0,c:[{b:/<[A-Za-z0-9\\._:-]+\s*\/>/,skip:!0},"self"]}]}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:t}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:o}],i:/\[|%/},{b:/\$[(.]/},e.METHOD_GUARD,{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]},{bK:"constructor get set",e:/\{/,eE:!0}],i:/#(?!!)/}}),n.registerLanguage("json",function(e){var t={literal:"true false null"},r=[e.QSM,e.CNM],a={e:",",eW:!0,eE:!0,c:r,k:t},n={b:"{",e:"}",c:[{cN:"attr",b:/"/,e:/"/,c:[e.BE],i:"\\n"},e.inherit(a,{b:/:/})],i:"\\S"},i={b:"\\[",e:"\\]",c:[e.inherit(a)],i:"\\S"};return r.splice(r.length,0,n,i),{c:r,k:t,i:"\\S"}}),n.registerLanguage("makefile",function(e){var t={cN:"variable",v:[{b:"\\$\\("+e.UIR+"\\)",c:[e.BE]},{b:/\$[@%`]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf"],cI:!0,c:[{cN:"meta",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},e.C("\x3c!--","--\x3e",{r:10}),{b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{cN:"meta",b:/<\?xml/,e:/\?>/,r:10},{b:/<\?(php)?/,e:/\?>/,sL:"php",c:[{b:"/\\*",e:"\\*/",skip:!0},{b:'b"',e:'"',skip:!0},{b:"b'",e:"'",skip:!0},e.inherit(e.ASM,{i:null,cN:null,c:null,skip:!0}),e.inherit(e.QSM,{i:null,cN:null,c:null,skip:!0})]},{cN:"tag",b:"|$)",e:">",k:{name:"style"},c:[t],starts:{e:"",rE:!0,sL:["css","xml"]}},{cN:"tag",b:"|$)",e:">",k:{name:"script"},c:[t],starts:{e:"<\/script>",rE:!0,sL:["actionscript","javascript","handlebars","xml","vbscript"]}},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},t]}]}}),n.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^\\s*([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"^```w*s*$",e:"^```s*$"},{b:"`.+?`"},{b:"^( {4}|\t)",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:/^\[[^\n]+\]:/,rB:!0,c:[{cN:"symbol",b:/\[/,e:/\]/,eB:!0,eE:!0},{cN:"link",b:/:\s*/,e:/$/,eB:!0}]}]}}),n.registerLanguage("nginx",function(e){var t={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},r={eW:!0,l:"[a-z/_]+",k:{literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,t],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[t]},{cN:"regexp",c:[e.BE,t],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},t]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s+{",rB:!0,e:"{",c:[{cN:"section",b:e.UIR}],r:0},{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"attribute",b:e.UIR,starts:r}],r:0}],i:"[^\\s\\}]"}}),n.registerLanguage("objectivec",function(e){var t=/[a-zA-Z@][a-zA-Z0-9_]*/,r="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:{keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},l:t,i:""}]}]},{cN:"class",b:"("+r.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:r,l:t,c:[e.UTM]},{b:"\\."+e.UIR,r:0}]}}),n.registerLanguage("perl",function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},a={b:"->{",e:"}"},n={v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},i=[e.BE,r,n],s=[n,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),a,{cN:"string",c:i,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"function",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",eE:!0,r:5,c:[e.TM]},{b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=s,{aliases:["pl","pm"],l:/[\w\.]+/,k:t,c:a.c=s}}),n.registerLanguage("php",function(e){var t={b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},r={cN:"meta",b:/<\?(php)?|\?>/},a={cN:"string",c:[e.BE,r],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:["php","php3","php4","php5","php6","php7"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.HCM,e.C("//","$",{c:[r]}),e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},r,{cN:"keyword",b:/\$this\b/},t,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",t,e.CBCM,a,n]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},a,n]}}),n.registerLanguage("properties",function(e){var t="[ \\t\\f]*",r="("+t+"[:=]"+t+"|[ \\t\\f]+)",a="([^\\\\\\W:= \\t\\f\\n]|\\\\.)+",n="([^\\\\:= \\t\\f\\n]|\\\\.)+",i={e:r,r:0,starts:{cN:"string",e:/$/,r:0,c:[{b:"\\\\\\n"}]}};return{cI:!0,i:/\S/,c:[e.C("^\\s*[!#]","$"),{b:a+r,rB:!0,c:[{cN:"attr",b:a,endsParent:!0,r:0}],starts:i},{b:n+r,rB:!0,r:0,c:[{cN:"meta",b:n,endsParent:!0,r:0}],starts:i},{cN:"attr",r:0,b:n+t+"$"}]}}),n.registerLanguage("python",function(e){var t={keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10",built_in:"Ellipsis NotImplemented",literal:"False None True"},r={cN:"meta",b:/^(>>>|\.\.\.) /},a={cN:"subst",b:/\{/,e:/\}/,k:t,i:/#/},n={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[e.BE,r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[e.BE,r],r:10},{b:/(fr|rf|f)'''/,e:/'''/,c:[e.BE,r,a]},{b:/(fr|rf|f)"""/,e:/"""/,c:[e.BE,r,a]},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},{b:/(fr|rf|f)'/,e:/'/,c:[e.BE,a]},{b:/(fr|rf|f)"/,e:/"/,c:[e.BE,a]},e.ASM,e.QSM]},i={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},s={cN:"params",b:/\(/,e:/\)/,c:["self",r,i,n]};return a.c=[n,i,r],{aliases:["py","gyp","ipython"],k:t,i:/(<\/|->|\?)|=>/,c:[r,i,n,e.HCM,{v:[{cN:"function",bK:"def"},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,s,{b:/->/,eW:!0,k:"None"}]},{cN:"meta",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}}),n.registerLanguage("ruby",function(e){var t="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},a={cN:"doctag",b:"@[A-Za-z]+"},n={b:"#<",e:">"},i=[e.C("#","$",{c:[a]}),e.C("^\\=begin","^\\=end",{c:[a],r:10}),e.C("^__END__","\\n$")],s={cN:"subst",b:"#\\{",e:"}",k:r},c={cN:"string",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{b:/<<[-~]?'?(\w+)(?:.|\n)*?\n\s*\1\b/,rB:!0,c:[{b:/<<[-~]?'?/},{b:/\w+/,endSameAsBegin:!0,c:[e.BE,s]}]}]},o={cN:"params",b:"\\(",e:"\\)",endsParent:!0,k:r},l=[c,n,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<\\s*",c:[{b:"("+e.IR+"::)?"+e.IR}]}].concat(i)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:t}),o].concat(i)},{b:e.IR+"::"},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":(?!\\s)",c:[c,{b:t}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{cN:"params",b:/\|/,e:/\|/,k:r},{b:"("+e.RSR+"|unless)\\s*",k:"unless",c:[n,{cN:"regexp",c:[e.BE,s],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(i),r:0}].concat(i);s.c=l;var u=[{b:/^\s*=>/,starts:{e:"$",c:o.c=l}},{cN:"meta",b:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>)",starts:{e:"$",c:l}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,i:/\/\*/,c:i.concat(u).concat(l)}}),n.registerLanguage("shell",function(e){return{aliases:["console"],c:[{cN:"meta",b:"^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]",starts:{e:"$",sL:"bash"}}]}}),n.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*]/,c:[{bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment values with",e:/;/,eW:!0,l:/[\w\.]+/,k:{keyword:"as abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias all allocate allow alter always analyze ancillary and anti any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound bucket buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain explode export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force foreign form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour hours http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lateral lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minutes minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notnull notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second seconds section securefile security seed segment select self semi sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tablesample tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unnest unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace window with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null unknown",built_in:"array bigint binary bit blob bool boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text time timestamp tinyint varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t,e.HCM]},e.CBCM,t,e.HCM]}}),n.registerLanguage("yaml",function(e){var t="true false yes no null",r="^[ \\-]*",a="[a-zA-Z_][\\w\\-]*",n={cN:"attr",v:[{b:r+a+":"},{b:r+'"'+a+'":'},{b:r+"'"+a+"':"}]},i={cN:"string",r:0,v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/\S+/}],c:[e.BE,{cN:"template-variable",v:[{b:"{{",e:"}}"},{b:"%{",e:"}"}]}]};return{cI:!0,aliases:["yml","YAML","yaml"],c:[n,{cN:"meta",b:"^---s*$",r:10},{cN:"string",b:"[\\|>] *$",rE:!0,c:i.c,e:n.v[0].b},{b:"<%[%=-]?",e:"[%-]?%>",sL:"ruby",eB:!0,eE:!0,r:0},{cN:"type",b:"!"+e.UIR},{cN:"type",b:"!!"+e.UIR},{cN:"meta",b:"&"+e.UIR+"$"},{cN:"meta",b:"\\*"+e.UIR+"$"},{cN:"bullet",b:"^ *-",r:0},e.HCM,{bK:t,k:{literal:t}},e.CNM,i]}}),n}); diff --git a/assets/vendors/js/editors/quill/katex.min.js b/assets/vendors/js/editors/quill/katex.min.js new file mode 100644 index 0000000..67be5b7 --- /dev/null +++ b/assets/vendors/js/editors/quill/katex.min.js @@ -0,0 +1,5 @@ +(function(e){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=e()}else if(typeof define==="function"&&define.amd){define([],e)}else{var t;if(typeof window!=="undefined"){t=window}else if(typeof global!=="undefined"){t=global}else if(typeof self!=="undefined"){t=self}else{t=this}t.katex=e()}})(function(){var e,t,r;return function a(e,t,r){function i(s,l){if(!t[s]){if(!e[s]){var o=typeof require=="function"&&require;if(!l&&o)return o(s,!0);if(n)return n(s,!0);var u=new Error("Cannot find module '"+s+"'");throw u.code="MODULE_NOT_FOUND",u}var p=t[s]={exports:{}};e[s][0].call(p.exports,function(t){var r=e[s][1][t];return i(r?r:t)},p,p.exports,a,e,t,r)}return t[s].exports}var n=typeof require=="function"&&require;for(var s=0;sm){return this.parseFunction(i)}else{throw new u("Got function '"+i.result+"' with no arguments "+"as "+e,this.lexer,r+1)}}else{return i.result}};p.prototype.handleUnsupportedCmd=function(){var e=this.nextToken.text;var t=[];for(var r=0;ri){h=this.parseFunction(p)}else{throw new u("Got function '"+p.result+"' as "+"argument to '"+e+"'",this.lexer,this.pos-1)}}else{h=p.result}s.push(h);n.push(this.pos)}s.push(n);return s};p.prototype.parseSpecialGroup=function(e,t){var r=this.mode;if(e==="original"){e=r}if(e==="color"||e==="size"){var a=this.nextToken;if(t&&a.text!=="["){return null}this.mode=e;this.expect(t?"[":"{");var i=this.nextToken;this.mode=r;var n;if(e==="color"){n=i.text}else{n=i.data}this.consume();this.expect(t?"]":"}");return new c(new h(e,n,r),false)}else if(e==="text"){var s=this.lexer.lex(this.pos,"whitespace");this.pos=s.position}this.mode=e;this.nextToken=this.lexer.lex(this.pos,e);var l;if(t){l=this.parseOptionalGroup()}else{l=this.parseGroup()}this.mode=r;this.nextToken=this.lexer.lex(this.pos,r);return l};p.prototype.parseGroup=function(){if(this.nextToken.text==="{"){this.consume();var e=this.parseExpression(false);this.expect("}");return new c(new h("ordgroup",e,this.mode),false)}else{return this.parseSymbol()}};p.prototype.parseOptionalGroup=function(){if(this.nextToken.text==="["){this.consume();var e=this.parseExpression(false,"]");this.expect("]");return new c(new h("ordgroup",e,this.mode),false)}else{return null}};p.prototype.parseSymbol=function(){var e=this.nextToken;if(a[e.text]){this.consume();return new c(e.text,true)}else if(s[this.mode][e.text]){this.consume();return new c(new h(s[this.mode][e.text].group,e.text,this.mode),false)}else{return null}};p.prototype.ParseNode=h;t.exports=p},{"./Lexer":3,"./ParseError":5,"./environments":15,"./functions":18,"./parseData":20,"./symbols":22,"./utils":23}],7:[function(e,t,r){function a(e,t){return e===undefined?t:e}function i(e){e=e||{};this.displayMode=a(e.displayMode,false);this.throwOnError=a(e.throwOnError,true);this.errorColor=a(e.errorColor,"#cc0000")}t.exports=i},{}],8:[function(e,t,r){function a(e,t,r,a){this.id=e;this.size=t;this.cramped=a;this.sizeMultiplier=r}a.prototype.sup=function(){return m[f[this.id]]};a.prototype.sub=function(){return m[d[this.id]]};a.prototype.fracNum=function(){return m[g[this.id]]};a.prototype.fracDen=function(){return m[y[this.id]]};a.prototype.cramp=function(){return m[b[this.id]]};a.prototype.cls=function(){return c[this.size]+(this.cramped?" cramped":" uncramped")};a.prototype.reset=function(){return v[this.size]};var i=0;var n=1;var s=2;var l=3;var o=4;var u=5;var p=6;var h=7;var c=["displaystyle textstyle","textstyle","scriptstyle","scriptscriptstyle"];var v=["reset-textstyle","reset-textstyle","reset-scriptstyle","reset-scriptscriptstyle"];var m=[new a(i,0,1,false),new a(n,0,1,true),new a(s,1,1,false),new a(l,1,1,true),new a(o,2,.7,false),new a(u,2,.7,true),new a(p,3,.5,false),new a(h,3,.5,true)];var f=[o,u,o,u,p,h,p,h];var d=[u,u,u,u,h,h,h,h];var g=[s,l,o,u,p,h,p,h];var y=[l,l,u,u,h,h,h,h];var b=[n,n,l,l,u,u,h,h];t.exports={DISPLAY:m[i],TEXT:m[s],SCRIPT:m[o],SCRIPTSCRIPT:m[p]}},{}],9:[function(e,t,r){var a=e("./domTree");var i=e("./fontMetrics");var n=e("./symbols");var s=e("./utils");var l=["\\Gamma","\\Delta","\\Theta","\\Lambda","\\Xi","\\Pi","\\Sigma","\\Upsilon","\\Phi","\\Psi","\\Omega"];var o=["\u0131","\u0237"];var u=function(e,t,r,s,l){if(n[r][e]&&n[r][e].replace){e=n[r][e].replace}var o=i.getCharacterMetrics(e,t);var u;if(o){u=new a.symbolNode(e,o.height,o.depth,o.italic,o.skew,l)}else{typeof console!=="undefined"&&console.warn("No character metrics for '"+e+"' in style '"+t+"'");u=new a.symbolNode(e,0,0,0,0,l)}if(s){u.style.color=s}return u};var p=function(e,t,r,a){if(e==="\\"||n[t][e].font==="main"){return u(e,"Main-Regular",t,r,a)}else{return u(e,"AMS-Regular",t,r,a.concat(["amsrm"]))}};var h=function(e,t,r,a,i){if(i==="mathord"){return c(e,t,r,a)}else if(i==="textord"){return u(e,"Main-Regular",t,r,a.concat(["mathrm"]))}else{throw new Error("unexpected type: "+i+" in mathDefault")}};var c=function(e,t,r,a){if(/[0-9]/.test(e.charAt(0))||s.contains(o,e)||s.contains(l,e)){return u(e,"Main-Italic",t,r,a.concat(["mainit"]))}else{return u(e,"Math-Italic",t,r,a.concat(["mathit"]))}};var v=function(e,t,r){var a=e.mode;var l=e.value;if(n[a][l]&&n[a][l].replace){l=n[a][l].replace}var p=["mord"];var v=t.getColor();var m=t.font;if(m){if(m==="mathit"||s.contains(o,l)){return c(l,a,v,p)}else{var f=w[m].fontName;if(i.getCharacterMetrics(l,f)){return u(l,f,a,v,p.concat([m]))}else{return h(l,a,v,p,r)}}}else{return h(l,a,v,p,r)}};var m=function(e){var t=0;var r=0;var a=0;if(e.children){for(var i=0;it){t=e.children[i].height}if(e.children[i].depth>r){r=e.children[i].depth}if(e.children[i].maxFontSize>a){a=e.children[i].maxFontSize}}}e.height=t;e.depth=r;e.maxFontSize=a};var f=function(e,t,r){var i=new a.span(e,t);m(i);if(r){i.style.color=r}return i};var d=function(e){var t=new a.documentFragment(e);m(t);return t};var g=function(e,t){var r=f([],[new a.symbolNode("\u200b")]);r.style.fontSize=t/e.style.sizeMultiplier+"em";var i=f(["fontsize-ensurer","reset-"+e.size,"size5"],[r]);return i};var y=function(e,t,r,i){var n;var s;var l;if(t==="individualShift"){var o=e;e=[o[0]];n=-o[0].shift-o[0].elem.depth;s=n;for(l=1;l0){f+=M;g-=M}}z=n.makeVList([{type:"elem",elem:u,shift:g},{type:"elem",elem:s,shift:-f}],"individualShift",null,t);if(a instanceof l.symbolNode){z.children[0].style.marginLeft=-a.italic+"em"}z.children[0].style.marginRight=k;z.children[1].style.marginRight=k}return p([v(e.value.base)],[a,z])};y.genfrac=function(e,t,r){var a=t.style;if(e.value.size==="display"){a=i.DISPLAY}else if(e.value.size==="text"){a=i.TEXT}var l=a.fracNum();var u=a.fracDen();var h=b(e.value.numer,t.withStyle(l));var c=p([a.reset(),l.cls()],[h]);var v=b(e.value.denom,t.withStyle(u));var m=p([a.reset(),u.cls()],[v]);var f;if(e.value.hasBarLine){f=o.metrics.defaultRuleThickness/t.style.sizeMultiplier}else{f=0}var d;var y;var x;if(a.size===i.DISPLAY.size){d=o.metrics.num1;if(f>0){y=3*f}else{y=7*o.metrics.defaultRuleThickness}x=o.metrics.denom1}else{if(f>0){d=o.metrics.num2;y=f}else{d=o.metrics.num3;y=3*o.metrics.defaultRuleThickness}x=o.metrics.denom2}var w;if(f===0){var k=d-h.depth-(v.height-x);if(k0){N+=x;if(S=h){continue}var O;if(s>0||e.value.hskipBeforeAndAfter){O=u.deflt(P.pregap,m);if(O!==0){R=p(["arraycolsep"],[]);R.style.width=O+"em";C.push(R)}}var I=[];for(i=0;ia.height+a.depth+c){c=(c+d-a.height-a.depth)/2}var g=-(a.height+c+l)+f.height;f.style.top=g+"em";f.height-=g;f.depth+=g;var y;if(a.height===0&&a.depth===0){y=p()}else{y=n.makeVList([{type:"elem",elem:a},{type:"kern",size:c},{type:"elem",elem:u},{type:"kern",size:l}],"firstBaseline",null,t)}if(!e.value.index){return p(["sqrt","mord"],[f,y])}else{var x=b(e.value.index,t.withStyle(i.SCRIPTSCRIPT));var w=p([t.style.reset(),i.SCRIPTSCRIPT.cls()],[x]);var k=Math.max(f.height,y.height);var z=Math.max(f.depth,y.depth);var S=.6*(k-z);var M=n.makeVList([{type:"elem",elem:w}],"shift",-S,t);var T=p(["root"],[M]);return p(["sqrt","mord"],[T,f,y]); + +}};y.sizing=function(e,t,r){var a=h(e.value.value,t.withSize(e.value.size),r);var i=p(["mord"],[p(["sizing","reset-"+t.size,e.value.size,t.style.cls()],a)]);var s=n.sizingMultiplier[e.value.size];i.maxFontSize=s*t.style.sizeMultiplier;return i};y.styling=function(e,t,r){var a={display:i.DISPLAY,text:i.TEXT,script:i.SCRIPT,scriptscript:i.SCRIPTSCRIPT};var n=a[e.value.style];var s=h(e.value.value,t.withStyle(n),r);return p([t.style.reset(),n.cls()],s)};y.font=function(e,t,r){var a=e.value.font;return b(e.value.body,t.withFont(a),r)};y.delimsizing=function(e,t,r){var a=e.value.value;if(a==="."){return p([c[e.value.delimType]])}return p([c[e.value.delimType]],[s.sizedDelim(a,e.value.size,t,e.mode)])};y.leftright=function(e,t,r){var a=h(e.value.body,t.reset());var i=0;var n=0;for(var l=0;l","\\langle","\\rangle","/","\\backslash","\\lt","\\gt"];var x=[0,1.2,1.8,2.4,3];var w=function(e,t,r,i){if(e==="<"||e==="\\lt"){e="\\langle"}else if(e===">"||e==="\\gt"){e="\\rangle"}if(o.contains(g,e)||o.contains(b,e)){return m(e,t,false,r,i)}else if(o.contains(y,e)){return d(e,x[t],false,r,i)}else{throw new a("Illegal delimiter: '"+e+"'")}};var k=[{type:"small",style:i.SCRIPTSCRIPT},{type:"small",style:i.SCRIPT},{type:"small",style:i.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4}];var z=[{type:"small",style:i.SCRIPTSCRIPT},{type:"small",style:i.SCRIPT},{type:"small",style:i.TEXT},{type:"stack"}];var S=[{type:"small",style:i.SCRIPTSCRIPT},{type:"small",style:i.SCRIPT},{type:"small",style:i.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4},{type:"stack"}];var M=function(e){if(e.type==="small"){return"Main-Regular"}else if(e.type==="large"){return"Size"+e.size+"-Regular"}else if(e.type==="stack"){return"Size4-Regular"}};var T=function(e,t,r,a){var i=Math.min(2,3-a.style.size);for(var n=i;nt){return r[n]}}return r[r.length-1]};var N=function(e,t,r,a,i){if(e==="<"||e==="\\lt"){e="\\langle"}else if(e===">"||e==="\\gt"){e="\\rangle"}var n;if(o.contains(b,e)){n=k}else if(o.contains(g,e)){n=S}else{n=z}var s=T(e,t,n,a);if(s.type==="small"){return v(e,s.style,r,a,i)}else if(s.type==="large"){return m(e,s.size,r,a,i)}else if(s.type==="stack"){return d(e,t,r,a,i)}};var q=function(e,t,r,a,i){var n=s.metrics.axisHeight*a.style.sizeMultiplier;var l=901;var o=5/s.metrics.ptPerEm;var u=Math.max(t-n,r+n);var p=Math.max(u/500*l,2*u-o);return N(e,p,true,a,i)};t.exports={sizedDelim:w,customSizedDelim:N,leftRightDelim:q}},{"./ParseError":5,"./Style":8,"./buildCommon":9,"./fontMetrics":16,"./symbols":22,"./utils":23}],14:[function(e,t,r){var a=e("./utils");var i=function(e){e=e.slice();for(var t=e.length-1;t>=0;t--){if(!e[t]){e.splice(t,1)}}return e.join(" ")};function n(e,t,r,a,i,n){this.classes=e||[];this.children=t||[];this.height=r||0;this.depth=a||0;this.maxFontSize=i||0;this.style=n||{};this.attributes={}}n.prototype.setAttribute=function(e,t){this.attributes[e]=t};n.prototype.toNode=function(){var e=document.createElement("span");e.className=i(this.classes);for(var t in this.style){if(Object.prototype.hasOwnProperty.call(this.style,t)){e.style[t]=this.style[t]}}for(var r in this.attributes){if(Object.prototype.hasOwnProperty.call(this.attributes,r)){e.setAttribute(r,this.attributes[r])}}for(var a=0;a";return e};function s(e,t,r,a){this.children=e||[];this.height=t||0;this.depth=r||0;this.maxFontSize=a||0}s.prototype.toNode=function(){var e=document.createDocumentFragment();for(var t=0;t0){t=document.createElement("span");t.style.marginRight=this.italic+"em"}if(this.classes.length>0){t=t||document.createElement("span");t.className=i(this.classes)}for(var r in this.style){if(this.style.hasOwnProperty(r)){t=t||document.createElement("span");t.style[r]=this.style[r]}}if(t){t.appendChild(e);return t}else{return e}};l.prototype.toMarkup=function(){var e=false;var t="0){r+="margin-right:"+this.italic+"em;"}for(var n in this.style){if(this.style.hasOwnProperty(n)){r+=a.hyphenate(n)+":"+this.style[n]+";"}}if(r){e=true;t+=' style="'+a.escape(r)+'"'}var s=a.escape(this.value);if(e){t+=">";t+=s;t+="";return t}else{return s}};t.exports={span:n,documentFragment:s,symbolNode:l}},{"./utils":23}],15:[function(e,t,r){var a=e("./fontMetrics");var i=e("./parseData");var n=e("./ParseError");var s=i.ParseNode;function l(e,t){var r=[];var a=[r];var i=[];while(true){var l=e.parseExpression(false,null);r.push(new s("ordgroup",l,e.mode));var o=e.nextToken.text;if(o==="&"){e.consume()}else if(o==="\\end"){break}else if(o==="\\\\"||o==="\\cr"){var u=e.parseFunction();i.push(u.value.size);r=[];a.push(r)}else{var p=Math.min(e.pos+1,e.lexer._input.length);throw new n("Expected & or \\\\ or \\end",e.lexer,p)}}t.body=a;t.rowGaps=i;return new s(t.type,t,e.mode)}function o(e,r,a){if(typeof e==="string"){e=[e]}if(typeof r==="number"){r={numArgs:r}}var i={numArgs:r.numArgs||0,argTypes:r.argTypes,greediness:1,allowedInText:!!r.allowedInText,numOptionalArgs:r.numOptionalArgs||0,handler:a};for(var n=0;n0){o=2}t.value.cols[i]={type:"align",align:n,pregap:o,postgap:0}}return t})},{"./ParseError":5,"./fontMetrics":16,"./parseData":20}],16:[function(e,t,r){var a=e("./Style");var i=.025;var n=0;var s=0;var l=0;var o=.431;var u=1;var p=0;var h=.677;var c=.394;var v=.444;var m=.686;var f=.345;var d=.413;var g=.363;var y=.289;var b=.15;var x=.247;var w=.386;var k=.05;var z=2.39;var S=1.01;var M=.81;var T=.71;var N=.25;var q=0;var A=0;var C=0;var R=0;var E=.431;var P=1;var D=0;var L=.04;var O=.111;var I=.166;var B=.2;var F=.6;var _=.1;var V=10;var G=2/V;var H={xHeight:o,quad:u,num1:h,num2:c,num3:v,denom1:m,denom2:f,sup1:d,sup2:g,sup3:y,sub1:b,sub2:x,supDrop:w,subDrop:k,axisHeight:N,defaultRuleThickness:L,bigOpSpacing1:O,bigOpSpacing2:I,bigOpSpacing3:B,bigOpSpacing4:F,bigOpSpacing5:_,ptPerEm:V,emPerEx:o/u,doubleRuleSep:G,delim1:z,getDelim2:function(e){if(e.size===a.TEXT.size){return S}else if(e.size===a.SCRIPT.size){return M}else if(e.size===a.SCRIPTSCRIPT.size){return T}throw new Error("Unexpected style size: "+e.size)}};var X=e("./fontMetricsData");var U=function(e,t){var r=X[t][e.charCodeAt(0)];if(r){return{depth:r[0],height:r[1],italic:r[2],skew:r[3],width:r[4]}}};t.exports={metrics:H,getCharacterMetrics:U}},{"./Style":8,"./fontMetricsData":17}],17:[function(e,t,r){t.exports={"AMS-Regular":{65:[0,.68889,0,0],66:[0,.68889,0,0],67:[0,.68889,0,0],68:[0,.68889,0,0],69:[0,.68889,0,0],70:[0,.68889,0,0],71:[0,.68889,0,0],72:[0,.68889,0,0],73:[0,.68889,0,0],74:[.16667,.68889,0,0],75:[0,.68889,0,0],76:[0,.68889,0,0],77:[0,.68889,0,0],78:[0,.68889,0,0],79:[.16667,.68889,0,0],80:[0,.68889,0,0],81:[.16667,.68889,0,0],82:[0,.68889,0,0],83:[0,.68889,0,0],84:[0,.68889,0,0],85:[0,.68889,0,0],86:[0,.68889,0,0],87:[0,.68889,0,0],88:[0,.68889,0,0],89:[0,.68889,0,0],90:[0,.68889,0,0],107:[0,.68889,0,0],165:[0,.675,.025,0],174:[.15559,.69224,0,0],240:[0,.68889,0,0],295:[0,.68889,0,0],710:[0,.825,0,0],732:[0,.9,0,0],770:[0,.825,0,0],771:[0,.9,0,0],989:[.08167,.58167,0,0],1008:[0,.43056,.04028,0],8245:[0,.54986,0,0],8463:[0,.68889,0,0],8487:[0,.68889,0,0],8498:[0,.68889,0,0],8502:[0,.68889,0,0],8503:[0,.68889,0,0],8504:[0,.68889,0,0],8513:[0,.68889,0,0],8592:[-.03598,.46402,0,0],8594:[-.03598,.46402,0,0],8602:[-.13313,.36687,0,0],8603:[-.13313,.36687,0,0],8606:[.01354,.52239,0,0],8608:[.01354,.52239,0,0],8610:[.01354,.52239,0,0],8611:[.01354,.52239,0,0],8619:[0,.54986,0,0],8620:[0,.54986,0,0],8621:[-.13313,.37788,0,0],8622:[-.13313,.36687,0,0],8624:[0,.69224,0,0],8625:[0,.69224,0,0],8630:[0,.43056,0,0],8631:[0,.43056,0,0],8634:[.08198,.58198,0,0],8635:[.08198,.58198,0,0],8638:[.19444,.69224,0,0],8639:[.19444,.69224,0,0],8642:[.19444,.69224,0,0],8643:[.19444,.69224,0,0],8644:[.1808,.675,0,0],8646:[.1808,.675,0,0],8647:[.1808,.675,0,0],8648:[.19444,.69224,0,0],8649:[.1808,.675,0,0],8650:[.19444,.69224,0,0],8651:[.01354,.52239,0,0],8652:[.01354,.52239,0,0],8653:[-.13313,.36687,0,0],8654:[-.13313,.36687,0,0],8655:[-.13313,.36687,0,0],8666:[.13667,.63667,0,0],8667:[.13667,.63667,0,0],8669:[-.13313,.37788,0,0],8672:[-.064,.437,0,0],8674:[-.064,.437,0,0],8705:[0,.825,0,0],8708:[0,.68889,0,0],8709:[.08167,.58167,0,0],8717:[0,.43056,0,0],8722:[-.03598,.46402,0,0],8724:[.08198,.69224,0,0],8726:[.08167,.58167,0,0],8733:[0,.69224,0,0],8736:[0,.69224,0,0],8737:[0,.69224,0,0],8738:[.03517,.52239,0,0],8739:[.08167,.58167,0,0],8740:[.25142,.74111,0,0],8741:[.08167,.58167,0,0],8742:[.25142,.74111,0,0],8756:[0,.69224,0,0],8757:[0,.69224,0,0],8764:[-.13313,.36687,0,0],8765:[-.13313,.37788,0,0],8769:[-.13313,.36687,0,0],8770:[-.03625,.46375,0,0],8774:[.30274,.79383,0,0],8776:[-.01688,.48312,0,0],8778:[.08167,.58167,0,0],8782:[.06062,.54986,0,0],8783:[.06062,.54986,0,0],8785:[.08198,.58198,0,0],8786:[.08198,.58198,0,0],8787:[.08198,.58198,0,0],8790:[0,.69224,0,0],8791:[.22958,.72958,0,0],8796:[.08198,.91667,0,0],8806:[.25583,.75583,0,0],8807:[.25583,.75583,0,0],8808:[.25142,.75726,0,0],8809:[.25142,.75726,0,0],8812:[.25583,.75583,0,0],8814:[.20576,.70576,0,0],8815:[.20576,.70576,0,0],8816:[.30274,.79383,0,0],8817:[.30274,.79383,0,0],8818:[.22958,.72958,0,0],8819:[.22958,.72958,0,0],8822:[.1808,.675,0,0],8823:[.1808,.675,0,0],8828:[.13667,.63667,0,0],8829:[.13667,.63667,0,0],8830:[.22958,.72958,0,0],8831:[.22958,.72958,0,0],8832:[.20576,.70576,0,0],8833:[.20576,.70576,0,0],8840:[.30274,.79383,0,0],8841:[.30274,.79383,0,0],8842:[.13597,.63597,0,0],8843:[.13597,.63597,0,0],8847:[.03517,.54986,0,0],8848:[.03517,.54986,0,0],8858:[.08198,.58198,0,0],8859:[.08198,.58198,0,0],8861:[.08198,.58198,0,0],8862:[0,.675,0,0],8863:[0,.675,0,0],8864:[0,.675,0,0],8865:[0,.675,0,0],8872:[0,.69224,0,0],8873:[0,.69224,0,0],8874:[0,.69224,0,0],8876:[0,.68889,0,0],8877:[0,.68889,0,0],8878:[0,.68889,0,0],8879:[0,.68889,0,0],8882:[.03517,.54986,0,0],8883:[.03517,.54986,0,0],8884:[.13667,.63667,0,0],8885:[.13667,.63667,0,0],8888:[0,.54986,0,0],8890:[.19444,.43056,0,0],8891:[.19444,.69224,0,0],8892:[.19444,.69224,0,0],8901:[0,.54986,0,0],8903:[.08167,.58167,0,0],8905:[.08167,.58167,0,0],8906:[.08167,.58167,0,0],8907:[0,.69224,0,0],8908:[0,.69224,0,0],8909:[-.03598,.46402,0,0],8910:[0,.54986,0,0],8911:[0,.54986,0,0],8912:[.03517,.54986,0,0],8913:[.03517,.54986,0,0],8914:[0,.54986,0,0],8915:[0,.54986,0,0],8916:[0,.69224,0,0],8918:[.0391,.5391,0,0],8919:[.0391,.5391,0,0],8920:[.03517,.54986,0,0],8921:[.03517,.54986,0,0],8922:[.38569,.88569,0,0],8923:[.38569,.88569,0,0],8926:[.13667,.63667,0,0],8927:[.13667,.63667,0,0],8928:[.30274,.79383,0,0],8929:[.30274,.79383,0,0],8934:[.23222,.74111,0,0],8935:[.23222,.74111,0,0],8936:[.23222,.74111,0,0],8937:[.23222,.74111,0,0],8938:[.20576,.70576,0,0],8939:[.20576,.70576,0,0],8940:[.30274,.79383,0,0],8941:[.30274,.79383,0,0],8994:[.19444,.69224,0,0],8995:[.19444,.69224,0,0],9416:[.15559,.69224,0,0],9484:[0,.69224,0,0],9488:[0,.69224,0,0],9492:[0,.37788,0,0],9496:[0,.37788,0,0],9585:[.19444,.68889,0,0],9586:[.19444,.74111,0,0],9632:[0,.675,0,0],9633:[0,.675,0,0],9650:[0,.54986,0,0],9651:[0,.54986,0,0],9654:[.03517,.54986,0,0],9660:[0,.54986,0,0],9661:[0,.54986,0,0],9664:[.03517,.54986,0,0],9674:[.11111,.69224,0,0],9733:[.19444,.69224,0,0],10003:[0,.69224,0,0],10016:[0,.69224,0,0],10731:[.11111,.69224,0,0],10846:[.19444,.75583,0,0],10877:[.13667,.63667,0,0],10878:[.13667,.63667,0,0],10885:[.25583,.75583,0,0],10886:[.25583,.75583,0,0],10887:[.13597,.63597,0,0],10888:[.13597,.63597,0,0],10889:[.26167,.75726,0,0],10890:[.26167,.75726,0,0],10891:[.48256,.98256,0,0],10892:[.48256,.98256,0,0],10901:[.13667,.63667,0,0],10902:[.13667,.63667,0,0],10933:[.25142,.75726,0,0],10934:[.25142,.75726,0,0],10935:[.26167,.75726,0,0],10936:[.26167,.75726,0,0],10937:[.26167,.75726,0,0],10938:[.26167,.75726,0,0],10949:[.25583,.75583,0,0],10950:[.25583,.75583,0,0],10955:[.28481,.79383,0,0],10956:[.28481,.79383,0,0],57350:[.08167,.58167,0,0],57351:[.08167,.58167,0,0],57352:[.08167,.58167,0,0],57353:[0,.43056,.04028,0],57356:[.25142,.75726,0,0],57357:[.25142,.75726,0,0],57358:[.41951,.91951,0,0],57359:[.30274,.79383,0,0],57360:[.30274,.79383,0,0],57361:[.41951,.91951,0,0],57366:[.25142,.75726,0,0],57367:[.25142,.75726,0,0],57368:[.25142,.75726,0,0],57369:[.25142,.75726,0,0],57370:[.13597,.63597,0,0],57371:[.13597,.63597,0,0]},"Caligraphic-Regular":{48:[0,.43056,0,0],49:[0,.43056,0,0],50:[0,.43056,0,0],51:[.19444,.43056,0,0],52:[.19444,.43056,0,0],53:[.19444,.43056,0,0],54:[0,.64444,0,0],55:[.19444,.43056,0,0],56:[0,.64444,0,0],57:[.19444,.43056,0,0],65:[0,.68333,0,.19445],66:[0,.68333,.03041,.13889],67:[0,.68333,.05834,.13889],68:[0,.68333,.02778,.08334],69:[0,.68333,.08944,.11111],70:[0,.68333,.09931,.11111],71:[.09722,.68333,.0593,.11111],72:[0,.68333,.00965,.11111],73:[0,.68333,.07382,0],74:[.09722,.68333,.18472,.16667],75:[0,.68333,.01445,.05556],76:[0,.68333,0,.13889],77:[0,.68333,0,.13889],78:[0,.68333,.14736,.08334],79:[0,.68333,.02778,.11111],80:[0,.68333,.08222,.08334],81:[.09722,.68333,0,.11111],82:[0,.68333,0,.08334],83:[0,.68333,.075,.13889],84:[0,.68333,.25417,0],85:[0,.68333,.09931,.08334],86:[0,.68333,.08222,0],87:[0,.68333,.08222,.08334],88:[0,.68333,.14643,.13889],89:[.09722,.68333,.08222,.08334],90:[0,.68333,.07944,.13889]},"Fraktur-Regular":{33:[0,.69141,0,0],34:[0,.69141,0,0],38:[0,.69141,0,0],39:[0,.69141,0,0],40:[.24982,.74947,0,0],41:[.24982,.74947,0,0],42:[0,.62119,0,0],43:[.08319,.58283,0,0],44:[0,.10803,0,0],45:[.08319,.58283,0,0],46:[0,.10803,0,0],47:[.24982,.74947,0,0],48:[0,.47534,0,0],49:[0,.47534,0,0],50:[0,.47534,0,0],51:[.18906,.47534,0,0],52:[.18906,.47534,0,0],53:[.18906,.47534,0,0],54:[0,.69141,0,0],55:[.18906,.47534,0,0],56:[0,.69141,0,0],57:[.18906,.47534,0,0],58:[0,.47534,0,0],59:[.12604,.47534,0,0],61:[-.13099,.36866,0,0],63:[0,.69141,0,0],65:[0,.69141,0,0],66:[0,.69141,0,0],67:[0,.69141,0,0],68:[0,.69141,0,0],69:[0,.69141,0,0],70:[.12604,.69141,0,0],71:[0,.69141,0,0],72:[.06302,.69141,0,0],73:[0,.69141,0,0],74:[.12604,.69141,0,0],75:[0,.69141,0,0],76:[0,.69141,0,0],77:[0,.69141,0,0],78:[0,.69141,0,0],79:[0,.69141,0,0],80:[.18906,.69141,0,0],81:[.03781,.69141,0,0],82:[0,.69141,0,0],83:[0,.69141,0,0],84:[0,.69141,0,0],85:[0,.69141,0,0],86:[0,.69141,0,0],87:[0,.69141,0,0],88:[0,.69141,0,0],89:[.18906,.69141,0,0],90:[.12604,.69141,0,0],91:[.24982,.74947,0,0],93:[.24982,.74947,0,0],94:[0,.69141,0,0],97:[0,.47534,0,0],98:[0,.69141,0,0],99:[0,.47534,0,0],100:[0,.62119,0,0],101:[0,.47534,0,0],102:[.18906,.69141,0,0],103:[.18906,.47534,0,0],104:[.18906,.69141,0,0],105:[0,.69141,0,0],106:[0,.69141,0,0],107:[0,.69141,0,0],108:[0,.69141,0,0],109:[0,.47534,0,0],110:[0,.47534,0,0],111:[0,.47534,0,0],112:[.18906,.52396,0,0],113:[.18906,.47534,0,0],114:[0,.47534,0,0],115:[0,.47534,0,0],116:[0,.62119,0,0],117:[0,.47534,0,0],118:[0,.52396,0,0],119:[0,.52396,0,0],120:[.18906,.47534,0,0],121:[.18906,.47534,0,0],122:[.18906,.47534,0,0],8216:[0,.69141,0,0],8217:[0,.69141,0,0],58112:[0,.62119,0,0],58113:[0,.62119,0,0],58114:[.18906,.69141,0,0],58115:[.18906,.69141,0,0],58116:[.18906,.47534,0,0],58117:[0,.69141,0,0],58118:[0,.62119,0,0],58119:[0,.47534,0,0]},"Main-Bold":{33:[0,.69444,0,0],34:[0,.69444,0,0],35:[.19444,.69444,0,0],36:[.05556,.75,0,0],37:[.05556,.75,0,0],38:[0,.69444,0,0],39:[0,.69444,0,0],40:[.25,.75,0,0],41:[.25,.75,0,0],42:[0,.75,0,0],43:[.13333,.63333,0,0],44:[.19444,.15556,0,0],45:[0,.44444,0,0],46:[0,.15556,0,0],47:[.25,.75,0,0],48:[0,.64444,0,0],49:[0,.64444,0,0],50:[0,.64444,0,0],51:[0,.64444,0,0],52:[0,.64444,0,0],53:[0,.64444,0,0],54:[0,.64444,0,0],55:[0,.64444,0,0],56:[0,.64444,0,0],57:[0,.64444,0,0],58:[0,.44444,0,0],59:[.19444,.44444,0,0],60:[.08556,.58556,0,0],61:[-.10889,.39111,0,0],62:[.08556,.58556,0,0],63:[0,.69444,0,0],64:[0,.69444,0,0],65:[0,.68611,0,0],66:[0,.68611,0,0],67:[0,.68611,0,0],68:[0,.68611,0,0],69:[0,.68611,0,0],70:[0,.68611,0,0],71:[0,.68611,0,0],72:[0,.68611,0,0],73:[0,.68611,0,0],74:[0,.68611,0,0],75:[0,.68611,0,0],76:[0,.68611,0,0],77:[0,.68611,0,0],78:[0,.68611,0,0],79:[0,.68611,0,0],80:[0,.68611,0,0],81:[.19444,.68611,0,0],82:[0,.68611,0,0],83:[0,.68611,0,0],84:[0,.68611,0,0],85:[0,.68611,0,0],86:[0,.68611,.01597,0],87:[0,.68611,.01597,0],88:[0,.68611,0,0],89:[0,.68611,.02875,0],90:[0,.68611,0,0],91:[.25,.75,0,0],92:[.25,.75,0,0],93:[.25,.75,0,0],94:[0,.69444,0,0],95:[.31,.13444,.03194,0],96:[0,.69444,0,0],97:[0,.44444,0,0],98:[0,.69444,0,0],99:[0,.44444,0,0],100:[0,.69444,0,0],101:[0,.44444,0,0],102:[0,.69444,.10903,0],103:[.19444,.44444,.01597,0],104:[0,.69444,0,0],105:[0,.69444,0,0],106:[.19444,.69444,0,0],107:[0,.69444,0,0],108:[0,.69444,0,0],109:[0,.44444,0,0], +110:[0,.44444,0,0],111:[0,.44444,0,0],112:[.19444,.44444,0,0],113:[.19444,.44444,0,0],114:[0,.44444,0,0],115:[0,.44444,0,0],116:[0,.63492,0,0],117:[0,.44444,0,0],118:[0,.44444,.01597,0],119:[0,.44444,.01597,0],120:[0,.44444,0,0],121:[.19444,.44444,.01597,0],122:[0,.44444,0,0],123:[.25,.75,0,0],124:[.25,.75,0,0],125:[.25,.75,0,0],126:[.35,.34444,0,0],168:[0,.69444,0,0],172:[0,.44444,0,0],175:[0,.59611,0,0],176:[0,.69444,0,0],177:[.13333,.63333,0,0],180:[0,.69444,0,0],215:[.13333,.63333,0,0],247:[.13333,.63333,0,0],305:[0,.44444,0,0],567:[.19444,.44444,0,0],710:[0,.69444,0,0],711:[0,.63194,0,0],713:[0,.59611,0,0],714:[0,.69444,0,0],715:[0,.69444,0,0],728:[0,.69444,0,0],729:[0,.69444,0,0],730:[0,.69444,0,0],732:[0,.69444,0,0],768:[0,.69444,0,0],769:[0,.69444,0,0],770:[0,.69444,0,0],771:[0,.69444,0,0],772:[0,.59611,0,0],774:[0,.69444,0,0],775:[0,.69444,0,0],776:[0,.69444,0,0],778:[0,.69444,0,0],779:[0,.69444,0,0],780:[0,.63194,0,0],824:[.19444,.69444,0,0],915:[0,.68611,0,0],916:[0,.68611,0,0],920:[0,.68611,0,0],923:[0,.68611,0,0],926:[0,.68611,0,0],928:[0,.68611,0,0],931:[0,.68611,0,0],933:[0,.68611,0,0],934:[0,.68611,0,0],936:[0,.68611,0,0],937:[0,.68611,0,0],8211:[0,.44444,.03194,0],8212:[0,.44444,.03194,0],8216:[0,.69444,0,0],8217:[0,.69444,0,0],8220:[0,.69444,0,0],8221:[0,.69444,0,0],8224:[.19444,.69444,0,0],8225:[.19444,.69444,0,0],8242:[0,.55556,0,0],8407:[0,.72444,.15486,0],8463:[0,.69444,0,0],8465:[0,.69444,0,0],8467:[0,.69444,0,0],8472:[.19444,.44444,0,0],8476:[0,.69444,0,0],8501:[0,.69444,0,0],8592:[-.10889,.39111,0,0],8593:[.19444,.69444,0,0],8594:[-.10889,.39111,0,0],8595:[.19444,.69444,0,0],8596:[-.10889,.39111,0,0],8597:[.25,.75,0,0],8598:[.19444,.69444,0,0],8599:[.19444,.69444,0,0],8600:[.19444,.69444,0,0],8601:[.19444,.69444,0,0],8636:[-.10889,.39111,0,0],8637:[-.10889,.39111,0,0],8640:[-.10889,.39111,0,0],8641:[-.10889,.39111,0,0],8656:[-.10889,.39111,0,0],8657:[.19444,.69444,0,0],8658:[-.10889,.39111,0,0],8659:[.19444,.69444,0,0],8660:[-.10889,.39111,0,0],8661:[.25,.75,0,0],8704:[0,.69444,0,0],8706:[0,.69444,.06389,0],8707:[0,.69444,0,0],8709:[.05556,.75,0,0],8711:[0,.68611,0,0],8712:[.08556,.58556,0,0],8715:[.08556,.58556,0,0],8722:[.13333,.63333,0,0],8723:[.13333,.63333,0,0],8725:[.25,.75,0,0],8726:[.25,.75,0,0],8727:[-.02778,.47222,0,0],8728:[-.02639,.47361,0,0],8729:[-.02639,.47361,0,0],8730:[.18,.82,0,0],8733:[0,.44444,0,0],8734:[0,.44444,0,0],8736:[0,.69224,0,0],8739:[.25,.75,0,0],8741:[.25,.75,0,0],8743:[0,.55556,0,0],8744:[0,.55556,0,0],8745:[0,.55556,0,0],8746:[0,.55556,0,0],8747:[.19444,.69444,.12778,0],8764:[-.10889,.39111,0,0],8768:[.19444,.69444,0,0],8771:[.00222,.50222,0,0],8776:[.02444,.52444,0,0],8781:[.00222,.50222,0,0],8801:[.00222,.50222,0,0],8804:[.19667,.69667,0,0],8805:[.19667,.69667,0,0],8810:[.08556,.58556,0,0],8811:[.08556,.58556,0,0],8826:[.08556,.58556,0,0],8827:[.08556,.58556,0,0],8834:[.08556,.58556,0,0],8835:[.08556,.58556,0,0],8838:[.19667,.69667,0,0],8839:[.19667,.69667,0,0],8846:[0,.55556,0,0],8849:[.19667,.69667,0,0],8850:[.19667,.69667,0,0],8851:[0,.55556,0,0],8852:[0,.55556,0,0],8853:[.13333,.63333,0,0],8854:[.13333,.63333,0,0],8855:[.13333,.63333,0,0],8856:[.13333,.63333,0,0],8857:[.13333,.63333,0,0],8866:[0,.69444,0,0],8867:[0,.69444,0,0],8868:[0,.69444,0,0],8869:[0,.69444,0,0],8900:[-.02639,.47361,0,0],8901:[-.02639,.47361,0,0],8902:[-.02778,.47222,0,0],8968:[.25,.75,0,0],8969:[.25,.75,0,0],8970:[.25,.75,0,0],8971:[.25,.75,0,0],8994:[-.13889,.36111,0,0],8995:[-.13889,.36111,0,0],9651:[.19444,.69444,0,0],9657:[-.02778,.47222,0,0],9661:[.19444,.69444,0,0],9667:[-.02778,.47222,0,0],9711:[.19444,.69444,0,0],9824:[.12963,.69444,0,0],9825:[.12963,.69444,0,0],9826:[.12963,.69444,0,0],9827:[.12963,.69444,0,0],9837:[0,.75,0,0],9838:[.19444,.69444,0,0],9839:[.19444,.69444,0,0],10216:[.25,.75,0,0],10217:[.25,.75,0,0],10815:[0,.68611,0,0],10927:[.19667,.69667,0,0],10928:[.19667,.69667,0,0]},"Main-Italic":{33:[0,.69444,.12417,0],34:[0,.69444,.06961,0],35:[.19444,.69444,.06616,0],37:[.05556,.75,.13639,0],38:[0,.69444,.09694,0],39:[0,.69444,.12417,0],40:[.25,.75,.16194,0],41:[.25,.75,.03694,0],42:[0,.75,.14917,0],43:[.05667,.56167,.03694,0],44:[.19444,.10556,0,0],45:[0,.43056,.02826,0],46:[0,.10556,0,0],47:[.25,.75,.16194,0],48:[0,.64444,.13556,0],49:[0,.64444,.13556,0],50:[0,.64444,.13556,0],51:[0,.64444,.13556,0],52:[.19444,.64444,.13556,0],53:[0,.64444,.13556,0],54:[0,.64444,.13556,0],55:[.19444,.64444,.13556,0],56:[0,.64444,.13556,0],57:[0,.64444,.13556,0],58:[0,.43056,.0582,0],59:[.19444,.43056,.0582,0],61:[-.13313,.36687,.06616,0],63:[0,.69444,.1225,0],64:[0,.69444,.09597,0],65:[0,.68333,0,0],66:[0,.68333,.10257,0],67:[0,.68333,.14528,0],68:[0,.68333,.09403,0],69:[0,.68333,.12028,0],70:[0,.68333,.13305,0],71:[0,.68333,.08722,0],72:[0,.68333,.16389,0],73:[0,.68333,.15806,0],74:[0,.68333,.14028,0],75:[0,.68333,.14528,0],76:[0,.68333,0,0],77:[0,.68333,.16389,0],78:[0,.68333,.16389,0],79:[0,.68333,.09403,0],80:[0,.68333,.10257,0],81:[.19444,.68333,.09403,0],82:[0,.68333,.03868,0],83:[0,.68333,.11972,0],84:[0,.68333,.13305,0],85:[0,.68333,.16389,0],86:[0,.68333,.18361,0],87:[0,.68333,.18361,0],88:[0,.68333,.15806,0],89:[0,.68333,.19383,0],90:[0,.68333,.14528,0],91:[.25,.75,.1875,0],93:[.25,.75,.10528,0],94:[0,.69444,.06646,0],95:[.31,.12056,.09208,0],97:[0,.43056,.07671,0],98:[0,.69444,.06312,0],99:[0,.43056,.05653,0],100:[0,.69444,.10333,0],101:[0,.43056,.07514,0],102:[.19444,.69444,.21194,0],103:[.19444,.43056,.08847,0],104:[0,.69444,.07671,0],105:[0,.65536,.1019,0],106:[.19444,.65536,.14467,0],107:[0,.69444,.10764,0],108:[0,.69444,.10333,0],109:[0,.43056,.07671,0],110:[0,.43056,.07671,0],111:[0,.43056,.06312,0],112:[.19444,.43056,.06312,0],113:[.19444,.43056,.08847,0],114:[0,.43056,.10764,0],115:[0,.43056,.08208,0],116:[0,.61508,.09486,0],117:[0,.43056,.07671,0],118:[0,.43056,.10764,0],119:[0,.43056,.10764,0],120:[0,.43056,.12042,0],121:[.19444,.43056,.08847,0],122:[0,.43056,.12292,0],126:[.35,.31786,.11585,0],163:[0,.69444,0,0],305:[0,.43056,0,.02778],567:[.19444,.43056,0,.08334],768:[0,.69444,0,0],769:[0,.69444,.09694,0],770:[0,.69444,.06646,0],771:[0,.66786,.11585,0],772:[0,.56167,.10333,0],774:[0,.69444,.10806,0],775:[0,.66786,.11752,0],776:[0,.66786,.10474,0],778:[0,.69444,0,0],779:[0,.69444,.1225,0],780:[0,.62847,.08295,0],915:[0,.68333,.13305,0],916:[0,.68333,0,0],920:[0,.68333,.09403,0],923:[0,.68333,0,0],926:[0,.68333,.15294,0],928:[0,.68333,.16389,0],931:[0,.68333,.12028,0],933:[0,.68333,.11111,0],934:[0,.68333,.05986,0],936:[0,.68333,.11111,0],937:[0,.68333,.10257,0],8211:[0,.43056,.09208,0],8212:[0,.43056,.09208,0],8216:[0,.69444,.12417,0],8217:[0,.69444,.12417,0],8220:[0,.69444,.1685,0],8221:[0,.69444,.06961,0],8463:[0,.68889,0,0]},"Main-Regular":{32:[0,0,0,0],33:[0,.69444,0,0],34:[0,.69444,0,0],35:[.19444,.69444,0,0],36:[.05556,.75,0,0],37:[.05556,.75,0,0],38:[0,.69444,0,0],39:[0,.69444,0,0],40:[.25,.75,0,0],41:[.25,.75,0,0],42:[0,.75,0,0],43:[.08333,.58333,0,0],44:[.19444,.10556,0,0],45:[0,.43056,0,0],46:[0,.10556,0,0],47:[.25,.75,0,0],48:[0,.64444,0,0],49:[0,.64444,0,0],50:[0,.64444,0,0],51:[0,.64444,0,0],52:[0,.64444,0,0],53:[0,.64444,0,0],54:[0,.64444,0,0],55:[0,.64444,0,0],56:[0,.64444,0,0],57:[0,.64444,0,0],58:[0,.43056,0,0],59:[.19444,.43056,0,0],60:[.0391,.5391,0,0],61:[-.13313,.36687,0,0],62:[.0391,.5391,0,0],63:[0,.69444,0,0],64:[0,.69444,0,0],65:[0,.68333,0,0],66:[0,.68333,0,0],67:[0,.68333,0,0],68:[0,.68333,0,0],69:[0,.68333,0,0],70:[0,.68333,0,0],71:[0,.68333,0,0],72:[0,.68333,0,0],73:[0,.68333,0,0],74:[0,.68333,0,0],75:[0,.68333,0,0],76:[0,.68333,0,0],77:[0,.68333,0,0],78:[0,.68333,0,0],79:[0,.68333,0,0],80:[0,.68333,0,0],81:[.19444,.68333,0,0],82:[0,.68333,0,0],83:[0,.68333,0,0],84:[0,.68333,0,0],85:[0,.68333,0,0],86:[0,.68333,.01389,0],87:[0,.68333,.01389,0],88:[0,.68333,0,0],89:[0,.68333,.025,0],90:[0,.68333,0,0],91:[.25,.75,0,0],92:[.25,.75,0,0],93:[.25,.75,0,0],94:[0,.69444,0,0],95:[.31,.12056,.02778,0],96:[0,.69444,0,0],97:[0,.43056,0,0],98:[0,.69444,0,0],99:[0,.43056,0,0],100:[0,.69444,0,0],101:[0,.43056,0,0],102:[0,.69444,.07778,0],103:[.19444,.43056,.01389,0],104:[0,.69444,0,0],105:[0,.66786,0,0],106:[.19444,.66786,0,0],107:[0,.69444,0,0],108:[0,.69444,0,0],109:[0,.43056,0,0],110:[0,.43056,0,0],111:[0,.43056,0,0],112:[.19444,.43056,0,0],113:[.19444,.43056,0,0],114:[0,.43056,0,0],115:[0,.43056,0,0],116:[0,.61508,0,0],117:[0,.43056,0,0],118:[0,.43056,.01389,0],119:[0,.43056,.01389,0],120:[0,.43056,0,0],121:[.19444,.43056,.01389,0],122:[0,.43056,0,0],123:[.25,.75,0,0],124:[.25,.75,0,0],125:[.25,.75,0,0],126:[.35,.31786,0,0],160:[0,0,0,0],168:[0,.66786,0,0],172:[0,.43056,0,0],175:[0,.56778,0,0],176:[0,.69444,0,0],177:[.08333,.58333,0,0],180:[0,.69444,0,0],215:[.08333,.58333,0,0],247:[.08333,.58333,0,0],305:[0,.43056,0,0],567:[.19444,.43056,0,0],710:[0,.69444,0,0],711:[0,.62847,0,0],713:[0,.56778,0,0],714:[0,.69444,0,0],715:[0,.69444,0,0],728:[0,.69444,0,0],729:[0,.66786,0,0],730:[0,.69444,0,0],732:[0,.66786,0,0],768:[0,.69444,0,0],769:[0,.69444,0,0],770:[0,.69444,0,0],771:[0,.66786,0,0],772:[0,.56778,0,0],774:[0,.69444,0,0],775:[0,.66786,0,0],776:[0,.66786,0,0],778:[0,.69444,0,0],779:[0,.69444,0,0],780:[0,.62847,0,0],824:[.19444,.69444,0,0],915:[0,.68333,0,0],916:[0,.68333,0,0],920:[0,.68333,0,0],923:[0,.68333,0,0],926:[0,.68333,0,0],928:[0,.68333,0,0],931:[0,.68333,0,0],933:[0,.68333,0,0],934:[0,.68333,0,0],936:[0,.68333,0,0],937:[0,.68333,0,0],8211:[0,.43056,.02778,0],8212:[0,.43056,.02778,0],8216:[0,.69444,0,0],8217:[0,.69444,0,0],8220:[0,.69444,0,0],8221:[0,.69444,0,0],8224:[.19444,.69444,0,0],8225:[.19444,.69444,0,0],8230:[0,.12,0,0],8242:[0,.55556,0,0],8407:[0,.71444,.15382,0],8463:[0,.68889,0,0],8465:[0,.69444,0,0],8467:[0,.69444,0,.11111],8472:[.19444,.43056,0,.11111],8476:[0,.69444,0,0],8501:[0,.69444,0,0],8592:[-.13313,.36687,0,0],8593:[.19444,.69444,0,0],8594:[-.13313,.36687,0,0],8595:[.19444,.69444,0,0],8596:[-.13313,.36687,0,0],8597:[.25,.75,0,0],8598:[.19444,.69444,0,0],8599:[.19444,.69444,0,0],8600:[.19444,.69444,0,0],8601:[.19444,.69444,0,0],8614:[.011,.511,0,0],8617:[.011,.511,0,0],8618:[.011,.511,0,0],8636:[-.13313,.36687,0,0],8637:[-.13313,.36687,0,0],8640:[-.13313,.36687,0,0],8641:[-.13313,.36687,0,0],8652:[.011,.671,0,0],8656:[-.13313,.36687,0,0],8657:[.19444,.69444,0,0],8658:[-.13313,.36687,0,0],8659:[.19444,.69444,0,0],8660:[-.13313,.36687,0,0],8661:[.25,.75,0,0],8704:[0,.69444,0,0],8706:[0,.69444,.05556,.08334],8707:[0,.69444,0,0],8709:[.05556,.75,0,0],8711:[0,.68333,0,0],8712:[.0391,.5391,0,0],8715:[.0391,.5391,0,0],8722:[.08333,.58333,0,0],8723:[.08333,.58333,0,0],8725:[.25,.75,0,0],8726:[.25,.75,0,0],8727:[-.03472,.46528,0,0],8728:[-.05555,.44445,0,0],8729:[-.05555,.44445,0,0],8730:[.2,.8,0,0],8733:[0,.43056,0,0],8734:[0,.43056,0,0],8736:[0,.69224,0,0],8739:[.25,.75,0,0],8741:[.25,.75,0,0],8743:[0,.55556,0,0],8744:[0,.55556,0,0],8745:[0,.55556,0,0],8746:[0,.55556,0,0],8747:[.19444,.69444,.11111,0],8764:[-.13313,.36687,0,0],8768:[.19444,.69444,0,0],8771:[-.03625,.46375,0,0],8773:[-.022,.589,0,0],8776:[-.01688,.48312,0,0],8781:[-.03625,.46375,0,0],8784:[-.133,.67,0,0],8800:[.215,.716,0,0],8801:[-.03625,.46375,0,0],8804:[.13597,.63597,0,0],8805:[.13597,.63597,0,0],8810:[.0391,.5391,0,0],8811:[.0391,.5391,0,0],8826:[.0391,.5391,0,0],8827:[.0391,.5391,0,0],8834:[.0391,.5391,0,0],8835:[.0391,.5391,0,0],8838:[.13597,.63597,0,0],8839:[.13597,.63597,0,0],8846:[0,.55556,0,0],8849:[.13597,.63597,0,0],8850:[.13597,.63597,0,0],8851:[0,.55556,0,0],8852:[0,.55556,0,0],8853:[.08333,.58333,0,0],8854:[.08333,.58333,0,0],8855:[.08333,.58333,0,0],8856:[.08333,.58333,0,0],8857:[.08333,.58333,0,0],8866:[0,.69444,0,0],8867:[0,.69444,0,0],8868:[0,.69444,0,0],8869:[0,.69444,0,0],8872:[.249,.75,0,0],8900:[-.05555,.44445,0,0],8901:[-.05555,.44445,0,0],8902:[-.03472,.46528,0,0],8904:[.005,.505,0,0],8942:[.03,.9,0,0],8943:[-.19,.31,0,0],8945:[-.1,.82,0,0],8968:[.25,.75,0,0],8969:[.25,.75,0,0],8970:[.25,.75,0,0],8971:[.25,.75,0,0],8994:[-.14236,.35764,0,0],8995:[-.14236,.35764,0,0],9136:[.244,.744,0,0],9137:[.244,.744,0,0],9651:[.19444,.69444,0,0],9657:[-.03472,.46528,0,0],9661:[.19444,.69444,0,0],9667:[-.03472,.46528,0,0],9711:[.19444,.69444,0,0],9824:[.12963,.69444,0,0],9825:[.12963,.69444,0,0],9826:[.12963,.69444,0,0],9827:[.12963,.69444,0,0],9837:[0,.75,0,0],9838:[.19444,.69444,0,0],9839:[.19444,.69444,0,0],10216:[.25,.75,0,0],10217:[.25,.75,0,0],10222:[.244,.744,0,0],10223:[.244,.744,0,0],10229:[.011,.511,0,0],10230:[.011,.511,0,0],10231:[.011,.511,0,0],10232:[.024,.525,0,0],10233:[.024,.525,0,0],10234:[.024,.525,0,0],10236:[.011,.511,0,0],10815:[0,.68333,0,0],10927:[.13597,.63597,0,0],10928:[.13597,.63597,0,0]},"Math-BoldItalic":{47:[.19444,.69444,0,0],65:[0,.68611,0,0],66:[0,.68611,.04835,0],67:[0,.68611,.06979,0],68:[0,.68611,.03194,0],69:[0,.68611,.05451,0],70:[0,.68611,.15972,0],71:[0,.68611,0,0],72:[0,.68611,.08229,0],73:[0,.68611,.07778,0],74:[0,.68611,.10069,0],75:[0,.68611,.06979,0],76:[0,.68611,0,0],77:[0,.68611,.11424,0],78:[0,.68611,.11424,0],79:[0,.68611,.03194,0],80:[0,.68611,.15972,0],81:[.19444,.68611,0,0],82:[0,.68611,.00421,0],83:[0,.68611,.05382,0],84:[0,.68611,.15972,0],85:[0,.68611,.11424,0],86:[0,.68611,.25555,0],87:[0,.68611,.15972,0],88:[0,.68611,.07778,0],89:[0,.68611,.25555,0],90:[0,.68611,.06979,0],97:[0,.44444,0,0],98:[0,.69444,0,0],99:[0,.44444,0,0],100:[0,.69444,0,0],101:[0,.44444,0,0],102:[.19444,.69444,.11042,0],103:[.19444,.44444,.03704,0],104:[0,.69444,0,0],105:[0,.69326,0,0],106:[.19444,.69326,.0622,0],107:[0,.69444,.01852,0],108:[0,.69444,.0088,0],109:[0,.44444,0,0],110:[0,.44444,0,0],111:[0,.44444,0,0],112:[.19444,.44444,0,0],113:[.19444,.44444,.03704,0],114:[0,.44444,.03194,0],115:[0,.44444,0,0],116:[0,.63492,0,0],117:[0,.44444,0,0],118:[0,.44444,.03704,0],119:[0,.44444,.02778,0],120:[0,.44444,0,0],121:[.19444,.44444,.03704,0],122:[0,.44444,.04213,0],915:[0,.68611,.15972,0],916:[0,.68611,0,0],920:[0,.68611,.03194,0],923:[0,.68611,0,0],926:[0,.68611,.07458,0],928:[0,.68611,.08229,0],931:[0,.68611,.05451,0],933:[0,.68611,.15972,0],934:[0,.68611,0,0],936:[0,.68611,.11653,0],937:[0,.68611,.04835,0],945:[0,.44444,0,0],946:[.19444,.69444,.03403,0],947:[.19444,.44444,.06389,0],948:[0,.69444,.03819,0],949:[0,.44444,0,0],950:[.19444,.69444,.06215,0],951:[.19444,.44444,.03704,0],952:[0,.69444,.03194,0],953:[0,.44444,0,0],954:[0,.44444,0,0],955:[0,.69444,0,0],956:[.19444,.44444,0,0],957:[0,.44444,.06898,0],958:[.19444,.69444,.03021,0],959:[0,.44444,0,0],960:[0,.44444,.03704,0],961:[.19444,.44444,0,0],962:[.09722,.44444,.07917,0],963:[0,.44444,.03704,0],964:[0,.44444,.13472,0],965:[0,.44444,.03704,0],966:[.19444,.44444,0,0],967:[.19444,.44444,0,0],968:[.19444,.69444,.03704,0],969:[0,.44444,.03704,0],977:[0,.69444,0,0],981:[.19444,.69444,0,0],982:[0,.44444,.03194,0],1009:[.19444,.44444,0,0],1013:[0,.44444,0,0]},"Math-Italic":{47:[.19444,.69444,0,0],65:[0,.68333,0,.13889],66:[0,.68333,.05017,.08334],67:[0,.68333,.07153,.08334],68:[0,.68333,.02778,.05556],69:[0,.68333,.05764,.08334],70:[0,.68333,.13889,.08334],71:[0,.68333,0,.08334],72:[0,.68333,.08125,.05556],73:[0,.68333,.07847,.11111],74:[0,.68333,.09618,.16667],75:[0,.68333,.07153,.05556],76:[0,.68333,0,.02778],77:[0,.68333,.10903,.08334],78:[0,.68333,.10903,.08334],79:[0,.68333,.02778,.08334],80:[0,.68333,.13889,.08334],81:[.19444,.68333,0,.08334],82:[0,.68333,.00773,.08334],83:[0,.68333,.05764,.08334],84:[0,.68333,.13889,.08334],85:[0,.68333,.10903,.02778],86:[0,.68333,.22222,0],87:[0,.68333,.13889,0],88:[0,.68333,.07847,.08334],89:[0,.68333,.22222,0],90:[0,.68333,.07153,.08334],97:[0,.43056,0,0],98:[0,.69444,0,0],99:[0,.43056,0,.05556],100:[0,.69444,0,.16667],101:[0,.43056,0,.05556],102:[.19444,.69444,.10764,.16667],103:[.19444,.43056,.03588,.02778],104:[0,.69444,0,0],105:[0,.65952,0,0],106:[.19444,.65952,.05724,0],107:[0,.69444,.03148,0],108:[0,.69444,.01968,.08334],109:[0,.43056,0,0],110:[0,.43056,0,0],111:[0,.43056,0,.05556],112:[.19444,.43056,0,.08334],113:[.19444,.43056,.03588,.08334],114:[0,.43056,.02778,.05556],115:[0,.43056,0,.05556],116:[0,.61508,0,.08334],117:[0,.43056,0,.02778],118:[0,.43056,.03588,.02778],119:[0,.43056,.02691,.08334],120:[0,.43056,0,.02778],121:[.19444,.43056,.03588,.05556],122:[0,.43056,.04398,.05556],915:[0,.68333,.13889,.08334],916:[0,.68333,0,.16667],920:[0,.68333,.02778,.08334],923:[0,.68333,0,.16667],926:[0,.68333,.07569,.08334],928:[0,.68333,.08125,.05556],931:[0,.68333,.05764,.08334],933:[0,.68333,.13889,.05556],934:[0,.68333,0,.08334],936:[0,.68333,.11,.05556],937:[0,.68333,.05017,.08334],945:[0,.43056,.0037,.02778],946:[.19444,.69444,.05278,.08334],947:[.19444,.43056,.05556,0],948:[0,.69444,.03785,.05556],949:[0,.43056,0,.08334],950:[.19444,.69444,.07378,.08334],951:[.19444,.43056,.03588,.05556],952:[0,.69444,.02778,.08334],953:[0,.43056,0,.05556],954:[0,.43056,0,0],955:[0,.69444,0,0],956:[.19444,.43056,0,.02778],957:[0,.43056,.06366,.02778],958:[.19444,.69444,.04601,.11111],959:[0,.43056,0,.05556],960:[0,.43056,.03588,0],961:[.19444,.43056,0,.08334],962:[.09722,.43056,.07986,.08334],963:[0,.43056,.03588,0],964:[0,.43056,.1132,.02778],965:[0,.43056,.03588,.02778],966:[.19444,.43056,0,.08334],967:[.19444,.43056,0,.05556],968:[.19444,.69444,.03588,.11111],969:[0,.43056,.03588,0],977:[0,.69444,0,.08334],981:[.19444,.69444,0,.08334],982:[0,.43056,.02778,0],1009:[.19444,.43056,0,.08334],1013:[0,.43056,0,.05556]},"Math-Regular":{65:[0,.68333,0,.13889],66:[0,.68333,.05017,.08334],67:[0,.68333,.07153,.08334],68:[0,.68333,.02778,.05556],69:[0,.68333,.05764,.08334],70:[0,.68333,.13889,.08334],71:[0,.68333,0,.08334],72:[0,.68333,.08125,.05556],73:[0,.68333,.07847,.11111],74:[0,.68333,.09618,.16667],75:[0,.68333,.07153,.05556],76:[0,.68333,0,.02778],77:[0,.68333,.10903,.08334],78:[0,.68333,.10903,.08334],79:[0,.68333,.02778,.08334],80:[0,.68333,.13889,.08334],81:[.19444,.68333,0,.08334],82:[0,.68333,.00773,.08334],83:[0,.68333,.05764,.08334],84:[0,.68333,.13889,.08334],85:[0,.68333,.10903,.02778],86:[0,.68333,.22222,0],87:[0,.68333,.13889,0],88:[0,.68333,.07847,.08334],89:[0,.68333,.22222,0],90:[0,.68333,.07153,.08334],97:[0,.43056,0,0],98:[0,.69444,0,0],99:[0,.43056,0,.05556],100:[0,.69444,0,.16667],101:[0,.43056,0,.05556],102:[.19444,.69444,.10764,.16667],103:[.19444,.43056,.03588,.02778],104:[0,.69444,0,0],105:[0,.65952,0,0],106:[.19444,.65952,.05724,0],107:[0,.69444,.03148,0],108:[0,.69444,.01968,.08334],109:[0,.43056,0,0],110:[0,.43056,0,0],111:[0,.43056,0,.05556],112:[.19444,.43056,0,.08334],113:[.19444,.43056,.03588,.08334],114:[0,.43056,.02778,.05556],115:[0,.43056,0,.05556],116:[0,.61508,0,.08334],117:[0,.43056,0,.02778],118:[0,.43056,.03588,.02778],119:[0,.43056,.02691,.08334],120:[0,.43056,0,.02778],121:[.19444,.43056,.03588,.05556],122:[0,.43056,.04398,.05556],915:[0,.68333,.13889,.08334],916:[0,.68333,0,.16667],920:[0,.68333,.02778,.08334],923:[0,.68333,0,.16667],926:[0,.68333,.07569,.08334],928:[0,.68333,.08125,.05556],931:[0,.68333,.05764,.08334],933:[0,.68333,.13889,.05556],934:[0,.68333,0,.08334],936:[0,.68333,.11,.05556],937:[0,.68333,.05017,.08334],945:[0,.43056,.0037,.02778],946:[.19444,.69444,.05278,.08334],947:[.19444,.43056,.05556,0],948:[0,.69444,.03785,.05556],949:[0,.43056,0,.08334],950:[.19444,.69444,.07378,.08334],951:[.19444,.43056,.03588,.05556],952:[0,.69444,.02778,.08334],953:[0,.43056,0,.05556],954:[0,.43056,0,0],955:[0,.69444,0,0],956:[.19444,.43056,0,.02778],957:[0,.43056,.06366,.02778],958:[.19444,.69444,.04601,.11111],959:[0,.43056,0,.05556],960:[0,.43056,.03588,0],961:[.19444,.43056,0,.08334],962:[.09722,.43056,.07986,.08334],963:[0,.43056,.03588,0],964:[0,.43056,.1132,.02778],965:[0,.43056,.03588,.02778],966:[.19444,.43056,0,.08334],967:[.19444,.43056,0,.05556],968:[.19444,.69444,.03588,.11111],969:[0,.43056,.03588,0],977:[0,.69444,0,.08334],981:[.19444,.69444,0,.08334],982:[0,.43056,.02778,0],1009:[.19444,.43056,0,.08334],1013:[0,.43056,0,.05556]},"SansSerif-Regular":{33:[0,.69444,0,0],34:[0,.69444,0,0],35:[.19444,.69444,0,0],36:[.05556,.75,0,0],37:[.05556,.75,0,0],38:[0,.69444,0,0],39:[0,.69444,0,0],40:[.25,.75,0,0],41:[.25,.75,0,0],42:[0,.75,0,0],43:[.08333,.58333,0,0],44:[.125,.08333,0,0],45:[0,.44444,0,0],46:[0,.08333,0,0],47:[.25,.75,0,0],48:[0,.65556,0,0],49:[0,.65556,0,0],50:[0,.65556,0,0],51:[0,.65556,0,0],52:[0,.65556,0,0],53:[0,.65556,0,0],54:[0,.65556,0,0],55:[0,.65556,0,0],56:[0,.65556,0,0],57:[0,.65556,0,0],58:[0,.44444,0,0],59:[.125,.44444,0,0],61:[-.13,.37,0,0],63:[0,.69444,0,0],64:[0,.69444,0,0],65:[0,.69444,0,0],66:[0,.69444,0,0],67:[0,.69444,0,0],68:[0,.69444,0,0],69:[0,.69444,0,0],70:[0,.69444,0,0],71:[0,.69444,0,0],72:[0,.69444,0,0],73:[0,.69444,0,0],74:[0,.69444,0,0],75:[0,.69444,0,0],76:[0,.69444,0,0],77:[0,.69444,0,0],78:[0,.69444,0,0],79:[0,.69444,0,0],80:[0,.69444,0,0],81:[.125,.69444,0,0],82:[0,.69444,0,0],83:[0,.69444,0,0],84:[0,.69444,0,0],85:[0,.69444,0,0],86:[0,.69444,.01389,0],87:[0,.69444,.01389,0],88:[0,.69444,0,0],89:[0,.69444,.025,0],90:[0,.69444,0,0],91:[.25,.75,0,0],93:[.25,.75,0,0],94:[0,.69444,0,0],95:[.35,.09444,.02778,0],97:[0,.44444,0,0],98:[0,.69444,0,0],99:[0,.44444,0,0],100:[0,.69444,0,0],101:[0,.44444,0,0],102:[0,.69444,.06944,0],103:[.19444,.44444,.01389,0],104:[0,.69444,0,0],105:[0,.67937,0,0],106:[.19444,.67937,0,0],107:[0,.69444,0,0],108:[0,.69444,0,0],109:[0,.44444,0,0],110:[0,.44444,0,0],111:[0,.44444,0,0],112:[.19444,.44444,0,0],113:[.19444,.44444,0,0],114:[0,.44444,.01389,0],115:[0,.44444,0,0],116:[0,.57143,0,0],117:[0,.44444,0,0],118:[0,.44444,.01389,0],119:[0,.44444,.01389,0],120:[0,.44444,0,0],121:[.19444,.44444,.01389,0],122:[0,.44444,0,0],126:[.35,.32659,0,0],305:[0,.44444,0,0],567:[.19444,.44444,0,0],768:[0,.69444,0,0],769:[0,.69444,0,0],770:[0,.69444,0,0],771:[0,.67659,0,0],772:[0,.60889,0,0],774:[0,.69444,0,0],775:[0,.67937,0,0],776:[0,.67937,0,0],778:[0,.69444,0,0],779:[0,.69444,0,0],780:[0,.63194,0,0],915:[0,.69444,0,0],916:[0,.69444,0,0],920:[0,.69444,0,0],923:[0,.69444,0,0],926:[0,.69444,0,0],928:[0,.69444,0,0],931:[0,.69444,0,0],933:[0,.69444,0,0],934:[0,.69444,0,0],936:[0,.69444,0,0],937:[0,.69444,0,0],8211:[0,.44444,.02778,0],8212:[0,.44444,.02778,0],8216:[0,.69444,0,0],8217:[0,.69444,0,0],8220:[0,.69444,0,0],8221:[0,.69444,0,0]},"Script-Regular":{65:[0,.7,.22925,0],66:[0,.7,.04087,0],67:[0,.7,.1689,0],68:[0,.7,.09371,0],69:[0,.7,.18583,0],70:[0,.7,.13634,0],71:[0,.7,.17322,0],72:[0,.7,.29694,0],73:[0,.7,.19189,0],74:[.27778,.7,.19189,0],75:[0,.7,.31259,0],76:[0,.7,.19189,0],77:[0,.7,.15981,0],78:[0,.7,.3525,0],79:[0,.7,.08078,0],80:[0,.7,.08078,0],81:[0,.7,.03305,0],82:[0,.7,.06259,0],83:[0,.7,.19189,0],84:[0,.7,.29087,0],85:[0,.7,.25815,0],86:[0,.7,.27523,0],87:[0,.7,.27523,0],88:[0,.7,.26006,0],89:[0,.7,.2939,0],90:[0,.7,.24037,0]},"Size1-Regular":{40:[.35001,.85,0,0],41:[.35001,.85,0,0],47:[.35001,.85,0,0],91:[.35001,.85,0,0],92:[.35001,.85,0,0],93:[.35001,.85,0,0],123:[.35001,.85,0,0],125:[.35001,.85,0,0],710:[0,.72222,0,0],732:[0,.72222,0,0],770:[0,.72222,0,0],771:[0,.72222,0,0],8214:[-99e-5,.601,0,0],8593:[1e-5,.6,0,0],8595:[1e-5,.6,0,0],8657:[1e-5,.6,0,0],8659:[1e-5,.6,0,0],8719:[.25001,.75,0,0],8720:[.25001,.75,0,0],8721:[.25001,.75,0,0],8730:[.35001,.85,0,0],8739:[-.00599,.606,0,0],8741:[-.00599,.606,0,0],8747:[.30612,.805,.19445,0],8748:[.306,.805,.19445,0],8749:[.306,.805,.19445,0],8750:[.30612,.805,.19445,0],8896:[.25001,.75,0,0],8897:[.25001,.75,0,0],8898:[.25001,.75,0,0],8899:[.25001,.75,0,0],8968:[.35001,.85,0,0],8969:[.35001,.85,0,0],8970:[.35001,.85,0,0],8971:[.35001,.85,0,0],9168:[-99e-5,.601,0,0],10216:[.35001,.85,0,0],10217:[.35001,.85,0,0],10752:[.25001,.75,0,0],10753:[.25001,.75,0,0],10754:[.25001,.75,0,0],10756:[.25001,.75,0,0],10758:[.25001,.75,0,0]},"Size2-Regular":{40:[.65002,1.15,0,0],41:[.65002,1.15,0,0],47:[.65002,1.15,0,0],91:[.65002,1.15,0,0],92:[.65002,1.15,0,0],93:[.65002,1.15,0,0],123:[.65002,1.15,0,0],125:[.65002,1.15,0,0],710:[0,.75,0,0],732:[0,.75,0,0],770:[0,.75,0,0],771:[0,.75,0,0],8719:[.55001,1.05,0,0],8720:[.55001,1.05,0,0],8721:[.55001,1.05,0,0],8730:[.65002,1.15,0,0],8747:[.86225,1.36,.44445,0],8748:[.862,1.36,.44445,0],8749:[.862,1.36,.44445,0],8750:[.86225,1.36,.44445,0],8896:[.55001,1.05,0,0],8897:[.55001,1.05,0,0],8898:[.55001,1.05,0,0],8899:[.55001,1.05,0,0],8968:[.65002,1.15,0,0],8969:[.65002,1.15,0,0],8970:[.65002,1.15,0,0],8971:[.65002,1.15,0,0],10216:[.65002,1.15,0,0],10217:[.65002,1.15,0,0],10752:[.55001,1.05,0,0],10753:[.55001,1.05,0,0],10754:[.55001,1.05,0,0],10756:[.55001,1.05,0,0],10758:[.55001,1.05,0,0]},"Size3-Regular":{40:[.95003,1.45,0,0],41:[.95003,1.45,0,0],47:[.95003,1.45,0,0],91:[.95003,1.45,0,0],92:[.95003,1.45,0,0],93:[.95003,1.45,0,0],123:[.95003,1.45,0,0],125:[.95003,1.45,0,0],710:[0,.75,0,0],732:[0,.75,0,0],770:[0,.75,0,0],771:[0,.75,0,0],8730:[.95003,1.45,0,0],8968:[.95003,1.45,0,0],8969:[.95003,1.45,0,0],8970:[.95003,1.45,0,0],8971:[.95003,1.45,0,0],10216:[.95003,1.45,0,0],10217:[.95003,1.45,0,0]},"Size4-Regular":{40:[1.25003,1.75,0,0],41:[1.25003,1.75,0,0],47:[1.25003,1.75,0,0],91:[1.25003,1.75,0,0],92:[1.25003,1.75,0,0],93:[1.25003,1.75,0,0],123:[1.25003,1.75,0,0],125:[1.25003,1.75,0,0],710:[0,.825,0,0],732:[0,.825,0,0],770:[0,.825,0,0],771:[0,.825,0,0],8730:[1.25003,1.75,0,0],8968:[1.25003,1.75,0,0],8969:[1.25003,1.75,0,0],8970:[1.25003,1.75,0,0],8971:[1.25003,1.75,0,0],9115:[.64502,1.155,0,0],9116:[1e-5,.6,0,0],9117:[.64502,1.155,0,0],9118:[.64502,1.155,0,0],9119:[1e-5,.6,0,0],9120:[.64502,1.155,0,0],9121:[.64502,1.155,0,0],9122:[-99e-5,.601,0,0],9123:[.64502,1.155,0,0],9124:[.64502,1.155,0,0],9125:[-99e-5,.601,0,0],9126:[.64502,1.155,0,0],9127:[1e-5,.9,0,0],9128:[.65002,1.15,0,0],9129:[.90001,0,0,0],9130:[0,.3,0,0],9131:[1e-5,.9,0,0],9132:[.65002,1.15,0,0],9133:[.90001,0,0,0],9143:[.88502,.915,0,0],10216:[1.25003,1.75,0,0],10217:[1.25003,1.75,0,0],57344:[-.00499,.605,0,0],57345:[-.00499,.605,0,0],57680:[0,.12,0,0],57681:[0,.12,0,0],57682:[0,.12,0,0],57683:[0,.12,0,0]},"Typewriter-Regular":{33:[0,.61111,0,0],34:[0,.61111,0,0],35:[0,.61111,0,0],36:[.08333,.69444,0,0],37:[.08333,.69444,0,0],38:[0,.61111,0,0],39:[0,.61111,0,0],40:[.08333,.69444,0,0],41:[.08333,.69444,0,0],42:[0,.52083,0,0],43:[-.08056,.53055,0,0],44:[.13889,.125,0,0],45:[-.08056,.53055,0,0],46:[0,.125,0,0],47:[.08333,.69444,0,0],48:[0,.61111,0,0],49:[0,.61111,0,0],50:[0,.61111,0,0],51:[0,.61111,0,0],52:[0,.61111,0,0],53:[0,.61111,0,0],54:[0,.61111,0,0],55:[0,.61111,0,0],56:[0,.61111,0,0],57:[0,.61111,0,0],58:[0,.43056,0,0],59:[.13889,.43056,0,0],60:[-.05556,.55556,0,0],61:[-.19549,.41562,0,0],62:[-.05556,.55556,0,0],63:[0,.61111,0,0],64:[0,.61111,0,0],65:[0,.61111,0,0],66:[0,.61111,0,0],67:[0,.61111,0,0],68:[0,.61111,0,0],69:[0,.61111,0,0],70:[0,.61111,0,0],71:[0,.61111,0,0],72:[0,.61111,0,0],73:[0,.61111,0,0],74:[0,.61111,0,0],75:[0,.61111,0,0],76:[0,.61111,0,0],77:[0,.61111,0,0],78:[0,.61111,0,0],79:[0,.61111,0,0],80:[0,.61111,0,0],81:[.13889,.61111,0,0],82:[0,.61111,0,0],83:[0,.61111,0,0],84:[0,.61111,0,0],85:[0,.61111,0,0],86:[0,.61111,0,0],87:[0,.61111,0,0],88:[0,.61111,0,0],89:[0,.61111,0,0],90:[0,.61111,0,0],91:[.08333,.69444,0,0],92:[.08333,.69444,0,0],93:[.08333,.69444,0,0],94:[0,.61111,0,0],95:[.09514,0,0,0],96:[0,.61111,0,0],97:[0,.43056,0,0],98:[0,.61111,0,0],99:[0,.43056,0,0],100:[0,.61111,0,0],101:[0,.43056,0,0],102:[0,.61111,0,0],103:[.22222,.43056,0,0],104:[0,.61111,0,0],105:[0,.61111,0,0],106:[.22222,.61111,0,0],107:[0,.61111,0,0],108:[0,.61111,0,0],109:[0,.43056,0,0],110:[0,.43056,0,0],111:[0,.43056,0,0],112:[.22222,.43056,0,0],113:[.22222,.43056,0,0],114:[0,.43056,0,0],115:[0,.43056,0,0],116:[0,.55358,0,0],117:[0,.43056,0,0],118:[0,.43056,0,0],119:[0,.43056,0,0],120:[0,.43056,0,0],121:[.22222,.43056,0,0],122:[0,.43056,0,0],123:[.08333,.69444,0,0],124:[.08333,.69444,0,0],125:[.08333,.69444,0,0],126:[0,.61111,0,0],127:[0,.61111,0,0],305:[0,.43056,0,0],567:[.22222,.43056,0,0],768:[0,.61111,0,0],769:[0,.61111,0,0],770:[0,.61111,0,0],771:[0,.61111,0,0],772:[0,.56555,0,0],774:[0,.61111,0,0],776:[0,.61111,0,0],778:[0,.61111,0,0],780:[0,.56597,0,0],915:[0,.61111,0,0],916:[0,.61111,0,0],920:[0,.61111,0,0],923:[0,.61111,0,0],926:[0,.61111,0,0],928:[0,.61111,0,0],931:[0,.61111,0,0],933:[0,.61111,0,0],934:[0,.61111,0,0],936:[0,.61111,0,0],937:[0,.61111,0,0],2018:[0,.61111,0,0],2019:[0,.61111,0,0],8242:[0,.61111,0,0]}}},{}],18:[function(e,t,r){var a=e("./utils");var i=e("./ParseError");function n(e,r,a){if(typeof e==="string"){e=[e]}if(typeof r==="number"){r={numArgs:r}}var i={numArgs:r.numArgs,argTypes:r.argTypes,greediness:r.greediness===undefined?1:r.greediness,allowedInText:!!r.allowedInText,numOptionalArgs:r.numOptionalArgs||0,handler:a};for(var n=0;n","\\langle","\\rangle","\\lt","\\gt","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\\lmoustache","\\rmoustache","/","\\backslash","|","\\vert","\\|","\\Vert","\\uparrow","\\Uparrow","\\downarrow","\\Downarrow","\\updownarrow","\\Updownarrow","."];var o={"\\Bbb":"\\mathbb","\\bold":"\\mathbf","\\frak":"\\mathfrak"};n(["\\blue","\\orange","\\pink","\\red","\\green","\\gray","\\purple","\\blueA","\\blueB","\\blueC","\\blueD","\\blueE","\\tealA","\\tealB","\\tealC","\\tealD","\\tealE","\\greenA","\\greenB","\\greenC","\\greenD","\\greenE","\\goldA","\\goldB","\\goldC","\\goldD","\\goldE","\\redA","\\redB","\\redC","\\redD","\\redE","\\maroonA","\\maroonB","\\maroonC","\\maroonD","\\maroonE","\\purpleA","\\purpleB","\\purpleC","\\purpleD","\\purpleE","\\mintA","\\mintB","\\mintC","\\grayA","\\grayB","\\grayC","\\grayD","\\grayE","\\grayF","\\grayG","\\grayH","\\grayI","\\kaBlue","\\kaGreen"],{numArgs:1,allowedInText:true,greediness:3},function(e,t){var r=t[0];var a;if(r.type==="ordgroup"){a=r.value}else{a=[r]}return{type:"color",color:"katex-"+e.funcName.slice(1),value:a}});n(["\\arcsin","\\arccos","\\arctan","\\arg","\\cos","\\cosh","\\cot","\\coth","\\csc","\\deg","\\dim","\\exp","\\hom","\\ker","\\lg","\\ln","\\log","\\sec","\\sin","\\sinh","\\tan","\\tanh"],{numArgs:0},function(e){return{type:"op",limits:false,symbol:false,body:e.funcName}});n(["\\det","\\gcd","\\inf","\\lim","\\liminf","\\limsup","\\max","\\min","\\Pr","\\sup"],{numArgs:0},function(e){return{type:"op",limits:true,symbol:false,body:e.funcName}});n(["\\int","\\iint","\\iiint","\\oint"],{numArgs:0},function(e){return{type:"op",limits:false,symbol:true,body:e.funcName}});n(["\\coprod","\\bigvee","\\bigwedge","\\biguplus","\\bigcap","\\bigcup","\\intop","\\prod","\\sum","\\bigotimes","\\bigoplus","\\bigodot","\\bigsqcup","\\smallint"],{ +numArgs:0},function(e){return{type:"op",limits:true,symbol:true,body:e.funcName}});n(["\\dfrac","\\frac","\\tfrac","\\dbinom","\\binom","\\tbinom"],{numArgs:2,greediness:2},function(e,t){var r=t[0];var a=t[1];var i;var n=null;var s=null;var l="auto";switch(e.funcName){case"\\dfrac":case"\\frac":case"\\tfrac":i=true;break;case"\\dbinom":case"\\binom":case"\\tbinom":i=false;n="(";s=")";break;default:throw new Error("Unrecognized genfrac command")}switch(e.funcName){case"\\dfrac":case"\\dbinom":l="display";break;case"\\tfrac":case"\\tbinom":l="text";break}return{type:"genfrac",numer:r,denom:a,hasBarLine:i,leftDelim:n,rightDelim:s,size:l}});n(["\\llap","\\rlap"],{numArgs:1,allowedInText:true},function(e,t){var r=t[0];return{type:e.funcName.slice(1),body:r}});n(["\\bigl","\\Bigl","\\biggl","\\Biggl","\\bigr","\\Bigr","\\biggr","\\Biggr","\\bigm","\\Bigm","\\biggm","\\Biggm","\\big","\\Big","\\bigg","\\Bigg","\\left","\\right"],{numArgs:1},function(e,t){var r=t[0];if(!a.contains(l,r.value)){throw new i("Invalid delimiter: '"+r.value+"' after '"+e.funcName+"'",e.lexer,e.positions[1])}if(e.funcName==="\\left"||e.funcName==="\\right"){return{type:"leftright",value:r.value}}else{return{type:"delimsizing",size:s[e.funcName].size,delimType:s[e.funcName].type,value:r.value}}});n(["\\tiny","\\scriptsize","\\footnotesize","\\small","\\normalsize","\\large","\\Large","\\LARGE","\\huge","\\Huge"],0,null);n(["\\displaystyle","\\textstyle","\\scriptstyle","\\scriptscriptstyle"],0,null);n(["\\mathrm","\\mathit","\\mathbf","\\mathbb","\\mathcal","\\mathfrak","\\mathscr","\\mathsf","\\mathtt","\\Bbb","\\bold","\\frak"],{numArgs:1,greediness:2},function(e,t){var r=t[0];var a=e.funcName;if(a in o){a=o[a]}return{type:"font",font:a.slice(1),body:r}});n(["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot"],{numArgs:1},function(e,t){var r=t[0];return{type:"accent",accent:e.funcName,base:r}});n(["\\over","\\choose"],{numArgs:0},function(e){var t;switch(e.funcName){case"\\over":t="\\frac";break;case"\\choose":t="\\binom";break;default:throw new Error("Unrecognized infix genfrac command")}return{type:"infix",replaceWith:t}});n(["\\\\","\\cr"],{numArgs:0,numOptionalArgs:1,argTypes:["size"]},function(e,t){var r=t[0];return{type:"cr",size:r}});n(["\\begin","\\end"],{numArgs:1,argTypes:["text"]},function(e,t){var r=t[0];if(r.type!=="ordgroup"){throw new i("Invalid environment name",e.lexer,e.positions[1])}var a="";for(var n=0;n";return e};function n(e){this.text=e}n.prototype.toNode=function(){return document.createTextNode(this.text)};n.prototype.toMarkup=function(){return a.escape(this.text)};t.exports={MathNode:i,TextNode:n}},{"./utils":23}],20:[function(e,t,r){function a(e,t,r){this.type=e;this.value=t;this.mode=r}t.exports={ParseNode:a}},{}],21:[function(e,t,r){var a=e("./Parser");var i=function(e,t){var r=new a(e,t);return r.parse()};t.exports=i},{"./Parser":6}],22:[function(e,t,r){t.exports={math:{},text:{}};function a(e,r,a,i,n){t.exports[e][n]={font:r,group:a,replace:i}}var i="math";var n="text";var s="main";var l="ams";var o="accent";var u="bin";var p="close";var h="inner";var c="mathord";var v="op";var m="open";var f="punct";var d="rel";var g="spacing";var y="textord";a(i,s,d,"\u2261","\\equiv");a(i,s,d,"\u227a","\\prec");a(i,s,d,"\u227b","\\succ");a(i,s,d,"\u223c","\\sim");a(i,s,d,"\u22a5","\\perp");a(i,s,d,"\u2aaf","\\preceq");a(i,s,d,"\u2ab0","\\succeq");a(i,s,d,"\u2243","\\simeq");a(i,s,d,"\u2223","\\mid");a(i,s,d,"\u226a","\\ll");a(i,s,d,"\u226b","\\gg");a(i,s,d,"\u224d","\\asymp");a(i,s,d,"\u2225","\\parallel");a(i,s,d,"\u22c8","\\bowtie");a(i,s,d,"\u2323","\\smile");a(i,s,d,"\u2291","\\sqsubseteq");a(i,s,d,"\u2292","\\sqsupseteq");a(i,s,d,"\u2250","\\doteq");a(i,s,d,"\u2322","\\frown");a(i,s,d,"\u220b","\\ni");a(i,s,d,"\u221d","\\propto");a(i,s,d,"\u22a2","\\vdash");a(i,s,d,"\u22a3","\\dashv");a(i,s,d,"\u220b","\\owns");a(i,s,f,".","\\ldotp");a(i,s,f,"\u22c5","\\cdotp");a(i,s,y,"#","\\#");a(i,s,y,"&","\\&");a(i,s,y,"\u2135","\\aleph");a(i,s,y,"\u2200","\\forall");a(i,s,y,"\u210f","\\hbar");a(i,s,y,"\u2203","\\exists");a(i,s,y,"\u2207","\\nabla");a(i,s,y,"\u266d","\\flat");a(i,s,y,"\u2113","\\ell");a(i,s,y,"\u266e","\\natural");a(i,s,y,"\u2663","\\clubsuit");a(i,s,y,"\u2118","\\wp");a(i,s,y,"\u266f","\\sharp");a(i,s,y,"\u2662","\\diamondsuit");a(i,s,y,"\u211c","\\Re");a(i,s,y,"\u2661","\\heartsuit");a(i,s,y,"\u2111","\\Im");a(i,s,y,"\u2660","\\spadesuit");a(i,s,y,"\u2020","\\dag");a(i,s,y,"\u2021","\\ddag");a(i,s,p,"\u23b1","\\rmoustache");a(i,s,m,"\u23b0","\\lmoustache");a(i,s,p,"\u27ef","\\rgroup");a(i,s,m,"\u27ee","\\lgroup");a(i,s,u,"\u2213","\\mp");a(i,s,u,"\u2296","\\ominus");a(i,s,u,"\u228e","\\uplus");a(i,s,u,"\u2293","\\sqcap");a(i,s,u,"\u2217","\\ast");a(i,s,u,"\u2294","\\sqcup");a(i,s,u,"\u25ef","\\bigcirc");a(i,s,u,"\u2219","\\bullet");a(i,s,u,"\u2021","\\ddagger");a(i,s,u,"\u2240","\\wr");a(i,s,u,"\u2a3f","\\amalg");a(i,s,d,"\u27f5","\\longleftarrow");a(i,s,d,"\u21d0","\\Leftarrow");a(i,s,d,"\u27f8","\\Longleftarrow");a(i,s,d,"\u27f6","\\longrightarrow");a(i,s,d,"\u21d2","\\Rightarrow");a(i,s,d,"\u27f9","\\Longrightarrow");a(i,s,d,"\u2194","\\leftrightarrow");a(i,s,d,"\u27f7","\\longleftrightarrow");a(i,s,d,"\u21d4","\\Leftrightarrow");a(i,s,d,"\u27fa","\\Longleftrightarrow");a(i,s,d,"\u21a6","\\mapsto");a(i,s,d,"\u27fc","\\longmapsto");a(i,s,d,"\u2197","\\nearrow");a(i,s,d,"\u21a9","\\hookleftarrow");a(i,s,d,"\u21aa","\\hookrightarrow");a(i,s,d,"\u2198","\\searrow");a(i,s,d,"\u21bc","\\leftharpoonup");a(i,s,d,"\u21c0","\\rightharpoonup");a(i,s,d,"\u2199","\\swarrow");a(i,s,d,"\u21bd","\\leftharpoondown");a(i,s,d,"\u21c1","\\rightharpoondown");a(i,s,d,"\u2196","\\nwarrow");a(i,s,d,"\u21cc","\\rightleftharpoons");a(i,l,d,"\u226e","\\nless");a(i,l,d,"\ue010","\\nleqslant");a(i,l,d,"\ue011","\\nleqq");a(i,l,d,"\u2a87","\\lneq");a(i,l,d,"\u2268","\\lneqq");a(i,l,d,"\ue00c","\\lvertneqq");a(i,l,d,"\u22e6","\\lnsim");a(i,l,d,"\u2a89","\\lnapprox");a(i,l,d,"\u2280","\\nprec");a(i,l,d,"\u22e0","\\npreceq");a(i,l,d,"\u22e8","\\precnsim");a(i,l,d,"\u2ab9","\\precnapprox");a(i,l,d,"\u2241","\\nsim");a(i,l,d,"\ue006","\\nshortmid");a(i,l,d,"\u2224","\\nmid");a(i,l,d,"\u22ac","\\nvdash");a(i,l,d,"\u22ad","\\nvDash");a(i,l,d,"\u22ea","\\ntriangleleft");a(i,l,d,"\u22ec","\\ntrianglelefteq");a(i,l,d,"\u228a","\\subsetneq");a(i,l,d,"\ue01a","\\varsubsetneq");a(i,l,d,"\u2acb","\\subsetneqq");a(i,l,d,"\ue017","\\varsubsetneqq");a(i,l,d,"\u226f","\\ngtr");a(i,l,d,"\ue00f","\\ngeqslant");a(i,l,d,"\ue00e","\\ngeqq");a(i,l,d,"\u2a88","\\gneq");a(i,l,d,"\u2269","\\gneqq");a(i,l,d,"\ue00d","\\gvertneqq");a(i,l,d,"\u22e7","\\gnsim");a(i,l,d,"\u2a8a","\\gnapprox");a(i,l,d,"\u2281","\\nsucc");a(i,l,d,"\u22e1","\\nsucceq");a(i,l,d,"\u22e9","\\succnsim");a(i,l,d,"\u2aba","\\succnapprox");a(i,l,d,"\u2246","\\ncong");a(i,l,d,"\ue007","\\nshortparallel");a(i,l,d,"\u2226","\\nparallel");a(i,l,d,"\u22af","\\nVDash");a(i,l,d,"\u22eb","\\ntriangleright");a(i,l,d,"\u22ed","\\ntrianglerighteq");a(i,l,d,"\ue018","\\nsupseteqq");a(i,l,d,"\u228b","\\supsetneq");a(i,l,d,"\ue01b","\\varsupsetneq");a(i,l,d,"\u2acc","\\supsetneqq");a(i,l,d,"\ue019","\\varsupsetneqq");a(i,l,d,"\u22ae","\\nVdash");a(i,l,d,"\u2ab5","\\precneqq");a(i,l,d,"\u2ab6","\\succneqq");a(i,l,d,"\ue016","\\nsubseteqq");a(i,l,u,"\u22b4","\\unlhd");a(i,l,u,"\u22b5","\\unrhd");a(i,l,d,"\u219a","\\nleftarrow");a(i,l,d,"\u219b","\\nrightarrow");a(i,l,d,"\u21cd","\\nLeftarrow");a(i,l,d,"\u21cf","\\nRightarrow");a(i,l,d,"\u21ae","\\nleftrightarrow");a(i,l,d,"\u21ce","\\nLeftrightarrow");a(i,l,d,"\u25b3","\\vartriangle");a(i,l,y,"\u210f","\\hslash");a(i,l,y,"\u25bd","\\triangledown");a(i,l,y,"\u25ca","\\lozenge");a(i,l,y,"\u24c8","\\circledS");a(i,l,y,"\xae","\\circledR");a(i,l,y,"\u2221","\\measuredangle");a(i,l,y,"\u2204","\\nexists");a(i,l,y,"\u2127","\\mho");a(i,l,y,"\u2132","\\Finv");a(i,l,y,"\u2141","\\Game");a(i,l,y,"k","\\Bbbk");a(i,l,y,"\u2035","\\backprime");a(i,l,y,"\u25b2","\\blacktriangle");a(i,l,y,"\u25bc","\\blacktriangledown");a(i,l,y,"\u25a0","\\blacksquare");a(i,l,y,"\u29eb","\\blacklozenge");a(i,l,y,"\u2605","\\bigstar");a(i,l,y,"\u2222","\\sphericalangle");a(i,l,y,"\u2201","\\complement");a(i,l,y,"\xf0","\\eth");a(i,l,y,"\u2571","\\diagup");a(i,l,y,"\u2572","\\diagdown");a(i,l,y,"\u25a1","\\square");a(i,l,y,"\u25a1","\\Box");a(i,l,y,"\u25ca","\\Diamond");a(i,l,y,"\xa5","\\yen");a(i,l,y,"\u2713","\\checkmark");a(i,l,y,"\u2136","\\beth");a(i,l,y,"\u2138","\\daleth");a(i,l,y,"\u2137","\\gimel");a(i,l,y,"\u03dd","\\digamma");a(i,l,y,"\u03f0","\\varkappa");a(i,l,m,"\u250c","\\ulcorner");a(i,l,p,"\u2510","\\urcorner");a(i,l,m,"\u2514","\\llcorner");a(i,l,p,"\u2518","\\lrcorner");a(i,l,d,"\u2266","\\leqq");a(i,l,d,"\u2a7d","\\leqslant");a(i,l,d,"\u2a95","\\eqslantless");a(i,l,d,"\u2272","\\lesssim");a(i,l,d,"\u2a85","\\lessapprox");a(i,l,d,"\u224a","\\approxeq");a(i,l,u,"\u22d6","\\lessdot");a(i,l,d,"\u22d8","\\lll");a(i,l,d,"\u2276","\\lessgtr");a(i,l,d,"\u22da","\\lesseqgtr");a(i,l,d,"\u2a8b","\\lesseqqgtr");a(i,l,d,"\u2251","\\doteqdot");a(i,l,d,"\u2253","\\risingdotseq");a(i,l,d,"\u2252","\\fallingdotseq");a(i,l,d,"\u223d","\\backsim");a(i,l,d,"\u22cd","\\backsimeq");a(i,l,d,"\u2ac5","\\subseteqq");a(i,l,d,"\u22d0","\\Subset");a(i,l,d,"\u228f","\\sqsubset");a(i,l,d,"\u227c","\\preccurlyeq");a(i,l,d,"\u22de","\\curlyeqprec");a(i,l,d,"\u227e","\\precsim");a(i,l,d,"\u2ab7","\\precapprox");a(i,l,d,"\u22b2","\\vartriangleleft");a(i,l,d,"\u22b4","\\trianglelefteq");a(i,l,d,"\u22a8","\\vDash");a(i,l,d,"\u22aa","\\Vvdash");a(i,l,d,"\u2323","\\smallsmile");a(i,l,d,"\u2322","\\smallfrown");a(i,l,d,"\u224f","\\bumpeq");a(i,l,d,"\u224e","\\Bumpeq");a(i,l,d,"\u2267","\\geqq");a(i,l,d,"\u2a7e","\\geqslant");a(i,l,d,"\u2a96","\\eqslantgtr");a(i,l,d,"\u2273","\\gtrsim");a(i,l,d,"\u2a86","\\gtrapprox");a(i,l,u,"\u22d7","\\gtrdot");a(i,l,d,"\u22d9","\\ggg");a(i,l,d,"\u2277","\\gtrless");a(i,l,d,"\u22db","\\gtreqless");a(i,l,d,"\u2a8c","\\gtreqqless");a(i,l,d,"\u2256","\\eqcirc");a(i,l,d,"\u2257","\\circeq");a(i,l,d,"\u225c","\\triangleq");a(i,l,d,"\u223c","\\thicksim");a(i,l,d,"\u2248","\\thickapprox");a(i,l,d,"\u2ac6","\\supseteqq");a(i,l,d,"\u22d1","\\Supset");a(i,l,d,"\u2290","\\sqsupset");a(i,l,d,"\u227d","\\succcurlyeq");a(i,l,d,"\u22df","\\curlyeqsucc");a(i,l,d,"\u227f","\\succsim");a(i,l,d,"\u2ab8","\\succapprox");a(i,l,d,"\u22b3","\\vartriangleright");a(i,l,d,"\u22b5","\\trianglerighteq");a(i,l,d,"\u22a9","\\Vdash");a(i,l,d,"\u2223","\\shortmid");a(i,l,d,"\u2225","\\shortparallel");a(i,l,d,"\u226c","\\between");a(i,l,d,"\u22d4","\\pitchfork");a(i,l,d,"\u221d","\\varpropto");a(i,l,d,"\u25c0","\\blacktriangleleft");a(i,l,d,"\u2234","\\therefore");a(i,l,d,"\u220d","\\backepsilon");a(i,l,d,"\u25b6","\\blacktriangleright");a(i,l,d,"\u2235","\\because");a(i,l,d,"\u22d8","\\llless");a(i,l,d,"\u22d9","\\gggtr");a(i,l,u,"\u22b2","\\lhd");a(i,l,u,"\u22b3","\\rhd");a(i,l,d,"\u2242","\\eqsim");a(i,s,d,"\u22c8","\\Join");a(i,l,d,"\u2251","\\Doteq");a(i,l,u,"\u2214","\\dotplus");a(i,l,u,"\u2216","\\smallsetminus");a(i,l,u,"\u22d2","\\Cap");a(i,l,u,"\u22d3","\\Cup");a(i,l,u,"\u2a5e","\\doublebarwedge");a(i,l,u,"\u229f","\\boxminus");a(i,l,u,"\u229e","\\boxplus");a(i,l,u,"\u22c7","\\divideontimes");a(i,l,u,"\u22c9","\\ltimes");a(i,l,u,"\u22ca","\\rtimes");a(i,l,u,"\u22cb","\\leftthreetimes");a(i,l,u,"\u22cc","\\rightthreetimes");a(i,l,u,"\u22cf","\\curlywedge");a(i,l,u,"\u22ce","\\curlyvee");a(i,l,u,"\u229d","\\circleddash");a(i,l,u,"\u229b","\\circledast");a(i,l,u,"\u22c5","\\centerdot");a(i,l,u,"\u22ba","\\intercal");a(i,l,u,"\u22d2","\\doublecap");a(i,l,u,"\u22d3","\\doublecup");a(i,l,u,"\u22a0","\\boxtimes");a(i,l,d,"\u21e2","\\dashrightarrow");a(i,l,d,"\u21e0","\\dashleftarrow");a(i,l,d,"\u21c7","\\leftleftarrows");a(i,l,d,"\u21c6","\\leftrightarrows");a(i,l,d,"\u21da","\\Lleftarrow");a(i,l,d,"\u219e","\\twoheadleftarrow");a(i,l,d,"\u21a2","\\leftarrowtail");a(i,l,d,"\u21ab","\\looparrowleft");a(i,l,d,"\u21cb","\\leftrightharpoons");a(i,l,d,"\u21b6","\\curvearrowleft");a(i,l,d,"\u21ba","\\circlearrowleft");a(i,l,d,"\u21b0","\\Lsh");a(i,l,d,"\u21c8","\\upuparrows");a(i,l,d,"\u21bf","\\upharpoonleft");a(i,l,d,"\u21c3","\\downharpoonleft");a(i,l,d,"\u22b8","\\multimap");a(i,l,d,"\u21ad","\\leftrightsquigarrow");a(i,l,d,"\u21c9","\\rightrightarrows");a(i,l,d,"\u21c4","\\rightleftarrows");a(i,l,d,"\u21a0","\\twoheadrightarrow");a(i,l,d,"\u21a3","\\rightarrowtail");a(i,l,d,"\u21ac","\\looparrowright");a(i,l,d,"\u21b7","\\curvearrowright");a(i,l,d,"\u21bb","\\circlearrowright");a(i,l,d,"\u21b1","\\Rsh");a(i,l,d,"\u21ca","\\downdownarrows");a(i,l,d,"\u21be","\\upharpoonright");a(i,l,d,"\u21c2","\\downharpoonright");a(i,l,d,"\u21dd","\\rightsquigarrow");a(i,l,d,"\u21dd","\\leadsto");a(i,l,d,"\u21db","\\Rrightarrow");a(i,l,d,"\u21be","\\restriction");a(i,s,y,"\u2018","`");a(i,s,y,"$","\\$");a(i,s,y,"%","\\%");a(i,s,y,"_","\\_");a(i,s,y,"\u2220","\\angle");a(i,s,y,"\u221e","\\infty");a(i,s,y,"\u2032","\\prime");a(i,s,y,"\u25b3","\\triangle");a(i,s,y,"\u0393","\\Gamma");a(i,s,y,"\u0394","\\Delta");a(i,s,y,"\u0398","\\Theta");a(i,s,y,"\u039b","\\Lambda");a(i,s,y,"\u039e","\\Xi");a(i,s,y,"\u03a0","\\Pi");a(i,s,y,"\u03a3","\\Sigma");a(i,s,y,"\u03a5","\\Upsilon");a(i,s,y,"\u03a6","\\Phi");a(i,s,y,"\u03a8","\\Psi");a(i,s,y,"\u03a9","\\Omega");a(i,s,y,"\xac","\\neg");a(i,s,y,"\xac","\\lnot");a(i,s,y,"\u22a4","\\top");a(i,s,y,"\u22a5","\\bot");a(i,s,y,"\u2205","\\emptyset");a(i,l,y,"\u2205","\\varnothing");a(i,s,c,"\u03b1","\\alpha");a(i,s,c,"\u03b2","\\beta");a(i,s,c,"\u03b3","\\gamma");a(i,s,c,"\u03b4","\\delta");a(i,s,c,"\u03f5","\\epsilon");a(i,s,c,"\u03b6","\\zeta");a(i,s,c,"\u03b7","\\eta");a(i,s,c,"\u03b8","\\theta");a(i,s,c,"\u03b9","\\iota");a(i,s,c,"\u03ba","\\kappa");a(i,s,c,"\u03bb","\\lambda");a(i,s,c,"\u03bc","\\mu");a(i,s,c,"\u03bd","\\nu");a(i,s,c,"\u03be","\\xi");a(i,s,c,"o","\\omicron");a(i,s,c,"\u03c0","\\pi");a(i,s,c,"\u03c1","\\rho");a(i,s,c,"\u03c3","\\sigma");a(i,s,c,"\u03c4","\\tau");a(i,s,c,"\u03c5","\\upsilon");a(i,s,c,"\u03d5","\\phi");a(i,s,c,"\u03c7","\\chi");a(i,s,c,"\u03c8","\\psi");a(i,s,c,"\u03c9","\\omega");a(i,s,c,"\u03b5","\\varepsilon");a(i,s,c,"\u03d1","\\vartheta");a(i,s,c,"\u03d6","\\varpi");a(i,s,c,"\u03f1","\\varrho");a(i,s,c,"\u03c2","\\varsigma");a(i,s,c,"\u03c6","\\varphi");a(i,s,u,"\u2217","*");a(i,s,u,"+","+");a(i,s,u,"\u2212","-");a(i,s,u,"\u22c5","\\cdot");a(i,s,u,"\u2218","\\circ");a(i,s,u,"\xf7","\\div");a(i,s,u,"\xb1","\\pm");a(i,s,u,"\xd7","\\times");a(i,s,u,"\u2229","\\cap");a(i,s,u,"\u222a","\\cup");a(i,s,u,"\u2216","\\setminus");a(i,s,u,"\u2227","\\land");a(i,s,u,"\u2228","\\lor");a(i,s,u,"\u2227","\\wedge");a(i,s,u,"\u2228","\\vee");a(i,s,y,"\u221a","\\surd");a(i,s,m,"(","(");a(i,s,m,"[","[");a(i,s,m,"\u27e8","\\langle");a(i,s,m,"\u2223","\\lvert");a(i,s,m,"\u2225","\\lVert");a(i,s,p,")",")");a(i,s,p,"]","]");a(i,s,p,"?","?");a(i,s,p,"!","!");a(i,s,p,"\u27e9","\\rangle");a(i,s,p,"\u2223","\\rvert");a(i,s,p,"\u2225","\\rVert");a(i,s,d,"=","=");a(i,s,d,"<","<");a(i,s,d,">",">");a(i,s,d,":",":");a(i,s,d,"\u2248","\\approx");a(i,s,d,"\u2245","\\cong");a(i,s,d,"\u2265","\\ge");a(i,s,d,"\u2265","\\geq");a(i,s,d,"\u2190","\\gets");a(i,s,d,">","\\gt");a(i,s,d,"\u2208","\\in");a(i,s,d,"\u2209","\\notin");a(i,s,d,"\u2282","\\subset");a(i,s,d,"\u2283","\\supset");a(i,s,d,"\u2286","\\subseteq");a(i,s,d,"\u2287","\\supseteq");a(i,l,d,"\u2288","\\nsubseteq");a(i,l,d,"\u2289","\\nsupseteq");a(i,s,d,"\u22a8","\\models");a(i,s,d,"\u2190","\\leftarrow");a(i,s,d,"\u2264","\\le");a(i,s,d,"\u2264","\\leq");a(i,s,d,"<","\\lt");a(i,s,d,"\u2260","\\ne");a(i,s,d,"\u2260","\\neq");a(i,s,d,"\u2192","\\rightarrow");a(i,s,d,"\u2192","\\to");a(i,l,d,"\u2271","\\ngeq");a(i,l,d,"\u2270","\\nleq");a(i,s,g,null,"\\!");a(i,s,g,"\xa0","\\ ");a(i,s,g,"\xa0","~");a(i,s,g,null,"\\,");a(i,s,g,null,"\\:");a(i,s,g,null,"\\;");a(i,s,g,null,"\\enspace");a(i,s,g,null,"\\qquad");a(i,s,g,null,"\\quad");a(i,s,g,"\xa0","\\space");a(i,s,f,",",",");a(i,s,f,";",";");a(i,s,f,":","\\colon");a(i,l,u,"\u22bc","\\barwedge");a(i,l,u,"\u22bb","\\veebar");a(i,s,u,"\u2299","\\odot");a(i,s,u,"\u2295","\\oplus");a(i,s,u,"\u2297","\\otimes");a(i,s,y,"\u2202","\\partial");a(i,s,u,"\u2298","\\oslash");a(i,l,u,"\u229a","\\circledcirc");a(i,l,u,"\u22a1","\\boxdot");a(i,s,u,"\u25b3","\\bigtriangleup");a(i,s,u,"\u25bd","\\bigtriangledown");a(i,s,u,"\u2020","\\dagger");a(i,s,u,"\u22c4","\\diamond");a(i,s,u,"\u22c6","\\star");a(i,s,u,"\u25c3","\\triangleleft");a(i,s,u,"\u25b9","\\triangleright");a(i,s,m,"{","\\{");a(i,s,p,"}","\\}");a(i,s,m,"{","\\lbrace");a(i,s,p,"}","\\rbrace");a(i,s,m,"[","\\lbrack");a(i,s,p,"]","\\rbrack");a(i,s,m,"\u230a","\\lfloor");a(i,s,p,"\u230b","\\rfloor");a(i,s,m,"\u2308","\\lceil");a(i,s,p,"\u2309","\\rceil");a(i,s,y,"\\","\\backslash");a(i,s,y,"\u2223","|");a(i,s,y,"\u2223","\\vert");a(i,s,y,"\u2225","\\|");a(i,s,y,"\u2225","\\Vert");a(i,s,d,"\u2191","\\uparrow");a(i,s,d,"\u21d1","\\Uparrow");a(i,s,d,"\u2193","\\downarrow");a(i,s,d,"\u21d3","\\Downarrow");a(i,s,d,"\u2195","\\updownarrow");a(i,s,d,"\u21d5","\\Updownarrow");a(i,i,v,"\u2210","\\coprod");a(i,i,v,"\u22c1","\\bigvee");a(i,i,v,"\u22c0","\\bigwedge");a(i,i,v,"\u2a04","\\biguplus");a(i,i,v,"\u22c2","\\bigcap");a(i,i,v,"\u22c3","\\bigcup");a(i,i,v,"\u222b","\\int");a(i,i,v,"\u222b","\\intop");a(i,i,v,"\u222c","\\iint");a(i,i,v,"\u222d","\\iiint");a(i,i,v,"\u220f","\\prod");a(i,i,v,"\u2211","\\sum");a(i,i,v,"\u2a02","\\bigotimes");a(i,i,v,"\u2a01","\\bigoplus");a(i,i,v,"\u2a00","\\bigodot");a(i,i,v,"\u222e","\\oint");a(i,i,v,"\u2a06","\\bigsqcup");a(i,i,v,"\u222b","\\smallint");a(i,s,h,"\u2026","\\ldots");a(i,s,h,"\u22ef","\\cdots");a(i,s,h,"\u22f1","\\ddots");a(i,s,y,"\u22ee","\\vdots");a(i,s,o,"\xb4","\\acute");a(i,s,o,"`","\\grave");a(i,s,o,"\xa8","\\ddot");a(i,s,o,"~","\\tilde");a(i,s,o,"\xaf","\\bar");a(i,s,o,"\u02d8","\\breve");a(i,s,o,"\u02c7","\\check");a(i,s,o,"^","\\hat");a(i,s,o,"\u20d7","\\vec");a(i,s,o,"\u02d9","\\dot");a(i,s,c,"\u0131","\\imath");a(i,s,c,"\u0237","\\jmath");a(n,s,g,"\xa0","\\ ");a(n,s,g,"\xa0"," ");a(n,s,g,"\xa0","~");var b;var x;var w='0123456789/@."';for(b=0;b":">","<":"<",'"':""","'":"'"};var p=/[&><"']/g;function h(e){return u[e]}function c(e){return(""+e).replace(p,h)}var v;if(typeof document!=="undefined"){var m=document.createElement("span");if("textContent"in m){v=function(e,t){e.textContent=t}}else{v=function(e,t){e.innerText=t}}}function f(e){v(e,"")}t.exports={contains:n,deflt:s,escape:c,hyphenate:o,indexOf:i,setTextContent:v,clearNode:f}},{}]},{},[1])(1)}); \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/quill.js b/assets/vendors/js/editors/quill/quill.js new file mode 100644 index 0000000..5dc8fbe --- /dev/null +++ b/assets/vendors/js/editors/quill/quill.js @@ -0,0 +1,11489 @@ +/*! + * Quill Editor v1.3.6 + * https://quilljs.com/ + * Copyright (c) 2014, Jason Chen + * Copyright (c) 2013, salesforce.com + */ +(function webpackUniversalModuleDefinition(root, factory) { + if(typeof exports === 'object' && typeof module === 'object') + module.exports = factory(); + else if(typeof define === 'function' && define.amd) + define([], factory); + else if(typeof exports === 'object') + exports["Quill"] = factory(); + else + root["Quill"] = factory(); +})(typeof self !== 'undefined' ? self : this, function() { +return /******/ (function(modules) { // webpackBootstrap +/******/ // The module cache +/******/ var installedModules = {}; +/******/ +/******/ // The require function +/******/ function __webpack_require__(moduleId) { +/******/ +/******/ // Check if module is in cache +/******/ if(installedModules[moduleId]) { +/******/ return installedModules[moduleId].exports; +/******/ } +/******/ // Create a new module (and put it into the cache) +/******/ var module = installedModules[moduleId] = { +/******/ i: moduleId, +/******/ l: false, +/******/ exports: {} +/******/ }; +/******/ +/******/ // Execute the module function +/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); +/******/ +/******/ // Flag the module as loaded +/******/ module.l = true; +/******/ +/******/ // Return the exports of the module +/******/ return module.exports; +/******/ } +/******/ +/******/ +/******/ // expose the modules object (__webpack_modules__) +/******/ __webpack_require__.m = modules; +/******/ +/******/ // expose the module cache +/******/ __webpack_require__.c = installedModules; +/******/ +/******/ // define getter function for harmony exports +/******/ __webpack_require__.d = function(exports, name, getter) { +/******/ if(!__webpack_require__.o(exports, name)) { +/******/ Object.defineProperty(exports, name, { +/******/ configurable: false, +/******/ enumerable: true, +/******/ get: getter +/******/ }); +/******/ } +/******/ }; +/******/ +/******/ // getDefaultExport function for compatibility with non-harmony modules +/******/ __webpack_require__.n = function(module) { +/******/ var getter = module && module.__esModule ? +/******/ function getDefault() { return module['default']; } : +/******/ function getModuleExports() { return module; }; +/******/ __webpack_require__.d(getter, 'a', getter); +/******/ return getter; +/******/ }; +/******/ +/******/ // Object.prototype.hasOwnProperty.call +/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; +/******/ +/******/ // __webpack_public_path__ +/******/ __webpack_require__.p = ""; +/******/ +/******/ // Load entry module and return exports +/******/ return __webpack_require__(__webpack_require__.s = 109); +/******/ }) +/************************************************************************/ +/******/ ([ +/* 0 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var container_1 = __webpack_require__(17); +var format_1 = __webpack_require__(18); +var leaf_1 = __webpack_require__(19); +var scroll_1 = __webpack_require__(45); +var inline_1 = __webpack_require__(46); +var block_1 = __webpack_require__(47); +var embed_1 = __webpack_require__(48); +var text_1 = __webpack_require__(49); +var attributor_1 = __webpack_require__(12); +var class_1 = __webpack_require__(32); +var style_1 = __webpack_require__(33); +var store_1 = __webpack_require__(31); +var Registry = __webpack_require__(1); +var Parchment = { + Scope: Registry.Scope, + create: Registry.create, + find: Registry.find, + query: Registry.query, + register: Registry.register, + Container: container_1.default, + Format: format_1.default, + Leaf: leaf_1.default, + Embed: embed_1.default, + Scroll: scroll_1.default, + Block: block_1.default, + Inline: inline_1.default, + Text: text_1.default, + Attributor: { + Attribute: attributor_1.default, + Class: class_1.default, + Style: style_1.default, + Store: store_1.default, + }, +}; +exports.default = Parchment; + + +/***/ }), +/* 1 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || (function () { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +var ParchmentError = /** @class */ (function (_super) { + __extends(ParchmentError, _super); + function ParchmentError(message) { + var _this = this; + message = '[Parchment] ' + message; + _this = _super.call(this, message) || this; + _this.message = message; + _this.name = _this.constructor.name; + return _this; + } + return ParchmentError; +}(Error)); +exports.ParchmentError = ParchmentError; +var attributes = {}; +var classes = {}; +var tags = {}; +var types = {}; +exports.DATA_KEY = '__blot'; +var Scope; +(function (Scope) { + Scope[Scope["TYPE"] = 3] = "TYPE"; + Scope[Scope["LEVEL"] = 12] = "LEVEL"; + Scope[Scope["ATTRIBUTE"] = 13] = "ATTRIBUTE"; + Scope[Scope["BLOT"] = 14] = "BLOT"; + Scope[Scope["INLINE"] = 7] = "INLINE"; + Scope[Scope["BLOCK"] = 11] = "BLOCK"; + Scope[Scope["BLOCK_BLOT"] = 10] = "BLOCK_BLOT"; + Scope[Scope["INLINE_BLOT"] = 6] = "INLINE_BLOT"; + Scope[Scope["BLOCK_ATTRIBUTE"] = 9] = "BLOCK_ATTRIBUTE"; + Scope[Scope["INLINE_ATTRIBUTE"] = 5] = "INLINE_ATTRIBUTE"; + Scope[Scope["ANY"] = 15] = "ANY"; +})(Scope = exports.Scope || (exports.Scope = {})); +function create(input, value) { + var match = query(input); + if (match == null) { + throw new ParchmentError("Unable to create " + input + " blot"); + } + var BlotClass = match; + var node = + // @ts-ignore + input instanceof Node || input['nodeType'] === Node.TEXT_NODE ? input : BlotClass.create(value); + return new BlotClass(node, value); +} +exports.create = create; +function find(node, bubble) { + if (bubble === void 0) { bubble = false; } + if (node == null) + return null; + // @ts-ignore + if (node[exports.DATA_KEY] != null) + return node[exports.DATA_KEY].blot; + if (bubble) + return find(node.parentNode, bubble); + return null; +} +exports.find = find; +function query(query, scope) { + if (scope === void 0) { scope = Scope.ANY; } + var match; + if (typeof query === 'string') { + match = types[query] || attributes[query]; + // @ts-ignore + } + else if (query instanceof Text || query['nodeType'] === Node.TEXT_NODE) { + match = types['text']; + } + else if (typeof query === 'number') { + if (query & Scope.LEVEL & Scope.BLOCK) { + match = types['block']; + } + else if (query & Scope.LEVEL & Scope.INLINE) { + match = types['inline']; + } + } + else if (query instanceof HTMLElement) { + var names = (query.getAttribute('class') || '').split(/\s+/); + for (var i in names) { + match = classes[names[i]]; + if (match) + break; + } + match = match || tags[query.tagName]; + } + if (match == null) + return null; + // @ts-ignore + if (scope & Scope.LEVEL & match.scope && scope & Scope.TYPE & match.scope) + return match; + return null; +} +exports.query = query; +function register() { + var Definitions = []; + for (var _i = 0; _i < arguments.length; _i++) { + Definitions[_i] = arguments[_i]; + } + if (Definitions.length > 1) { + return Definitions.map(function (d) { + return register(d); + }); + } + var Definition = Definitions[0]; + if (typeof Definition.blotName !== 'string' && typeof Definition.attrName !== 'string') { + throw new ParchmentError('Invalid definition'); + } + else if (Definition.blotName === 'abstract') { + throw new ParchmentError('Cannot register abstract class'); + } + types[Definition.blotName || Definition.attrName] = Definition; + if (typeof Definition.keyName === 'string') { + attributes[Definition.keyName] = Definition; + } + else { + if (Definition.className != null) { + classes[Definition.className] = Definition; + } + if (Definition.tagName != null) { + if (Array.isArray(Definition.tagName)) { + Definition.tagName = Definition.tagName.map(function (tagName) { + return tagName.toUpperCase(); + }); + } + else { + Definition.tagName = Definition.tagName.toUpperCase(); + } + var tagNames = Array.isArray(Definition.tagName) ? Definition.tagName : [Definition.tagName]; + tagNames.forEach(function (tag) { + if (tags[tag] == null || Definition.className == null) { + tags[tag] = Definition; + } + }); + } + } + return Definition; +} +exports.register = register; + + +/***/ }), +/* 2 */ +/***/ (function(module, exports, __webpack_require__) { + +var diff = __webpack_require__(51); +var equal = __webpack_require__(11); +var extend = __webpack_require__(3); +var op = __webpack_require__(20); + + +var NULL_CHARACTER = String.fromCharCode(0); // Placeholder char for embed in diff() + + +var Delta = function (ops) { + // Assume we are given a well formed ops + if (Array.isArray(ops)) { + this.ops = ops; + } else if (ops != null && Array.isArray(ops.ops)) { + this.ops = ops.ops; + } else { + this.ops = []; + } +}; + + +Delta.prototype.insert = function (text, attributes) { + var newOp = {}; + if (text.length === 0) return this; + newOp.insert = text; + if (attributes != null && typeof attributes === 'object' && Object.keys(attributes).length > 0) { + newOp.attributes = attributes; + } + return this.push(newOp); +}; + +Delta.prototype['delete'] = function (length) { + if (length <= 0) return this; + return this.push({ 'delete': length }); +}; + +Delta.prototype.retain = function (length, attributes) { + if (length <= 0) return this; + var newOp = { retain: length }; + if (attributes != null && typeof attributes === 'object' && Object.keys(attributes).length > 0) { + newOp.attributes = attributes; + } + return this.push(newOp); +}; + +Delta.prototype.push = function (newOp) { + var index = this.ops.length; + var lastOp = this.ops[index - 1]; + newOp = extend(true, {}, newOp); + if (typeof lastOp === 'object') { + if (typeof newOp['delete'] === 'number' && typeof lastOp['delete'] === 'number') { + this.ops[index - 1] = { 'delete': lastOp['delete'] + newOp['delete'] }; + return this; + } + // Since it does not matter if we insert before or after deleting at the same index, + // always prefer to insert first + if (typeof lastOp['delete'] === 'number' && newOp.insert != null) { + index -= 1; + lastOp = this.ops[index - 1]; + if (typeof lastOp !== 'object') { + this.ops.unshift(newOp); + return this; + } + } + if (equal(newOp.attributes, lastOp.attributes)) { + if (typeof newOp.insert === 'string' && typeof lastOp.insert === 'string') { + this.ops[index - 1] = { insert: lastOp.insert + newOp.insert }; + if (typeof newOp.attributes === 'object') this.ops[index - 1].attributes = newOp.attributes + return this; + } else if (typeof newOp.retain === 'number' && typeof lastOp.retain === 'number') { + this.ops[index - 1] = { retain: lastOp.retain + newOp.retain }; + if (typeof newOp.attributes === 'object') this.ops[index - 1].attributes = newOp.attributes + return this; + } + } + } + if (index === this.ops.length) { + this.ops.push(newOp); + } else { + this.ops.splice(index, 0, newOp); + } + return this; +}; + +Delta.prototype.chop = function () { + var lastOp = this.ops[this.ops.length - 1]; + if (lastOp && lastOp.retain && !lastOp.attributes) { + this.ops.pop(); + } + return this; +}; + +Delta.prototype.filter = function (predicate) { + return this.ops.filter(predicate); +}; + +Delta.prototype.forEach = function (predicate) { + this.ops.forEach(predicate); +}; + +Delta.prototype.map = function (predicate) { + return this.ops.map(predicate); +}; + +Delta.prototype.partition = function (predicate) { + var passed = [], failed = []; + this.forEach(function(op) { + var target = predicate(op) ? passed : failed; + target.push(op); + }); + return [passed, failed]; +}; + +Delta.prototype.reduce = function (predicate, initial) { + return this.ops.reduce(predicate, initial); +}; + +Delta.prototype.changeLength = function () { + return this.reduce(function (length, elem) { + if (elem.insert) { + return length + op.length(elem); + } else if (elem.delete) { + return length - elem.delete; + } + return length; + }, 0); +}; + +Delta.prototype.length = function () { + return this.reduce(function (length, elem) { + return length + op.length(elem); + }, 0); +}; + +Delta.prototype.slice = function (start, end) { + start = start || 0; + if (typeof end !== 'number') end = Infinity; + var ops = []; + var iter = op.iterator(this.ops); + var index = 0; + while (index < end && iter.hasNext()) { + var nextOp; + if (index < start) { + nextOp = iter.next(start - index); + } else { + nextOp = iter.next(end - index); + ops.push(nextOp); + } + index += op.length(nextOp); + } + return new Delta(ops); +}; + + +Delta.prototype.compose = function (other) { + var thisIter = op.iterator(this.ops); + var otherIter = op.iterator(other.ops); + var delta = new Delta(); + while (thisIter.hasNext() || otherIter.hasNext()) { + if (otherIter.peekType() === 'insert') { + delta.push(otherIter.next()); + } else if (thisIter.peekType() === 'delete') { + delta.push(thisIter.next()); + } else { + var length = Math.min(thisIter.peekLength(), otherIter.peekLength()); + var thisOp = thisIter.next(length); + var otherOp = otherIter.next(length); + if (typeof otherOp.retain === 'number') { + var newOp = {}; + if (typeof thisOp.retain === 'number') { + newOp.retain = length; + } else { + newOp.insert = thisOp.insert; + } + // Preserve null when composing with a retain, otherwise remove it for inserts + var attributes = op.attributes.compose(thisOp.attributes, otherOp.attributes, typeof thisOp.retain === 'number'); + if (attributes) newOp.attributes = attributes; + delta.push(newOp); + // Other op should be delete, we could be an insert or retain + // Insert + delete cancels out + } else if (typeof otherOp['delete'] === 'number' && typeof thisOp.retain === 'number') { + delta.push(otherOp); + } + } + } + return delta.chop(); +}; + +Delta.prototype.concat = function (other) { + var delta = new Delta(this.ops.slice()); + if (other.ops.length > 0) { + delta.push(other.ops[0]); + delta.ops = delta.ops.concat(other.ops.slice(1)); + } + return delta; +}; + +Delta.prototype.diff = function (other, index) { + if (this.ops === other.ops) { + return new Delta(); + } + var strings = [this, other].map(function (delta) { + return delta.map(function (op) { + if (op.insert != null) { + return typeof op.insert === 'string' ? op.insert : NULL_CHARACTER; + } + var prep = (delta === other) ? 'on' : 'with'; + throw new Error('diff() called ' + prep + ' non-document'); + }).join(''); + }); + var delta = new Delta(); + var diffResult = diff(strings[0], strings[1], index); + var thisIter = op.iterator(this.ops); + var otherIter = op.iterator(other.ops); + diffResult.forEach(function (component) { + var length = component[1].length; + while (length > 0) { + var opLength = 0; + switch (component[0]) { + case diff.INSERT: + opLength = Math.min(otherIter.peekLength(), length); + delta.push(otherIter.next(opLength)); + break; + case diff.DELETE: + opLength = Math.min(length, thisIter.peekLength()); + thisIter.next(opLength); + delta['delete'](opLength); + break; + case diff.EQUAL: + opLength = Math.min(thisIter.peekLength(), otherIter.peekLength(), length); + var thisOp = thisIter.next(opLength); + var otherOp = otherIter.next(opLength); + if (equal(thisOp.insert, otherOp.insert)) { + delta.retain(opLength, op.attributes.diff(thisOp.attributes, otherOp.attributes)); + } else { + delta.push(otherOp)['delete'](opLength); + } + break; + } + length -= opLength; + } + }); + return delta.chop(); +}; + +Delta.prototype.eachLine = function (predicate, newline) { + newline = newline || '\n'; + var iter = op.iterator(this.ops); + var line = new Delta(); + var i = 0; + while (iter.hasNext()) { + if (iter.peekType() !== 'insert') return; + var thisOp = iter.peek(); + var start = op.length(thisOp) - iter.peekLength(); + var index = typeof thisOp.insert === 'string' ? + thisOp.insert.indexOf(newline, start) - start : -1; + if (index < 0) { + line.push(iter.next()); + } else if (index > 0) { + line.push(iter.next(index)); + } else { + if (predicate(line, iter.next(1).attributes || {}, i) === false) { + return; + } + i += 1; + line = new Delta(); + } + } + if (line.length() > 0) { + predicate(line, {}, i); + } +}; + +Delta.prototype.transform = function (other, priority) { + priority = !!priority; + if (typeof other === 'number') { + return this.transformPosition(other, priority); + } + var thisIter = op.iterator(this.ops); + var otherIter = op.iterator(other.ops); + var delta = new Delta(); + while (thisIter.hasNext() || otherIter.hasNext()) { + if (thisIter.peekType() === 'insert' && (priority || otherIter.peekType() !== 'insert')) { + delta.retain(op.length(thisIter.next())); + } else if (otherIter.peekType() === 'insert') { + delta.push(otherIter.next()); + } else { + var length = Math.min(thisIter.peekLength(), otherIter.peekLength()); + var thisOp = thisIter.next(length); + var otherOp = otherIter.next(length); + if (thisOp['delete']) { + // Our delete either makes their delete redundant or removes their retain + continue; + } else if (otherOp['delete']) { + delta.push(otherOp); + } else { + // We retain either their retain or insert + delta.retain(length, op.attributes.transform(thisOp.attributes, otherOp.attributes, priority)); + } + } + } + return delta.chop(); +}; + +Delta.prototype.transformPosition = function (index, priority) { + priority = !!priority; + var thisIter = op.iterator(this.ops); + var offset = 0; + while (thisIter.hasNext() && offset <= index) { + var length = thisIter.peekLength(); + var nextType = thisIter.peekType(); + thisIter.next(); + if (nextType === 'delete') { + index -= Math.min(length, index - offset); + continue; + } else if (nextType === 'insert' && (offset < index || !priority)) { + index += length; + } + offset += length; + } + return index; +}; + + +module.exports = Delta; + + +/***/ }), +/* 3 */ +/***/ (function(module, exports) { + +'use strict'; + +var hasOwn = Object.prototype.hasOwnProperty; +var toStr = Object.prototype.toString; + +var isArray = function isArray(arr) { + if (typeof Array.isArray === 'function') { + return Array.isArray(arr); + } + + return toStr.call(arr) === '[object Array]'; +}; + +var isPlainObject = function isPlainObject(obj) { + if (!obj || toStr.call(obj) !== '[object Object]') { + return false; + } + + var hasOwnConstructor = hasOwn.call(obj, 'constructor'); + var hasIsPrototypeOf = obj.constructor && obj.constructor.prototype && hasOwn.call(obj.constructor.prototype, 'isPrototypeOf'); + // Not own constructor property must be Object + if (obj.constructor && !hasOwnConstructor && !hasIsPrototypeOf) { + return false; + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + var key; + for (key in obj) { /**/ } + + return typeof key === 'undefined' || hasOwn.call(obj, key); +}; + +module.exports = function extend() { + var options, name, src, copy, copyIsArray, clone; + var target = arguments[0]; + var i = 1; + var length = arguments.length; + var deep = false; + + // Handle a deep copy situation + if (typeof target === 'boolean') { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + if (target == null || (typeof target !== 'object' && typeof target !== 'function')) { + target = {}; + } + + for (; i < length; ++i) { + options = arguments[i]; + // Only deal with non-null/undefined values + if (options != null) { + // Extend the base object + for (name in options) { + src = target[name]; + copy = options[name]; + + // Prevent never-ending loop + if (target !== copy) { + // Recurse if we're merging plain objects or arrays + if (deep && copy && (isPlainObject(copy) || (copyIsArray = isArray(copy)))) { + if (copyIsArray) { + copyIsArray = false; + clone = src && isArray(src) ? src : []; + } else { + clone = src && isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[name] = extend(deep, clone, copy); + + // Don't bring in undefined values + } else if (typeof copy !== 'undefined') { + target[name] = copy; + } + } + } + } + } + + // Return the modified object + return target; +}; + + +/***/ }), +/* 4 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.BlockEmbed = exports.bubbleFormats = undefined; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _extend = __webpack_require__(3); + +var _extend2 = _interopRequireDefault(_extend); + +var _quillDelta = __webpack_require__(2); + +var _quillDelta2 = _interopRequireDefault(_quillDelta); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _break = __webpack_require__(16); + +var _break2 = _interopRequireDefault(_break); + +var _inline = __webpack_require__(6); + +var _inline2 = _interopRequireDefault(_inline); + +var _text = __webpack_require__(7); + +var _text2 = _interopRequireDefault(_text); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var NEWLINE_LENGTH = 1; + +var BlockEmbed = function (_Parchment$Embed) { + _inherits(BlockEmbed, _Parchment$Embed); + + function BlockEmbed() { + _classCallCheck(this, BlockEmbed); + + return _possibleConstructorReturn(this, (BlockEmbed.__proto__ || Object.getPrototypeOf(BlockEmbed)).apply(this, arguments)); + } + + _createClass(BlockEmbed, [{ + key: 'attach', + value: function attach() { + _get(BlockEmbed.prototype.__proto__ || Object.getPrototypeOf(BlockEmbed.prototype), 'attach', this).call(this); + this.attributes = new _parchment2.default.Attributor.Store(this.domNode); + } + }, { + key: 'delta', + value: function delta() { + return new _quillDelta2.default().insert(this.value(), (0, _extend2.default)(this.formats(), this.attributes.values())); + } + }, { + key: 'format', + value: function format(name, value) { + var attribute = _parchment2.default.query(name, _parchment2.default.Scope.BLOCK_ATTRIBUTE); + if (attribute != null) { + this.attributes.attribute(attribute, value); + } + } + }, { + key: 'formatAt', + value: function formatAt(index, length, name, value) { + this.format(name, value); + } + }, { + key: 'insertAt', + value: function insertAt(index, value, def) { + if (typeof value === 'string' && value.endsWith('\n')) { + var block = _parchment2.default.create(Block.blotName); + this.parent.insertBefore(block, index === 0 ? this : this.next); + block.insertAt(0, value.slice(0, -1)); + } else { + _get(BlockEmbed.prototype.__proto__ || Object.getPrototypeOf(BlockEmbed.prototype), 'insertAt', this).call(this, index, value, def); + } + } + }]); + + return BlockEmbed; +}(_parchment2.default.Embed); + +BlockEmbed.scope = _parchment2.default.Scope.BLOCK_BLOT; +// It is important for cursor behavior BlockEmbeds use tags that are block level elements + + +var Block = function (_Parchment$Block) { + _inherits(Block, _Parchment$Block); + + function Block(domNode) { + _classCallCheck(this, Block); + + var _this2 = _possibleConstructorReturn(this, (Block.__proto__ || Object.getPrototypeOf(Block)).call(this, domNode)); + + _this2.cache = {}; + return _this2; + } + + _createClass(Block, [{ + key: 'delta', + value: function delta() { + if (this.cache.delta == null) { + this.cache.delta = this.descendants(_parchment2.default.Leaf).reduce(function (delta, leaf) { + if (leaf.length() === 0) { + return delta; + } else { + return delta.insert(leaf.value(), bubbleFormats(leaf)); + } + }, new _quillDelta2.default()).insert('\n', bubbleFormats(this)); + } + return this.cache.delta; + } + }, { + key: 'deleteAt', + value: function deleteAt(index, length) { + _get(Block.prototype.__proto__ || Object.getPrototypeOf(Block.prototype), 'deleteAt', this).call(this, index, length); + this.cache = {}; + } + }, { + key: 'formatAt', + value: function formatAt(index, length, name, value) { + if (length <= 0) return; + if (_parchment2.default.query(name, _parchment2.default.Scope.BLOCK)) { + if (index + length === this.length()) { + this.format(name, value); + } + } else { + _get(Block.prototype.__proto__ || Object.getPrototypeOf(Block.prototype), 'formatAt', this).call(this, index, Math.min(length, this.length() - index - 1), name, value); + } + this.cache = {}; + } + }, { + key: 'insertAt', + value: function insertAt(index, value, def) { + if (def != null) return _get(Block.prototype.__proto__ || Object.getPrototypeOf(Block.prototype), 'insertAt', this).call(this, index, value, def); + if (value.length === 0) return; + var lines = value.split('\n'); + var text = lines.shift(); + if (text.length > 0) { + if (index < this.length() - 1 || this.children.tail == null) { + _get(Block.prototype.__proto__ || Object.getPrototypeOf(Block.prototype), 'insertAt', this).call(this, Math.min(index, this.length() - 1), text); + } else { + this.children.tail.insertAt(this.children.tail.length(), text); + } + this.cache = {}; + } + var block = this; + lines.reduce(function (index, line) { + block = block.split(index, true); + block.insertAt(0, line); + return line.length; + }, index + text.length); + } + }, { + key: 'insertBefore', + value: function insertBefore(blot, ref) { + var head = this.children.head; + _get(Block.prototype.__proto__ || Object.getPrototypeOf(Block.prototype), 'insertBefore', this).call(this, blot, ref); + if (head instanceof _break2.default) { + head.remove(); + } + this.cache = {}; + } + }, { + key: 'length', + value: function length() { + if (this.cache.length == null) { + this.cache.length = _get(Block.prototype.__proto__ || Object.getPrototypeOf(Block.prototype), 'length', this).call(this) + NEWLINE_LENGTH; + } + return this.cache.length; + } + }, { + key: 'moveChildren', + value: function moveChildren(target, ref) { + _get(Block.prototype.__proto__ || Object.getPrototypeOf(Block.prototype), 'moveChildren', this).call(this, target, ref); + this.cache = {}; + } + }, { + key: 'optimize', + value: function optimize(context) { + _get(Block.prototype.__proto__ || Object.getPrototypeOf(Block.prototype), 'optimize', this).call(this, context); + this.cache = {}; + } + }, { + key: 'path', + value: function path(index) { + return _get(Block.prototype.__proto__ || Object.getPrototypeOf(Block.prototype), 'path', this).call(this, index, true); + } + }, { + key: 'removeChild', + value: function removeChild(child) { + _get(Block.prototype.__proto__ || Object.getPrototypeOf(Block.prototype), 'removeChild', this).call(this, child); + this.cache = {}; + } + }, { + key: 'split', + value: function split(index) { + var force = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + + if (force && (index === 0 || index >= this.length() - NEWLINE_LENGTH)) { + var clone = this.clone(); + if (index === 0) { + this.parent.insertBefore(clone, this); + return this; + } else { + this.parent.insertBefore(clone, this.next); + return clone; + } + } else { + var next = _get(Block.prototype.__proto__ || Object.getPrototypeOf(Block.prototype), 'split', this).call(this, index, force); + this.cache = {}; + return next; + } + } + }]); + + return Block; +}(_parchment2.default.Block); + +Block.blotName = 'block'; +Block.tagName = 'P'; +Block.defaultChild = 'break'; +Block.allowedChildren = [_inline2.default, _parchment2.default.Embed, _text2.default]; + +function bubbleFormats(blot) { + var formats = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + if (blot == null) return formats; + if (typeof blot.formats === 'function') { + formats = (0, _extend2.default)(formats, blot.formats()); + } + if (blot.parent == null || blot.parent.blotName == 'scroll' || blot.parent.statics.scope !== blot.statics.scope) { + return formats; + } + return bubbleFormats(blot.parent, formats); +} + +exports.bubbleFormats = bubbleFormats; +exports.BlockEmbed = BlockEmbed; +exports.default = Block; + +/***/ }), +/* 5 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.overload = exports.expandConfig = undefined; + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +__webpack_require__(50); + +var _quillDelta = __webpack_require__(2); + +var _quillDelta2 = _interopRequireDefault(_quillDelta); + +var _editor = __webpack_require__(14); + +var _editor2 = _interopRequireDefault(_editor); + +var _emitter3 = __webpack_require__(8); + +var _emitter4 = _interopRequireDefault(_emitter3); + +var _module = __webpack_require__(9); + +var _module2 = _interopRequireDefault(_module); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _selection = __webpack_require__(15); + +var _selection2 = _interopRequireDefault(_selection); + +var _extend = __webpack_require__(3); + +var _extend2 = _interopRequireDefault(_extend); + +var _logger = __webpack_require__(10); + +var _logger2 = _interopRequireDefault(_logger); + +var _theme = __webpack_require__(34); + +var _theme2 = _interopRequireDefault(_theme); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +var debug = (0, _logger2.default)('quill'); + +var Quill = function () { + _createClass(Quill, null, [{ + key: 'debug', + value: function debug(limit) { + if (limit === true) { + limit = 'log'; + } + _logger2.default.level(limit); + } + }, { + key: 'find', + value: function find(node) { + return node.__quill || _parchment2.default.find(node); + } + }, { + key: 'import', + value: function _import(name) { + if (this.imports[name] == null) { + debug.error('Cannot import ' + name + '. Are you sure it was registered?'); + } + return this.imports[name]; + } + }, { + key: 'register', + value: function register(path, target) { + var _this = this; + + var overwrite = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; + + if (typeof path !== 'string') { + var name = path.attrName || path.blotName; + if (typeof name === 'string') { + // register(Blot | Attributor, overwrite) + this.register('formats/' + name, path, target); + } else { + Object.keys(path).forEach(function (key) { + _this.register(key, path[key], target); + }); + } + } else { + if (this.imports[path] != null && !overwrite) { + debug.warn('Overwriting ' + path + ' with', target); + } + this.imports[path] = target; + if ((path.startsWith('blots/') || path.startsWith('formats/')) && target.blotName !== 'abstract') { + _parchment2.default.register(target); + } else if (path.startsWith('modules') && typeof target.register === 'function') { + target.register(); + } + } + } + }]); + + function Quill(container) { + var _this2 = this; + + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + _classCallCheck(this, Quill); + + this.options = expandConfig(container, options); + this.container = this.options.container; + if (this.container == null) { + return debug.error('Invalid Quill container', container); + } + if (this.options.debug) { + Quill.debug(this.options.debug); + } + var html = this.container.innerHTML.trim(); + this.container.classList.add('ql-container'); + this.container.innerHTML = ''; + this.container.__quill = this; + this.root = this.addContainer('ql-editor'); + this.root.classList.add('ql-blank'); + this.root.setAttribute('data-gramm', false); + this.scrollingContainer = this.options.scrollingContainer || this.root; + this.emitter = new _emitter4.default(); + this.scroll = _parchment2.default.create(this.root, { + emitter: this.emitter, + whitelist: this.options.formats + }); + this.editor = new _editor2.default(this.scroll); + this.selection = new _selection2.default(this.scroll, this.emitter); + this.theme = new this.options.theme(this, this.options); + this.keyboard = this.theme.addModule('keyboard'); + this.clipboard = this.theme.addModule('clipboard'); + this.history = this.theme.addModule('history'); + this.theme.init(); + this.emitter.on(_emitter4.default.events.EDITOR_CHANGE, function (type) { + if (type === _emitter4.default.events.TEXT_CHANGE) { + _this2.root.classList.toggle('ql-blank', _this2.editor.isBlank()); + } + }); + this.emitter.on(_emitter4.default.events.SCROLL_UPDATE, function (source, mutations) { + var range = _this2.selection.lastRange; + var index = range && range.length === 0 ? range.index : undefined; + modify.call(_this2, function () { + return _this2.editor.update(null, mutations, index); + }, source); + }); + var contents = this.clipboard.convert('
    ' + html + '


    '); + this.setContents(contents); + this.history.clear(); + if (this.options.placeholder) { + this.root.setAttribute('data-placeholder', this.options.placeholder); + } + if (this.options.readOnly) { + this.disable(); + } + } + + _createClass(Quill, [{ + key: 'addContainer', + value: function addContainer(container) { + var refNode = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + if (typeof container === 'string') { + var className = container; + container = document.createElement('div'); + container.classList.add(className); + } + this.container.insertBefore(container, refNode); + return container; + } + }, { + key: 'blur', + value: function blur() { + this.selection.setRange(null); + } + }, { + key: 'deleteText', + value: function deleteText(index, length, source) { + var _this3 = this; + + var _overload = overload(index, length, source); + + var _overload2 = _slicedToArray(_overload, 4); + + index = _overload2[0]; + length = _overload2[1]; + source = _overload2[3]; + + return modify.call(this, function () { + return _this3.editor.deleteText(index, length); + }, source, index, -1 * length); + } + }, { + key: 'disable', + value: function disable() { + this.enable(false); + } + }, { + key: 'enable', + value: function enable() { + var enabled = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; + + this.scroll.enable(enabled); + this.container.classList.toggle('ql-disabled', !enabled); + } + }, { + key: 'focus', + value: function focus() { + var scrollTop = this.scrollingContainer.scrollTop; + this.selection.focus(); + this.scrollingContainer.scrollTop = scrollTop; + this.scrollIntoView(); + } + }, { + key: 'format', + value: function format(name, value) { + var _this4 = this; + + var source = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : _emitter4.default.sources.API; + + return modify.call(this, function () { + var range = _this4.getSelection(true); + var change = new _quillDelta2.default(); + if (range == null) { + return change; + } else if (_parchment2.default.query(name, _parchment2.default.Scope.BLOCK)) { + change = _this4.editor.formatLine(range.index, range.length, _defineProperty({}, name, value)); + } else if (range.length === 0) { + _this4.selection.format(name, value); + return change; + } else { + change = _this4.editor.formatText(range.index, range.length, _defineProperty({}, name, value)); + } + _this4.setSelection(range, _emitter4.default.sources.SILENT); + return change; + }, source); + } + }, { + key: 'formatLine', + value: function formatLine(index, length, name, value, source) { + var _this5 = this; + + var formats = void 0; + + var _overload3 = overload(index, length, name, value, source); + + var _overload4 = _slicedToArray(_overload3, 4); + + index = _overload4[0]; + length = _overload4[1]; + formats = _overload4[2]; + source = _overload4[3]; + + return modify.call(this, function () { + return _this5.editor.formatLine(index, length, formats); + }, source, index, 0); + } + }, { + key: 'formatText', + value: function formatText(index, length, name, value, source) { + var _this6 = this; + + var formats = void 0; + + var _overload5 = overload(index, length, name, value, source); + + var _overload6 = _slicedToArray(_overload5, 4); + + index = _overload6[0]; + length = _overload6[1]; + formats = _overload6[2]; + source = _overload6[3]; + + return modify.call(this, function () { + return _this6.editor.formatText(index, length, formats); + }, source, index, 0); + } + }, { + key: 'getBounds', + value: function getBounds(index) { + var length = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; + + var bounds = void 0; + if (typeof index === 'number') { + bounds = this.selection.getBounds(index, length); + } else { + bounds = this.selection.getBounds(index.index, index.length); + } + var containerBounds = this.container.getBoundingClientRect(); + return { + bottom: bounds.bottom - containerBounds.top, + height: bounds.height, + left: bounds.left - containerBounds.left, + right: bounds.right - containerBounds.left, + top: bounds.top - containerBounds.top, + width: bounds.width + }; + } + }, { + key: 'getContents', + value: function getContents() { + var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0; + var length = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.getLength() - index; + + var _overload7 = overload(index, length); + + var _overload8 = _slicedToArray(_overload7, 2); + + index = _overload8[0]; + length = _overload8[1]; + + return this.editor.getContents(index, length); + } + }, { + key: 'getFormat', + value: function getFormat() { + var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this.getSelection(true); + var length = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; + + if (typeof index === 'number') { + return this.editor.getFormat(index, length); + } else { + return this.editor.getFormat(index.index, index.length); + } + } + }, { + key: 'getIndex', + value: function getIndex(blot) { + return blot.offset(this.scroll); + } + }, { + key: 'getLength', + value: function getLength() { + return this.scroll.length(); + } + }, { + key: 'getLeaf', + value: function getLeaf(index) { + return this.scroll.leaf(index); + } + }, { + key: 'getLine', + value: function getLine(index) { + return this.scroll.line(index); + } + }, { + key: 'getLines', + value: function getLines() { + var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0; + var length = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : Number.MAX_VALUE; + + if (typeof index !== 'number') { + return this.scroll.lines(index.index, index.length); + } else { + return this.scroll.lines(index, length); + } + } + }, { + key: 'getModule', + value: function getModule(name) { + return this.theme.modules[name]; + } + }, { + key: 'getSelection', + value: function getSelection() { + var focus = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; + + if (focus) this.focus(); + this.update(); // Make sure we access getRange with editor in consistent state + return this.selection.getRange()[0]; + } + }, { + key: 'getText', + value: function getText() { + var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0; + var length = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.getLength() - index; + + var _overload9 = overload(index, length); + + var _overload10 = _slicedToArray(_overload9, 2); + + index = _overload10[0]; + length = _overload10[1]; + + return this.editor.getText(index, length); + } + }, { + key: 'hasFocus', + value: function hasFocus() { + return this.selection.hasFocus(); + } + }, { + key: 'insertEmbed', + value: function insertEmbed(index, embed, value) { + var _this7 = this; + + var source = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : Quill.sources.API; + + return modify.call(this, function () { + return _this7.editor.insertEmbed(index, embed, value); + }, source, index); + } + }, { + key: 'insertText', + value: function insertText(index, text, name, value, source) { + var _this8 = this; + + var formats = void 0; + + var _overload11 = overload(index, 0, name, value, source); + + var _overload12 = _slicedToArray(_overload11, 4); + + index = _overload12[0]; + formats = _overload12[2]; + source = _overload12[3]; + + return modify.call(this, function () { + return _this8.editor.insertText(index, text, formats); + }, source, index, text.length); + } + }, { + key: 'isEnabled', + value: function isEnabled() { + return !this.container.classList.contains('ql-disabled'); + } + }, { + key: 'off', + value: function off() { + return this.emitter.off.apply(this.emitter, arguments); + } + }, { + key: 'on', + value: function on() { + return this.emitter.on.apply(this.emitter, arguments); + } + }, { + key: 'once', + value: function once() { + return this.emitter.once.apply(this.emitter, arguments); + } + }, { + key: 'pasteHTML', + value: function pasteHTML(index, html, source) { + this.clipboard.dangerouslyPasteHTML(index, html, source); + } + }, { + key: 'removeFormat', + value: function removeFormat(index, length, source) { + var _this9 = this; + + var _overload13 = overload(index, length, source); + + var _overload14 = _slicedToArray(_overload13, 4); + + index = _overload14[0]; + length = _overload14[1]; + source = _overload14[3]; + + return modify.call(this, function () { + return _this9.editor.removeFormat(index, length); + }, source, index); + } + }, { + key: 'scrollIntoView', + value: function scrollIntoView() { + this.selection.scrollIntoView(this.scrollingContainer); + } + }, { + key: 'setContents', + value: function setContents(delta) { + var _this10 = this; + + var source = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _emitter4.default.sources.API; + + return modify.call(this, function () { + delta = new _quillDelta2.default(delta); + var length = _this10.getLength(); + var deleted = _this10.editor.deleteText(0, length); + var applied = _this10.editor.applyDelta(delta); + var lastOp = applied.ops[applied.ops.length - 1]; + if (lastOp != null && typeof lastOp.insert === 'string' && lastOp.insert[lastOp.insert.length - 1] === '\n') { + _this10.editor.deleteText(_this10.getLength() - 1, 1); + applied.delete(1); + } + var ret = deleted.compose(applied); + return ret; + }, source); + } + }, { + key: 'setSelection', + value: function setSelection(index, length, source) { + if (index == null) { + this.selection.setRange(null, length || Quill.sources.API); + } else { + var _overload15 = overload(index, length, source); + + var _overload16 = _slicedToArray(_overload15, 4); + + index = _overload16[0]; + length = _overload16[1]; + source = _overload16[3]; + + this.selection.setRange(new _selection.Range(index, length), source); + if (source !== _emitter4.default.sources.SILENT) { + this.selection.scrollIntoView(this.scrollingContainer); + } + } + } + }, { + key: 'setText', + value: function setText(text) { + var source = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _emitter4.default.sources.API; + + var delta = new _quillDelta2.default().insert(text); + return this.setContents(delta, source); + } + }, { + key: 'update', + value: function update() { + var source = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : _emitter4.default.sources.USER; + + var change = this.scroll.update(source); // Will update selection before selection.update() does if text changes + this.selection.update(source); + return change; + } + }, { + key: 'updateContents', + value: function updateContents(delta) { + var _this11 = this; + + var source = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _emitter4.default.sources.API; + + return modify.call(this, function () { + delta = new _quillDelta2.default(delta); + return _this11.editor.applyDelta(delta, source); + }, source, true); + } + }]); + + return Quill; +}(); + +Quill.DEFAULTS = { + bounds: null, + formats: null, + modules: {}, + placeholder: '', + readOnly: false, + scrollingContainer: null, + strict: true, + theme: 'default' +}; +Quill.events = _emitter4.default.events; +Quill.sources = _emitter4.default.sources; +// eslint-disable-next-line no-undef +Quill.version = false ? 'dev' : "1.3.6"; + +Quill.imports = { + 'delta': _quillDelta2.default, + 'parchment': _parchment2.default, + 'core/module': _module2.default, + 'core/theme': _theme2.default +}; + +function expandConfig(container, userConfig) { + userConfig = (0, _extend2.default)(true, { + container: container, + modules: { + clipboard: true, + keyboard: true, + history: true + } + }, userConfig); + if (!userConfig.theme || userConfig.theme === Quill.DEFAULTS.theme) { + userConfig.theme = _theme2.default; + } else { + userConfig.theme = Quill.import('themes/' + userConfig.theme); + if (userConfig.theme == null) { + throw new Error('Invalid theme ' + userConfig.theme + '. Did you register it?'); + } + } + var themeConfig = (0, _extend2.default)(true, {}, userConfig.theme.DEFAULTS); + [themeConfig, userConfig].forEach(function (config) { + config.modules = config.modules || {}; + Object.keys(config.modules).forEach(function (module) { + if (config.modules[module] === true) { + config.modules[module] = {}; + } + }); + }); + var moduleNames = Object.keys(themeConfig.modules).concat(Object.keys(userConfig.modules)); + var moduleConfig = moduleNames.reduce(function (config, name) { + var moduleClass = Quill.import('modules/' + name); + if (moduleClass == null) { + debug.error('Cannot load ' + name + ' module. Are you sure you registered it?'); + } else { + config[name] = moduleClass.DEFAULTS || {}; + } + return config; + }, {}); + // Special case toolbar shorthand + if (userConfig.modules != null && userConfig.modules.toolbar && userConfig.modules.toolbar.constructor !== Object) { + userConfig.modules.toolbar = { + container: userConfig.modules.toolbar + }; + } + userConfig = (0, _extend2.default)(true, {}, Quill.DEFAULTS, { modules: moduleConfig }, themeConfig, userConfig); + ['bounds', 'container', 'scrollingContainer'].forEach(function (key) { + if (typeof userConfig[key] === 'string') { + userConfig[key] = document.querySelector(userConfig[key]); + } + }); + userConfig.modules = Object.keys(userConfig.modules).reduce(function (config, name) { + if (userConfig.modules[name]) { + config[name] = userConfig.modules[name]; + } + return config; + }, {}); + return userConfig; +} + +// Handle selection preservation and TEXT_CHANGE emission +// common to modification APIs +function modify(modifier, source, index, shift) { + if (this.options.strict && !this.isEnabled() && source === _emitter4.default.sources.USER) { + return new _quillDelta2.default(); + } + var range = index == null ? null : this.getSelection(); + var oldDelta = this.editor.delta; + var change = modifier(); + if (range != null) { + if (index === true) index = range.index; + if (shift == null) { + range = shiftRange(range, change, source); + } else if (shift !== 0) { + range = shiftRange(range, index, shift, source); + } + this.setSelection(range, _emitter4.default.sources.SILENT); + } + if (change.length() > 0) { + var _emitter; + + var args = [_emitter4.default.events.TEXT_CHANGE, change, oldDelta, source]; + (_emitter = this.emitter).emit.apply(_emitter, [_emitter4.default.events.EDITOR_CHANGE].concat(args)); + if (source !== _emitter4.default.sources.SILENT) { + var _emitter2; + + (_emitter2 = this.emitter).emit.apply(_emitter2, args); + } + } + return change; +} + +function overload(index, length, name, value, source) { + var formats = {}; + if (typeof index.index === 'number' && typeof index.length === 'number') { + // Allow for throwaway end (used by insertText/insertEmbed) + if (typeof length !== 'number') { + source = value, value = name, name = length, length = index.length, index = index.index; + } else { + length = index.length, index = index.index; + } + } else if (typeof length !== 'number') { + source = value, value = name, name = length, length = 0; + } + // Handle format being object, two format name/value strings or excluded + if ((typeof name === 'undefined' ? 'undefined' : _typeof(name)) === 'object') { + formats = name; + source = value; + } else if (typeof name === 'string') { + if (value != null) { + formats[name] = value; + } else { + source = name; + } + } + // Handle optional source + source = source || _emitter4.default.sources.API; + return [index, length, formats, source]; +} + +function shiftRange(range, index, length, source) { + if (range == null) return null; + var start = void 0, + end = void 0; + if (index instanceof _quillDelta2.default) { + var _map = [range.index, range.index + range.length].map(function (pos) { + return index.transformPosition(pos, source !== _emitter4.default.sources.USER); + }); + + var _map2 = _slicedToArray(_map, 2); + + start = _map2[0]; + end = _map2[1]; + } else { + var _map3 = [range.index, range.index + range.length].map(function (pos) { + if (pos < index || pos === index && source === _emitter4.default.sources.USER) return pos; + if (length >= 0) { + return pos + length; + } else { + return Math.max(index, pos + length); + } + }); + + var _map4 = _slicedToArray(_map3, 2); + + start = _map4[0]; + end = _map4[1]; + } + return new _selection.Range(start, end - start); +} + +exports.expandConfig = expandConfig; +exports.overload = overload; +exports.default = Quill; + +/***/ }), +/* 6 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _text = __webpack_require__(7); + +var _text2 = _interopRequireDefault(_text); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Inline = function (_Parchment$Inline) { + _inherits(Inline, _Parchment$Inline); + + function Inline() { + _classCallCheck(this, Inline); + + return _possibleConstructorReturn(this, (Inline.__proto__ || Object.getPrototypeOf(Inline)).apply(this, arguments)); + } + + _createClass(Inline, [{ + key: 'formatAt', + value: function formatAt(index, length, name, value) { + if (Inline.compare(this.statics.blotName, name) < 0 && _parchment2.default.query(name, _parchment2.default.Scope.BLOT)) { + var blot = this.isolate(index, length); + if (value) { + blot.wrap(name, value); + } + } else { + _get(Inline.prototype.__proto__ || Object.getPrototypeOf(Inline.prototype), 'formatAt', this).call(this, index, length, name, value); + } + } + }, { + key: 'optimize', + value: function optimize(context) { + _get(Inline.prototype.__proto__ || Object.getPrototypeOf(Inline.prototype), 'optimize', this).call(this, context); + if (this.parent instanceof Inline && Inline.compare(this.statics.blotName, this.parent.statics.blotName) > 0) { + var parent = this.parent.isolate(this.offset(), this.length()); + this.moveChildren(parent); + parent.wrap(this); + } + } + }], [{ + key: 'compare', + value: function compare(self, other) { + var selfIndex = Inline.order.indexOf(self); + var otherIndex = Inline.order.indexOf(other); + if (selfIndex >= 0 || otherIndex >= 0) { + return selfIndex - otherIndex; + } else if (self === other) { + return 0; + } else if (self < other) { + return -1; + } else { + return 1; + } + } + }]); + + return Inline; +}(_parchment2.default.Inline); + +Inline.allowedChildren = [Inline, _parchment2.default.Embed, _text2.default]; +// Lower index means deeper in the DOM tree, since not found (-1) is for embeds +Inline.order = ['cursor', 'inline', // Must be lower +'underline', 'strike', 'italic', 'bold', 'script', 'link', 'code' // Must be higher +]; + +exports.default = Inline; + +/***/ }), +/* 7 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var TextBlot = function (_Parchment$Text) { + _inherits(TextBlot, _Parchment$Text); + + function TextBlot() { + _classCallCheck(this, TextBlot); + + return _possibleConstructorReturn(this, (TextBlot.__proto__ || Object.getPrototypeOf(TextBlot)).apply(this, arguments)); + } + + return TextBlot; +}(_parchment2.default.Text); + +exports.default = TextBlot; + +/***/ }), +/* 8 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _eventemitter = __webpack_require__(54); + +var _eventemitter2 = _interopRequireDefault(_eventemitter); + +var _logger = __webpack_require__(10); + +var _logger2 = _interopRequireDefault(_logger); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var debug = (0, _logger2.default)('quill:events'); + +var EVENTS = ['selectionchange', 'mousedown', 'mouseup', 'click']; + +EVENTS.forEach(function (eventName) { + document.addEventListener(eventName, function () { + for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } + + [].slice.call(document.querySelectorAll('.ql-container')).forEach(function (node) { + // TODO use WeakMap + if (node.__quill && node.__quill.emitter) { + var _node$__quill$emitter; + + (_node$__quill$emitter = node.__quill.emitter).handleDOM.apply(_node$__quill$emitter, args); + } + }); + }); +}); + +var Emitter = function (_EventEmitter) { + _inherits(Emitter, _EventEmitter); + + function Emitter() { + _classCallCheck(this, Emitter); + + var _this = _possibleConstructorReturn(this, (Emitter.__proto__ || Object.getPrototypeOf(Emitter)).call(this)); + + _this.listeners = {}; + _this.on('error', debug.error); + return _this; + } + + _createClass(Emitter, [{ + key: 'emit', + value: function emit() { + debug.log.apply(debug, arguments); + _get(Emitter.prototype.__proto__ || Object.getPrototypeOf(Emitter.prototype), 'emit', this).apply(this, arguments); + } + }, { + key: 'handleDOM', + value: function handleDOM(event) { + for (var _len2 = arguments.length, args = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { + args[_key2 - 1] = arguments[_key2]; + } + + (this.listeners[event.type] || []).forEach(function (_ref) { + var node = _ref.node, + handler = _ref.handler; + + if (event.target === node || node.contains(event.target)) { + handler.apply(undefined, [event].concat(args)); + } + }); + } + }, { + key: 'listenDOM', + value: function listenDOM(eventName, node, handler) { + if (!this.listeners[eventName]) { + this.listeners[eventName] = []; + } + this.listeners[eventName].push({ node: node, handler: handler }); + } + }]); + + return Emitter; +}(_eventemitter2.default); + +Emitter.events = { + EDITOR_CHANGE: 'editor-change', + SCROLL_BEFORE_UPDATE: 'scroll-before-update', + SCROLL_OPTIMIZE: 'scroll-optimize', + SCROLL_UPDATE: 'scroll-update', + SELECTION_CHANGE: 'selection-change', + TEXT_CHANGE: 'text-change' +}; +Emitter.sources = { + API: 'api', + SILENT: 'silent', + USER: 'user' +}; + +exports.default = Emitter; + +/***/ }), +/* 9 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +var Module = function Module(quill) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + _classCallCheck(this, Module); + + this.quill = quill; + this.options = options; +}; + +Module.DEFAULTS = {}; + +exports.default = Module; + +/***/ }), +/* 10 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +var levels = ['error', 'warn', 'log', 'info']; +var level = 'warn'; + +function debug(method) { + if (levels.indexOf(method) <= levels.indexOf(level)) { + var _console; + + for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + args[_key - 1] = arguments[_key]; + } + + (_console = console)[method].apply(_console, args); // eslint-disable-line no-console + } +} + +function namespace(ns) { + return levels.reduce(function (logger, method) { + logger[method] = debug.bind(console, method, ns); + return logger; + }, {}); +} + +debug.level = namespace.level = function (newLevel) { + level = newLevel; +}; + +exports.default = namespace; + +/***/ }), +/* 11 */ +/***/ (function(module, exports, __webpack_require__) { + +var pSlice = Array.prototype.slice; +var objectKeys = __webpack_require__(52); +var isArguments = __webpack_require__(53); + +var deepEqual = module.exports = function (actual, expected, opts) { + if (!opts) opts = {}; + // 7.1. All identical values are equivalent, as determined by ===. + if (actual === expected) { + return true; + + } else if (actual instanceof Date && expected instanceof Date) { + return actual.getTime() === expected.getTime(); + + // 7.3. Other pairs that do not both pass typeof value == 'object', + // equivalence is determined by ==. + } else if (!actual || !expected || typeof actual != 'object' && typeof expected != 'object') { + return opts.strict ? actual === expected : actual == expected; + + // 7.4. For all other Object pairs, including Array objects, equivalence is + // determined by having the same number of owned properties (as verified + // with Object.prototype.hasOwnProperty.call), the same set of keys + // (although not necessarily the same order), equivalent values for every + // corresponding key, and an identical 'prototype' property. Note: this + // accounts for both named and indexed properties on Arrays. + } else { + return objEquiv(actual, expected, opts); + } +} + +function isUndefinedOrNull(value) { + return value === null || value === undefined; +} + +function isBuffer (x) { + if (!x || typeof x !== 'object' || typeof x.length !== 'number') return false; + if (typeof x.copy !== 'function' || typeof x.slice !== 'function') { + return false; + } + if (x.length > 0 && typeof x[0] !== 'number') return false; + return true; +} + +function objEquiv(a, b, opts) { + var i, key; + if (isUndefinedOrNull(a) || isUndefinedOrNull(b)) + return false; + // an identical 'prototype' property. + if (a.prototype !== b.prototype) return false; + //~~~I've managed to break Object.keys through screwy arguments passing. + // Converting to array solves the problem. + if (isArguments(a)) { + if (!isArguments(b)) { + return false; + } + a = pSlice.call(a); + b = pSlice.call(b); + return deepEqual(a, b, opts); + } + if (isBuffer(a)) { + if (!isBuffer(b)) { + return false; + } + if (a.length !== b.length) return false; + for (i = 0; i < a.length; i++) { + if (a[i] !== b[i]) return false; + } + return true; + } + try { + var ka = objectKeys(a), + kb = objectKeys(b); + } catch (e) {//happens when one is a string literal and the other isn't + return false; + } + // having the same number of owned properties (keys incorporates + // hasOwnProperty) + if (ka.length != kb.length) + return false; + //the same set of keys (although not necessarily the same order), + ka.sort(); + kb.sort(); + //~~~cheap key test + for (i = ka.length - 1; i >= 0; i--) { + if (ka[i] != kb[i]) + return false; + } + //equivalent values for every corresponding key, and + //~~~possibly expensive deep test + for (i = ka.length - 1; i >= 0; i--) { + key = ka[i]; + if (!deepEqual(a[key], b[key], opts)) return false; + } + return typeof a === typeof b; +} + + +/***/ }), +/* 12 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var Registry = __webpack_require__(1); +var Attributor = /** @class */ (function () { + function Attributor(attrName, keyName, options) { + if (options === void 0) { options = {}; } + this.attrName = attrName; + this.keyName = keyName; + var attributeBit = Registry.Scope.TYPE & Registry.Scope.ATTRIBUTE; + if (options.scope != null) { + // Ignore type bits, force attribute bit + this.scope = (options.scope & Registry.Scope.LEVEL) | attributeBit; + } + else { + this.scope = Registry.Scope.ATTRIBUTE; + } + if (options.whitelist != null) + this.whitelist = options.whitelist; + } + Attributor.keys = function (node) { + return [].map.call(node.attributes, function (item) { + return item.name; + }); + }; + Attributor.prototype.add = function (node, value) { + if (!this.canAdd(node, value)) + return false; + node.setAttribute(this.keyName, value); + return true; + }; + Attributor.prototype.canAdd = function (node, value) { + var match = Registry.query(node, Registry.Scope.BLOT & (this.scope | Registry.Scope.TYPE)); + if (match == null) + return false; + if (this.whitelist == null) + return true; + if (typeof value === 'string') { + return this.whitelist.indexOf(value.replace(/["']/g, '')) > -1; + } + else { + return this.whitelist.indexOf(value) > -1; + } + }; + Attributor.prototype.remove = function (node) { + node.removeAttribute(this.keyName); + }; + Attributor.prototype.value = function (node) { + var value = node.getAttribute(this.keyName); + if (this.canAdd(node, value) && value) { + return value; + } + return ''; + }; + return Attributor; +}()); +exports.default = Attributor; + + +/***/ }), +/* 13 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.Code = undefined; + +var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _quillDelta = __webpack_require__(2); + +var _quillDelta2 = _interopRequireDefault(_quillDelta); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _block = __webpack_require__(4); + +var _block2 = _interopRequireDefault(_block); + +var _inline = __webpack_require__(6); + +var _inline2 = _interopRequireDefault(_inline); + +var _text = __webpack_require__(7); + +var _text2 = _interopRequireDefault(_text); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Code = function (_Inline) { + _inherits(Code, _Inline); + + function Code() { + _classCallCheck(this, Code); + + return _possibleConstructorReturn(this, (Code.__proto__ || Object.getPrototypeOf(Code)).apply(this, arguments)); + } + + return Code; +}(_inline2.default); + +Code.blotName = 'code'; +Code.tagName = 'CODE'; + +var CodeBlock = function (_Block) { + _inherits(CodeBlock, _Block); + + function CodeBlock() { + _classCallCheck(this, CodeBlock); + + return _possibleConstructorReturn(this, (CodeBlock.__proto__ || Object.getPrototypeOf(CodeBlock)).apply(this, arguments)); + } + + _createClass(CodeBlock, [{ + key: 'delta', + value: function delta() { + var _this3 = this; + + var text = this.domNode.textContent; + if (text.endsWith('\n')) { + // Should always be true + text = text.slice(0, -1); + } + return text.split('\n').reduce(function (delta, frag) { + return delta.insert(frag).insert('\n', _this3.formats()); + }, new _quillDelta2.default()); + } + }, { + key: 'format', + value: function format(name, value) { + if (name === this.statics.blotName && value) return; + + var _descendant = this.descendant(_text2.default, this.length() - 1), + _descendant2 = _slicedToArray(_descendant, 1), + text = _descendant2[0]; + + if (text != null) { + text.deleteAt(text.length() - 1, 1); + } + _get(CodeBlock.prototype.__proto__ || Object.getPrototypeOf(CodeBlock.prototype), 'format', this).call(this, name, value); + } + }, { + key: 'formatAt', + value: function formatAt(index, length, name, value) { + if (length === 0) return; + if (_parchment2.default.query(name, _parchment2.default.Scope.BLOCK) == null || name === this.statics.blotName && value === this.statics.formats(this.domNode)) { + return; + } + var nextNewline = this.newlineIndex(index); + if (nextNewline < 0 || nextNewline >= index + length) return; + var prevNewline = this.newlineIndex(index, true) + 1; + var isolateLength = nextNewline - prevNewline + 1; + var blot = this.isolate(prevNewline, isolateLength); + var next = blot.next; + blot.format(name, value); + if (next instanceof CodeBlock) { + next.formatAt(0, index - prevNewline + length - isolateLength, name, value); + } + } + }, { + key: 'insertAt', + value: function insertAt(index, value, def) { + if (def != null) return; + + var _descendant3 = this.descendant(_text2.default, index), + _descendant4 = _slicedToArray(_descendant3, 2), + text = _descendant4[0], + offset = _descendant4[1]; + + text.insertAt(offset, value); + } + }, { + key: 'length', + value: function length() { + var length = this.domNode.textContent.length; + if (!this.domNode.textContent.endsWith('\n')) { + return length + 1; + } + return length; + } + }, { + key: 'newlineIndex', + value: function newlineIndex(searchIndex) { + var reverse = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + + if (!reverse) { + var offset = this.domNode.textContent.slice(searchIndex).indexOf('\n'); + return offset > -1 ? searchIndex + offset : -1; + } else { + return this.domNode.textContent.slice(0, searchIndex).lastIndexOf('\n'); + } + } + }, { + key: 'optimize', + value: function optimize(context) { + if (!this.domNode.textContent.endsWith('\n')) { + this.appendChild(_parchment2.default.create('text', '\n')); + } + _get(CodeBlock.prototype.__proto__ || Object.getPrototypeOf(CodeBlock.prototype), 'optimize', this).call(this, context); + var next = this.next; + if (next != null && next.prev === this && next.statics.blotName === this.statics.blotName && this.statics.formats(this.domNode) === next.statics.formats(next.domNode)) { + next.optimize(context); + next.moveChildren(this); + next.remove(); + } + } + }, { + key: 'replace', + value: function replace(target) { + _get(CodeBlock.prototype.__proto__ || Object.getPrototypeOf(CodeBlock.prototype), 'replace', this).call(this, target); + [].slice.call(this.domNode.querySelectorAll('*')).forEach(function (node) { + var blot = _parchment2.default.find(node); + if (blot == null) { + node.parentNode.removeChild(node); + } else if (blot instanceof _parchment2.default.Embed) { + blot.remove(); + } else { + blot.unwrap(); + } + }); + } + }], [{ + key: 'create', + value: function create(value) { + var domNode = _get(CodeBlock.__proto__ || Object.getPrototypeOf(CodeBlock), 'create', this).call(this, value); + domNode.setAttribute('spellcheck', false); + return domNode; + } + }, { + key: 'formats', + value: function formats() { + return true; + } + }]); + + return CodeBlock; +}(_block2.default); + +CodeBlock.blotName = 'code-block'; +CodeBlock.tagName = 'PRE'; +CodeBlock.TAB = ' '; + +exports.Code = Code; +exports.default = CodeBlock; + +/***/ }), +/* 14 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _quillDelta = __webpack_require__(2); + +var _quillDelta2 = _interopRequireDefault(_quillDelta); + +var _op = __webpack_require__(20); + +var _op2 = _interopRequireDefault(_op); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _code = __webpack_require__(13); + +var _code2 = _interopRequireDefault(_code); + +var _cursor = __webpack_require__(24); + +var _cursor2 = _interopRequireDefault(_cursor); + +var _block = __webpack_require__(4); + +var _block2 = _interopRequireDefault(_block); + +var _break = __webpack_require__(16); + +var _break2 = _interopRequireDefault(_break); + +var _clone = __webpack_require__(21); + +var _clone2 = _interopRequireDefault(_clone); + +var _deepEqual = __webpack_require__(11); + +var _deepEqual2 = _interopRequireDefault(_deepEqual); + +var _extend = __webpack_require__(3); + +var _extend2 = _interopRequireDefault(_extend); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +var ASCII = /^[ -~]*$/; + +var Editor = function () { + function Editor(scroll) { + _classCallCheck(this, Editor); + + this.scroll = scroll; + this.delta = this.getDelta(); + } + + _createClass(Editor, [{ + key: 'applyDelta', + value: function applyDelta(delta) { + var _this = this; + + var consumeNextNewline = false; + this.scroll.update(); + var scrollLength = this.scroll.length(); + this.scroll.batchStart(); + delta = normalizeDelta(delta); + delta.reduce(function (index, op) { + var length = op.retain || op.delete || op.insert.length || 1; + var attributes = op.attributes || {}; + if (op.insert != null) { + if (typeof op.insert === 'string') { + var text = op.insert; + if (text.endsWith('\n') && consumeNextNewline) { + consumeNextNewline = false; + text = text.slice(0, -1); + } + if (index >= scrollLength && !text.endsWith('\n')) { + consumeNextNewline = true; + } + _this.scroll.insertAt(index, text); + + var _scroll$line = _this.scroll.line(index), + _scroll$line2 = _slicedToArray(_scroll$line, 2), + line = _scroll$line2[0], + offset = _scroll$line2[1]; + + var formats = (0, _extend2.default)({}, (0, _block.bubbleFormats)(line)); + if (line instanceof _block2.default) { + var _line$descendant = line.descendant(_parchment2.default.Leaf, offset), + _line$descendant2 = _slicedToArray(_line$descendant, 1), + leaf = _line$descendant2[0]; + + formats = (0, _extend2.default)(formats, (0, _block.bubbleFormats)(leaf)); + } + attributes = _op2.default.attributes.diff(formats, attributes) || {}; + } else if (_typeof(op.insert) === 'object') { + var key = Object.keys(op.insert)[0]; // There should only be one key + if (key == null) return index; + _this.scroll.insertAt(index, key, op.insert[key]); + } + scrollLength += length; + } + Object.keys(attributes).forEach(function (name) { + _this.scroll.formatAt(index, length, name, attributes[name]); + }); + return index + length; + }, 0); + delta.reduce(function (index, op) { + if (typeof op.delete === 'number') { + _this.scroll.deleteAt(index, op.delete); + return index; + } + return index + (op.retain || op.insert.length || 1); + }, 0); + this.scroll.batchEnd(); + return this.update(delta); + } + }, { + key: 'deleteText', + value: function deleteText(index, length) { + this.scroll.deleteAt(index, length); + return this.update(new _quillDelta2.default().retain(index).delete(length)); + } + }, { + key: 'formatLine', + value: function formatLine(index, length) { + var _this2 = this; + + var formats = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + + this.scroll.update(); + Object.keys(formats).forEach(function (format) { + if (_this2.scroll.whitelist != null && !_this2.scroll.whitelist[format]) return; + var lines = _this2.scroll.lines(index, Math.max(length, 1)); + var lengthRemaining = length; + lines.forEach(function (line) { + var lineLength = line.length(); + if (!(line instanceof _code2.default)) { + line.format(format, formats[format]); + } else { + var codeIndex = index - line.offset(_this2.scroll); + var codeLength = line.newlineIndex(codeIndex + lengthRemaining) - codeIndex + 1; + line.formatAt(codeIndex, codeLength, format, formats[format]); + } + lengthRemaining -= lineLength; + }); + }); + this.scroll.optimize(); + return this.update(new _quillDelta2.default().retain(index).retain(length, (0, _clone2.default)(formats))); + } + }, { + key: 'formatText', + value: function formatText(index, length) { + var _this3 = this; + + var formats = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + + Object.keys(formats).forEach(function (format) { + _this3.scroll.formatAt(index, length, format, formats[format]); + }); + return this.update(new _quillDelta2.default().retain(index).retain(length, (0, _clone2.default)(formats))); + } + }, { + key: 'getContents', + value: function getContents(index, length) { + return this.delta.slice(index, index + length); + } + }, { + key: 'getDelta', + value: function getDelta() { + return this.scroll.lines().reduce(function (delta, line) { + return delta.concat(line.delta()); + }, new _quillDelta2.default()); + } + }, { + key: 'getFormat', + value: function getFormat(index) { + var length = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; + + var lines = [], + leaves = []; + if (length === 0) { + this.scroll.path(index).forEach(function (path) { + var _path = _slicedToArray(path, 1), + blot = _path[0]; + + if (blot instanceof _block2.default) { + lines.push(blot); + } else if (blot instanceof _parchment2.default.Leaf) { + leaves.push(blot); + } + }); + } else { + lines = this.scroll.lines(index, length); + leaves = this.scroll.descendants(_parchment2.default.Leaf, index, length); + } + var formatsArr = [lines, leaves].map(function (blots) { + if (blots.length === 0) return {}; + var formats = (0, _block.bubbleFormats)(blots.shift()); + while (Object.keys(formats).length > 0) { + var blot = blots.shift(); + if (blot == null) return formats; + formats = combineFormats((0, _block.bubbleFormats)(blot), formats); + } + return formats; + }); + return _extend2.default.apply(_extend2.default, formatsArr); + } + }, { + key: 'getText', + value: function getText(index, length) { + return this.getContents(index, length).filter(function (op) { + return typeof op.insert === 'string'; + }).map(function (op) { + return op.insert; + }).join(''); + } + }, { + key: 'insertEmbed', + value: function insertEmbed(index, embed, value) { + this.scroll.insertAt(index, embed, value); + return this.update(new _quillDelta2.default().retain(index).insert(_defineProperty({}, embed, value))); + } + }, { + key: 'insertText', + value: function insertText(index, text) { + var _this4 = this; + + var formats = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + + text = text.replace(/\r\n/g, '\n').replace(/\r/g, '\n'); + this.scroll.insertAt(index, text); + Object.keys(formats).forEach(function (format) { + _this4.scroll.formatAt(index, text.length, format, formats[format]); + }); + return this.update(new _quillDelta2.default().retain(index).insert(text, (0, _clone2.default)(formats))); + } + }, { + key: 'isBlank', + value: function isBlank() { + if (this.scroll.children.length == 0) return true; + if (this.scroll.children.length > 1) return false; + var block = this.scroll.children.head; + if (block.statics.blotName !== _block2.default.blotName) return false; + if (block.children.length > 1) return false; + return block.children.head instanceof _break2.default; + } + }, { + key: 'removeFormat', + value: function removeFormat(index, length) { + var text = this.getText(index, length); + + var _scroll$line3 = this.scroll.line(index + length), + _scroll$line4 = _slicedToArray(_scroll$line3, 2), + line = _scroll$line4[0], + offset = _scroll$line4[1]; + + var suffixLength = 0, + suffix = new _quillDelta2.default(); + if (line != null) { + if (!(line instanceof _code2.default)) { + suffixLength = line.length() - offset; + } else { + suffixLength = line.newlineIndex(offset) - offset + 1; + } + suffix = line.delta().slice(offset, offset + suffixLength - 1).insert('\n'); + } + var contents = this.getContents(index, length + suffixLength); + var diff = contents.diff(new _quillDelta2.default().insert(text).concat(suffix)); + var delta = new _quillDelta2.default().retain(index).concat(diff); + return this.applyDelta(delta); + } + }, { + key: 'update', + value: function update(change) { + var mutations = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : []; + var cursorIndex = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : undefined; + + var oldDelta = this.delta; + if (mutations.length === 1 && mutations[0].type === 'characterData' && mutations[0].target.data.match(ASCII) && _parchment2.default.find(mutations[0].target)) { + // Optimization for character changes + var textBlot = _parchment2.default.find(mutations[0].target); + var formats = (0, _block.bubbleFormats)(textBlot); + var index = textBlot.offset(this.scroll); + var oldValue = mutations[0].oldValue.replace(_cursor2.default.CONTENTS, ''); + var oldText = new _quillDelta2.default().insert(oldValue); + var newText = new _quillDelta2.default().insert(textBlot.value()); + var diffDelta = new _quillDelta2.default().retain(index).concat(oldText.diff(newText, cursorIndex)); + change = diffDelta.reduce(function (delta, op) { + if (op.insert) { + return delta.insert(op.insert, formats); + } else { + return delta.push(op); + } + }, new _quillDelta2.default()); + this.delta = oldDelta.compose(change); + } else { + this.delta = this.getDelta(); + if (!change || !(0, _deepEqual2.default)(oldDelta.compose(change), this.delta)) { + change = oldDelta.diff(this.delta, cursorIndex); + } + } + return change; + } + }]); + + return Editor; +}(); + +function combineFormats(formats, combined) { + return Object.keys(combined).reduce(function (merged, name) { + if (formats[name] == null) return merged; + if (combined[name] === formats[name]) { + merged[name] = combined[name]; + } else if (Array.isArray(combined[name])) { + if (combined[name].indexOf(formats[name]) < 0) { + merged[name] = combined[name].concat([formats[name]]); + } + } else { + merged[name] = [combined[name], formats[name]]; + } + return merged; + }, {}); +} + +function normalizeDelta(delta) { + return delta.reduce(function (delta, op) { + if (op.insert === 1) { + var attributes = (0, _clone2.default)(op.attributes); + delete attributes['image']; + return delta.insert({ image: op.attributes.image }, attributes); + } + if (op.attributes != null && (op.attributes.list === true || op.attributes.bullet === true)) { + op = (0, _clone2.default)(op); + if (op.attributes.list) { + op.attributes.list = 'ordered'; + } else { + op.attributes.list = 'bullet'; + delete op.attributes.bullet; + } + } + if (typeof op.insert === 'string') { + var text = op.insert.replace(/\r\n/g, '\n').replace(/\r/g, '\n'); + return delta.insert(text, op.attributes); + } + return delta.push(op); + }, new _quillDelta2.default()); +} + +exports.default = Editor; + +/***/ }), +/* 15 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.Range = undefined; + +var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _clone = __webpack_require__(21); + +var _clone2 = _interopRequireDefault(_clone); + +var _deepEqual = __webpack_require__(11); + +var _deepEqual2 = _interopRequireDefault(_deepEqual); + +var _emitter3 = __webpack_require__(8); + +var _emitter4 = _interopRequireDefault(_emitter3); + +var _logger = __webpack_require__(10); + +var _logger2 = _interopRequireDefault(_logger); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +var debug = (0, _logger2.default)('quill:selection'); + +var Range = function Range(index) { + var length = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; + + _classCallCheck(this, Range); + + this.index = index; + this.length = length; +}; + +var Selection = function () { + function Selection(scroll, emitter) { + var _this = this; + + _classCallCheck(this, Selection); + + this.emitter = emitter; + this.scroll = scroll; + this.composing = false; + this.mouseDown = false; + this.root = this.scroll.domNode; + this.cursor = _parchment2.default.create('cursor', this); + // savedRange is last non-null range + this.lastRange = this.savedRange = new Range(0, 0); + this.handleComposition(); + this.handleDragging(); + this.emitter.listenDOM('selectionchange', document, function () { + if (!_this.mouseDown) { + setTimeout(_this.update.bind(_this, _emitter4.default.sources.USER), 1); + } + }); + this.emitter.on(_emitter4.default.events.EDITOR_CHANGE, function (type, delta) { + if (type === _emitter4.default.events.TEXT_CHANGE && delta.length() > 0) { + _this.update(_emitter4.default.sources.SILENT); + } + }); + this.emitter.on(_emitter4.default.events.SCROLL_BEFORE_UPDATE, function () { + if (!_this.hasFocus()) return; + var native = _this.getNativeRange(); + if (native == null) return; + if (native.start.node === _this.cursor.textNode) return; // cursor.restore() will handle + // TODO unclear if this has negative side effects + _this.emitter.once(_emitter4.default.events.SCROLL_UPDATE, function () { + try { + _this.setNativeRange(native.start.node, native.start.offset, native.end.node, native.end.offset); + } catch (ignored) {} + }); + }); + this.emitter.on(_emitter4.default.events.SCROLL_OPTIMIZE, function (mutations, context) { + if (context.range) { + var _context$range = context.range, + startNode = _context$range.startNode, + startOffset = _context$range.startOffset, + endNode = _context$range.endNode, + endOffset = _context$range.endOffset; + + _this.setNativeRange(startNode, startOffset, endNode, endOffset); + } + }); + this.update(_emitter4.default.sources.SILENT); + } + + _createClass(Selection, [{ + key: 'handleComposition', + value: function handleComposition() { + var _this2 = this; + + this.root.addEventListener('compositionstart', function () { + _this2.composing = true; + }); + this.root.addEventListener('compositionend', function () { + _this2.composing = false; + if (_this2.cursor.parent) { + var range = _this2.cursor.restore(); + if (!range) return; + setTimeout(function () { + _this2.setNativeRange(range.startNode, range.startOffset, range.endNode, range.endOffset); + }, 1); + } + }); + } + }, { + key: 'handleDragging', + value: function handleDragging() { + var _this3 = this; + + this.emitter.listenDOM('mousedown', document.body, function () { + _this3.mouseDown = true; + }); + this.emitter.listenDOM('mouseup', document.body, function () { + _this3.mouseDown = false; + _this3.update(_emitter4.default.sources.USER); + }); + } + }, { + key: 'focus', + value: function focus() { + if (this.hasFocus()) return; + this.root.focus(); + this.setRange(this.savedRange); + } + }, { + key: 'format', + value: function format(_format, value) { + if (this.scroll.whitelist != null && !this.scroll.whitelist[_format]) return; + this.scroll.update(); + var nativeRange = this.getNativeRange(); + if (nativeRange == null || !nativeRange.native.collapsed || _parchment2.default.query(_format, _parchment2.default.Scope.BLOCK)) return; + if (nativeRange.start.node !== this.cursor.textNode) { + var blot = _parchment2.default.find(nativeRange.start.node, false); + if (blot == null) return; + // TODO Give blot ability to not split + if (blot instanceof _parchment2.default.Leaf) { + var after = blot.split(nativeRange.start.offset); + blot.parent.insertBefore(this.cursor, after); + } else { + blot.insertBefore(this.cursor, nativeRange.start.node); // Should never happen + } + this.cursor.attach(); + } + this.cursor.format(_format, value); + this.scroll.optimize(); + this.setNativeRange(this.cursor.textNode, this.cursor.textNode.data.length); + this.update(); + } + }, { + key: 'getBounds', + value: function getBounds(index) { + var length = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; + + var scrollLength = this.scroll.length(); + index = Math.min(index, scrollLength - 1); + length = Math.min(index + length, scrollLength - 1) - index; + var node = void 0, + _scroll$leaf = this.scroll.leaf(index), + _scroll$leaf2 = _slicedToArray(_scroll$leaf, 2), + leaf = _scroll$leaf2[0], + offset = _scroll$leaf2[1]; + if (leaf == null) return null; + + var _leaf$position = leaf.position(offset, true); + + var _leaf$position2 = _slicedToArray(_leaf$position, 2); + + node = _leaf$position2[0]; + offset = _leaf$position2[1]; + + var range = document.createRange(); + if (length > 0) { + range.setStart(node, offset); + + var _scroll$leaf3 = this.scroll.leaf(index + length); + + var _scroll$leaf4 = _slicedToArray(_scroll$leaf3, 2); + + leaf = _scroll$leaf4[0]; + offset = _scroll$leaf4[1]; + + if (leaf == null) return null; + + var _leaf$position3 = leaf.position(offset, true); + + var _leaf$position4 = _slicedToArray(_leaf$position3, 2); + + node = _leaf$position4[0]; + offset = _leaf$position4[1]; + + range.setEnd(node, offset); + return range.getBoundingClientRect(); + } else { + var side = 'left'; + var rect = void 0; + if (node instanceof Text) { + if (offset < node.data.length) { + range.setStart(node, offset); + range.setEnd(node, offset + 1); + } else { + range.setStart(node, offset - 1); + range.setEnd(node, offset); + side = 'right'; + } + rect = range.getBoundingClientRect(); + } else { + rect = leaf.domNode.getBoundingClientRect(); + if (offset > 0) side = 'right'; + } + return { + bottom: rect.top + rect.height, + height: rect.height, + left: rect[side], + right: rect[side], + top: rect.top, + width: 0 + }; + } + } + }, { + key: 'getNativeRange', + value: function getNativeRange() { + var selection = document.getSelection(); + if (selection == null || selection.rangeCount <= 0) return null; + var nativeRange = selection.getRangeAt(0); + if (nativeRange == null) return null; + var range = this.normalizeNative(nativeRange); + debug.info('getNativeRange', range); + return range; + } + }, { + key: 'getRange', + value: function getRange() { + var normalized = this.getNativeRange(); + if (normalized == null) return [null, null]; + var range = this.normalizedToRange(normalized); + return [range, normalized]; + } + }, { + key: 'hasFocus', + value: function hasFocus() { + return document.activeElement === this.root; + } + }, { + key: 'normalizedToRange', + value: function normalizedToRange(range) { + var _this4 = this; + + var positions = [[range.start.node, range.start.offset]]; + if (!range.native.collapsed) { + positions.push([range.end.node, range.end.offset]); + } + var indexes = positions.map(function (position) { + var _position = _slicedToArray(position, 2), + node = _position[0], + offset = _position[1]; + + var blot = _parchment2.default.find(node, true); + var index = blot.offset(_this4.scroll); + if (offset === 0) { + return index; + } else if (blot instanceof _parchment2.default.Container) { + return index + blot.length(); + } else { + return index + blot.index(node, offset); + } + }); + var end = Math.min(Math.max.apply(Math, _toConsumableArray(indexes)), this.scroll.length() - 1); + var start = Math.min.apply(Math, [end].concat(_toConsumableArray(indexes))); + return new Range(start, end - start); + } + }, { + key: 'normalizeNative', + value: function normalizeNative(nativeRange) { + if (!contains(this.root, nativeRange.startContainer) || !nativeRange.collapsed && !contains(this.root, nativeRange.endContainer)) { + return null; + } + var range = { + start: { node: nativeRange.startContainer, offset: nativeRange.startOffset }, + end: { node: nativeRange.endContainer, offset: nativeRange.endOffset }, + native: nativeRange + }; + [range.start, range.end].forEach(function (position) { + var node = position.node, + offset = position.offset; + while (!(node instanceof Text) && node.childNodes.length > 0) { + if (node.childNodes.length > offset) { + node = node.childNodes[offset]; + offset = 0; + } else if (node.childNodes.length === offset) { + node = node.lastChild; + offset = node instanceof Text ? node.data.length : node.childNodes.length + 1; + } else { + break; + } + } + position.node = node, position.offset = offset; + }); + return range; + } + }, { + key: 'rangeToNative', + value: function rangeToNative(range) { + var _this5 = this; + + var indexes = range.collapsed ? [range.index] : [range.index, range.index + range.length]; + var args = []; + var scrollLength = this.scroll.length(); + indexes.forEach(function (index, i) { + index = Math.min(scrollLength - 1, index); + var node = void 0, + _scroll$leaf5 = _this5.scroll.leaf(index), + _scroll$leaf6 = _slicedToArray(_scroll$leaf5, 2), + leaf = _scroll$leaf6[0], + offset = _scroll$leaf6[1]; + var _leaf$position5 = leaf.position(offset, i !== 0); + + var _leaf$position6 = _slicedToArray(_leaf$position5, 2); + + node = _leaf$position6[0]; + offset = _leaf$position6[1]; + + args.push(node, offset); + }); + if (args.length < 2) { + args = args.concat(args); + } + return args; + } + }, { + key: 'scrollIntoView', + value: function scrollIntoView(scrollingContainer) { + var range = this.lastRange; + if (range == null) return; + var bounds = this.getBounds(range.index, range.length); + if (bounds == null) return; + var limit = this.scroll.length() - 1; + + var _scroll$line = this.scroll.line(Math.min(range.index, limit)), + _scroll$line2 = _slicedToArray(_scroll$line, 1), + first = _scroll$line2[0]; + + var last = first; + if (range.length > 0) { + var _scroll$line3 = this.scroll.line(Math.min(range.index + range.length, limit)); + + var _scroll$line4 = _slicedToArray(_scroll$line3, 1); + + last = _scroll$line4[0]; + } + if (first == null || last == null) return; + var scrollBounds = scrollingContainer.getBoundingClientRect(); + if (bounds.top < scrollBounds.top) { + scrollingContainer.scrollTop -= scrollBounds.top - bounds.top; + } else if (bounds.bottom > scrollBounds.bottom) { + scrollingContainer.scrollTop += bounds.bottom - scrollBounds.bottom; + } + } + }, { + key: 'setNativeRange', + value: function setNativeRange(startNode, startOffset) { + var endNode = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : startNode; + var endOffset = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : startOffset; + var force = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false; + + debug.info('setNativeRange', startNode, startOffset, endNode, endOffset); + if (startNode != null && (this.root.parentNode == null || startNode.parentNode == null || endNode.parentNode == null)) { + return; + } + var selection = document.getSelection(); + if (selection == null) return; + if (startNode != null) { + if (!this.hasFocus()) this.root.focus(); + var native = (this.getNativeRange() || {}).native; + if (native == null || force || startNode !== native.startContainer || startOffset !== native.startOffset || endNode !== native.endContainer || endOffset !== native.endOffset) { + + if (startNode.tagName == "BR") { + startOffset = [].indexOf.call(startNode.parentNode.childNodes, startNode); + startNode = startNode.parentNode; + } + if (endNode.tagName == "BR") { + endOffset = [].indexOf.call(endNode.parentNode.childNodes, endNode); + endNode = endNode.parentNode; + } + var range = document.createRange(); + range.setStart(startNode, startOffset); + range.setEnd(endNode, endOffset); + selection.removeAllRanges(); + selection.addRange(range); + } + } else { + selection.removeAllRanges(); + this.root.blur(); + document.body.focus(); // root.blur() not enough on IE11+Travis+SauceLabs (but not local VMs) + } + } + }, { + key: 'setRange', + value: function setRange(range) { + var force = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + var source = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : _emitter4.default.sources.API; + + if (typeof force === 'string') { + source = force; + force = false; + } + debug.info('setRange', range); + if (range != null) { + var args = this.rangeToNative(range); + this.setNativeRange.apply(this, _toConsumableArray(args).concat([force])); + } else { + this.setNativeRange(null); + } + this.update(source); + } + }, { + key: 'update', + value: function update() { + var source = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : _emitter4.default.sources.USER; + + var oldRange = this.lastRange; + + var _getRange = this.getRange(), + _getRange2 = _slicedToArray(_getRange, 2), + lastRange = _getRange2[0], + nativeRange = _getRange2[1]; + + this.lastRange = lastRange; + if (this.lastRange != null) { + this.savedRange = this.lastRange; + } + if (!(0, _deepEqual2.default)(oldRange, this.lastRange)) { + var _emitter; + + if (!this.composing && nativeRange != null && nativeRange.native.collapsed && nativeRange.start.node !== this.cursor.textNode) { + this.cursor.restore(); + } + var args = [_emitter4.default.events.SELECTION_CHANGE, (0, _clone2.default)(this.lastRange), (0, _clone2.default)(oldRange), source]; + (_emitter = this.emitter).emit.apply(_emitter, [_emitter4.default.events.EDITOR_CHANGE].concat(args)); + if (source !== _emitter4.default.sources.SILENT) { + var _emitter2; + + (_emitter2 = this.emitter).emit.apply(_emitter2, args); + } + } + } + }]); + + return Selection; +}(); + +function contains(parent, descendant) { + try { + // Firefox inserts inaccessible nodes around video elements + descendant.parentNode; + } catch (e) { + return false; + } + // IE11 has bug with Text nodes + // https://connect.microsoft.com/IE/feedback/details/780874/node-contains-is-incorrect + if (descendant instanceof Text) { + descendant = descendant.parentNode; + } + return parent.contains(descendant); +} + +exports.Range = Range; +exports.default = Selection; + +/***/ }), +/* 16 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Break = function (_Parchment$Embed) { + _inherits(Break, _Parchment$Embed); + + function Break() { + _classCallCheck(this, Break); + + return _possibleConstructorReturn(this, (Break.__proto__ || Object.getPrototypeOf(Break)).apply(this, arguments)); + } + + _createClass(Break, [{ + key: 'insertInto', + value: function insertInto(parent, ref) { + if (parent.children.length === 0) { + _get(Break.prototype.__proto__ || Object.getPrototypeOf(Break.prototype), 'insertInto', this).call(this, parent, ref); + } else { + this.remove(); + } + } + }, { + key: 'length', + value: function length() { + return 0; + } + }, { + key: 'value', + value: function value() { + return ''; + } + }], [{ + key: 'value', + value: function value() { + return undefined; + } + }]); + + return Break; +}(_parchment2.default.Embed); + +Break.blotName = 'break'; +Break.tagName = 'BR'; + +exports.default = Break; + +/***/ }), +/* 17 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || (function () { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +var linked_list_1 = __webpack_require__(44); +var shadow_1 = __webpack_require__(30); +var Registry = __webpack_require__(1); +var ContainerBlot = /** @class */ (function (_super) { + __extends(ContainerBlot, _super); + function ContainerBlot(domNode) { + var _this = _super.call(this, domNode) || this; + _this.build(); + return _this; + } + ContainerBlot.prototype.appendChild = function (other) { + this.insertBefore(other); + }; + ContainerBlot.prototype.attach = function () { + _super.prototype.attach.call(this); + this.children.forEach(function (child) { + child.attach(); + }); + }; + ContainerBlot.prototype.build = function () { + var _this = this; + this.children = new linked_list_1.default(); + // Need to be reversed for if DOM nodes already in order + [].slice + .call(this.domNode.childNodes) + .reverse() + .forEach(function (node) { + try { + var child = makeBlot(node); + _this.insertBefore(child, _this.children.head || undefined); + } + catch (err) { + if (err instanceof Registry.ParchmentError) + return; + else + throw err; + } + }); + }; + ContainerBlot.prototype.deleteAt = function (index, length) { + if (index === 0 && length === this.length()) { + return this.remove(); + } + this.children.forEachAt(index, length, function (child, offset, length) { + child.deleteAt(offset, length); + }); + }; + ContainerBlot.prototype.descendant = function (criteria, index) { + var _a = this.children.find(index), child = _a[0], offset = _a[1]; + if ((criteria.blotName == null && criteria(child)) || + (criteria.blotName != null && child instanceof criteria)) { + return [child, offset]; + } + else if (child instanceof ContainerBlot) { + return child.descendant(criteria, offset); + } + else { + return [null, -1]; + } + }; + ContainerBlot.prototype.descendants = function (criteria, index, length) { + if (index === void 0) { index = 0; } + if (length === void 0) { length = Number.MAX_VALUE; } + var descendants = []; + var lengthLeft = length; + this.children.forEachAt(index, length, function (child, index, length) { + if ((criteria.blotName == null && criteria(child)) || + (criteria.blotName != null && child instanceof criteria)) { + descendants.push(child); + } + if (child instanceof ContainerBlot) { + descendants = descendants.concat(child.descendants(criteria, index, lengthLeft)); + } + lengthLeft -= length; + }); + return descendants; + }; + ContainerBlot.prototype.detach = function () { + this.children.forEach(function (child) { + child.detach(); + }); + _super.prototype.detach.call(this); + }; + ContainerBlot.prototype.formatAt = function (index, length, name, value) { + this.children.forEachAt(index, length, function (child, offset, length) { + child.formatAt(offset, length, name, value); + }); + }; + ContainerBlot.prototype.insertAt = function (index, value, def) { + var _a = this.children.find(index), child = _a[0], offset = _a[1]; + if (child) { + child.insertAt(offset, value, def); + } + else { + var blot = def == null ? Registry.create('text', value) : Registry.create(value, def); + this.appendChild(blot); + } + }; + ContainerBlot.prototype.insertBefore = function (childBlot, refBlot) { + if (this.statics.allowedChildren != null && + !this.statics.allowedChildren.some(function (child) { + return childBlot instanceof child; + })) { + throw new Registry.ParchmentError("Cannot insert " + childBlot.statics.blotName + " into " + this.statics.blotName); + } + childBlot.insertInto(this, refBlot); + }; + ContainerBlot.prototype.length = function () { + return this.children.reduce(function (memo, child) { + return memo + child.length(); + }, 0); + }; + ContainerBlot.prototype.moveChildren = function (targetParent, refNode) { + this.children.forEach(function (child) { + targetParent.insertBefore(child, refNode); + }); + }; + ContainerBlot.prototype.optimize = function (context) { + _super.prototype.optimize.call(this, context); + if (this.children.length === 0) { + if (this.statics.defaultChild != null) { + var child = Registry.create(this.statics.defaultChild); + this.appendChild(child); + child.optimize(context); + } + else { + this.remove(); + } + } + }; + ContainerBlot.prototype.path = function (index, inclusive) { + if (inclusive === void 0) { inclusive = false; } + var _a = this.children.find(index, inclusive), child = _a[0], offset = _a[1]; + var position = [[this, index]]; + if (child instanceof ContainerBlot) { + return position.concat(child.path(offset, inclusive)); + } + else if (child != null) { + position.push([child, offset]); + } + return position; + }; + ContainerBlot.prototype.removeChild = function (child) { + this.children.remove(child); + }; + ContainerBlot.prototype.replace = function (target) { + if (target instanceof ContainerBlot) { + target.moveChildren(this); + } + _super.prototype.replace.call(this, target); + }; + ContainerBlot.prototype.split = function (index, force) { + if (force === void 0) { force = false; } + if (!force) { + if (index === 0) + return this; + if (index === this.length()) + return this.next; + } + var after = this.clone(); + this.parent.insertBefore(after, this.next); + this.children.forEachAt(index, this.length(), function (child, offset, length) { + child = child.split(offset, force); + after.appendChild(child); + }); + return after; + }; + ContainerBlot.prototype.unwrap = function () { + this.moveChildren(this.parent, this.next); + this.remove(); + }; + ContainerBlot.prototype.update = function (mutations, context) { + var _this = this; + var addedNodes = []; + var removedNodes = []; + mutations.forEach(function (mutation) { + if (mutation.target === _this.domNode && mutation.type === 'childList') { + addedNodes.push.apply(addedNodes, mutation.addedNodes); + removedNodes.push.apply(removedNodes, mutation.removedNodes); + } + }); + removedNodes.forEach(function (node) { + // Check node has actually been removed + // One exception is Chrome does not immediately remove IFRAMEs + // from DOM but MutationRecord is correct in its reported removal + if (node.parentNode != null && + // @ts-ignore + node.tagName !== 'IFRAME' && + document.body.compareDocumentPosition(node) & Node.DOCUMENT_POSITION_CONTAINED_BY) { + return; + } + var blot = Registry.find(node); + if (blot == null) + return; + if (blot.domNode.parentNode == null || blot.domNode.parentNode === _this.domNode) { + blot.detach(); + } + }); + addedNodes + .filter(function (node) { + return node.parentNode == _this.domNode; + }) + .sort(function (a, b) { + if (a === b) + return 0; + if (a.compareDocumentPosition(b) & Node.DOCUMENT_POSITION_FOLLOWING) { + return 1; + } + return -1; + }) + .forEach(function (node) { + var refBlot = null; + if (node.nextSibling != null) { + refBlot = Registry.find(node.nextSibling); + } + var blot = makeBlot(node); + if (blot.next != refBlot || blot.next == null) { + if (blot.parent != null) { + blot.parent.removeChild(_this); + } + _this.insertBefore(blot, refBlot || undefined); + } + }); + }; + return ContainerBlot; +}(shadow_1.default)); +function makeBlot(node) { + var blot = Registry.find(node); + if (blot == null) { + try { + blot = Registry.create(node); + } + catch (e) { + blot = Registry.create(Registry.Scope.INLINE); + [].slice.call(node.childNodes).forEach(function (child) { + // @ts-ignore + blot.domNode.appendChild(child); + }); + if (node.parentNode) { + node.parentNode.replaceChild(blot.domNode, node); + } + blot.attach(); + } + } + return blot; +} +exports.default = ContainerBlot; + + +/***/ }), +/* 18 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || (function () { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +var attributor_1 = __webpack_require__(12); +var store_1 = __webpack_require__(31); +var container_1 = __webpack_require__(17); +var Registry = __webpack_require__(1); +var FormatBlot = /** @class */ (function (_super) { + __extends(FormatBlot, _super); + function FormatBlot(domNode) { + var _this = _super.call(this, domNode) || this; + _this.attributes = new store_1.default(_this.domNode); + return _this; + } + FormatBlot.formats = function (domNode) { + if (typeof this.tagName === 'string') { + return true; + } + else if (Array.isArray(this.tagName)) { + return domNode.tagName.toLowerCase(); + } + return undefined; + }; + FormatBlot.prototype.format = function (name, value) { + var format = Registry.query(name); + if (format instanceof attributor_1.default) { + this.attributes.attribute(format, value); + } + else if (value) { + if (format != null && (name !== this.statics.blotName || this.formats()[name] !== value)) { + this.replaceWith(name, value); + } + } + }; + FormatBlot.prototype.formats = function () { + var formats = this.attributes.values(); + var format = this.statics.formats(this.domNode); + if (format != null) { + formats[this.statics.blotName] = format; + } + return formats; + }; + FormatBlot.prototype.replaceWith = function (name, value) { + var replacement = _super.prototype.replaceWith.call(this, name, value); + this.attributes.copy(replacement); + return replacement; + }; + FormatBlot.prototype.update = function (mutations, context) { + var _this = this; + _super.prototype.update.call(this, mutations, context); + if (mutations.some(function (mutation) { + return mutation.target === _this.domNode && mutation.type === 'attributes'; + })) { + this.attributes.build(); + } + }; + FormatBlot.prototype.wrap = function (name, value) { + var wrapper = _super.prototype.wrap.call(this, name, value); + if (wrapper instanceof FormatBlot && wrapper.statics.scope === this.statics.scope) { + this.attributes.move(wrapper); + } + return wrapper; + }; + return FormatBlot; +}(container_1.default)); +exports.default = FormatBlot; + + +/***/ }), +/* 19 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || (function () { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +var shadow_1 = __webpack_require__(30); +var Registry = __webpack_require__(1); +var LeafBlot = /** @class */ (function (_super) { + __extends(LeafBlot, _super); + function LeafBlot() { + return _super !== null && _super.apply(this, arguments) || this; + } + LeafBlot.value = function (domNode) { + return true; + }; + LeafBlot.prototype.index = function (node, offset) { + if (this.domNode === node || + this.domNode.compareDocumentPosition(node) & Node.DOCUMENT_POSITION_CONTAINED_BY) { + return Math.min(offset, 1); + } + return -1; + }; + LeafBlot.prototype.position = function (index, inclusive) { + var offset = [].indexOf.call(this.parent.domNode.childNodes, this.domNode); + if (index > 0) + offset += 1; + return [this.parent.domNode, offset]; + }; + LeafBlot.prototype.value = function () { + return _a = {}, _a[this.statics.blotName] = this.statics.value(this.domNode) || true, _a; + var _a; + }; + LeafBlot.scope = Registry.Scope.INLINE_BLOT; + return LeafBlot; +}(shadow_1.default)); +exports.default = LeafBlot; + + +/***/ }), +/* 20 */ +/***/ (function(module, exports, __webpack_require__) { + +var equal = __webpack_require__(11); +var extend = __webpack_require__(3); + + +var lib = { + attributes: { + compose: function (a, b, keepNull) { + if (typeof a !== 'object') a = {}; + if (typeof b !== 'object') b = {}; + var attributes = extend(true, {}, b); + if (!keepNull) { + attributes = Object.keys(attributes).reduce(function (copy, key) { + if (attributes[key] != null) { + copy[key] = attributes[key]; + } + return copy; + }, {}); + } + for (var key in a) { + if (a[key] !== undefined && b[key] === undefined) { + attributes[key] = a[key]; + } + } + return Object.keys(attributes).length > 0 ? attributes : undefined; + }, + + diff: function(a, b) { + if (typeof a !== 'object') a = {}; + if (typeof b !== 'object') b = {}; + var attributes = Object.keys(a).concat(Object.keys(b)).reduce(function (attributes, key) { + if (!equal(a[key], b[key])) { + attributes[key] = b[key] === undefined ? null : b[key]; + } + return attributes; + }, {}); + return Object.keys(attributes).length > 0 ? attributes : undefined; + }, + + transform: function (a, b, priority) { + if (typeof a !== 'object') return b; + if (typeof b !== 'object') return undefined; + if (!priority) return b; // b simply overwrites us without priority + var attributes = Object.keys(b).reduce(function (attributes, key) { + if (a[key] === undefined) attributes[key] = b[key]; // null is a valid value + return attributes; + }, {}); + return Object.keys(attributes).length > 0 ? attributes : undefined; + } + }, + + iterator: function (ops) { + return new Iterator(ops); + }, + + length: function (op) { + if (typeof op['delete'] === 'number') { + return op['delete']; + } else if (typeof op.retain === 'number') { + return op.retain; + } else { + return typeof op.insert === 'string' ? op.insert.length : 1; + } + } +}; + + +function Iterator(ops) { + this.ops = ops; + this.index = 0; + this.offset = 0; +}; + +Iterator.prototype.hasNext = function () { + return this.peekLength() < Infinity; +}; + +Iterator.prototype.next = function (length) { + if (!length) length = Infinity; + var nextOp = this.ops[this.index]; + if (nextOp) { + var offset = this.offset; + var opLength = lib.length(nextOp) + if (length >= opLength - offset) { + length = opLength - offset; + this.index += 1; + this.offset = 0; + } else { + this.offset += length; + } + if (typeof nextOp['delete'] === 'number') { + return { 'delete': length }; + } else { + var retOp = {}; + if (nextOp.attributes) { + retOp.attributes = nextOp.attributes; + } + if (typeof nextOp.retain === 'number') { + retOp.retain = length; + } else if (typeof nextOp.insert === 'string') { + retOp.insert = nextOp.insert.substr(offset, length); + } else { + // offset should === 0, length should === 1 + retOp.insert = nextOp.insert; + } + return retOp; + } + } else { + return { retain: Infinity }; + } +}; + +Iterator.prototype.peek = function () { + return this.ops[this.index]; +}; + +Iterator.prototype.peekLength = function () { + if (this.ops[this.index]) { + // Should never return 0 if our index is being managed correctly + return lib.length(this.ops[this.index]) - this.offset; + } else { + return Infinity; + } +}; + +Iterator.prototype.peekType = function () { + if (this.ops[this.index]) { + if (typeof this.ops[this.index]['delete'] === 'number') { + return 'delete'; + } else if (typeof this.ops[this.index].retain === 'number') { + return 'retain'; + } else { + return 'insert'; + } + } + return 'retain'; +}; + + +module.exports = lib; + + +/***/ }), +/* 21 */ +/***/ (function(module, exports) { + +var clone = (function() { +'use strict'; + +function _instanceof(obj, type) { + return type != null && obj instanceof type; +} + +var nativeMap; +try { + nativeMap = Map; +} catch(_) { + // maybe a reference error because no `Map`. Give it a dummy value that no + // value will ever be an instanceof. + nativeMap = function() {}; +} + +var nativeSet; +try { + nativeSet = Set; +} catch(_) { + nativeSet = function() {}; +} + +var nativePromise; +try { + nativePromise = Promise; +} catch(_) { + nativePromise = function() {}; +} + +/** + * Clones (copies) an Object using deep copying. + * + * This function supports circular references by default, but if you are certain + * there are no circular references in your object, you can save some CPU time + * by calling clone(obj, false). + * + * Caution: if `circular` is false and `parent` contains circular references, + * your program may enter an infinite loop and crash. + * + * @param `parent` - the object to be cloned + * @param `circular` - set to true if the object to be cloned may contain + * circular references. (optional - true by default) + * @param `depth` - set to a number if the object is only to be cloned to + * a particular depth. (optional - defaults to Infinity) + * @param `prototype` - sets the prototype to be used when cloning an object. + * (optional - defaults to parent prototype). + * @param `includeNonEnumerable` - set to true if the non-enumerable properties + * should be cloned as well. Non-enumerable properties on the prototype + * chain will be ignored. (optional - false by default) +*/ +function clone(parent, circular, depth, prototype, includeNonEnumerable) { + if (typeof circular === 'object') { + depth = circular.depth; + prototype = circular.prototype; + includeNonEnumerable = circular.includeNonEnumerable; + circular = circular.circular; + } + // maintain two arrays for circular references, where corresponding parents + // and children have the same index + var allParents = []; + var allChildren = []; + + var useBuffer = typeof Buffer != 'undefined'; + + if (typeof circular == 'undefined') + circular = true; + + if (typeof depth == 'undefined') + depth = Infinity; + + // recurse this function so we don't reset allParents and allChildren + function _clone(parent, depth) { + // cloning null always returns null + if (parent === null) + return null; + + if (depth === 0) + return parent; + + var child; + var proto; + if (typeof parent != 'object') { + return parent; + } + + if (_instanceof(parent, nativeMap)) { + child = new nativeMap(); + } else if (_instanceof(parent, nativeSet)) { + child = new nativeSet(); + } else if (_instanceof(parent, nativePromise)) { + child = new nativePromise(function (resolve, reject) { + parent.then(function(value) { + resolve(_clone(value, depth - 1)); + }, function(err) { + reject(_clone(err, depth - 1)); + }); + }); + } else if (clone.__isArray(parent)) { + child = []; + } else if (clone.__isRegExp(parent)) { + child = new RegExp(parent.source, __getRegExpFlags(parent)); + if (parent.lastIndex) child.lastIndex = parent.lastIndex; + } else if (clone.__isDate(parent)) { + child = new Date(parent.getTime()); + } else if (useBuffer && Buffer.isBuffer(parent)) { + child = new Buffer(parent.length); + parent.copy(child); + return child; + } else if (_instanceof(parent, Error)) { + child = Object.create(parent); + } else { + if (typeof prototype == 'undefined') { + proto = Object.getPrototypeOf(parent); + child = Object.create(proto); + } + else { + child = Object.create(prototype); + proto = prototype; + } + } + + if (circular) { + var index = allParents.indexOf(parent); + + if (index != -1) { + return allChildren[index]; + } + allParents.push(parent); + allChildren.push(child); + } + + if (_instanceof(parent, nativeMap)) { + parent.forEach(function(value, key) { + var keyChild = _clone(key, depth - 1); + var valueChild = _clone(value, depth - 1); + child.set(keyChild, valueChild); + }); + } + if (_instanceof(parent, nativeSet)) { + parent.forEach(function(value) { + var entryChild = _clone(value, depth - 1); + child.add(entryChild); + }); + } + + for (var i in parent) { + var attrs; + if (proto) { + attrs = Object.getOwnPropertyDescriptor(proto, i); + } + + if (attrs && attrs.set == null) { + continue; + } + child[i] = _clone(parent[i], depth - 1); + } + + if (Object.getOwnPropertySymbols) { + var symbols = Object.getOwnPropertySymbols(parent); + for (var i = 0; i < symbols.length; i++) { + // Don't need to worry about cloning a symbol because it is a primitive, + // like a number or string. + var symbol = symbols[i]; + var descriptor = Object.getOwnPropertyDescriptor(parent, symbol); + if (descriptor && !descriptor.enumerable && !includeNonEnumerable) { + continue; + } + child[symbol] = _clone(parent[symbol], depth - 1); + if (!descriptor.enumerable) { + Object.defineProperty(child, symbol, { + enumerable: false + }); + } + } + } + + if (includeNonEnumerable) { + var allPropertyNames = Object.getOwnPropertyNames(parent); + for (var i = 0; i < allPropertyNames.length; i++) { + var propertyName = allPropertyNames[i]; + var descriptor = Object.getOwnPropertyDescriptor(parent, propertyName); + if (descriptor && descriptor.enumerable) { + continue; + } + child[propertyName] = _clone(parent[propertyName], depth - 1); + Object.defineProperty(child, propertyName, { + enumerable: false + }); + } + } + + return child; + } + + return _clone(parent, depth); +} + +/** + * Simple flat clone using prototype, accepts only objects, usefull for property + * override on FLAT configuration object (no nested props). + * + * USE WITH CAUTION! This may not behave as you wish if you do not know how this + * works. + */ +clone.clonePrototype = function clonePrototype(parent) { + if (parent === null) + return null; + + var c = function () {}; + c.prototype = parent; + return new c(); +}; + +// private utility functions + +function __objToStr(o) { + return Object.prototype.toString.call(o); +} +clone.__objToStr = __objToStr; + +function __isDate(o) { + return typeof o === 'object' && __objToStr(o) === '[object Date]'; +} +clone.__isDate = __isDate; + +function __isArray(o) { + return typeof o === 'object' && __objToStr(o) === '[object Array]'; +} +clone.__isArray = __isArray; + +function __isRegExp(o) { + return typeof o === 'object' && __objToStr(o) === '[object RegExp]'; +} +clone.__isRegExp = __isRegExp; + +function __getRegExpFlags(re) { + var flags = ''; + if (re.global) flags += 'g'; + if (re.ignoreCase) flags += 'i'; + if (re.multiline) flags += 'm'; + return flags; +} +clone.__getRegExpFlags = __getRegExpFlags; + +return clone; +})(); + +if (typeof module === 'object' && module.exports) { + module.exports = clone; +} + + +/***/ }), +/* 22 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _emitter = __webpack_require__(8); + +var _emitter2 = _interopRequireDefault(_emitter); + +var _block = __webpack_require__(4); + +var _block2 = _interopRequireDefault(_block); + +var _break = __webpack_require__(16); + +var _break2 = _interopRequireDefault(_break); + +var _code = __webpack_require__(13); + +var _code2 = _interopRequireDefault(_code); + +var _container = __webpack_require__(25); + +var _container2 = _interopRequireDefault(_container); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +function isLine(blot) { + return blot instanceof _block2.default || blot instanceof _block.BlockEmbed; +} + +var Scroll = function (_Parchment$Scroll) { + _inherits(Scroll, _Parchment$Scroll); + + function Scroll(domNode, config) { + _classCallCheck(this, Scroll); + + var _this = _possibleConstructorReturn(this, (Scroll.__proto__ || Object.getPrototypeOf(Scroll)).call(this, domNode)); + + _this.emitter = config.emitter; + if (Array.isArray(config.whitelist)) { + _this.whitelist = config.whitelist.reduce(function (whitelist, format) { + whitelist[format] = true; + return whitelist; + }, {}); + } + // Some reason fixes composition issues with character languages in Windows/Chrome, Safari + _this.domNode.addEventListener('DOMNodeInserted', function () {}); + _this.optimize(); + _this.enable(); + return _this; + } + + _createClass(Scroll, [{ + key: 'batchStart', + value: function batchStart() { + this.batch = true; + } + }, { + key: 'batchEnd', + value: function batchEnd() { + this.batch = false; + this.optimize(); + } + }, { + key: 'deleteAt', + value: function deleteAt(index, length) { + var _line = this.line(index), + _line2 = _slicedToArray(_line, 2), + first = _line2[0], + offset = _line2[1]; + + var _line3 = this.line(index + length), + _line4 = _slicedToArray(_line3, 1), + last = _line4[0]; + + _get(Scroll.prototype.__proto__ || Object.getPrototypeOf(Scroll.prototype), 'deleteAt', this).call(this, index, length); + if (last != null && first !== last && offset > 0) { + if (first instanceof _block.BlockEmbed || last instanceof _block.BlockEmbed) { + this.optimize(); + return; + } + if (first instanceof _code2.default) { + var newlineIndex = first.newlineIndex(first.length(), true); + if (newlineIndex > -1) { + first = first.split(newlineIndex + 1); + if (first === last) { + this.optimize(); + return; + } + } + } else if (last instanceof _code2.default) { + var _newlineIndex = last.newlineIndex(0); + if (_newlineIndex > -1) { + last.split(_newlineIndex + 1); + } + } + var ref = last.children.head instanceof _break2.default ? null : last.children.head; + first.moveChildren(last, ref); + first.remove(); + } + this.optimize(); + } + }, { + key: 'enable', + value: function enable() { + var enabled = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; + + this.domNode.setAttribute('contenteditable', enabled); + } + }, { + key: 'formatAt', + value: function formatAt(index, length, format, value) { + if (this.whitelist != null && !this.whitelist[format]) return; + _get(Scroll.prototype.__proto__ || Object.getPrototypeOf(Scroll.prototype), 'formatAt', this).call(this, index, length, format, value); + this.optimize(); + } + }, { + key: 'insertAt', + value: function insertAt(index, value, def) { + if (def != null && this.whitelist != null && !this.whitelist[value]) return; + if (index >= this.length()) { + if (def == null || _parchment2.default.query(value, _parchment2.default.Scope.BLOCK) == null) { + var blot = _parchment2.default.create(this.statics.defaultChild); + this.appendChild(blot); + if (def == null && value.endsWith('\n')) { + value = value.slice(0, -1); + } + blot.insertAt(0, value, def); + } else { + var embed = _parchment2.default.create(value, def); + this.appendChild(embed); + } + } else { + _get(Scroll.prototype.__proto__ || Object.getPrototypeOf(Scroll.prototype), 'insertAt', this).call(this, index, value, def); + } + this.optimize(); + } + }, { + key: 'insertBefore', + value: function insertBefore(blot, ref) { + if (blot.statics.scope === _parchment2.default.Scope.INLINE_BLOT) { + var wrapper = _parchment2.default.create(this.statics.defaultChild); + wrapper.appendChild(blot); + blot = wrapper; + } + _get(Scroll.prototype.__proto__ || Object.getPrototypeOf(Scroll.prototype), 'insertBefore', this).call(this, blot, ref); + } + }, { + key: 'leaf', + value: function leaf(index) { + return this.path(index).pop() || [null, -1]; + } + }, { + key: 'line', + value: function line(index) { + if (index === this.length()) { + return this.line(index - 1); + } + return this.descendant(isLine, index); + } + }, { + key: 'lines', + value: function lines() { + var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0; + var length = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : Number.MAX_VALUE; + + var getLines = function getLines(blot, index, length) { + var lines = [], + lengthLeft = length; + blot.children.forEachAt(index, length, function (child, index, length) { + if (isLine(child)) { + lines.push(child); + } else if (child instanceof _parchment2.default.Container) { + lines = lines.concat(getLines(child, index, lengthLeft)); + } + lengthLeft -= length; + }); + return lines; + }; + return getLines(this, index, length); + } + }, { + key: 'optimize', + value: function optimize() { + var mutations = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; + var context = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + if (this.batch === true) return; + _get(Scroll.prototype.__proto__ || Object.getPrototypeOf(Scroll.prototype), 'optimize', this).call(this, mutations, context); + if (mutations.length > 0) { + this.emitter.emit(_emitter2.default.events.SCROLL_OPTIMIZE, mutations, context); + } + } + }, { + key: 'path', + value: function path(index) { + return _get(Scroll.prototype.__proto__ || Object.getPrototypeOf(Scroll.prototype), 'path', this).call(this, index).slice(1); // Exclude self + } + }, { + key: 'update', + value: function update(mutations) { + if (this.batch === true) return; + var source = _emitter2.default.sources.USER; + if (typeof mutations === 'string') { + source = mutations; + } + if (!Array.isArray(mutations)) { + mutations = this.observer.takeRecords(); + } + if (mutations.length > 0) { + this.emitter.emit(_emitter2.default.events.SCROLL_BEFORE_UPDATE, source, mutations); + } + _get(Scroll.prototype.__proto__ || Object.getPrototypeOf(Scroll.prototype), 'update', this).call(this, mutations.concat([])); // pass copy + if (mutations.length > 0) { + this.emitter.emit(_emitter2.default.events.SCROLL_UPDATE, source, mutations); + } + } + }]); + + return Scroll; +}(_parchment2.default.Scroll); + +Scroll.blotName = 'scroll'; +Scroll.className = 'ql-editor'; +Scroll.tagName = 'DIV'; +Scroll.defaultChild = 'block'; +Scroll.allowedChildren = [_block2.default, _block.BlockEmbed, _container2.default]; + +exports.default = Scroll; + +/***/ }), +/* 23 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.SHORTKEY = exports.default = undefined; + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _clone = __webpack_require__(21); + +var _clone2 = _interopRequireDefault(_clone); + +var _deepEqual = __webpack_require__(11); + +var _deepEqual2 = _interopRequireDefault(_deepEqual); + +var _extend = __webpack_require__(3); + +var _extend2 = _interopRequireDefault(_extend); + +var _quillDelta = __webpack_require__(2); + +var _quillDelta2 = _interopRequireDefault(_quillDelta); + +var _op = __webpack_require__(20); + +var _op2 = _interopRequireDefault(_op); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _quill = __webpack_require__(5); + +var _quill2 = _interopRequireDefault(_quill); + +var _logger = __webpack_require__(10); + +var _logger2 = _interopRequireDefault(_logger); + +var _module = __webpack_require__(9); + +var _module2 = _interopRequireDefault(_module); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var debug = (0, _logger2.default)('quill:keyboard'); + +var SHORTKEY = /Mac/i.test(navigator.platform) ? 'metaKey' : 'ctrlKey'; + +var Keyboard = function (_Module) { + _inherits(Keyboard, _Module); + + _createClass(Keyboard, null, [{ + key: 'match', + value: function match(evt, binding) { + binding = normalize(binding); + if (['altKey', 'ctrlKey', 'metaKey', 'shiftKey'].some(function (key) { + return !!binding[key] !== evt[key] && binding[key] !== null; + })) { + return false; + } + return binding.key === (evt.which || evt.keyCode); + } + }]); + + function Keyboard(quill, options) { + _classCallCheck(this, Keyboard); + + var _this = _possibleConstructorReturn(this, (Keyboard.__proto__ || Object.getPrototypeOf(Keyboard)).call(this, quill, options)); + + _this.bindings = {}; + Object.keys(_this.options.bindings).forEach(function (name) { + if (name === 'list autofill' && quill.scroll.whitelist != null && !quill.scroll.whitelist['list']) { + return; + } + if (_this.options.bindings[name]) { + _this.addBinding(_this.options.bindings[name]); + } + }); + _this.addBinding({ key: Keyboard.keys.ENTER, shiftKey: null }, handleEnter); + _this.addBinding({ key: Keyboard.keys.ENTER, metaKey: null, ctrlKey: null, altKey: null }, function () {}); + if (/Firefox/i.test(navigator.userAgent)) { + // Need to handle delete and backspace for Firefox in the general case #1171 + _this.addBinding({ key: Keyboard.keys.BACKSPACE }, { collapsed: true }, handleBackspace); + _this.addBinding({ key: Keyboard.keys.DELETE }, { collapsed: true }, handleDelete); + } else { + _this.addBinding({ key: Keyboard.keys.BACKSPACE }, { collapsed: true, prefix: /^.?$/ }, handleBackspace); + _this.addBinding({ key: Keyboard.keys.DELETE }, { collapsed: true, suffix: /^.?$/ }, handleDelete); + } + _this.addBinding({ key: Keyboard.keys.BACKSPACE }, { collapsed: false }, handleDeleteRange); + _this.addBinding({ key: Keyboard.keys.DELETE }, { collapsed: false }, handleDeleteRange); + _this.addBinding({ key: Keyboard.keys.BACKSPACE, altKey: null, ctrlKey: null, metaKey: null, shiftKey: null }, { collapsed: true, offset: 0 }, handleBackspace); + _this.listen(); + return _this; + } + + _createClass(Keyboard, [{ + key: 'addBinding', + value: function addBinding(key) { + var context = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var handler = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + + var binding = normalize(key); + if (binding == null || binding.key == null) { + return debug.warn('Attempted to add invalid keyboard binding', binding); + } + if (typeof context === 'function') { + context = { handler: context }; + } + if (typeof handler === 'function') { + handler = { handler: handler }; + } + binding = (0, _extend2.default)(binding, context, handler); + this.bindings[binding.key] = this.bindings[binding.key] || []; + this.bindings[binding.key].push(binding); + } + }, { + key: 'listen', + value: function listen() { + var _this2 = this; + + this.quill.root.addEventListener('keydown', function (evt) { + if (evt.defaultPrevented) return; + var which = evt.which || evt.keyCode; + var bindings = (_this2.bindings[which] || []).filter(function (binding) { + return Keyboard.match(evt, binding); + }); + if (bindings.length === 0) return; + var range = _this2.quill.getSelection(); + if (range == null || !_this2.quill.hasFocus()) return; + + var _quill$getLine = _this2.quill.getLine(range.index), + _quill$getLine2 = _slicedToArray(_quill$getLine, 2), + line = _quill$getLine2[0], + offset = _quill$getLine2[1]; + + var _quill$getLeaf = _this2.quill.getLeaf(range.index), + _quill$getLeaf2 = _slicedToArray(_quill$getLeaf, 2), + leafStart = _quill$getLeaf2[0], + offsetStart = _quill$getLeaf2[1]; + + var _ref = range.length === 0 ? [leafStart, offsetStart] : _this2.quill.getLeaf(range.index + range.length), + _ref2 = _slicedToArray(_ref, 2), + leafEnd = _ref2[0], + offsetEnd = _ref2[1]; + + var prefixText = leafStart instanceof _parchment2.default.Text ? leafStart.value().slice(0, offsetStart) : ''; + var suffixText = leafEnd instanceof _parchment2.default.Text ? leafEnd.value().slice(offsetEnd) : ''; + var curContext = { + collapsed: range.length === 0, + empty: range.length === 0 && line.length() <= 1, + format: _this2.quill.getFormat(range), + offset: offset, + prefix: prefixText, + suffix: suffixText + }; + var prevented = bindings.some(function (binding) { + if (binding.collapsed != null && binding.collapsed !== curContext.collapsed) return false; + if (binding.empty != null && binding.empty !== curContext.empty) return false; + if (binding.offset != null && binding.offset !== curContext.offset) return false; + if (Array.isArray(binding.format)) { + // any format is present + if (binding.format.every(function (name) { + return curContext.format[name] == null; + })) { + return false; + } + } else if (_typeof(binding.format) === 'object') { + // all formats must match + if (!Object.keys(binding.format).every(function (name) { + if (binding.format[name] === true) return curContext.format[name] != null; + if (binding.format[name] === false) return curContext.format[name] == null; + return (0, _deepEqual2.default)(binding.format[name], curContext.format[name]); + })) { + return false; + } + } + if (binding.prefix != null && !binding.prefix.test(curContext.prefix)) return false; + if (binding.suffix != null && !binding.suffix.test(curContext.suffix)) return false; + return binding.handler.call(_this2, range, curContext) !== true; + }); + if (prevented) { + evt.preventDefault(); + } + }); + } + }]); + + return Keyboard; +}(_module2.default); + +Keyboard.keys = { + BACKSPACE: 8, + TAB: 9, + ENTER: 13, + ESCAPE: 27, + LEFT: 37, + UP: 38, + RIGHT: 39, + DOWN: 40, + DELETE: 46 +}; + +Keyboard.DEFAULTS = { + bindings: { + 'bold': makeFormatHandler('bold'), + 'italic': makeFormatHandler('italic'), + 'underline': makeFormatHandler('underline'), + 'indent': { + // highlight tab or tab at beginning of list, indent or blockquote + key: Keyboard.keys.TAB, + format: ['blockquote', 'indent', 'list'], + handler: function handler(range, context) { + if (context.collapsed && context.offset !== 0) return true; + this.quill.format('indent', '+1', _quill2.default.sources.USER); + } + }, + 'outdent': { + key: Keyboard.keys.TAB, + shiftKey: true, + format: ['blockquote', 'indent', 'list'], + // highlight tab or tab at beginning of list, indent or blockquote + handler: function handler(range, context) { + if (context.collapsed && context.offset !== 0) return true; + this.quill.format('indent', '-1', _quill2.default.sources.USER); + } + }, + 'outdent backspace': { + key: Keyboard.keys.BACKSPACE, + collapsed: true, + shiftKey: null, + metaKey: null, + ctrlKey: null, + altKey: null, + format: ['indent', 'list'], + offset: 0, + handler: function handler(range, context) { + if (context.format.indent != null) { + this.quill.format('indent', '-1', _quill2.default.sources.USER); + } else if (context.format.list != null) { + this.quill.format('list', false, _quill2.default.sources.USER); + } + } + }, + 'indent code-block': makeCodeBlockHandler(true), + 'outdent code-block': makeCodeBlockHandler(false), + 'remove tab': { + key: Keyboard.keys.TAB, + shiftKey: true, + collapsed: true, + prefix: /\t$/, + handler: function handler(range) { + this.quill.deleteText(range.index - 1, 1, _quill2.default.sources.USER); + } + }, + 'tab': { + key: Keyboard.keys.TAB, + handler: function handler(range) { + this.quill.history.cutoff(); + var delta = new _quillDelta2.default().retain(range.index).delete(range.length).insert('\t'); + this.quill.updateContents(delta, _quill2.default.sources.USER); + this.quill.history.cutoff(); + this.quill.setSelection(range.index + 1, _quill2.default.sources.SILENT); + } + }, + 'list empty enter': { + key: Keyboard.keys.ENTER, + collapsed: true, + format: ['list'], + empty: true, + handler: function handler(range, context) { + this.quill.format('list', false, _quill2.default.sources.USER); + if (context.format.indent) { + this.quill.format('indent', false, _quill2.default.sources.USER); + } + } + }, + 'checklist enter': { + key: Keyboard.keys.ENTER, + collapsed: true, + format: { list: 'checked' }, + handler: function handler(range) { + var _quill$getLine3 = this.quill.getLine(range.index), + _quill$getLine4 = _slicedToArray(_quill$getLine3, 2), + line = _quill$getLine4[0], + offset = _quill$getLine4[1]; + + var formats = (0, _extend2.default)({}, line.formats(), { list: 'checked' }); + var delta = new _quillDelta2.default().retain(range.index).insert('\n', formats).retain(line.length() - offset - 1).retain(1, { list: 'unchecked' }); + this.quill.updateContents(delta, _quill2.default.sources.USER); + this.quill.setSelection(range.index + 1, _quill2.default.sources.SILENT); + this.quill.scrollIntoView(); + } + }, + 'header enter': { + key: Keyboard.keys.ENTER, + collapsed: true, + format: ['header'], + suffix: /^$/, + handler: function handler(range, context) { + var _quill$getLine5 = this.quill.getLine(range.index), + _quill$getLine6 = _slicedToArray(_quill$getLine5, 2), + line = _quill$getLine6[0], + offset = _quill$getLine6[1]; + + var delta = new _quillDelta2.default().retain(range.index).insert('\n', context.format).retain(line.length() - offset - 1).retain(1, { header: null }); + this.quill.updateContents(delta, _quill2.default.sources.USER); + this.quill.setSelection(range.index + 1, _quill2.default.sources.SILENT); + this.quill.scrollIntoView(); + } + }, + 'list autofill': { + key: ' ', + collapsed: true, + format: { list: false }, + prefix: /^\s*?(\d+\.|-|\*|\[ ?\]|\[x\])$/, + handler: function handler(range, context) { + var length = context.prefix.length; + + var _quill$getLine7 = this.quill.getLine(range.index), + _quill$getLine8 = _slicedToArray(_quill$getLine7, 2), + line = _quill$getLine8[0], + offset = _quill$getLine8[1]; + + if (offset > length) return true; + var value = void 0; + switch (context.prefix.trim()) { + case '[]':case '[ ]': + value = 'unchecked'; + break; + case '[x]': + value = 'checked'; + break; + case '-':case '*': + value = 'bullet'; + break; + default: + value = 'ordered'; + } + this.quill.insertText(range.index, ' ', _quill2.default.sources.USER); + this.quill.history.cutoff(); + var delta = new _quillDelta2.default().retain(range.index - offset).delete(length + 1).retain(line.length() - 2 - offset).retain(1, { list: value }); + this.quill.updateContents(delta, _quill2.default.sources.USER); + this.quill.history.cutoff(); + this.quill.setSelection(range.index - length, _quill2.default.sources.SILENT); + } + }, + 'code exit': { + key: Keyboard.keys.ENTER, + collapsed: true, + format: ['code-block'], + prefix: /\n\n$/, + suffix: /^\s+$/, + handler: function handler(range) { + var _quill$getLine9 = this.quill.getLine(range.index), + _quill$getLine10 = _slicedToArray(_quill$getLine9, 2), + line = _quill$getLine10[0], + offset = _quill$getLine10[1]; + + var delta = new _quillDelta2.default().retain(range.index + line.length() - offset - 2).retain(1, { 'code-block': null }).delete(1); + this.quill.updateContents(delta, _quill2.default.sources.USER); + } + }, + 'embed left': makeEmbedArrowHandler(Keyboard.keys.LEFT, false), + 'embed left shift': makeEmbedArrowHandler(Keyboard.keys.LEFT, true), + 'embed right': makeEmbedArrowHandler(Keyboard.keys.RIGHT, false), + 'embed right shift': makeEmbedArrowHandler(Keyboard.keys.RIGHT, true) + } +}; + +function makeEmbedArrowHandler(key, shiftKey) { + var _ref3; + + var where = key === Keyboard.keys.LEFT ? 'prefix' : 'suffix'; + return _ref3 = { + key: key, + shiftKey: shiftKey, + altKey: null + }, _defineProperty(_ref3, where, /^$/), _defineProperty(_ref3, 'handler', function handler(range) { + var index = range.index; + if (key === Keyboard.keys.RIGHT) { + index += range.length + 1; + } + + var _quill$getLeaf3 = this.quill.getLeaf(index), + _quill$getLeaf4 = _slicedToArray(_quill$getLeaf3, 1), + leaf = _quill$getLeaf4[0]; + + if (!(leaf instanceof _parchment2.default.Embed)) return true; + if (key === Keyboard.keys.LEFT) { + if (shiftKey) { + this.quill.setSelection(range.index - 1, range.length + 1, _quill2.default.sources.USER); + } else { + this.quill.setSelection(range.index - 1, _quill2.default.sources.USER); + } + } else { + if (shiftKey) { + this.quill.setSelection(range.index, range.length + 1, _quill2.default.sources.USER); + } else { + this.quill.setSelection(range.index + range.length + 1, _quill2.default.sources.USER); + } + } + return false; + }), _ref3; +} + +function handleBackspace(range, context) { + if (range.index === 0 || this.quill.getLength() <= 1) return; + + var _quill$getLine11 = this.quill.getLine(range.index), + _quill$getLine12 = _slicedToArray(_quill$getLine11, 1), + line = _quill$getLine12[0]; + + var formats = {}; + if (context.offset === 0) { + var _quill$getLine13 = this.quill.getLine(range.index - 1), + _quill$getLine14 = _slicedToArray(_quill$getLine13, 1), + prev = _quill$getLine14[0]; + + if (prev != null && prev.length() > 1) { + var curFormats = line.formats(); + var prevFormats = this.quill.getFormat(range.index - 1, 1); + formats = _op2.default.attributes.diff(curFormats, prevFormats) || {}; + } + } + // Check for astral symbols + var length = /[\uD800-\uDBFF][\uDC00-\uDFFF]$/.test(context.prefix) ? 2 : 1; + this.quill.deleteText(range.index - length, length, _quill2.default.sources.USER); + if (Object.keys(formats).length > 0) { + this.quill.formatLine(range.index - length, length, formats, _quill2.default.sources.USER); + } + this.quill.focus(); +} + +function handleDelete(range, context) { + // Check for astral symbols + var length = /^[\uD800-\uDBFF][\uDC00-\uDFFF]/.test(context.suffix) ? 2 : 1; + if (range.index >= this.quill.getLength() - length) return; + var formats = {}, + nextLength = 0; + + var _quill$getLine15 = this.quill.getLine(range.index), + _quill$getLine16 = _slicedToArray(_quill$getLine15, 1), + line = _quill$getLine16[0]; + + if (context.offset >= line.length() - 1) { + var _quill$getLine17 = this.quill.getLine(range.index + 1), + _quill$getLine18 = _slicedToArray(_quill$getLine17, 1), + next = _quill$getLine18[0]; + + if (next) { + var curFormats = line.formats(); + var nextFormats = this.quill.getFormat(range.index, 1); + formats = _op2.default.attributes.diff(curFormats, nextFormats) || {}; + nextLength = next.length(); + } + } + this.quill.deleteText(range.index, length, _quill2.default.sources.USER); + if (Object.keys(formats).length > 0) { + this.quill.formatLine(range.index + nextLength - 1, length, formats, _quill2.default.sources.USER); + } +} + +function handleDeleteRange(range) { + var lines = this.quill.getLines(range); + var formats = {}; + if (lines.length > 1) { + var firstFormats = lines[0].formats(); + var lastFormats = lines[lines.length - 1].formats(); + formats = _op2.default.attributes.diff(lastFormats, firstFormats) || {}; + } + this.quill.deleteText(range, _quill2.default.sources.USER); + if (Object.keys(formats).length > 0) { + this.quill.formatLine(range.index, 1, formats, _quill2.default.sources.USER); + } + this.quill.setSelection(range.index, _quill2.default.sources.SILENT); + this.quill.focus(); +} + +function handleEnter(range, context) { + var _this3 = this; + + if (range.length > 0) { + this.quill.scroll.deleteAt(range.index, range.length); // So we do not trigger text-change + } + var lineFormats = Object.keys(context.format).reduce(function (lineFormats, format) { + if (_parchment2.default.query(format, _parchment2.default.Scope.BLOCK) && !Array.isArray(context.format[format])) { + lineFormats[format] = context.format[format]; + } + return lineFormats; + }, {}); + this.quill.insertText(range.index, '\n', lineFormats, _quill2.default.sources.USER); + // Earlier scroll.deleteAt might have messed up our selection, + // so insertText's built in selection preservation is not reliable + this.quill.setSelection(range.index + 1, _quill2.default.sources.SILENT); + this.quill.focus(); + Object.keys(context.format).forEach(function (name) { + if (lineFormats[name] != null) return; + if (Array.isArray(context.format[name])) return; + if (name === 'link') return; + _this3.quill.format(name, context.format[name], _quill2.default.sources.USER); + }); +} + +function makeCodeBlockHandler(indent) { + return { + key: Keyboard.keys.TAB, + shiftKey: !indent, + format: { 'code-block': true }, + handler: function handler(range) { + var CodeBlock = _parchment2.default.query('code-block'); + var index = range.index, + length = range.length; + + var _quill$scroll$descend = this.quill.scroll.descendant(CodeBlock, index), + _quill$scroll$descend2 = _slicedToArray(_quill$scroll$descend, 2), + block = _quill$scroll$descend2[0], + offset = _quill$scroll$descend2[1]; + + if (block == null) return; + var scrollIndex = this.quill.getIndex(block); + var start = block.newlineIndex(offset, true) + 1; + var end = block.newlineIndex(scrollIndex + offset + length); + var lines = block.domNode.textContent.slice(start, end).split('\n'); + offset = 0; + lines.forEach(function (line, i) { + if (indent) { + block.insertAt(start + offset, CodeBlock.TAB); + offset += CodeBlock.TAB.length; + if (i === 0) { + index += CodeBlock.TAB.length; + } else { + length += CodeBlock.TAB.length; + } + } else if (line.startsWith(CodeBlock.TAB)) { + block.deleteAt(start + offset, CodeBlock.TAB.length); + offset -= CodeBlock.TAB.length; + if (i === 0) { + index -= CodeBlock.TAB.length; + } else { + length -= CodeBlock.TAB.length; + } + } + offset += line.length + 1; + }); + this.quill.update(_quill2.default.sources.USER); + this.quill.setSelection(index, length, _quill2.default.sources.SILENT); + } + }; +} + +function makeFormatHandler(format) { + return { + key: format[0].toUpperCase(), + shortKey: true, + handler: function handler(range, context) { + this.quill.format(format, !context.format[format], _quill2.default.sources.USER); + } + }; +} + +function normalize(binding) { + if (typeof binding === 'string' || typeof binding === 'number') { + return normalize({ key: binding }); + } + if ((typeof binding === 'undefined' ? 'undefined' : _typeof(binding)) === 'object') { + binding = (0, _clone2.default)(binding, false); + } + if (typeof binding.key === 'string') { + if (Keyboard.keys[binding.key.toUpperCase()] != null) { + binding.key = Keyboard.keys[binding.key.toUpperCase()]; + } else if (binding.key.length === 1) { + binding.key = binding.key.toUpperCase().charCodeAt(0); + } else { + return null; + } + } + if (binding.shortKey) { + binding[SHORTKEY] = binding.shortKey; + delete binding.shortKey; + } + return binding; +} + +exports.default = Keyboard; +exports.SHORTKEY = SHORTKEY; + +/***/ }), +/* 24 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _text = __webpack_require__(7); + +var _text2 = _interopRequireDefault(_text); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Cursor = function (_Parchment$Embed) { + _inherits(Cursor, _Parchment$Embed); + + _createClass(Cursor, null, [{ + key: 'value', + value: function value() { + return undefined; + } + }]); + + function Cursor(domNode, selection) { + _classCallCheck(this, Cursor); + + var _this = _possibleConstructorReturn(this, (Cursor.__proto__ || Object.getPrototypeOf(Cursor)).call(this, domNode)); + + _this.selection = selection; + _this.textNode = document.createTextNode(Cursor.CONTENTS); + _this.domNode.appendChild(_this.textNode); + _this._length = 0; + return _this; + } + + _createClass(Cursor, [{ + key: 'detach', + value: function detach() { + // super.detach() will also clear domNode.__blot + if (this.parent != null) this.parent.removeChild(this); + } + }, { + key: 'format', + value: function format(name, value) { + if (this._length !== 0) { + return _get(Cursor.prototype.__proto__ || Object.getPrototypeOf(Cursor.prototype), 'format', this).call(this, name, value); + } + var target = this, + index = 0; + while (target != null && target.statics.scope !== _parchment2.default.Scope.BLOCK_BLOT) { + index += target.offset(target.parent); + target = target.parent; + } + if (target != null) { + this._length = Cursor.CONTENTS.length; + target.optimize(); + target.formatAt(index, Cursor.CONTENTS.length, name, value); + this._length = 0; + } + } + }, { + key: 'index', + value: function index(node, offset) { + if (node === this.textNode) return 0; + return _get(Cursor.prototype.__proto__ || Object.getPrototypeOf(Cursor.prototype), 'index', this).call(this, node, offset); + } + }, { + key: 'length', + value: function length() { + return this._length; + } + }, { + key: 'position', + value: function position() { + return [this.textNode, this.textNode.data.length]; + } + }, { + key: 'remove', + value: function remove() { + _get(Cursor.prototype.__proto__ || Object.getPrototypeOf(Cursor.prototype), 'remove', this).call(this); + this.parent = null; + } + }, { + key: 'restore', + value: function restore() { + if (this.selection.composing || this.parent == null) return; + var textNode = this.textNode; + var range = this.selection.getNativeRange(); + var restoreText = void 0, + start = void 0, + end = void 0; + if (range != null && range.start.node === textNode && range.end.node === textNode) { + var _ref = [textNode, range.start.offset, range.end.offset]; + restoreText = _ref[0]; + start = _ref[1]; + end = _ref[2]; + } + // Link format will insert text outside of anchor tag + while (this.domNode.lastChild != null && this.domNode.lastChild !== this.textNode) { + this.domNode.parentNode.insertBefore(this.domNode.lastChild, this.domNode); + } + if (this.textNode.data !== Cursor.CONTENTS) { + var text = this.textNode.data.split(Cursor.CONTENTS).join(''); + if (this.next instanceof _text2.default) { + restoreText = this.next.domNode; + this.next.insertAt(0, text); + this.textNode.data = Cursor.CONTENTS; + } else { + this.textNode.data = text; + this.parent.insertBefore(_parchment2.default.create(this.textNode), this); + this.textNode = document.createTextNode(Cursor.CONTENTS); + this.domNode.appendChild(this.textNode); + } + } + this.remove(); + if (start != null) { + var _map = [start, end].map(function (offset) { + return Math.max(0, Math.min(restoreText.data.length, offset - 1)); + }); + + var _map2 = _slicedToArray(_map, 2); + + start = _map2[0]; + end = _map2[1]; + + return { + startNode: restoreText, + startOffset: start, + endNode: restoreText, + endOffset: end + }; + } + } + }, { + key: 'update', + value: function update(mutations, context) { + var _this2 = this; + + if (mutations.some(function (mutation) { + return mutation.type === 'characterData' && mutation.target === _this2.textNode; + })) { + var range = this.restore(); + if (range) context.range = range; + } + } + }, { + key: 'value', + value: function value() { + return ''; + } + }]); + + return Cursor; +}(_parchment2.default.Embed); + +Cursor.blotName = 'cursor'; +Cursor.className = 'ql-cursor'; +Cursor.tagName = 'span'; +Cursor.CONTENTS = '\uFEFF'; // Zero width no break space + + +exports.default = Cursor; + +/***/ }), +/* 25 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _block = __webpack_require__(4); + +var _block2 = _interopRequireDefault(_block); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Container = function (_Parchment$Container) { + _inherits(Container, _Parchment$Container); + + function Container() { + _classCallCheck(this, Container); + + return _possibleConstructorReturn(this, (Container.__proto__ || Object.getPrototypeOf(Container)).apply(this, arguments)); + } + + return Container; +}(_parchment2.default.Container); + +Container.allowedChildren = [_block2.default, _block.BlockEmbed, Container]; + +exports.default = Container; + +/***/ }), +/* 26 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ColorStyle = exports.ColorClass = exports.ColorAttributor = undefined; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var ColorAttributor = function (_Parchment$Attributor) { + _inherits(ColorAttributor, _Parchment$Attributor); + + function ColorAttributor() { + _classCallCheck(this, ColorAttributor); + + return _possibleConstructorReturn(this, (ColorAttributor.__proto__ || Object.getPrototypeOf(ColorAttributor)).apply(this, arguments)); + } + + _createClass(ColorAttributor, [{ + key: 'value', + value: function value(domNode) { + var value = _get(ColorAttributor.prototype.__proto__ || Object.getPrototypeOf(ColorAttributor.prototype), 'value', this).call(this, domNode); + if (!value.startsWith('rgb(')) return value; + value = value.replace(/^[^\d]+/, '').replace(/[^\d]+$/, ''); + return '#' + value.split(',').map(function (component) { + return ('00' + parseInt(component).toString(16)).slice(-2); + }).join(''); + } + }]); + + return ColorAttributor; +}(_parchment2.default.Attributor.Style); + +var ColorClass = new _parchment2.default.Attributor.Class('color', 'ql-color', { + scope: _parchment2.default.Scope.INLINE +}); +var ColorStyle = new ColorAttributor('color', 'color', { + scope: _parchment2.default.Scope.INLINE +}); + +exports.ColorAttributor = ColorAttributor; +exports.ColorClass = ColorClass; +exports.ColorStyle = ColorStyle; + +/***/ }), +/* 27 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sanitize = exports.default = undefined; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _inline = __webpack_require__(6); + +var _inline2 = _interopRequireDefault(_inline); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Link = function (_Inline) { + _inherits(Link, _Inline); + + function Link() { + _classCallCheck(this, Link); + + return _possibleConstructorReturn(this, (Link.__proto__ || Object.getPrototypeOf(Link)).apply(this, arguments)); + } + + _createClass(Link, [{ + key: 'format', + value: function format(name, value) { + if (name !== this.statics.blotName || !value) return _get(Link.prototype.__proto__ || Object.getPrototypeOf(Link.prototype), 'format', this).call(this, name, value); + value = this.constructor.sanitize(value); + this.domNode.setAttribute('href', value); + } + }], [{ + key: 'create', + value: function create(value) { + var node = _get(Link.__proto__ || Object.getPrototypeOf(Link), 'create', this).call(this, value); + value = this.sanitize(value); + node.setAttribute('href', value); + node.setAttribute('target', '_blank'); + return node; + } + }, { + key: 'formats', + value: function formats(domNode) { + return domNode.getAttribute('href'); + } + }, { + key: 'sanitize', + value: function sanitize(url) { + return _sanitize(url, this.PROTOCOL_WHITELIST) ? url : this.SANITIZED_URL; + } + }]); + + return Link; +}(_inline2.default); + +Link.blotName = 'link'; +Link.tagName = 'A'; +Link.SANITIZED_URL = 'about:blank'; +Link.PROTOCOL_WHITELIST = ['http', 'https', 'mailto', 'tel']; + +function _sanitize(url, protocols) { + var anchor = document.createElement('a'); + anchor.href = url; + var protocol = anchor.href.slice(0, anchor.href.indexOf(':')); + return protocols.indexOf(protocol) > -1; +} + +exports.default = Link; +exports.sanitize = _sanitize; + +/***/ }), +/* 28 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _keyboard = __webpack_require__(23); + +var _keyboard2 = _interopRequireDefault(_keyboard); + +var _dropdown = __webpack_require__(107); + +var _dropdown2 = _interopRequireDefault(_dropdown); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +var optionsCounter = 0; + +function toggleAriaAttribute(element, attribute) { + element.setAttribute(attribute, !(element.getAttribute(attribute) === 'true')); +} + +var Picker = function () { + function Picker(select) { + var _this = this; + + _classCallCheck(this, Picker); + + this.select = select; + this.container = document.createElement('span'); + this.buildPicker(); + this.select.style.display = 'none'; + this.select.parentNode.insertBefore(this.container, this.select); + + this.label.addEventListener('mousedown', function () { + _this.togglePicker(); + }); + this.label.addEventListener('keydown', function (event) { + switch (event.keyCode) { + // Allows the "Enter" key to open the picker + case _keyboard2.default.keys.ENTER: + _this.togglePicker(); + break; + + // Allows the "Escape" key to close the picker + case _keyboard2.default.keys.ESCAPE: + _this.escape(); + event.preventDefault(); + break; + default: + } + }); + this.select.addEventListener('change', this.update.bind(this)); + } + + _createClass(Picker, [{ + key: 'togglePicker', + value: function togglePicker() { + this.container.classList.toggle('ql-expanded'); + // Toggle aria-expanded and aria-hidden to make the picker accessible + toggleAriaAttribute(this.label, 'aria-expanded'); + toggleAriaAttribute(this.options, 'aria-hidden'); + } + }, { + key: 'buildItem', + value: function buildItem(option) { + var _this2 = this; + + var item = document.createElement('span'); + item.tabIndex = '0'; + item.setAttribute('role', 'button'); + + item.classList.add('ql-picker-item'); + if (option.hasAttribute('value')) { + item.setAttribute('data-value', option.getAttribute('value')); + } + if (option.textContent) { + item.setAttribute('data-label', option.textContent); + } + item.addEventListener('click', function () { + _this2.selectItem(item, true); + }); + item.addEventListener('keydown', function (event) { + switch (event.keyCode) { + // Allows the "Enter" key to select an item + case _keyboard2.default.keys.ENTER: + _this2.selectItem(item, true); + event.preventDefault(); + break; + + // Allows the "Escape" key to close the picker + case _keyboard2.default.keys.ESCAPE: + _this2.escape(); + event.preventDefault(); + break; + default: + } + }); + + return item; + } + }, { + key: 'buildLabel', + value: function buildLabel() { + var label = document.createElement('span'); + label.classList.add('ql-picker-label'); + label.innerHTML = _dropdown2.default; + label.tabIndex = '0'; + label.setAttribute('role', 'button'); + label.setAttribute('aria-expanded', 'false'); + this.container.appendChild(label); + return label; + } + }, { + key: 'buildOptions', + value: function buildOptions() { + var _this3 = this; + + var options = document.createElement('span'); + options.classList.add('ql-picker-options'); + + // Don't want screen readers to read this until options are visible + options.setAttribute('aria-hidden', 'true'); + options.tabIndex = '-1'; + + // Need a unique id for aria-controls + options.id = 'ql-picker-options-' + optionsCounter; + optionsCounter += 1; + this.label.setAttribute('aria-controls', options.id); + + this.options = options; + + [].slice.call(this.select.options).forEach(function (option) { + var item = _this3.buildItem(option); + options.appendChild(item); + if (option.selected === true) { + _this3.selectItem(item); + } + }); + this.container.appendChild(options); + } + }, { + key: 'buildPicker', + value: function buildPicker() { + var _this4 = this; + + [].slice.call(this.select.attributes).forEach(function (item) { + _this4.container.setAttribute(item.name, item.value); + }); + this.container.classList.add('ql-picker'); + this.label = this.buildLabel(); + this.buildOptions(); + } + }, { + key: 'escape', + value: function escape() { + var _this5 = this; + + // Close menu and return focus to trigger label + this.close(); + // Need setTimeout for accessibility to ensure that the browser executes + // focus on the next process thread and after any DOM content changes + setTimeout(function () { + return _this5.label.focus(); + }, 1); + } + }, { + key: 'close', + value: function close() { + this.container.classList.remove('ql-expanded'); + this.label.setAttribute('aria-expanded', 'false'); + this.options.setAttribute('aria-hidden', 'true'); + } + }, { + key: 'selectItem', + value: function selectItem(item) { + var trigger = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + + var selected = this.container.querySelector('.ql-selected'); + if (item === selected) return; + if (selected != null) { + selected.classList.remove('ql-selected'); + } + if (item == null) return; + item.classList.add('ql-selected'); + this.select.selectedIndex = [].indexOf.call(item.parentNode.children, item); + if (item.hasAttribute('data-value')) { + this.label.setAttribute('data-value', item.getAttribute('data-value')); + } else { + this.label.removeAttribute('data-value'); + } + if (item.hasAttribute('data-label')) { + this.label.setAttribute('data-label', item.getAttribute('data-label')); + } else { + this.label.removeAttribute('data-label'); + } + if (trigger) { + if (typeof Event === 'function') { + this.select.dispatchEvent(new Event('change')); + } else if ((typeof Event === 'undefined' ? 'undefined' : _typeof(Event)) === 'object') { + // IE11 + var event = document.createEvent('Event'); + event.initEvent('change', true, true); + this.select.dispatchEvent(event); + } + this.close(); + } + } + }, { + key: 'update', + value: function update() { + var option = void 0; + if (this.select.selectedIndex > -1) { + var item = this.container.querySelector('.ql-picker-options').children[this.select.selectedIndex]; + option = this.select.options[this.select.selectedIndex]; + this.selectItem(item); + } else { + this.selectItem(null); + } + var isActive = option != null && option !== this.select.querySelector('option[selected]'); + this.label.classList.toggle('ql-active', isActive); + } + }]); + + return Picker; +}(); + +exports.default = Picker; + +/***/ }), +/* 29 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _quill = __webpack_require__(5); + +var _quill2 = _interopRequireDefault(_quill); + +var _block = __webpack_require__(4); + +var _block2 = _interopRequireDefault(_block); + +var _break = __webpack_require__(16); + +var _break2 = _interopRequireDefault(_break); + +var _container = __webpack_require__(25); + +var _container2 = _interopRequireDefault(_container); + +var _cursor = __webpack_require__(24); + +var _cursor2 = _interopRequireDefault(_cursor); + +var _embed = __webpack_require__(35); + +var _embed2 = _interopRequireDefault(_embed); + +var _inline = __webpack_require__(6); + +var _inline2 = _interopRequireDefault(_inline); + +var _scroll = __webpack_require__(22); + +var _scroll2 = _interopRequireDefault(_scroll); + +var _text = __webpack_require__(7); + +var _text2 = _interopRequireDefault(_text); + +var _clipboard = __webpack_require__(55); + +var _clipboard2 = _interopRequireDefault(_clipboard); + +var _history = __webpack_require__(42); + +var _history2 = _interopRequireDefault(_history); + +var _keyboard = __webpack_require__(23); + +var _keyboard2 = _interopRequireDefault(_keyboard); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +_quill2.default.register({ + 'blots/block': _block2.default, + 'blots/block/embed': _block.BlockEmbed, + 'blots/break': _break2.default, + 'blots/container': _container2.default, + 'blots/cursor': _cursor2.default, + 'blots/embed': _embed2.default, + 'blots/inline': _inline2.default, + 'blots/scroll': _scroll2.default, + 'blots/text': _text2.default, + + 'modules/clipboard': _clipboard2.default, + 'modules/history': _history2.default, + 'modules/keyboard': _keyboard2.default +}); + +_parchment2.default.register(_block2.default, _break2.default, _cursor2.default, _inline2.default, _scroll2.default, _text2.default); + +exports.default = _quill2.default; + +/***/ }), +/* 30 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var Registry = __webpack_require__(1); +var ShadowBlot = /** @class */ (function () { + function ShadowBlot(domNode) { + this.domNode = domNode; + // @ts-ignore + this.domNode[Registry.DATA_KEY] = { blot: this }; + } + Object.defineProperty(ShadowBlot.prototype, "statics", { + // Hack for accessing inherited static methods + get: function () { + return this.constructor; + }, + enumerable: true, + configurable: true + }); + ShadowBlot.create = function (value) { + if (this.tagName == null) { + throw new Registry.ParchmentError('Blot definition missing tagName'); + } + var node; + if (Array.isArray(this.tagName)) { + if (typeof value === 'string') { + value = value.toUpperCase(); + if (parseInt(value).toString() === value) { + value = parseInt(value); + } + } + if (typeof value === 'number') { + node = document.createElement(this.tagName[value - 1]); + } + else if (this.tagName.indexOf(value) > -1) { + node = document.createElement(value); + } + else { + node = document.createElement(this.tagName[0]); + } + } + else { + node = document.createElement(this.tagName); + } + if (this.className) { + node.classList.add(this.className); + } + return node; + }; + ShadowBlot.prototype.attach = function () { + if (this.parent != null) { + this.scroll = this.parent.scroll; + } + }; + ShadowBlot.prototype.clone = function () { + var domNode = this.domNode.cloneNode(false); + return Registry.create(domNode); + }; + ShadowBlot.prototype.detach = function () { + if (this.parent != null) + this.parent.removeChild(this); + // @ts-ignore + delete this.domNode[Registry.DATA_KEY]; + }; + ShadowBlot.prototype.deleteAt = function (index, length) { + var blot = this.isolate(index, length); + blot.remove(); + }; + ShadowBlot.prototype.formatAt = function (index, length, name, value) { + var blot = this.isolate(index, length); + if (Registry.query(name, Registry.Scope.BLOT) != null && value) { + blot.wrap(name, value); + } + else if (Registry.query(name, Registry.Scope.ATTRIBUTE) != null) { + var parent = Registry.create(this.statics.scope); + blot.wrap(parent); + parent.format(name, value); + } + }; + ShadowBlot.prototype.insertAt = function (index, value, def) { + var blot = def == null ? Registry.create('text', value) : Registry.create(value, def); + var ref = this.split(index); + this.parent.insertBefore(blot, ref); + }; + ShadowBlot.prototype.insertInto = function (parentBlot, refBlot) { + if (refBlot === void 0) { refBlot = null; } + if (this.parent != null) { + this.parent.children.remove(this); + } + var refDomNode = null; + parentBlot.children.insertBefore(this, refBlot); + if (refBlot != null) { + refDomNode = refBlot.domNode; + } + if (this.domNode.parentNode != parentBlot.domNode || + this.domNode.nextSibling != refDomNode) { + parentBlot.domNode.insertBefore(this.domNode, refDomNode); + } + this.parent = parentBlot; + this.attach(); + }; + ShadowBlot.prototype.isolate = function (index, length) { + var target = this.split(index); + target.split(length); + return target; + }; + ShadowBlot.prototype.length = function () { + return 1; + }; + ShadowBlot.prototype.offset = function (root) { + if (root === void 0) { root = this.parent; } + if (this.parent == null || this == root) + return 0; + return this.parent.children.offset(this) + this.parent.offset(root); + }; + ShadowBlot.prototype.optimize = function (context) { + // TODO clean up once we use WeakMap + // @ts-ignore + if (this.domNode[Registry.DATA_KEY] != null) { + // @ts-ignore + delete this.domNode[Registry.DATA_KEY].mutations; + } + }; + ShadowBlot.prototype.remove = function () { + if (this.domNode.parentNode != null) { + this.domNode.parentNode.removeChild(this.domNode); + } + this.detach(); + }; + ShadowBlot.prototype.replace = function (target) { + if (target.parent == null) + return; + target.parent.insertBefore(this, target.next); + target.remove(); + }; + ShadowBlot.prototype.replaceWith = function (name, value) { + var replacement = typeof name === 'string' ? Registry.create(name, value) : name; + replacement.replace(this); + return replacement; + }; + ShadowBlot.prototype.split = function (index, force) { + return index === 0 ? this : this.next; + }; + ShadowBlot.prototype.update = function (mutations, context) { + // Nothing to do by default + }; + ShadowBlot.prototype.wrap = function (name, value) { + var wrapper = typeof name === 'string' ? Registry.create(name, value) : name; + if (this.parent != null) { + this.parent.insertBefore(wrapper, this.next); + } + wrapper.appendChild(this); + return wrapper; + }; + ShadowBlot.blotName = 'abstract'; + return ShadowBlot; +}()); +exports.default = ShadowBlot; + + +/***/ }), +/* 31 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var attributor_1 = __webpack_require__(12); +var class_1 = __webpack_require__(32); +var style_1 = __webpack_require__(33); +var Registry = __webpack_require__(1); +var AttributorStore = /** @class */ (function () { + function AttributorStore(domNode) { + this.attributes = {}; + this.domNode = domNode; + this.build(); + } + AttributorStore.prototype.attribute = function (attribute, value) { + // verb + if (value) { + if (attribute.add(this.domNode, value)) { + if (attribute.value(this.domNode) != null) { + this.attributes[attribute.attrName] = attribute; + } + else { + delete this.attributes[attribute.attrName]; + } + } + } + else { + attribute.remove(this.domNode); + delete this.attributes[attribute.attrName]; + } + }; + AttributorStore.prototype.build = function () { + var _this = this; + this.attributes = {}; + var attributes = attributor_1.default.keys(this.domNode); + var classes = class_1.default.keys(this.domNode); + var styles = style_1.default.keys(this.domNode); + attributes + .concat(classes) + .concat(styles) + .forEach(function (name) { + var attr = Registry.query(name, Registry.Scope.ATTRIBUTE); + if (attr instanceof attributor_1.default) { + _this.attributes[attr.attrName] = attr; + } + }); + }; + AttributorStore.prototype.copy = function (target) { + var _this = this; + Object.keys(this.attributes).forEach(function (key) { + var value = _this.attributes[key].value(_this.domNode); + target.format(key, value); + }); + }; + AttributorStore.prototype.move = function (target) { + var _this = this; + this.copy(target); + Object.keys(this.attributes).forEach(function (key) { + _this.attributes[key].remove(_this.domNode); + }); + this.attributes = {}; + }; + AttributorStore.prototype.values = function () { + var _this = this; + return Object.keys(this.attributes).reduce(function (attributes, name) { + attributes[name] = _this.attributes[name].value(_this.domNode); + return attributes; + }, {}); + }; + return AttributorStore; +}()); +exports.default = AttributorStore; + + +/***/ }), +/* 32 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || (function () { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +var attributor_1 = __webpack_require__(12); +function match(node, prefix) { + var className = node.getAttribute('class') || ''; + return className.split(/\s+/).filter(function (name) { + return name.indexOf(prefix + "-") === 0; + }); +} +var ClassAttributor = /** @class */ (function (_super) { + __extends(ClassAttributor, _super); + function ClassAttributor() { + return _super !== null && _super.apply(this, arguments) || this; + } + ClassAttributor.keys = function (node) { + return (node.getAttribute('class') || '').split(/\s+/).map(function (name) { + return name + .split('-') + .slice(0, -1) + .join('-'); + }); + }; + ClassAttributor.prototype.add = function (node, value) { + if (!this.canAdd(node, value)) + return false; + this.remove(node); + node.classList.add(this.keyName + "-" + value); + return true; + }; + ClassAttributor.prototype.remove = function (node) { + var matches = match(node, this.keyName); + matches.forEach(function (name) { + node.classList.remove(name); + }); + if (node.classList.length === 0) { + node.removeAttribute('class'); + } + }; + ClassAttributor.prototype.value = function (node) { + var result = match(node, this.keyName)[0] || ''; + var value = result.slice(this.keyName.length + 1); // +1 for hyphen + return this.canAdd(node, value) ? value : ''; + }; + return ClassAttributor; +}(attributor_1.default)); +exports.default = ClassAttributor; + + +/***/ }), +/* 33 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || (function () { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +var attributor_1 = __webpack_require__(12); +function camelize(name) { + var parts = name.split('-'); + var rest = parts + .slice(1) + .map(function (part) { + return part[0].toUpperCase() + part.slice(1); + }) + .join(''); + return parts[0] + rest; +} +var StyleAttributor = /** @class */ (function (_super) { + __extends(StyleAttributor, _super); + function StyleAttributor() { + return _super !== null && _super.apply(this, arguments) || this; + } + StyleAttributor.keys = function (node) { + return (node.getAttribute('style') || '').split(';').map(function (value) { + var arr = value.split(':'); + return arr[0].trim(); + }); + }; + StyleAttributor.prototype.add = function (node, value) { + if (!this.canAdd(node, value)) + return false; + // @ts-ignore + node.style[camelize(this.keyName)] = value; + return true; + }; + StyleAttributor.prototype.remove = function (node) { + // @ts-ignore + node.style[camelize(this.keyName)] = ''; + if (!node.getAttribute('style')) { + node.removeAttribute('style'); + } + }; + StyleAttributor.prototype.value = function (node) { + // @ts-ignore + var value = node.style[camelize(this.keyName)]; + return this.canAdd(node, value) ? value : ''; + }; + return StyleAttributor; +}(attributor_1.default)); +exports.default = StyleAttributor; + + +/***/ }), +/* 34 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +var Theme = function () { + function Theme(quill, options) { + _classCallCheck(this, Theme); + + this.quill = quill; + this.options = options; + this.modules = {}; + } + + _createClass(Theme, [{ + key: 'init', + value: function init() { + var _this = this; + + Object.keys(this.options.modules).forEach(function (name) { + if (_this.modules[name] == null) { + _this.addModule(name); + } + }); + } + }, { + key: 'addModule', + value: function addModule(name) { + var moduleClass = this.quill.constructor.import('modules/' + name); + this.modules[name] = new moduleClass(this.quill, this.options.modules[name] || {}); + return this.modules[name]; + } + }]); + + return Theme; +}(); + +Theme.DEFAULTS = { + modules: {} +}; +Theme.themes = { + 'default': Theme +}; + +exports.default = Theme; + +/***/ }), +/* 35 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _text = __webpack_require__(7); + +var _text2 = _interopRequireDefault(_text); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var GUARD_TEXT = '\uFEFF'; + +var Embed = function (_Parchment$Embed) { + _inherits(Embed, _Parchment$Embed); + + function Embed(node) { + _classCallCheck(this, Embed); + + var _this = _possibleConstructorReturn(this, (Embed.__proto__ || Object.getPrototypeOf(Embed)).call(this, node)); + + _this.contentNode = document.createElement('span'); + _this.contentNode.setAttribute('contenteditable', false); + [].slice.call(_this.domNode.childNodes).forEach(function (childNode) { + _this.contentNode.appendChild(childNode); + }); + _this.leftGuard = document.createTextNode(GUARD_TEXT); + _this.rightGuard = document.createTextNode(GUARD_TEXT); + _this.domNode.appendChild(_this.leftGuard); + _this.domNode.appendChild(_this.contentNode); + _this.domNode.appendChild(_this.rightGuard); + return _this; + } + + _createClass(Embed, [{ + key: 'index', + value: function index(node, offset) { + if (node === this.leftGuard) return 0; + if (node === this.rightGuard) return 1; + return _get(Embed.prototype.__proto__ || Object.getPrototypeOf(Embed.prototype), 'index', this).call(this, node, offset); + } + }, { + key: 'restore', + value: function restore(node) { + var range = void 0, + textNode = void 0; + var text = node.data.split(GUARD_TEXT).join(''); + if (node === this.leftGuard) { + if (this.prev instanceof _text2.default) { + var prevLength = this.prev.length(); + this.prev.insertAt(prevLength, text); + range = { + startNode: this.prev.domNode, + startOffset: prevLength + text.length + }; + } else { + textNode = document.createTextNode(text); + this.parent.insertBefore(_parchment2.default.create(textNode), this); + range = { + startNode: textNode, + startOffset: text.length + }; + } + } else if (node === this.rightGuard) { + if (this.next instanceof _text2.default) { + this.next.insertAt(0, text); + range = { + startNode: this.next.domNode, + startOffset: text.length + }; + } else { + textNode = document.createTextNode(text); + this.parent.insertBefore(_parchment2.default.create(textNode), this.next); + range = { + startNode: textNode, + startOffset: text.length + }; + } + } + node.data = GUARD_TEXT; + return range; + } + }, { + key: 'update', + value: function update(mutations, context) { + var _this2 = this; + + mutations.forEach(function (mutation) { + if (mutation.type === 'characterData' && (mutation.target === _this2.leftGuard || mutation.target === _this2.rightGuard)) { + var range = _this2.restore(mutation.target); + if (range) context.range = range; + } + }); + } + }]); + + return Embed; +}(_parchment2.default.Embed); + +exports.default = Embed; + +/***/ }), +/* 36 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.AlignStyle = exports.AlignClass = exports.AlignAttribute = undefined; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +var config = { + scope: _parchment2.default.Scope.BLOCK, + whitelist: ['right', 'center', 'justify'] +}; + +var AlignAttribute = new _parchment2.default.Attributor.Attribute('align', 'align', config); +var AlignClass = new _parchment2.default.Attributor.Class('align', 'ql-align', config); +var AlignStyle = new _parchment2.default.Attributor.Style('align', 'text-align', config); + +exports.AlignAttribute = AlignAttribute; +exports.AlignClass = AlignClass; +exports.AlignStyle = AlignStyle; + +/***/ }), +/* 37 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.BackgroundStyle = exports.BackgroundClass = undefined; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _color = __webpack_require__(26); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +var BackgroundClass = new _parchment2.default.Attributor.Class('background', 'ql-bg', { + scope: _parchment2.default.Scope.INLINE +}); +var BackgroundStyle = new _color.ColorAttributor('background', 'background-color', { + scope: _parchment2.default.Scope.INLINE +}); + +exports.BackgroundClass = BackgroundClass; +exports.BackgroundStyle = BackgroundStyle; + +/***/ }), +/* 38 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.DirectionStyle = exports.DirectionClass = exports.DirectionAttribute = undefined; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +var config = { + scope: _parchment2.default.Scope.BLOCK, + whitelist: ['rtl'] +}; + +var DirectionAttribute = new _parchment2.default.Attributor.Attribute('direction', 'dir', config); +var DirectionClass = new _parchment2.default.Attributor.Class('direction', 'ql-direction', config); +var DirectionStyle = new _parchment2.default.Attributor.Style('direction', 'direction', config); + +exports.DirectionAttribute = DirectionAttribute; +exports.DirectionClass = DirectionClass; +exports.DirectionStyle = DirectionStyle; + +/***/ }), +/* 39 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.FontClass = exports.FontStyle = undefined; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var config = { + scope: _parchment2.default.Scope.INLINE, + whitelist: ['serif', 'monospace'] +}; + +var FontClass = new _parchment2.default.Attributor.Class('font', 'ql-font', config); + +var FontStyleAttributor = function (_Parchment$Attributor) { + _inherits(FontStyleAttributor, _Parchment$Attributor); + + function FontStyleAttributor() { + _classCallCheck(this, FontStyleAttributor); + + return _possibleConstructorReturn(this, (FontStyleAttributor.__proto__ || Object.getPrototypeOf(FontStyleAttributor)).apply(this, arguments)); + } + + _createClass(FontStyleAttributor, [{ + key: 'value', + value: function value(node) { + return _get(FontStyleAttributor.prototype.__proto__ || Object.getPrototypeOf(FontStyleAttributor.prototype), 'value', this).call(this, node).replace(/["']/g, ''); + } + }]); + + return FontStyleAttributor; +}(_parchment2.default.Attributor.Style); + +var FontStyle = new FontStyleAttributor('font', 'font-family', config); + +exports.FontStyle = FontStyle; +exports.FontClass = FontClass; + +/***/ }), +/* 40 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.SizeStyle = exports.SizeClass = undefined; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +var SizeClass = new _parchment2.default.Attributor.Class('size', 'ql-size', { + scope: _parchment2.default.Scope.INLINE, + whitelist: ['small', 'large', 'huge'] +}); +var SizeStyle = new _parchment2.default.Attributor.Style('size', 'font-size', { + scope: _parchment2.default.Scope.INLINE, + whitelist: ['10px', '18px', '32px'] +}); + +exports.SizeClass = SizeClass; +exports.SizeStyle = SizeStyle; + +/***/ }), +/* 41 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +module.exports = { + 'align': { + '': __webpack_require__(76), + 'center': __webpack_require__(77), + 'right': __webpack_require__(78), + 'justify': __webpack_require__(79) + }, + 'background': __webpack_require__(80), + 'blockquote': __webpack_require__(81), + 'bold': __webpack_require__(82), + 'clean': __webpack_require__(83), + 'code': __webpack_require__(58), + 'code-block': __webpack_require__(58), + 'color': __webpack_require__(84), + 'direction': { + '': __webpack_require__(85), + 'rtl': __webpack_require__(86) + }, + 'float': { + 'center': __webpack_require__(87), + 'full': __webpack_require__(88), + 'left': __webpack_require__(89), + 'right': __webpack_require__(90) + }, + 'formula': __webpack_require__(91), + 'header': { + '1': __webpack_require__(92), + '2': __webpack_require__(93) + }, + 'italic': __webpack_require__(94), + 'image': __webpack_require__(95), + 'indent': { + '+1': __webpack_require__(96), + '-1': __webpack_require__(97) + }, + 'link': __webpack_require__(98), + 'list': { + 'ordered': __webpack_require__(99), + 'bullet': __webpack_require__(100), + 'check': __webpack_require__(101) + }, + 'script': { + 'sub': __webpack_require__(102), + 'super': __webpack_require__(103) + }, + 'strike': __webpack_require__(104), + 'underline': __webpack_require__(105), + 'video': __webpack_require__(106) +}; + +/***/ }), +/* 42 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.getLastChangeIndex = exports.default = undefined; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _quill = __webpack_require__(5); + +var _quill2 = _interopRequireDefault(_quill); + +var _module = __webpack_require__(9); + +var _module2 = _interopRequireDefault(_module); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var History = function (_Module) { + _inherits(History, _Module); + + function History(quill, options) { + _classCallCheck(this, History); + + var _this = _possibleConstructorReturn(this, (History.__proto__ || Object.getPrototypeOf(History)).call(this, quill, options)); + + _this.lastRecorded = 0; + _this.ignoreChange = false; + _this.clear(); + _this.quill.on(_quill2.default.events.EDITOR_CHANGE, function (eventName, delta, oldDelta, source) { + if (eventName !== _quill2.default.events.TEXT_CHANGE || _this.ignoreChange) return; + if (!_this.options.userOnly || source === _quill2.default.sources.USER) { + _this.record(delta, oldDelta); + } else { + _this.transform(delta); + } + }); + _this.quill.keyboard.addBinding({ key: 'Z', shortKey: true }, _this.undo.bind(_this)); + _this.quill.keyboard.addBinding({ key: 'Z', shortKey: true, shiftKey: true }, _this.redo.bind(_this)); + if (/Win/i.test(navigator.platform)) { + _this.quill.keyboard.addBinding({ key: 'Y', shortKey: true }, _this.redo.bind(_this)); + } + return _this; + } + + _createClass(History, [{ + key: 'change', + value: function change(source, dest) { + if (this.stack[source].length === 0) return; + var delta = this.stack[source].pop(); + this.stack[dest].push(delta); + this.lastRecorded = 0; + this.ignoreChange = true; + this.quill.updateContents(delta[source], _quill2.default.sources.USER); + this.ignoreChange = false; + var index = getLastChangeIndex(delta[source]); + this.quill.setSelection(index); + } + }, { + key: 'clear', + value: function clear() { + this.stack = { undo: [], redo: [] }; + } + }, { + key: 'cutoff', + value: function cutoff() { + this.lastRecorded = 0; + } + }, { + key: 'record', + value: function record(changeDelta, oldDelta) { + if (changeDelta.ops.length === 0) return; + this.stack.redo = []; + var undoDelta = this.quill.getContents().diff(oldDelta); + var timestamp = Date.now(); + if (this.lastRecorded + this.options.delay > timestamp && this.stack.undo.length > 0) { + var delta = this.stack.undo.pop(); + undoDelta = undoDelta.compose(delta.undo); + changeDelta = delta.redo.compose(changeDelta); + } else { + this.lastRecorded = timestamp; + } + this.stack.undo.push({ + redo: changeDelta, + undo: undoDelta + }); + if (this.stack.undo.length > this.options.maxStack) { + this.stack.undo.shift(); + } + } + }, { + key: 'redo', + value: function redo() { + this.change('redo', 'undo'); + } + }, { + key: 'transform', + value: function transform(delta) { + this.stack.undo.forEach(function (change) { + change.undo = delta.transform(change.undo, true); + change.redo = delta.transform(change.redo, true); + }); + this.stack.redo.forEach(function (change) { + change.undo = delta.transform(change.undo, true); + change.redo = delta.transform(change.redo, true); + }); + } + }, { + key: 'undo', + value: function undo() { + this.change('undo', 'redo'); + } + }]); + + return History; +}(_module2.default); + +History.DEFAULTS = { + delay: 1000, + maxStack: 100, + userOnly: false +}; + +function endsWithNewlineChange(delta) { + var lastOp = delta.ops[delta.ops.length - 1]; + if (lastOp == null) return false; + if (lastOp.insert != null) { + return typeof lastOp.insert === 'string' && lastOp.insert.endsWith('\n'); + } + if (lastOp.attributes != null) { + return Object.keys(lastOp.attributes).some(function (attr) { + return _parchment2.default.query(attr, _parchment2.default.Scope.BLOCK) != null; + }); + } + return false; +} + +function getLastChangeIndex(delta) { + var deleteLength = delta.reduce(function (length, op) { + length += op.delete || 0; + return length; + }, 0); + var changeIndex = delta.length() - deleteLength; + if (endsWithNewlineChange(delta)) { + changeIndex -= 1; + } + return changeIndex; +} + +exports.default = History; +exports.getLastChangeIndex = getLastChangeIndex; + +/***/ }), +/* 43 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.BaseTooltip = undefined; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _extend = __webpack_require__(3); + +var _extend2 = _interopRequireDefault(_extend); + +var _quillDelta = __webpack_require__(2); + +var _quillDelta2 = _interopRequireDefault(_quillDelta); + +var _emitter = __webpack_require__(8); + +var _emitter2 = _interopRequireDefault(_emitter); + +var _keyboard = __webpack_require__(23); + +var _keyboard2 = _interopRequireDefault(_keyboard); + +var _theme = __webpack_require__(34); + +var _theme2 = _interopRequireDefault(_theme); + +var _colorPicker = __webpack_require__(59); + +var _colorPicker2 = _interopRequireDefault(_colorPicker); + +var _iconPicker = __webpack_require__(60); + +var _iconPicker2 = _interopRequireDefault(_iconPicker); + +var _picker = __webpack_require__(28); + +var _picker2 = _interopRequireDefault(_picker); + +var _tooltip = __webpack_require__(61); + +var _tooltip2 = _interopRequireDefault(_tooltip); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var ALIGNS = [false, 'center', 'right', 'justify']; + +var COLORS = ["#000000", "#e60000", "#ff9900", "#ffff00", "#008a00", "#0066cc", "#9933ff", "#ffffff", "#facccc", "#ffebcc", "#ffffcc", "#cce8cc", "#cce0f5", "#ebd6ff", "#bbbbbb", "#f06666", "#ffc266", "#ffff66", "#66b966", "#66a3e0", "#c285ff", "#888888", "#a10000", "#b26b00", "#b2b200", "#006100", "#0047b2", "#6b24b2", "#444444", "#5c0000", "#663d00", "#666600", "#003700", "#002966", "#3d1466"]; + +var FONTS = [false, 'serif', 'monospace']; + +var HEADERS = ['1', '2', '3', false]; + +var SIZES = ['small', false, 'large', 'huge']; + +var BaseTheme = function (_Theme) { + _inherits(BaseTheme, _Theme); + + function BaseTheme(quill, options) { + _classCallCheck(this, BaseTheme); + + var _this = _possibleConstructorReturn(this, (BaseTheme.__proto__ || Object.getPrototypeOf(BaseTheme)).call(this, quill, options)); + + var listener = function listener(e) { + if (!document.body.contains(quill.root)) { + return document.body.removeEventListener('click', listener); + } + if (_this.tooltip != null && !_this.tooltip.root.contains(e.target) && document.activeElement !== _this.tooltip.textbox && !_this.quill.hasFocus()) { + _this.tooltip.hide(); + } + if (_this.pickers != null) { + _this.pickers.forEach(function (picker) { + if (!picker.container.contains(e.target)) { + picker.close(); + } + }); + } + }; + quill.emitter.listenDOM('click', document.body, listener); + return _this; + } + + _createClass(BaseTheme, [{ + key: 'addModule', + value: function addModule(name) { + var module = _get(BaseTheme.prototype.__proto__ || Object.getPrototypeOf(BaseTheme.prototype), 'addModule', this).call(this, name); + if (name === 'toolbar') { + this.extendToolbar(module); + } + return module; + } + }, { + key: 'buildButtons', + value: function buildButtons(buttons, icons) { + buttons.forEach(function (button) { + var className = button.getAttribute('class') || ''; + className.split(/\s+/).forEach(function (name) { + if (!name.startsWith('ql-')) return; + name = name.slice('ql-'.length); + if (icons[name] == null) return; + if (name === 'direction') { + button.innerHTML = icons[name][''] + icons[name]['rtl']; + } else if (typeof icons[name] === 'string') { + button.innerHTML = icons[name]; + } else { + var value = button.value || ''; + if (value != null && icons[name][value]) { + button.innerHTML = icons[name][value]; + } + } + }); + }); + } + }, { + key: 'buildPickers', + value: function buildPickers(selects, icons) { + var _this2 = this; + + this.pickers = selects.map(function (select) { + if (select.classList.contains('ql-align')) { + if (select.querySelector('option') == null) { + fillSelect(select, ALIGNS); + } + return new _iconPicker2.default(select, icons.align); + } else if (select.classList.contains('ql-background') || select.classList.contains('ql-color')) { + var format = select.classList.contains('ql-background') ? 'background' : 'color'; + if (select.querySelector('option') == null) { + fillSelect(select, COLORS, format === 'background' ? '#ffffff' : '#000000'); + } + return new _colorPicker2.default(select, icons[format]); + } else { + if (select.querySelector('option') == null) { + if (select.classList.contains('ql-font')) { + fillSelect(select, FONTS); + } else if (select.classList.contains('ql-header')) { + fillSelect(select, HEADERS); + } else if (select.classList.contains('ql-size')) { + fillSelect(select, SIZES); + } + } + return new _picker2.default(select); + } + }); + var update = function update() { + _this2.pickers.forEach(function (picker) { + picker.update(); + }); + }; + this.quill.on(_emitter2.default.events.EDITOR_CHANGE, update); + } + }]); + + return BaseTheme; +}(_theme2.default); + +BaseTheme.DEFAULTS = (0, _extend2.default)(true, {}, _theme2.default.DEFAULTS, { + modules: { + toolbar: { + handlers: { + formula: function formula() { + this.quill.theme.tooltip.edit('formula'); + }, + image: function image() { + var _this3 = this; + + var fileInput = this.container.querySelector('input.ql-image[type=file]'); + if (fileInput == null) { + fileInput = document.createElement('input'); + fileInput.setAttribute('type', 'file'); + fileInput.setAttribute('accept', 'image/png, image/gif, image/jpeg, image/bmp, image/x-icon'); + fileInput.classList.add('ql-image'); + fileInput.addEventListener('change', function () { + if (fileInput.files != null && fileInput.files[0] != null) { + var reader = new FileReader(); + reader.onload = function (e) { + var range = _this3.quill.getSelection(true); + _this3.quill.updateContents(new _quillDelta2.default().retain(range.index).delete(range.length).insert({ image: e.target.result }), _emitter2.default.sources.USER); + _this3.quill.setSelection(range.index + 1, _emitter2.default.sources.SILENT); + fileInput.value = ""; + }; + reader.readAsDataURL(fileInput.files[0]); + } + }); + this.container.appendChild(fileInput); + } + fileInput.click(); + }, + video: function video() { + this.quill.theme.tooltip.edit('video'); + } + } + } + } +}); + +var BaseTooltip = function (_Tooltip) { + _inherits(BaseTooltip, _Tooltip); + + function BaseTooltip(quill, boundsContainer) { + _classCallCheck(this, BaseTooltip); + + var _this4 = _possibleConstructorReturn(this, (BaseTooltip.__proto__ || Object.getPrototypeOf(BaseTooltip)).call(this, quill, boundsContainer)); + + _this4.textbox = _this4.root.querySelector('input[type="text"]'); + _this4.listen(); + return _this4; + } + + _createClass(BaseTooltip, [{ + key: 'listen', + value: function listen() { + var _this5 = this; + + this.textbox.addEventListener('keydown', function (event) { + if (_keyboard2.default.match(event, 'enter')) { + _this5.save(); + event.preventDefault(); + } else if (_keyboard2.default.match(event, 'escape')) { + _this5.cancel(); + event.preventDefault(); + } + }); + } + }, { + key: 'cancel', + value: function cancel() { + this.hide(); + } + }, { + key: 'edit', + value: function edit() { + var mode = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'link'; + var preview = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + this.root.classList.remove('ql-hidden'); + this.root.classList.add('ql-editing'); + if (preview != null) { + this.textbox.value = preview; + } else if (mode !== this.root.getAttribute('data-mode')) { + this.textbox.value = ''; + } + this.position(this.quill.getBounds(this.quill.selection.savedRange)); + this.textbox.select(); + this.textbox.setAttribute('placeholder', this.textbox.getAttribute('data-' + mode) || ''); + this.root.setAttribute('data-mode', mode); + } + }, { + key: 'restoreFocus', + value: function restoreFocus() { + var scrollTop = this.quill.scrollingContainer.scrollTop; + this.quill.focus(); + this.quill.scrollingContainer.scrollTop = scrollTop; + } + }, { + key: 'save', + value: function save() { + var value = this.textbox.value; + switch (this.root.getAttribute('data-mode')) { + case 'link': + { + var scrollTop = this.quill.root.scrollTop; + if (this.linkRange) { + this.quill.formatText(this.linkRange, 'link', value, _emitter2.default.sources.USER); + delete this.linkRange; + } else { + this.restoreFocus(); + this.quill.format('link', value, _emitter2.default.sources.USER); + } + this.quill.root.scrollTop = scrollTop; + break; + } + case 'video': + { + value = extractVideoUrl(value); + } // eslint-disable-next-line no-fallthrough + case 'formula': + { + if (!value) break; + var range = this.quill.getSelection(true); + if (range != null) { + var index = range.index + range.length; + this.quill.insertEmbed(index, this.root.getAttribute('data-mode'), value, _emitter2.default.sources.USER); + if (this.root.getAttribute('data-mode') === 'formula') { + this.quill.insertText(index + 1, ' ', _emitter2.default.sources.USER); + } + this.quill.setSelection(index + 2, _emitter2.default.sources.USER); + } + break; + } + default: + } + this.textbox.value = ''; + this.hide(); + } + }]); + + return BaseTooltip; +}(_tooltip2.default); + +function extractVideoUrl(url) { + var match = url.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtube\.com\/watch.*v=([a-zA-Z0-9_-]+)/) || url.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtu\.be\/([a-zA-Z0-9_-]+)/); + if (match) { + return (match[1] || 'https') + '://www.youtube.com/embed/' + match[2] + '?showinfo=0'; + } + if (match = url.match(/^(?:(https?):\/\/)?(?:www\.)?vimeo\.com\/(\d+)/)) { + // eslint-disable-line no-cond-assign + return (match[1] || 'https') + '://player.vimeo.com/video/' + match[2] + '/'; + } + return url; +} + +function fillSelect(select, values) { + var defaultValue = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; + + values.forEach(function (value) { + var option = document.createElement('option'); + if (value === defaultValue) { + option.setAttribute('selected', 'selected'); + } else { + option.setAttribute('value', value); + } + select.appendChild(option); + }); +} + +exports.BaseTooltip = BaseTooltip; +exports.default = BaseTheme; + +/***/ }), +/* 44 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var LinkedList = /** @class */ (function () { + function LinkedList() { + this.head = this.tail = null; + this.length = 0; + } + LinkedList.prototype.append = function () { + var nodes = []; + for (var _i = 0; _i < arguments.length; _i++) { + nodes[_i] = arguments[_i]; + } + this.insertBefore(nodes[0], null); + if (nodes.length > 1) { + this.append.apply(this, nodes.slice(1)); + } + }; + LinkedList.prototype.contains = function (node) { + var cur, next = this.iterator(); + while ((cur = next())) { + if (cur === node) + return true; + } + return false; + }; + LinkedList.prototype.insertBefore = function (node, refNode) { + if (!node) + return; + node.next = refNode; + if (refNode != null) { + node.prev = refNode.prev; + if (refNode.prev != null) { + refNode.prev.next = node; + } + refNode.prev = node; + if (refNode === this.head) { + this.head = node; + } + } + else if (this.tail != null) { + this.tail.next = node; + node.prev = this.tail; + this.tail = node; + } + else { + node.prev = null; + this.head = this.tail = node; + } + this.length += 1; + }; + LinkedList.prototype.offset = function (target) { + var index = 0, cur = this.head; + while (cur != null) { + if (cur === target) + return index; + index += cur.length(); + cur = cur.next; + } + return -1; + }; + LinkedList.prototype.remove = function (node) { + if (!this.contains(node)) + return; + if (node.prev != null) + node.prev.next = node.next; + if (node.next != null) + node.next.prev = node.prev; + if (node === this.head) + this.head = node.next; + if (node === this.tail) + this.tail = node.prev; + this.length -= 1; + }; + LinkedList.prototype.iterator = function (curNode) { + if (curNode === void 0) { curNode = this.head; } + // TODO use yield when we can + return function () { + var ret = curNode; + if (curNode != null) + curNode = curNode.next; + return ret; + }; + }; + LinkedList.prototype.find = function (index, inclusive) { + if (inclusive === void 0) { inclusive = false; } + var cur, next = this.iterator(); + while ((cur = next())) { + var length = cur.length(); + if (index < length || + (inclusive && index === length && (cur.next == null || cur.next.length() !== 0))) { + return [cur, index]; + } + index -= length; + } + return [null, 0]; + }; + LinkedList.prototype.forEach = function (callback) { + var cur, next = this.iterator(); + while ((cur = next())) { + callback(cur); + } + }; + LinkedList.prototype.forEachAt = function (index, length, callback) { + if (length <= 0) + return; + var _a = this.find(index), startNode = _a[0], offset = _a[1]; + var cur, curIndex = index - offset, next = this.iterator(startNode); + while ((cur = next()) && curIndex < index + length) { + var curLength = cur.length(); + if (index > curIndex) { + callback(cur, index - curIndex, Math.min(length, curIndex + curLength - index)); + } + else { + callback(cur, 0, Math.min(curLength, index + length - curIndex)); + } + curIndex += curLength; + } + }; + LinkedList.prototype.map = function (callback) { + return this.reduce(function (memo, cur) { + memo.push(callback(cur)); + return memo; + }, []); + }; + LinkedList.prototype.reduce = function (callback, memo) { + var cur, next = this.iterator(); + while ((cur = next())) { + memo = callback(memo, cur); + } + return memo; + }; + return LinkedList; +}()); +exports.default = LinkedList; + + +/***/ }), +/* 45 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || (function () { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +var container_1 = __webpack_require__(17); +var Registry = __webpack_require__(1); +var OBSERVER_CONFIG = { + attributes: true, + characterData: true, + characterDataOldValue: true, + childList: true, + subtree: true, +}; +var MAX_OPTIMIZE_ITERATIONS = 100; +var ScrollBlot = /** @class */ (function (_super) { + __extends(ScrollBlot, _super); + function ScrollBlot(node) { + var _this = _super.call(this, node) || this; + _this.scroll = _this; + _this.observer = new MutationObserver(function (mutations) { + _this.update(mutations); + }); + _this.observer.observe(_this.domNode, OBSERVER_CONFIG); + _this.attach(); + return _this; + } + ScrollBlot.prototype.detach = function () { + _super.prototype.detach.call(this); + this.observer.disconnect(); + }; + ScrollBlot.prototype.deleteAt = function (index, length) { + this.update(); + if (index === 0 && length === this.length()) { + this.children.forEach(function (child) { + child.remove(); + }); + } + else { + _super.prototype.deleteAt.call(this, index, length); + } + }; + ScrollBlot.prototype.formatAt = function (index, length, name, value) { + this.update(); + _super.prototype.formatAt.call(this, index, length, name, value); + }; + ScrollBlot.prototype.insertAt = function (index, value, def) { + this.update(); + _super.prototype.insertAt.call(this, index, value, def); + }; + ScrollBlot.prototype.optimize = function (mutations, context) { + var _this = this; + if (mutations === void 0) { mutations = []; } + if (context === void 0) { context = {}; } + _super.prototype.optimize.call(this, context); + // We must modify mutations directly, cannot make copy and then modify + var records = [].slice.call(this.observer.takeRecords()); + // Array.push currently seems to be implemented by a non-tail recursive function + // so we cannot just mutations.push.apply(mutations, this.observer.takeRecords()); + while (records.length > 0) + mutations.push(records.pop()); + // TODO use WeakMap + var mark = function (blot, markParent) { + if (markParent === void 0) { markParent = true; } + if (blot == null || blot === _this) + return; + if (blot.domNode.parentNode == null) + return; + // @ts-ignore + if (blot.domNode[Registry.DATA_KEY].mutations == null) { + // @ts-ignore + blot.domNode[Registry.DATA_KEY].mutations = []; + } + if (markParent) + mark(blot.parent); + }; + var optimize = function (blot) { + // Post-order traversal + if ( + // @ts-ignore + blot.domNode[Registry.DATA_KEY] == null || + // @ts-ignore + blot.domNode[Registry.DATA_KEY].mutations == null) { + return; + } + if (blot instanceof container_1.default) { + blot.children.forEach(optimize); + } + blot.optimize(context); + }; + var remaining = mutations; + for (var i = 0; remaining.length > 0; i += 1) { + if (i >= MAX_OPTIMIZE_ITERATIONS) { + throw new Error('[Parchment] Maximum optimize iterations reached'); + } + remaining.forEach(function (mutation) { + var blot = Registry.find(mutation.target, true); + if (blot == null) + return; + if (blot.domNode === mutation.target) { + if (mutation.type === 'childList') { + mark(Registry.find(mutation.previousSibling, false)); + [].forEach.call(mutation.addedNodes, function (node) { + var child = Registry.find(node, false); + mark(child, false); + if (child instanceof container_1.default) { + child.children.forEach(function (grandChild) { + mark(grandChild, false); + }); + } + }); + } + else if (mutation.type === 'attributes') { + mark(blot.prev); + } + } + mark(blot); + }); + this.children.forEach(optimize); + remaining = [].slice.call(this.observer.takeRecords()); + records = remaining.slice(); + while (records.length > 0) + mutations.push(records.pop()); + } + }; + ScrollBlot.prototype.update = function (mutations, context) { + var _this = this; + if (context === void 0) { context = {}; } + mutations = mutations || this.observer.takeRecords(); + // TODO use WeakMap + mutations + .map(function (mutation) { + var blot = Registry.find(mutation.target, true); + if (blot == null) + return null; + // @ts-ignore + if (blot.domNode[Registry.DATA_KEY].mutations == null) { + // @ts-ignore + blot.domNode[Registry.DATA_KEY].mutations = [mutation]; + return blot; + } + else { + // @ts-ignore + blot.domNode[Registry.DATA_KEY].mutations.push(mutation); + return null; + } + }) + .forEach(function (blot) { + if (blot == null || + blot === _this || + //@ts-ignore + blot.domNode[Registry.DATA_KEY] == null) + return; + // @ts-ignore + blot.update(blot.domNode[Registry.DATA_KEY].mutations || [], context); + }); + // @ts-ignore + if (this.domNode[Registry.DATA_KEY].mutations != null) { + // @ts-ignore + _super.prototype.update.call(this, this.domNode[Registry.DATA_KEY].mutations, context); + } + this.optimize(mutations, context); + }; + ScrollBlot.blotName = 'scroll'; + ScrollBlot.defaultChild = 'block'; + ScrollBlot.scope = Registry.Scope.BLOCK_BLOT; + ScrollBlot.tagName = 'DIV'; + return ScrollBlot; +}(container_1.default)); +exports.default = ScrollBlot; + + +/***/ }), +/* 46 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || (function () { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +var format_1 = __webpack_require__(18); +var Registry = __webpack_require__(1); +// Shallow object comparison +function isEqual(obj1, obj2) { + if (Object.keys(obj1).length !== Object.keys(obj2).length) + return false; + // @ts-ignore + for (var prop in obj1) { + // @ts-ignore + if (obj1[prop] !== obj2[prop]) + return false; + } + return true; +} +var InlineBlot = /** @class */ (function (_super) { + __extends(InlineBlot, _super); + function InlineBlot() { + return _super !== null && _super.apply(this, arguments) || this; + } + InlineBlot.formats = function (domNode) { + if (domNode.tagName === InlineBlot.tagName) + return undefined; + return _super.formats.call(this, domNode); + }; + InlineBlot.prototype.format = function (name, value) { + var _this = this; + if (name === this.statics.blotName && !value) { + this.children.forEach(function (child) { + if (!(child instanceof format_1.default)) { + child = child.wrap(InlineBlot.blotName, true); + } + _this.attributes.copy(child); + }); + this.unwrap(); + } + else { + _super.prototype.format.call(this, name, value); + } + }; + InlineBlot.prototype.formatAt = function (index, length, name, value) { + if (this.formats()[name] != null || Registry.query(name, Registry.Scope.ATTRIBUTE)) { + var blot = this.isolate(index, length); + blot.format(name, value); + } + else { + _super.prototype.formatAt.call(this, index, length, name, value); + } + }; + InlineBlot.prototype.optimize = function (context) { + _super.prototype.optimize.call(this, context); + var formats = this.formats(); + if (Object.keys(formats).length === 0) { + return this.unwrap(); // unformatted span + } + var next = this.next; + if (next instanceof InlineBlot && next.prev === this && isEqual(formats, next.formats())) { + next.moveChildren(this); + next.remove(); + } + }; + InlineBlot.blotName = 'inline'; + InlineBlot.scope = Registry.Scope.INLINE_BLOT; + InlineBlot.tagName = 'SPAN'; + return InlineBlot; +}(format_1.default)); +exports.default = InlineBlot; + + +/***/ }), +/* 47 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || (function () { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +var format_1 = __webpack_require__(18); +var Registry = __webpack_require__(1); +var BlockBlot = /** @class */ (function (_super) { + __extends(BlockBlot, _super); + function BlockBlot() { + return _super !== null && _super.apply(this, arguments) || this; + } + BlockBlot.formats = function (domNode) { + var tagName = Registry.query(BlockBlot.blotName).tagName; + if (domNode.tagName === tagName) + return undefined; + return _super.formats.call(this, domNode); + }; + BlockBlot.prototype.format = function (name, value) { + if (Registry.query(name, Registry.Scope.BLOCK) == null) { + return; + } + else if (name === this.statics.blotName && !value) { + this.replaceWith(BlockBlot.blotName); + } + else { + _super.prototype.format.call(this, name, value); + } + }; + BlockBlot.prototype.formatAt = function (index, length, name, value) { + if (Registry.query(name, Registry.Scope.BLOCK) != null) { + this.format(name, value); + } + else { + _super.prototype.formatAt.call(this, index, length, name, value); + } + }; + BlockBlot.prototype.insertAt = function (index, value, def) { + if (def == null || Registry.query(value, Registry.Scope.INLINE) != null) { + // Insert text or inline + _super.prototype.insertAt.call(this, index, value, def); + } + else { + var after = this.split(index); + var blot = Registry.create(value, def); + after.parent.insertBefore(blot, after); + } + }; + BlockBlot.prototype.update = function (mutations, context) { + if (navigator.userAgent.match(/Trident/)) { + this.build(); + } + else { + _super.prototype.update.call(this, mutations, context); + } + }; + BlockBlot.blotName = 'block'; + BlockBlot.scope = Registry.Scope.BLOCK_BLOT; + BlockBlot.tagName = 'P'; + return BlockBlot; +}(format_1.default)); +exports.default = BlockBlot; + + +/***/ }), +/* 48 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || (function () { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +var leaf_1 = __webpack_require__(19); +var EmbedBlot = /** @class */ (function (_super) { + __extends(EmbedBlot, _super); + function EmbedBlot() { + return _super !== null && _super.apply(this, arguments) || this; + } + EmbedBlot.formats = function (domNode) { + return undefined; + }; + EmbedBlot.prototype.format = function (name, value) { + // super.formatAt wraps, which is what we want in general, + // but this allows subclasses to overwrite for formats + // that just apply to particular embeds + _super.prototype.formatAt.call(this, 0, this.length(), name, value); + }; + EmbedBlot.prototype.formatAt = function (index, length, name, value) { + if (index === 0 && length === this.length()) { + this.format(name, value); + } + else { + _super.prototype.formatAt.call(this, index, length, name, value); + } + }; + EmbedBlot.prototype.formats = function () { + return this.statics.formats(this.domNode); + }; + return EmbedBlot; +}(leaf_1.default)); +exports.default = EmbedBlot; + + +/***/ }), +/* 49 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || (function () { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +var leaf_1 = __webpack_require__(19); +var Registry = __webpack_require__(1); +var TextBlot = /** @class */ (function (_super) { + __extends(TextBlot, _super); + function TextBlot(node) { + var _this = _super.call(this, node) || this; + _this.text = _this.statics.value(_this.domNode); + return _this; + } + TextBlot.create = function (value) { + return document.createTextNode(value); + }; + TextBlot.value = function (domNode) { + var text = domNode.data; + // @ts-ignore + if (text['normalize']) + text = text['normalize'](); + return text; + }; + TextBlot.prototype.deleteAt = function (index, length) { + this.domNode.data = this.text = this.text.slice(0, index) + this.text.slice(index + length); + }; + TextBlot.prototype.index = function (node, offset) { + if (this.domNode === node) { + return offset; + } + return -1; + }; + TextBlot.prototype.insertAt = function (index, value, def) { + if (def == null) { + this.text = this.text.slice(0, index) + value + this.text.slice(index); + this.domNode.data = this.text; + } + else { + _super.prototype.insertAt.call(this, index, value, def); + } + }; + TextBlot.prototype.length = function () { + return this.text.length; + }; + TextBlot.prototype.optimize = function (context) { + _super.prototype.optimize.call(this, context); + this.text = this.statics.value(this.domNode); + if (this.text.length === 0) { + this.remove(); + } + else if (this.next instanceof TextBlot && this.next.prev === this) { + this.insertAt(this.length(), this.next.value()); + this.next.remove(); + } + }; + TextBlot.prototype.position = function (index, inclusive) { + if (inclusive === void 0) { inclusive = false; } + return [this.domNode, index]; + }; + TextBlot.prototype.split = function (index, force) { + if (force === void 0) { force = false; } + if (!force) { + if (index === 0) + return this; + if (index === this.length()) + return this.next; + } + var after = Registry.create(this.domNode.splitText(index)); + this.parent.insertBefore(after, this.next); + this.text = this.statics.value(this.domNode); + return after; + }; + TextBlot.prototype.update = function (mutations, context) { + var _this = this; + if (mutations.some(function (mutation) { + return mutation.type === 'characterData' && mutation.target === _this.domNode; + })) { + this.text = this.statics.value(this.domNode); + } + }; + TextBlot.prototype.value = function () { + return this.text; + }; + TextBlot.blotName = 'text'; + TextBlot.scope = Registry.Scope.INLINE_BLOT; + return TextBlot; +}(leaf_1.default)); +exports.default = TextBlot; + + +/***/ }), +/* 50 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +var elem = document.createElement('div'); +elem.classList.toggle('test-class', false); +if (elem.classList.contains('test-class')) { + var _toggle = DOMTokenList.prototype.toggle; + DOMTokenList.prototype.toggle = function (token, force) { + if (arguments.length > 1 && !this.contains(token) === !force) { + return force; + } else { + return _toggle.call(this, token); + } + }; +} + +if (!String.prototype.startsWith) { + String.prototype.startsWith = function (searchString, position) { + position = position || 0; + return this.substr(position, searchString.length) === searchString; + }; +} + +if (!String.prototype.endsWith) { + String.prototype.endsWith = function (searchString, position) { + var subjectString = this.toString(); + if (typeof position !== 'number' || !isFinite(position) || Math.floor(position) !== position || position > subjectString.length) { + position = subjectString.length; + } + position -= searchString.length; + var lastIndex = subjectString.indexOf(searchString, position); + return lastIndex !== -1 && lastIndex === position; + }; +} + +if (!Array.prototype.find) { + Object.defineProperty(Array.prototype, "find", { + value: function value(predicate) { + if (this === null) { + throw new TypeError('Array.prototype.find called on null or undefined'); + } + if (typeof predicate !== 'function') { + throw new TypeError('predicate must be a function'); + } + var list = Object(this); + var length = list.length >>> 0; + var thisArg = arguments[1]; + var value; + + for (var i = 0; i < length; i++) { + value = list[i]; + if (predicate.call(thisArg, value, i, list)) { + return value; + } + } + return undefined; + } + }); +} + +document.addEventListener("DOMContentLoaded", function () { + // Disable resizing in Firefox + document.execCommand("enableObjectResizing", false, false); + // Disable automatic linkifying in IE11 + document.execCommand("autoUrlDetect", false, false); +}); + +/***/ }), +/* 51 */ +/***/ (function(module, exports) { + +/** + * This library modifies the diff-patch-match library by Neil Fraser + * by removing the patch and match functionality and certain advanced + * options in the diff function. The original license is as follows: + * + * === + * + * Diff Match and Patch + * + * Copyright 2006 Google Inc. + * http://code.google.com/p/google-diff-match-patch/ + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +/** + * The data structure representing a diff is an array of tuples: + * [[DIFF_DELETE, 'Hello'], [DIFF_INSERT, 'Goodbye'], [DIFF_EQUAL, ' world.']] + * which means: delete 'Hello', add 'Goodbye' and keep ' world.' + */ +var DIFF_DELETE = -1; +var DIFF_INSERT = 1; +var DIFF_EQUAL = 0; + + +/** + * Find the differences between two texts. Simplifies the problem by stripping + * any common prefix or suffix off the texts before diffing. + * @param {string} text1 Old string to be diffed. + * @param {string} text2 New string to be diffed. + * @param {Int} cursor_pos Expected edit position in text1 (optional) + * @return {Array} Array of diff tuples. + */ +function diff_main(text1, text2, cursor_pos) { + // Check for equality (speedup). + if (text1 == text2) { + if (text1) { + return [[DIFF_EQUAL, text1]]; + } + return []; + } + + // Check cursor_pos within bounds + if (cursor_pos < 0 || text1.length < cursor_pos) { + cursor_pos = null; + } + + // Trim off common prefix (speedup). + var commonlength = diff_commonPrefix(text1, text2); + var commonprefix = text1.substring(0, commonlength); + text1 = text1.substring(commonlength); + text2 = text2.substring(commonlength); + + // Trim off common suffix (speedup). + commonlength = diff_commonSuffix(text1, text2); + var commonsuffix = text1.substring(text1.length - commonlength); + text1 = text1.substring(0, text1.length - commonlength); + text2 = text2.substring(0, text2.length - commonlength); + + // Compute the diff on the middle block. + var diffs = diff_compute_(text1, text2); + + // Restore the prefix and suffix. + if (commonprefix) { + diffs.unshift([DIFF_EQUAL, commonprefix]); + } + if (commonsuffix) { + diffs.push([DIFF_EQUAL, commonsuffix]); + } + diff_cleanupMerge(diffs); + if (cursor_pos != null) { + diffs = fix_cursor(diffs, cursor_pos); + } + diffs = fix_emoji(diffs); + return diffs; +}; + + +/** + * Find the differences between two texts. Assumes that the texts do not + * have any common prefix or suffix. + * @param {string} text1 Old string to be diffed. + * @param {string} text2 New string to be diffed. + * @return {Array} Array of diff tuples. + */ +function diff_compute_(text1, text2) { + var diffs; + + if (!text1) { + // Just add some text (speedup). + return [[DIFF_INSERT, text2]]; + } + + if (!text2) { + // Just delete some text (speedup). + return [[DIFF_DELETE, text1]]; + } + + var longtext = text1.length > text2.length ? text1 : text2; + var shorttext = text1.length > text2.length ? text2 : text1; + var i = longtext.indexOf(shorttext); + if (i != -1) { + // Shorter text is inside the longer text (speedup). + diffs = [[DIFF_INSERT, longtext.substring(0, i)], + [DIFF_EQUAL, shorttext], + [DIFF_INSERT, longtext.substring(i + shorttext.length)]]; + // Swap insertions for deletions if diff is reversed. + if (text1.length > text2.length) { + diffs[0][0] = diffs[2][0] = DIFF_DELETE; + } + return diffs; + } + + if (shorttext.length == 1) { + // Single character string. + // After the previous speedup, the character can't be an equality. + return [[DIFF_DELETE, text1], [DIFF_INSERT, text2]]; + } + + // Check to see if the problem can be split in two. + var hm = diff_halfMatch_(text1, text2); + if (hm) { + // A half-match was found, sort out the return data. + var text1_a = hm[0]; + var text1_b = hm[1]; + var text2_a = hm[2]; + var text2_b = hm[3]; + var mid_common = hm[4]; + // Send both pairs off for separate processing. + var diffs_a = diff_main(text1_a, text2_a); + var diffs_b = diff_main(text1_b, text2_b); + // Merge the results. + return diffs_a.concat([[DIFF_EQUAL, mid_common]], diffs_b); + } + + return diff_bisect_(text1, text2); +}; + + +/** + * Find the 'middle snake' of a diff, split the problem in two + * and return the recursively constructed diff. + * See Myers 1986 paper: An O(ND) Difference Algorithm and Its Variations. + * @param {string} text1 Old string to be diffed. + * @param {string} text2 New string to be diffed. + * @return {Array} Array of diff tuples. + * @private + */ +function diff_bisect_(text1, text2) { + // Cache the text lengths to prevent multiple calls. + var text1_length = text1.length; + var text2_length = text2.length; + var max_d = Math.ceil((text1_length + text2_length) / 2); + var v_offset = max_d; + var v_length = 2 * max_d; + var v1 = new Array(v_length); + var v2 = new Array(v_length); + // Setting all elements to -1 is faster in Chrome & Firefox than mixing + // integers and undefined. + for (var x = 0; x < v_length; x++) { + v1[x] = -1; + v2[x] = -1; + } + v1[v_offset + 1] = 0; + v2[v_offset + 1] = 0; + var delta = text1_length - text2_length; + // If the total number of characters is odd, then the front path will collide + // with the reverse path. + var front = (delta % 2 != 0); + // Offsets for start and end of k loop. + // Prevents mapping of space beyond the grid. + var k1start = 0; + var k1end = 0; + var k2start = 0; + var k2end = 0; + for (var d = 0; d < max_d; d++) { + // Walk the front path one step. + for (var k1 = -d + k1start; k1 <= d - k1end; k1 += 2) { + var k1_offset = v_offset + k1; + var x1; + if (k1 == -d || (k1 != d && v1[k1_offset - 1] < v1[k1_offset + 1])) { + x1 = v1[k1_offset + 1]; + } else { + x1 = v1[k1_offset - 1] + 1; + } + var y1 = x1 - k1; + while (x1 < text1_length && y1 < text2_length && + text1.charAt(x1) == text2.charAt(y1)) { + x1++; + y1++; + } + v1[k1_offset] = x1; + if (x1 > text1_length) { + // Ran off the right of the graph. + k1end += 2; + } else if (y1 > text2_length) { + // Ran off the bottom of the graph. + k1start += 2; + } else if (front) { + var k2_offset = v_offset + delta - k1; + if (k2_offset >= 0 && k2_offset < v_length && v2[k2_offset] != -1) { + // Mirror x2 onto top-left coordinate system. + var x2 = text1_length - v2[k2_offset]; + if (x1 >= x2) { + // Overlap detected. + return diff_bisectSplit_(text1, text2, x1, y1); + } + } + } + } + + // Walk the reverse path one step. + for (var k2 = -d + k2start; k2 <= d - k2end; k2 += 2) { + var k2_offset = v_offset + k2; + var x2; + if (k2 == -d || (k2 != d && v2[k2_offset - 1] < v2[k2_offset + 1])) { + x2 = v2[k2_offset + 1]; + } else { + x2 = v2[k2_offset - 1] + 1; + } + var y2 = x2 - k2; + while (x2 < text1_length && y2 < text2_length && + text1.charAt(text1_length - x2 - 1) == + text2.charAt(text2_length - y2 - 1)) { + x2++; + y2++; + } + v2[k2_offset] = x2; + if (x2 > text1_length) { + // Ran off the left of the graph. + k2end += 2; + } else if (y2 > text2_length) { + // Ran off the top of the graph. + k2start += 2; + } else if (!front) { + var k1_offset = v_offset + delta - k2; + if (k1_offset >= 0 && k1_offset < v_length && v1[k1_offset] != -1) { + var x1 = v1[k1_offset]; + var y1 = v_offset + x1 - k1_offset; + // Mirror x2 onto top-left coordinate system. + x2 = text1_length - x2; + if (x1 >= x2) { + // Overlap detected. + return diff_bisectSplit_(text1, text2, x1, y1); + } + } + } + } + } + // Diff took too long and hit the deadline or + // number of diffs equals number of characters, no commonality at all. + return [[DIFF_DELETE, text1], [DIFF_INSERT, text2]]; +}; + + +/** + * Given the location of the 'middle snake', split the diff in two parts + * and recurse. + * @param {string} text1 Old string to be diffed. + * @param {string} text2 New string to be diffed. + * @param {number} x Index of split point in text1. + * @param {number} y Index of split point in text2. + * @return {Array} Array of diff tuples. + */ +function diff_bisectSplit_(text1, text2, x, y) { + var text1a = text1.substring(0, x); + var text2a = text2.substring(0, y); + var text1b = text1.substring(x); + var text2b = text2.substring(y); + + // Compute both diffs serially. + var diffs = diff_main(text1a, text2a); + var diffsb = diff_main(text1b, text2b); + + return diffs.concat(diffsb); +}; + + +/** + * Determine the common prefix of two strings. + * @param {string} text1 First string. + * @param {string} text2 Second string. + * @return {number} The number of characters common to the start of each + * string. + */ +function diff_commonPrefix(text1, text2) { + // Quick check for common null cases. + if (!text1 || !text2 || text1.charAt(0) != text2.charAt(0)) { + return 0; + } + // Binary search. + // Performance analysis: http://neil.fraser.name/news/2007/10/09/ + var pointermin = 0; + var pointermax = Math.min(text1.length, text2.length); + var pointermid = pointermax; + var pointerstart = 0; + while (pointermin < pointermid) { + if (text1.substring(pointerstart, pointermid) == + text2.substring(pointerstart, pointermid)) { + pointermin = pointermid; + pointerstart = pointermin; + } else { + pointermax = pointermid; + } + pointermid = Math.floor((pointermax - pointermin) / 2 + pointermin); + } + return pointermid; +}; + + +/** + * Determine the common suffix of two strings. + * @param {string} text1 First string. + * @param {string} text2 Second string. + * @return {number} The number of characters common to the end of each string. + */ +function diff_commonSuffix(text1, text2) { + // Quick check for common null cases. + if (!text1 || !text2 || + text1.charAt(text1.length - 1) != text2.charAt(text2.length - 1)) { + return 0; + } + // Binary search. + // Performance analysis: http://neil.fraser.name/news/2007/10/09/ + var pointermin = 0; + var pointermax = Math.min(text1.length, text2.length); + var pointermid = pointermax; + var pointerend = 0; + while (pointermin < pointermid) { + if (text1.substring(text1.length - pointermid, text1.length - pointerend) == + text2.substring(text2.length - pointermid, text2.length - pointerend)) { + pointermin = pointermid; + pointerend = pointermin; + } else { + pointermax = pointermid; + } + pointermid = Math.floor((pointermax - pointermin) / 2 + pointermin); + } + return pointermid; +}; + + +/** + * Do the two texts share a substring which is at least half the length of the + * longer text? + * This speedup can produce non-minimal diffs. + * @param {string} text1 First string. + * @param {string} text2 Second string. + * @return {Array.} Five element Array, containing the prefix of + * text1, the suffix of text1, the prefix of text2, the suffix of + * text2 and the common middle. Or null if there was no match. + */ +function diff_halfMatch_(text1, text2) { + var longtext = text1.length > text2.length ? text1 : text2; + var shorttext = text1.length > text2.length ? text2 : text1; + if (longtext.length < 4 || shorttext.length * 2 < longtext.length) { + return null; // Pointless. + } + + /** + * Does a substring of shorttext exist within longtext such that the substring + * is at least half the length of longtext? + * Closure, but does not reference any external variables. + * @param {string} longtext Longer string. + * @param {string} shorttext Shorter string. + * @param {number} i Start index of quarter length substring within longtext. + * @return {Array.} Five element Array, containing the prefix of + * longtext, the suffix of longtext, the prefix of shorttext, the suffix + * of shorttext and the common middle. Or null if there was no match. + * @private + */ + function diff_halfMatchI_(longtext, shorttext, i) { + // Start with a 1/4 length substring at position i as a seed. + var seed = longtext.substring(i, i + Math.floor(longtext.length / 4)); + var j = -1; + var best_common = ''; + var best_longtext_a, best_longtext_b, best_shorttext_a, best_shorttext_b; + while ((j = shorttext.indexOf(seed, j + 1)) != -1) { + var prefixLength = diff_commonPrefix(longtext.substring(i), + shorttext.substring(j)); + var suffixLength = diff_commonSuffix(longtext.substring(0, i), + shorttext.substring(0, j)); + if (best_common.length < suffixLength + prefixLength) { + best_common = shorttext.substring(j - suffixLength, j) + + shorttext.substring(j, j + prefixLength); + best_longtext_a = longtext.substring(0, i - suffixLength); + best_longtext_b = longtext.substring(i + prefixLength); + best_shorttext_a = shorttext.substring(0, j - suffixLength); + best_shorttext_b = shorttext.substring(j + prefixLength); + } + } + if (best_common.length * 2 >= longtext.length) { + return [best_longtext_a, best_longtext_b, + best_shorttext_a, best_shorttext_b, best_common]; + } else { + return null; + } + } + + // First check if the second quarter is the seed for a half-match. + var hm1 = diff_halfMatchI_(longtext, shorttext, + Math.ceil(longtext.length / 4)); + // Check again based on the third quarter. + var hm2 = diff_halfMatchI_(longtext, shorttext, + Math.ceil(longtext.length / 2)); + var hm; + if (!hm1 && !hm2) { + return null; + } else if (!hm2) { + hm = hm1; + } else if (!hm1) { + hm = hm2; + } else { + // Both matched. Select the longest. + hm = hm1[4].length > hm2[4].length ? hm1 : hm2; + } + + // A half-match was found, sort out the return data. + var text1_a, text1_b, text2_a, text2_b; + if (text1.length > text2.length) { + text1_a = hm[0]; + text1_b = hm[1]; + text2_a = hm[2]; + text2_b = hm[3]; + } else { + text2_a = hm[0]; + text2_b = hm[1]; + text1_a = hm[2]; + text1_b = hm[3]; + } + var mid_common = hm[4]; + return [text1_a, text1_b, text2_a, text2_b, mid_common]; +}; + + +/** + * Reorder and merge like edit sections. Merge equalities. + * Any edit section can move as long as it doesn't cross an equality. + * @param {Array} diffs Array of diff tuples. + */ +function diff_cleanupMerge(diffs) { + diffs.push([DIFF_EQUAL, '']); // Add a dummy entry at the end. + var pointer = 0; + var count_delete = 0; + var count_insert = 0; + var text_delete = ''; + var text_insert = ''; + var commonlength; + while (pointer < diffs.length) { + switch (diffs[pointer][0]) { + case DIFF_INSERT: + count_insert++; + text_insert += diffs[pointer][1]; + pointer++; + break; + case DIFF_DELETE: + count_delete++; + text_delete += diffs[pointer][1]; + pointer++; + break; + case DIFF_EQUAL: + // Upon reaching an equality, check for prior redundancies. + if (count_delete + count_insert > 1) { + if (count_delete !== 0 && count_insert !== 0) { + // Factor out any common prefixies. + commonlength = diff_commonPrefix(text_insert, text_delete); + if (commonlength !== 0) { + if ((pointer - count_delete - count_insert) > 0 && + diffs[pointer - count_delete - count_insert - 1][0] == + DIFF_EQUAL) { + diffs[pointer - count_delete - count_insert - 1][1] += + text_insert.substring(0, commonlength); + } else { + diffs.splice(0, 0, [DIFF_EQUAL, + text_insert.substring(0, commonlength)]); + pointer++; + } + text_insert = text_insert.substring(commonlength); + text_delete = text_delete.substring(commonlength); + } + // Factor out any common suffixies. + commonlength = diff_commonSuffix(text_insert, text_delete); + if (commonlength !== 0) { + diffs[pointer][1] = text_insert.substring(text_insert.length - + commonlength) + diffs[pointer][1]; + text_insert = text_insert.substring(0, text_insert.length - + commonlength); + text_delete = text_delete.substring(0, text_delete.length - + commonlength); + } + } + // Delete the offending records and add the merged ones. + if (count_delete === 0) { + diffs.splice(pointer - count_insert, + count_delete + count_insert, [DIFF_INSERT, text_insert]); + } else if (count_insert === 0) { + diffs.splice(pointer - count_delete, + count_delete + count_insert, [DIFF_DELETE, text_delete]); + } else { + diffs.splice(pointer - count_delete - count_insert, + count_delete + count_insert, [DIFF_DELETE, text_delete], + [DIFF_INSERT, text_insert]); + } + pointer = pointer - count_delete - count_insert + + (count_delete ? 1 : 0) + (count_insert ? 1 : 0) + 1; + } else if (pointer !== 0 && diffs[pointer - 1][0] == DIFF_EQUAL) { + // Merge this equality with the previous one. + diffs[pointer - 1][1] += diffs[pointer][1]; + diffs.splice(pointer, 1); + } else { + pointer++; + } + count_insert = 0; + count_delete = 0; + text_delete = ''; + text_insert = ''; + break; + } + } + if (diffs[diffs.length - 1][1] === '') { + diffs.pop(); // Remove the dummy entry at the end. + } + + // Second pass: look for single edits surrounded on both sides by equalities + // which can be shifted sideways to eliminate an equality. + // e.g: ABAC -> ABAC + var changes = false; + pointer = 1; + // Intentionally ignore the first and last element (don't need checking). + while (pointer < diffs.length - 1) { + if (diffs[pointer - 1][0] == DIFF_EQUAL && + diffs[pointer + 1][0] == DIFF_EQUAL) { + // This is a single edit surrounded by equalities. + if (diffs[pointer][1].substring(diffs[pointer][1].length - + diffs[pointer - 1][1].length) == diffs[pointer - 1][1]) { + // Shift the edit over the previous equality. + diffs[pointer][1] = diffs[pointer - 1][1] + + diffs[pointer][1].substring(0, diffs[pointer][1].length - + diffs[pointer - 1][1].length); + diffs[pointer + 1][1] = diffs[pointer - 1][1] + diffs[pointer + 1][1]; + diffs.splice(pointer - 1, 1); + changes = true; + } else if (diffs[pointer][1].substring(0, diffs[pointer + 1][1].length) == + diffs[pointer + 1][1]) { + // Shift the edit over the next equality. + diffs[pointer - 1][1] += diffs[pointer + 1][1]; + diffs[pointer][1] = + diffs[pointer][1].substring(diffs[pointer + 1][1].length) + + diffs[pointer + 1][1]; + diffs.splice(pointer + 1, 1); + changes = true; + } + } + pointer++; + } + // If shifts were made, the diff needs reordering and another shift sweep. + if (changes) { + diff_cleanupMerge(diffs); + } +}; + + +var diff = diff_main; +diff.INSERT = DIFF_INSERT; +diff.DELETE = DIFF_DELETE; +diff.EQUAL = DIFF_EQUAL; + +module.exports = diff; + +/* + * Modify a diff such that the cursor position points to the start of a change: + * E.g. + * cursor_normalize_diff([[DIFF_EQUAL, 'abc']], 1) + * => [1, [[DIFF_EQUAL, 'a'], [DIFF_EQUAL, 'bc']]] + * cursor_normalize_diff([[DIFF_INSERT, 'new'], [DIFF_DELETE, 'xyz']], 2) + * => [2, [[DIFF_INSERT, 'new'], [DIFF_DELETE, 'xy'], [DIFF_DELETE, 'z']]] + * + * @param {Array} diffs Array of diff tuples + * @param {Int} cursor_pos Suggested edit position. Must not be out of bounds! + * @return {Array} A tuple [cursor location in the modified diff, modified diff] + */ +function cursor_normalize_diff (diffs, cursor_pos) { + if (cursor_pos === 0) { + return [DIFF_EQUAL, diffs]; + } + for (var current_pos = 0, i = 0; i < diffs.length; i++) { + var d = diffs[i]; + if (d[0] === DIFF_DELETE || d[0] === DIFF_EQUAL) { + var next_pos = current_pos + d[1].length; + if (cursor_pos === next_pos) { + return [i + 1, diffs]; + } else if (cursor_pos < next_pos) { + // copy to prevent side effects + diffs = diffs.slice(); + // split d into two diff changes + var split_pos = cursor_pos - current_pos; + var d_left = [d[0], d[1].slice(0, split_pos)]; + var d_right = [d[0], d[1].slice(split_pos)]; + diffs.splice(i, 1, d_left, d_right); + return [i + 1, diffs]; + } else { + current_pos = next_pos; + } + } + } + throw new Error('cursor_pos is out of bounds!') +} + +/* + * Modify a diff such that the edit position is "shifted" to the proposed edit location (cursor_position). + * + * Case 1) + * Check if a naive shift is possible: + * [0, X], [ 1, Y] -> [ 1, Y], [0, X] (if X + Y === Y + X) + * [0, X], [-1, Y] -> [-1, Y], [0, X] (if X + Y === Y + X) - holds same result + * Case 2) + * Check if the following shifts are possible: + * [0, 'pre'], [ 1, 'prefix'] -> [ 1, 'pre'], [0, 'pre'], [ 1, 'fix'] + * [0, 'pre'], [-1, 'prefix'] -> [-1, 'pre'], [0, 'pre'], [-1, 'fix'] + * ^ ^ + * d d_next + * + * @param {Array} diffs Array of diff tuples + * @param {Int} cursor_pos Suggested edit position. Must not be out of bounds! + * @return {Array} Array of diff tuples + */ +function fix_cursor (diffs, cursor_pos) { + var norm = cursor_normalize_diff(diffs, cursor_pos); + var ndiffs = norm[1]; + var cursor_pointer = norm[0]; + var d = ndiffs[cursor_pointer]; + var d_next = ndiffs[cursor_pointer + 1]; + + if (d == null) { + // Text was deleted from end of original string, + // cursor is now out of bounds in new string + return diffs; + } else if (d[0] !== DIFF_EQUAL) { + // A modification happened at the cursor location. + // This is the expected outcome, so we can return the original diff. + return diffs; + } else { + if (d_next != null && d[1] + d_next[1] === d_next[1] + d[1]) { + // Case 1) + // It is possible to perform a naive shift + ndiffs.splice(cursor_pointer, 2, d_next, d) + return merge_tuples(ndiffs, cursor_pointer, 2) + } else if (d_next != null && d_next[1].indexOf(d[1]) === 0) { + // Case 2) + // d[1] is a prefix of d_next[1] + // We can assume that d_next[0] !== 0, since d[0] === 0 + // Shift edit locations.. + ndiffs.splice(cursor_pointer, 2, [d_next[0], d[1]], [0, d[1]]); + var suffix = d_next[1].slice(d[1].length); + if (suffix.length > 0) { + ndiffs.splice(cursor_pointer + 2, 0, [d_next[0], suffix]); + } + return merge_tuples(ndiffs, cursor_pointer, 3) + } else { + // Not possible to perform any modification + return diffs; + } + } +} + +/* + * Check diff did not split surrogate pairs. + * Ex. [0, '\uD83D'], [-1, '\uDC36'], [1, '\uDC2F'] -> [-1, '\uD83D\uDC36'], [1, '\uD83D\uDC2F'] + * '\uD83D\uDC36' === '🐶', '\uD83D\uDC2F' === '🐯' + * + * @param {Array} diffs Array of diff tuples + * @return {Array} Array of diff tuples + */ +function fix_emoji (diffs) { + var compact = false; + var starts_with_pair_end = function(str) { + return str.charCodeAt(0) >= 0xDC00 && str.charCodeAt(0) <= 0xDFFF; + } + var ends_with_pair_start = function(str) { + return str.charCodeAt(str.length-1) >= 0xD800 && str.charCodeAt(str.length-1) <= 0xDBFF; + } + for (var i = 2; i < diffs.length; i += 1) { + if (diffs[i-2][0] === DIFF_EQUAL && ends_with_pair_start(diffs[i-2][1]) && + diffs[i-1][0] === DIFF_DELETE && starts_with_pair_end(diffs[i-1][1]) && + diffs[i][0] === DIFF_INSERT && starts_with_pair_end(diffs[i][1])) { + compact = true; + + diffs[i-1][1] = diffs[i-2][1].slice(-1) + diffs[i-1][1]; + diffs[i][1] = diffs[i-2][1].slice(-1) + diffs[i][1]; + + diffs[i-2][1] = diffs[i-2][1].slice(0, -1); + } + } + if (!compact) { + return diffs; + } + var fixed_diffs = []; + for (var i = 0; i < diffs.length; i += 1) { + if (diffs[i][1].length > 0) { + fixed_diffs.push(diffs[i]); + } + } + return fixed_diffs; +} + +/* + * Try to merge tuples with their neigbors in a given range. + * E.g. [0, 'a'], [0, 'b'] -> [0, 'ab'] + * + * @param {Array} diffs Array of diff tuples. + * @param {Int} start Position of the first element to merge (diffs[start] is also merged with diffs[start - 1]). + * @param {Int} length Number of consecutive elements to check. + * @return {Array} Array of merged diff tuples. + */ +function merge_tuples (diffs, start, length) { + // Check from (start-1) to (start+length). + for (var i = start + length - 1; i >= 0 && i >= start - 1; i--) { + if (i + 1 < diffs.length) { + var left_d = diffs[i]; + var right_d = diffs[i+1]; + if (left_d[0] === right_d[1]) { + diffs.splice(i, 2, [left_d[0], left_d[1] + right_d[1]]); + } + } + } + return diffs; +} + + +/***/ }), +/* 52 */ +/***/ (function(module, exports) { + +exports = module.exports = typeof Object.keys === 'function' + ? Object.keys : shim; + +exports.shim = shim; +function shim (obj) { + var keys = []; + for (var key in obj) keys.push(key); + return keys; +} + + +/***/ }), +/* 53 */ +/***/ (function(module, exports) { + +var supportsArgumentsClass = (function(){ + return Object.prototype.toString.call(arguments) +})() == '[object Arguments]'; + +exports = module.exports = supportsArgumentsClass ? supported : unsupported; + +exports.supported = supported; +function supported(object) { + return Object.prototype.toString.call(object) == '[object Arguments]'; +}; + +exports.unsupported = unsupported; +function unsupported(object){ + return object && + typeof object == 'object' && + typeof object.length == 'number' && + Object.prototype.hasOwnProperty.call(object, 'callee') && + !Object.prototype.propertyIsEnumerable.call(object, 'callee') || + false; +}; + + +/***/ }), +/* 54 */ +/***/ (function(module, exports) { + +'use strict'; + +var has = Object.prototype.hasOwnProperty + , prefix = '~'; + +/** + * Constructor to create a storage for our `EE` objects. + * An `Events` instance is a plain object whose properties are event names. + * + * @constructor + * @api private + */ +function Events() {} + +// +// We try to not inherit from `Object.prototype`. In some engines creating an +// instance in this way is faster than calling `Object.create(null)` directly. +// If `Object.create(null)` is not supported we prefix the event names with a +// character to make sure that the built-in object properties are not +// overridden or used as an attack vector. +// +if (Object.create) { + Events.prototype = Object.create(null); + + // + // This hack is needed because the `__proto__` property is still inherited in + // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5. + // + if (!new Events().__proto__) prefix = false; +} + +/** + * Representation of a single event listener. + * + * @param {Function} fn The listener function. + * @param {Mixed} context The context to invoke the listener with. + * @param {Boolean} [once=false] Specify if the listener is a one-time listener. + * @constructor + * @api private + */ +function EE(fn, context, once) { + this.fn = fn; + this.context = context; + this.once = once || false; +} + +/** + * Minimal `EventEmitter` interface that is molded against the Node.js + * `EventEmitter` interface. + * + * @constructor + * @api public + */ +function EventEmitter() { + this._events = new Events(); + this._eventsCount = 0; +} + +/** + * Return an array listing the events for which the emitter has registered + * listeners. + * + * @returns {Array} + * @api public + */ +EventEmitter.prototype.eventNames = function eventNames() { + var names = [] + , events + , name; + + if (this._eventsCount === 0) return names; + + for (name in (events = this._events)) { + if (has.call(events, name)) names.push(prefix ? name.slice(1) : name); + } + + if (Object.getOwnPropertySymbols) { + return names.concat(Object.getOwnPropertySymbols(events)); + } + + return names; +}; + +/** + * Return the listeners registered for a given event. + * + * @param {String|Symbol} event The event name. + * @param {Boolean} exists Only check if there are listeners. + * @returns {Array|Boolean} + * @api public + */ +EventEmitter.prototype.listeners = function listeners(event, exists) { + var evt = prefix ? prefix + event : event + , available = this._events[evt]; + + if (exists) return !!available; + if (!available) return []; + if (available.fn) return [available.fn]; + + for (var i = 0, l = available.length, ee = new Array(l); i < l; i++) { + ee[i] = available[i].fn; + } + + return ee; +}; + +/** + * Calls each of the listeners registered for a given event. + * + * @param {String|Symbol} event The event name. + * @returns {Boolean} `true` if the event had listeners, else `false`. + * @api public + */ +EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return false; + + var listeners = this._events[evt] + , len = arguments.length + , args + , i; + + if (listeners.fn) { + if (listeners.once) this.removeListener(event, listeners.fn, undefined, true); + + switch (len) { + case 1: return listeners.fn.call(listeners.context), true; + case 2: return listeners.fn.call(listeners.context, a1), true; + case 3: return listeners.fn.call(listeners.context, a1, a2), true; + case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true; + case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true; + case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true; + } + + for (i = 1, args = new Array(len -1); i < len; i++) { + args[i - 1] = arguments[i]; + } + + listeners.fn.apply(listeners.context, args); + } else { + var length = listeners.length + , j; + + for (i = 0; i < length; i++) { + if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true); + + switch (len) { + case 1: listeners[i].fn.call(listeners[i].context); break; + case 2: listeners[i].fn.call(listeners[i].context, a1); break; + case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break; + case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break; + default: + if (!args) for (j = 1, args = new Array(len -1); j < len; j++) { + args[j - 1] = arguments[j]; + } + + listeners[i].fn.apply(listeners[i].context, args); + } + } + } + + return true; +}; + +/** + * Add a listener for a given event. + * + * @param {String|Symbol} event The event name. + * @param {Function} fn The listener function. + * @param {Mixed} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @api public + */ +EventEmitter.prototype.on = function on(event, fn, context) { + var listener = new EE(fn, context || this) + , evt = prefix ? prefix + event : event; + + if (!this._events[evt]) this._events[evt] = listener, this._eventsCount++; + else if (!this._events[evt].fn) this._events[evt].push(listener); + else this._events[evt] = [this._events[evt], listener]; + + return this; +}; + +/** + * Add a one-time listener for a given event. + * + * @param {String|Symbol} event The event name. + * @param {Function} fn The listener function. + * @param {Mixed} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @api public + */ +EventEmitter.prototype.once = function once(event, fn, context) { + var listener = new EE(fn, context || this, true) + , evt = prefix ? prefix + event : event; + + if (!this._events[evt]) this._events[evt] = listener, this._eventsCount++; + else if (!this._events[evt].fn) this._events[evt].push(listener); + else this._events[evt] = [this._events[evt], listener]; + + return this; +}; + +/** + * Remove the listeners of a given event. + * + * @param {String|Symbol} event The event name. + * @param {Function} fn Only remove the listeners that match this function. + * @param {Mixed} context Only remove the listeners that have this context. + * @param {Boolean} once Only remove one-time listeners. + * @returns {EventEmitter} `this`. + * @api public + */ +EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return this; + if (!fn) { + if (--this._eventsCount === 0) this._events = new Events(); + else delete this._events[evt]; + return this; + } + + var listeners = this._events[evt]; + + if (listeners.fn) { + if ( + listeners.fn === fn + && (!once || listeners.once) + && (!context || listeners.context === context) + ) { + if (--this._eventsCount === 0) this._events = new Events(); + else delete this._events[evt]; + } + } else { + for (var i = 0, events = [], length = listeners.length; i < length; i++) { + if ( + listeners[i].fn !== fn + || (once && !listeners[i].once) + || (context && listeners[i].context !== context) + ) { + events.push(listeners[i]); + } + } + + // + // Reset the array, or remove it completely if we have no more listeners. + // + if (events.length) this._events[evt] = events.length === 1 ? events[0] : events; + else if (--this._eventsCount === 0) this._events = new Events(); + else delete this._events[evt]; + } + + return this; +}; + +/** + * Remove all listeners, or those of the specified event. + * + * @param {String|Symbol} [event] The event name. + * @returns {EventEmitter} `this`. + * @api public + */ +EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) { + var evt; + + if (event) { + evt = prefix ? prefix + event : event; + if (this._events[evt]) { + if (--this._eventsCount === 0) this._events = new Events(); + else delete this._events[evt]; + } + } else { + this._events = new Events(); + this._eventsCount = 0; + } + + return this; +}; + +// +// Alias methods names because people roll like that. +// +EventEmitter.prototype.off = EventEmitter.prototype.removeListener; +EventEmitter.prototype.addListener = EventEmitter.prototype.on; + +// +// This function doesn't apply anymore. +// +EventEmitter.prototype.setMaxListeners = function setMaxListeners() { + return this; +}; + +// +// Expose the prefix. +// +EventEmitter.prefixed = prefix; + +// +// Allow `EventEmitter` to be imported as module namespace. +// +EventEmitter.EventEmitter = EventEmitter; + +// +// Expose the module. +// +if ('undefined' !== typeof module) { + module.exports = EventEmitter; +} + + +/***/ }), +/* 55 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.matchText = exports.matchSpacing = exports.matchNewline = exports.matchBlot = exports.matchAttributor = exports.default = undefined; + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _extend2 = __webpack_require__(3); + +var _extend3 = _interopRequireDefault(_extend2); + +var _quillDelta = __webpack_require__(2); + +var _quillDelta2 = _interopRequireDefault(_quillDelta); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _quill = __webpack_require__(5); + +var _quill2 = _interopRequireDefault(_quill); + +var _logger = __webpack_require__(10); + +var _logger2 = _interopRequireDefault(_logger); + +var _module = __webpack_require__(9); + +var _module2 = _interopRequireDefault(_module); + +var _align = __webpack_require__(36); + +var _background = __webpack_require__(37); + +var _code = __webpack_require__(13); + +var _code2 = _interopRequireDefault(_code); + +var _color = __webpack_require__(26); + +var _direction = __webpack_require__(38); + +var _font = __webpack_require__(39); + +var _size = __webpack_require__(40); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var debug = (0, _logger2.default)('quill:clipboard'); + +var DOM_KEY = '__ql-matcher'; + +var CLIPBOARD_CONFIG = [[Node.TEXT_NODE, matchText], [Node.TEXT_NODE, matchNewline], ['br', matchBreak], [Node.ELEMENT_NODE, matchNewline], [Node.ELEMENT_NODE, matchBlot], [Node.ELEMENT_NODE, matchSpacing], [Node.ELEMENT_NODE, matchAttributor], [Node.ELEMENT_NODE, matchStyles], ['li', matchIndent], ['b', matchAlias.bind(matchAlias, 'bold')], ['i', matchAlias.bind(matchAlias, 'italic')], ['style', matchIgnore]]; + +var ATTRIBUTE_ATTRIBUTORS = [_align.AlignAttribute, _direction.DirectionAttribute].reduce(function (memo, attr) { + memo[attr.keyName] = attr; + return memo; +}, {}); + +var STYLE_ATTRIBUTORS = [_align.AlignStyle, _background.BackgroundStyle, _color.ColorStyle, _direction.DirectionStyle, _font.FontStyle, _size.SizeStyle].reduce(function (memo, attr) { + memo[attr.keyName] = attr; + return memo; +}, {}); + +var Clipboard = function (_Module) { + _inherits(Clipboard, _Module); + + function Clipboard(quill, options) { + _classCallCheck(this, Clipboard); + + var _this = _possibleConstructorReturn(this, (Clipboard.__proto__ || Object.getPrototypeOf(Clipboard)).call(this, quill, options)); + + _this.quill.root.addEventListener('paste', _this.onPaste.bind(_this)); + _this.container = _this.quill.addContainer('ql-clipboard'); + _this.container.setAttribute('contenteditable', true); + _this.container.setAttribute('tabindex', -1); + _this.matchers = []; + CLIPBOARD_CONFIG.concat(_this.options.matchers).forEach(function (_ref) { + var _ref2 = _slicedToArray(_ref, 2), + selector = _ref2[0], + matcher = _ref2[1]; + + if (!options.matchVisual && matcher === matchSpacing) return; + _this.addMatcher(selector, matcher); + }); + return _this; + } + + _createClass(Clipboard, [{ + key: 'addMatcher', + value: function addMatcher(selector, matcher) { + this.matchers.push([selector, matcher]); + } + }, { + key: 'convert', + value: function convert(html) { + if (typeof html === 'string') { + this.container.innerHTML = html.replace(/\>\r?\n +\<'); // Remove spaces between tags + return this.convert(); + } + var formats = this.quill.getFormat(this.quill.selection.savedRange.index); + if (formats[_code2.default.blotName]) { + var text = this.container.innerText; + this.container.innerHTML = ''; + return new _quillDelta2.default().insert(text, _defineProperty({}, _code2.default.blotName, formats[_code2.default.blotName])); + } + + var _prepareMatching = this.prepareMatching(), + _prepareMatching2 = _slicedToArray(_prepareMatching, 2), + elementMatchers = _prepareMatching2[0], + textMatchers = _prepareMatching2[1]; + + var delta = traverse(this.container, elementMatchers, textMatchers); + // Remove trailing newline + if (deltaEndsWith(delta, '\n') && delta.ops[delta.ops.length - 1].attributes == null) { + delta = delta.compose(new _quillDelta2.default().retain(delta.length() - 1).delete(1)); + } + debug.log('convert', this.container.innerHTML, delta); + this.container.innerHTML = ''; + return delta; + } + }, { + key: 'dangerouslyPasteHTML', + value: function dangerouslyPasteHTML(index, html) { + var source = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : _quill2.default.sources.API; + + if (typeof index === 'string') { + this.quill.setContents(this.convert(index), html); + this.quill.setSelection(0, _quill2.default.sources.SILENT); + } else { + var paste = this.convert(html); + this.quill.updateContents(new _quillDelta2.default().retain(index).concat(paste), source); + this.quill.setSelection(index + paste.length(), _quill2.default.sources.SILENT); + } + } + }, { + key: 'onPaste', + value: function onPaste(e) { + var _this2 = this; + + if (e.defaultPrevented || !this.quill.isEnabled()) return; + var range = this.quill.getSelection(); + var delta = new _quillDelta2.default().retain(range.index); + var scrollTop = this.quill.scrollingContainer.scrollTop; + this.container.focus(); + this.quill.selection.update(_quill2.default.sources.SILENT); + setTimeout(function () { + delta = delta.concat(_this2.convert()).delete(range.length); + _this2.quill.updateContents(delta, _quill2.default.sources.USER); + // range.length contributes to delta.length() + _this2.quill.setSelection(delta.length() - range.length, _quill2.default.sources.SILENT); + _this2.quill.scrollingContainer.scrollTop = scrollTop; + _this2.quill.focus(); + }, 1); + } + }, { + key: 'prepareMatching', + value: function prepareMatching() { + var _this3 = this; + + var elementMatchers = [], + textMatchers = []; + this.matchers.forEach(function (pair) { + var _pair = _slicedToArray(pair, 2), + selector = _pair[0], + matcher = _pair[1]; + + switch (selector) { + case Node.TEXT_NODE: + textMatchers.push(matcher); + break; + case Node.ELEMENT_NODE: + elementMatchers.push(matcher); + break; + default: + [].forEach.call(_this3.container.querySelectorAll(selector), function (node) { + // TODO use weakmap + node[DOM_KEY] = node[DOM_KEY] || []; + node[DOM_KEY].push(matcher); + }); + break; + } + }); + return [elementMatchers, textMatchers]; + } + }]); + + return Clipboard; +}(_module2.default); + +Clipboard.DEFAULTS = { + matchers: [], + matchVisual: true +}; + +function applyFormat(delta, format, value) { + if ((typeof format === 'undefined' ? 'undefined' : _typeof(format)) === 'object') { + return Object.keys(format).reduce(function (delta, key) { + return applyFormat(delta, key, format[key]); + }, delta); + } else { + return delta.reduce(function (delta, op) { + if (op.attributes && op.attributes[format]) { + return delta.push(op); + } else { + return delta.insert(op.insert, (0, _extend3.default)({}, _defineProperty({}, format, value), op.attributes)); + } + }, new _quillDelta2.default()); + } +} + +function computeStyle(node) { + if (node.nodeType !== Node.ELEMENT_NODE) return {}; + var DOM_KEY = '__ql-computed-style'; + return node[DOM_KEY] || (node[DOM_KEY] = window.getComputedStyle(node)); +} + +function deltaEndsWith(delta, text) { + var endText = ""; + for (var i = delta.ops.length - 1; i >= 0 && endText.length < text.length; --i) { + var op = delta.ops[i]; + if (typeof op.insert !== 'string') break; + endText = op.insert + endText; + } + return endText.slice(-1 * text.length) === text; +} + +function isLine(node) { + if (node.childNodes.length === 0) return false; // Exclude embed blocks + var style = computeStyle(node); + return ['block', 'list-item'].indexOf(style.display) > -1; +} + +function traverse(node, elementMatchers, textMatchers) { + // Post-order + if (node.nodeType === node.TEXT_NODE) { + return textMatchers.reduce(function (delta, matcher) { + return matcher(node, delta); + }, new _quillDelta2.default()); + } else if (node.nodeType === node.ELEMENT_NODE) { + return [].reduce.call(node.childNodes || [], function (delta, childNode) { + var childrenDelta = traverse(childNode, elementMatchers, textMatchers); + if (childNode.nodeType === node.ELEMENT_NODE) { + childrenDelta = elementMatchers.reduce(function (childrenDelta, matcher) { + return matcher(childNode, childrenDelta); + }, childrenDelta); + childrenDelta = (childNode[DOM_KEY] || []).reduce(function (childrenDelta, matcher) { + return matcher(childNode, childrenDelta); + }, childrenDelta); + } + return delta.concat(childrenDelta); + }, new _quillDelta2.default()); + } else { + return new _quillDelta2.default(); + } +} + +function matchAlias(format, node, delta) { + return applyFormat(delta, format, true); +} + +function matchAttributor(node, delta) { + var attributes = _parchment2.default.Attributor.Attribute.keys(node); + var classes = _parchment2.default.Attributor.Class.keys(node); + var styles = _parchment2.default.Attributor.Style.keys(node); + var formats = {}; + attributes.concat(classes).concat(styles).forEach(function (name) { + var attr = _parchment2.default.query(name, _parchment2.default.Scope.ATTRIBUTE); + if (attr != null) { + formats[attr.attrName] = attr.value(node); + if (formats[attr.attrName]) return; + } + attr = ATTRIBUTE_ATTRIBUTORS[name]; + if (attr != null && (attr.attrName === name || attr.keyName === name)) { + formats[attr.attrName] = attr.value(node) || undefined; + } + attr = STYLE_ATTRIBUTORS[name]; + if (attr != null && (attr.attrName === name || attr.keyName === name)) { + attr = STYLE_ATTRIBUTORS[name]; + formats[attr.attrName] = attr.value(node) || undefined; + } + }); + if (Object.keys(formats).length > 0) { + delta = applyFormat(delta, formats); + } + return delta; +} + +function matchBlot(node, delta) { + var match = _parchment2.default.query(node); + if (match == null) return delta; + if (match.prototype instanceof _parchment2.default.Embed) { + var embed = {}; + var value = match.value(node); + if (value != null) { + embed[match.blotName] = value; + delta = new _quillDelta2.default().insert(embed, match.formats(node)); + } + } else if (typeof match.formats === 'function') { + delta = applyFormat(delta, match.blotName, match.formats(node)); + } + return delta; +} + +function matchBreak(node, delta) { + if (!deltaEndsWith(delta, '\n')) { + delta.insert('\n'); + } + return delta; +} + +function matchIgnore() { + return new _quillDelta2.default(); +} + +function matchIndent(node, delta) { + var match = _parchment2.default.query(node); + if (match == null || match.blotName !== 'list-item' || !deltaEndsWith(delta, '\n')) { + return delta; + } + var indent = -1, + parent = node.parentNode; + while (!parent.classList.contains('ql-clipboard')) { + if ((_parchment2.default.query(parent) || {}).blotName === 'list') { + indent += 1; + } + parent = parent.parentNode; + } + if (indent <= 0) return delta; + return delta.compose(new _quillDelta2.default().retain(delta.length() - 1).retain(1, { indent: indent })); +} + +function matchNewline(node, delta) { + if (!deltaEndsWith(delta, '\n')) { + if (isLine(node) || delta.length() > 0 && node.nextSibling && isLine(node.nextSibling)) { + delta.insert('\n'); + } + } + return delta; +} + +function matchSpacing(node, delta) { + if (isLine(node) && node.nextElementSibling != null && !deltaEndsWith(delta, '\n\n')) { + var nodeHeight = node.offsetHeight + parseFloat(computeStyle(node).marginTop) + parseFloat(computeStyle(node).marginBottom); + if (node.nextElementSibling.offsetTop > node.offsetTop + nodeHeight * 1.5) { + delta.insert('\n'); + } + } + return delta; +} + +function matchStyles(node, delta) { + var formats = {}; + var style = node.style || {}; + if (style.fontStyle && computeStyle(node).fontStyle === 'italic') { + formats.italic = true; + } + if (style.fontWeight && (computeStyle(node).fontWeight.startsWith('bold') || parseInt(computeStyle(node).fontWeight) >= 700)) { + formats.bold = true; + } + if (Object.keys(formats).length > 0) { + delta = applyFormat(delta, formats); + } + if (parseFloat(style.textIndent || 0) > 0) { + // Could be 0.5in + delta = new _quillDelta2.default().insert('\t').concat(delta); + } + return delta; +} + +function matchText(node, delta) { + var text = node.data; + // Word represents empty line with   + if (node.parentNode.tagName === 'O:P') { + return delta.insert(text.trim()); + } + if (text.trim().length === 0 && node.parentNode.classList.contains('ql-clipboard')) { + return delta; + } + if (!computeStyle(node.parentNode).whiteSpace.startsWith('pre')) { + // eslint-disable-next-line func-style + var replacer = function replacer(collapse, match) { + match = match.replace(/[^\u00a0]/g, ''); // \u00a0 is nbsp; + return match.length < 1 && collapse ? ' ' : match; + }; + text = text.replace(/\r\n/g, ' ').replace(/\n/g, ' '); + text = text.replace(/\s\s+/g, replacer.bind(replacer, true)); // collapse whitespace + if (node.previousSibling == null && isLine(node.parentNode) || node.previousSibling != null && isLine(node.previousSibling)) { + text = text.replace(/^\s+/, replacer.bind(replacer, false)); + } + if (node.nextSibling == null && isLine(node.parentNode) || node.nextSibling != null && isLine(node.nextSibling)) { + text = text.replace(/\s+$/, replacer.bind(replacer, false)); + } + } + return delta.insert(text); +} + +exports.default = Clipboard; +exports.matchAttributor = matchAttributor; +exports.matchBlot = matchBlot; +exports.matchNewline = matchNewline; +exports.matchSpacing = matchSpacing; +exports.matchText = matchText; + +/***/ }), +/* 56 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _inline = __webpack_require__(6); + +var _inline2 = _interopRequireDefault(_inline); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Bold = function (_Inline) { + _inherits(Bold, _Inline); + + function Bold() { + _classCallCheck(this, Bold); + + return _possibleConstructorReturn(this, (Bold.__proto__ || Object.getPrototypeOf(Bold)).apply(this, arguments)); + } + + _createClass(Bold, [{ + key: 'optimize', + value: function optimize(context) { + _get(Bold.prototype.__proto__ || Object.getPrototypeOf(Bold.prototype), 'optimize', this).call(this, context); + if (this.domNode.tagName !== this.statics.tagName[0]) { + this.replaceWith(this.statics.blotName); + } + } + }], [{ + key: 'create', + value: function create() { + return _get(Bold.__proto__ || Object.getPrototypeOf(Bold), 'create', this).call(this); + } + }, { + key: 'formats', + value: function formats() { + return true; + } + }]); + + return Bold; +}(_inline2.default); + +Bold.blotName = 'bold'; +Bold.tagName = ['STRONG', 'B']; + +exports.default = Bold; + +/***/ }), +/* 57 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.addControls = exports.default = undefined; + +var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _quillDelta = __webpack_require__(2); + +var _quillDelta2 = _interopRequireDefault(_quillDelta); + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _quill = __webpack_require__(5); + +var _quill2 = _interopRequireDefault(_quill); + +var _logger = __webpack_require__(10); + +var _logger2 = _interopRequireDefault(_logger); + +var _module = __webpack_require__(9); + +var _module2 = _interopRequireDefault(_module); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var debug = (0, _logger2.default)('quill:toolbar'); + +var Toolbar = function (_Module) { + _inherits(Toolbar, _Module); + + function Toolbar(quill, options) { + _classCallCheck(this, Toolbar); + + var _this = _possibleConstructorReturn(this, (Toolbar.__proto__ || Object.getPrototypeOf(Toolbar)).call(this, quill, options)); + + if (Array.isArray(_this.options.container)) { + var container = document.createElement('div'); + addControls(container, _this.options.container); + quill.container.parentNode.insertBefore(container, quill.container); + _this.container = container; + } else if (typeof _this.options.container === 'string') { + _this.container = document.querySelector(_this.options.container); + } else { + _this.container = _this.options.container; + } + if (!(_this.container instanceof HTMLElement)) { + var _ret; + + return _ret = debug.error('Container required for toolbar', _this.options), _possibleConstructorReturn(_this, _ret); + } + _this.container.classList.add('ql-toolbar'); + _this.controls = []; + _this.handlers = {}; + Object.keys(_this.options.handlers).forEach(function (format) { + _this.addHandler(format, _this.options.handlers[format]); + }); + [].forEach.call(_this.container.querySelectorAll('button, select'), function (input) { + _this.attach(input); + }); + _this.quill.on(_quill2.default.events.EDITOR_CHANGE, function (type, range) { + if (type === _quill2.default.events.SELECTION_CHANGE) { + _this.update(range); + } + }); + _this.quill.on(_quill2.default.events.SCROLL_OPTIMIZE, function () { + var _this$quill$selection = _this.quill.selection.getRange(), + _this$quill$selection2 = _slicedToArray(_this$quill$selection, 1), + range = _this$quill$selection2[0]; // quill.getSelection triggers update + + + _this.update(range); + }); + return _this; + } + + _createClass(Toolbar, [{ + key: 'addHandler', + value: function addHandler(format, handler) { + this.handlers[format] = handler; + } + }, { + key: 'attach', + value: function attach(input) { + var _this2 = this; + + var format = [].find.call(input.classList, function (className) { + return className.indexOf('ql-') === 0; + }); + if (!format) return; + format = format.slice('ql-'.length); + if (input.tagName === 'BUTTON') { + input.setAttribute('type', 'button'); + } + if (this.handlers[format] == null) { + if (this.quill.scroll.whitelist != null && this.quill.scroll.whitelist[format] == null) { + debug.warn('ignoring attaching to disabled format', format, input); + return; + } + if (_parchment2.default.query(format) == null) { + debug.warn('ignoring attaching to nonexistent format', format, input); + return; + } + } + var eventName = input.tagName === 'SELECT' ? 'change' : 'click'; + input.addEventListener(eventName, function (e) { + var value = void 0; + if (input.tagName === 'SELECT') { + if (input.selectedIndex < 0) return; + var selected = input.options[input.selectedIndex]; + if (selected.hasAttribute('selected')) { + value = false; + } else { + value = selected.value || false; + } + } else { + if (input.classList.contains('ql-active')) { + value = false; + } else { + value = input.value || !input.hasAttribute('value'); + } + e.preventDefault(); + } + _this2.quill.focus(); + + var _quill$selection$getR = _this2.quill.selection.getRange(), + _quill$selection$getR2 = _slicedToArray(_quill$selection$getR, 1), + range = _quill$selection$getR2[0]; + + if (_this2.handlers[format] != null) { + _this2.handlers[format].call(_this2, value); + } else if (_parchment2.default.query(format).prototype instanceof _parchment2.default.Embed) { + value = prompt('Enter ' + format); + if (!value) return; + _this2.quill.updateContents(new _quillDelta2.default().retain(range.index).delete(range.length).insert(_defineProperty({}, format, value)), _quill2.default.sources.USER); + } else { + _this2.quill.format(format, value, _quill2.default.sources.USER); + } + _this2.update(range); + }); + // TODO use weakmap + this.controls.push([format, input]); + } + }, { + key: 'update', + value: function update(range) { + var formats = range == null ? {} : this.quill.getFormat(range); + this.controls.forEach(function (pair) { + var _pair = _slicedToArray(pair, 2), + format = _pair[0], + input = _pair[1]; + + if (input.tagName === 'SELECT') { + var option = void 0; + if (range == null) { + option = null; + } else if (formats[format] == null) { + option = input.querySelector('option[selected]'); + } else if (!Array.isArray(formats[format])) { + var value = formats[format]; + if (typeof value === 'string') { + value = value.replace(/\"/g, '\\"'); + } + option = input.querySelector('option[value="' + value + '"]'); + } + if (option == null) { + input.value = ''; // TODO make configurable? + input.selectedIndex = -1; + } else { + option.selected = true; + } + } else { + if (range == null) { + input.classList.remove('ql-active'); + } else if (input.hasAttribute('value')) { + // both being null should match (default values) + // '1' should match with 1 (headers) + var isActive = formats[format] === input.getAttribute('value') || formats[format] != null && formats[format].toString() === input.getAttribute('value') || formats[format] == null && !input.getAttribute('value'); + input.classList.toggle('ql-active', isActive); + } else { + input.classList.toggle('ql-active', formats[format] != null); + } + } + }); + } + }]); + + return Toolbar; +}(_module2.default); + +Toolbar.DEFAULTS = {}; + +function addButton(container, format, value) { + var input = document.createElement('button'); + input.setAttribute('type', 'button'); + input.classList.add('ql-' + format); + if (value != null) { + input.value = value; + } + container.appendChild(input); +} + +function addControls(container, groups) { + if (!Array.isArray(groups[0])) { + groups = [groups]; + } + groups.forEach(function (controls) { + var group = document.createElement('span'); + group.classList.add('ql-formats'); + controls.forEach(function (control) { + if (typeof control === 'string') { + addButton(group, control); + } else { + var format = Object.keys(control)[0]; + var value = control[format]; + if (Array.isArray(value)) { + addSelect(group, format, value); + } else { + addButton(group, format, value); + } + } + }); + container.appendChild(group); + }); +} + +function addSelect(container, format, values) { + var input = document.createElement('select'); + input.classList.add('ql-' + format); + values.forEach(function (value) { + var option = document.createElement('option'); + if (value !== false) { + option.setAttribute('value', value); + } else { + option.setAttribute('selected', 'selected'); + } + input.appendChild(option); + }); + container.appendChild(input); +} + +Toolbar.DEFAULTS = { + container: null, + handlers: { + clean: function clean() { + var _this3 = this; + + var range = this.quill.getSelection(); + if (range == null) return; + if (range.length == 0) { + var formats = this.quill.getFormat(); + Object.keys(formats).forEach(function (name) { + // Clean functionality in existing apps only clean inline formats + if (_parchment2.default.query(name, _parchment2.default.Scope.INLINE) != null) { + _this3.quill.format(name, false); + } + }); + } else { + this.quill.removeFormat(range, _quill2.default.sources.USER); + } + }, + direction: function direction(value) { + var align = this.quill.getFormat()['align']; + if (value === 'rtl' && align == null) { + this.quill.format('align', 'right', _quill2.default.sources.USER); + } else if (!value && align === 'right') { + this.quill.format('align', false, _quill2.default.sources.USER); + } + this.quill.format('direction', value, _quill2.default.sources.USER); + }, + indent: function indent(value) { + var range = this.quill.getSelection(); + var formats = this.quill.getFormat(range); + var indent = parseInt(formats.indent || 0); + if (value === '+1' || value === '-1') { + var modifier = value === '+1' ? 1 : -1; + if (formats.direction === 'rtl') modifier *= -1; + this.quill.format('indent', indent + modifier, _quill2.default.sources.USER); + } + }, + link: function link(value) { + if (value === true) { + value = prompt('Enter link URL:'); + } + this.quill.format('link', value, _quill2.default.sources.USER); + }, + list: function list(value) { + var range = this.quill.getSelection(); + var formats = this.quill.getFormat(range); + if (value === 'check') { + if (formats['list'] === 'checked' || formats['list'] === 'unchecked') { + this.quill.format('list', false, _quill2.default.sources.USER); + } else { + this.quill.format('list', 'unchecked', _quill2.default.sources.USER); + } + } else { + this.quill.format('list', value, _quill2.default.sources.USER); + } + } + } +}; + +exports.default = Toolbar; +exports.addControls = addControls; + +/***/ }), +/* 58 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 59 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _picker = __webpack_require__(28); + +var _picker2 = _interopRequireDefault(_picker); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var ColorPicker = function (_Picker) { + _inherits(ColorPicker, _Picker); + + function ColorPicker(select, label) { + _classCallCheck(this, ColorPicker); + + var _this = _possibleConstructorReturn(this, (ColorPicker.__proto__ || Object.getPrototypeOf(ColorPicker)).call(this, select)); + + _this.label.innerHTML = label; + _this.container.classList.add('ql-color-picker'); + [].slice.call(_this.container.querySelectorAll('.ql-picker-item'), 0, 7).forEach(function (item) { + item.classList.add('ql-primary'); + }); + return _this; + } + + _createClass(ColorPicker, [{ + key: 'buildItem', + value: function buildItem(option) { + var item = _get(ColorPicker.prototype.__proto__ || Object.getPrototypeOf(ColorPicker.prototype), 'buildItem', this).call(this, option); + item.style.backgroundColor = option.getAttribute('value') || ''; + return item; + } + }, { + key: 'selectItem', + value: function selectItem(item, trigger) { + _get(ColorPicker.prototype.__proto__ || Object.getPrototypeOf(ColorPicker.prototype), 'selectItem', this).call(this, item, trigger); + var colorLabel = this.label.querySelector('.ql-color-label'); + var value = item ? item.getAttribute('data-value') || '' : ''; + if (colorLabel) { + if (colorLabel.tagName === 'line') { + colorLabel.style.stroke = value; + } else { + colorLabel.style.fill = value; + } + } + } + }]); + + return ColorPicker; +}(_picker2.default); + +exports.default = ColorPicker; + +/***/ }), +/* 60 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _picker = __webpack_require__(28); + +var _picker2 = _interopRequireDefault(_picker); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var IconPicker = function (_Picker) { + _inherits(IconPicker, _Picker); + + function IconPicker(select, icons) { + _classCallCheck(this, IconPicker); + + var _this = _possibleConstructorReturn(this, (IconPicker.__proto__ || Object.getPrototypeOf(IconPicker)).call(this, select)); + + _this.container.classList.add('ql-icon-picker'); + [].forEach.call(_this.container.querySelectorAll('.ql-picker-item'), function (item) { + item.innerHTML = icons[item.getAttribute('data-value') || '']; + }); + _this.defaultItem = _this.container.querySelector('.ql-selected'); + _this.selectItem(_this.defaultItem); + return _this; + } + + _createClass(IconPicker, [{ + key: 'selectItem', + value: function selectItem(item, trigger) { + _get(IconPicker.prototype.__proto__ || Object.getPrototypeOf(IconPicker.prototype), 'selectItem', this).call(this, item, trigger); + item = item || this.defaultItem; + this.label.innerHTML = item.innerHTML; + } + }]); + + return IconPicker; +}(_picker2.default); + +exports.default = IconPicker; + +/***/ }), +/* 61 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +var Tooltip = function () { + function Tooltip(quill, boundsContainer) { + var _this = this; + + _classCallCheck(this, Tooltip); + + this.quill = quill; + this.boundsContainer = boundsContainer || document.body; + this.root = quill.addContainer('ql-tooltip'); + this.root.innerHTML = this.constructor.TEMPLATE; + if (this.quill.root === this.quill.scrollingContainer) { + this.quill.root.addEventListener('scroll', function () { + _this.root.style.marginTop = -1 * _this.quill.root.scrollTop + 'px'; + }); + } + this.hide(); + } + + _createClass(Tooltip, [{ + key: 'hide', + value: function hide() { + this.root.classList.add('ql-hidden'); + } + }, { + key: 'position', + value: function position(reference) { + var left = reference.left + reference.width / 2 - this.root.offsetWidth / 2; + // root.scrollTop should be 0 if scrollContainer !== root + var top = reference.bottom + this.quill.root.scrollTop; + this.root.style.left = left + 'px'; + this.root.style.top = top + 'px'; + this.root.classList.remove('ql-flip'); + var containerBounds = this.boundsContainer.getBoundingClientRect(); + var rootBounds = this.root.getBoundingClientRect(); + var shift = 0; + if (rootBounds.right > containerBounds.right) { + shift = containerBounds.right - rootBounds.right; + this.root.style.left = left + shift + 'px'; + } + if (rootBounds.left < containerBounds.left) { + shift = containerBounds.left - rootBounds.left; + this.root.style.left = left + shift + 'px'; + } + if (rootBounds.bottom > containerBounds.bottom) { + var height = rootBounds.bottom - rootBounds.top; + var verticalShift = reference.bottom - reference.top + height; + this.root.style.top = top - verticalShift + 'px'; + this.root.classList.add('ql-flip'); + } + return shift; + } + }, { + key: 'show', + value: function show() { + this.root.classList.remove('ql-editing'); + this.root.classList.remove('ql-hidden'); + } + }]); + + return Tooltip; +}(); + +exports.default = Tooltip; + +/***/ }), +/* 62 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _extend = __webpack_require__(3); + +var _extend2 = _interopRequireDefault(_extend); + +var _emitter = __webpack_require__(8); + +var _emitter2 = _interopRequireDefault(_emitter); + +var _base = __webpack_require__(43); + +var _base2 = _interopRequireDefault(_base); + +var _link = __webpack_require__(27); + +var _link2 = _interopRequireDefault(_link); + +var _selection = __webpack_require__(15); + +var _icons = __webpack_require__(41); + +var _icons2 = _interopRequireDefault(_icons); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var TOOLBAR_CONFIG = [[{ header: ['1', '2', '3', false] }], ['bold', 'italic', 'underline', 'link'], [{ list: 'ordered' }, { list: 'bullet' }], ['clean']]; + +var SnowTheme = function (_BaseTheme) { + _inherits(SnowTheme, _BaseTheme); + + function SnowTheme(quill, options) { + _classCallCheck(this, SnowTheme); + + if (options.modules.toolbar != null && options.modules.toolbar.container == null) { + options.modules.toolbar.container = TOOLBAR_CONFIG; + } + + var _this = _possibleConstructorReturn(this, (SnowTheme.__proto__ || Object.getPrototypeOf(SnowTheme)).call(this, quill, options)); + + _this.quill.container.classList.add('ql-snow'); + return _this; + } + + _createClass(SnowTheme, [{ + key: 'extendToolbar', + value: function extendToolbar(toolbar) { + toolbar.container.classList.add('ql-snow'); + this.buildButtons([].slice.call(toolbar.container.querySelectorAll('button')), _icons2.default); + this.buildPickers([].slice.call(toolbar.container.querySelectorAll('select')), _icons2.default); + this.tooltip = new SnowTooltip(this.quill, this.options.bounds); + if (toolbar.container.querySelector('.ql-link')) { + this.quill.keyboard.addBinding({ key: 'K', shortKey: true }, function (range, context) { + toolbar.handlers['link'].call(toolbar, !context.format.link); + }); + } + } + }]); + + return SnowTheme; +}(_base2.default); + +SnowTheme.DEFAULTS = (0, _extend2.default)(true, {}, _base2.default.DEFAULTS, { + modules: { + toolbar: { + handlers: { + link: function link(value) { + if (value) { + var range = this.quill.getSelection(); + if (range == null || range.length == 0) return; + var preview = this.quill.getText(range); + if (/^\S+@\S+\.\S+$/.test(preview) && preview.indexOf('mailto:') !== 0) { + preview = 'mailto:' + preview; + } + var tooltip = this.quill.theme.tooltip; + tooltip.edit('link', preview); + } else { + this.quill.format('link', false); + } + } + } + } + } +}); + +var SnowTooltip = function (_BaseTooltip) { + _inherits(SnowTooltip, _BaseTooltip); + + function SnowTooltip(quill, bounds) { + _classCallCheck(this, SnowTooltip); + + var _this2 = _possibleConstructorReturn(this, (SnowTooltip.__proto__ || Object.getPrototypeOf(SnowTooltip)).call(this, quill, bounds)); + + _this2.preview = _this2.root.querySelector('a.ql-preview'); + return _this2; + } + + _createClass(SnowTooltip, [{ + key: 'listen', + value: function listen() { + var _this3 = this; + + _get(SnowTooltip.prototype.__proto__ || Object.getPrototypeOf(SnowTooltip.prototype), 'listen', this).call(this); + this.root.querySelector('a.ql-action').addEventListener('click', function (event) { + if (_this3.root.classList.contains('ql-editing')) { + _this3.save(); + } else { + _this3.edit('link', _this3.preview.textContent); + } + event.preventDefault(); + }); + this.root.querySelector('a.ql-remove').addEventListener('click', function (event) { + if (_this3.linkRange != null) { + var range = _this3.linkRange; + _this3.restoreFocus(); + _this3.quill.formatText(range, 'link', false, _emitter2.default.sources.USER); + delete _this3.linkRange; + } + event.preventDefault(); + _this3.hide(); + }); + this.quill.on(_emitter2.default.events.SELECTION_CHANGE, function (range, oldRange, source) { + if (range == null) return; + if (range.length === 0 && source === _emitter2.default.sources.USER) { + var _quill$scroll$descend = _this3.quill.scroll.descendant(_link2.default, range.index), + _quill$scroll$descend2 = _slicedToArray(_quill$scroll$descend, 2), + link = _quill$scroll$descend2[0], + offset = _quill$scroll$descend2[1]; + + if (link != null) { + _this3.linkRange = new _selection.Range(range.index - offset, link.length()); + var preview = _link2.default.formats(link.domNode); + _this3.preview.textContent = preview; + _this3.preview.setAttribute('href', preview); + _this3.show(); + _this3.position(_this3.quill.getBounds(_this3.linkRange)); + return; + } + } else { + delete _this3.linkRange; + } + _this3.hide(); + }); + } + }, { + key: 'show', + value: function show() { + _get(SnowTooltip.prototype.__proto__ || Object.getPrototypeOf(SnowTooltip.prototype), 'show', this).call(this); + this.root.removeAttribute('data-mode'); + } + }]); + + return SnowTooltip; +}(_base.BaseTooltip); + +SnowTooltip.TEMPLATE = ['', '', '', ''].join(''); + +exports.default = SnowTheme; + +/***/ }), +/* 63 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _core = __webpack_require__(29); + +var _core2 = _interopRequireDefault(_core); + +var _align = __webpack_require__(36); + +var _direction = __webpack_require__(38); + +var _indent = __webpack_require__(64); + +var _blockquote = __webpack_require__(65); + +var _blockquote2 = _interopRequireDefault(_blockquote); + +var _header = __webpack_require__(66); + +var _header2 = _interopRequireDefault(_header); + +var _list = __webpack_require__(67); + +var _list2 = _interopRequireDefault(_list); + +var _background = __webpack_require__(37); + +var _color = __webpack_require__(26); + +var _font = __webpack_require__(39); + +var _size = __webpack_require__(40); + +var _bold = __webpack_require__(56); + +var _bold2 = _interopRequireDefault(_bold); + +var _italic = __webpack_require__(68); + +var _italic2 = _interopRequireDefault(_italic); + +var _link = __webpack_require__(27); + +var _link2 = _interopRequireDefault(_link); + +var _script = __webpack_require__(69); + +var _script2 = _interopRequireDefault(_script); + +var _strike = __webpack_require__(70); + +var _strike2 = _interopRequireDefault(_strike); + +var _underline = __webpack_require__(71); + +var _underline2 = _interopRequireDefault(_underline); + +var _image = __webpack_require__(72); + +var _image2 = _interopRequireDefault(_image); + +var _video = __webpack_require__(73); + +var _video2 = _interopRequireDefault(_video); + +var _code = __webpack_require__(13); + +var _code2 = _interopRequireDefault(_code); + +var _formula = __webpack_require__(74); + +var _formula2 = _interopRequireDefault(_formula); + +var _syntax = __webpack_require__(75); + +var _syntax2 = _interopRequireDefault(_syntax); + +var _toolbar = __webpack_require__(57); + +var _toolbar2 = _interopRequireDefault(_toolbar); + +var _icons = __webpack_require__(41); + +var _icons2 = _interopRequireDefault(_icons); + +var _picker = __webpack_require__(28); + +var _picker2 = _interopRequireDefault(_picker); + +var _colorPicker = __webpack_require__(59); + +var _colorPicker2 = _interopRequireDefault(_colorPicker); + +var _iconPicker = __webpack_require__(60); + +var _iconPicker2 = _interopRequireDefault(_iconPicker); + +var _tooltip = __webpack_require__(61); + +var _tooltip2 = _interopRequireDefault(_tooltip); + +var _bubble = __webpack_require__(108); + +var _bubble2 = _interopRequireDefault(_bubble); + +var _snow = __webpack_require__(62); + +var _snow2 = _interopRequireDefault(_snow); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +_core2.default.register({ + 'attributors/attribute/direction': _direction.DirectionAttribute, + + 'attributors/class/align': _align.AlignClass, + 'attributors/class/background': _background.BackgroundClass, + 'attributors/class/color': _color.ColorClass, + 'attributors/class/direction': _direction.DirectionClass, + 'attributors/class/font': _font.FontClass, + 'attributors/class/size': _size.SizeClass, + + 'attributors/style/align': _align.AlignStyle, + 'attributors/style/background': _background.BackgroundStyle, + 'attributors/style/color': _color.ColorStyle, + 'attributors/style/direction': _direction.DirectionStyle, + 'attributors/style/font': _font.FontStyle, + 'attributors/style/size': _size.SizeStyle +}, true); + +_core2.default.register({ + 'formats/align': _align.AlignClass, + 'formats/direction': _direction.DirectionClass, + 'formats/indent': _indent.IndentClass, + + 'formats/background': _background.BackgroundStyle, + 'formats/color': _color.ColorStyle, + 'formats/font': _font.FontClass, + 'formats/size': _size.SizeClass, + + 'formats/blockquote': _blockquote2.default, + 'formats/code-block': _code2.default, + 'formats/header': _header2.default, + 'formats/list': _list2.default, + + 'formats/bold': _bold2.default, + 'formats/code': _code.Code, + 'formats/italic': _italic2.default, + 'formats/link': _link2.default, + 'formats/script': _script2.default, + 'formats/strike': _strike2.default, + 'formats/underline': _underline2.default, + + 'formats/image': _image2.default, + 'formats/video': _video2.default, + + 'formats/list/item': _list.ListItem, + + 'modules/formula': _formula2.default, + 'modules/syntax': _syntax2.default, + 'modules/toolbar': _toolbar2.default, + + 'themes/bubble': _bubble2.default, + 'themes/snow': _snow2.default, + + 'ui/icons': _icons2.default, + 'ui/picker': _picker2.default, + 'ui/icon-picker': _iconPicker2.default, + 'ui/color-picker': _colorPicker2.default, + 'ui/tooltip': _tooltip2.default +}, true); + +exports.default = _core2.default; + +/***/ }), +/* 64 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.IndentClass = undefined; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var IdentAttributor = function (_Parchment$Attributor) { + _inherits(IdentAttributor, _Parchment$Attributor); + + function IdentAttributor() { + _classCallCheck(this, IdentAttributor); + + return _possibleConstructorReturn(this, (IdentAttributor.__proto__ || Object.getPrototypeOf(IdentAttributor)).apply(this, arguments)); + } + + _createClass(IdentAttributor, [{ + key: 'add', + value: function add(node, value) { + if (value === '+1' || value === '-1') { + var indent = this.value(node) || 0; + value = value === '+1' ? indent + 1 : indent - 1; + } + if (value === 0) { + this.remove(node); + return true; + } else { + return _get(IdentAttributor.prototype.__proto__ || Object.getPrototypeOf(IdentAttributor.prototype), 'add', this).call(this, node, value); + } + } + }, { + key: 'canAdd', + value: function canAdd(node, value) { + return _get(IdentAttributor.prototype.__proto__ || Object.getPrototypeOf(IdentAttributor.prototype), 'canAdd', this).call(this, node, value) || _get(IdentAttributor.prototype.__proto__ || Object.getPrototypeOf(IdentAttributor.prototype), 'canAdd', this).call(this, node, parseInt(value)); + } + }, { + key: 'value', + value: function value(node) { + return parseInt(_get(IdentAttributor.prototype.__proto__ || Object.getPrototypeOf(IdentAttributor.prototype), 'value', this).call(this, node)) || undefined; // Don't return NaN + } + }]); + + return IdentAttributor; +}(_parchment2.default.Attributor.Class); + +var IndentClass = new IdentAttributor('indent', 'ql-indent', { + scope: _parchment2.default.Scope.BLOCK, + whitelist: [1, 2, 3, 4, 5, 6, 7, 8] +}); + +exports.IndentClass = IndentClass; + +/***/ }), +/* 65 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _block = __webpack_require__(4); + +var _block2 = _interopRequireDefault(_block); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Blockquote = function (_Block) { + _inherits(Blockquote, _Block); + + function Blockquote() { + _classCallCheck(this, Blockquote); + + return _possibleConstructorReturn(this, (Blockquote.__proto__ || Object.getPrototypeOf(Blockquote)).apply(this, arguments)); + } + + return Blockquote; +}(_block2.default); + +Blockquote.blotName = 'blockquote'; +Blockquote.tagName = 'blockquote'; + +exports.default = Blockquote; + +/***/ }), +/* 66 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _block = __webpack_require__(4); + +var _block2 = _interopRequireDefault(_block); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Header = function (_Block) { + _inherits(Header, _Block); + + function Header() { + _classCallCheck(this, Header); + + return _possibleConstructorReturn(this, (Header.__proto__ || Object.getPrototypeOf(Header)).apply(this, arguments)); + } + + _createClass(Header, null, [{ + key: 'formats', + value: function formats(domNode) { + return this.tagName.indexOf(domNode.tagName) + 1; + } + }]); + + return Header; +}(_block2.default); + +Header.blotName = 'header'; +Header.tagName = ['H1', 'H2', 'H3', 'H4', 'H5', 'H6']; + +exports.default = Header; + +/***/ }), +/* 67 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.ListItem = undefined; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _block = __webpack_require__(4); + +var _block2 = _interopRequireDefault(_block); + +var _container = __webpack_require__(25); + +var _container2 = _interopRequireDefault(_container); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var ListItem = function (_Block) { + _inherits(ListItem, _Block); + + function ListItem() { + _classCallCheck(this, ListItem); + + return _possibleConstructorReturn(this, (ListItem.__proto__ || Object.getPrototypeOf(ListItem)).apply(this, arguments)); + } + + _createClass(ListItem, [{ + key: 'format', + value: function format(name, value) { + if (name === List.blotName && !value) { + this.replaceWith(_parchment2.default.create(this.statics.scope)); + } else { + _get(ListItem.prototype.__proto__ || Object.getPrototypeOf(ListItem.prototype), 'format', this).call(this, name, value); + } + } + }, { + key: 'remove', + value: function remove() { + if (this.prev == null && this.next == null) { + this.parent.remove(); + } else { + _get(ListItem.prototype.__proto__ || Object.getPrototypeOf(ListItem.prototype), 'remove', this).call(this); + } + } + }, { + key: 'replaceWith', + value: function replaceWith(name, value) { + this.parent.isolate(this.offset(this.parent), this.length()); + if (name === this.parent.statics.blotName) { + this.parent.replaceWith(name, value); + return this; + } else { + this.parent.unwrap(); + return _get(ListItem.prototype.__proto__ || Object.getPrototypeOf(ListItem.prototype), 'replaceWith', this).call(this, name, value); + } + } + }], [{ + key: 'formats', + value: function formats(domNode) { + return domNode.tagName === this.tagName ? undefined : _get(ListItem.__proto__ || Object.getPrototypeOf(ListItem), 'formats', this).call(this, domNode); + } + }]); + + return ListItem; +}(_block2.default); + +ListItem.blotName = 'list-item'; +ListItem.tagName = 'LI'; + +var List = function (_Container) { + _inherits(List, _Container); + + _createClass(List, null, [{ + key: 'create', + value: function create(value) { + var tagName = value === 'ordered' ? 'OL' : 'UL'; + var node = _get(List.__proto__ || Object.getPrototypeOf(List), 'create', this).call(this, tagName); + if (value === 'checked' || value === 'unchecked') { + node.setAttribute('data-checked', value === 'checked'); + } + return node; + } + }, { + key: 'formats', + value: function formats(domNode) { + if (domNode.tagName === 'OL') return 'ordered'; + if (domNode.tagName === 'UL') { + if (domNode.hasAttribute('data-checked')) { + return domNode.getAttribute('data-checked') === 'true' ? 'checked' : 'unchecked'; + } else { + return 'bullet'; + } + } + return undefined; + } + }]); + + function List(domNode) { + _classCallCheck(this, List); + + var _this2 = _possibleConstructorReturn(this, (List.__proto__ || Object.getPrototypeOf(List)).call(this, domNode)); + + var listEventHandler = function listEventHandler(e) { + if (e.target.parentNode !== domNode) return; + var format = _this2.statics.formats(domNode); + var blot = _parchment2.default.find(e.target); + if (format === 'checked') { + blot.format('list', 'unchecked'); + } else if (format === 'unchecked') { + blot.format('list', 'checked'); + } + }; + + domNode.addEventListener('touchstart', listEventHandler); + domNode.addEventListener('mousedown', listEventHandler); + return _this2; + } + + _createClass(List, [{ + key: 'format', + value: function format(name, value) { + if (this.children.length > 0) { + this.children.tail.format(name, value); + } + } + }, { + key: 'formats', + value: function formats() { + // We don't inherit from FormatBlot + return _defineProperty({}, this.statics.blotName, this.statics.formats(this.domNode)); + } + }, { + key: 'insertBefore', + value: function insertBefore(blot, ref) { + if (blot instanceof ListItem) { + _get(List.prototype.__proto__ || Object.getPrototypeOf(List.prototype), 'insertBefore', this).call(this, blot, ref); + } else { + var index = ref == null ? this.length() : ref.offset(this); + var after = this.split(index); + after.parent.insertBefore(blot, after); + } + } + }, { + key: 'optimize', + value: function optimize(context) { + _get(List.prototype.__proto__ || Object.getPrototypeOf(List.prototype), 'optimize', this).call(this, context); + var next = this.next; + if (next != null && next.prev === this && next.statics.blotName === this.statics.blotName && next.domNode.tagName === this.domNode.tagName && next.domNode.getAttribute('data-checked') === this.domNode.getAttribute('data-checked')) { + next.moveChildren(this); + next.remove(); + } + } + }, { + key: 'replace', + value: function replace(target) { + if (target.statics.blotName !== this.statics.blotName) { + var item = _parchment2.default.create(this.statics.defaultChild); + target.moveChildren(item); + this.appendChild(item); + } + _get(List.prototype.__proto__ || Object.getPrototypeOf(List.prototype), 'replace', this).call(this, target); + } + }]); + + return List; +}(_container2.default); + +List.blotName = 'list'; +List.scope = _parchment2.default.Scope.BLOCK_BLOT; +List.tagName = ['OL', 'UL']; +List.defaultChild = 'list-item'; +List.allowedChildren = [ListItem]; + +exports.ListItem = ListItem; +exports.default = List; + +/***/ }), +/* 68 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _bold = __webpack_require__(56); + +var _bold2 = _interopRequireDefault(_bold); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Italic = function (_Bold) { + _inherits(Italic, _Bold); + + function Italic() { + _classCallCheck(this, Italic); + + return _possibleConstructorReturn(this, (Italic.__proto__ || Object.getPrototypeOf(Italic)).apply(this, arguments)); + } + + return Italic; +}(_bold2.default); + +Italic.blotName = 'italic'; +Italic.tagName = ['EM', 'I']; + +exports.default = Italic; + +/***/ }), +/* 69 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _inline = __webpack_require__(6); + +var _inline2 = _interopRequireDefault(_inline); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Script = function (_Inline) { + _inherits(Script, _Inline); + + function Script() { + _classCallCheck(this, Script); + + return _possibleConstructorReturn(this, (Script.__proto__ || Object.getPrototypeOf(Script)).apply(this, arguments)); + } + + _createClass(Script, null, [{ + key: 'create', + value: function create(value) { + if (value === 'super') { + return document.createElement('sup'); + } else if (value === 'sub') { + return document.createElement('sub'); + } else { + return _get(Script.__proto__ || Object.getPrototypeOf(Script), 'create', this).call(this, value); + } + } + }, { + key: 'formats', + value: function formats(domNode) { + if (domNode.tagName === 'SUB') return 'sub'; + if (domNode.tagName === 'SUP') return 'super'; + return undefined; + } + }]); + + return Script; +}(_inline2.default); + +Script.blotName = 'script'; +Script.tagName = ['SUB', 'SUP']; + +exports.default = Script; + +/***/ }), +/* 70 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _inline = __webpack_require__(6); + +var _inline2 = _interopRequireDefault(_inline); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Strike = function (_Inline) { + _inherits(Strike, _Inline); + + function Strike() { + _classCallCheck(this, Strike); + + return _possibleConstructorReturn(this, (Strike.__proto__ || Object.getPrototypeOf(Strike)).apply(this, arguments)); + } + + return Strike; +}(_inline2.default); + +Strike.blotName = 'strike'; +Strike.tagName = 'S'; + +exports.default = Strike; + +/***/ }), +/* 71 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _inline = __webpack_require__(6); + +var _inline2 = _interopRequireDefault(_inline); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var Underline = function (_Inline) { + _inherits(Underline, _Inline); + + function Underline() { + _classCallCheck(this, Underline); + + return _possibleConstructorReturn(this, (Underline.__proto__ || Object.getPrototypeOf(Underline)).apply(this, arguments)); + } + + return Underline; +}(_inline2.default); + +Underline.blotName = 'underline'; +Underline.tagName = 'U'; + +exports.default = Underline; + +/***/ }), +/* 72 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _link = __webpack_require__(27); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var ATTRIBUTES = ['alt', 'height', 'width']; + +var Image = function (_Parchment$Embed) { + _inherits(Image, _Parchment$Embed); + + function Image() { + _classCallCheck(this, Image); + + return _possibleConstructorReturn(this, (Image.__proto__ || Object.getPrototypeOf(Image)).apply(this, arguments)); + } + + _createClass(Image, [{ + key: 'format', + value: function format(name, value) { + if (ATTRIBUTES.indexOf(name) > -1) { + if (value) { + this.domNode.setAttribute(name, value); + } else { + this.domNode.removeAttribute(name); + } + } else { + _get(Image.prototype.__proto__ || Object.getPrototypeOf(Image.prototype), 'format', this).call(this, name, value); + } + } + }], [{ + key: 'create', + value: function create(value) { + var node = _get(Image.__proto__ || Object.getPrototypeOf(Image), 'create', this).call(this, value); + if (typeof value === 'string') { + node.setAttribute('src', this.sanitize(value)); + } + return node; + } + }, { + key: 'formats', + value: function formats(domNode) { + return ATTRIBUTES.reduce(function (formats, attribute) { + if (domNode.hasAttribute(attribute)) { + formats[attribute] = domNode.getAttribute(attribute); + } + return formats; + }, {}); + } + }, { + key: 'match', + value: function match(url) { + return (/\.(jpe?g|gif|png)$/.test(url) || /^data:image\/.+;base64/.test(url) + ); + } + }, { + key: 'sanitize', + value: function sanitize(url) { + return (0, _link.sanitize)(url, ['http', 'https', 'data']) ? url : '//:0'; + } + }, { + key: 'value', + value: function value(domNode) { + return domNode.getAttribute('src'); + } + }]); + + return Image; +}(_parchment2.default.Embed); + +Image.blotName = 'image'; +Image.tagName = 'IMG'; + +exports.default = Image; + +/***/ }), +/* 73 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _block = __webpack_require__(4); + +var _link = __webpack_require__(27); + +var _link2 = _interopRequireDefault(_link); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var ATTRIBUTES = ['height', 'width']; + +var Video = function (_BlockEmbed) { + _inherits(Video, _BlockEmbed); + + function Video() { + _classCallCheck(this, Video); + + return _possibleConstructorReturn(this, (Video.__proto__ || Object.getPrototypeOf(Video)).apply(this, arguments)); + } + + _createClass(Video, [{ + key: 'format', + value: function format(name, value) { + if (ATTRIBUTES.indexOf(name) > -1) { + if (value) { + this.domNode.setAttribute(name, value); + } else { + this.domNode.removeAttribute(name); + } + } else { + _get(Video.prototype.__proto__ || Object.getPrototypeOf(Video.prototype), 'format', this).call(this, name, value); + } + } + }], [{ + key: 'create', + value: function create(value) { + var node = _get(Video.__proto__ || Object.getPrototypeOf(Video), 'create', this).call(this, value); + node.setAttribute('frameborder', '0'); + node.setAttribute('allowfullscreen', true); + node.setAttribute('src', this.sanitize(value)); + return node; + } + }, { + key: 'formats', + value: function formats(domNode) { + return ATTRIBUTES.reduce(function (formats, attribute) { + if (domNode.hasAttribute(attribute)) { + formats[attribute] = domNode.getAttribute(attribute); + } + return formats; + }, {}); + } + }, { + key: 'sanitize', + value: function sanitize(url) { + return _link2.default.sanitize(url); + } + }, { + key: 'value', + value: function value(domNode) { + return domNode.getAttribute('src'); + } + }]); + + return Video; +}(_block.BlockEmbed); + +Video.blotName = 'video'; +Video.className = 'ql-video'; +Video.tagName = 'IFRAME'; + +exports.default = Video; + +/***/ }), +/* 74 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.FormulaBlot = undefined; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _embed = __webpack_require__(35); + +var _embed2 = _interopRequireDefault(_embed); + +var _quill = __webpack_require__(5); + +var _quill2 = _interopRequireDefault(_quill); + +var _module = __webpack_require__(9); + +var _module2 = _interopRequireDefault(_module); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var FormulaBlot = function (_Embed) { + _inherits(FormulaBlot, _Embed); + + function FormulaBlot() { + _classCallCheck(this, FormulaBlot); + + return _possibleConstructorReturn(this, (FormulaBlot.__proto__ || Object.getPrototypeOf(FormulaBlot)).apply(this, arguments)); + } + + _createClass(FormulaBlot, null, [{ + key: 'create', + value: function create(value) { + var node = _get(FormulaBlot.__proto__ || Object.getPrototypeOf(FormulaBlot), 'create', this).call(this, value); + if (typeof value === 'string') { + window.katex.render(value, node, { + throwOnError: false, + errorColor: '#f00' + }); + node.setAttribute('data-value', value); + } + return node; + } + }, { + key: 'value', + value: function value(domNode) { + return domNode.getAttribute('data-value'); + } + }]); + + return FormulaBlot; +}(_embed2.default); + +FormulaBlot.blotName = 'formula'; +FormulaBlot.className = 'ql-formula'; +FormulaBlot.tagName = 'SPAN'; + +var Formula = function (_Module) { + _inherits(Formula, _Module); + + _createClass(Formula, null, [{ + key: 'register', + value: function register() { + _quill2.default.register(FormulaBlot, true); + } + }]); + + function Formula() { + _classCallCheck(this, Formula); + + var _this2 = _possibleConstructorReturn(this, (Formula.__proto__ || Object.getPrototypeOf(Formula)).call(this)); + + if (window.katex == null) { + throw new Error('Formula module requires KaTeX.'); + } + return _this2; + } + + return Formula; +}(_module2.default); + +exports.FormulaBlot = FormulaBlot; +exports.default = Formula; + +/***/ }), +/* 75 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.CodeToken = exports.CodeBlock = undefined; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _parchment = __webpack_require__(0); + +var _parchment2 = _interopRequireDefault(_parchment); + +var _quill = __webpack_require__(5); + +var _quill2 = _interopRequireDefault(_quill); + +var _module = __webpack_require__(9); + +var _module2 = _interopRequireDefault(_module); + +var _code = __webpack_require__(13); + +var _code2 = _interopRequireDefault(_code); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var SyntaxCodeBlock = function (_CodeBlock) { + _inherits(SyntaxCodeBlock, _CodeBlock); + + function SyntaxCodeBlock() { + _classCallCheck(this, SyntaxCodeBlock); + + return _possibleConstructorReturn(this, (SyntaxCodeBlock.__proto__ || Object.getPrototypeOf(SyntaxCodeBlock)).apply(this, arguments)); + } + + _createClass(SyntaxCodeBlock, [{ + key: 'replaceWith', + value: function replaceWith(block) { + this.domNode.textContent = this.domNode.textContent; + this.attach(); + _get(SyntaxCodeBlock.prototype.__proto__ || Object.getPrototypeOf(SyntaxCodeBlock.prototype), 'replaceWith', this).call(this, block); + } + }, { + key: 'highlight', + value: function highlight(_highlight) { + var text = this.domNode.textContent; + if (this.cachedText !== text) { + if (text.trim().length > 0 || this.cachedText == null) { + this.domNode.innerHTML = _highlight(text); + this.domNode.normalize(); + this.attach(); + } + this.cachedText = text; + } + } + }]); + + return SyntaxCodeBlock; +}(_code2.default); + +SyntaxCodeBlock.className = 'ql-syntax'; + +var CodeToken = new _parchment2.default.Attributor.Class('token', 'hljs', { + scope: _parchment2.default.Scope.INLINE +}); + +var Syntax = function (_Module) { + _inherits(Syntax, _Module); + + _createClass(Syntax, null, [{ + key: 'register', + value: function register() { + _quill2.default.register(CodeToken, true); + _quill2.default.register(SyntaxCodeBlock, true); + } + }]); + + function Syntax(quill, options) { + _classCallCheck(this, Syntax); + + var _this2 = _possibleConstructorReturn(this, (Syntax.__proto__ || Object.getPrototypeOf(Syntax)).call(this, quill, options)); + + if (typeof _this2.options.highlight !== 'function') { + throw new Error('Syntax module requires highlight.js. Please include the library on the page before Quill.'); + } + var timer = null; + _this2.quill.on(_quill2.default.events.SCROLL_OPTIMIZE, function () { + clearTimeout(timer); + timer = setTimeout(function () { + _this2.highlight(); + timer = null; + }, _this2.options.interval); + }); + _this2.highlight(); + return _this2; + } + + _createClass(Syntax, [{ + key: 'highlight', + value: function highlight() { + var _this3 = this; + + if (this.quill.selection.composing) return; + this.quill.update(_quill2.default.sources.USER); + var range = this.quill.getSelection(); + this.quill.scroll.descendants(SyntaxCodeBlock).forEach(function (code) { + code.highlight(_this3.options.highlight); + }); + this.quill.update(_quill2.default.sources.SILENT); + if (range != null) { + this.quill.setSelection(range, _quill2.default.sources.SILENT); + } + } + }]); + + return Syntax; +}(_module2.default); + +Syntax.DEFAULTS = { + highlight: function () { + if (window.hljs == null) return null; + return function (text) { + var result = window.hljs.highlightAuto(text); + return result.value; + }; + }(), + interval: 1000 +}; + +exports.CodeBlock = SyntaxCodeBlock; +exports.CodeToken = CodeToken; +exports.default = Syntax; + +/***/ }), +/* 76 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 77 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 78 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 79 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 80 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 81 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 82 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 83 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 84 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 85 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 86 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 87 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 88 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 89 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 90 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 91 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 92 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 93 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 94 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 95 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 96 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 97 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 98 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 99 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 100 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 101 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 102 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 103 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 104 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 105 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 106 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 107 */ +/***/ (function(module, exports) { + +module.exports = " "; + +/***/ }), +/* 108 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.BubbleTooltip = undefined; + +var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, property, receiver); } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } }; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _extend = __webpack_require__(3); + +var _extend2 = _interopRequireDefault(_extend); + +var _emitter = __webpack_require__(8); + +var _emitter2 = _interopRequireDefault(_emitter); + +var _base = __webpack_require__(43); + +var _base2 = _interopRequireDefault(_base); + +var _selection = __webpack_require__(15); + +var _icons = __webpack_require__(41); + +var _icons2 = _interopRequireDefault(_icons); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + +function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + +var TOOLBAR_CONFIG = [['bold', 'italic', 'link'], [{ header: 1 }, { header: 2 }, 'blockquote']]; + +var BubbleTheme = function (_BaseTheme) { + _inherits(BubbleTheme, _BaseTheme); + + function BubbleTheme(quill, options) { + _classCallCheck(this, BubbleTheme); + + if (options.modules.toolbar != null && options.modules.toolbar.container == null) { + options.modules.toolbar.container = TOOLBAR_CONFIG; + } + + var _this = _possibleConstructorReturn(this, (BubbleTheme.__proto__ || Object.getPrototypeOf(BubbleTheme)).call(this, quill, options)); + + _this.quill.container.classList.add('ql-bubble'); + return _this; + } + + _createClass(BubbleTheme, [{ + key: 'extendToolbar', + value: function extendToolbar(toolbar) { + this.tooltip = new BubbleTooltip(this.quill, this.options.bounds); + this.tooltip.root.appendChild(toolbar.container); + this.buildButtons([].slice.call(toolbar.container.querySelectorAll('button')), _icons2.default); + this.buildPickers([].slice.call(toolbar.container.querySelectorAll('select')), _icons2.default); + } + }]); + + return BubbleTheme; +}(_base2.default); + +BubbleTheme.DEFAULTS = (0, _extend2.default)(true, {}, _base2.default.DEFAULTS, { + modules: { + toolbar: { + handlers: { + link: function link(value) { + if (!value) { + this.quill.format('link', false); + } else { + this.quill.theme.tooltip.edit(); + } + } + } + } + } +}); + +var BubbleTooltip = function (_BaseTooltip) { + _inherits(BubbleTooltip, _BaseTooltip); + + function BubbleTooltip(quill, bounds) { + _classCallCheck(this, BubbleTooltip); + + var _this2 = _possibleConstructorReturn(this, (BubbleTooltip.__proto__ || Object.getPrototypeOf(BubbleTooltip)).call(this, quill, bounds)); + + _this2.quill.on(_emitter2.default.events.EDITOR_CHANGE, function (type, range, oldRange, source) { + if (type !== _emitter2.default.events.SELECTION_CHANGE) return; + if (range != null && range.length > 0 && source === _emitter2.default.sources.USER) { + _this2.show(); + // Lock our width so we will expand beyond our offsetParent boundaries + _this2.root.style.left = '0px'; + _this2.root.style.width = ''; + _this2.root.style.width = _this2.root.offsetWidth + 'px'; + var lines = _this2.quill.getLines(range.index, range.length); + if (lines.length === 1) { + _this2.position(_this2.quill.getBounds(range)); + } else { + var lastLine = lines[lines.length - 1]; + var index = _this2.quill.getIndex(lastLine); + var length = Math.min(lastLine.length() - 1, range.index + range.length - index); + var _bounds = _this2.quill.getBounds(new _selection.Range(index, length)); + _this2.position(_bounds); + } + } else if (document.activeElement !== _this2.textbox && _this2.quill.hasFocus()) { + _this2.hide(); + } + }); + return _this2; + } + + _createClass(BubbleTooltip, [{ + key: 'listen', + value: function listen() { + var _this3 = this; + + _get(BubbleTooltip.prototype.__proto__ || Object.getPrototypeOf(BubbleTooltip.prototype), 'listen', this).call(this); + this.root.querySelector('.ql-close').addEventListener('click', function () { + _this3.root.classList.remove('ql-editing'); + }); + this.quill.on(_emitter2.default.events.SCROLL_OPTIMIZE, function () { + // Let selection be restored by toolbar handlers before repositioning + setTimeout(function () { + if (_this3.root.classList.contains('ql-hidden')) return; + var range = _this3.quill.getSelection(); + if (range != null) { + _this3.position(_this3.quill.getBounds(range)); + } + }, 1); + }); + } + }, { + key: 'cancel', + value: function cancel() { + this.show(); + } + }, { + key: 'position', + value: function position(reference) { + var shift = _get(BubbleTooltip.prototype.__proto__ || Object.getPrototypeOf(BubbleTooltip.prototype), 'position', this).call(this, reference); + var arrow = this.root.querySelector('.ql-tooltip-arrow'); + arrow.style.marginLeft = ''; + if (shift === 0) return shift; + arrow.style.marginLeft = -1 * shift - arrow.offsetWidth / 2 + 'px'; + } + }]); + + return BubbleTooltip; +}(_base.BaseTooltip); + +BubbleTooltip.TEMPLATE = ['', '
    ', '', '', '
    '].join(''); + +exports.BubbleTooltip = BubbleTooltip; +exports.default = BubbleTheme; + +/***/ }), +/* 109 */ +/***/ (function(module, exports, __webpack_require__) { + +module.exports = __webpack_require__(63); + + +/***/ }) +/******/ ])["default"]; +}); \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/quill.min.js b/assets/vendors/js/editors/quill/quill.min.js new file mode 100644 index 0000000..ff30fd9 --- /dev/null +++ b/assets/vendors/js/editors/quill/quill.min.js @@ -0,0 +1,8 @@ +/*! + * Quill Editor v1.3.6 + * https://quilljs.com/ + * Copyright (c) 2014, Jason Chen + * Copyright (c) 2013, salesforce.com + */ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.Quill=e():t.Quill=e()}("undefined"!=typeof self?self:this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var n={};return e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=45)}([function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(17),o=n(18),i=n(19),l=n(48),a=n(49),s=n(50),u=n(51),c=n(52),f=n(11),h=n(29),p=n(30),d=n(28),y=n(1),v={Scope:y.Scope,create:y.create,find:y.find,query:y.query,register:y.register,Container:r.default,Format:o.default,Leaf:i.default,Embed:u.default,Scroll:l.default,Block:s.default,Inline:a.default,Text:c.default,Attributor:{Attribute:f.default,Class:h.default,Style:p.default,Store:d.default}};e.default=v},function(t,e,n){"use strict";function r(t,e){var n=i(t);if(null==n)throw new s("Unable to create "+t+" blot");var r=n;return new r(t instanceof Node||t.nodeType===Node.TEXT_NODE?t:r.create(e),e)}function o(t,n){return void 0===n&&(n=!1),null==t?null:null!=t[e.DATA_KEY]?t[e.DATA_KEY].blot:n?o(t.parentNode,n):null}function i(t,e){void 0===e&&(e=p.ANY);var n;if("string"==typeof t)n=h[t]||u[t];else if(t instanceof Text||t.nodeType===Node.TEXT_NODE)n=h.text;else if("number"==typeof t)t&p.LEVEL&p.BLOCK?n=h.block:t&p.LEVEL&p.INLINE&&(n=h.inline);else if(t instanceof HTMLElement){var r=(t.getAttribute("class")||"").split(/\s+/);for(var o in r)if(n=c[r[o]])break;n=n||f[t.tagName]}return null==n?null:e&p.LEVEL&n.scope&&e&p.TYPE&n.scope?n:null}function l(){for(var t=[],e=0;e1)return t.map(function(t){return l(t)});var n=t[0];if("string"!=typeof n.blotName&&"string"!=typeof n.attrName)throw new s("Invalid definition");if("abstract"===n.blotName)throw new s("Cannot register abstract class");if(h[n.blotName||n.attrName]=n,"string"==typeof n.keyName)u[n.keyName]=n;else if(null!=n.className&&(c[n.className]=n),null!=n.tagName){Array.isArray(n.tagName)?n.tagName=n.tagName.map(function(t){return t.toUpperCase()}):n.tagName=n.tagName.toUpperCase();var r=Array.isArray(n.tagName)?n.tagName:[n.tagName];r.forEach(function(t){null!=f[t]&&null!=n.className||(f[t]=n)})}return n}var a=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var s=function(t){function e(e){var n=this;return e="[Parchment] "+e,n=t.call(this,e)||this,n.message=e,n.name=n.constructor.name,n}return a(e,t),e}(Error);e.ParchmentError=s;var u={},c={},f={},h={};e.DATA_KEY="__blot";var p;!function(t){t[t.TYPE=3]="TYPE",t[t.LEVEL=12]="LEVEL",t[t.ATTRIBUTE=13]="ATTRIBUTE",t[t.BLOT=14]="BLOT",t[t.INLINE=7]="INLINE",t[t.BLOCK=11]="BLOCK",t[t.BLOCK_BLOT=10]="BLOCK_BLOT",t[t.INLINE_BLOT=6]="INLINE_BLOT",t[t.BLOCK_ATTRIBUTE=9]="BLOCK_ATTRIBUTE",t[t.INLINE_ATTRIBUTE=5]="INLINE_ATTRIBUTE",t[t.ANY=15]="ANY"}(p=e.Scope||(e.Scope={})),e.create=r,e.find=o,e.query=i,e.register=l},function(t,e){"use strict";var n=Object.prototype.hasOwnProperty,r=Object.prototype.toString,o=function(t){return"function"==typeof Array.isArray?Array.isArray(t):"[object Array]"===r.call(t)},i=function(t){if(!t||"[object Object]"!==r.call(t))return!1;var e=n.call(t,"constructor"),o=t.constructor&&t.constructor.prototype&&n.call(t.constructor.prototype,"isPrototypeOf");if(t.constructor&&!e&&!o)return!1;var i;for(i in t);return void 0===i||n.call(t,i)};t.exports=function t(){var e,n,r,l,a,s,u=arguments[0],c=1,f=arguments.length,h=!1;for("boolean"==typeof u&&(h=u,u=arguments[1]||{},c=2),(null==u||"object"!=typeof u&&"function"!=typeof u)&&(u={});c1&&void 0!==arguments[1]?arguments[1]:{};return null==t?e:("function"==typeof t.formats&&(e=(0,f.default)(e,t.formats())),null==t.parent||"scroll"==t.parent.blotName||t.parent.statics.scope!==t.statics.scope?e:a(t.parent,e))}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.BlockEmbed=e.bubbleFormats=void 0;var s=function(){function t(t,e){for(var n=0;n0&&(t1&&void 0!==arguments[1]&&arguments[1];if(n&&(0===t||t>=this.length()-1)){var r=this.clone();return 0===t?(this.parent.insertBefore(r,this),this):(this.parent.insertBefore(r,this.next),r)}var o=u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"split",this).call(this,t,n);return this.cache={},o}}]),e}(y.default.Block);x.blotName="block",x.tagName="P",x.defaultChild="break",x.allowedChildren=[m.default,y.default.Embed,O.default],e.bubbleFormats=a,e.BlockEmbed=w,e.default=x},function(t,e,n){var r=n(54),o=n(12),i=n(2),l=n(20),a=String.fromCharCode(0),s=function(t){Array.isArray(t)?this.ops=t:null!=t&&Array.isArray(t.ops)?this.ops=t.ops:this.ops=[]};s.prototype.insert=function(t,e){var n={};return 0===t.length?this:(n.insert=t,null!=e&&"object"==typeof e&&Object.keys(e).length>0&&(n.attributes=e),this.push(n))},s.prototype.delete=function(t){return t<=0?this:this.push({delete:t})},s.prototype.retain=function(t,e){if(t<=0)return this;var n={retain:t};return null!=e&&"object"==typeof e&&Object.keys(e).length>0&&(n.attributes=e),this.push(n)},s.prototype.push=function(t){var e=this.ops.length,n=this.ops[e-1];if(t=i(!0,{},t),"object"==typeof n){if("number"==typeof t.delete&&"number"==typeof n.delete)return this.ops[e-1]={delete:n.delete+t.delete},this;if("number"==typeof n.delete&&null!=t.insert&&(e-=1,"object"!=typeof(n=this.ops[e-1])))return this.ops.unshift(t),this;if(o(t.attributes,n.attributes)){if("string"==typeof t.insert&&"string"==typeof n.insert)return this.ops[e-1]={insert:n.insert+t.insert},"object"==typeof t.attributes&&(this.ops[e-1].attributes=t.attributes),this;if("number"==typeof t.retain&&"number"==typeof n.retain)return this.ops[e-1]={retain:n.retain+t.retain},"object"==typeof t.attributes&&(this.ops[e-1].attributes=t.attributes),this}}return e===this.ops.length?this.ops.push(t):this.ops.splice(e,0,t),this},s.prototype.chop=function(){var t=this.ops[this.ops.length-1];return t&&t.retain&&!t.attributes&&this.ops.pop(),this},s.prototype.filter=function(t){return this.ops.filter(t)},s.prototype.forEach=function(t){this.ops.forEach(t)},s.prototype.map=function(t){return this.ops.map(t)},s.prototype.partition=function(t){var e=[],n=[];return this.forEach(function(r){(t(r)?e:n).push(r)}),[e,n]},s.prototype.reduce=function(t,e){return this.ops.reduce(t,e)},s.prototype.changeLength=function(){return this.reduce(function(t,e){return e.insert?t+l.length(e):e.delete?t-e.delete:t},0)},s.prototype.length=function(){return this.reduce(function(t,e){return t+l.length(e)},0)},s.prototype.slice=function(t,e){t=t||0,"number"!=typeof e&&(e=1/0);for(var n=[],r=l.iterator(this.ops),o=0;o0&&(e.push(t.ops[0]),e.ops=e.ops.concat(t.ops.slice(1))),e},s.prototype.diff=function(t,e){if(this.ops===t.ops)return new s;var n=[this,t].map(function(e){return e.map(function(n){if(null!=n.insert)return"string"==typeof n.insert?n.insert:a;var r=e===t?"on":"with";throw new Error("diff() called "+r+" non-document")}).join("")}),i=new s,u=r(n[0],n[1],e),c=l.iterator(this.ops),f=l.iterator(t.ops);return u.forEach(function(t){for(var e=t[1].length;e>0;){var n=0;switch(t[0]){case r.INSERT:n=Math.min(f.peekLength(),e),i.push(f.next(n));break;case r.DELETE:n=Math.min(e,c.peekLength()),c.next(n),i.delete(n);break;case r.EQUAL:n=Math.min(c.peekLength(),f.peekLength(),e);var a=c.next(n),s=f.next(n);o(a.insert,s.insert)?i.retain(n,l.attributes.diff(a.attributes,s.attributes)):i.push(s).delete(n)}e-=n}}),i.chop()},s.prototype.eachLine=function(t,e){e=e||"\n";for(var n=l.iterator(this.ops),r=new s,o=0;n.hasNext();){if("insert"!==n.peekType())return;var i=n.peek(),a=l.length(i)-n.peekLength(),u="string"==typeof i.insert?i.insert.indexOf(e,a)-a:-1;if(u<0)r.push(n.next());else if(u>0)r.push(n.next(u));else{if(!1===t(r,n.next(1).attributes||{},o))return;o+=1,r=new s}}r.length()>0&&t(r,{},o)},s.prototype.transform=function(t,e){if(e=!!e,"number"==typeof t)return this.transformPosition(t,e);for(var n=l.iterator(this.ops),r=l.iterator(t.ops),o=new s;n.hasNext()||r.hasNext();)if("insert"!==n.peekType()||!e&&"insert"===r.peekType())if("insert"===r.peekType())o.push(r.next());else{var i=Math.min(n.peekLength(),r.peekLength()),a=n.next(i),u=r.next(i);if(a.delete)continue;u.delete?o.push(u):o.retain(i,l.attributes.transform(a.attributes,u.attributes,e))}else o.retain(l.length(n.next()));return o.chop()},s.prototype.transformPosition=function(t,e){e=!!e;for(var n=l.iterator(this.ops),r=0;n.hasNext()&&r<=t;){var o=n.peekLength(),i=n.peekType();n.next(),"delete"!==i?("insert"===i&&(r0){var n=this.parent.isolate(this.offset(),this.length());this.moveChildren(n),n.wrap(this)}}}],[{key:"compare",value:function(t,n){var r=e.order.indexOf(t),o=e.order.indexOf(n);return r>=0||o>=0?r-o:t===n?0:t0){var a,s=[g.default.events.TEXT_CHANGE,l,i,e];if((a=this.emitter).emit.apply(a,[g.default.events.EDITOR_CHANGE].concat(s)),e!==g.default.sources.SILENT){var c;(c=this.emitter).emit.apply(c,s)}}return l}function s(t,e,n,r,o){var i={};return"number"==typeof t.index&&"number"==typeof t.length?"number"!=typeof e?(o=r,r=n,n=e,e=t.length,t=t.index):(e=t.length,t=t.index):"number"!=typeof e&&(o=r,r=n,n=e,e=0),"object"===(void 0===n?"undefined":c(n))?(i=n,o=r):"string"==typeof n&&(null!=r?i[n]=r:o=n),o=o||g.default.sources.API,[t,e,i,o]}function u(t,e,n,r){if(null==t)return null;var o=void 0,i=void 0;if(e instanceof d.default){var l=[t.index,t.index+t.length].map(function(t){return e.transformPosition(t,r!==g.default.sources.USER)}),a=f(l,2);o=a[0],i=a[1]}else{var s=[t.index,t.index+t.length].map(function(t){return t=0?t+n:Math.max(e,t+n)}),u=f(s,2);o=u[0],i=u[1]}return new x.Range(o,i-o)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.overload=e.expandConfig=void 0;var c="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},f=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),h=function(){function t(t,e){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:{};if(i(this,t),this.options=l(e,r),this.container=this.options.container,null==this.container)return P.error("Invalid Quill container",e);this.options.debug&&t.debug(this.options.debug);var o=this.container.innerHTML.trim();this.container.classList.add("ql-container"),this.container.innerHTML="",this.container.__quill=this,this.root=this.addContainer("ql-editor"),this.root.classList.add("ql-blank"),this.root.setAttribute("data-gramm",!1),this.scrollingContainer=this.options.scrollingContainer||this.root,this.emitter=new g.default,this.scroll=w.default.create(this.root,{emitter:this.emitter,whitelist:this.options.formats}),this.editor=new v.default(this.scroll),this.selection=new k.default(this.scroll,this.emitter),this.theme=new this.options.theme(this,this.options),this.keyboard=this.theme.addModule("keyboard"),this.clipboard=this.theme.addModule("clipboard"),this.history=this.theme.addModule("history"),this.theme.init(),this.emitter.on(g.default.events.EDITOR_CHANGE,function(t){t===g.default.events.TEXT_CHANGE&&n.root.classList.toggle("ql-blank",n.editor.isBlank())}),this.emitter.on(g.default.events.SCROLL_UPDATE,function(t,e){var r=n.selection.lastRange,o=r&&0===r.length?r.index:void 0;a.call(n,function(){return n.editor.update(null,e,o)},t)});var s=this.clipboard.convert("
    "+o+"


    ");this.setContents(s),this.history.clear(),this.options.placeholder&&this.root.setAttribute("data-placeholder",this.options.placeholder),this.options.readOnly&&this.disable()}return h(t,null,[{key:"debug",value:function(t){!0===t&&(t="log"),A.default.level(t)}},{key:"find",value:function(t){return t.__quill||w.default.find(t)}},{key:"import",value:function(t){return null==this.imports[t]&&P.error("Cannot import "+t+". Are you sure it was registered?"),this.imports[t]}},{key:"register",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if("string"!=typeof t){var o=t.attrName||t.blotName;"string"==typeof o?this.register("formats/"+o,t,e):Object.keys(t).forEach(function(r){n.register(r,t[r],e)})}else null==this.imports[t]||r||P.warn("Overwriting "+t+" with",e),this.imports[t]=e,(t.startsWith("blots/")||t.startsWith("formats/"))&&"abstract"!==e.blotName?w.default.register(e):t.startsWith("modules")&&"function"==typeof e.register&&e.register()}}]),h(t,[{key:"addContainer",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("string"==typeof t){var n=t;t=document.createElement("div"),t.classList.add(n)}return this.container.insertBefore(t,e),t}},{key:"blur",value:function(){this.selection.setRange(null)}},{key:"deleteText",value:function(t,e,n){var r=this,o=s(t,e,n),i=f(o,4);return t=i[0],e=i[1],n=i[3],a.call(this,function(){return r.editor.deleteText(t,e)},n,t,-1*e)}},{key:"disable",value:function(){this.enable(!1)}},{key:"enable",value:function(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.scroll.enable(t),this.container.classList.toggle("ql-disabled",!t)}},{key:"focus",value:function(){var t=this.scrollingContainer.scrollTop;this.selection.focus(),this.scrollingContainer.scrollTop=t,this.scrollIntoView()}},{key:"format",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:g.default.sources.API;return a.call(this,function(){var r=n.getSelection(!0),i=new d.default;if(null==r)return i;if(w.default.query(t,w.default.Scope.BLOCK))i=n.editor.formatLine(r.index,r.length,o({},t,e));else{if(0===r.length)return n.selection.format(t,e),i;i=n.editor.formatText(r.index,r.length,o({},t,e))}return n.setSelection(r,g.default.sources.SILENT),i},r)}},{key:"formatLine",value:function(t,e,n,r,o){var i=this,l=void 0,u=s(t,e,n,r,o),c=f(u,4);return t=c[0],e=c[1],l=c[2],o=c[3],a.call(this,function(){return i.editor.formatLine(t,e,l)},o,t,0)}},{key:"formatText",value:function(t,e,n,r,o){var i=this,l=void 0,u=s(t,e,n,r,o),c=f(u,4);return t=c[0],e=c[1],l=c[2],o=c[3],a.call(this,function(){return i.editor.formatText(t,e,l)},o,t,0)}},{key:"getBounds",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=void 0;n="number"==typeof t?this.selection.getBounds(t,e):this.selection.getBounds(t.index,t.length);var r=this.container.getBoundingClientRect();return{bottom:n.bottom-r.top,height:n.height,left:n.left-r.left,right:n.right-r.left,top:n.top-r.top,width:n.width}}},{key:"getContents",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getLength()-t,n=s(t,e),r=f(n,2);return t=r[0],e=r[1],this.editor.getContents(t,e)}},{key:"getFormat",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.getSelection(!0),e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return"number"==typeof t?this.editor.getFormat(t,e):this.editor.getFormat(t.index,t.length)}},{key:"getIndex",value:function(t){return t.offset(this.scroll)}},{key:"getLength",value:function(){return this.scroll.length()}},{key:"getLeaf",value:function(t){return this.scroll.leaf(t)}},{key:"getLine",value:function(t){return this.scroll.line(t)}},{key:"getLines",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE;return"number"!=typeof t?this.scroll.lines(t.index,t.length):this.scroll.lines(t,e)}},{key:"getModule",value:function(t){return this.theme.modules[t]}},{key:"getSelection",value:function(){return arguments.length>0&&void 0!==arguments[0]&&arguments[0]&&this.focus(),this.update(),this.selection.getRange()[0]}},{key:"getText",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getLength()-t,n=s(t,e),r=f(n,2);return t=r[0],e=r[1],this.editor.getText(t,e)}},{key:"hasFocus",value:function(){return this.selection.hasFocus()}},{key:"insertEmbed",value:function(e,n,r){var o=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:t.sources.API;return a.call(this,function(){return o.editor.insertEmbed(e,n,r)},i,e)}},{key:"insertText",value:function(t,e,n,r,o){var i=this,l=void 0,u=s(t,0,n,r,o),c=f(u,4);return t=c[0],l=c[2],o=c[3],a.call(this,function(){return i.editor.insertText(t,e,l)},o,t,e.length)}},{key:"isEnabled",value:function(){return!this.container.classList.contains("ql-disabled")}},{key:"off",value:function(){return this.emitter.off.apply(this.emitter,arguments)}},{key:"on",value:function(){return this.emitter.on.apply(this.emitter,arguments)}},{key:"once",value:function(){return this.emitter.once.apply(this.emitter,arguments)}},{key:"pasteHTML",value:function(t,e,n){this.clipboard.dangerouslyPasteHTML(t,e,n)}},{key:"removeFormat",value:function(t,e,n){var r=this,o=s(t,e,n),i=f(o,4);return t=i[0],e=i[1],n=i[3],a.call(this,function(){return r.editor.removeFormat(t,e)},n,t)}},{key:"scrollIntoView",value:function(){this.selection.scrollIntoView(this.scrollingContainer)}},{key:"setContents",value:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:g.default.sources.API;return a.call(this,function(){t=new d.default(t);var n=e.getLength(),r=e.editor.deleteText(0,n),o=e.editor.applyDelta(t),i=o.ops[o.ops.length-1];return null!=i&&"string"==typeof i.insert&&"\n"===i.insert[i.insert.length-1]&&(e.editor.deleteText(e.getLength()-1,1),o.delete(1)),r.compose(o)},n)}},{key:"setSelection",value:function(e,n,r){if(null==e)this.selection.setRange(null,n||t.sources.API);else{var o=s(e,n,r),i=f(o,4);e=i[0],n=i[1],r=i[3],this.selection.setRange(new x.Range(e,n),r),r!==g.default.sources.SILENT&&this.selection.scrollIntoView(this.scrollingContainer)}}},{key:"setText",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:g.default.sources.API,n=(new d.default).insert(t);return this.setContents(n,e)}},{key:"update",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:g.default.sources.USER,e=this.scroll.update(t);return this.selection.update(t),e}},{key:"updateContents",value:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:g.default.sources.API;return a.call(this,function(){return t=new d.default(t),e.editor.applyDelta(t,n)},n,!0)}}]),t}();S.DEFAULTS={bounds:null,formats:null,modules:{},placeholder:"",readOnly:!1,scrollingContainer:null,strict:!0,theme:"default"},S.events=g.default.events,S.sources=g.default.sources,S.version="1.3.6",S.imports={delta:d.default,parchment:w.default,"core/module":_.default,"core/theme":T.default},e.expandConfig=l,e.overload=s,e.default=S},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var o=function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};r(this,t),this.quill=e,this.options=n};o.DEFAULTS={},e.default=o},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(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 i(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)}Object.defineProperty(e,"__esModule",{value:!0});var l=n(0),a=function(t){return t&&t.__esModule?t:{default:t}}(l),s=function(t){function e(){return r(this,e),o(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return i(e,t),e}(a.default.Text);e.default=s},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(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 l(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)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var n=0;n1?e-1:0),r=1;r1?n-1:0),o=1;o-1:this.whitelist.indexOf(e)>-1))},t.prototype.remove=function(t){t.removeAttribute(this.keyName)},t.prototype.value=function(t){var e=t.getAttribute(this.keyName);return this.canAdd(t,e)&&e?e:""},t}();e.default=o},function(t,e,n){function r(t){return null===t||void 0===t}function o(t){return!(!t||"object"!=typeof t||"number"!=typeof t.length)&&("function"==typeof t.copy&&"function"==typeof t.slice&&!(t.length>0&&"number"!=typeof t[0]))}function i(t,e,n){var i,c;if(r(t)||r(e))return!1;if(t.prototype!==e.prototype)return!1;if(s(t))return!!s(e)&&(t=l.call(t),e=l.call(e),u(t,e,n));if(o(t)){if(!o(e))return!1;if(t.length!==e.length)return!1;for(i=0;i=0;i--)if(f[i]!=h[i])return!1;for(i=f.length-1;i>=0;i--)if(c=f[i],!u(t[c],e[c],n))return!1;return typeof t==typeof e}var l=Array.prototype.slice,a=n(55),s=n(56),u=t.exports=function(t,e,n){return n||(n={}),t===e||(t instanceof Date&&e instanceof Date?t.getTime()===e.getTime():!t||!e||"object"!=typeof t&&"object"!=typeof e?n.strict?t===e:t==e:i(t,e,n))}},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(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 l(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)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.Code=void 0;var a=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function t(t,e){for(var n=0;n=t+n)){var l=this.newlineIndex(t,!0)+1,a=i-l+1,s=this.isolate(l,a),u=s.next;s.format(r,o),u instanceof e&&u.formatAt(0,t-l+n-a,r,o)}}}},{key:"insertAt",value:function(t,e,n){if(null==n){var r=this.descendant(m.default,t),o=a(r,2),i=o[0],l=o[1];i.insertAt(l,e)}}},{key:"length",value:function(){var t=this.domNode.textContent.length;return this.domNode.textContent.endsWith("\n")?t:t+1}},{key:"newlineIndex",value:function(t){if(arguments.length>1&&void 0!==arguments[1]&&arguments[1])return this.domNode.textContent.slice(0,t).lastIndexOf("\n");var e=this.domNode.textContent.slice(t).indexOf("\n");return e>-1?t+e:-1}},{key:"optimize",value:function(t){this.domNode.textContent.endsWith("\n")||this.appendChild(p.default.create("text","\n")),u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"optimize",this).call(this,t);var n=this.next;null!=n&&n.prev===this&&n.statics.blotName===this.statics.blotName&&this.statics.formats(this.domNode)===n.statics.formats(n.domNode)&&(n.optimize(t),n.moveChildren(this),n.remove())}},{key:"replace",value:function(t){u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"replace",this).call(this,t),[].slice.call(this.domNode.querySelectorAll("*")).forEach(function(t){var e=p.default.find(t);null==e?t.parentNode.removeChild(t):e instanceof p.default.Embed?e.remove():e.unwrap()})}}],[{key:"create",value:function(t){var n=u(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,t);return n.setAttribute("spellcheck",!1),n}},{key:"formats",value:function(){return!0}}]),e}(y.default);O.blotName="code-block",O.tagName="PRE",O.TAB=" ",e.Code=_,e.default=O},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(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 i(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)}Object.defineProperty(e,"__esModule",{value:!0});var l=function(){function t(t,e){for(var n=0;n-1}Object.defineProperty(e,"__esModule",{value:!0}),e.sanitize=e.default=void 0;var a=function(){function t(t,e){for(var n=0;n1&&void 0!==arguments[1]&&arguments[1],n=this.container.querySelector(".ql-selected");if(t!==n&&(null!=n&&n.classList.remove("ql-selected"),null!=t&&(t.classList.add("ql-selected"),this.select.selectedIndex=[].indexOf.call(t.parentNode.children,t),t.hasAttribute("data-value")?this.label.setAttribute("data-value",t.getAttribute("data-value")):this.label.removeAttribute("data-value"),t.hasAttribute("data-label")?this.label.setAttribute("data-label",t.getAttribute("data-label")):this.label.removeAttribute("data-label"),e))){if("function"==typeof Event)this.select.dispatchEvent(new Event("change"));else if("object"===("undefined"==typeof Event?"undefined":l(Event))){var r=document.createEvent("Event");r.initEvent("change",!0,!0),this.select.dispatchEvent(r)}this.close()}}},{key:"update",value:function(){var t=void 0;if(this.select.selectedIndex>-1){var e=this.container.querySelector(".ql-picker-options").children[this.select.selectedIndex];t=this.select.options[this.select.selectedIndex],this.selectItem(e)}else this.selectItem(null);var n=null!=t&&t!==this.select.querySelector("option[selected]");this.label.classList.toggle("ql-active",n)}}]),t}();e.default=p},function(t,e,n){"use strict";function r(t){var e=a.find(t);if(null==e)try{e=a.create(t)}catch(n){e=a.create(a.Scope.INLINE),[].slice.call(t.childNodes).forEach(function(t){e.domNode.appendChild(t)}),t.parentNode&&t.parentNode.replaceChild(e.domNode,t),e.attach()}return e}var o=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(47),l=n(27),a=n(1),s=function(t){function e(e){var n=t.call(this,e)||this;return n.build(),n}return o(e,t),e.prototype.appendChild=function(t){this.insertBefore(t)},e.prototype.attach=function(){t.prototype.attach.call(this),this.children.forEach(function(t){t.attach()})},e.prototype.build=function(){var t=this;this.children=new i.default,[].slice.call(this.domNode.childNodes).reverse().forEach(function(e){try{var n=r(e);t.insertBefore(n,t.children.head||void 0)}catch(t){if(t instanceof a.ParchmentError)return;throw t}})},e.prototype.deleteAt=function(t,e){if(0===t&&e===this.length())return this.remove();this.children.forEachAt(t,e,function(t,e,n){t.deleteAt(e,n)})},e.prototype.descendant=function(t,n){var r=this.children.find(n),o=r[0],i=r[1];return null==t.blotName&&t(o)||null!=t.blotName&&o instanceof t?[o,i]:o instanceof e?o.descendant(t,i):[null,-1]},e.prototype.descendants=function(t,n,r){void 0===n&&(n=0),void 0===r&&(r=Number.MAX_VALUE);var o=[],i=r;return this.children.forEachAt(n,r,function(n,r,l){(null==t.blotName&&t(n)||null!=t.blotName&&n instanceof t)&&o.push(n),n instanceof e&&(o=o.concat(n.descendants(t,r,i))),i-=l}),o},e.prototype.detach=function(){this.children.forEach(function(t){t.detach()}),t.prototype.detach.call(this)},e.prototype.formatAt=function(t,e,n,r){this.children.forEachAt(t,e,function(t,e,o){t.formatAt(e,o,n,r)})},e.prototype.insertAt=function(t,e,n){var r=this.children.find(t),o=r[0],i=r[1];if(o)o.insertAt(i,e,n);else{var l=null==n?a.create("text",e):a.create(e,n);this.appendChild(l)}},e.prototype.insertBefore=function(t,e){if(null!=this.statics.allowedChildren&&!this.statics.allowedChildren.some(function(e){return t instanceof e}))throw new a.ParchmentError("Cannot insert "+t.statics.blotName+" into "+this.statics.blotName);t.insertInto(this,e)},e.prototype.length=function(){return this.children.reduce(function(t,e){return t+e.length()},0)},e.prototype.moveChildren=function(t,e){this.children.forEach(function(n){t.insertBefore(n,e)})},e.prototype.optimize=function(e){if(t.prototype.optimize.call(this,e),0===this.children.length)if(null!=this.statics.defaultChild){var n=a.create(this.statics.defaultChild);this.appendChild(n),n.optimize(e)}else this.remove()},e.prototype.path=function(t,n){void 0===n&&(n=!1);var r=this.children.find(t,n),o=r[0],i=r[1],l=[[this,t]];return o instanceof e?l.concat(o.path(i,n)):(null!=o&&l.push([o,i]),l)},e.prototype.removeChild=function(t){this.children.remove(t)},e.prototype.replace=function(n){n instanceof e&&n.moveChildren(this),t.prototype.replace.call(this,n)},e.prototype.split=function(t,e){if(void 0===e&&(e=!1),!e){if(0===t)return this;if(t===this.length())return this.next}var n=this.clone();return this.parent.insertBefore(n,this.next),this.children.forEachAt(t,this.length(),function(t,r,o){t=t.split(r,e),n.appendChild(t)}),n},e.prototype.unwrap=function(){this.moveChildren(this.parent,this.next),this.remove()},e.prototype.update=function(t,e){var n=this,o=[],i=[];t.forEach(function(t){t.target===n.domNode&&"childList"===t.type&&(o.push.apply(o,t.addedNodes),i.push.apply(i,t.removedNodes))}),i.forEach(function(t){if(!(null!=t.parentNode&&"IFRAME"!==t.tagName&&document.body.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)){var e=a.find(t);null!=e&&(null!=e.domNode.parentNode&&e.domNode.parentNode!==n.domNode||e.detach())}}),o.filter(function(t){return t.parentNode==n.domNode}).sort(function(t,e){return t===e?0:t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING?1:-1}).forEach(function(t){var e=null;null!=t.nextSibling&&(e=a.find(t.nextSibling));var o=r(t);o.next==e&&null!=o.next||(null!=o.parent&&o.parent.removeChild(n),n.insertBefore(o,e||void 0))})},e}(l.default);e.default=s},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(11),i=n(28),l=n(17),a=n(1),s=function(t){function e(e){var n=t.call(this,e)||this;return n.attributes=new i.default(n.domNode),n}return r(e,t),e.formats=function(t){return"string"==typeof this.tagName||(Array.isArray(this.tagName)?t.tagName.toLowerCase():void 0)},e.prototype.format=function(t,e){var n=a.query(t);n instanceof o.default?this.attributes.attribute(n,e):e&&(null==n||t===this.statics.blotName&&this.formats()[t]===e||this.replaceWith(t,e))},e.prototype.formats=function(){var t=this.attributes.values(),e=this.statics.formats(this.domNode);return null!=e&&(t[this.statics.blotName]=e),t},e.prototype.replaceWith=function(e,n){var r=t.prototype.replaceWith.call(this,e,n);return this.attributes.copy(r),r},e.prototype.update=function(e,n){var r=this;t.prototype.update.call(this,e,n),e.some(function(t){return t.target===r.domNode&&"attributes"===t.type})&&this.attributes.build()},e.prototype.wrap=function(n,r){var o=t.prototype.wrap.call(this,n,r);return o instanceof e&&o.statics.scope===this.statics.scope&&this.attributes.move(o),o},e}(l.default);e.default=s},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(27),i=n(1),l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.value=function(t){return!0},e.prototype.index=function(t,e){return this.domNode===t||this.domNode.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY?Math.min(e,1):-1},e.prototype.position=function(t,e){var n=[].indexOf.call(this.parent.domNode.childNodes,this.domNode);return t>0&&(n+=1),[this.parent.domNode,n]},e.prototype.value=function(){return t={},t[this.statics.blotName]=this.statics.value(this.domNode)||!0,t;var t},e.scope=i.Scope.INLINE_BLOT,e}(o.default);e.default=l},function(t,e,n){function r(t){this.ops=t,this.index=0,this.offset=0}var o=n(12),i=n(2),l={attributes:{compose:function(t,e,n){"object"!=typeof t&&(t={}),"object"!=typeof e&&(e={});var r=i(!0,{},e);n||(r=Object.keys(r).reduce(function(t,e){return null!=r[e]&&(t[e]=r[e]),t},{}));for(var o in t)void 0!==t[o]&&void 0===e[o]&&(r[o]=t[o]);return Object.keys(r).length>0?r:void 0},diff:function(t,e){"object"!=typeof t&&(t={}),"object"!=typeof e&&(e={});var n=Object.keys(t).concat(Object.keys(e)).reduce(function(n,r){return o(t[r],e[r])||(n[r]=void 0===e[r]?null:e[r]),n},{});return Object.keys(n).length>0?n:void 0},transform:function(t,e,n){if("object"!=typeof t)return e;if("object"==typeof e){if(!n)return e;var r=Object.keys(e).reduce(function(n,r){return void 0===t[r]&&(n[r]=e[r]),n},{});return Object.keys(r).length>0?r:void 0}}},iterator:function(t){return new r(t)},length:function(t){return"number"==typeof t.delete?t.delete:"number"==typeof t.retain?t.retain:"string"==typeof t.insert?t.insert.length:1}};r.prototype.hasNext=function(){return this.peekLength()<1/0},r.prototype.next=function(t){t||(t=1/0);var e=this.ops[this.index];if(e){var n=this.offset,r=l.length(e);if(t>=r-n?(t=r-n,this.index+=1,this.offset=0):this.offset+=t,"number"==typeof e.delete)return{delete:t};var o={};return e.attributes&&(o.attributes=e.attributes),"number"==typeof e.retain?o.retain=t:"string"==typeof e.insert?o.insert=e.insert.substr(n,t):o.insert=e.insert,o}return{retain:1/0}},r.prototype.peek=function(){return this.ops[this.index]},r.prototype.peekLength=function(){return this.ops[this.index]?l.length(this.ops[this.index])-this.offset:1/0},r.prototype.peekType=function(){return this.ops[this.index]?"number"==typeof this.ops[this.index].delete?"delete":"number"==typeof this.ops[this.index].retain?"retain":"insert":"retain"},t.exports=l},function(t,e){var n=function(){"use strict";function t(t,e){return null!=e&&t instanceof e}function e(n,r,o,i,c){function f(n,o){if(null===n)return null;if(0===o)return n;var y,v;if("object"!=typeof n)return n;if(t(n,a))y=new a;else if(t(n,s))y=new s;else if(t(n,u))y=new u(function(t,e){n.then(function(e){t(f(e,o-1))},function(t){e(f(t,o-1))})});else if(e.__isArray(n))y=[];else if(e.__isRegExp(n))y=new RegExp(n.source,l(n)),n.lastIndex&&(y.lastIndex=n.lastIndex);else if(e.__isDate(n))y=new Date(n.getTime());else{if(d&&Buffer.isBuffer(n))return y=new Buffer(n.length),n.copy(y),y;t(n,Error)?y=Object.create(n):void 0===i?(v=Object.getPrototypeOf(n),y=Object.create(v)):(y=Object.create(i),v=i)}if(r){var b=h.indexOf(n);if(-1!=b)return p[b];h.push(n),p.push(y)}t(n,a)&&n.forEach(function(t,e){var n=f(e,o-1),r=f(t,o-1);y.set(n,r)}),t(n,s)&&n.forEach(function(t){var e=f(t,o-1);y.add(e)});for(var g in n){var m;v&&(m=Object.getOwnPropertyDescriptor(v,g)),m&&null==m.set||(y[g]=f(n[g],o-1))}if(Object.getOwnPropertySymbols)for(var _=Object.getOwnPropertySymbols(n),g=0;g<_.length;g++){var O=_[g],w=Object.getOwnPropertyDescriptor(n,O);(!w||w.enumerable||c)&&(y[O]=f(n[O],o-1),w.enumerable||Object.defineProperty(y,O,{enumerable:!1}))}if(c)for(var x=Object.getOwnPropertyNames(n),g=0;g1&&void 0!==arguments[1]?arguments[1]:0;i(this,t),this.index=e,this.length=n},O=function(){function t(e,n){var r=this;i(this,t),this.emitter=n,this.scroll=e,this.composing=!1,this.mouseDown=!1,this.root=this.scroll.domNode,this.cursor=c.default.create("cursor",this),this.lastRange=this.savedRange=new _(0,0),this.handleComposition(),this.handleDragging(),this.emitter.listenDOM("selectionchange",document,function(){r.mouseDown||setTimeout(r.update.bind(r,v.default.sources.USER),1)}),this.emitter.on(v.default.events.EDITOR_CHANGE,function(t,e){t===v.default.events.TEXT_CHANGE&&e.length()>0&&r.update(v.default.sources.SILENT)}),this.emitter.on(v.default.events.SCROLL_BEFORE_UPDATE,function(){if(r.hasFocus()){var t=r.getNativeRange();null!=t&&t.start.node!==r.cursor.textNode&&r.emitter.once(v.default.events.SCROLL_UPDATE,function(){try{r.setNativeRange(t.start.node,t.start.offset,t.end.node,t.end.offset)}catch(t){}})}}),this.emitter.on(v.default.events.SCROLL_OPTIMIZE,function(t,e){if(e.range){var n=e.range,o=n.startNode,i=n.startOffset,l=n.endNode,a=n.endOffset;r.setNativeRange(o,i,l,a)}}),this.update(v.default.sources.SILENT)}return s(t,[{key:"handleComposition",value:function(){var t=this;this.root.addEventListener("compositionstart",function(){t.composing=!0}),this.root.addEventListener("compositionend",function(){if(t.composing=!1,t.cursor.parent){var e=t.cursor.restore();if(!e)return;setTimeout(function(){t.setNativeRange(e.startNode,e.startOffset,e.endNode,e.endOffset)},1)}})}},{key:"handleDragging",value:function(){var t=this;this.emitter.listenDOM("mousedown",document.body,function(){t.mouseDown=!0}),this.emitter.listenDOM("mouseup",document.body,function(){t.mouseDown=!1,t.update(v.default.sources.USER)})}},{key:"focus",value:function(){this.hasFocus()||(this.root.focus(),this.setRange(this.savedRange))}},{key:"format",value:function(t,e){if(null==this.scroll.whitelist||this.scroll.whitelist[t]){this.scroll.update();var n=this.getNativeRange();if(null!=n&&n.native.collapsed&&!c.default.query(t,c.default.Scope.BLOCK)){if(n.start.node!==this.cursor.textNode){var r=c.default.find(n.start.node,!1);if(null==r)return;if(r instanceof c.default.Leaf){var o=r.split(n.start.offset);r.parent.insertBefore(this.cursor,o)}else r.insertBefore(this.cursor,n.start.node);this.cursor.attach()}this.cursor.format(t,e),this.scroll.optimize(),this.setNativeRange(this.cursor.textNode,this.cursor.textNode.data.length),this.update()}}}},{key:"getBounds",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=this.scroll.length();t=Math.min(t,n-1),e=Math.min(t+e,n-1)-t;var r=void 0,o=this.scroll.leaf(t),i=a(o,2),l=i[0],s=i[1];if(null==l)return null;var u=l.position(s,!0),c=a(u,2);r=c[0],s=c[1];var f=document.createRange();if(e>0){f.setStart(r,s);var h=this.scroll.leaf(t+e),p=a(h,2);if(l=p[0],s=p[1],null==l)return null;var d=l.position(s,!0),y=a(d,2);return r=y[0],s=y[1],f.setEnd(r,s),f.getBoundingClientRect()}var v="left",b=void 0;return r instanceof Text?(s0&&(v="right")),{bottom:b.top+b.height,height:b.height,left:b[v],right:b[v],top:b.top,width:0}}},{key:"getNativeRange",value:function(){var t=document.getSelection();if(null==t||t.rangeCount<=0)return null;var e=t.getRangeAt(0);if(null==e)return null;var n=this.normalizeNative(e);return m.info("getNativeRange",n),n}},{key:"getRange",value:function(){var t=this.getNativeRange();return null==t?[null,null]:[this.normalizedToRange(t),t]}},{key:"hasFocus",value:function(){return document.activeElement===this.root}},{key:"normalizedToRange",value:function(t){var e=this,n=[[t.start.node,t.start.offset]];t.native.collapsed||n.push([t.end.node,t.end.offset]);var r=n.map(function(t){var n=a(t,2),r=n[0],o=n[1],i=c.default.find(r,!0),l=i.offset(e.scroll);return 0===o?l:i instanceof c.default.Container?l+i.length():l+i.index(r,o)}),i=Math.min(Math.max.apply(Math,o(r)),this.scroll.length()-1),l=Math.min.apply(Math,[i].concat(o(r)));return new _(l,i-l)}},{key:"normalizeNative",value:function(t){if(!l(this.root,t.startContainer)||!t.collapsed&&!l(this.root,t.endContainer))return null;var e={start:{node:t.startContainer,offset:t.startOffset},end:{node:t.endContainer,offset:t.endOffset},native:t};return[e.start,e.end].forEach(function(t){for(var e=t.node,n=t.offset;!(e instanceof Text)&&e.childNodes.length>0;)if(e.childNodes.length>n)e=e.childNodes[n],n=0;else{if(e.childNodes.length!==n)break;e=e.lastChild,n=e instanceof Text?e.data.length:e.childNodes.length+1}t.node=e,t.offset=n}),e}},{key:"rangeToNative",value:function(t){var e=this,n=t.collapsed?[t.index]:[t.index,t.index+t.length],r=[],o=this.scroll.length();return n.forEach(function(t,n){t=Math.min(o-1,t);var i=void 0,l=e.scroll.leaf(t),s=a(l,2),u=s[0],c=s[1],f=u.position(c,0!==n),h=a(f,2);i=h[0],c=h[1],r.push(i,c)}),r.length<2&&(r=r.concat(r)),r}},{key:"scrollIntoView",value:function(t){var e=this.lastRange;if(null!=e){var n=this.getBounds(e.index,e.length);if(null!=n){var r=this.scroll.length()-1,o=this.scroll.line(Math.min(e.index,r)),i=a(o,1),l=i[0],s=l;if(e.length>0){var u=this.scroll.line(Math.min(e.index+e.length,r));s=a(u,1)[0]}if(null!=l&&null!=s){var c=t.getBoundingClientRect();n.topc.bottom&&(t.scrollTop+=n.bottom-c.bottom)}}}}},{key:"setNativeRange",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:e,o=arguments.length>4&&void 0!==arguments[4]&&arguments[4];if(m.info("setNativeRange",t,e,n,r),null==t||null!=this.root.parentNode&&null!=t.parentNode&&null!=n.parentNode){var i=document.getSelection();if(null!=i)if(null!=t){this.hasFocus()||this.root.focus();var l=(this.getNativeRange()||{}).native;if(null==l||o||t!==l.startContainer||e!==l.startOffset||n!==l.endContainer||r!==l.endOffset){"BR"==t.tagName&&(e=[].indexOf.call(t.parentNode.childNodes,t),t=t.parentNode),"BR"==n.tagName&&(r=[].indexOf.call(n.parentNode.childNodes,n),n=n.parentNode);var a=document.createRange();a.setStart(t,e),a.setEnd(n,r),i.removeAllRanges(),i.addRange(a)}}else i.removeAllRanges(),this.root.blur(),document.body.focus()}}},{key:"setRange",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:v.default.sources.API;if("string"==typeof e&&(n=e,e=!1),m.info("setRange",t),null!=t){var r=this.rangeToNative(t);this.setNativeRange.apply(this,o(r).concat([e]))}else this.setNativeRange(null);this.update(n)}},{key:"update",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:v.default.sources.USER,e=this.lastRange,n=this.getRange(),r=a(n,2),o=r[0],i=r[1];if(this.lastRange=o,null!=this.lastRange&&(this.savedRange=this.lastRange),!(0,d.default)(e,this.lastRange)){var l;!this.composing&&null!=i&&i.native.collapsed&&i.start.node!==this.cursor.textNode&&this.cursor.restore();var s=[v.default.events.SELECTION_CHANGE,(0,h.default)(this.lastRange),(0,h.default)(e),t];if((l=this.emitter).emit.apply(l,[v.default.events.EDITOR_CHANGE].concat(s)),t!==v.default.sources.SILENT){var u;(u=this.emitter).emit.apply(u,s)}}}}]),t}();e.Range=_,e.default=O},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(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 l(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)}Object.defineProperty(e,"__esModule",{value:!0});var a=n(0),s=r(a),u=n(3),c=r(u),f=function(t){function e(){return o(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return l(e,t),e}(s.default.Container);f.allowedChildren=[c.default,u.BlockEmbed,f],e.default=f},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(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 i(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)}Object.defineProperty(e,"__esModule",{value:!0}),e.ColorStyle=e.ColorClass=e.ColorAttributor=void 0;var l=function(){function t(t,e){for(var n=0;n1){var u=o.formats(),c=this.quill.getFormat(t.index-1,1);i=A.default.attributes.diff(u,c)||{}}}var f=/[\uD800-\uDBFF][\uDC00-\uDFFF]$/.test(e.prefix)?2:1;this.quill.deleteText(t.index-f,f,S.default.sources.USER),Object.keys(i).length>0&&this.quill.formatLine(t.index-f,f,i,S.default.sources.USER),this.quill.focus()}}function c(t,e){var n=/^[\uD800-\uDBFF][\uDC00-\uDFFF]/.test(e.suffix)?2:1;if(!(t.index>=this.quill.getLength()-n)){var r={},o=0,i=this.quill.getLine(t.index),l=b(i,1),a=l[0];if(e.offset>=a.length()-1){var s=this.quill.getLine(t.index+1),u=b(s,1),c=u[0];if(c){var f=a.formats(),h=this.quill.getFormat(t.index,1);r=A.default.attributes.diff(f,h)||{},o=c.length()}}this.quill.deleteText(t.index,n,S.default.sources.USER),Object.keys(r).length>0&&this.quill.formatLine(t.index+o-1,n,r,S.default.sources.USER)}}function f(t){var e=this.quill.getLines(t),n={};if(e.length>1){var r=e[0].formats(),o=e[e.length-1].formats();n=A.default.attributes.diff(o,r)||{}}this.quill.deleteText(t,S.default.sources.USER),Object.keys(n).length>0&&this.quill.formatLine(t.index,1,n,S.default.sources.USER),this.quill.setSelection(t.index,S.default.sources.SILENT),this.quill.focus()}function h(t,e){var n=this;t.length>0&&this.quill.scroll.deleteAt(t.index,t.length);var r=Object.keys(e.format).reduce(function(t,n){return T.default.query(n,T.default.Scope.BLOCK)&&!Array.isArray(e.format[n])&&(t[n]=e.format[n]),t},{});this.quill.insertText(t.index,"\n",r,S.default.sources.USER),this.quill.setSelection(t.index+1,S.default.sources.SILENT),this.quill.focus(),Object.keys(e.format).forEach(function(t){null==r[t]&&(Array.isArray(e.format[t])||"link"!==t&&n.quill.format(t,e.format[t],S.default.sources.USER))})}function p(t){return{key:D.keys.TAB,shiftKey:!t,format:{"code-block":!0},handler:function(e){var n=T.default.query("code-block"),r=e.index,o=e.length,i=this.quill.scroll.descendant(n,r),l=b(i,2),a=l[0],s=l[1];if(null!=a){var u=this.quill.getIndex(a),c=a.newlineIndex(s,!0)+1,f=a.newlineIndex(u+s+o),h=a.domNode.textContent.slice(c,f).split("\n");s=0,h.forEach(function(e,i){t?(a.insertAt(c+s,n.TAB),s+=n.TAB.length,0===i?r+=n.TAB.length:o+=n.TAB.length):e.startsWith(n.TAB)&&(a.deleteAt(c+s,n.TAB.length),s-=n.TAB.length,0===i?r-=n.TAB.length:o-=n.TAB.length),s+=e.length+1}),this.quill.update(S.default.sources.USER),this.quill.setSelection(r,o,S.default.sources.SILENT)}}}}function d(t){return{key:t[0].toUpperCase(),shortKey:!0,handler:function(e,n){this.quill.format(t,!n.format[t],S.default.sources.USER)}}}function y(t){if("string"==typeof t||"number"==typeof t)return y({key:t});if("object"===(void 0===t?"undefined":v(t))&&(t=(0,_.default)(t,!1)),"string"==typeof t.key)if(null!=D.keys[t.key.toUpperCase()])t.key=D.keys[t.key.toUpperCase()];else{if(1!==t.key.length)return null;t.key=t.key.toUpperCase().charCodeAt(0)}return t.shortKey&&(t[B]=t.shortKey,delete t.shortKey),t}Object.defineProperty(e,"__esModule",{value:!0}),e.SHORTKEY=e.default=void 0;var v="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},b=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),g=function(){function t(t,e){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=y(t);if(null==r||null==r.key)return I.warn("Attempted to add invalid keyboard binding",r);"function"==typeof e&&(e={handler:e}),"function"==typeof n&&(n={handler:n}),r=(0,k.default)(r,e,n),this.bindings[r.key]=this.bindings[r.key]||[],this.bindings[r.key].push(r)}},{key:"listen",value:function(){var t=this;this.quill.root.addEventListener("keydown",function(n){if(!n.defaultPrevented){var r=n.which||n.keyCode,o=(t.bindings[r]||[]).filter(function(t){return e.match(n,t)});if(0!==o.length){var i=t.quill.getSelection();if(null!=i&&t.quill.hasFocus()){var l=t.quill.getLine(i.index),a=b(l,2),s=a[0],u=a[1],c=t.quill.getLeaf(i.index),f=b(c,2),h=f[0],p=f[1],d=0===i.length?[h,p]:t.quill.getLeaf(i.index+i.length),y=b(d,2),g=y[0],m=y[1],_=h instanceof T.default.Text?h.value().slice(0,p):"",O=g instanceof T.default.Text?g.value().slice(m):"",x={collapsed:0===i.length,empty:0===i.length&&s.length()<=1,format:t.quill.getFormat(i),offset:u,prefix:_,suffix:O};o.some(function(e){if(null!=e.collapsed&&e.collapsed!==x.collapsed)return!1;if(null!=e.empty&&e.empty!==x.empty)return!1;if(null!=e.offset&&e.offset!==x.offset)return!1;if(Array.isArray(e.format)){if(e.format.every(function(t){return null==x.format[t]}))return!1}else if("object"===v(e.format)&&!Object.keys(e.format).every(function(t){return!0===e.format[t]?null!=x.format[t]:!1===e.format[t]?null==x.format[t]:(0,w.default)(e.format[t],x.format[t])}))return!1;return!(null!=e.prefix&&!e.prefix.test(x.prefix))&&(!(null!=e.suffix&&!e.suffix.test(x.suffix))&&!0!==e.handler.call(t,i,x))})&&n.preventDefault()}}}})}}]),e}(R.default);D.keys={BACKSPACE:8,TAB:9,ENTER:13,ESCAPE:27,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46},D.DEFAULTS={bindings:{bold:d("bold"),italic:d("italic"),underline:d("underline"),indent:{key:D.keys.TAB,format:["blockquote","indent","list"],handler:function(t,e){if(e.collapsed&&0!==e.offset)return!0;this.quill.format("indent","+1",S.default.sources.USER)}},outdent:{key:D.keys.TAB,shiftKey:!0,format:["blockquote","indent","list"],handler:function(t,e){if(e.collapsed&&0!==e.offset)return!0;this.quill.format("indent","-1",S.default.sources.USER)}},"outdent backspace":{key:D.keys.BACKSPACE,collapsed:!0,shiftKey:null,metaKey:null,ctrlKey:null,altKey:null,format:["indent","list"],offset:0,handler:function(t,e){null!=e.format.indent?this.quill.format("indent","-1",S.default.sources.USER):null!=e.format.list&&this.quill.format("list",!1,S.default.sources.USER)}},"indent code-block":p(!0),"outdent code-block":p(!1),"remove tab":{key:D.keys.TAB,shiftKey:!0,collapsed:!0,prefix:/\t$/,handler:function(t){this.quill.deleteText(t.index-1,1,S.default.sources.USER)}},tab:{key:D.keys.TAB,handler:function(t){this.quill.history.cutoff();var e=(new N.default).retain(t.index).delete(t.length).insert("\t");this.quill.updateContents(e,S.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(t.index+1,S.default.sources.SILENT)}},"list empty enter":{key:D.keys.ENTER,collapsed:!0,format:["list"],empty:!0,handler:function(t,e){this.quill.format("list",!1,S.default.sources.USER),e.format.indent&&this.quill.format("indent",!1,S.default.sources.USER)}},"checklist enter":{key:D.keys.ENTER,collapsed:!0,format:{list:"checked"},handler:function(t){var e=this.quill.getLine(t.index),n=b(e,2),r=n[0],o=n[1],i=(0,k.default)({},r.formats(),{list:"checked"}),l=(new N.default).retain(t.index).insert("\n",i).retain(r.length()-o-1).retain(1,{list:"unchecked"});this.quill.updateContents(l,S.default.sources.USER),this.quill.setSelection(t.index+1,S.default.sources.SILENT),this.quill.scrollIntoView()}},"header enter":{key:D.keys.ENTER,collapsed:!0,format:["header"],suffix:/^$/,handler:function(t,e){var n=this.quill.getLine(t.index),r=b(n,2),o=r[0],i=r[1],l=(new N.default).retain(t.index).insert("\n",e.format).retain(o.length()-i-1).retain(1,{header:null});this.quill.updateContents(l,S.default.sources.USER),this.quill.setSelection(t.index+1,S.default.sources.SILENT),this.quill.scrollIntoView()}},"list autofill":{key:" ",collapsed:!0,format:{list:!1},prefix:/^\s*?(\d+\.|-|\*|\[ ?\]|\[x\])$/,handler:function(t,e){var n=e.prefix.length,r=this.quill.getLine(t.index),o=b(r,2),i=o[0],l=o[1];if(l>n)return!0;var a=void 0;switch(e.prefix.trim()){case"[]":case"[ ]":a="unchecked";break;case"[x]":a="checked";break;case"-":case"*":a="bullet";break;default:a="ordered"}this.quill.insertText(t.index," ",S.default.sources.USER),this.quill.history.cutoff();var s=(new N.default).retain(t.index-l).delete(n+1).retain(i.length()-2-l).retain(1,{list:a});this.quill.updateContents(s,S.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(t.index-n,S.default.sources.SILENT)}},"code exit":{key:D.keys.ENTER,collapsed:!0,format:["code-block"],prefix:/\n\n$/,suffix:/^\s+$/,handler:function(t){var e=this.quill.getLine(t.index),n=b(e,2),r=n[0],o=n[1],i=(new N.default).retain(t.index+r.length()-o-2).retain(1,{"code-block":null}).delete(1);this.quill.updateContents(i,S.default.sources.USER)}},"embed left":s(D.keys.LEFT,!1),"embed left shift":s(D.keys.LEFT,!0),"embed right":s(D.keys.RIGHT,!1),"embed right shift":s(D.keys.RIGHT,!0)}},e.default=D,e.SHORTKEY=B},function(t,e,n){"use strict";t.exports={align:{"":n(75),center:n(76),right:n(77),justify:n(78)},background:n(79),blockquote:n(80),bold:n(81),clean:n(82),code:n(40),"code-block":n(40),color:n(83),direction:{"":n(84),rtl:n(85)},float:{center:n(86),full:n(87),left:n(88),right:n(89)},formula:n(90),header:{1:n(91),2:n(92)},italic:n(93),image:n(94),indent:{"+1":n(95),"-1":n(96)},link:n(97),list:{ordered:n(98),bullet:n(99),check:n(100)},script:{sub:n(101),super:n(102)},strike:n(103),underline:n(104),video:n(105)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(1),o=function(){function t(t){this.domNode=t,this.domNode[r.DATA_KEY]={blot:this}}return Object.defineProperty(t.prototype,"statics",{get:function(){return this.constructor},enumerable:!0,configurable:!0}),t.create=function(t){if(null==this.tagName)throw new r.ParchmentError("Blot definition missing tagName");var e;return Array.isArray(this.tagName)?("string"==typeof t&&(t=t.toUpperCase(),parseInt(t).toString()===t&&(t=parseInt(t))),e="number"==typeof t?document.createElement(this.tagName[t-1]):this.tagName.indexOf(t)>-1?document.createElement(t):document.createElement(this.tagName[0])):e=document.createElement(this.tagName),this.className&&e.classList.add(this.className),e},t.prototype.attach=function(){null!=this.parent&&(this.scroll=this.parent.scroll)},t.prototype.clone=function(){var t=this.domNode.cloneNode(!1);return r.create(t)},t.prototype.detach=function(){null!=this.parent&&this.parent.removeChild(this),delete this.domNode[r.DATA_KEY]},t.prototype.deleteAt=function(t,e){this.isolate(t,e).remove()},t.prototype.formatAt=function(t,e,n,o){var i=this.isolate(t,e);if(null!=r.query(n,r.Scope.BLOT)&&o)i.wrap(n,o);else if(null!=r.query(n,r.Scope.ATTRIBUTE)){var l=r.create(this.statics.scope);i.wrap(l),l.format(n,o)}},t.prototype.insertAt=function(t,e,n){var o=null==n?r.create("text",e):r.create(e,n),i=this.split(t);this.parent.insertBefore(o,i)},t.prototype.insertInto=function(t,e){void 0===e&&(e=null),null!=this.parent&&this.parent.children.remove(this);var n=null;t.children.insertBefore(this,e),null!=e&&(n=e.domNode),this.domNode.parentNode==t.domNode&&this.domNode.nextSibling==n||t.domNode.insertBefore(this.domNode,n),this.parent=t,this.attach()},t.prototype.isolate=function(t,e){var n=this.split(t);return n.split(e),n},t.prototype.length=function(){return 1},t.prototype.offset=function(t){return void 0===t&&(t=this.parent),null==this.parent||this==t?0:this.parent.children.offset(this)+this.parent.offset(t)},t.prototype.optimize=function(t){null!=this.domNode[r.DATA_KEY]&&delete this.domNode[r.DATA_KEY].mutations},t.prototype.remove=function(){null!=this.domNode.parentNode&&this.domNode.parentNode.removeChild(this.domNode),this.detach()},t.prototype.replace=function(t){null!=t.parent&&(t.parent.insertBefore(this,t.next),t.remove())},t.prototype.replaceWith=function(t,e){var n="string"==typeof t?r.create(t,e):t;return n.replace(this),n},t.prototype.split=function(t,e){return 0===t?this:this.next},t.prototype.update=function(t,e){},t.prototype.wrap=function(t,e){var n="string"==typeof t?r.create(t,e):t;return null!=this.parent&&this.parent.insertBefore(n,this.next),n.appendChild(this),n},t.blotName="abstract",t}();e.default=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(11),o=n(29),i=n(30),l=n(1),a=function(){function t(t){this.attributes={},this.domNode=t,this.build()}return t.prototype.attribute=function(t,e){e?t.add(this.domNode,e)&&(null!=t.value(this.domNode)?this.attributes[t.attrName]=t:delete this.attributes[t.attrName]):(t.remove(this.domNode),delete this.attributes[t.attrName])},t.prototype.build=function(){var t=this;this.attributes={};var e=r.default.keys(this.domNode),n=o.default.keys(this.domNode),a=i.default.keys(this.domNode);e.concat(n).concat(a).forEach(function(e){var n=l.query(e,l.Scope.ATTRIBUTE);n instanceof r.default&&(t.attributes[n.attrName]=n)})},t.prototype.copy=function(t){var e=this;Object.keys(this.attributes).forEach(function(n){var r=e.attributes[n].value(e.domNode);t.format(n,r)})},t.prototype.move=function(t){var e=this;this.copy(t),Object.keys(this.attributes).forEach(function(t){e.attributes[t].remove(e.domNode)}),this.attributes={}},t.prototype.values=function(){var t=this;return Object.keys(this.attributes).reduce(function(e,n){return e[n]=t.attributes[n].value(t.domNode),e},{})},t}();e.default=a},function(t,e,n){"use strict";function r(t,e){return(t.getAttribute("class")||"").split(/\s+/).filter(function(t){return 0===t.indexOf(e+"-")})}var o=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(11),l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return o(e,t),e.keys=function(t){return(t.getAttribute("class")||"").split(/\s+/).map(function(t){return t.split("-").slice(0,-1).join("-")})},e.prototype.add=function(t,e){return!!this.canAdd(t,e)&&(this.remove(t),t.classList.add(this.keyName+"-"+e),!0)},e.prototype.remove=function(t){r(t,this.keyName).forEach(function(e){t.classList.remove(e)}),0===t.classList.length&&t.removeAttribute("class")},e.prototype.value=function(t){var e=r(t,this.keyName)[0]||"",n=e.slice(this.keyName.length+1);return this.canAdd(t,n)?n:""},e}(i.default);e.default=l},function(t,e,n){"use strict";function r(t){var e=t.split("-"),n=e.slice(1).map(function(t){return t[0].toUpperCase()+t.slice(1)}).join("");return e[0]+n}var o=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(11),l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return o(e,t),e.keys=function(t){return(t.getAttribute("style")||"").split(";").map(function(t){return t.split(":")[0].trim()})},e.prototype.add=function(t,e){return!!this.canAdd(t,e)&&(t.style[r(this.keyName)]=e,!0)},e.prototype.remove=function(t){t.style[r(this.keyName)]="",t.getAttribute("style")||t.removeAttribute("style")},e.prototype.value=function(t){var e=t.style[r(this.keyName)];return this.canAdd(t,e)?e:""},e}(i.default);e.default=l},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(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 l(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)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var o=Object.getOwnPropertyDescriptor(e,n);if(void 0===o){var i=Object.getPrototypeOf(e);return null===i?void 0:t(i,n,r)}if("value"in o)return o.value;var l=o.get;if(void 0!==l)return l.call(r)},u=function(){function t(t,e){for(var n=0;n '},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(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 i(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)}Object.defineProperty(e,"__esModule",{value:!0});var l=function(){function t(t,e){for(var n=0;nr.right&&(i=r.right-o.right,this.root.style.left=e+i+"px"),o.leftr.bottom){var l=o.bottom-o.top,a=t.bottom-t.top+l;this.root.style.top=n-a+"px",this.root.classList.add("ql-flip")}return i}},{key:"show",value:function(){this.root.classList.remove("ql-editing"),this.root.classList.remove("ql-hidden")}}]),t}();e.default=i},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(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 l(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 a(t){var e=t.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtube\.com\/watch.*v=([a-zA-Z0-9_-]+)/)||t.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtu\.be\/([a-zA-Z0-9_-]+)/);return e?(e[1]||"https")+"://www.youtube.com/embed/"+e[2]+"?showinfo=0":(e=t.match(/^(?:(https?):\/\/)?(?:www\.)?vimeo\.com\/(\d+)/))?(e[1]||"https")+"://player.vimeo.com/video/"+e[2]+"/":t}function s(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];e.forEach(function(e){var r=document.createElement("option");e===n?r.setAttribute("selected","selected"):r.setAttribute("value",e),t.appendChild(r)})}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.BaseTooltip=void 0;var u=function(){function t(t,e){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:"link",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;this.root.classList.remove("ql-hidden"),this.root.classList.add("ql-editing"),null!=e?this.textbox.value=e:t!==this.root.getAttribute("data-mode")&&(this.textbox.value=""),this.position(this.quill.getBounds(this.quill.selection.savedRange)),this.textbox.select(),this.textbox.setAttribute("placeholder",this.textbox.getAttribute("data-"+t)||""),this.root.setAttribute("data-mode",t)}},{key:"restoreFocus",value:function(){var t=this.quill.scrollingContainer.scrollTop;this.quill.focus(),this.quill.scrollingContainer.scrollTop=t}},{key:"save",value:function(){var t=this.textbox.value;switch(this.root.getAttribute("data-mode")){case"link":var e=this.quill.root.scrollTop;this.linkRange?(this.quill.formatText(this.linkRange,"link",t,v.default.sources.USER),delete this.linkRange):(this.restoreFocus(),this.quill.format("link",t,v.default.sources.USER)),this.quill.root.scrollTop=e;break;case"video":t=a(t);case"formula":if(!t)break;var n=this.quill.getSelection(!0);if(null!=n){var r=n.index+n.length;this.quill.insertEmbed(r,this.root.getAttribute("data-mode"),t,v.default.sources.USER),"formula"===this.root.getAttribute("data-mode")&&this.quill.insertText(r+1," ",v.default.sources.USER),this.quill.setSelection(r+2,v.default.sources.USER)}}this.textbox.value="",this.hide()}}]),e}(A.default);e.BaseTooltip=M,e.default=L},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var o=n(46),i=r(o),l=n(34),a=n(36),s=n(62),u=n(63),c=r(u),f=n(64),h=r(f),p=n(65),d=r(p),y=n(35),v=n(24),b=n(37),g=n(38),m=n(39),_=r(m),O=n(66),w=r(O),x=n(15),k=r(x),E=n(67),N=r(E),j=n(68),A=r(j),q=n(69),T=r(q),P=n(70),S=r(P),C=n(71),L=r(C),M=n(13),R=r(M),I=n(72),B=r(I),D=n(73),U=r(D),F=n(74),H=r(F),K=n(26),z=r(K),Z=n(16),V=r(Z),W=n(41),G=r(W),Y=n(42),X=r(Y),$=n(43),Q=r($),J=n(107),tt=r(J),et=n(108),nt=r(et);i.default.register({"attributors/attribute/direction":a.DirectionAttribute,"attributors/class/align":l.AlignClass,"attributors/class/background":y.BackgroundClass,"attributors/class/color":v.ColorClass,"attributors/class/direction":a.DirectionClass,"attributors/class/font":b.FontClass,"attributors/class/size":g.SizeClass,"attributors/style/align":l.AlignStyle,"attributors/style/background":y.BackgroundStyle,"attributors/style/color":v.ColorStyle,"attributors/style/direction":a.DirectionStyle,"attributors/style/font":b.FontStyle,"attributors/style/size":g.SizeStyle},!0),i.default.register({"formats/align":l.AlignClass,"formats/direction":a.DirectionClass,"formats/indent":s.IndentClass,"formats/background":y.BackgroundStyle,"formats/color":v.ColorStyle,"formats/font":b.FontClass,"formats/size":g.SizeClass,"formats/blockquote":c.default,"formats/code-block":R.default,"formats/header":h.default,"formats/list":d.default,"formats/bold":_.default,"formats/code":M.Code,"formats/italic":w.default,"formats/link":k.default,"formats/script":N.default,"formats/strike":A.default,"formats/underline":T.default,"formats/image":S.default,"formats/video":L.default,"formats/list/item":p.ListItem,"modules/formula":B.default,"modules/syntax":U.default,"modules/toolbar":H.default,"themes/bubble":tt.default,"themes/snow":nt.default,"ui/icons":z.default,"ui/picker":V.default,"ui/icon-picker":X.default,"ui/color-picker":G.default,"ui/tooltip":Q.default},!0),e.default=i.default},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var o=n(0),i=r(o),l=n(6),a=r(l),s=n(3),u=r(s),c=n(14),f=r(c),h=n(23),p=r(h),d=n(31),y=r(d),v=n(33),b=r(v),g=n(5),m=r(g),_=n(59),O=r(_),w=n(8),x=r(w),k=n(60),E=r(k),N=n(61),j=r(N),A=n(25),q=r(A);a.default.register({"blots/block":u.default,"blots/block/embed":s.BlockEmbed,"blots/break":f.default,"blots/container":p.default,"blots/cursor":y.default,"blots/embed":b.default,"blots/inline":m.default,"blots/scroll":O.default,"blots/text":x.default,"modules/clipboard":E.default,"modules/history":j.default,"modules/keyboard":q.default}),i.default.register(u.default,f.default,y.default,m.default,O.default,x.default),e.default=a.default},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){this.head=this.tail=null,this.length=0}return t.prototype.append=function(){for(var t=[],e=0;e1&&this.append.apply(this,t.slice(1))},t.prototype.contains=function(t){for(var e,n=this.iterator();e=n();)if(e===t)return!0;return!1},t.prototype.insertBefore=function(t,e){t&&(t.next=e,null!=e?(t.prev=e.prev,null!=e.prev&&(e.prev.next=t),e.prev=t,e===this.head&&(this.head=t)):null!=this.tail?(this.tail.next=t,t.prev=this.tail,this.tail=t):(t.prev=null,this.head=this.tail=t),this.length+=1)},t.prototype.offset=function(t){for(var e=0,n=this.head;null!=n;){if(n===t)return e;e+=n.length(),n=n.next}return-1},t.prototype.remove=function(t){this.contains(t)&&(null!=t.prev&&(t.prev.next=t.next),null!=t.next&&(t.next.prev=t.prev),t===this.head&&(this.head=t.next),t===this.tail&&(this.tail=t.prev),this.length-=1)},t.prototype.iterator=function(t){return void 0===t&&(t=this.head),function(){var e=t;return null!=t&&(t=t.next),e}},t.prototype.find=function(t,e){void 0===e&&(e=!1);for(var n,r=this.iterator();n=r();){var o=n.length();if(ta?n(r,t-a,Math.min(e,a+u-t)):n(r,0,Math.min(u,t+e-a)),a+=u}},t.prototype.map=function(t){return this.reduce(function(e,n){return e.push(t(n)),e},[])},t.prototype.reduce=function(t,e){for(var n,r=this.iterator();n=r();)e=t(e,n);return e},t}();e.default=r},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(17),i=n(1),l={attributes:!0,characterData:!0,characterDataOldValue:!0,childList:!0,subtree:!0},a=function(t){function e(e){var n=t.call(this,e)||this;return n.scroll=n,n.observer=new MutationObserver(function(t){n.update(t)}),n.observer.observe(n.domNode,l),n.attach(),n}return r(e,t),e.prototype.detach=function(){t.prototype.detach.call(this),this.observer.disconnect()},e.prototype.deleteAt=function(e,n){this.update(),0===e&&n===this.length()?this.children.forEach(function(t){t.remove()}):t.prototype.deleteAt.call(this,e,n)},e.prototype.formatAt=function(e,n,r,o){this.update(),t.prototype.formatAt.call(this,e,n,r,o)},e.prototype.insertAt=function(e,n,r){this.update(),t.prototype.insertAt.call(this,e,n,r)},e.prototype.optimize=function(e,n){var r=this;void 0===e&&(e=[]),void 0===n&&(n={}),t.prototype.optimize.call(this,n);for(var l=[].slice.call(this.observer.takeRecords());l.length>0;)e.push(l.pop());for(var a=function(t,e){void 0===e&&(e=!0),null!=t&&t!==r&&null!=t.domNode.parentNode&&(null==t.domNode[i.DATA_KEY].mutations&&(t.domNode[i.DATA_KEY].mutations=[]),e&&a(t.parent))},s=function(t){null!=t.domNode[i.DATA_KEY]&&null!=t.domNode[i.DATA_KEY].mutations&&(t instanceof o.default&&t.children.forEach(s),t.optimize(n))},u=e,c=0;u.length>0;c+=1){if(c>=100)throw new Error("[Parchment] Maximum optimize iterations reached");for(u.forEach(function(t){var e=i.find(t.target,!0);null!=e&&(e.domNode===t.target&&("childList"===t.type?(a(i.find(t.previousSibling,!1)),[].forEach.call(t.addedNodes,function(t){var e=i.find(t,!1);a(e,!1),e instanceof o.default&&e.children.forEach(function(t){a(t,!1)})})):"attributes"===t.type&&a(e.prev)),a(e))}),this.children.forEach(s),u=[].slice.call(this.observer.takeRecords()),l=u.slice();l.length>0;)e.push(l.pop())}},e.prototype.update=function(e,n){var r=this;void 0===n&&(n={}),e=e||this.observer.takeRecords(),e.map(function(t){var e=i.find(t.target,!0);return null==e?null:null==e.domNode[i.DATA_KEY].mutations?(e.domNode[i.DATA_KEY].mutations=[t],e):(e.domNode[i.DATA_KEY].mutations.push(t),null)}).forEach(function(t){null!=t&&t!==r&&null!=t.domNode[i.DATA_KEY]&&t.update(t.domNode[i.DATA_KEY].mutations||[],n)}),null!=this.domNode[i.DATA_KEY].mutations&&t.prototype.update.call(this,this.domNode[i.DATA_KEY].mutations,n),this.optimize(e,n)},e.blotName="scroll",e.defaultChild="block",e.scope=i.Scope.BLOCK_BLOT,e.tagName="DIV",e}(o.default);e.default=a},function(t,e,n){"use strict";function r(t,e){if(Object.keys(t).length!==Object.keys(e).length)return!1;for(var n in t)if(t[n]!==e[n])return!1;return!0}var o=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(18),l=n(1),a=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return o(e,t),e.formats=function(n){if(n.tagName!==e.tagName)return t.formats.call(this,n)},e.prototype.format=function(n,r){var o=this;n!==this.statics.blotName||r?t.prototype.format.call(this,n,r):(this.children.forEach(function(t){t instanceof i.default||(t=t.wrap(e.blotName,!0)),o.attributes.copy(t)}),this.unwrap())},e.prototype.formatAt=function(e,n,r,o){if(null!=this.formats()[r]||l.query(r,l.Scope.ATTRIBUTE)){this.isolate(e,n).format(r,o)}else t.prototype.formatAt.call(this,e,n,r,o)},e.prototype.optimize=function(n){t.prototype.optimize.call(this,n);var o=this.formats();if(0===Object.keys(o).length)return this.unwrap();var i=this.next;i instanceof e&&i.prev===this&&r(o,i.formats())&&(i.moveChildren(this),i.remove())},e.blotName="inline",e.scope=l.Scope.INLINE_BLOT,e.tagName="SPAN",e}(i.default);e.default=a},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(18),i=n(1),l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.formats=function(n){var r=i.query(e.blotName).tagName;if(n.tagName!==r)return t.formats.call(this,n)},e.prototype.format=function(n,r){null!=i.query(n,i.Scope.BLOCK)&&(n!==this.statics.blotName||r?t.prototype.format.call(this,n,r):this.replaceWith(e.blotName))},e.prototype.formatAt=function(e,n,r,o){null!=i.query(r,i.Scope.BLOCK)?this.format(r,o):t.prototype.formatAt.call(this,e,n,r,o)},e.prototype.insertAt=function(e,n,r){if(null==r||null!=i.query(n,i.Scope.INLINE))t.prototype.insertAt.call(this,e,n,r);else{var o=this.split(e),l=i.create(n,r);o.parent.insertBefore(l,o)}},e.prototype.update=function(e,n){navigator.userAgent.match(/Trident/)?this.build():t.prototype.update.call(this,e,n)},e.blotName="block",e.scope=i.Scope.BLOCK_BLOT,e.tagName="P",e}(o.default);e.default=l},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(19),i=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.formats=function(t){},e.prototype.format=function(e,n){t.prototype.formatAt.call(this,0,this.length(),e,n)},e.prototype.formatAt=function(e,n,r,o){0===e&&n===this.length()?this.format(r,o):t.prototype.formatAt.call(this,e,n,r,o)},e.prototype.formats=function(){return this.statics.formats(this.domNode)},e}(o.default);e.default=i},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(19),i=n(1),l=function(t){function e(e){var n=t.call(this,e)||this;return n.text=n.statics.value(n.domNode),n}return r(e,t),e.create=function(t){return document.createTextNode(t)},e.value=function(t){var e=t.data;return e.normalize&&(e=e.normalize()),e},e.prototype.deleteAt=function(t,e){this.domNode.data=this.text=this.text.slice(0,t)+this.text.slice(t+e)},e.prototype.index=function(t,e){return this.domNode===t?e:-1},e.prototype.insertAt=function(e,n,r){null==r?(this.text=this.text.slice(0,e)+n+this.text.slice(e),this.domNode.data=this.text):t.prototype.insertAt.call(this,e,n,r)},e.prototype.length=function(){return this.text.length},e.prototype.optimize=function(n){t.prototype.optimize.call(this,n),this.text=this.statics.value(this.domNode),0===this.text.length?this.remove():this.next instanceof e&&this.next.prev===this&&(this.insertAt(this.length(),this.next.value()),this.next.remove())},e.prototype.position=function(t,e){return void 0===e&&(e=!1),[this.domNode,t]},e.prototype.split=function(t,e){if(void 0===e&&(e=!1),!e){if(0===t)return this;if(t===this.length())return this.next}var n=i.create(this.domNode.splitText(t));return this.parent.insertBefore(n,this.next),this.text=this.statics.value(this.domNode),n},e.prototype.update=function(t,e){var n=this;t.some(function(t){return"characterData"===t.type&&t.target===n.domNode})&&(this.text=this.statics.value(this.domNode))},e.prototype.value=function(){return this.text},e.blotName="text",e.scope=i.Scope.INLINE_BLOT,e}(o.default);e.default=l},function(t,e,n){"use strict";var r=document.createElement("div");if(r.classList.toggle("test-class",!1),r.classList.contains("test-class")){var o=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(t,e){return arguments.length>1&&!this.contains(t)==!e?e:o.call(this,t)}}String.prototype.startsWith||(String.prototype.startsWith=function(t,e){return e=e||0,this.substr(e,t.length)===t}),String.prototype.endsWith||(String.prototype.endsWith=function(t,e){var n=this.toString();("number"!=typeof e||!isFinite(e)||Math.floor(e)!==e||e>n.length)&&(e=n.length),e-=t.length;var r=n.indexOf(t,e);return-1!==r&&r===e}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(t){if(null===this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!=typeof t)throw new TypeError("predicate must be a function");for(var e,n=Object(this),r=n.length>>>0,o=arguments[1],i=0;ie.length?t:e,l=t.length>e.length?e:t,a=i.indexOf(l);if(-1!=a)return r=[[y,i.substring(0,a)],[v,l],[y,i.substring(a+l.length)]],t.length>e.length&&(r[0][0]=r[2][0]=d),r;if(1==l.length)return[[d,t],[y,e]];var u=s(t,e);if(u){var c=u[0],f=u[1],h=u[2],p=u[3],b=u[4],g=n(c,h),m=n(f,p);return g.concat([[v,b]],m)}return o(t,e)}function o(t,e){for(var n=t.length,r=e.length,o=Math.ceil((n+r)/2),l=o,a=2*o,s=new Array(a),u=new Array(a),c=0;cn)v+=2;else if(x>r)p+=2;else if(h){var k=l+f-_;if(k>=0&&k=E)return i(t,e,O,x)}}}for(var N=-m+b;N<=m-g;N+=2){var E,k=l+N;E=N==-m||N!=m&&u[k-1]n)g+=2;else if(j>r)b+=2;else if(!h){var w=l+f-N;if(w>=0&&w=E)return i(t,e,O,x)}}}}return[[d,t],[y,e]]}function i(t,e,r,o){var i=t.substring(0,r),l=e.substring(0,o),a=t.substring(r),s=e.substring(o),u=n(i,l),c=n(a,s);return u.concat(c)}function l(t,e){if(!t||!e||t.charAt(0)!=e.charAt(0))return 0;for(var n=0,r=Math.min(t.length,e.length),o=r,i=0;n=t.length?[r,o,i,s,f]:null}var r=t.length>e.length?t:e,o=t.length>e.length?e:t;if(r.length<4||2*o.lengthu[4].length?s:u:s;var c,f,h,p;return t.length>e.length?(c=i[0],f=i[1],h=i[2],p=i[3]):(h=i[0],p=i[1],c=i[2],f=i[3]),[c,f,h,p,i[4]]}function u(t){t.push([v,""]);for(var e,n=0,r=0,o=0,i="",s="";n1?(0!==r&&0!==o&&(e=l(s,i),0!==e&&(n-r-o>0&&t[n-r-o-1][0]==v?t[n-r-o-1][1]+=s.substring(0,e):(t.splice(0,0,[v,s.substring(0,e)]),n++),s=s.substring(e),i=i.substring(e)),0!==(e=a(s,i))&&(t[n][1]=s.substring(s.length-e)+t[n][1],s=s.substring(0,s.length-e),i=i.substring(0,i.length-e))),0===r?t.splice(n-o,r+o,[y,s]):0===o?t.splice(n-r,r+o,[d,i]):t.splice(n-r-o,r+o,[d,i],[y,s]),n=n-r-o+(r?1:0)+(o?1:0)+1):0!==n&&t[n-1][0]==v?(t[n-1][1]+=t[n][1],t.splice(n,1)):n++,o=0,r=0,i="",s=""}""===t[t.length-1][1]&&t.pop();var c=!1;for(n=1;n0&&r.splice(o+2,0,[l[0],a]),p(r,o,3)}return t}function h(t){for(var e=!1,n=function(t){return t.charCodeAt(0)>=56320&&t.charCodeAt(0)<=57343},r=2;r=55296&&t.charCodeAt(t.length-1)<=56319}(t[r-2][1])&&t[r-1][0]===d&&n(t[r-1][1])&&t[r][0]===y&&n(t[r][1])&&(e=!0,t[r-1][1]=t[r-2][1].slice(-1)+t[r-1][1],t[r][1]=t[r-2][1].slice(-1)+t[r][1],t[r-2][1]=t[r-2][1].slice(0,-1));if(!e)return t;for(var o=[],r=0;r0&&o.push(t[r]);return o}function p(t,e,n){for(var r=e+n-1;r>=0&&r>=e-1;r--)if(r+1=r&&!a.endsWith("\n")&&(n=!0),e.scroll.insertAt(t,a);var c=e.scroll.line(t),f=u(c,2),h=f[0],p=f[1],y=(0,T.default)({},(0,O.bubbleFormats)(h));if(h instanceof w.default){var b=h.descendant(v.default.Leaf,p),g=u(b,1),m=g[0];y=(0,T.default)(y,(0,O.bubbleFormats)(m))}l=d.default.attributes.diff(y,l)||{}}else if("object"===s(o.insert)){var _=Object.keys(o.insert)[0];if(null==_)return t;e.scroll.insertAt(t,_,o.insert[_])}r+=i}return Object.keys(l).forEach(function(n){e.scroll.formatAt(t,i,n,l[n])}),t+i},0),t.reduce(function(t,n){return"number"==typeof n.delete?(e.scroll.deleteAt(t,n.delete),t):t+(n.retain||n.insert.length||1)},0),this.scroll.batchEnd(),this.update(t)}},{key:"deleteText",value:function(t,e){return this.scroll.deleteAt(t,e),this.update((new h.default).retain(t).delete(e))}},{key:"formatLine",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.scroll.update(),Object.keys(r).forEach(function(o){if(null==n.scroll.whitelist||n.scroll.whitelist[o]){var i=n.scroll.lines(t,Math.max(e,1)),l=e;i.forEach(function(e){var i=e.length();if(e instanceof g.default){var a=t-e.offset(n.scroll),s=e.newlineIndex(a+l)-a+1;e.formatAt(a,s,o,r[o])}else e.format(o,r[o]);l-=i})}}),this.scroll.optimize(),this.update((new h.default).retain(t).retain(e,(0,N.default)(r)))}},{key:"formatText",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return Object.keys(r).forEach(function(o){n.scroll.formatAt(t,e,o,r[o])}),this.update((new h.default).retain(t).retain(e,(0,N.default)(r)))}},{key:"getContents",value:function(t,e){return this.delta.slice(t,t+e)}},{key:"getDelta",value:function(){return this.scroll.lines().reduce(function(t,e){return t.concat(e.delta())},new h.default)}},{key:"getFormat",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=[],r=[];0===e?this.scroll.path(t).forEach(function(t){var e=u(t,1),o=e[0];o instanceof w.default?n.push(o):o instanceof v.default.Leaf&&r.push(o)}):(n=this.scroll.lines(t,e),r=this.scroll.descendants(v.default.Leaf,t,e));var o=[n,r].map(function(t){if(0===t.length)return{};for(var e=(0,O.bubbleFormats)(t.shift());Object.keys(e).length>0;){var n=t.shift();if(null==n)return e;e=l((0,O.bubbleFormats)(n),e)}return e});return T.default.apply(T.default,o)}},{key:"getText",value:function(t,e){return this.getContents(t,e).filter(function(t){return"string"==typeof t.insert}).map(function(t){return t.insert}).join("")}},{key:"insertEmbed",value:function(t,e,n){return this.scroll.insertAt(t,e,n),this.update((new h.default).retain(t).insert(o({},e,n)))}},{key:"insertText",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return e=e.replace(/\r\n/g,"\n").replace(/\r/g,"\n"),this.scroll.insertAt(t,e),Object.keys(r).forEach(function(o){n.scroll.formatAt(t,e.length,o,r[o])}),this.update((new h.default).retain(t).insert(e,(0,N.default)(r)))}},{key:"isBlank",value:function(){if(0==this.scroll.children.length)return!0;if(this.scroll.children.length>1)return!1;var t=this.scroll.children.head;return t.statics.blotName===w.default.blotName&&(!(t.children.length>1)&&t.children.head instanceof k.default)}},{key:"removeFormat",value:function(t,e){var n=this.getText(t,e),r=this.scroll.line(t+e),o=u(r,2),i=o[0],l=o[1],a=0,s=new h.default;null!=i&&(a=i instanceof g.default?i.newlineIndex(l)-l+1:i.length()-l,s=i.delta().slice(l,l+a-1).insert("\n"));var c=this.getContents(t,e+a),f=c.diff((new h.default).insert(n).concat(s)),p=(new h.default).retain(t).concat(f);return this.applyDelta(p)}},{key:"update",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,r=this.delta;if(1===e.length&&"characterData"===e[0].type&&e[0].target.data.match(P)&&v.default.find(e[0].target)){var o=v.default.find(e[0].target),i=(0,O.bubbleFormats)(o),l=o.offset(this.scroll),a=e[0].oldValue.replace(_.default.CONTENTS,""),s=(new h.default).insert(a),u=(new h.default).insert(o.value());t=(new h.default).retain(l).concat(s.diff(u,n)).reduce(function(t,e){return e.insert?t.insert(e.insert,i):t.push(e)},new h.default),this.delta=r.compose(t)}else this.delta=this.getDelta(),t&&(0,A.default)(r.compose(t),this.delta)||(t=r.diff(this.delta,n));return t}}]),t}();e.default=S},function(t,e){"use strict";function n(){}function r(t,e,n){this.fn=t,this.context=e,this.once=n||!1}function o(){this._events=new n,this._eventsCount=0}var i=Object.prototype.hasOwnProperty,l="~";Object.create&&(n.prototype=Object.create(null),(new n).__proto__||(l=!1)),o.prototype.eventNames=function(){var t,e,n=[];if(0===this._eventsCount)return n;for(e in t=this._events)i.call(t,e)&&n.push(l?e.slice(1):e);return Object.getOwnPropertySymbols?n.concat(Object.getOwnPropertySymbols(t)):n},o.prototype.listeners=function(t,e){var n=l?l+t:t,r=this._events[n];if(e)return!!r;if(!r)return[];if(r.fn)return[r.fn];for(var o=0,i=r.length,a=new Array(i);o0){if(i instanceof y.BlockEmbed||f instanceof y.BlockEmbed)return void this.optimize();if(i instanceof _.default){var h=i.newlineIndex(i.length(),!0);if(h>-1&&(i=i.split(h+1))===f)return void this.optimize()}else if(f instanceof _.default){var p=f.newlineIndex(0);p>-1&&f.split(p+1)}var d=f.children.head instanceof g.default?null:f.children.head;i.moveChildren(f,d),i.remove()}this.optimize()}},{key:"enable",value:function(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.domNode.setAttribute("contenteditable",t)}},{key:"formatAt",value:function(t,n,r,o){(null==this.whitelist||this.whitelist[r])&&(c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"formatAt",this).call(this,t,n,r,o),this.optimize())}},{key:"insertAt",value:function(t,n,r){if(null==r||null==this.whitelist||this.whitelist[n]){if(t>=this.length())if(null==r||null==h.default.query(n,h.default.Scope.BLOCK)){var o=h.default.create(this.statics.defaultChild);this.appendChild(o),null==r&&n.endsWith("\n")&&(n=n.slice(0,-1)),o.insertAt(0,n,r)}else{var i=h.default.create(n,r);this.appendChild(i)}else c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertAt",this).call(this,t,n,r);this.optimize()}}},{key:"insertBefore",value:function(t,n){if(t.statics.scope===h.default.Scope.INLINE_BLOT){var r=h.default.create(this.statics.defaultChild);r.appendChild(t),t=r}c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertBefore",this).call(this,t,n)}},{key:"leaf",value:function(t){return this.path(t).pop()||[null,-1]}},{key:"line",value:function(t){return t===this.length()?this.line(t-1):this.descendant(a,t)}},{key:"lines",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE;return function t(e,n,r){var o=[],i=r;return e.children.forEachAt(n,r,function(e,n,r){a(e)?o.push(e):e instanceof h.default.Container&&(o=o.concat(t(e,n,i))),i-=r}),o}(this,t,e)}},{key:"optimize",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!0!==this.batch&&(c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"optimize",this).call(this,t,n),t.length>0&&this.emitter.emit(d.default.events.SCROLL_OPTIMIZE,t,n))}},{key:"path",value:function(t){return c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"path",this).call(this,t).slice(1)}},{key:"update",value:function(t){if(!0!==this.batch){var n=d.default.sources.USER;"string"==typeof t&&(n=t),Array.isArray(t)||(t=this.observer.takeRecords()),t.length>0&&this.emitter.emit(d.default.events.SCROLL_BEFORE_UPDATE,n,t),c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"update",this).call(this,t.concat([])),t.length>0&&this.emitter.emit(d.default.events.SCROLL_UPDATE,n,t)}}}]),e}(h.default.Scroll);x.blotName="scroll",x.className="ql-editor",x.tagName="DIV",x.defaultChild="block",x.allowedChildren=[v.default,y.BlockEmbed,w.default],e.default=x},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function l(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 a(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 s(t,e,n){return"object"===(void 0===e?"undefined":x(e))?Object.keys(e).reduce(function(t,n){return s(t,n,e[n])},t):t.reduce(function(t,r){return r.attributes&&r.attributes[e]?t.push(r):t.insert(r.insert,(0,j.default)({},o({},e,n),r.attributes))},new q.default)}function u(t){if(t.nodeType!==Node.ELEMENT_NODE)return{};return t["__ql-computed-style"]||(t["__ql-computed-style"]=window.getComputedStyle(t))}function c(t,e){for(var n="",r=t.ops.length-1;r>=0&&n.length-1}function h(t,e,n){return t.nodeType===t.TEXT_NODE?n.reduce(function(e,n){return n(t,e)},new q.default):t.nodeType===t.ELEMENT_NODE?[].reduce.call(t.childNodes||[],function(r,o){var i=h(o,e,n);return o.nodeType===t.ELEMENT_NODE&&(i=e.reduce(function(t,e){return e(o,t)},i),i=(o[W]||[]).reduce(function(t,e){return e(o,t)},i)),r.concat(i)},new q.default):new q.default}function p(t,e,n){return s(n,t,!0)}function d(t,e){var n=P.default.Attributor.Attribute.keys(t),r=P.default.Attributor.Class.keys(t),o=P.default.Attributor.Style.keys(t),i={};return n.concat(r).concat(o).forEach(function(e){var n=P.default.query(e,P.default.Scope.ATTRIBUTE);null!=n&&(i[n.attrName]=n.value(t),i[n.attrName])||(n=Y[e],null==n||n.attrName!==e&&n.keyName!==e||(i[n.attrName]=n.value(t)||void 0),null==(n=X[e])||n.attrName!==e&&n.keyName!==e||(n=X[e],i[n.attrName]=n.value(t)||void 0))}),Object.keys(i).length>0&&(e=s(e,i)),e}function y(t,e){var n=P.default.query(t);if(null==n)return e;if(n.prototype instanceof P.default.Embed){var r={},o=n.value(t);null!=o&&(r[n.blotName]=o,e=(new q.default).insert(r,n.formats(t)))}else"function"==typeof n.formats&&(e=s(e,n.blotName,n.formats(t)));return e}function v(t,e){return c(e,"\n")||e.insert("\n"),e}function b(){return new q.default}function g(t,e){var n=P.default.query(t);if(null==n||"list-item"!==n.blotName||!c(e,"\n"))return e;for(var r=-1,o=t.parentNode;!o.classList.contains("ql-clipboard");)"list"===(P.default.query(o)||{}).blotName&&(r+=1),o=o.parentNode;return r<=0?e:e.compose((new q.default).retain(e.length()-1).retain(1,{indent:r}))}function m(t,e){return c(e,"\n")||(f(t)||e.length()>0&&t.nextSibling&&f(t.nextSibling))&&e.insert("\n"),e}function _(t,e){if(f(t)&&null!=t.nextElementSibling&&!c(e,"\n\n")){var n=t.offsetHeight+parseFloat(u(t).marginTop)+parseFloat(u(t).marginBottom);t.nextElementSibling.offsetTop>t.offsetTop+1.5*n&&e.insert("\n")}return e}function O(t,e){var n={},r=t.style||{};return r.fontStyle&&"italic"===u(t).fontStyle&&(n.italic=!0),r.fontWeight&&(u(t).fontWeight.startsWith("bold")||parseInt(u(t).fontWeight)>=700)&&(n.bold=!0),Object.keys(n).length>0&&(e=s(e,n)),parseFloat(r.textIndent||0)>0&&(e=(new q.default).insert("\t").concat(e)),e}function w(t,e){var n=t.data;if("O:P"===t.parentNode.tagName)return e.insert(n.trim());if(0===n.trim().length&&t.parentNode.classList.contains("ql-clipboard"))return e;if(!u(t.parentNode).whiteSpace.startsWith("pre")){var r=function(t,e){return e=e.replace(/[^\u00a0]/g,""),e.length<1&&t?" ":e};n=n.replace(/\r\n/g," ").replace(/\n/g," "),n=n.replace(/\s\s+/g,r.bind(r,!0)),(null==t.previousSibling&&f(t.parentNode)||null!=t.previousSibling&&f(t.previousSibling))&&(n=n.replace(/^\s+/,r.bind(r,!1))),(null==t.nextSibling&&f(t.parentNode)||null!=t.nextSibling&&f(t.nextSibling))&&(n=n.replace(/\s+$/,r.bind(r,!1)))}return e.insert(n)}Object.defineProperty(e,"__esModule",{value:!0}),e.matchText=e.matchSpacing=e.matchNewline=e.matchBlot=e.matchAttributor=e.default=void 0;var x="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},k=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),E=function(){function t(t,e){for(var n=0;n\r?\n +\<"),this.convert();var e=this.quill.getFormat(this.quill.selection.savedRange.index);if(e[F.default.blotName]){var n=this.container.innerText;return this.container.innerHTML="",(new q.default).insert(n,o({},F.default.blotName,e[F.default.blotName]))}var r=this.prepareMatching(),i=k(r,2),l=i[0],a=i[1],s=h(this.container,l,a);return c(s,"\n")&&null==s.ops[s.ops.length-1].attributes&&(s=s.compose((new q.default).retain(s.length()-1).delete(1))),V.log("convert",this.container.innerHTML,s),this.container.innerHTML="",s}},{key:"dangerouslyPasteHTML",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:C.default.sources.API;if("string"==typeof t)this.quill.setContents(this.convert(t),e),this.quill.setSelection(0,C.default.sources.SILENT);else{var r=this.convert(e);this.quill.updateContents((new q.default).retain(t).concat(r),n),this.quill.setSelection(t+r.length(),C.default.sources.SILENT)}}},{key:"onPaste",value:function(t){var e=this;if(!t.defaultPrevented&&this.quill.isEnabled()){var n=this.quill.getSelection(),r=(new q.default).retain(n.index),o=this.quill.scrollingContainer.scrollTop;this.container.focus(),this.quill.selection.update(C.default.sources.SILENT),setTimeout(function(){r=r.concat(e.convert()).delete(n.length),e.quill.updateContents(r,C.default.sources.USER),e.quill.setSelection(r.length()-n.length,C.default.sources.SILENT),e.quill.scrollingContainer.scrollTop=o,e.quill.focus()},1)}}},{key:"prepareMatching",value:function(){var t=this,e=[],n=[];return this.matchers.forEach(function(r){var o=k(r,2),i=o[0],l=o[1];switch(i){case Node.TEXT_NODE:n.push(l);break;case Node.ELEMENT_NODE:e.push(l);break;default:[].forEach.call(t.container.querySelectorAll(i),function(t){t[W]=t[W]||[],t[W].push(l)})}}),[e,n]}}]),e}(I.default);$.DEFAULTS={matchers:[],matchVisual:!0},e.default=$,e.matchAttributor=d,e.matchBlot=y,e.matchNewline=m,e.matchSpacing=_,e.matchText=w},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(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 l(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 a(t){var e=t.ops[t.ops.length-1];return null!=e&&(null!=e.insert?"string"==typeof e.insert&&e.insert.endsWith("\n"):null!=e.attributes&&Object.keys(e.attributes).some(function(t){return null!=f.default.query(t,f.default.Scope.BLOCK)}))}function s(t){var e=t.reduce(function(t,e){return t+=e.delete||0},0),n=t.length()-e;return a(t)&&(n-=1),n}Object.defineProperty(e,"__esModule",{value:!0}),e.getLastChangeIndex=e.default=void 0;var u=function(){function t(t,e){for(var n=0;nr&&this.stack.undo.length>0){var o=this.stack.undo.pop();n=n.compose(o.undo),t=o.redo.compose(t)}else this.lastRecorded=r;this.stack.undo.push({redo:t,undo:n}),this.stack.undo.length>this.options.maxStack&&this.stack.undo.shift()}}},{key:"redo",value:function(){this.change("redo","undo")}},{key:"transform",value:function(t){this.stack.undo.forEach(function(e){e.undo=t.transform(e.undo,!0),e.redo=t.transform(e.redo,!0)}),this.stack.redo.forEach(function(e){e.undo=t.transform(e.undo,!0),e.redo=t.transform(e.redo,!0)})}},{key:"undo",value:function(){this.change("undo","redo")}}]),e}(y.default);v.DEFAULTS={delay:1e3,maxStack:100,userOnly:!1},e.default=v,e.getLastChangeIndex=s},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(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 i(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)}Object.defineProperty(e,"__esModule",{value:!0}),e.IndentClass=void 0;var l=function(){function t(t,e){for(var n=0;n0&&this.children.tail.format(t,e)}},{key:"formats",value:function(){return o({},this.statics.blotName,this.statics.formats(this.domNode))}},{key:"insertBefore",value:function(t,n){if(t instanceof v)u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertBefore",this).call(this,t,n);else{var r=null==n?this.length():n.offset(this),o=this.split(r);o.parent.insertBefore(t,o)}}},{key:"optimize",value:function(t){u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"optimize",this).call(this,t);var n=this.next;null!=n&&n.prev===this&&n.statics.blotName===this.statics.blotName&&n.domNode.tagName===this.domNode.tagName&&n.domNode.getAttribute("data-checked")===this.domNode.getAttribute("data-checked")&&(n.moveChildren(this),n.remove())}},{key:"replace",value:function(t){if(t.statics.blotName!==this.statics.blotName){var n=f.default.create(this.statics.defaultChild);t.moveChildren(n),this.appendChild(n)}u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"replace",this).call(this,t)}}]),e}(y.default);b.blotName="list",b.scope=f.default.Scope.BLOCK_BLOT,b.tagName=["OL","UL"],b.defaultChild="list-item",b.allowedChildren=[v],e.ListItem=v,e.default=b},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(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 i(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)}Object.defineProperty(e,"__esModule",{value:!0});var l=n(39),a=function(t){return t&&t.__esModule?t:{default:t}}(l),s=function(t){function e(){return r(this,e),o(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return i(e,t),e}(a.default);s.blotName="italic",s.tagName=["EM","I"],e.default=s},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(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 i(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)}Object.defineProperty(e,"__esModule",{value:!0});var l=function(){function t(t,e){for(var n=0;n-1?n?this.domNode.setAttribute(t,n):this.domNode.removeAttribute(t):a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"format",this).call(this,t,n)}}],[{key:"create",value:function(t){var n=a(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,t);return"string"==typeof t&&n.setAttribute("src",this.sanitize(t)),n}},{key:"formats",value:function(t){return f.reduce(function(e,n){return t.hasAttribute(n)&&(e[n]=t.getAttribute(n)),e},{})}},{key:"match",value:function(t){return/\.(jpe?g|gif|png)$/.test(t)||/^data:image\/.+;base64/.test(t)}},{key:"sanitize",value:function(t){return(0,c.sanitize)(t,["http","https","data"])?t:"//:0"}},{key:"value",value:function(t){return t.getAttribute("src")}}]),e}(u.default.Embed);h.blotName="image",h.tagName="IMG",e.default=h},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(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 i(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)}Object.defineProperty(e,"__esModule",{value:!0});var l=function(){function t(t,e){for(var n=0;n-1?n?this.domNode.setAttribute(t,n):this.domNode.removeAttribute(t):a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"format",this).call(this,t,n)}}],[{key:"create",value:function(t){var n=a(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,t);return n.setAttribute("frameborder","0"),n.setAttribute("allowfullscreen",!0),n.setAttribute("src",this.sanitize(t)),n}},{key:"formats",value:function(t){return f.reduce(function(e,n){return t.hasAttribute(n)&&(e[n]=t.getAttribute(n)),e},{})}},{key:"sanitize",value:function(t){return c.default.sanitize(t)}},{key:"value",value:function(t){return t.getAttribute("src")}}]),e}(s.BlockEmbed);h.blotName="video",h.className="ql-video",h.tagName="IFRAME",e.default=h},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(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 l(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)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.FormulaBlot=void 0;var a=function(){function t(t,e){for(var n=0;n0||null==this.cachedText)&&(this.domNode.innerHTML=t(e),this.domNode.normalize(),this.attach()),this.cachedText=e)}}]),e}(v.default);b.className="ql-syntax";var g=new c.default.Attributor.Class("token","hljs",{scope:c.default.Scope.INLINE}),m=function(t){function e(t,n){o(this,e);var r=i(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));if("function"!=typeof r.options.highlight)throw new Error("Syntax module requires highlight.js. Please include the library on the page before Quill.");var l=null;return r.quill.on(h.default.events.SCROLL_OPTIMIZE,function(){clearTimeout(l),l=setTimeout(function(){r.highlight(),l=null},r.options.interval)}),r.highlight(),r}return l(e,t),a(e,null,[{key:"register",value:function(){h.default.register(g,!0),h.default.register(b,!0)}}]),a(e,[{key:"highlight",value:function(){var t=this;if(!this.quill.selection.composing){this.quill.update(h.default.sources.USER);var e=this.quill.getSelection();this.quill.scroll.descendants(b).forEach(function(e){e.highlight(t.options.highlight)}),this.quill.update(h.default.sources.SILENT),null!=e&&this.quill.setSelection(e,h.default.sources.SILENT)}}}]),e}(d.default);m.DEFAULTS={highlight:function(){return null==window.hljs?null:function(t){return window.hljs.highlightAuto(t).value}}(),interval:1e3},e.CodeBlock=b,e.CodeToken=g,e.default=m},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function l(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 a(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 s(t,e,n){var r=document.createElement("button");r.setAttribute("type","button"),r.classList.add("ql-"+e),null!=n&&(r.value=n),t.appendChild(r)}function u(t,e){Array.isArray(e[0])||(e=[e]),e.forEach(function(e){var n=document.createElement("span");n.classList.add("ql-formats"),e.forEach(function(t){if("string"==typeof t)s(n,t);else{var e=Object.keys(t)[0],r=t[e];Array.isArray(r)?c(n,e,r):s(n,e,r)}}),t.appendChild(n)})}function c(t,e,n){var r=document.createElement("select");r.classList.add("ql-"+e),n.forEach(function(t){var e=document.createElement("option");!1!==t?e.setAttribute("value",t):e.setAttribute("selected","selected"),r.appendChild(e)}),t.appendChild(r)}Object.defineProperty(e,"__esModule",{value:!0}),e.addControls=e.default=void 0;var f=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),h=function(){function t(t,e){for(var n=0;n '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(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 l(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)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.BubbleTooltip=void 0;var a=function t(e,n,r){null===e&&(e=Function.prototype);var o=Object.getOwnPropertyDescriptor(e,n);if(void 0===o){var i=Object.getPrototypeOf(e);return null===i?void 0:t(i,n,r)}if("value"in o)return o.value;var l=o.get;if(void 0!==l)return l.call(r)},s=function(){function t(t,e){for(var n=0;n0&&o===h.default.sources.USER){r.show(),r.root.style.left="0px",r.root.style.width="",r.root.style.width=r.root.offsetWidth+"px";var i=r.quill.getLines(e.index,e.length);if(1===i.length)r.position(r.quill.getBounds(e));else{var l=i[i.length-1],a=r.quill.getIndex(l),s=Math.min(l.length()-1,e.index+e.length-a),u=r.quill.getBounds(new y.Range(a,s));r.position(u)}}else document.activeElement!==r.textbox&&r.quill.hasFocus()&&r.hide()}),r}return l(e,t),s(e,[{key:"listen",value:function(){var t=this;a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"listen",this).call(this),this.root.querySelector(".ql-close").addEventListener("click",function(){t.root.classList.remove("ql-editing")}),this.quill.on(h.default.events.SCROLL_OPTIMIZE,function(){setTimeout(function(){if(!t.root.classList.contains("ql-hidden")){var e=t.quill.getSelection();null!=e&&t.position(t.quill.getBounds(e))}},1)})}},{key:"cancel",value:function(){this.show()}},{key:"position",value:function(t){var n=a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"position",this).call(this,t),r=this.root.querySelector(".ql-tooltip-arrow");if(r.style.marginLeft="",0===n)return n;r.style.marginLeft=-1*n-r.offsetWidth/2+"px"}}]),e}(p.BaseTooltip);_.TEMPLATE=['','
    ','','',"
    "].join(""),e.BubbleTooltip=_,e.default=m},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(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 l(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)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var o=Object.getOwnPropertyDescriptor(e,n);if(void 0===o){var i=Object.getPrototypeOf(e);return null===i?void 0:t(i,n,r)}if("value"in o)return o.value;var l=o.get;if(void 0!==l)return l.call(r)},u=function(){function t(t,e){for(var n=0;n','','',''].join(""),e.default=w}]).default}); +//# sourceMappingURL=quill.min.js.map \ No newline at end of file diff --git a/assets/vendors/js/editors/quill/themes/base.js b/assets/vendors/js/editors/quill/themes/base.js new file mode 100644 index 0000000..ef692e3 --- /dev/null +++ b/assets/vendors/js/editors/quill/themes/base.js @@ -0,0 +1,256 @@ +import extend from 'extend'; +import Delta from 'rich-text/lib/delta'; +import Emitter from '../core/emitter'; +import Keyboard from '../modules/keyboard'; +import Theme from '../core/theme'; +import ColorPicker from '../ui/color-picker'; +import IconPicker from '../ui/icon-picker'; +import Picker from '../ui/picker'; +import Tooltip from '../ui/tooltip'; +import icons from '../ui/icons'; + + +const ALIGNS = [ false, 'center', 'right', 'justify' ]; + +const COLORS = [ + "#000000", "#e60000", "#ff9900", "#ffff00", "#008a00", "#0066cc", "#9933ff", + "#ffffff", "#facccc", "#ffebcc", "#ffffcc", "#cce8cc", "#cce0f5", "#ebd6ff", + "#bbbbbb", "#f06666", "#ffc266", "#ffff66", "#66b966", "#66a3e0", "#c285ff", + "#888888", "#a10000", "#b26b00", "#b2b200", "#006100", "#0047b2", "#6b24b2", + "#444444", "#5c0000", "#663d00", "#666600", "#003700", "#002966", "#3d1466" +]; + +const FONTS = [ false, 'serif', 'monospace' ]; + +const HEADERS = [ '1', '2', '3', false ]; + +const SIZES = [ 'small', false, 'large', 'huge' ]; + + +class BaseTheme extends Theme { + constructor(quill, options) { + super(quill, options); + let listener = (e) => { + if (!document.body.contains(quill.root)) { + return document.body.removeEventListener('click', listener); + } + if (this.tooltip != null && !this.tooltip.root.contains(e.target) && + document.activeElement !== this.tooltip.textbox && !this.quill.hasFocus()) { + this.tooltip.hide(); + } + if (this.pickers != null) { + this.pickers.forEach(function(picker) { + if (!picker.container.contains(e.target)) { + picker.close(); + } + }); + } + }; + document.body.addEventListener('click', listener); + } + + addModule(name) { + let module = super.addModule(name); + if (name === 'toolbar') { + this.extendToolbar(module); + } + return module; + } + + buildButtons(buttons) { + buttons.forEach((button) => { + let className = button.getAttribute('class') || ''; + className.split(/\s+/).forEach((name) => { + if (!name.startsWith('ql-')) return; + name = name.slice('ql-'.length); + if (icons[name] == null) return; + if (name === 'direction') { + button.innerHTML = icons[name][''] + icons[name]['rtl']; + } else if (typeof icons[name] === 'string') { + button.innerHTML = icons[name]; + } else { + let value = button.value || ''; + if (value != null && icons[name][value]) { + button.innerHTML = icons[name][value]; + } + } + }); + }); + } + + buildPickers(selects) { + this.pickers = selects.map((select) => { + if (select.classList.contains('ql-align')) { + if (select.querySelector('option') == null) { + fillSelect(select, ALIGNS); + } + return new IconPicker(select, icons.align); + } else if (select.classList.contains('ql-background') || select.classList.contains('ql-color')) { + let format = select.classList.contains('ql-background') ? 'background' : 'color'; + if (select.querySelector('option') == null) { + fillSelect(select, COLORS, format === 'background' ? '#ffffff' : '#000000'); + } + return new ColorPicker(select, icons[format]); + } else { + if (select.querySelector('option') == null) { + if (select.classList.contains('ql-font')) { + fillSelect(select, FONTS); + } else if (select.classList.contains('ql-header')) { + fillSelect(select, HEADERS); + } else if (select.classList.contains('ql-size')) { + fillSelect(select, SIZES); + } + } + return new Picker(select); + } + }); + let update = () => { + this.pickers.forEach(function(picker) { + picker.update(); + }); + }; + this.quill.on(Emitter.events.SELECTION_CHANGE, update) + .on(Emitter.events.SCROLL_OPTIMIZE, update); + } +} +BaseTheme.DEFAULTS = extend(true, {}, Theme.DEFAULTS, { + modules: { + toolbar: { + handlers: { + formula: function(value) { + this.quill.theme.tooltip.edit('formula'); + }, + image: function(value) { + let fileInput = this.container.querySelector('input.ql-image[type=file]'); + if (fileInput == null) { + fileInput = document.createElement('input'); + fileInput.setAttribute('type', 'file'); + fileInput.setAttribute('accept', 'image/*'); + fileInput.classList.add('ql-image'); + fileInput.addEventListener('change', () => { + if (fileInput.files != null && fileInput.files[0] != null) { + let reader = new FileReader(); + reader.onload = (e) => { + let range = this.quill.getSelection(true); + this.quill.updateContents(new Delta() + .retain(range.index) + .delete(range.length) + .insert({ image: e.target.result }) + , Emitter.sources.USER); + fileInput.value = ""; + } + reader.readAsDataURL(fileInput.files[0]); + } + }); + this.container.appendChild(fileInput); + } + fileInput.click(); + }, + video: function(value) { + this.quill.theme.tooltip.edit('video'); + } + } + } + } +}); + + +class BaseTooltip extends Tooltip { + constructor(quill, boundsContainer) { + super(quill, boundsContainer); + this.textbox = this.root.querySelector('input[type="text"]'); + this.listen(); + } + + listen() { + this.textbox.addEventListener('keydown', (event) => { + if (Keyboard.match(event, 'enter')) { + this.save(); + event.preventDefault(); + } else if (Keyboard.match(event, 'escape')) { + this.cancel(); + event.preventDefault(); + } + }); + } + + cancel() { + this.hide(); + } + + edit(mode = 'link', preview = null) { + this.root.classList.remove('ql-hidden'); + this.root.classList.add('ql-editing'); + if (preview != null) { + this.textbox.value = preview; + } else if (mode !== this.root.getAttribute('data-mode')) { + this.textbox.value = ''; + } + this.position(this.quill.getBounds(this.quill.selection.savedRange)); + this.textbox.select(); + this.textbox.setAttribute('placeholder', this.textbox.getAttribute(`data-${mode}`) || ''); + this.root.setAttribute('data-mode', mode); + } + + restoreFocus() { + let scrollTop = this.quill.root.scrollTop; + this.quill.focus(); + this.quill.root.scrollTop = scrollTop; + } + + save() { + let value = this.textbox.value; + switch(this.root.getAttribute('data-mode')) { + case 'link': + let scrollTop = this.quill.root.scrollTop; + if (this.linkRange) { + this.quill.formatText(this.linkRange, 'link', value, Emitter.sources.USER); + delete this.linkRange; + } else { + this.restoreFocus(); + this.quill.format('link', value, Emitter.sources.USER); + } + this.quill.root.scrollTop = scrollTop; + break; + case 'video': + let match = value.match(/^(https?):\/\/(www\.)?youtube\.com\/watch.*v=([a-zA-Z0-9_-]+)/) || + value.match(/^(https?):\/\/(www\.)?youtu\.be\/([a-zA-Z0-9_-]+)/); + if (match) { + value = match[1] + '://www.youtube.com/embed/' + match[3] + '?showinfo=0'; + } else if (match = value.match(/^(https?):\/\/(www\.)?vimeo\.com\/(\d+)/)) { + value = match[1] + '://player.vimeo.com/video/' + match[3] + '/'; + } + // fallthrough + case 'formula': + let range = this.quill.getSelection(true); + let index = range.index + range.length; + if (range != null) { + this.quill.insertEmbed(index, this.root.getAttribute('data-mode'), value, Emitter.sources.USER); + if (this.root.getAttribute('data-mode') === 'formula') { + this.quill.insertText(index + 1, ' ', Emitter.sources.USER); + } + this.quill.setSelection(index + 2, Emitter.sources.USER); + } + break; + default: + } + this.textbox.value = ''; + this.hide(); + } +} + + +function fillSelect(select, values, defaultValue = false) { + values.forEach(function(value) { + let option = document.createElement('option'); + if (value === defaultValue) { + option.setAttribute('selected', 'selected'); + } else { + option.setAttribute('value', value); + } + select.appendChild(option); + }); +} + + +export { BaseTooltip, BaseTheme as default }; diff --git a/assets/vendors/js/editors/quill/themes/bubble.js b/assets/vendors/js/editors/quill/themes/bubble.js new file mode 100644 index 0000000..a54ea29 --- /dev/null +++ b/assets/vendors/js/editors/quill/themes/bubble.js @@ -0,0 +1,112 @@ +import extend from 'extend'; +import Emitter from '../core/emitter'; +import Keyboard from '../modules/keyboard'; +import BaseTheme, { BaseTooltip } from './base'; +import icons from '../ui/icons'; +import { Range } from '../core/selection'; + + +const TOOLBAR_CONFIG = [ + ['bold', 'italic', 'link'], + [{ header: 1 }, { header: 2 }, 'blockquote'] +]; + +class BubbleTheme extends BaseTheme { + constructor(quill, options) { + if (options.modules.toolbar != null && options.modules.toolbar.container == null) { + options.modules.toolbar.container = TOOLBAR_CONFIG; + } + super(quill, options); + this.quill.container.classList.add('ql-bubble'); + } + + extendToolbar(toolbar) { + this.tooltip = new BubbleTooltip(this.quill, this.options.bounds); + this.tooltip.root.appendChild(toolbar.container); + this.buildButtons([].slice.call(toolbar.container.querySelectorAll('button'))); + this.buildPickers([].slice.call(toolbar.container.querySelectorAll('select'))); + } +} +BubbleTheme.DEFAULTS = extend(true, {}, BaseTheme.DEFAULTS, { + modules: { + toolbar: { + handlers: { + link: function(value) { + if (!value) { + this.quill.format('link', false); + } else { + this.quill.theme.tooltip.edit(); + } + } + } + } + } +}); + + +class BubbleTooltip extends BaseTooltip { + constructor(quill, bounds) { + super(quill, bounds); + this.quill.on(Emitter.events.EDITOR_CHANGE, (type, range) => { + if (type !== Emitter.events.SELECTION_CHANGE) return; + if (range != null && range.length > 0) { + this.show(); + // Lock our width so we will expand beyond our offsetParent boundaries + this.root.style.left = '0px'; + this.root.style.width = ''; + this.root.style.width = this.root.offsetWidth + 'px'; + let lines = this.quill.scroll.lines(range.index, range.length); + if (lines.length === 1) { + this.position(this.quill.getBounds(range)); + } else { + let lastLine = lines[lines.length - 1]; + let index = lastLine.offset(this.quill.scroll); + let length = Math.min(lastLine.length() - 1, range.index + range.length - index); + let bounds = this.quill.getBounds(new Range(index, length)); + this.position(bounds); + } + } else if (document.activeElement !== this.textbox && this.quill.hasFocus()) { + this.hide(); + } + }); + } + + listen() { + super.listen(); + this.root.querySelector('.ql-close').addEventListener('click', (event) => { + this.root.classList.remove('ql-editing'); + }); + this.quill.on(Emitter.events.SCROLL_OPTIMIZE, () => { + // Let selection be restored by toolbar handlers before repositioning + setTimeout(() => { + if (this.root.classList.contains('ql-hidden')) return; + let range = this.quill.getSelection(); + if (range != null) { + this.position(this.quill.getBounds(range)); + } + }, 1); + }); + } + + cancel() { + this.show(); + } + + position(reference) { + let shift = super.position(reference); + if (shift === 0) return shift; + let arrow = this.root.querySelector('.ql-tooltip-arrow'); + arrow.style.marginLeft = ''; + arrow.style.marginLeft = (-1*shift - arrow.offsetWidth/2) + 'px'; + } +} +BubbleTooltip.TEMPLATE = [ + '', + '
    ', + '', + '', + '
    ' +].join(''); + + +export default BubbleTheme; diff --git a/assets/vendors/js/editors/quill/themes/snow.js b/assets/vendors/js/editors/quill/themes/snow.js new file mode 100644 index 0000000..ee5d72e --- /dev/null +++ b/assets/vendors/js/editors/quill/themes/snow.js @@ -0,0 +1,117 @@ +import extend from 'extend'; +import Emitter from '../core/emitter'; +import BaseTheme, { BaseTooltip } from './base'; +import LinkBlot from '../formats/link'; +import Picker from '../ui/picker'; +import { Range } from '../core/selection'; + + +const TOOLBAR_CONFIG = [ + [{ header: ['1', '2', '3', false] }], + ['bold', 'italic', 'underline', 'link'], + [{ list: 'ordered' }, { list: 'bullet' }], + ['clean'] +]; + +class SnowTheme extends BaseTheme { + constructor(quill, options) { + if (options.modules.toolbar != null && options.modules.toolbar.container == null) { + options.modules.toolbar.container = TOOLBAR_CONFIG; + } + super(quill, options); + this.quill.container.classList.add('ql-snow'); + } + + extendToolbar(toolbar) { + toolbar.container.classList.add('ql-snow'); + this.buildButtons([].slice.call(toolbar.container.querySelectorAll('button'))); + this.buildPickers([].slice.call(toolbar.container.querySelectorAll('select'))); + this.tooltip = new SnowTooltip(this.quill, this.options.bounds); + if (toolbar.container.querySelector('.ql-link')) { + this.quill.keyboard.addBinding({ key: 'K', shortKey: true }, function(range, context) { + toolbar.handlers['link'].call(toolbar, !context.format.link); + }); + } + } +} +SnowTheme.DEFAULTS = extend(true, {}, BaseTheme.DEFAULTS, { + modules: { + toolbar: { + handlers: { + link: function(value) { + if (value) { + let range = this.quill.getSelection(); + if (range == null || range.length == 0) return; + let preview = this.quill.getText(range); + if (/^\S+@\S+\.\S+$/.test(preview) && preview.indexOf('mailto:') !== 0) { + preview = 'mailto:' + preview; + } + let tooltip = this.quill.theme.tooltip; + tooltip.edit('link', preview); + } else { + this.quill.format('link', false); + } + } + } + } + } +}); + + +class SnowTooltip extends BaseTooltip { + constructor(quill, bounds) { + super(quill, bounds); + this.preview = this.root.querySelector('a.ql-preview'); + } + + listen() { + super.listen(); + this.root.querySelector('a.ql-action').addEventListener('click', (event) => { + if (this.root.classList.contains('ql-editing')) { + this.save(); + } else { + this.edit('link', this.preview.textContent); + } + event.preventDefault(); + }); + this.root.querySelector('a.ql-remove').addEventListener('click', (event) => { + if (this.linkRange != null) { + this.restoreFocus(); + this.quill.formatText(this.linkRange, 'link', false, Emitter.sources.USER); + delete this.linkRange; + } + event.preventDefault(); + this.hide(); + }); + this.quill.on(Emitter.events.SELECTION_CHANGE, (range) => { + if (range == null) return; + if (range.length === 0) { + let [link, offset] = this.quill.scroll.descendant(LinkBlot, range.index); + if (link != null) { + this.linkRange = new Range(range.index - offset, link.length()); + let preview = LinkBlot.formats(link.domNode); + this.preview.textContent = preview; + this.preview.setAttribute('href', preview); + this.show(); + this.position(this.quill.getBounds(this.linkRange)); + return; + } + } + this.hide(); + }); + } + + show() { + super.show(); + this.root.removeAttribute('data-mode'); + } +} +SnowTooltip.TEMPLATE = [ + '', + '', + '', + '' +].join(''); + + +export default SnowTheme; diff --git a/assets/vendors/js/editors/quill/ui/color-picker.js b/assets/vendors/js/editors/quill/ui/color-picker.js new file mode 100644 index 0000000..b1f85dc --- /dev/null +++ b/assets/vendors/js/editors/quill/ui/color-picker.js @@ -0,0 +1,35 @@ +import Picker from './picker'; + + +class ColorPicker extends Picker { + constructor(select, label) { + super(select); + this.label.innerHTML = label; + this.container.classList.add('ql-color-picker'); + [].slice.call(this.container.querySelectorAll('.ql-picker-item'), 0, 7).forEach(function(item) { + item.classList.add('ql-primary'); + }); + } + + buildItem(option) { + let item = super.buildItem(option); + item.style.backgroundColor = option.getAttribute('value') || ''; + return item; + } + + selectItem(item, trigger) { + super.selectItem(item, trigger); + let colorLabel = this.label.querySelector('.ql-color-label'); + let value = item ? item.getAttribute('data-value') || '' : ''; + if (colorLabel) { + if (colorLabel.tagName === 'line') { + colorLabel.style.stroke = value; + } else { + colorLabel.style.fill = value; + } + } + } +} + + +export default ColorPicker; diff --git a/assets/vendors/js/editors/quill/ui/icon-picker.js b/assets/vendors/js/editors/quill/ui/icon-picker.js new file mode 100644 index 0000000..1a8ee27 --- /dev/null +++ b/assets/vendors/js/editors/quill/ui/icon-picker.js @@ -0,0 +1,23 @@ +import Picker from './picker'; + + +class IconPicker extends Picker { + constructor(select, icons) { + super(select); + this.container.classList.add('ql-icon-picker'); + [].forEach.call(this.container.querySelectorAll('.ql-picker-item'), (item) => { + item.innerHTML = icons[item.getAttribute('data-value') || '']; + }); + this.defaultItem = this.container.querySelector('.ql-selected'); + this.selectItem(this.defaultItem); + } + + selectItem(item, trigger) { + super.selectItem(item, trigger); + item = item || this.defaultItem; + this.label.innerHTML = item.innerHTML; + } +} + + +export default IconPicker; diff --git a/assets/vendors/js/editors/quill/ui/icons.js b/assets/vendors/js/editors/quill/ui/icons.js new file mode 100644 index 0000000..c34443c --- /dev/null +++ b/assets/vendors/js/editors/quill/ui/icons.js @@ -0,0 +1,48 @@ +module.exports = { + 'align': { + '' : require('../assets/icons/align-left.svg'), + 'center' : require('../assets/icons/align-center.svg'), + 'right' : require('../assets/icons/align-right.svg'), + 'justify' : require('../assets/icons/align-justify.svg') + }, + 'background': require('../assets/icons/background.svg'), + 'blockquote': require('../assets/icons/blockquote.svg'), + 'bold' : require('../assets/icons/bold.svg'), + 'clean' : require('../assets/icons/clean.svg'), + 'code' : require('../assets/icons/code.svg'), + 'code-block': require('../assets/icons/code.svg'), + 'color' : require('../assets/icons/color.svg'), + 'direction' : { + '' : require('../assets/icons/direction-ltr.svg'), + 'rtl' : require('../assets/icons/direction-rtl.svg') + }, + 'float': { + 'center' : require('../assets/icons/float-center.svg'), + 'full' : require('../assets/icons/float-full.svg'), + 'left' : require('../assets/icons/float-left.svg'), + 'right' : require('../assets/icons/float-right.svg') + }, + 'formula' : require('../assets/icons/formula.svg'), + 'header': { + '1' : require('../assets/icons/header.svg'), + '2' : require('../assets/icons/header-2.svg') + }, + 'italic' : require('../assets/icons/italic.svg'), + 'image' : require('../assets/icons/image.svg'), + 'indent': { + '+1' : require('../assets/icons/indent.svg'), + '-1' : require('../assets/icons/outdent.svg') + }, + 'link' : require('../assets/icons/link.svg'), + 'list': { + 'ordered' : require('../assets/icons/list-ordered.svg'), + 'bullet' : require('../assets/icons/list-bullet.svg') + }, + 'script': { + 'sub' : require('../assets/icons/subscript.svg'), + 'super' : require('../assets/icons/superscript.svg'), + }, + 'strike' : require('../assets/icons/strike.svg'), + 'underline' : require('../assets/icons/underline.svg'), + 'video' : require('../assets/icons/video.svg') +}; diff --git a/assets/vendors/js/editors/quill/ui/picker.js b/assets/vendors/js/editors/quill/ui/picker.js new file mode 100644 index 0000000..3a781eb --- /dev/null +++ b/assets/vendors/js/editors/quill/ui/picker.js @@ -0,0 +1,116 @@ +import DropdownIcon from '../assets/icons/dropdown.svg'; + + +class Picker { + constructor(select) { + this.select = select; + this.container = document.createElement('span'); + this.buildPicker(); + this.select.style.display = 'none'; + this.select.parentNode.insertBefore(this.container, this.select); + this.label.addEventListener('click', (event) => { + this.container.classList.toggle('ql-expanded'); + }); + this.select.addEventListener('change', this.update.bind(this)); + } + + buildItem(option) { + let item = document.createElement('span'); + item.classList.add('ql-picker-item'); + if (option.hasAttribute('value')) { + item.setAttribute('data-value', option.getAttribute('value')); + } + if (option.textContent) { + item.setAttribute('data-label', option.textContent); + } + item.addEventListener('click', (event) => { + this.selectItem(item, true); + }); + return item; + } + + buildLabel() { + let label = document.createElement('span'); + label.classList.add('ql-picker-label'); + label.innerHTML = DropdownIcon; + this.container.appendChild(label); + return label; + } + + buildOptions() { + let options = document.createElement('span'); + options.classList.add('ql-picker-options'); + [].slice.call(this.select.options).forEach((option) => { + let item = this.buildItem(option); + options.appendChild(item); + if (option.hasAttribute('selected')) { + this.selectItem(item); + } + }); + this.container.appendChild(options); + } + + buildPicker() { + [].slice.call(this.select.attributes).forEach((item) => { + this.container.setAttribute(item.name, item.value); + }); + this.container.classList.add('ql-picker'); + this.label = this.buildLabel(); + this.buildOptions(); + } + + close() { + this.container.classList.remove('ql-expanded'); + } + + selectItem(item, trigger = false) { + let selected = this.container.querySelector('.ql-selected'); + if (item === selected) return; + if (selected != null) { + selected.classList.remove('ql-selected'); + } + if (item != null) { + item.classList.add('ql-selected'); + this.select.selectedIndex = [].indexOf.call(item.parentNode.children, item); + if (item.hasAttribute('data-value')) { + this.label.setAttribute('data-value', item.getAttribute('data-value')); + } else { + this.label.removeAttribute('data-value'); + } + if (item.hasAttribute('data-label')) { + this.label.setAttribute('data-label', item.getAttribute('data-label')); + } else { + this.label.removeAttribute('data-label'); + } + if (trigger) { + if (typeof Event === 'function') { + this.select.dispatchEvent(new Event('change')); + } else if (typeof Event === 'object') { // IE11 + let event = document.createEvent('Event'); + event.initEvent('change', true, true); + this.select.dispatchEvent(event); + } + this.close(); + } + } else { + this.label.removeAttribute('data-value'); + this.label.removeAttribute('data-label'); + } + } + + update() { + let option; + if (this.select.selectedIndex > -1) { + let item = this.container.querySelector('.ql-picker-options').children[this.select.selectedIndex]; + option = this.select.options[this.select.selectedIndex]; + this.selectItem(item); + } else { + this.selectItem(null); + } + let isActive = option != null && option !== this.select.querySelector('option[selected]'); + this.label.classList.toggle('ql-active', isActive); + } +} + + +export default Picker; diff --git a/assets/vendors/js/editors/quill/ui/tooltip.js b/assets/vendors/js/editors/quill/ui/tooltip.js new file mode 100644 index 0000000..951d81d --- /dev/null +++ b/assets/vendors/js/editors/quill/ui/tooltip.js @@ -0,0 +1,52 @@ +class Tooltip { + constructor(quill, boundsContainer) { + this.quill = quill; + this.boundsContainer = boundsContainer || document.body; + this.root = quill.addContainer('ql-tooltip'); + this.root.innerHTML = this.constructor.TEMPLATE; + let offset = parseInt(window.getComputedStyle(this.root).marginTop); + this.quill.root.addEventListener('scroll', () => { + this.root.style.marginTop = (-1*this.quill.root.scrollTop) + offset + 'px'; + this.checkBounds(); + }); + this.hide(); + } + + checkBounds() { + this.root.classList.toggle('ql-out-top', this.root.offsetTop <= 0); + this.root.classList.remove('ql-out-bottom'); + this.root.classList.toggle('ql-out-bottom', this.root.offsetTop + this.root.offsetHeight >= this.quill.root.offsetHeight); + } + + hide() { + this.root.classList.add('ql-hidden'); + } + + position(reference) { + let left = reference.left + reference.width/2 - this.root.offsetWidth/2; + let top = reference.bottom + this.quill.root.scrollTop; + this.root.style.left = left + 'px'; + this.root.style.top = top + 'px'; + let containerBounds = this.boundsContainer.getBoundingClientRect(); + let rootBounds = this.root.getBoundingClientRect(); + let shift = 0; + if (rootBounds.right > containerBounds.right) { + shift = containerBounds.right - rootBounds.right; + this.root.style.left = (left + shift) + 'px'; + } + if (rootBounds.left < containerBounds.left) { + shift = containerBounds.left - rootBounds.left; + this.root.style.left = (left + shift) + 'px'; + } + this.checkBounds(); + return shift; + } + + show() { + this.root.classList.remove('ql-editing'); + this.root.classList.remove('ql-hidden'); + } +} + + +export default Tooltip; diff --git a/assets/vendors/js/extensions/dataTables.checkboxes.min.js b/assets/vendors/js/extensions/dataTables.checkboxes.min.js new file mode 100644 index 0000000..2fc30d2 --- /dev/null +++ b/assets/vendors/js/extensions/dataTables.checkboxes.min.js @@ -0,0 +1,5 @@ +/*! Checkboxes 1.2.11 + * Copyright (c) Gyrocode (www.gyrocode.com) + * License: MIT License + */ +(function(factory){if(typeof define==="function"&&define.amd){define(["jquery","datatables.net"],function($){return factory($,window,document);});}else{if(typeof exports==="object"){module.exports=function(root,$){if(!root){root=window;}if(!$||!$.fn.dataTable){$=require("datatables.net")(root,$).$;}return factory($,root,root.document);};}else{factory(jQuery,window,document);}}}(function($,window,document){var DataTable=$.fn.dataTable;var Checkboxes=function(settings){if(!DataTable.versionCheck||!DataTable.versionCheck("1.10.8")){throw"DataTables Checkboxes requires DataTables 1.10.8 or newer";}this.s={dt:new DataTable.Api(settings),columns:[],data:[],dataDisabled:[],ignoreSelect:false};this.s.ctx=this.s.dt.settings()[0];if(this.s.ctx.checkboxes){return;}settings.checkboxes=this;this._constructor();};Checkboxes.prototype={_constructor:function(){var self=this;var dt=self.s.dt;var ctx=self.s.ctx;var hasCheckboxes=false;var hasCheckboxesSelectRow=false;for(var i=0;i';};}DataTable.ext.internal._fnColumnOptions(ctx,i,colOptions);$colHeader.removeClass("sorting");$colHeader.off(".dt");if(ctx.sAjaxSource===null){var cells=dt.cells("tr",i);cells.invalidate("data");$(cells.nodes()).addClass(colOptions["className"]);}self.s.data[i]={};self.s.dataDisabled[i]={};self.s.columns.push(i);if(ctx.aoColumns[i].checkboxes.selectRow){if(ctx._select){hasCheckboxesSelectRow=true;}else{ctx.aoColumns[i].checkboxes.selectRow=false;}}if(ctx.aoColumns[i].checkboxes.selectAll){$colHeader.data("html",$colHeader.html());if(ctx.aoColumns[i].checkboxes.selectAllRender!==null){var selectAllHtml="";if($.isFunction(ctx.aoColumns[i].checkboxes.selectAllRender)){selectAllHtml=ctx.aoColumns[i].checkboxes.selectAllRender();}else{if(typeof ctx.aoColumns[i].checkboxes.selectAllRender==="string"){selectAllHtml=ctx.aoColumns[i].checkboxes.selectAllRender;}}$colHeader.html(selectAllHtml).addClass("dt-checkboxes-select-all").attr("data-col",i);}}}}if(hasCheckboxes){self.loadState();var $table=$(dt.table().node());var $tableBody=$(dt.table().body());var $tableContainer=$(dt.table().container());if(hasCheckboxesSelectRow){$table.addClass("dt-checkboxes-select");$table.on("user-select.dt.dtCheckboxes",function(e,dt,type,cell,originalEvent){self.onDataTablesUserSelect(e,dt,type,cell,originalEvent);});$table.on("select.dt.dtCheckboxes deselect.dt.dtCheckboxes",function(e,api,type,indexes){self.onDataTablesSelectDeselect(e,type,indexes);});dt.select.info(false);$table.on("draw.dt.dtCheckboxes select.dt.dtCheckboxes deselect.dt.dtCheckboxes",function(){self.showInfoSelected();});}$table.on("draw.dt.dtCheckboxes",function(e){self.onDataTablesDraw(e);});$tableBody.on("click.dtCheckboxes","input.dt-checkboxes",function(e){self.onClick(e,this);});$tableContainer.on("click.dtCheckboxes",'thead th.dt-checkboxes-select-all input[type="checkbox"]',function(e){self.onClickSelectAll(e,this);});$tableContainer.on("click.dtCheckboxes","thead th.dt-checkboxes-select-all",function(){$('input[type="checkbox"]',this).not(":disabled").trigger("click");});if(!hasCheckboxesSelectRow){$tableContainer.on("click.dtCheckboxes","tbody td.dt-checkboxes-cell",function(){$('input[type="checkbox"]',this).not(":disabled").trigger("click");});}$tableContainer.on("click.dtCheckboxes","thead th.dt-checkboxes-select-all label, tbody td.dt-checkboxes-cell label",function(e){e.preventDefault();});$(document).on("click.dtCheckboxes",'.fixedHeader-floating thead th.dt-checkboxes-select-all input[type="checkbox"]',function(e){if(ctx._fixedHeader){if(ctx._fixedHeader.dom["header"].floating){self.onClickSelectAll(e,this);}}});$(document).on("click.dtCheckboxes",".fixedHeader-floating thead th.dt-checkboxes-select-all",function(){if(ctx._fixedHeader){if(ctx._fixedHeader.dom["header"].floating){$('input[type="checkbox"]',this).trigger("click");}}});$table.on("init.dt.dtCheckboxes",function(){self.onDataTablesInit();});$table.on("stateSaveParams.dt.dtCheckboxes",function(e,settings,data){self.onDataTablesStateSave(e,settings,data);});$table.one("destroy.dt.dtCheckboxes",function(e,settings){self.onDataTablesDestroy(e,settings);});}},onDataTablesInit:function(){var self=this;var dt=self.s.dt;var ctx=self.s.ctx;if(!ctx.oFeatures.bServerSide){if(ctx.oFeatures.bStateSave){self.updateState();}$(dt.table().node()).on("xhr.dt.dtCheckboxes",function(e,settings,json,xhr){self.onDataTablesXhr(e.settings,json,xhr);});}},onDataTablesUserSelect:function(e,dt,type,cell){var self=this;var cellIdx=cell.index();var rowIdx=cellIdx.row;var colIdx=self.getSelectRowColIndex();var cellData=dt.cell({row:rowIdx,column:colIdx}).data();if(!self.isCellSelectable(colIdx,cellData)){e.preventDefault();}},onDataTablesSelectDeselect:function(e,type,indexes){var self=this;var dt=self.s.dt;if(self.s.ignoreSelect){return;}if(type==="row"){var colIdx=self.getSelectRowColIndex();if(colIdx!==null){var cells=dt.cells(indexes,colIdx);self.updateData(cells,colIdx,(e.type==="select")?true:false);self.updateCheckbox(cells,colIdx,(e.type==="select")?true:false);self.updateSelectAll(colIdx);}}},onDataTablesStateSave:function(e,settings,data){var self=this;var ctx=self.s.ctx;data.checkboxes=[];$.each(self.s.columns,function(index,colIdx){if(ctx.aoColumns[colIdx].checkboxes.stateSave){data.checkboxes[colIdx]=self.s.data[colIdx];}});},onDataTablesDestroy:function(){var self=this;var dt=self.s.dt;var $table=$(dt.table().node());var $tableBody=$(dt.table().body());var $tableContainer=$(dt.table().container());$(document).off("click.dtCheckboxes");$tableContainer.off(".dtCheckboxes");$tableBody.off(".dtCheckboxes");$table.off(".dtCheckboxes");self.s.data={};self.s.dataDisabled={};$(".dt-checkboxes-select-all",$table).each(function(index,el){$(el).html($(el).data("html")).removeClass("dt-checkboxes-select-all");});},onDataTablesDraw:function(){var self=this;var ctx=self.s.ctx;if(ctx.oFeatures.bServerSide||ctx.oFeatures.bDeferRender){self.updateStateCheckboxes({page:"current",search:"none"});}$.each(self.s.columns,function(index,colIdx){self.updateSelectAll(colIdx);});},onDataTablesXhr:function(){var self=this;var dt=self.s.dt;var ctx=self.s.ctx;var $table=$(dt.table().node());$.each(self.s.columns,function(index,colIdx){self.s.data[colIdx]={};self.s.dataDisabled[colIdx]={};});if(ctx.oFeatures.bStateSave){self.loadState();$table.one("draw.dt.dtCheckboxes",function(){self.updateState();});}},updateData:function(cells,colIdx,isSelected){var self=this;var dt=self.s.dt;var ctx=self.s.ctx;if(ctx.aoColumns[colIdx].checkboxes){var cellsData=cells.data();cellsData.each(function(cellData){if(isSelected){ctx.checkboxes.s.data[colIdx][cellData]=1;}else{delete ctx.checkboxes.s.data[colIdx][cellData];}});if(ctx.oFeatures.bStateSave){if(ctx.aoColumns[colIdx].checkboxes.stateSave){dt.state.save();}}}},updateSelect:function(selector,isSelected){var self=this;var dt=self.s.dt;var ctx=self.s.ctx;if(ctx._select){self.s.ignoreSelect=true;if(isSelected){dt.rows(selector).select();}else{dt.rows(selector).deselect();}self.s.ignoreSelect=false;}},updateCheckbox:function(cells,colIdx,isSelected){var self=this;var ctx=self.s.ctx;var cellNodes=cells.nodes();if(cellNodes.length){$("input.dt-checkboxes",cellNodes).not(":disabled").prop("checked",isSelected);if($.isFunction(ctx.aoColumns[colIdx].checkboxes.selectCallback)){ctx.aoColumns[colIdx].checkboxes.selectCallback(cellNodes,isSelected);}}},updateState:function(){var self=this;self.updateStateCheckboxes({page:"all",search:"none"});$.each(self.s.columns,function(index,colIdx){self.updateSelectAll(colIdx);});},updateStateCheckboxes:function(opts){var self=this;var dt=self.s.dt;var ctx=self.s.ctx;dt.cells("tr",self.s.columns,opts).every(function(rowIdx,colIdx){var cellData=this.data();var isCellSelectable=self.isCellSelectable(colIdx,cellData);if(ctx.checkboxes.s.data[colIdx].hasOwnProperty(cellData)){self.updateCheckbox(this,colIdx,true);if(ctx.aoColumns[colIdx].checkboxes.selectRow&&isCellSelectable){self.updateSelect(rowIdx,true);}}if(!isCellSelectable){$("input.dt-checkboxes",this.node()).prop("disabled",true);}});},onClick:function(e,ctrl){var self=this;var dt=self.s.dt;var ctx=self.s.ctx;var cellSelector;var $cell=$(ctrl).closest("td");if($cell.parents(".DTFC_Cloned").length){cellSelector=dt.fixedColumns().cellIndex($cell);}else{cellSelector=$cell;}var cell=dt.cell(cellSelector);var cellIdx=cell.index();var colIdx=cellIdx.column;if(!ctx.aoColumns[colIdx].checkboxes.selectRow){cell.checkboxes.select(ctrl.checked);e.stopPropagation();}else{setTimeout(function(){var cellData=cell.data();var hasData=self.s.data[colIdx].hasOwnProperty(cellData);if(hasData!==ctrl.checked){self.updateCheckbox(cell,colIdx,hasData);self.updateSelectAll(colIdx);}},0);}},onClickSelectAll:function(e,ctrl){var self=this;var dt=self.s.dt;var ctx=self.s.ctx;var colIdx=null;var $th=$(ctrl).closest("th");if($th.parents(".DTFC_Cloned").length){var cellIdx=dt.fixedColumns().cellIndex($th);colIdx=cellIdx.column;}else{colIdx=dt.column($th).index();}$(ctrl).data("is-changed",true);dt.column(colIdx,{page:((ctx.aoColumns[colIdx].checkboxes&&ctx.aoColumns[colIdx].checkboxes.selectAllPages)?"all":"current"),search:"applied"}).checkboxes.select(ctrl.checked);e.stopPropagation();},loadState:function(){var self=this;var dt=self.s.dt;var ctx=self.s.ctx;if(ctx.oFeatures.bStateSave){var state=dt.state.loaded();$.each(self.s.columns,function(index,colIdx){if(state&&state.checkboxes&&state.checkboxes.hasOwnProperty(colIdx)){if(ctx.aoColumns[colIdx].checkboxes.stateSave){self.s.data[colIdx]=state.checkboxes[colIdx];}}});}},updateSelectAll:function(colIdx){var self=this;var dt=self.s.dt;var ctx=self.s.ctx;if(ctx.aoColumns[colIdx].checkboxes&&ctx.aoColumns[colIdx].checkboxes.selectAll){var cells=dt.cells("tr",colIdx,{page:((ctx.aoColumns[colIdx].checkboxes.selectAllPages)?"all":"current"),search:"applied"});var $tableContainer=dt.table().container();var $checkboxesSelectAll=$('.dt-checkboxes-select-all[data-col="'+colIdx+'"] input[type="checkbox"]',$tableContainer);var countChecked=0;var countDisabled=0;var cellsData=cells.data();$.each(cellsData,function(index,cellData){if(self.isCellSelectable(colIdx,cellData)){if(self.s.data[colIdx].hasOwnProperty(cellData)){countChecked++;}}else{countDisabled++;}});if(ctx._fixedHeader){if(ctx._fixedHeader.dom["header"].floating){$checkboxesSelectAll=$('.fixedHeader-floating .dt-checkboxes-select-all[data-col="'+colIdx+'"] input[type="checkbox"]');}}var isSelected;var isIndeterminate;if(countChecked===0){isSelected=false;isIndeterminate=false;}else{if((countChecked+countDisabled)===cellsData.length){isSelected=true;isIndeterminate=false;}else{isSelected=true;isIndeterminate=true;}}var isChanged=$checkboxesSelectAll.data("is-changed");var isSelectedNow=$checkboxesSelectAll.prop("checked");var isIndeterminateNow=$checkboxesSelectAll.prop("indeterminate");if(isChanged||isSelectedNow!==isSelected||isIndeterminateNow!==isIndeterminate){$checkboxesSelectAll.data("is-changed",false);$checkboxesSelectAll.prop({"checked":isSelected,"indeterminate":isIndeterminate});if($.isFunction(ctx.aoColumns[colIdx].checkboxes.selectAllCallback)){ctx.aoColumns[colIdx].checkboxes.selectAllCallback($checkboxesSelectAll.closest("th").get(0),isSelected,isIndeterminate);}}}},showInfoSelected:function(){var self=this;var dt=self.s.dt;var ctx=self.s.ctx;if(!ctx.aanFeatures.i){return;}var colIdx=self.getSelectRowColIndex();if(colIdx!==null){var countRows=0;for(var cellData in ctx.checkboxes.s.data[colIdx]){if(ctx.checkboxes.s.data[colIdx].hasOwnProperty(cellData)){countRows++;}}var add=function($el,name,num){$el.append($('').append(dt.i18n("select."+name+"s",{_:"%d "+name+"s selected",0:"",1:"1 "+name+" selected"},num)));};$.each(ctx.aanFeatures.i,function(i,el){var $el=$(el);var $output=$('');add($output,"row",countRows);var $existing=$el.children("span.select-info");if($existing.length){$existing.remove();}if($output.text()!==""){$el.append($output);}});}},isCellSelectable:function(colIdx,cellData){var self=this;var ctx=self.s.ctx;if(ctx.checkboxes.s.dataDisabled[colIdx].hasOwnProperty(cellData)){return false;}else{return true;}},getCellIndex:function(cell){var self=this;var dt=self.s.dt;var ctx=self.s.ctx;if(ctx._oFixedColumns){return dt.fixedColumns().cellIndex(cell);}else{return dt.cell(cell).index();}},getSelectRowColIndex:function(){var self=this;var ctx=self.s.ctx;var colIdx=null;for(var i=0;irightCols){dt.fixedColumns().update();}}}};Checkboxes.defaults={stateSave:true,selectRow:false,selectAll:true,selectAllPages:true,selectCallback:null,selectAllCallback:null,selectAllRender:''};var Api=$.fn.dataTable.Api;Api.register("checkboxes()",function(){return this;});Api.registerPlural("columns().checkboxes.select()","column().checkboxes.select()",function(state){if(typeof state==="undefined"){state=true;}return this.iterator("column-rows",function(ctx,colIdx,i,j,rowsIdx){if(ctx.aoColumns[colIdx].checkboxes){var selector=[];$.each(rowsIdx,function(index,rowIdx){selector.push({row:rowIdx,column:colIdx});});var cells=this.cells(selector);var cellsData=cells.data();var rowsSelectableIdx=[];selector=[];$.each(cellsData,function(index,cellData){if(ctx.checkboxes.isCellSelectable(colIdx,cellData)){selector.push({row:rowsIdx[index],column:colIdx});rowsSelectableIdx.push(rowsIdx[index]);}});cells=this.cells(selector);ctx.checkboxes.updateData(cells,colIdx,state);ctx.checkboxes.updateCheckbox(cells,colIdx,state);if(ctx.aoColumns[colIdx].checkboxes.selectRow){ctx.checkboxes.updateSelect(rowsSelectableIdx,state);}if(ctx._oFixedColumns){setTimeout(function(){ctx.checkboxes.updateSelectAll(colIdx);},0);}else{ctx.checkboxes.updateSelectAll(colIdx);}ctx.checkboxes.updateFixedColumn(colIdx);}},1);});Api.registerPlural("cells().checkboxes.select()","cell().checkboxes.select()",function(state){if(typeof state==="undefined"){state=true;}return this.iterator("cell",function(ctx,rowIdx,colIdx){if(ctx.aoColumns[colIdx].checkboxes){var cells=this.cells([{row:rowIdx,column:colIdx}]);var cellData=this.cell({row:rowIdx,column:colIdx}).data();if(ctx.checkboxes.isCellSelectable(colIdx,cellData)){ctx.checkboxes.updateData(cells,colIdx,state);ctx.checkboxes.updateCheckbox(cells,colIdx,state);if(ctx.aoColumns[colIdx].checkboxes.selectRow){ctx.checkboxes.updateSelect(rowIdx,state);}if(ctx._oFixedColumns){setTimeout(function(){ctx.checkboxes.updateSelectAll(colIdx);},0);}else{ctx.checkboxes.updateSelectAll(colIdx);}ctx.checkboxes.updateFixedColumn(colIdx);}}},1);});Api.registerPlural("cells().checkboxes.enable()","cell().checkboxes.enable()",function(state){if(typeof state==="undefined"){state=true;}return this.iterator("cell",function(ctx,rowIdx,colIdx){if(ctx.aoColumns[colIdx].checkboxes){var cell=this.cell({row:rowIdx,column:colIdx});var cellData=cell.data();if(state){delete ctx.checkboxes.s.dataDisabled[colIdx][cellData];}else{ctx.checkboxes.s.dataDisabled[colIdx][cellData]=1;}var cellNode=cell.node();if(cellNode){$("input.dt-checkboxes",cellNode).prop("disabled",!state);}if(ctx.aoColumns[colIdx].checkboxes.selectRow){if(ctx.checkboxes.s.data[colIdx].hasOwnProperty(cellData)){ctx.checkboxes.updateSelect(rowIdx,state);}}}},1);});Api.registerPlural("cells().checkboxes.disable()","cell().checkboxes.disable()",function(state){if(typeof state==="undefined"){state=true;}return this.checkboxes.enable(!state);});Api.registerPlural("columns().checkboxes.deselect()","column().checkboxes.deselect()",function(state){if(typeof state==="undefined"){state=true;}return this.checkboxes.select(!state);});Api.registerPlural("cells().checkboxes.deselect()","cell().checkboxes.deselect()",function(state){if(typeof state==="undefined"){state=true;}return this.checkboxes.select(!state);});Api.registerPlural("columns().checkboxes.deselectAll()","column().checkboxes.deselectAll()",function(){return this.iterator("column",function(ctx,colIdx){if(ctx.aoColumns[colIdx].checkboxes){ctx.checkboxes.s.data[colIdx]={};this.column(colIdx).checkboxes.select(false);}},1);});Api.registerPlural("columns().checkboxes.selected()","column().checkboxes.selected()",function(){return this.iterator("column-rows",function(ctx,colIdx,i,j,rowsIdx){if(ctx.aoColumns[colIdx].checkboxes){var data=[];if(ctx.oFeatures.bServerSide){$.each(ctx.checkboxes.s.data[colIdx],function(cellData){if(ctx.checkboxes.isCellSelectable(colIdx,cellData)){data.push(cellData);}});}else{var selector=[];$.each(rowsIdx,function(index,rowIdx){selector.push({row:rowIdx,column:colIdx});});var cells=this.cells(selector);var cellsData=cells.data();$.each(cellsData,function(index,cellData){if(ctx.checkboxes.s.data[colIdx].hasOwnProperty(cellData)){if(ctx.checkboxes.isCellSelectable(colIdx,cellData)){data.push(cellData);}}});}return data;}else{return[];}},1);});Checkboxes.version="1.2.11";$.fn.DataTable.Checkboxes=Checkboxes;$.fn.dataTable.Checkboxes=Checkboxes;$(document).on("preInit.dt.dtCheckboxes",function(e,settings){if(e.namespace!=="dt"){return;}new Checkboxes(settings);});return Checkboxes;})); \ No newline at end of file diff --git a/assets/vendors/js/extensions/dragula.min.js b/assets/vendors/js/extensions/dragula.min.js new file mode 100644 index 0000000..b7860b9 --- /dev/null +++ b/assets/vendors/js/extensions/dragula.min.js @@ -0,0 +1 @@ +!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var n;n="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,n.dragula=e()}}(function(){return function e(n,t,r){function o(u,c){if(!t[u]){if(!n[u]){var a="function"==typeof require&&require;if(!c&&a)return a(u,!0);if(i)return i(u,!0);var f=new Error("Cannot find module '"+u+"'");throw f.code="MODULE_NOT_FOUND",f}var l=t[u]={exports:{}};n[u][0].call(l.exports,function(e){var t=n[u][1][e];return o(t?t:e)},l,l.exports,e,n,t,r)}return t[u].exports}for(var i="function"==typeof require&&require,u=0;u0?e:fe.revertOnSpill,t=ie||W,r=v(t),o=k(r);o===!1&&n&&(ie?r.removeChild(ie):Q.insertBefore(t,re)),o||n?le.emit("cancel",t,Q,Q):le.emit("drop",t,r,Q,oe),j()}}function j(){var e=ie||W;I(),z(),e&&E.rm(e,"gu-transit"),ue&&clearTimeout(ue),le.dragging=!1,ae&&le.emit("out",e,ae,Q),le.emit("dragend",e),Q=W=ie=re=oe=ue=ae=null}function k(e,n){var t;return t=void 0!==n?n:J?oe:g(ie||W),e===Q&&t===re}function q(e,n,r){function o(){var o=t(i);if(o===!1)return!1;var u=H(i,e),c=V(i,u,n,r),a=k(i,c);return a?!0:fe.accepts(W,i,Q,c)}for(var i=e;i&&!o();)i=v(i);return i}function U(e){function n(e){le.emit(e,f,ae,Q)}function t(){s&&n("over")}function r(){ae&&n("out")}if(J){e.preventDefault();var o=y("clientX",e),i=y("clientY",e),u=o-Z,c=i-ee;J.style.left=u+"px",J.style.top=c+"px";var f=ie||W,l=a(J,o,i),d=q(l,o,i),s=null!==d&&d!==ae;(s||null===d)&&(r(),ae=d,t());var p=v(f);if(d===Q&&ie&&!fe.copySortSource)return void(p&&p.removeChild(f));var m,h=H(d,l);if(null!==h)m=V(d,h,o,i);else{if(fe.revertOnSpill!==!0||ie)return void(ie&&p&&p.removeChild(f));m=re,d=Q}(null===m&&s||m!==f&&m!==g(f))&&(oe=m,d.insertBefore(f,m),le.emit("shadow",f,d,Q))}}function _(e){E.rm(e,"gu-hide")}function F(e){le.dragging&&E.add(e,"gu-hide")}function K(){if(!J){var e=W.getBoundingClientRect();J=W.cloneNode(!0),J.style.width=d(e)+"px",J.style.height=s(e)+"px",E.rm(J,"gu-transit"),E.add(J,"gu-mirror"),fe.mirrorContainer.appendChild(J),o(S,"add","mousemove",U),E.add(fe.mirrorContainer,"gu-unselectable"),le.emit("cloned",J,W,"mirror")}}function z(){J&&(E.rm(fe.mirrorContainer,"gu-unselectable"),o(S,"remove","mousemove",U),v(J).removeChild(J),J=null)}function H(e,n){for(var t=n;t!==e&&v(t)!==e;)t=v(t);return t===S?null:t}function V(e,n,t,r){function o(){var n,o,i,u=e.children.length;for(n=0;u>n;n++){if(o=e.children[n],i=o.getBoundingClientRect(),c&&i.left+i.width/2>t)return o;if(!c&&i.top+i.height/2>r)return o}return null}function i(){var e=n.getBoundingClientRect();return u(c?t>e.left+d(e)/2:r>e.top+s(e)/2)}function u(e){return e?g(n):n}var c="horizontal"===fe.direction,a=n!==e?i():o();return a}function $(e,n){return"boolean"==typeof fe.copy?fe.copy:fe.copy(e,n)}var G=arguments.length;1===G&&Array.isArray(e)===!1&&(n=e,e=[]);var J,Q,W,Z,ee,ne,te,re,oe,ie,ue,ce,ae=null,fe=n||{};void 0===fe.moves&&(fe.moves=l),void 0===fe.accepts&&(fe.accepts=l),void 0===fe.invalid&&(fe.invalid=P),void 0===fe.containers&&(fe.containers=e||[]),void 0===fe.isContainer&&(fe.isContainer=f),void 0===fe.copy&&(fe.copy=!1),void 0===fe.copySortSource&&(fe.copySortSource=!1),void 0===fe.revertOnSpill&&(fe.revertOnSpill=!1),void 0===fe.removeOnSpill&&(fe.removeOnSpill=!1),void 0===fe.direction&&(fe.direction="vertical"),void 0===fe.ignoreInputTextSelection&&(fe.ignoreInputTextSelection=!0),void 0===fe.mirrorContainer&&(fe.mirrorContainer=x.body);var le=b({containers:fe.containers,start:Y,end:D,cancel:A,remove:R,destroy:h,canMove:X,dragging:!1});return fe.removeOnSpill===!0&&le.on("over",_).on("out",F),r(),le}function o(e,n,r,o){var i={mouseup:"touchend",mousedown:"touchstart",mousemove:"touchmove"},u={mouseup:"pointerup",mousedown:"pointerdown",mousemove:"pointermove"},c={mouseup:"MSPointerUp",mousedown:"MSPointerDown",mousemove:"MSPointerMove"};t.navigator.pointerEnabled?w[n](e,u[r],o):t.navigator.msPointerEnabled?w[n](e,c[r],o):(w[n](e,i[r],o),w[n](e,r,o))}function i(e){if(void 0!==e.touches)return e.touches.length;if(void 0!==e.which&&0!==e.which)return e.which;if(void 0!==e.buttons)return e.buttons;var n=e.button;return void 0!==n?1&n?1:2&n?3:4&n?2:0:void 0}function u(e){var n=e.getBoundingClientRect();return{left:n.left+c("scrollLeft","pageXOffset"),top:n.top+c("scrollTop","pageYOffset")}}function c(e,n){return"undefined"!=typeof t[n]?t[n]:S.clientHeight?S[e]:x.body[e]}function a(e,n,t){var r,o=e||{},i=o.className;return o.className+=" gu-hide",r=x.elementFromPoint(n,t),o.className=i,r}function f(){return!1}function l(){return!0}function d(e){return e.width||e.right-e.left}function s(e){return e.height||e.bottom-e.top}function v(e){return e.parentNode===x?null:e.parentNode}function p(e){return"INPUT"===e.tagName||"TEXTAREA"===e.tagName||"SELECT"===e.tagName||m(e)}function m(e){return e?"false"===e.contentEditable?!1:"true"===e.contentEditable?!0:m(v(e)):!1}function g(e){function n(){var n=e;do n=n.nextSibling;while(n&&1!==n.nodeType);return n}return e.nextElementSibling||n()}function h(e){return e.targetTouches&&e.targetTouches.length?e.targetTouches[0]:e.changedTouches&&e.changedTouches.length?e.changedTouches[0]:e}function y(e,n){var t=h(n),r={pageX:"clientX",pageY:"clientY"};return e in r&&!(e in t)&&r[e]in t&&(e=r[e]),t[e]}var b=e("contra/emitter"),w=e("crossvent"),E=e("./classes"),x=document,S=x.documentElement;n.exports=r}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./classes":1,"contra/emitter":4,crossvent:8}],3:[function(e,n,t){"use strict";var r=e("ticky");n.exports=function(e,n,t){e&&r(function(){e.apply(t||null,n||[])})}},{ticky:6}],4:[function(e,n,t){"use strict";var r=e("atoa"),o=e("./debounce");n.exports=function(e,n){var t=n||{},i={};return void 0===e&&(e={}),e.on=function(n,t){return i[n]?i[n].push(t):i[n]=[t],e},e.once=function(n,t){return t._once=!0,e.on(n,t),e},e.off=function(n,t){var r=arguments.length;if(1===r)delete i[n];else if(0===r)i={};else{var o=i[n];if(!o)return e;o.splice(o.indexOf(t),1)}return e},e.emit=function(){var n=r(arguments);return e.emitterSnapshot(n.shift()).apply(this,n)},e.emitterSnapshot=function(n){var u=(i[n]||[]).slice(0);return function(){var i=r(arguments),c=this||e;if("error"===n&&t["throws"]!==!1&&!u.length)throw 1===i.length?i[0]:i;return u.forEach(function(r){t.async?o(r,i,c):r.apply(c,i),r._once&&e.off(n,r)}),e}},e}},{"./debounce":3,atoa:5}],5:[function(e,n,t){n.exports=function(e,n){return Array.prototype.slice.call(e,n)}},{}],6:[function(e,n,t){var r,o="function"==typeof setImmediate;r=o?function(e){setImmediate(e)}:function(e){setTimeout(e,0)},n.exports=r},{}],7:[function(e,n,t){(function(e){function t(){try{var e=new r("cat",{detail:{foo:"bar"}});return"cat"===e.type&&"bar"===e.detail.foo}catch(n){}return!1}var r=e.CustomEvent;n.exports=t()?r:"function"==typeof document.createEvent?function(e,n){var t=document.createEvent("CustomEvent");return n?t.initCustomEvent(e,n.bubbles,n.cancelable,n.detail):t.initCustomEvent(e,!1,!1,void 0),t}:function(e,n){var t=document.createEventObject();return t.type=e,n?(t.bubbles=Boolean(n.bubbles),t.cancelable=Boolean(n.cancelable),t.detail=n.detail):(t.bubbles=!1,t.cancelable=!1,t.detail=void 0),t}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],8:[function(e,n,t){(function(t){"use strict";function r(e,n,t,r){return e.addEventListener(n,t,r)}function o(e,n,t){return e.attachEvent("on"+n,f(e,n,t))}function i(e,n,t,r){return e.removeEventListener(n,t,r)}function u(e,n,t){var r=l(e,n,t);return r?e.detachEvent("on"+n,r):void 0}function c(e,n,t){function r(){var e;return p.createEvent?(e=p.createEvent("Event"),e.initEvent(n,!0,!0)):p.createEventObject&&(e=p.createEventObject()),e}function o(){return new s(n,{detail:t})}var i=-1===v.indexOf(n)?o():r();e.dispatchEvent?e.dispatchEvent(i):e.fireEvent("on"+n,i)}function a(e,n,r){return function(n){var o=n||t.event;o.target=o.target||o.srcElement,o.preventDefault=o.preventDefault||function(){o.returnValue=!1},o.stopPropagation=o.stopPropagation||function(){o.cancelBubble=!0},o.which=o.which||o.keyCode,r.call(e,o)}}function f(e,n,t){var r=l(e,n,t)||a(e,n,t);return h.push({wrapper:r,element:e,type:n,fn:t}),r}function l(e,n,t){var r=d(e,n,t);if(r){var o=h[r].wrapper;return h.splice(r,1),o}}function d(e,n,t){var r,o;for(r=0;r d; ++d)c[d].apply(this, b) } return this }, c.prototype.listeners = function (a) { return this._callbacks = this._callbacks || {}, this._callbacks[a] || [] }, c.prototype.hasListeners = function (a) { return !!this.listeners(a).length } }), a.register("dropzone", function (b, c) { c.exports = a("dropzone/lib/dropzone.js") }), a.register("dropzone/lib/dropzone.js", function (b, c) { (function () { var b, d, e, f, g, h, i, j, k = {}.hasOwnProperty, l = function (a, b) { function c() { this.constructor = a } for (var d in b) k.call(b, d) && (a[d] = b[d]); return c.prototype = b.prototype, a.prototype = new c, a.__super__ = b.prototype, a }, m = [].slice; d = "undefined" != typeof Emitter && null !== Emitter ? Emitter : a("component~emitter@1.1.2"), i = function () { }, b = function (a) { function b(a, d) { var e, f, g; if (this.element = a, this.version = b.version, this.defaultOptions.previewTemplate = this.defaultOptions.previewTemplate.replace(/\n*/g, ""), this.clickableElements = [], this.listeners = [], this.files = [], "string" == typeof this.element && (this.element = document.querySelector(this.element)), !this.element || null == this.element.nodeType) throw new Error("Invalid dropzone element."); if (this.element.dropzone) throw new Error("Dropzone already attached."); if (b.instances.push(this), this.element.dropzone = this, e = null != (g = b.optionsForElement(this.element)) ? g : {}, this.options = c({}, this.defaultOptions, e, null != d ? d : {}), this.options.forceFallback || !b.isBrowserSupported()) return this.options.fallback.call(this); if (null == this.options.url && (this.options.url = this.element.getAttribute("action")), !this.options.url) throw new Error("No URL provided."); if (this.options.acceptedFiles && this.options.acceptedMimeTypes) throw new Error("You can't provide both 'acceptedFiles' and 'acceptedMimeTypes'. 'acceptedMimeTypes' is deprecated."); this.options.acceptedMimeTypes && (this.options.acceptedFiles = this.options.acceptedMimeTypes, delete this.options.acceptedMimeTypes), this.options.method = this.options.method.toUpperCase(), (f = this.getExistingFallback()) && f.parentNode && f.parentNode.removeChild(f), this.options.previewsContainer !== !1 && (this.previewsContainer = this.options.previewsContainer ? b.getElement(this.options.previewsContainer, "previewsContainer") : this.element), this.options.clickable && (this.clickableElements = this.options.clickable === !0 ? [this.element] : b.getElements(this.options.clickable, "clickable")), this.init() } var c; return l(b, a), b.prototype.events = ["drop", "dragstart", "dragend", "dragenter", "dragover", "dragleave", "addedfile", "removedfile", "thumbnail", "error", "errormultiple", "processing", "processingmultiple", "uploadprogress", "totaluploadprogress", "sending", "sendingmultiple", "success", "successmultiple", "canceled", "canceledmultiple", "complete", "completemultiple", "reset", "maxfilesexceeded", "maxfilesreached"], b.prototype.defaultOptions = { url: null, method: "post", withCredentials: !1, parallelUploads: 2, uploadMultiple: !1, maxFilesize: 256, paramName: "file", createImageThumbnails: !0, maxThumbnailFilesize: 10, thumbnailWidth: 100, thumbnailHeight: 100, maxFiles: null, params: {}, clickable: !0, ignoreHiddenFiles: !0, acceptedFiles: null, acceptedMimeTypes: null, autoProcessQueue: !0, autoQueue: !0, addRemoveLinks: !1, previewsContainer: null, dictDefaultMessage: "Drop files here to upload", dictFallbackMessage: "Your browser does not support drag'n'drop file uploads.", dictFallbackText: "Please use the fallback form below to upload your files like in the olden days.", dictFileTooBig: "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.", dictInvalidFileType: "You can't upload files of this type.", dictResponseError: "Server responded with {{statusCode}} code.", dictCancelUpload: "Cancel upload", dictCancelUploadConfirmation: "Are you sure you want to cancel this upload?", dictRemoveFile: "Remove file", dictRemoveFileConfirmation: null, dictMaxFilesExceeded: "You can not upload any more files.", accept: function (a, b) { return b() }, init: function () { return i }, forceFallback: !1, fallback: function () { var a, c, d, e, f, g; for (this.element.className = "" + this.element.className + " dz-browser-not-supported", g = this.element.getElementsByTagName("div"), e = 0, f = g.length; f > e; e++)a = g[e], /(^| )dz-message($| )/.test(a.className) && (c = a, a.className = "dz-message"); return c || (c = b.createElement('
    '), this.element.appendChild(c)), d = c.getElementsByTagName("span")[0], d && (d.textContent = this.options.dictFallbackMessage), this.element.appendChild(this.getFallbackForm()) }, resize: function (a) { var b, c, d; return b = { srcX: 0, srcY: 0, srcWidth: a.width, srcHeight: a.height }, c = a.width / a.height, b.optWidth = this.options.thumbnailWidth, b.optHeight = this.options.thumbnailHeight, null == b.optWidth && null == b.optHeight ? (b.optWidth = b.srcWidth, b.optHeight = b.srcHeight) : null == b.optWidth ? b.optWidth = c * b.optHeight : null == b.optHeight && (b.optHeight = 1 / c * b.optWidth), d = b.optWidth / b.optHeight, a.height < b.optHeight || a.width < b.optWidth ? (b.trgHeight = b.srcHeight, b.trgWidth = b.srcWidth) : c > d ? (b.srcHeight = a.height, b.srcWidth = b.srcHeight * d) : (b.srcWidth = a.width, b.srcHeight = b.srcWidth / d), b.srcX = (a.width - b.srcWidth) / 2, b.srcY = (a.height - b.srcHeight) / 2, b }, drop: function () { return this.element.classList.remove("dz-drag-hover") }, dragstart: i, dragend: function () { return this.element.classList.remove("dz-drag-hover") }, dragenter: function () { return this.element.classList.add("dz-drag-hover") }, dragover: function () { return this.element.classList.add("dz-drag-hover") }, dragleave: function () { return this.element.classList.remove("dz-drag-hover") }, paste: i, reset: function () { return this.element.classList.remove("dz-started") }, addedfile: function (a) { var c, d, e, f, g, h, i, j, k, l, m, n, o; if (this.element === this.previewsContainer && this.element.classList.add("dz-started"), this.previewsContainer) { for (a.previewElement = b.createElement(this.options.previewTemplate.trim()), a.previewTemplate = a.previewElement, this.previewsContainer.appendChild(a.previewElement), l = a.previewElement.querySelectorAll("[data-dz-name]"), f = 0, i = l.length; i > f; f++)c = l[f], c.textContent = a.name; for (m = a.previewElement.querySelectorAll("[data-dz-size]"), g = 0, j = m.length; j > g; g++)c = m[g], c.innerHTML = this.filesize(a.size); for (this.options.addRemoveLinks && (a._removeLink = b.createElement('' + this.options.dictRemoveFile + ""), a.previewElement.appendChild(a._removeLink)), d = function (c) { return function (d) { return d.preventDefault(), d.stopPropagation(), a.status === b.UPLOADING ? b.confirm(c.options.dictCancelUploadConfirmation, function () { return c.removeFile(a) }) : c.options.dictRemoveFileConfirmation ? b.confirm(c.options.dictRemoveFileConfirmation, function () { return c.removeFile(a) }) : c.removeFile(a) } }(this), n = a.previewElement.querySelectorAll("[data-dz-remove]"), o = [], h = 0, k = n.length; k > h; h++)e = n[h], o.push(e.addEventListener("click", d)); return o } }, removedfile: function (a) { var b; return a.previewElement && null != (b = a.previewElement) && b.parentNode.removeChild(a.previewElement), this._updateMaxFilesReachedClass() }, thumbnail: function (a, b) { var c, d, e, f, g; if (a.previewElement) { for (a.previewElement.classList.remove("dz-file-preview"), a.previewElement.classList.add("dz-image-preview"), f = a.previewElement.querySelectorAll("[data-dz-thumbnail]"), g = [], d = 0, e = f.length; e > d; d++)c = f[d], c.alt = a.name, g.push(c.src = b); return g } }, error: function (a, b) { var c, d, e, f, g; if (a.previewElement) { for (a.previewElement.classList.add("dz-error"), "String" != typeof b && b.error && (b = b.error), f = a.previewElement.querySelectorAll("[data-dz-errormessage]"), g = [], d = 0, e = f.length; e > d; d++)c = f[d], g.push(c.textContent = b); return g } }, errormultiple: i, processing: function (a) { return a.previewElement && (a.previewElement.classList.add("dz-processing"), a._removeLink) ? a._removeLink.textContent = this.options.dictCancelUpload : void 0 }, processingmultiple: i, uploadprogress: function (a, b) { var c, d, e, f, g; if (a.previewElement) { for (f = a.previewElement.querySelectorAll("[data-dz-uploadprogress]"), g = [], d = 0, e = f.length; e > d; d++)c = f[d], g.push(c.style.width = "" + b + "%"); return g } }, totaluploadprogress: i, sending: i, sendingmultiple: i, success: function (a) { return a.previewElement ? a.previewElement.classList.add("dz-success") : void 0 }, successmultiple: i, canceled: function (a) { return this.emit("error", a, "Upload canceled.") }, canceledmultiple: i, complete: function (a) { return a._removeLink ? a._removeLink.textContent = this.options.dictRemoveFile : void 0 }, completemultiple: i, maxfilesexceeded: i, maxfilesreached: i, previewTemplate: '
    \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    ' }, c = function () { var a, b, c, d, e, f, g; for (d = arguments[0], c = 2 <= arguments.length ? m.call(arguments, 1) : [], f = 0, g = c.length; g > f; f++) { b = c[f]; for (a in b) e = b[a], d[a] = e } return d }, b.prototype.getAcceptedFiles = function () { var a, b, c, d, e; for (d = this.files, e = [], b = 0, c = d.length; c > b; b++)a = d[b], a.accepted && e.push(a); return e }, b.prototype.getRejectedFiles = function () { var a, b, c, d, e; for (d = this.files, e = [], b = 0, c = d.length; c > b; b++)a = d[b], a.accepted || e.push(a); return e }, b.prototype.getFilesWithStatus = function (a) { var b, c, d, e, f; for (e = this.files, f = [], c = 0, d = e.length; d > c; c++)b = e[c], b.status === a && f.push(b); return f }, b.prototype.getQueuedFiles = function () { return this.getFilesWithStatus(b.QUEUED) }, b.prototype.getUploadingFiles = function () { return this.getFilesWithStatus(b.UPLOADING) }, b.prototype.getActiveFiles = function () { var a, c, d, e, f; for (e = this.files, f = [], c = 0, d = e.length; d > c; c++)a = e[c], (a.status === b.UPLOADING || a.status === b.QUEUED) && f.push(a); return f }, b.prototype.init = function () { var a, c, d, e, f, g, h; for ("form" === this.element.tagName && this.element.setAttribute("enctype", "multipart/form-data"), this.element.classList.contains("dropzone") && !this.element.querySelector(".dz-message") && this.element.appendChild(b.createElement('
    ' + this.options.dictDefaultMessage + "
    ")), this.clickableElements.length && (d = function (a) { return function () { return a.hiddenFileInput && document.body.removeChild(a.hiddenFileInput), a.hiddenFileInput = document.createElement("input"), a.hiddenFileInput.setAttribute("type", "file"), (null == a.options.maxFiles || a.options.maxFiles > 1) && a.hiddenFileInput.setAttribute("multiple", "multiple"), a.hiddenFileInput.className = "dz-hidden-input", null != a.options.acceptedFiles && a.hiddenFileInput.setAttribute("accept", a.options.acceptedFiles), a.hiddenFileInput.style.visibility = "hidden", a.hiddenFileInput.style.position = "absolute", a.hiddenFileInput.style.top = "0", a.hiddenFileInput.style.left = "0", a.hiddenFileInput.style.height = "0", a.hiddenFileInput.style.width = "0", document.body.appendChild(a.hiddenFileInput), a.hiddenFileInput.addEventListener("change", function () { var b, c, e, f; if (c = a.hiddenFileInput.files, c.length) for (e = 0, f = c.length; f > e; e++)b = c[e], a.addFile(b); return d() }) } }(this))(), this.URL = null != (g = window.URL) ? g : window.webkitURL, h = this.events, e = 0, f = h.length; f > e; e++)a = h[e], this.on(a, this.options[a]); return this.on("uploadprogress", function (a) { return function () { return a.updateTotalUploadProgress() } }(this)), this.on("removedfile", function (a) { return function () { return a.updateTotalUploadProgress() } }(this)), this.on("canceled", function (a) { return function (b) { return a.emit("complete", b) } }(this)), this.on("complete", function (a) { return function () { return 0 === a.getUploadingFiles().length && 0 === a.getQueuedFiles().length ? setTimeout(function () { return a.emit("queuecomplete") }, 0) : void 0 } }(this)), c = function (a) { return a.stopPropagation(), a.preventDefault ? a.preventDefault() : a.returnValue = !1 }, this.listeners = [{ element: this.element, events: { dragstart: function (a) { return function (b) { return a.emit("dragstart", b) } }(this), dragenter: function (a) { return function (b) { return c(b), a.emit("dragenter", b) } }(this), dragover: function (a) { return function (b) { var d; try { d = b.dataTransfer.effectAllowed } catch (e) { } return b.dataTransfer.dropEffect = "move" === d || "linkMove" === d ? "move" : "copy", c(b), a.emit("dragover", b) } }(this), dragleave: function (a) { return function (b) { return a.emit("dragleave", b) } }(this), drop: function (a) { return function (b) { return c(b), a.drop(b) } }(this), dragend: function (a) { return function (b) { return a.emit("dragend", b) } }(this) } }], this.clickableElements.forEach(function (a) { return function (c) { return a.listeners.push({ element: c, events: { click: function (d) { return c !== a.element || d.target === a.element || b.elementInside(d.target, a.element.querySelector(".dz-message")) ? a.hiddenFileInput.click() : void 0 } } }) } }(this)), this.enable(), this.options.init.call(this) }, b.prototype.destroy = function () { var a; return this.disable(), this.removeAllFiles(!0), (null != (a = this.hiddenFileInput) ? a.parentNode : void 0) && (this.hiddenFileInput.parentNode.removeChild(this.hiddenFileInput), this.hiddenFileInput = null), delete this.element.dropzone, b.instances.splice(b.instances.indexOf(this), 1) }, b.prototype.updateTotalUploadProgress = function () { var a, b, c, d, e, f, g, h; if (d = 0, c = 0, a = this.getActiveFiles(), a.length) { for (h = this.getActiveFiles(), f = 0, g = h.length; g > f; f++)b = h[f], d += b.upload.bytesSent, c += b.upload.total; e = 100 * d / c } else e = 100; return this.emit("totaluploadprogress", e, c, d) }, b.prototype._getParamName = function (a) { return "function" == typeof this.options.paramName ? this.options.paramName(a) : "" + this.options.paramName + (this.options.uploadMultiple ? "[" + a + "]" : "") }, b.prototype.getFallbackForm = function () { var a, c, d, e; return (a = this.getExistingFallback()) ? a : (d = '
    ', this.options.dictFallbackText && (d += "

    " + this.options.dictFallbackText + "

    "), d += '
    ', c = b.createElement(d), "FORM" !== this.element.tagName ? (e = b.createElement('
    '), e.appendChild(c)) : (this.element.setAttribute("enctype", "multipart/form-data"), this.element.setAttribute("method", this.options.method)), null != e ? e : c) }, b.prototype.getExistingFallback = function () { var a, b, c, d, e, f; for (b = function (a) { var b, c, d; for (c = 0, d = a.length; d > c; c++)if (b = a[c], /(^| )fallback($| )/.test(b.className)) return b }, f = ["div", "form"], d = 0, e = f.length; e > d; d++)if (c = f[d], a = b(this.element.getElementsByTagName(c))) return a }, b.prototype.setupEventListeners = function () { var a, b, c, d, e, f, g; for (f = this.listeners, g = [], d = 0, e = f.length; e > d; d++)a = f[d], g.push(function () { var d, e; d = a.events, e = []; for (b in d) c = d[b], e.push(a.element.addEventListener(b, c, !1)); return e }()); return g }, b.prototype.removeEventListeners = function () { var a, b, c, d, e, f, g; for (f = this.listeners, g = [], d = 0, e = f.length; e > d; d++)a = f[d], g.push(function () { var d, e; d = a.events, e = []; for (b in d) c = d[b], e.push(a.element.removeEventListener(b, c, !1)); return e }()); return g }, b.prototype.disable = function () { var a, b, c, d, e; for (this.clickableElements.forEach(function (a) { return a.classList.remove("dz-clickable") }), this.removeEventListeners(), d = this.files, e = [], b = 0, c = d.length; c > b; b++)a = d[b], e.push(this.cancelUpload(a)); return e }, b.prototype.enable = function () { return this.clickableElements.forEach(function (a) { return a.classList.add("dz-clickable") }), this.setupEventListeners() }, b.prototype.filesize = function (a) { var b; return a >= 109951162777.6 ? (a /= 109951162777.6, b = "TiB") : a >= 107374182.4 ? (a /= 107374182.4, b = "GiB") : a >= 104857.6 ? (a /= 104857.6, b = "MiB") : a >= 102.4 ? (a /= 102.4, b = "KiB") : (a = 10 * a, b = "b"), "" + Math.round(a) / 10 + " " + b }, b.prototype._updateMaxFilesReachedClass = function () { return null != this.options.maxFiles && this.getAcceptedFiles().length >= this.options.maxFiles ? (this.getAcceptedFiles().length === this.options.maxFiles && this.emit("maxfilesreached", this.files), this.element.classList.add("dz-max-files-reached")) : this.element.classList.remove("dz-max-files-reached") }, b.prototype.drop = function (a) { var b, c; a.dataTransfer && (this.emit("drop", a), b = a.dataTransfer.files, b.length && (c = a.dataTransfer.items, c && c.length && null != c[0].webkitGetAsEntry ? this._addFilesFromItems(c) : this.handleFiles(b))) }, b.prototype.paste = function (a) { var b, c; if (null != (null != a && null != (c = a.clipboardData) ? c.items : void 0)) return this.emit("paste", a), b = a.clipboardData.items, b.length ? this._addFilesFromItems(b) : void 0 }, b.prototype.handleFiles = function (a) { var b, c, d, e; for (e = [], c = 0, d = a.length; d > c; c++)b = a[c], e.push(this.addFile(b)); return e }, b.prototype._addFilesFromItems = function (a) { var b, c, d, e, f; for (f = [], d = 0, e = a.length; e > d; d++)c = a[d], f.push(null != c.webkitGetAsEntry && (b = c.webkitGetAsEntry()) ? b.isFile ? this.addFile(c.getAsFile()) : b.isDirectory ? this._addFilesFromDirectory(b, b.name) : void 0 : null != c.getAsFile ? null == c.kind || "file" === c.kind ? this.addFile(c.getAsFile()) : void 0 : void 0); return f }, b.prototype._addFilesFromDirectory = function (a, b) { var c, d; return c = a.createReader(), d = function (a) { return function (c) { var d, e, f; for (e = 0, f = c.length; f > e; e++)d = c[e], d.isFile ? d.file(function (c) { return a.options.ignoreHiddenFiles && "." === c.name.substring(0, 1) ? void 0 : (c.fullPath = "" + b + "/" + c.name, a.addFile(c)) }) : d.isDirectory && a._addFilesFromDirectory(d, "" + b + "/" + d.name) } }(this), c.readEntries(d, function (a) { return "undefined" != typeof console && null !== console && "function" == typeof console.log ? console.log(a) : void 0 }) }, b.prototype.accept = function (a, c) { return a.size > 1024 * this.options.maxFilesize * 1024 ? c(this.options.dictFileTooBig.replace("{{filesize}}", Math.round(a.size / 1024 / 10.24) / 100).replace("{{maxFilesize}}", this.options.maxFilesize)) : b.isValidFile(a, this.options.acceptedFiles) ? null != this.options.maxFiles && this.getAcceptedFiles().length >= this.options.maxFiles ? (c(this.options.dictMaxFilesExceeded.replace("{{maxFiles}}", this.options.maxFiles)), this.emit("maxfilesexceeded", a)) : this.options.accept.call(this, a, c) : c(this.options.dictInvalidFileType) }, b.prototype.addFile = function (a) { return a.upload = { progress: 0, total: a.size, bytesSent: 0 }, this.files.push(a), a.status = b.ADDED, this.emit("addedfile", a), this._enqueueThumbnail(a), this.accept(a, function (b) { return function (c) { return c ? (a.accepted = !1, b._errorProcessing([a], c)) : (a.accepted = !0, b.options.autoQueue && b.enqueueFile(a)), b._updateMaxFilesReachedClass() } }(this)) }, b.prototype.enqueueFiles = function (a) { var b, c, d; for (c = 0, d = a.length; d > c; c++)b = a[c], this.enqueueFile(b); return null }, b.prototype.enqueueFile = function (a) { if (a.status !== b.ADDED || a.accepted !== !0) throw new Error("This file can't be queued because it has already been processed or was rejected."); return a.status = b.QUEUED, this.options.autoProcessQueue ? setTimeout(function (a) { return function () { return a.processQueue() } }(this), 0) : void 0 }, b.prototype._thumbnailQueue = [], b.prototype._processingThumbnail = !1, b.prototype._enqueueThumbnail = function (a) { return this.options.createImageThumbnails && a.type.match(/image.*/) && a.size <= 1024 * this.options.maxThumbnailFilesize * 1024 ? (this._thumbnailQueue.push(a), setTimeout(function (a) { return function () { return a._processThumbnailQueue() } }(this), 0)) : void 0 }, b.prototype._processThumbnailQueue = function () { return this._processingThumbnail || 0 === this._thumbnailQueue.length ? void 0 : (this._processingThumbnail = !0, this.createThumbnail(this._thumbnailQueue.shift(), function (a) { return function () { return a._processingThumbnail = !1, a._processThumbnailQueue() } }(this))) }, b.prototype.removeFile = function (a) { return a.status === b.UPLOADING && this.cancelUpload(a), this.files = j(this.files, a), this.emit("removedfile", a), 0 === this.files.length ? this.emit("reset") : void 0 }, b.prototype.removeAllFiles = function (a) { var c, d, e, f; for (null == a && (a = !1), f = this.files.slice(), d = 0, e = f.length; e > d; d++)c = f[d], (c.status !== b.UPLOADING || a) && this.removeFile(c); return null }, b.prototype.createThumbnail = function (a, b) { var c; return c = new FileReader, c.onload = function (d) { return function () { var e; return e = document.createElement("img"), e.onload = function () { var c, f, g, i, j, k, l, m; return a.width = e.width, a.height = e.height, g = d.options.resize.call(d, a), null == g.trgWidth && (g.trgWidth = g.optWidth), null == g.trgHeight && (g.trgHeight = g.optHeight), c = document.createElement("canvas"), f = c.getContext("2d"), c.width = g.trgWidth, c.height = g.trgHeight, h(f, e, null != (j = g.srcX) ? j : 0, null != (k = g.srcY) ? k : 0, g.srcWidth, g.srcHeight, null != (l = g.trgX) ? l : 0, null != (m = g.trgY) ? m : 0, g.trgWidth, g.trgHeight), i = c.toDataURL("image/png"), d.emit("thumbnail", a, i), null != b ? b() : void 0 }, e.src = c.result } }(this), c.readAsDataURL(a) }, b.prototype.processQueue = function () { var a, b, c, d; if (b = this.options.parallelUploads, c = this.getUploadingFiles().length, a = c, !(c >= b) && (d = this.getQueuedFiles(), d.length > 0)) { if (this.options.uploadMultiple) return this.processFiles(d.slice(0, b - c)); for (; b > a;) { if (!d.length) return; this.processFile(d.shift()), a++ } } }, b.prototype.processFile = function (a) { return this.processFiles([a]) }, b.prototype.processFiles = function (a) { var c, d, e; for (d = 0, e = a.length; e > d; d++)c = a[d], c.processing = !0, c.status = b.UPLOADING, this.emit("processing", c); return this.options.uploadMultiple && this.emit("processingmultiple", a), this.uploadFiles(a) }, b.prototype._getFilesWithXhr = function (a) { var b, c; return c = function () { var c, d, e, f; for (e = this.files, f = [], c = 0, d = e.length; d > c; c++)b = e[c], b.xhr === a && f.push(b); return f }.call(this) }, b.prototype.cancelUpload = function (a) { var c, d, e, f, g, h, i; if (a.status === b.UPLOADING) { for (d = this._getFilesWithXhr(a.xhr), e = 0, g = d.length; g > e; e++)c = d[e], c.status = b.CANCELED; for (a.xhr.abort(), f = 0, h = d.length; h > f; f++)c = d[f], this.emit("canceled", c); this.options.uploadMultiple && this.emit("canceledmultiple", d) } else ((i = a.status) === b.ADDED || i === b.QUEUED) && (a.status = b.CANCELED, this.emit("canceled", a), this.options.uploadMultiple && this.emit("canceledmultiple", [a])); return this.options.autoProcessQueue ? this.processQueue() : void 0 }, b.prototype.uploadFile = function (a) { return this.uploadFiles([a]) }, b.prototype.uploadFiles = function (a) { var d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, C, D, E, F, G, H, I; for (t = new XMLHttpRequest, u = 0, y = a.length; y > u; u++)d = a[u], d.xhr = t; t.open(this.options.method, this.options.url, !0), t.withCredentials = !!this.options.withCredentials, q = null, f = function (b) { return function () { var c, e, f; for (f = [], c = 0, e = a.length; e > c; c++)d = a[c], f.push(b._errorProcessing(a, q || b.options.dictResponseError.replace("{{statusCode}}", t.status), t)); return f } }(this), r = function (b) { return function (c) { var e, f, g, h, i, j, k, l, m; if (null != c) for (f = 100 * c.loaded / c.total, g = 0, j = a.length; j > g; g++)d = a[g], d.upload = { progress: f, total: c.total, bytesSent: c.loaded }; else { for (e = !0, f = 100, h = 0, k = a.length; k > h; h++)d = a[h], (100 !== d.upload.progress || d.upload.bytesSent !== d.upload.total) && (e = !1), d.upload.progress = f, d.upload.bytesSent = d.upload.total; if (e) return } for (m = [], i = 0, l = a.length; l > i; i++)d = a[i], m.push(b.emit("uploadprogress", d, f, d.upload.bytesSent)); return m } }(this), t.onload = function (c) { return function (d) { var e; if (a[0].status !== b.CANCELED && 4 === t.readyState) { if (q = t.responseText, t.getResponseHeader("content-type") && ~t.getResponseHeader("content-type").indexOf("application/json")) try { q = JSON.parse(q) } catch (g) { d = g, q = "Invalid JSON response from server." } return r(), 200 <= (e = t.status) && 300 > e ? c._finished(a, q, d) : f() } } }(this), t.onerror = function () { return function () { return a[0].status !== b.CANCELED ? f() : void 0 } }(this), p = null != (D = t.upload) ? D : t, p.onprogress = r, i = { Accept: "application/json", "Cache-Control": "no-cache", "X-Requested-With": "XMLHttpRequest" }, this.options.headers && c(i, this.options.headers); for (g in i) h = i[g], t.setRequestHeader(g, h); if (e = new FormData, this.options.params) { E = this.options.params; for (n in E) s = E[n], e.append(n, s) } for (v = 0, z = a.length; z > v; v++)d = a[v], this.emit("sending", d, t, e); if (this.options.uploadMultiple && this.emit("sendingmultiple", a, t, e), "FORM" === this.element.tagName) for (F = this.element.querySelectorAll("input, textarea, select, button"), w = 0, A = F.length; A > w; w++)if (k = F[w], l = k.getAttribute("name"), m = k.getAttribute("type"), "SELECT" === k.tagName && k.hasAttribute("multiple")) for (G = k.options, x = 0, B = G.length; B > x; x++)o = G[x], o.selected && e.append(l, o.value); else (!m || "checkbox" !== (H = m.toLowerCase()) && "radio" !== H || k.checked) && e.append(l, k.value); for (j = C = 0, I = a.length - 1; I >= 0 ? I >= C : C >= I; j = I >= 0 ? ++C : --C)e.append(this._getParamName(j), a[j], a[j].name); return t.send(e) }, b.prototype._finished = function (a, c, d) { var e, f, g; for (f = 0, g = a.length; g > f; f++)e = a[f], e.status = b.SUCCESS, this.emit("success", e, c, d), this.emit("complete", e); return this.options.uploadMultiple && (this.emit("successmultiple", a, c, d), this.emit("completemultiple", a)), this.options.autoProcessQueue ? this.processQueue() : void 0 }, b.prototype._errorProcessing = function (a, c, d) { var e, f, g; for (f = 0, g = a.length; g > f; f++)e = a[f], e.status = b.ERROR, this.emit("error", e, c, d), this.emit("complete", e); return this.options.uploadMultiple && (this.emit("errormultiple", a, c, d), this.emit("completemultiple", a)), this.options.autoProcessQueue ? this.processQueue() : void 0 }, b }(d), b.version = "3.10.2", b.options = {}, b.optionsForElement = function (a) { return a.getAttribute("id") ? b.options[e(a.getAttribute("id"))] : void 0 }, b.instances = [], b.forElement = function (a) { if ("string" == typeof a && (a = document.querySelector(a)), null == (null != a ? a.dropzone : void 0)) throw new Error("No Dropzone found for given element. This is probably because you're trying to access it before Dropzone had the time to initialize. Use the `init` option to setup any additional observers on your Dropzone."); return a.dropzone }, b.autoDiscover = !0, b.discover = function () { var a, c, d, e, f, g; for (document.querySelectorAll ? d = document.querySelectorAll(".dropzone") : (d = [], a = function (a) { var b, c, e, f; for (f = [], c = 0, e = a.length; e > c; c++)b = a[c], f.push(/(^| )dropzone($| )/.test(b.className) ? d.push(b) : void 0); return f }, a(document.getElementsByTagName("div")), a(document.getElementsByTagName("form"))), g = [], e = 0, f = d.length; f > e; e++)c = d[e], g.push(b.optionsForElement(c) !== !1 ? new b(c) : void 0); return g }, b.blacklistedBrowsers = [/opera.*Macintosh.*version\/12/i], b.isBrowserSupported = function () { var a, c, d, e, f; if (a = !0, window.File && window.FileReader && window.FileList && window.Blob && window.FormData && document.querySelector) if ("classList" in document.createElement("a")) for (f = b.blacklistedBrowsers, d = 0, e = f.length; e > d; d++)c = f[d], c.test(navigator.userAgent) && (a = !1); else a = !1; else a = !1; return a }, j = function (a, b) { var c, d, e, f; for (f = [], d = 0, e = a.length; e > d; d++)c = a[d], c !== b && f.push(c); return f }, e = function (a) { return a.replace(/[\-_](\w)/g, function (a) { return a.charAt(1).toUpperCase() }) }, b.createElement = function (a) { var b; return b = document.createElement("div"), b.innerHTML = a, b.childNodes[0] }, b.elementInside = function (a, b) { if (a === b) return !0; for (; a = a.parentNode;)if (a === b) return !0; return !1 }, b.getElement = function (a, b) { var c; if ("string" == typeof a ? c = document.querySelector(a) : null != a.nodeType && (c = a), null == c) throw new Error("Invalid `" + b + "` option provided. Please provide a CSS selector or a plain HTML element."); return c }, b.getElements = function (a, b) { var c, d, e, f, g, h, i, j; if (a instanceof Array) { e = []; try { for (f = 0, h = a.length; h > f; f++)d = a[f], e.push(this.getElement(d, b)) } catch (k) { c = k, e = null } } else if ("string" == typeof a) for (e = [], j = document.querySelectorAll(a), g = 0, i = j.length; i > g; g++)d = j[g], e.push(d); else null != a.nodeType && (e = [a]); if (null == e || !e.length) throw new Error("Invalid `" + b + "` option provided. Please provide a CSS selector, a plain HTML element or a list of those."); return e }, b.confirm = function (a, b, c) { return window.confirm(a) ? b() : null != c ? c() : void 0 }, b.isValidFile = function (a, b) { var c, d, e, f, g; if (!b) return !0; for (b = b.split(","), d = a.type, c = d.replace(/\/.*$/, ""), f = 0, g = b.length; g > f; f++)if (e = b[f], e = e.trim(), "." === e.charAt(0)) { if (-1 !== a.name.toLowerCase().indexOf(e.toLowerCase(), a.name.length - e.length)) return !0 } else if (/\/\*$/.test(e)) { if (c === e.replace(/\/.*$/, "")) return !0 } else if (d === e) return !0; return !1 }, "undefined" != typeof jQuery && null !== jQuery && (jQuery.fn.dropzone = function (a) { return this.each(function () { return new b(this, a) }) }), "undefined" != typeof c && null !== c ? c.exports = b : window.Dropzone = b, b.ADDED = "added", b.QUEUED = "queued", b.ACCEPTED = b.QUEUED, b.UPLOADING = "uploading", b.PROCESSING = b.UPLOADING, b.CANCELED = "canceled", b.ERROR = "error", b.SUCCESS = "success", g = function (a) { var b, c, d, e, f, g, h, i, j, k; for (h = a.naturalWidth, g = a.naturalHeight, c = document.createElement("canvas"), c.width = 1, c.height = g, d = c.getContext("2d"), d.drawImage(a, 0, 0), e = d.getImageData(0, 0, 1, g).data, k = 0, f = g, i = g; i > k;)b = e[4 * (i - 1) + 3], 0 === b ? f = i : k = i, i = f + k >> 1; return j = i / g, 0 === j ? 1 : j }, h = function (a, b, c, d, e, f, h, i, j, k) { var l; return l = g(b), a.drawImage(b, c, d, e, f, h, i, j, k / l) }, f = function (a, b) { var c, d, e, f, g, h, i, j, k; if (e = !1, k = !0, d = a.document, j = d.documentElement, c = d.addEventListener ? "addEventListener" : "attachEvent", i = d.addEventListener ? "removeEventListener" : "detachEvent", h = d.addEventListener ? "" : "on", f = function (c) { return "readystatechange" !== c.type || "complete" === d.readyState ? (("load" === c.type ? a : d)[i](h + c.type, f, !1), !e && (e = !0) ? b.call(a, c.type || c) : void 0) : void 0 }, g = function () { var a; try { j.doScroll("left") } catch (b) { return a = b, void setTimeout(g, 50) } return f("poll") }, "complete" !== d.readyState) { if (d.createEventObject && j.doScroll) { try { k = !a.frameElement } catch (l) { } k && g() } return d[c](h + "DOMContentLoaded", f, !1), d[c](h + "readystatechange", f, !1), a[c](h + "load", f, !1) } }, b._autoDiscoverFunction = function () { return b.autoDiscover ? b.discover() : void 0 }, f(window, b._autoDiscoverFunction) }).call(this) }), "object" == typeof exports ? module.exports = a("dropzone") : "function" == typeof define && define.amd ? define([], function () { return a("dropzone") }) : this.Dropzone = a("dropzone") }(); \ No newline at end of file diff --git a/assets/vendors/js/extensions/i18next.min.js b/assets/vendors/js/extensions/i18next.min.js new file mode 100644 index 0000000..8240249 --- /dev/null +++ b/assets/vendors/js/extensions/i18next.min.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self).i18next=t()}(this,function(){"use strict";function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(t)}function t(n){return(t="function"==typeof Symbol&&"symbol"===e(Symbol.iterator)?function(t){return e(t)}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":e(t)})(n)}function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{};o(this,e),this.init(t,n)}return a(e,[{key:"init",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.prefix=t.prefix||"i18next:",this.logger=e||g,this.options=t,this.debug=t.debug}},{key:"setDebug",value:function(e){this.debug=e}},{key:"log",value:function(){for(var e=arguments.length,t=new Array(e),n=0;n-1&&n.observers[e].splice(r,1)}else delete n.observers[e]})}},{key:"emit",value:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r-1?e.replace(/###/g,"."):e}function o(){return!e||"string"==typeof e}for(var i="string"!=typeof t?[].concat(t):t.split(".");i.length>1;){if(o())return{};var a=r(i.shift());!e[a]&&n&&(e[a]=new n),e=e[a]}return o()?{}:{obj:e,k:r(i.shift())}}function b(e,t,n){var r=m(e,t,Object);r.obj[r.k]=n}function k(e,t){var n=m(e,t),r=n.obj,o=n.k;if(r)return r[o]}function x(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}var S={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};function w(e){return"string"==typeof e?e.replace(/[&<>"'\/]/g,function(e){return S[e]}):e}var O=function(e){function t(e){var n,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{ns:["translation"],defaultNS:"translation"};return o(this,t),n=u(this,l(t).call(this)),d.call(s(n)),n.data=e||{},n.options=r,void 0===n.options.keySeparator&&(n.options.keySeparator="."),n}return f(t,d),a(t,[{key:"addNamespaces",value:function(e){this.options.ns.indexOf(e)<0&&this.options.ns.push(e)}},{key:"removeNamespaces",value:function(e){var t=this.options.ns.indexOf(e);t>-1&&this.options.ns.splice(t,1)}},{key:"getResource",value:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=void 0!==r.keySeparator?r.keySeparator:this.options.keySeparator,i=[e,t];return n&&"string"!=typeof n&&(i=i.concat(n)),n&&"string"==typeof n&&(i=i.concat(o?n.split(o):n)),e.indexOf(".")>-1&&(i=e.split(".")),k(this.data,i)}},{key:"addResource",value:function(e,t,n,r){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{silent:!1},i=this.options.keySeparator;void 0===i&&(i=".");var a=[e,t];n&&(a=a.concat(i?n.split(i):n)),e.indexOf(".")>-1&&(r=t,t=(a=e.split("."))[1]),this.addNamespaces(t),b(this.data,a,r),o.silent||this.emit("added",e,t,n,r)}},{key:"addResources",value:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{silent:!1};for(var o in n)"string"!=typeof n[o]&&"[object Array]"!==Object.prototype.toString.apply(n[o])||this.addResource(e,t,o,n[o],{silent:!0});r.silent||this.emit("added",e,t,n)}},{key:"addResourceBundle",value:function(e,t,n,o,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{silent:!1},s=[e,t];e.indexOf(".")>-1&&(o=n,n=t,t=(s=e.split("."))[1]),this.addNamespaces(t);var u=k(this.data,s)||{};o?function e(t,n,r){for(var o in n)o in t?"string"==typeof t[o]||t[o]instanceof String||"string"==typeof n[o]||n[o]instanceof String?r&&(t[o]=n[o]):e(t[o],n[o],r):t[o]=n[o];return t}(u,n,i):u=r({},u,n),b(this.data,s,u),a.silent||this.emit("added",e,t,n)}},{key:"removeResourceBundle",value:function(e,t){this.hasResourceBundle(e,t)&&delete this.data[e][t],this.removeNamespaces(t),this.emit("removed",e,t)}},{key:"hasResourceBundle",value:function(e,t){return void 0!==this.getResource(e,t)}},{key:"getResourceBundle",value:function(e,t){return t||(t=this.options.defaultNS),"v1"===this.options.compatibilityAPI?r({},{},this.getResource(e,t)):this.getResource(e,t)}},{key:"getDataByLanguage",value:function(e){return this.data[e]}},{key:"toJSON",value:function(){return this.data}}]),t}(),R={processors:{},addPostProcessor:function(e){this.processors[e.name]=e},handle:function(e,t,n,r,o){var i=this;return e.forEach(function(e){i.processors[e]&&(t=i.processors[e].process(t,n,r,o))}),t}},j=function(e){function n(e){var t,r,i,a,c=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return o(this,n),t=u(this,l(n).call(this)),d.call(s(t)),r=["resourceStore","languageUtils","pluralResolver","interpolator","backendConnector","i18nFormat"],i=e,a=s(t),r.forEach(function(e){i[e]&&(a[e]=i[e])}),t.options=c,void 0===t.options.keySeparator&&(t.options.keySeparator="."),t.logger=h.create("translator"),t}return f(n,d),a(n,[{key:"changeLanguage",value:function(e){e&&(this.language=e)}},{key:"exists",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{interpolation:{}},n=this.resolve(e,t);return n&&void 0!==n.res}},{key:"extractFromKey",value:function(e,t){var n=t.nsSeparator||this.options.nsSeparator;void 0===n&&(n=":");var r=void 0!==t.keySeparator?t.keySeparator:this.options.keySeparator,o=t.ns||this.options.defaultNS;if(n&&e.indexOf(n)>-1){var i=e.split(n);(n!==r||n===r&&this.options.ns.indexOf(i[0])>-1)&&(o=i.shift()),e=i.join(r)}return"string"==typeof o&&(o=[o]),{key:e,namespaces:o}}},{key:"translate",value:function(e,n){var o=this;if("object"!==t(n)&&this.options.overloadTranslationOptionHandler&&(n=this.options.overloadTranslationOptionHandler(arguments)),n||(n={}),null==e)return"";Array.isArray(e)||(e=[String(e)]);var i=void 0!==n.keySeparator?n.keySeparator:this.options.keySeparator,a=this.extractFromKey(e[e.length-1],n),s=a.key,u=a.namespaces,l=u[u.length-1],c=n.lng||this.language,f=n.appendNamespaceToCIMode||this.options.appendNamespaceToCIMode;if(c&&"cimode"===c.toLowerCase()){if(f){var p=n.nsSeparator||this.options.nsSeparator;return l+p+s}return s}var g=this.resolve(e,n),h=g&&g.res,d=g&&g.usedKey||s,v=g&&g.exactUsedKey||s,y=Object.prototype.toString.apply(h),m=void 0!==n.joinArrays?n.joinArrays:this.options.joinArrays,b=!this.i18nFormat||this.i18nFormat.handleAsObject;if(b&&h&&("string"!=typeof h&&"boolean"!=typeof h&&"number"!=typeof h)&&["[object Number]","[object Function]","[object RegExp]"].indexOf(y)<0&&("string"!=typeof m||"[object Array]"!==y)){if(!n.returnObjects&&!this.options.returnObjects)return this.logger.warn("accessing an object - but returnObjects options is not enabled!"),this.options.returnedObjectHandler?this.options.returnedObjectHandler(d,h,n):"key '".concat(s," (").concat(this.language,")' returned an object instead of string.");if(i){var k="[object Array]"===y,x=k?[]:{},S=k?v:d;for(var w in h)if(Object.prototype.hasOwnProperty.call(h,w)){var O="".concat(S).concat(i).concat(w);x[w]=this.translate(O,r({},n,{joinArrays:!1,ns:u})),x[w]===O&&(x[w]=h[w])}h=x}}else if(b&&"string"==typeof m&&"[object Array]"===y)(h=h.join(m))&&(h=this.extendTranslation(h,e,n));else{var R=!1,j=!1;if(!this.isValidLookup(h)&&void 0!==n.defaultValue){if(R=!0,void 0!==n.count){var L=this.pluralResolver.getSuffix(c,n.count);h=n["defaultValue".concat(L)]}h||(h=n.defaultValue)}this.isValidLookup(h)||(j=!0,h=s);var N=n.defaultValue&&n.defaultValue!==h&&this.options.updateMissing;if(j||R||N){this.logger.log(N?"updateKey":"missingKey",c,l,s,N?n.defaultValue:h);var C=[],E=this.languageUtils.getFallbackCodes(this.options.fallbackLng,n.lng||this.language);if("fallback"===this.options.saveMissingTo&&E&&E[0])for(var P=0;P1&&void 0!==arguments[1]?arguments[1]:{};return"string"==typeof e&&(e=[e]),e.forEach(function(e){if(!a.isValidLookup(t)){var u=a.extractFromKey(e,s),l=u.key;n=l;var c=u.namespaces;a.options.fallbackNS&&(c=c.concat(a.options.fallbackNS));var f=void 0!==s.count&&"string"!=typeof s.count,p=void 0!==s.context&&"string"==typeof s.context&&""!==s.context,g=s.lngs?s.lngs:a.languageUtils.toResolveHierarchy(s.lng||a.language,s.fallbackLng);c.forEach(function(e){a.isValidLookup(t)||(i=e,g.forEach(function(n){if(!a.isValidLookup(t)){o=n;var i,u,c=l,g=[c];if(a.i18nFormat&&a.i18nFormat.addLookupKeys)a.i18nFormat.addLookupKeys(g,l,n,e,s);else f&&(i=a.pluralResolver.getSuffix(n,s.count)),f&&p&&g.push(c+i),p&&g.push(c+="".concat(a.options.contextSeparator).concat(s.context)),f&&g.push(c+=i);for(;u=g.pop();)a.isValidLookup(t)||(r=u,t=a.getResource(n,e,u,s))}}))})}}),{res:t,usedKey:n,exactUsedKey:r,usedLng:o,usedNS:i}}},{key:"isValidLookup",value:function(e){return!(void 0===e||!this.options.returnNull&&null===e||!this.options.returnEmptyString&&""===e)}},{key:"getResource",value:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};return this.i18nFormat&&this.i18nFormat.getResource?this.i18nFormat.getResource(e,t,n,r):this.resourceStore.getResource(e,t,n,r)}}]),n}();function L(e){return e.charAt(0).toUpperCase()+e.slice(1)}var N=function(){function e(t){o(this,e),this.options=t,this.whitelist=this.options.whitelist||!1,this.logger=h.create("languageUtils")}return a(e,[{key:"getScriptPartFromCode",value:function(e){if(!e||e.indexOf("-")<0)return null;var t=e.split("-");return 2===t.length?null:(t.pop(),this.formatLanguageCode(t.join("-")))}},{key:"getLanguagePartFromCode",value:function(e){if(!e||e.indexOf("-")<0)return e;var t=e.split("-");return this.formatLanguageCode(t[0])}},{key:"formatLanguageCode",value:function(e){if("string"==typeof e&&e.indexOf("-")>-1){var t=["hans","hant","latn","cyrl","cans","mong","arab"],n=e.split("-");return this.options.lowerCaseLng?n=n.map(function(e){return e.toLowerCase()}):2===n.length?(n[0]=n[0].toLowerCase(),n[1]=n[1].toUpperCase(),t.indexOf(n[1].toLowerCase())>-1&&(n[1]=L(n[1].toLowerCase()))):3===n.length&&(n[0]=n[0].toLowerCase(),2===n[1].length&&(n[1]=n[1].toUpperCase()),"sgn"!==n[0]&&2===n[2].length&&(n[2]=n[2].toUpperCase()),t.indexOf(n[1].toLowerCase())>-1&&(n[1]=L(n[1].toLowerCase())),t.indexOf(n[2].toLowerCase())>-1&&(n[2]=L(n[2].toLowerCase()))),n.join("-")}return this.options.cleanCode||this.options.lowerCaseLng?e.toLowerCase():e}},{key:"isWhitelisted",value:function(e){return("languageOnly"===this.options.load||this.options.nonExplicitWhitelist)&&(e=this.getLanguagePartFromCode(e)),!this.whitelist||!this.whitelist.length||this.whitelist.indexOf(e)>-1}},{key:"getFallbackCodes",value:function(e,t){if(!e)return[];if("string"==typeof e&&(e=[e]),"[object Array]"===Object.prototype.toString.apply(e))return e;if(!t)return e.default||[];var n=e[t];return n||(n=e[this.getScriptPartFromCode(t)]),n||(n=e[this.formatLanguageCode(t)]),n||(n=e.default),n||[]}},{key:"toResolveHierarchy",value:function(e,t){var n=this,r=this.getFallbackCodes(t||this.options.fallbackLng||[],e),o=[],i=function(e){e&&(n.isWhitelisted(e)?o.push(e):n.logger.warn("rejecting non-whitelisted language code: ".concat(e)))};return"string"==typeof e&&e.indexOf("-")>-1?("languageOnly"!==this.options.load&&i(this.formatLanguageCode(e)),"languageOnly"!==this.options.load&&"currentOnly"!==this.options.load&&i(this.getScriptPartFromCode(e)),"currentOnly"!==this.options.load&&i(this.getLanguagePartFromCode(e))):"string"==typeof e&&i(this.formatLanguageCode(e)),r.forEach(function(e){o.indexOf(e)<0&&i(n.formatLanguageCode(e))}),o}}]),e}(),C=[{lngs:["ach","ak","am","arn","br","fil","gun","ln","mfe","mg","mi","oc","pt","pt-BR","tg","ti","tr","uz","wa"],nr:[1,2],fc:1},{lngs:["af","an","ast","az","bg","bn","ca","da","de","dev","el","en","eo","es","et","eu","fi","fo","fur","fy","gl","gu","ha","hi","hu","hy","ia","it","kn","ku","lb","mai","ml","mn","mr","nah","nap","nb","ne","nl","nn","no","nso","pa","pap","pms","ps","pt-PT","rm","sco","se","si","so","son","sq","sv","sw","ta","te","tk","ur","yo"],nr:[1,2],fc:2},{lngs:["ay","bo","cgg","fa","id","ja","jbo","ka","kk","km","ko","ky","lo","ms","sah","su","th","tt","ug","vi","wo","zh"],nr:[1],fc:3},{lngs:["be","bs","cnr","dz","hr","ru","sr","uk"],nr:[1,2,5],fc:4},{lngs:["ar"],nr:[0,1,2,3,11,100],fc:5},{lngs:["cs","sk"],nr:[1,2,5],fc:6},{lngs:["csb","pl"],nr:[1,2,5],fc:7},{lngs:["cy"],nr:[1,2,3,8],fc:8},{lngs:["fr"],nr:[1,2],fc:9},{lngs:["ga"],nr:[1,2,3,7,11],fc:10},{lngs:["gd"],nr:[1,2,3,20],fc:11},{lngs:["is"],nr:[1,2],fc:12},{lngs:["jv"],nr:[0,1],fc:13},{lngs:["kw"],nr:[1,2,3,4],fc:14},{lngs:["lt"],nr:[1,2,10],fc:15},{lngs:["lv"],nr:[1,2,0],fc:16},{lngs:["mk"],nr:[1,2],fc:17},{lngs:["mnk"],nr:[0,1,2],fc:18},{lngs:["mt"],nr:[1,2,11,20],fc:19},{lngs:["or"],nr:[2,1],fc:2},{lngs:["ro"],nr:[1,2,20],fc:20},{lngs:["sl"],nr:[5,1,2,3],fc:21},{lngs:["he"],nr:[1,2,20,21],fc:22}],E={1:function(e){return Number(e>1)},2:function(e){return Number(1!=e)},3:function(e){return 0},4:function(e){return Number(e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2)},5:function(e){return Number(0===e?0:1==e?1:2==e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5)},6:function(e){return Number(1==e?0:e>=2&&e<=4?1:2)},7:function(e){return Number(1==e?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2)},8:function(e){return Number(1==e?0:2==e?1:8!=e&&11!=e?2:3)},9:function(e){return Number(e>=2)},10:function(e){return Number(1==e?0:2==e?1:e<7?2:e<11?3:4)},11:function(e){return Number(1==e||11==e?0:2==e||12==e?1:e>2&&e<20?2:3)},12:function(e){return Number(e%10!=1||e%100==11)},13:function(e){return Number(0!==e)},14:function(e){return Number(1==e?0:2==e?1:3==e?2:3)},15:function(e){return Number(e%10==1&&e%100!=11?0:e%10>=2&&(e%100<10||e%100>=20)?1:2)},16:function(e){return Number(e%10==1&&e%100!=11?0:0!==e?1:2)},17:function(e){return Number(1==e||e%10==1?0:1)},18:function(e){return Number(0==e?0:1==e?1:2)},19:function(e){return Number(1==e?0:0===e||e%100>1&&e%100<11?1:e%100>10&&e%100<20?2:3)},20:function(e){return Number(1==e?0:0===e||e%100>0&&e%100<20?1:2)},21:function(e){return Number(e%100==1?1:e%100==2?2:e%100==3||e%100==4?3:0)},22:function(e){return Number(1===e?0:2===e?1:(e<0||e>10)&&e%10==0?2:3)}};var P=function(){function e(t){var n,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};o(this,e),this.languageUtils=t,this.options=r,this.logger=h.create("pluralResolver"),this.rules=(n={},C.forEach(function(e){e.lngs.forEach(function(t){n[t]={numbers:e.nr,plurals:E[e.fc]}})}),n)}return a(e,[{key:"addRule",value:function(e,t){this.rules[e]=t}},{key:"getRule",value:function(e){return this.rules[e]||this.rules[this.languageUtils.getLanguagePartFromCode(e)]}},{key:"needsPlural",value:function(e){var t=this.getRule(e);return t&&t.numbers.length>1}},{key:"getPluralFormsOfKey",value:function(e,t){var n=this,r=[],o=this.getRule(e);return o?(o.numbers.forEach(function(o){var i=n.getSuffix(e,o);r.push("".concat(t).concat(i))}),r):r}},{key:"getSuffix",value:function(e,t){var n=this,r=this.getRule(e);if(r){var o=r.noAbs?r.plurals(t):r.plurals(Math.abs(t)),i=r.numbers[o];this.options.simplifyPluralSuffix&&2===r.numbers.length&&1===r.numbers[0]&&(2===i?i="plural":1===i&&(i=""));var a=function(){return n.options.prepend&&i.toString()?n.options.prepend+i.toString():i.toString()};return"v1"===this.options.compatibilityJSON?1===i?"":"number"==typeof i?"_plural_".concat(i.toString()):a():"v2"===this.options.compatibilityJSON?a():this.options.simplifyPluralSuffix&&2===r.numbers.length&&1===r.numbers[0]?a():this.options.prepend&&o.toString()?this.options.prepend+o.toString():o.toString()}return this.logger.warn("no plural rule found for: ".concat(e)),""}}]),e}(),F=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};o(this,e),this.logger=h.create("interpolator"),this.options=t,this.format=t.interpolation&&t.interpolation.format||function(e){return e},this.init(t)}return a(e,[{key:"init",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};e.interpolation||(e.interpolation={escapeValue:!0});var t=e.interpolation;this.escape=void 0!==t.escape?t.escape:w,this.escapeValue=void 0===t.escapeValue||t.escapeValue,this.useRawValueToEscape=void 0!==t.useRawValueToEscape&&t.useRawValueToEscape,this.prefix=t.prefix?x(t.prefix):t.prefixEscaped||"{{",this.suffix=t.suffix?x(t.suffix):t.suffixEscaped||"}}",this.formatSeparator=t.formatSeparator?t.formatSeparator:t.formatSeparator||",",this.unescapePrefix=t.unescapeSuffix?"":t.unescapePrefix||"-",this.unescapeSuffix=this.unescapePrefix?"":t.unescapeSuffix||"",this.nestingPrefix=t.nestingPrefix?x(t.nestingPrefix):t.nestingPrefixEscaped||x("$t("),this.nestingSuffix=t.nestingSuffix?x(t.nestingSuffix):t.nestingSuffixEscaped||x(")"),this.maxReplaces=t.maxReplaces?t.maxReplaces:1e3,this.resetRegExp()}},{key:"reset",value:function(){this.options&&this.init(this.options)}},{key:"resetRegExp",value:function(){var e="".concat(this.prefix,"(.+?)").concat(this.suffix);this.regexp=new RegExp(e,"g");var t="".concat(this.prefix).concat(this.unescapePrefix,"(.+?)").concat(this.unescapeSuffix).concat(this.suffix);this.regexpUnescape=new RegExp(t,"g");var n="".concat(this.nestingPrefix,"(.+?)").concat(this.nestingSuffix);this.nestingRegexp=new RegExp(n,"g")}},{key:"interpolate",value:function(e,t,n,o){var i,a,s,u=this,l=r({},this.options&&this.options.interpolation&&this.options.interpolation.defaultVariables||{},t);function c(e){return e.replace(/\$/g,"$$$$")}var f=function(e){if(e.indexOf(u.formatSeparator)<0)return k(l,e);var t=e.split(u.formatSeparator),r=t.shift().trim(),o=t.join(u.formatSeparator).trim();return u.format(k(l,r),o,n)};this.resetRegExp();var p=o&&o.missingInterpolationHandler||this.options.missingInterpolationHandler;for(s=0;i=this.regexpUnescape.exec(e);){if(void 0===(a=f(i[1].trim())))if("function"==typeof p){var g=p(e,i,o);a="string"==typeof g?g:""}else this.logger.warn("missed to pass in variable ".concat(i[1]," for interpolating ").concat(e)),a="";else"string"==typeof a||this.useRawValueToEscape||(a=y(a));if(e=e.replace(i[0],c(a)),this.regexpUnescape.lastIndex=0,++s>=this.maxReplaces)break}for(s=0;i=this.regexp.exec(e);){if(void 0===(a=f(i[1].trim())))if("function"==typeof p){var h=p(e,i,o);a="string"==typeof h?h:""}else this.logger.warn("missed to pass in variable ".concat(i[1]," for interpolating ").concat(e)),a="";else"string"==typeof a||this.useRawValueToEscape||(a=y(a));if(a=this.escapeValue?c(this.escape(a)):c(a),e=e.replace(i[0],a),this.regexp.lastIndex=0,++s>=this.maxReplaces)break}return e}},{key:"nest",value:function(e,t){var n,o,i=r({},arguments.length>2&&void 0!==arguments[2]?arguments[2]:{});function a(e,t){if(e.indexOf(",")<0)return e;var n=e.split(",");e=n.shift();var o=n.join(",");o=(o=this.interpolate(o,i)).replace(/'/g,'"');try{i=JSON.parse(o),t&&(i=r({},t,i))}catch(t){this.logger.error("failed parsing options string in nesting for key ".concat(e),t)}return e}for(i.applyPostProcessor=!1;n=this.nestingRegexp.exec(e);){if((o=t(a.call(this,n[1].trim(),i),i))&&n[0]===e&&"string"!=typeof o)return o;"string"!=typeof o&&(o=y(o)),o||(this.logger.warn("missed to resolve ".concat(n[1]," for nesting ").concat(e)),o=""),e=e.replace(n[0],o),this.regexp.lastIndex=0}return e}}]),e}();function A(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=[],r=!0,o=!1,i=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==s.return||s.return()}finally{if(o)throw i}}return n}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}var T=function(e){function t(e,n,r){var i,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};return o(this,t),i=u(this,l(t).call(this)),d.call(s(i)),i.backend=e,i.store=n,i.languageUtils=r.languageUtils,i.options=a,i.logger=h.create("backendConnector"),i.state={},i.queue=[],i.backend&&i.backend.init&&i.backend.init(r,a.backend,a),i}return f(t,d),a(t,[{key:"queueLoad",value:function(e,t,n,r){var o=this,i=[],a=[],s=[],u=[];return e.forEach(function(e){var r=!0;t.forEach(function(t){var s="".concat(e,"|").concat(t);!n.reload&&o.store.hasResourceBundle(e,t)?o.state[s]=2:o.state[s]<0||(1===o.state[s]?a.indexOf(s)<0&&a.push(s):(o.state[s]=1,r=!1,a.indexOf(s)<0&&a.push(s),i.indexOf(s)<0&&i.push(s),u.indexOf(t)<0&&u.push(t)))}),r||s.push(e)}),(i.length||a.length)&&this.queue.push({pending:a,loaded:{},errors:[],callback:r}),{toLoad:i,pending:a,toLoadLanguages:s,toLoadNamespaces:u}}},{key:"loaded",value:function(e,t,n){var r=A(e.split("|"),2),o=r[0],i=r[1];t&&this.emit("failedLoading",o,i,t),n&&this.store.addResourceBundle(o,i,n),this.state[e]=t?-1:2;var a={};this.queue.forEach(function(n){var r,s,u,l,c,f;r=n.loaded,s=i,l=m(r,[o],Object),c=l.obj,f=l.k,c[f]=c[f]||[],u&&(c[f]=c[f].concat(s)),u||c[f].push(s),function(e,t){for(var n=e.indexOf(t);-1!==n;)e.splice(n,1),n=e.indexOf(t)}(n.pending,e),t&&n.errors.push(t),0!==n.pending.length||n.done||(Object.keys(n.loaded).forEach(function(e){a[e]||(a[e]=[]),n.loaded[e].length&&n.loaded[e].forEach(function(t){a[e].indexOf(t)<0&&a[e].push(t)})}),n.done=!0,n.errors.length?n.callback(n.errors):n.callback())}),this.emit("loaded",a),this.queue=this.queue.filter(function(e){return!e.done})}},{key:"read",value:function(e,t,n){var r=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:250,a=arguments.length>5?arguments[5]:void 0;return e.length?this.backend[n](e,t,function(s,u){s&&u&&o<5?setTimeout(function(){r.read.call(r,e,t,n,o+1,2*i,a)},i):a(s,u)}):a(null,{})}},{key:"prepareLoading",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=arguments.length>3?arguments[3]:void 0;if(!this.backend)return this.logger.warn("No backend was added via i18next.use. Will not load resources."),o&&o();"string"==typeof e&&(e=this.languageUtils.toResolveHierarchy(e)),"string"==typeof t&&(t=[t]);var i=this.queueLoad(e,t,r,o);if(!i.toLoad.length)return i.pending.length||o(),null;i.toLoad.forEach(function(e){n.loadOne(e)})}},{key:"load",value:function(e,t,n){this.prepareLoading(e,t,{},n)}},{key:"reload",value:function(e,t,n){this.prepareLoading(e,t,{reload:!0},n)}},{key:"loadOne",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",r=A(e.split("|"),2),o=r[0],i=r[1];this.read(o,i,"read",null,null,function(r,a){r&&t.logger.warn("".concat(n,"loading namespace ").concat(i," for language ").concat(o," failed"),r),!r&&a&&t.logger.log("".concat(n,"loaded namespace ").concat(i," for language ").concat(o),a),t.loaded(e,r,a)})}},{key:"saveMissing",value:function(e,t,n,o,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};this.backend&&this.backend.create&&this.backend.create(e,t,n,o,null,r({},a,{isUpdate:i})),e&&e[0]&&this.store.addResource(e[0],t,n,o)}}]),t}();function V(e){return"string"==typeof e.ns&&(e.ns=[e.ns]),"string"==typeof e.fallbackLng&&(e.fallbackLng=[e.fallbackLng]),"string"==typeof e.fallbackNS&&(e.fallbackNS=[e.fallbackNS]),e.whitelist&&e.whitelist.indexOf("cimode")<0&&(e.whitelist=e.whitelist.concat(["cimode"])),e}function U(){}return new(function(e){function n(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=arguments.length>1?arguments[1]:void 0;if(o(this,n),e=u(this,l(n).call(this)),d.call(s(e)),e.options=V(t),e.services={},e.logger=h,e.modules={external:[]},r&&!e.isInitialized&&!t.isClone){if(!e.options.initImmediate)return e.init(t,r),u(e,s(e));setTimeout(function(){e.init(t,r)},0)}return e}return f(n,d),a(n,[{key:"init",value:function(){var e=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1?arguments[1]:void 0;function i(e){return e?"function"==typeof e?new e:e:null}if("function"==typeof n&&(o=n,n={}),this.options=r({},{debug:!1,initImmediate:!0,ns:["translation"],defaultNS:["translation"],fallbackLng:["dev"],fallbackNS:!1,whitelist:!1,nonExplicitWhitelist:!1,load:"all",preload:!1,simplifyPluralSuffix:!0,keySeparator:".",nsSeparator:":",pluralSeparator:"_",contextSeparator:"_",partialBundledLanguages:!1,saveMissing:!1,updateMissing:!1,saveMissingTo:"fallback",saveMissingPlurals:!0,missingKeyHandler:!1,missingInterpolationHandler:!1,postProcess:!1,returnNull:!0,returnEmptyString:!0,returnObjects:!1,joinArrays:!1,returnedObjectHandler:!1,parseMissingKeyHandler:!1,appendNamespaceToMissingKey:!1,appendNamespaceToCIMode:!1,overloadTranslationOptionHandler:function(e){var n={};if("object"===t(e[1])&&(n=e[1]),"string"==typeof e[1]&&(n.defaultValue=e[1]),"string"==typeof e[2]&&(n.tDescription=e[2]),"object"===t(e[2])||"object"===t(e[3])){var r=e[3]||e[2];Object.keys(r).forEach(function(e){n[e]=r[e]})}return n},interpolation:{escapeValue:!0,format:function(e,t,n){return e},prefix:"{{",suffix:"}}",formatSeparator:",",unescapePrefix:"-",nestingPrefix:"$t(",nestingSuffix:")",maxReplaces:1e3}},this.options,V(n)),this.format=this.options.interpolation.format,o||(o=U),!this.options.isClone){this.modules.logger?h.init(i(this.modules.logger),this.options):h.init(null,this.options);var a=new N(this.options);this.store=new O(this.options.resources,this.options);var s=this.services;s.logger=h,s.resourceStore=this.store,s.languageUtils=a,s.pluralResolver=new P(a,{prepend:this.options.pluralSeparator,compatibilityJSON:this.options.compatibilityJSON,simplifyPluralSuffix:this.options.simplifyPluralSuffix}),s.interpolator=new F(this.options),s.backendConnector=new T(i(this.modules.backend),s.resourceStore,s,this.options),s.backendConnector.on("*",function(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o1?n-1:0),o=1;o0&&void 0!==arguments[0]?arguments[0]:U;if(!this.options.resources||this.options.partialBundledLanguages){if(this.language&&"cimode"===this.language.toLowerCase())return t();var n=[],r=function(t){t&&e.services.languageUtils.toResolveHierarchy(t).forEach(function(e){n.indexOf(e)<0&&n.push(e)})};if(this.language)r(this.language);else this.services.languageUtils.getFallbackCodes(this.options.fallbackLng).forEach(function(e){return r(e)});this.options.preload&&this.options.preload.forEach(function(e){return r(e)}),this.services.backendConnector.load(n,this.options.ns,t)}else t(null)}},{key:"reloadResources",value:function(e,t,n){var r=v();return e||(e=this.languages),t||(t=this.options.ns),n||(n=U),this.services.backendConnector.reload(e,t,function(e){r.resolve(),n(e)}),r}},{key:"use",value:function(e){return"backend"===e.type&&(this.modules.backend=e),("logger"===e.type||e.log&&e.warn&&e.error)&&(this.modules.logger=e),"languageDetector"===e.type&&(this.modules.languageDetector=e),"i18nFormat"===e.type&&(this.modules.i18nFormat=e),"postProcessor"===e.type&&R.addPostProcessor(e),"3rdParty"===e.type&&this.modules.external.push(e),this}},{key:"changeLanguage",value:function(e,t){var n=this,r=v();this.emit("languageChanging",e);var o=function(e){e&&(n.language=e,n.languages=n.services.languageUtils.toResolveHierarchy(e),n.translator.language||n.translator.changeLanguage(e),n.services.languageDetector&&n.services.languageDetector.cacheUserLanguage(e)),n.loadResources(function(o){!function(e,o){n.translator.changeLanguage(o),o&&(n.emit("languageChanged",o),n.logger.log("languageChanged",o)),r.resolve(function(){return n.t.apply(n,arguments)}),t&&t(e,function(){return n.t.apply(n,arguments)})}(o,e)})};return e||!this.services.languageDetector||this.services.languageDetector.async?!e&&this.services.languageDetector&&this.services.languageDetector.async?this.services.languageDetector.detect(o):o(e):o(this.services.languageDetector.detect()),r}},{key:"getFixedT",value:function(e,n){var o=this,i=function e(n,i){var a;if("object"!==t(i)){for(var s=arguments.length,u=new Array(s>2?s-2:0),l=2;l0?this.languages[0]:this.language),!e)return"rtl";return["ar","shu","sqr","ssh","xaa","yhd","yud","aao","abh","abv","acm","acq","acw","acx","acy","adf","ads","aeb","aec","afb","ajp","apc","apd","arb","arq","ars","ary","arz","auz","avl","ayh","ayl","ayn","ayp","bbz","pga","he","iw","ps","pbt","pbu","pst","prp","prd","ur","ydd","yds","yih","ji","yi","hbo","men","xmn","fa","jpr","peo","pes","prs","dv","sam"].indexOf(this.services.languageUtils.getLanguagePartFromCode(e))>=0?"rtl":"ltr"}},{key:"createInstance",value:function(){return new n(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},arguments.length>1?arguments[1]:void 0)}},{key:"cloneInstance",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:U,i=r({},this.options,t,{isClone:!0}),a=new n(i);return["store","services","language"].forEach(function(t){a[t]=e[t]}),a.translator=new j(a.services,a.options),a.translator.on("*",function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r0){var r=n[a].substring(0,i);r===e.lookupQuerystring&&(o=n[a].substring(i+1))}}return o}},l=void 0;try{l="undefined"!==window&&null!==window.localStorage;window.localStorage.setItem("i18next.translate.boo","foo"),window.localStorage.removeItem("i18next.translate.boo")}catch(e){l=!1}var s={name:"localStorage",lookup:function(e){var o=void 0;if(e.lookupLocalStorage&&l){var t=window.localStorage.getItem(e.lookupLocalStorage);t&&(o=t)}return o},cacheUserLanguage:function(e,o){o.lookupLocalStorage&&l&&window.localStorage.setItem(o.lookupLocalStorage,e)}},d={name:"navigator",lookup:function(e){var o=[];if("undefined"!=typeof navigator){if(navigator.languages)for(var t=0;t0?o:void 0}},f={name:"htmlTag",lookup:function(e){var o=void 0,t=e.htmlTag||("undefined"!=typeof document?document.documentElement:null);return t&&"function"==typeof t.getAttribute&&(o=t.getAttribute("lang")),o}},g={name:"path",lookup:function(e){var o=void 0;if("undefined"!=typeof window){var t=window.location.pathname.match(/\/([a-zA-Z-]*)/g);if(t instanceof Array)if("number"==typeof e.lookupFromPathIndex){if("string"!=typeof t[e.lookupFromPathIndex])return;o=t[e.lookupFromPathIndex].replace("/","")}else o=t[0].replace("/","")}return o}},p={name:"subdomain",lookup:function(e){var o=void 0;if("undefined"!=typeof window){var t=window.location.href.match(/(?:http[s]*\:\/\/)*(.*?)\.(?=[^\/]*\..{2,5})/gi);t instanceof Array&&(o="number"==typeof e.lookupFromSubdomainIndex?t[e.lookupFromSubdomainIndex].replace("http://","").replace("https://","").replace(".",""):t[0].replace("http://","").replace("https://","").replace(".",""))}return o}},h=function(){function e(e,o){for(var t=0;t1&&void 0!==arguments[1]?arguments[1]:{};o(this,n),this.type="languageDetector",this.detectors={},this.init(e,t)}return h(n,[{key:"init",value:function(o){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.services=o,this.options=e(n,this.options||{},t()),this.options.lookupFromUrlIndex&&(this.options.lookupFromPathIndex=this.options.lookupFromUrlIndex),this.i18nOptions=a,this.addDetector(u),this.addDetector(c),this.addDetector(s),this.addDetector(d),this.addDetector(f),this.addDetector(g),this.addDetector(p)}},{key:"addDetector",value:function(e){this.detectors[e.name]=e}},{key:"detect",value:function(e){var o=this;e||(e=this.options.order);var t=[];e.forEach(function(e){if(o.detectors[e]){var n=o.detectors[e].lookup(o.options);n&&"string"==typeof n&&(n=[n]),n&&(t=t.concat(n))}});var n=void 0;if(t.forEach(function(e){if(!n){var t=o.services.languageUtils.formatLanguageCode(e);o.services.languageUtils.isWhitelisted(t)&&(n=t)}}),!n){var a=this.i18nOptions.fallbackLng;"string"==typeof a&&(a=[a]),a||(a=[]),n="[object Array]"===Object.prototype.toString.apply(a)?a[0]:a[0]||a.default&&a.default[0]}return n}},{key:"cacheUserLanguage",value:function(e,o){var t=this;o||(o=this.options.caches),o&&(this.options.excludeCacheFor&&this.options.excludeCacheFor.indexOf(e)>-1||o.forEach(function(o){t.detectors[o]&&t.detectors[o].cacheUserLanguage(e,t.options)}))}}]),n}();return v.type="languageDetector",v}); diff --git a/assets/vendors/js/extensions/i18nextXHRBackend.min.js b/assets/vendors/js/extensions/i18nextXHRBackend.min.js new file mode 100644 index 0000000..e901b3e --- /dev/null +++ b/assets/vendors/js/extensions/i18nextXHRBackend.min.js @@ -0,0 +1 @@ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t=t||self).i18nextXHRBackend=e()}(this,function(){"use strict";function t(t,e){for(var n=0;n3&&n&&n(r.responseText,r)},r.send(o)}catch(t){console&&console.log(t)}}function u(){return{loadPath:"/locales/{{lng}}/{{ns}}.json",addPath:"/locales/add/{{lng}}/{{ns}}",allowMultiLoading:!1,parse:JSON.parse,parsePayload:function(t,e,n){return function(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}({},e,n||"")},crossDomain:!1,ajax:l}}var c=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),this.init(t,n),this.type="backend"}var n,o,r;return n=e,(o=[{key:"init",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.services=t,this.options=i(e,this.options||{},u())}},{key:"readMulti",value:function(t,e,n){var o=this.options.loadPath;"function"==typeof this.options.loadPath&&(o=this.options.loadPath(t,e));var i=this.services.interpolator.interpolate(o,{lng:t.join("+"),ns:e.join("+")});this.loadUrl(i,n)}},{key:"read",value:function(t,e,n){var o=this.options.loadPath;"function"==typeof this.options.loadPath&&(o=this.options.loadPath([t],[e]));var i=this.services.interpolator.interpolate(o,{lng:t,ns:e});this.loadUrl(i,n)}},{key:"loadUrl",value:function(t,e){var n=this;this.options.ajax(t,this.options,function(o,i){if(i.status>=500&&i.status<600)return e("failed loading "+t,!0);if(i.status>=400&&i.status<500)return e("failed loading "+t,!1);var r,a;try{r=n.options.parse(o,t)}catch(e){a="failed parsing "+t+" to json"}if(a)return e(a,!1);e(null,r)})}},{key:"create",value:function(t,e,n,o){var i=this;"string"==typeof t&&(t=[t]);var r=this.options.parsePayload(e,n,o);t.forEach(function(t){var n=i.services.interpolator.interpolate(i.options.addPath,{lng:t,ns:e});i.options.ajax(n,i.options,function(t,e){},r)})}}])&&t(n.prototype,o),r&&t(n,r),e}();return c.type="backend",c}); diff --git a/assets/vendors/js/extensions/jquery-i18next.min.js b/assets/vendors/js/extensions/jquery-i18next.min.js new file mode 100644 index 0000000..d4f95cb --- /dev/null +++ b/assets/vendors/js/extensions/jquery-i18next.min.js @@ -0,0 +1 @@ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.jqueryI18next=e()}(this,function(){"use strict";function t(t,a){function i(n,a,i){function r(t,n){return f.parseDefaultValueFromContent?e({},t,{defaultValue:n}):t}if(0!==a.length){var o="text";if(0===a.indexOf("[")){var l=a.split("]");a=l[1],o=l[0].substr(1,l[0].length-1)}if(a.indexOf(";")===a.length-1&&(a=a.substr(0,a.length-2)),"html"===o)n.html(t.t(a,r(i,n.html())));else if("text"===o)n.text(t.t(a,r(i,n.text())));else if("prepend"===o)n.prepend(t.t(a,r(i,n.html())));else if("append"===o)n.append(t.t(a,r(i,n.html())));else if(0===o.indexOf("data-")){var s=o.substr("data-".length),d=t.t(a,r(i,n.data(s)));n.data(s,d),n.attr(o,d)}else n.attr(o,t.t(a,r(i,n.attr(o))))}}function r(t,n){var r=t.attr(f.selectorAttr);if(r||void 0===r||!1===r||(r=t.text()||t.val()),r){var o=t,l=t.data(f.targetAttr);if(l&&(o=t.find(l)||t),n||!0!==f.useOptionsAttr||(n=t.data(f.optionsAttr)),n=n||{},r.indexOf(";")>=0){var s=r.split(";");a.each(s,function(t,e){""!==e&&i(o,e.trim(),n)})}else i(o,r,n);if(!0===f.useOptionsAttr){var d={};d=e({clone:d},n),delete d.lng,t.data(f.optionsAttr,d)}}}function o(t){return this.each(function(){r(a(this),t),a(this).find("["+f.selectorAttr+"]").each(function(){r(a(this),t)})})}var f=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};f=e({},n,f),a[f.tName]=t.t.bind(t),a[f.i18nName]=t,a.fn[f.handleName]=o}var e=Object.assign||function(t){for(var e=1;es&&(o.top-=c),o.top<0&&(o.top=0),o.left+l>i&&(o.left-=l),o.left<0&&(o.left=0),e.$menu.css(o)}else e.determinePosition.call(this,e.$menu)},positionSubmenu:function(e){if(void 0!==e)if(m.ui&&m.ui.position)e.css("display","block").position({my:"left top-5",at:"right top",of:this,collision:"flipfit fit"}).css("display","");else{var t={top:-9,left:this.outerWidth()-5};e.css(t)}},zIndex:1,animation:{duration:50,show:"slideDown",hide:"slideUp"},events:{preShow:m.noop,show:m.noop,hide:m.noop,activated:m.noop},callback:null,items:{}},s={timer:null,pageX:null,pageY:null},b={abortevent:function(e){e.preventDefault(),e.stopImmediatePropagation()},contextmenu:function(e){var t=m(this);if(!1!==e.data.events.preShow(t,e)&&("right"===e.data.trigger&&(e.preventDefault(),e.stopImmediatePropagation()),!("right"!==e.data.trigger&&"demand"!==e.data.trigger&&e.originalEvent||!(void 0===e.mouseButton||!e.data||"left"===e.data.trigger&&0===e.mouseButton||"right"===e.data.trigger&&2===e.mouseButton)||t.hasClass("context-menu-active")||t.hasClass("context-menu-disabled")))){if(c=t,e.data.build){var n=e.data.build(c,e);if(!1===n)return;if(e.data=m.extend(!0,{},g,e.data,n||{}),!e.data.items||m.isEmptyObject(e.data.items))throw window.console&&(console.error||console.log).call(console,"No items specified to show in contextMenu"),new Error("No Items specified");e.data.$trigger=c,$.create(e.data)}$.show.call(t,e.data,e.pageX,e.pageY)}},click:function(e){e.preventDefault(),e.stopImmediatePropagation(),m(this).trigger(m.Event("contextmenu",{data:e.data,pageX:e.pageX,pageY:e.pageY}))},mousedown:function(e){var t=m(this);c&&c.length&&!c.is(t)&&c.data("contextMenu").$menu.trigger("contextmenu:hide"),2===e.button&&(c=t.data("contextMenuActive",!0))},mouseup:function(e){var t=m(this);t.data("contextMenuActive")&&c&&c.length&&c.is(t)&&!t.hasClass("context-menu-disabled")&&(e.preventDefault(),e.stopImmediatePropagation(),(c=t).trigger(m.Event("contextmenu",{data:e.data,pageX:e.pageX,pageY:e.pageY}))),t.removeData("contextMenuActive")},mouseenter:function(e){var t=m(this),n=m(e.relatedTarget),o=m(document);n.is(".context-menu-list")||n.closest(".context-menu-list").length||c&&c.length||(s.pageX=e.pageX,s.pageY=e.pageY,s.data=e.data,o.on("mousemove.contextMenuShow",b.mousemove),s.timer=setTimeout(function(){s.timer=null,o.off("mousemove.contextMenuShow"),(c=t).trigger(m.Event("contextmenu",{data:s.data,pageX:s.pageX,pageY:s.pageY}))},e.data.delay))},mousemove:function(e){s.pageX=e.pageX,s.pageY=e.pageY},mouseleave:function(e){var t=m(e.relatedTarget);if(!t.is(".context-menu-list")&&!t.closest(".context-menu-list").length){try{clearTimeout(s.timer)}catch(e){}s.timer=null}},layerClick:function(a){var s,i,c=m(this).data("contextMenuRoot"),l=a.button,r=a.pageX,u=a.pageY,d=void 0===r;a.preventDefault(),setTimeout(function(){if(d)null!=c&&null!==c.$menu&&void 0!==c.$menu&&c.$menu.trigger("contextmenu:hide");else{var e,t="left"===c.trigger&&0===l||"right"===c.trigger&&2===l;if(document.elementFromPoint&&c.$layer){if(c.$layer.hide(),(s=document.elementFromPoint(r-p.scrollLeft(),u-p.scrollTop())).isContentEditable){var n=document.createRange(),o=window.getSelection();n.selectNode(s),n.collapse(!0),o.removeAllRanges(),o.addRange(n)}m(s).trigger(a),c.$layer.show()}if(c.hideOnSecondTrigger&&t&&null!==c.$menu&&void 0!==c.$menu)c.$menu.trigger("contextmenu:hide");else{if(c.reposition&&t)if(document.elementFromPoint){if(c.$trigger.is(s))return void c.position.call(c.$trigger,c,r,u)}else if(i=c.$trigger.offset(),e=m(window),i.top+=e.scrollTop(),i.top<=a.pageY&&(i.left+=e.scrollLeft(),i.left<=a.pageX&&(i.bottom=i.top+c.$trigger.outerHeight(),i.bottom>=a.pageY&&(i.right=i.left+c.$trigger.outerWidth(),i.right>=a.pageX))))return void c.position.call(c.$trigger,c,r,u);s&&t&&c.$trigger.one("contextmenu:hidden",function(){m(s).contextMenu({x:r,y:u,button:l})}),null!=c&&null!==c.$menu&&void 0!==c.$menu&&c.$menu.trigger("contextmenu:hide")}}},50)},keyStop:function(e,t){t.isInput||e.preventDefault(),e.stopPropagation()},key:function(e){var t={};c&&(t=c.data("contextMenu")||{}),void 0===t.zIndex&&(t.zIndex=0);var n=0,o=function(e){""!==e.style.zIndex?n=e.style.zIndex:null!==e.offsetParent&&void 0!==e.offsetParent?o(e.offsetParent):null!==e.parentElement&&void 0!==e.parentElement&&o(e.parentElement)};if(o(e.target),!(t.$menu&&parseInt(n,10)>parseInt(t.$menu.css("zIndex"),10))){switch(e.keyCode){case 9:case 38:if(b.keyStop(e,t),t.isInput){if(9===e.keyCode&&e.shiftKey)return e.preventDefault(),t.$selected&&t.$selected.find("input, textarea, select").blur(),void(null!==t.$menu&&void 0!==t.$menu&&t.$menu.trigger("prevcommand"));if(38===e.keyCode&&"checkbox"===t.$selected.find("input, textarea, select").prop("type"))return void e.preventDefault()}else if(9!==e.keyCode||e.shiftKey)return void(null!==t.$menu&&void 0!==t.$menu&&t.$menu.trigger("prevcommand"));break;case 40:if(b.keyStop(e,t),!t.isInput)return void(null!==t.$menu&&void 0!==t.$menu&&t.$menu.trigger("nextcommand"));if(9===e.keyCode)return e.preventDefault(),t.$selected&&t.$selected.find("input, textarea, select").blur(),void(null!==t.$menu&&void 0!==t.$menu&&t.$menu.trigger("nextcommand"));if(40===e.keyCode&&"checkbox"===t.$selected.find("input, textarea, select").prop("type"))return void e.preventDefault();break;case 37:if(b.keyStop(e,t),t.isInput||!t.$selected||!t.$selected.length)break;if(t.$selected.parent().hasClass("context-menu-root"))break;var a=t.$selected.parent().parent();return t.$selected.trigger("contextmenu:blur"),void(t.$selected=a);case 39:if(b.keyStop(e,t),t.isInput||!t.$selected||!t.$selected.length)break;var s=t.$selected.data("contextMenu")||{};if(s.$menu&&t.$selected.hasClass("context-menu-submenu"))return t.$selected=null,s.$selected=null,void s.$menu.trigger("nextcommand");break;case 35:case 36:return t.$selected&&t.$selected.find("input, textarea, select").length?void 0:((t.$selected&&t.$selected.parent()||t.$menu).children(":not(."+t.classNames.disabled+", ."+t.classNames.notSelectable+")")[36===e.keyCode?"first":"last"]().trigger("contextmenu:focus"),void e.preventDefault());case 13:if(b.keyStop(e,t),t.isInput){if(t.$selected&&!t.$selected.is("textarea, select"))return void e.preventDefault();break}return void(void 0!==t.$selected&&null!==t.$selected&&t.$selected.trigger("mouseup"));case 32:case 33:case 34:return void b.keyStop(e,t);case 27:return b.keyStop(e,t),void(null!==t.$menu&&void 0!==t.$menu&&t.$menu.trigger("contextmenu:hide"));default:var i=String.fromCharCode(e.keyCode).toUpperCase();if(t.accesskeys&&t.accesskeys[i])return void t.accesskeys[i].$node.trigger(t.accesskeys[i].$menu?"contextmenu:focus":"mouseup")}e.stopPropagation(),void 0!==t.$selected&&null!==t.$selected&&t.$selected.trigger(e)}},prevItem:function(e){e.stopPropagation();var t=m(this).data("contextMenu")||{},n=m(this).data("contextMenuRoot")||{};if(t.$selected){var o=t.$selected;(t=t.$selected.parent().data("contextMenu")||{}).$selected=o}for(var a=t.$menu.children(),s=t.$selected&&t.$selected.prev().length?t.$selected.prev():a.last(),i=s;s.hasClass(n.classNames.disabled)||s.hasClass(n.classNames.notSelectable)||s.is(":hidden");)if((s=s.prev().length?s.prev():a.last()).is(i))return;t.$selected&&b.itemMouseleave.call(t.$selected.get(0),e),b.itemMouseenter.call(s.get(0),e);var c=s.find("input, textarea, select");c.length&&c.focus()},nextItem:function(e){e.stopPropagation();var t=m(this).data("contextMenu")||{},n=m(this).data("contextMenuRoot")||{};if(t.$selected){var o=t.$selected;(t=t.$selected.parent().data("contextMenu")||{}).$selected=o}for(var a=t.$menu.children(),s=t.$selected&&t.$selected.next().length?t.$selected.next():a.first(),i=s;s.hasClass(n.classNames.disabled)||s.hasClass(n.classNames.notSelectable)||s.is(":hidden");)if((s=s.next().length?s.next():a.first()).is(i))return;t.$selected&&b.itemMouseleave.call(t.$selected.get(0),e),b.itemMouseenter.call(s.get(0),e);var c=s.find("input, textarea, select");c.length&&c.focus()},focusInput:function(){var e=m(this).closest(".context-menu-item"),t=e.data(),n=t.contextMenu,o=t.contextMenuRoot;o.$selected=n.$selected=e,o.isInput=n.isInput=!0},blurInput:function(){var e=m(this).closest(".context-menu-item").data(),t=e.contextMenu;e.contextMenuRoot.isInput=t.isInput=!1},menuMouseenter:function(){m(this).data().contextMenuRoot.hovering=!0},menuMouseleave:function(e){var t=m(this).data().contextMenuRoot;t.$layer&&t.$layer.is(e.relatedTarget)&&(t.hovering=!1)},itemMouseenter:function(e){var t=m(this),n=t.data(),o=n.contextMenu,a=n.contextMenuRoot;a.hovering=!0,e&&a.$layer&&a.$layer.is(e.relatedTarget)&&(e.preventDefault(),e.stopImmediatePropagation()),(o.$menu?o:a).$menu.children("."+a.classNames.hover).trigger("contextmenu:blur").children(".hover").trigger("contextmenu:blur"),t.hasClass(a.classNames.disabled)||t.hasClass(a.classNames.notSelectable)?o.$selected=null:t.trigger("contextmenu:focus")},itemMouseleave:function(e){var t=m(this),n=t.data(),o=n.contextMenu,a=n.contextMenuRoot;if(a!==o&&a.$layer&&a.$layer.is(e.relatedTarget))return void 0!==a.$selected&&null!==a.$selected&&a.$selected.trigger("contextmenu:blur"),e.preventDefault(),e.stopImmediatePropagation(),void(a.$selected=o.$selected=o.$node);o&&o.$menu&&o.$menu.hasClass("context-menu-visible")||t.trigger("contextmenu:blur")},itemClick:function(e){var t,n=m(this),o=n.data(),a=o.contextMenu,s=o.contextMenuRoot,i=o.contextMenuKey;if(!(!a.items[i]||n.is("."+s.classNames.disabled+", .context-menu-separator, ."+s.classNames.notSelectable)||n.is(".context-menu-submenu")&&!1===s.selectableSubMenu)){if(e.preventDefault(),e.stopImmediatePropagation(),m.isFunction(a.callbacks[i])&&Object.prototype.hasOwnProperty.call(a.callbacks,i))t=a.callbacks[i];else{if(!m.isFunction(s.callback))return;t=s.callback}!1!==t.call(s.$trigger,i,s,e)?s.$menu.trigger("contextmenu:hide"):s.$menu.parent().length&&$.update.call(s.$trigger,s)}},inputClick:function(e){e.stopImmediatePropagation()},hideMenu:function(e,t){var n=m(this).data("contextMenuRoot");$.hide.call(n.$trigger,n,t&&t.force)},focusItem:function(e){e.stopPropagation();var t=m(this),n=t.data(),o=n.contextMenu,a=n.contextMenuRoot;t.hasClass(a.classNames.disabled)||t.hasClass(a.classNames.notSelectable)||(t.addClass([a.classNames.hover,a.classNames.visible].join(" ")).parent().find(".context-menu-item").not(t).removeClass(a.classNames.visible).filter("."+a.classNames.hover).trigger("contextmenu:blur"),o.$selected=a.$selected=t,o&&o.$node&&o.$node.hasClass("context-menu-submenu")&&o.$node.addClass(a.classNames.hover),o.$node&&a.positionSubmenu.call(o.$node,o.$menu))},blurItem:function(e){e.stopPropagation();var t=m(this),n=t.data(),o=n.contextMenu,a=n.contextMenuRoot;o.autoHide&&t.removeClass(a.classNames.visible),t.removeClass(a.classNames.hover),o.$selected=null}},$={show:function(n,e,t){var o=m(this),a={};if(m("#context-menu-layer").trigger("mousedown"),n.$trigger=o,!1!==n.events.show.call(o,n))if(!1!==$.update.call(o,n)){if(n.position.call(o,n,e,t),n.zIndex){var s=n.zIndex;"function"==typeof n.zIndex&&(s=n.zIndex.call(o,n)),a.zIndex=function(e){for(var t=0,n=e;t=Math.max(t,parseInt(n.css("z-index"),10)||0),(n=n.parent())&&n.length&&!(-1<"html body".indexOf(n.prop("nodeName").toLowerCase())););return t}(o)+s}$.layer.call(n.$menu,n,a.zIndex),n.$menu.find("ul").css("zIndex",a.zIndex+1),n.$menu.css(a)[n.animation.show](n.animation.duration,function(){o.trigger("contextmenu:visible"),$.activated(n),n.events.activated(n)}),o.data("contextMenu",n).addClass("context-menu-active"),m(document).off("keydown.contextMenu").on("keydown.contextMenu",b.key),n.autoHide&&m(document).on("mousemove.contextMenuAutoHide",function(e){var t=o.offset();t.right=t.left+o.outerWidth(),t.bottom=t.top+o.outerHeight(),!n.$layer||n.hovering||e.pageX>=t.left&&e.pageX<=t.right&&e.pageY>=t.top&&e.pageY<=t.bottom||setTimeout(function(){n.hovering||null===n.$menu||void 0===n.$menu||n.$menu.trigger("contextmenu:hide")},50)})}else c=null;else c=null},hide:function(t,e){var n=m(this);if(t||(t=n.data("contextMenu")||{}),e||!t.events||!1!==t.events.hide.call(n,t)){if(n.removeData("contextMenu").removeClass("context-menu-active"),t.$layer){setTimeout((o=t.$layer,function(){o.remove()}),10);try{delete t.$layer}catch(e){t.$layer=null}}var o;c=null,t.$menu.find("."+t.classNames.hover).trigger("contextmenu:blur"),t.$selected=null,t.$menu.find("."+t.classNames.visible).removeClass(t.classNames.visible),m(document).off(".contextMenuAutoHide").off("keydown.contextMenu"),t.$menu&&t.$menu[t.animation.hide](t.animation.duration,function(){t.build&&(t.$menu.remove(),m.each(t,function(e){switch(e){case"ns":case"selector":case"build":case"trigger":return!0;default:t[e]=void 0;try{delete t[e]}catch(e){}return!0}})),setTimeout(function(){n.trigger("contextmenu:hidden")},10)})}},create:function(r,u){function d(e){var t=m("");if(e._accesskey)e._beforeAccesskey&&t.append(document.createTextNode(e._beforeAccesskey)),m("").addClass("context-menu-accesskey").text(e._accesskey).appendTo(t),e._afterAccesskey&&t.append(document.createTextNode(e._afterAccesskey));else if(e.isHtmlName){if(void 0!==e.accesskey)throw new Error("accesskeys are not compatible with HTML names and cannot be used together in the same item");t.html(e.name)}else t.text(e.name);return t}void 0===u&&(u=r),r.$menu=m('
      ').addClass(r.className||"").data({contextMenu:r,contextMenuRoot:u}),m.each(["callbacks","commands","inputs"],function(e,t){r[t]={},u[t]||(u[t]={})}),u.accesskeys||(u.accesskeys={}),m.each(r.items,function(n,o){var e=m('
    • ').addClass(o.className||""),t=null,a=null;if(e.on("click",m.noop),"string"!=typeof o&&"cm_separator"!==o.type||(o={type:"cm_seperator"}),o.$node=e.data({contextMenu:r,contextMenuRoot:u,contextMenuKey:n}),void 0!==o.accesskey)for(var s,i=function(e){for(var t,n=e.split(/\s+/),o=[],a=0;t=n[a];a++)t=t.charAt(0).toUpperCase(),o.push(t);return o}(o.accesskey),c=0;s=i[c];c++)if(!u.accesskeys[s]){var l=(u.accesskeys[s]=o).name.match(new RegExp("^(.*?)("+s+")(.*)$","i"));l&&(o._beforeAccesskey=l[1],o._accesskey=l[2],o._afterAccesskey=l[3]);break}if(o.type&&v[o.type])v[o.type].call(e,o,r,u),m.each([r,u],function(e,t){t.commands[n]=o,!m.isFunction(o.callback)||void 0!==t.callbacks[n]&&void 0!==r.type||(t.callbacks[n]=o.callback)});else{switch("cm_seperator"===o.type?e.addClass("context-menu-separator "+u.classNames.notSelectable):"html"===o.type?e.addClass("context-menu-html "+u.classNames.notSelectable):"sub"!==o.type&&o.type?(t=m("").appendTo(e),d(o).appendTo(t),e.addClass("context-menu-input"),r.hasTypes=!0,m.each([r,u],function(e,t){t.commands[n]=o,t.inputs[n]=o})):o.items&&(o.type="sub"),o.type){case"cm_seperator":break;case"text":a=m('').attr("name","context-menu-input-"+n).val(o.value||"").appendTo(t);break;case"textarea":a=m('').attr("name","context-menu-input-"+n).val(o.value||"").appendTo(t),o.height&&a.height(o.height);break;case"checkbox":a=m('').attr("name","context-menu-input-"+n).val(o.value||"").prop("checked",!!o.selected).prependTo(t);break;case"radio":a=m('').attr("name","context-menu-input-"+o.radio).val(o.value||"").prop("checked",!!o.selected).prependTo(t);break;case"select":a=m('').attr("name","context-menu-input-"+n).appendTo(t),o.options&&(m.each(o.options,function(e,t){m("").val(e).text(t).appendTo(a)}),a.val(o.selected));break;case"sub":d(o).appendTo(e),o.appendTo=o.$node,e.data("contextMenu",o).addClass("context-menu-submenu"),o.callback=null,"function"==typeof o.items.then?$.processPromises(o,u,o.items):$.create(o,u);break;case"html":m(o.html).appendTo(e);break;default:m.each([r,u],function(e,t){t.commands[n]=o,!m.isFunction(o.callback)||void 0!==t.callbacks[n]&&void 0!==r.type||(t.callbacks[n]=o.callback)}),d(o).appendTo(e)}o.type&&"sub"!==o.type&&"html"!==o.type&&"cm_seperator"!==o.type&&(a.on("focus",b.focusInput).on("blur",b.blurInput),o.events&&a.on(o.events,r)),o.icon&&(m.isFunction(o.icon)?o._icon=o.icon.call(this,this,e,n,o):"string"!=typeof o.icon||"fab "!==o.icon.substring(0,4)&&"fas "!==o.icon.substring(0,4)&&"far "!==o.icon.substring(0,4)&&"fal "!==o.icon.substring(0,4)?"string"==typeof o.icon&&"fa-"===o.icon.substring(0,3)?o._icon=u.classNames.icon+" "+u.classNames.icon+"--fa fa "+o.icon:o._icon=u.classNames.icon+" "+u.classNames.icon+"-"+o.icon:(e.addClass(u.classNames.icon+" "+u.classNames.icon+"--fa5"),o._icon=m('')),"string"==typeof o._icon?e.addClass(o._icon):e.prepend(o._icon))}o.$input=a,o.$label=t,e.appendTo(r.$menu),!r.hasTypes&&m.support.eventSelectstart&&e.on("selectstart.disableTextSelect",b.abortevent)}),r.$node||r.$menu.css("display","none").addClass("context-menu-root"),r.$menu.appendTo(r.appendTo||document.body)},resize:function(e,t){var n;e.css({position:"absolute",display:"block"}),e.data("width",(n=e.get(0)).getBoundingClientRect?Math.ceil(n.getBoundingClientRect().width):e.outerWidth()+1),e.css({position:"static",minWidth:"0px",maxWidth:"100000px"}),e.find("> li > ul").each(function(){$.resize(m(this),!0)}),t||e.find("ul").addBack().css({position:"",display:"",minWidth:"",maxWidth:""}).outerWidth(function(){return m(this).data("width")})},update:function(i,c){var l=this;void 0===c&&(c=i,$.resize(i.$menu));var r=!1;return i.$menu.children().each(function(){var e,t=m(this),n=t.data("contextMenuKey"),o=i.items[n],a=m.isFunction(o.disabled)&&o.disabled.call(l,n,c)||!0===o.disabled;if((e=m.isFunction(o.visible)?o.visible.call(l,n,c):void 0===o.visible||!0===o.visible)&&(r=!0),t[e?"show":"hide"](),t[a?"addClass":"removeClass"](c.classNames.disabled),m.isFunction(o.icon)){t.removeClass(o._icon);var s=o.icon.call(this,l,t,n,o);"string"==typeof s?t.addClass(s):t.prepend(s)}if(o.type)switch(t.find("input, select, textarea").prop("disabled",a),o.type){case"text":case"textarea":o.$input.val(o.value||"");break;case"checkbox":case"radio":o.$input.val(o.value||"").prop("checked",!!o.selected);break;case"select":o.$input.val((0===o.selected?"0":o.selected)||"")}o.$menu&&($.update.call(l,o,c)&&(r=!0))}),r},layer:function(e,t){var n=e.$layer=m('
      ').css({height:p.height(),width:p.width(),display:"block",position:"fixed","z-index":t,top:0,left:0,opacity:0,filter:"alpha(opacity=0)","background-color":"#000"}).data("contextMenuRoot",e).insertBefore(this).on("contextmenu",b.abortevent).on("mousedown",b.layerClick);return void 0===document.body.style.maxWidth&&n.css({position:"absolute",height:m(document).height()}),n},processPromises:function(e,t,n){function o(e,t,n){void 0===n?(n={error:{name:"No items and no error item",icon:"context-menu-icon context-menu-icon-quit"}},window.console&&(console.error||console.log).call(console,'When you reject a promise, provide an "items" object, equal to normal sub-menu items')):"string"==typeof n&&(n={error:{name:n}}),a(e,t,n)}function a(e,t,n){void 0!==t.$menu&&t.$menu.is(":visible")&&(e.$node.removeClass(t.classNames.iconLoadingClass),e.items=n,$.create(e,t,!0),$.update(e,t),t.positionSubmenu.call(e.$node,e.$menu))}e.$node.addClass(t.classNames.iconLoadingClass),n.then(function(e,t,n){void 0===n&&o(void 0),a(e,t,n)}.bind(this,e,t),o.bind(this,e,t))},activated:function(e){var t=e.$menu,n=t.offset(),o=m(window).height(),a=m(window).scrollTop(),s=t.height();oa+o)&&t.css({top:a+"px"})}};function l(e){return e.id&&m('label[for="'+e.id+'"]').val()||e.name}m.fn.contextMenu=function(e){var t=this,n=e;if(0h.length?R(Z,"contents"):g.length *");e.removeData("loaded").removeData("mode").removeData("url"),e.removeAttr("id").removeAttr("role").removeAttr("tabindex").removeAttr("class").removeAttr("style")._removeAria("labelledby")._removeAria("hidden"),b.find(".content > [data-mode='async'],.content > [data-mode='iframe']").empty();var f=a('<{0} class="{1}">'.format(b.get(0).tagName,b.attr("class"))),g=b._id();return null!=g&&""!==g&&f._id(g),f.html(b.find(".content").html()),b.after(f),b.remove(),f}function h(a,b){var c=a.find(".steps li").eq(b.currentIndex);a.triggerHandler("finishing",[b.currentIndex])?(c.addClass("done").removeClass("error"),a.triggerHandler("finished",[b.currentIndex])):c.addClass("error")}function i(a){var b=a.data("eventNamespace");return null==b&&(b="."+q(a),a.data("eventNamespace",b)),b}function j(a,b){var c=q(a);return a.find("#"+c+V+b)}function k(a,b){var c=q(a);return a.find("#"+c+W+b)}function l(a,b){var c=q(a);return a.find("#"+c+X+b)}function m(a){return a.data("options")}function n(a){return a.data("state")}function o(a){return a.data("steps")}function p(a,b){var c=o(a);return(0>b||b>=c.length)&&R(Y),c[b]}function q(a){var b=a.data("uid");return null==b&&(b=a._id(),null==b&&(b="steps-uid-".concat(T),a._id(b)),T++,a.data("uid",b)),b}function r(a,c){if(S("enumType",a),S("keyOrValue",c),"string"==typeof c){var d=a[c];return d===b&&R("The enum key '{0}' does not exist.",c),d}if("number"==typeof c){for(var e in a)if(a[e]===c)return c;R("Invalid enum value '{0}'.",c)}else R("Invalid key or value type.")}function s(a,b,c){return B(a,b,c,v(c,1))}function t(a,b,c){return B(a,b,c,f(c,1))}function u(a,b,c,d){if((0>d||d>=c.stepCount)&&R(Y),!(b.forceMoveForward&&de||e>d.stepCount)&&R(Y),f=a.extend({},bb,f),y(b,e,f),d.currentIndex!==d.stepCount&&d.currentIndex>=e&&(d.currentIndex++,O(b,c,d)),d.stepCount++;var g=b.find(".content"),h=a("<{0}>{1}".format(c.headerTag,f.title)),i=a("<{0}>".format(c.bodyTag));return(null==f.contentMode||f.contentMode===$.html)&&i.html(f.content),0===e?g.prepend(i).prepend(h):k(b,e-1).after(i).after(h),K(b,d,i,e),N(b,c,d,h,e),F(b,c,d,e),e===d.currentIndex&&E(b,c,d),D(b,c,d),b}function y(a,b,c){o(a).splice(b,0,c)}function z(b){var c=a(this),d=m(c),e=n(c);if(d.suppressPaginationOnFocus&&c.find(":focus").is(":input"))return b.preventDefault(),!1;var f={left:37,right:39};b.keyCode===f.left?(b.preventDefault(),t(c,d,e)):b.keyCode===f.right&&(b.preventDefault(),s(c,d,e))}function A(b,c,d){if(d.stepCount>0){var e=d.currentIndex,f=p(b,e);if(!c.enableContentCache||!f.contentLoaded)switch(r($,f.contentMode)){case $.iframe:b.find(".content > .body").eq(d.currentIndex).empty().html('':''),I=e(n.theme?'':''),n.theme&&k?(U='"):n.theme?(U='"):U=k?'':'',w=e(U),y&&(n.theme?(w.css(h),w.addClass("ui-widget-content")):w.css(s)),n.theme||I.css(n.overlayCSS),I.css("position",k?"fixed":"absolute"),(r||n.forceIframe)&&g.css("opacity",0);var C=[g,I,w],S=e(k?"body":t);e.each(C,function(){this.appendTo(S)}),n.theme&&n.draggable&&e.fn.draggable&&w.draggable({handle:".ui-dialog-titlebar",cancel:"li"});var O=f&&(!e.support.boxModel||e("object,embed",k?null:t).length>0);if(u||O){if(k&&n.allowBodyStretch&&e.support.boxModel&&e("html,body").css("height","100%"),(u||!e.support.boxModel)&&!k)var E=d(t,"borderTopWidth"),T=d(t,"borderLeftWidth"),M=E?"(0 - "+E+")":0,B=T?"(0 - "+T+")":0;e.each(C,function(e,t){var o=t[0].style;if(o.position="absolute",2>e)k?o.setExpression("height","Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.support.boxModel?0:"+n.quirksmodeOffsetHack+') + "px"'):o.setExpression("height",'this.parentNode.offsetHeight + "px"'),k?o.setExpression("width",'jQuery.support.boxModel && document.documentElement.clientWidth || document.body.clientWidth + "px"'):o.setExpression("width",'this.parentNode.offsetWidth + "px"'),B&&o.setExpression("left",B),M&&o.setExpression("top",M);else if(n.centerY)k&&o.setExpression("top",'(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"'),o.marginTop=0;else if(!n.centerY&&k){var i=n.css&&n.css.top?parseInt(n.css.top,10):0,s="((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "+i+') + "px"';o.setExpression("top",s)}})}if(y&&(n.theme?w.find(".ui-widget-content").append(y):w.append(y),(y.jquery||y.nodeType)&&e(y).show()),(r||n.forceIframe)&&n.showOverlay&&g.show(),n.fadeIn){var j=n.onBlock?n.onBlock:c,H=n.showOverlay&&!y?j:c,z=y?j:c;n.showOverlay&&I._fadeIn(n.fadeIn,H),y&&w._fadeIn(n.fadeIn,z)}else n.showOverlay&&I.show(),y&&w.show(),n.onBlock&&n.onBlock.bind(w)();if(i(1,t,n),k?(p=w[0],b=e(n.focusableElements,p),n.focusInput&&setTimeout(l,20)):a(w[0],n.centerX,n.centerY),n.timeout){var W=setTimeout(function(){k?e.unblockUI(n):e(t).unblock(n)},n.timeout);e(t).data("blockUI.timeout",W)}}}function o(t,o){var s,l=t==window,a=e(t),d=a.data("blockUI.history"),c=a.data("blockUI.timeout");c&&(clearTimeout(c),a.removeData("blockUI.timeout")),o=e.extend({},e.blockUI.defaults,o||{}),i(0,t,o),null===o.onUnblock&&(o.onUnblock=a.data("blockUI.onUnblock"),a.removeData("blockUI.onUnblock"));var r;r=l?e("body").children().filter(".blockUI").add("body > .blockUI"):a.find(">.blockUI"),o.cursorReset&&(r.length>1&&(r[1].style.cursor=o.cursorReset),r.length>2&&(r[2].style.cursor=o.cursorReset)),l&&(p=b=null),o.fadeOut?(s=r.length,r.stop().fadeOut(o.fadeOut,function(){0===--s&&n(r,d,o,t)})):n(r,d,o,t)}function n(t,o,n,i){var s=e(i);if(!s.data("blockUI.isBlocked")){t.each(function(e,t){this.parentNode&&this.parentNode.removeChild(this)}),o&&o.el&&(o.el.style.display=o.display,o.el.style.position=o.position,o.el.style.cursor="default",o.parent&&o.parent.appendChild(o.el),s.removeData("blockUI.history")),s.data("blockUI.static")&&s.css("position","static"),"function"==typeof n.onUnblock&&n.onUnblock(i,n);var l=e(document.body),a=l.width(),d=l[0].style.width;l.width(a-1).width(a),l[0].style.width=d}}function i(t,o,n){var i=o==window,l=e(o);if((t||(!i||p)&&(i||l.data("blockUI.isBlocked")))&&(l.data("blockUI.isBlocked",t),i&&n.bindEvents&&(!t||n.showOverlay))){var a="mousedown mouseup keydown keypress keyup touchstart touchend touchmove";t?e(document).bind(a,n,s):e(document).unbind(a,s)}}function s(t){if("keydown"===t.type&&t.keyCode&&9==t.keyCode&&p&&t.data.constrainTabKey){var o=b,n=!t.shiftKey&&t.target===o[o.length-1],i=t.shiftKey&&t.target===o[0];if(n||i)return setTimeout(function(){l(i)},10),!1}var s=t.data,a=e(t.target);return a.hasClass("blockOverlay")&&s.onOverlayClick&&s.onOverlayClick(t),a.parents("div."+s.blockMsgClass).length>0?!0:0===a.parents().children().filter("div.blockUI").length}function l(e){if(b){var t=b[e===!0?b.length-1:0];t&&t.focus()}}function a(e,t,o){var n=e.parentNode,i=e.style,s=(n.offsetWidth-e.offsetWidth)/2-d(n,"borderLeftWidth"),l=(n.offsetHeight-e.offsetHeight)/2-d(n,"borderTopWidth");t&&(i.left=s>0?s+"px":"0"),o&&(i.top=l>0?l+"px":"0")}function d(t,o){return parseInt(e.css(t,o),10)||0}e.fn._fadeIn=e.fn.fadeIn;var c=e.noop||function(){},r=/MSIE/.test(navigator.userAgent),u=/MSIE 6.0/.test(navigator.userAgent)&&!/MSIE 8.0/.test(navigator.userAgent),f=(document.documentMode||0,e.isFunction(document.createElement("div").style.setExpression));e.blockUI=function(e){t(window,e)},e.unblockUI=function(e){o(window,e)},e.growlUI=function(t,o,n,i){var s=e('
      ');t&&s.append("

      "+t+"

      "),o&&s.append("

      "+o+"

      "),void 0===n&&(n=3e3);var l=function(t){t=t||{},e.blockUI({message:s,fadeIn:"undefined"!=typeof t.fadeIn?t.fadeIn:700,fadeOut:"undefined"!=typeof t.fadeOut?t.fadeOut:1e3,timeout:"undefined"!=typeof t.timeout?t.timeout:n,centerY:!1,showOverlay:!1,onUnblock:i,css:e.blockUI.defaults.growlCSS})};l();s.css("opacity");s.mouseover(function(){l({fadeIn:0,timeout:3e4});var t=e(".blockMsg");t.stop(),t.fadeTo(300,1)}).mouseout(function(){e(".blockMsg").fadeOut(1e3)})},e.fn.block=function(o){if(this[0]===window)return e.blockUI(o),this;var n=e.extend({},e.blockUI.defaults,o||{});return this.each(function(){var t=e(this);n.ignoreIfBlocked&&t.data("blockUI.isBlocked")||t.unblock({fadeOut:0})}),this.each(function(){"static"==e.css(this,"position")&&(this.style.position="relative",e(this).data("blockUI.static",!0)),this.style.zoom=1,t(this,o)})},e.fn.unblock=function(t){return this[0]===window?(e.unblockUI(t),this):this.each(function(){o(this,t)})},e.blockUI.version=2.7,e.blockUI.defaults={message:"

      Please wait...

      ",title:null,draggable:!0,theme:!1,css:{padding:0,margin:0,width:"30%",top:"40%",left:"35%",textAlign:"center",color:"#000",border:"3px solid #aaa",backgroundColor:"#fff",cursor:"wait"},themedCSS:{width:"30%",top:"40%",left:"35%"},overlayCSS:{backgroundColor:"#000",opacity:.6,cursor:"wait"},cursorReset:"default",growlCSS:{width:"350px",top:"10px",left:"",right:"10px",border:"none",padding:"5px",opacity:.6,cursor:"default",color:"#fff",backgroundColor:"#000","-webkit-border-radius":"10px","-moz-border-radius":"10px","border-radius":"10px"},iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank",forceIframe:!1,baseZ:1e3,centerX:!0,centerY:!0,allowBodyStretch:!0,bindEvents:!0,constrainTabKey:!0,fadeIn:200,fadeOut:400,timeout:0,showOverlay:!0,focusInput:!0,focusableElements:":input:enabled:visible",onBlock:null,onUnblock:null,onOverlayClick:null,quirksmodeOffsetHack:4,blockMsgClass:"blockMsg",ignoreIfBlocked:!1};var p=null,b=[]}"function"==typeof define&&define.amd&&define.amd.jQuery?define(["jquery"],e):e(jQuery)}(); \ No newline at end of file diff --git a/assets/vendors/js/ui/jquery-sliding-menu.js b/assets/vendors/js/ui/jquery-sliding-menu.js new file mode 100644 index 0000000..9ec83e6 --- /dev/null +++ b/assets/vendors/js/ui/jquery-sliding-menu.js @@ -0,0 +1,331 @@ +/* + * + * jQuery Sliding Menu Plugin + * Mobile app list-style navigation in the browser + * + * Written by Ali Zahid + * http://designplox.com/jquery-sliding-menu + * + */ + +(function($) +{ + var usedIds = []; + + $.fn.slidingMenu = function(options) + { + var selector = this.selector; + var rtl = false; + if($('html').data('textdirection') == "rtl"){ + rtl = true; + } + + var settings = $.extend( + { + dataJSON: false, + backLabel: 'Back' + + }, options); + + return this.each(function() + { + var self = this, + menu = $(self), + data; + + if (menu.hasClass('sliding-menu')) + { + updateWidth(); + return; + } + + var menuWidth = menu.outerWidth(); + + + // Updated menu widh + //var menuWidth = menu[0].offsetWidth; + + if (settings.dataJSON) + { + data = processJSON(settings.dataJSON); + } + else + { + data = process(menu); + } + + menu.empty().addClass('sliding-menu'); + + var rootPanel; + + if (settings.dataJSON) + { + $(data).each(function(index, item) + { + var panel = $('
        '); + + if (item.root) + { + rootPanel = '#' + item.id; + } + + panel.attr('id', item.id); + panel.addClass('menu-panel'); + panel.width(menuWidth); + + $(item.children).each(function(index, item) + { + var link = $(''); + link.attr('class', item.styleClass); + link.attr('href', item.href); + link.text(item.label); + + var li = $('
      • '); + + li.append(link); + + panel.append(li); + + }); + + menu.append(panel); + + }); + } + else + { + $(data).each(function(index, item) + { + var panel = $(item); + + if (panel.hasClass('menu-panel-root')) + { + rootPanel = '#' + panel.attr('id'); + } + + panel.width(menuWidth); + + menu.append(item); + + }); + } + + rootPanel = $(rootPanel); + rootPanel.addClass('menu-panel-root'); + + var currentPanel = rootPanel; + + menu.height(rootPanel.height()); + + var wrapper = $('
        ').addClass('sliding-menu-wrapper').width(data.length * menuWidth); + + menu.wrapInner(wrapper); + + wrapper = $('.sliding-menu-wrapper', menu); + + $('a', self).on('click', function(e) + { + var href = $(this).attr('href'), + label = $(this).text(); + + if (wrapper.is(':animated')) + { + e.preventDefault(); + + return; + } + + if (href == '#') + { + e.preventDefault(); + } + else if (href.indexOf('#menu-panel') == 0) + { + var target = $(href), + isBack = $(this).hasClass('back'), + marginLeft, + marginRight; + if (rtl === true){ + marginRight = parseInt(wrapper.css('margin-right')); + } + else{ + marginLeft = parseInt(wrapper.css('margin-left')); + } + + // Update menu width on menu toggle + var menuWidth = menu.width(); + + // Update current panel when menu is reset + if($(this).closest('ul').hasClass('menu-panel-root')){ + + currentPanel = rootPanel; + } + + if (isBack) + { + if (href == '#menu-panel-back') + { + target = currentPanel.prev(); + } + + if(rtl === true) + properties = {marginRight: marginRight + menuWidth}; + else + properties = {marginLeft: marginLeft + menuWidth}; + wrapper.stop(true, true).animate(properties, 'fast'); + } + else + { + target.insertAfter(currentPanel); + + if (settings.backLabel === true) + { + $('.back', target).html(''+label); + } + else + { + $('.back', target).text(settings.backLabel); + } + + if(rtl === true) + properties = {marginRight: marginRight - menuWidth}; + else + properties = {marginLeft: marginLeft - menuWidth}; + wrapper.stop(true, true).animate(properties,'fast'); + } + + currentPanel = target; + + menu.stop(true, true).animate( + { + height: target.height() + + }, 'fast'); + + e.preventDefault(); + } + + }); + + return this; + + }); + + function process(data) + { + var ul = $('ul', data), + panels = []; + + $(ul).each(function(index, item) + { + var panel = $(item), + handler = panel.prev(), + id = getNewId(); + + if (handler.length == 1) + { + handler.addClass('nav-has-children dropdown-item').attr('href', '#menu-panel-' + id); + handler.append('') + } + + panel.attr('id', 'menu-panel-' + id); + + if (index == 0) + { + panel.addClass('menu-panel-root'); + } + else + { + panel.addClass('menu-panel'); + + var li = $('
      • '), + back = $('').addClass('nav-has-parent back primary dropdown-item').attr('href', '#menu-panel-back'); + + panel.prepend(back); + } + + panels.push(item); + + }); + + return panels; + } + + function processJSON(data, parent) + { + var root = { id: 'menu-panel-' + getNewId(), children: [], root: (parent ? false : true) }, + panels = []; + + if (parent) + { + root.children.push( + { + styleClass: 'back', + href: '#' + parent.id + + }); + } + + $(data).each(function(index, item) + { + root.children.push(item); + + if (item.children) + { + var panel = processJSON(item.children, root); + + item.href = '#' + panel[0].id; + item.styleClass = 'nav'; + + panels = panels.concat(panel); + } + + }); + + return [root].concat(panels); + } + + function getNewId() + { + var id; + + do + { + id = Math.random().toString(36).substring(3, 8); + } + while (usedIds.indexOf(id) >= 0); + + usedIds.push(id); + + return id; + } + + function updateWidth(){ + + var wrapper = $('.sliding-menu-wrapper'), + menuPanels = $('.sliding-menu-wrapper ul'); + + if(menuPanels.length){ + setTimeout(function(){ + var menuWidth = $(selector).width(); + + // Update wrapper width + wrapper.width(menuPanels.length * menuWidth); + + menuPanels.each(function(index, item) + { + var panel = $(item); + + panel.width(menuWidth); + + }); + + + wrapper.css('margin-left',''); + }, 300); + } + } + + }; + +} (jQuery)); diff --git a/assets/vendors/js/ui/jquery.matchHeight-min.js b/assets/vendors/js/ui/jquery.matchHeight-min.js new file mode 100644 index 0000000..495e112 --- /dev/null +++ b/assets/vendors/js/ui/jquery.matchHeight-min.js @@ -0,0 +1,12 @@ +/* +* jquery-match-height 0.7.0 by @liabru +* http://brm.io/jquery-match-height/ +* License MIT +*/ +!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):"undefined"!=typeof module&&module.exports?module.exports=t(require("jquery")):t(jQuery)}(function(t){var e=-1,o=-1,i=function(t){return parseFloat(t)||0},a=function(e){var o=1,a=t(e),n=null,r=[];return a.each(function(){var e=t(this),a=e.offset().top-i(e.css("margin-top")),s=r.length>0?r[r.length-1]:null;null===s?r.push(e):Math.floor(Math.abs(n-a))<=o?r[r.length-1]=s.add(e):r.push(e),n=a}),r},n=function(e){var o={ +byRow:!0,property:"height",target:null,remove:!1};return"object"==typeof e?t.extend(o,e):("boolean"==typeof e?o.byRow=e:"remove"===e&&(o.remove=!0),o)},r=t.fn.matchHeight=function(e){var o=n(e);if(o.remove){var i=this;return this.css(o.property,""),t.each(r._groups,function(t,e){e.elements=e.elements.not(i)}),this}return this.length<=1&&!o.target?this:(r._groups.push({elements:this,options:o}),r._apply(this,o),this)};r.version="0.7.0",r._groups=[],r._throttle=80,r._maintainScroll=!1,r._beforeUpdate=null, +r._afterUpdate=null,r._rows=a,r._parse=i,r._parseOptions=n,r._apply=function(e,o){var s=n(o),h=t(e),l=[h],c=t(window).scrollTop(),p=t("html").outerHeight(!0),d=h.parents().filter(":hidden");return d.each(function(){var e=t(this);e.data("style-cache",e.attr("style"))}),d.css("display","block"),s.byRow&&!s.target&&(h.each(function(){var e=t(this),o=e.css("display");"inline-block"!==o&&"flex"!==o&&"inline-flex"!==o&&(o="block"),e.data("style-cache",e.attr("style")),e.css({display:o,"padding-top":"0", +"padding-bottom":"0","margin-top":"0","margin-bottom":"0","border-top-width":"0","border-bottom-width":"0",height:"100px",overflow:"hidden"})}),l=a(h),h.each(function(){var e=t(this);e.attr("style",e.data("style-cache")||"")})),t.each(l,function(e,o){var a=t(o),n=0;if(s.target)n=s.target.outerHeight(!1);else{if(s.byRow&&a.length<=1)return void a.css(s.property,"");a.each(function(){var e=t(this),o=e.attr("style"),i=e.css("display");"inline-block"!==i&&"flex"!==i&&"inline-flex"!==i&&(i="block");var a={ +display:i};a[s.property]="",e.css(a),e.outerHeight(!1)>n&&(n=e.outerHeight(!1)),o?e.attr("style",o):e.css("display","")})}a.each(function(){var e=t(this),o=0;s.target&&e.is(s.target)||("border-box"!==e.css("box-sizing")&&(o+=i(e.css("border-top-width"))+i(e.css("border-bottom-width")),o+=i(e.css("padding-top"))+i(e.css("padding-bottom"))),e.css(s.property,n-o+"px"))})}),d.each(function(){var e=t(this);e.attr("style",e.data("style-cache")||null)}),r._maintainScroll&&t(window).scrollTop(c/p*t("html").outerHeight(!0)), +this},r._applyDataApi=function(){var e={};t("[data-match-height], [data-mh]").each(function(){var o=t(this),i=o.attr("data-mh")||o.attr("data-match-height");i in e?e[i]=e[i].add(o):e[i]=o}),t.each(e,function(){this.matchHeight(!0)})};var s=function(e){r._beforeUpdate&&r._beforeUpdate(e,r._groups),t.each(r._groups,function(){r._apply(this.elements,this.options)}),r._afterUpdate&&r._afterUpdate(e,r._groups)};r._update=function(i,a){if(a&&"resize"===a.type){var n=t(window).width();if(n===e)return;e=n; +}i?-1===o&&(o=setTimeout(function(){s(a),o=-1},r._throttle)):s(a)},t(r._applyDataApi),t(window).bind("load",function(t){r._update(!1,t)}),t(window).bind("resize orientationchange",function(t){r._update(!0,t)})}); \ No newline at end of file diff --git a/assets/vendors/js/ui/jquery.sticky-kit.min.js b/assets/vendors/js/ui/jquery.sticky-kit.min.js new file mode 100644 index 0000000..24e13d5 --- /dev/null +++ b/assets/vendors/js/ui/jquery.sticky-kit.min.js @@ -0,0 +1,10 @@ +/* + Sticky-kit v1.1.3 | MIT | Leaf Corcoran 2015 | http://leafo.net +*/ +(function(){var c,f;c=window.jQuery;f=c(window);c.fn.stick_in_parent=function(b){var A,w,J,n,B,K,p,q,L,k,E,t;null==b&&(b={});t=b.sticky_class;B=b.inner_scrolling;E=b.recalc_every;k=b.parent;q=b.offset_top;p=b.spacer;w=b.bottoming;null==q&&(q=0);null==k&&(k=void 0);null==B&&(B=!0);null==t&&(t="is_stuck");A=c(document);null==w&&(w=!0);L=function(a){var b;return window.getComputedStyle?(a=window.getComputedStyle(a[0]),b=parseFloat(a.getPropertyValue("width"))+parseFloat(a.getPropertyValue("margin-left"))+ +parseFloat(a.getPropertyValue("margin-right")),"border-box"!==a.getPropertyValue("box-sizing")&&(b+=parseFloat(a.getPropertyValue("border-left-width"))+parseFloat(a.getPropertyValue("border-right-width"))+parseFloat(a.getPropertyValue("padding-left"))+parseFloat(a.getPropertyValue("padding-right"))),b):a.outerWidth(!0)};J=function(a,b,n,C,F,u,r,G){var v,H,m,D,I,d,g,x,y,z,h,l;if(!a.data("sticky_kit")){a.data("sticky_kit",!0);I=A.height();g=a.parent();null!=k&&(g=g.closest(k));if(!g.length)throw"failed to find stick parent"; +v=m=!1;(h=null!=p?p&&a.closest(p):c("
        "))&&h.css("position",a.css("position"));x=function(){var d,f,e;if(!G&&(I=A.height(),d=parseInt(g.css("border-top-width"),10),f=parseInt(g.css("padding-top"),10),b=parseInt(g.css("padding-bottom"),10),n=g.offset().top+d+f,C=g.height(),m&&(v=m=!1,null==p&&(a.insertAfter(h),h.detach()),a.css({position:"",top:"",width:"",bottom:""}).removeClass(t),e=!0),F=a.offset().top-(parseInt(a.css("margin-top"),10)||0)-q,u=a.outerHeight(!0),r=a.css("float"),h&&h.css({width:L(a), +height:u,display:a.css("display"),"vertical-align":a.css("vertical-align"),"float":r}),e))return l()};x();if(u!==C)return D=void 0,d=q,z=E,l=function(){var c,l,e,k;if(!G&&(e=!1,null!=z&&(--z,0>=z&&(z=E,x(),e=!0)),e||A.height()===I||x(),e=f.scrollTop(),null!=D&&(l=e-D),D=e,m?(w&&(k=e+u+d>C+n,v&&!k&&(v=!1,a.css({position:"fixed",bottom:"",top:d}).trigger("sticky_kit:unbottom"))),ec&&!v&&(d-=l,d=Math.max(c-u,d),d=Math.min(q,d),m&&a.css({top:d+"px"})))):e>F&&(m=!0,c={position:"fixed",top:d},c.width="border-box"===a.css("box-sizing")?a.outerWidth()+"px":a.width()+"px",a.css(c).addClass(t),null==p&&(a.after(h),"left"!==r&&"right"!==r||h.append(a)),a.trigger("sticky_kit:stick")),m&&w&&(null==k&&(k=e+u+d>C+n),!v&&k)))return v=!0,"static"===g.css("position")&&g.css({position:"relative"}),a.css({position:"absolute",bottom:b,top:"auto"}).trigger("sticky_kit:bottom")}, +y=function(){x();return l()},H=function(){G=!0;f.off("touchmove",l);f.off("scroll",l);f.off("resize",y);c(document.body).off("sticky_kit:recalc",y);a.off("sticky_kit:detach",H);a.removeData("sticky_kit");a.css({position:"",bottom:"",top:"",width:""});g.position("position","");if(m)return null==p&&("left"!==r&&"right"!==r||a.insertAfter(h),h.remove()),a.removeClass(t)},f.on("touchmove",l),f.on("scroll",l),f.on("resize",y),c(document.body).on("sticky_kit:recalc",y),a.on("sticky_kit:detach",H),setTimeout(l, +0)}};n=0;for(K=this.length;n dwh) ? dwh - scrollTop : 0; + + for (var i = 0, l = sticked.length; i < l; i++) { + var s = sticked[i], + elementTop = s.stickyWrapper.offset().top, + etse = elementTop - s.topSpacing - extra; + + //update height in case of dynamic content + s.stickyWrapper.css('height', s.stickyElement.outerHeight()); + + if (scrollTop <= etse) { + if (s.currentTop !== null) { + s.stickyElement + .css({ + 'width': '', + 'position': '', + 'top': '', + 'z-index': '' + }); + s.stickyElement.parent().removeClass(s.className); + s.stickyElement.trigger('sticky-end', [s]); + s.currentTop = null; + } + } + else { + var newTop = documentHeight - s.stickyElement.outerHeight() + - s.topSpacing - s.bottomSpacing - scrollTop - extra; + if (newTop < 0) { + newTop = newTop + s.topSpacing; + } else { + newTop = s.topSpacing; + } + if (s.currentTop !== newTop) { + var newWidth; + if (s.getWidthFrom) { + newWidth = $(s.getWidthFrom).width() || null; + } else if (s.widthFromWrapper) { + newWidth = s.stickyWrapper.width(); + } + if (newWidth == null) { + newWidth = s.stickyElement.width(); + } + s.stickyElement + .css('width', newWidth) + .css('position', 'fixed') + .css('top', newTop) + .css('z-index', s.zIndex); + + s.stickyElement.parent().addClass(s.className); + + if (s.currentTop === null) { + s.stickyElement.trigger('sticky-start', [s]); + } else { + // sticky is started but it have to be repositioned + s.stickyElement.trigger('sticky-update', [s]); + } + + if (s.currentTop === s.topSpacing && s.currentTop > newTop || s.currentTop === null && newTop < s.topSpacing) { + // just reached bottom || just started to stick but bottom is already reached + s.stickyElement.trigger('sticky-bottom-reached', [s]); + } else if(s.currentTop !== null && newTop === s.topSpacing && s.currentTop < newTop) { + // sticky is started && sticked at topSpacing && overflowing from top just finished + s.stickyElement.trigger('sticky-bottom-unreached', [s]); + } + + s.currentTop = newTop; + } + + // Check if sticky has reached end of container and stop sticking + var stickyWrapperContainer = s.stickyWrapper.parent(); + var unstick = (s.stickyElement.offset().top + s.stickyElement.outerHeight() >= stickyWrapperContainer.offset().top + stickyWrapperContainer.outerHeight()) && (s.stickyElement.offset().top <= s.topSpacing); + + if( unstick ) { + s.stickyElement + .css('position', 'absolute') + .css('top', '') + .css('bottom', 0) + .css('z-index', ''); + } else { + s.stickyElement + .css('position', 'fixed') + .css('top', newTop) + .css('bottom', '') + .css('z-index', s.zIndex); + } + } + } + }, + resizer = function() { + windowHeight = $window.height(); + + for (var i = 0, l = sticked.length; i < l; i++) { + var s = sticked[i]; + var newWidth = null; + if (s.getWidthFrom) { + if (s.responsiveWidth) { + newWidth = $(s.getWidthFrom).width(); + } + } else if(s.widthFromWrapper) { + newWidth = s.stickyWrapper.width(); + } + if (newWidth != null) { + s.stickyElement.css('width', newWidth); + } + } + }, + methods = { + init: function(options) { + return this.each(function() { + var o = $.extend({}, defaults, options); + var stickyElement = $(this); + + var stickyId = stickyElement.attr('id'); + var wrapperId = stickyId ? stickyId + '-' + defaults.wrapperClassName : defaults.wrapperClassName; + var wrapper = $('
        ') + .attr('id', wrapperId) + .addClass(o.wrapperClassName); + + stickyElement.wrapAll(function() { + if ($(this).parent("#" + wrapperId).length == 0) { + return wrapper; + } +}); + + var stickyWrapper = stickyElement.parent(); + + if (o.center) { + stickyWrapper.css({width:stickyElement.outerWidth(),marginLeft:"auto",marginRight:"auto"}); + } + + if (stickyElement.css("float") === "right") { + stickyElement.css({"float":"none"}).parent().css({"float":"right"}); + } + + o.stickyElement = stickyElement; + o.stickyWrapper = stickyWrapper; + o.currentTop = null; + + sticked.push(o); + + methods.setWrapperHeight(this); + methods.setupChangeListeners(this); + }); + }, + + setWrapperHeight: function(stickyElement) { + var element = $(stickyElement); + var stickyWrapper = element.parent(); + if (stickyWrapper) { + stickyWrapper.css('height', element.outerHeight()); + } + }, + + setupChangeListeners: function(stickyElement) { + if (window.MutationObserver) { + var mutationObserver = new window.MutationObserver(function(mutations) { + if (mutations[0].addedNodes.length || mutations[0].removedNodes.length) { + methods.setWrapperHeight(stickyElement); + } + }); + mutationObserver.observe(stickyElement, {subtree: true, childList: true}); + } else { + if (window.addEventListener) { + stickyElement.addEventListener('DOMNodeInserted', function() { + methods.setWrapperHeight(stickyElement); + }, false); + stickyElement.addEventListener('DOMNodeRemoved', function() { + methods.setWrapperHeight(stickyElement); + }, false); + } else if (window.attachEvent) { + stickyElement.attachEvent('onDOMNodeInserted', function() { + methods.setWrapperHeight(stickyElement); + }); + stickyElement.attachEvent('onDOMNodeRemoved', function() { + methods.setWrapperHeight(stickyElement); + }); + } + } + }, + update: scroller, + unstick: function(options) { + return this.each(function() { + var that = this; + var unstickyElement = $(that); + + var removeIdx = -1; + var i = sticked.length; + while (i-- > 0) { + if (sticked[i].stickyElement.get(0) === that) { + splice.call(sticked,i,1); + removeIdx = i; + } + } + if(removeIdx !== -1) { + unstickyElement.unwrap(); + unstickyElement + .css({ + 'width': '', + 'position': '', + 'top': '', + 'float': '', + 'z-index': '' + }) + ; + } + }); + } + }; + + // should be more efficient than using $window.scroll(scroller) and $window.resize(resizer): + if (window.addEventListener) { + window.addEventListener('scroll', scroller, false); + window.addEventListener('resize', resizer, false); + } else if (window.attachEvent) { + window.attachEvent('onscroll', scroller); + window.attachEvent('onresize', resizer); + } + + $.fn.sticky = function(method) { + if (methods[method]) { + return methods[method].apply(this, slice.call(arguments, 1)); + } else if (typeof method === 'object' || !method ) { + return methods.init.apply( this, arguments ); + } else { + $.error('Method ' + method + ' does not exist on jQuery.sticky'); + } + }; + + $.fn.unstick = function(method) { + if (methods[method]) { + return methods[method].apply(this, slice.call(arguments, 1)); + } else if (typeof method === 'object' || !method ) { + return methods.unstick.apply( this, arguments ); + } else { + $.error('Method ' + method + ' does not exist on jQuery.sticky'); + } + }; + $(function() { + setTimeout(scroller, 0); + }); +})); diff --git a/assets/vendors/js/ui/popper.min.js b/assets/vendors/js/ui/popper.min.js new file mode 100644 index 0000000..62a347b --- /dev/null +++ b/assets/vendors/js/ui/popper.min.js @@ -0,0 +1,7 @@ +/* popper JS */ +/* + Copyright (C) Federico Zivolo 2019 + Distributed under the MIT License (license terms are at http://opensource.org/licenses/MIT). + */ + var e='undefined'!=typeof window&&'undefined'!=typeof document;const t=['Edge','Trident','Firefox'];let o=0;for(let n=0;n{t||(t=!0,window.Promise.resolve().then(()=>{t=!1,e()}))}}function i(e){let t=!1;return()=>{t||(t=!0,setTimeout(()=>{t=!1,e()},o))}}const r=e&&window.Promise;var p=r?n:i;function d(e){return e&&'[object Function]'==={}.toString.call(e)}function s(e,t){if(1!==e.nodeType)return[];const o=e.ownerDocument.defaultView,n=o.getComputedStyle(e,null);return t?n[t]:n}function f(e){return'HTML'===e.nodeName?e:e.parentNode||e.host}function a(e){if(!e)return document.body;switch(e.nodeName){case'HTML':case'BODY':return e.ownerDocument.body;case'#document':return e.body;}const{overflow:t,overflowX:o,overflowY:n}=s(e);return /(auto|scroll|overlay)/.test(t+n+o)?e:a(f(e))}const l=e&&!!(window.MSInputMethodContext&&document.documentMode),m=e&&/MSIE 10/.test(navigator.userAgent);function h(e){return 11===e?l:10===e?m:l||m}function c(e){if(!e)return document.documentElement;const t=h(10)?document.body:null;let o=e.offsetParent||null;for(;o===t&&e.nextElementSibling;)o=(e=e.nextElementSibling).offsetParent;const n=o&&o.nodeName;return n&&'BODY'!==n&&'HTML'!==n?-1!==['TH','TD','TABLE'].indexOf(o.nodeName)&&'static'===s(o,'position')?c(o):o:e?e.ownerDocument.documentElement:document.documentElement}function u(e){const{nodeName:t}=e;return'BODY'!==t&&('HTML'===t||c(e.firstElementChild)===e)}function g(e){return null===e.parentNode?e:g(e.parentNode)}function b(e,t){if(!e||!e.nodeType||!t||!t.nodeType)return document.documentElement;const o=e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING,n=o?e:t,i=o?t:e,r=document.createRange();r.setStart(n,0),r.setEnd(i,0);const{commonAncestorContainer:p}=r;if(e!==p&&t!==p||n.contains(i))return u(p)?p:c(p);const d=g(e);return d.host?b(d.host,t):b(e,g(t).host)}function w(e,t='top'){const o='top'===t?'scrollTop':'scrollLeft',n=e.nodeName;if('BODY'===n||'HTML'===n){const t=e.ownerDocument.documentElement,n=e.ownerDocument.scrollingElement||t;return n[o]}return e[o]}function y(e,t,o=!1){const n=w(t,'top'),i=w(t,'left'),r=o?-1:1;return e.top+=n*r,e.bottom+=n*r,e.left+=i*r,e.right+=i*r,e}function E(e,t){const o='x'===t?'Left':'Top',n='Left'==o?'Right':'Bottom';return parseFloat(e[`border${o}Width`],10)+parseFloat(e[`border${n}Width`],10)}function x(e,t,o,n){return Math.max(t[`offset${e}`],t[`scroll${e}`],o[`client${e}`],o[`offset${e}`],o[`scroll${e}`],h(10)?parseInt(o[`offset${e}`])+parseInt(n[`margin${'Height'===e?'Top':'Left'}`])+parseInt(n[`margin${'Height'===e?'Bottom':'Right'}`]):0)}function v(e){const t=e.body,o=e.documentElement,n=h(10)&&getComputedStyle(o);return{height:x('Height',t,o,n),width:x('Width',t,o,n)}}var O=Object.assign||function(e){for(var t,o=1;oO({key:e},d[e],{area:H(d[e])})).sort((e,t)=>t.area-e.area),f=s.filter(({width:e,height:t})=>e>=o.clientWidth&&t>=o.clientHeight),a=0t[e])}function M(e,t,o){o=o.split('-')[0];const n=k(e),i={width:n.width,height:n.height},r=-1!==['right','left'].indexOf(o),p=r?'top':'left',d=r?'left':'top',s=r?'height':'width',f=r?'width':'height';return i[p]=t[p]+t[s]/2-n[s]/2,i[d]=o===d?t[d]-n[f]:t[A(d)],i}function F(e,t){return Array.prototype.find?e.find(t):e.filter(t)[0]}function I(e,t,o){if(Array.prototype.findIndex)return e.findIndex((e)=>e[t]===o);const n=F(e,(e)=>e[t]===o);return e.indexOf(n)}function R(e,t,o){const n=void 0===o?e:e.slice(0,I(e,'name',o));return n.forEach((e)=>{e['function']&&console.warn('`modifier.function` is deprecated, use `modifier.fn`!');const o=e['function']||e.fn;e.enabled&&d(o)&&(t.offsets.popper=L(t.offsets.popper),t.offsets.reference=L(t.offsets.reference),t=o(t,e))}),t}function U(){if(this.state.isDestroyed)return;let e={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};e.offsets.reference=W(this.state,this.popper,this.reference,this.options.positionFixed),e.placement=B(this.options.placement,e.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),e.originalPlacement=e.placement,e.positionFixed=this.options.positionFixed,e.offsets.popper=M(this.popper,e.offsets.reference,e.placement),e.offsets.popper.position=this.options.positionFixed?'fixed':'absolute',e=R(this.modifiers,e),this.state.isCreated?this.options.onUpdate(e):(this.state.isCreated=!0,this.options.onCreate(e))}function Y(e,t){return e.some(({name:e,enabled:o})=>o&&e===t)}function V(e){const t=[!1,'ms','Webkit','Moz','O'],o=e.charAt(0).toUpperCase()+e.slice(1);for(let n=0;n{e.removeEventListener('scroll',t.updateBound)}),t.updateBound=null,t.scrollParents=[],t.scrollElement=null,t.eventsEnabled=!1,t}function X(){this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=_(this.reference,this.state))}function J(e){return''!==e&&!isNaN(parseFloat(e))&&isFinite(e)}function Q(e,t){Object.keys(t).forEach((o)=>{let n='';-1!==['width','height','top','right','bottom','left'].indexOf(o)&&J(t[o])&&(n='px'),e.style[o]=t[o]+n})}function Z(e,t){Object.keys(t).forEach(function(o){const n=t[o];!1===n?e.removeAttribute(o):e.setAttribute(o,t[o])})}function $(e){return Q(e.instance.popper,e.styles),Z(e.instance.popper,e.attributes),e.arrowElement&&Object.keys(e.arrowStyles).length&&Q(e.arrowElement,e.arrowStyles),e}function ee(e,t,o,n,i){const r=W(i,t,e,o.positionFixed),p=B(o.placement,r,t,e,o.modifiers.flip.boundariesElement,o.modifiers.flip.padding);return t.setAttribute('x-placement',p),Q(t,{position:o.positionFixed?'fixed':'absolute'}),o}function te(e,t){const{popper:o,reference:n}=e.offsets,{round:i,floor:r}=Math,p=(e)=>e,d=i(n.width),s=i(o.width),f=-1!==['left','right'].indexOf(e.placement),a=-1!==e.placement.indexOf('-'),l=t?f||a||d%2==s%2?i:r:p,m=t?i:p;return{left:l(1==d%2&&1==s%2&&!a&&t?o.left-1:o.left),top:m(o.top),bottom:m(o.bottom),right:l(o.right)}}const oe=e&&/Firefox/i.test(navigator.userAgent);function ne(e,t){const{x:o,y:n}=t,{popper:i}=e.offsets,r=F(e.instance.modifiers,(e)=>'applyStyle'===e.name).gpuAcceleration;void 0!==r&&console.warn('WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!');const p=void 0===r?t.gpuAcceleration:r,d=c(e.instance.popper),s=S(d),f={position:i.position},a=te(e,2>window.devicePixelRatio||!oe),l='bottom'===o?'top':'bottom',m='right'===n?'left':'right',h=V('transform');let u,g;if(g='bottom'==l?'HTML'===d.nodeName?-d.clientHeight+a.bottom:-s.height+a.bottom:a.top,u='right'==m?'HTML'===d.nodeName?-d.clientWidth+a.right:-s.width+a.right:a.left,p&&h)f[h]=`translate3d(${u}px, ${g}px, 0)`,f[l]=0,f[m]=0,f.willChange='transform';else{const e='bottom'==l?-1:1,t='right'==m?-1:1;f[l]=g*e,f[m]=u*t,f.willChange=`${l}, ${m}`}const b={"x-placement":e.placement};return e.attributes=O({},b,e.attributes),e.styles=O({},f,e.styles),e.arrowStyles=O({},e.offsets.arrow,e.arrowStyles),e}function ie(e,t,o){const n=F(e,({name:e})=>e===t),i=!!n&&e.some((e)=>e.name===o&&e.enabled&&e.orderi[m]&&(e.offsets.popper[a]+=r[a]+h-i[m]),e.offsets.popper=L(e.offsets.popper);const c=r[a]+r[d]/2-h/2,u=s(e.instance.popper),g=parseFloat(u[`margin${f}`],10),b=parseFloat(u[`border${f}Width`],10);let w=c-e.offsets.popper[a]-g-b;return w=Math.max(Math.min(i[d]-h,w),0),e.arrowElement=o,e.offsets.arrow={[a]:Math.round(w),[l]:''},e}function pe(e){if('end'===e)return'start';return'start'===e?'end':e}var de=['auto-start','auto','auto-end','top-start','top','top-end','right-start','right','right-end','bottom-end','bottom','bottom-start','left-end','left','left-start'];const se=de.slice(3);function fe(e,t=!1){const o=se.indexOf(e),n=se.slice(o+1).concat(se.slice(0,o));return t?n.reverse():n}const ae={FLIP:'flip',CLOCKWISE:'clockwise',COUNTERCLOCKWISE:'counterclockwise'};function le(e,t){if(Y(e.instance.modifiers,'inner'))return e;if(e.flipped&&e.placement===e.originalPlacement)return e;const o=P(e.instance.popper,e.instance.reference,t.padding,t.boundariesElement,e.positionFixed);let n=e.placement.split('-')[0],i=A(n),r=e.placement.split('-')[1]||'',p=[];switch(t.behavior){case ae.FLIP:p=[n,i];break;case ae.CLOCKWISE:p=fe(n);break;case ae.COUNTERCLOCKWISE:p=fe(n,!0);break;default:p=t.behavior;}return p.forEach((d,s)=>{if(n!==d||p.length===s+1)return e;n=e.placement.split('-')[0],i=A(n);const f=e.offsets.popper,a=e.offsets.reference,l=Math.floor,m='left'===n&&l(f.right)>l(a.left)||'right'===n&&l(f.left)l(a.top)||'bottom'===n&&l(f.top)l(o.right),u=l(f.top)l(o.bottom),b='left'===n&&h||'right'===n&&c||'top'===n&&u||'bottom'===n&&g,w=-1!==['top','bottom'].indexOf(n),y=!!t.flipVariations&&(w&&'start'===r&&h||w&&'end'===r&&c||!w&&'start'===r&&u||!w&&'end'===r&&g);(m||b||y)&&(e.flipped=!0,(m||b)&&(n=p[s+1]),y&&(r=pe(r)),e.placement=n+(r?'-'+r:''),e.offsets.popper=O({},e.offsets.popper,M(e.instance.popper,e.offsets.reference,e.placement)),e=R(e.instance.modifiers,e,'flip'))}),e}function me(e){const{popper:t,reference:o}=e.offsets,n=e.placement.split('-')[0],i=Math.floor,r=-1!==['top','bottom'].indexOf(n),p=r?'right':'bottom',d=r?'left':'top',s=r?'width':'height';return t[p]i(o[p])&&(e.offsets.popper[d]=i(o[p])),e}function he(e,t,o,n){var i=Math.max;const r=e.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),p=+r[1],d=r[2];if(!p)return e;if(0===d.indexOf('%')){let e;switch(d){case'%p':e=o;break;case'%':case'%r':default:e=n;}const i=L(e);return i[t]/100*p}if('vh'===d||'vw'===d){let e;return e='vh'===d?i(document.documentElement.clientHeight,window.innerHeight||0):i(document.documentElement.clientWidth,window.innerWidth||0),e/100*p}return p}function ce(e,t,o,n){const i=[0,0],r=-1!==['right','left'].indexOf(n),p=e.split(/(\+|\-)/).map((e)=>e.trim()),d=p.indexOf(F(p,(e)=>-1!==e.search(/,|\s/)));p[d]&&-1===p[d].indexOf(',')&&console.warn('Offsets separated by white space(s) are deprecated, use a comma (,) instead.');const s=/\s*,\s*|\s+/;let f=-1===d?[p]:[p.slice(0,d).concat([p[d].split(s)[0]]),[p[d].split(s)[1]].concat(p.slice(d+1))];return f=f.map((e,n)=>{const i=(1===n?!r:r)?'height':'width';let p=!1;return e.reduce((e,t)=>''===e[e.length-1]&&-1!==['+','-'].indexOf(t)?(e[e.length-1]=t,p=!0,e):p?(e[e.length-1]+=t,p=!1,e):e.concat(t),[]).map((e)=>he(e,i,t,o))}),f.forEach((e,t)=>{e.forEach((o,n)=>{J(o)&&(i[t]+=o*('-'===e[n-1]?-1:1))})}),i}function ue(e,{offset:t}){const{placement:o,offsets:{popper:n,reference:i}}=e,r=o.split('-')[0];let p;return p=J(+t)?[+t,0]:ce(t,n,i,r),'left'===r?(n.top+=p[0],n.left-=p[1]):'right'===r?(n.top+=p[0],n.left+=p[1]):'top'===r?(n.left+=p[0],n.top-=p[1]):'bottom'===r&&(n.left+=p[0],n.top+=p[1]),e.popper=n,e}function ge(e,t){let o=t.boundariesElement||c(e.instance.popper);e.instance.reference===o&&(o=c(o));const n=V('transform'),i=e.instance.popper.style,{top:r,left:p,[n]:d}=i;i.top='',i.left='',i[n]='';const s=P(e.instance.popper,e.instance.reference,t.padding,o,e.positionFixed);i.top=r,i.left=p,i[n]=d,t.boundaries=s;const f=t.priority;let a=e.offsets.popper;const l={primary(e){let o=a[e];return a[e]s[e]&&!t.escapeWithReference&&(n=Math.min(a[o],s[e]-('right'===e?a.width:a.height))),{[o]:n}}};return f.forEach((e)=>{const t=-1===['left','top'].indexOf(e)?'secondary':'primary';a=O({},a,l[t](e))}),e.offsets.popper=a,e}function be(e){const t=e.placement,o=t.split('-')[0],n=t.split('-')[1];if(n){const{reference:t,popper:i}=e.offsets,r=-1!==['bottom','top'].indexOf(o),p=r?'left':'top',d=r?'width':'height',s={start:{[p]:t[p]},end:{[p]:t[p]+t[d]-i[d]}};e.offsets.popper=O({},i,s[n])}return e}function we(e){if(!ie(e.instance.modifiers,'hide','preventOverflow'))return e;const t=e.offsets.reference,o=F(e.instance.modifiers,(e)=>'preventOverflow'===e.name).boundaries;if(t.bottomo.right||t.top>o.bottom||t.right{},onUpdate:()=>{},modifiers:Ee};class ve{constructor(e,t,o={}){this.scheduleUpdate=()=>requestAnimationFrame(this.update),this.update=p(this.update.bind(this)),this.options=O({},ve.Defaults,o),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=e&&e.jquery?e[0]:e,this.popper=t&&t.jquery?t[0]:t,this.options.modifiers={},Object.keys(O({},ve.Defaults.modifiers,o.modifiers)).forEach((e)=>{this.options.modifiers[e]=O({},ve.Defaults.modifiers[e]||{},o.modifiers?o.modifiers[e]:{})}),this.modifiers=Object.keys(this.options.modifiers).map((e)=>O({name:e},this.options.modifiers[e])).sort((e,t)=>e.order-t.order),this.modifiers.forEach((e)=>{e.enabled&&d(e.onLoad)&&e.onLoad(this.reference,this.popper,this.options,e,this.state)}),this.update();const n=this.options.eventsEnabled;n&&this.enableEventListeners(),this.state.eventsEnabled=n}update(){return U.call(this)}destroy(){return j.call(this)}enableEventListeners(){return G.call(this)}disableEventListeners(){return X.call(this)}}ve.Utils=('undefined'==typeof window?global:window).PopperUtils,ve.placements=de,ve.Defaults=xe;export default ve; +//# sourceMappingURL=popper.min.js.map \ No newline at end of file diff --git a/assets/vendors/js/ui/prism-treeview.js b/assets/vendors/js/ui/prism-treeview.js new file mode 100644 index 0000000..f7a1b56 --- /dev/null +++ b/assets/vendors/js/ui/prism-treeview.js @@ -0,0 +1,64 @@ +Prism.languages.treeview = { + "treeview-part": { + pattern: /(^|\n).+/, + inside: { + "entry-line": [ + { + pattern: /\|-- |├── /, + alias: "line-h" + }, + { + pattern: /\| |│ /, + alias: "line-v" + }, + { + pattern: /`-- |└── /, + alias: "line-v-last" + }, + { + pattern: / {4}/, + alias: "line-v-gap" + } + ], + "entry-name": { + pattern: /.*\S.*/, + inside: { + // symlink + "operator": / -> /, + } + } + } + } +}; + +Prism.hooks.add('wrap', function(env) { + if (env.language === 'treeview') { + // Remove line breaks + if(env.type === 'treeview-part') { + env.content = env.content.replace(/\n/g,'')+'
        '; + } + if(env.type === 'entry-name') { + if(/(^|[^\\])\/\s*$/.test(env.content)) { + env.content = env.content.slice(0,-1); + // This is a folder + env.classes.push('dir'); + } else { + + if(/(^|[^\\])[=*|]\s*$/.test(env.content)) { + env.content = env.content.slice(0,-1); + } + + var parts = env.content.toLowerCase().split('.'); + while (parts.length > 1) { + parts.shift(); + // Ex. 'foo.min.js' would become 'foo.min.js' + env.classes.push('ext-' + parts.join('-')); + } + } + + if(env.content.charAt(0)==='.') { + env.classes.push('dotfile'); + } + } + } +}); \ No newline at end of file diff --git a/assets/vendors/js/ui/prism.min.js b/assets/vendors/js/ui/prism.min.js new file mode 100644 index 0000000..89a5566 --- /dev/null +++ b/assets/vendors/js/ui/prism.min.js @@ -0,0 +1,30 @@ +/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript+ruby+css-extras+git+jade+json+php+php-extras+sass+scss+sql&plugins=line-highlight+line-numbers+show-invisibles+autolinker+file-highlight+show-language+jsonp-highlight+highlight-keywords+remove-initial-line-feed+autoloader+unescaped-markup+command-line+normalize-whitespace+keep-markup */ +var _self="undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{},Prism=function(){var e=/\blang(?:uage)?-(\w+)\b/i,t=0,n=_self.Prism={util:{encode:function(e){return e instanceof a?new a(e.type,n.util.encode(e.content),e.alias):"Array"===n.util.type(e)?e.map(n.util.encode):e.replace(/&/g,"&").replace(/e.length)break e;if(!(m instanceof a)){u.lastIndex=0;var y=u.exec(m),v=1;if(!y&&h&&p!=r.length-1){var b=r[p+1].matchedStr||r[p+1],k=m+b;if(p=m.length)continue;var _=y.index+y[0].length,P=m.length+b.length;if(v=3,P>=_){if(r[p+1].greedy)continue;v=2,k=k.slice(0,P)}m=k}if(y){g&&(f=y[1].length);var w=y.index+f,y=y[0].slice(f),_=w+y.length,S=m.slice(0,w),O=m.slice(_),j=[p,v];S&&j.push(S);var A=new a(i,c?n.tokenize(y,c):y,d,y,h);j.push(A),O&&j.push(O),Array.prototype.splice.apply(r,j)}}}}}return r},hooks:{all:{},add:function(e,t){var a=n.hooks.all;a[e]=a[e]||[],a[e].push(t)},run:function(e,t){var a=n.hooks.all[e];if(a&&a.length)for(var r,l=0;r=a[l++];)r(t)}}},a=n.Token=function(e,t,n,a,r){this.type=e,this.content=t,this.alias=n,this.matchedStr=a||null,this.greedy=!!r};if(a.stringify=function(e,t,r){if("string"==typeof e)return e;if("Array"===n.util.type(e))return e.map(function(n){return a.stringify(n,t,e)}).join("");var l={type:e.type,content:a.stringify(e.content,t,r),tag:"span",classes:["token",e.type],attributes:{},language:t,parent:r};if("comment"==l.type&&(l.attributes.spellcheck="true"),e.alias){var i="Array"===n.util.type(e.alias)?e.alias:[e.alias];Array.prototype.push.apply(l.classes,i)}n.hooks.run("wrap",l);var o="";for(var s in l.attributes)o+=(o?" ":"")+s+'="'+(l.attributes[s]||"")+'"';return"<"+l.tag+' class="'+l.classes.join(" ")+'" '+o+">"+l.content+""},!_self.document)return _self.addEventListener?(_self.addEventListener("message",function(e){var t=JSON.parse(e.data),a=t.language,r=t.code,l=t.immediateClose;_self.postMessage(n.highlight(r,n.languages[a],a)),l&&_self.close()},!1),_self.Prism):_self.Prism;var r=document.currentScript||[].slice.call(document.getElementsByTagName("script")).pop();return r&&(n.filename=r.src,document.addEventListener&&!r.hasAttribute("data-manual")&&document.addEventListener("DOMContentLoaded",n.highlightAll)),_self.Prism}();"undefined"!=typeof module&&module.exports&&(module.exports=Prism),"undefined"!=typeof global&&(global.Prism=Prism); +Prism.languages.markup={comment://,prolog:/<\?[\w\W]+?\?>/,doctype://,cdata://i,tag:{pattern:/<\/?(?!\d)[^\s>\/=.$<]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\w\W])*\1|[^\s'">=]+))?)*\s*\/?>/i,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=(?:('|")[\w\W]*?(\1)|[^\s>]+)/i,inside:{punctuation:/[=>"']/}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i},Prism.hooks.add("wrap",function(a){"entity"===a.type&&(a.attributes.title=a.content.replace(/&/,"&"))}),Prism.languages.xml=Prism.languages.markup,Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup; +Prism.languages.css={comment:/\/\*[\w\W]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*\{))/i,inside:{rule:/@[\w-]+/}},url:/url\((?:(["'])(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,selector:/[^\{\}\s][^\{\};]*?(?=\s*\{)/,string:/("|')(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1/,property:/(\b|\B)[\w-]+(?=\s*:)/i,important:/\B!important\b/i,"function":/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:]/},Prism.languages.css.atrule.inside.rest=Prism.util.clone(Prism.languages.css),Prism.languages.markup&&(Prism.languages.insertBefore("markup","tag",{style:{pattern:/()[\w\W]*?(?=<\/style>)/i,lookbehind:!0,inside:Prism.languages.css,alias:"language-css"}}),Prism.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|').*?\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:Prism.languages.markup.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:Prism.languages.css}},alias:"language-css"}},Prism.languages.markup.tag)); +Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\w\W]*?\*\//,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0}],string:{pattern:/(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/i,lookbehind:!0,inside:{punctuation:/(\.|\\)/}},keyword:/\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,"boolean":/\b(true|false)\b/,"function":/[a-z0-9_]+(?=\()/i,number:/\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)\b/i,operator:/--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,punctuation:/[{}[\];(),.:]/}; +Prism.languages.javascript=Prism.languages.extend("clike",{keyword:/\b(as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,number:/\b-?(0x[\dA-Fa-f]+|0b[01]+|0o[0-7]+|\d*\.?\d+([Ee][+-]?\d+)?|NaN|Infinity)\b/,"function":/[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*(?=\()/i}),Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/(^|[^\/])\/(?!\/)(\[.+?]|\\.|[^\/\\\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})]))/,lookbehind:!0,greedy:!0}}),Prism.languages.insertBefore("javascript","class-name",{"template-string":{pattern:/`(?:\\\\|\\?[^\\])*?`/,greedy:!0,inside:{interpolation:{pattern:/\$\{[^}]+\}/,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}}}),Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{script:{pattern:/()[\w\W]*?(?=<\/script>)/i,lookbehind:!0,inside:Prism.languages.javascript,alias:"language-javascript"}}),Prism.languages.js=Prism.languages.javascript; +!function(e){e.languages.ruby=e.languages.extend("clike",{comment:/#(?!\{[^\r\n]*?\}).*/,keyword:/\b(alias|and|BEGIN|begin|break|case|class|def|define_method|defined|do|each|else|elsif|END|end|ensure|false|for|if|in|module|new|next|nil|not|or|raise|redo|require|rescue|retry|return|self|super|then|throw|true|undef|unless|until|when|while|yield)\b/});var n={pattern:/#\{[^}]+\}/,inside:{delimiter:{pattern:/^#\{|\}$/,alias:"tag"},rest:e.util.clone(e.languages.ruby)}};e.languages.insertBefore("ruby","keyword",{regex:[{pattern:/%r([^a-zA-Z0-9\s\{\(\[<])(?:[^\\]|\\[\s\S])*?\1[gim]{0,3}/,inside:{interpolation:n}},{pattern:/%r\((?:[^()\\]|\\[\s\S])*\)[gim]{0,3}/,inside:{interpolation:n}},{pattern:/%r\{(?:[^#{}\\]|#(?:\{[^}]+\})?|\\[\s\S])*\}[gim]{0,3}/,inside:{interpolation:n}},{pattern:/%r\[(?:[^\[\]\\]|\\[\s\S])*\][gim]{0,3}/,inside:{interpolation:n}},{pattern:/%r<(?:[^<>\\]|\\[\s\S])*>[gim]{0,3}/,inside:{interpolation:n}},{pattern:/(^|[^\/])\/(?!\/)(\[.+?]|\\.|[^\/\r\n])+\/[gim]{0,3}(?=\s*($|[\r\n,.;})]))/,lookbehind:!0}],variable:/[@$]+[a-zA-Z_][a-zA-Z_0-9]*(?:[?!]|\b)/,symbol:/:[a-zA-Z_][a-zA-Z_0-9]*(?:[?!]|\b)/}),e.languages.insertBefore("ruby","number",{builtin:/\b(Array|Bignum|Binding|Class|Continuation|Dir|Exception|FalseClass|File|Stat|File|Fixnum|Fload|Hash|Integer|IO|MatchData|Method|Module|NilClass|Numeric|Object|Proc|Range|Regexp|String|Struct|TMS|Symbol|ThreadGroup|Thread|Time|TrueClass)\b/,constant:/\b[A-Z][a-zA-Z_0-9]*(?:[?!]|\b)/}),e.languages.ruby.string=[{pattern:/%[qQiIwWxs]?([^a-zA-Z0-9\s\{\(\[<])(?:[^\\]|\\[\s\S])*?\1/,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?\((?:[^()\\]|\\[\s\S])*\)/,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?\{(?:[^#{}\\]|#(?:\{[^}]+\})?|\\[\s\S])*\}/,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?\[(?:[^\[\]\\]|\\[\s\S])*\]/,inside:{interpolation:n}},{pattern:/%[qQiIwWxs]?<(?:[^<>\\]|\\[\s\S])*>/,inside:{interpolation:n}},{pattern:/("|')(#\{[^}]+\}|\\(?:\r?\n|\r)|\\?.)*?\1/,inside:{interpolation:n}}]}(Prism); +Prism.languages.css.selector={pattern:/[^\{\}\s][^\{\}]*(?=\s*\{)/,inside:{"pseudo-element":/:(?:after|before|first-letter|first-line|selection)|::[-\w]+/,"pseudo-class":/:[-\w]+(?:\(.*\))?/,"class":/\.[-:\.\w]+/,id:/#[-:\.\w]+/}},Prism.languages.insertBefore("css","function",{hexcode:/#[\da-f]{3,6}/i,entity:/\\[\da-f]{1,8}/i,number:/[\d%\.]+/}); +Prism.languages.git={comment:/^#.*/m,deleted:/^[-–].*/m,inserted:/^\+.*/m,string:/("|')(\\?.)*?\1/m,command:{pattern:/^.*\$ git .*$/m,inside:{parameter:/\s(--|-)\w+/m}},coord:/^@@.*@@$/m,commit_sha1:/^commit \w{40}$/m}; +!function(e){e.languages.jade={comment:{pattern:/(^([\t ]*))\/\/.*((?:\r?\n|\r)\2[\t ]+.+)*/m,lookbehind:!0},"multiline-script":{pattern:/(^([\t ]*)script\b.*\.[\t ]*)((?:\r?\n|\r(?!\n))(?:\2[\t ]+.+|\s*?(?=\r?\n|\r)))+/m,lookbehind:!0,inside:{rest:e.languages.javascript}},filter:{pattern:/(^([\t ]*)):.+((?:\r?\n|\r(?!\n))(?:\2[\t ]+.+|\s*?(?=\r?\n|\r)))+/m,lookbehind:!0,inside:{"filter-name":{pattern:/^:[\w-]+/,alias:"variable"}}},"multiline-plain-text":{pattern:/(^([\t ]*)[\w\-#.]+\.[\t ]*)((?:\r?\n|\r(?!\n))(?:\2[\t ]+.+|\s*?(?=\r?\n|\r)))+/m,lookbehind:!0},markup:{pattern:/(^[\t ]*)<.+/m,lookbehind:!0,inside:{rest:e.languages.markup}},doctype:{pattern:/((?:^|\n)[\t ]*)doctype(?: .+)?/,lookbehind:!0},"flow-control":{pattern:/(^[\t ]*)(?:if|unless|else|case|when|default|each|while)\b(?: .+)?/m,lookbehind:!0,inside:{each:{pattern:/^each .+? in\b/,inside:{keyword:/\b(?:each|in)\b/,punctuation:/,/}},branch:{pattern:/^(?:if|unless|else|case|when|default|while)\b/,alias:"keyword"},rest:e.languages.javascript}},keyword:{pattern:/(^[\t ]*)(?:block|extends|include|append|prepend)\b.+/m,lookbehind:!0},mixin:[{pattern:/(^[\t ]*)mixin .+/m,lookbehind:!0,inside:{keyword:/^mixin/,"function":/\w+(?=\s*\(|\s*$)/,punctuation:/[(),.]/}},{pattern:/(^[\t ]*)\+.+/m,lookbehind:!0,inside:{name:{pattern:/^\+\w+/,alias:"function"},rest:e.languages.javascript}}],script:{pattern:/(^[\t ]*script(?:(?:&[^(]+)?\([^)]+\))*[\t ]+).+/m,lookbehind:!0,inside:{rest:e.languages.javascript}},"plain-text":{pattern:/(^[\t ]*(?!-)[\w\-#.]*[\w\-](?:(?:&[^(]+)?\([^)]+\))*\/?[\t ]+).+/m,lookbehind:!0},tag:{pattern:/(^[\t ]*)(?!-)[\w\-#.]*[\w\-](?:(?:&[^(]+)?\([^)]+\))*\/?:?/m,lookbehind:!0,inside:{attributes:[{pattern:/&[^(]+\([^)]+\)/,inside:{rest:e.languages.javascript}},{pattern:/\([^)]+\)/,inside:{"attr-value":{pattern:/(=\s*)(?:\{[^}]*\}|[^,)\r\n]+)/,lookbehind:!0,inside:{rest:e.languages.javascript}},"attr-name":/[\w-]+(?=\s*!?=|\s*[,)])/,punctuation:/[!=(),]+/}}],punctuation:/:/}},code:[{pattern:/(^[\t ]*(?:-|!?=)).+/m,lookbehind:!0,inside:{rest:e.languages.javascript}}],punctuation:/[.\-!=|]+/};for(var t="(^([\\t ]*)):{{filter_name}}((?:\\r?\\n|\\r(?!\\n))(?:\\2[\\t ]+.+|\\s*?(?=\\r?\\n|\\r)))+",n=[{filter:"atpl",language:"twig"},{filter:"coffee",language:"coffeescript"},"ejs","handlebars","hogan","less","livescript","markdown","mustache","plates",{filter:"sass",language:"scss"},"stylus","swig"],a={},i=0,r=n.length;r>i;i++){var s=n[i];s="string"==typeof s?{filter:s,language:s}:s,e.languages[s.language]&&(a["filter-"+s.filter]={pattern:RegExp(t.replace("{{filter_name}}",s.filter),"m"),lookbehind:!0,inside:{"filter-name":{pattern:/^:[\w-]+/,alias:"variable"},rest:e.languages[s.language]}})}e.languages.insertBefore("jade","filter",a)}(Prism); +Prism.languages.json={property:/".*?"(?=\s*:)/gi,string:/"(?!:)(\\?[^"])*?"(?!:)/g,number:/\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee]-?\d+)?)\b/g,punctuation:/[{}[\]);,]/g,operator:/:/g,"boolean":/\b(true|false)\b/gi,"null":/\bnull\b/gi},Prism.languages.jsonp=Prism.languages.json; +Prism.languages.php=Prism.languages.extend("clike",{keyword:/\b(and|or|xor|array|as|break|case|cfunction|class|const|continue|declare|default|die|do|else|elseif|enddeclare|endfor|endforeach|endif|endswitch|endwhile|extends|for|foreach|function|include|include_once|global|if|new|return|static|switch|use|require|require_once|var|while|abstract|interface|public|implements|private|protected|parent|throw|null|echo|print|trait|namespace|final|yield|goto|instanceof|finally|try|catch)\b/i,constant:/\b[A-Z0-9_]{2,}\b/,comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|\/\/.*)/,lookbehind:!0}}),Prism.languages.insertBefore("php","class-name",{"shell-comment":{pattern:/(^|[^\\])#.*/,lookbehind:!0,alias:"comment"}}),Prism.languages.insertBefore("php","keyword",{delimiter:/\?>|<\?(?:php)?/i,variable:/\$\w+\b/i,"package":{pattern:/(\\|namespace\s+|use\s+)[\w\\]+/,lookbehind:!0,inside:{punctuation:/\\/}}}),Prism.languages.insertBefore("php","operator",{property:{pattern:/(->)[\w]+/,lookbehind:!0}}),Prism.languages.markup&&(Prism.hooks.add("before-highlight",function(e){"php"===e.language&&(e.tokenStack=[],e.backupCode=e.code,e.code=e.code.replace(/(?:<\?php|<\?)[\w\W]*?(?:\?>)/gi,function(a){return e.tokenStack.push(a),"{{{PHP"+e.tokenStack.length+"}}}"}))}),Prism.hooks.add("before-insert",function(e){"php"===e.language&&(e.code=e.backupCode,delete e.backupCode)}),Prism.hooks.add("after-highlight",function(e){if("php"===e.language){for(var a,n=0;a=e.tokenStack[n];n++)e.highlightedCode=e.highlightedCode.replace("{{{PHP"+(n+1)+"}}}",Prism.highlight(a,e.grammar,"php").replace(/\$/g,"$$$$"));e.element.innerHTML=e.highlightedCode}}),Prism.hooks.add("wrap",function(e){"php"===e.language&&"markup"===e.type&&(e.content=e.content.replace(/(\{\{\{PHP[0-9]+\}\}\})/g,'$1'))}),Prism.languages.insertBefore("php","comment",{markup:{pattern:/<[^?]\/?(.*?)>/,inside:Prism.languages.markup},php:/\{\{\{PHP[0-9]+\}\}\}/})); +Prism.languages.insertBefore("php","variable",{"this":/\$this\b/,global:/\$(?:_(?:SERVER|GET|POST|FILES|REQUEST|SESSION|ENV|COOKIE)|GLOBALS|HTTP_RAW_POST_DATA|argc|argv|php_errormsg|http_response_header)/,scope:{pattern:/\b[\w\\]+::/,inside:{keyword:/(static|self|parent)/,punctuation:/(::|\\)/}}}); +!function(e){e.languages.sass=e.languages.extend("css",{comment:{pattern:/^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t]+.+)*/m,lookbehind:!0}}),e.languages.insertBefore("sass","atrule",{"atrule-line":{pattern:/^(?:[ \t]*)[@+=].+/m,inside:{atrule:/(?:@[\w-]+|[+=])/m}}}),delete e.languages.sass.atrule;var a=/((\$[-_\w]+)|(#\{\$[-_\w]+\}))/i,t=[/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|or|not)\b/,{pattern:/(\s+)-(?=\s)/,lookbehind:!0}];e.languages.insertBefore("sass","property",{"variable-line":{pattern:/^[ \t]*\$.+/m,inside:{punctuation:/:/,variable:a,operator:t}},"property-line":{pattern:/^[ \t]*(?:[^:\s]+ *:.*|:[^:\s]+.*)/m,inside:{property:[/[^:\s]+(?=\s*:)/,{pattern:/(:)[^:\s]+/,lookbehind:!0}],punctuation:/:/,variable:a,operator:t,important:e.languages.sass.important}}}),delete e.languages.sass.property,delete e.languages.sass.important,delete e.languages.sass.selector,e.languages.insertBefore("sass","punctuation",{selector:{pattern:/([ \t]*)\S(?:,?[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,?[^,\r\n]+)*)*/,lookbehind:!0}})}(Prism); +Prism.languages.scss=Prism.languages.extend("css",{comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|\/\/.*)/,lookbehind:!0},atrule:{pattern:/@[\w-]+(?:\([^()]+\)|[^(])*?(?=\s+[{;])/,inside:{rule:/@[\w-]+/}},url:/(?:[-a-z]+-)*url(?=\()/i,selector:{pattern:/(?=\S)[^@;\{\}\(\)]?([^@;\{\}\(\)]|&|#\{\$[-_\w]+\})+(?=\s*\{(\}|\s|[^\}]+(:|\{)[^\}]+))/m,inside:{placeholder:/%[-_\w]+/}}}),Prism.languages.insertBefore("scss","atrule",{keyword:[/@(?:if|else(?: if)?|for|each|while|import|extend|debug|warn|mixin|include|function|return|content)/i,{pattern:/( +)(?:from|through)(?= )/,lookbehind:!0}]}),Prism.languages.insertBefore("scss","property",{variable:/\$[-_\w]+|#\{\$[-_\w]+\}/}),Prism.languages.insertBefore("scss","function",{placeholder:{pattern:/%[-_\w]+/,alias:"selector"},statement:/\B!(?:default|optional)\b/i,"boolean":/\b(?:true|false)\b/,"null":/\bnull\b/,operator:{pattern:/(\s)(?:[-+*\/%]|[=!]=|<=?|>=?|and|or|not)(?=\s)/,lookbehind:!0}}),Prism.languages.scss.atrule.inside.rest=Prism.util.clone(Prism.languages.scss); +Prism.languages.sql={comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|(?:--|\/\/|#).*)/,lookbehind:!0},string:{pattern:/(^|[^@\\])("|')(?:\\?[\s\S])*?\2/,lookbehind:!0},variable:/@[\w.$]+|@("|'|`)(?:\\?[\s\S])+?\1/,"function":/\b(?:COUNT|SUM|AVG|MIN|MAX|FIRST|LAST|UCASE|LCASE|MID|LEN|ROUND|NOW|FORMAT)(?=\s*\()/i,keyword:/\b(?:ACTION|ADD|AFTER|ALGORITHM|ALL|ALTER|ANALYZE|ANY|APPLY|AS|ASC|AUTHORIZATION|BACKUP|BDB|BEGIN|BERKELEYDB|BIGINT|BINARY|BIT|BLOB|BOOL|BOOLEAN|BREAK|BROWSE|BTREE|BULK|BY|CALL|CASCADED?|CASE|CHAIN|CHAR VARYING|CHARACTER (?:SET|VARYING)|CHARSET|CHECK|CHECKPOINT|CLOSE|CLUSTERED|COALESCE|COLLATE|COLUMN|COLUMNS|COMMENT|COMMIT|COMMITTED|COMPUTE|CONNECT|CONSISTENT|CONSTRAINT|CONTAINS|CONTAINSTABLE|CONTINUE|CONVERT|CREATE|CROSS|CURRENT(?:_DATE|_TIME|_TIMESTAMP|_USER)?|CURSOR|DATA(?:BASES?)?|DATETIME|DBCC|DEALLOCATE|DEC|DECIMAL|DECLARE|DEFAULT|DEFINER|DELAYED|DELETE|DENY|DESC|DESCRIBE|DETERMINISTIC|DISABLE|DISCARD|DISK|DISTINCT|DISTINCTROW|DISTRIBUTED|DO|DOUBLE(?: PRECISION)?|DROP|DUMMY|DUMP(?:FILE)?|DUPLICATE KEY|ELSE|ENABLE|ENCLOSED BY|END|ENGINE|ENUM|ERRLVL|ERRORS|ESCAPE(?:D BY)?|EXCEPT|EXEC(?:UTE)?|EXISTS|EXIT|EXPLAIN|EXTENDED|FETCH|FIELDS|FILE|FILLFACTOR|FIRST|FIXED|FLOAT|FOLLOWING|FOR(?: EACH ROW)?|FORCE|FOREIGN|FREETEXT(?:TABLE)?|FROM|FULL|FUNCTION|GEOMETRY(?:COLLECTION)?|GLOBAL|GOTO|GRANT|GROUP|HANDLER|HASH|HAVING|HOLDLOCK|IDENTITY(?:_INSERT|COL)?|IF|IGNORE|IMPORT|INDEX|INFILE|INNER|INNODB|INOUT|INSERT|INT|INTEGER|INTERSECT|INTO|INVOKER|ISOLATION LEVEL|JOIN|KEYS?|KILL|LANGUAGE SQL|LAST|LEFT|LIMIT|LINENO|LINES|LINESTRING|LOAD|LOCAL|LOCK|LONG(?:BLOB|TEXT)|MATCH(?:ED)?|MEDIUM(?:BLOB|INT|TEXT)|MERGE|MIDDLEINT|MODIFIES SQL DATA|MODIFY|MULTI(?:LINESTRING|POINT|POLYGON)|NATIONAL(?: CHAR VARYING| CHARACTER(?: VARYING)?| VARCHAR)?|NATURAL|NCHAR(?: VARCHAR)?|NEXT|NO(?: SQL|CHECK|CYCLE)?|NONCLUSTERED|NULLIF|NUMERIC|OFF?|OFFSETS?|ON|OPEN(?:DATASOURCE|QUERY|ROWSET)?|OPTIMIZE|OPTION(?:ALLY)?|ORDER|OUT(?:ER|FILE)?|OVER|PARTIAL|PARTITION|PERCENT|PIVOT|PLAN|POINT|POLYGON|PRECEDING|PRECISION|PREV|PRIMARY|PRINT|PRIVILEGES|PROC(?:EDURE)?|PUBLIC|PURGE|QUICK|RAISERROR|READ(?:S SQL DATA|TEXT)?|REAL|RECONFIGURE|REFERENCES|RELEASE|RENAME|REPEATABLE|REPLICATION|REQUIRE|RESTORE|RESTRICT|RETURNS?|REVOKE|RIGHT|ROLLBACK|ROUTINE|ROW(?:COUNT|GUIDCOL|S)?|RTREE|RULE|SAVE(?:POINT)?|SCHEMA|SELECT|SERIAL(?:IZABLE)?|SESSION(?:_USER)?|SET(?:USER)?|SHARE MODE|SHOW|SHUTDOWN|SIMPLE|SMALLINT|SNAPSHOT|SOME|SONAME|START(?:ING BY)?|STATISTICS|STATUS|STRIPED|SYSTEM_USER|TABLES?|TABLESPACE|TEMP(?:ORARY|TABLE)?|TERMINATED BY|TEXT(?:SIZE)?|THEN|TIMESTAMP|TINY(?:BLOB|INT|TEXT)|TOP?|TRAN(?:SACTIONS?)?|TRIGGER|TRUNCATE|TSEQUAL|TYPES?|UNBOUNDED|UNCOMMITTED|UNDEFINED|UNION|UNIQUE|UNPIVOT|UPDATE(?:TEXT)?|USAGE|USE|USER|USING|VALUES?|VAR(?:BINARY|CHAR|CHARACTER|YING)|VIEW|WAITFOR|WARNINGS|WHEN|WHERE|WHILE|WITH(?: ROLLUP|IN)?|WORK|WRITE(?:TEXT)?)\b/i,"boolean":/\b(?:TRUE|FALSE|NULL)\b/i,number:/\b-?(?:0x)?\d*\.?[\da-f]+\b/,operator:/[-+*\/=%^~]|&&?|\|?\||!=?|<(?:=>?|<|>)?|>[>=]?|\b(?:AND|BETWEEN|IN|LIKE|NOT|OR|IS|DIV|REGEXP|RLIKE|SOUNDS LIKE|XOR)\b/i,punctuation:/[;[\]()`,.]/}; +!function(){function e(e,t){return Array.prototype.slice.call((t||document).querySelectorAll(e))}function t(e,t){return t=" "+t+" ",(" "+e.className+" ").replace(/[\n\t]/g," ").indexOf(t)>-1}function n(e,n,i){for(var o,a=n.replace(/\s+/g,"").split(","),l=+e.getAttribute("data-line-offset")||0,d=r()?parseInt:parseFloat,c=d(getComputedStyle(e).lineHeight),s=0;o=a[s++];){o=o.split("-");var u=+o[0],m=+o[1]||u,h=document.createElement("div");h.textContent=Array(m-u+2).join(" \n"),h.className=(i||"")+" line-highlight",t(e,"line-numbers")||(h.setAttribute("data-start",u),m>u&&h.setAttribute("data-end",m)),h.style.top=(u-l-1)*c+"px",t(e,"line-numbers")?e.appendChild(h):(e.querySelector("code")||e).appendChild(h)}}function i(){var t=location.hash.slice(1);e(".temporary.line-highlight").forEach(function(e){e.parentNode.removeChild(e)});var i=(t.match(/\.([\d,-]+)$/)||[,""])[1];if(i&&!document.getElementById(t)){var r=t.slice(0,t.lastIndexOf(".")),o=document.getElementById(r);o&&(o.hasAttribute("data-line")||o.setAttribute("data-line",""),n(o,i,"temporary "),document.querySelector(".temporary.line-highlight").scrollIntoView())}}if("undefined"!=typeof self&&self.Prism&&self.document&&document.querySelector){var r=function(){var e;return function(){if("undefined"==typeof e){var t=document.createElement("div");t.style.fontSize="13px",t.style.lineHeight="1.5",t.style.padding=0,t.style.border=0,t.innerHTML=" 
         ",document.body.appendChild(t),e=38===t.offsetHeight,document.body.removeChild(t)}return e}}(),o=0;Prism.hooks.add("complete",function(t){var r=t.element.parentNode,a=r&&r.getAttribute("data-line");r&&a&&/pre/i.test(r.nodeName)&&(clearTimeout(o),e(".line-highlight",r).forEach(function(e){e.parentNode.removeChild(e)}),n(r,a),o=setTimeout(i,1))}),window.addEventListener&&window.addEventListener("hashchange",i)}}(); +!function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.hooks.add("complete",function(e){if(e.code){var t=e.element.parentNode,s=/\s*\bline-numbers\b\s*/;if(t&&/pre/i.test(t.nodeName)&&(s.test(t.className)||s.test(e.element.className))&&!e.element.querySelector(".line-numbers-rows")){s.test(e.element.className)&&(e.element.className=e.element.className.replace(s,"")),s.test(t.className)||(t.className+=" line-numbers");var n,a=e.code.match(/\n(?!$)/g),l=a?a.length+1:1,m=new Array(l+1);m=m.join(""),n=document.createElement("span"),n.className="line-numbers-rows",n.innerHTML=m,t.hasAttribute("data-start")&&(t.style.counterReset="linenumber "+(parseInt(t.getAttribute("data-start"),10)-1)),e.element.appendChild(n)}}})}(); +!function(){"undefined"!=typeof self&&!self.Prism||"undefined"!=typeof global&&!global.Prism||Prism.hooks.add("before-highlight",function(e){var f=e.grammar;f.tab=/\t/g,f.crlf=/\r\n/g,f.lf=/\n/g,f.cr=/\r/g,f.space=/ /g})}(); +!function(){if(("undefined"==typeof self||self.Prism)&&("undefined"==typeof global||global.Prism)){var i=/\b([a-z]{3,7}:\/\/|tel:)[\w\-+%~\/.:#=?&]+/,n=/\b\S+@[\w.]+[a-z]{2}/,e=/\[([^\]]+)]\(([^)]+)\)/,t=["comment","url","attr-value","string"];Prism.hooks.add("before-highlight",function(a){a.grammar&&!a.grammar["url-link"]&&(Prism.languages.DFS(a.grammar,function(a,r,l){t.indexOf(l)>-1&&"Array"!==Prism.util.type(r)&&(r.pattern||(r=this[a]={pattern:r}),r.inside=r.inside||{},"comment"==l&&(r.inside["md-link"]=e),"attr-value"==l?Prism.languages.insertBefore("inside","punctuation",{"url-link":i},r):r.inside["url-link"]=i,r.inside["email-link"]=n)}),a.grammar["url-link"]=i,a.grammar["email-link"]=n)}),Prism.hooks.add("wrap",function(i){if(/-link$/.test(i.type)){i.tag="a";var n=i.content;if("email-link"==i.type&&0!=n.indexOf("mailto:"))n="mailto:"+n;else if("md-link"==i.type){var t=i.content.match(e);n=t[2],i.content=t[1]}i.attributes.href=n}})}}(); +!function(){"undefined"!=typeof self&&self.Prism&&self.document&&document.querySelector&&(self.Prism.fileHighlight=function(){var e={js:"javascript",py:"python",rb:"ruby",ps1:"powershell",psm1:"powershell",sh:"bash",bat:"batch",h:"c",tex:"latex"};Array.prototype.forEach&&Array.prototype.slice.call(document.querySelectorAll("pre[data-src]")).forEach(function(t){for(var a,s=t.getAttribute("data-src"),n=t,r=/\blang(?:uage)?-(?!\*)(\w+)\b/i;n&&!r.test(n.className);)n=n.parentNode;if(n&&(a=(t.className.match(r)||[,""])[1]),!a){var o=(s.match(/\.(\w+)$/)||[,""])[1];a=e[o]||o}var l=document.createElement("code");l.className="language-"+a,t.textContent="",l.textContent="Loading…",t.appendChild(l);var i=new XMLHttpRequest;i.open("GET",s,!0),i.onreadystatechange=function(){4==i.readyState&&(i.status<400&&i.responseText?(l.textContent=i.responseText,Prism.highlightElement(l)):l.textContent=i.status>=400?"✖ Error "+i.status+" while fetching file: "+i.statusText:"✖ Error: File does not exist or is empty")},i.send(null)})},document.addEventListener("DOMContentLoaded",self.Prism.fileHighlight))}(); +!function(){if("undefined"!=typeof self&&self.Prism&&self.document){var e={html:"HTML",xml:"XML",svg:"SVG",mathml:"MathML",css:"CSS",clike:"C-like",javascript:"JavaScript",abap:"ABAP",actionscript:"ActionScript",apacheconf:"Apache Configuration",apl:"APL",applescript:"AppleScript",asciidoc:"AsciiDoc",aspnet:"ASP.NET (C#)",autoit:"AutoIt",autohotkey:"AutoHotkey",basic:"BASIC",csharp:"C#",cpp:"C++",coffeescript:"CoffeeScript","css-extras":"CSS Extras",fsharp:"F#",glsl:"GLSL",http:"HTTP",inform7:"Inform 7",json:"JSON",latex:"LaTeX",lolcode:"LOLCODE",matlab:"MATLAB",mel:"MEL",nasm:"NASM",nginx:"nginx",nsis:"NSIS",objectivec:"Objective-C",ocaml:"OCaml",parigp:"PARI/GP",php:"PHP","php-extras":"PHP Extras",powershell:"PowerShell",protobuf:"Protocol Buffers",jsx:"React JSX",rest:"reST (reStructuredText)",sas:"SAS",sass:"Sass (Sass)",scss:"Sass (Scss)",sql:"SQL",typescript:"TypeScript",vhdl:"VHDL",vim:"vim",wiki:"Wiki markup",yaml:"YAML"};Prism.hooks.add("before-highlight",function(s){var a=s.element.parentNode;if(a&&/pre/i.test(a.nodeName)){var t,i,r=a.getAttribute("data-language")||e[s.language]||s.language.substring(0,1).toUpperCase()+s.language.substring(1),l=a.previousSibling;l&&/\s*\bprism-show-language\b\s*/.test(l.className)&&l.firstChild&&/\s*\bprism-show-language-label\b\s*/.test(l.firstChild.className)?i=l.firstChild:(t=document.createElement("div"),i=document.createElement("div"),i.className="prism-show-language-label",t.className="prism-show-language",t.appendChild(i),a.parentNode.insertBefore(t,a)),i.innerHTML=r}})}}(); +!function(){function t(t){"function"!=typeof t||e(t)||r.push(t)}function e(t){return"function"==typeof t?r.filter(function(e){return e.valueOf()===t.valueOf()})[0]:"string"==typeof t&&t.length>0?r.filter(function(e){return e.name===t})[0]:null}function n(t){if("string"==typeof t&&(t=e(t)),"function"==typeof t){var n=r.indexOf(t);n>=0&&r.splice(n,1)}}function a(){Array.prototype.slice.call(document.querySelectorAll("pre[data-jsonp]")).forEach(function(t){t.textContent="";var e=document.createElement("code");e.textContent=i,t.appendChild(e);var n=t.getAttribute("data-adapter"),a=null;if(n){if("function"!=typeof window[n])return e.textContent="JSONP adapter function '"+n+"' doesn't exist",void 0;a=window[n]}var u="prismjsonp"+o++,f=document.createElement("a"),l=f.href=t.getAttribute("data-jsonp");f.href+=(f.search?"&":"?")+(t.getAttribute("data-callback")||"callback")+"="+u;var s=setTimeout(function(){e.textContent===i&&(e.textContent="Timeout loading '"+l+"'")},5e3),d=document.createElement("script");d.src=f.href,window[u]=function(n){document.head.removeChild(d),clearTimeout(s),delete window[u];var o="";if(a)o=a(n,t);else for(var i in r)if(o=r[i](n,t),null!==o)break;null===o?e.textContent="Cannot parse response (perhaps you need an adapter function?)":(e.textContent=o,Prism.highlightElement(e))},document.head.appendChild(d)})}if(self.Prism&&self.document&&document.querySelectorAll&&[].filter){var r=[];Prism.plugins.jsonphighlight={registerAdapter:t,removeAdapter:n,highlight:a},t(function(t){if(t&&t.meta&&t.data){if(t.meta.status&&t.meta.status>=400)return"Error: "+(t.data.message||t.meta.status);if("string"==typeof t.data.content)return"function"==typeof atob?atob(t.data.content.replace(/\s/g,"")):"Your browser cannot decode base64"}return null}),t(function(t,e){if(t&&t.meta&&t.data&&t.data.files){if(t.meta.status&&t.meta.status>=400)return"Error: "+(t.data.message||t.meta.status);var n=e.getAttribute("data-filename");if(null==n)for(var a in t.data.files)if(t.data.files.hasOwnProperty(a)){n=a;break}return void 0!==t.data.files[n]?t.data.files[n].content:"Error: unknown or missing gist file "+n}return null}),t(function(t){return t&&t.node&&"string"==typeof t.data?t.data:null});var o=0,i="Loading…";a()}}(); +!function(){"undefined"!=typeof self&&!self.Prism||"undefined"!=typeof global&&!global.Prism||Prism.hooks.add("wrap",function(e){"keyword"===e.type&&e.classes.push("keyword-"+e.content)})}(); +!function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.hooks.add("before-highlight",function(e){if(e.code){var s=e.element.parentNode,n=/\s*\bkeep-initial-line-feed\b\s*/;!s||"pre"!==s.nodeName.toLowerCase()||n.test(s.className)||n.test(e.element.className)||(e.code=e.code.replace(/^(?:\r?\n|\r)/,""))}})}(); +!function(){if("undefined"!=typeof self&&self.Prism&&self.document&&document.createElement){var e={javascript:"clike",actionscript:"javascript",aspnet:"markup",bison:"c",c:"clike",csharp:"clike",cpp:"c",coffeescript:"javascript",crystal:"ruby","css-extras":"css",d:"clike",dart:"clike",fsharp:"clike",glsl:"clike",go:"clike",groovy:"clike",haml:"ruby",handlebars:"markup",haxe:"clike",jade:"javascript",java:"clike",kotlin:"clike",less:"css",markdown:"markup",nginx:"clike",objectivec:"c",parser:"markup",php:"clike","php-extras":"php",processing:"clike",protobuf:"clike",qore:"clike",jsx:["markup","javascript"],ruby:"clike",sass:"css",scss:"css",scala:"java",smarty:"markup",swift:"clike",textile:"markup",twig:"markup",typescript:"javascript",wiki:"markup"},c={},a=Prism.plugins.autoloader={languages_path:"components/",use_minified:!0},s=function(e,c,a){var s=document.createElement("script");s.src=e,s.async=!0,s.onload=function(){document.body.removeChild(s),c&&c()},s.onerror=function(){document.body.removeChild(s),a&&a()},document.body.appendChild(s)},r=function(e){return a.languages_path+"prism-"+e+(a.use_minified?".min":"")+".js"},n=function(e,a){var s=c[e];s||(s=c[e]={});var r=a.getAttribute("data-dependencies");!r&&a.parentNode&&"pre"===a.parentNode.tagName.toLowerCase()&&(r=a.parentNode.getAttribute("data-dependencies")),r=r?r.split(/\s*,\s*/g):[],i(r,function(){t(e,function(){Prism.highlightElement(a)})})},i=function(e,c,a){"string"==typeof e&&(e=[e]);var s=0,r=e.length,n=function(){r>s?t(e[s],function(){s++,n()},function(){a&&a(e[s])}):s===r&&c&&c(e)};n()},t=function(a,n,t){var u=function(){var e=!1;a.indexOf("!")>=0&&(e=!0,a=a.replace("!",""));var i=c[a];if(i||(i=c[a]={}),n&&(i.success_callbacks||(i.success_callbacks=[]),i.success_callbacks.push(n)),t&&(i.error_callbacks||(i.error_callbacks=[]),i.error_callbacks.push(t)),!e&&Prism.languages[a])l(a);else if(!e&&i.error)o(a);else if(e||!i.loading){i.loading=!0;var u=r(a);s(u,function(){i.loading=!1,l(a)},function(){i.loading=!1,i.error=!0,o(a)})}},p=e[a];p&&p.length?i(p,u):u()},l=function(e){c[e]&&c[e].success_callbacks&&c[e].success_callbacks.length&&c[e].success_callbacks.forEach(function(c){c(e)})},o=function(e){c[e]&&c[e].error_callbacks&&c[e].error_callbacks.length&&c[e].error_callbacks.forEach(function(c){c(e)})};Prism.hooks.add("complete",function(e){e.element&&e.language&&!e.grammar&&n(e.language,e.element)})}}(); +!function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.languages.markup&&(Prism.plugins.UnescapedMarkup=!0,Prism.hooks.add("before-highlightall",function(e){e.selector+=", .lang-markup script[type='text/plain'], .language-markup script[type='text/plain'], script[type='text/plain'].lang-markup, script[type='text/plain'].language-markup"}),Prism.hooks.add("before-sanity-check",function(e){if("markup"==e.language){if(e.element.matches("script[type='text/plain']")){var t=document.createElement("code"),n=document.createElement("pre");return n.className=t.className=e.element.className,e.code=e.code.replace(/<\/script(>|>)/gi,""),t.textContent=e.code,n.appendChild(t),e.element.parentNode.replaceChild(n,e.element),e.element=t,void 0}var n=e.element.parentNode;!e.code&&n&&"pre"==n.nodeName.toLowerCase()&&e.element.childNodes.length&&"#comment"==e.element.childNodes[0].nodeName&&(e.element.textContent=e.code=e.element.childNodes[0].textContent)}}))}(); +!function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.hooks.add("complete",function(e){if(e.code){var t=e.element.parentNode,a=/\s*\bcommand-line\b\s*/;if(t&&/pre/i.test(t.nodeName)&&(a.test(t.className)||a.test(e.element.className))&&!e.element.querySelector(".command-line-prompt")){a.test(e.element.className)&&(e.element.className=e.element.className.replace(a,"")),a.test(t.className)||(t.className+=" command-line");var n=new Array(1+e.code.split("\n").length),s=t.getAttribute("data-prompt")||"";if(""!==s)n=n.join('');else{var r=t.getAttribute("data-user")||"user",l=t.getAttribute("data-host")||"localhost";n=n.join('')}var m=document.createElement("span");m.className="command-line-prompt",m.innerHTML=n;var o=t.getAttribute("data-output")||"";o=o.split(",");for(var i=0;i=u&&u<=m.children.length;u++){var N=m.children[u-1];N.removeAttribute("data-user"),N.removeAttribute("data-host"),N.removeAttribute("data-prompt")}}e.element.innerHTML=m.outerHTML+e.element.innerHTML}}})}(); +!function(){function e(e){this.defaults=r({},e)}function n(e){return e.replace(/-(\w)/g,function(e,n){return n.toUpperCase()})}function t(e){for(var n=0,t=0;tn&&(o[l]="\n"+o[l],a=s)}r[i]=o.join("")}return r.join("\n")}},Prism.plugins.NormalizeWhitespace=new e({"remove-trailing":!0,"remove-indent":!0,"left-trim":!0,"right-trim":!0}),Prism.hooks.add("before-highlight",function(e){var n=e.element.parentNode;if(e.code&&n&&"pre"===n.nodeName.toLowerCase()&&(!e.settings||e.settings["whitespace-normalization"]!==!1)){for(var t=n.childNodes,r="",i="",o=!1,a=Prism.plugins.NormalizeWhitespace,l=0;la;a++){var p=e.childNodes[a];1===p.nodeType?t(p):3===p.nodeType&&(n+=p.data.length)}d||(r.posClose=n)};t(e.element,!0),o&&o.length&&(e.keepMarkup=o)}}),Prism.hooks.add("after-highlight",function(e){if(e.keepMarkup&&e.keepMarkup.length){var n=function(e,o){for(var t=0,d=e.childNodes.length;d>t;t++){var r=e.childNodes[t];if(1===r.nodeType){if(!n(r,o))return!1}else 3===r.nodeType&&(!o.nodeStart&&o.pos+r.data.length>o.node.posOpen&&(o.nodeStart=r,o.nodeStartPos=o.node.posOpen-o.pos),o.nodeStart&&o.pos+r.data.length>=o.node.posClose&&(o.nodeEnd=r,o.nodeEndPos=o.node.posClose-o.pos),o.pos+=r.data.length);if(o.nodeStart&&o.nodeEnd){var a=document.createRange();return a.setStart(o.nodeStart,o.nodeStartPos),a.setEnd(o.nodeEnd,o.nodeEndPos),o.node.clone.appendChild(a.extractContents()),a.insertNode(o.node.clone),a.detach(),!1}}return!0};e.keepMarkup.forEach(function(o){n(e.element,{node:o,pos:0})})}}))}(); diff --git a/assets/vendors/js/ui/screenfull.min.js b/assets/vendors/js/ui/screenfull.min.js new file mode 100644 index 0000000..17199b0 --- /dev/null +++ b/assets/vendors/js/ui/screenfull.min.js @@ -0,0 +1,7 @@ +/*! +* screenfull +* v5.0.0 - 2019-09-09 +* (c) Sindre Sorhus; MIT License +*/ + +!function(){"use strict";var u="undefined"!=typeof window&&void 0!==window.document?window.document:{},e="undefined"!=typeof module&&module.exports,t=function(){for(var e,n=[["requestFullscreen","exitFullscreen","fullscreenElement","fullscreenEnabled","fullscreenchange","fullscreenerror"],["webkitRequestFullscreen","webkitExitFullscreen","webkitFullscreenElement","webkitFullscreenEnabled","webkitfullscreenchange","webkitfullscreenerror"],["webkitRequestFullScreen","webkitCancelFullScreen","webkitCurrentFullScreenElement","webkitCancelFullScreen","webkitfullscreenchange","webkitfullscreenerror"],["mozRequestFullScreen","mozCancelFullScreen","mozFullScreenElement","mozFullScreenEnabled","mozfullscreenchange","mozfullscreenerror"],["msRequestFullscreen","msExitFullscreen","msFullscreenElement","msFullscreenEnabled","MSFullscreenChange","MSFullscreenError"]],l=0,r=n.length,t={};l>> 0; + + for (var i = 0; i < len; i++) { + if (i in t && fun.call(this, t[i], i, t)) { + return true; + } + } + + return false; + }; +} + +var some$1 = some; + +function isValid(m) { + if (m._isValid == null) { + var flags = getParsingFlags(m); + var parsedParts = some$1.call(flags.parsedDateParts, function (i) { + return i != null; + }); + var isNowValid = !isNaN(m._d.getTime()) && + flags.overflow < 0 && + !flags.empty && + !flags.invalidMonth && + !flags.invalidWeekday && + !flags.nullInput && + !flags.invalidFormat && + !flags.userInvalidated && + (!flags.meridiem || (flags.meridiem && parsedParts)); + + if (m._strict) { + isNowValid = isNowValid && + flags.charsLeftOver === 0 && + flags.unusedTokens.length === 0 && + flags.bigHour === undefined; + } + + if (Object.isFrozen == null || !Object.isFrozen(m)) { + m._isValid = isNowValid; + } + else { + return isNowValid; + } + } + return m._isValid; +} + +function createInvalid (flags) { + var m = createUTC(NaN); + if (flags != null) { + extend(getParsingFlags(m), flags); + } + else { + getParsingFlags(m).userInvalidated = true; + } + + return m; +} + +// Plugins that add properties should also add the key here (null value), +// so we can properly clone ourselves. +var momentProperties = hooks.momentProperties = []; + +function copyConfig(to, from) { + var i, prop, val; + + if (!isUndefined(from._isAMomentObject)) { + to._isAMomentObject = from._isAMomentObject; + } + if (!isUndefined(from._i)) { + to._i = from._i; + } + if (!isUndefined(from._f)) { + to._f = from._f; + } + if (!isUndefined(from._l)) { + to._l = from._l; + } + if (!isUndefined(from._strict)) { + to._strict = from._strict; + } + if (!isUndefined(from._tzm)) { + to._tzm = from._tzm; + } + if (!isUndefined(from._isUTC)) { + to._isUTC = from._isUTC; + } + if (!isUndefined(from._offset)) { + to._offset = from._offset; + } + if (!isUndefined(from._pf)) { + to._pf = getParsingFlags(from); + } + if (!isUndefined(from._locale)) { + to._locale = from._locale; + } + + if (momentProperties.length > 0) { + for (i = 0; i < momentProperties.length; i++) { + prop = momentProperties[i]; + val = from[prop]; + if (!isUndefined(val)) { + to[prop] = val; + } + } + } + + return to; +} + +var updateInProgress = false; + +// Moment prototype object +function Moment(config) { + copyConfig(this, config); + this._d = new Date(config._d != null ? config._d.getTime() : NaN); + if (!this.isValid()) { + this._d = new Date(NaN); + } + // Prevent infinite loop in case updateOffset creates new moment + // objects. + if (updateInProgress === false) { + updateInProgress = true; + hooks.updateOffset(this); + updateInProgress = false; + } +} + +function isMoment (obj) { + return obj instanceof Moment || (obj != null && obj._isAMomentObject != null); +} + +function absFloor (number) { + if (number < 0) { + // -0 -> 0 + return Math.ceil(number) || 0; + } else { + return Math.floor(number); + } +} + +function toInt(argumentForCoercion) { + var coercedNumber = +argumentForCoercion, + value = 0; + + if (coercedNumber !== 0 && isFinite(coercedNumber)) { + value = absFloor(coercedNumber); + } + + return value; +} + +// compare two arrays, return the number of differences +function compareArrays(array1, array2, dontConvert) { + var len = Math.min(array1.length, array2.length), + lengthDiff = Math.abs(array1.length - array2.length), + diffs = 0, + i; + for (i = 0; i < len; i++) { + if ((dontConvert && array1[i] !== array2[i]) || + (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) { + diffs++; + } + } + return diffs + lengthDiff; +} + +function warn(msg) { + if (hooks.suppressDeprecationWarnings === false && + (typeof console !== 'undefined') && console.warn) { + console.warn('Deprecation warning: ' + msg); + } +} + +function deprecate(msg, fn) { + var firstTime = true; + + return extend(function () { + if (hooks.deprecationHandler != null) { + hooks.deprecationHandler(null, msg); + } + if (firstTime) { + var args = []; + var arg; + for (var i = 0; i < arguments.length; i++) { + arg = ''; + if (typeof arguments[i] === 'object') { + arg += '\n[' + i + '] '; + for (var key in arguments[0]) { + arg += key + ': ' + arguments[0][key] + ', '; + } + arg = arg.slice(0, -2); // Remove trailing comma and space + } else { + arg = arguments[i]; + } + args.push(arg); + } + warn(msg + '\nArguments: ' + Array.prototype.slice.call(args).join('') + '\n' + (new Error()).stack); + firstTime = false; + } + return fn.apply(this, arguments); + }, fn); +} + +var deprecations = {}; + +function deprecateSimple(name, msg) { + if (hooks.deprecationHandler != null) { + hooks.deprecationHandler(name, msg); + } + if (!deprecations[name]) { + warn(msg); + deprecations[name] = true; + } +} + +hooks.suppressDeprecationWarnings = false; +hooks.deprecationHandler = null; + +function isFunction(input) { + return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]'; +} + +function set (config) { + var prop, i; + for (i in config) { + prop = config[i]; + if (isFunction(prop)) { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + this._config = config; + // Lenient ordinal parsing accepts just a number in addition to + // number + (possibly) stuff coming from _dayOfMonthOrdinalParse. + // TODO: Remove "ordinalParse" fallback in next major release. + this._dayOfMonthOrdinalParseLenient = new RegExp( + (this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) + + '|' + (/\d{1,2}/).source); +} + +function mergeConfigs(parentConfig, childConfig) { + var res = extend({}, parentConfig), prop; + for (prop in childConfig) { + if (hasOwnProp(childConfig, prop)) { + if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) { + res[prop] = {}; + extend(res[prop], parentConfig[prop]); + extend(res[prop], childConfig[prop]); + } else if (childConfig[prop] != null) { + res[prop] = childConfig[prop]; + } else { + delete res[prop]; + } + } + } + for (prop in parentConfig) { + if (hasOwnProp(parentConfig, prop) && + !hasOwnProp(childConfig, prop) && + isObject(parentConfig[prop])) { + // make sure changes to properties don't modify parent config + res[prop] = extend({}, res[prop]); + } + } + return res; +} + +function Locale(config) { + if (config != null) { + this.set(config); + } +} + +var keys; + +if (Object.keys) { + keys = Object.keys; +} else { + keys = function (obj) { + var i, res = []; + for (i in obj) { + if (hasOwnProp(obj, i)) { + res.push(i); + } + } + return res; + }; +} + +var keys$1 = keys; + +var defaultCalendar = { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' +}; + +function calendar (key, mom, now) { + var output = this._calendar[key] || this._calendar['sameElse']; + return isFunction(output) ? output.call(mom, now) : output; +} + +var defaultLongDateFormat = { + LTS : 'h:mm:ss A', + LT : 'h:mm A', + L : 'MM/DD/YYYY', + LL : 'MMMM D, YYYY', + LLL : 'MMMM D, YYYY h:mm A', + LLLL : 'dddd, MMMM D, YYYY h:mm A' +}; + +function longDateFormat (key) { + var format = this._longDateFormat[key], + formatUpper = this._longDateFormat[key.toUpperCase()]; + + if (format || !formatUpper) { + return format; + } + + this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) { + return val.slice(1); + }); + + return this._longDateFormat[key]; +} + +var defaultInvalidDate = 'Invalid date'; + +function invalidDate () { + return this._invalidDate; +} + +var defaultOrdinal = '%d'; +var defaultDayOfMonthOrdinalParse = /\d{1,2}/; + +function ordinal (number) { + return this._ordinal.replace('%d', number); +} + +var defaultRelativeTime = { + future : 'in %s', + past : '%s ago', + s : 'a few seconds', + ss : '%d seconds', + m : 'a minute', + mm : '%d minutes', + h : 'an hour', + hh : '%d hours', + d : 'a day', + dd : '%d days', + M : 'a month', + MM : '%d months', + y : 'a year', + yy : '%d years' +}; + +function relativeTime (number, withoutSuffix, string, isFuture) { + var output = this._relativeTime[string]; + return (isFunction(output)) ? + output(number, withoutSuffix, string, isFuture) : + output.replace(/%d/i, number); +} + +function pastFuture (diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return isFunction(format) ? format(output) : format.replace(/%s/i, output); +} + +var aliases = {}; + +function addUnitAlias (unit, shorthand) { + var lowerCase = unit.toLowerCase(); + aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit; +} + +function normalizeUnits(units) { + return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined; +} + +function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; + + for (prop in inputObject) { + if (hasOwnProp(inputObject, prop)) { + normalizedProp = normalizeUnits(prop); + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } + + return normalizedInput; +} + +var priorities = {}; + +function addUnitPriority(unit, priority) { + priorities[unit] = priority; +} + +function getPrioritizedUnits(unitsObj) { + var units = []; + for (var u in unitsObj) { + units.push({unit: u, priority: priorities[u]}); + } + units.sort(function (a, b) { + return a.priority - b.priority; + }); + return units; +} + +function makeGetSet (unit, keepTime) { + return function (value) { + if (value != null) { + set$1(this, unit, value); + hooks.updateOffset(this, keepTime); + return this; + } else { + return get(this, unit); + } + }; +} + +function get (mom, unit) { + return mom.isValid() ? + mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() : NaN; +} + +function set$1 (mom, unit, value) { + if (mom.isValid()) { + mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } +} + +// MOMENTS + +function stringGet (units) { + units = normalizeUnits(units); + if (isFunction(this[units])) { + return this[units](); + } + return this; +} + + +function stringSet (units, value) { + if (typeof units === 'object') { + units = normalizeObjectUnits(units); + var prioritized = getPrioritizedUnits(units); + for (var i = 0; i < prioritized.length; i++) { + this[prioritized[i].unit](units[prioritized[i].unit]); + } + } else { + units = normalizeUnits(units); + if (isFunction(this[units])) { + return this[units](value); + } + } + return this; +} + +function zeroFill(number, targetLength, forceSign) { + var absNumber = '' + Math.abs(number), + zerosToFill = targetLength - absNumber.length, + sign = number >= 0; + return (sign ? (forceSign ? '+' : '') : '-') + + Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber; +} + +var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g; + +var localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g; + +var formatFunctions = {}; + +var formatTokenFunctions = {}; + +// token: 'M' +// padded: ['MM', 2] +// ordinal: 'Mo' +// callback: function () { this.month() + 1 } +function addFormatToken (token, padded, ordinal, callback) { + var func = callback; + if (typeof callback === 'string') { + func = function () { + return this[callback](); + }; + } + if (token) { + formatTokenFunctions[token] = func; + } + if (padded) { + formatTokenFunctions[padded[0]] = function () { + return zeroFill(func.apply(this, arguments), padded[1], padded[2]); + }; + } + if (ordinal) { + formatTokenFunctions[ordinal] = function () { + return this.localeData().ordinal(func.apply(this, arguments), token); + }; + } +} + +function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ''); + } + return input.replace(/\\/g, ''); +} + +function makeFormatFunction(format) { + var array = format.match(formattingTokens), i, length; + + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } + + return function (mom) { + var output = '', i; + for (i = 0; i < length; i++) { + output += isFunction(array[i]) ? array[i].call(mom, format) : array[i]; + } + return output; + }; +} + +// format date using native date object +function formatMoment(m, format) { + if (!m.isValid()) { + return m.localeData().invalidDate(); + } + + format = expandFormat(format, m.localeData()); + formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format); + + return formatFunctions[format](m); +} + +function expandFormat(format, locale) { + var i = 5; + + function replaceLongDateFormatTokens(input) { + return locale.longDateFormat(input) || input; + } + + localFormattingTokens.lastIndex = 0; + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; + } + + return format; +} + +var match1 = /\d/; // 0 - 9 +var match2 = /\d\d/; // 00 - 99 +var match3 = /\d{3}/; // 000 - 999 +var match4 = /\d{4}/; // 0000 - 9999 +var match6 = /[+-]?\d{6}/; // -999999 - 999999 +var match1to2 = /\d\d?/; // 0 - 99 +var match3to4 = /\d\d\d\d?/; // 999 - 9999 +var match5to6 = /\d\d\d\d\d\d?/; // 99999 - 999999 +var match1to3 = /\d{1,3}/; // 0 - 999 +var match1to4 = /\d{1,4}/; // 0 - 9999 +var match1to6 = /[+-]?\d{1,6}/; // -999999 - 999999 + +var matchUnsigned = /\d+/; // 0 - inf +var matchSigned = /[+-]?\d+/; // -inf - inf + +var matchOffset = /Z|[+-]\d\d:?\d\d/gi; // +00:00 -00:00 +0000 -0000 or Z +var matchShortOffset = /Z|[+-]\d\d(?::?\d\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z + +var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 123456789 123456789.123 + +// any word (or two) characters or numbers including two/three word month in arabic. +// includes scottish gaelic two word and hyphenated months +var matchWord = /[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i; + + +var regexes = {}; + +function addRegexToken (token, regex, strictRegex) { + regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) { + return (isStrict && strictRegex) ? strictRegex : regex; + }; +} + +function getParseRegexForToken (token, config) { + if (!hasOwnProp(regexes, token)) { + return new RegExp(unescapeFormat(token)); + } + + return regexes[token](config._strict, config._locale); +} + +// Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript +function unescapeFormat(s) { + return regexEscape(s.replace('\\', '').replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + })); +} + +function regexEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); +} + +var tokens = {}; + +function addParseToken (token, callback) { + var i, func = callback; + if (typeof token === 'string') { + token = [token]; + } + if (isNumber(callback)) { + func = function (input, array) { + array[callback] = toInt(input); + }; + } + for (i = 0; i < token.length; i++) { + tokens[token[i]] = func; + } +} + +function addWeekParseToken (token, callback) { + addParseToken(token, function (input, array, config, token) { + config._w = config._w || {}; + callback(input, config._w, config, token); + }); +} + +function addTimeToArrayFromToken(token, input, config) { + if (input != null && hasOwnProp(tokens, token)) { + tokens[token](input, config._a, config, token); + } +} + +var YEAR = 0; +var MONTH = 1; +var DATE = 2; +var HOUR = 3; +var MINUTE = 4; +var SECOND = 5; +var MILLISECOND = 6; +var WEEK = 7; +var WEEKDAY = 8; + +var indexOf; + +if (Array.prototype.indexOf) { + indexOf = Array.prototype.indexOf; +} else { + indexOf = function (o) { + // I know + var i; + for (i = 0; i < this.length; ++i) { + if (this[i] === o) { + return i; + } + } + return -1; + }; +} + +var indexOf$1 = indexOf; + +function daysInMonth(year, month) { + return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); +} + +// FORMATTING + +addFormatToken('M', ['MM', 2], 'Mo', function () { + return this.month() + 1; +}); + +addFormatToken('MMM', 0, 0, function (format) { + return this.localeData().monthsShort(this, format); +}); + +addFormatToken('MMMM', 0, 0, function (format) { + return this.localeData().months(this, format); +}); + +// ALIASES + +addUnitAlias('month', 'M'); + +// PRIORITY + +addUnitPriority('month', 8); + +// PARSING + +addRegexToken('M', match1to2); +addRegexToken('MM', match1to2, match2); +addRegexToken('MMM', function (isStrict, locale) { + return locale.monthsShortRegex(isStrict); +}); +addRegexToken('MMMM', function (isStrict, locale) { + return locale.monthsRegex(isStrict); +}); + +addParseToken(['M', 'MM'], function (input, array) { + array[MONTH] = toInt(input) - 1; +}); + +addParseToken(['MMM', 'MMMM'], function (input, array, config, token) { + var month = config._locale.monthsParse(input, token, config._strict); + // if we didn't find a month name, mark the date as invalid. + if (month != null) { + array[MONTH] = month; + } else { + getParsingFlags(config).invalidMonth = input; + } +}); + +// LOCALES + +var MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/; +var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'); +function localeMonths (m, format) { + if (!m) { + return isArray(this._months) ? this._months : + this._months['standalone']; + } + return isArray(this._months) ? this._months[m.month()] : + this._months[(this._months.isFormat || MONTHS_IN_FORMAT).test(format) ? 'format' : 'standalone'][m.month()]; +} + +var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'); +function localeMonthsShort (m, format) { + if (!m) { + return isArray(this._monthsShort) ? this._monthsShort : + this._monthsShort['standalone']; + } + return isArray(this._monthsShort) ? this._monthsShort[m.month()] : + this._monthsShort[MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone'][m.month()]; +} + +function handleStrictParse(monthName, format, strict) { + var i, ii, mom, llc = monthName.toLocaleLowerCase(); + if (!this._monthsParse) { + // this is not used + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + for (i = 0; i < 12; ++i) { + mom = createUTC([2000, i]); + this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase(); + this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase(); + } + } + + if (strict) { + if (format === 'MMM') { + ii = indexOf$1.call(this._shortMonthsParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf$1.call(this._longMonthsParse, llc); + return ii !== -1 ? ii : null; + } + } else { + if (format === 'MMM') { + ii = indexOf$1.call(this._shortMonthsParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf$1.call(this._longMonthsParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf$1.call(this._longMonthsParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf$1.call(this._shortMonthsParse, llc); + return ii !== -1 ? ii : null; + } + } +} + +function localeMonthsParse (monthName, format, strict) { + var i, mom, regex; + + if (this._monthsParseExact) { + return handleStrictParse.call(this, monthName, format, strict); + } + + if (!this._monthsParse) { + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + } + + // TODO: add sorting + // Sorting makes sure if one month (or abbr) is a prefix of another + // see sorting in computeMonthsParse + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, i]); + if (strict && !this._longMonthsParse[i]) { + this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i'); + this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i'); + } + if (!strict && !this._monthsParse[i]) { + regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); + this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) { + return i; + } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) { + return i; + } else if (!strict && this._monthsParse[i].test(monthName)) { + return i; + } + } +} + +// MOMENTS + +function setMonth (mom, value) { + var dayOfMonth; + + if (!mom.isValid()) { + // No op + return mom; + } + + if (typeof value === 'string') { + if (/^\d+$/.test(value)) { + value = toInt(value); + } else { + value = mom.localeData().monthsParse(value); + // TODO: Another silent failure? + if (!isNumber(value)) { + return mom; + } + } + } + + dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value)); + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + return mom; +} + +function getSetMonth (value) { + if (value != null) { + setMonth(this, value); + hooks.updateOffset(this, true); + return this; + } else { + return get(this, 'Month'); + } +} + +function getDaysInMonth () { + return daysInMonth(this.year(), this.month()); +} + +var defaultMonthsShortRegex = matchWord; +function monthsShortRegex (isStrict) { + if (this._monthsParseExact) { + if (!hasOwnProp(this, '_monthsRegex')) { + computeMonthsParse.call(this); + } + if (isStrict) { + return this._monthsShortStrictRegex; + } else { + return this._monthsShortRegex; + } + } else { + if (!hasOwnProp(this, '_monthsShortRegex')) { + this._monthsShortRegex = defaultMonthsShortRegex; + } + return this._monthsShortStrictRegex && isStrict ? + this._monthsShortStrictRegex : this._monthsShortRegex; + } +} + +var defaultMonthsRegex = matchWord; +function monthsRegex (isStrict) { + if (this._monthsParseExact) { + if (!hasOwnProp(this, '_monthsRegex')) { + computeMonthsParse.call(this); + } + if (isStrict) { + return this._monthsStrictRegex; + } else { + return this._monthsRegex; + } + } else { + if (!hasOwnProp(this, '_monthsRegex')) { + this._monthsRegex = defaultMonthsRegex; + } + return this._monthsStrictRegex && isStrict ? + this._monthsStrictRegex : this._monthsRegex; + } +} + +function computeMonthsParse () { + function cmpLenRev(a, b) { + return b.length - a.length; + } + + var shortPieces = [], longPieces = [], mixedPieces = [], + i, mom; + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, i]); + shortPieces.push(this.monthsShort(mom, '')); + longPieces.push(this.months(mom, '')); + mixedPieces.push(this.months(mom, '')); + mixedPieces.push(this.monthsShort(mom, '')); + } + // Sorting makes sure if one month (or abbr) is a prefix of another it + // will match the longer piece. + shortPieces.sort(cmpLenRev); + longPieces.sort(cmpLenRev); + mixedPieces.sort(cmpLenRev); + for (i = 0; i < 12; i++) { + shortPieces[i] = regexEscape(shortPieces[i]); + longPieces[i] = regexEscape(longPieces[i]); + } + for (i = 0; i < 24; i++) { + mixedPieces[i] = regexEscape(mixedPieces[i]); + } + + this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._monthsShortRegex = this._monthsRegex; + this._monthsStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i'); + this._monthsShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i'); +} + +// FORMATTING + +addFormatToken('Y', 0, 0, function () { + var y = this.year(); + return y <= 9999 ? '' + y : '+' + y; +}); + +addFormatToken(0, ['YY', 2], 0, function () { + return this.year() % 100; +}); + +addFormatToken(0, ['YYYY', 4], 0, 'year'); +addFormatToken(0, ['YYYYY', 5], 0, 'year'); +addFormatToken(0, ['YYYYYY', 6, true], 0, 'year'); + +// ALIASES + +addUnitAlias('year', 'y'); + +// PRIORITIES + +addUnitPriority('year', 1); + +// PARSING + +addRegexToken('Y', matchSigned); +addRegexToken('YY', match1to2, match2); +addRegexToken('YYYY', match1to4, match4); +addRegexToken('YYYYY', match1to6, match6); +addRegexToken('YYYYYY', match1to6, match6); + +addParseToken(['YYYYY', 'YYYYYY'], YEAR); +addParseToken('YYYY', function (input, array) { + array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input); +}); +addParseToken('YY', function (input, array) { + array[YEAR] = hooks.parseTwoDigitYear(input); +}); +addParseToken('Y', function (input, array) { + array[YEAR] = parseInt(input, 10); +}); + +// HELPERS + +function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; +} + +function isLeapYear(year) { + return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; +} + +// HOOKS + +hooks.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); +}; + +// MOMENTS + +var getSetYear = makeGetSet('FullYear', true); + +function getIsLeapYear () { + return isLeapYear(this.year()); +} + +function createDate (y, m, d, h, M, s, ms) { + // can't just apply() to create a date: + // https://stackoverflow.com/q/181348 + var date = new Date(y, m, d, h, M, s, ms); + + // the date constructor remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0 && isFinite(date.getFullYear())) { + date.setFullYear(y); + } + return date; +} + +function createUTCDate (y) { + var date = new Date(Date.UTC.apply(null, arguments)); + + // the Date.UTC function remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0 && isFinite(date.getUTCFullYear())) { + date.setUTCFullYear(y); + } + return date; +} + +// start-of-first-week - start-of-year +function firstWeekOffset(year, dow, doy) { + var // first-week day -- which january is always in the first week (4 for iso, 1 for other) + fwd = 7 + dow - doy, + // first-week day local weekday -- which local weekday is fwd + fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7; + + return -fwdlw + fwd - 1; +} + +// https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday +function dayOfYearFromWeeks(year, week, weekday, dow, doy) { + var localWeekday = (7 + weekday - dow) % 7, + weekOffset = firstWeekOffset(year, dow, doy), + dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset, + resYear, resDayOfYear; + + if (dayOfYear <= 0) { + resYear = year - 1; + resDayOfYear = daysInYear(resYear) + dayOfYear; + } else if (dayOfYear > daysInYear(year)) { + resYear = year + 1; + resDayOfYear = dayOfYear - daysInYear(year); + } else { + resYear = year; + resDayOfYear = dayOfYear; + } + + return { + year: resYear, + dayOfYear: resDayOfYear + }; +} + +function weekOfYear(mom, dow, doy) { + var weekOffset = firstWeekOffset(mom.year(), dow, doy), + week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1, + resWeek, resYear; + + if (week < 1) { + resYear = mom.year() - 1; + resWeek = week + weeksInYear(resYear, dow, doy); + } else if (week > weeksInYear(mom.year(), dow, doy)) { + resWeek = week - weeksInYear(mom.year(), dow, doy); + resYear = mom.year() + 1; + } else { + resYear = mom.year(); + resWeek = week; + } + + return { + week: resWeek, + year: resYear + }; +} + +function weeksInYear(year, dow, doy) { + var weekOffset = firstWeekOffset(year, dow, doy), + weekOffsetNext = firstWeekOffset(year + 1, dow, doy); + return (daysInYear(year) - weekOffset + weekOffsetNext) / 7; +} + +// FORMATTING + +addFormatToken('w', ['ww', 2], 'wo', 'week'); +addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek'); + +// ALIASES + +addUnitAlias('week', 'w'); +addUnitAlias('isoWeek', 'W'); + +// PRIORITIES + +addUnitPriority('week', 5); +addUnitPriority('isoWeek', 5); + +// PARSING + +addRegexToken('w', match1to2); +addRegexToken('ww', match1to2, match2); +addRegexToken('W', match1to2); +addRegexToken('WW', match1to2, match2); + +addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) { + week[token.substr(0, 1)] = toInt(input); +}); + +// HELPERS + +// LOCALES + +function localeWeek (mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; +} + +var defaultLocaleWeek = { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. +}; + +function localeFirstDayOfWeek () { + return this._week.dow; +} + +function localeFirstDayOfYear () { + return this._week.doy; +} + +// MOMENTS + +function getSetWeek (input) { + var week = this.localeData().week(this); + return input == null ? week : this.add((input - week) * 7, 'd'); +} + +function getSetISOWeek (input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add((input - week) * 7, 'd'); +} + +// FORMATTING + +addFormatToken('d', 0, 'do', 'day'); + +addFormatToken('dd', 0, 0, function (format) { + return this.localeData().weekdaysMin(this, format); +}); + +addFormatToken('ddd', 0, 0, function (format) { + return this.localeData().weekdaysShort(this, format); +}); + +addFormatToken('dddd', 0, 0, function (format) { + return this.localeData().weekdays(this, format); +}); + +addFormatToken('e', 0, 0, 'weekday'); +addFormatToken('E', 0, 0, 'isoWeekday'); + +// ALIASES + +addUnitAlias('day', 'd'); +addUnitAlias('weekday', 'e'); +addUnitAlias('isoWeekday', 'E'); + +// PRIORITY +addUnitPriority('day', 11); +addUnitPriority('weekday', 11); +addUnitPriority('isoWeekday', 11); + +// PARSING + +addRegexToken('d', match1to2); +addRegexToken('e', match1to2); +addRegexToken('E', match1to2); +addRegexToken('dd', function (isStrict, locale) { + return locale.weekdaysMinRegex(isStrict); +}); +addRegexToken('ddd', function (isStrict, locale) { + return locale.weekdaysShortRegex(isStrict); +}); +addRegexToken('dddd', function (isStrict, locale) { + return locale.weekdaysRegex(isStrict); +}); + +addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) { + var weekday = config._locale.weekdaysParse(input, token, config._strict); + // if we didn't get a weekday name, mark the date as invalid + if (weekday != null) { + week.d = weekday; + } else { + getParsingFlags(config).invalidWeekday = input; + } +}); + +addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) { + week[token] = toInt(input); +}); + +// HELPERS + +function parseWeekday(input, locale) { + if (typeof input !== 'string') { + return input; + } + + if (!isNaN(input)) { + return parseInt(input, 10); + } + + input = locale.weekdaysParse(input); + if (typeof input === 'number') { + return input; + } + + return null; +} + +function parseIsoWeekday(input, locale) { + if (typeof input === 'string') { + return locale.weekdaysParse(input) % 7 || 7; + } + return isNaN(input) ? null : input; +} + +// LOCALES + +var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'); +function localeWeekdays (m, format) { + if (!m) { + return isArray(this._weekdays) ? this._weekdays : + this._weekdays['standalone']; + } + return isArray(this._weekdays) ? this._weekdays[m.day()] : + this._weekdays[this._weekdays.isFormat.test(format) ? 'format' : 'standalone'][m.day()]; +} + +var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'); +function localeWeekdaysShort (m) { + return (m) ? this._weekdaysShort[m.day()] : this._weekdaysShort; +} + +var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'); +function localeWeekdaysMin (m) { + return (m) ? this._weekdaysMin[m.day()] : this._weekdaysMin; +} + +function handleStrictParse$1(weekdayName, format, strict) { + var i, ii, mom, llc = weekdayName.toLocaleLowerCase(); + if (!this._weekdaysParse) { + this._weekdaysParse = []; + this._shortWeekdaysParse = []; + this._minWeekdaysParse = []; + + for (i = 0; i < 7; ++i) { + mom = createUTC([2000, 1]).day(i); + this._minWeekdaysParse[i] = this.weekdaysMin(mom, '').toLocaleLowerCase(); + this._shortWeekdaysParse[i] = this.weekdaysShort(mom, '').toLocaleLowerCase(); + this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase(); + } + } + + if (strict) { + if (format === 'dddd') { + ii = indexOf$1.call(this._weekdaysParse, llc); + return ii !== -1 ? ii : null; + } else if (format === 'ddd') { + ii = indexOf$1.call(this._shortWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf$1.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } + } else { + if (format === 'dddd') { + ii = indexOf$1.call(this._weekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf$1.call(this._shortWeekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf$1.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else if (format === 'ddd') { + ii = indexOf$1.call(this._shortWeekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf$1.call(this._weekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf$1.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf$1.call(this._minWeekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf$1.call(this._weekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf$1.call(this._shortWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } + } +} + +function localeWeekdaysParse (weekdayName, format, strict) { + var i, mom, regex; + + if (this._weekdaysParseExact) { + return handleStrictParse$1.call(this, weekdayName, format, strict); + } + + if (!this._weekdaysParse) { + this._weekdaysParse = []; + this._minWeekdaysParse = []; + this._shortWeekdaysParse = []; + this._fullWeekdaysParse = []; + } + + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + + mom = createUTC([2000, 1]).day(i); + if (strict && !this._fullWeekdaysParse[i]) { + this._fullWeekdaysParse[i] = new RegExp('^' + this.weekdays(mom, '').replace('.', '\.?') + '$', 'i'); + this._shortWeekdaysParse[i] = new RegExp('^' + this.weekdaysShort(mom, '').replace('.', '\.?') + '$', 'i'); + this._minWeekdaysParse[i] = new RegExp('^' + this.weekdaysMin(mom, '').replace('.', '\.?') + '$', 'i'); + } + if (!this._weekdaysParse[i]) { + regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, ''); + this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (!strict && this._weekdaysParse[i].test(weekdayName)) { + return i; + } + } +} + +// MOMENTS + +function getSetDayOfWeek (input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); + if (input != null) { + input = parseWeekday(input, this.localeData()); + return this.add(input - day, 'd'); + } else { + return day; + } +} + +function getSetLocaleDayOfWeek (input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; + return input == null ? weekday : this.add(input - weekday, 'd'); +} + +function getSetISODayOfWeek (input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + + // behaves the same as moment#day except + // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) + // as a setter, sunday should belong to the previous week. + + if (input != null) { + var weekday = parseIsoWeekday(input, this.localeData()); + return this.day(this.day() % 7 ? weekday : weekday - 7); + } else { + return this.day() || 7; + } +} + +var defaultWeekdaysRegex = matchWord; +function weekdaysRegex (isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + if (isStrict) { + return this._weekdaysStrictRegex; + } else { + return this._weekdaysRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysRegex')) { + this._weekdaysRegex = defaultWeekdaysRegex; + } + return this._weekdaysStrictRegex && isStrict ? + this._weekdaysStrictRegex : this._weekdaysRegex; + } +} + +var defaultWeekdaysShortRegex = matchWord; +function weekdaysShortRegex (isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + if (isStrict) { + return this._weekdaysShortStrictRegex; + } else { + return this._weekdaysShortRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysShortRegex')) { + this._weekdaysShortRegex = defaultWeekdaysShortRegex; + } + return this._weekdaysShortStrictRegex && isStrict ? + this._weekdaysShortStrictRegex : this._weekdaysShortRegex; + } +} + +var defaultWeekdaysMinRegex = matchWord; +function weekdaysMinRegex (isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + if (isStrict) { + return this._weekdaysMinStrictRegex; + } else { + return this._weekdaysMinRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysMinRegex')) { + this._weekdaysMinRegex = defaultWeekdaysMinRegex; + } + return this._weekdaysMinStrictRegex && isStrict ? + this._weekdaysMinStrictRegex : this._weekdaysMinRegex; + } +} + + +function computeWeekdaysParse () { + function cmpLenRev(a, b) { + return b.length - a.length; + } + + var minPieces = [], shortPieces = [], longPieces = [], mixedPieces = [], + i, mom, minp, shortp, longp; + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, 1]).day(i); + minp = this.weekdaysMin(mom, ''); + shortp = this.weekdaysShort(mom, ''); + longp = this.weekdays(mom, ''); + minPieces.push(minp); + shortPieces.push(shortp); + longPieces.push(longp); + mixedPieces.push(minp); + mixedPieces.push(shortp); + mixedPieces.push(longp); + } + // Sorting makes sure if one weekday (or abbr) is a prefix of another it + // will match the longer piece. + minPieces.sort(cmpLenRev); + shortPieces.sort(cmpLenRev); + longPieces.sort(cmpLenRev); + mixedPieces.sort(cmpLenRev); + for (i = 0; i < 7; i++) { + shortPieces[i] = regexEscape(shortPieces[i]); + longPieces[i] = regexEscape(longPieces[i]); + mixedPieces[i] = regexEscape(mixedPieces[i]); + } + + this._weekdaysRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._weekdaysShortRegex = this._weekdaysRegex; + this._weekdaysMinRegex = this._weekdaysRegex; + + this._weekdaysStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i'); + this._weekdaysShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i'); + this._weekdaysMinStrictRegex = new RegExp('^(' + minPieces.join('|') + ')', 'i'); +} + +// FORMATTING + +function hFormat() { + return this.hours() % 12 || 12; +} + +function kFormat() { + return this.hours() || 24; +} + +addFormatToken('H', ['HH', 2], 0, 'hour'); +addFormatToken('h', ['hh', 2], 0, hFormat); +addFormatToken('k', ['kk', 2], 0, kFormat); + +addFormatToken('hmm', 0, 0, function () { + return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2); +}); + +addFormatToken('hmmss', 0, 0, function () { + return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) + + zeroFill(this.seconds(), 2); +}); + +addFormatToken('Hmm', 0, 0, function () { + return '' + this.hours() + zeroFill(this.minutes(), 2); +}); + +addFormatToken('Hmmss', 0, 0, function () { + return '' + this.hours() + zeroFill(this.minutes(), 2) + + zeroFill(this.seconds(), 2); +}); + +function meridiem (token, lowercase) { + addFormatToken(token, 0, 0, function () { + return this.localeData().meridiem(this.hours(), this.minutes(), lowercase); + }); +} + +meridiem('a', true); +meridiem('A', false); + +// ALIASES + +addUnitAlias('hour', 'h'); + +// PRIORITY +addUnitPriority('hour', 13); + +// PARSING + +function matchMeridiem (isStrict, locale) { + return locale._meridiemParse; +} + +addRegexToken('a', matchMeridiem); +addRegexToken('A', matchMeridiem); +addRegexToken('H', match1to2); +addRegexToken('h', match1to2); +addRegexToken('k', match1to2); +addRegexToken('HH', match1to2, match2); +addRegexToken('hh', match1to2, match2); +addRegexToken('kk', match1to2, match2); + +addRegexToken('hmm', match3to4); +addRegexToken('hmmss', match5to6); +addRegexToken('Hmm', match3to4); +addRegexToken('Hmmss', match5to6); + +addParseToken(['H', 'HH'], HOUR); +addParseToken(['k', 'kk'], function (input, array, config) { + var kInput = toInt(input); + array[HOUR] = kInput === 24 ? 0 : kInput; +}); +addParseToken(['a', 'A'], function (input, array, config) { + config._isPm = config._locale.isPM(input); + config._meridiem = input; +}); +addParseToken(['h', 'hh'], function (input, array, config) { + array[HOUR] = toInt(input); + getParsingFlags(config).bigHour = true; +}); +addParseToken('hmm', function (input, array, config) { + var pos = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos)); + array[MINUTE] = toInt(input.substr(pos)); + getParsingFlags(config).bigHour = true; +}); +addParseToken('hmmss', function (input, array, config) { + var pos1 = input.length - 4; + var pos2 = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos1)); + array[MINUTE] = toInt(input.substr(pos1, 2)); + array[SECOND] = toInt(input.substr(pos2)); + getParsingFlags(config).bigHour = true; +}); +addParseToken('Hmm', function (input, array, config) { + var pos = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos)); + array[MINUTE] = toInt(input.substr(pos)); +}); +addParseToken('Hmmss', function (input, array, config) { + var pos1 = input.length - 4; + var pos2 = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos1)); + array[MINUTE] = toInt(input.substr(pos1, 2)); + array[SECOND] = toInt(input.substr(pos2)); +}); + +// LOCALES + +function localeIsPM (input) { + // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays + // Using charAt should be more compatible. + return ((input + '').toLowerCase().charAt(0) === 'p'); +} + +var defaultLocaleMeridiemParse = /[ap]\.?m?\.?/i; +function localeMeridiem (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } +} + + +// MOMENTS + +// Setting the hour should keep the time, because the user explicitly +// specified which hour he wants. So trying to maintain the same hour (in +// a new timezone) makes sense. Adding/subtracting hours does not follow +// this rule. +var getSetHour = makeGetSet('Hours', true); + +// months +// week +// weekdays +// meridiem +var baseConfig = { + calendar: defaultCalendar, + longDateFormat: defaultLongDateFormat, + invalidDate: defaultInvalidDate, + ordinal: defaultOrdinal, + dayOfMonthOrdinalParse: defaultDayOfMonthOrdinalParse, + relativeTime: defaultRelativeTime, + + months: defaultLocaleMonths, + monthsShort: defaultLocaleMonthsShort, + + week: defaultLocaleWeek, + + weekdays: defaultLocaleWeekdays, + weekdaysMin: defaultLocaleWeekdaysMin, + weekdaysShort: defaultLocaleWeekdaysShort, + + meridiemParse: defaultLocaleMeridiemParse +}; + +// internal storage for locale config files +var locales = {}; +var localeFamilies = {}; +var globalLocale; + +function normalizeLocale(key) { + return key ? key.toLowerCase().replace('_', '-') : key; +} + +// pick the locale from the array +// try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each +// substring from most specific to least, but move to the next array item if it's a more specific variant than the current root +function chooseLocale(names) { + var i = 0, j, next, locale, split; + + while (i < names.length) { + split = normalizeLocale(names[i]).split('-'); + j = split.length; + next = normalizeLocale(names[i + 1]); + next = next ? next.split('-') : null; + while (j > 0) { + locale = loadLocale(split.slice(0, j).join('-')); + if (locale) { + return locale; + } + if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { + //the next array item is better than a shallower substring of this one + break; + } + j--; + } + i++; + } + return null; +} + +function loadLocale(name) { + var oldLocale = null; + // TODO: Find a better way to register and load all the locales in Node + if (!locales[name] && (typeof module !== 'undefined') && + module && module.exports) { + try { + oldLocale = globalLocale._abbr; + require('./locale/' + name); + // because defineLocale currently also sets the global locale, we + // want to undo that for lazy loaded locales + getSetGlobalLocale(oldLocale); + } catch (e) { } + } + return locales[name]; +} + +// This function will load locale and then set the global locale. If +// no arguments are passed in, it will simply return the current global +// locale key. +function getSetGlobalLocale (key, values) { + var data; + if (key) { + if (isUndefined(values)) { + data = getLocale(key); + } + else { + data = defineLocale(key, values); + } + + if (data) { + // moment.duration._locale = moment._locale = data; + globalLocale = data; + } + } + + return globalLocale._abbr; +} + +function defineLocale (name, config) { + if (config !== null) { + var parentConfig = baseConfig; + config.abbr = name; + if (locales[name] != null) { + deprecateSimple('defineLocaleOverride', + 'use moment.updateLocale(localeName, config) to change ' + + 'an existing locale. moment.defineLocale(localeName, ' + + 'config) should only be used for creating a new locale ' + + 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.'); + parentConfig = locales[name]._config; + } else if (config.parentLocale != null) { + if (locales[config.parentLocale] != null) { + parentConfig = locales[config.parentLocale]._config; + } else { + if (!localeFamilies[config.parentLocale]) { + localeFamilies[config.parentLocale] = []; + } + localeFamilies[config.parentLocale].push({ + name: name, + config: config + }); + return null; + } + } + locales[name] = new Locale(mergeConfigs(parentConfig, config)); + + if (localeFamilies[name]) { + localeFamilies[name].forEach(function (x) { + defineLocale(x.name, x.config); + }); + } + + // backwards compat for now: also set the locale + // make sure we set the locale AFTER all child locales have been + // created, so we won't end up with the child locale set. + getSetGlobalLocale(name); + + + return locales[name]; + } else { + // useful for testing + delete locales[name]; + return null; + } +} + +function updateLocale(name, config) { + if (config != null) { + var locale, parentConfig = baseConfig; + // MERGE + if (locales[name] != null) { + parentConfig = locales[name]._config; + } + config = mergeConfigs(parentConfig, config); + locale = new Locale(config); + locale.parentLocale = locales[name]; + locales[name] = locale; + + // backwards compat for now: also set the locale + getSetGlobalLocale(name); + } else { + // pass null for config to unupdate, useful for tests + if (locales[name] != null) { + if (locales[name].parentLocale != null) { + locales[name] = locales[name].parentLocale; + } else if (locales[name] != null) { + delete locales[name]; + } + } + } + return locales[name]; +} + +// returns locale data +function getLocale (key) { + var locale; + + if (key && key._locale && key._locale._abbr) { + key = key._locale._abbr; + } + + if (!key) { + return globalLocale; + } + + if (!isArray(key)) { + //short-circuit everything else + locale = loadLocale(key); + if (locale) { + return locale; + } + key = [key]; + } + + return chooseLocale(key); +} + +function listLocales() { + return keys$1(locales); +} + +function checkOverflow (m) { + var overflow; + var a = m._a; + + if (a && getParsingFlags(m).overflow === -2) { + overflow = + a[MONTH] < 0 || a[MONTH] > 11 ? MONTH : + a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE : + a[HOUR] < 0 || a[HOUR] > 24 || (a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0)) ? HOUR : + a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE : + a[SECOND] < 0 || a[SECOND] > 59 ? SECOND : + a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND : + -1; + + if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } + if (getParsingFlags(m)._overflowWeeks && overflow === -1) { + overflow = WEEK; + } + if (getParsingFlags(m)._overflowWeekday && overflow === -1) { + overflow = WEEKDAY; + } + + getParsingFlags(m).overflow = overflow; + } + + return m; +} + +// iso 8601 regex +// 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00) +var extendedIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/; +var basicIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/; + +var tzRegex = /Z|[+-]\d\d(?::?\d\d)?/; + +var isoDates = [ + ['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/], + ['YYYY-MM-DD', /\d{4}-\d\d-\d\d/], + ['GGGG-[W]WW-E', /\d{4}-W\d\d-\d/], + ['GGGG-[W]WW', /\d{4}-W\d\d/, false], + ['YYYY-DDD', /\d{4}-\d{3}/], + ['YYYY-MM', /\d{4}-\d\d/, false], + ['YYYYYYMMDD', /[+-]\d{10}/], + ['YYYYMMDD', /\d{8}/], + // YYYYMM is NOT allowed by the standard + ['GGGG[W]WWE', /\d{4}W\d{3}/], + ['GGGG[W]WW', /\d{4}W\d{2}/, false], + ['YYYYDDD', /\d{7}/] +]; + +// iso time formats and regexes +var isoTimes = [ + ['HH:mm:ss.SSSS', /\d\d:\d\d:\d\d\.\d+/], + ['HH:mm:ss,SSSS', /\d\d:\d\d:\d\d,\d+/], + ['HH:mm:ss', /\d\d:\d\d:\d\d/], + ['HH:mm', /\d\d:\d\d/], + ['HHmmss.SSSS', /\d\d\d\d\d\d\.\d+/], + ['HHmmss,SSSS', /\d\d\d\d\d\d,\d+/], + ['HHmmss', /\d\d\d\d\d\d/], + ['HHmm', /\d\d\d\d/], + ['HH', /\d\d/] +]; + +var aspNetJsonRegex = /^\/?Date\((\-?\d+)/i; + +// date from iso format +function configFromISO(config) { + var i, l, + string = config._i, + match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string), + allowTime, dateFormat, timeFormat, tzFormat; + + if (match) { + getParsingFlags(config).iso = true; + + for (i = 0, l = isoDates.length; i < l; i++) { + if (isoDates[i][1].exec(match[1])) { + dateFormat = isoDates[i][0]; + allowTime = isoDates[i][2] !== false; + break; + } + } + if (dateFormat == null) { + config._isValid = false; + return; + } + if (match[3]) { + for (i = 0, l = isoTimes.length; i < l; i++) { + if (isoTimes[i][1].exec(match[3])) { + // match[2] should be 'T' or space + timeFormat = (match[2] || ' ') + isoTimes[i][0]; + break; + } + } + if (timeFormat == null) { + config._isValid = false; + return; + } + } + if (!allowTime && timeFormat != null) { + config._isValid = false; + return; + } + if (match[4]) { + if (tzRegex.exec(match[4])) { + tzFormat = 'Z'; + } else { + config._isValid = false; + return; + } + } + config._f = dateFormat + (timeFormat || '') + (tzFormat || ''); + configFromStringAndFormat(config); + } else { + config._isValid = false; + } +} + +// RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3 +var basicRfcRegex = /^((?:Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d?\d\s(?:Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(?:\d\d)?\d\d\s)(\d\d:\d\d)(\:\d\d)?(\s(?:UT|GMT|[ECMP][SD]T|[A-IK-Za-ik-z]|[+-]\d{4}))$/; + +// date and time from ref 2822 format +function configFromRFC2822(config) { + var string, match, dayFormat, + dateFormat, timeFormat, tzFormat; + var timezones = { + ' GMT': ' +0000', + ' EDT': ' -0400', + ' EST': ' -0500', + ' CDT': ' -0500', + ' CST': ' -0600', + ' MDT': ' -0600', + ' MST': ' -0700', + ' PDT': ' -0700', + ' PST': ' -0800' + }; + var military = 'YXWVUTSRQPONZABCDEFGHIKLM'; + var timezone, timezoneIndex; + + string = config._i + .replace(/\([^\)]*\)|[\n\t]/g, ' ') // Remove comments and folding whitespace + .replace(/(\s\s+)/g, ' ') // Replace multiple-spaces with a single space + .replace(/^\s|\s$/g, ''); // Remove leading and trailing spaces + match = basicRfcRegex.exec(string); + + if (match) { + dayFormat = match[1] ? 'ddd' + ((match[1].length === 5) ? ', ' : ' ') : ''; + dateFormat = 'D MMM ' + ((match[2].length > 10) ? 'YYYY ' : 'YY '); + timeFormat = 'HH:mm' + (match[4] ? ':ss' : ''); + + // TODO: Replace the vanilla JS Date object with an indepentent day-of-week check. + if (match[1]) { // day of week given + var momentDate = new Date(match[2]); + var momentDay = ['Sun','Mon','Tue','Wed','Thu','Fri','Sat'][momentDate.getDay()]; + + if (match[1].substr(0,3) !== momentDay) { + getParsingFlags(config).weekdayMismatch = true; + config._isValid = false; + return; + } + } + + switch (match[5].length) { + case 2: // military + if (timezoneIndex === 0) { + timezone = ' +0000'; + } else { + timezoneIndex = military.indexOf(match[5][1].toUpperCase()) - 12; + timezone = ((timezoneIndex < 0) ? ' -' : ' +') + + (('' + timezoneIndex).replace(/^-?/, '0')).match(/..$/)[0] + '00'; + } + break; + case 4: // Zone + timezone = timezones[match[5]]; + break; + default: // UT or +/-9999 + timezone = timezones[' GMT']; + } + match[5] = timezone; + config._i = match.splice(1).join(''); + tzFormat = ' ZZ'; + config._f = dayFormat + dateFormat + timeFormat + tzFormat; + configFromStringAndFormat(config); + getParsingFlags(config).rfc2822 = true; + } else { + config._isValid = false; + } +} + +// date from iso format or fallback +function configFromString(config) { + var matched = aspNetJsonRegex.exec(config._i); + + if (matched !== null) { + config._d = new Date(+matched[1]); + return; + } + + configFromISO(config); + if (config._isValid === false) { + delete config._isValid; + } else { + return; + } + + configFromRFC2822(config); + if (config._isValid === false) { + delete config._isValid; + } else { + return; + } + + // Final attempt, use Input Fallback + hooks.createFromInputFallback(config); +} + +hooks.createFromInputFallback = deprecate( + 'value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' + + 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' + + 'discouraged and will be removed in an upcoming major release. Please refer to ' + + 'http://momentjs.com/guides/#/warnings/js-date/ for more info.', + function (config) { + config._d = new Date(config._i + (config._useUTC ? ' UTC' : '')); + } +); + +// Pick the first defined of two or three arguments. +function defaults(a, b, c) { + if (a != null) { + return a; + } + if (b != null) { + return b; + } + return c; +} + +function currentDateArray(config) { + // hooks is actually the exported moment object + var nowValue = new Date(hooks.now()); + if (config._useUTC) { + return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()]; + } + return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()]; +} + +// convert an array to a date. +// the array should mirror the parameters below +// note: all values past the year are optional and will default to the lowest possible value. +// [year, month, day , hour, minute, second, millisecond] +function configFromArray (config) { + var i, date, input = [], currentDate, yearToUse; + + if (config._d) { + return; + } + + currentDate = currentDateArray(config); + + //compute day of the year from weeks and weekdays + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } + + //if the day of the year is set, figure out what it is + if (config._dayOfYear != null) { + yearToUse = defaults(config._a[YEAR], currentDate[YEAR]); + + if (config._dayOfYear > daysInYear(yearToUse) || config._dayOfYear === 0) { + getParsingFlags(config)._overflowDayOfYear = true; + } + + date = createUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } + + // Default to current date. + // * if no year, month, day of month are given, default to today + // * if day of month is given, default month and year + // * if month is given, default only year + // * if year is given, don't default anything + for (i = 0; i < 3 && config._a[i] == null; ++i) { + config._a[i] = input[i] = currentDate[i]; + } + + // Zero out whatever was not defaulted, including time + for (; i < 7; i++) { + config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i]; + } + + // Check for 24:00:00.000 + if (config._a[HOUR] === 24 && + config._a[MINUTE] === 0 && + config._a[SECOND] === 0 && + config._a[MILLISECOND] === 0) { + config._nextDay = true; + config._a[HOUR] = 0; + } + + config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input); + // Apply timezone offset from input. The actual utcOffset can be changed + // with parseZone. + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + } + + if (config._nextDay) { + config._a[HOUR] = 24; + } +} + +function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow; + + w = config._w; + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; + + // TODO: We need to take the current isoWeekYear, but that depends on + // how we interpret now (local, utc, fixed offset). So create + // a now version of current config (take local/utc/offset flags, and + // create now). + weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(createLocal(), 1, 4).year); + week = defaults(w.W, 1); + weekday = defaults(w.E, 1); + if (weekday < 1 || weekday > 7) { + weekdayOverflow = true; + } + } else { + dow = config._locale._week.dow; + doy = config._locale._week.doy; + + var curWeek = weekOfYear(createLocal(), dow, doy); + + weekYear = defaults(w.gg, config._a[YEAR], curWeek.year); + + // Default to current week. + week = defaults(w.w, curWeek.week); + + if (w.d != null) { + // weekday -- low day numbers are considered next week + weekday = w.d; + if (weekday < 0 || weekday > 6) { + weekdayOverflow = true; + } + } else if (w.e != null) { + // local weekday -- counting starts from begining of week + weekday = w.e + dow; + if (w.e < 0 || w.e > 6) { + weekdayOverflow = true; + } + } else { + // default to begining of week + weekday = dow; + } + } + if (week < 1 || week > weeksInYear(weekYear, dow, doy)) { + getParsingFlags(config)._overflowWeeks = true; + } else if (weekdayOverflow != null) { + getParsingFlags(config)._overflowWeekday = true; + } else { + temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy); + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; + } +} + +// constant that refers to the ISO standard +hooks.ISO_8601 = function () {}; + +// constant that refers to the RFC 2822 form +hooks.RFC_2822 = function () {}; + +// date from string and format string +function configFromStringAndFormat(config) { + // TODO: Move this to another part of the creation flow to prevent circular deps + if (config._f === hooks.ISO_8601) { + configFromISO(config); + return; + } + if (config._f === hooks.RFC_2822) { + configFromRFC2822(config); + return; + } + config._a = []; + getParsingFlags(config).empty = true; + + // This array is used to make a Date, either with `new Date` or `Date.UTC` + var string = '' + config._i, + i, parsedInput, tokens, token, skipped, + stringLength = string.length, + totalParsedInputLength = 0; + + tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; + + for (i = 0; i < tokens.length; i++) { + token = tokens[i]; + parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; + // console.log('token', token, 'parsedInput', parsedInput, + // 'regex', getParseRegexForToken(token, config)); + if (parsedInput) { + skipped = string.substr(0, string.indexOf(parsedInput)); + if (skipped.length > 0) { + getParsingFlags(config).unusedInput.push(skipped); + } + string = string.slice(string.indexOf(parsedInput) + parsedInput.length); + totalParsedInputLength += parsedInput.length; + } + // don't parse if it's not a known token + if (formatTokenFunctions[token]) { + if (parsedInput) { + getParsingFlags(config).empty = false; + } + else { + getParsingFlags(config).unusedTokens.push(token); + } + addTimeToArrayFromToken(token, parsedInput, config); + } + else if (config._strict && !parsedInput) { + getParsingFlags(config).unusedTokens.push(token); + } + } + + // add remaining unparsed input length to the string + getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength; + if (string.length > 0) { + getParsingFlags(config).unusedInput.push(string); + } + + // clear _12h flag if hour is <= 12 + if (config._a[HOUR] <= 12 && + getParsingFlags(config).bigHour === true && + config._a[HOUR] > 0) { + getParsingFlags(config).bigHour = undefined; + } + + getParsingFlags(config).parsedDateParts = config._a.slice(0); + getParsingFlags(config).meridiem = config._meridiem; + // handle meridiem + config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem); + + configFromArray(config); + checkOverflow(config); +} + + +function meridiemFixWrap (locale, hour, meridiem) { + var isPm; + + if (meridiem == null) { + // nothing to do + return hour; + } + if (locale.meridiemHour != null) { + return locale.meridiemHour(hour, meridiem); + } else if (locale.isPM != null) { + // Fallback + isPm = locale.isPM(meridiem); + if (isPm && hour < 12) { + hour += 12; + } + if (!isPm && hour === 12) { + hour = 0; + } + return hour; + } else { + // this is not supposed to happen + return hour; + } +} + +// date from string and array of format strings +function configFromStringAndArray(config) { + var tempConfig, + bestMoment, + + scoreToBeat, + i, + currentScore; + + if (config._f.length === 0) { + getParsingFlags(config).invalidFormat = true; + config._d = new Date(NaN); + return; + } + + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + tempConfig = copyConfig({}, config); + if (config._useUTC != null) { + tempConfig._useUTC = config._useUTC; + } + tempConfig._f = config._f[i]; + configFromStringAndFormat(tempConfig); + + if (!isValid(tempConfig)) { + continue; + } + + // if there is any input that was not parsed add a penalty for that format + currentScore += getParsingFlags(tempConfig).charsLeftOver; + + //or tokens + currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10; + + getParsingFlags(tempConfig).score = currentScore; + + if (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } + + extend(config, bestMoment || tempConfig); +} + +function configFromObject(config) { + if (config._d) { + return; + } + + var i = normalizeObjectUnits(config._i); + config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) { + return obj && parseInt(obj, 10); + }); + + configFromArray(config); +} + +function createFromConfig (config) { + var res = new Moment(checkOverflow(prepareConfig(config))); + if (res._nextDay) { + // Adding is smart enough around DST + res.add(1, 'd'); + res._nextDay = undefined; + } + + return res; +} + +function prepareConfig (config) { + var input = config._i, + format = config._f; + + config._locale = config._locale || getLocale(config._l); + + if (input === null || (format === undefined && input === '')) { + return createInvalid({nullInput: true}); + } + + if (typeof input === 'string') { + config._i = input = config._locale.preparse(input); + } + + if (isMoment(input)) { + return new Moment(checkOverflow(input)); + } else if (isDate(input)) { + config._d = input; + } else if (isArray(format)) { + configFromStringAndArray(config); + } else if (format) { + configFromStringAndFormat(config); + } else { + configFromInput(config); + } + + if (!isValid(config)) { + config._d = null; + } + + return config; +} + +function configFromInput(config) { + var input = config._i; + if (isUndefined(input)) { + config._d = new Date(hooks.now()); + } else if (isDate(input)) { + config._d = new Date(input.valueOf()); + } else if (typeof input === 'string') { + configFromString(config); + } else if (isArray(input)) { + config._a = map(input.slice(0), function (obj) { + return parseInt(obj, 10); + }); + configFromArray(config); + } else if (isObject(input)) { + configFromObject(config); + } else if (isNumber(input)) { + // from milliseconds + config._d = new Date(input); + } else { + hooks.createFromInputFallback(config); + } +} + +function createLocalOrUTC (input, format, locale, strict, isUTC) { + var c = {}; + + if (locale === true || locale === false) { + strict = locale; + locale = undefined; + } + + if ((isObject(input) && isObjectEmpty(input)) || + (isArray(input) && input.length === 0)) { + input = undefined; + } + // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + c._isAMomentObject = true; + c._useUTC = c._isUTC = isUTC; + c._l = locale; + c._i = input; + c._f = format; + c._strict = strict; + + return createFromConfig(c); +} + +function createLocal (input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, false); +} + +var prototypeMin = deprecate( + 'moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/', + function () { + var other = createLocal.apply(null, arguments); + if (this.isValid() && other.isValid()) { + return other < this ? this : other; + } else { + return createInvalid(); + } + } +); + +var prototypeMax = deprecate( + 'moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/', + function () { + var other = createLocal.apply(null, arguments); + if (this.isValid() && other.isValid()) { + return other > this ? this : other; + } else { + return createInvalid(); + } + } +); + +// Pick a moment m from moments so that m[fn](other) is true for all +// other. This relies on the function fn to be transitive. +// +// moments should either be an array of moment objects or an array, whose +// first element is an array of moment objects. +function pickBy(fn, moments) { + var res, i; + if (moments.length === 1 && isArray(moments[0])) { + moments = moments[0]; + } + if (!moments.length) { + return createLocal(); + } + res = moments[0]; + for (i = 1; i < moments.length; ++i) { + if (!moments[i].isValid() || moments[i][fn](res)) { + res = moments[i]; + } + } + return res; +} + +// TODO: Use [].sort instead? +function min () { + var args = [].slice.call(arguments, 0); + + return pickBy('isBefore', args); +} + +function max () { + var args = [].slice.call(arguments, 0); + + return pickBy('isAfter', args); +} + +var now = function () { + return Date.now ? Date.now() : +(new Date()); +}; + +var ordering = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond']; + +function isDurationValid(m) { + for (var key in m) { + if (!(ordering.indexOf(key) !== -1 && (m[key] == null || !isNaN(m[key])))) { + return false; + } + } + + var unitHasDecimal = false; + for (var i = 0; i < ordering.length; ++i) { + if (m[ordering[i]]) { + if (unitHasDecimal) { + return false; // only allow non-integers for smallest unit + } + if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) { + unitHasDecimal = true; + } + } + } + + return true; +} + +function isValid$1() { + return this._isValid; +} + +function createInvalid$1() { + return createDuration(NaN); +} + +function Duration (duration) { + var normalizedInput = normalizeObjectUnits(duration), + years = normalizedInput.year || 0, + quarters = normalizedInput.quarter || 0, + months = normalizedInput.month || 0, + weeks = normalizedInput.week || 0, + days = normalizedInput.day || 0, + hours = normalizedInput.hour || 0, + minutes = normalizedInput.minute || 0, + seconds = normalizedInput.second || 0, + milliseconds = normalizedInput.millisecond || 0; + + this._isValid = isDurationValid(normalizedInput); + + // representation for dateAddRemove + this._milliseconds = +milliseconds + + seconds * 1e3 + // 1000 + minutes * 6e4 + // 1000 * 60 + hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978 + // Because of dateAddRemove treats 24 hours as different from a + // day when working around DST, we need to store them separately + this._days = +days + + weeks * 7; + // It is impossible translate months into days without knowing + // which months you are are talking about, so we have to store + // it separately. + this._months = +months + + quarters * 3 + + years * 12; + + this._data = {}; + + this._locale = getLocale(); + + this._bubble(); +} + +function isDuration (obj) { + return obj instanceof Duration; +} + +function absRound (number) { + if (number < 0) { + return Math.round(-1 * number) * -1; + } else { + return Math.round(number); + } +} + +// FORMATTING + +function offset (token, separator) { + addFormatToken(token, 0, 0, function () { + var offset = this.utcOffset(); + var sign = '+'; + if (offset < 0) { + offset = -offset; + sign = '-'; + } + return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~(offset) % 60, 2); + }); +} + +offset('Z', ':'); +offset('ZZ', ''); + +// PARSING + +addRegexToken('Z', matchShortOffset); +addRegexToken('ZZ', matchShortOffset); +addParseToken(['Z', 'ZZ'], function (input, array, config) { + config._useUTC = true; + config._tzm = offsetFromString(matchShortOffset, input); +}); + +// HELPERS + +// timezone chunker +// '+10:00' > ['10', '00'] +// '-1530' > ['-15', '30'] +var chunkOffset = /([\+\-]|\d\d)/gi; + +function offsetFromString(matcher, string) { + var matches = (string || '').match(matcher); + + if (matches === null) { + return null; + } + + var chunk = matches[matches.length - 1] || []; + var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0]; + var minutes = +(parts[1] * 60) + toInt(parts[2]); + + return minutes === 0 ? + 0 : + parts[0] === '+' ? minutes : -minutes; +} + +// Return a moment from input, that is local/utc/zone equivalent to model. +function cloneWithOffset(input, model) { + var res, diff; + if (model._isUTC) { + res = model.clone(); + diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.valueOf(); + // Use low-level api, because this fn is low-level api. + res._d.setTime(res._d.valueOf() + diff); + hooks.updateOffset(res, false); + return res; + } else { + return createLocal(input).local(); + } +} + +function getDateOffset (m) { + // On Firefox.24 Date#getTimezoneOffset returns a floating point. + // https://github.com/moment/moment/pull/1871 + return -Math.round(m._d.getTimezoneOffset() / 15) * 15; +} + +// HOOKS + +// This function will be called whenever a moment is mutated. +// It is intended to keep the offset in sync with the timezone. +hooks.updateOffset = function () {}; + +// MOMENTS + +// keepLocalTime = true means only change the timezone, without +// affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]--> +// 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset +// +0200, so we adjust the time as needed, to be valid. +// +// Keeping the time actually adds/subtracts (one hour) +// from the actual represented time. That is why we call updateOffset +// a second time. In case it wants us to change the offset again +// _changeInProgress == true case, then we have to adjust, because +// there is no such time in the given timezone. +function getSetOffset (input, keepLocalTime, keepMinutes) { + var offset = this._offset || 0, + localAdjust; + if (!this.isValid()) { + return input != null ? this : NaN; + } + if (input != null) { + if (typeof input === 'string') { + input = offsetFromString(matchShortOffset, input); + if (input === null) { + return this; + } + } else if (Math.abs(input) < 16 && !keepMinutes) { + input = input * 60; + } + if (!this._isUTC && keepLocalTime) { + localAdjust = getDateOffset(this); + } + this._offset = input; + this._isUTC = true; + if (localAdjust != null) { + this.add(localAdjust, 'm'); + } + if (offset !== input) { + if (!keepLocalTime || this._changeInProgress) { + addSubtract(this, createDuration(input - offset, 'm'), 1, false); + } else if (!this._changeInProgress) { + this._changeInProgress = true; + hooks.updateOffset(this, true); + this._changeInProgress = null; + } + } + return this; + } else { + return this._isUTC ? offset : getDateOffset(this); + } +} + +function getSetZone (input, keepLocalTime) { + if (input != null) { + if (typeof input !== 'string') { + input = -input; + } + + this.utcOffset(input, keepLocalTime); + + return this; + } else { + return -this.utcOffset(); + } +} + +function setOffsetToUTC (keepLocalTime) { + return this.utcOffset(0, keepLocalTime); +} + +function setOffsetToLocal (keepLocalTime) { + if (this._isUTC) { + this.utcOffset(0, keepLocalTime); + this._isUTC = false; + + if (keepLocalTime) { + this.subtract(getDateOffset(this), 'm'); + } + } + return this; +} + +function setOffsetToParsedOffset () { + if (this._tzm != null) { + this.utcOffset(this._tzm, false, true); + } else if (typeof this._i === 'string') { + var tZone = offsetFromString(matchOffset, this._i); + if (tZone != null) { + this.utcOffset(tZone); + } + else { + this.utcOffset(0, true); + } + } + return this; +} + +function hasAlignedHourOffset (input) { + if (!this.isValid()) { + return false; + } + input = input ? createLocal(input).utcOffset() : 0; + + return (this.utcOffset() - input) % 60 === 0; +} + +function isDaylightSavingTime () { + return ( + this.utcOffset() > this.clone().month(0).utcOffset() || + this.utcOffset() > this.clone().month(5).utcOffset() + ); +} + +function isDaylightSavingTimeShifted () { + if (!isUndefined(this._isDSTShifted)) { + return this._isDSTShifted; + } + + var c = {}; + + copyConfig(c, this); + c = prepareConfig(c); + + if (c._a) { + var other = c._isUTC ? createUTC(c._a) : createLocal(c._a); + this._isDSTShifted = this.isValid() && + compareArrays(c._a, other.toArray()) > 0; + } else { + this._isDSTShifted = false; + } + + return this._isDSTShifted; +} + +function isLocal () { + return this.isValid() ? !this._isUTC : false; +} + +function isUtcOffset () { + return this.isValid() ? this._isUTC : false; +} + +function isUtc () { + return this.isValid() ? this._isUTC && this._offset === 0 : false; +} + +// ASP.NET json date format regex +var aspNetRegex = /^(\-)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/; + +// from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html +// somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere +// and further modified to allow for strings containing both week and day +var isoRegex = /^(-)?P(?:(-?[0-9,.]*)Y)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)W)?(?:(-?[0-9,.]*)D)?(?:T(?:(-?[0-9,.]*)H)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)S)?)?$/; + +function createDuration (input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + diffRes; + + if (isDuration(input)) { + duration = { + ms : input._milliseconds, + d : input._days, + M : input._months + }; + } else if (isNumber(input)) { + duration = {}; + if (key) { + duration[key] = input; + } else { + duration.milliseconds = input; + } + } else if (!!(match = aspNetRegex.exec(input))) { + sign = (match[1] === '-') ? -1 : 1; + duration = { + y : 0, + d : toInt(match[DATE]) * sign, + h : toInt(match[HOUR]) * sign, + m : toInt(match[MINUTE]) * sign, + s : toInt(match[SECOND]) * sign, + ms : toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is included in the match + }; + } else if (!!(match = isoRegex.exec(input))) { + sign = (match[1] === '-') ? -1 : 1; + duration = { + y : parseIso(match[2], sign), + M : parseIso(match[3], sign), + w : parseIso(match[4], sign), + d : parseIso(match[5], sign), + h : parseIso(match[6], sign), + m : parseIso(match[7], sign), + s : parseIso(match[8], sign) + }; + } else if (duration == null) {// checks for null or undefined + duration = {}; + } else if (typeof duration === 'object' && ('from' in duration || 'to' in duration)) { + diffRes = momentsDifference(createLocal(duration.from), createLocal(duration.to)); + + duration = {}; + duration.ms = diffRes.milliseconds; + duration.M = diffRes.months; + } + + ret = new Duration(duration); + + if (isDuration(input) && hasOwnProp(input, '_locale')) { + ret._locale = input._locale; + } + + return ret; +} + +createDuration.fn = Duration.prototype; +createDuration.invalid = createInvalid$1; + +function parseIso (inp, sign) { + // We'd normally use ~~inp for this, but unfortunately it also + // converts floats to ints. + // inp may be undefined, so careful calling replace on it. + var res = inp && parseFloat(inp.replace(',', '.')); + // apply sign while we're at it + return (isNaN(res) ? 0 : res) * sign; +} + +function positiveMomentsDifference(base, other) { + var res = {milliseconds: 0, months: 0}; + + res.months = other.month() - base.month() + + (other.year() - base.year()) * 12; + if (base.clone().add(res.months, 'M').isAfter(other)) { + --res.months; + } + + res.milliseconds = +other - +(base.clone().add(res.months, 'M')); + + return res; +} + +function momentsDifference(base, other) { + var res; + if (!(base.isValid() && other.isValid())) { + return {milliseconds: 0, months: 0}; + } + + other = cloneWithOffset(other, base); + if (base.isBefore(other)) { + res = positiveMomentsDifference(base, other); + } else { + res = positiveMomentsDifference(other, base); + res.milliseconds = -res.milliseconds; + res.months = -res.months; + } + + return res; +} + +// TODO: remove 'name' arg after deprecation is removed +function createAdder(direction, name) { + return function (val, period) { + var dur, tmp; + //invert the arguments, but complain about it + if (period !== null && !isNaN(+period)) { + deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period). ' + + 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.'); + tmp = val; val = period; period = tmp; + } + + val = typeof val === 'string' ? +val : val; + dur = createDuration(val, period); + addSubtract(this, dur, direction); + return this; + }; +} + +function addSubtract (mom, duration, isAdding, updateOffset) { + var milliseconds = duration._milliseconds, + days = absRound(duration._days), + months = absRound(duration._months); + + if (!mom.isValid()) { + // No op + return; + } + + updateOffset = updateOffset == null ? true : updateOffset; + + if (milliseconds) { + mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding); + } + if (days) { + set$1(mom, 'Date', get(mom, 'Date') + days * isAdding); + } + if (months) { + setMonth(mom, get(mom, 'Month') + months * isAdding); + } + if (updateOffset) { + hooks.updateOffset(mom, days || months); + } +} + +var add = createAdder(1, 'add'); +var subtract = createAdder(-1, 'subtract'); + +function getCalendarFormat(myMoment, now) { + var diff = myMoment.diff(now, 'days', true); + return diff < -6 ? 'sameElse' : + diff < -1 ? 'lastWeek' : + diff < 0 ? 'lastDay' : + diff < 1 ? 'sameDay' : + diff < 2 ? 'nextDay' : + diff < 7 ? 'nextWeek' : 'sameElse'; +} + +function calendar$1 (time, formats) { + // We want to compare the start of today, vs this. + // Getting start-of-today depends on whether we're local/utc/offset or not. + var now = time || createLocal(), + sod = cloneWithOffset(now, this).startOf('day'), + format = hooks.calendarFormat(this, sod) || 'sameElse'; + + var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[format]); + + return this.format(output || this.localeData().calendar(format, this, createLocal(now))); +} + +function clone () { + return new Moment(this); +} + +function isAfter (input, units) { + var localInput = isMoment(input) ? input : createLocal(input); + if (!(this.isValid() && localInput.isValid())) { + return false; + } + units = normalizeUnits(!isUndefined(units) ? units : 'millisecond'); + if (units === 'millisecond') { + return this.valueOf() > localInput.valueOf(); + } else { + return localInput.valueOf() < this.clone().startOf(units).valueOf(); + } +} + +function isBefore (input, units) { + var localInput = isMoment(input) ? input : createLocal(input); + if (!(this.isValid() && localInput.isValid())) { + return false; + } + units = normalizeUnits(!isUndefined(units) ? units : 'millisecond'); + if (units === 'millisecond') { + return this.valueOf() < localInput.valueOf(); + } else { + return this.clone().endOf(units).valueOf() < localInput.valueOf(); + } +} + +function isBetween (from, to, units, inclusivity) { + inclusivity = inclusivity || '()'; + return (inclusivity[0] === '(' ? this.isAfter(from, units) : !this.isBefore(from, units)) && + (inclusivity[1] === ')' ? this.isBefore(to, units) : !this.isAfter(to, units)); +} + +function isSame (input, units) { + var localInput = isMoment(input) ? input : createLocal(input), + inputMs; + if (!(this.isValid() && localInput.isValid())) { + return false; + } + units = normalizeUnits(units || 'millisecond'); + if (units === 'millisecond') { + return this.valueOf() === localInput.valueOf(); + } else { + inputMs = localInput.valueOf(); + return this.clone().startOf(units).valueOf() <= inputMs && inputMs <= this.clone().endOf(units).valueOf(); + } +} + +function isSameOrAfter (input, units) { + return this.isSame(input, units) || this.isAfter(input,units); +} + +function isSameOrBefore (input, units) { + return this.isSame(input, units) || this.isBefore(input,units); +} + +function diff (input, units, asFloat) { + var that, + zoneDelta, + delta, output; + + if (!this.isValid()) { + return NaN; + } + + that = cloneWithOffset(input, this); + + if (!that.isValid()) { + return NaN; + } + + zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4; + + units = normalizeUnits(units); + + if (units === 'year' || units === 'month' || units === 'quarter') { + output = monthDiff(this, that); + if (units === 'quarter') { + output = output / 3; + } else if (units === 'year') { + output = output / 12; + } + } else { + delta = this - that; + output = units === 'second' ? delta / 1e3 : // 1000 + units === 'minute' ? delta / 6e4 : // 1000 * 60 + units === 'hour' ? delta / 36e5 : // 1000 * 60 * 60 + units === 'day' ? (delta - zoneDelta) / 864e5 : // 1000 * 60 * 60 * 24, negate dst + units === 'week' ? (delta - zoneDelta) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst + delta; + } + return asFloat ? output : absFloor(output); +} + +function monthDiff (a, b) { + // difference in months + var wholeMonthDiff = ((b.year() - a.year()) * 12) + (b.month() - a.month()), + // b is in (anchor - 1 month, anchor + 1 month) + anchor = a.clone().add(wholeMonthDiff, 'months'), + anchor2, adjust; + + if (b - anchor < 0) { + anchor2 = a.clone().add(wholeMonthDiff - 1, 'months'); + // linear across the month + adjust = (b - anchor) / (anchor - anchor2); + } else { + anchor2 = a.clone().add(wholeMonthDiff + 1, 'months'); + // linear across the month + adjust = (b - anchor) / (anchor2 - anchor); + } + + //check for negative zero, return zero if negative zero + return -(wholeMonthDiff + adjust) || 0; +} + +hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ'; +hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]'; + +function toString () { + return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); +} + +function toISOString() { + if (!this.isValid()) { + return null; + } + var m = this.clone().utc(); + if (m.year() < 0 || m.year() > 9999) { + return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); + } + if (isFunction(Date.prototype.toISOString)) { + // native implementation is ~50x faster, use it when we can + return this.toDate().toISOString(); + } + return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); +} + +/** + * Return a human readable representation of a moment that can + * also be evaluated to get a new moment which is the same + * + * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects + */ +function inspect () { + if (!this.isValid()) { + return 'moment.invalid(/* ' + this._i + ' */)'; + } + var func = 'moment'; + var zone = ''; + if (!this.isLocal()) { + func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone'; + zone = 'Z'; + } + var prefix = '[' + func + '("]'; + var year = (0 <= this.year() && this.year() <= 9999) ? 'YYYY' : 'YYYYYY'; + var datetime = '-MM-DD[T]HH:mm:ss.SSS'; + var suffix = zone + '[")]'; + + return this.format(prefix + year + datetime + suffix); +} + +function format (inputString) { + if (!inputString) { + inputString = this.isUtc() ? hooks.defaultFormatUtc : hooks.defaultFormat; + } + var output = formatMoment(this, inputString); + return this.localeData().postformat(output); +} + +function from (time, withoutSuffix) { + if (this.isValid() && + ((isMoment(time) && time.isValid()) || + createLocal(time).isValid())) { + return createDuration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix); + } else { + return this.localeData().invalidDate(); + } +} + +function fromNow (withoutSuffix) { + return this.from(createLocal(), withoutSuffix); +} + +function to (time, withoutSuffix) { + if (this.isValid() && + ((isMoment(time) && time.isValid()) || + createLocal(time).isValid())) { + return createDuration({from: this, to: time}).locale(this.locale()).humanize(!withoutSuffix); + } else { + return this.localeData().invalidDate(); + } +} + +function toNow (withoutSuffix) { + return this.to(createLocal(), withoutSuffix); +} + +// If passed a locale key, it will set the locale for this +// instance. Otherwise, it will return the locale configuration +// variables for this instance. +function locale (key) { + var newLocaleData; + + if (key === undefined) { + return this._locale._abbr; + } else { + newLocaleData = getLocale(key); + if (newLocaleData != null) { + this._locale = newLocaleData; + } + return this; + } +} + +var lang = deprecate( + 'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', + function (key) { + if (key === undefined) { + return this.localeData(); + } else { + return this.locale(key); + } + } +); + +function localeData () { + return this._locale; +} + +function startOf (units) { + units = normalizeUnits(units); + // the following switch intentionally omits break keywords + // to utilize falling through the cases. + switch (units) { + case 'year': + this.month(0); + /* falls through */ + case 'quarter': + case 'month': + this.date(1); + /* falls through */ + case 'week': + case 'isoWeek': + case 'day': + case 'date': + this.hours(0); + /* falls through */ + case 'hour': + this.minutes(0); + /* falls through */ + case 'minute': + this.seconds(0); + /* falls through */ + case 'second': + this.milliseconds(0); + } + + // weeks are a special case + if (units === 'week') { + this.weekday(0); + } + if (units === 'isoWeek') { + this.isoWeekday(1); + } + + // quarters are also special + if (units === 'quarter') { + this.month(Math.floor(this.month() / 3) * 3); + } + + return this; +} + +function endOf (units) { + units = normalizeUnits(units); + if (units === undefined || units === 'millisecond') { + return this; + } + + // 'date' is an alias for 'day', so it should be considered as such. + if (units === 'date') { + units = 'day'; + } + + return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms'); +} + +function valueOf () { + return this._d.valueOf() - ((this._offset || 0) * 60000); +} + +function unix () { + return Math.floor(this.valueOf() / 1000); +} + +function toDate () { + return new Date(this.valueOf()); +} + +function toArray () { + var m = this; + return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()]; +} + +function toObject () { + var m = this; + return { + years: m.year(), + months: m.month(), + date: m.date(), + hours: m.hours(), + minutes: m.minutes(), + seconds: m.seconds(), + milliseconds: m.milliseconds() + }; +} + +function toJSON () { + // new Date(NaN).toJSON() === null + return this.isValid() ? this.toISOString() : null; +} + +function isValid$2 () { + return isValid(this); +} + +function parsingFlags () { + return extend({}, getParsingFlags(this)); +} + +function invalidAt () { + return getParsingFlags(this).overflow; +} + +function creationData() { + return { + input: this._i, + format: this._f, + locale: this._locale, + isUTC: this._isUTC, + strict: this._strict + }; +} + +// FORMATTING + +addFormatToken(0, ['gg', 2], 0, function () { + return this.weekYear() % 100; +}); + +addFormatToken(0, ['GG', 2], 0, function () { + return this.isoWeekYear() % 100; +}); + +function addWeekYearFormatToken (token, getter) { + addFormatToken(0, [token, token.length], 0, getter); +} + +addWeekYearFormatToken('gggg', 'weekYear'); +addWeekYearFormatToken('ggggg', 'weekYear'); +addWeekYearFormatToken('GGGG', 'isoWeekYear'); +addWeekYearFormatToken('GGGGG', 'isoWeekYear'); + +// ALIASES + +addUnitAlias('weekYear', 'gg'); +addUnitAlias('isoWeekYear', 'GG'); + +// PRIORITY + +addUnitPriority('weekYear', 1); +addUnitPriority('isoWeekYear', 1); + + +// PARSING + +addRegexToken('G', matchSigned); +addRegexToken('g', matchSigned); +addRegexToken('GG', match1to2, match2); +addRegexToken('gg', match1to2, match2); +addRegexToken('GGGG', match1to4, match4); +addRegexToken('gggg', match1to4, match4); +addRegexToken('GGGGG', match1to6, match6); +addRegexToken('ggggg', match1to6, match6); + +addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) { + week[token.substr(0, 2)] = toInt(input); +}); + +addWeekParseToken(['gg', 'GG'], function (input, week, config, token) { + week[token] = hooks.parseTwoDigitYear(input); +}); + +// MOMENTS + +function getSetWeekYear (input) { + return getSetWeekYearHelper.call(this, + input, + this.week(), + this.weekday(), + this.localeData()._week.dow, + this.localeData()._week.doy); +} + +function getSetISOWeekYear (input) { + return getSetWeekYearHelper.call(this, + input, this.isoWeek(), this.isoWeekday(), 1, 4); +} + +function getISOWeeksInYear () { + return weeksInYear(this.year(), 1, 4); +} + +function getWeeksInYear () { + var weekInfo = this.localeData()._week; + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); +} + +function getSetWeekYearHelper(input, week, weekday, dow, doy) { + var weeksTarget; + if (input == null) { + return weekOfYear(this, dow, doy).year; + } else { + weeksTarget = weeksInYear(input, dow, doy); + if (week > weeksTarget) { + week = weeksTarget; + } + return setWeekAll.call(this, input, week, weekday, dow, doy); + } +} + +function setWeekAll(weekYear, week, weekday, dow, doy) { + var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy), + date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear); + + this.year(date.getUTCFullYear()); + this.month(date.getUTCMonth()); + this.date(date.getUTCDate()); + return this; +} + +// FORMATTING + +addFormatToken('Q', 0, 'Qo', 'quarter'); + +// ALIASES + +addUnitAlias('quarter', 'Q'); + +// PRIORITY + +addUnitPriority('quarter', 7); + +// PARSING + +addRegexToken('Q', match1); +addParseToken('Q', function (input, array) { + array[MONTH] = (toInt(input) - 1) * 3; +}); + +// MOMENTS + +function getSetQuarter (input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); +} + +// FORMATTING + +addFormatToken('D', ['DD', 2], 'Do', 'date'); + +// ALIASES + +addUnitAlias('date', 'D'); + +// PRIOROITY +addUnitPriority('date', 9); + +// PARSING + +addRegexToken('D', match1to2); +addRegexToken('DD', match1to2, match2); +addRegexToken('Do', function (isStrict, locale) { + // TODO: Remove "ordinalParse" fallback in next major release. + return isStrict ? + (locale._dayOfMonthOrdinalParse || locale._ordinalParse) : + locale._dayOfMonthOrdinalParseLenient; +}); + +addParseToken(['D', 'DD'], DATE); +addParseToken('Do', function (input, array) { + array[DATE] = toInt(input.match(match1to2)[0], 10); +}); + +// MOMENTS + +var getSetDayOfMonth = makeGetSet('Date', true); + +// FORMATTING + +addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear'); + +// ALIASES + +addUnitAlias('dayOfYear', 'DDD'); + +// PRIORITY +addUnitPriority('dayOfYear', 4); + +// PARSING + +addRegexToken('DDD', match1to3); +addRegexToken('DDDD', match3); +addParseToken(['DDD', 'DDDD'], function (input, array, config) { + config._dayOfYear = toInt(input); +}); + +// HELPERS + +// MOMENTS + +function getSetDayOfYear (input) { + var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1; + return input == null ? dayOfYear : this.add((input - dayOfYear), 'd'); +} + +// FORMATTING + +addFormatToken('m', ['mm', 2], 0, 'minute'); + +// ALIASES + +addUnitAlias('minute', 'm'); + +// PRIORITY + +addUnitPriority('minute', 14); + +// PARSING + +addRegexToken('m', match1to2); +addRegexToken('mm', match1to2, match2); +addParseToken(['m', 'mm'], MINUTE); + +// MOMENTS + +var getSetMinute = makeGetSet('Minutes', false); + +// FORMATTING + +addFormatToken('s', ['ss', 2], 0, 'second'); + +// ALIASES + +addUnitAlias('second', 's'); + +// PRIORITY + +addUnitPriority('second', 15); + +// PARSING + +addRegexToken('s', match1to2); +addRegexToken('ss', match1to2, match2); +addParseToken(['s', 'ss'], SECOND); + +// MOMENTS + +var getSetSecond = makeGetSet('Seconds', false); + +// FORMATTING + +addFormatToken('S', 0, 0, function () { + return ~~(this.millisecond() / 100); +}); + +addFormatToken(0, ['SS', 2], 0, function () { + return ~~(this.millisecond() / 10); +}); + +addFormatToken(0, ['SSS', 3], 0, 'millisecond'); +addFormatToken(0, ['SSSS', 4], 0, function () { + return this.millisecond() * 10; +}); +addFormatToken(0, ['SSSSS', 5], 0, function () { + return this.millisecond() * 100; +}); +addFormatToken(0, ['SSSSSS', 6], 0, function () { + return this.millisecond() * 1000; +}); +addFormatToken(0, ['SSSSSSS', 7], 0, function () { + return this.millisecond() * 10000; +}); +addFormatToken(0, ['SSSSSSSS', 8], 0, function () { + return this.millisecond() * 100000; +}); +addFormatToken(0, ['SSSSSSSSS', 9], 0, function () { + return this.millisecond() * 1000000; +}); + + +// ALIASES + +addUnitAlias('millisecond', 'ms'); + +// PRIORITY + +addUnitPriority('millisecond', 16); + +// PARSING + +addRegexToken('S', match1to3, match1); +addRegexToken('SS', match1to3, match2); +addRegexToken('SSS', match1to3, match3); + +var token; +for (token = 'SSSS'; token.length <= 9; token += 'S') { + addRegexToken(token, matchUnsigned); +} + +function parseMs(input, array) { + array[MILLISECOND] = toInt(('0.' + input) * 1000); +} + +for (token = 'S'; token.length <= 9; token += 'S') { + addParseToken(token, parseMs); +} +// MOMENTS + +var getSetMillisecond = makeGetSet('Milliseconds', false); + +// FORMATTING + +addFormatToken('z', 0, 0, 'zoneAbbr'); +addFormatToken('zz', 0, 0, 'zoneName'); + +// MOMENTS + +function getZoneAbbr () { + return this._isUTC ? 'UTC' : ''; +} + +function getZoneName () { + return this._isUTC ? 'Coordinated Universal Time' : ''; +} + +var proto = Moment.prototype; + +proto.add = add; +proto.calendar = calendar$1; +proto.clone = clone; +proto.diff = diff; +proto.endOf = endOf; +proto.format = format; +proto.from = from; +proto.fromNow = fromNow; +proto.to = to; +proto.toNow = toNow; +proto.get = stringGet; +proto.invalidAt = invalidAt; +proto.isAfter = isAfter; +proto.isBefore = isBefore; +proto.isBetween = isBetween; +proto.isSame = isSame; +proto.isSameOrAfter = isSameOrAfter; +proto.isSameOrBefore = isSameOrBefore; +proto.isValid = isValid$2; +proto.lang = lang; +proto.locale = locale; +proto.localeData = localeData; +proto.max = prototypeMax; +proto.min = prototypeMin; +proto.parsingFlags = parsingFlags; +proto.set = stringSet; +proto.startOf = startOf; +proto.subtract = subtract; +proto.toArray = toArray; +proto.toObject = toObject; +proto.toDate = toDate; +proto.toISOString = toISOString; +proto.inspect = inspect; +proto.toJSON = toJSON; +proto.toString = toString; +proto.unix = unix; +proto.valueOf = valueOf; +proto.creationData = creationData; + +// Year +proto.year = getSetYear; +proto.isLeapYear = getIsLeapYear; + +// Week Year +proto.weekYear = getSetWeekYear; +proto.isoWeekYear = getSetISOWeekYear; + +// Quarter +proto.quarter = proto.quarters = getSetQuarter; + +// Month +proto.month = getSetMonth; +proto.daysInMonth = getDaysInMonth; + +// Week +proto.week = proto.weeks = getSetWeek; +proto.isoWeek = proto.isoWeeks = getSetISOWeek; +proto.weeksInYear = getWeeksInYear; +proto.isoWeeksInYear = getISOWeeksInYear; + +// Day +proto.date = getSetDayOfMonth; +proto.day = proto.days = getSetDayOfWeek; +proto.weekday = getSetLocaleDayOfWeek; +proto.isoWeekday = getSetISODayOfWeek; +proto.dayOfYear = getSetDayOfYear; + +// Hour +proto.hour = proto.hours = getSetHour; + +// Minute +proto.minute = proto.minutes = getSetMinute; + +// Second +proto.second = proto.seconds = getSetSecond; + +// Millisecond +proto.millisecond = proto.milliseconds = getSetMillisecond; + +// Offset +proto.utcOffset = getSetOffset; +proto.utc = setOffsetToUTC; +proto.local = setOffsetToLocal; +proto.parseZone = setOffsetToParsedOffset; +proto.hasAlignedHourOffset = hasAlignedHourOffset; +proto.isDST = isDaylightSavingTime; +proto.isLocal = isLocal; +proto.isUtcOffset = isUtcOffset; +proto.isUtc = isUtc; +proto.isUTC = isUtc; + +// Timezone +proto.zoneAbbr = getZoneAbbr; +proto.zoneName = getZoneName; + +// Deprecations +proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth); +proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth); +proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear); +proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', getSetZone); +proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', isDaylightSavingTimeShifted); + +function createUnix (input) { + return createLocal(input * 1000); +} + +function createInZone () { + return createLocal.apply(null, arguments).parseZone(); +} + +function preParsePostFormat (string) { + return string; +} + +var proto$1 = Locale.prototype; + +proto$1.calendar = calendar; +proto$1.longDateFormat = longDateFormat; +proto$1.invalidDate = invalidDate; +proto$1.ordinal = ordinal; +proto$1.preparse = preParsePostFormat; +proto$1.postformat = preParsePostFormat; +proto$1.relativeTime = relativeTime; +proto$1.pastFuture = pastFuture; +proto$1.set = set; + +// Month +proto$1.months = localeMonths; +proto$1.monthsShort = localeMonthsShort; +proto$1.monthsParse = localeMonthsParse; +proto$1.monthsRegex = monthsRegex; +proto$1.monthsShortRegex = monthsShortRegex; + +// Week +proto$1.week = localeWeek; +proto$1.firstDayOfYear = localeFirstDayOfYear; +proto$1.firstDayOfWeek = localeFirstDayOfWeek; + +// Day of Week +proto$1.weekdays = localeWeekdays; +proto$1.weekdaysMin = localeWeekdaysMin; +proto$1.weekdaysShort = localeWeekdaysShort; +proto$1.weekdaysParse = localeWeekdaysParse; + +proto$1.weekdaysRegex = weekdaysRegex; +proto$1.weekdaysShortRegex = weekdaysShortRegex; +proto$1.weekdaysMinRegex = weekdaysMinRegex; + +// Hours +proto$1.isPM = localeIsPM; +proto$1.meridiem = localeMeridiem; + +function get$1 (format, index, field, setter) { + var locale = getLocale(); + var utc = createUTC().set(setter, index); + return locale[field](utc, format); +} + +function listMonthsImpl (format, index, field) { + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + + if (index != null) { + return get$1(format, index, field, 'month'); + } + + var i; + var out = []; + for (i = 0; i < 12; i++) { + out[i] = get$1(format, i, field, 'month'); + } + return out; +} + +// () +// (5) +// (fmt, 5) +// (fmt) +// (true) +// (true, 5) +// (true, fmt, 5) +// (true, fmt) +function listWeekdaysImpl (localeSorted, format, index, field) { + if (typeof localeSorted === 'boolean') { + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + } else { + format = localeSorted; + index = format; + localeSorted = false; + + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + } + + var locale = getLocale(), + shift = localeSorted ? locale._week.dow : 0; + + if (index != null) { + return get$1(format, (index + shift) % 7, field, 'day'); + } + + var i; + var out = []; + for (i = 0; i < 7; i++) { + out[i] = get$1(format, (i + shift) % 7, field, 'day'); + } + return out; +} + +function listMonths (format, index) { + return listMonthsImpl(format, index, 'months'); +} + +function listMonthsShort (format, index) { + return listMonthsImpl(format, index, 'monthsShort'); +} + +function listWeekdays (localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdays'); +} + +function listWeekdaysShort (localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort'); +} + +function listWeekdaysMin (localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin'); +} + +getSetGlobalLocale('en', { + dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/, + ordinal : function (number) { + var b = number % 10, + output = (toInt(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + } +}); + +// Side effect imports +hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', getSetGlobalLocale); +hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', getLocale); + +var mathAbs = Math.abs; + +function abs () { + var data = this._data; + + this._milliseconds = mathAbs(this._milliseconds); + this._days = mathAbs(this._days); + this._months = mathAbs(this._months); + + data.milliseconds = mathAbs(data.milliseconds); + data.seconds = mathAbs(data.seconds); + data.minutes = mathAbs(data.minutes); + data.hours = mathAbs(data.hours); + data.months = mathAbs(data.months); + data.years = mathAbs(data.years); + + return this; +} + +function addSubtract$1 (duration, input, value, direction) { + var other = createDuration(input, value); + + duration._milliseconds += direction * other._milliseconds; + duration._days += direction * other._days; + duration._months += direction * other._months; + + return duration._bubble(); +} + +// supports only 2.0-style add(1, 's') or add(duration) +function add$1 (input, value) { + return addSubtract$1(this, input, value, 1); +} + +// supports only 2.0-style subtract(1, 's') or subtract(duration) +function subtract$1 (input, value) { + return addSubtract$1(this, input, value, -1); +} + +function absCeil (number) { + if (number < 0) { + return Math.floor(number); + } else { + return Math.ceil(number); + } +} + +function bubble () { + var milliseconds = this._milliseconds; + var days = this._days; + var months = this._months; + var data = this._data; + var seconds, minutes, hours, years, monthsFromDays; + + // if we have a mix of positive and negative values, bubble down first + // check: https://github.com/moment/moment/issues/2166 + if (!((milliseconds >= 0 && days >= 0 && months >= 0) || + (milliseconds <= 0 && days <= 0 && months <= 0))) { + milliseconds += absCeil(monthsToDays(months) + days) * 864e5; + days = 0; + months = 0; + } + + // The following code bubbles up values, see the tests for + // examples of what that means. + data.milliseconds = milliseconds % 1000; + + seconds = absFloor(milliseconds / 1000); + data.seconds = seconds % 60; + + minutes = absFloor(seconds / 60); + data.minutes = minutes % 60; + + hours = absFloor(minutes / 60); + data.hours = hours % 24; + + days += absFloor(hours / 24); + + // convert days to months + monthsFromDays = absFloor(daysToMonths(days)); + months += monthsFromDays; + days -= absCeil(monthsToDays(monthsFromDays)); + + // 12 months -> 1 year + years = absFloor(months / 12); + months %= 12; + + data.days = days; + data.months = months; + data.years = years; + + return this; +} + +function daysToMonths (days) { + // 400 years have 146097 days (taking into account leap year rules) + // 400 years have 12 months === 4800 + return days * 4800 / 146097; +} + +function monthsToDays (months) { + // the reverse of daysToMonths + return months * 146097 / 4800; +} + +function as (units) { + if (!this.isValid()) { + return NaN; + } + var days; + var months; + var milliseconds = this._milliseconds; + + units = normalizeUnits(units); + + if (units === 'month' || units === 'year') { + days = this._days + milliseconds / 864e5; + months = this._months + daysToMonths(days); + return units === 'month' ? months : months / 12; + } else { + // handle milliseconds separately because of floating point math errors (issue #1867) + days = this._days + Math.round(monthsToDays(this._months)); + switch (units) { + case 'week' : return days / 7 + milliseconds / 6048e5; + case 'day' : return days + milliseconds / 864e5; + case 'hour' : return days * 24 + milliseconds / 36e5; + case 'minute' : return days * 1440 + milliseconds / 6e4; + case 'second' : return days * 86400 + milliseconds / 1000; + // Math.floor prevents floating point math errors here + case 'millisecond': return Math.floor(days * 864e5) + milliseconds; + default: throw new Error('Unknown unit ' + units); + } + } +} + +// TODO: Use this.as('ms')? +function valueOf$1 () { + if (!this.isValid()) { + return NaN; + } + return ( + this._milliseconds + + this._days * 864e5 + + (this._months % 12) * 2592e6 + + toInt(this._months / 12) * 31536e6 + ); +} + +function makeAs (alias) { + return function () { + return this.as(alias); + }; +} + +var asMilliseconds = makeAs('ms'); +var asSeconds = makeAs('s'); +var asMinutes = makeAs('m'); +var asHours = makeAs('h'); +var asDays = makeAs('d'); +var asWeeks = makeAs('w'); +var asMonths = makeAs('M'); +var asYears = makeAs('y'); + +function get$2 (units) { + units = normalizeUnits(units); + return this.isValid() ? this[units + 's']() : NaN; +} + +function makeGetter(name) { + return function () { + return this.isValid() ? this._data[name] : NaN; + }; +} + +var milliseconds = makeGetter('milliseconds'); +var seconds = makeGetter('seconds'); +var minutes = makeGetter('minutes'); +var hours = makeGetter('hours'); +var days = makeGetter('days'); +var months = makeGetter('months'); +var years = makeGetter('years'); + +function weeks () { + return absFloor(this.days() / 7); +} + +var round = Math.round; +var thresholds = { + ss: 44, // a few seconds to seconds + s : 45, // seconds to minute + m : 45, // minutes to hour + h : 22, // hours to day + d : 26, // days to month + M : 11 // months to year +}; + +// helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize +function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) { + return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture); +} + +function relativeTime$1 (posNegDuration, withoutSuffix, locale) { + var duration = createDuration(posNegDuration).abs(); + var seconds = round(duration.as('s')); + var minutes = round(duration.as('m')); + var hours = round(duration.as('h')); + var days = round(duration.as('d')); + var months = round(duration.as('M')); + var years = round(duration.as('y')); + + var a = seconds <= thresholds.ss && ['s', seconds] || + seconds < thresholds.s && ['ss', seconds] || + minutes <= 1 && ['m'] || + minutes < thresholds.m && ['mm', minutes] || + hours <= 1 && ['h'] || + hours < thresholds.h && ['hh', hours] || + days <= 1 && ['d'] || + days < thresholds.d && ['dd', days] || + months <= 1 && ['M'] || + months < thresholds.M && ['MM', months] || + years <= 1 && ['y'] || ['yy', years]; + + a[2] = withoutSuffix; + a[3] = +posNegDuration > 0; + a[4] = locale; + return substituteTimeAgo.apply(null, a); +} + +// This function allows you to set the rounding function for relative time strings +function getSetRelativeTimeRounding (roundingFunction) { + if (roundingFunction === undefined) { + return round; + } + if (typeof(roundingFunction) === 'function') { + round = roundingFunction; + return true; + } + return false; +} + +// This function allows you to set a threshold for relative time strings +function getSetRelativeTimeThreshold (threshold, limit) { + if (thresholds[threshold] === undefined) { + return false; + } + if (limit === undefined) { + return thresholds[threshold]; + } + thresholds[threshold] = limit; + if (threshold === 's') { + thresholds.ss = limit - 1; + } + return true; +} + +function humanize (withSuffix) { + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + + var locale = this.localeData(); + var output = relativeTime$1(this, !withSuffix, locale); + + if (withSuffix) { + output = locale.pastFuture(+this, output); + } + + return locale.postformat(output); +} + +var abs$1 = Math.abs; + +function toISOString$1() { + // for ISO strings we do not use the normal bubbling rules: + // * milliseconds bubble up until they become hours + // * days do not bubble at all + // * months bubble up until they become years + // This is because there is no context-free conversion between hours and days + // (think of clock changes) + // and also not between days and months (28-31 days per month) + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + + var seconds = abs$1(this._milliseconds) / 1000; + var days = abs$1(this._days); + var months = abs$1(this._months); + var minutes, hours, years; + + // 3600 seconds -> 60 minutes -> 1 hour + minutes = absFloor(seconds / 60); + hours = absFloor(minutes / 60); + seconds %= 60; + minutes %= 60; + + // 12 months -> 1 year + years = absFloor(months / 12); + months %= 12; + + + // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js + var Y = years; + var M = months; + var D = days; + var h = hours; + var m = minutes; + var s = seconds; + var total = this.asSeconds(); + + if (!total) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } + + return (total < 0 ? '-' : '') + + 'P' + + (Y ? Y + 'Y' : '') + + (M ? M + 'M' : '') + + (D ? D + 'D' : '') + + ((h || m || s) ? 'T' : '') + + (h ? h + 'H' : '') + + (m ? m + 'M' : '') + + (s ? s + 'S' : ''); +} + +var proto$2 = Duration.prototype; + +proto$2.isValid = isValid$1; +proto$2.abs = abs; +proto$2.add = add$1; +proto$2.subtract = subtract$1; +proto$2.as = as; +proto$2.asMilliseconds = asMilliseconds; +proto$2.asSeconds = asSeconds; +proto$2.asMinutes = asMinutes; +proto$2.asHours = asHours; +proto$2.asDays = asDays; +proto$2.asWeeks = asWeeks; +proto$2.asMonths = asMonths; +proto$2.asYears = asYears; +proto$2.valueOf = valueOf$1; +proto$2._bubble = bubble; +proto$2.get = get$2; +proto$2.milliseconds = milliseconds; +proto$2.seconds = seconds; +proto$2.minutes = minutes; +proto$2.hours = hours; +proto$2.days = days; +proto$2.weeks = weeks; +proto$2.months = months; +proto$2.years = years; +proto$2.humanize = humanize; +proto$2.toISOString = toISOString$1; +proto$2.toString = toISOString$1; +proto$2.toJSON = toISOString$1; +proto$2.locale = locale; +proto$2.localeData = localeData; + +// Deprecations +proto$2.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', toISOString$1); +proto$2.lang = lang; + +// Side effect imports + +// FORMATTING + +addFormatToken('X', 0, 0, 'unix'); +addFormatToken('x', 0, 0, 'valueOf'); + +// PARSING + +addRegexToken('x', matchSigned); +addRegexToken('X', matchTimestamp); +addParseToken('X', function (input, array, config) { + config._d = new Date(parseFloat(input, 10) * 1000); +}); +addParseToken('x', function (input, array, config) { + config._d = new Date(toInt(input)); +}); + +// Side effect imports + + +hooks.version = '2.18.1'; + +setHookCallback(createLocal); + +hooks.fn = proto; +hooks.min = min; +hooks.max = max; +hooks.now = now; +hooks.utc = createUTC; +hooks.unix = createUnix; +hooks.months = listMonths; +hooks.isDate = isDate; +hooks.locale = getSetGlobalLocale; +hooks.invalid = createInvalid; +hooks.duration = createDuration; +hooks.isMoment = isMoment; +hooks.weekdays = listWeekdays; +hooks.parseZone = createInZone; +hooks.localeData = getLocale; +hooks.isDuration = isDuration; +hooks.monthsShort = listMonthsShort; +hooks.weekdaysMin = listWeekdaysMin; +hooks.defineLocale = defineLocale; +hooks.updateLocale = updateLocale; +hooks.locales = listLocales; +hooks.weekdaysShort = listWeekdaysShort; +hooks.normalizeUnits = normalizeUnits; +hooks.relativeTimeRounding = getSetRelativeTimeRounding; +hooks.relativeTimeThreshold = getSetRelativeTimeThreshold; +hooks.calendarFormat = getCalendarFormat; +hooks.prototype = proto; + +return hooks; + +}))); + +/*! + * Chart.js + * http://chartjs.org/ + * Version: 2.7.2 + * + * Copyright 2018 Chart.js Contributors + * Released under the MIT license + * https://github.com/chartjs/Chart.js/blob/master/LICENSE.md + */ +!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).Chart=t()}}(function(){return function t(e,i,n){function a(r,s){if(!i[r]){if(!e[r]){var l="function"==typeof require&&require;if(!s&&l)return l(r,!0);if(o)return o(r,!0);var u=new Error("Cannot find module '"+r+"'");throw u.code="MODULE_NOT_FOUND",u}var d=i[r]={exports:{}};e[r][0].call(d.exports,function(t){var i=e[r][1][t];return a(i||t)},d,d.exports,t,e,i,n)}return i[r].exports}for(var o="function"==typeof require&&require,r=0;ri?(e+.05)/(i+.05):(i+.05)/(e+.05)},level:function(t){var e=this.contrast(t);return e>=7.1?"AAA":e>=4.5?"AA":""},dark:function(){var t=this.values.rgb;return(299*t[0]+587*t[1]+114*t[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var t=[],e=0;e<3;e++)t[e]=255-this.values.rgb[e];return this.setValues("rgb",t),this},lighten:function(t){var e=this.values.hsl;return e[2]+=e[2]*t,this.setValues("hsl",e),this},darken:function(t){var e=this.values.hsl;return e[2]-=e[2]*t,this.setValues("hsl",e),this},saturate:function(t){var e=this.values.hsl;return e[1]+=e[1]*t,this.setValues("hsl",e),this},desaturate:function(t){var e=this.values.hsl;return e[1]-=e[1]*t,this.setValues("hsl",e),this},whiten:function(t){var e=this.values.hwb;return e[1]+=e[1]*t,this.setValues("hwb",e),this},blacken:function(t){var e=this.values.hwb;return e[2]+=e[2]*t,this.setValues("hwb",e),this},greyscale:function(){var t=this.values.rgb,e=.3*t[0]+.59*t[1]+.11*t[2];return this.setValues("rgb",[e,e,e]),this},clearer:function(t){var e=this.values.alpha;return this.setValues("alpha",e-e*t),this},opaquer:function(t){var e=this.values.alpha;return this.setValues("alpha",e+e*t),this},rotate:function(t){var e=this.values.hsl,i=(e[0]+t)%360;return e[0]=i<0?360+i:i,this.setValues("hsl",e),this},mix:function(t,e){var i=this,n=t,a=void 0===e?.5:e,o=2*a-1,r=i.alpha()-n.alpha(),s=((o*r==-1?o:(o+r)/(1+o*r))+1)/2,l=1-s;return this.rgb(s*i.red()+l*n.red(),s*i.green()+l*n.green(),s*i.blue()+l*n.blue()).alpha(i.alpha()*a+n.alpha()*(1-a))},toJSON:function(){return this.rgb()},clone:function(){var t,e,i=new o,n=this.values,a=i.values;for(var r in n)n.hasOwnProperty(r)&&(t=n[r],"[object Array]"===(e={}.toString.call(t))?a[r]=t.slice(0):"[object Number]"===e?a[r]=t:console.error("unexpected color value:",t));return i}},o.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},o.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},o.prototype.getValues=function(t){for(var e=this.values,i={},n=0;n.04045?Math.pow((e+.055)/1.055,2.4):e/12.92)+.3576*(i=i>.04045?Math.pow((i+.055)/1.055,2.4):i/12.92)+.1805*(n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92)),100*(.2126*e+.7152*i+.0722*n),100*(.0193*e+.1192*i+.9505*n)]}function d(t){var e=u(t),i=e[0],n=e[1],a=e[2];return n/=100,a/=108.883,i=(i/=95.047)>.008856?Math.pow(i,1/3):7.787*i+16/116,[116*(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116)-16,500*(i-n),200*(n-(a=a>.008856?Math.pow(a,1/3):7.787*a+16/116))]}function c(t){var e,i,n,a,o,r=t[0]/360,s=t[1]/100,l=t[2]/100;if(0==s)return[o=255*l,o,o];e=2*l-(i=l<.5?l*(1+s):l+s-l*s),a=[0,0,0];for(var u=0;u<3;u++)(n=r+1/3*-(u-1))<0&&n++,n>1&&n--,o=6*n<1?e+6*(i-e)*n:2*n<1?i:3*n<2?e+(i-e)*(2/3-n)*6:e,a[u]=255*o;return a}function h(t){var e=t[0]/60,i=t[1]/100,n=t[2]/100,a=Math.floor(e)%6,o=e-Math.floor(e),r=255*n*(1-i),s=255*n*(1-i*o),l=255*n*(1-i*(1-o));n*=255;switch(a){case 0:return[n,l,r];case 1:return[s,n,r];case 2:return[r,n,l];case 3:return[r,s,n];case 4:return[l,r,n];case 5:return[n,r,s]}}function f(t){var e,i,n,a,o=t[0]/360,s=t[1]/100,l=t[2]/100,u=s+l;switch(u>1&&(s/=u,l/=u),n=6*o-(e=Math.floor(6*o)),0!=(1&e)&&(n=1-n),a=s+n*((i=1-l)-s),e){default:case 6:case 0:r=i,g=a,b=s;break;case 1:r=a,g=i,b=s;break;case 2:r=s,g=i,b=a;break;case 3:r=s,g=a,b=i;break;case 4:r=a,g=s,b=i;break;case 5:r=i,g=s,b=a}return[255*r,255*g,255*b]}function p(t){var e=t[0]/100,i=t[1]/100,n=t[2]/100,a=t[3]/100;return[255*(1-Math.min(1,e*(1-a)+a)),255*(1-Math.min(1,i*(1-a)+a)),255*(1-Math.min(1,n*(1-a)+a))]}function m(t){var e,i,n,a=t[0]/100,o=t[1]/100,r=t[2]/100;return i=-.9689*a+1.8758*o+.0415*r,n=.0557*a+-.204*o+1.057*r,e=(e=3.2406*a+-1.5372*o+-.4986*r)>.0031308?1.055*Math.pow(e,1/2.4)-.055:e*=12.92,i=i>.0031308?1.055*Math.pow(i,1/2.4)-.055:i*=12.92,n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:n*=12.92,[255*(e=Math.min(Math.max(0,e),1)),255*(i=Math.min(Math.max(0,i),1)),255*(n=Math.min(Math.max(0,n),1))]}function v(t){var e=t[0],i=t[1],n=t[2];return i/=100,n/=108.883,e=(e/=95.047)>.008856?Math.pow(e,1/3):7.787*e+16/116,[116*(i=i>.008856?Math.pow(i,1/3):7.787*i+16/116)-16,500*(e-i),200*(i-(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116))]}function x(t){var e,i,n,a,o=t[0],r=t[1],s=t[2];return o<=8?a=(i=100*o/903.3)/100*7.787+16/116:(i=100*Math.pow((o+16)/116,3),a=Math.pow(i/100,1/3)),[e=e/95.047<=.008856?e=95.047*(r/500+a-16/116)/7.787:95.047*Math.pow(r/500+a,3),i,n=n/108.883<=.008859?n=108.883*(a-s/200-16/116)/7.787:108.883*Math.pow(a-s/200,3)]}function y(t){var e,i=t[0],n=t[1],a=t[2];return(e=360*Math.atan2(a,n)/2/Math.PI)<0&&(e+=360),[i,Math.sqrt(n*n+a*a),e]}function k(t){return m(x(t))}function M(t){var e,i=t[0],n=t[1];return e=t[2]/360*2*Math.PI,[i,n*Math.cos(e),n*Math.sin(e)]}function w(t){return S[t]}e.exports={rgb2hsl:n,rgb2hsv:a,rgb2hwb:o,rgb2cmyk:s,rgb2keyword:l,rgb2xyz:u,rgb2lab:d,rgb2lch:function(t){return y(d(t))},hsl2rgb:c,hsl2hsv:function(t){var e=t[0],i=t[1]/100,n=t[2]/100;if(0===n)return[0,0,0];return[e,100*(2*(i*=(n*=2)<=1?n:2-n)/(n+i)),100*((n+i)/2)]},hsl2hwb:function(t){return o(c(t))},hsl2cmyk:function(t){return s(c(t))},hsl2keyword:function(t){return l(c(t))},hsv2rgb:h,hsv2hsl:function(t){var e,i,n=t[0],a=t[1]/100,o=t[2]/100;return e=a*o,[n,100*(e=(e/=(i=(2-a)*o)<=1?i:2-i)||0),100*(i/=2)]},hsv2hwb:function(t){return o(h(t))},hsv2cmyk:function(t){return s(h(t))},hsv2keyword:function(t){return l(h(t))},hwb2rgb:f,hwb2hsl:function(t){return n(f(t))},hwb2hsv:function(t){return a(f(t))},hwb2cmyk:function(t){return s(f(t))},hwb2keyword:function(t){return l(f(t))},cmyk2rgb:p,cmyk2hsl:function(t){return n(p(t))},cmyk2hsv:function(t){return a(p(t))},cmyk2hwb:function(t){return o(p(t))},cmyk2keyword:function(t){return l(p(t))},keyword2rgb:w,keyword2hsl:function(t){return n(w(t))},keyword2hsv:function(t){return a(w(t))},keyword2hwb:function(t){return o(w(t))},keyword2cmyk:function(t){return s(w(t))},keyword2lab:function(t){return d(w(t))},keyword2xyz:function(t){return u(w(t))},xyz2rgb:m,xyz2lab:v,xyz2lch:function(t){return y(v(t))},lab2xyz:x,lab2rgb:k,lab2lch:y,lch2lab:M,lch2xyz:function(t){return x(M(t))},lch2rgb:function(t){return k(M(t))}};var S={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},C={};for(var _ in S)C[JSON.stringify(S[_])]=_},{}],5:[function(t,e,i){var n=t(4),a=function(){return new u};for(var o in n){a[o+"Raw"]=function(t){return function(e){return"number"==typeof e&&(e=Array.prototype.slice.call(arguments)),n[t](e)}}(o);var r=/(\w+)2(\w+)/.exec(o),s=r[1],l=r[2];(a[s]=a[s]||{})[l]=a[o]=function(t){return function(e){"number"==typeof e&&(e=Array.prototype.slice.call(arguments));var i=n[t](e);if("string"==typeof i||void 0===i)return i;for(var a=0;a0&&(t[0].yLabel?i=t[0].yLabel:e.labels.length>0&&t[0].index0?Math.min(r,n-i):r,i=n;return r}(i,u):-1,pixels:u,start:s,end:l,stackCount:n,scale:i}},calculateBarValuePixels:function(t,e){var i,n,a,o,r,s,l=this.chart,u=this.getMeta(),d=this.getValueScale(),c=l.data.datasets,h=d.getRightValue(c[t].data[e]),f=d.options.stacked,g=u.stack,p=0;if(f||void 0===f&&void 0!==g)for(i=0;i=0&&a>0)&&(p+=a));return o=d.getPixelForValue(p),{size:s=((r=d.getPixelForValue(p+h))-o)/2,base:o,head:r,center:r+s/2}},calculateBarIndexPixels:function(t,e,i){var n,a,r,s,l,u,d,c,h,f,g,p,m,v,b,x,y,k=i.scale.options,M="flex"===k.barThickness?(h=e,g=k,m=(f=i).pixels,v=m[h],b=h>0?m[h-1]:null,x=h');var i=t.data,n=i.datasets,a=i.labels;if(n.length)for(var o=0;o'),a[o]&&e.push(a[o]),e.push("");return e.push(""),e.join("")},legend:{labels:{generateLabels:function(t){var e=t.data;return e.labels.length&&e.datasets.length?e.labels.map(function(i,n){var a=t.getDatasetMeta(0),r=e.datasets[0],s=a.data[n],l=s&&s.custom||{},u=o.valueAtIndexOrDefault,d=t.options.elements.arc;return{text:i,fillStyle:l.backgroundColor?l.backgroundColor:u(r.backgroundColor,n,d.backgroundColor),strokeStyle:l.borderColor?l.borderColor:u(r.borderColor,n,d.borderColor),lineWidth:l.borderWidth?l.borderWidth:u(r.borderWidth,n,d.borderWidth),hidden:isNaN(r.data[n])||a.data[n].hidden,index:n}}):[]}},onClick:function(t,e){var i,n,a,o=e.index,r=this.chart;for(i=0,n=(r.data.datasets||[]).length;i=Math.PI?-1:g<-Math.PI?1:0))+f,m=Math.cos(g),v=Math.sin(g),b=Math.cos(p),x=Math.sin(p),y=g<=0&&p>=0||g<=2*Math.PI&&2*Math.PI<=p,k=g<=.5*Math.PI&&.5*Math.PI<=p||g<=2.5*Math.PI&&2.5*Math.PI<=p,M=g<=-Math.PI&&-Math.PI<=p||g<=Math.PI&&Math.PI<=p,w=g<=.5*-Math.PI&&.5*-Math.PI<=p||g<=1.5*Math.PI&&1.5*Math.PI<=p,S=h/100,C=M?-1:Math.min(m*(m<0?1:S),b*(b<0?1:S)),_=w?-1:Math.min(v*(v<0?1:S),x*(x<0?1:S)),D=y?1:Math.max(m*(m>0?1:S),b*(b>0?1:S)),I=k?1:Math.max(v*(v>0?1:S),x*(x>0?1:S)),P=.5*(D-C),A=.5*(I-_);u=Math.min(s/P,l/A),d={x:-.5*(D+C),y:-.5*(I+_)}}i.borderWidth=e.getMaxBorderWidth(c.data),i.outerRadius=Math.max((u-i.borderWidth)/2,0),i.innerRadius=Math.max(h?i.outerRadius/100*h:0,0),i.radiusLength=(i.outerRadius-i.innerRadius)/i.getVisibleDatasetCount(),i.offsetX=d.x*i.outerRadius,i.offsetY=d.y*i.outerRadius,c.total=e.calculateTotal(),e.outerRadius=i.outerRadius-i.radiusLength*e.getRingIndex(e.index),e.innerRadius=Math.max(e.outerRadius-i.radiusLength,0),o.each(c.data,function(i,n){e.updateElement(i,n,t)})},updateElement:function(t,e,i){var n=this,a=n.chart,r=a.chartArea,s=a.options,l=s.animation,u=(r.left+r.right)/2,d=(r.top+r.bottom)/2,c=s.rotation,h=s.rotation,f=n.getDataset(),g=i&&l.animateRotate?0:t.hidden?0:n.calculateCircumference(f.data[e])*(s.circumference/(2*Math.PI)),p=i&&l.animateScale?0:n.innerRadius,m=i&&l.animateScale?0:n.outerRadius,v=o.valueAtIndexOrDefault;o.extend(t,{_datasetIndex:n.index,_index:e,_model:{x:u+a.offsetX,y:d+a.offsetY,startAngle:c,endAngle:h,circumference:g,outerRadius:m,innerRadius:p,label:v(f.label,e,a.data.labels[e])}});var b=t._model;this.removeHoverStyle(t),i&&l.animateRotate||(b.startAngle=0===e?s.rotation:n.getMeta().data[e-1]._model.endAngle,b.endAngle=b.startAngle+b.circumference),t.pivot()},removeHoverStyle:function(e){t.DatasetController.prototype.removeHoverStyle.call(this,e,this.chart.options.elements.arc)},calculateTotal:function(){var t,e=this.getDataset(),i=this.getMeta(),n=0;return o.each(i.data,function(i,a){t=e.data[a],isNaN(t)||i.hidden||(n+=Math.abs(t))}),n},calculateCircumference:function(t){var e=this.getMeta().total;return e>0&&!isNaN(t)?2*Math.PI*(Math.abs(t)/e):0},getMaxBorderWidth:function(t){for(var e,i,n=0,a=this.index,o=t.length,r=0;r(n=e>n?e:n)?i:n;return n}})}},{25:25,40:40,45:45}],18:[function(t,e,i){"use strict";var n=t(25),a=t(40),o=t(45);n._set("line",{showLines:!0,spanGaps:!1,hover:{mode:"label"},scales:{xAxes:[{type:"category",id:"x-axis-0"}],yAxes:[{type:"linear",id:"y-axis-0"}]}}),e.exports=function(t){function e(t,e){return o.valueOrDefault(t.showLine,e.showLines)}t.controllers.line=t.DatasetController.extend({datasetElementType:a.Line,dataElementType:a.Point,update:function(t){var i,n,a,r=this,s=r.getMeta(),l=s.dataset,u=s.data||[],d=r.chart.options,c=d.elements.line,h=r.getScaleForId(s.yAxisID),f=r.getDataset(),g=e(f,d);for(g&&(a=l.custom||{},void 0!==f.tension&&void 0===f.lineTension&&(f.lineTension=f.tension),l._scale=h,l._datasetIndex=r.index,l._children=u,l._model={spanGaps:f.spanGaps?f.spanGaps:d.spanGaps,tension:a.tension?a.tension:o.valueOrDefault(f.lineTension,c.tension),backgroundColor:a.backgroundColor?a.backgroundColor:f.backgroundColor||c.backgroundColor,borderWidth:a.borderWidth?a.borderWidth:f.borderWidth||c.borderWidth,borderColor:a.borderColor?a.borderColor:f.borderColor||c.borderColor,borderCapStyle:a.borderCapStyle?a.borderCapStyle:f.borderCapStyle||c.borderCapStyle,borderDash:a.borderDash?a.borderDash:f.borderDash||c.borderDash,borderDashOffset:a.borderDashOffset?a.borderDashOffset:f.borderDashOffset||c.borderDashOffset,borderJoinStyle:a.borderJoinStyle?a.borderJoinStyle:f.borderJoinStyle||c.borderJoinStyle,fill:a.fill?a.fill:void 0!==f.fill?f.fill:c.fill,steppedLine:a.steppedLine?a.steppedLine:o.valueOrDefault(f.steppedLine,c.stepped),cubicInterpolationMode:a.cubicInterpolationMode?a.cubicInterpolationMode:o.valueOrDefault(f.cubicInterpolationMode,c.cubicInterpolationMode)},l.pivot()),i=0,n=u.length;i');var i=t.data,n=i.datasets,a=i.labels;if(n.length)for(var o=0;o'),a[o]&&e.push(a[o]),e.push("");return e.push(""),e.join("")},legend:{labels:{generateLabels:function(t){var e=t.data;return e.labels.length&&e.datasets.length?e.labels.map(function(i,n){var a=t.getDatasetMeta(0),r=e.datasets[0],s=a.data[n].custom||{},l=o.valueAtIndexOrDefault,u=t.options.elements.arc;return{text:i,fillStyle:s.backgroundColor?s.backgroundColor:l(r.backgroundColor,n,u.backgroundColor),strokeStyle:s.borderColor?s.borderColor:l(r.borderColor,n,u.borderColor),lineWidth:s.borderWidth?s.borderWidth:l(r.borderWidth,n,u.borderWidth),hidden:isNaN(r.data[n])||a.data[n].hidden,index:n}}):[]}},onClick:function(t,e){var i,n,a,o=e.index,r=this.chart;for(i=0,n=(r.data.datasets||[]).length;i0&&!isNaN(t)?2*Math.PI/e:0}})}},{25:25,40:40,45:45}],20:[function(t,e,i){"use strict";var n=t(25),a=t(40),o=t(45);n._set("radar",{scale:{type:"radialLinear"},elements:{line:{tension:0}}}),e.exports=function(t){t.controllers.radar=t.DatasetController.extend({datasetElementType:a.Line,dataElementType:a.Point,linkScales:o.noop,update:function(t){var e=this,i=e.getMeta(),n=i.dataset,a=i.data,r=n.custom||{},s=e.getDataset(),l=e.chart.options.elements.line,u=e.chart.scale;void 0!==s.tension&&void 0===s.lineTension&&(s.lineTension=s.tension),o.extend(i.dataset,{_datasetIndex:e.index,_scale:u,_children:a,_loop:!0,_model:{tension:r.tension?r.tension:o.valueOrDefault(s.lineTension,l.tension),backgroundColor:r.backgroundColor?r.backgroundColor:s.backgroundColor||l.backgroundColor,borderWidth:r.borderWidth?r.borderWidth:s.borderWidth||l.borderWidth,borderColor:r.borderColor?r.borderColor:s.borderColor||l.borderColor,fill:r.fill?r.fill:void 0!==s.fill?s.fill:l.fill,borderCapStyle:r.borderCapStyle?r.borderCapStyle:s.borderCapStyle||l.borderCapStyle,borderDash:r.borderDash?r.borderDash:s.borderDash||l.borderDash,borderDashOffset:r.borderDashOffset?r.borderDashOffset:s.borderDashOffset||l.borderDashOffset,borderJoinStyle:r.borderJoinStyle?r.borderJoinStyle:s.borderJoinStyle||l.borderJoinStyle}}),i.dataset.pivot(),o.each(a,function(i,n){e.updateElement(i,n,t)},e),e.updateBezierControlPoints()},updateElement:function(t,e,i){var n=this,a=t.custom||{},r=n.getDataset(),s=n.chart.scale,l=n.chart.options.elements.point,u=s.getPointPositionForValue(e,r.data[e]);void 0!==r.radius&&void 0===r.pointRadius&&(r.pointRadius=r.radius),void 0!==r.hitRadius&&void 0===r.pointHitRadius&&(r.pointHitRadius=r.hitRadius),o.extend(t,{_datasetIndex:n.index,_index:e,_scale:s,_model:{x:i?s.xCenter:u.x,y:i?s.yCenter:u.y,tension:a.tension?a.tension:o.valueOrDefault(r.lineTension,n.chart.options.elements.line.tension),radius:a.radius?a.radius:o.valueAtIndexOrDefault(r.pointRadius,e,l.radius),backgroundColor:a.backgroundColor?a.backgroundColor:o.valueAtIndexOrDefault(r.pointBackgroundColor,e,l.backgroundColor),borderColor:a.borderColor?a.borderColor:o.valueAtIndexOrDefault(r.pointBorderColor,e,l.borderColor),borderWidth:a.borderWidth?a.borderWidth:o.valueAtIndexOrDefault(r.pointBorderWidth,e,l.borderWidth),pointStyle:a.pointStyle?a.pointStyle:o.valueAtIndexOrDefault(r.pointStyle,e,l.pointStyle),hitRadius:a.hitRadius?a.hitRadius:o.valueAtIndexOrDefault(r.pointHitRadius,e,l.hitRadius)}}),t._model.skip=a.skip?a.skip:isNaN(t._model.x)||isNaN(t._model.y)},updateBezierControlPoints:function(){var t=this.chart.chartArea,e=this.getMeta();o.each(e.data,function(i,n){var a=i._model,r=o.splineCurve(o.previousItem(e.data,n,!0)._model,a,o.nextItem(e.data,n,!0)._model,a.tension);a.controlPointPreviousX=Math.max(Math.min(r.previous.x,t.right),t.left),a.controlPointPreviousY=Math.max(Math.min(r.previous.y,t.bottom),t.top),a.controlPointNextX=Math.max(Math.min(r.next.x,t.right),t.left),a.controlPointNextY=Math.max(Math.min(r.next.y,t.bottom),t.top),i.pivot()})},setHoverStyle:function(t){var e=this.chart.data.datasets[t._datasetIndex],i=t.custom||{},n=t._index,a=t._model;a.radius=i.hoverRadius?i.hoverRadius:o.valueAtIndexOrDefault(e.pointHoverRadius,n,this.chart.options.elements.point.hoverRadius),a.backgroundColor=i.hoverBackgroundColor?i.hoverBackgroundColor:o.valueAtIndexOrDefault(e.pointHoverBackgroundColor,n,o.getHoverColor(a.backgroundColor)),a.borderColor=i.hoverBorderColor?i.hoverBorderColor:o.valueAtIndexOrDefault(e.pointHoverBorderColor,n,o.getHoverColor(a.borderColor)),a.borderWidth=i.hoverBorderWidth?i.hoverBorderWidth:o.valueAtIndexOrDefault(e.pointHoverBorderWidth,n,a.borderWidth)},removeHoverStyle:function(t){var e=this.chart.data.datasets[t._datasetIndex],i=t.custom||{},n=t._index,a=t._model,r=this.chart.options.elements.point;a.radius=i.radius?i.radius:o.valueAtIndexOrDefault(e.pointRadius,n,r.radius),a.backgroundColor=i.backgroundColor?i.backgroundColor:o.valueAtIndexOrDefault(e.pointBackgroundColor,n,r.backgroundColor),a.borderColor=i.borderColor?i.borderColor:o.valueAtIndexOrDefault(e.pointBorderColor,n,r.borderColor),a.borderWidth=i.borderWidth?i.borderWidth:o.valueAtIndexOrDefault(e.pointBorderWidth,n,r.borderWidth)}})}},{25:25,40:40,45:45}],21:[function(t,e,i){"use strict";t(25)._set("scatter",{hover:{mode:"single"},scales:{xAxes:[{id:"x-axis-1",type:"linear",position:"bottom"}],yAxes:[{id:"y-axis-1",type:"linear",position:"left"}]},showLines:!1,tooltips:{callbacks:{title:function(){return""},label:function(t){return"("+t.xLabel+", "+t.yLabel+")"}}}}),e.exports=function(t){t.controllers.scatter=t.controllers.line}},{25:25}],22:[function(t,e,i){"use strict";var n=t(25),a=t(26),o=t(45);n._set("global",{animation:{duration:1e3,easing:"easeOutQuart",onProgress:o.noop,onComplete:o.noop}}),e.exports=function(t){t.Animation=a.extend({chart:null,currentStep:0,numSteps:60,easing:"",render:null,onAnimationProgress:null,onAnimationComplete:null}),t.animationService={frameDuration:17,animations:[],dropFrames:0,request:null,addAnimation:function(t,e,i,n){var a,o,r=this.animations;for(e.chart=t,n||(t.animating=!0),a=0,o=r.length;a1&&(i=Math.floor(t.dropFrames),t.dropFrames=t.dropFrames%1),t.advance(1+i);var n=Date.now();t.dropFrames+=(n-e)/t.frameDuration,t.animations.length>0&&t.requestAnimationFrame()},advance:function(t){for(var e,i,n=this.animations,a=0;a=e.numSteps?(o.callback(e.onAnimationComplete,[e],i),i.animating=!1,n.splice(a,1)):++a}},Object.defineProperty(t.Animation.prototype,"animationObject",{get:function(){return this}}),Object.defineProperty(t.Animation.prototype,"chartInstance",{get:function(){return this.chart},set:function(t){this.chart=t}})}},{25:25,26:26,45:45}],23:[function(t,e,i){"use strict";var n=t(25),a=t(45),o=t(28),r=t(30),s=t(48),l=t(31);e.exports=function(t){function e(t){return"top"===t||"bottom"===t}t.types={},t.instances={},t.controllers={},a.extend(t.prototype,{construct:function(e,i){var o,r,l=this;(r=(o=(o=i)||{}).data=o.data||{}).datasets=r.datasets||[],r.labels=r.labels||[],o.options=a.configMerge(n.global,n[o.type],o.options||{}),i=o;var u=s.acquireContext(e,i),d=u&&u.canvas,c=d&&d.height,h=d&&d.width;l.id=a.uid(),l.ctx=u,l.canvas=d,l.config=i,l.width=h,l.height=c,l.aspectRatio=c?h/c:null,l.options=i.options,l._bufferedRender=!1,l.chart=l,l.controller=l,t.instances[l.id]=l,Object.defineProperty(l,"data",{get:function(){return l.config.data},set:function(t){l.config.data=t}}),u&&d?(l.initialize(),l.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var t=this;return l.notify(t,"beforeInit"),a.retinaScale(t,t.options.devicePixelRatio),t.bindEvents(),t.options.responsive&&t.resize(!0),t.ensureScalesHaveIDs(),t.buildOrUpdateScales(),t.initToolTip(),l.notify(t,"afterInit"),t},clear:function(){return a.canvas.clear(this),this},stop:function(){return t.animationService.cancelAnimation(this),this},resize:function(t){var e=this,i=e.options,n=e.canvas,o=i.maintainAspectRatio&&e.aspectRatio||null,r=Math.max(0,Math.floor(a.getMaximumWidth(n))),s=Math.max(0,Math.floor(o?r/o:a.getMaximumHeight(n)));if((e.width!==r||e.height!==s)&&(n.width=e.width=r,n.height=e.height=s,n.style.width=r+"px",n.style.height=s+"px",a.retinaScale(e,i.devicePixelRatio),!t)){var u={width:r,height:s};l.notify(e,"resize",[u]),e.options.onResize&&e.options.onResize(e,u),e.stop(),e.update(e.options.responsiveAnimationDuration)}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},i=t.scale;a.each(e.xAxes,function(t,e){t.id=t.id||"x-axis-"+e}),a.each(e.yAxes,function(t,e){t.id=t.id||"y-axis-"+e}),i&&(i.id=i.id||"scale")},buildOrUpdateScales:function(){var i=this,n=i.options,o=i.scales||{},r=[],s=Object.keys(o).reduce(function(t,e){return t[e]=!1,t},{});n.scales&&(r=r.concat((n.scales.xAxes||[]).map(function(t){return{options:t,dtype:"category",dposition:"bottom"}}),(n.scales.yAxes||[]).map(function(t){return{options:t,dtype:"linear",dposition:"left"}}))),n.scale&&r.push({options:n.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),a.each(r,function(n){var r=n.options,l=r.id,u=a.valueOrDefault(r.type,n.dtype);e(r.position)!==e(n.dposition)&&(r.position=n.dposition),s[l]=!0;var d=null;if(l in o&&o[l].type===u)(d=o[l]).options=r,d.ctx=i.ctx,d.chart=i;else{var c=t.scaleService.getScaleConstructor(u);if(!c)return;d=new c({id:l,type:u,options:r,ctx:i.ctx,chart:i}),o[d.id]=d}d.mergeTicksOptions(),n.isDefault&&(i.scale=d)}),a.each(s,function(t,e){t||delete o[e]}),i.scales=o,t.scaleService.addScalesToLayout(this)},buildOrUpdateControllers:function(){var e=this,i=[],n=[];return a.each(e.data.datasets,function(a,o){var r=e.getDatasetMeta(o),s=a.type||e.config.type;if(r.type&&r.type!==s&&(e.destroyDatasetMeta(o),r=e.getDatasetMeta(o)),r.type=s,i.push(r.type),r.controller)r.controller.updateIndex(o),r.controller.linkScales();else{var l=t.controllers[r.type];if(void 0===l)throw new Error('"'+r.type+'" is not a chart type.');r.controller=new l(e,o),n.push(r.controller)}},e),n},resetElements:function(){var t=this;a.each(t.data.datasets,function(e,i){t.getDatasetMeta(i).controller.reset()},t)},reset:function(){this.resetElements(),this.tooltip.initialize()},update:function(e){var i,n,o=this;if(e&&"object"==typeof e||(e={duration:e,lazy:arguments[1]}),n=(i=o).options,a.each(i.scales,function(t){r.removeBox(i,t)}),n=a.configMerge(t.defaults.global,t.defaults[i.config.type],n),i.options=i.config.options=n,i.ensureScalesHaveIDs(),i.buildOrUpdateScales(),i.tooltip._options=n.tooltips,i.tooltip.initialize(),l._invalidate(o),!1!==l.notify(o,"beforeUpdate")){o.tooltip._data=o.data;var s=o.buildOrUpdateControllers();a.each(o.data.datasets,function(t,e){o.getDatasetMeta(e).controller.buildOrUpdateElements()},o),o.updateLayout(),o.options.animation&&o.options.animation.duration&&a.each(s,function(t){t.reset()}),o.updateDatasets(),o.tooltip.initialize(),o.lastActive=[],l.notify(o,"afterUpdate"),o._bufferedRender?o._bufferedRequest={duration:e.duration,easing:e.easing,lazy:e.lazy}:o.render(e)}},updateLayout:function(){!1!==l.notify(this,"beforeLayout")&&(r.update(this,this.width,this.height),l.notify(this,"afterScaleUpdate"),l.notify(this,"afterLayout"))},updateDatasets:function(){if(!1!==l.notify(this,"beforeDatasetsUpdate")){for(var t=0,e=this.data.datasets.length;t=0;--i)e.isDatasetVisible(i)&&e.drawDataset(i,t);l.notify(e,"afterDatasetsDraw",[t])}},drawDataset:function(t,e){var i=this.getDatasetMeta(t),n={meta:i,index:t,easingValue:e};!1!==l.notify(this,"beforeDatasetDraw",[n])&&(i.controller.draw(e),l.notify(this,"afterDatasetDraw",[n]))},_drawTooltip:function(t){var e=this.tooltip,i={tooltip:e,easingValue:t};!1!==l.notify(this,"beforeTooltipDraw",[i])&&(e.draw(),l.notify(this,"afterTooltipDraw",[i]))},getElementAtEvent:function(t){return o.modes.single(this,t)},getElementsAtEvent:function(t){return o.modes.label(this,t,{intersect:!0})},getElementsAtXAxis:function(t){return o.modes["x-axis"](this,t,{intersect:!0})},getElementsAtEventForMode:function(t,e,i){var n=o.modes[e];return"function"==typeof n?n(this,t,i):[]},getDatasetAtEvent:function(t){return o.modes.dataset(this,t,{intersect:!0})},getDatasetMeta:function(t){var e=this.data.datasets[t];e._meta||(e._meta={});var i=e._meta[this.id];return i||(i=e._meta[this.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null}),i},getVisibleDatasetCount:function(){for(var t=0,e=0,i=this.data.datasets.length;e0||(e.forEach(function(e){delete t[e]}),delete t._chartjs)}}t.DatasetController=function(t,e){this.initialize(t,e)},n.extend(t.DatasetController.prototype,{datasetElementType:null,dataElementType:null,initialize:function(t,e){this.chart=t,this.index=e,this.linkScales(),this.addElements()},updateIndex:function(t){this.index=t},linkScales:function(){var t=this,e=t.getMeta(),i=t.getDataset();null!==e.xAxisID&&e.xAxisID in t.chart.scales||(e.xAxisID=i.xAxisID||t.chart.options.scales.xAxes[0].id),null!==e.yAxisID&&e.yAxisID in t.chart.scales||(e.yAxisID=i.yAxisID||t.chart.options.scales.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(t){return this.chart.scales[t]},reset:function(){this.update(!0)},destroy:function(){this._data&&i(this._data,this)},createMetaDataset:function(){var t=this.datasetElementType;return t&&new t({_chart:this.chart,_datasetIndex:this.index})},createMetaData:function(t){var e=this.dataElementType;return e&&new e({_chart:this.chart,_datasetIndex:this.index,_index:t})},addElements:function(){var t,e,i=this.getMeta(),n=this.getDataset().data||[],a=i.data;for(t=0,e=n.length;ti&&this.insertElements(i,n-i)},insertElements:function(t,e){for(var i=0;i=i[e].length&&i[e].push({}),!i[e][r].type||l.type&&l.type!==i[e][r].type?o.merge(i[e][r],[t.scaleService.getScaleDefaults(s),l]):o.merge(i[e][r],l)}else o._merger(e,i,n,a)}})},o.where=function(t,e){if(o.isArray(t)&&Array.prototype.filter)return t.filter(e);var i=[];return o.each(t,function(t){e(t)&&i.push(t)}),i},o.findIndex=Array.prototype.findIndex?function(t,e,i){return t.findIndex(e,i)}:function(t,e,i){i=void 0===i?t:i;for(var n=0,a=t.length;n=0;n--){var a=t[n];if(e(a))return a}},o.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},o.almostEquals=function(t,e,i){return Math.abs(t-e)t},o.max=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.max(t,e)},Number.NEGATIVE_INFINITY)},o.min=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.min(t,e)},Number.POSITIVE_INFINITY)},o.sign=Math.sign?function(t){return Math.sign(t)}:function(t){return 0===(t=+t)||isNaN(t)?t:t>0?1:-1},o.log10=Math.log10?function(t){return Math.log10(t)}:function(t){var e=Math.log(t)*Math.LOG10E,i=Math.round(e);return t===Math.pow(10,i)?i:e},o.toRadians=function(t){return t*(Math.PI/180)},o.toDegrees=function(t){return t*(180/Math.PI)},o.getAngleFromPoint=function(t,e){var i=e.x-t.x,n=e.y-t.y,a=Math.sqrt(i*i+n*n),o=Math.atan2(n,i);return o<-.5*Math.PI&&(o+=2*Math.PI),{angle:o,distance:a}},o.distanceBetweenPoints=function(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))},o.aliasPixel=function(t){return t%2==0?0:.5},o.splineCurve=function(t,e,i,n){var a=t.skip?e:t,o=e,r=i.skip?e:i,s=Math.sqrt(Math.pow(o.x-a.x,2)+Math.pow(o.y-a.y,2)),l=Math.sqrt(Math.pow(r.x-o.x,2)+Math.pow(r.y-o.y,2)),u=s/(s+l),d=l/(s+l),c=n*(u=isNaN(u)?0:u),h=n*(d=isNaN(d)?0:d);return{previous:{x:o.x-c*(r.x-a.x),y:o.y-c*(r.y-a.y)},next:{x:o.x+h*(r.x-a.x),y:o.y+h*(r.y-a.y)}}},o.EPSILON=Number.EPSILON||1e-14,o.splineCurveMonotone=function(t){var e,i,n,a,r,s,l,u,d,c=(t||[]).map(function(t){return{model:t._model,deltaK:0,mK:0}}),h=c.length;for(e=0;e0?c[e-1]:null,(a=e0?c[e-1]:null,a=e=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},o.previousItem=function(t,e,i){return i?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},o.niceNum=function(t,e){var i=Math.floor(o.log10(t)),n=t/Math.pow(10,i);return(e?n<1.5?1:n<3?2:n<7?5:10:n<=1?1:n<=2?2:n<=5?5:10)*Math.pow(10,i)},o.requestAnimFrame="undefined"==typeof window?function(t){t()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)},o.getRelativePosition=function(t,e){var i,n,a=t.originalEvent||t,r=t.currentTarget||t.srcElement,s=r.getBoundingClientRect(),l=a.touches;l&&l.length>0?(i=l[0].clientX,n=l[0].clientY):(i=a.clientX,n=a.clientY);var u=parseFloat(o.getStyle(r,"padding-left")),d=parseFloat(o.getStyle(r,"padding-top")),c=parseFloat(o.getStyle(r,"padding-right")),h=parseFloat(o.getStyle(r,"padding-bottom")),f=s.right-s.left-u-c,g=s.bottom-s.top-d-h;return{x:i=Math.round((i-s.left-u)/f*r.width/e.currentDevicePixelRatio),y:n=Math.round((n-s.top-d)/g*r.height/e.currentDevicePixelRatio)}},o.getConstraintWidth=function(t){return r(t,"max-width","clientWidth")},o.getConstraintHeight=function(t){return r(t,"max-height","clientHeight")},o.getMaximumWidth=function(t){var e=t.parentNode;if(!e)return t.clientWidth;var i=parseInt(o.getStyle(e,"padding-left"),10),n=parseInt(o.getStyle(e,"padding-right"),10),a=e.clientWidth-i-n,r=o.getConstraintWidth(t);return isNaN(r)?a:Math.min(a,r)},o.getMaximumHeight=function(t){var e=t.parentNode;if(!e)return t.clientHeight;var i=parseInt(o.getStyle(e,"padding-top"),10),n=parseInt(o.getStyle(e,"padding-bottom"),10),a=e.clientHeight-i-n,r=o.getConstraintHeight(t);return isNaN(r)?a:Math.min(a,r)},o.getStyle=function(t,e){return t.currentStyle?t.currentStyle[e]:document.defaultView.getComputedStyle(t,null).getPropertyValue(e)},o.retinaScale=function(t,e){var i=t.currentDevicePixelRatio=e||window.devicePixelRatio||1;if(1!==i){var n=t.canvas,a=t.height,o=t.width;n.height=a*i,n.width=o*i,t.ctx.scale(i,i),n.style.height||n.style.width||(n.style.height=a+"px",n.style.width=o+"px")}},o.fontString=function(t,e,i){return e+" "+t+"px "+i},o.longestText=function(t,e,i,n){var a=(n=n||{}).data=n.data||{},r=n.garbageCollect=n.garbageCollect||[];n.font!==e&&(a=n.data={},r=n.garbageCollect=[],n.font=e),t.font=e;var s=0;o.each(i,function(e){null!=e&&!0!==o.isArray(e)?s=o.measureText(t,a,r,s,e):o.isArray(e)&&o.each(e,function(e){null==e||o.isArray(e)||(s=o.measureText(t,a,r,s,e))})});var l=r.length/2;if(l>i.length){for(var u=0;un&&(n=o),n},o.numberOfLabelLines=function(t){var e=1;return o.each(t,function(t){o.isArray(t)&&t.length>e&&(e=t.length)}),e},o.color=n?function(t){return t instanceof CanvasGradient&&(t=a.global.defaultColor),n(t)}:function(t){return console.error("Color.js not found!"),t},o.getHoverColor=function(t){return t instanceof CanvasPattern?t:o.color(t).saturate(.5).darken(.1).rgbString()}}},{25:25,3:3,45:45}],28:[function(t,e,i){"use strict";var n=t(45);function a(t,e){return t.native?{x:t.x,y:t.y}:n.getRelativePosition(t,e)}function o(t,e){var i,n,a,o,r;for(n=0,o=t.data.datasets.length;n0&&(u=t.getDatasetMeta(u[0]._datasetIndex).data),u},"x-axis":function(t,e){return u(t,e,{intersect:!1})},point:function(t,e){return r(t,a(e,t))},nearest:function(t,e,i){var n=a(e,t);i.axis=i.axis||"xy";var o=l(i.axis),r=s(t,n,i.intersect,o);return r.length>1&&r.sort(function(t,e){var i=t.getArea()-e.getArea();return 0===i&&(i=t._datasetIndex-e._datasetIndex),i}),r.slice(0,1)},x:function(t,e,i){var n=a(e,t),r=[],s=!1;return o(t,function(t){t.inXRange(n.x)&&r.push(t),t.inRange(n.x,n.y)&&(s=!0)}),i.intersect&&!s&&(r=[]),r},y:function(t,e,i){var n=a(e,t),r=[],s=!1;return o(t,function(t){t.inYRange(n.y)&&r.push(t),t.inRange(n.x,n.y)&&(s=!0)}),i.intersect&&!s&&(r=[]),r}}}},{45:45}],29:[function(t,e,i){"use strict";t(25)._set("global",{responsive:!0,responsiveAnimationDuration:0,maintainAspectRatio:!0,events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,defaultColor:"rgba(0,0,0,0.1)",defaultFontColor:"#666",defaultFontFamily:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",defaultFontSize:12,defaultFontStyle:"normal",showLines:!0,elements:{},layout:{padding:{top:0,right:0,bottom:0,left:0}}}),e.exports=function(){var t=function(t,e){return this.construct(t,e),this};return t.Chart=t,t}},{25:25}],30:[function(t,e,i){"use strict";var n=t(45);function a(t,e){return n.where(t,function(t){return t.position===e})}function o(t,e){t.forEach(function(t,e){return t._tmpIndex_=e,t}),t.sort(function(t,i){var n=e?i:t,a=e?t:i;return n.weight===a.weight?n._tmpIndex_-a._tmpIndex_:n.weight-a.weight}),t.forEach(function(t){delete t._tmpIndex_})}e.exports={defaults:{},addBox:function(t,e){t.boxes||(t.boxes=[]),e.fullWidth=e.fullWidth||!1,e.position=e.position||"top",e.weight=e.weight||0,t.boxes.push(e)},removeBox:function(t,e){var i=t.boxes?t.boxes.indexOf(e):-1;-1!==i&&t.boxes.splice(i,1)},configure:function(t,e,i){for(var n,a=["fullWidth","position","weight"],o=a.length,r=0;rh&&lt.maxHeight){l--;break}l++,c=u*d}t.labelRotation=l},afterCalculateTickRotation:function(){o.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){o.callback(this.options.beforeFit,[this])},fit:function(){var t=this,n=t.minSize={width:0,height:0},a=s(t._ticks),l=t.options,u=l.ticks,d=l.scaleLabel,c=l.gridLines,h=l.display,f=t.isHorizontal(),g=i(u),p=l.gridLines.tickMarkLength;if(n.width=f?t.isFullWidth()?t.maxWidth-t.margins.left-t.margins.right:t.maxWidth:h&&c.drawTicks?p:0,n.height=f?h&&c.drawTicks?p:0:t.maxHeight,d.display&&h){var m=r(d)+o.options.toPadding(d.padding).height;f?n.height+=m:n.width+=m}if(u.display&&h){var v=o.longestText(t.ctx,g.font,a,t.longestTextCache),b=o.numberOfLabelLines(a),x=.5*g.size,y=t.options.ticks.padding;if(f){t.longestLabelWidth=v;var k=o.toRadians(t.labelRotation),M=Math.cos(k),w=Math.sin(k)*v+g.size*b+x*(b-1)+x;n.height=Math.min(t.maxHeight,n.height+w+y),t.ctx.font=g.font;var S=e(t.ctx,a[0],g.font),C=e(t.ctx,a[a.length-1],g.font);0!==t.labelRotation?(t.paddingLeft="bottom"===l.position?M*S+3:M*x+3,t.paddingRight="bottom"===l.position?M*x+3:M*C+3):(t.paddingLeft=S/2+3,t.paddingRight=C/2+3)}else u.mirror?v=0:v+=y+x,n.width=Math.min(t.maxWidth,n.width+v),t.paddingTop=g.size/2,t.paddingBottom=g.size/2}t.handleMargins(),t.width=n.width,t.height=n.height},handleMargins:function(){var t=this;t.margins&&(t.paddingLeft=Math.max(t.paddingLeft-t.margins.left,0),t.paddingTop=Math.max(t.paddingTop-t.margins.top,0),t.paddingRight=Math.max(t.paddingRight-t.margins.right,0),t.paddingBottom=Math.max(t.paddingBottom-t.margins.bottom,0))},afterFit:function(){o.callback(this.options.afterFit,[this])},isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){if(o.isNullOrUndef(t))return NaN;if("number"==typeof t&&!isFinite(t))return NaN;if(t)if(this.isHorizontal()){if(void 0!==t.x)return this.getRightValue(t.x)}else if(void 0!==t.y)return this.getRightValue(t.y);return t},getLabelForIndex:o.noop,getPixelForValue:o.noop,getValueForPixel:o.noop,getPixelForTick:function(t){var e=this,i=e.options.offset;if(e.isHorizontal()){var n=(e.width-(e.paddingLeft+e.paddingRight))/Math.max(e._ticks.length-(i?0:1),1),a=n*t+e.paddingLeft;i&&(a+=n/2);var o=e.left+Math.round(a);return o+=e.isFullWidth()?e.margins.left:0}var r=e.height-(e.paddingTop+e.paddingBottom);return e.top+t*(r/(e._ticks.length-1))},getPixelForDecimal:function(t){var e=this;if(e.isHorizontal()){var i=(e.width-(e.paddingLeft+e.paddingRight))*t+e.paddingLeft,n=e.left+Math.round(i);return n+=e.isFullWidth()?e.margins.left:0}return e.top+t*e.height},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this.min,e=this.max;return this.beginAtZero?0:t<0&&e<0?e:t>0&&e>0?t:0},_autoSkip:function(t){var e,i,n,a,r=this,s=r.isHorizontal(),l=r.options.ticks.minor,u=t.length,d=o.toRadians(r.labelRotation),c=Math.cos(d),h=r.longestLabelWidth*c,f=[];for(l.maxTicksLimit&&(a=l.maxTicksLimit),s&&(e=!1,(h+l.autoSkipPadding)*u>r.width-(r.paddingLeft+r.paddingRight)&&(e=1+Math.floor((h+l.autoSkipPadding)*u/(r.width-(r.paddingLeft+r.paddingRight)))),a&&u>a&&(e=Math.max(e,Math.floor(u/a)))),i=0;i1&&i%e>0||i%e==0&&i+e>=u)&&i!==u-1&&delete n.label,f.push(n);return f},draw:function(t){var e=this,a=e.options;if(a.display){var s=e.ctx,u=n.global,d=a.ticks.minor,c=a.ticks.major||d,h=a.gridLines,f=a.scaleLabel,g=0!==e.labelRotation,p=e.isHorizontal(),m=d.autoSkip?e._autoSkip(e.getTicks()):e.getTicks(),v=o.valueOrDefault(d.fontColor,u.defaultFontColor),b=i(d),x=o.valueOrDefault(c.fontColor,u.defaultFontColor),y=i(c),k=h.drawTicks?h.tickMarkLength:0,M=o.valueOrDefault(f.fontColor,u.defaultFontColor),w=i(f),S=o.options.toPadding(f.padding),C=o.toRadians(e.labelRotation),_=[],D=e.options.gridLines.lineWidth,I="right"===a.position?e.right:e.right-D-k,P="right"===a.position?e.right+k:e.right,A="bottom"===a.position?e.top+D:e.bottom-k-D,T="bottom"===a.position?e.top+D+k:e.bottom+D;if(o.each(m,function(i,n){if(!o.isNullOrUndef(i.label)){var r,s,c,f,v,b,x,y,M,w,S,F,O,R,L=i.label;n===e.zeroLineIndex&&a.offset===h.offsetGridLines?(r=h.zeroLineWidth,s=h.zeroLineColor,c=h.zeroLineBorderDash,f=h.zeroLineBorderDashOffset):(r=o.valueAtIndexOrDefault(h.lineWidth,n),s=o.valueAtIndexOrDefault(h.color,n),c=o.valueOrDefault(h.borderDash,u.borderDash),f=o.valueOrDefault(h.borderDashOffset,u.borderDashOffset));var z="middle",B="middle",W=d.padding;if(p){var N=k+W;"bottom"===a.position?(B=g?"middle":"top",z=g?"right":"center",R=e.top+N):(B=g?"middle":"bottom",z=g?"left":"center",R=e.bottom-N);var V=l(e,n,h.offsetGridLines&&m.length>1);V1);j3?i[2]-i[1]:i[1]-i[0];Math.abs(a)>1&&t!==Math.floor(t)&&(a=t-Math.floor(t));var o=n.log10(Math.abs(a)),r="";if(0!==t){var s=-1*Math.floor(o);s=Math.max(Math.min(s,20),0),r=t.toFixed(s)}else r="0";return r},logarithmic:function(t,e,i){var a=t/Math.pow(10,Math.floor(n.log10(t)));return 0===t?"0":1===a||2===a||5===a||0===e||e===i.length-1?t.toExponential():""}}}},{45:45}],35:[function(t,e,i){"use strict";var n=t(25),a=t(26),o=t(45);n._set("global",{tooltips:{enabled:!0,custom:null,mode:"nearest",position:"average",intersect:!0,backgroundColor:"rgba(0,0,0,0.8)",titleFontStyle:"bold",titleSpacing:2,titleMarginBottom:6,titleFontColor:"#fff",titleAlign:"left",bodySpacing:2,bodyFontColor:"#fff",bodyAlign:"left",footerFontStyle:"bold",footerSpacing:2,footerMarginTop:6,footerFontColor:"#fff",footerAlign:"left",yPadding:6,xPadding:6,caretPadding:2,caretSize:5,cornerRadius:6,multiKeyBackground:"#fff",displayColors:!0,borderColor:"rgba(0,0,0,0)",borderWidth:0,callbacks:{beforeTitle:o.noop,title:function(t,e){var i="",n=e.labels,a=n?n.length:0;if(t.length>0){var o=t[0];o.xLabel?i=o.xLabel:a>0&&o.indexl.height-e.height&&(c="bottom");var h=(u.left+u.right)/2,f=(u.top+u.bottom)/2;"center"===c?(i=function(t){return t<=h},n=function(t){return t>h}):(i=function(t){return t<=e.width/2},n=function(t){return t>=l.width-e.width/2}),a=function(t){return t+e.width+s.caretSize+s.caretPadding>l.width},o=function(t){return t-e.width-s.caretSize-s.caretPadding<0},r=function(t){return t<=f?"top":"bottom"},i(s.x)?(d="left",a(s.x)&&(d="center",c=r(s.y))):n(s.x)&&(d="right",o(s.x)&&(d="center",c=r(s.y)));var g=t._options;return{xAlign:g.xAlign?g.xAlign:d,yAlign:g.yAlign?g.yAlign:c}}(this,F=function(t,e){var i=t._chart.ctx,n=2*e.yPadding,a=0,r=e.body,s=r.reduce(function(t,e){return t+e.before.length+e.lines.length+e.after.length},0);s+=e.beforeBody.length+e.afterBody.length;var l=e.title.length,u=e.footer.length,d=e.titleFontSize,c=e.bodyFontSize,h=e.footerFontSize;n+=l*d,n+=l?(l-1)*e.titleSpacing:0,n+=l?e.titleMarginBottom:0,n+=s*c,n+=s?(s-1)*e.bodySpacing:0,n+=u?e.footerMarginTop:0,n+=u*h,n+=u?(u-1)*e.footerSpacing:0;var f=0,g=function(t){a=Math.max(a,i.measureText(t).width+f)};return i.font=o.fontString(d,e._titleFontStyle,e._titleFontFamily),o.each(e.title,g),i.font=o.fontString(c,e._bodyFontStyle,e._bodyFontFamily),o.each(e.beforeBody.concat(e.afterBody),g),f=e.displayColors?c+2:0,o.each(r,function(t){o.each(t.before,g),o.each(t.lines,g),o.each(t.after,g)}),f=0,i.font=o.fontString(h,e._footerFontStyle,e._footerFontFamily),o.each(e.footer,g),{width:a+=2*e.xPadding,height:n}}(this,D)),a=D,s=F,l=A,u=S._chart,d=a.x,c=a.y,h=a.caretSize,f=a.caretPadding,g=a.cornerRadius,p=l.xAlign,m=l.yAlign,v=h+f,b=g+f,"right"===p?d-=s.width:"center"===p&&((d-=s.width/2)+s.width>u.width&&(d=u.width-s.width),d<0&&(d=0)),"top"===m?c+=v:c-="bottom"===m?s.height+v:s.height/2,"center"===m?"left"===p?d+=v:"right"===p&&(d-=v):"left"===p?d-=b:"right"===p&&(d+=b),T={x:d,y:c}}else D.opacity=0;return D.xAlign=A.xAlign,D.yAlign=A.yAlign,D.x=T.x,D.y=T.y,D.width=F.width,D.height=F.height,D.caretX=O.x,D.caretY=O.y,S._model=D,e&&C.custom&&C.custom.call(S,D),S},drawCaret:function(t,e){var i=this._chart.ctx,n=this._view,a=this.getCaretPosition(t,e,n);i.lineTo(a.x1,a.y1),i.lineTo(a.x2,a.y2),i.lineTo(a.x3,a.y3)},getCaretPosition:function(t,e,i){var n,a,o,r,s,l,u=i.caretSize,d=i.cornerRadius,c=i.xAlign,h=i.yAlign,f=t.x,g=t.y,p=e.width,m=e.height;if("center"===h)s=g+m/2,"left"===c?(a=(n=f)-u,o=n,r=s+u,l=s-u):(a=(n=f+p)+u,o=n,r=s-u,l=s+u);else if("left"===c?(n=(a=f+d+u)-u,o=a+u):"right"===c?(n=(a=f+p-d-u)-u,o=a+u):(n=(a=i.caretX)-u,o=a+u),"top"===h)s=(r=g)-u,l=r;else{s=(r=g+m)+u,l=r;var v=o;o=n,n=v}return{x1:n,x2:a,x3:o,y1:r,y2:s,y3:l}},drawTitle:function(t,i,n,a){var r=i.title;if(r.length){n.textAlign=i._titleAlign,n.textBaseline="top";var s,l,u=i.titleFontSize,d=i.titleSpacing;for(n.fillStyle=e(i.titleFontColor,a),n.font=o.fontString(u,i._titleFontStyle,i._titleFontFamily),s=0,l=r.length;s0&&n.stroke()},draw:function(){var t=this._chart.ctx,e=this._view;if(0!==e.opacity){var i={width:e.width,height:e.height},n={x:e.x,y:e.y},a=Math.abs(e.opacity<.001)?0:e.opacity,o=e.title.length||e.beforeBody.length||e.body.length||e.afterBody.length||e.footer.length;this._options.enabled&&o&&(this.drawBackground(n,e,t,i,a),n.x+=e.xPadding,n.y+=e.yPadding,this.drawTitle(n,e,t,a),this.drawBody(n,e,t,a),this.drawFooter(n,e,t,a))}},handleEvent:function(t){var e,i=this,n=i._options;return i._lastActive=i._lastActive||[],"mouseout"===t.type?i._active=[]:i._active=i._chart.getElementsAtEventForMode(t,n.mode,n),(e=!o.arrayEquals(i._active,i._lastActive))&&(i._lastActive=i._active,(n.enabled||n.custom)&&(i._eventPosition={x:t.x,y:t.y},i.update(!0),i.pivot())),e}}),t.Tooltip.positioners={average:function(t){if(!t.length)return!1;var e,i,n=0,a=0,o=0;for(e=0,i=t.length;el;)a-=2*Math.PI;for(;a=s&&a<=l,d=r>=i.innerRadius&&r<=i.outerRadius;return u&&d}return!1},getCenterPoint:function(){var t=this._view,e=(t.startAngle+t.endAngle)/2,i=(t.innerRadius+t.outerRadius)/2;return{x:t.x+Math.cos(e)*i,y:t.y+Math.sin(e)*i}},getArea:function(){var t=this._view;return Math.PI*((t.endAngle-t.startAngle)/(2*Math.PI))*(Math.pow(t.outerRadius,2)-Math.pow(t.innerRadius,2))},tooltipPosition:function(){var t=this._view,e=t.startAngle+(t.endAngle-t.startAngle)/2,i=(t.outerRadius-t.innerRadius)/2+t.innerRadius;return{x:t.x+Math.cos(e)*i,y:t.y+Math.sin(e)*i}},draw:function(){var t=this._chart.ctx,e=this._view,i=e.startAngle,n=e.endAngle;t.beginPath(),t.arc(e.x,e.y,e.outerRadius,i,n),t.arc(e.x,e.y,e.innerRadius,n,i,!0),t.closePath(),t.strokeStyle=e.borderColor,t.lineWidth=e.borderWidth,t.fillStyle=e.backgroundColor,t.fill(),t.lineJoin="bevel",e.borderWidth&&t.stroke()}})},{25:25,26:26,45:45}],37:[function(t,e,i){"use strict";var n=t(25),a=t(26),o=t(45),r=n.global;n._set("global",{elements:{line:{tension:.4,backgroundColor:r.defaultColor,borderWidth:3,borderColor:r.defaultColor,borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",capBezierPoints:!0,fill:!0}}}),e.exports=a.extend({draw:function(){var t,e,i,n,a=this._view,s=this._chart.ctx,l=a.spanGaps,u=this._children.slice(),d=r.elements.line,c=-1;for(this._loop&&u.length&&u.push(u[0]),s.save(),s.lineCap=a.borderCapStyle||d.borderCapStyle,s.setLineDash&&s.setLineDash(a.borderDash||d.borderDash),s.lineDashOffset=a.borderDashOffset||d.borderDashOffset,s.lineJoin=a.borderJoinStyle||d.borderJoinStyle,s.lineWidth=a.borderWidth||d.borderWidth,s.strokeStyle=a.borderColor||r.defaultColor,s.beginPath(),c=-1,t=0;tt?1:-1,o=1,r=l.borderSkipped||"left"):(t=l.x-l.width/2,e=l.x+l.width/2,i=l.y,a=1,o=(n=l.base)>i?1:-1,r=l.borderSkipped||"bottom"),u){var d=Math.min(Math.abs(t-e),Math.abs(i-n)),c=(u=u>d?d:u)/2,h=t+("left"!==r?c*a:0),f=e+("right"!==r?-c*a:0),g=i+("top"!==r?c*o:0),p=n+("bottom"!==r?-c*o:0);h!==f&&(i=g,n=p),g!==p&&(t=h,e=f)}s.beginPath(),s.fillStyle=l.backgroundColor,s.strokeStyle=l.borderColor,s.lineWidth=u;var m=[[t,n],[t,i],[e,i],[e,n]],v=["bottom","left","top","right"].indexOf(r,0);function b(t){return m[(v+t)%4]}-1===v&&(v=0);var x=b(0);s.moveTo(x[0],x[1]);for(var y=1;y<4;y++)x=b(y),s.lineTo(x[0],x[1]);s.fill(),u&&s.stroke()},height:function(){var t=this._view;return t.base-t.y},inRange:function(t,e){var i=!1;if(this._view){var n=r(this);i=t>=n.left&&t<=n.right&&e>=n.top&&e<=n.bottom}return i},inLabelRange:function(t,e){if(!this._view)return!1;var i=r(this);return o(this)?t>=i.left&&t<=i.right:e>=i.top&&e<=i.bottom},inXRange:function(t){var e=r(this);return t>=e.left&&t<=e.right},inYRange:function(t){var e=r(this);return t>=e.top&&t<=e.bottom},getCenterPoint:function(){var t,e,i=this._view;return o(this)?(t=i.x,e=(i.y+i.base)/2):(t=(i.x+i.base)/2,e=i.y),{x:t,y:e}},getArea:function(){var t=this._view;return t.width*Math.abs(t.y-t.base)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y}}})},{25:25,26:26}],40:[function(t,e,i){"use strict";e.exports={},e.exports.Arc=t(36),e.exports.Line=t(37),e.exports.Point=t(38),e.exports.Rectangle=t(39)},{36:36,37:37,38:38,39:39}],41:[function(t,e,i){"use strict";var n=t(42);i=e.exports={clear:function(t){t.ctx.clearRect(0,0,t.width,t.height)},roundedRect:function(t,e,i,n,a,o){if(o){var r=Math.min(o,n/2),s=Math.min(o,a/2);t.moveTo(e+r,i),t.lineTo(e+n-r,i),t.quadraticCurveTo(e+n,i,e+n,i+s),t.lineTo(e+n,i+a-s),t.quadraticCurveTo(e+n,i+a,e+n-r,i+a),t.lineTo(e+r,i+a),t.quadraticCurveTo(e,i+a,e,i+a-s),t.lineTo(e,i+s),t.quadraticCurveTo(e,i,e+r,i)}else t.rect(e,i,n,a)},drawPoint:function(t,e,i,n,a){var o,r,s,l,u,d;if(!e||"object"!=typeof e||"[object HTMLImageElement]"!==(o=e.toString())&&"[object HTMLCanvasElement]"!==o){if(!(isNaN(i)||i<=0)){switch(e){default:t.beginPath(),t.arc(n,a,i,0,2*Math.PI),t.closePath(),t.fill();break;case"triangle":t.beginPath(),u=(r=3*i/Math.sqrt(3))*Math.sqrt(3)/2,t.moveTo(n-r/2,a+u/3),t.lineTo(n+r/2,a+u/3),t.lineTo(n,a-2*u/3),t.closePath(),t.fill();break;case"rect":d=1/Math.SQRT2*i,t.beginPath(),t.fillRect(n-d,a-d,2*d,2*d),t.strokeRect(n-d,a-d,2*d,2*d);break;case"rectRounded":var c=i/Math.SQRT2,h=n-c,f=a-c,g=Math.SQRT2*i;t.beginPath(),this.roundedRect(t,h,f,g,g,i/2),t.closePath(),t.fill();break;case"rectRot":d=1/Math.SQRT2*i,t.beginPath(),t.moveTo(n-d,a),t.lineTo(n,a+d),t.lineTo(n+d,a),t.lineTo(n,a-d),t.closePath(),t.fill();break;case"cross":t.beginPath(),t.moveTo(n,a+i),t.lineTo(n,a-i),t.moveTo(n-i,a),t.lineTo(n+i,a),t.closePath();break;case"crossRot":t.beginPath(),s=Math.cos(Math.PI/4)*i,l=Math.sin(Math.PI/4)*i,t.moveTo(n-s,a-l),t.lineTo(n+s,a+l),t.moveTo(n-s,a+l),t.lineTo(n+s,a-l),t.closePath();break;case"star":t.beginPath(),t.moveTo(n,a+i),t.lineTo(n,a-i),t.moveTo(n-i,a),t.lineTo(n+i,a),s=Math.cos(Math.PI/4)*i,l=Math.sin(Math.PI/4)*i,t.moveTo(n-s,a-l),t.lineTo(n+s,a+l),t.moveTo(n-s,a+l),t.lineTo(n+s,a-l),t.closePath();break;case"line":t.beginPath(),t.moveTo(n-i,a),t.lineTo(n+i,a),t.closePath();break;case"dash":t.beginPath(),t.moveTo(n,a),t.lineTo(n+i,a),t.closePath()}t.stroke()}}else t.drawImage(e,n-e.width/2,a-e.height/2,e.width,e.height)},clipArea:function(t,e){t.save(),t.beginPath(),t.rect(e.left,e.top,e.right-e.left,e.bottom-e.top),t.clip()},unclipArea:function(t){t.restore()},lineTo:function(t,e,i,n){if(i.steppedLine)return"after"===i.steppedLine&&!n||"after"!==i.steppedLine&&n?t.lineTo(e.x,i.y):t.lineTo(i.x,e.y),void t.lineTo(i.x,i.y);i.tension?t.bezierCurveTo(n?e.controlPointPreviousX:e.controlPointNextX,n?e.controlPointPreviousY:e.controlPointNextY,n?i.controlPointNextX:i.controlPointPreviousX,n?i.controlPointNextY:i.controlPointPreviousY,i.x,i.y):t.lineTo(i.x,i.y)}};n.clear=i.clear,n.drawRoundedRectangle=function(t){t.beginPath(),i.roundedRect.apply(i,arguments),t.closePath()}},{42:42}],42:[function(t,e,i){"use strict";var n,a={noop:function(){},uid:(n=0,function(){return n++}),isNullOrUndef:function(t){return null==t},isArray:Array.isArray?Array.isArray:function(t){return"[object Array]"===Object.prototype.toString.call(t)},isObject:function(t){return null!==t&&"[object Object]"===Object.prototype.toString.call(t)},valueOrDefault:function(t,e){return void 0===t?e:t},valueAtIndexOrDefault:function(t,e,i){return a.valueOrDefault(a.isArray(t)?t[e]:t,i)},callback:function(t,e,i){if(t&&"function"==typeof t.call)return t.apply(i,e)},each:function(t,e,i,n){var o,r,s;if(a.isArray(t))if(r=t.length,n)for(o=r-1;o>=0;o--)e.call(i,t[o],o);else for(o=0;o=1?t:-(Math.sqrt(1-t*t)-1)},easeOutCirc:function(t){return Math.sqrt(1-(t-=1)*t)},easeInOutCirc:function(t){return(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeInElastic:function(t){var e=1.70158,i=0,n=1;return 0===t?0:1===t?1:(i||(i=.3),n<1?(n=1,e=i/4):e=i/(2*Math.PI)*Math.asin(1/n),-n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i))},easeOutElastic:function(t){var e=1.70158,i=0,n=1;return 0===t?0:1===t?1:(i||(i=.3),n<1?(n=1,e=i/4):e=i/(2*Math.PI)*Math.asin(1/n),n*Math.pow(2,-10*t)*Math.sin((t-e)*(2*Math.PI)/i)+1)},easeInOutElastic:function(t){var e=1.70158,i=0,n=1;return 0===t?0:2==(t/=.5)?1:(i||(i=.45),n<1?(n=1,e=i/4):e=i/(2*Math.PI)*Math.asin(1/n),t<1?n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i)*-.5:n*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i)*.5+1)},easeInBack:function(t){return t*t*(2.70158*t-1.70158)},easeOutBack:function(t){return(t-=1)*t*(2.70158*t+1.70158)+1},easeInOutBack:function(t){var e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},easeInBounce:function(t){return 1-a.easeOutBounce(1-t)},easeOutBounce:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},easeInOutBounce:function(t){return t<.5?.5*a.easeInBounce(2*t):.5*a.easeOutBounce(2*t-1)+.5}};e.exports={effects:a},n.easingEffects=a},{42:42}],44:[function(t,e,i){"use strict";var n=t(42);e.exports={toLineHeight:function(t,e){var i=(""+t).match(/^(normal|(\d+(?:\.\d+)?)(px|em|%)?)$/);if(!i||"normal"===i[1])return 1.2*e;switch(t=+i[2],i[3]){case"px":return t;case"%":t/=100}return e*t},toPadding:function(t){var e,i,a,o;return n.isObject(t)?(e=+t.top||0,i=+t.right||0,a=+t.bottom||0,o=+t.left||0):e=i=a=o=+t||0,{top:e,right:i,bottom:a,left:o,height:e+a,width:o+i}},resolve:function(t,e,i){var a,o,r;for(a=0,o=t.length;a
        ';var a=e.childNodes[0],r=e.childNodes[1];e._reset=function(){a.scrollLeft=1e6,a.scrollTop=1e6,r.scrollLeft=1e6,r.scrollTop=1e6};var s=function(){e._reset(),t()};return h(a,"scroll",s.bind(a,"expand")),h(r,"scroll",s.bind(r,"shrink")),e}((u=function(){if(x.resizer)return e(g("resize",i))},c=!1,f=[],function(){f=Array.prototype.slice.call(arguments),d=d||this,c||(c=!0,n.requestAnimFrame.call(window,function(){c=!1,u.apply(d,f)}))}));m=function(){if(x.resizer){var e=t.parentNode;e&&e!==y.parentNode&&e.insertBefore(y,e.firstChild),y._reset()}},v=(p=t)[a]||(p[a]={}),b=v.renderProxy=function(t){t.animationName===s&&m()},n.each(l,function(t){h(p,t,b)}),v.reflow=!!p.offsetParent,p.classList.add(r)}function m(t){var e,i,o,s=t[a]||{},u=s.resizer;delete s.resizer,i=(e=t)[a]||{},(o=i.renderProxy)&&(n.each(l,function(t){f(e,t,o)}),delete i.renderProxy),e.classList.remove(r),u&&u.parentNode&&u.parentNode.removeChild(u)}e.exports={_enabled:"undefined"!=typeof window&&"undefined"!=typeof document,initialize:function(){var t,e,i,n="from{opacity:0.99}to{opacity:1}";e="@-webkit-keyframes "+s+"{"+n+"}@keyframes "+s+"{"+n+"}."+r+"{-webkit-animation:"+s+" 0.001s;animation:"+s+" 0.001s;}",i=(t=this)._style||document.createElement("style"),t._style||(t._style=i,e="/* Chart.js */\n"+e,i.setAttribute("type","text/css"),document.getElementsByTagName("head")[0].appendChild(i)),i.appendChild(document.createTextNode(e))},acquireContext:function(t,e){"string"==typeof t?t=document.getElementById(t):t.length&&(t=t[0]),t&&t.canvas&&(t=t.canvas);var i=t&&t.getContext&&t.getContext("2d");return i&&i.canvas===t?(function(t,e){var i=t.style,n=t.getAttribute("height"),o=t.getAttribute("width");if(t[a]={initial:{height:n,width:o,style:{display:i.display,height:i.height,width:i.width}}},i.display=i.display||"block",null===o||""===o){var r=d(t,"width");void 0!==r&&(t.width=r)}if(null===n||""===n)if(""===t.style.height)t.height=t.width/(e.options.aspectRatio||2);else{var s=d(t,"height");void 0!==r&&(t.height=s)}}(t,e),i):null},releaseContext:function(t){var e=t.canvas;if(e[a]){var i=e[a].initial;["height","width"].forEach(function(t){var a=i[t];n.isNullOrUndef(a)?e.removeAttribute(t):e.setAttribute(t,a)}),n.each(i.style||{},function(t,i){e.style[i]=t}),e.width=e.width,delete e[a]}},addEventListener:function(t,e,i){var o=t.canvas;if("resize"!==e){var r=i[a]||(i[a]={});h(o,e,(r.proxies||(r.proxies={}))[t.id+"_"+e]=function(e){var a,o,r,s;i((o=t,r=u[(a=e).type]||a.type,s=n.getRelativePosition(a,o),g(r,o,s.x,s.y,a)))})}else p(o,i,t)},removeEventListener:function(t,e,i){var n=t.canvas;if("resize"!==e){var o=((i[a]||{}).proxies||{})[t.id+"_"+e];o&&f(n,e,o)}else m(n)}},n.addEvent=h,n.removeEvent=f},{45:45}],48:[function(t,e,i){"use strict";var n=t(45),a=t(46),o=t(47),r=o._enabled?o:a;e.exports=n.extend({initialize:function(){},acquireContext:function(){},releaseContext:function(){},addEventListener:function(){},removeEventListener:function(){}},r)},{45:45,46:46,47:47}],49:[function(t,e,i){"use strict";e.exports={},e.exports.filler=t(50),e.exports.legend=t(51),e.exports.title=t(52)},{50:50,51:51,52:52}],50:[function(t,e,i){"use strict";var n=t(25),a=t(40),o=t(45);n._set("global",{plugins:{filler:{propagate:!0}}});var r={dataset:function(t){var e=t.fill,i=t.chart,n=i.getDatasetMeta(e),a=n&&i.isDatasetVisible(e)&&n.dataset._children||[],o=a.length||0;return o?function(t,e){return e=i)&&n;switch(o){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return o;default:return!1}}function l(t){var e,i=t.el._model||{},n=t.el._scale||{},a=t.fill,o=null;if(isFinite(a))return null;if("start"===a?o=void 0===i.scaleBottom?n.bottom:i.scaleBottom:"end"===a?o=void 0===i.scaleTop?n.top:i.scaleTop:void 0!==i.scaleZero?o=i.scaleZero:n.getBasePosition?o=n.getBasePosition():n.getBasePixel&&(o=n.getBasePixel()),null!=o){if(void 0!==o.x&&void 0!==o.y)return o;if("number"==typeof o&&isFinite(o))return{x:(e=n.isHorizontal())?o:null,y:e?null:o}}return null}function u(t,e,i){var n,a=t[e].fill,o=[e];if(!i)return a;for(;!1!==a&&-1===o.indexOf(a);){if(!isFinite(a))return a;if(!(n=t[a]))return!1;if(n.visible)return a;o.push(a),a=n.fill}return!1}function d(t){return t&&!t.skip}function c(t,e,i,n,a){var r;if(n&&a){for(t.moveTo(e[0].x,e[0].y),r=1;r0;--r)o.canvas.lineTo(t,i[r],i[r-1],!0)}}e.exports={id:"filler",afterDatasetsUpdate:function(t,e){var i,n,o,d,c,h,f,g=(t.data.datasets||[]).length,p=e.propagate,m=[];for(n=0;n');for(var i=0;i'),t.data.datasets[i].label&&e.push(t.data.datasets[i].label),e.push("");return e.push(""),e.join("")}});var u=a.extend({initialize:function(t){o.extend(this,t),this.legendHitBoxes=[],this.doughnutMode=!1},beforeUpdate:s,update:function(t,e,i){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:s,beforeSetDimensions:s,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:s,beforeBuildLabels:s,buildLabels:function(){var t=this,e=t.options.labels||{},i=o.callback(e.generateLabels,[t.chart],t)||[];e.filter&&(i=i.filter(function(i){return e.filter(i,t.chart.data)})),t.options.reverse&&i.reverse(),t.legendItems=i},afterBuildLabels:s,beforeFit:s,fit:function(){var t=this,e=t.options,i=e.labels,a=e.display,r=t.ctx,s=n.global,u=o.valueOrDefault,d=u(i.fontSize,s.defaultFontSize),c=u(i.fontStyle,s.defaultFontStyle),h=u(i.fontFamily,s.defaultFontFamily),f=o.fontString(d,c,h),g=t.legendHitBoxes=[],p=t.minSize,m=t.isHorizontal();if(m?(p.width=t.maxWidth,p.height=a?10:0):(p.width=a?10:0,p.height=t.maxHeight),a)if(r.font=f,m){var v=t.lineWidths=[0],b=t.legendItems.length?d+i.padding:0;r.textAlign="left",r.textBaseline="top",o.each(t.legendItems,function(e,n){var a=l(i,d)+d/2+r.measureText(e.text).width;v[v.length-1]+a+i.padding>=t.width&&(b+=d+i.padding,v[v.length]=t.left),g[n]={left:0,top:0,width:a,height:d},v[v.length-1]+=a+i.padding}),p.height+=b}else{var x=i.padding,y=t.columnWidths=[],k=i.padding,M=0,w=0,S=d+x;o.each(t.legendItems,function(t,e){var n=l(i,d)+d/2+r.measureText(t.text).width;w+S>p.height&&(k+=M+i.padding,y.push(M),M=0,w=0),M=Math.max(M,n),w+=S,g[e]={left:0,top:0,width:n,height:d}}),k+=M,y.push(M),p.width+=k}t.width=p.width,t.height=p.height},afterFit:s,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var t=this,e=t.options,i=e.labels,a=n.global,r=a.elements.line,s=t.width,u=t.lineWidths;if(e.display){var d,c=t.ctx,h=o.valueOrDefault,f=h(i.fontColor,a.defaultFontColor),g=h(i.fontSize,a.defaultFontSize),p=h(i.fontStyle,a.defaultFontStyle),m=h(i.fontFamily,a.defaultFontFamily),v=o.fontString(g,p,m);c.textAlign="left",c.textBaseline="middle",c.lineWidth=.5,c.strokeStyle=f,c.fillStyle=f,c.font=v;var b=l(i,g),x=t.legendHitBoxes,y=t.isHorizontal();d=y?{x:t.left+(s-u[0])/2,y:t.top+i.padding,line:0}:{x:t.left+i.padding,y:t.top+i.padding,line:0};var k=g+i.padding;o.each(t.legendItems,function(n,l){var f,p,m,v,M,w=c.measureText(n.text).width,S=b+g/2+w,C=d.x,_=d.y;y?C+S>=s&&(_=d.y+=k,d.line++,C=d.x=t.left+(s-u[d.line])/2):_+k>t.bottom&&(C=d.x=C+t.columnWidths[d.line]+i.padding,_=d.y=t.top+i.padding,d.line++),function(t,i,n){if(!(isNaN(b)||b<=0)){c.save(),c.fillStyle=h(n.fillStyle,a.defaultColor),c.lineCap=h(n.lineCap,r.borderCapStyle),c.lineDashOffset=h(n.lineDashOffset,r.borderDashOffset),c.lineJoin=h(n.lineJoin,r.borderJoinStyle),c.lineWidth=h(n.lineWidth,r.borderWidth),c.strokeStyle=h(n.strokeStyle,a.defaultColor);var s=0===h(n.lineWidth,r.borderWidth);if(c.setLineDash&&c.setLineDash(h(n.lineDash,r.borderDash)),e.labels&&e.labels.usePointStyle){var l=g*Math.SQRT2/2,u=l/Math.SQRT2,d=t+u,f=i+u;o.canvas.drawPoint(c,n.pointStyle,l,d,f)}else s||c.strokeRect(t,i,b,g),c.fillRect(t,i,b,g);c.restore()}}(C,_,n),x[l].left=C,x[l].top=_,f=n,p=w,v=b+(m=g/2)+C,M=_+m,c.fillText(f.text,v,M),f.hidden&&(c.beginPath(),c.lineWidth=2,c.moveTo(v,M),c.lineTo(v+p,M),c.stroke()),y?d.x+=S+i.padding:d.y+=k})}},handleEvent:function(t){var e=this,i=e.options,n="mouseup"===t.type?"click":t.type,a=!1;if("mousemove"===n){if(!i.onHover)return}else{if("click"!==n)return;if(!i.onClick)return}var o=t.x,r=t.y;if(o>=e.left&&o<=e.right&&r>=e.top&&r<=e.bottom)for(var s=e.legendHitBoxes,l=0;l=u.left&&o<=u.left+u.width&&r>=u.top&&r<=u.top+u.height){if("click"===n){i.onClick.call(e,t.native,e.legendItems[l]),a=!0;break}if("mousemove"===n){i.onHover.call(e,t.native,e.legendItems[l]),a=!0;break}}}return a}});function d(t,e){var i=new u({ctx:t.ctx,options:e,chart:t});r.configure(t,i,e),r.addBox(t,i),t.legend=i}e.exports={id:"legend",_element:u,beforeInit:function(t){var e=t.options.legend;e&&d(t,e)},beforeUpdate:function(t){var e=t.options.legend,i=t.legend;e?(o.mergeIf(e,n.global.legend),i?(r.configure(t,i,e),i.options=e):d(t,e)):i&&(r.removeBox(t,i),delete t.legend)},afterEvent:function(t,e){var i=t.legend;i&&i.handleEvent(e)}}},{25:25,26:26,30:30,45:45}],52:[function(t,e,i){"use strict";var n=t(25),a=t(26),o=t(45),r=t(30),s=o.noop;n._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,lineHeight:1.2,padding:10,position:"top",text:"",weight:2e3}});var l=a.extend({initialize:function(t){o.extend(this,t),this.legendHitBoxes=[]},beforeUpdate:s,update:function(t,e,i){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:s,beforeSetDimensions:s,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:s,beforeBuildLabels:s,buildLabels:s,afterBuildLabels:s,beforeFit:s,fit:function(){var t=this,e=o.valueOrDefault,i=t.options,a=i.display,r=e(i.fontSize,n.global.defaultFontSize),s=t.minSize,l=o.isArray(i.text)?i.text.length:1,u=o.options.toLineHeight(i.lineHeight,r),d=a?l*u+2*i.padding:0;t.isHorizontal()?(s.width=t.maxWidth,s.height=d):(s.width=d,s.height=t.maxHeight),t.width=s.width,t.height=s.height},afterFit:s,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var t=this,e=t.ctx,i=o.valueOrDefault,a=t.options,r=n.global;if(a.display){var s,l,u,d=i(a.fontSize,r.defaultFontSize),c=i(a.fontStyle,r.defaultFontStyle),h=i(a.fontFamily,r.defaultFontFamily),f=o.fontString(d,c,h),g=o.options.toLineHeight(a.lineHeight,d),p=g/2+a.padding,m=0,v=t.top,b=t.left,x=t.bottom,y=t.right;e.fillStyle=i(a.fontColor,r.defaultFontColor),e.font=f,t.isHorizontal()?(l=b+(y-b)/2,u=v+p,s=y-b):(l="left"===a.position?b+p:y-p,u=v+(x-v)/2,s=x-v,m=Math.PI*("left"===a.position?-.5:.5)),e.save(),e.translate(l,u),e.rotate(m),e.textAlign="center",e.textBaseline="middle";var k=a.text;if(o.isArray(k))for(var M=0,w=0;wt.max&&(t.max=n))})});t.min=isFinite(t.min)&&!isNaN(t.min)?t.min:0,t.max=isFinite(t.max)&&!isNaN(t.max)?t.max:1,this.handleTickRangeOptions()},getTickLimit:function(){var t,e=this.options.ticks;if(this.isHorizontal())t=Math.min(e.maxTicksLimit?e.maxTicksLimit:11,Math.ceil(this.width/50));else{var i=a.valueOrDefault(e.fontSize,n.global.defaultFontSize);t=Math.min(e.maxTicksLimit?e.maxTicksLimit:11,Math.ceil(this.height/(2*i)))}return t},handleDirectionalChanges:function(){this.isHorizontal()||this.ticks.reverse()},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},getPixelForValue:function(t){var e=this,i=e.start,n=+e.getRightValue(t),a=e.end-i;return e.isHorizontal()?e.left+e.width/a*(n-i):e.bottom-e.height/a*(n-i)},getValueForPixel:function(t){var e=this,i=e.isHorizontal(),n=i?e.width:e.height,a=(i?t-e.left:e.bottom-t)/n;return e.start+(e.end-e.start)*a},getPixelForTick:function(t){return this.getPixelForValue(this.ticksAsNumbers[t])}});t.scaleService.registerScaleType("linear",i,e)}},{25:25,34:34,45:45}],55:[function(t,e,i){"use strict";var n=t(45);e.exports=function(t){var e=n.noop;t.LinearScaleBase=t.Scale.extend({getRightValue:function(e){return"string"==typeof e?+e:t.Scale.prototype.getRightValue.call(this,e)},handleTickRangeOptions:function(){var t=this,e=t.options.ticks;if(e.beginAtZero){var i=n.sign(t.min),a=n.sign(t.max);i<0&&a<0?t.max=0:i>0&&a>0&&(t.min=0)}var o=void 0!==e.min||void 0!==e.suggestedMin,r=void 0!==e.max||void 0!==e.suggestedMax;void 0!==e.min?t.min=e.min:void 0!==e.suggestedMin&&(null===t.min?t.min=e.suggestedMin:t.min=Math.min(t.min,e.suggestedMin)),void 0!==e.max?t.max=e.max:void 0!==e.suggestedMax&&(null===t.max?t.max=e.suggestedMax:t.max=Math.max(t.max,e.suggestedMax)),o!==r&&t.min>=t.max&&(o?t.max=t.min+1:t.min=t.max-1),t.min===t.max&&(t.max++,e.beginAtZero||t.min--)},getTickLimit:e,handleDirectionalChanges:e,buildTicks:function(){var t=this,e=t.options.ticks,i=t.getTickLimit(),a={maxTicks:i=Math.max(2,i),min:e.min,max:e.max,stepSize:n.valueOrDefault(e.fixedStepSize,e.stepSize)},o=t.ticks=function(t,e){var i,a=[];if(t.stepSize&&t.stepSize>0)i=t.stepSize;else{var o=n.niceNum(e.max-e.min,!1);i=n.niceNum(o/(t.maxTicks-1),!0)}var r=Math.floor(e.min/i)*i,s=Math.ceil(e.max/i)*i;t.min&&t.max&&t.stepSize&&n.almostWhole((t.max-t.min)/t.stepSize,i/1e3)&&(r=t.min,s=t.max);var l=(s-r)/i;l=n.almostEquals(l,Math.round(l),i/1e3)?Math.round(l):Math.ceil(l);var u=1;i<1&&(u=Math.pow(10,i.toString().length-2),r=Math.round(r*u)/u,s=Math.round(s*u)/u),a.push(void 0!==t.min?t.min:r);for(var d=1;d0){var i=n.min(e),a=n.max(e);t.min=null===t.min?i:Math.min(t.min,i),t.max=null===t.max?a:Math.max(t.max,a)}})}else n.each(a,function(e,a){var o=i.getDatasetMeta(a);i.isDatasetVisible(a)&&r(o)&&n.each(e.data,function(e,i){var n=+t.getRightValue(e);isNaN(n)||o.data[i].hidden||n<0||(null===t.min?t.min=n:nt.max&&(t.max=n),0!==n&&(null===t.minNotZero||n0?t.minNotZero=t.min:t.max<1?t.minNotZero=Math.pow(10,Math.floor(n.log10(t.max))):t.minNotZero=1)},buildTicks:function(){var t=this,e=t.options.ticks,i=!t.isHorizontal(),a={min:e.min,max:e.max},o=t.ticks=function(t,e){var i,a,o=[],r=n.valueOrDefault,s=r(t.min,Math.pow(10,Math.floor(n.log10(e.min)))),l=Math.floor(n.log10(e.max)),u=Math.ceil(e.max/Math.pow(10,l));0===s?(i=Math.floor(n.log10(e.minNotZero)),a=Math.floor(e.minNotZero/Math.pow(10,i)),o.push(s),s=a*Math.pow(10,i)):(i=Math.floor(n.log10(s)),a=Math.floor(s/Math.pow(10,i)));for(var d=i<0?Math.pow(10,Math.abs(i)):1;o.push(s),10==++a&&(a=1,d=++i>=0?1:d),s=Math.round(a*Math.pow(10,i)*d)/d,ia?{start:e-i-5,end:e}:{start:e,end:e+i+5}}function u(t,e,i,n){if(a.isArray(e))for(var o=i.y,r=1.5*n,s=0;sd.r&&(d.r=b.end,c.r=m),x.startd.b&&(d.b=x.end,c.b=m)}t.setReductions(u,d,c)}(this):(t=this,e=Math.min(t.height/2,t.width/2),t.drawingArea=Math.round(e),t.setCenterPoint(0,0,0,0))},setReductions:function(t,e,i){var n=e.l/Math.sin(i.l),a=Math.max(e.r-this.width,0)/Math.sin(i.r),o=-e.t/Math.cos(i.t),r=-Math.max(e.b-this.height,0)/Math.cos(i.b);n=d(n),a=d(a),o=d(o),r=d(r),this.drawingArea=Math.min(Math.round(t-(n+a)/2),Math.round(t-(o+r)/2)),this.setCenterPoint(n,a,o,r)},setCenterPoint:function(t,e,i,n){var a=this,o=a.width-e-a.drawingArea,r=t+a.drawingArea,s=i+a.drawingArea,l=a.height-n-a.drawingArea;a.xCenter=Math.round((r+o)/2+a.left),a.yCenter=Math.round((s+l)/2+a.top)},getIndexAngle:function(t){return t*(2*Math.PI/r(this))+(this.chart.options&&this.chart.options.startAngle?this.chart.options.startAngle:0)*Math.PI*2/360},getDistanceFromCenterForValue:function(t){var e=this;if(null===t)return 0;var i=e.drawingArea/(e.max-e.min);return e.options.ticks.reverse?(e.max-t)*i:(t-e.min)*i},getPointPosition:function(t,e){var i=this.getIndexAngle(t)-Math.PI/2;return{x:Math.round(Math.cos(i)*e)+this.xCenter,y:Math.round(Math.sin(i)*e)+this.yCenter}},getPointPositionForValue:function(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))},getBasePosition:function(){var t=this.min,e=this.max;return this.getPointPositionForValue(0,this.beginAtZero?0:t<0&&e<0?e:t>0&&e>0?t:0)},draw:function(){var t=this,i=t.options,n=i.gridLines,o=i.ticks,l=a.valueOrDefault;if(i.display){var d=t.ctx,c=this.getIndexAngle(0),h=l(o.fontSize,e.defaultFontSize),f=l(o.fontStyle,e.defaultFontStyle),g=l(o.fontFamily,e.defaultFontFamily),p=a.fontString(h,f,g);a.each(t.ticks,function(i,s){if(s>0||o.reverse){var u=t.getDistanceFromCenterForValue(t.ticksAsNumbers[s]);if(n.display&&0!==s&&function(t,e,i,n){var o=t.ctx;if(o.strokeStyle=a.valueAtIndexOrDefault(e.color,n-1),o.lineWidth=a.valueAtIndexOrDefault(e.lineWidth,n-1),t.options.gridLines.circular)o.beginPath(),o.arc(t.xCenter,t.yCenter,i,0,2*Math.PI),o.closePath(),o.stroke();else{var s=r(t);if(0===s)return;o.beginPath();var l=t.getPointPosition(0,i);o.moveTo(l.x,l.y);for(var u=1;u=0;m--){if(o.display){var v=t.getPointPosition(m,g);i.beginPath(),i.moveTo(t.xCenter,t.yCenter),i.lineTo(v.x,v.y),i.stroke(),i.closePath()}if(l.display){var b=t.getPointPosition(m,g+5),x=a.valueAtIndexOrDefault(l.fontColor,m,e.defaultFontColor);i.font=p.font,i.fillStyle=x;var y=t.getIndexAngle(m),k=a.toDegrees(y);i.textAlign=0===(f=k)||180===f?"center":f<180?"left":"right",d=k,c=t._pointLabelSizes[m],h=b,90===d||270===d?h.y-=c.h/2:(d>270||d<90)&&(h.y-=c.h),u(i,t.pointLabels[m]||"",b,p.size)}}}(t)}}});t.scaleService.registerScaleType("radialLinear",c,i)}},{25:25,34:34,45:45}],58:[function(t,e,i){"use strict";var n=t(1);n="function"==typeof n?n:window.moment;var a=t(25),o=t(45),r=Number.MIN_SAFE_INTEGER||-9007199254740991,s=Number.MAX_SAFE_INTEGER||9007199254740991,l={millisecond:{common:!0,size:1,steps:[1,2,5,10,20,50,100,250,500]},second:{common:!0,size:1e3,steps:[1,2,5,10,30]},minute:{common:!0,size:6e4,steps:[1,2,5,10,30]},hour:{common:!0,size:36e5,steps:[1,2,3,6,12]},day:{common:!0,size:864e5,steps:[1,2,5]},week:{common:!1,size:6048e5,steps:[1,2,3,4]},month:{common:!0,size:2628e6,steps:[1,2,3]},quarter:{common:!1,size:7884e6,steps:[1,2,3,4]},year:{common:!0,size:3154e7}},u=Object.keys(l);function d(t,e){return t-e}function c(t){var e,i,n,a={},o=[];for(e=0,i=t.length;e=0&&r<=s;){if(a=t[(n=r+s>>1)-1]||null,o=t[n],!a)return{lo:null,hi:o};if(o[e]i))return{lo:a,hi:o};s=n-1}}return{lo:o,hi:null}}(t,e,i),o=a.lo?a.hi?a.lo:t[t.length-2]:t[0],r=a.lo?a.hi?a.hi:t[t.length-1]:t[1],s=r[e]-o[e],l=s?(i-o[e])/s:0,u=(r[n]-o[n])*l;return o[n]+u}function f(t,e){var i=e.parser,a=e.parser||e.format;return"function"==typeof i?i(t):"string"==typeof t&&"string"==typeof a?n(t,a):(t instanceof n||(t=n(t)),t.isValid()?t:"function"==typeof a?a(t):t)}function g(t,e){if(o.isNullOrUndef(t))return null;var i=e.options.time,n=f(e.getRightValue(t),i);return n.isValid()?(i.round&&n.startOf(i.round),n.valueOf()):null}function p(t){for(var e=u.indexOf(t)+1,i=u.length;e=k&&i<=M&&_.push(i);return y.min=k,y.max=M,y._unit=S.unit||function(t,e,i,a){var o,r,s=n.duration(n(a).diff(n(i)));for(o=u.length-1;o>=u.indexOf(e);o--)if(r=u[o],l[r].common&&s.as(r)>=t.length)return r;return u[e?u.indexOf(e):0]}(_,S.minUnit,y.min,y.max),y._majorUnit=p(y._unit),y._table=function(t,e,i,n){if("linear"===n||!t.length)return[{time:e,pos:0},{time:i,pos:1}];var a,o,r,s,l,u=[],d=[e];for(a=0,o=t.length;ae&&s1?o[1]:s,v=o[0],b=(h(a,"time",c,"pos")-h(a,"time",v,"pos"))/2),d.time.max||(c=o[o.length-1],v=o.length>1?o[o.length-2]:r,x=(h(a,"time",c,"pos")-h(a,"time",v,"pos"))/2)),{left:b,right:x}),y._labelFormat=function(t,e){var i,n,a,o=t.length;for(i=0;i=0&&t0?s:1}});t.scaleService.registerScaleType("time",e,{position:"bottom",distribution:"linear",bounds:"data",time:{parser:!1,format:!1,unit:!1,round:!1,displayFormat:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"}},ticks:{autoSkip:!1,source:"auto",major:{enabled:!1}}})}},{1:1,25:25,45:45}]},{},[7])(7)}); +/* + * @license + * chartjs-plugin-streaming + * https://github.com/nagix/chartjs-plugin-streaming/ + * Version: 1.5.0 + * + * Copyright 2018 Akihiko Kusanagi + * Released under the MIT license + * https://github.com/nagix/chartjs-plugin-streaming/blob/master/LICENSE.md + */ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("chart.js"),require("moment")):"function"==typeof define&&define.amd?define(["chart.js","moment"],t):e["chartjs-plugin-streaming"]=t(e.Chart,e.moment)}(this,function(e,t){"use strict";!function(e,p){var h=e.helpers;h.cancelAnimFrame=function(){if("undefined"!=typeof window)return window.cancelAnimationFrame||window.webkitCancelAnimationFrame||window.mozCancelAnimationFrame||window.oCancelAnimationFrame||window.msCancelAnimationFrame||function(e){return window.clearTimeout(e)}}();var t,a,v=Number.MAX_SAFE_INTEGER||9007199254740991,y={millisecond:{common:!0,size:1,steps:[1,2,5,10,20,50,100,250,500]},second:{common:!0,size:1e3,steps:[1,2,5,10,30]},minute:{common:!0,size:6e4,steps:[1,2,5,10,30]},hour:{common:!0,size:36e5,steps:[1,2,3,6,12]},day:{common:!0,size:864e5,steps:[1,2,5]},week:{common:!1,size:6048e5,steps:[1,2,3,4]},month:{common:!0,size:2628e6,steps:[1,2,3]},quarter:{common:!1,size:7884e6,steps:[1,2,3,4]},year:{common:!0,size:3154e7}},g=Object.keys(y);function w(e){for(var t=g.indexOf(e)+1,a=g.length;t=g.indexOf(t);n--)if(r=g[n],y[r].common&&o.as(r)>=e.length)return r;return g[t?g.indexOf(t):0]}(o,a.minUnit,e.min,e.max),e._majorUnit=w(e._unit),e._table=[{time:r,pos:0},{time:n,pos:1}],e._offsets={left:0,right:0},e._labelFormat=function(e,t){var a,i,n,r,o,s,l,c=e.length;for(a=0;a",{"class":n.join(" ")}))},i=function(){e.$elem.unwrap()},a=function(n){return t.isNumeric(n)&&(n=Math.floor(n)),t('option[value="'+n+'"]',e.$elem)},r=function(){var n=e.options.initialRating;return n?a(n):t("option:selected",e.$elem)},o=function(){var n=e.$elem.find('option[value="'+e.options.emptyValue+'"]');return!n.length&&e.options.allowEmpty?(n=t("